blob: 33499fcd88484eb77031eebcf660b08232f8236b [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>
Florian Fainellie9ec5c32020-09-01 15:59:12 -070017#include <linux/clk.h>
Florian Fainelli246d7f72014-08-27 17:04:56 -070018#include <linux/of.h>
19#include <linux/of_irq.h>
20#include <linux/of_address.h>
Florian Fainelli8b7c94e2015-10-23 12:11:08 -070021#include <linux/of_net.h>
Florian Fainelli461cd1b02016-06-07 16:32:43 -070022#include <linux/of_mdio.h>
Florian Fainelli246d7f72014-08-27 17:04:56 -070023#include <net/dsa.h>
Florian Fainelli96e65d72014-09-18 17:31:25 -070024#include <linux/ethtool.h>
Florian Fainelli12f460f2015-02-24 13:15:34 -080025#include <linux/if_bridge.h>
Florian Fainelliaafc66f2015-06-10 18:08:01 -070026#include <linux/brcmphy.h>
Florian Fainelli680060d2015-10-23 11:38:07 -070027#include <linux/etherdevice.h>
Florian Fainellif4589952016-08-26 12:18:33 -070028#include <linux/platform_data/b53.h>
Florian Fainelli246d7f72014-08-27 17:04:56 -070029
30#include "bcm_sf2.h"
31#include "bcm_sf2_regs.h"
Florian Fainellif4589952016-08-26 12:18:33 -070032#include "b53/b53_priv.h"
33#include "b53/b53_regs.h"
Florian Fainelli246d7f72014-08-27 17:04:56 -070034
Rafał Miłecki55cfeb32021-03-18 09:01:42 +010035static u16 bcm_sf2_reg_rgmii_cntrl(struct bcm_sf2_priv *priv, int port)
36{
37 switch (priv->type) {
38 case BCM4908_DEVICE_ID:
Rafał Miłecki6859d912021-03-18 09:01:43 +010039 switch (port) {
40 case 7:
41 return REG_RGMII_11_CNTRL;
42 default:
43 break;
44 }
Rafał Miłecki55cfeb32021-03-18 09:01:42 +010045 break;
46 default:
47 switch (port) {
48 case 0:
49 return REG_RGMII_0_CNTRL;
50 case 1:
51 return REG_RGMII_1_CNTRL;
52 case 2:
53 return REG_RGMII_2_CNTRL;
54 default:
55 break;
56 }
57 }
58
59 WARN_ONCE(1, "Unsupported port %d\n", port);
60
61 /* RO fallback reg */
62 return REG_SWITCH_STATUS;
63}
64
Rafał Miłeckiaf30f8e2021-12-29 18:16:42 +010065static u16 bcm_sf2_reg_led_base(struct bcm_sf2_priv *priv, int port)
66{
67 switch (port) {
68 case 0:
69 return REG_LED_0_CNTRL;
70 case 1:
71 return REG_LED_1_CNTRL;
72 case 2:
73 return REG_LED_2_CNTRL;
74 }
75
76 switch (priv->type) {
77 case BCM4908_DEVICE_ID:
78 switch (port) {
79 case 3:
80 return REG_LED_3_CNTRL;
81 case 7:
82 return REG_LED_4_CNTRL;
83 default:
84 break;
85 }
86 break;
87 default:
88 break;
89 }
90
91 WARN_ONCE(1, "Unsupported port %d\n", port);
92
93 /* RO fallback reg */
94 return REG_SWITCH_STATUS;
95}
96
Florian Fainelli2ee3adc2020-09-01 15:59:13 -070097/* Return the number of active ports, not counting the IMP (CPU) port */
98static unsigned int bcm_sf2_num_active_ports(struct dsa_switch *ds)
99{
100 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
101 unsigned int port, count = 0;
102
Florian Fainelli02319bf2021-09-16 14:33:35 -0700103 for (port = 0; port < ds->num_ports; port++) {
Florian Fainelli2ee3adc2020-09-01 15:59:13 -0700104 if (dsa_is_cpu_port(ds, port))
105 continue;
106 if (priv->port_sts[port].enabled)
107 count++;
108 }
109
110 return count;
111}
112
113static void bcm_sf2_recalc_clock(struct dsa_switch *ds)
114{
115 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
116 unsigned long new_rate;
117 unsigned int ports_active;
118 /* Frequenty in Mhz */
Colin Ian Kingd978d6d2020-10-20 17:50:29 +0100119 static const unsigned long rate_table[] = {
Florian Fainelli2ee3adc2020-09-01 15:59:13 -0700120 59220000,
121 60820000,
122 62500000,
123 62500000,
124 };
125
126 ports_active = bcm_sf2_num_active_ports(ds);
127 if (ports_active == 0 || !priv->clk_mdiv)
128 return;
129
130 /* If we overflow our table, just use the recommended operational
131 * frequency
132 */
133 if (ports_active > ARRAY_SIZE(rate_table))
134 new_rate = 90000000;
135 else
136 new_rate = rate_table[ports_active - 1];
137 clk_set_rate(priv->clk_mdiv, new_rate);
138}
139
Florian Fainelliebb2ac42017-01-20 12:36:31 -0800140static void bcm_sf2_imp_setup(struct dsa_switch *ds, int port)
141{
142 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainellic837fc82017-09-03 20:27:03 -0700143 unsigned int i;
Florian Fainelliebb2ac42017-01-20 12:36:31 -0800144 u32 reg, offset;
145
Florian Fainelliebb2ac42017-01-20 12:36:31 -0800146 /* Enable the port memories */
147 reg = core_readl(priv, CORE_MEM_PSM_VDD_CTRL);
148 reg &= ~P_TXQ_PSM_VDD(port);
149 core_writel(priv, reg, CORE_MEM_PSM_VDD_CTRL);
150
Florian Fainelliebb2ac42017-01-20 12:36:31 -0800151 /* Enable forwarding */
152 core_writel(priv, SW_FWDG_EN, CORE_SWMODE);
153
154 /* Enable IMP port in dumb mode */
155 reg = core_readl(priv, CORE_SWITCH_CTRL);
156 reg |= MII_DUMB_FWDG_EN;
157 core_writel(priv, reg, CORE_SWITCH_CTRL);
158
Florian Fainellic837fc82017-09-03 20:27:03 -0700159 /* Configure Traffic Class to QoS mapping, allow each priority to map
160 * to a different queue number
161 */
162 reg = core_readl(priv, CORE_PORT_TC2_QOS_MAP_PORT(port));
163 for (i = 0; i < SF2_NUM_EGRESS_QUEUES; i++)
164 reg |= i << (PRT_TO_QID_SHIFT * i);
165 core_writel(priv, reg, CORE_PORT_TC2_QOS_MAP_PORT(port));
166
Florian Fainellib409a9e2017-09-19 10:46:48 -0700167 b53_brcm_hdr_setup(ds, port);
Florian Fainelli246d7f72014-08-27 17:04:56 -0700168
Florian Fainelli5fc0f212019-10-31 15:54:05 -0700169 if (port == 8) {
Rafał Miłecki73b7a602021-01-06 22:32:02 +0100170 if (priv->type == BCM4908_DEVICE_ID ||
171 priv->type == BCM7445_DEVICE_ID)
Florian Fainelli5fc0f212019-10-31 15:54:05 -0700172 offset = CORE_STS_OVERRIDE_IMP;
173 else
174 offset = CORE_STS_OVERRIDE_IMP2;
175
176 /* Force link status for IMP port */
177 reg = core_readl(priv, offset);
Florian Fainellide34d702020-02-06 11:23:52 -0800178 reg |= (MII_SW_OR | LINK_STS);
Rafał Miłecki8373a0f2021-03-10 13:51:59 +0100179 if (priv->type == BCM4908_DEVICE_ID)
180 reg |= GMII_SPEED_UP_2G;
181 else
182 reg &= ~GMII_SPEED_UP_2G;
Florian Fainelli5fc0f212019-10-31 15:54:05 -0700183 core_writel(priv, reg, offset);
184
185 /* Enable Broadcast, Multicast, Unicast forwarding to IMP port */
186 reg = core_readl(priv, CORE_IMP_CTL);
187 reg |= (RX_BCST_EN | RX_MCST_EN | RX_UCST_EN);
188 reg &= ~(RX_DIS | TX_DIS);
189 core_writel(priv, reg, CORE_IMP_CTL);
190 } else {
191 reg = core_readl(priv, CORE_G_PCTL_PORT(port));
192 reg &= ~(RX_DIS | TX_DIS);
193 core_writel(priv, reg, CORE_G_PCTL_PORT(port));
194 }
Florian Fainelli2ee3adc2020-09-01 15:59:13 -0700195
196 priv->port_sts[port].enabled = true;
Florian Fainelli246d7f72014-08-27 17:04:56 -0700197}
198
Florian Fainellib0836682015-02-05 11:40:41 -0800199static void bcm_sf2_gphy_enable_set(struct dsa_switch *ds, bool enable)
200{
Florian Fainellif4589952016-08-26 12:18:33 -0700201 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainellib0836682015-02-05 11:40:41 -0800202 u32 reg;
203
Florian Fainelli9af197a2015-02-05 11:40:42 -0800204 reg = reg_readl(priv, REG_SPHY_CNTRL);
205 if (enable) {
206 reg |= PHY_RESET;
Florian Fainelli4b52d012017-11-21 17:37:46 -0800207 reg &= ~(EXT_PWR_DOWN | IDDQ_BIAS | IDDQ_GLOBAL_PWR | CK25_DIS);
Florian Fainelli9af197a2015-02-05 11:40:42 -0800208 reg_writel(priv, reg, REG_SPHY_CNTRL);
209 udelay(21);
210 reg = reg_readl(priv, REG_SPHY_CNTRL);
211 reg &= ~PHY_RESET;
212 } else {
213 reg |= EXT_PWR_DOWN | IDDQ_BIAS | PHY_RESET;
214 reg_writel(priv, reg, REG_SPHY_CNTRL);
215 mdelay(1);
216 reg |= CK25_DIS;
217 }
218 reg_writel(priv, reg, REG_SPHY_CNTRL);
Florian Fainellib0836682015-02-05 11:40:41 -0800219
Florian Fainelli9af197a2015-02-05 11:40:42 -0800220 /* Use PHY-driven LED signaling */
221 if (!enable) {
Rafał Miłeckiaf30f8e2021-12-29 18:16:42 +0100222 u16 led_ctrl = bcm_sf2_reg_led_base(priv, 0);
223
224 if (priv->type == BCM7278_DEVICE_ID ||
225 priv->type == BCM7445_DEVICE_ID) {
226 reg = reg_led_readl(priv, led_ctrl, 0);
227 reg |= LED_CNTRL_SPDLNK_SRC_SEL;
228 reg_led_writel(priv, reg, led_ctrl, 0);
229 }
Florian Fainelli9af197a2015-02-05 11:40:42 -0800230 }
Florian Fainellib0836682015-02-05 11:40:41 -0800231}
232
Florian Fainelli8b7c94e2015-10-23 12:11:08 -0700233static inline void bcm_sf2_port_intr_enable(struct bcm_sf2_priv *priv,
234 int port)
235{
236 unsigned int off;
237
238 switch (port) {
239 case 7:
240 off = P7_IRQ_OFF;
241 break;
242 case 0:
243 /* Port 0 interrupts are located on the first bank */
244 intrl2_0_mask_clear(priv, P_IRQ_MASK(P0_IRQ_OFF));
245 return;
246 default:
247 off = P_IRQ_OFF(port);
248 break;
249 }
250
251 intrl2_1_mask_clear(priv, P_IRQ_MASK(off));
252}
253
254static inline void bcm_sf2_port_intr_disable(struct bcm_sf2_priv *priv,
255 int port)
256{
257 unsigned int off;
258
259 switch (port) {
260 case 7:
261 off = P7_IRQ_OFF;
262 break;
263 case 0:
264 /* Port 0 interrupts are located on the first bank */
265 intrl2_0_mask_set(priv, P_IRQ_MASK(P0_IRQ_OFF));
266 intrl2_0_writel(priv, P_IRQ_MASK(P0_IRQ_OFF), INTRL2_CPU_CLEAR);
267 return;
268 default:
269 off = P_IRQ_OFF(port);
270 break;
271 }
272
273 intrl2_1_mask_set(priv, P_IRQ_MASK(off));
274 intrl2_1_writel(priv, P_IRQ_MASK(off), INTRL2_CPU_CLEAR);
275}
276
Florian Fainellib6d045d2014-09-24 17:05:20 -0700277static int bcm_sf2_port_setup(struct dsa_switch *ds, int port,
278 struct phy_device *phy)
Florian Fainelli246d7f72014-08-27 17:04:56 -0700279{
Florian Fainellif4589952016-08-26 12:18:33 -0700280 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainellie1b91472017-01-30 09:48:41 -0800281 unsigned int i;
Florian Fainelli246d7f72014-08-27 17:04:56 -0700282 u32 reg;
283
Vivien Didelot74be4ba2019-08-19 16:00:49 -0400284 if (!dsa_is_user_port(ds, port))
285 return 0;
286
Florian Fainelli2ee3adc2020-09-01 15:59:13 -0700287 priv->port_sts[port].enabled = true;
288
289 bcm_sf2_recalc_clock(ds);
290
Florian Fainelli246d7f72014-08-27 17:04:56 -0700291 /* Clear the memory power down */
292 reg = core_readl(priv, CORE_MEM_PSM_VDD_CTRL);
293 reg &= ~P_TXQ_PSM_VDD(port);
294 core_writel(priv, reg, CORE_MEM_PSM_VDD_CTRL);
295
Florian Fainelli64ff2ae2017-01-20 12:36:32 -0800296 /* Enable Broadcom tags for that port if requested */
Florian Fainellif9b38272021-02-22 14:30:10 -0800297 if (priv->brcm_tag_mask & BIT(port))
Florian Fainellib409a9e2017-09-19 10:46:48 -0700298 b53_brcm_hdr_setup(ds, port);
Florian Fainelli64ff2ae2017-01-20 12:36:32 -0800299
Florian Fainellie1b91472017-01-30 09:48:41 -0800300 /* Configure Traffic Class to QoS mapping, allow each priority to map
301 * to a different queue number
302 */
303 reg = core_readl(priv, CORE_PORT_TC2_QOS_MAP_PORT(port));
Florian Fainelli181183772017-09-03 20:27:02 -0700304 for (i = 0; i < SF2_NUM_EGRESS_QUEUES; i++)
Florian Fainellie1b91472017-01-30 09:48:41 -0800305 reg |= i << (PRT_TO_QID_SHIFT * i);
306 core_writel(priv, reg, CORE_PORT_TC2_QOS_MAP_PORT(port));
307
Florian Fainelli9af197a2015-02-05 11:40:42 -0800308 /* Re-enable the GPHY and re-apply workarounds */
Florian Fainelli8b7c94e2015-10-23 12:11:08 -0700309 if (priv->int_phy_mask & 1 << port && priv->hw_params.num_gphy == 1) {
Florian Fainelli9af197a2015-02-05 11:40:42 -0800310 bcm_sf2_gphy_enable_set(ds, true);
311 if (phy) {
312 /* if phy_stop() has been called before, phy
313 * will be in halted state, and phy_start()
314 * will call resume.
315 *
316 * the resume path does not configure back
317 * autoneg settings, and since we hard reset
318 * the phy manually here, we need to reset the
319 * state machine also.
320 */
321 phy->state = PHY_READY;
322 phy_init_hw(phy);
323 }
324 }
325
Florian Fainelli8b7c94e2015-10-23 12:11:08 -0700326 /* Enable MoCA port interrupts to get notified */
327 if (port == priv->moca_port)
328 bcm_sf2_port_intr_enable(priv, port);
Florian Fainelli246d7f72014-08-27 17:04:56 -0700329
Florian Fainelli32e47ff2017-10-11 10:57:51 -0700330 /* Set per-queue pause threshold to 32 */
331 core_writel(priv, 32, CORE_TXQ_THD_PAUSE_QN_PORT(port));
332
333 /* Set ACB threshold to 24 */
334 for (i = 0; i < SF2_NUM_EGRESS_QUEUES; i++) {
335 reg = acb_readl(priv, ACB_QUEUE_CFG(port *
336 SF2_NUM_EGRESS_QUEUES + i));
337 reg &= ~XOFF_THRESHOLD_MASK;
338 reg |= 24;
339 acb_writel(priv, reg, ACB_QUEUE_CFG(port *
340 SF2_NUM_EGRESS_QUEUES + i));
341 }
342
Florian Fainellif86ad772017-09-19 10:46:54 -0700343 return b53_enable_port(ds, port, phy);
Florian Fainelli246d7f72014-08-27 17:04:56 -0700344}
345
Andrew Lunn75104db2019-02-24 20:44:43 +0100346static void bcm_sf2_port_disable(struct dsa_switch *ds, int port)
Florian Fainelli246d7f72014-08-27 17:04:56 -0700347{
Florian Fainellif4589952016-08-26 12:18:33 -0700348 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Colin Ian King5c17a072018-07-04 07:54:36 +0100349 u32 reg;
Florian Fainelli246d7f72014-08-27 17:04:56 -0700350
Florian Fainellic0e68202018-08-03 11:08:42 -0700351 /* Disable learning while in WoL mode */
352 if (priv->wol_ports_mask & (1 << port)) {
353 reg = core_readl(priv, CORE_DIS_LEARN);
354 reg |= BIT(port);
355 core_writel(priv, reg, CORE_DIS_LEARN);
Florian Fainelli96e65d72014-09-18 17:31:25 -0700356 return;
Florian Fainellic0e68202018-08-03 11:08:42 -0700357 }
Florian Fainelli96e65d72014-09-18 17:31:25 -0700358
Florian Fainelli8b7c94e2015-10-23 12:11:08 -0700359 if (port == priv->moca_port)
360 bcm_sf2_port_intr_disable(priv, port);
Florian Fainellib6d045d2014-09-24 17:05:20 -0700361
Florian Fainelli8b7c94e2015-10-23 12:11:08 -0700362 if (priv->int_phy_mask & 1 << port && priv->hw_params.num_gphy == 1)
Florian Fainelli9af197a2015-02-05 11:40:42 -0800363 bcm_sf2_gphy_enable_set(ds, false);
364
Andrew Lunn75104db2019-02-24 20:44:43 +0100365 b53_disable_port(ds, port);
Florian Fainelli246d7f72014-08-27 17:04:56 -0700366
367 /* Power down the port memory */
368 reg = core_readl(priv, CORE_MEM_PSM_VDD_CTRL);
369 reg |= P_TXQ_PSM_VDD(port);
370 core_writel(priv, reg, CORE_MEM_PSM_VDD_CTRL);
Florian Fainelli2ee3adc2020-09-01 15:59:13 -0700371
372 priv->port_sts[port].enabled = false;
373
374 bcm_sf2_recalc_clock(ds);
Florian Fainelli246d7f72014-08-27 17:04:56 -0700375}
376
Florian Fainelli450b05c2014-09-24 17:05:22 -0700377
Florian Fainelli461cd1b02016-06-07 16:32:43 -0700378static int bcm_sf2_sw_indir_rw(struct bcm_sf2_priv *priv, int op, int addr,
379 int regnum, u16 val)
380{
381 int ret = 0;
382 u32 reg;
383
384 reg = reg_readl(priv, REG_SWITCH_CNTRL);
385 reg |= MDIO_MASTER_SEL;
386 reg_writel(priv, reg, REG_SWITCH_CNTRL);
387
388 /* Page << 8 | offset */
389 reg = 0x70;
390 reg <<= 2;
391 core_writel(priv, addr, reg);
392
393 /* Page << 8 | offset */
394 reg = 0x80 << 8 | regnum << 1;
395 reg <<= 2;
396
397 if (op)
398 ret = core_readl(priv, reg);
399 else
400 core_writel(priv, val, reg);
401
402 reg = reg_readl(priv, REG_SWITCH_CNTRL);
403 reg &= ~MDIO_MASTER_SEL;
404 reg_writel(priv, reg, REG_SWITCH_CNTRL);
405
406 return ret & 0xffff;
407}
408
409static int bcm_sf2_sw_mdio_read(struct mii_bus *bus, int addr, int regnum)
410{
411 struct bcm_sf2_priv *priv = bus->priv;
412
413 /* Intercept reads from Broadcom pseudo-PHY address, else, send
414 * them to our master MDIO bus controller
415 */
416 if (addr == BRCM_PSEUDO_PHY_ADDR && priv->indir_phy_mask & BIT(addr))
417 return bcm_sf2_sw_indir_rw(priv, 1, addr, regnum, 0);
418 else
Florian Fainelli2cfe8f822017-01-07 21:01:57 -0800419 return mdiobus_read_nested(priv->master_mii_bus, addr, regnum);
Florian Fainelli461cd1b02016-06-07 16:32:43 -0700420}
421
422static int bcm_sf2_sw_mdio_write(struct mii_bus *bus, int addr, int regnum,
423 u16 val)
424{
425 struct bcm_sf2_priv *priv = bus->priv;
426
427 /* Intercept writes to the Broadcom pseudo-PHY address, else,
428 * send them to our master MDIO bus controller
429 */
430 if (addr == BRCM_PSEUDO_PHY_ADDR && priv->indir_phy_mask & BIT(addr))
Kangjie Lue49505f2018-12-25 22:08:18 -0600431 return bcm_sf2_sw_indir_rw(priv, 0, addr, regnum, val);
Florian Fainelli461cd1b02016-06-07 16:32:43 -0700432 else
Kangjie Lue49505f2018-12-25 22:08:18 -0600433 return mdiobus_write_nested(priv->master_mii_bus, addr,
434 regnum, val);
Florian Fainelli461cd1b02016-06-07 16:32:43 -0700435}
436
Florian Fainelli246d7f72014-08-27 17:04:56 -0700437static irqreturn_t bcm_sf2_switch_0_isr(int irq, void *dev_id)
438{
Florian Fainellibc0cb652018-05-10 13:17:33 -0700439 struct dsa_switch *ds = dev_id;
440 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainelli246d7f72014-08-27 17:04:56 -0700441
442 priv->irq0_stat = intrl2_0_readl(priv, INTRL2_CPU_STATUS) &
443 ~priv->irq0_mask;
444 intrl2_0_writel(priv, priv->irq0_stat, INTRL2_CPU_CLEAR);
445
446 return IRQ_HANDLED;
447}
448
449static irqreturn_t bcm_sf2_switch_1_isr(int irq, void *dev_id)
450{
Florian Fainellibc0cb652018-05-10 13:17:33 -0700451 struct dsa_switch *ds = dev_id;
452 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainelli246d7f72014-08-27 17:04:56 -0700453
454 priv->irq1_stat = intrl2_1_readl(priv, INTRL2_CPU_STATUS) &
455 ~priv->irq1_mask;
456 intrl2_1_writel(priv, priv->irq1_stat, INTRL2_CPU_CLEAR);
457
Florian Fainellibc0cb652018-05-10 13:17:33 -0700458 if (priv->irq1_stat & P_LINK_UP_IRQ(P7_IRQ_OFF)) {
459 priv->port_sts[7].link = true;
460 dsa_port_phylink_mac_change(ds, 7, true);
461 }
462 if (priv->irq1_stat & P_LINK_DOWN_IRQ(P7_IRQ_OFF)) {
463 priv->port_sts[7].link = false;
464 dsa_port_phylink_mac_change(ds, 7, false);
465 }
Florian Fainelli246d7f72014-08-27 17:04:56 -0700466
467 return IRQ_HANDLED;
468}
469
Florian Fainelli33f84612014-11-25 18:08:49 -0800470static int bcm_sf2_sw_rst(struct bcm_sf2_priv *priv)
471{
472 unsigned int timeout = 1000;
473 u32 reg;
Florian Fainellieee87e42019-11-04 13:51:39 -0800474 int ret;
475
476 /* The watchdog reset does not work on 7278, we need to hit the
477 * "external" reset line through the reset controller.
478 */
Philipp Zabelbf9279c2021-03-05 10:14:48 +0100479 if (priv->type == BCM7278_DEVICE_ID) {
Florian Fainellieee87e42019-11-04 13:51:39 -0800480 ret = reset_control_assert(priv->rcdev);
481 if (ret)
482 return ret;
483
484 return reset_control_deassert(priv->rcdev);
485 }
Florian Fainelli33f84612014-11-25 18:08:49 -0800486
487 reg = core_readl(priv, CORE_WATCHDOG_CTRL);
488 reg |= SOFTWARE_RESET | EN_CHIP_RST | EN_SW_RESET;
489 core_writel(priv, reg, CORE_WATCHDOG_CTRL);
490
491 do {
492 reg = core_readl(priv, CORE_WATCHDOG_CTRL);
493 if (!(reg & SOFTWARE_RESET))
494 break;
495
496 usleep_range(1000, 2000);
497 } while (timeout-- > 0);
498
499 if (timeout == 0)
500 return -ETIMEDOUT;
501
502 return 0;
503}
504
Rafał Miłeckia9349f02021-03-12 11:41:08 +0100505static void bcm_sf2_crossbar_setup(struct bcm_sf2_priv *priv)
506{
507 struct device *dev = priv->dev->ds->dev;
508 int shift;
509 u32 mask;
510 u32 reg;
511 int i;
512
513 mask = BIT(priv->num_crossbar_int_ports) - 1;
514
515 reg = reg_readl(priv, REG_CROSSBAR);
516 switch (priv->type) {
517 case BCM4908_DEVICE_ID:
518 shift = CROSSBAR_BCM4908_INT_P7 * priv->num_crossbar_int_ports;
519 reg &= ~(mask << shift);
520 if (0) /* FIXME */
521 reg |= CROSSBAR_BCM4908_EXT_SERDES << shift;
522 else if (priv->int_phy_mask & BIT(7))
523 reg |= CROSSBAR_BCM4908_EXT_GPHY4 << shift;
524 else if (phy_interface_mode_is_rgmii(priv->port_sts[7].mode))
525 reg |= CROSSBAR_BCM4908_EXT_RGMII << shift;
526 else if (WARN(1, "Invalid port mode\n"))
527 return;
528 break;
529 default:
530 return;
531 }
532 reg_writel(priv, reg, REG_CROSSBAR);
533
534 reg = reg_readl(priv, REG_CROSSBAR);
535 for (i = 0; i < priv->num_crossbar_int_ports; i++) {
536 shift = i * priv->num_crossbar_int_ports;
537
538 dev_dbg(dev, "crossbar int port #%d - ext port #%d\n", i,
539 (reg >> shift) & mask);
540 }
541}
542
Florian Fainelli691c9a82015-01-20 16:42:00 -0800543static void bcm_sf2_intr_disable(struct bcm_sf2_priv *priv)
544{
Florian Fainellif01d5982016-08-25 15:23:41 -0700545 intrl2_0_mask_set(priv, 0xffffffff);
Florian Fainelli691c9a82015-01-20 16:42:00 -0800546 intrl2_0_writel(priv, 0xffffffff, INTRL2_CPU_CLEAR);
Florian Fainellif01d5982016-08-25 15:23:41 -0700547 intrl2_1_mask_set(priv, 0xffffffff);
Florian Fainelli691c9a82015-01-20 16:42:00 -0800548 intrl2_1_writel(priv, 0xffffffff, INTRL2_CPU_CLEAR);
Florian Fainelli691c9a82015-01-20 16:42:00 -0800549}
550
Florian Fainelli8b7c94e2015-10-23 12:11:08 -0700551static void bcm_sf2_identify_ports(struct bcm_sf2_priv *priv,
552 struct device_node *dn)
553{
Rafał Miłecki01488a02021-03-12 11:41:07 +0100554 struct device *dev = priv->dev->ds->dev;
555 struct bcm_sf2_port_status *port_st;
Florian Fainelli8b7c94e2015-10-23 12:11:08 -0700556 struct device_node *port;
Florian Fainelli8b7c94e2015-10-23 12:11:08 -0700557 unsigned int port_num;
Florian Fainelli8c280442020-09-22 13:03:55 -0700558 struct property *prop;
Andrew Lunn0c65b2b2019-11-04 02:40:33 +0100559 int err;
Florian Fainelli8b7c94e2015-10-23 12:11:08 -0700560
561 priv->moca_port = -1;
562
563 for_each_available_child_of_node(dn, port) {
564 if (of_property_read_u32(port, "reg", &port_num))
565 continue;
566
Rafał Miłecki01488a02021-03-12 11:41:07 +0100567 if (port_num >= DSA_MAX_PORTS) {
568 dev_err(dev, "Invalid port number %d\n", port_num);
569 continue;
570 }
571
572 port_st = &priv->port_sts[port_num];
573
Florian Fainelli8b7c94e2015-10-23 12:11:08 -0700574 /* Internal PHYs get assigned a specific 'phy-mode' property
575 * value: "internal" to help flag them before MDIO probing
576 * has completed, since they might be turned off at that
577 * time
578 */
Rafał Miłecki01488a02021-03-12 11:41:07 +0100579 err = of_get_phy_mode(port, &port_st->mode);
Andrew Lunn0c65b2b2019-11-04 02:40:33 +0100580 if (err)
Florian Fainellibedd00c2017-06-23 10:33:16 -0700581 continue;
Florian Fainelli8b7c94e2015-10-23 12:11:08 -0700582
Rafał Miłecki01488a02021-03-12 11:41:07 +0100583 if (port_st->mode == PHY_INTERFACE_MODE_INTERNAL)
Florian Fainellibedd00c2017-06-23 10:33:16 -0700584 priv->int_phy_mask |= 1 << port_num;
Florian Fainelli8b7c94e2015-10-23 12:11:08 -0700585
Rafał Miłecki01488a02021-03-12 11:41:07 +0100586 if (port_st->mode == PHY_INTERFACE_MODE_MOCA)
Florian Fainelli8b7c94e2015-10-23 12:11:08 -0700587 priv->moca_port = port_num;
Florian Fainelli64ff2ae2017-01-20 12:36:32 -0800588
589 if (of_property_read_bool(port, "brcm,use-bcm-hdr"))
590 priv->brcm_tag_mask |= 1 << port_num;
Florian Fainelli8c280442020-09-22 13:03:55 -0700591
592 /* Ensure that port 5 is not picked up as a DSA CPU port
593 * flavour but a regular port instead. We should be using
594 * devlink to be able to set the port flavour.
595 */
596 if (port_num == 5 && priv->type == BCM7278_DEVICE_ID) {
597 prop = of_find_property(port, "ethernet", NULL);
598 if (prop)
599 of_remove_property(port, prop);
600 }
Florian Fainelli8b7c94e2015-10-23 12:11:08 -0700601 }
602}
603
Florian Fainelli461cd1b02016-06-07 16:32:43 -0700604static int bcm_sf2_mdio_register(struct dsa_switch *ds)
605{
Florian Fainellif4589952016-08-26 12:18:33 -0700606 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainelli771089c2020-09-04 14:37:30 -0700607 struct device_node *dn, *child;
608 struct phy_device *phydev;
609 struct property *prop;
Florian Fainelli461cd1b02016-06-07 16:32:43 -0700610 static int index;
Florian Fainelli771089c2020-09-04 14:37:30 -0700611 int err, reg;
Florian Fainelli461cd1b02016-06-07 16:32:43 -0700612
613 /* Find our integrated MDIO bus node */
614 dn = of_find_compatible_node(NULL, NULL, "brcm,unimac-mdio");
615 priv->master_mii_bus = of_mdio_find_bus(dn);
Pan Biancf3c4662021-01-21 04:33:43 -0800616 if (!priv->master_mii_bus) {
617 of_node_put(dn);
Florian Fainelli461cd1b02016-06-07 16:32:43 -0700618 return -EPROBE_DEFER;
Pan Biancf3c4662021-01-21 04:33:43 -0800619 }
Florian Fainelli461cd1b02016-06-07 16:32:43 -0700620
621 get_device(&priv->master_mii_bus->dev);
622 priv->master_mii_dn = dn;
623
624 priv->slave_mii_bus = devm_mdiobus_alloc(ds->dev);
Pan Biancf3c4662021-01-21 04:33:43 -0800625 if (!priv->slave_mii_bus) {
626 of_node_put(dn);
Florian Fainelli461cd1b02016-06-07 16:32:43 -0700627 return -ENOMEM;
Pan Biancf3c4662021-01-21 04:33:43 -0800628 }
Florian Fainelli461cd1b02016-06-07 16:32:43 -0700629
630 priv->slave_mii_bus->priv = priv;
631 priv->slave_mii_bus->name = "sf2 slave mii";
632 priv->slave_mii_bus->read = bcm_sf2_sw_mdio_read;
633 priv->slave_mii_bus->write = bcm_sf2_sw_mdio_write;
634 snprintf(priv->slave_mii_bus->id, MII_BUS_ID_SIZE, "sf2-%d",
635 index++);
636 priv->slave_mii_bus->dev.of_node = dn;
637
638 /* Include the pseudo-PHY address to divert reads towards our
639 * workaround. This is only required for 7445D0, since 7445E0
640 * disconnects the internal switch pseudo-PHY such that we can use the
641 * regular SWITCH_MDIO master controller instead.
642 *
643 * Here we flag the pseudo PHY as needing special treatment and would
644 * otherwise make all other PHY read/writes go to the master MDIO bus
645 * controller that comes with this switch backed by the "mdio-unimac"
646 * driver.
647 */
648 if (of_machine_is_compatible("brcm,bcm7445d0"))
Florian Fainelli0fa45ee2020-09-22 13:03:56 -0700649 priv->indir_phy_mask |= (1 << BRCM_PSEUDO_PHY_ADDR) | (1 << 0);
Florian Fainelli461cd1b02016-06-07 16:32:43 -0700650 else
651 priv->indir_phy_mask = 0;
652
653 ds->phys_mii_mask = priv->indir_phy_mask;
654 ds->slave_mii_bus = priv->slave_mii_bus;
655 priv->slave_mii_bus->parent = ds->dev->parent;
656 priv->slave_mii_bus->phy_mask = ~priv->indir_phy_mask;
657
Florian Fainelli771089c2020-09-04 14:37:30 -0700658 /* We need to make sure that of_phy_connect() will not work by
659 * removing the 'phandle' and 'linux,phandle' properties and
660 * unregister the existing PHY device that was already registered.
661 */
662 for_each_available_child_of_node(dn, child) {
663 if (of_property_read_u32(child, "reg", &reg) ||
664 reg >= PHY_MAX_ADDR)
665 continue;
666
667 if (!(priv->indir_phy_mask & BIT(reg)))
668 continue;
669
670 prop = of_find_property(child, "phandle", NULL);
671 if (prop)
672 of_remove_property(child, prop);
673
674 prop = of_find_property(child, "linux,phandle", NULL);
675 if (prop)
676 of_remove_property(child, prop);
677
678 phydev = of_phy_find_device(child);
679 if (phydev)
680 phy_device_remove(phydev);
681 }
682
Florian Fainelli536fab52020-04-04 14:35:17 -0700683 err = mdiobus_register(priv->slave_mii_bus);
Florian Fainelli00e798c2018-05-15 16:56:19 -0700684 if (err && dn)
Florian Fainelli461cd1b02016-06-07 16:32:43 -0700685 of_node_put(dn);
686
687 return err;
688}
689
690static void bcm_sf2_mdio_unregister(struct bcm_sf2_priv *priv)
691{
692 mdiobus_unregister(priv->slave_mii_bus);
zhong jiang1ddc5d32018-09-16 21:22:31 +0800693 of_node_put(priv->master_mii_dn);
Florian Fainelli461cd1b02016-06-07 16:32:43 -0700694}
695
Florian Fainelliaa9aef72014-09-19 13:07:55 -0700696static u32 bcm_sf2_sw_get_phy_flags(struct dsa_switch *ds, int port)
697{
Florian Fainellif4589952016-08-26 12:18:33 -0700698 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainelliaa9aef72014-09-19 13:07:55 -0700699
700 /* The BCM7xxx PHY driver expects to find the integrated PHY revision
701 * in bits 15:8 and the patch level in bits 7:0 which is exactly what
702 * the REG_PHY_REVISION register layout is.
703 */
Florian Fainelli47142ed2021-03-10 14:17:58 -0800704 if (priv->int_phy_mask & BIT(port))
705 return priv->hw_params.gphy_rev;
706 else
Florian Fainelli4972ce72021-09-20 14:54:18 -0700707 return PHY_BRCM_AUTO_PWRDWN_ENABLE |
708 PHY_BRCM_DIS_TXCRXC_NOENRGY |
709 PHY_BRCM_IDDQ_SUSPEND;
Florian Fainelliaa9aef72014-09-19 13:07:55 -0700710}
711
Florian Fainellibc0cb652018-05-10 13:17:33 -0700712static void bcm_sf2_sw_validate(struct dsa_switch *ds, int port,
713 unsigned long *supported,
714 struct phylink_link_state *state)
715{
Florian Fainelli738a2e42019-08-21 17:07:46 -0700716 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainellibc0cb652018-05-10 13:17:33 -0700717 __ETHTOOL_DECLARE_LINK_MODE_MASK(mask) = { 0, };
718
719 if (!phy_interface_mode_is_rgmii(state->interface) &&
720 state->interface != PHY_INTERFACE_MODE_MII &&
721 state->interface != PHY_INTERFACE_MODE_REVMII &&
722 state->interface != PHY_INTERFACE_MODE_GMII &&
723 state->interface != PHY_INTERFACE_MODE_INTERNAL &&
724 state->interface != PHY_INTERFACE_MODE_MOCA) {
Sean Anderson49730562021-10-22 18:41:04 -0400725 linkmode_zero(supported);
Florian Fainelli738a2e42019-08-21 17:07:46 -0700726 if (port != core_readl(priv, CORE_IMP0_PRT_ID))
727 dev_err(ds->dev,
728 "Unsupported interface: %d for port %d\n",
729 state->interface, port);
Florian Fainellibc0cb652018-05-10 13:17:33 -0700730 return;
731 }
732
733 /* Allow all the expected bits */
734 phylink_set(mask, Autoneg);
735 phylink_set_port_modes(mask);
736 phylink_set(mask, Pause);
737 phylink_set(mask, Asym_Pause);
738
739 /* With the exclusion of MII and Reverse MII, we support Gigabit,
740 * including Half duplex
741 */
742 if (state->interface != PHY_INTERFACE_MODE_MII &&
743 state->interface != PHY_INTERFACE_MODE_REVMII) {
744 phylink_set(mask, 1000baseT_Full);
745 phylink_set(mask, 1000baseT_Half);
746 }
747
748 phylink_set(mask, 10baseT_Half);
749 phylink_set(mask, 10baseT_Full);
750 phylink_set(mask, 100baseT_Half);
751 phylink_set(mask, 100baseT_Full);
752
Sean Anderson49730562021-10-22 18:41:04 -0400753 linkmode_and(supported, supported, mask);
754 linkmode_and(state->advertising, state->advertising, mask);
Florian Fainellibc0cb652018-05-10 13:17:33 -0700755}
756
757static void bcm_sf2_sw_mac_config(struct dsa_switch *ds, int port,
758 unsigned int mode,
759 const struct phylink_link_state *state)
760{
761 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
762 u32 id_mode_dis = 0, port_mode;
Rafał Miłecki55cfeb32021-03-18 09:01:42 +0100763 u32 reg_rgmii_ctrl;
Russell King50cc20202020-06-30 11:28:13 +0100764 u32 reg;
Florian Fainellibc0cb652018-05-10 13:17:33 -0700765
Florian Fainelli738a2e42019-08-21 17:07:46 -0700766 if (port == core_readl(priv, CORE_IMP0_PRT_ID))
767 return;
768
Florian Fainellibc0cb652018-05-10 13:17:33 -0700769 switch (state->interface) {
770 case PHY_INTERFACE_MODE_RGMII:
771 id_mode_dis = 1;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -0500772 fallthrough;
Florian Fainellibc0cb652018-05-10 13:17:33 -0700773 case PHY_INTERFACE_MODE_RGMII_TXID:
774 port_mode = EXT_GPHY;
775 break;
776 case PHY_INTERFACE_MODE_MII:
777 port_mode = EXT_EPHY;
778 break;
779 case PHY_INTERFACE_MODE_REVMII:
780 port_mode = EXT_REVMII;
781 break;
782 default:
Russell King50cc20202020-06-30 11:28:13 +0100783 /* Nothing required for all other PHYs: internal and MoCA */
784 return;
Florian Fainellibc0cb652018-05-10 13:17:33 -0700785 }
786
Rafał Miłecki55cfeb32021-03-18 09:01:42 +0100787 reg_rgmii_ctrl = bcm_sf2_reg_rgmii_cntrl(priv, port);
788
Florian Fainellibc0cb652018-05-10 13:17:33 -0700789 /* Clear id_mode_dis bit, and the existing port mode, let
790 * RGMII_MODE_EN bet set by mac_link_{up,down}
791 */
Rafał Miłecki55cfeb32021-03-18 09:01:42 +0100792 reg = reg_readl(priv, reg_rgmii_ctrl);
Florian Fainellibc0cb652018-05-10 13:17:33 -0700793 reg &= ~ID_MODE_DIS;
794 reg &= ~(PORT_MODE_MASK << PORT_MODE_SHIFT);
Florian Fainellibc0cb652018-05-10 13:17:33 -0700795
796 reg |= port_mode;
797 if (id_mode_dis)
798 reg |= ID_MODE_DIS;
799
Rafał Miłecki55cfeb32021-03-18 09:01:42 +0100800 reg_writel(priv, reg, reg_rgmii_ctrl);
Florian Fainellibc0cb652018-05-10 13:17:33 -0700801}
802
803static void bcm_sf2_sw_mac_link_set(struct dsa_switch *ds, int port,
804 phy_interface_t interface, bool link)
805{
806 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Rafał Miłecki55cfeb32021-03-18 09:01:42 +0100807 u32 reg_rgmii_ctrl;
Florian Fainellibc0cb652018-05-10 13:17:33 -0700808 u32 reg;
809
810 if (!phy_interface_mode_is_rgmii(interface) &&
811 interface != PHY_INTERFACE_MODE_MII &&
812 interface != PHY_INTERFACE_MODE_REVMII)
813 return;
814
Rafał Miłecki55cfeb32021-03-18 09:01:42 +0100815 reg_rgmii_ctrl = bcm_sf2_reg_rgmii_cntrl(priv, port);
816
Florian Fainellibc0cb652018-05-10 13:17:33 -0700817 /* If the link is down, just disable the interface to conserve power */
Rafał Miłecki55cfeb32021-03-18 09:01:42 +0100818 reg = reg_readl(priv, reg_rgmii_ctrl);
Florian Fainellibc0cb652018-05-10 13:17:33 -0700819 if (link)
820 reg |= RGMII_MODE_EN;
821 else
822 reg &= ~RGMII_MODE_EN;
Rafał Miłecki55cfeb32021-03-18 09:01:42 +0100823 reg_writel(priv, reg, reg_rgmii_ctrl);
Florian Fainellibc0cb652018-05-10 13:17:33 -0700824}
825
826static void bcm_sf2_sw_mac_link_down(struct dsa_switch *ds, int port,
827 unsigned int mode,
828 phy_interface_t interface)
829{
Russell King2d1f90f2020-06-30 11:28:08 +0100830 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
831 u32 reg, offset;
832
833 if (port != core_readl(priv, CORE_IMP0_PRT_ID)) {
Rafał Miłecki73b7a602021-01-06 22:32:02 +0100834 if (priv->type == BCM4908_DEVICE_ID ||
835 priv->type == BCM7445_DEVICE_ID)
Russell King2d1f90f2020-06-30 11:28:08 +0100836 offset = CORE_STS_OVERRIDE_GMIIP_PORT(port);
837 else
838 offset = CORE_STS_OVERRIDE_GMIIP2_PORT(port);
839
840 reg = core_readl(priv, offset);
841 reg &= ~LINK_STS;
842 core_writel(priv, reg, offset);
843 }
844
Florian Fainellibc0cb652018-05-10 13:17:33 -0700845 bcm_sf2_sw_mac_link_set(ds, port, interface, false);
846}
847
848static void bcm_sf2_sw_mac_link_up(struct dsa_switch *ds, int port,
849 unsigned int mode,
850 phy_interface_t interface,
Russell King5b502a72020-02-26 10:23:46 +0000851 struct phy_device *phydev,
852 int speed, int duplex,
853 bool tx_pause, bool rx_pause)
Florian Fainellibc0cb652018-05-10 13:17:33 -0700854{
855 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
856 struct ethtool_eee *p = &priv->dev->ports[port].eee;
857
858 bcm_sf2_sw_mac_link_set(ds, port, interface, true);
859
Russell King2d1f90f2020-06-30 11:28:08 +0100860 if (port != core_readl(priv, CORE_IMP0_PRT_ID)) {
Florian Fainellifc516d32021-05-21 10:46:14 -0700861 u32 reg_rgmii_ctrl = 0;
Rafał Miłecki55cfeb32021-03-18 09:01:42 +0100862 u32 reg, offset;
863
Rafał Miłecki73b7a602021-01-06 22:32:02 +0100864 if (priv->type == BCM4908_DEVICE_ID ||
865 priv->type == BCM7445_DEVICE_ID)
Russell King2d1f90f2020-06-30 11:28:08 +0100866 offset = CORE_STS_OVERRIDE_GMIIP_PORT(port);
867 else
868 offset = CORE_STS_OVERRIDE_GMIIP2_PORT(port);
869
Russell King981015a2020-06-30 11:28:18 +0100870 if (interface == PHY_INTERFACE_MODE_RGMII ||
871 interface == PHY_INTERFACE_MODE_RGMII_TXID ||
872 interface == PHY_INTERFACE_MODE_MII ||
873 interface == PHY_INTERFACE_MODE_REVMII) {
Florian Fainellifc516d32021-05-21 10:46:14 -0700874 reg_rgmii_ctrl = bcm_sf2_reg_rgmii_cntrl(priv, port);
Rafał Miłecki55cfeb32021-03-18 09:01:42 +0100875 reg = reg_readl(priv, reg_rgmii_ctrl);
Russell King981015a2020-06-30 11:28:18 +0100876 reg &= ~(RX_PAUSE_EN | TX_PAUSE_EN);
877
878 if (tx_pause)
879 reg |= TX_PAUSE_EN;
880 if (rx_pause)
881 reg |= RX_PAUSE_EN;
882
Rafał Miłecki55cfeb32021-03-18 09:01:42 +0100883 reg_writel(priv, reg, reg_rgmii_ctrl);
Russell King981015a2020-06-30 11:28:18 +0100884 }
885
Russell King50cc20202020-06-30 11:28:13 +0100886 reg = SW_OVERRIDE | LINK_STS;
887 switch (speed) {
888 case SPEED_1000:
889 reg |= SPDSTS_1000 << SPEED_SHIFT;
890 break;
891 case SPEED_100:
892 reg |= SPDSTS_100 << SPEED_SHIFT;
893 break;
894 }
895
896 if (duplex == DUPLEX_FULL)
897 reg |= DUPLX_MODE;
898
Russell King2d1f90f2020-06-30 11:28:08 +0100899 core_writel(priv, reg, offset);
900 }
901
Florian Fainellibc0cb652018-05-10 13:17:33 -0700902 if (mode == MLO_AN_PHY && phydev)
903 p->eee_enabled = b53_eee_init(ds, port, phydev);
904}
905
906static void bcm_sf2_sw_fixed_state(struct dsa_switch *ds, int port,
907 struct phylink_link_state *status)
908{
909 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
910
911 status->link = false;
912
913 /* MoCA port is special as we do not get link status from CORE_LNKSTS,
914 * which means that we need to force the link at the port override
915 * level to get the data to flow. We do use what the interrupt handler
916 * did determine before.
917 *
918 * For the other ports, we just force the link status, since this is
919 * a fixed PHY device.
920 */
921 if (port == priv->moca_port) {
922 status->link = priv->port_sts[port].link;
923 /* For MoCA interfaces, also force a link down notification
924 * since some version of the user-space daemon (mocad) use
925 * cmd->autoneg to force the link, which messes up the PHY
926 * state machine and make it go in PHY_FORCING state instead.
927 */
928 if (!status->link)
Vivien Didelot68bb8ea2019-10-21 16:51:15 -0400929 netif_carrier_off(dsa_to_port(ds, port)->slave);
Florian Fainellibc0cb652018-05-10 13:17:33 -0700930 status->duplex = DUPLEX_FULL;
931 } else {
932 status->link = true;
933 }
934}
935
Florian Fainelli32e47ff2017-10-11 10:57:51 -0700936static void bcm_sf2_enable_acb(struct dsa_switch *ds)
937{
938 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
939 u32 reg;
940
941 /* Enable ACB globally */
942 reg = acb_readl(priv, ACB_CONTROL);
943 reg |= (ACB_FLUSH_MASK << ACB_FLUSH_SHIFT);
944 acb_writel(priv, reg, ACB_CONTROL);
945 reg &= ~(ACB_FLUSH_MASK << ACB_FLUSH_SHIFT);
946 reg |= ACB_EN | ACB_ALGORITHM;
947 acb_writel(priv, reg, ACB_CONTROL);
948}
949
Florian Fainelli8cfa9492014-09-18 17:31:23 -0700950static int bcm_sf2_sw_suspend(struct dsa_switch *ds)
951{
Florian Fainellif4589952016-08-26 12:18:33 -0700952 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainelli8cfa9492014-09-18 17:31:23 -0700953 unsigned int port;
954
Florian Fainelli691c9a82015-01-20 16:42:00 -0800955 bcm_sf2_intr_disable(priv);
Florian Fainelli8cfa9492014-09-18 17:31:23 -0700956
957 /* Disable all ports physically present including the IMP
958 * port, the other ones have already been disabled during
959 * bcm_sf2_sw_setup
960 */
Dan Carpenter8d6ea932019-02-13 11:23:04 +0300961 for (port = 0; port < ds->num_ports; port++) {
Vivien Didelot4a5b85f2017-10-26 11:22:55 -0400962 if (dsa_is_user_port(ds, port) || dsa_is_cpu_port(ds, port))
Andrew Lunn75104db2019-02-24 20:44:43 +0100963 bcm_sf2_port_disable(ds, port);
Florian Fainelli8cfa9492014-09-18 17:31:23 -0700964 }
965
Florian Fainellie9ec5c32020-09-01 15:59:12 -0700966 if (!priv->wol_ports_mask)
967 clk_disable_unprepare(priv->clk);
968
Florian Fainelli8cfa9492014-09-18 17:31:23 -0700969 return 0;
970}
971
Florian Fainelli8cfa9492014-09-18 17:31:23 -0700972static int bcm_sf2_sw_resume(struct dsa_switch *ds)
973{
Florian Fainellif4589952016-08-26 12:18:33 -0700974 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainelli8cfa9492014-09-18 17:31:23 -0700975 int ret;
976
Florian Fainellie9ec5c32020-09-01 15:59:12 -0700977 if (!priv->wol_ports_mask)
978 clk_prepare_enable(priv->clk);
979
Florian Fainelli8cfa9492014-09-18 17:31:23 -0700980 ret = bcm_sf2_sw_rst(priv);
981 if (ret) {
982 pr_err("%s: failed to software reset switch\n", __func__);
983 return ret;
984 }
985
Rafał Miłeckia9349f02021-03-12 11:41:08 +0100986 bcm_sf2_crossbar_setup(priv);
987
Florian Fainelli1c0130f2018-11-06 12:58:39 -0800988 ret = bcm_sf2_cfp_resume(ds);
989 if (ret)
990 return ret;
991
Florian Fainellib0836682015-02-05 11:40:41 -0800992 if (priv->hw_params.num_gphy == 1)
993 bcm_sf2_gphy_enable_set(ds, true);
Florian Fainelli8cfa9492014-09-18 17:31:23 -0700994
Florian Fainelliabd01ba2018-10-09 16:48:58 -0700995 ds->ops->setup(ds);
Florian Fainelli32e47ff2017-10-11 10:57:51 -0700996
Florian Fainelli8cfa9492014-09-18 17:31:23 -0700997 return 0;
998}
999
Florian Fainelli96e65d72014-09-18 17:31:25 -07001000static void bcm_sf2_sw_get_wol(struct dsa_switch *ds, int port,
1001 struct ethtool_wolinfo *wol)
1002{
Vivien Didelot68bb8ea2019-10-21 16:51:15 -04001003 struct net_device *p = dsa_to_port(ds, port)->cpu_dp->master;
Florian Fainellif4589952016-08-26 12:18:33 -07001004 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainellic3152ec2019-02-15 12:16:52 -08001005 struct ethtool_wolinfo pwol = { };
Florian Fainelli96e65d72014-09-18 17:31:25 -07001006
1007 /* Get the parent device WoL settings */
Florian Fainellic3152ec2019-02-15 12:16:52 -08001008 if (p->ethtool_ops->get_wol)
1009 p->ethtool_ops->get_wol(p, &pwol);
Florian Fainelli96e65d72014-09-18 17:31:25 -07001010
1011 /* Advertise the parent device supported settings */
1012 wol->supported = pwol.supported;
1013 memset(&wol->sopass, 0, sizeof(wol->sopass));
1014
1015 if (pwol.wolopts & WAKE_MAGICSECURE)
1016 memcpy(&wol->sopass, pwol.sopass, sizeof(wol->sopass));
1017
1018 if (priv->wol_ports_mask & (1 << port))
1019 wol->wolopts = pwol.wolopts;
1020 else
1021 wol->wolopts = 0;
1022}
1023
1024static int bcm_sf2_sw_set_wol(struct dsa_switch *ds, int port,
1025 struct ethtool_wolinfo *wol)
1026{
Vivien Didelot68bb8ea2019-10-21 16:51:15 -04001027 struct net_device *p = dsa_to_port(ds, port)->cpu_dp->master;
Florian Fainellif4589952016-08-26 12:18:33 -07001028 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Vivien Didelot68bb8ea2019-10-21 16:51:15 -04001029 s8 cpu_port = dsa_to_port(ds, port)->cpu_dp->index;
Florian Fainellic3152ec2019-02-15 12:16:52 -08001030 struct ethtool_wolinfo pwol = { };
Florian Fainelli96e65d72014-09-18 17:31:25 -07001031
Florian Fainellic3152ec2019-02-15 12:16:52 -08001032 if (p->ethtool_ops->get_wol)
1033 p->ethtool_ops->get_wol(p, &pwol);
Florian Fainelli96e65d72014-09-18 17:31:25 -07001034 if (wol->wolopts & ~pwol.supported)
1035 return -EINVAL;
1036
1037 if (wol->wolopts)
1038 priv->wol_ports_mask |= (1 << port);
1039 else
1040 priv->wol_ports_mask &= ~(1 << port);
1041
1042 /* If we have at least one port enabled, make sure the CPU port
1043 * is also enabled. If the CPU port is the last one enabled, we disable
1044 * it since this configuration does not make sense.
1045 */
1046 if (priv->wol_ports_mask && priv->wol_ports_mask != (1 << cpu_port))
1047 priv->wol_ports_mask |= (1 << cpu_port);
1048 else
1049 priv->wol_ports_mask &= ~(1 << cpu_port);
1050
1051 return p->ethtool_ops->set_wol(p, wol);
1052}
1053
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001054static int bcm_sf2_sw_setup(struct dsa_switch *ds)
1055{
Florian Fainellif4589952016-08-26 12:18:33 -07001056 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001057 unsigned int port;
Florian Fainellid9338022016-08-18 15:30:14 -07001058
Florian Fainelli21a27742017-09-28 11:19:06 -07001059 /* Enable all valid ports and disable those unused */
Florian Fainellid9338022016-08-18 15:30:14 -07001060 for (port = 0; port < priv->hw_params.num_ports; port++) {
Florian Fainelli21a27742017-09-28 11:19:06 -07001061 /* IMP port receives special treatment */
Vivien Didelot4a5b85f2017-10-26 11:22:55 -04001062 if (dsa_is_user_port(ds, port))
Florian Fainelli21a27742017-09-28 11:19:06 -07001063 bcm_sf2_port_setup(ds, port, NULL);
1064 else if (dsa_is_cpu_port(ds, port))
Florian Fainellid9338022016-08-18 15:30:14 -07001065 bcm_sf2_imp_setup(ds, port);
Florian Fainelli21a27742017-09-28 11:19:06 -07001066 else
Andrew Lunn75104db2019-02-24 20:44:43 +01001067 bcm_sf2_port_disable(ds, port);
Florian Fainellid9338022016-08-18 15:30:14 -07001068 }
1069
Florian Fainelli5c1a6ea2017-10-27 15:56:01 -07001070 b53_configure_vlan(ds);
Florian Fainelli32e47ff2017-10-11 10:57:51 -07001071 bcm_sf2_enable_acb(ds);
Florian Fainellid9338022016-08-18 15:30:14 -07001072
Florian Fainelli4f6a5ca2020-09-09 10:49:31 -07001073 return b53_setup_devlink_resources(ds);
1074}
1075
1076static void bcm_sf2_sw_teardown(struct dsa_switch *ds)
1077{
1078 dsa_devlink_resources_unregister(ds);
Florian Fainellid9338022016-08-18 15:30:14 -07001079}
1080
Florian Fainellif4589952016-08-26 12:18:33 -07001081/* The SWITCH_CORE register space is managed by b53 but operates on a page +
1082 * register basis so we need to translate that into an address that the
1083 * bus-glue understands.
1084 */
1085#define SF2_PAGE_REG_MKADDR(page, reg) ((page) << 10 | (reg) << 2)
1086
1087static int bcm_sf2_core_read8(struct b53_device *dev, u8 page, u8 reg,
1088 u8 *val)
1089{
1090 struct bcm_sf2_priv *priv = dev->priv;
1091
1092 *val = core_readl(priv, SF2_PAGE_REG_MKADDR(page, reg));
1093
1094 return 0;
1095}
1096
1097static int bcm_sf2_core_read16(struct b53_device *dev, u8 page, u8 reg,
1098 u16 *val)
1099{
1100 struct bcm_sf2_priv *priv = dev->priv;
1101
1102 *val = core_readl(priv, SF2_PAGE_REG_MKADDR(page, reg));
1103
1104 return 0;
1105}
1106
1107static int bcm_sf2_core_read32(struct b53_device *dev, u8 page, u8 reg,
1108 u32 *val)
1109{
1110 struct bcm_sf2_priv *priv = dev->priv;
1111
1112 *val = core_readl(priv, SF2_PAGE_REG_MKADDR(page, reg));
1113
1114 return 0;
1115}
1116
1117static int bcm_sf2_core_read64(struct b53_device *dev, u8 page, u8 reg,
1118 u64 *val)
1119{
1120 struct bcm_sf2_priv *priv = dev->priv;
1121
1122 *val = core_readq(priv, SF2_PAGE_REG_MKADDR(page, reg));
1123
1124 return 0;
1125}
1126
1127static int bcm_sf2_core_write8(struct b53_device *dev, u8 page, u8 reg,
1128 u8 value)
1129{
1130 struct bcm_sf2_priv *priv = dev->priv;
1131
1132 core_writel(priv, value, SF2_PAGE_REG_MKADDR(page, reg));
1133
1134 return 0;
1135}
1136
1137static int bcm_sf2_core_write16(struct b53_device *dev, u8 page, u8 reg,
1138 u16 value)
1139{
1140 struct bcm_sf2_priv *priv = dev->priv;
1141
1142 core_writel(priv, value, SF2_PAGE_REG_MKADDR(page, reg));
1143
1144 return 0;
1145}
1146
1147static int bcm_sf2_core_write32(struct b53_device *dev, u8 page, u8 reg,
1148 u32 value)
1149{
1150 struct bcm_sf2_priv *priv = dev->priv;
1151
1152 core_writel(priv, value, SF2_PAGE_REG_MKADDR(page, reg));
1153
1154 return 0;
1155}
1156
1157static int bcm_sf2_core_write64(struct b53_device *dev, u8 page, u8 reg,
1158 u64 value)
1159{
1160 struct bcm_sf2_priv *priv = dev->priv;
1161
1162 core_writeq(priv, value, SF2_PAGE_REG_MKADDR(page, reg));
1163
1164 return 0;
1165}
1166
Bhumika Goyal7e3108f2017-08-29 22:17:52 +05301167static const struct b53_io_ops bcm_sf2_io_ops = {
Florian Fainellif4589952016-08-26 12:18:33 -07001168 .read8 = bcm_sf2_core_read8,
1169 .read16 = bcm_sf2_core_read16,
1170 .read32 = bcm_sf2_core_read32,
1171 .read48 = bcm_sf2_core_read64,
1172 .read64 = bcm_sf2_core_read64,
1173 .write8 = bcm_sf2_core_write8,
1174 .write16 = bcm_sf2_core_write16,
1175 .write32 = bcm_sf2_core_write32,
1176 .write48 = bcm_sf2_core_write64,
1177 .write64 = bcm_sf2_core_write64,
1178};
1179
Florian Fainellibadd62c2019-02-06 12:45:58 -08001180static void bcm_sf2_sw_get_strings(struct dsa_switch *ds, int port,
1181 u32 stringset, uint8_t *data)
1182{
Florian Fainellif4ae9c02019-02-06 12:45:59 -08001183 int cnt = b53_get_sset_count(ds, port, stringset);
1184
Florian Fainellibadd62c2019-02-06 12:45:58 -08001185 b53_get_strings(ds, port, stringset, data);
Florian Fainellif4ae9c02019-02-06 12:45:59 -08001186 bcm_sf2_cfp_get_strings(ds, port, stringset,
1187 data + cnt * ETH_GSTRING_LEN);
Florian Fainellibadd62c2019-02-06 12:45:58 -08001188}
1189
1190static void bcm_sf2_sw_get_ethtool_stats(struct dsa_switch *ds, int port,
1191 uint64_t *data)
1192{
Florian Fainellif4ae9c02019-02-06 12:45:59 -08001193 int cnt = b53_get_sset_count(ds, port, ETH_SS_STATS);
1194
Florian Fainellibadd62c2019-02-06 12:45:58 -08001195 b53_get_ethtool_stats(ds, port, data);
Florian Fainellif4ae9c02019-02-06 12:45:59 -08001196 bcm_sf2_cfp_get_ethtool_stats(ds, port, data + cnt);
Florian Fainellibadd62c2019-02-06 12:45:58 -08001197}
1198
1199static int bcm_sf2_sw_get_sset_count(struct dsa_switch *ds, int port,
1200 int sset)
1201{
Florian Fainellif4ae9c02019-02-06 12:45:59 -08001202 int cnt = b53_get_sset_count(ds, port, sset);
1203
1204 if (cnt < 0)
1205 return cnt;
1206
1207 cnt += bcm_sf2_cfp_get_sset_count(ds, port, sset);
1208
1209 return cnt;
Florian Fainellibadd62c2019-02-06 12:45:58 -08001210}
1211
Florian Fainellia82f67a2017-01-08 14:52:08 -08001212static const struct dsa_switch_ops bcm_sf2_ops = {
Florian Fainelli9f668162017-11-30 09:55:35 -08001213 .get_tag_protocol = b53_get_tag_protocol,
Florian Fainelli73095cb2017-01-08 14:52:06 -08001214 .setup = bcm_sf2_sw_setup,
Florian Fainelli4f6a5ca2020-09-09 10:49:31 -07001215 .teardown = bcm_sf2_sw_teardown,
Florian Fainellibadd62c2019-02-06 12:45:58 -08001216 .get_strings = bcm_sf2_sw_get_strings,
1217 .get_ethtool_stats = bcm_sf2_sw_get_ethtool_stats,
1218 .get_sset_count = bcm_sf2_sw_get_sset_count,
Florian Fainellic7d28c92018-04-25 12:12:53 -07001219 .get_ethtool_phy_stats = b53_get_ethtool_phy_stats,
Florian Fainelli73095cb2017-01-08 14:52:06 -08001220 .get_phy_flags = bcm_sf2_sw_get_phy_flags,
Florian Fainellibc0cb652018-05-10 13:17:33 -07001221 .phylink_validate = bcm_sf2_sw_validate,
1222 .phylink_mac_config = bcm_sf2_sw_mac_config,
1223 .phylink_mac_link_down = bcm_sf2_sw_mac_link_down,
1224 .phylink_mac_link_up = bcm_sf2_sw_mac_link_up,
1225 .phylink_fixed_state = bcm_sf2_sw_fixed_state,
Florian Fainelli73095cb2017-01-08 14:52:06 -08001226 .suspend = bcm_sf2_sw_suspend,
1227 .resume = bcm_sf2_sw_resume,
1228 .get_wol = bcm_sf2_sw_get_wol,
1229 .set_wol = bcm_sf2_sw_set_wol,
1230 .port_enable = bcm_sf2_port_setup,
1231 .port_disable = bcm_sf2_port_disable,
Florian Fainelli22256b02017-09-19 10:46:50 -07001232 .get_mac_eee = b53_get_mac_eee,
1233 .set_mac_eee = b53_set_mac_eee,
Florian Fainelli73095cb2017-01-08 14:52:06 -08001234 .port_bridge_join = b53_br_join,
1235 .port_bridge_leave = b53_br_leave,
Florian Fainellie6dd86e2021-02-22 14:30:09 -08001236 .port_pre_bridge_flags = b53_br_flags_pre,
1237 .port_bridge_flags = b53_br_flags,
Florian Fainelli73095cb2017-01-08 14:52:06 -08001238 .port_stp_state_set = b53_br_set_stp_state,
1239 .port_fast_age = b53_br_fast_age,
1240 .port_vlan_filtering = b53_vlan_filtering,
Florian Fainelli73095cb2017-01-08 14:52:06 -08001241 .port_vlan_add = b53_vlan_add,
1242 .port_vlan_del = b53_vlan_del,
Florian Fainelli73095cb2017-01-08 14:52:06 -08001243 .port_fdb_dump = b53_fdb_dump,
1244 .port_fdb_add = b53_fdb_add,
1245 .port_fdb_del = b53_fdb_del,
Florian Fainelli73181662017-01-30 09:48:43 -08001246 .get_rxnfc = bcm_sf2_get_rxnfc,
1247 .set_rxnfc = bcm_sf2_set_rxnfc,
Florian Fainelliec960de2017-01-30 12:41:43 -08001248 .port_mirror_add = b53_mirror_add,
1249 .port_mirror_del = b53_mirror_del,
Florian Fainelli29bb5e82019-10-24 12:45:08 -07001250 .port_mdb_add = b53_mdb_add,
1251 .port_mdb_del = b53_mdb_del,
Florian Fainelli73095cb2017-01-08 14:52:06 -08001252};
1253
Florian Fainellia78e86e2017-01-20 12:36:29 -08001254struct bcm_sf2_of_data {
1255 u32 type;
1256 const u16 *reg_offsets;
1257 unsigned int core_reg_align;
Florian Fainellidf191632017-08-30 12:39:33 -07001258 unsigned int num_cfp_rules;
Rafał Miłeckia9349f02021-03-12 11:41:08 +01001259 unsigned int num_crossbar_int_ports;
Florian Fainellia78e86e2017-01-20 12:36:29 -08001260};
1261
Rafał Miłecki73b7a602021-01-06 22:32:02 +01001262static const u16 bcm_sf2_4908_reg_offsets[] = {
1263 [REG_SWITCH_CNTRL] = 0x00,
1264 [REG_SWITCH_STATUS] = 0x04,
1265 [REG_DIR_DATA_WRITE] = 0x08,
1266 [REG_DIR_DATA_READ] = 0x0c,
1267 [REG_SWITCH_REVISION] = 0x10,
1268 [REG_PHY_REVISION] = 0x14,
1269 [REG_SPHY_CNTRL] = 0x24,
1270 [REG_CROSSBAR] = 0xc8,
Rafał Miłecki6859d912021-03-18 09:01:43 +01001271 [REG_RGMII_11_CNTRL] = 0x014c,
Rafał Miłeckiaf30f8e2021-12-29 18:16:42 +01001272 [REG_LED_0_CNTRL] = 0x40,
1273 [REG_LED_1_CNTRL] = 0x4c,
1274 [REG_LED_2_CNTRL] = 0x58,
1275 [REG_LED_3_CNTRL] = 0x64,
1276 [REG_LED_4_CNTRL] = 0x88,
1277 [REG_LED_5_CNTRL] = 0xa0,
1278 [REG_LED_AGGREGATE_CTRL] = 0xb8,
1279
Rafał Miłecki73b7a602021-01-06 22:32:02 +01001280};
1281
1282static const struct bcm_sf2_of_data bcm_sf2_4908_data = {
1283 .type = BCM4908_DEVICE_ID,
1284 .core_reg_align = 0,
1285 .reg_offsets = bcm_sf2_4908_reg_offsets,
Florian Fainellif4e6d7c2021-03-12 13:11:01 -08001286 .num_cfp_rules = 256,
Rafał Miłeckia9349f02021-03-12 11:41:08 +01001287 .num_crossbar_int_ports = 2,
Rafał Miłecki73b7a602021-01-06 22:32:02 +01001288};
1289
Florian Fainellia78e86e2017-01-20 12:36:29 -08001290/* Register offsets for the SWITCH_REG_* block */
1291static const u16 bcm_sf2_7445_reg_offsets[] = {
1292 [REG_SWITCH_CNTRL] = 0x00,
1293 [REG_SWITCH_STATUS] = 0x04,
1294 [REG_DIR_DATA_WRITE] = 0x08,
1295 [REG_DIR_DATA_READ] = 0x0C,
1296 [REG_SWITCH_REVISION] = 0x18,
1297 [REG_PHY_REVISION] = 0x1C,
1298 [REG_SPHY_CNTRL] = 0x2C,
1299 [REG_RGMII_0_CNTRL] = 0x34,
1300 [REG_RGMII_1_CNTRL] = 0x40,
1301 [REG_RGMII_2_CNTRL] = 0x4c,
1302 [REG_LED_0_CNTRL] = 0x90,
1303 [REG_LED_1_CNTRL] = 0x94,
1304 [REG_LED_2_CNTRL] = 0x98,
1305};
1306
1307static const struct bcm_sf2_of_data bcm_sf2_7445_data = {
1308 .type = BCM7445_DEVICE_ID,
1309 .core_reg_align = 0,
1310 .reg_offsets = bcm_sf2_7445_reg_offsets,
Florian Fainellidf191632017-08-30 12:39:33 -07001311 .num_cfp_rules = 256,
Florian Fainellia78e86e2017-01-20 12:36:29 -08001312};
1313
Florian Fainelli0fe99332017-01-20 12:36:30 -08001314static const u16 bcm_sf2_7278_reg_offsets[] = {
1315 [REG_SWITCH_CNTRL] = 0x00,
1316 [REG_SWITCH_STATUS] = 0x04,
1317 [REG_DIR_DATA_WRITE] = 0x08,
1318 [REG_DIR_DATA_READ] = 0x0c,
1319 [REG_SWITCH_REVISION] = 0x10,
1320 [REG_PHY_REVISION] = 0x14,
1321 [REG_SPHY_CNTRL] = 0x24,
1322 [REG_RGMII_0_CNTRL] = 0xe0,
1323 [REG_RGMII_1_CNTRL] = 0xec,
1324 [REG_RGMII_2_CNTRL] = 0xf8,
1325 [REG_LED_0_CNTRL] = 0x40,
1326 [REG_LED_1_CNTRL] = 0x4c,
1327 [REG_LED_2_CNTRL] = 0x58,
1328};
1329
1330static const struct bcm_sf2_of_data bcm_sf2_7278_data = {
1331 .type = BCM7278_DEVICE_ID,
1332 .core_reg_align = 1,
1333 .reg_offsets = bcm_sf2_7278_reg_offsets,
Florian Fainellidf191632017-08-30 12:39:33 -07001334 .num_cfp_rules = 128,
Florian Fainelli0fe99332017-01-20 12:36:30 -08001335};
1336
Florian Fainellia78e86e2017-01-20 12:36:29 -08001337static const struct of_device_id bcm_sf2_of_match[] = {
Rafał Miłecki73b7a602021-01-06 22:32:02 +01001338 { .compatible = "brcm,bcm4908-switch",
1339 .data = &bcm_sf2_4908_data
1340 },
Florian Fainellia78e86e2017-01-20 12:36:29 -08001341 { .compatible = "brcm,bcm7445-switch-v4.0",
1342 .data = &bcm_sf2_7445_data
1343 },
Florian Fainelli0fe99332017-01-20 12:36:30 -08001344 { .compatible = "brcm,bcm7278-switch-v4.0",
1345 .data = &bcm_sf2_7278_data
1346 },
Florian Fainelli3b07d782017-12-14 17:59:40 -08001347 { .compatible = "brcm,bcm7278-switch-v4.8",
1348 .data = &bcm_sf2_7278_data
1349 },
Florian Fainellia78e86e2017-01-20 12:36:29 -08001350 { /* sentinel */ },
1351};
1352MODULE_DEVICE_TABLE(of, bcm_sf2_of_match);
1353
Florian Fainellid9338022016-08-18 15:30:14 -07001354static int bcm_sf2_sw_probe(struct platform_device *pdev)
1355{
1356 const char *reg_names[BCM_SF2_REGS_NUM] = BCM_SF2_REGS_NAME;
1357 struct device_node *dn = pdev->dev.of_node;
Florian Fainellia78e86e2017-01-20 12:36:29 -08001358 const struct of_device_id *of_id = NULL;
1359 const struct bcm_sf2_of_data *data;
Florian Fainellif4589952016-08-26 12:18:33 -07001360 struct b53_platform_data *pdata;
Florian Fainellia4c61b92017-01-07 21:01:56 -08001361 struct dsa_switch_ops *ops;
Florian Fainelliafa3b592020-04-05 13:00:30 -07001362 struct device_node *ports;
Florian Fainellid9338022016-08-18 15:30:14 -07001363 struct bcm_sf2_priv *priv;
Florian Fainellif4589952016-08-26 12:18:33 -07001364 struct b53_device *dev;
Florian Fainellid9338022016-08-18 15:30:14 -07001365 struct dsa_switch *ds;
1366 void __iomem **base;
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001367 unsigned int i;
1368 u32 reg, rev;
1369 int ret;
1370
Florian Fainellif4589952016-08-26 12:18:33 -07001371 priv = devm_kzalloc(&pdev->dev, sizeof(*priv), GFP_KERNEL);
1372 if (!priv)
Florian Fainellid9338022016-08-18 15:30:14 -07001373 return -ENOMEM;
1374
Florian Fainellia4c61b92017-01-07 21:01:56 -08001375 ops = devm_kzalloc(&pdev->dev, sizeof(*ops), GFP_KERNEL);
1376 if (!ops)
1377 return -ENOMEM;
1378
Florian Fainellif4589952016-08-26 12:18:33 -07001379 dev = b53_switch_alloc(&pdev->dev, &bcm_sf2_io_ops, priv);
1380 if (!dev)
1381 return -ENOMEM;
Florian Fainellid9338022016-08-18 15:30:14 -07001382
Florian Fainellif4589952016-08-26 12:18:33 -07001383 pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL);
1384 if (!pdata)
1385 return -ENOMEM;
1386
Florian Fainellia78e86e2017-01-20 12:36:29 -08001387 of_id = of_match_node(bcm_sf2_of_match, dn);
1388 if (!of_id || !of_id->data)
1389 return -EINVAL;
1390
1391 data = of_id->data;
1392
1393 /* Set SWITCH_REG register offsets and SWITCH_CORE align factor */
1394 priv->type = data->type;
1395 priv->reg_offsets = data->reg_offsets;
1396 priv->core_reg_align = data->core_reg_align;
Florian Fainellidf191632017-08-30 12:39:33 -07001397 priv->num_cfp_rules = data->num_cfp_rules;
Rafał Miłeckia9349f02021-03-12 11:41:08 +01001398 priv->num_crossbar_int_ports = data->num_crossbar_int_ports;
Florian Fainellia78e86e2017-01-20 12:36:29 -08001399
Florian Fainellieee87e42019-11-04 13:51:39 -08001400 priv->rcdev = devm_reset_control_get_optional_exclusive(&pdev->dev,
1401 "switch");
Philipp Zabelbf9279c2021-03-05 10:14:48 +01001402 if (IS_ERR(priv->rcdev))
Florian Fainellieee87e42019-11-04 13:51:39 -08001403 return PTR_ERR(priv->rcdev);
1404
Florian Fainellif4589952016-08-26 12:18:33 -07001405 /* Auto-detection using standard registers will not work, so
1406 * provide an indication of what kind of device we are for
1407 * b53_common to work with
1408 */
Florian Fainellia78e86e2017-01-20 12:36:29 -08001409 pdata->chip_id = priv->type;
Florian Fainellif4589952016-08-26 12:18:33 -07001410 dev->pdata = pdata;
1411
1412 priv->dev = dev;
1413 ds = dev->ds;
Florian Fainelli73095cb2017-01-08 14:52:06 -08001414 ds->ops = &bcm_sf2_ops;
Florian Fainellif4589952016-08-26 12:18:33 -07001415
Florian Fainelli181183772017-09-03 20:27:02 -07001416 /* Advertise the 8 egress queues */
1417 ds->num_tx_queues = SF2_NUM_EGRESS_QUEUES;
1418
Florian Fainellif4589952016-08-26 12:18:33 -07001419 dev_set_drvdata(&pdev->dev, priv);
Florian Fainellid9338022016-08-18 15:30:14 -07001420
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001421 spin_lock_init(&priv->indir_lock);
Florian Fainelli73181662017-01-30 09:48:43 -08001422 mutex_init(&priv->cfp.lock);
Florian Fainelliae7a5af2018-11-06 12:58:37 -08001423 INIT_LIST_HEAD(&priv->cfp.rules_list);
Florian Fainelli73181662017-01-30 09:48:43 -08001424
1425 /* CFP rule #0 cannot be used for specific classifications, flag it as
1426 * permanently used
1427 */
1428 set_bit(0, priv->cfp.used);
Florian Fainelliba0696c2017-10-20 14:39:47 -07001429 set_bit(0, priv->cfp.unique);
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001430
Florian Fainelli8dbe4c52020-06-17 20:42:44 -07001431 /* Balance of_node_put() done by of_find_node_by_name() */
1432 of_node_get(dn);
Florian Fainelliafa3b592020-04-05 13:00:30 -07001433 ports = of_find_node_by_name(dn, "ports");
1434 if (ports) {
1435 bcm_sf2_identify_ports(priv, ports);
1436 of_node_put(ports);
1437 }
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001438
1439 priv->irq0 = irq_of_parse_and_map(dn, 0);
1440 priv->irq1 = irq_of_parse_and_map(dn, 1);
1441
1442 base = &priv->core;
1443 for (i = 0; i < BCM_SF2_REGS_NUM; i++) {
YueHaibing42376782019-08-01 20:29:11 +08001444 *base = devm_platform_ioremap_resource(pdev, i);
Florian Fainelli4bd11672016-08-18 15:30:15 -07001445 if (IS_ERR(*base)) {
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001446 pr_err("unable to find register: %s\n", reg_names[i]);
Florian Fainelli4bd11672016-08-18 15:30:15 -07001447 return PTR_ERR(*base);
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001448 }
1449 base++;
1450 }
1451
Florian Fainellie9ec5c32020-09-01 15:59:12 -07001452 priv->clk = devm_clk_get_optional(&pdev->dev, "sw_switch");
1453 if (IS_ERR(priv->clk))
1454 return PTR_ERR(priv->clk);
1455
1456 clk_prepare_enable(priv->clk);
1457
Florian Fainelli2ee3adc2020-09-01 15:59:13 -07001458 priv->clk_mdiv = devm_clk_get_optional(&pdev->dev, "sw_switch_mdiv");
1459 if (IS_ERR(priv->clk_mdiv)) {
1460 ret = PTR_ERR(priv->clk_mdiv);
1461 goto out_clk;
1462 }
1463
1464 clk_prepare_enable(priv->clk_mdiv);
1465
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001466 ret = bcm_sf2_sw_rst(priv);
1467 if (ret) {
1468 pr_err("unable to software reset switch: %d\n", ret);
Florian Fainelli2ee3adc2020-09-01 15:59:13 -07001469 goto out_clk_mdiv;
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001470 }
1471
Rafał Miłeckia9349f02021-03-12 11:41:08 +01001472 bcm_sf2_crossbar_setup(priv);
1473
Florian Fainellic04a17d2018-11-06 15:15:16 -08001474 bcm_sf2_gphy_enable_set(priv->dev->ds, true);
1475
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001476 ret = bcm_sf2_mdio_register(ds);
1477 if (ret) {
1478 pr_err("failed to register MDIO bus\n");
Florian Fainelli2ee3adc2020-09-01 15:59:13 -07001479 goto out_clk_mdiv;
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001480 }
1481
Florian Fainellic04a17d2018-11-06 15:15:16 -08001482 bcm_sf2_gphy_enable_set(priv->dev->ds, false);
1483
Florian Fainelli73181662017-01-30 09:48:43 -08001484 ret = bcm_sf2_cfp_rst(priv);
1485 if (ret) {
1486 pr_err("failed to reset CFP\n");
1487 goto out_mdio;
1488 }
1489
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001490 /* Disable all interrupts and request them */
1491 bcm_sf2_intr_disable(priv);
1492
Florian Fainelli4bd11672016-08-18 15:30:15 -07001493 ret = devm_request_irq(&pdev->dev, priv->irq0, bcm_sf2_switch_0_isr, 0,
Florian Fainellibc0cb652018-05-10 13:17:33 -07001494 "switch_0", ds);
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001495 if (ret < 0) {
1496 pr_err("failed to request switch_0 IRQ\n");
Florian Fainellibb9c0fa2016-07-29 12:35:57 -07001497 goto out_mdio;
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001498 }
1499
Florian Fainelli4bd11672016-08-18 15:30:15 -07001500 ret = devm_request_irq(&pdev->dev, priv->irq1, bcm_sf2_switch_1_isr, 0,
Florian Fainellibc0cb652018-05-10 13:17:33 -07001501 "switch_1", ds);
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001502 if (ret < 0) {
1503 pr_err("failed to request switch_1 IRQ\n");
Florian Fainelli4bd11672016-08-18 15:30:15 -07001504 goto out_mdio;
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001505 }
1506
1507 /* Reset the MIB counters */
1508 reg = core_readl(priv, CORE_GMNCFGCFG);
1509 reg |= RST_MIB_CNT;
1510 core_writel(priv, reg, CORE_GMNCFGCFG);
1511 reg &= ~RST_MIB_CNT;
1512 core_writel(priv, reg, CORE_GMNCFGCFG);
1513
1514 /* Get the maximum number of ports for this switch */
1515 priv->hw_params.num_ports = core_readl(priv, CORE_IMP0_PRT_ID) + 1;
1516 if (priv->hw_params.num_ports > DSA_MAX_PORTS)
1517 priv->hw_params.num_ports = DSA_MAX_PORTS;
1518
1519 /* Assume a single GPHY setup if we can't read that property */
1520 if (of_property_read_u32(dn, "brcm,num-gphy",
1521 &priv->hw_params.num_gphy))
1522 priv->hw_params.num_gphy = 1;
1523
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001524 rev = reg_readl(priv, REG_SWITCH_REVISION);
1525 priv->hw_params.top_rev = (rev >> SWITCH_TOP_REV_SHIFT) &
1526 SWITCH_TOP_REV_MASK;
1527 priv->hw_params.core_rev = (rev & SF2_REV_MASK);
1528
1529 rev = reg_readl(priv, REG_PHY_REVISION);
1530 priv->hw_params.gphy_rev = rev & PHY_REVISION_MASK;
1531
Florian Fainellif4589952016-08-26 12:18:33 -07001532 ret = b53_switch_register(dev);
Florian Fainellid9338022016-08-18 15:30:14 -07001533 if (ret)
Florian Fainelli4bd11672016-08-18 15:30:15 -07001534 goto out_mdio;
Florian Fainellid9338022016-08-18 15:30:14 -07001535
Florian Fainellifbb7bc42019-03-20 09:45:16 -07001536 dev_info(&pdev->dev,
1537 "Starfighter 2 top: %x.%02x, core: %x.%02x, IRQs: %d, %d\n",
1538 priv->hw_params.top_rev >> 8, priv->hw_params.top_rev & 0xff,
1539 priv->hw_params.core_rev >> 8, priv->hw_params.core_rev & 0xff,
1540 priv->irq0, priv->irq1);
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001541
1542 return 0;
1543
Florian Fainellibb9c0fa2016-07-29 12:35:57 -07001544out_mdio:
1545 bcm_sf2_mdio_unregister(priv);
Florian Fainelli2ee3adc2020-09-01 15:59:13 -07001546out_clk_mdiv:
1547 clk_disable_unprepare(priv->clk_mdiv);
Florian Fainellie9ec5c32020-09-01 15:59:12 -07001548out_clk:
1549 clk_disable_unprepare(priv->clk);
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001550 return ret;
1551}
1552
Florian Fainellid9338022016-08-18 15:30:14 -07001553static int bcm_sf2_sw_remove(struct platform_device *pdev)
Florian Fainelli246d7f72014-08-27 17:04:56 -07001554{
Florian Fainellif4589952016-08-26 12:18:33 -07001555 struct bcm_sf2_priv *priv = platform_get_drvdata(pdev);
Florian Fainellid9338022016-08-18 15:30:14 -07001556
Vladimir Oltean0650bf52021-09-17 16:34:33 +03001557 if (!priv)
1558 return 0;
1559
Florian Fainellid9338022016-08-18 15:30:14 -07001560 priv->wol_ports_mask = 0;
Florian Fainellie6840002019-11-02 20:17:39 -07001561 /* Disable interrupts */
1562 bcm_sf2_intr_disable(priv);
Florian Fainellif4589952016-08-26 12:18:33 -07001563 dsa_unregister_switch(priv->dev->ds);
Florian Fainelliae7a5af2018-11-06 12:58:37 -08001564 bcm_sf2_cfp_exit(priv->dev->ds);
Florian Fainellid9338022016-08-18 15:30:14 -07001565 bcm_sf2_mdio_unregister(priv);
Florian Fainelli2ee3adc2020-09-01 15:59:13 -07001566 clk_disable_unprepare(priv->clk_mdiv);
Florian Fainellie9ec5c32020-09-01 15:59:12 -07001567 clk_disable_unprepare(priv->clk);
Philipp Zabelbf9279c2021-03-05 10:14:48 +01001568 if (priv->type == BCM7278_DEVICE_ID)
Florian Fainellieee87e42019-11-04 13:51:39 -08001569 reset_control_assert(priv->rcdev);
Florian Fainelli246d7f72014-08-27 17:04:56 -07001570
Vladimir Oltean0650bf52021-09-17 16:34:33 +03001571 platform_set_drvdata(pdev, NULL);
1572
Florian Fainelli246d7f72014-08-27 17:04:56 -07001573 return 0;
1574}
Florian Fainelli246d7f72014-08-27 17:04:56 -07001575
Florian Fainelli2399d612016-10-20 09:32:19 -07001576static void bcm_sf2_sw_shutdown(struct platform_device *pdev)
1577{
1578 struct bcm_sf2_priv *priv = platform_get_drvdata(pdev);
1579
Vladimir Oltean0650bf52021-09-17 16:34:33 +03001580 if (!priv)
1581 return;
1582
Florian Fainelli2399d612016-10-20 09:32:19 -07001583 /* For a kernel about to be kexec'd we want to keep the GPHY on for a
1584 * successful MDIO bus scan to occur. If we did turn off the GPHY
1585 * before (e.g: port_disable), this will also power it back on.
Florian Fainelli4a2947e2016-10-21 14:21:56 -07001586 *
1587 * Do not rely on kexec_in_progress, just power the PHY on.
Florian Fainelli2399d612016-10-20 09:32:19 -07001588 */
1589 if (priv->hw_params.num_gphy == 1)
Florian Fainelli4a2947e2016-10-21 14:21:56 -07001590 bcm_sf2_gphy_enable_set(priv->dev->ds, true);
Vladimir Oltean0650bf52021-09-17 16:34:33 +03001591
1592 dsa_switch_shutdown(priv->dev->ds);
1593
1594 platform_set_drvdata(pdev, NULL);
Florian Fainelli2399d612016-10-20 09:32:19 -07001595}
1596
Florian Fainellid9338022016-08-18 15:30:14 -07001597#ifdef CONFIG_PM_SLEEP
1598static int bcm_sf2_suspend(struct device *dev)
Florian Fainelli246d7f72014-08-27 17:04:56 -07001599{
Wolfram Sang63382e02018-10-21 22:00:12 +02001600 struct bcm_sf2_priv *priv = dev_get_drvdata(dev);
Florian Fainellid9338022016-08-18 15:30:14 -07001601
Florian Fainellif4589952016-08-26 12:18:33 -07001602 return dsa_switch_suspend(priv->dev->ds);
Florian Fainelli246d7f72014-08-27 17:04:56 -07001603}
Florian Fainellid9338022016-08-18 15:30:14 -07001604
1605static int bcm_sf2_resume(struct device *dev)
1606{
Wolfram Sang63382e02018-10-21 22:00:12 +02001607 struct bcm_sf2_priv *priv = dev_get_drvdata(dev);
Florian Fainellid9338022016-08-18 15:30:14 -07001608
Florian Fainellif4589952016-08-26 12:18:33 -07001609 return dsa_switch_resume(priv->dev->ds);
Florian Fainellid9338022016-08-18 15:30:14 -07001610}
1611#endif /* CONFIG_PM_SLEEP */
1612
1613static SIMPLE_DEV_PM_OPS(bcm_sf2_pm_ops,
1614 bcm_sf2_suspend, bcm_sf2_resume);
1615
Florian Fainellid9338022016-08-18 15:30:14 -07001616
1617static struct platform_driver bcm_sf2_driver = {
1618 .probe = bcm_sf2_sw_probe,
1619 .remove = bcm_sf2_sw_remove,
Florian Fainelli2399d612016-10-20 09:32:19 -07001620 .shutdown = bcm_sf2_sw_shutdown,
Florian Fainellid9338022016-08-18 15:30:14 -07001621 .driver = {
1622 .name = "brcm-sf2",
1623 .of_match_table = bcm_sf2_of_match,
1624 .pm = &bcm_sf2_pm_ops,
1625 },
1626};
1627module_platform_driver(bcm_sf2_driver);
Florian Fainelli246d7f72014-08-27 17:04:56 -07001628
1629MODULE_AUTHOR("Broadcom Corporation");
1630MODULE_DESCRIPTION("Driver for Broadcom Starfighter 2 ethernet switch chip");
1631MODULE_LICENSE("GPL");
1632MODULE_ALIAS("platform:brcm-sf2");