blob: 6afb5db8244cd1650426a646988f3feb3b07c3d4 [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
Vladimir Oltean08f1a202022-02-07 18:15:49 +0200624 priv->slave_mii_bus = mdiobus_alloc();
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);
Vladimir Oltean08f1a202022-02-07 18:15:49 +0200684 if (err && dn) {
685 mdiobus_free(priv->slave_mii_bus);
Florian Fainelli461cd1b02016-06-07 16:32:43 -0700686 of_node_put(dn);
Vladimir Oltean08f1a202022-02-07 18:15:49 +0200687 }
Florian Fainelli461cd1b02016-06-07 16:32:43 -0700688
689 return err;
690}
691
692static void bcm_sf2_mdio_unregister(struct bcm_sf2_priv *priv)
693{
694 mdiobus_unregister(priv->slave_mii_bus);
Vladimir Oltean08f1a202022-02-07 18:15:49 +0200695 mdiobus_free(priv->slave_mii_bus);
zhong jiang1ddc5d32018-09-16 21:22:31 +0800696 of_node_put(priv->master_mii_dn);
Florian Fainelli461cd1b02016-06-07 16:32:43 -0700697}
698
Florian Fainelliaa9aef72014-09-19 13:07:55 -0700699static u32 bcm_sf2_sw_get_phy_flags(struct dsa_switch *ds, int port)
700{
Florian Fainellif4589952016-08-26 12:18:33 -0700701 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainelliaa9aef72014-09-19 13:07:55 -0700702
703 /* The BCM7xxx PHY driver expects to find the integrated PHY revision
704 * in bits 15:8 and the patch level in bits 7:0 which is exactly what
705 * the REG_PHY_REVISION register layout is.
706 */
Florian Fainelli47142ed2021-03-10 14:17:58 -0800707 if (priv->int_phy_mask & BIT(port))
708 return priv->hw_params.gphy_rev;
709 else
Florian Fainelli4972ce72021-09-20 14:54:18 -0700710 return PHY_BRCM_AUTO_PWRDWN_ENABLE |
711 PHY_BRCM_DIS_TXCRXC_NOENRGY |
712 PHY_BRCM_IDDQ_SUSPEND;
Florian Fainelliaa9aef72014-09-19 13:07:55 -0700713}
714
Florian Fainellibc0cb652018-05-10 13:17:33 -0700715static void bcm_sf2_sw_validate(struct dsa_switch *ds, int port,
716 unsigned long *supported,
717 struct phylink_link_state *state)
718{
Florian Fainelli738a2e42019-08-21 17:07:46 -0700719 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainellibc0cb652018-05-10 13:17:33 -0700720 __ETHTOOL_DECLARE_LINK_MODE_MASK(mask) = { 0, };
721
722 if (!phy_interface_mode_is_rgmii(state->interface) &&
723 state->interface != PHY_INTERFACE_MODE_MII &&
724 state->interface != PHY_INTERFACE_MODE_REVMII &&
725 state->interface != PHY_INTERFACE_MODE_GMII &&
726 state->interface != PHY_INTERFACE_MODE_INTERNAL &&
727 state->interface != PHY_INTERFACE_MODE_MOCA) {
Sean Anderson49730562021-10-22 18:41:04 -0400728 linkmode_zero(supported);
Florian Fainelli738a2e42019-08-21 17:07:46 -0700729 if (port != core_readl(priv, CORE_IMP0_PRT_ID))
730 dev_err(ds->dev,
731 "Unsupported interface: %d for port %d\n",
732 state->interface, port);
Florian Fainellibc0cb652018-05-10 13:17:33 -0700733 return;
734 }
735
736 /* Allow all the expected bits */
737 phylink_set(mask, Autoneg);
738 phylink_set_port_modes(mask);
739 phylink_set(mask, Pause);
740 phylink_set(mask, Asym_Pause);
741
742 /* With the exclusion of MII and Reverse MII, we support Gigabit,
743 * including Half duplex
744 */
745 if (state->interface != PHY_INTERFACE_MODE_MII &&
746 state->interface != PHY_INTERFACE_MODE_REVMII) {
747 phylink_set(mask, 1000baseT_Full);
748 phylink_set(mask, 1000baseT_Half);
749 }
750
751 phylink_set(mask, 10baseT_Half);
752 phylink_set(mask, 10baseT_Full);
753 phylink_set(mask, 100baseT_Half);
754 phylink_set(mask, 100baseT_Full);
755
Sean Anderson49730562021-10-22 18:41:04 -0400756 linkmode_and(supported, supported, mask);
757 linkmode_and(state->advertising, state->advertising, mask);
Florian Fainellibc0cb652018-05-10 13:17:33 -0700758}
759
760static void bcm_sf2_sw_mac_config(struct dsa_switch *ds, int port,
761 unsigned int mode,
762 const struct phylink_link_state *state)
763{
764 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
765 u32 id_mode_dis = 0, port_mode;
Rafał Miłecki55cfeb32021-03-18 09:01:42 +0100766 u32 reg_rgmii_ctrl;
Russell King50cc20202020-06-30 11:28:13 +0100767 u32 reg;
Florian Fainellibc0cb652018-05-10 13:17:33 -0700768
Florian Fainelli738a2e42019-08-21 17:07:46 -0700769 if (port == core_readl(priv, CORE_IMP0_PRT_ID))
770 return;
771
Florian Fainellibc0cb652018-05-10 13:17:33 -0700772 switch (state->interface) {
773 case PHY_INTERFACE_MODE_RGMII:
774 id_mode_dis = 1;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -0500775 fallthrough;
Florian Fainellibc0cb652018-05-10 13:17:33 -0700776 case PHY_INTERFACE_MODE_RGMII_TXID:
777 port_mode = EXT_GPHY;
778 break;
779 case PHY_INTERFACE_MODE_MII:
780 port_mode = EXT_EPHY;
781 break;
782 case PHY_INTERFACE_MODE_REVMII:
783 port_mode = EXT_REVMII;
784 break;
785 default:
Russell King50cc20202020-06-30 11:28:13 +0100786 /* Nothing required for all other PHYs: internal and MoCA */
787 return;
Florian Fainellibc0cb652018-05-10 13:17:33 -0700788 }
789
Rafał Miłecki55cfeb32021-03-18 09:01:42 +0100790 reg_rgmii_ctrl = bcm_sf2_reg_rgmii_cntrl(priv, port);
791
Florian Fainellibc0cb652018-05-10 13:17:33 -0700792 /* Clear id_mode_dis bit, and the existing port mode, let
793 * RGMII_MODE_EN bet set by mac_link_{up,down}
794 */
Rafał Miłecki55cfeb32021-03-18 09:01:42 +0100795 reg = reg_readl(priv, reg_rgmii_ctrl);
Florian Fainellibc0cb652018-05-10 13:17:33 -0700796 reg &= ~ID_MODE_DIS;
797 reg &= ~(PORT_MODE_MASK << PORT_MODE_SHIFT);
Florian Fainellibc0cb652018-05-10 13:17:33 -0700798
799 reg |= port_mode;
800 if (id_mode_dis)
801 reg |= ID_MODE_DIS;
802
Rafał Miłecki55cfeb32021-03-18 09:01:42 +0100803 reg_writel(priv, reg, reg_rgmii_ctrl);
Florian Fainellibc0cb652018-05-10 13:17:33 -0700804}
805
806static void bcm_sf2_sw_mac_link_set(struct dsa_switch *ds, int port,
807 phy_interface_t interface, bool link)
808{
809 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Rafał Miłecki55cfeb32021-03-18 09:01:42 +0100810 u32 reg_rgmii_ctrl;
Florian Fainellibc0cb652018-05-10 13:17:33 -0700811 u32 reg;
812
813 if (!phy_interface_mode_is_rgmii(interface) &&
814 interface != PHY_INTERFACE_MODE_MII &&
815 interface != PHY_INTERFACE_MODE_REVMII)
816 return;
817
Rafał Miłecki55cfeb32021-03-18 09:01:42 +0100818 reg_rgmii_ctrl = bcm_sf2_reg_rgmii_cntrl(priv, port);
819
Florian Fainellibc0cb652018-05-10 13:17:33 -0700820 /* If the link is down, just disable the interface to conserve power */
Rafał Miłecki55cfeb32021-03-18 09:01:42 +0100821 reg = reg_readl(priv, reg_rgmii_ctrl);
Florian Fainellibc0cb652018-05-10 13:17:33 -0700822 if (link)
823 reg |= RGMII_MODE_EN;
824 else
825 reg &= ~RGMII_MODE_EN;
Rafał Miłecki55cfeb32021-03-18 09:01:42 +0100826 reg_writel(priv, reg, reg_rgmii_ctrl);
Florian Fainellibc0cb652018-05-10 13:17:33 -0700827}
828
829static void bcm_sf2_sw_mac_link_down(struct dsa_switch *ds, int port,
830 unsigned int mode,
831 phy_interface_t interface)
832{
Russell King2d1f90f2020-06-30 11:28:08 +0100833 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
834 u32 reg, offset;
835
836 if (port != core_readl(priv, CORE_IMP0_PRT_ID)) {
Rafał Miłecki73b7a602021-01-06 22:32:02 +0100837 if (priv->type == BCM4908_DEVICE_ID ||
838 priv->type == BCM7445_DEVICE_ID)
Russell King2d1f90f2020-06-30 11:28:08 +0100839 offset = CORE_STS_OVERRIDE_GMIIP_PORT(port);
840 else
841 offset = CORE_STS_OVERRIDE_GMIIP2_PORT(port);
842
843 reg = core_readl(priv, offset);
844 reg &= ~LINK_STS;
845 core_writel(priv, reg, offset);
846 }
847
Florian Fainellibc0cb652018-05-10 13:17:33 -0700848 bcm_sf2_sw_mac_link_set(ds, port, interface, false);
849}
850
851static void bcm_sf2_sw_mac_link_up(struct dsa_switch *ds, int port,
852 unsigned int mode,
853 phy_interface_t interface,
Russell King5b502a72020-02-26 10:23:46 +0000854 struct phy_device *phydev,
855 int speed, int duplex,
856 bool tx_pause, bool rx_pause)
Florian Fainellibc0cb652018-05-10 13:17:33 -0700857{
858 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
859 struct ethtool_eee *p = &priv->dev->ports[port].eee;
860
861 bcm_sf2_sw_mac_link_set(ds, port, interface, true);
862
Russell King2d1f90f2020-06-30 11:28:08 +0100863 if (port != core_readl(priv, CORE_IMP0_PRT_ID)) {
Florian Fainellifc516d32021-05-21 10:46:14 -0700864 u32 reg_rgmii_ctrl = 0;
Rafał Miłecki55cfeb32021-03-18 09:01:42 +0100865 u32 reg, offset;
866
Rafał Miłecki73b7a602021-01-06 22:32:02 +0100867 if (priv->type == BCM4908_DEVICE_ID ||
868 priv->type == BCM7445_DEVICE_ID)
Russell King2d1f90f2020-06-30 11:28:08 +0100869 offset = CORE_STS_OVERRIDE_GMIIP_PORT(port);
870 else
871 offset = CORE_STS_OVERRIDE_GMIIP2_PORT(port);
872
Russell King981015a2020-06-30 11:28:18 +0100873 if (interface == PHY_INTERFACE_MODE_RGMII ||
874 interface == PHY_INTERFACE_MODE_RGMII_TXID ||
875 interface == PHY_INTERFACE_MODE_MII ||
876 interface == PHY_INTERFACE_MODE_REVMII) {
Florian Fainellifc516d32021-05-21 10:46:14 -0700877 reg_rgmii_ctrl = bcm_sf2_reg_rgmii_cntrl(priv, port);
Rafał Miłecki55cfeb32021-03-18 09:01:42 +0100878 reg = reg_readl(priv, reg_rgmii_ctrl);
Russell King981015a2020-06-30 11:28:18 +0100879 reg &= ~(RX_PAUSE_EN | TX_PAUSE_EN);
880
881 if (tx_pause)
882 reg |= TX_PAUSE_EN;
883 if (rx_pause)
884 reg |= RX_PAUSE_EN;
885
Rafał Miłecki55cfeb32021-03-18 09:01:42 +0100886 reg_writel(priv, reg, reg_rgmii_ctrl);
Russell King981015a2020-06-30 11:28:18 +0100887 }
888
Russell King50cc20202020-06-30 11:28:13 +0100889 reg = SW_OVERRIDE | LINK_STS;
890 switch (speed) {
891 case SPEED_1000:
892 reg |= SPDSTS_1000 << SPEED_SHIFT;
893 break;
894 case SPEED_100:
895 reg |= SPDSTS_100 << SPEED_SHIFT;
896 break;
897 }
898
899 if (duplex == DUPLEX_FULL)
900 reg |= DUPLX_MODE;
901
Russell King2d1f90f2020-06-30 11:28:08 +0100902 core_writel(priv, reg, offset);
903 }
904
Florian Fainellibc0cb652018-05-10 13:17:33 -0700905 if (mode == MLO_AN_PHY && phydev)
906 p->eee_enabled = b53_eee_init(ds, port, phydev);
907}
908
909static void bcm_sf2_sw_fixed_state(struct dsa_switch *ds, int port,
910 struct phylink_link_state *status)
911{
912 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
913
914 status->link = false;
915
916 /* MoCA port is special as we do not get link status from CORE_LNKSTS,
917 * which means that we need to force the link at the port override
918 * level to get the data to flow. We do use what the interrupt handler
919 * did determine before.
920 *
921 * For the other ports, we just force the link status, since this is
922 * a fixed PHY device.
923 */
924 if (port == priv->moca_port) {
925 status->link = priv->port_sts[port].link;
926 /* For MoCA interfaces, also force a link down notification
927 * since some version of the user-space daemon (mocad) use
928 * cmd->autoneg to force the link, which messes up the PHY
929 * state machine and make it go in PHY_FORCING state instead.
930 */
931 if (!status->link)
Vivien Didelot68bb8ea2019-10-21 16:51:15 -0400932 netif_carrier_off(dsa_to_port(ds, port)->slave);
Florian Fainellibc0cb652018-05-10 13:17:33 -0700933 status->duplex = DUPLEX_FULL;
934 } else {
935 status->link = true;
936 }
937}
938
Florian Fainelli32e47ff2017-10-11 10:57:51 -0700939static void bcm_sf2_enable_acb(struct dsa_switch *ds)
940{
941 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
942 u32 reg;
943
944 /* Enable ACB globally */
945 reg = acb_readl(priv, ACB_CONTROL);
946 reg |= (ACB_FLUSH_MASK << ACB_FLUSH_SHIFT);
947 acb_writel(priv, reg, ACB_CONTROL);
948 reg &= ~(ACB_FLUSH_MASK << ACB_FLUSH_SHIFT);
949 reg |= ACB_EN | ACB_ALGORITHM;
950 acb_writel(priv, reg, ACB_CONTROL);
951}
952
Florian Fainelli8cfa9492014-09-18 17:31:23 -0700953static int bcm_sf2_sw_suspend(struct dsa_switch *ds)
954{
Florian Fainellif4589952016-08-26 12:18:33 -0700955 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainelli8cfa9492014-09-18 17:31:23 -0700956 unsigned int port;
957
Florian Fainelli691c9a82015-01-20 16:42:00 -0800958 bcm_sf2_intr_disable(priv);
Florian Fainelli8cfa9492014-09-18 17:31:23 -0700959
960 /* Disable all ports physically present including the IMP
961 * port, the other ones have already been disabled during
962 * bcm_sf2_sw_setup
963 */
Dan Carpenter8d6ea932019-02-13 11:23:04 +0300964 for (port = 0; port < ds->num_ports; port++) {
Vivien Didelot4a5b85f2017-10-26 11:22:55 -0400965 if (dsa_is_user_port(ds, port) || dsa_is_cpu_port(ds, port))
Andrew Lunn75104db2019-02-24 20:44:43 +0100966 bcm_sf2_port_disable(ds, port);
Florian Fainelli8cfa9492014-09-18 17:31:23 -0700967 }
968
Florian Fainellie9ec5c32020-09-01 15:59:12 -0700969 if (!priv->wol_ports_mask)
970 clk_disable_unprepare(priv->clk);
971
Florian Fainelli8cfa9492014-09-18 17:31:23 -0700972 return 0;
973}
974
Florian Fainelli8cfa9492014-09-18 17:31:23 -0700975static int bcm_sf2_sw_resume(struct dsa_switch *ds)
976{
Florian Fainellif4589952016-08-26 12:18:33 -0700977 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainelli8cfa9492014-09-18 17:31:23 -0700978 int ret;
979
Florian Fainellie9ec5c32020-09-01 15:59:12 -0700980 if (!priv->wol_ports_mask)
981 clk_prepare_enable(priv->clk);
982
Florian Fainelli8cfa9492014-09-18 17:31:23 -0700983 ret = bcm_sf2_sw_rst(priv);
984 if (ret) {
985 pr_err("%s: failed to software reset switch\n", __func__);
986 return ret;
987 }
988
Rafał Miłeckia9349f02021-03-12 11:41:08 +0100989 bcm_sf2_crossbar_setup(priv);
990
Florian Fainelli1c0130f2018-11-06 12:58:39 -0800991 ret = bcm_sf2_cfp_resume(ds);
992 if (ret)
993 return ret;
994
Florian Fainellib0836682015-02-05 11:40:41 -0800995 if (priv->hw_params.num_gphy == 1)
996 bcm_sf2_gphy_enable_set(ds, true);
Florian Fainelli8cfa9492014-09-18 17:31:23 -0700997
Florian Fainelliabd01ba2018-10-09 16:48:58 -0700998 ds->ops->setup(ds);
Florian Fainelli32e47ff2017-10-11 10:57:51 -0700999
Florian Fainelli8cfa9492014-09-18 17:31:23 -07001000 return 0;
1001}
1002
Florian Fainelli96e65d72014-09-18 17:31:25 -07001003static void bcm_sf2_sw_get_wol(struct dsa_switch *ds, int port,
1004 struct ethtool_wolinfo *wol)
1005{
Vivien Didelot68bb8ea2019-10-21 16:51:15 -04001006 struct net_device *p = dsa_to_port(ds, port)->cpu_dp->master;
Florian Fainellif4589952016-08-26 12:18:33 -07001007 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainellic3152ec2019-02-15 12:16:52 -08001008 struct ethtool_wolinfo pwol = { };
Florian Fainelli96e65d72014-09-18 17:31:25 -07001009
1010 /* Get the parent device WoL settings */
Florian Fainellic3152ec2019-02-15 12:16:52 -08001011 if (p->ethtool_ops->get_wol)
1012 p->ethtool_ops->get_wol(p, &pwol);
Florian Fainelli96e65d72014-09-18 17:31:25 -07001013
1014 /* Advertise the parent device supported settings */
1015 wol->supported = pwol.supported;
1016 memset(&wol->sopass, 0, sizeof(wol->sopass));
1017
1018 if (pwol.wolopts & WAKE_MAGICSECURE)
1019 memcpy(&wol->sopass, pwol.sopass, sizeof(wol->sopass));
1020
1021 if (priv->wol_ports_mask & (1 << port))
1022 wol->wolopts = pwol.wolopts;
1023 else
1024 wol->wolopts = 0;
1025}
1026
1027static int bcm_sf2_sw_set_wol(struct dsa_switch *ds, int port,
1028 struct ethtool_wolinfo *wol)
1029{
Vivien Didelot68bb8ea2019-10-21 16:51:15 -04001030 struct net_device *p = dsa_to_port(ds, port)->cpu_dp->master;
Florian Fainellif4589952016-08-26 12:18:33 -07001031 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Vivien Didelot68bb8ea2019-10-21 16:51:15 -04001032 s8 cpu_port = dsa_to_port(ds, port)->cpu_dp->index;
Florian Fainellic3152ec2019-02-15 12:16:52 -08001033 struct ethtool_wolinfo pwol = { };
Florian Fainelli96e65d72014-09-18 17:31:25 -07001034
Florian Fainellic3152ec2019-02-15 12:16:52 -08001035 if (p->ethtool_ops->get_wol)
1036 p->ethtool_ops->get_wol(p, &pwol);
Florian Fainelli96e65d72014-09-18 17:31:25 -07001037 if (wol->wolopts & ~pwol.supported)
1038 return -EINVAL;
1039
1040 if (wol->wolopts)
1041 priv->wol_ports_mask |= (1 << port);
1042 else
1043 priv->wol_ports_mask &= ~(1 << port);
1044
1045 /* If we have at least one port enabled, make sure the CPU port
1046 * is also enabled. If the CPU port is the last one enabled, we disable
1047 * it since this configuration does not make sense.
1048 */
1049 if (priv->wol_ports_mask && priv->wol_ports_mask != (1 << cpu_port))
1050 priv->wol_ports_mask |= (1 << cpu_port);
1051 else
1052 priv->wol_ports_mask &= ~(1 << cpu_port);
1053
1054 return p->ethtool_ops->set_wol(p, wol);
1055}
1056
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001057static int bcm_sf2_sw_setup(struct dsa_switch *ds)
1058{
Florian Fainellif4589952016-08-26 12:18:33 -07001059 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001060 unsigned int port;
Florian Fainellid9338022016-08-18 15:30:14 -07001061
Florian Fainelli21a27742017-09-28 11:19:06 -07001062 /* Enable all valid ports and disable those unused */
Florian Fainellid9338022016-08-18 15:30:14 -07001063 for (port = 0; port < priv->hw_params.num_ports; port++) {
Florian Fainelli21a27742017-09-28 11:19:06 -07001064 /* IMP port receives special treatment */
Vivien Didelot4a5b85f2017-10-26 11:22:55 -04001065 if (dsa_is_user_port(ds, port))
Florian Fainelli21a27742017-09-28 11:19:06 -07001066 bcm_sf2_port_setup(ds, port, NULL);
1067 else if (dsa_is_cpu_port(ds, port))
Florian Fainellid9338022016-08-18 15:30:14 -07001068 bcm_sf2_imp_setup(ds, port);
Florian Fainelli21a27742017-09-28 11:19:06 -07001069 else
Andrew Lunn75104db2019-02-24 20:44:43 +01001070 bcm_sf2_port_disable(ds, port);
Florian Fainellid9338022016-08-18 15:30:14 -07001071 }
1072
Florian Fainelli5c1a6ea2017-10-27 15:56:01 -07001073 b53_configure_vlan(ds);
Florian Fainelli32e47ff2017-10-11 10:57:51 -07001074 bcm_sf2_enable_acb(ds);
Florian Fainellid9338022016-08-18 15:30:14 -07001075
Florian Fainelli4f6a5ca2020-09-09 10:49:31 -07001076 return b53_setup_devlink_resources(ds);
1077}
1078
1079static void bcm_sf2_sw_teardown(struct dsa_switch *ds)
1080{
1081 dsa_devlink_resources_unregister(ds);
Florian Fainellid9338022016-08-18 15:30:14 -07001082}
1083
Florian Fainellif4589952016-08-26 12:18:33 -07001084/* The SWITCH_CORE register space is managed by b53 but operates on a page +
1085 * register basis so we need to translate that into an address that the
1086 * bus-glue understands.
1087 */
1088#define SF2_PAGE_REG_MKADDR(page, reg) ((page) << 10 | (reg) << 2)
1089
1090static int bcm_sf2_core_read8(struct b53_device *dev, u8 page, u8 reg,
1091 u8 *val)
1092{
1093 struct bcm_sf2_priv *priv = dev->priv;
1094
1095 *val = core_readl(priv, SF2_PAGE_REG_MKADDR(page, reg));
1096
1097 return 0;
1098}
1099
1100static int bcm_sf2_core_read16(struct b53_device *dev, u8 page, u8 reg,
1101 u16 *val)
1102{
1103 struct bcm_sf2_priv *priv = dev->priv;
1104
1105 *val = core_readl(priv, SF2_PAGE_REG_MKADDR(page, reg));
1106
1107 return 0;
1108}
1109
1110static int bcm_sf2_core_read32(struct b53_device *dev, u8 page, u8 reg,
1111 u32 *val)
1112{
1113 struct bcm_sf2_priv *priv = dev->priv;
1114
1115 *val = core_readl(priv, SF2_PAGE_REG_MKADDR(page, reg));
1116
1117 return 0;
1118}
1119
1120static int bcm_sf2_core_read64(struct b53_device *dev, u8 page, u8 reg,
1121 u64 *val)
1122{
1123 struct bcm_sf2_priv *priv = dev->priv;
1124
1125 *val = core_readq(priv, SF2_PAGE_REG_MKADDR(page, reg));
1126
1127 return 0;
1128}
1129
1130static int bcm_sf2_core_write8(struct b53_device *dev, u8 page, u8 reg,
1131 u8 value)
1132{
1133 struct bcm_sf2_priv *priv = dev->priv;
1134
1135 core_writel(priv, value, SF2_PAGE_REG_MKADDR(page, reg));
1136
1137 return 0;
1138}
1139
1140static int bcm_sf2_core_write16(struct b53_device *dev, u8 page, u8 reg,
1141 u16 value)
1142{
1143 struct bcm_sf2_priv *priv = dev->priv;
1144
1145 core_writel(priv, value, SF2_PAGE_REG_MKADDR(page, reg));
1146
1147 return 0;
1148}
1149
1150static int bcm_sf2_core_write32(struct b53_device *dev, u8 page, u8 reg,
1151 u32 value)
1152{
1153 struct bcm_sf2_priv *priv = dev->priv;
1154
1155 core_writel(priv, value, SF2_PAGE_REG_MKADDR(page, reg));
1156
1157 return 0;
1158}
1159
1160static int bcm_sf2_core_write64(struct b53_device *dev, u8 page, u8 reg,
1161 u64 value)
1162{
1163 struct bcm_sf2_priv *priv = dev->priv;
1164
1165 core_writeq(priv, value, SF2_PAGE_REG_MKADDR(page, reg));
1166
1167 return 0;
1168}
1169
Bhumika Goyal7e3108f2017-08-29 22:17:52 +05301170static const struct b53_io_ops bcm_sf2_io_ops = {
Florian Fainellif4589952016-08-26 12:18:33 -07001171 .read8 = bcm_sf2_core_read8,
1172 .read16 = bcm_sf2_core_read16,
1173 .read32 = bcm_sf2_core_read32,
1174 .read48 = bcm_sf2_core_read64,
1175 .read64 = bcm_sf2_core_read64,
1176 .write8 = bcm_sf2_core_write8,
1177 .write16 = bcm_sf2_core_write16,
1178 .write32 = bcm_sf2_core_write32,
1179 .write48 = bcm_sf2_core_write64,
1180 .write64 = bcm_sf2_core_write64,
1181};
1182
Florian Fainellibadd62c2019-02-06 12:45:58 -08001183static void bcm_sf2_sw_get_strings(struct dsa_switch *ds, int port,
1184 u32 stringset, uint8_t *data)
1185{
Florian Fainellif4ae9c02019-02-06 12:45:59 -08001186 int cnt = b53_get_sset_count(ds, port, stringset);
1187
Florian Fainellibadd62c2019-02-06 12:45:58 -08001188 b53_get_strings(ds, port, stringset, data);
Florian Fainellif4ae9c02019-02-06 12:45:59 -08001189 bcm_sf2_cfp_get_strings(ds, port, stringset,
1190 data + cnt * ETH_GSTRING_LEN);
Florian Fainellibadd62c2019-02-06 12:45:58 -08001191}
1192
1193static void bcm_sf2_sw_get_ethtool_stats(struct dsa_switch *ds, int port,
1194 uint64_t *data)
1195{
Florian Fainellif4ae9c02019-02-06 12:45:59 -08001196 int cnt = b53_get_sset_count(ds, port, ETH_SS_STATS);
1197
Florian Fainellibadd62c2019-02-06 12:45:58 -08001198 b53_get_ethtool_stats(ds, port, data);
Florian Fainellif4ae9c02019-02-06 12:45:59 -08001199 bcm_sf2_cfp_get_ethtool_stats(ds, port, data + cnt);
Florian Fainellibadd62c2019-02-06 12:45:58 -08001200}
1201
1202static int bcm_sf2_sw_get_sset_count(struct dsa_switch *ds, int port,
1203 int sset)
1204{
Florian Fainellif4ae9c02019-02-06 12:45:59 -08001205 int cnt = b53_get_sset_count(ds, port, sset);
1206
1207 if (cnt < 0)
1208 return cnt;
1209
1210 cnt += bcm_sf2_cfp_get_sset_count(ds, port, sset);
1211
1212 return cnt;
Florian Fainellibadd62c2019-02-06 12:45:58 -08001213}
1214
Florian Fainellia82f67a2017-01-08 14:52:08 -08001215static const struct dsa_switch_ops bcm_sf2_ops = {
Florian Fainelli9f668162017-11-30 09:55:35 -08001216 .get_tag_protocol = b53_get_tag_protocol,
Florian Fainelli73095cb2017-01-08 14:52:06 -08001217 .setup = bcm_sf2_sw_setup,
Florian Fainelli4f6a5ca2020-09-09 10:49:31 -07001218 .teardown = bcm_sf2_sw_teardown,
Florian Fainellibadd62c2019-02-06 12:45:58 -08001219 .get_strings = bcm_sf2_sw_get_strings,
1220 .get_ethtool_stats = bcm_sf2_sw_get_ethtool_stats,
1221 .get_sset_count = bcm_sf2_sw_get_sset_count,
Florian Fainellic7d28c92018-04-25 12:12:53 -07001222 .get_ethtool_phy_stats = b53_get_ethtool_phy_stats,
Florian Fainelli73095cb2017-01-08 14:52:06 -08001223 .get_phy_flags = bcm_sf2_sw_get_phy_flags,
Florian Fainellibc0cb652018-05-10 13:17:33 -07001224 .phylink_validate = bcm_sf2_sw_validate,
1225 .phylink_mac_config = bcm_sf2_sw_mac_config,
1226 .phylink_mac_link_down = bcm_sf2_sw_mac_link_down,
1227 .phylink_mac_link_up = bcm_sf2_sw_mac_link_up,
1228 .phylink_fixed_state = bcm_sf2_sw_fixed_state,
Florian Fainelli73095cb2017-01-08 14:52:06 -08001229 .suspend = bcm_sf2_sw_suspend,
1230 .resume = bcm_sf2_sw_resume,
1231 .get_wol = bcm_sf2_sw_get_wol,
1232 .set_wol = bcm_sf2_sw_set_wol,
1233 .port_enable = bcm_sf2_port_setup,
1234 .port_disable = bcm_sf2_port_disable,
Florian Fainelli22256b02017-09-19 10:46:50 -07001235 .get_mac_eee = b53_get_mac_eee,
1236 .set_mac_eee = b53_set_mac_eee,
Florian Fainelli73095cb2017-01-08 14:52:06 -08001237 .port_bridge_join = b53_br_join,
1238 .port_bridge_leave = b53_br_leave,
Florian Fainellie6dd86e2021-02-22 14:30:09 -08001239 .port_pre_bridge_flags = b53_br_flags_pre,
1240 .port_bridge_flags = b53_br_flags,
Florian Fainelli73095cb2017-01-08 14:52:06 -08001241 .port_stp_state_set = b53_br_set_stp_state,
1242 .port_fast_age = b53_br_fast_age,
1243 .port_vlan_filtering = b53_vlan_filtering,
Florian Fainelli73095cb2017-01-08 14:52:06 -08001244 .port_vlan_add = b53_vlan_add,
1245 .port_vlan_del = b53_vlan_del,
Florian Fainelli73095cb2017-01-08 14:52:06 -08001246 .port_fdb_dump = b53_fdb_dump,
1247 .port_fdb_add = b53_fdb_add,
1248 .port_fdb_del = b53_fdb_del,
Florian Fainelli73181662017-01-30 09:48:43 -08001249 .get_rxnfc = bcm_sf2_get_rxnfc,
1250 .set_rxnfc = bcm_sf2_set_rxnfc,
Florian Fainelliec960de2017-01-30 12:41:43 -08001251 .port_mirror_add = b53_mirror_add,
1252 .port_mirror_del = b53_mirror_del,
Florian Fainelli29bb5e82019-10-24 12:45:08 -07001253 .port_mdb_add = b53_mdb_add,
1254 .port_mdb_del = b53_mdb_del,
Florian Fainelli73095cb2017-01-08 14:52:06 -08001255};
1256
Florian Fainellia78e86e2017-01-20 12:36:29 -08001257struct bcm_sf2_of_data {
1258 u32 type;
1259 const u16 *reg_offsets;
1260 unsigned int core_reg_align;
Florian Fainellidf191632017-08-30 12:39:33 -07001261 unsigned int num_cfp_rules;
Rafał Miłeckia9349f02021-03-12 11:41:08 +01001262 unsigned int num_crossbar_int_ports;
Florian Fainellia78e86e2017-01-20 12:36:29 -08001263};
1264
Rafał Miłecki73b7a602021-01-06 22:32:02 +01001265static const u16 bcm_sf2_4908_reg_offsets[] = {
1266 [REG_SWITCH_CNTRL] = 0x00,
1267 [REG_SWITCH_STATUS] = 0x04,
1268 [REG_DIR_DATA_WRITE] = 0x08,
1269 [REG_DIR_DATA_READ] = 0x0c,
1270 [REG_SWITCH_REVISION] = 0x10,
1271 [REG_PHY_REVISION] = 0x14,
1272 [REG_SPHY_CNTRL] = 0x24,
1273 [REG_CROSSBAR] = 0xc8,
Rafał Miłecki6859d912021-03-18 09:01:43 +01001274 [REG_RGMII_11_CNTRL] = 0x014c,
Rafał Miłeckiaf30f8e2021-12-29 18:16:42 +01001275 [REG_LED_0_CNTRL] = 0x40,
1276 [REG_LED_1_CNTRL] = 0x4c,
1277 [REG_LED_2_CNTRL] = 0x58,
1278 [REG_LED_3_CNTRL] = 0x64,
1279 [REG_LED_4_CNTRL] = 0x88,
1280 [REG_LED_5_CNTRL] = 0xa0,
1281 [REG_LED_AGGREGATE_CTRL] = 0xb8,
1282
Rafał Miłecki73b7a602021-01-06 22:32:02 +01001283};
1284
1285static const struct bcm_sf2_of_data bcm_sf2_4908_data = {
1286 .type = BCM4908_DEVICE_ID,
1287 .core_reg_align = 0,
1288 .reg_offsets = bcm_sf2_4908_reg_offsets,
Florian Fainellif4e6d7c2021-03-12 13:11:01 -08001289 .num_cfp_rules = 256,
Rafał Miłeckia9349f02021-03-12 11:41:08 +01001290 .num_crossbar_int_ports = 2,
Rafał Miłecki73b7a602021-01-06 22:32:02 +01001291};
1292
Florian Fainellia78e86e2017-01-20 12:36:29 -08001293/* Register offsets for the SWITCH_REG_* block */
1294static const u16 bcm_sf2_7445_reg_offsets[] = {
1295 [REG_SWITCH_CNTRL] = 0x00,
1296 [REG_SWITCH_STATUS] = 0x04,
1297 [REG_DIR_DATA_WRITE] = 0x08,
1298 [REG_DIR_DATA_READ] = 0x0C,
1299 [REG_SWITCH_REVISION] = 0x18,
1300 [REG_PHY_REVISION] = 0x1C,
1301 [REG_SPHY_CNTRL] = 0x2C,
1302 [REG_RGMII_0_CNTRL] = 0x34,
1303 [REG_RGMII_1_CNTRL] = 0x40,
1304 [REG_RGMII_2_CNTRL] = 0x4c,
1305 [REG_LED_0_CNTRL] = 0x90,
1306 [REG_LED_1_CNTRL] = 0x94,
1307 [REG_LED_2_CNTRL] = 0x98,
1308};
1309
1310static const struct bcm_sf2_of_data bcm_sf2_7445_data = {
1311 .type = BCM7445_DEVICE_ID,
1312 .core_reg_align = 0,
1313 .reg_offsets = bcm_sf2_7445_reg_offsets,
Florian Fainellidf191632017-08-30 12:39:33 -07001314 .num_cfp_rules = 256,
Florian Fainellia78e86e2017-01-20 12:36:29 -08001315};
1316
Florian Fainelli0fe99332017-01-20 12:36:30 -08001317static const u16 bcm_sf2_7278_reg_offsets[] = {
1318 [REG_SWITCH_CNTRL] = 0x00,
1319 [REG_SWITCH_STATUS] = 0x04,
1320 [REG_DIR_DATA_WRITE] = 0x08,
1321 [REG_DIR_DATA_READ] = 0x0c,
1322 [REG_SWITCH_REVISION] = 0x10,
1323 [REG_PHY_REVISION] = 0x14,
1324 [REG_SPHY_CNTRL] = 0x24,
1325 [REG_RGMII_0_CNTRL] = 0xe0,
1326 [REG_RGMII_1_CNTRL] = 0xec,
1327 [REG_RGMII_2_CNTRL] = 0xf8,
1328 [REG_LED_0_CNTRL] = 0x40,
1329 [REG_LED_1_CNTRL] = 0x4c,
1330 [REG_LED_2_CNTRL] = 0x58,
1331};
1332
1333static const struct bcm_sf2_of_data bcm_sf2_7278_data = {
1334 .type = BCM7278_DEVICE_ID,
1335 .core_reg_align = 1,
1336 .reg_offsets = bcm_sf2_7278_reg_offsets,
Florian Fainellidf191632017-08-30 12:39:33 -07001337 .num_cfp_rules = 128,
Florian Fainelli0fe99332017-01-20 12:36:30 -08001338};
1339
Florian Fainellia78e86e2017-01-20 12:36:29 -08001340static const struct of_device_id bcm_sf2_of_match[] = {
Rafał Miłecki73b7a602021-01-06 22:32:02 +01001341 { .compatible = "brcm,bcm4908-switch",
1342 .data = &bcm_sf2_4908_data
1343 },
Florian Fainellia78e86e2017-01-20 12:36:29 -08001344 { .compatible = "brcm,bcm7445-switch-v4.0",
1345 .data = &bcm_sf2_7445_data
1346 },
Florian Fainelli0fe99332017-01-20 12:36:30 -08001347 { .compatible = "brcm,bcm7278-switch-v4.0",
1348 .data = &bcm_sf2_7278_data
1349 },
Florian Fainelli3b07d782017-12-14 17:59:40 -08001350 { .compatible = "brcm,bcm7278-switch-v4.8",
1351 .data = &bcm_sf2_7278_data
1352 },
Florian Fainellia78e86e2017-01-20 12:36:29 -08001353 { /* sentinel */ },
1354};
1355MODULE_DEVICE_TABLE(of, bcm_sf2_of_match);
1356
Florian Fainellid9338022016-08-18 15:30:14 -07001357static int bcm_sf2_sw_probe(struct platform_device *pdev)
1358{
1359 const char *reg_names[BCM_SF2_REGS_NUM] = BCM_SF2_REGS_NAME;
1360 struct device_node *dn = pdev->dev.of_node;
Florian Fainellia78e86e2017-01-20 12:36:29 -08001361 const struct of_device_id *of_id = NULL;
1362 const struct bcm_sf2_of_data *data;
Florian Fainellif4589952016-08-26 12:18:33 -07001363 struct b53_platform_data *pdata;
Florian Fainellia4c61b92017-01-07 21:01:56 -08001364 struct dsa_switch_ops *ops;
Florian Fainelliafa3b592020-04-05 13:00:30 -07001365 struct device_node *ports;
Florian Fainellid9338022016-08-18 15:30:14 -07001366 struct bcm_sf2_priv *priv;
Florian Fainellif4589952016-08-26 12:18:33 -07001367 struct b53_device *dev;
Florian Fainellid9338022016-08-18 15:30:14 -07001368 struct dsa_switch *ds;
1369 void __iomem **base;
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001370 unsigned int i;
1371 u32 reg, rev;
1372 int ret;
1373
Florian Fainellif4589952016-08-26 12:18:33 -07001374 priv = devm_kzalloc(&pdev->dev, sizeof(*priv), GFP_KERNEL);
1375 if (!priv)
Florian Fainellid9338022016-08-18 15:30:14 -07001376 return -ENOMEM;
1377
Florian Fainellia4c61b92017-01-07 21:01:56 -08001378 ops = devm_kzalloc(&pdev->dev, sizeof(*ops), GFP_KERNEL);
1379 if (!ops)
1380 return -ENOMEM;
1381
Florian Fainellif4589952016-08-26 12:18:33 -07001382 dev = b53_switch_alloc(&pdev->dev, &bcm_sf2_io_ops, priv);
1383 if (!dev)
1384 return -ENOMEM;
Florian Fainellid9338022016-08-18 15:30:14 -07001385
Florian Fainellif4589952016-08-26 12:18:33 -07001386 pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL);
1387 if (!pdata)
1388 return -ENOMEM;
1389
Florian Fainellia78e86e2017-01-20 12:36:29 -08001390 of_id = of_match_node(bcm_sf2_of_match, dn);
1391 if (!of_id || !of_id->data)
1392 return -EINVAL;
1393
1394 data = of_id->data;
1395
1396 /* Set SWITCH_REG register offsets and SWITCH_CORE align factor */
1397 priv->type = data->type;
1398 priv->reg_offsets = data->reg_offsets;
1399 priv->core_reg_align = data->core_reg_align;
Florian Fainellidf191632017-08-30 12:39:33 -07001400 priv->num_cfp_rules = data->num_cfp_rules;
Rafał Miłeckia9349f02021-03-12 11:41:08 +01001401 priv->num_crossbar_int_ports = data->num_crossbar_int_ports;
Florian Fainellia78e86e2017-01-20 12:36:29 -08001402
Florian Fainellieee87e42019-11-04 13:51:39 -08001403 priv->rcdev = devm_reset_control_get_optional_exclusive(&pdev->dev,
1404 "switch");
Philipp Zabelbf9279c2021-03-05 10:14:48 +01001405 if (IS_ERR(priv->rcdev))
Florian Fainellieee87e42019-11-04 13:51:39 -08001406 return PTR_ERR(priv->rcdev);
1407
Florian Fainellif4589952016-08-26 12:18:33 -07001408 /* Auto-detection using standard registers will not work, so
1409 * provide an indication of what kind of device we are for
1410 * b53_common to work with
1411 */
Florian Fainellia78e86e2017-01-20 12:36:29 -08001412 pdata->chip_id = priv->type;
Florian Fainellif4589952016-08-26 12:18:33 -07001413 dev->pdata = pdata;
1414
1415 priv->dev = dev;
1416 ds = dev->ds;
Florian Fainelli73095cb2017-01-08 14:52:06 -08001417 ds->ops = &bcm_sf2_ops;
Florian Fainellif4589952016-08-26 12:18:33 -07001418
Florian Fainelli181183772017-09-03 20:27:02 -07001419 /* Advertise the 8 egress queues */
1420 ds->num_tx_queues = SF2_NUM_EGRESS_QUEUES;
1421
Florian Fainellif4589952016-08-26 12:18:33 -07001422 dev_set_drvdata(&pdev->dev, priv);
Florian Fainellid9338022016-08-18 15:30:14 -07001423
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001424 spin_lock_init(&priv->indir_lock);
Florian Fainelli73181662017-01-30 09:48:43 -08001425 mutex_init(&priv->cfp.lock);
Florian Fainelliae7a5af2018-11-06 12:58:37 -08001426 INIT_LIST_HEAD(&priv->cfp.rules_list);
Florian Fainelli73181662017-01-30 09:48:43 -08001427
1428 /* CFP rule #0 cannot be used for specific classifications, flag it as
1429 * permanently used
1430 */
1431 set_bit(0, priv->cfp.used);
Florian Fainelliba0696c2017-10-20 14:39:47 -07001432 set_bit(0, priv->cfp.unique);
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001433
Florian Fainelli8dbe4c52020-06-17 20:42:44 -07001434 /* Balance of_node_put() done by of_find_node_by_name() */
1435 of_node_get(dn);
Florian Fainelliafa3b592020-04-05 13:00:30 -07001436 ports = of_find_node_by_name(dn, "ports");
1437 if (ports) {
1438 bcm_sf2_identify_ports(priv, ports);
1439 of_node_put(ports);
1440 }
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001441
1442 priv->irq0 = irq_of_parse_and_map(dn, 0);
1443 priv->irq1 = irq_of_parse_and_map(dn, 1);
1444
1445 base = &priv->core;
1446 for (i = 0; i < BCM_SF2_REGS_NUM; i++) {
YueHaibing42376782019-08-01 20:29:11 +08001447 *base = devm_platform_ioremap_resource(pdev, i);
Florian Fainelli4bd11672016-08-18 15:30:15 -07001448 if (IS_ERR(*base)) {
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001449 pr_err("unable to find register: %s\n", reg_names[i]);
Florian Fainelli4bd11672016-08-18 15:30:15 -07001450 return PTR_ERR(*base);
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001451 }
1452 base++;
1453 }
1454
Florian Fainellie9ec5c32020-09-01 15:59:12 -07001455 priv->clk = devm_clk_get_optional(&pdev->dev, "sw_switch");
1456 if (IS_ERR(priv->clk))
1457 return PTR_ERR(priv->clk);
1458
1459 clk_prepare_enable(priv->clk);
1460
Florian Fainelli2ee3adc2020-09-01 15:59:13 -07001461 priv->clk_mdiv = devm_clk_get_optional(&pdev->dev, "sw_switch_mdiv");
1462 if (IS_ERR(priv->clk_mdiv)) {
1463 ret = PTR_ERR(priv->clk_mdiv);
1464 goto out_clk;
1465 }
1466
1467 clk_prepare_enable(priv->clk_mdiv);
1468
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001469 ret = bcm_sf2_sw_rst(priv);
1470 if (ret) {
1471 pr_err("unable to software reset switch: %d\n", ret);
Florian Fainelli2ee3adc2020-09-01 15:59:13 -07001472 goto out_clk_mdiv;
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001473 }
1474
Rafał Miłeckia9349f02021-03-12 11:41:08 +01001475 bcm_sf2_crossbar_setup(priv);
1476
Florian Fainellic04a17d2018-11-06 15:15:16 -08001477 bcm_sf2_gphy_enable_set(priv->dev->ds, true);
1478
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001479 ret = bcm_sf2_mdio_register(ds);
1480 if (ret) {
1481 pr_err("failed to register MDIO bus\n");
Florian Fainelli2ee3adc2020-09-01 15:59:13 -07001482 goto out_clk_mdiv;
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001483 }
1484
Florian Fainellic04a17d2018-11-06 15:15:16 -08001485 bcm_sf2_gphy_enable_set(priv->dev->ds, false);
1486
Florian Fainelli73181662017-01-30 09:48:43 -08001487 ret = bcm_sf2_cfp_rst(priv);
1488 if (ret) {
1489 pr_err("failed to reset CFP\n");
1490 goto out_mdio;
1491 }
1492
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001493 /* Disable all interrupts and request them */
1494 bcm_sf2_intr_disable(priv);
1495
Florian Fainelli4bd11672016-08-18 15:30:15 -07001496 ret = devm_request_irq(&pdev->dev, priv->irq0, bcm_sf2_switch_0_isr, 0,
Florian Fainellibc0cb652018-05-10 13:17:33 -07001497 "switch_0", ds);
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001498 if (ret < 0) {
1499 pr_err("failed to request switch_0 IRQ\n");
Florian Fainellibb9c0fa2016-07-29 12:35:57 -07001500 goto out_mdio;
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001501 }
1502
Florian Fainelli4bd11672016-08-18 15:30:15 -07001503 ret = devm_request_irq(&pdev->dev, priv->irq1, bcm_sf2_switch_1_isr, 0,
Florian Fainellibc0cb652018-05-10 13:17:33 -07001504 "switch_1", ds);
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001505 if (ret < 0) {
1506 pr_err("failed to request switch_1 IRQ\n");
Florian Fainelli4bd11672016-08-18 15:30:15 -07001507 goto out_mdio;
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001508 }
1509
1510 /* Reset the MIB counters */
1511 reg = core_readl(priv, CORE_GMNCFGCFG);
1512 reg |= RST_MIB_CNT;
1513 core_writel(priv, reg, CORE_GMNCFGCFG);
1514 reg &= ~RST_MIB_CNT;
1515 core_writel(priv, reg, CORE_GMNCFGCFG);
1516
1517 /* Get the maximum number of ports for this switch */
1518 priv->hw_params.num_ports = core_readl(priv, CORE_IMP0_PRT_ID) + 1;
1519 if (priv->hw_params.num_ports > DSA_MAX_PORTS)
1520 priv->hw_params.num_ports = DSA_MAX_PORTS;
1521
1522 /* Assume a single GPHY setup if we can't read that property */
1523 if (of_property_read_u32(dn, "brcm,num-gphy",
1524 &priv->hw_params.num_gphy))
1525 priv->hw_params.num_gphy = 1;
1526
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001527 rev = reg_readl(priv, REG_SWITCH_REVISION);
1528 priv->hw_params.top_rev = (rev >> SWITCH_TOP_REV_SHIFT) &
1529 SWITCH_TOP_REV_MASK;
1530 priv->hw_params.core_rev = (rev & SF2_REV_MASK);
1531
1532 rev = reg_readl(priv, REG_PHY_REVISION);
1533 priv->hw_params.gphy_rev = rev & PHY_REVISION_MASK;
1534
Florian Fainellif4589952016-08-26 12:18:33 -07001535 ret = b53_switch_register(dev);
Florian Fainellid9338022016-08-18 15:30:14 -07001536 if (ret)
Florian Fainelli4bd11672016-08-18 15:30:15 -07001537 goto out_mdio;
Florian Fainellid9338022016-08-18 15:30:14 -07001538
Florian Fainellifbb7bc42019-03-20 09:45:16 -07001539 dev_info(&pdev->dev,
1540 "Starfighter 2 top: %x.%02x, core: %x.%02x, IRQs: %d, %d\n",
1541 priv->hw_params.top_rev >> 8, priv->hw_params.top_rev & 0xff,
1542 priv->hw_params.core_rev >> 8, priv->hw_params.core_rev & 0xff,
1543 priv->irq0, priv->irq1);
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001544
1545 return 0;
1546
Florian Fainellibb9c0fa2016-07-29 12:35:57 -07001547out_mdio:
1548 bcm_sf2_mdio_unregister(priv);
Florian Fainelli2ee3adc2020-09-01 15:59:13 -07001549out_clk_mdiv:
1550 clk_disable_unprepare(priv->clk_mdiv);
Florian Fainellie9ec5c32020-09-01 15:59:12 -07001551out_clk:
1552 clk_disable_unprepare(priv->clk);
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001553 return ret;
1554}
1555
Florian Fainellid9338022016-08-18 15:30:14 -07001556static int bcm_sf2_sw_remove(struct platform_device *pdev)
Florian Fainelli246d7f72014-08-27 17:04:56 -07001557{
Florian Fainellif4589952016-08-26 12:18:33 -07001558 struct bcm_sf2_priv *priv = platform_get_drvdata(pdev);
Florian Fainellid9338022016-08-18 15:30:14 -07001559
Vladimir Oltean0650bf52021-09-17 16:34:33 +03001560 if (!priv)
1561 return 0;
1562
Florian Fainellid9338022016-08-18 15:30:14 -07001563 priv->wol_ports_mask = 0;
Florian Fainellie6840002019-11-02 20:17:39 -07001564 /* Disable interrupts */
1565 bcm_sf2_intr_disable(priv);
Florian Fainellif4589952016-08-26 12:18:33 -07001566 dsa_unregister_switch(priv->dev->ds);
Florian Fainelliae7a5af2018-11-06 12:58:37 -08001567 bcm_sf2_cfp_exit(priv->dev->ds);
Florian Fainellid9338022016-08-18 15:30:14 -07001568 bcm_sf2_mdio_unregister(priv);
Florian Fainelli2ee3adc2020-09-01 15:59:13 -07001569 clk_disable_unprepare(priv->clk_mdiv);
Florian Fainellie9ec5c32020-09-01 15:59:12 -07001570 clk_disable_unprepare(priv->clk);
Philipp Zabelbf9279c2021-03-05 10:14:48 +01001571 if (priv->type == BCM7278_DEVICE_ID)
Florian Fainellieee87e42019-11-04 13:51:39 -08001572 reset_control_assert(priv->rcdev);
Florian Fainelli246d7f72014-08-27 17:04:56 -07001573
Vladimir Oltean0650bf52021-09-17 16:34:33 +03001574 platform_set_drvdata(pdev, NULL);
1575
Florian Fainelli246d7f72014-08-27 17:04:56 -07001576 return 0;
1577}
Florian Fainelli246d7f72014-08-27 17:04:56 -07001578
Florian Fainelli2399d612016-10-20 09:32:19 -07001579static void bcm_sf2_sw_shutdown(struct platform_device *pdev)
1580{
1581 struct bcm_sf2_priv *priv = platform_get_drvdata(pdev);
1582
Vladimir Oltean0650bf52021-09-17 16:34:33 +03001583 if (!priv)
1584 return;
1585
Florian Fainelli2399d612016-10-20 09:32:19 -07001586 /* For a kernel about to be kexec'd we want to keep the GPHY on for a
1587 * successful MDIO bus scan to occur. If we did turn off the GPHY
1588 * before (e.g: port_disable), this will also power it back on.
Florian Fainelli4a2947e2016-10-21 14:21:56 -07001589 *
1590 * Do not rely on kexec_in_progress, just power the PHY on.
Florian Fainelli2399d612016-10-20 09:32:19 -07001591 */
1592 if (priv->hw_params.num_gphy == 1)
Florian Fainelli4a2947e2016-10-21 14:21:56 -07001593 bcm_sf2_gphy_enable_set(priv->dev->ds, true);
Vladimir Oltean0650bf52021-09-17 16:34:33 +03001594
1595 dsa_switch_shutdown(priv->dev->ds);
1596
1597 platform_set_drvdata(pdev, NULL);
Florian Fainelli2399d612016-10-20 09:32:19 -07001598}
1599
Florian Fainellid9338022016-08-18 15:30:14 -07001600#ifdef CONFIG_PM_SLEEP
1601static int bcm_sf2_suspend(struct device *dev)
Florian Fainelli246d7f72014-08-27 17:04:56 -07001602{
Wolfram Sang63382e02018-10-21 22:00:12 +02001603 struct bcm_sf2_priv *priv = dev_get_drvdata(dev);
Florian Fainellid9338022016-08-18 15:30:14 -07001604
Florian Fainellif4589952016-08-26 12:18:33 -07001605 return dsa_switch_suspend(priv->dev->ds);
Florian Fainelli246d7f72014-08-27 17:04:56 -07001606}
Florian Fainellid9338022016-08-18 15:30:14 -07001607
1608static int bcm_sf2_resume(struct device *dev)
1609{
Wolfram Sang63382e02018-10-21 22:00:12 +02001610 struct bcm_sf2_priv *priv = dev_get_drvdata(dev);
Florian Fainellid9338022016-08-18 15:30:14 -07001611
Florian Fainellif4589952016-08-26 12:18:33 -07001612 return dsa_switch_resume(priv->dev->ds);
Florian Fainellid9338022016-08-18 15:30:14 -07001613}
1614#endif /* CONFIG_PM_SLEEP */
1615
1616static SIMPLE_DEV_PM_OPS(bcm_sf2_pm_ops,
1617 bcm_sf2_suspend, bcm_sf2_resume);
1618
Florian Fainellid9338022016-08-18 15:30:14 -07001619
1620static struct platform_driver bcm_sf2_driver = {
1621 .probe = bcm_sf2_sw_probe,
1622 .remove = bcm_sf2_sw_remove,
Florian Fainelli2399d612016-10-20 09:32:19 -07001623 .shutdown = bcm_sf2_sw_shutdown,
Florian Fainellid9338022016-08-18 15:30:14 -07001624 .driver = {
1625 .name = "brcm-sf2",
1626 .of_match_table = bcm_sf2_of_match,
1627 .pm = &bcm_sf2_pm_ops,
1628 },
1629};
1630module_platform_driver(bcm_sf2_driver);
Florian Fainelli246d7f72014-08-27 17:04:56 -07001631
1632MODULE_AUTHOR("Broadcom Corporation");
1633MODULE_DESCRIPTION("Driver for Broadcom Starfighter 2 ethernet switch chip");
1634MODULE_LICENSE("GPL");
1635MODULE_ALIAS("platform:brcm-sf2");