Florian Fainelli | 246d7f7 | 2014-08-27 17:04:56 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Broadcom Starfighter 2 DSA switch driver |
| 3 | * |
| 4 | * Copyright (C) 2014, Broadcom Corporation |
| 5 | * |
| 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. |
| 10 | */ |
| 11 | |
| 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> |
| 17 | #include <linux/of.h> |
| 18 | #include <linux/phy.h> |
| 19 | #include <linux/phy_fixed.h> |
| 20 | #include <linux/mii.h> |
| 21 | #include <linux/of.h> |
| 22 | #include <linux/of_irq.h> |
| 23 | #include <linux/of_address.h> |
| 24 | #include <net/dsa.h> |
Florian Fainelli | 96e65d7 | 2014-09-18 17:31:25 -0700 | [diff] [blame] | 25 | #include <linux/ethtool.h> |
Florian Fainelli | 12f460f | 2015-02-24 13:15:34 -0800 | [diff] [blame] | 26 | #include <linux/if_bridge.h> |
Florian Fainelli | aafc66f | 2015-06-10 18:08:01 -0700 | [diff] [blame] | 27 | #include <linux/brcmphy.h> |
Florian Fainelli | 246d7f7 | 2014-08-27 17:04:56 -0700 | [diff] [blame] | 28 | |
| 29 | #include "bcm_sf2.h" |
| 30 | #include "bcm_sf2_regs.h" |
| 31 | |
| 32 | /* String, offset, and register size in bytes if different from 4 bytes */ |
| 33 | static const struct bcm_sf2_hw_stats bcm_sf2_mib[] = { |
| 34 | { "TxOctets", 0x000, 8 }, |
| 35 | { "TxDropPkts", 0x020 }, |
| 36 | { "TxQPKTQ0", 0x030 }, |
| 37 | { "TxBroadcastPkts", 0x040 }, |
| 38 | { "TxMulticastPkts", 0x050 }, |
| 39 | { "TxUnicastPKts", 0x060 }, |
| 40 | { "TxCollisions", 0x070 }, |
| 41 | { "TxSingleCollision", 0x080 }, |
| 42 | { "TxMultipleCollision", 0x090 }, |
| 43 | { "TxDeferredCollision", 0x0a0 }, |
| 44 | { "TxLateCollision", 0x0b0 }, |
| 45 | { "TxExcessiveCollision", 0x0c0 }, |
| 46 | { "TxFrameInDisc", 0x0d0 }, |
| 47 | { "TxPausePkts", 0x0e0 }, |
| 48 | { "TxQPKTQ1", 0x0f0 }, |
| 49 | { "TxQPKTQ2", 0x100 }, |
| 50 | { "TxQPKTQ3", 0x110 }, |
| 51 | { "TxQPKTQ4", 0x120 }, |
| 52 | { "TxQPKTQ5", 0x130 }, |
| 53 | { "RxOctets", 0x140, 8 }, |
| 54 | { "RxUndersizePkts", 0x160 }, |
| 55 | { "RxPausePkts", 0x170 }, |
| 56 | { "RxPkts64Octets", 0x180 }, |
| 57 | { "RxPkts65to127Octets", 0x190 }, |
| 58 | { "RxPkts128to255Octets", 0x1a0 }, |
| 59 | { "RxPkts256to511Octets", 0x1b0 }, |
| 60 | { "RxPkts512to1023Octets", 0x1c0 }, |
| 61 | { "RxPkts1024toMaxPktsOctets", 0x1d0 }, |
| 62 | { "RxOversizePkts", 0x1e0 }, |
| 63 | { "RxJabbers", 0x1f0 }, |
| 64 | { "RxAlignmentErrors", 0x200 }, |
| 65 | { "RxFCSErrors", 0x210 }, |
| 66 | { "RxGoodOctets", 0x220, 8 }, |
| 67 | { "RxDropPkts", 0x240 }, |
| 68 | { "RxUnicastPkts", 0x250 }, |
| 69 | { "RxMulticastPkts", 0x260 }, |
| 70 | { "RxBroadcastPkts", 0x270 }, |
| 71 | { "RxSAChanges", 0x280 }, |
| 72 | { "RxFragments", 0x290 }, |
| 73 | { "RxJumboPkt", 0x2a0 }, |
| 74 | { "RxSymblErr", 0x2b0 }, |
| 75 | { "InRangeErrCount", 0x2c0 }, |
| 76 | { "OutRangeErrCount", 0x2d0 }, |
| 77 | { "EEELpiEvent", 0x2e0 }, |
| 78 | { "EEELpiDuration", 0x2f0 }, |
| 79 | { "RxDiscard", 0x300, 8 }, |
| 80 | { "TxQPKTQ6", 0x320 }, |
| 81 | { "TxQPKTQ7", 0x330 }, |
| 82 | { "TxPkts64Octets", 0x340 }, |
| 83 | { "TxPkts65to127Octets", 0x350 }, |
| 84 | { "TxPkts128to255Octets", 0x360 }, |
| 85 | { "TxPkts256to511Ocets", 0x370 }, |
| 86 | { "TxPkts512to1023Ocets", 0x380 }, |
| 87 | { "TxPkts1024toMaxPktOcets", 0x390 }, |
| 88 | }; |
| 89 | |
| 90 | #define BCM_SF2_STATS_SIZE ARRAY_SIZE(bcm_sf2_mib) |
| 91 | |
| 92 | static void bcm_sf2_sw_get_strings(struct dsa_switch *ds, |
| 93 | int port, uint8_t *data) |
| 94 | { |
| 95 | unsigned int i; |
| 96 | |
| 97 | for (i = 0; i < BCM_SF2_STATS_SIZE; i++) |
| 98 | memcpy(data + i * ETH_GSTRING_LEN, |
| 99 | bcm_sf2_mib[i].string, ETH_GSTRING_LEN); |
| 100 | } |
| 101 | |
| 102 | static void bcm_sf2_sw_get_ethtool_stats(struct dsa_switch *ds, |
| 103 | int port, uint64_t *data) |
| 104 | { |
| 105 | struct bcm_sf2_priv *priv = ds_to_priv(ds); |
| 106 | const struct bcm_sf2_hw_stats *s; |
| 107 | unsigned int i; |
| 108 | u64 val = 0; |
| 109 | u32 offset; |
| 110 | |
| 111 | mutex_lock(&priv->stats_mutex); |
| 112 | |
| 113 | /* Now fetch the per-port counters */ |
| 114 | for (i = 0; i < BCM_SF2_STATS_SIZE; i++) { |
| 115 | s = &bcm_sf2_mib[i]; |
| 116 | |
| 117 | /* Do a latched 64-bit read if needed */ |
| 118 | offset = s->reg + CORE_P_MIB_OFFSET(port); |
| 119 | if (s->sizeof_stat == 8) |
| 120 | val = core_readq(priv, offset); |
| 121 | else |
| 122 | val = core_readl(priv, offset); |
| 123 | |
| 124 | data[i] = (u64)val; |
| 125 | } |
| 126 | |
| 127 | mutex_unlock(&priv->stats_mutex); |
| 128 | } |
| 129 | |
| 130 | static int bcm_sf2_sw_get_sset_count(struct dsa_switch *ds) |
| 131 | { |
| 132 | return BCM_SF2_STATS_SIZE; |
| 133 | } |
| 134 | |
Alexander Duyck | b4d2394 | 2014-09-15 13:00:27 -0400 | [diff] [blame] | 135 | static char *bcm_sf2_sw_probe(struct device *host_dev, int sw_addr) |
Florian Fainelli | 246d7f7 | 2014-08-27 17:04:56 -0700 | [diff] [blame] | 136 | { |
| 137 | return "Broadcom Starfighter 2"; |
| 138 | } |
| 139 | |
Florian Fainelli | b6d045d | 2014-09-24 17:05:20 -0700 | [diff] [blame] | 140 | static void bcm_sf2_imp_vlan_setup(struct dsa_switch *ds, int cpu_port) |
Florian Fainelli | 246d7f7 | 2014-08-27 17:04:56 -0700 | [diff] [blame] | 141 | { |
| 142 | struct bcm_sf2_priv *priv = ds_to_priv(ds); |
| 143 | unsigned int i; |
Florian Fainelli | b6d045d | 2014-09-24 17:05:20 -0700 | [diff] [blame] | 144 | u32 reg; |
| 145 | |
| 146 | /* Enable the IMP Port to be in the same VLAN as the other ports |
| 147 | * on a per-port basis such that we only have Port i and IMP in |
| 148 | * the same VLAN. |
| 149 | */ |
| 150 | for (i = 0; i < priv->hw_params.num_ports; i++) { |
| 151 | if (!((1 << i) & ds->phys_port_mask)) |
| 152 | continue; |
| 153 | |
| 154 | reg = core_readl(priv, CORE_PORT_VLAN_CTL_PORT(i)); |
| 155 | reg |= (1 << cpu_port); |
| 156 | core_writel(priv, reg, CORE_PORT_VLAN_CTL_PORT(i)); |
| 157 | } |
| 158 | } |
| 159 | |
| 160 | static void bcm_sf2_imp_setup(struct dsa_switch *ds, int port) |
| 161 | { |
| 162 | struct bcm_sf2_priv *priv = ds_to_priv(ds); |
Florian Fainelli | 246d7f7 | 2014-08-27 17:04:56 -0700 | [diff] [blame] | 163 | u32 reg, val; |
| 164 | |
| 165 | /* Enable the port memories */ |
| 166 | reg = core_readl(priv, CORE_MEM_PSM_VDD_CTRL); |
| 167 | reg &= ~P_TXQ_PSM_VDD(port); |
| 168 | core_writel(priv, reg, CORE_MEM_PSM_VDD_CTRL); |
| 169 | |
| 170 | /* Enable Broadcast, Multicast, Unicast forwarding to IMP port */ |
| 171 | reg = core_readl(priv, CORE_IMP_CTL); |
| 172 | reg |= (RX_BCST_EN | RX_MCST_EN | RX_UCST_EN); |
| 173 | reg &= ~(RX_DIS | TX_DIS); |
| 174 | core_writel(priv, reg, CORE_IMP_CTL); |
| 175 | |
| 176 | /* Enable forwarding */ |
| 177 | core_writel(priv, SW_FWDG_EN, CORE_SWMODE); |
| 178 | |
| 179 | /* Enable IMP port in dumb mode */ |
| 180 | reg = core_readl(priv, CORE_SWITCH_CTRL); |
| 181 | reg |= MII_DUMB_FWDG_EN; |
| 182 | core_writel(priv, reg, CORE_SWITCH_CTRL); |
| 183 | |
| 184 | /* Resolve which bit controls the Broadcom tag */ |
| 185 | switch (port) { |
| 186 | case 8: |
| 187 | val = BRCM_HDR_EN_P8; |
| 188 | break; |
| 189 | case 7: |
| 190 | val = BRCM_HDR_EN_P7; |
| 191 | break; |
| 192 | case 5: |
| 193 | val = BRCM_HDR_EN_P5; |
| 194 | break; |
| 195 | default: |
| 196 | val = 0; |
| 197 | break; |
| 198 | } |
| 199 | |
| 200 | /* Enable Broadcom tags for IMP port */ |
| 201 | reg = core_readl(priv, CORE_BRCM_HDR_CTRL); |
| 202 | reg |= val; |
| 203 | core_writel(priv, reg, CORE_BRCM_HDR_CTRL); |
| 204 | |
| 205 | /* Enable reception Broadcom tag for CPU TX (switch RX) to |
| 206 | * allow us to tag outgoing frames |
| 207 | */ |
| 208 | reg = core_readl(priv, CORE_BRCM_HDR_RX_DIS); |
| 209 | reg &= ~(1 << port); |
| 210 | core_writel(priv, reg, CORE_BRCM_HDR_RX_DIS); |
| 211 | |
| 212 | /* Enable transmission of Broadcom tags from the switch (CPU RX) to |
| 213 | * allow delivering frames to the per-port net_devices |
| 214 | */ |
| 215 | reg = core_readl(priv, CORE_BRCM_HDR_TX_DIS); |
| 216 | reg &= ~(1 << port); |
| 217 | core_writel(priv, reg, CORE_BRCM_HDR_TX_DIS); |
| 218 | |
| 219 | /* Force link status for IMP port */ |
| 220 | reg = core_readl(priv, CORE_STS_OVERRIDE_IMP); |
| 221 | reg |= (MII_SW_OR | LINK_STS); |
| 222 | core_writel(priv, reg, CORE_STS_OVERRIDE_IMP); |
Florian Fainelli | 246d7f7 | 2014-08-27 17:04:56 -0700 | [diff] [blame] | 223 | } |
| 224 | |
Florian Fainelli | 450b05c | 2014-09-24 17:05:22 -0700 | [diff] [blame] | 225 | static void bcm_sf2_eee_enable_set(struct dsa_switch *ds, int port, bool enable) |
| 226 | { |
| 227 | struct bcm_sf2_priv *priv = ds_to_priv(ds); |
| 228 | u32 reg; |
| 229 | |
| 230 | reg = core_readl(priv, CORE_EEE_EN_CTRL); |
| 231 | if (enable) |
| 232 | reg |= 1 << port; |
| 233 | else |
| 234 | reg &= ~(1 << port); |
| 235 | core_writel(priv, reg, CORE_EEE_EN_CTRL); |
| 236 | } |
| 237 | |
Florian Fainelli | b083668 | 2015-02-05 11:40:41 -0800 | [diff] [blame] | 238 | static void bcm_sf2_gphy_enable_set(struct dsa_switch *ds, bool enable) |
| 239 | { |
| 240 | struct bcm_sf2_priv *priv = ds_to_priv(ds); |
| 241 | u32 reg; |
| 242 | |
Florian Fainelli | 9af197a | 2015-02-05 11:40:42 -0800 | [diff] [blame] | 243 | reg = reg_readl(priv, REG_SPHY_CNTRL); |
| 244 | if (enable) { |
| 245 | reg |= PHY_RESET; |
| 246 | reg &= ~(EXT_PWR_DOWN | IDDQ_BIAS | CK25_DIS); |
| 247 | reg_writel(priv, reg, REG_SPHY_CNTRL); |
| 248 | udelay(21); |
| 249 | reg = reg_readl(priv, REG_SPHY_CNTRL); |
| 250 | reg &= ~PHY_RESET; |
| 251 | } else { |
| 252 | reg |= EXT_PWR_DOWN | IDDQ_BIAS | PHY_RESET; |
| 253 | reg_writel(priv, reg, REG_SPHY_CNTRL); |
| 254 | mdelay(1); |
| 255 | reg |= CK25_DIS; |
| 256 | } |
| 257 | reg_writel(priv, reg, REG_SPHY_CNTRL); |
Florian Fainelli | b083668 | 2015-02-05 11:40:41 -0800 | [diff] [blame] | 258 | |
Florian Fainelli | 9af197a | 2015-02-05 11:40:42 -0800 | [diff] [blame] | 259 | /* Use PHY-driven LED signaling */ |
| 260 | if (!enable) { |
| 261 | reg = reg_readl(priv, REG_LED_CNTRL(0)); |
| 262 | reg |= SPDLNK_SRC_SEL; |
| 263 | reg_writel(priv, reg, REG_LED_CNTRL(0)); |
| 264 | } |
Florian Fainelli | b083668 | 2015-02-05 11:40:41 -0800 | [diff] [blame] | 265 | } |
| 266 | |
Florian Fainelli | b6d045d | 2014-09-24 17:05:20 -0700 | [diff] [blame] | 267 | static int bcm_sf2_port_setup(struct dsa_switch *ds, int port, |
| 268 | struct phy_device *phy) |
Florian Fainelli | 246d7f7 | 2014-08-27 17:04:56 -0700 | [diff] [blame] | 269 | { |
| 270 | struct bcm_sf2_priv *priv = ds_to_priv(ds); |
Florian Fainelli | b6d045d | 2014-09-24 17:05:20 -0700 | [diff] [blame] | 271 | s8 cpu_port = ds->dst[ds->index].cpu_port; |
Florian Fainelli | 246d7f7 | 2014-08-27 17:04:56 -0700 | [diff] [blame] | 272 | u32 reg; |
| 273 | |
| 274 | /* Clear the memory power down */ |
| 275 | reg = core_readl(priv, CORE_MEM_PSM_VDD_CTRL); |
| 276 | reg &= ~P_TXQ_PSM_VDD(port); |
| 277 | core_writel(priv, reg, CORE_MEM_PSM_VDD_CTRL); |
| 278 | |
| 279 | /* Clear the Rx and Tx disable bits and set to no spanning tree */ |
| 280 | core_writel(priv, 0, CORE_G_PCTL_PORT(port)); |
| 281 | |
Florian Fainelli | 9af197a | 2015-02-05 11:40:42 -0800 | [diff] [blame] | 282 | /* Re-enable the GPHY and re-apply workarounds */ |
| 283 | if (port == 0 && priv->hw_params.num_gphy == 1) { |
| 284 | bcm_sf2_gphy_enable_set(ds, true); |
| 285 | if (phy) { |
| 286 | /* if phy_stop() has been called before, phy |
| 287 | * will be in halted state, and phy_start() |
| 288 | * will call resume. |
| 289 | * |
| 290 | * the resume path does not configure back |
| 291 | * autoneg settings, and since we hard reset |
| 292 | * the phy manually here, we need to reset the |
| 293 | * state machine also. |
| 294 | */ |
| 295 | phy->state = PHY_READY; |
| 296 | phy_init_hw(phy); |
| 297 | } |
| 298 | } |
| 299 | |
Florian Fainelli | 246d7f7 | 2014-08-27 17:04:56 -0700 | [diff] [blame] | 300 | /* Enable port 7 interrupts to get notified */ |
| 301 | if (port == 7) |
| 302 | intrl2_1_mask_clear(priv, P_IRQ_MASK(P7_IRQ_OFF)); |
| 303 | |
Florian Fainelli | 12f460f | 2015-02-24 13:15:34 -0800 | [diff] [blame] | 304 | /* Set this port, and only this one to be in the default VLAN, |
| 305 | * if member of a bridge, restore its membership prior to |
| 306 | * bringing down this port. |
| 307 | */ |
Florian Fainelli | 246d7f7 | 2014-08-27 17:04:56 -0700 | [diff] [blame] | 308 | reg = core_readl(priv, CORE_PORT_VLAN_CTL_PORT(port)); |
| 309 | reg &= ~PORT_VLAN_CTRL_MASK; |
| 310 | reg |= (1 << port); |
Florian Fainelli | 12f460f | 2015-02-24 13:15:34 -0800 | [diff] [blame] | 311 | reg |= priv->port_sts[port].vlan_ctl_mask; |
Florian Fainelli | 246d7f7 | 2014-08-27 17:04:56 -0700 | [diff] [blame] | 312 | core_writel(priv, reg, CORE_PORT_VLAN_CTL_PORT(port)); |
Florian Fainelli | b6d045d | 2014-09-24 17:05:20 -0700 | [diff] [blame] | 313 | |
| 314 | bcm_sf2_imp_vlan_setup(ds, cpu_port); |
| 315 | |
Florian Fainelli | 450b05c | 2014-09-24 17:05:22 -0700 | [diff] [blame] | 316 | /* If EEE was enabled, restore it */ |
| 317 | if (priv->port_sts[port].eee.eee_enabled) |
| 318 | bcm_sf2_eee_enable_set(ds, port, true); |
| 319 | |
Florian Fainelli | b6d045d | 2014-09-24 17:05:20 -0700 | [diff] [blame] | 320 | return 0; |
Florian Fainelli | 246d7f7 | 2014-08-27 17:04:56 -0700 | [diff] [blame] | 321 | } |
| 322 | |
Florian Fainelli | b6d045d | 2014-09-24 17:05:20 -0700 | [diff] [blame] | 323 | static void bcm_sf2_port_disable(struct dsa_switch *ds, int port, |
| 324 | struct phy_device *phy) |
Florian Fainelli | 246d7f7 | 2014-08-27 17:04:56 -0700 | [diff] [blame] | 325 | { |
| 326 | struct bcm_sf2_priv *priv = ds_to_priv(ds); |
| 327 | u32 off, reg; |
| 328 | |
Florian Fainelli | 96e65d7 | 2014-09-18 17:31:25 -0700 | [diff] [blame] | 329 | if (priv->wol_ports_mask & (1 << port)) |
| 330 | return; |
| 331 | |
Florian Fainelli | b6d045d | 2014-09-24 17:05:20 -0700 | [diff] [blame] | 332 | if (port == 7) { |
| 333 | intrl2_1_mask_set(priv, P_IRQ_MASK(P7_IRQ_OFF)); |
| 334 | intrl2_1_writel(priv, P_IRQ_MASK(P7_IRQ_OFF), INTRL2_CPU_CLEAR); |
| 335 | } |
| 336 | |
Florian Fainelli | 9af197a | 2015-02-05 11:40:42 -0800 | [diff] [blame] | 337 | if (port == 0 && priv->hw_params.num_gphy == 1) |
| 338 | bcm_sf2_gphy_enable_set(ds, false); |
| 339 | |
Florian Fainelli | 246d7f7 | 2014-08-27 17:04:56 -0700 | [diff] [blame] | 340 | if (dsa_is_cpu_port(ds, port)) |
| 341 | off = CORE_IMP_CTL; |
| 342 | else |
| 343 | off = CORE_G_PCTL_PORT(port); |
| 344 | |
| 345 | reg = core_readl(priv, off); |
| 346 | reg |= RX_DIS | TX_DIS; |
| 347 | core_writel(priv, reg, off); |
| 348 | |
| 349 | /* Power down the port memory */ |
| 350 | reg = core_readl(priv, CORE_MEM_PSM_VDD_CTRL); |
| 351 | reg |= P_TXQ_PSM_VDD(port); |
| 352 | core_writel(priv, reg, CORE_MEM_PSM_VDD_CTRL); |
| 353 | } |
| 354 | |
Florian Fainelli | 450b05c | 2014-09-24 17:05:22 -0700 | [diff] [blame] | 355 | /* Returns 0 if EEE was not enabled, or 1 otherwise |
| 356 | */ |
| 357 | static int bcm_sf2_eee_init(struct dsa_switch *ds, int port, |
| 358 | struct phy_device *phy) |
| 359 | { |
| 360 | struct bcm_sf2_priv *priv = ds_to_priv(ds); |
| 361 | struct ethtool_eee *p = &priv->port_sts[port].eee; |
| 362 | int ret; |
| 363 | |
| 364 | p->supported = (SUPPORTED_1000baseT_Full | SUPPORTED_100baseT_Full); |
| 365 | |
| 366 | ret = phy_init_eee(phy, 0); |
| 367 | if (ret) |
| 368 | return 0; |
| 369 | |
| 370 | bcm_sf2_eee_enable_set(ds, port, true); |
| 371 | |
| 372 | return 1; |
| 373 | } |
| 374 | |
| 375 | static int bcm_sf2_sw_get_eee(struct dsa_switch *ds, int port, |
| 376 | struct ethtool_eee *e) |
| 377 | { |
| 378 | struct bcm_sf2_priv *priv = ds_to_priv(ds); |
| 379 | struct ethtool_eee *p = &priv->port_sts[port].eee; |
| 380 | u32 reg; |
| 381 | |
| 382 | reg = core_readl(priv, CORE_EEE_LPI_INDICATE); |
| 383 | e->eee_enabled = p->eee_enabled; |
| 384 | e->eee_active = !!(reg & (1 << port)); |
| 385 | |
| 386 | return 0; |
| 387 | } |
| 388 | |
| 389 | static int bcm_sf2_sw_set_eee(struct dsa_switch *ds, int port, |
| 390 | struct phy_device *phydev, |
| 391 | struct ethtool_eee *e) |
| 392 | { |
| 393 | struct bcm_sf2_priv *priv = ds_to_priv(ds); |
| 394 | struct ethtool_eee *p = &priv->port_sts[port].eee; |
| 395 | |
| 396 | p->eee_enabled = e->eee_enabled; |
| 397 | |
| 398 | if (!p->eee_enabled) { |
| 399 | bcm_sf2_eee_enable_set(ds, port, false); |
| 400 | } else { |
| 401 | p->eee_enabled = bcm_sf2_eee_init(ds, port, phydev); |
| 402 | if (!p->eee_enabled) |
| 403 | return -EOPNOTSUPP; |
| 404 | } |
| 405 | |
| 406 | return 0; |
| 407 | } |
| 408 | |
Florian Fainelli | 12f460f | 2015-02-24 13:15:34 -0800 | [diff] [blame] | 409 | /* Fast-ageing of ARL entries for a given port, equivalent to an ARL |
| 410 | * flush for that port. |
| 411 | */ |
| 412 | static int bcm_sf2_sw_fast_age_port(struct dsa_switch *ds, int port) |
| 413 | { |
| 414 | struct bcm_sf2_priv *priv = ds_to_priv(ds); |
| 415 | unsigned int timeout = 1000; |
| 416 | u32 reg; |
| 417 | |
| 418 | core_writel(priv, port, CORE_FAST_AGE_PORT); |
| 419 | |
| 420 | reg = core_readl(priv, CORE_FAST_AGE_CTRL); |
| 421 | reg |= EN_AGE_PORT | FAST_AGE_STR_DONE; |
| 422 | core_writel(priv, reg, CORE_FAST_AGE_CTRL); |
| 423 | |
| 424 | do { |
| 425 | reg = core_readl(priv, CORE_FAST_AGE_CTRL); |
| 426 | if (!(reg & FAST_AGE_STR_DONE)) |
| 427 | break; |
| 428 | |
| 429 | cpu_relax(); |
| 430 | } while (timeout--); |
| 431 | |
| 432 | if (!timeout) |
| 433 | return -ETIMEDOUT; |
| 434 | |
| 435 | return 0; |
| 436 | } |
| 437 | |
| 438 | static int bcm_sf2_sw_br_join(struct dsa_switch *ds, int port, |
| 439 | u32 br_port_mask) |
| 440 | { |
| 441 | struct bcm_sf2_priv *priv = ds_to_priv(ds); |
| 442 | unsigned int i; |
| 443 | u32 reg, p_ctl; |
| 444 | |
| 445 | p_ctl = core_readl(priv, CORE_PORT_VLAN_CTL_PORT(port)); |
| 446 | |
| 447 | for (i = 0; i < priv->hw_params.num_ports; i++) { |
| 448 | if (!((1 << i) & br_port_mask)) |
| 449 | continue; |
| 450 | |
| 451 | /* Add this local port to the remote port VLAN control |
| 452 | * membership and update the remote port bitmask |
| 453 | */ |
| 454 | reg = core_readl(priv, CORE_PORT_VLAN_CTL_PORT(i)); |
| 455 | reg |= 1 << port; |
| 456 | core_writel(priv, reg, CORE_PORT_VLAN_CTL_PORT(i)); |
| 457 | priv->port_sts[i].vlan_ctl_mask = reg; |
| 458 | |
| 459 | p_ctl |= 1 << i; |
| 460 | } |
| 461 | |
| 462 | /* Configure the local port VLAN control membership to include |
| 463 | * remote ports and update the local port bitmask |
| 464 | */ |
| 465 | core_writel(priv, p_ctl, CORE_PORT_VLAN_CTL_PORT(port)); |
| 466 | priv->port_sts[port].vlan_ctl_mask = p_ctl; |
| 467 | |
| 468 | return 0; |
| 469 | } |
| 470 | |
| 471 | static int bcm_sf2_sw_br_leave(struct dsa_switch *ds, int port, |
| 472 | u32 br_port_mask) |
| 473 | { |
| 474 | struct bcm_sf2_priv *priv = ds_to_priv(ds); |
| 475 | unsigned int i; |
| 476 | u32 reg, p_ctl; |
| 477 | |
| 478 | p_ctl = core_readl(priv, CORE_PORT_VLAN_CTL_PORT(port)); |
| 479 | |
| 480 | for (i = 0; i < priv->hw_params.num_ports; i++) { |
| 481 | /* Don't touch the remaining ports */ |
| 482 | if (!((1 << i) & br_port_mask)) |
| 483 | continue; |
| 484 | |
| 485 | reg = core_readl(priv, CORE_PORT_VLAN_CTL_PORT(i)); |
| 486 | reg &= ~(1 << port); |
| 487 | core_writel(priv, reg, CORE_PORT_VLAN_CTL_PORT(i)); |
| 488 | priv->port_sts[port].vlan_ctl_mask = reg; |
| 489 | |
| 490 | /* Prevent self removal to preserve isolation */ |
| 491 | if (port != i) |
| 492 | p_ctl &= ~(1 << i); |
| 493 | } |
| 494 | |
| 495 | core_writel(priv, p_ctl, CORE_PORT_VLAN_CTL_PORT(port)); |
| 496 | priv->port_sts[port].vlan_ctl_mask = p_ctl; |
| 497 | |
| 498 | return 0; |
| 499 | } |
| 500 | |
| 501 | static int bcm_sf2_sw_br_set_stp_state(struct dsa_switch *ds, int port, |
| 502 | u8 state) |
| 503 | { |
| 504 | struct bcm_sf2_priv *priv = ds_to_priv(ds); |
| 505 | u8 hw_state, cur_hw_state; |
| 506 | int ret = 0; |
| 507 | u32 reg; |
| 508 | |
| 509 | reg = core_readl(priv, CORE_G_PCTL_PORT(port)); |
| 510 | cur_hw_state = reg >> G_MISTP_STATE_SHIFT; |
| 511 | |
| 512 | switch (state) { |
| 513 | case BR_STATE_DISABLED: |
| 514 | hw_state = G_MISTP_DIS_STATE; |
| 515 | break; |
| 516 | case BR_STATE_LISTENING: |
| 517 | hw_state = G_MISTP_LISTEN_STATE; |
| 518 | break; |
| 519 | case BR_STATE_LEARNING: |
| 520 | hw_state = G_MISTP_LEARN_STATE; |
| 521 | break; |
| 522 | case BR_STATE_FORWARDING: |
| 523 | hw_state = G_MISTP_FWD_STATE; |
| 524 | break; |
| 525 | case BR_STATE_BLOCKING: |
| 526 | hw_state = G_MISTP_BLOCK_STATE; |
| 527 | break; |
| 528 | default: |
| 529 | pr_err("%s: invalid STP state: %d\n", __func__, state); |
| 530 | return -EINVAL; |
| 531 | } |
| 532 | |
| 533 | /* Fast-age ARL entries if we are moving a port from Learning or |
| 534 | * Forwarding state to Disabled, Blocking or Listening state |
| 535 | */ |
| 536 | if (cur_hw_state != hw_state) { |
| 537 | if (cur_hw_state & 4 && !(hw_state & 4)) { |
| 538 | ret = bcm_sf2_sw_fast_age_port(ds, port); |
| 539 | if (ret) { |
| 540 | pr_err("%s: fast-ageing failed\n", __func__); |
| 541 | return ret; |
| 542 | } |
| 543 | } |
| 544 | } |
| 545 | |
| 546 | reg = core_readl(priv, CORE_G_PCTL_PORT(port)); |
| 547 | reg &= ~(G_MISTP_STATE_MASK << G_MISTP_STATE_SHIFT); |
| 548 | reg |= hw_state; |
| 549 | core_writel(priv, reg, CORE_G_PCTL_PORT(port)); |
| 550 | |
| 551 | return 0; |
| 552 | } |
| 553 | |
Florian Fainelli | 246d7f7 | 2014-08-27 17:04:56 -0700 | [diff] [blame] | 554 | static irqreturn_t bcm_sf2_switch_0_isr(int irq, void *dev_id) |
| 555 | { |
| 556 | struct bcm_sf2_priv *priv = dev_id; |
| 557 | |
| 558 | priv->irq0_stat = intrl2_0_readl(priv, INTRL2_CPU_STATUS) & |
| 559 | ~priv->irq0_mask; |
| 560 | intrl2_0_writel(priv, priv->irq0_stat, INTRL2_CPU_CLEAR); |
| 561 | |
| 562 | return IRQ_HANDLED; |
| 563 | } |
| 564 | |
| 565 | static irqreturn_t bcm_sf2_switch_1_isr(int irq, void *dev_id) |
| 566 | { |
| 567 | struct bcm_sf2_priv *priv = dev_id; |
| 568 | |
| 569 | priv->irq1_stat = intrl2_1_readl(priv, INTRL2_CPU_STATUS) & |
| 570 | ~priv->irq1_mask; |
| 571 | intrl2_1_writel(priv, priv->irq1_stat, INTRL2_CPU_CLEAR); |
| 572 | |
| 573 | if (priv->irq1_stat & P_LINK_UP_IRQ(P7_IRQ_OFF)) |
| 574 | priv->port_sts[7].link = 1; |
| 575 | if (priv->irq1_stat & P_LINK_DOWN_IRQ(P7_IRQ_OFF)) |
| 576 | priv->port_sts[7].link = 0; |
| 577 | |
| 578 | return IRQ_HANDLED; |
| 579 | } |
| 580 | |
Florian Fainelli | 33f8461 | 2014-11-25 18:08:49 -0800 | [diff] [blame] | 581 | static int bcm_sf2_sw_rst(struct bcm_sf2_priv *priv) |
| 582 | { |
| 583 | unsigned int timeout = 1000; |
| 584 | u32 reg; |
| 585 | |
| 586 | reg = core_readl(priv, CORE_WATCHDOG_CTRL); |
| 587 | reg |= SOFTWARE_RESET | EN_CHIP_RST | EN_SW_RESET; |
| 588 | core_writel(priv, reg, CORE_WATCHDOG_CTRL); |
| 589 | |
| 590 | do { |
| 591 | reg = core_readl(priv, CORE_WATCHDOG_CTRL); |
| 592 | if (!(reg & SOFTWARE_RESET)) |
| 593 | break; |
| 594 | |
| 595 | usleep_range(1000, 2000); |
| 596 | } while (timeout-- > 0); |
| 597 | |
| 598 | if (timeout == 0) |
| 599 | return -ETIMEDOUT; |
| 600 | |
| 601 | return 0; |
| 602 | } |
| 603 | |
Florian Fainelli | 691c9a8 | 2015-01-20 16:42:00 -0800 | [diff] [blame] | 604 | static void bcm_sf2_intr_disable(struct bcm_sf2_priv *priv) |
| 605 | { |
| 606 | intrl2_0_writel(priv, 0xffffffff, INTRL2_CPU_MASK_SET); |
| 607 | intrl2_0_writel(priv, 0xffffffff, INTRL2_CPU_CLEAR); |
| 608 | intrl2_0_writel(priv, 0, INTRL2_CPU_MASK_CLEAR); |
| 609 | intrl2_1_writel(priv, 0xffffffff, INTRL2_CPU_MASK_SET); |
| 610 | intrl2_1_writel(priv, 0xffffffff, INTRL2_CPU_CLEAR); |
| 611 | intrl2_1_writel(priv, 0, INTRL2_CPU_MASK_CLEAR); |
| 612 | } |
| 613 | |
Florian Fainelli | 246d7f7 | 2014-08-27 17:04:56 -0700 | [diff] [blame] | 614 | static int bcm_sf2_sw_setup(struct dsa_switch *ds) |
| 615 | { |
| 616 | const char *reg_names[BCM_SF2_REGS_NUM] = BCM_SF2_REGS_NAME; |
| 617 | struct bcm_sf2_priv *priv = ds_to_priv(ds); |
| 618 | struct device_node *dn; |
| 619 | void __iomem **base; |
| 620 | unsigned int port; |
| 621 | unsigned int i; |
| 622 | u32 reg, rev; |
| 623 | int ret; |
| 624 | |
| 625 | spin_lock_init(&priv->indir_lock); |
| 626 | mutex_init(&priv->stats_mutex); |
| 627 | |
| 628 | /* All the interesting properties are at the parent device_node |
| 629 | * level |
| 630 | */ |
| 631 | dn = ds->pd->of_node->parent; |
| 632 | |
| 633 | priv->irq0 = irq_of_parse_and_map(dn, 0); |
| 634 | priv->irq1 = irq_of_parse_and_map(dn, 1); |
| 635 | |
| 636 | base = &priv->core; |
| 637 | for (i = 0; i < BCM_SF2_REGS_NUM; i++) { |
| 638 | *base = of_iomap(dn, i); |
| 639 | if (*base == NULL) { |
| 640 | pr_err("unable to find register: %s\n", reg_names[i]); |
Florian Fainelli | a566059 | 2014-11-25 18:08:48 -0800 | [diff] [blame] | 641 | ret = -ENOMEM; |
| 642 | goto out_unmap; |
Florian Fainelli | 246d7f7 | 2014-08-27 17:04:56 -0700 | [diff] [blame] | 643 | } |
| 644 | base++; |
| 645 | } |
| 646 | |
Florian Fainelli | 33f8461 | 2014-11-25 18:08:49 -0800 | [diff] [blame] | 647 | ret = bcm_sf2_sw_rst(priv); |
| 648 | if (ret) { |
| 649 | pr_err("unable to software reset switch: %d\n", ret); |
| 650 | goto out_unmap; |
| 651 | } |
| 652 | |
Florian Fainelli | 246d7f7 | 2014-08-27 17:04:56 -0700 | [diff] [blame] | 653 | /* Disable all interrupts and request them */ |
Florian Fainelli | 691c9a8 | 2015-01-20 16:42:00 -0800 | [diff] [blame] | 654 | bcm_sf2_intr_disable(priv); |
Florian Fainelli | 246d7f7 | 2014-08-27 17:04:56 -0700 | [diff] [blame] | 655 | |
| 656 | ret = request_irq(priv->irq0, bcm_sf2_switch_0_isr, 0, |
| 657 | "switch_0", priv); |
| 658 | if (ret < 0) { |
| 659 | pr_err("failed to request switch_0 IRQ\n"); |
| 660 | goto out_unmap; |
| 661 | } |
| 662 | |
| 663 | ret = request_irq(priv->irq1, bcm_sf2_switch_1_isr, 0, |
| 664 | "switch_1", priv); |
| 665 | if (ret < 0) { |
| 666 | pr_err("failed to request switch_1 IRQ\n"); |
| 667 | goto out_free_irq0; |
| 668 | } |
| 669 | |
| 670 | /* Reset the MIB counters */ |
| 671 | reg = core_readl(priv, CORE_GMNCFGCFG); |
| 672 | reg |= RST_MIB_CNT; |
| 673 | core_writel(priv, reg, CORE_GMNCFGCFG); |
| 674 | reg &= ~RST_MIB_CNT; |
| 675 | core_writel(priv, reg, CORE_GMNCFGCFG); |
| 676 | |
| 677 | /* Get the maximum number of ports for this switch */ |
| 678 | priv->hw_params.num_ports = core_readl(priv, CORE_IMP0_PRT_ID) + 1; |
| 679 | if (priv->hw_params.num_ports > DSA_MAX_PORTS) |
| 680 | priv->hw_params.num_ports = DSA_MAX_PORTS; |
| 681 | |
| 682 | /* Assume a single GPHY setup if we can't read that property */ |
| 683 | if (of_property_read_u32(dn, "brcm,num-gphy", |
| 684 | &priv->hw_params.num_gphy)) |
| 685 | priv->hw_params.num_gphy = 1; |
| 686 | |
| 687 | /* Enable all valid ports and disable those unused */ |
| 688 | for (port = 0; port < priv->hw_params.num_ports; port++) { |
| 689 | /* IMP port receives special treatment */ |
| 690 | if ((1 << port) & ds->phys_port_mask) |
Florian Fainelli | b6d045d | 2014-09-24 17:05:20 -0700 | [diff] [blame] | 691 | bcm_sf2_port_setup(ds, port, NULL); |
Florian Fainelli | 246d7f7 | 2014-08-27 17:04:56 -0700 | [diff] [blame] | 692 | else if (dsa_is_cpu_port(ds, port)) |
| 693 | bcm_sf2_imp_setup(ds, port); |
| 694 | else |
Florian Fainelli | b6d045d | 2014-09-24 17:05:20 -0700 | [diff] [blame] | 695 | bcm_sf2_port_disable(ds, port, NULL); |
Florian Fainelli | 246d7f7 | 2014-08-27 17:04:56 -0700 | [diff] [blame] | 696 | } |
| 697 | |
| 698 | /* Include the pseudo-PHY address and the broadcast PHY address to |
Florian Fainelli | b8c6cd1 | 2015-07-15 16:09:32 -0700 | [diff] [blame^] | 699 | * divert reads towards our workaround. This is only required for |
| 700 | * 7445D0, since 7445E0 disconnects the internal switch pseudo-PHY such |
| 701 | * that we can use the regular SWITCH_MDIO master controller instead. |
| 702 | * |
| 703 | * By default, DSA initializes ds->phys_mii_mask to ds->phys_port_mask |
| 704 | * to have a 1:1 mapping between Port address and PHY address in order |
| 705 | * to utilize the slave_mii_bus instance to read from Port PHYs. This is |
| 706 | * not what we want here, so we initialize phys_mii_mask 0 to always |
| 707 | * utilize the "master" MDIO bus backed by the "mdio-unimac" driver. |
Florian Fainelli | 246d7f7 | 2014-08-27 17:04:56 -0700 | [diff] [blame] | 708 | */ |
Florian Fainelli | b8c6cd1 | 2015-07-15 16:09:32 -0700 | [diff] [blame^] | 709 | if (of_machine_is_compatible("brcm,bcm7445d0")) |
| 710 | ds->phys_mii_mask |= ((1 << BRCM_PSEUDO_PHY_ADDR) | (1 << 0)); |
| 711 | else |
| 712 | ds->phys_mii_mask = 0; |
Florian Fainelli | 246d7f7 | 2014-08-27 17:04:56 -0700 | [diff] [blame] | 713 | |
| 714 | rev = reg_readl(priv, REG_SWITCH_REVISION); |
| 715 | priv->hw_params.top_rev = (rev >> SWITCH_TOP_REV_SHIFT) & |
| 716 | SWITCH_TOP_REV_MASK; |
| 717 | priv->hw_params.core_rev = (rev & SF2_REV_MASK); |
| 718 | |
Florian Fainelli | aa9aef7 | 2014-09-19 13:07:55 -0700 | [diff] [blame] | 719 | rev = reg_readl(priv, REG_PHY_REVISION); |
| 720 | priv->hw_params.gphy_rev = rev & PHY_REVISION_MASK; |
| 721 | |
Florian Fainelli | 246d7f7 | 2014-08-27 17:04:56 -0700 | [diff] [blame] | 722 | pr_info("Starfighter 2 top: %x.%02x, core: %x.%02x base: 0x%p, IRQs: %d, %d\n", |
| 723 | priv->hw_params.top_rev >> 8, priv->hw_params.top_rev & 0xff, |
| 724 | priv->hw_params.core_rev >> 8, priv->hw_params.core_rev & 0xff, |
| 725 | priv->core, priv->irq0, priv->irq1); |
| 726 | |
| 727 | return 0; |
| 728 | |
| 729 | out_free_irq0: |
| 730 | free_irq(priv->irq0, priv); |
| 731 | out_unmap: |
| 732 | base = &priv->core; |
| 733 | for (i = 0; i < BCM_SF2_REGS_NUM; i++) { |
Florian Fainelli | a566059 | 2014-11-25 18:08:48 -0800 | [diff] [blame] | 734 | if (*base) |
| 735 | iounmap(*base); |
Florian Fainelli | 246d7f7 | 2014-08-27 17:04:56 -0700 | [diff] [blame] | 736 | base++; |
| 737 | } |
| 738 | return ret; |
| 739 | } |
| 740 | |
| 741 | static int bcm_sf2_sw_set_addr(struct dsa_switch *ds, u8 *addr) |
| 742 | { |
| 743 | return 0; |
| 744 | } |
| 745 | |
Florian Fainelli | aa9aef7 | 2014-09-19 13:07:55 -0700 | [diff] [blame] | 746 | static u32 bcm_sf2_sw_get_phy_flags(struct dsa_switch *ds, int port) |
| 747 | { |
| 748 | struct bcm_sf2_priv *priv = ds_to_priv(ds); |
| 749 | |
| 750 | /* The BCM7xxx PHY driver expects to find the integrated PHY revision |
| 751 | * in bits 15:8 and the patch level in bits 7:0 which is exactly what |
| 752 | * the REG_PHY_REVISION register layout is. |
| 753 | */ |
| 754 | |
| 755 | return priv->hw_params.gphy_rev; |
| 756 | } |
| 757 | |
Florian Fainelli | 246d7f7 | 2014-08-27 17:04:56 -0700 | [diff] [blame] | 758 | static int bcm_sf2_sw_indir_rw(struct dsa_switch *ds, int op, int addr, |
| 759 | int regnum, u16 val) |
| 760 | { |
| 761 | struct bcm_sf2_priv *priv = ds_to_priv(ds); |
| 762 | int ret = 0; |
| 763 | u32 reg; |
| 764 | |
| 765 | reg = reg_readl(priv, REG_SWITCH_CNTRL); |
| 766 | reg |= MDIO_MASTER_SEL; |
| 767 | reg_writel(priv, reg, REG_SWITCH_CNTRL); |
| 768 | |
| 769 | /* Page << 8 | offset */ |
| 770 | reg = 0x70; |
| 771 | reg <<= 2; |
| 772 | core_writel(priv, addr, reg); |
| 773 | |
| 774 | /* Page << 8 | offset */ |
| 775 | reg = 0x80 << 8 | regnum << 1; |
| 776 | reg <<= 2; |
| 777 | |
| 778 | if (op) |
| 779 | ret = core_readl(priv, reg); |
| 780 | else |
| 781 | core_writel(priv, val, reg); |
| 782 | |
| 783 | reg = reg_readl(priv, REG_SWITCH_CNTRL); |
| 784 | reg &= ~MDIO_MASTER_SEL; |
| 785 | reg_writel(priv, reg, REG_SWITCH_CNTRL); |
| 786 | |
| 787 | return ret & 0xffff; |
| 788 | } |
| 789 | |
| 790 | static int bcm_sf2_sw_phy_read(struct dsa_switch *ds, int addr, int regnum) |
| 791 | { |
| 792 | /* Intercept reads from the MDIO broadcast address or Broadcom |
| 793 | * pseudo-PHY address |
| 794 | */ |
| 795 | switch (addr) { |
| 796 | case 0: |
Florian Fainelli | aafc66f | 2015-06-10 18:08:01 -0700 | [diff] [blame] | 797 | case BRCM_PSEUDO_PHY_ADDR: |
Florian Fainelli | 246d7f7 | 2014-08-27 17:04:56 -0700 | [diff] [blame] | 798 | return bcm_sf2_sw_indir_rw(ds, 1, addr, regnum, 0); |
| 799 | default: |
| 800 | return 0xffff; |
| 801 | } |
| 802 | } |
| 803 | |
| 804 | static int bcm_sf2_sw_phy_write(struct dsa_switch *ds, int addr, int regnum, |
| 805 | u16 val) |
| 806 | { |
| 807 | /* Intercept writes to the MDIO broadcast address or Broadcom |
| 808 | * pseudo-PHY address |
| 809 | */ |
| 810 | switch (addr) { |
| 811 | case 0: |
Florian Fainelli | aafc66f | 2015-06-10 18:08:01 -0700 | [diff] [blame] | 812 | case BRCM_PSEUDO_PHY_ADDR: |
Florian Fainelli | 246d7f7 | 2014-08-27 17:04:56 -0700 | [diff] [blame] | 813 | bcm_sf2_sw_indir_rw(ds, 0, addr, regnum, val); |
| 814 | break; |
| 815 | } |
| 816 | |
| 817 | return 0; |
| 818 | } |
| 819 | |
| 820 | static void bcm_sf2_sw_adjust_link(struct dsa_switch *ds, int port, |
| 821 | struct phy_device *phydev) |
| 822 | { |
| 823 | struct bcm_sf2_priv *priv = ds_to_priv(ds); |
| 824 | u32 id_mode_dis = 0, port_mode; |
| 825 | const char *str = NULL; |
| 826 | u32 reg; |
| 827 | |
| 828 | switch (phydev->interface) { |
| 829 | case PHY_INTERFACE_MODE_RGMII: |
| 830 | str = "RGMII (no delay)"; |
| 831 | id_mode_dis = 1; |
| 832 | case PHY_INTERFACE_MODE_RGMII_TXID: |
| 833 | if (!str) |
| 834 | str = "RGMII (TX delay)"; |
| 835 | port_mode = EXT_GPHY; |
| 836 | break; |
| 837 | case PHY_INTERFACE_MODE_MII: |
| 838 | str = "MII"; |
| 839 | port_mode = EXT_EPHY; |
| 840 | break; |
| 841 | case PHY_INTERFACE_MODE_REVMII: |
| 842 | str = "Reverse MII"; |
| 843 | port_mode = EXT_REVMII; |
| 844 | break; |
| 845 | default: |
Florian Fainelli | 7de1557 | 2014-09-24 17:05:19 -0700 | [diff] [blame] | 846 | /* All other PHYs: internal and MoCA */ |
| 847 | goto force_link; |
| 848 | } |
| 849 | |
| 850 | /* If the link is down, just disable the interface to conserve power */ |
| 851 | if (!phydev->link) { |
| 852 | reg = reg_readl(priv, REG_RGMII_CNTRL_P(port)); |
| 853 | reg &= ~RGMII_MODE_EN; |
| 854 | reg_writel(priv, reg, REG_RGMII_CNTRL_P(port)); |
Florian Fainelli | 246d7f7 | 2014-08-27 17:04:56 -0700 | [diff] [blame] | 855 | goto force_link; |
| 856 | } |
| 857 | |
| 858 | /* Clear id_mode_dis bit, and the existing port mode, but |
| 859 | * make sure we enable the RGMII block for data to pass |
| 860 | */ |
| 861 | reg = reg_readl(priv, REG_RGMII_CNTRL_P(port)); |
| 862 | reg &= ~ID_MODE_DIS; |
| 863 | reg &= ~(PORT_MODE_MASK << PORT_MODE_SHIFT); |
| 864 | reg &= ~(RX_PAUSE_EN | TX_PAUSE_EN); |
| 865 | |
| 866 | reg |= port_mode | RGMII_MODE_EN; |
| 867 | if (id_mode_dis) |
| 868 | reg |= ID_MODE_DIS; |
| 869 | |
| 870 | if (phydev->pause) { |
| 871 | if (phydev->asym_pause) |
| 872 | reg |= TX_PAUSE_EN; |
| 873 | reg |= RX_PAUSE_EN; |
| 874 | } |
| 875 | |
| 876 | reg_writel(priv, reg, REG_RGMII_CNTRL_P(port)); |
| 877 | |
| 878 | pr_info("Port %d configured for %s\n", port, str); |
| 879 | |
| 880 | force_link: |
| 881 | /* Force link settings detected from the PHY */ |
| 882 | reg = SW_OVERRIDE; |
| 883 | switch (phydev->speed) { |
| 884 | case SPEED_1000: |
| 885 | reg |= SPDSTS_1000 << SPEED_SHIFT; |
| 886 | break; |
| 887 | case SPEED_100: |
| 888 | reg |= SPDSTS_100 << SPEED_SHIFT; |
| 889 | break; |
| 890 | } |
| 891 | |
| 892 | if (phydev->link) |
| 893 | reg |= LINK_STS; |
| 894 | if (phydev->duplex == DUPLEX_FULL) |
| 895 | reg |= DUPLX_MODE; |
| 896 | |
| 897 | core_writel(priv, reg, CORE_STS_OVERRIDE_GMIIP_PORT(port)); |
| 898 | } |
| 899 | |
| 900 | static void bcm_sf2_sw_fixed_link_update(struct dsa_switch *ds, int port, |
| 901 | struct fixed_phy_status *status) |
| 902 | { |
| 903 | struct bcm_sf2_priv *priv = ds_to_priv(ds); |
Florian Fainelli | 7855f67 | 2014-12-11 18:12:42 -0800 | [diff] [blame] | 904 | u32 duplex, pause, speed; |
Florian Fainelli | 246d7f7 | 2014-08-27 17:04:56 -0700 | [diff] [blame] | 905 | u32 reg; |
| 906 | |
Florian Fainelli | 246d7f7 | 2014-08-27 17:04:56 -0700 | [diff] [blame] | 907 | duplex = core_readl(priv, CORE_DUPSTS); |
| 908 | pause = core_readl(priv, CORE_PAUSESTS); |
| 909 | speed = core_readl(priv, CORE_SPDSTS); |
| 910 | |
| 911 | speed >>= (port * SPDSTS_SHIFT); |
| 912 | speed &= SPDSTS_MASK; |
| 913 | |
| 914 | status->link = 0; |
| 915 | |
| 916 | /* Port 7 is special as we do not get link status from CORE_LNKSTS, |
| 917 | * which means that we need to force the link at the port override |
| 918 | * level to get the data to flow. We do use what the interrupt handler |
| 919 | * did determine before. |
Florian Fainelli | 7855f67 | 2014-12-11 18:12:42 -0800 | [diff] [blame] | 920 | * |
| 921 | * For the other ports, we just force the link status, since this is |
| 922 | * a fixed PHY device. |
Florian Fainelli | 246d7f7 | 2014-08-27 17:04:56 -0700 | [diff] [blame] | 923 | */ |
| 924 | if (port == 7) { |
| 925 | status->link = priv->port_sts[port].link; |
Florian Fainelli | 4ab7f91 | 2015-05-15 12:38:01 -0700 | [diff] [blame] | 926 | /* For MoCA interfaces, also force a link down notification |
| 927 | * since some version of the user-space daemon (mocad) use |
| 928 | * cmd->autoneg to force the link, which messes up the PHY |
| 929 | * state machine and make it go in PHY_FORCING state instead. |
| 930 | */ |
| 931 | if (!status->link) |
| 932 | netif_carrier_off(ds->ports[port]); |
Florian Fainelli | 246d7f7 | 2014-08-27 17:04:56 -0700 | [diff] [blame] | 933 | status->duplex = 1; |
| 934 | } else { |
Florian Fainelli | 7855f67 | 2014-12-11 18:12:42 -0800 | [diff] [blame] | 935 | status->link = 1; |
Florian Fainelli | 246d7f7 | 2014-08-27 17:04:56 -0700 | [diff] [blame] | 936 | status->duplex = !!(duplex & (1 << port)); |
| 937 | } |
| 938 | |
Florian Fainelli | 7855f67 | 2014-12-11 18:12:42 -0800 | [diff] [blame] | 939 | reg = core_readl(priv, CORE_STS_OVERRIDE_GMIIP_PORT(port)); |
| 940 | reg |= SW_OVERRIDE; |
| 941 | if (status->link) |
| 942 | reg |= LINK_STS; |
| 943 | else |
| 944 | reg &= ~LINK_STS; |
| 945 | core_writel(priv, reg, CORE_STS_OVERRIDE_GMIIP_PORT(port)); |
| 946 | |
Florian Fainelli | 246d7f7 | 2014-08-27 17:04:56 -0700 | [diff] [blame] | 947 | switch (speed) { |
| 948 | case SPDSTS_10: |
| 949 | status->speed = SPEED_10; |
| 950 | break; |
| 951 | case SPDSTS_100: |
| 952 | status->speed = SPEED_100; |
| 953 | break; |
| 954 | case SPDSTS_1000: |
| 955 | status->speed = SPEED_1000; |
| 956 | break; |
| 957 | } |
| 958 | |
| 959 | if ((pause & (1 << port)) && |
| 960 | (pause & (1 << (port + PAUSESTS_TX_PAUSE_SHIFT)))) { |
| 961 | status->asym_pause = 1; |
| 962 | status->pause = 1; |
| 963 | } |
| 964 | |
| 965 | if (pause & (1 << port)) |
| 966 | status->pause = 1; |
| 967 | } |
| 968 | |
Florian Fainelli | 8cfa949 | 2014-09-18 17:31:23 -0700 | [diff] [blame] | 969 | static int bcm_sf2_sw_suspend(struct dsa_switch *ds) |
| 970 | { |
| 971 | struct bcm_sf2_priv *priv = ds_to_priv(ds); |
| 972 | unsigned int port; |
| 973 | |
Florian Fainelli | 691c9a8 | 2015-01-20 16:42:00 -0800 | [diff] [blame] | 974 | bcm_sf2_intr_disable(priv); |
Florian Fainelli | 8cfa949 | 2014-09-18 17:31:23 -0700 | [diff] [blame] | 975 | |
| 976 | /* Disable all ports physically present including the IMP |
| 977 | * port, the other ones have already been disabled during |
| 978 | * bcm_sf2_sw_setup |
| 979 | */ |
| 980 | for (port = 0; port < DSA_MAX_PORTS; port++) { |
| 981 | if ((1 << port) & ds->phys_port_mask || |
| 982 | dsa_is_cpu_port(ds, port)) |
Florian Fainelli | b6d045d | 2014-09-24 17:05:20 -0700 | [diff] [blame] | 983 | bcm_sf2_port_disable(ds, port, NULL); |
Florian Fainelli | 8cfa949 | 2014-09-18 17:31:23 -0700 | [diff] [blame] | 984 | } |
| 985 | |
| 986 | return 0; |
| 987 | } |
| 988 | |
Florian Fainelli | 8cfa949 | 2014-09-18 17:31:23 -0700 | [diff] [blame] | 989 | static int bcm_sf2_sw_resume(struct dsa_switch *ds) |
| 990 | { |
| 991 | struct bcm_sf2_priv *priv = ds_to_priv(ds); |
| 992 | unsigned int port; |
Florian Fainelli | 8cfa949 | 2014-09-18 17:31:23 -0700 | [diff] [blame] | 993 | int ret; |
| 994 | |
| 995 | ret = bcm_sf2_sw_rst(priv); |
| 996 | if (ret) { |
| 997 | pr_err("%s: failed to software reset switch\n", __func__); |
| 998 | return ret; |
| 999 | } |
| 1000 | |
Florian Fainelli | b083668 | 2015-02-05 11:40:41 -0800 | [diff] [blame] | 1001 | if (priv->hw_params.num_gphy == 1) |
| 1002 | bcm_sf2_gphy_enable_set(ds, true); |
Florian Fainelli | 8cfa949 | 2014-09-18 17:31:23 -0700 | [diff] [blame] | 1003 | |
| 1004 | for (port = 0; port < DSA_MAX_PORTS; port++) { |
| 1005 | if ((1 << port) & ds->phys_port_mask) |
Florian Fainelli | b6d045d | 2014-09-24 17:05:20 -0700 | [diff] [blame] | 1006 | bcm_sf2_port_setup(ds, port, NULL); |
Florian Fainelli | 8cfa949 | 2014-09-18 17:31:23 -0700 | [diff] [blame] | 1007 | else if (dsa_is_cpu_port(ds, port)) |
| 1008 | bcm_sf2_imp_setup(ds, port); |
| 1009 | } |
| 1010 | |
| 1011 | return 0; |
| 1012 | } |
| 1013 | |
Florian Fainelli | 96e65d7 | 2014-09-18 17:31:25 -0700 | [diff] [blame] | 1014 | static void bcm_sf2_sw_get_wol(struct dsa_switch *ds, int port, |
| 1015 | struct ethtool_wolinfo *wol) |
| 1016 | { |
| 1017 | struct net_device *p = ds->dst[ds->index].master_netdev; |
| 1018 | struct bcm_sf2_priv *priv = ds_to_priv(ds); |
| 1019 | struct ethtool_wolinfo pwol; |
| 1020 | |
| 1021 | /* Get the parent device WoL settings */ |
| 1022 | p->ethtool_ops->get_wol(p, &pwol); |
| 1023 | |
| 1024 | /* Advertise the parent device supported settings */ |
| 1025 | wol->supported = pwol.supported; |
| 1026 | memset(&wol->sopass, 0, sizeof(wol->sopass)); |
| 1027 | |
| 1028 | if (pwol.wolopts & WAKE_MAGICSECURE) |
| 1029 | memcpy(&wol->sopass, pwol.sopass, sizeof(wol->sopass)); |
| 1030 | |
| 1031 | if (priv->wol_ports_mask & (1 << port)) |
| 1032 | wol->wolopts = pwol.wolopts; |
| 1033 | else |
| 1034 | wol->wolopts = 0; |
| 1035 | } |
| 1036 | |
| 1037 | static int bcm_sf2_sw_set_wol(struct dsa_switch *ds, int port, |
| 1038 | struct ethtool_wolinfo *wol) |
| 1039 | { |
| 1040 | struct net_device *p = ds->dst[ds->index].master_netdev; |
| 1041 | struct bcm_sf2_priv *priv = ds_to_priv(ds); |
| 1042 | s8 cpu_port = ds->dst[ds->index].cpu_port; |
| 1043 | struct ethtool_wolinfo pwol; |
| 1044 | |
| 1045 | p->ethtool_ops->get_wol(p, &pwol); |
| 1046 | if (wol->wolopts & ~pwol.supported) |
| 1047 | return -EINVAL; |
| 1048 | |
| 1049 | if (wol->wolopts) |
| 1050 | priv->wol_ports_mask |= (1 << port); |
| 1051 | else |
| 1052 | priv->wol_ports_mask &= ~(1 << port); |
| 1053 | |
| 1054 | /* If we have at least one port enabled, make sure the CPU port |
| 1055 | * is also enabled. If the CPU port is the last one enabled, we disable |
| 1056 | * it since this configuration does not make sense. |
| 1057 | */ |
| 1058 | if (priv->wol_ports_mask && priv->wol_ports_mask != (1 << cpu_port)) |
| 1059 | priv->wol_ports_mask |= (1 << cpu_port); |
| 1060 | else |
| 1061 | priv->wol_ports_mask &= ~(1 << cpu_port); |
| 1062 | |
| 1063 | return p->ethtool_ops->set_wol(p, wol); |
| 1064 | } |
| 1065 | |
Florian Fainelli | 246d7f7 | 2014-08-27 17:04:56 -0700 | [diff] [blame] | 1066 | static struct dsa_switch_driver bcm_sf2_switch_driver = { |
Florian Fainelli | ac7a04c | 2014-09-11 21:18:09 -0700 | [diff] [blame] | 1067 | .tag_protocol = DSA_TAG_PROTO_BRCM, |
Florian Fainelli | 246d7f7 | 2014-08-27 17:04:56 -0700 | [diff] [blame] | 1068 | .priv_size = sizeof(struct bcm_sf2_priv), |
| 1069 | .probe = bcm_sf2_sw_probe, |
| 1070 | .setup = bcm_sf2_sw_setup, |
| 1071 | .set_addr = bcm_sf2_sw_set_addr, |
Florian Fainelli | aa9aef7 | 2014-09-19 13:07:55 -0700 | [diff] [blame] | 1072 | .get_phy_flags = bcm_sf2_sw_get_phy_flags, |
Florian Fainelli | 246d7f7 | 2014-08-27 17:04:56 -0700 | [diff] [blame] | 1073 | .phy_read = bcm_sf2_sw_phy_read, |
| 1074 | .phy_write = bcm_sf2_sw_phy_write, |
| 1075 | .get_strings = bcm_sf2_sw_get_strings, |
| 1076 | .get_ethtool_stats = bcm_sf2_sw_get_ethtool_stats, |
| 1077 | .get_sset_count = bcm_sf2_sw_get_sset_count, |
| 1078 | .adjust_link = bcm_sf2_sw_adjust_link, |
| 1079 | .fixed_link_update = bcm_sf2_sw_fixed_link_update, |
Florian Fainelli | 8cfa949 | 2014-09-18 17:31:23 -0700 | [diff] [blame] | 1080 | .suspend = bcm_sf2_sw_suspend, |
| 1081 | .resume = bcm_sf2_sw_resume, |
Florian Fainelli | 96e65d7 | 2014-09-18 17:31:25 -0700 | [diff] [blame] | 1082 | .get_wol = bcm_sf2_sw_get_wol, |
| 1083 | .set_wol = bcm_sf2_sw_set_wol, |
Florian Fainelli | b6d045d | 2014-09-24 17:05:20 -0700 | [diff] [blame] | 1084 | .port_enable = bcm_sf2_port_setup, |
| 1085 | .port_disable = bcm_sf2_port_disable, |
Florian Fainelli | 450b05c | 2014-09-24 17:05:22 -0700 | [diff] [blame] | 1086 | .get_eee = bcm_sf2_sw_get_eee, |
| 1087 | .set_eee = bcm_sf2_sw_set_eee, |
Florian Fainelli | 12f460f | 2015-02-24 13:15:34 -0800 | [diff] [blame] | 1088 | .port_join_bridge = bcm_sf2_sw_br_join, |
| 1089 | .port_leave_bridge = bcm_sf2_sw_br_leave, |
| 1090 | .port_stp_update = bcm_sf2_sw_br_set_stp_state, |
Florian Fainelli | 246d7f7 | 2014-08-27 17:04:56 -0700 | [diff] [blame] | 1091 | }; |
| 1092 | |
| 1093 | static int __init bcm_sf2_init(void) |
| 1094 | { |
| 1095 | register_switch_driver(&bcm_sf2_switch_driver); |
| 1096 | |
| 1097 | return 0; |
| 1098 | } |
| 1099 | module_init(bcm_sf2_init); |
| 1100 | |
| 1101 | static void __exit bcm_sf2_exit(void) |
| 1102 | { |
| 1103 | unregister_switch_driver(&bcm_sf2_switch_driver); |
| 1104 | } |
| 1105 | module_exit(bcm_sf2_exit); |
| 1106 | |
| 1107 | MODULE_AUTHOR("Broadcom Corporation"); |
| 1108 | MODULE_DESCRIPTION("Driver for Broadcom Starfighter 2 ethernet switch chip"); |
| 1109 | MODULE_LICENSE("GPL"); |
| 1110 | MODULE_ALIAS("platform:brcm-sf2"); |