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.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21 #include <linux/types.h>
22 #include <linux/delay.h>
23 #include <linux/wait.h>
24 #include <linux/mii.h>
25 #include <linux/ethtool.h>
26 #include <linux/bitops.h>
27 #include <linux/netdevice.h>
28 #include <linux/platform_device.h>
29 #include <linux/phy.h>
30 #include <linux/phy_fixed.h>
31 #include <linux/brcmphy.h>
33 #include <linux/of_net.h>
34 #include <linux/of_mdio.h>
38 /* read a value from the MII */
39 static int bcmgenet_mii_read(struct mii_bus
*bus
, int phy_id
, int location
)
42 struct net_device
*dev
= bus
->priv
;
43 struct bcmgenet_priv
*priv
= netdev_priv(dev
);
46 bcmgenet_umac_writel(priv
, (MDIO_RD
| (phy_id
<< MDIO_PMD_SHIFT
) |
47 (location
<< MDIO_REG_SHIFT
)), UMAC_MDIO_CMD
);
48 /* Start MDIO transaction*/
49 reg
= bcmgenet_umac_readl(priv
, UMAC_MDIO_CMD
);
50 reg
|= MDIO_START_BUSY
;
51 bcmgenet_umac_writel(priv
, reg
, UMAC_MDIO_CMD
);
52 wait_event_timeout(priv
->wq
,
53 !(bcmgenet_umac_readl(priv
, UMAC_MDIO_CMD
)
56 ret
= bcmgenet_umac_readl(priv
, UMAC_MDIO_CMD
);
58 if (ret
& MDIO_READ_FAIL
)
64 /* write a value to the MII */
65 static int bcmgenet_mii_write(struct mii_bus
*bus
, int phy_id
,
66 int location
, u16 val
)
68 struct net_device
*dev
= bus
->priv
;
69 struct bcmgenet_priv
*priv
= netdev_priv(dev
);
72 bcmgenet_umac_writel(priv
, (MDIO_WR
| (phy_id
<< MDIO_PMD_SHIFT
) |
73 (location
<< MDIO_REG_SHIFT
) | (0xffff & val
)),
75 reg
= bcmgenet_umac_readl(priv
, UMAC_MDIO_CMD
);
76 reg
|= MDIO_START_BUSY
;
77 bcmgenet_umac_writel(priv
, reg
, UMAC_MDIO_CMD
);
78 wait_event_timeout(priv
->wq
,
79 !(bcmgenet_umac_readl(priv
, UMAC_MDIO_CMD
) &
86 /* setup netdev link state when PHY link status change and
87 * update UMAC and RGMII block when link up
89 static void bcmgenet_mii_setup(struct net_device
*dev
)
91 struct bcmgenet_priv
*priv
= netdev_priv(dev
);
92 struct phy_device
*phydev
= priv
->phydev
;
93 u32 reg
, cmd_bits
= 0;
94 unsigned int status_changed
= 0;
96 if (priv
->old_link
!= phydev
->link
) {
98 priv
->old_link
= phydev
->link
;
102 /* program UMAC and RGMII block based on established link
103 * speed, pause, and duplex.
104 * the speed set in umac->cmd tell RGMII block which clock
105 * 25MHz(100Mbps)/125MHz(1Gbps) to use for transmit.
106 * receive clock is provided by PHY.
108 reg
= bcmgenet_ext_readl(priv
, EXT_RGMII_OOB_CTRL
);
111 bcmgenet_ext_writel(priv
, reg
, EXT_RGMII_OOB_CTRL
);
114 if (phydev
->speed
== SPEED_1000
)
115 cmd_bits
= UMAC_SPEED_1000
;
116 else if (phydev
->speed
== SPEED_100
)
117 cmd_bits
= UMAC_SPEED_100
;
119 cmd_bits
= UMAC_SPEED_10
;
120 cmd_bits
<<= CMD_SPEED_SHIFT
;
122 if (priv
->old_duplex
!= phydev
->duplex
) {
124 priv
->old_duplex
= phydev
->duplex
;
128 if (phydev
->duplex
!= DUPLEX_FULL
)
129 cmd_bits
|= CMD_HD_EN
;
131 if (priv
->old_pause
!= phydev
->pause
) {
133 priv
->old_pause
= phydev
->pause
;
136 /* pause capability */
138 cmd_bits
|= CMD_RX_PAUSE_IGNORE
| CMD_TX_PAUSE_IGNORE
;
140 reg
= bcmgenet_umac_readl(priv
, UMAC_CMD
);
141 reg
&= ~((CMD_SPEED_MASK
<< CMD_SPEED_SHIFT
) |
143 CMD_RX_PAUSE_IGNORE
| CMD_TX_PAUSE_IGNORE
);
145 bcmgenet_umac_writel(priv
, reg
, UMAC_CMD
);
149 phy_print_status(phydev
);
152 void bcmgenet_mii_reset(struct net_device
*dev
)
154 struct bcmgenet_priv
*priv
= netdev_priv(dev
);
157 phy_init_hw(priv
->phydev
);
158 phy_start_aneg(priv
->phydev
);
162 static void bcmgenet_ephy_power_up(struct net_device
*dev
)
164 struct bcmgenet_priv
*priv
= netdev_priv(dev
);
167 /* EXT_GPHY_CTRL is only valid for GENETv4 and onward */
168 if (!GENET_IS_V4(priv
))
171 reg
= bcmgenet_ext_readl(priv
, EXT_GPHY_CTRL
);
172 reg
&= ~(EXT_CFG_IDDQ_BIAS
| EXT_CFG_PWR_DOWN
);
173 reg
|= EXT_GPHY_RESET
;
174 bcmgenet_ext_writel(priv
, reg
, EXT_GPHY_CTRL
);
177 reg
&= ~EXT_GPHY_RESET
;
178 bcmgenet_ext_writel(priv
, reg
, EXT_GPHY_CTRL
);
182 static void bcmgenet_internal_phy_setup(struct net_device
*dev
)
184 struct bcmgenet_priv
*priv
= netdev_priv(dev
);
188 bcmgenet_ephy_power_up(dev
);
190 reg
= bcmgenet_ext_readl(priv
, EXT_EXT_PWR_MGMT
);
191 reg
|= EXT_PWR_DN_EN_LD
;
192 bcmgenet_ext_writel(priv
, reg
, EXT_EXT_PWR_MGMT
);
193 bcmgenet_mii_reset(dev
);
196 static void bcmgenet_moca_phy_setup(struct bcmgenet_priv
*priv
)
200 /* Speed settings are set in bcmgenet_mii_setup() */
201 reg
= bcmgenet_sys_readl(priv
, SYS_PORT_CTRL
);
202 reg
|= LED_ACT_SOURCE_MAC
;
203 bcmgenet_sys_writel(priv
, reg
, SYS_PORT_CTRL
);
206 int bcmgenet_mii_config(struct net_device
*dev
)
208 struct bcmgenet_priv
*priv
= netdev_priv(dev
);
209 struct phy_device
*phydev
= priv
->phydev
;
210 struct device
*kdev
= &priv
->pdev
->dev
;
211 const char *phy_name
= NULL
;
216 priv
->ext_phy
= !phy_is_internal(priv
->phydev
) &&
217 (priv
->phy_interface
!= PHY_INTERFACE_MODE_MOCA
);
219 if (phy_is_internal(priv
->phydev
))
220 priv
->phy_interface
= PHY_INTERFACE_MODE_NA
;
222 switch (priv
->phy_interface
) {
223 case PHY_INTERFACE_MODE_NA
:
224 case PHY_INTERFACE_MODE_MOCA
:
225 /* Irrespective of the actually configured PHY speed (100 or
226 * 1000) GENETv4 only has an internal GPHY so we will just end
227 * up masking the Gigabit features from what we support, not
228 * switching to the EPHY
230 if (GENET_IS_V4(priv
))
231 port_ctrl
= PORT_MODE_INT_GPHY
;
233 port_ctrl
= PORT_MODE_INT_EPHY
;
235 bcmgenet_sys_writel(priv
, port_ctrl
, SYS_PORT_CTRL
);
237 if (phy_is_internal(priv
->phydev
)) {
238 phy_name
= "internal PHY";
239 bcmgenet_internal_phy_setup(dev
);
240 } else if (priv
->phy_interface
== PHY_INTERFACE_MODE_MOCA
) {
242 bcmgenet_moca_phy_setup(priv
);
246 case PHY_INTERFACE_MODE_MII
:
247 phy_name
= "external MII";
248 phydev
->supported
&= PHY_BASIC_FEATURES
;
249 bcmgenet_sys_writel(priv
,
250 PORT_MODE_EXT_EPHY
, SYS_PORT_CTRL
);
253 case PHY_INTERFACE_MODE_REVMII
:
254 phy_name
= "external RvMII";
255 /* of_mdiobus_register took care of reading the 'max-speed'
256 * PHY property for us, effectively limiting the PHY supported
257 * capabilities, use that knowledge to also configure the
258 * Reverse MII interface correctly.
260 if ((priv
->phydev
->supported
& PHY_BASIC_FEATURES
) ==
262 port_ctrl
= PORT_MODE_EXT_RVMII_25
;
264 port_ctrl
= PORT_MODE_EXT_RVMII_50
;
265 bcmgenet_sys_writel(priv
, port_ctrl
, SYS_PORT_CTRL
);
268 case PHY_INTERFACE_MODE_RGMII
:
269 /* RGMII_NO_ID: TXC transitions at the same time as TXD
270 * (requires PCB or receiver-side delay)
271 * RGMII: Add 2ns delay on TXC (90 degree shift)
273 * ID is implicitly disabled for 100Mbps (RG)MII operation.
275 id_mode_dis
= BIT(16);
277 case PHY_INTERFACE_MODE_RGMII_TXID
:
279 phy_name
= "external RGMII (no delay)";
281 phy_name
= "external RGMII (TX delay)";
282 reg
= bcmgenet_ext_readl(priv
, EXT_RGMII_OOB_CTRL
);
283 reg
|= RGMII_MODE_EN
| id_mode_dis
;
284 bcmgenet_ext_writel(priv
, reg
, EXT_RGMII_OOB_CTRL
);
285 bcmgenet_sys_writel(priv
,
286 PORT_MODE_EXT_GPHY
, SYS_PORT_CTRL
);
289 dev_err(kdev
, "unknown phy mode: %d\n", priv
->phy_interface
);
293 dev_info(kdev
, "configuring instance for %s\n", phy_name
);
298 static int bcmgenet_mii_probe(struct net_device
*dev
)
300 struct bcmgenet_priv
*priv
= netdev_priv(dev
);
301 struct device_node
*dn
= priv
->pdev
->dev
.of_node
;
302 struct phy_device
*phydev
;
303 unsigned int phy_flags
;
307 pr_info("PHY already attached\n");
311 /* In the case of a fixed PHY, the DT node associated
312 * to the PHY is the Ethernet MAC DT node.
314 if (of_phy_is_fixed_link(dn
)) {
315 ret
= of_phy_register_fixed_link(dn
);
322 phydev
= of_phy_connect(dev
, priv
->phy_dn
, bcmgenet_mii_setup
, 0,
323 priv
->phy_interface
);
325 pr_err("could not attach to PHY\n");
330 priv
->old_duplex
= -1;
331 priv
->old_pause
= -1;
332 priv
->phydev
= phydev
;
334 /* Configure port multiplexer based on what the probed PHY device since
335 * reading the 'max-speed' property determines the maximum supported
336 * PHY speed which is needed for bcmgenet_mii_config() to configure
337 * things appropriately.
339 ret
= bcmgenet_mii_config(dev
);
341 phy_disconnect(priv
->phydev
);
345 phy_flags
= PHY_BRCM_100MBPS_WAR
;
347 /* workarounds are only needed for 100Mpbs PHYs, and
348 * never on GENET V1 hardware
350 if ((phydev
->supported
& PHY_GBIT_FEATURES
) || GENET_IS_V1(priv
))
353 phydev
->dev_flags
|= phy_flags
;
354 phydev
->advertising
= phydev
->supported
;
356 /* The internal PHY has its link interrupts routed to the
359 if (phy_is_internal(priv
->phydev
))
360 priv
->mii_bus
->irq
[phydev
->addr
] = PHY_IGNORE_INTERRUPT
;
362 priv
->mii_bus
->irq
[phydev
->addr
] = PHY_POLL
;
364 pr_info("attached PHY at address %d [%s]\n",
365 phydev
->addr
, phydev
->drv
->name
);
370 static int bcmgenet_mii_alloc(struct bcmgenet_priv
*priv
)
377 priv
->mii_bus
= mdiobus_alloc();
378 if (!priv
->mii_bus
) {
379 pr_err("failed to allocate\n");
384 bus
->priv
= priv
->dev
;
385 bus
->name
= "bcmgenet MII bus";
386 bus
->parent
= &priv
->pdev
->dev
;
387 bus
->read
= bcmgenet_mii_read
;
388 bus
->write
= bcmgenet_mii_write
;
389 snprintf(bus
->id
, MII_BUS_ID_SIZE
, "%s-%d",
390 priv
->pdev
->name
, priv
->pdev
->id
);
392 bus
->irq
= kzalloc(sizeof(int) * PHY_MAX_ADDR
, GFP_KERNEL
);
394 mdiobus_free(priv
->mii_bus
);
401 static int bcmgenet_mii_of_init(struct bcmgenet_priv
*priv
)
403 struct device_node
*dn
= priv
->pdev
->dev
.of_node
;
404 struct device
*kdev
= &priv
->pdev
->dev
;
405 struct device_node
*mdio_dn
;
409 compat
= kasprintf(GFP_KERNEL
, "brcm,genet-mdio-v%d", priv
->version
);
413 mdio_dn
= of_find_compatible_node(dn
, NULL
, compat
);
416 dev_err(kdev
, "unable to find MDIO bus node\n");
420 ret
= of_mdiobus_register(priv
->mii_bus
, mdio_dn
);
422 dev_err(kdev
, "failed to register MDIO bus\n");
426 /* Fetch the PHY phandle */
427 priv
->phy_dn
= of_parse_phandle(dn
, "phy-handle", 0);
429 /* Get the link mode */
430 priv
->phy_interface
= of_get_phy_mode(dn
);
435 int bcmgenet_mii_init(struct net_device
*dev
)
437 struct bcmgenet_priv
*priv
= netdev_priv(dev
);
440 ret
= bcmgenet_mii_alloc(priv
);
444 ret
= bcmgenet_mii_of_init(priv
);
448 ret
= bcmgenet_mii_probe(dev
);
455 mdiobus_unregister(priv
->mii_bus
);
457 kfree(priv
->mii_bus
->irq
);
458 mdiobus_free(priv
->mii_bus
);
462 void bcmgenet_mii_exit(struct net_device
*dev
)
464 struct bcmgenet_priv
*priv
= netdev_priv(dev
);
466 mdiobus_unregister(priv
->mii_bus
);
467 kfree(priv
->mii_bus
->irq
);
468 mdiobus_free(priv
->mii_bus
);