blob: 28c963a21dac33465f01e04515d9af3543d8e9c1 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Florian Fainelli246d7f72014-08-27 17:04:56 -07002/*
3 * Broadcom Starfighter 2 DSA switch driver
4 *
5 * Copyright (C) 2014, Broadcom Corporation
Florian Fainelli246d7f72014-08-27 17:04:56 -07006 */
7
8#include <linux/list.h>
9#include <linux/module.h>
10#include <linux/netdevice.h>
11#include <linux/interrupt.h>
12#include <linux/platform_device.h>
Florian Fainelli246d7f72014-08-27 17:04:56 -070013#include <linux/phy.h>
14#include <linux/phy_fixed.h>
Florian Fainellibc0cb652018-05-10 13:17:33 -070015#include <linux/phylink.h>
Florian Fainelli246d7f72014-08-27 17:04:56 -070016#include <linux/mii.h>
17#include <linux/of.h>
18#include <linux/of_irq.h>
19#include <linux/of_address.h>
Florian Fainelli8b7c94e2015-10-23 12:11:08 -070020#include <linux/of_net.h>
Florian Fainelli461cd1b02016-06-07 16:32:43 -070021#include <linux/of_mdio.h>
Florian Fainelli246d7f72014-08-27 17:04:56 -070022#include <net/dsa.h>
Florian Fainelli96e65d72014-09-18 17:31:25 -070023#include <linux/ethtool.h>
Florian Fainelli12f460f2015-02-24 13:15:34 -080024#include <linux/if_bridge.h>
Florian Fainelliaafc66f2015-06-10 18:08:01 -070025#include <linux/brcmphy.h>
Florian Fainelli680060d2015-10-23 11:38:07 -070026#include <linux/etherdevice.h>
Florian Fainellif4589952016-08-26 12:18:33 -070027#include <linux/platform_data/b53.h>
Florian Fainelli246d7f72014-08-27 17:04:56 -070028
29#include "bcm_sf2.h"
30#include "bcm_sf2_regs.h"
Florian Fainellif4589952016-08-26 12:18:33 -070031#include "b53/b53_priv.h"
32#include "b53/b53_regs.h"
Florian Fainelli246d7f72014-08-27 17:04:56 -070033
Florian Fainelliebb2ac42017-01-20 12:36:31 -080034static void bcm_sf2_imp_setup(struct dsa_switch *ds, int port)
35{
36 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainellic837fc82017-09-03 20:27:03 -070037 unsigned int i;
Florian Fainelliebb2ac42017-01-20 12:36:31 -080038 u32 reg, offset;
39
40 if (priv->type == BCM7445_DEVICE_ID)
41 offset = CORE_STS_OVERRIDE_IMP;
42 else
43 offset = CORE_STS_OVERRIDE_IMP2;
44
45 /* Enable the port memories */
46 reg = core_readl(priv, CORE_MEM_PSM_VDD_CTRL);
47 reg &= ~P_TXQ_PSM_VDD(port);
48 core_writel(priv, reg, CORE_MEM_PSM_VDD_CTRL);
49
50 /* Enable Broadcast, Multicast, Unicast forwarding to IMP port */
51 reg = core_readl(priv, CORE_IMP_CTL);
52 reg |= (RX_BCST_EN | RX_MCST_EN | RX_UCST_EN);
53 reg &= ~(RX_DIS | TX_DIS);
54 core_writel(priv, reg, CORE_IMP_CTL);
55
56 /* Enable forwarding */
57 core_writel(priv, SW_FWDG_EN, CORE_SWMODE);
58
59 /* Enable IMP port in dumb mode */
60 reg = core_readl(priv, CORE_SWITCH_CTRL);
61 reg |= MII_DUMB_FWDG_EN;
62 core_writel(priv, reg, CORE_SWITCH_CTRL);
63
Florian Fainellic837fc82017-09-03 20:27:03 -070064 /* Configure Traffic Class to QoS mapping, allow each priority to map
65 * to a different queue number
66 */
67 reg = core_readl(priv, CORE_PORT_TC2_QOS_MAP_PORT(port));
68 for (i = 0; i < SF2_NUM_EGRESS_QUEUES; i++)
69 reg |= i << (PRT_TO_QID_SHIFT * i);
70 core_writel(priv, reg, CORE_PORT_TC2_QOS_MAP_PORT(port));
71
Florian Fainellib409a9e2017-09-19 10:46:48 -070072 b53_brcm_hdr_setup(ds, port);
Florian Fainelli246d7f72014-08-27 17:04:56 -070073
74 /* Force link status for IMP port */
Florian Fainelli0fe99332017-01-20 12:36:30 -080075 reg = core_readl(priv, offset);
Florian Fainelli246d7f72014-08-27 17:04:56 -070076 reg |= (MII_SW_OR | LINK_STS);
Florian Fainelli0fe99332017-01-20 12:36:30 -080077 core_writel(priv, reg, offset);
Florian Fainelli246d7f72014-08-27 17:04:56 -070078}
79
Florian Fainellib0836682015-02-05 11:40:41 -080080static void bcm_sf2_gphy_enable_set(struct dsa_switch *ds, bool enable)
81{
Florian Fainellif4589952016-08-26 12:18:33 -070082 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainellib0836682015-02-05 11:40:41 -080083 u32 reg;
84
Florian Fainelli9af197a2015-02-05 11:40:42 -080085 reg = reg_readl(priv, REG_SPHY_CNTRL);
86 if (enable) {
87 reg |= PHY_RESET;
Florian Fainelli4b52d012017-11-21 17:37:46 -080088 reg &= ~(EXT_PWR_DOWN | IDDQ_BIAS | IDDQ_GLOBAL_PWR | CK25_DIS);
Florian Fainelli9af197a2015-02-05 11:40:42 -080089 reg_writel(priv, reg, REG_SPHY_CNTRL);
90 udelay(21);
91 reg = reg_readl(priv, REG_SPHY_CNTRL);
92 reg &= ~PHY_RESET;
93 } else {
94 reg |= EXT_PWR_DOWN | IDDQ_BIAS | PHY_RESET;
95 reg_writel(priv, reg, REG_SPHY_CNTRL);
96 mdelay(1);
97 reg |= CK25_DIS;
98 }
99 reg_writel(priv, reg, REG_SPHY_CNTRL);
Florian Fainellib0836682015-02-05 11:40:41 -0800100
Florian Fainelli9af197a2015-02-05 11:40:42 -0800101 /* Use PHY-driven LED signaling */
102 if (!enable) {
103 reg = reg_readl(priv, REG_LED_CNTRL(0));
104 reg |= SPDLNK_SRC_SEL;
105 reg_writel(priv, reg, REG_LED_CNTRL(0));
106 }
Florian Fainellib0836682015-02-05 11:40:41 -0800107}
108
Florian Fainelli8b7c94e2015-10-23 12:11:08 -0700109static inline void bcm_sf2_port_intr_enable(struct bcm_sf2_priv *priv,
110 int port)
111{
112 unsigned int off;
113
114 switch (port) {
115 case 7:
116 off = P7_IRQ_OFF;
117 break;
118 case 0:
119 /* Port 0 interrupts are located on the first bank */
120 intrl2_0_mask_clear(priv, P_IRQ_MASK(P0_IRQ_OFF));
121 return;
122 default:
123 off = P_IRQ_OFF(port);
124 break;
125 }
126
127 intrl2_1_mask_clear(priv, P_IRQ_MASK(off));
128}
129
130static inline void bcm_sf2_port_intr_disable(struct bcm_sf2_priv *priv,
131 int port)
132{
133 unsigned int off;
134
135 switch (port) {
136 case 7:
137 off = P7_IRQ_OFF;
138 break;
139 case 0:
140 /* Port 0 interrupts are located on the first bank */
141 intrl2_0_mask_set(priv, P_IRQ_MASK(P0_IRQ_OFF));
142 intrl2_0_writel(priv, P_IRQ_MASK(P0_IRQ_OFF), INTRL2_CPU_CLEAR);
143 return;
144 default:
145 off = P_IRQ_OFF(port);
146 break;
147 }
148
149 intrl2_1_mask_set(priv, P_IRQ_MASK(off));
150 intrl2_1_writel(priv, P_IRQ_MASK(off), INTRL2_CPU_CLEAR);
151}
152
Florian Fainellib6d045d2014-09-24 17:05:20 -0700153static int bcm_sf2_port_setup(struct dsa_switch *ds, int port,
154 struct phy_device *phy)
Florian Fainelli246d7f72014-08-27 17:04:56 -0700155{
Florian Fainellif4589952016-08-26 12:18:33 -0700156 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainellie1b91472017-01-30 09:48:41 -0800157 unsigned int i;
Florian Fainelli246d7f72014-08-27 17:04:56 -0700158 u32 reg;
159
160 /* Clear the memory power down */
161 reg = core_readl(priv, CORE_MEM_PSM_VDD_CTRL);
162 reg &= ~P_TXQ_PSM_VDD(port);
163 core_writel(priv, reg, CORE_MEM_PSM_VDD_CTRL);
164
Florian Fainellic0e68202018-08-03 11:08:42 -0700165 /* Enable learning */
166 reg = core_readl(priv, CORE_DIS_LEARN);
167 reg &= ~BIT(port);
168 core_writel(priv, reg, CORE_DIS_LEARN);
169
Florian Fainelli64ff2ae2017-01-20 12:36:32 -0800170 /* Enable Broadcom tags for that port if requested */
171 if (priv->brcm_tag_mask & BIT(port))
Florian Fainellib409a9e2017-09-19 10:46:48 -0700172 b53_brcm_hdr_setup(ds, port);
Florian Fainelli64ff2ae2017-01-20 12:36:32 -0800173
Florian Fainellie1b91472017-01-30 09:48:41 -0800174 /* Configure Traffic Class to QoS mapping, allow each priority to map
175 * to a different queue number
176 */
177 reg = core_readl(priv, CORE_PORT_TC2_QOS_MAP_PORT(port));
Florian Fainelli181183772017-09-03 20:27:02 -0700178 for (i = 0; i < SF2_NUM_EGRESS_QUEUES; i++)
Florian Fainellie1b91472017-01-30 09:48:41 -0800179 reg |= i << (PRT_TO_QID_SHIFT * i);
180 core_writel(priv, reg, CORE_PORT_TC2_QOS_MAP_PORT(port));
181
Florian Fainelli9af197a2015-02-05 11:40:42 -0800182 /* Re-enable the GPHY and re-apply workarounds */
Florian Fainelli8b7c94e2015-10-23 12:11:08 -0700183 if (priv->int_phy_mask & 1 << port && priv->hw_params.num_gphy == 1) {
Florian Fainelli9af197a2015-02-05 11:40:42 -0800184 bcm_sf2_gphy_enable_set(ds, true);
185 if (phy) {
186 /* if phy_stop() has been called before, phy
187 * will be in halted state, and phy_start()
188 * will call resume.
189 *
190 * the resume path does not configure back
191 * autoneg settings, and since we hard reset
192 * the phy manually here, we need to reset the
193 * state machine also.
194 */
195 phy->state = PHY_READY;
196 phy_init_hw(phy);
197 }
198 }
199
Florian Fainelli8b7c94e2015-10-23 12:11:08 -0700200 /* Enable MoCA port interrupts to get notified */
201 if (port == priv->moca_port)
202 bcm_sf2_port_intr_enable(priv, port);
Florian Fainelli246d7f72014-08-27 17:04:56 -0700203
Florian Fainelli32e47ff2017-10-11 10:57:51 -0700204 /* Set per-queue pause threshold to 32 */
205 core_writel(priv, 32, CORE_TXQ_THD_PAUSE_QN_PORT(port));
206
207 /* Set ACB threshold to 24 */
208 for (i = 0; i < SF2_NUM_EGRESS_QUEUES; i++) {
209 reg = acb_readl(priv, ACB_QUEUE_CFG(port *
210 SF2_NUM_EGRESS_QUEUES + i));
211 reg &= ~XOFF_THRESHOLD_MASK;
212 reg |= 24;
213 acb_writel(priv, reg, ACB_QUEUE_CFG(port *
214 SF2_NUM_EGRESS_QUEUES + i));
215 }
216
Florian Fainellif86ad772017-09-19 10:46:54 -0700217 return b53_enable_port(ds, port, phy);
Florian Fainelli246d7f72014-08-27 17:04:56 -0700218}
219
Andrew Lunn75104db2019-02-24 20:44:43 +0100220static void bcm_sf2_port_disable(struct dsa_switch *ds, int port)
Florian Fainelli246d7f72014-08-27 17:04:56 -0700221{
Florian Fainellif4589952016-08-26 12:18:33 -0700222 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Colin Ian King5c17a072018-07-04 07:54:36 +0100223 u32 reg;
Florian Fainelli246d7f72014-08-27 17:04:56 -0700224
Florian Fainellic0e68202018-08-03 11:08:42 -0700225 /* Disable learning while in WoL mode */
226 if (priv->wol_ports_mask & (1 << port)) {
227 reg = core_readl(priv, CORE_DIS_LEARN);
228 reg |= BIT(port);
229 core_writel(priv, reg, CORE_DIS_LEARN);
Florian Fainelli96e65d72014-09-18 17:31:25 -0700230 return;
Florian Fainellic0e68202018-08-03 11:08:42 -0700231 }
Florian Fainelli96e65d72014-09-18 17:31:25 -0700232
Florian Fainelli8b7c94e2015-10-23 12:11:08 -0700233 if (port == priv->moca_port)
234 bcm_sf2_port_intr_disable(priv, port);
Florian Fainellib6d045d2014-09-24 17:05:20 -0700235
Florian Fainelli8b7c94e2015-10-23 12:11:08 -0700236 if (priv->int_phy_mask & 1 << port && priv->hw_params.num_gphy == 1)
Florian Fainelli9af197a2015-02-05 11:40:42 -0800237 bcm_sf2_gphy_enable_set(ds, false);
238
Andrew Lunn75104db2019-02-24 20:44:43 +0100239 b53_disable_port(ds, port);
Florian Fainelli246d7f72014-08-27 17:04:56 -0700240
241 /* Power down the port memory */
242 reg = core_readl(priv, CORE_MEM_PSM_VDD_CTRL);
243 reg |= P_TXQ_PSM_VDD(port);
244 core_writel(priv, reg, CORE_MEM_PSM_VDD_CTRL);
245}
246
Florian Fainelli450b05c2014-09-24 17:05:22 -0700247
Florian Fainelli461cd1b02016-06-07 16:32:43 -0700248static int bcm_sf2_sw_indir_rw(struct bcm_sf2_priv *priv, int op, int addr,
249 int regnum, u16 val)
250{
251 int ret = 0;
252 u32 reg;
253
254 reg = reg_readl(priv, REG_SWITCH_CNTRL);
255 reg |= MDIO_MASTER_SEL;
256 reg_writel(priv, reg, REG_SWITCH_CNTRL);
257
258 /* Page << 8 | offset */
259 reg = 0x70;
260 reg <<= 2;
261 core_writel(priv, addr, reg);
262
263 /* Page << 8 | offset */
264 reg = 0x80 << 8 | regnum << 1;
265 reg <<= 2;
266
267 if (op)
268 ret = core_readl(priv, reg);
269 else
270 core_writel(priv, val, reg);
271
272 reg = reg_readl(priv, REG_SWITCH_CNTRL);
273 reg &= ~MDIO_MASTER_SEL;
274 reg_writel(priv, reg, REG_SWITCH_CNTRL);
275
276 return ret & 0xffff;
277}
278
279static int bcm_sf2_sw_mdio_read(struct mii_bus *bus, int addr, int regnum)
280{
281 struct bcm_sf2_priv *priv = bus->priv;
282
283 /* Intercept reads from Broadcom pseudo-PHY address, else, send
284 * them to our master MDIO bus controller
285 */
286 if (addr == BRCM_PSEUDO_PHY_ADDR && priv->indir_phy_mask & BIT(addr))
287 return bcm_sf2_sw_indir_rw(priv, 1, addr, regnum, 0);
288 else
Florian Fainelli2cfe8f822017-01-07 21:01:57 -0800289 return mdiobus_read_nested(priv->master_mii_bus, addr, regnum);
Florian Fainelli461cd1b02016-06-07 16:32:43 -0700290}
291
292static int bcm_sf2_sw_mdio_write(struct mii_bus *bus, int addr, int regnum,
293 u16 val)
294{
295 struct bcm_sf2_priv *priv = bus->priv;
296
297 /* Intercept writes to the Broadcom pseudo-PHY address, else,
298 * send them to our master MDIO bus controller
299 */
300 if (addr == BRCM_PSEUDO_PHY_ADDR && priv->indir_phy_mask & BIT(addr))
Kangjie Lue49505f2018-12-25 22:08:18 -0600301 return bcm_sf2_sw_indir_rw(priv, 0, addr, regnum, val);
Florian Fainelli461cd1b02016-06-07 16:32:43 -0700302 else
Kangjie Lue49505f2018-12-25 22:08:18 -0600303 return mdiobus_write_nested(priv->master_mii_bus, addr,
304 regnum, val);
Florian Fainelli461cd1b02016-06-07 16:32:43 -0700305}
306
Florian Fainelli246d7f72014-08-27 17:04:56 -0700307static irqreturn_t bcm_sf2_switch_0_isr(int irq, void *dev_id)
308{
Florian Fainellibc0cb652018-05-10 13:17:33 -0700309 struct dsa_switch *ds = dev_id;
310 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainelli246d7f72014-08-27 17:04:56 -0700311
312 priv->irq0_stat = intrl2_0_readl(priv, INTRL2_CPU_STATUS) &
313 ~priv->irq0_mask;
314 intrl2_0_writel(priv, priv->irq0_stat, INTRL2_CPU_CLEAR);
315
316 return IRQ_HANDLED;
317}
318
319static irqreturn_t bcm_sf2_switch_1_isr(int irq, void *dev_id)
320{
Florian Fainellibc0cb652018-05-10 13:17:33 -0700321 struct dsa_switch *ds = dev_id;
322 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainelli246d7f72014-08-27 17:04:56 -0700323
324 priv->irq1_stat = intrl2_1_readl(priv, INTRL2_CPU_STATUS) &
325 ~priv->irq1_mask;
326 intrl2_1_writel(priv, priv->irq1_stat, INTRL2_CPU_CLEAR);
327
Florian Fainellibc0cb652018-05-10 13:17:33 -0700328 if (priv->irq1_stat & P_LINK_UP_IRQ(P7_IRQ_OFF)) {
329 priv->port_sts[7].link = true;
330 dsa_port_phylink_mac_change(ds, 7, true);
331 }
332 if (priv->irq1_stat & P_LINK_DOWN_IRQ(P7_IRQ_OFF)) {
333 priv->port_sts[7].link = false;
334 dsa_port_phylink_mac_change(ds, 7, false);
335 }
Florian Fainelli246d7f72014-08-27 17:04:56 -0700336
337 return IRQ_HANDLED;
338}
339
Florian Fainelli33f84612014-11-25 18:08:49 -0800340static int bcm_sf2_sw_rst(struct bcm_sf2_priv *priv)
341{
342 unsigned int timeout = 1000;
343 u32 reg;
344
345 reg = core_readl(priv, CORE_WATCHDOG_CTRL);
346 reg |= SOFTWARE_RESET | EN_CHIP_RST | EN_SW_RESET;
347 core_writel(priv, reg, CORE_WATCHDOG_CTRL);
348
349 do {
350 reg = core_readl(priv, CORE_WATCHDOG_CTRL);
351 if (!(reg & SOFTWARE_RESET))
352 break;
353
354 usleep_range(1000, 2000);
355 } while (timeout-- > 0);
356
357 if (timeout == 0)
358 return -ETIMEDOUT;
359
360 return 0;
361}
362
Florian Fainelli691c9a82015-01-20 16:42:00 -0800363static void bcm_sf2_intr_disable(struct bcm_sf2_priv *priv)
364{
Florian Fainellif01d5982016-08-25 15:23:41 -0700365 intrl2_0_mask_set(priv, 0xffffffff);
Florian Fainelli691c9a82015-01-20 16:42:00 -0800366 intrl2_0_writel(priv, 0xffffffff, INTRL2_CPU_CLEAR);
Florian Fainellif01d5982016-08-25 15:23:41 -0700367 intrl2_1_mask_set(priv, 0xffffffff);
Florian Fainelli691c9a82015-01-20 16:42:00 -0800368 intrl2_1_writel(priv, 0xffffffff, INTRL2_CPU_CLEAR);
Florian Fainelli691c9a82015-01-20 16:42:00 -0800369}
370
Florian Fainelli8b7c94e2015-10-23 12:11:08 -0700371static void bcm_sf2_identify_ports(struct bcm_sf2_priv *priv,
372 struct device_node *dn)
373{
374 struct device_node *port;
Florian Fainelli8b7c94e2015-10-23 12:11:08 -0700375 int mode;
376 unsigned int port_num;
Florian Fainelli8b7c94e2015-10-23 12:11:08 -0700377
378 priv->moca_port = -1;
379
380 for_each_available_child_of_node(dn, port) {
381 if (of_property_read_u32(port, "reg", &port_num))
382 continue;
383
384 /* Internal PHYs get assigned a specific 'phy-mode' property
385 * value: "internal" to help flag them before MDIO probing
386 * has completed, since they might be turned off at that
387 * time
388 */
389 mode = of_get_phy_mode(port);
Florian Fainellibedd00c2017-06-23 10:33:16 -0700390 if (mode < 0)
391 continue;
Florian Fainelli8b7c94e2015-10-23 12:11:08 -0700392
Florian Fainellibedd00c2017-06-23 10:33:16 -0700393 if (mode == PHY_INTERFACE_MODE_INTERNAL)
394 priv->int_phy_mask |= 1 << port_num;
Florian Fainelli8b7c94e2015-10-23 12:11:08 -0700395
396 if (mode == PHY_INTERFACE_MODE_MOCA)
397 priv->moca_port = port_num;
Florian Fainelli64ff2ae2017-01-20 12:36:32 -0800398
399 if (of_property_read_bool(port, "brcm,use-bcm-hdr"))
400 priv->brcm_tag_mask |= 1 << port_num;
Florian Fainelli8b7c94e2015-10-23 12:11:08 -0700401 }
402}
403
Florian Fainelli461cd1b02016-06-07 16:32:43 -0700404static int bcm_sf2_mdio_register(struct dsa_switch *ds)
405{
Florian Fainellif4589952016-08-26 12:18:33 -0700406 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainelli461cd1b02016-06-07 16:32:43 -0700407 struct device_node *dn;
408 static int index;
409 int err;
410
411 /* Find our integrated MDIO bus node */
412 dn = of_find_compatible_node(NULL, NULL, "brcm,unimac-mdio");
413 priv->master_mii_bus = of_mdio_find_bus(dn);
414 if (!priv->master_mii_bus)
415 return -EPROBE_DEFER;
416
417 get_device(&priv->master_mii_bus->dev);
418 priv->master_mii_dn = dn;
419
420 priv->slave_mii_bus = devm_mdiobus_alloc(ds->dev);
421 if (!priv->slave_mii_bus)
422 return -ENOMEM;
423
424 priv->slave_mii_bus->priv = priv;
425 priv->slave_mii_bus->name = "sf2 slave mii";
426 priv->slave_mii_bus->read = bcm_sf2_sw_mdio_read;
427 priv->slave_mii_bus->write = bcm_sf2_sw_mdio_write;
428 snprintf(priv->slave_mii_bus->id, MII_BUS_ID_SIZE, "sf2-%d",
429 index++);
430 priv->slave_mii_bus->dev.of_node = dn;
431
432 /* Include the pseudo-PHY address to divert reads towards our
433 * workaround. This is only required for 7445D0, since 7445E0
434 * disconnects the internal switch pseudo-PHY such that we can use the
435 * regular SWITCH_MDIO master controller instead.
436 *
437 * Here we flag the pseudo PHY as needing special treatment and would
438 * otherwise make all other PHY read/writes go to the master MDIO bus
439 * controller that comes with this switch backed by the "mdio-unimac"
440 * driver.
441 */
442 if (of_machine_is_compatible("brcm,bcm7445d0"))
443 priv->indir_phy_mask |= (1 << BRCM_PSEUDO_PHY_ADDR);
444 else
445 priv->indir_phy_mask = 0;
446
447 ds->phys_mii_mask = priv->indir_phy_mask;
448 ds->slave_mii_bus = priv->slave_mii_bus;
449 priv->slave_mii_bus->parent = ds->dev->parent;
450 priv->slave_mii_bus->phy_mask = ~priv->indir_phy_mask;
451
Florian Fainelli00e798c2018-05-15 16:56:19 -0700452 err = of_mdiobus_register(priv->slave_mii_bus, dn);
453 if (err && dn)
Florian Fainelli461cd1b02016-06-07 16:32:43 -0700454 of_node_put(dn);
455
456 return err;
457}
458
459static void bcm_sf2_mdio_unregister(struct bcm_sf2_priv *priv)
460{
461 mdiobus_unregister(priv->slave_mii_bus);
zhong jiang1ddc5d32018-09-16 21:22:31 +0800462 of_node_put(priv->master_mii_dn);
Florian Fainelli461cd1b02016-06-07 16:32:43 -0700463}
464
Florian Fainelliaa9aef72014-09-19 13:07:55 -0700465static u32 bcm_sf2_sw_get_phy_flags(struct dsa_switch *ds, int port)
466{
Florian Fainellif4589952016-08-26 12:18:33 -0700467 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainelliaa9aef72014-09-19 13:07:55 -0700468
469 /* The BCM7xxx PHY driver expects to find the integrated PHY revision
470 * in bits 15:8 and the patch level in bits 7:0 which is exactly what
471 * the REG_PHY_REVISION register layout is.
472 */
473
474 return priv->hw_params.gphy_rev;
475}
476
Florian Fainellibc0cb652018-05-10 13:17:33 -0700477static void bcm_sf2_sw_validate(struct dsa_switch *ds, int port,
478 unsigned long *supported,
479 struct phylink_link_state *state)
480{
Florian Fainelli738a2e42019-08-21 17:07:46 -0700481 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainellibc0cb652018-05-10 13:17:33 -0700482 __ETHTOOL_DECLARE_LINK_MODE_MASK(mask) = { 0, };
483
484 if (!phy_interface_mode_is_rgmii(state->interface) &&
485 state->interface != PHY_INTERFACE_MODE_MII &&
486 state->interface != PHY_INTERFACE_MODE_REVMII &&
487 state->interface != PHY_INTERFACE_MODE_GMII &&
488 state->interface != PHY_INTERFACE_MODE_INTERNAL &&
489 state->interface != PHY_INTERFACE_MODE_MOCA) {
490 bitmap_zero(supported, __ETHTOOL_LINK_MODE_MASK_NBITS);
Florian Fainelli738a2e42019-08-21 17:07:46 -0700491 if (port != core_readl(priv, CORE_IMP0_PRT_ID))
492 dev_err(ds->dev,
493 "Unsupported interface: %d for port %d\n",
494 state->interface, port);
Florian Fainellibc0cb652018-05-10 13:17:33 -0700495 return;
496 }
497
498 /* Allow all the expected bits */
499 phylink_set(mask, Autoneg);
500 phylink_set_port_modes(mask);
501 phylink_set(mask, Pause);
502 phylink_set(mask, Asym_Pause);
503
504 /* With the exclusion of MII and Reverse MII, we support Gigabit,
505 * including Half duplex
506 */
507 if (state->interface != PHY_INTERFACE_MODE_MII &&
508 state->interface != PHY_INTERFACE_MODE_REVMII) {
509 phylink_set(mask, 1000baseT_Full);
510 phylink_set(mask, 1000baseT_Half);
511 }
512
513 phylink_set(mask, 10baseT_Half);
514 phylink_set(mask, 10baseT_Full);
515 phylink_set(mask, 100baseT_Half);
516 phylink_set(mask, 100baseT_Full);
517
518 bitmap_and(supported, supported, mask,
519 __ETHTOOL_LINK_MODE_MASK_NBITS);
520 bitmap_and(state->advertising, state->advertising, mask,
521 __ETHTOOL_LINK_MODE_MASK_NBITS);
522}
523
524static void bcm_sf2_sw_mac_config(struct dsa_switch *ds, int port,
525 unsigned int mode,
526 const struct phylink_link_state *state)
527{
528 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
529 u32 id_mode_dis = 0, port_mode;
530 u32 reg, offset;
531
Florian Fainelli738a2e42019-08-21 17:07:46 -0700532 if (port == core_readl(priv, CORE_IMP0_PRT_ID))
533 return;
534
Florian Fainellibc0cb652018-05-10 13:17:33 -0700535 if (priv->type == BCM7445_DEVICE_ID)
536 offset = CORE_STS_OVERRIDE_GMIIP_PORT(port);
537 else
538 offset = CORE_STS_OVERRIDE_GMIIP2_PORT(port);
539
540 switch (state->interface) {
541 case PHY_INTERFACE_MODE_RGMII:
542 id_mode_dis = 1;
543 /* fallthrough */
544 case PHY_INTERFACE_MODE_RGMII_TXID:
545 port_mode = EXT_GPHY;
546 break;
547 case PHY_INTERFACE_MODE_MII:
548 port_mode = EXT_EPHY;
549 break;
550 case PHY_INTERFACE_MODE_REVMII:
551 port_mode = EXT_REVMII;
552 break;
553 default:
554 /* all other PHYs: internal and MoCA */
555 goto force_link;
556 }
557
558 /* Clear id_mode_dis bit, and the existing port mode, let
559 * RGMII_MODE_EN bet set by mac_link_{up,down}
560 */
561 reg = reg_readl(priv, REG_RGMII_CNTRL_P(port));
562 reg &= ~ID_MODE_DIS;
563 reg &= ~(PORT_MODE_MASK << PORT_MODE_SHIFT);
564 reg &= ~(RX_PAUSE_EN | TX_PAUSE_EN);
565
566 reg |= port_mode;
567 if (id_mode_dis)
568 reg |= ID_MODE_DIS;
569
570 if (state->pause & MLO_PAUSE_TXRX_MASK) {
571 if (state->pause & MLO_PAUSE_TX)
572 reg |= TX_PAUSE_EN;
573 reg |= RX_PAUSE_EN;
574 }
575
576 reg_writel(priv, reg, REG_RGMII_CNTRL_P(port));
577
578force_link:
579 /* Force link settings detected from the PHY */
580 reg = SW_OVERRIDE;
581 switch (state->speed) {
582 case SPEED_1000:
583 reg |= SPDSTS_1000 << SPEED_SHIFT;
584 break;
585 case SPEED_100:
586 reg |= SPDSTS_100 << SPEED_SHIFT;
587 break;
588 }
589
590 if (state->link)
591 reg |= LINK_STS;
592 if (state->duplex == DUPLEX_FULL)
593 reg |= DUPLX_MODE;
594
595 core_writel(priv, reg, offset);
596}
597
598static void bcm_sf2_sw_mac_link_set(struct dsa_switch *ds, int port,
599 phy_interface_t interface, bool link)
600{
601 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
602 u32 reg;
603
604 if (!phy_interface_mode_is_rgmii(interface) &&
605 interface != PHY_INTERFACE_MODE_MII &&
606 interface != PHY_INTERFACE_MODE_REVMII)
607 return;
608
609 /* If the link is down, just disable the interface to conserve power */
610 reg = reg_readl(priv, REG_RGMII_CNTRL_P(port));
611 if (link)
612 reg |= RGMII_MODE_EN;
613 else
614 reg &= ~RGMII_MODE_EN;
615 reg_writel(priv, reg, REG_RGMII_CNTRL_P(port));
616}
617
618static void bcm_sf2_sw_mac_link_down(struct dsa_switch *ds, int port,
619 unsigned int mode,
620 phy_interface_t interface)
621{
622 bcm_sf2_sw_mac_link_set(ds, port, interface, false);
623}
624
625static void bcm_sf2_sw_mac_link_up(struct dsa_switch *ds, int port,
626 unsigned int mode,
627 phy_interface_t interface,
628 struct phy_device *phydev)
629{
630 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
631 struct ethtool_eee *p = &priv->dev->ports[port].eee;
632
633 bcm_sf2_sw_mac_link_set(ds, port, interface, true);
634
635 if (mode == MLO_AN_PHY && phydev)
636 p->eee_enabled = b53_eee_init(ds, port, phydev);
637}
638
639static void bcm_sf2_sw_fixed_state(struct dsa_switch *ds, int port,
640 struct phylink_link_state *status)
641{
642 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
643
644 status->link = false;
645
646 /* MoCA port is special as we do not get link status from CORE_LNKSTS,
647 * which means that we need to force the link at the port override
648 * level to get the data to flow. We do use what the interrupt handler
649 * did determine before.
650 *
651 * For the other ports, we just force the link status, since this is
652 * a fixed PHY device.
653 */
654 if (port == priv->moca_port) {
655 status->link = priv->port_sts[port].link;
656 /* For MoCA interfaces, also force a link down notification
657 * since some version of the user-space daemon (mocad) use
658 * cmd->autoneg to force the link, which messes up the PHY
659 * state machine and make it go in PHY_FORCING state instead.
660 */
661 if (!status->link)
662 netif_carrier_off(ds->ports[port].slave);
663 status->duplex = DUPLEX_FULL;
664 } else {
665 status->link = true;
666 }
667}
668
Florian Fainelli32e47ff2017-10-11 10:57:51 -0700669static void bcm_sf2_enable_acb(struct dsa_switch *ds)
670{
671 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
672 u32 reg;
673
674 /* Enable ACB globally */
675 reg = acb_readl(priv, ACB_CONTROL);
676 reg |= (ACB_FLUSH_MASK << ACB_FLUSH_SHIFT);
677 acb_writel(priv, reg, ACB_CONTROL);
678 reg &= ~(ACB_FLUSH_MASK << ACB_FLUSH_SHIFT);
679 reg |= ACB_EN | ACB_ALGORITHM;
680 acb_writel(priv, reg, ACB_CONTROL);
681}
682
Florian Fainelli8cfa9492014-09-18 17:31:23 -0700683static int bcm_sf2_sw_suspend(struct dsa_switch *ds)
684{
Florian Fainellif4589952016-08-26 12:18:33 -0700685 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainelli8cfa9492014-09-18 17:31:23 -0700686 unsigned int port;
687
Florian Fainelli691c9a82015-01-20 16:42:00 -0800688 bcm_sf2_intr_disable(priv);
Florian Fainelli8cfa9492014-09-18 17:31:23 -0700689
690 /* Disable all ports physically present including the IMP
691 * port, the other ones have already been disabled during
692 * bcm_sf2_sw_setup
693 */
Dan Carpenter8d6ea932019-02-13 11:23:04 +0300694 for (port = 0; port < ds->num_ports; port++) {
Vivien Didelot4a5b85f2017-10-26 11:22:55 -0400695 if (dsa_is_user_port(ds, port) || dsa_is_cpu_port(ds, port))
Andrew Lunn75104db2019-02-24 20:44:43 +0100696 bcm_sf2_port_disable(ds, port);
Florian Fainelli8cfa9492014-09-18 17:31:23 -0700697 }
698
699 return 0;
700}
701
Florian Fainelli8cfa9492014-09-18 17:31:23 -0700702static int bcm_sf2_sw_resume(struct dsa_switch *ds)
703{
Florian Fainellif4589952016-08-26 12:18:33 -0700704 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainelli8cfa9492014-09-18 17:31:23 -0700705 int ret;
706
707 ret = bcm_sf2_sw_rst(priv);
708 if (ret) {
709 pr_err("%s: failed to software reset switch\n", __func__);
710 return ret;
711 }
712
Florian Fainelli1c0130f2018-11-06 12:58:39 -0800713 ret = bcm_sf2_cfp_resume(ds);
714 if (ret)
715 return ret;
716
Florian Fainellib0836682015-02-05 11:40:41 -0800717 if (priv->hw_params.num_gphy == 1)
718 bcm_sf2_gphy_enable_set(ds, true);
Florian Fainelli8cfa9492014-09-18 17:31:23 -0700719
Florian Fainelliabd01ba2018-10-09 16:48:58 -0700720 ds->ops->setup(ds);
Florian Fainelli32e47ff2017-10-11 10:57:51 -0700721
Florian Fainelli8cfa9492014-09-18 17:31:23 -0700722 return 0;
723}
724
Florian Fainelli96e65d72014-09-18 17:31:25 -0700725static void bcm_sf2_sw_get_wol(struct dsa_switch *ds, int port,
726 struct ethtool_wolinfo *wol)
727{
Vivien Didelotf8b8b1c2017-10-16 11:12:18 -0400728 struct net_device *p = ds->ports[port].cpu_dp->master;
Florian Fainellif4589952016-08-26 12:18:33 -0700729 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainellic3152ec2019-02-15 12:16:52 -0800730 struct ethtool_wolinfo pwol = { };
Florian Fainelli96e65d72014-09-18 17:31:25 -0700731
732 /* Get the parent device WoL settings */
Florian Fainellic3152ec2019-02-15 12:16:52 -0800733 if (p->ethtool_ops->get_wol)
734 p->ethtool_ops->get_wol(p, &pwol);
Florian Fainelli96e65d72014-09-18 17:31:25 -0700735
736 /* Advertise the parent device supported settings */
737 wol->supported = pwol.supported;
738 memset(&wol->sopass, 0, sizeof(wol->sopass));
739
740 if (pwol.wolopts & WAKE_MAGICSECURE)
741 memcpy(&wol->sopass, pwol.sopass, sizeof(wol->sopass));
742
743 if (priv->wol_ports_mask & (1 << port))
744 wol->wolopts = pwol.wolopts;
745 else
746 wol->wolopts = 0;
747}
748
749static int bcm_sf2_sw_set_wol(struct dsa_switch *ds, int port,
750 struct ethtool_wolinfo *wol)
751{
Vivien Didelotf8b8b1c2017-10-16 11:12:18 -0400752 struct net_device *p = ds->ports[port].cpu_dp->master;
Florian Fainellif4589952016-08-26 12:18:33 -0700753 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Vivien Didelot0abfd492017-09-20 12:28:05 -0400754 s8 cpu_port = ds->ports[port].cpu_dp->index;
Florian Fainellic3152ec2019-02-15 12:16:52 -0800755 struct ethtool_wolinfo pwol = { };
Florian Fainelli96e65d72014-09-18 17:31:25 -0700756
Florian Fainellic3152ec2019-02-15 12:16:52 -0800757 if (p->ethtool_ops->get_wol)
758 p->ethtool_ops->get_wol(p, &pwol);
Florian Fainelli96e65d72014-09-18 17:31:25 -0700759 if (wol->wolopts & ~pwol.supported)
760 return -EINVAL;
761
762 if (wol->wolopts)
763 priv->wol_ports_mask |= (1 << port);
764 else
765 priv->wol_ports_mask &= ~(1 << port);
766
767 /* If we have at least one port enabled, make sure the CPU port
768 * is also enabled. If the CPU port is the last one enabled, we disable
769 * it since this configuration does not make sense.
770 */
771 if (priv->wol_ports_mask && priv->wol_ports_mask != (1 << cpu_port))
772 priv->wol_ports_mask |= (1 << cpu_port);
773 else
774 priv->wol_ports_mask &= ~(1 << cpu_port);
775
776 return p->ethtool_ops->set_wol(p, wol);
777}
778
Florian Fainelli7fbb1a92016-06-09 17:42:06 -0700779static int bcm_sf2_sw_setup(struct dsa_switch *ds)
780{
Florian Fainellif4589952016-08-26 12:18:33 -0700781 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainelli7fbb1a92016-06-09 17:42:06 -0700782 unsigned int port;
Florian Fainellid9338022016-08-18 15:30:14 -0700783
Florian Fainelli21a27742017-09-28 11:19:06 -0700784 /* Enable all valid ports and disable those unused */
Florian Fainellid9338022016-08-18 15:30:14 -0700785 for (port = 0; port < priv->hw_params.num_ports; port++) {
Florian Fainelli21a27742017-09-28 11:19:06 -0700786 /* IMP port receives special treatment */
Vivien Didelot4a5b85f2017-10-26 11:22:55 -0400787 if (dsa_is_user_port(ds, port))
Florian Fainelli21a27742017-09-28 11:19:06 -0700788 bcm_sf2_port_setup(ds, port, NULL);
789 else if (dsa_is_cpu_port(ds, port))
Florian Fainellid9338022016-08-18 15:30:14 -0700790 bcm_sf2_imp_setup(ds, port);
Florian Fainelli21a27742017-09-28 11:19:06 -0700791 else
Andrew Lunn75104db2019-02-24 20:44:43 +0100792 bcm_sf2_port_disable(ds, port);
Florian Fainellid9338022016-08-18 15:30:14 -0700793 }
794
Florian Fainelli5c1a6ea2017-10-27 15:56:01 -0700795 b53_configure_vlan(ds);
Florian Fainelli32e47ff2017-10-11 10:57:51 -0700796 bcm_sf2_enable_acb(ds);
Florian Fainellid9338022016-08-18 15:30:14 -0700797
798 return 0;
799}
800
Florian Fainellif4589952016-08-26 12:18:33 -0700801/* The SWITCH_CORE register space is managed by b53 but operates on a page +
802 * register basis so we need to translate that into an address that the
803 * bus-glue understands.
804 */
805#define SF2_PAGE_REG_MKADDR(page, reg) ((page) << 10 | (reg) << 2)
806
807static int bcm_sf2_core_read8(struct b53_device *dev, u8 page, u8 reg,
808 u8 *val)
809{
810 struct bcm_sf2_priv *priv = dev->priv;
811
812 *val = core_readl(priv, SF2_PAGE_REG_MKADDR(page, reg));
813
814 return 0;
815}
816
817static int bcm_sf2_core_read16(struct b53_device *dev, u8 page, u8 reg,
818 u16 *val)
819{
820 struct bcm_sf2_priv *priv = dev->priv;
821
822 *val = core_readl(priv, SF2_PAGE_REG_MKADDR(page, reg));
823
824 return 0;
825}
826
827static int bcm_sf2_core_read32(struct b53_device *dev, u8 page, u8 reg,
828 u32 *val)
829{
830 struct bcm_sf2_priv *priv = dev->priv;
831
832 *val = core_readl(priv, SF2_PAGE_REG_MKADDR(page, reg));
833
834 return 0;
835}
836
837static int bcm_sf2_core_read64(struct b53_device *dev, u8 page, u8 reg,
838 u64 *val)
839{
840 struct bcm_sf2_priv *priv = dev->priv;
841
842 *val = core_readq(priv, SF2_PAGE_REG_MKADDR(page, reg));
843
844 return 0;
845}
846
847static int bcm_sf2_core_write8(struct b53_device *dev, u8 page, u8 reg,
848 u8 value)
849{
850 struct bcm_sf2_priv *priv = dev->priv;
851
852 core_writel(priv, value, SF2_PAGE_REG_MKADDR(page, reg));
853
854 return 0;
855}
856
857static int bcm_sf2_core_write16(struct b53_device *dev, u8 page, u8 reg,
858 u16 value)
859{
860 struct bcm_sf2_priv *priv = dev->priv;
861
862 core_writel(priv, value, SF2_PAGE_REG_MKADDR(page, reg));
863
864 return 0;
865}
866
867static int bcm_sf2_core_write32(struct b53_device *dev, u8 page, u8 reg,
868 u32 value)
869{
870 struct bcm_sf2_priv *priv = dev->priv;
871
872 core_writel(priv, value, SF2_PAGE_REG_MKADDR(page, reg));
873
874 return 0;
875}
876
877static int bcm_sf2_core_write64(struct b53_device *dev, u8 page, u8 reg,
878 u64 value)
879{
880 struct bcm_sf2_priv *priv = dev->priv;
881
882 core_writeq(priv, value, SF2_PAGE_REG_MKADDR(page, reg));
883
884 return 0;
885}
886
Bhumika Goyal7e3108f2017-08-29 22:17:52 +0530887static const struct b53_io_ops bcm_sf2_io_ops = {
Florian Fainellif4589952016-08-26 12:18:33 -0700888 .read8 = bcm_sf2_core_read8,
889 .read16 = bcm_sf2_core_read16,
890 .read32 = bcm_sf2_core_read32,
891 .read48 = bcm_sf2_core_read64,
892 .read64 = bcm_sf2_core_read64,
893 .write8 = bcm_sf2_core_write8,
894 .write16 = bcm_sf2_core_write16,
895 .write32 = bcm_sf2_core_write32,
896 .write48 = bcm_sf2_core_write64,
897 .write64 = bcm_sf2_core_write64,
898};
899
Florian Fainellibadd62c2019-02-06 12:45:58 -0800900static void bcm_sf2_sw_get_strings(struct dsa_switch *ds, int port,
901 u32 stringset, uint8_t *data)
902{
Florian Fainellif4ae9c02019-02-06 12:45:59 -0800903 int cnt = b53_get_sset_count(ds, port, stringset);
904
Florian Fainellibadd62c2019-02-06 12:45:58 -0800905 b53_get_strings(ds, port, stringset, data);
Florian Fainellif4ae9c02019-02-06 12:45:59 -0800906 bcm_sf2_cfp_get_strings(ds, port, stringset,
907 data + cnt * ETH_GSTRING_LEN);
Florian Fainellibadd62c2019-02-06 12:45:58 -0800908}
909
910static void bcm_sf2_sw_get_ethtool_stats(struct dsa_switch *ds, int port,
911 uint64_t *data)
912{
Florian Fainellif4ae9c02019-02-06 12:45:59 -0800913 int cnt = b53_get_sset_count(ds, port, ETH_SS_STATS);
914
Florian Fainellibadd62c2019-02-06 12:45:58 -0800915 b53_get_ethtool_stats(ds, port, data);
Florian Fainellif4ae9c02019-02-06 12:45:59 -0800916 bcm_sf2_cfp_get_ethtool_stats(ds, port, data + cnt);
Florian Fainellibadd62c2019-02-06 12:45:58 -0800917}
918
919static int bcm_sf2_sw_get_sset_count(struct dsa_switch *ds, int port,
920 int sset)
921{
Florian Fainellif4ae9c02019-02-06 12:45:59 -0800922 int cnt = b53_get_sset_count(ds, port, sset);
923
924 if (cnt < 0)
925 return cnt;
926
927 cnt += bcm_sf2_cfp_get_sset_count(ds, port, sset);
928
929 return cnt;
Florian Fainellibadd62c2019-02-06 12:45:58 -0800930}
931
Florian Fainellia82f67a2017-01-08 14:52:08 -0800932static const struct dsa_switch_ops bcm_sf2_ops = {
Florian Fainelli9f668162017-11-30 09:55:35 -0800933 .get_tag_protocol = b53_get_tag_protocol,
Florian Fainelli73095cb2017-01-08 14:52:06 -0800934 .setup = bcm_sf2_sw_setup,
Florian Fainellibadd62c2019-02-06 12:45:58 -0800935 .get_strings = bcm_sf2_sw_get_strings,
936 .get_ethtool_stats = bcm_sf2_sw_get_ethtool_stats,
937 .get_sset_count = bcm_sf2_sw_get_sset_count,
Florian Fainellic7d28c92018-04-25 12:12:53 -0700938 .get_ethtool_phy_stats = b53_get_ethtool_phy_stats,
Florian Fainelli73095cb2017-01-08 14:52:06 -0800939 .get_phy_flags = bcm_sf2_sw_get_phy_flags,
Florian Fainellibc0cb652018-05-10 13:17:33 -0700940 .phylink_validate = bcm_sf2_sw_validate,
941 .phylink_mac_config = bcm_sf2_sw_mac_config,
942 .phylink_mac_link_down = bcm_sf2_sw_mac_link_down,
943 .phylink_mac_link_up = bcm_sf2_sw_mac_link_up,
944 .phylink_fixed_state = bcm_sf2_sw_fixed_state,
Florian Fainelli73095cb2017-01-08 14:52:06 -0800945 .suspend = bcm_sf2_sw_suspend,
946 .resume = bcm_sf2_sw_resume,
947 .get_wol = bcm_sf2_sw_get_wol,
948 .set_wol = bcm_sf2_sw_set_wol,
949 .port_enable = bcm_sf2_port_setup,
950 .port_disable = bcm_sf2_port_disable,
Florian Fainelli22256b02017-09-19 10:46:50 -0700951 .get_mac_eee = b53_get_mac_eee,
952 .set_mac_eee = b53_set_mac_eee,
Florian Fainelli73095cb2017-01-08 14:52:06 -0800953 .port_bridge_join = b53_br_join,
954 .port_bridge_leave = b53_br_leave,
955 .port_stp_state_set = b53_br_set_stp_state,
956 .port_fast_age = b53_br_fast_age,
957 .port_vlan_filtering = b53_vlan_filtering,
958 .port_vlan_prepare = b53_vlan_prepare,
959 .port_vlan_add = b53_vlan_add,
960 .port_vlan_del = b53_vlan_del,
Florian Fainelli73095cb2017-01-08 14:52:06 -0800961 .port_fdb_dump = b53_fdb_dump,
962 .port_fdb_add = b53_fdb_add,
963 .port_fdb_del = b53_fdb_del,
Florian Fainelli73181662017-01-30 09:48:43 -0800964 .get_rxnfc = bcm_sf2_get_rxnfc,
965 .set_rxnfc = bcm_sf2_set_rxnfc,
Florian Fainelliec960de2017-01-30 12:41:43 -0800966 .port_mirror_add = b53_mirror_add,
967 .port_mirror_del = b53_mirror_del,
Florian Fainelli73095cb2017-01-08 14:52:06 -0800968};
969
Florian Fainellia78e86e2017-01-20 12:36:29 -0800970struct bcm_sf2_of_data {
971 u32 type;
972 const u16 *reg_offsets;
973 unsigned int core_reg_align;
Florian Fainellidf191632017-08-30 12:39:33 -0700974 unsigned int num_cfp_rules;
Florian Fainellia78e86e2017-01-20 12:36:29 -0800975};
976
977/* Register offsets for the SWITCH_REG_* block */
978static const u16 bcm_sf2_7445_reg_offsets[] = {
979 [REG_SWITCH_CNTRL] = 0x00,
980 [REG_SWITCH_STATUS] = 0x04,
981 [REG_DIR_DATA_WRITE] = 0x08,
982 [REG_DIR_DATA_READ] = 0x0C,
983 [REG_SWITCH_REVISION] = 0x18,
984 [REG_PHY_REVISION] = 0x1C,
985 [REG_SPHY_CNTRL] = 0x2C,
986 [REG_RGMII_0_CNTRL] = 0x34,
987 [REG_RGMII_1_CNTRL] = 0x40,
988 [REG_RGMII_2_CNTRL] = 0x4c,
989 [REG_LED_0_CNTRL] = 0x90,
990 [REG_LED_1_CNTRL] = 0x94,
991 [REG_LED_2_CNTRL] = 0x98,
992};
993
994static const struct bcm_sf2_of_data bcm_sf2_7445_data = {
995 .type = BCM7445_DEVICE_ID,
996 .core_reg_align = 0,
997 .reg_offsets = bcm_sf2_7445_reg_offsets,
Florian Fainellidf191632017-08-30 12:39:33 -0700998 .num_cfp_rules = 256,
Florian Fainellia78e86e2017-01-20 12:36:29 -0800999};
1000
Florian Fainelli0fe99332017-01-20 12:36:30 -08001001static const u16 bcm_sf2_7278_reg_offsets[] = {
1002 [REG_SWITCH_CNTRL] = 0x00,
1003 [REG_SWITCH_STATUS] = 0x04,
1004 [REG_DIR_DATA_WRITE] = 0x08,
1005 [REG_DIR_DATA_READ] = 0x0c,
1006 [REG_SWITCH_REVISION] = 0x10,
1007 [REG_PHY_REVISION] = 0x14,
1008 [REG_SPHY_CNTRL] = 0x24,
1009 [REG_RGMII_0_CNTRL] = 0xe0,
1010 [REG_RGMII_1_CNTRL] = 0xec,
1011 [REG_RGMII_2_CNTRL] = 0xf8,
1012 [REG_LED_0_CNTRL] = 0x40,
1013 [REG_LED_1_CNTRL] = 0x4c,
1014 [REG_LED_2_CNTRL] = 0x58,
1015};
1016
1017static const struct bcm_sf2_of_data bcm_sf2_7278_data = {
1018 .type = BCM7278_DEVICE_ID,
1019 .core_reg_align = 1,
1020 .reg_offsets = bcm_sf2_7278_reg_offsets,
Florian Fainellidf191632017-08-30 12:39:33 -07001021 .num_cfp_rules = 128,
Florian Fainelli0fe99332017-01-20 12:36:30 -08001022};
1023
Florian Fainellia78e86e2017-01-20 12:36:29 -08001024static const struct of_device_id bcm_sf2_of_match[] = {
1025 { .compatible = "brcm,bcm7445-switch-v4.0",
1026 .data = &bcm_sf2_7445_data
1027 },
Florian Fainelli0fe99332017-01-20 12:36:30 -08001028 { .compatible = "brcm,bcm7278-switch-v4.0",
1029 .data = &bcm_sf2_7278_data
1030 },
Florian Fainelli3b07d782017-12-14 17:59:40 -08001031 { .compatible = "brcm,bcm7278-switch-v4.8",
1032 .data = &bcm_sf2_7278_data
1033 },
Florian Fainellia78e86e2017-01-20 12:36:29 -08001034 { /* sentinel */ },
1035};
1036MODULE_DEVICE_TABLE(of, bcm_sf2_of_match);
1037
Florian Fainellid9338022016-08-18 15:30:14 -07001038static int bcm_sf2_sw_probe(struct platform_device *pdev)
1039{
1040 const char *reg_names[BCM_SF2_REGS_NUM] = BCM_SF2_REGS_NAME;
1041 struct device_node *dn = pdev->dev.of_node;
Florian Fainellia78e86e2017-01-20 12:36:29 -08001042 const struct of_device_id *of_id = NULL;
1043 const struct bcm_sf2_of_data *data;
Florian Fainellif4589952016-08-26 12:18:33 -07001044 struct b53_platform_data *pdata;
Florian Fainellia4c61b92017-01-07 21:01:56 -08001045 struct dsa_switch_ops *ops;
Florian Fainellid9338022016-08-18 15:30:14 -07001046 struct bcm_sf2_priv *priv;
Florian Fainellif4589952016-08-26 12:18:33 -07001047 struct b53_device *dev;
Florian Fainellid9338022016-08-18 15:30:14 -07001048 struct dsa_switch *ds;
1049 void __iomem **base;
Florian Fainelli4bd11672016-08-18 15:30:15 -07001050 struct resource *r;
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001051 unsigned int i;
1052 u32 reg, rev;
1053 int ret;
1054
Florian Fainellif4589952016-08-26 12:18:33 -07001055 priv = devm_kzalloc(&pdev->dev, sizeof(*priv), GFP_KERNEL);
1056 if (!priv)
Florian Fainellid9338022016-08-18 15:30:14 -07001057 return -ENOMEM;
1058
Florian Fainellia4c61b92017-01-07 21:01:56 -08001059 ops = devm_kzalloc(&pdev->dev, sizeof(*ops), GFP_KERNEL);
1060 if (!ops)
1061 return -ENOMEM;
1062
Florian Fainellif4589952016-08-26 12:18:33 -07001063 dev = b53_switch_alloc(&pdev->dev, &bcm_sf2_io_ops, priv);
1064 if (!dev)
1065 return -ENOMEM;
Florian Fainellid9338022016-08-18 15:30:14 -07001066
Florian Fainellif4589952016-08-26 12:18:33 -07001067 pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL);
1068 if (!pdata)
1069 return -ENOMEM;
1070
Florian Fainellia78e86e2017-01-20 12:36:29 -08001071 of_id = of_match_node(bcm_sf2_of_match, dn);
1072 if (!of_id || !of_id->data)
1073 return -EINVAL;
1074
1075 data = of_id->data;
1076
1077 /* Set SWITCH_REG register offsets and SWITCH_CORE align factor */
1078 priv->type = data->type;
1079 priv->reg_offsets = data->reg_offsets;
1080 priv->core_reg_align = data->core_reg_align;
Florian Fainellidf191632017-08-30 12:39:33 -07001081 priv->num_cfp_rules = data->num_cfp_rules;
Florian Fainellia78e86e2017-01-20 12:36:29 -08001082
Florian Fainellif4589952016-08-26 12:18:33 -07001083 /* Auto-detection using standard registers will not work, so
1084 * provide an indication of what kind of device we are for
1085 * b53_common to work with
1086 */
Florian Fainellia78e86e2017-01-20 12:36:29 -08001087 pdata->chip_id = priv->type;
Florian Fainellif4589952016-08-26 12:18:33 -07001088 dev->pdata = pdata;
1089
1090 priv->dev = dev;
1091 ds = dev->ds;
Florian Fainelli73095cb2017-01-08 14:52:06 -08001092 ds->ops = &bcm_sf2_ops;
Florian Fainellif4589952016-08-26 12:18:33 -07001093
Florian Fainelli181183772017-09-03 20:27:02 -07001094 /* Advertise the 8 egress queues */
1095 ds->num_tx_queues = SF2_NUM_EGRESS_QUEUES;
1096
Florian Fainellif4589952016-08-26 12:18:33 -07001097 dev_set_drvdata(&pdev->dev, priv);
Florian Fainellid9338022016-08-18 15:30:14 -07001098
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001099 spin_lock_init(&priv->indir_lock);
Florian Fainelli73181662017-01-30 09:48:43 -08001100 mutex_init(&priv->cfp.lock);
Florian Fainelliae7a5af2018-11-06 12:58:37 -08001101 INIT_LIST_HEAD(&priv->cfp.rules_list);
Florian Fainelli73181662017-01-30 09:48:43 -08001102
1103 /* CFP rule #0 cannot be used for specific classifications, flag it as
1104 * permanently used
1105 */
1106 set_bit(0, priv->cfp.used);
Florian Fainelliba0696c2017-10-20 14:39:47 -07001107 set_bit(0, priv->cfp.unique);
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001108
Florian Fainellid9338022016-08-18 15:30:14 -07001109 bcm_sf2_identify_ports(priv, dn->child);
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001110
1111 priv->irq0 = irq_of_parse_and_map(dn, 0);
1112 priv->irq1 = irq_of_parse_and_map(dn, 1);
1113
1114 base = &priv->core;
1115 for (i = 0; i < BCM_SF2_REGS_NUM; i++) {
Florian Fainelli4bd11672016-08-18 15:30:15 -07001116 r = platform_get_resource(pdev, IORESOURCE_MEM, i);
1117 *base = devm_ioremap_resource(&pdev->dev, r);
1118 if (IS_ERR(*base)) {
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001119 pr_err("unable to find register: %s\n", reg_names[i]);
Florian Fainelli4bd11672016-08-18 15:30:15 -07001120 return PTR_ERR(*base);
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001121 }
1122 base++;
1123 }
1124
1125 ret = bcm_sf2_sw_rst(priv);
1126 if (ret) {
1127 pr_err("unable to software reset switch: %d\n", ret);
Florian Fainelli4bd11672016-08-18 15:30:15 -07001128 return ret;
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001129 }
1130
Florian Fainellic04a17d2018-11-06 15:15:16 -08001131 bcm_sf2_gphy_enable_set(priv->dev->ds, true);
1132
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001133 ret = bcm_sf2_mdio_register(ds);
1134 if (ret) {
1135 pr_err("failed to register MDIO bus\n");
Florian Fainelli4bd11672016-08-18 15:30:15 -07001136 return ret;
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001137 }
1138
Florian Fainellic04a17d2018-11-06 15:15:16 -08001139 bcm_sf2_gphy_enable_set(priv->dev->ds, false);
1140
Florian Fainelli73181662017-01-30 09:48:43 -08001141 ret = bcm_sf2_cfp_rst(priv);
1142 if (ret) {
1143 pr_err("failed to reset CFP\n");
1144 goto out_mdio;
1145 }
1146
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001147 /* Disable all interrupts and request them */
1148 bcm_sf2_intr_disable(priv);
1149
Florian Fainelli4bd11672016-08-18 15:30:15 -07001150 ret = devm_request_irq(&pdev->dev, priv->irq0, bcm_sf2_switch_0_isr, 0,
Florian Fainellibc0cb652018-05-10 13:17:33 -07001151 "switch_0", ds);
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001152 if (ret < 0) {
1153 pr_err("failed to request switch_0 IRQ\n");
Florian Fainellibb9c0fa2016-07-29 12:35:57 -07001154 goto out_mdio;
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001155 }
1156
Florian Fainelli4bd11672016-08-18 15:30:15 -07001157 ret = devm_request_irq(&pdev->dev, priv->irq1, bcm_sf2_switch_1_isr, 0,
Florian Fainellibc0cb652018-05-10 13:17:33 -07001158 "switch_1", ds);
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001159 if (ret < 0) {
1160 pr_err("failed to request switch_1 IRQ\n");
Florian Fainelli4bd11672016-08-18 15:30:15 -07001161 goto out_mdio;
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001162 }
1163
1164 /* Reset the MIB counters */
1165 reg = core_readl(priv, CORE_GMNCFGCFG);
1166 reg |= RST_MIB_CNT;
1167 core_writel(priv, reg, CORE_GMNCFGCFG);
1168 reg &= ~RST_MIB_CNT;
1169 core_writel(priv, reg, CORE_GMNCFGCFG);
1170
1171 /* Get the maximum number of ports for this switch */
1172 priv->hw_params.num_ports = core_readl(priv, CORE_IMP0_PRT_ID) + 1;
1173 if (priv->hw_params.num_ports > DSA_MAX_PORTS)
1174 priv->hw_params.num_ports = DSA_MAX_PORTS;
1175
1176 /* Assume a single GPHY setup if we can't read that property */
1177 if (of_property_read_u32(dn, "brcm,num-gphy",
1178 &priv->hw_params.num_gphy))
1179 priv->hw_params.num_gphy = 1;
1180
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001181 rev = reg_readl(priv, REG_SWITCH_REVISION);
1182 priv->hw_params.top_rev = (rev >> SWITCH_TOP_REV_SHIFT) &
1183 SWITCH_TOP_REV_MASK;
1184 priv->hw_params.core_rev = (rev & SF2_REV_MASK);
1185
1186 rev = reg_readl(priv, REG_PHY_REVISION);
1187 priv->hw_params.gphy_rev = rev & PHY_REVISION_MASK;
1188
Florian Fainellif4589952016-08-26 12:18:33 -07001189 ret = b53_switch_register(dev);
Florian Fainellid9338022016-08-18 15:30:14 -07001190 if (ret)
Florian Fainelli4bd11672016-08-18 15:30:15 -07001191 goto out_mdio;
Florian Fainellid9338022016-08-18 15:30:14 -07001192
Florian Fainellifbb7bc42019-03-20 09:45:16 -07001193 dev_info(&pdev->dev,
1194 "Starfighter 2 top: %x.%02x, core: %x.%02x, IRQs: %d, %d\n",
1195 priv->hw_params.top_rev >> 8, priv->hw_params.top_rev & 0xff,
1196 priv->hw_params.core_rev >> 8, priv->hw_params.core_rev & 0xff,
1197 priv->irq0, priv->irq1);
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001198
1199 return 0;
1200
Florian Fainellibb9c0fa2016-07-29 12:35:57 -07001201out_mdio:
1202 bcm_sf2_mdio_unregister(priv);
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001203 return ret;
1204}
1205
Florian Fainellid9338022016-08-18 15:30:14 -07001206static int bcm_sf2_sw_remove(struct platform_device *pdev)
Florian Fainelli246d7f72014-08-27 17:04:56 -07001207{
Florian Fainellif4589952016-08-26 12:18:33 -07001208 struct bcm_sf2_priv *priv = platform_get_drvdata(pdev);
Florian Fainellid9338022016-08-18 15:30:14 -07001209
Florian Fainellid9338022016-08-18 15:30:14 -07001210 priv->wol_ports_mask = 0;
Florian Fainellif4589952016-08-26 12:18:33 -07001211 dsa_unregister_switch(priv->dev->ds);
Florian Fainelliae7a5af2018-11-06 12:58:37 -08001212 bcm_sf2_cfp_exit(priv->dev->ds);
Florian Fainelli448765e2018-10-09 16:48:57 -07001213 /* Disable all ports and interrupts */
1214 bcm_sf2_sw_suspend(priv->dev->ds);
Florian Fainellid9338022016-08-18 15:30:14 -07001215 bcm_sf2_mdio_unregister(priv);
Florian Fainelli246d7f72014-08-27 17:04:56 -07001216
1217 return 0;
1218}
Florian Fainelli246d7f72014-08-27 17:04:56 -07001219
Florian Fainelli2399d612016-10-20 09:32:19 -07001220static void bcm_sf2_sw_shutdown(struct platform_device *pdev)
1221{
1222 struct bcm_sf2_priv *priv = platform_get_drvdata(pdev);
1223
1224 /* For a kernel about to be kexec'd we want to keep the GPHY on for a
1225 * successful MDIO bus scan to occur. If we did turn off the GPHY
1226 * before (e.g: port_disable), this will also power it back on.
Florian Fainelli4a2947e2016-10-21 14:21:56 -07001227 *
1228 * Do not rely on kexec_in_progress, just power the PHY on.
Florian Fainelli2399d612016-10-20 09:32:19 -07001229 */
1230 if (priv->hw_params.num_gphy == 1)
Florian Fainelli4a2947e2016-10-21 14:21:56 -07001231 bcm_sf2_gphy_enable_set(priv->dev->ds, true);
Florian Fainelli2399d612016-10-20 09:32:19 -07001232}
1233
Florian Fainellid9338022016-08-18 15:30:14 -07001234#ifdef CONFIG_PM_SLEEP
1235static int bcm_sf2_suspend(struct device *dev)
Florian Fainelli246d7f72014-08-27 17:04:56 -07001236{
Wolfram Sang63382e02018-10-21 22:00:12 +02001237 struct bcm_sf2_priv *priv = dev_get_drvdata(dev);
Florian Fainellid9338022016-08-18 15:30:14 -07001238
Florian Fainellif4589952016-08-26 12:18:33 -07001239 return dsa_switch_suspend(priv->dev->ds);
Florian Fainelli246d7f72014-08-27 17:04:56 -07001240}
Florian Fainellid9338022016-08-18 15:30:14 -07001241
1242static int bcm_sf2_resume(struct device *dev)
1243{
Wolfram Sang63382e02018-10-21 22:00:12 +02001244 struct bcm_sf2_priv *priv = dev_get_drvdata(dev);
Florian Fainellid9338022016-08-18 15:30:14 -07001245
Florian Fainellif4589952016-08-26 12:18:33 -07001246 return dsa_switch_resume(priv->dev->ds);
Florian Fainellid9338022016-08-18 15:30:14 -07001247}
1248#endif /* CONFIG_PM_SLEEP */
1249
1250static SIMPLE_DEV_PM_OPS(bcm_sf2_pm_ops,
1251 bcm_sf2_suspend, bcm_sf2_resume);
1252
Florian Fainellid9338022016-08-18 15:30:14 -07001253
1254static struct platform_driver bcm_sf2_driver = {
1255 .probe = bcm_sf2_sw_probe,
1256 .remove = bcm_sf2_sw_remove,
Florian Fainelli2399d612016-10-20 09:32:19 -07001257 .shutdown = bcm_sf2_sw_shutdown,
Florian Fainellid9338022016-08-18 15:30:14 -07001258 .driver = {
1259 .name = "brcm-sf2",
1260 .of_match_table = bcm_sf2_of_match,
1261 .pm = &bcm_sf2_pm_ops,
1262 },
1263};
1264module_platform_driver(bcm_sf2_driver);
Florian Fainelli246d7f72014-08-27 17:04:56 -07001265
1266MODULE_AUTHOR("Broadcom Corporation");
1267MODULE_DESCRIPTION("Driver for Broadcom Starfighter 2 ethernet switch chip");
1268MODULE_LICENSE("GPL");
1269MODULE_ALIAS("platform:brcm-sf2");