2 * Broadcom Starfighter 2 DSA switch driver
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 as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
12 #include <linux/list.h>
13 #include <linux/module.h>
14 #include <linux/netdevice.h>
15 #include <linux/interrupt.h>
16 #include <linux/platform_device.h>
18 #include <linux/phy.h>
19 #include <linux/phy_fixed.h>
20 #include <linux/mii.h>
22 #include <linux/of_irq.h>
23 #include <linux/of_address.h>
24 #include <linux/of_net.h>
25 #include <linux/of_mdio.h>
27 #include <linux/ethtool.h>
28 #include <linux/if_bridge.h>
29 #include <linux/brcmphy.h>
30 #include <linux/etherdevice.h>
31 #include <net/switchdev.h>
32 #include <linux/platform_data/b53.h>
35 #include "bcm_sf2_regs.h"
36 #include "b53/b53_priv.h"
37 #include "b53/b53_regs.h"
39 static enum dsa_tag_protocol
bcm_sf2_sw_get_tag_protocol(struct dsa_switch
*ds
)
41 return DSA_TAG_PROTO_BRCM
;
44 static void bcm_sf2_imp_vlan_setup(struct dsa_switch
*ds
, int cpu_port
)
46 struct bcm_sf2_priv
*priv
= bcm_sf2_to_priv(ds
);
50 /* Enable the IMP Port to be in the same VLAN as the other ports
51 * on a per-port basis such that we only have Port i and IMP in
54 for (i
= 0; i
< priv
->hw_params
.num_ports
; i
++) {
55 if (!((1 << i
) & ds
->enabled_port_mask
))
58 reg
= core_readl(priv
, CORE_PORT_VLAN_CTL_PORT(i
));
59 reg
|= (1 << cpu_port
);
60 core_writel(priv
, reg
, CORE_PORT_VLAN_CTL_PORT(i
));
64 static void bcm_sf2_imp_setup(struct dsa_switch
*ds
, int port
)
66 struct bcm_sf2_priv
*priv
= bcm_sf2_to_priv(ds
);
69 /* Enable the port memories */
70 reg
= core_readl(priv
, CORE_MEM_PSM_VDD_CTRL
);
71 reg
&= ~P_TXQ_PSM_VDD(port
);
72 core_writel(priv
, reg
, CORE_MEM_PSM_VDD_CTRL
);
74 /* Enable Broadcast, Multicast, Unicast forwarding to IMP port */
75 reg
= core_readl(priv
, CORE_IMP_CTL
);
76 reg
|= (RX_BCST_EN
| RX_MCST_EN
| RX_UCST_EN
);
77 reg
&= ~(RX_DIS
| TX_DIS
);
78 core_writel(priv
, reg
, CORE_IMP_CTL
);
80 /* Enable forwarding */
81 core_writel(priv
, SW_FWDG_EN
, CORE_SWMODE
);
83 /* Enable IMP port in dumb mode */
84 reg
= core_readl(priv
, CORE_SWITCH_CTRL
);
85 reg
|= MII_DUMB_FWDG_EN
;
86 core_writel(priv
, reg
, CORE_SWITCH_CTRL
);
88 /* Resolve which bit controls the Broadcom tag */
104 /* Enable Broadcom tags for IMP port */
105 reg
= core_readl(priv
, CORE_BRCM_HDR_CTRL
);
107 core_writel(priv
, reg
, CORE_BRCM_HDR_CTRL
);
109 /* Enable reception Broadcom tag for CPU TX (switch RX) to
110 * allow us to tag outgoing frames
112 reg
= core_readl(priv
, CORE_BRCM_HDR_RX_DIS
);
114 core_writel(priv
, reg
, CORE_BRCM_HDR_RX_DIS
);
116 /* Enable transmission of Broadcom tags from the switch (CPU RX) to
117 * allow delivering frames to the per-port net_devices
119 reg
= core_readl(priv
, CORE_BRCM_HDR_TX_DIS
);
121 core_writel(priv
, reg
, CORE_BRCM_HDR_TX_DIS
);
123 /* Force link status for IMP port */
124 reg
= core_readl(priv
, CORE_STS_OVERRIDE_IMP
);
125 reg
|= (MII_SW_OR
| LINK_STS
);
126 core_writel(priv
, reg
, CORE_STS_OVERRIDE_IMP
);
129 static void bcm_sf2_eee_enable_set(struct dsa_switch
*ds
, int port
, bool enable
)
131 struct bcm_sf2_priv
*priv
= bcm_sf2_to_priv(ds
);
134 reg
= core_readl(priv
, CORE_EEE_EN_CTRL
);
139 core_writel(priv
, reg
, CORE_EEE_EN_CTRL
);
142 static void bcm_sf2_gphy_enable_set(struct dsa_switch
*ds
, bool enable
)
144 struct bcm_sf2_priv
*priv
= bcm_sf2_to_priv(ds
);
147 reg
= reg_readl(priv
, REG_SPHY_CNTRL
);
150 reg
&= ~(EXT_PWR_DOWN
| IDDQ_BIAS
| CK25_DIS
);
151 reg_writel(priv
, reg
, REG_SPHY_CNTRL
);
153 reg
= reg_readl(priv
, REG_SPHY_CNTRL
);
156 reg
|= EXT_PWR_DOWN
| IDDQ_BIAS
| PHY_RESET
;
157 reg_writel(priv
, reg
, REG_SPHY_CNTRL
);
161 reg_writel(priv
, reg
, REG_SPHY_CNTRL
);
163 /* Use PHY-driven LED signaling */
165 reg
= reg_readl(priv
, REG_LED_CNTRL(0));
166 reg
|= SPDLNK_SRC_SEL
;
167 reg_writel(priv
, reg
, REG_LED_CNTRL(0));
171 static inline void bcm_sf2_port_intr_enable(struct bcm_sf2_priv
*priv
,
181 /* Port 0 interrupts are located on the first bank */
182 intrl2_0_mask_clear(priv
, P_IRQ_MASK(P0_IRQ_OFF
));
185 off
= P_IRQ_OFF(port
);
189 intrl2_1_mask_clear(priv
, P_IRQ_MASK(off
));
192 static inline void bcm_sf2_port_intr_disable(struct bcm_sf2_priv
*priv
,
202 /* Port 0 interrupts are located on the first bank */
203 intrl2_0_mask_set(priv
, P_IRQ_MASK(P0_IRQ_OFF
));
204 intrl2_0_writel(priv
, P_IRQ_MASK(P0_IRQ_OFF
), INTRL2_CPU_CLEAR
);
207 off
= P_IRQ_OFF(port
);
211 intrl2_1_mask_set(priv
, P_IRQ_MASK(off
));
212 intrl2_1_writel(priv
, P_IRQ_MASK(off
), INTRL2_CPU_CLEAR
);
215 static int bcm_sf2_port_setup(struct dsa_switch
*ds
, int port
,
216 struct phy_device
*phy
)
218 struct bcm_sf2_priv
*priv
= bcm_sf2_to_priv(ds
);
219 s8 cpu_port
= ds
->dst
[ds
->index
].cpu_port
;
222 /* Clear the memory power down */
223 reg
= core_readl(priv
, CORE_MEM_PSM_VDD_CTRL
);
224 reg
&= ~P_TXQ_PSM_VDD(port
);
225 core_writel(priv
, reg
, CORE_MEM_PSM_VDD_CTRL
);
227 /* Clear the Rx and Tx disable bits and set to no spanning tree */
228 core_writel(priv
, 0, CORE_G_PCTL_PORT(port
));
230 /* Re-enable the GPHY and re-apply workarounds */
231 if (priv
->int_phy_mask
& 1 << port
&& priv
->hw_params
.num_gphy
== 1) {
232 bcm_sf2_gphy_enable_set(ds
, true);
234 /* if phy_stop() has been called before, phy
235 * will be in halted state, and phy_start()
238 * the resume path does not configure back
239 * autoneg settings, and since we hard reset
240 * the phy manually here, we need to reset the
241 * state machine also.
243 phy
->state
= PHY_READY
;
248 /* Enable MoCA port interrupts to get notified */
249 if (port
== priv
->moca_port
)
250 bcm_sf2_port_intr_enable(priv
, port
);
252 /* Set this port, and only this one to be in the default VLAN,
253 * if member of a bridge, restore its membership prior to
254 * bringing down this port.
256 reg
= core_readl(priv
, CORE_PORT_VLAN_CTL_PORT(port
));
257 reg
&= ~PORT_VLAN_CTRL_MASK
;
259 reg
|= priv
->dev
->ports
[port
].vlan_ctl_mask
;
260 core_writel(priv
, reg
, CORE_PORT_VLAN_CTL_PORT(port
));
262 bcm_sf2_imp_vlan_setup(ds
, cpu_port
);
264 /* If EEE was enabled, restore it */
265 if (priv
->port_sts
[port
].eee
.eee_enabled
)
266 bcm_sf2_eee_enable_set(ds
, port
, true);
271 static void bcm_sf2_port_disable(struct dsa_switch
*ds
, int port
,
272 struct phy_device
*phy
)
274 struct bcm_sf2_priv
*priv
= bcm_sf2_to_priv(ds
);
277 if (priv
->wol_ports_mask
& (1 << port
))
280 if (port
== priv
->moca_port
)
281 bcm_sf2_port_intr_disable(priv
, port
);
283 if (priv
->int_phy_mask
& 1 << port
&& priv
->hw_params
.num_gphy
== 1)
284 bcm_sf2_gphy_enable_set(ds
, false);
286 if (dsa_is_cpu_port(ds
, port
))
289 off
= CORE_G_PCTL_PORT(port
);
291 reg
= core_readl(priv
, off
);
292 reg
|= RX_DIS
| TX_DIS
;
293 core_writel(priv
, reg
, off
);
295 /* Power down the port memory */
296 reg
= core_readl(priv
, CORE_MEM_PSM_VDD_CTRL
);
297 reg
|= P_TXQ_PSM_VDD(port
);
298 core_writel(priv
, reg
, CORE_MEM_PSM_VDD_CTRL
);
301 /* Returns 0 if EEE was not enabled, or 1 otherwise
303 static int bcm_sf2_eee_init(struct dsa_switch
*ds
, int port
,
304 struct phy_device
*phy
)
306 struct bcm_sf2_priv
*priv
= bcm_sf2_to_priv(ds
);
307 struct ethtool_eee
*p
= &priv
->port_sts
[port
].eee
;
310 p
->supported
= (SUPPORTED_1000baseT_Full
| SUPPORTED_100baseT_Full
);
312 ret
= phy_init_eee(phy
, 0);
316 bcm_sf2_eee_enable_set(ds
, port
, true);
321 static int bcm_sf2_sw_get_eee(struct dsa_switch
*ds
, int port
,
322 struct ethtool_eee
*e
)
324 struct bcm_sf2_priv
*priv
= bcm_sf2_to_priv(ds
);
325 struct ethtool_eee
*p
= &priv
->port_sts
[port
].eee
;
328 reg
= core_readl(priv
, CORE_EEE_LPI_INDICATE
);
329 e
->eee_enabled
= p
->eee_enabled
;
330 e
->eee_active
= !!(reg
& (1 << port
));
335 static int bcm_sf2_sw_set_eee(struct dsa_switch
*ds
, int port
,
336 struct phy_device
*phydev
,
337 struct ethtool_eee
*e
)
339 struct bcm_sf2_priv
*priv
= bcm_sf2_to_priv(ds
);
340 struct ethtool_eee
*p
= &priv
->port_sts
[port
].eee
;
342 p
->eee_enabled
= e
->eee_enabled
;
344 if (!p
->eee_enabled
) {
345 bcm_sf2_eee_enable_set(ds
, port
, false);
347 p
->eee_enabled
= bcm_sf2_eee_init(ds
, port
, phydev
);
355 static int bcm_sf2_sw_indir_rw(struct bcm_sf2_priv
*priv
, int op
, int addr
,
361 reg
= reg_readl(priv
, REG_SWITCH_CNTRL
);
362 reg
|= MDIO_MASTER_SEL
;
363 reg_writel(priv
, reg
, REG_SWITCH_CNTRL
);
365 /* Page << 8 | offset */
368 core_writel(priv
, addr
, reg
);
370 /* Page << 8 | offset */
371 reg
= 0x80 << 8 | regnum
<< 1;
375 ret
= core_readl(priv
, reg
);
377 core_writel(priv
, val
, reg
);
379 reg
= reg_readl(priv
, REG_SWITCH_CNTRL
);
380 reg
&= ~MDIO_MASTER_SEL
;
381 reg_writel(priv
, reg
, REG_SWITCH_CNTRL
);
386 static int bcm_sf2_sw_mdio_read(struct mii_bus
*bus
, int addr
, int regnum
)
388 struct bcm_sf2_priv
*priv
= bus
->priv
;
390 /* Intercept reads from Broadcom pseudo-PHY address, else, send
391 * them to our master MDIO bus controller
393 if (addr
== BRCM_PSEUDO_PHY_ADDR
&& priv
->indir_phy_mask
& BIT(addr
))
394 return bcm_sf2_sw_indir_rw(priv
, 1, addr
, regnum
, 0);
396 return mdiobus_read(priv
->master_mii_bus
, addr
, regnum
);
399 static int bcm_sf2_sw_mdio_write(struct mii_bus
*bus
, int addr
, int regnum
,
402 struct bcm_sf2_priv
*priv
= bus
->priv
;
404 /* Intercept writes to the Broadcom pseudo-PHY address, else,
405 * send them to our master MDIO bus controller
407 if (addr
== BRCM_PSEUDO_PHY_ADDR
&& priv
->indir_phy_mask
& BIT(addr
))
408 bcm_sf2_sw_indir_rw(priv
, 0, addr
, regnum
, val
);
410 mdiobus_write(priv
->master_mii_bus
, addr
, regnum
, val
);
415 static irqreturn_t
bcm_sf2_switch_0_isr(int irq
, void *dev_id
)
417 struct bcm_sf2_priv
*priv
= dev_id
;
419 priv
->irq0_stat
= intrl2_0_readl(priv
, INTRL2_CPU_STATUS
) &
421 intrl2_0_writel(priv
, priv
->irq0_stat
, INTRL2_CPU_CLEAR
);
426 static irqreturn_t
bcm_sf2_switch_1_isr(int irq
, void *dev_id
)
428 struct bcm_sf2_priv
*priv
= dev_id
;
430 priv
->irq1_stat
= intrl2_1_readl(priv
, INTRL2_CPU_STATUS
) &
432 intrl2_1_writel(priv
, priv
->irq1_stat
, INTRL2_CPU_CLEAR
);
434 if (priv
->irq1_stat
& P_LINK_UP_IRQ(P7_IRQ_OFF
))
435 priv
->port_sts
[7].link
= 1;
436 if (priv
->irq1_stat
& P_LINK_DOWN_IRQ(P7_IRQ_OFF
))
437 priv
->port_sts
[7].link
= 0;
442 static int bcm_sf2_sw_rst(struct bcm_sf2_priv
*priv
)
444 unsigned int timeout
= 1000;
447 reg
= core_readl(priv
, CORE_WATCHDOG_CTRL
);
448 reg
|= SOFTWARE_RESET
| EN_CHIP_RST
| EN_SW_RESET
;
449 core_writel(priv
, reg
, CORE_WATCHDOG_CTRL
);
452 reg
= core_readl(priv
, CORE_WATCHDOG_CTRL
);
453 if (!(reg
& SOFTWARE_RESET
))
456 usleep_range(1000, 2000);
457 } while (timeout
-- > 0);
465 static void bcm_sf2_intr_disable(struct bcm_sf2_priv
*priv
)
467 intrl2_0_mask_set(priv
, 0xffffffff);
468 intrl2_0_writel(priv
, 0xffffffff, INTRL2_CPU_CLEAR
);
469 intrl2_1_mask_set(priv
, 0xffffffff);
470 intrl2_1_writel(priv
, 0xffffffff, INTRL2_CPU_CLEAR
);
473 static void bcm_sf2_identify_ports(struct bcm_sf2_priv
*priv
,
474 struct device_node
*dn
)
476 struct device_node
*port
;
477 const char *phy_mode_str
;
479 unsigned int port_num
;
482 priv
->moca_port
= -1;
484 for_each_available_child_of_node(dn
, port
) {
485 if (of_property_read_u32(port
, "reg", &port_num
))
488 /* Internal PHYs get assigned a specific 'phy-mode' property
489 * value: "internal" to help flag them before MDIO probing
490 * has completed, since they might be turned off at that
493 mode
= of_get_phy_mode(port
);
495 ret
= of_property_read_string(port
, "phy-mode",
500 if (!strcasecmp(phy_mode_str
, "internal"))
501 priv
->int_phy_mask
|= 1 << port_num
;
504 if (mode
== PHY_INTERFACE_MODE_MOCA
)
505 priv
->moca_port
= port_num
;
509 static int bcm_sf2_mdio_register(struct dsa_switch
*ds
)
511 struct bcm_sf2_priv
*priv
= bcm_sf2_to_priv(ds
);
512 struct device_node
*dn
;
516 /* Find our integrated MDIO bus node */
517 dn
= of_find_compatible_node(NULL
, NULL
, "brcm,unimac-mdio");
518 priv
->master_mii_bus
= of_mdio_find_bus(dn
);
519 if (!priv
->master_mii_bus
)
520 return -EPROBE_DEFER
;
522 get_device(&priv
->master_mii_bus
->dev
);
523 priv
->master_mii_dn
= dn
;
525 priv
->slave_mii_bus
= devm_mdiobus_alloc(ds
->dev
);
526 if (!priv
->slave_mii_bus
)
529 priv
->slave_mii_bus
->priv
= priv
;
530 priv
->slave_mii_bus
->name
= "sf2 slave mii";
531 priv
->slave_mii_bus
->read
= bcm_sf2_sw_mdio_read
;
532 priv
->slave_mii_bus
->write
= bcm_sf2_sw_mdio_write
;
533 snprintf(priv
->slave_mii_bus
->id
, MII_BUS_ID_SIZE
, "sf2-%d",
535 priv
->slave_mii_bus
->dev
.of_node
= dn
;
537 /* Include the pseudo-PHY address to divert reads towards our
538 * workaround. This is only required for 7445D0, since 7445E0
539 * disconnects the internal switch pseudo-PHY such that we can use the
540 * regular SWITCH_MDIO master controller instead.
542 * Here we flag the pseudo PHY as needing special treatment and would
543 * otherwise make all other PHY read/writes go to the master MDIO bus
544 * controller that comes with this switch backed by the "mdio-unimac"
547 if (of_machine_is_compatible("brcm,bcm7445d0"))
548 priv
->indir_phy_mask
|= (1 << BRCM_PSEUDO_PHY_ADDR
);
550 priv
->indir_phy_mask
= 0;
552 ds
->phys_mii_mask
= priv
->indir_phy_mask
;
553 ds
->slave_mii_bus
= priv
->slave_mii_bus
;
554 priv
->slave_mii_bus
->parent
= ds
->dev
->parent
;
555 priv
->slave_mii_bus
->phy_mask
= ~priv
->indir_phy_mask
;
558 err
= of_mdiobus_register(priv
->slave_mii_bus
, dn
);
560 err
= mdiobus_register(priv
->slave_mii_bus
);
568 static void bcm_sf2_mdio_unregister(struct bcm_sf2_priv
*priv
)
570 mdiobus_unregister(priv
->slave_mii_bus
);
571 if (priv
->master_mii_dn
)
572 of_node_put(priv
->master_mii_dn
);
575 static u32
bcm_sf2_sw_get_phy_flags(struct dsa_switch
*ds
, int port
)
577 struct bcm_sf2_priv
*priv
= bcm_sf2_to_priv(ds
);
579 /* The BCM7xxx PHY driver expects to find the integrated PHY revision
580 * in bits 15:8 and the patch level in bits 7:0 which is exactly what
581 * the REG_PHY_REVISION register layout is.
584 return priv
->hw_params
.gphy_rev
;
587 static void bcm_sf2_sw_adjust_link(struct dsa_switch
*ds
, int port
,
588 struct phy_device
*phydev
)
590 struct bcm_sf2_priv
*priv
= bcm_sf2_to_priv(ds
);
591 u32 id_mode_dis
= 0, port_mode
;
592 const char *str
= NULL
;
595 switch (phydev
->interface
) {
596 case PHY_INTERFACE_MODE_RGMII
:
597 str
= "RGMII (no delay)";
599 case PHY_INTERFACE_MODE_RGMII_TXID
:
601 str
= "RGMII (TX delay)";
602 port_mode
= EXT_GPHY
;
604 case PHY_INTERFACE_MODE_MII
:
606 port_mode
= EXT_EPHY
;
608 case PHY_INTERFACE_MODE_REVMII
:
610 port_mode
= EXT_REVMII
;
613 /* All other PHYs: internal and MoCA */
617 /* If the link is down, just disable the interface to conserve power */
619 reg
= reg_readl(priv
, REG_RGMII_CNTRL_P(port
));
620 reg
&= ~RGMII_MODE_EN
;
621 reg_writel(priv
, reg
, REG_RGMII_CNTRL_P(port
));
625 /* Clear id_mode_dis bit, and the existing port mode, but
626 * make sure we enable the RGMII block for data to pass
628 reg
= reg_readl(priv
, REG_RGMII_CNTRL_P(port
));
630 reg
&= ~(PORT_MODE_MASK
<< PORT_MODE_SHIFT
);
631 reg
&= ~(RX_PAUSE_EN
| TX_PAUSE_EN
);
633 reg
|= port_mode
| RGMII_MODE_EN
;
638 if (phydev
->asym_pause
)
643 reg_writel(priv
, reg
, REG_RGMII_CNTRL_P(port
));
645 pr_info("Port %d configured for %s\n", port
, str
);
648 /* Force link settings detected from the PHY */
650 switch (phydev
->speed
) {
652 reg
|= SPDSTS_1000
<< SPEED_SHIFT
;
655 reg
|= SPDSTS_100
<< SPEED_SHIFT
;
661 if (phydev
->duplex
== DUPLEX_FULL
)
664 core_writel(priv
, reg
, CORE_STS_OVERRIDE_GMIIP_PORT(port
));
667 static void bcm_sf2_sw_fixed_link_update(struct dsa_switch
*ds
, int port
,
668 struct fixed_phy_status
*status
)
670 struct bcm_sf2_priv
*priv
= bcm_sf2_to_priv(ds
);
674 duplex
= core_readl(priv
, CORE_DUPSTS
);
675 pause
= core_readl(priv
, CORE_PAUSESTS
);
679 /* MoCA port is special as we do not get link status from CORE_LNKSTS,
680 * which means that we need to force the link at the port override
681 * level to get the data to flow. We do use what the interrupt handler
682 * did determine before.
684 * For the other ports, we just force the link status, since this is
685 * a fixed PHY device.
687 if (port
== priv
->moca_port
) {
688 status
->link
= priv
->port_sts
[port
].link
;
689 /* For MoCA interfaces, also force a link down notification
690 * since some version of the user-space daemon (mocad) use
691 * cmd->autoneg to force the link, which messes up the PHY
692 * state machine and make it go in PHY_FORCING state instead.
695 netif_carrier_off(ds
->ports
[port
].netdev
);
699 status
->duplex
= !!(duplex
& (1 << port
));
702 reg
= core_readl(priv
, CORE_STS_OVERRIDE_GMIIP_PORT(port
));
708 core_writel(priv
, reg
, CORE_STS_OVERRIDE_GMIIP_PORT(port
));
710 if ((pause
& (1 << port
)) &&
711 (pause
& (1 << (port
+ PAUSESTS_TX_PAUSE_SHIFT
)))) {
712 status
->asym_pause
= 1;
716 if (pause
& (1 << port
))
720 static int bcm_sf2_sw_suspend(struct dsa_switch
*ds
)
722 struct bcm_sf2_priv
*priv
= bcm_sf2_to_priv(ds
);
725 bcm_sf2_intr_disable(priv
);
727 /* Disable all ports physically present including the IMP
728 * port, the other ones have already been disabled during
731 for (port
= 0; port
< DSA_MAX_PORTS
; port
++) {
732 if ((1 << port
) & ds
->enabled_port_mask
||
733 dsa_is_cpu_port(ds
, port
))
734 bcm_sf2_port_disable(ds
, port
, NULL
);
740 static int bcm_sf2_sw_resume(struct dsa_switch
*ds
)
742 struct bcm_sf2_priv
*priv
= bcm_sf2_to_priv(ds
);
746 ret
= bcm_sf2_sw_rst(priv
);
748 pr_err("%s: failed to software reset switch\n", __func__
);
752 if (priv
->hw_params
.num_gphy
== 1)
753 bcm_sf2_gphy_enable_set(ds
, true);
755 for (port
= 0; port
< DSA_MAX_PORTS
; port
++) {
756 if ((1 << port
) & ds
->enabled_port_mask
)
757 bcm_sf2_port_setup(ds
, port
, NULL
);
758 else if (dsa_is_cpu_port(ds
, port
))
759 bcm_sf2_imp_setup(ds
, port
);
765 static void bcm_sf2_sw_get_wol(struct dsa_switch
*ds
, int port
,
766 struct ethtool_wolinfo
*wol
)
768 struct net_device
*p
= ds
->dst
[ds
->index
].master_netdev
;
769 struct bcm_sf2_priv
*priv
= bcm_sf2_to_priv(ds
);
770 struct ethtool_wolinfo pwol
;
772 /* Get the parent device WoL settings */
773 p
->ethtool_ops
->get_wol(p
, &pwol
);
775 /* Advertise the parent device supported settings */
776 wol
->supported
= pwol
.supported
;
777 memset(&wol
->sopass
, 0, sizeof(wol
->sopass
));
779 if (pwol
.wolopts
& WAKE_MAGICSECURE
)
780 memcpy(&wol
->sopass
, pwol
.sopass
, sizeof(wol
->sopass
));
782 if (priv
->wol_ports_mask
& (1 << port
))
783 wol
->wolopts
= pwol
.wolopts
;
788 static int bcm_sf2_sw_set_wol(struct dsa_switch
*ds
, int port
,
789 struct ethtool_wolinfo
*wol
)
791 struct net_device
*p
= ds
->dst
[ds
->index
].master_netdev
;
792 struct bcm_sf2_priv
*priv
= bcm_sf2_to_priv(ds
);
793 s8 cpu_port
= ds
->dst
[ds
->index
].cpu_port
;
794 struct ethtool_wolinfo pwol
;
796 p
->ethtool_ops
->get_wol(p
, &pwol
);
797 if (wol
->wolopts
& ~pwol
.supported
)
801 priv
->wol_ports_mask
|= (1 << port
);
803 priv
->wol_ports_mask
&= ~(1 << port
);
805 /* If we have at least one port enabled, make sure the CPU port
806 * is also enabled. If the CPU port is the last one enabled, we disable
807 * it since this configuration does not make sense.
809 if (priv
->wol_ports_mask
&& priv
->wol_ports_mask
!= (1 << cpu_port
))
810 priv
->wol_ports_mask
|= (1 << cpu_port
);
812 priv
->wol_ports_mask
&= ~(1 << cpu_port
);
814 return p
->ethtool_ops
->set_wol(p
, wol
);
817 static int bcm_sf2_vlan_op_wait(struct bcm_sf2_priv
*priv
)
819 unsigned int timeout
= 10;
823 reg
= core_readl(priv
, CORE_ARLA_VTBL_RWCTRL
);
824 if (!(reg
& ARLA_VTBL_STDN
))
827 usleep_range(1000, 2000);
833 static int bcm_sf2_vlan_op(struct bcm_sf2_priv
*priv
, u8 op
)
835 core_writel(priv
, ARLA_VTBL_STDN
| op
, CORE_ARLA_VTBL_RWCTRL
);
837 return bcm_sf2_vlan_op_wait(priv
);
840 static void bcm_sf2_sw_configure_vlan(struct dsa_switch
*ds
)
842 struct bcm_sf2_priv
*priv
= bcm_sf2_to_priv(ds
);
845 /* Clear all VLANs */
846 bcm_sf2_vlan_op(priv
, ARLA_VTBL_CMD_CLEAR
);
848 for (port
= 0; port
< priv
->hw_params
.num_ports
; port
++) {
849 if (!((1 << port
) & ds
->enabled_port_mask
))
852 core_writel(priv
, 1, CORE_DEFAULT_1Q_TAG_P(port
));
856 static int bcm_sf2_sw_setup(struct dsa_switch
*ds
)
858 struct bcm_sf2_priv
*priv
= bcm_sf2_to_priv(ds
);
861 /* Enable all valid ports and disable those unused */
862 for (port
= 0; port
< priv
->hw_params
.num_ports
; port
++) {
863 /* IMP port receives special treatment */
864 if ((1 << port
) & ds
->enabled_port_mask
)
865 bcm_sf2_port_setup(ds
, port
, NULL
);
866 else if (dsa_is_cpu_port(ds
, port
))
867 bcm_sf2_imp_setup(ds
, port
);
869 bcm_sf2_port_disable(ds
, port
, NULL
);
872 bcm_sf2_sw_configure_vlan(ds
);
877 /* The SWITCH_CORE register space is managed by b53 but operates on a page +
878 * register basis so we need to translate that into an address that the
879 * bus-glue understands.
881 #define SF2_PAGE_REG_MKADDR(page, reg) ((page) << 10 | (reg) << 2)
883 static int bcm_sf2_core_read8(struct b53_device
*dev
, u8 page
, u8 reg
,
886 struct bcm_sf2_priv
*priv
= dev
->priv
;
888 *val
= core_readl(priv
, SF2_PAGE_REG_MKADDR(page
, reg
));
893 static int bcm_sf2_core_read16(struct b53_device
*dev
, u8 page
, u8 reg
,
896 struct bcm_sf2_priv
*priv
= dev
->priv
;
898 *val
= core_readl(priv
, SF2_PAGE_REG_MKADDR(page
, reg
));
903 static int bcm_sf2_core_read32(struct b53_device
*dev
, u8 page
, u8 reg
,
906 struct bcm_sf2_priv
*priv
= dev
->priv
;
908 *val
= core_readl(priv
, SF2_PAGE_REG_MKADDR(page
, reg
));
913 static int bcm_sf2_core_read64(struct b53_device
*dev
, u8 page
, u8 reg
,
916 struct bcm_sf2_priv
*priv
= dev
->priv
;
918 *val
= core_readq(priv
, SF2_PAGE_REG_MKADDR(page
, reg
));
923 static int bcm_sf2_core_write8(struct b53_device
*dev
, u8 page
, u8 reg
,
926 struct bcm_sf2_priv
*priv
= dev
->priv
;
928 core_writel(priv
, value
, SF2_PAGE_REG_MKADDR(page
, reg
));
933 static int bcm_sf2_core_write16(struct b53_device
*dev
, u8 page
, u8 reg
,
936 struct bcm_sf2_priv
*priv
= dev
->priv
;
938 core_writel(priv
, value
, SF2_PAGE_REG_MKADDR(page
, reg
));
943 static int bcm_sf2_core_write32(struct b53_device
*dev
, u8 page
, u8 reg
,
946 struct bcm_sf2_priv
*priv
= dev
->priv
;
948 core_writel(priv
, value
, SF2_PAGE_REG_MKADDR(page
, reg
));
953 static int bcm_sf2_core_write64(struct b53_device
*dev
, u8 page
, u8 reg
,
956 struct bcm_sf2_priv
*priv
= dev
->priv
;
958 core_writeq(priv
, value
, SF2_PAGE_REG_MKADDR(page
, reg
));
963 static struct b53_io_ops bcm_sf2_io_ops
= {
964 .read8
= bcm_sf2_core_read8
,
965 .read16
= bcm_sf2_core_read16
,
966 .read32
= bcm_sf2_core_read32
,
967 .read48
= bcm_sf2_core_read64
,
968 .read64
= bcm_sf2_core_read64
,
969 .write8
= bcm_sf2_core_write8
,
970 .write16
= bcm_sf2_core_write16
,
971 .write32
= bcm_sf2_core_write32
,
972 .write48
= bcm_sf2_core_write64
,
973 .write64
= bcm_sf2_core_write64
,
976 static int bcm_sf2_sw_probe(struct platform_device
*pdev
)
978 const char *reg_names
[BCM_SF2_REGS_NUM
] = BCM_SF2_REGS_NAME
;
979 struct device_node
*dn
= pdev
->dev
.of_node
;
980 struct b53_platform_data
*pdata
;
981 struct bcm_sf2_priv
*priv
;
982 struct b53_device
*dev
;
983 struct dsa_switch
*ds
;
990 priv
= devm_kzalloc(&pdev
->dev
, sizeof(*priv
), GFP_KERNEL
);
994 dev
= b53_switch_alloc(&pdev
->dev
, &bcm_sf2_io_ops
, priv
);
998 pdata
= devm_kzalloc(&pdev
->dev
, sizeof(*pdata
), GFP_KERNEL
);
1002 /* Auto-detection using standard registers will not work, so
1003 * provide an indication of what kind of device we are for
1004 * b53_common to work with
1006 pdata
->chip_id
= BCM7445_DEVICE_ID
;
1012 /* Override the parts that are non-standard wrt. normal b53 devices */
1013 ds
->ops
->get_tag_protocol
= bcm_sf2_sw_get_tag_protocol
;
1014 ds
->ops
->setup
= bcm_sf2_sw_setup
;
1015 ds
->ops
->get_phy_flags
= bcm_sf2_sw_get_phy_flags
;
1016 ds
->ops
->adjust_link
= bcm_sf2_sw_adjust_link
;
1017 ds
->ops
->fixed_link_update
= bcm_sf2_sw_fixed_link_update
;
1018 ds
->ops
->suspend
= bcm_sf2_sw_suspend
;
1019 ds
->ops
->resume
= bcm_sf2_sw_resume
;
1020 ds
->ops
->get_wol
= bcm_sf2_sw_get_wol
;
1021 ds
->ops
->set_wol
= bcm_sf2_sw_set_wol
;
1022 ds
->ops
->port_enable
= bcm_sf2_port_setup
;
1023 ds
->ops
->port_disable
= bcm_sf2_port_disable
;
1024 ds
->ops
->get_eee
= bcm_sf2_sw_get_eee
;
1025 ds
->ops
->set_eee
= bcm_sf2_sw_set_eee
;
1027 /* Avoid having DSA free our slave MDIO bus (checking for
1028 * ds->slave_mii_bus and ds->ops->phy_read being non-NULL)
1030 ds
->ops
->phy_read
= NULL
;
1032 dev_set_drvdata(&pdev
->dev
, priv
);
1034 spin_lock_init(&priv
->indir_lock
);
1035 mutex_init(&priv
->stats_mutex
);
1037 bcm_sf2_identify_ports(priv
, dn
->child
);
1039 priv
->irq0
= irq_of_parse_and_map(dn
, 0);
1040 priv
->irq1
= irq_of_parse_and_map(dn
, 1);
1043 for (i
= 0; i
< BCM_SF2_REGS_NUM
; i
++) {
1044 r
= platform_get_resource(pdev
, IORESOURCE_MEM
, i
);
1045 *base
= devm_ioremap_resource(&pdev
->dev
, r
);
1046 if (IS_ERR(*base
)) {
1047 pr_err("unable to find register: %s\n", reg_names
[i
]);
1048 return PTR_ERR(*base
);
1053 ret
= bcm_sf2_sw_rst(priv
);
1055 pr_err("unable to software reset switch: %d\n", ret
);
1059 ret
= bcm_sf2_mdio_register(ds
);
1061 pr_err("failed to register MDIO bus\n");
1065 /* Disable all interrupts and request them */
1066 bcm_sf2_intr_disable(priv
);
1068 ret
= devm_request_irq(&pdev
->dev
, priv
->irq0
, bcm_sf2_switch_0_isr
, 0,
1071 pr_err("failed to request switch_0 IRQ\n");
1075 ret
= devm_request_irq(&pdev
->dev
, priv
->irq1
, bcm_sf2_switch_1_isr
, 0,
1078 pr_err("failed to request switch_1 IRQ\n");
1082 /* Reset the MIB counters */
1083 reg
= core_readl(priv
, CORE_GMNCFGCFG
);
1085 core_writel(priv
, reg
, CORE_GMNCFGCFG
);
1086 reg
&= ~RST_MIB_CNT
;
1087 core_writel(priv
, reg
, CORE_GMNCFGCFG
);
1089 /* Get the maximum number of ports for this switch */
1090 priv
->hw_params
.num_ports
= core_readl(priv
, CORE_IMP0_PRT_ID
) + 1;
1091 if (priv
->hw_params
.num_ports
> DSA_MAX_PORTS
)
1092 priv
->hw_params
.num_ports
= DSA_MAX_PORTS
;
1094 /* Assume a single GPHY setup if we can't read that property */
1095 if (of_property_read_u32(dn
, "brcm,num-gphy",
1096 &priv
->hw_params
.num_gphy
))
1097 priv
->hw_params
.num_gphy
= 1;
1099 rev
= reg_readl(priv
, REG_SWITCH_REVISION
);
1100 priv
->hw_params
.top_rev
= (rev
>> SWITCH_TOP_REV_SHIFT
) &
1101 SWITCH_TOP_REV_MASK
;
1102 priv
->hw_params
.core_rev
= (rev
& SF2_REV_MASK
);
1104 rev
= reg_readl(priv
, REG_PHY_REVISION
);
1105 priv
->hw_params
.gphy_rev
= rev
& PHY_REVISION_MASK
;
1107 ret
= b53_switch_register(dev
);
1111 pr_info("Starfighter 2 top: %x.%02x, core: %x.%02x base: 0x%p, IRQs: %d, %d\n",
1112 priv
->hw_params
.top_rev
>> 8, priv
->hw_params
.top_rev
& 0xff,
1113 priv
->hw_params
.core_rev
>> 8, priv
->hw_params
.core_rev
& 0xff,
1114 priv
->core
, priv
->irq0
, priv
->irq1
);
1119 bcm_sf2_mdio_unregister(priv
);
1123 static int bcm_sf2_sw_remove(struct platform_device
*pdev
)
1125 struct bcm_sf2_priv
*priv
= platform_get_drvdata(pdev
);
1127 /* Disable all ports and interrupts */
1128 priv
->wol_ports_mask
= 0;
1129 bcm_sf2_sw_suspend(priv
->dev
->ds
);
1130 dsa_unregister_switch(priv
->dev
->ds
);
1131 bcm_sf2_mdio_unregister(priv
);
1136 static void bcm_sf2_sw_shutdown(struct platform_device
*pdev
)
1138 struct bcm_sf2_priv
*priv
= platform_get_drvdata(pdev
);
1140 /* For a kernel about to be kexec'd we want to keep the GPHY on for a
1141 * successful MDIO bus scan to occur. If we did turn off the GPHY
1142 * before (e.g: port_disable), this will also power it back on.
1144 * Do not rely on kexec_in_progress, just power the PHY on.
1146 if (priv
->hw_params
.num_gphy
== 1)
1147 bcm_sf2_gphy_enable_set(priv
->dev
->ds
, true);
1150 #ifdef CONFIG_PM_SLEEP
1151 static int bcm_sf2_suspend(struct device
*dev
)
1153 struct platform_device
*pdev
= to_platform_device(dev
);
1154 struct bcm_sf2_priv
*priv
= platform_get_drvdata(pdev
);
1156 return dsa_switch_suspend(priv
->dev
->ds
);
1159 static int bcm_sf2_resume(struct device
*dev
)
1161 struct platform_device
*pdev
= to_platform_device(dev
);
1162 struct bcm_sf2_priv
*priv
= platform_get_drvdata(pdev
);
1164 return dsa_switch_resume(priv
->dev
->ds
);
1166 #endif /* CONFIG_PM_SLEEP */
1168 static SIMPLE_DEV_PM_OPS(bcm_sf2_pm_ops
,
1169 bcm_sf2_suspend
, bcm_sf2_resume
);
1171 static const struct of_device_id bcm_sf2_of_match
[] = {
1172 { .compatible
= "brcm,bcm7445-switch-v4.0" },
1175 MODULE_DEVICE_TABLE(of
, bcm_sf2_of_match
);
1177 static struct platform_driver bcm_sf2_driver
= {
1178 .probe
= bcm_sf2_sw_probe
,
1179 .remove
= bcm_sf2_sw_remove
,
1180 .shutdown
= bcm_sf2_sw_shutdown
,
1183 .of_match_table
= bcm_sf2_of_match
,
1184 .pm
= &bcm_sf2_pm_ops
,
1187 module_platform_driver(bcm_sf2_driver
);
1189 MODULE_AUTHOR("Broadcom Corporation");
1190 MODULE_DESCRIPTION("Driver for Broadcom Starfighter 2 ethernet switch chip");
1191 MODULE_LICENSE("GPL");
1192 MODULE_ALIAS("platform:brcm-sf2");