blob: 9ce5a0dbcde1bbf568b55c9013016349d64a33af [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Florian Fainelli246d7f72014-08-27 17:04:56 -07002/*
3 * Broadcom Starfighter 2 DSA switch driver
4 *
5 * Copyright (C) 2014, Broadcom Corporation
Florian Fainelli246d7f72014-08-27 17:04:56 -07006 */
7
8#include <linux/list.h>
9#include <linux/module.h>
10#include <linux/netdevice.h>
11#include <linux/interrupt.h>
12#include <linux/platform_device.h>
Florian Fainelli246d7f72014-08-27 17:04:56 -070013#include <linux/phy.h>
14#include <linux/phy_fixed.h>
Florian Fainellibc0cb652018-05-10 13:17:33 -070015#include <linux/phylink.h>
Florian Fainelli246d7f72014-08-27 17:04:56 -070016#include <linux/mii.h>
17#include <linux/of.h>
18#include <linux/of_irq.h>
19#include <linux/of_address.h>
Florian Fainelli8b7c94e2015-10-23 12:11:08 -070020#include <linux/of_net.h>
Florian Fainelli461cd1b02016-06-07 16:32:43 -070021#include <linux/of_mdio.h>
Florian Fainelli246d7f72014-08-27 17:04:56 -070022#include <net/dsa.h>
Florian Fainelli96e65d72014-09-18 17:31:25 -070023#include <linux/ethtool.h>
Florian Fainelli12f460f2015-02-24 13:15:34 -080024#include <linux/if_bridge.h>
Florian Fainelliaafc66f2015-06-10 18:08:01 -070025#include <linux/brcmphy.h>
Florian Fainelli680060d2015-10-23 11:38:07 -070026#include <linux/etherdevice.h>
Florian Fainellif4589952016-08-26 12:18:33 -070027#include <linux/platform_data/b53.h>
Florian Fainelli246d7f72014-08-27 17:04:56 -070028
29#include "bcm_sf2.h"
30#include "bcm_sf2_regs.h"
Florian Fainellif4589952016-08-26 12:18:33 -070031#include "b53/b53_priv.h"
32#include "b53/b53_regs.h"
Florian Fainelli246d7f72014-08-27 17:04:56 -070033
Florian Fainelliebb2ac42017-01-20 12:36:31 -080034static void bcm_sf2_imp_setup(struct dsa_switch *ds, int port)
35{
36 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainellic837fc82017-09-03 20:27:03 -070037 unsigned int i;
Florian Fainelliebb2ac42017-01-20 12:36:31 -080038 u32 reg, offset;
39
Florian Fainelliebb2ac42017-01-20 12:36:31 -080040 /* Enable the port memories */
41 reg = core_readl(priv, CORE_MEM_PSM_VDD_CTRL);
42 reg &= ~P_TXQ_PSM_VDD(port);
43 core_writel(priv, reg, CORE_MEM_PSM_VDD_CTRL);
44
Florian Fainelliebb2ac42017-01-20 12:36:31 -080045 /* Enable forwarding */
46 core_writel(priv, SW_FWDG_EN, CORE_SWMODE);
47
48 /* Enable IMP port in dumb mode */
49 reg = core_readl(priv, CORE_SWITCH_CTRL);
50 reg |= MII_DUMB_FWDG_EN;
51 core_writel(priv, reg, CORE_SWITCH_CTRL);
52
Florian Fainellic837fc82017-09-03 20:27:03 -070053 /* Configure Traffic Class to QoS mapping, allow each priority to map
54 * to a different queue number
55 */
56 reg = core_readl(priv, CORE_PORT_TC2_QOS_MAP_PORT(port));
57 for (i = 0; i < SF2_NUM_EGRESS_QUEUES; i++)
58 reg |= i << (PRT_TO_QID_SHIFT * i);
59 core_writel(priv, reg, CORE_PORT_TC2_QOS_MAP_PORT(port));
60
Florian Fainellib409a9e2017-09-19 10:46:48 -070061 b53_brcm_hdr_setup(ds, port);
Florian Fainelli246d7f72014-08-27 17:04:56 -070062
Florian Fainelli5fc0f212019-10-31 15:54:05 -070063 if (port == 8) {
64 if (priv->type == BCM7445_DEVICE_ID)
65 offset = CORE_STS_OVERRIDE_IMP;
66 else
67 offset = CORE_STS_OVERRIDE_IMP2;
68
69 /* Force link status for IMP port */
70 reg = core_readl(priv, offset);
71 reg |= (MII_SW_OR | LINK_STS);
72 core_writel(priv, reg, offset);
73
74 /* Enable Broadcast, Multicast, Unicast forwarding to IMP port */
75 reg = core_readl(priv, CORE_IMP_CTL);
76 reg |= (RX_BCST_EN | RX_MCST_EN | RX_UCST_EN);
77 reg &= ~(RX_DIS | TX_DIS);
78 core_writel(priv, reg, CORE_IMP_CTL);
79 } else {
80 reg = core_readl(priv, CORE_G_PCTL_PORT(port));
81 reg &= ~(RX_DIS | TX_DIS);
82 core_writel(priv, reg, CORE_G_PCTL_PORT(port));
83 }
Florian Fainelli246d7f72014-08-27 17:04:56 -070084}
85
Florian Fainellib0836682015-02-05 11:40:41 -080086static void bcm_sf2_gphy_enable_set(struct dsa_switch *ds, bool enable)
87{
Florian Fainellif4589952016-08-26 12:18:33 -070088 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainellib0836682015-02-05 11:40:41 -080089 u32 reg;
90
Florian Fainelli9af197a2015-02-05 11:40:42 -080091 reg = reg_readl(priv, REG_SPHY_CNTRL);
92 if (enable) {
93 reg |= PHY_RESET;
Florian Fainelli4b52d012017-11-21 17:37:46 -080094 reg &= ~(EXT_PWR_DOWN | IDDQ_BIAS | IDDQ_GLOBAL_PWR | CK25_DIS);
Florian Fainelli9af197a2015-02-05 11:40:42 -080095 reg_writel(priv, reg, REG_SPHY_CNTRL);
96 udelay(21);
97 reg = reg_readl(priv, REG_SPHY_CNTRL);
98 reg &= ~PHY_RESET;
99 } else {
100 reg |= EXT_PWR_DOWN | IDDQ_BIAS | PHY_RESET;
101 reg_writel(priv, reg, REG_SPHY_CNTRL);
102 mdelay(1);
103 reg |= CK25_DIS;
104 }
105 reg_writel(priv, reg, REG_SPHY_CNTRL);
Florian Fainellib0836682015-02-05 11:40:41 -0800106
Florian Fainelli9af197a2015-02-05 11:40:42 -0800107 /* Use PHY-driven LED signaling */
108 if (!enable) {
109 reg = reg_readl(priv, REG_LED_CNTRL(0));
110 reg |= SPDLNK_SRC_SEL;
111 reg_writel(priv, reg, REG_LED_CNTRL(0));
112 }
Florian Fainellib0836682015-02-05 11:40:41 -0800113}
114
Florian Fainelli8b7c94e2015-10-23 12:11:08 -0700115static inline void bcm_sf2_port_intr_enable(struct bcm_sf2_priv *priv,
116 int port)
117{
118 unsigned int off;
119
120 switch (port) {
121 case 7:
122 off = P7_IRQ_OFF;
123 break;
124 case 0:
125 /* Port 0 interrupts are located on the first bank */
126 intrl2_0_mask_clear(priv, P_IRQ_MASK(P0_IRQ_OFF));
127 return;
128 default:
129 off = P_IRQ_OFF(port);
130 break;
131 }
132
133 intrl2_1_mask_clear(priv, P_IRQ_MASK(off));
134}
135
136static inline void bcm_sf2_port_intr_disable(struct bcm_sf2_priv *priv,
137 int port)
138{
139 unsigned int off;
140
141 switch (port) {
142 case 7:
143 off = P7_IRQ_OFF;
144 break;
145 case 0:
146 /* Port 0 interrupts are located on the first bank */
147 intrl2_0_mask_set(priv, P_IRQ_MASK(P0_IRQ_OFF));
148 intrl2_0_writel(priv, P_IRQ_MASK(P0_IRQ_OFF), INTRL2_CPU_CLEAR);
149 return;
150 default:
151 off = P_IRQ_OFF(port);
152 break;
153 }
154
155 intrl2_1_mask_set(priv, P_IRQ_MASK(off));
156 intrl2_1_writel(priv, P_IRQ_MASK(off), INTRL2_CPU_CLEAR);
157}
158
Florian Fainellib6d045d2014-09-24 17:05:20 -0700159static int bcm_sf2_port_setup(struct dsa_switch *ds, int port,
160 struct phy_device *phy)
Florian Fainelli246d7f72014-08-27 17:04:56 -0700161{
Florian Fainellif4589952016-08-26 12:18:33 -0700162 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainellie1b91472017-01-30 09:48:41 -0800163 unsigned int i;
Florian Fainelli246d7f72014-08-27 17:04:56 -0700164 u32 reg;
165
Vivien Didelot74be4ba2019-08-19 16:00:49 -0400166 if (!dsa_is_user_port(ds, port))
167 return 0;
168
Florian Fainelli246d7f72014-08-27 17:04:56 -0700169 /* Clear the memory power down */
170 reg = core_readl(priv, CORE_MEM_PSM_VDD_CTRL);
171 reg &= ~P_TXQ_PSM_VDD(port);
172 core_writel(priv, reg, CORE_MEM_PSM_VDD_CTRL);
173
Florian Fainellic0e68202018-08-03 11:08:42 -0700174 /* Enable learning */
175 reg = core_readl(priv, CORE_DIS_LEARN);
176 reg &= ~BIT(port);
177 core_writel(priv, reg, CORE_DIS_LEARN);
178
Florian Fainelli64ff2ae2017-01-20 12:36:32 -0800179 /* Enable Broadcom tags for that port if requested */
180 if (priv->brcm_tag_mask & BIT(port))
Florian Fainellib409a9e2017-09-19 10:46:48 -0700181 b53_brcm_hdr_setup(ds, port);
Florian Fainelli64ff2ae2017-01-20 12:36:32 -0800182
Florian Fainellie1b91472017-01-30 09:48:41 -0800183 /* Configure Traffic Class to QoS mapping, allow each priority to map
184 * to a different queue number
185 */
186 reg = core_readl(priv, CORE_PORT_TC2_QOS_MAP_PORT(port));
Florian Fainelli181183772017-09-03 20:27:02 -0700187 for (i = 0; i < SF2_NUM_EGRESS_QUEUES; i++)
Florian Fainellie1b91472017-01-30 09:48:41 -0800188 reg |= i << (PRT_TO_QID_SHIFT * i);
189 core_writel(priv, reg, CORE_PORT_TC2_QOS_MAP_PORT(port));
190
Florian Fainelli9af197a2015-02-05 11:40:42 -0800191 /* Re-enable the GPHY and re-apply workarounds */
Florian Fainelli8b7c94e2015-10-23 12:11:08 -0700192 if (priv->int_phy_mask & 1 << port && priv->hw_params.num_gphy == 1) {
Florian Fainelli9af197a2015-02-05 11:40:42 -0800193 bcm_sf2_gphy_enable_set(ds, true);
194 if (phy) {
195 /* if phy_stop() has been called before, phy
196 * will be in halted state, and phy_start()
197 * will call resume.
198 *
199 * the resume path does not configure back
200 * autoneg settings, and since we hard reset
201 * the phy manually here, we need to reset the
202 * state machine also.
203 */
204 phy->state = PHY_READY;
205 phy_init_hw(phy);
206 }
207 }
208
Florian Fainelli8b7c94e2015-10-23 12:11:08 -0700209 /* Enable MoCA port interrupts to get notified */
210 if (port == priv->moca_port)
211 bcm_sf2_port_intr_enable(priv, port);
Florian Fainelli246d7f72014-08-27 17:04:56 -0700212
Florian Fainelli32e47ff2017-10-11 10:57:51 -0700213 /* Set per-queue pause threshold to 32 */
214 core_writel(priv, 32, CORE_TXQ_THD_PAUSE_QN_PORT(port));
215
216 /* Set ACB threshold to 24 */
217 for (i = 0; i < SF2_NUM_EGRESS_QUEUES; i++) {
218 reg = acb_readl(priv, ACB_QUEUE_CFG(port *
219 SF2_NUM_EGRESS_QUEUES + i));
220 reg &= ~XOFF_THRESHOLD_MASK;
221 reg |= 24;
222 acb_writel(priv, reg, ACB_QUEUE_CFG(port *
223 SF2_NUM_EGRESS_QUEUES + i));
224 }
225
Florian Fainellif86ad772017-09-19 10:46:54 -0700226 return b53_enable_port(ds, port, phy);
Florian Fainelli246d7f72014-08-27 17:04:56 -0700227}
228
Andrew Lunn75104db2019-02-24 20:44:43 +0100229static void bcm_sf2_port_disable(struct dsa_switch *ds, int port)
Florian Fainelli246d7f72014-08-27 17:04:56 -0700230{
Florian Fainellif4589952016-08-26 12:18:33 -0700231 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Colin Ian King5c17a072018-07-04 07:54:36 +0100232 u32 reg;
Florian Fainelli246d7f72014-08-27 17:04:56 -0700233
Florian Fainellic0e68202018-08-03 11:08:42 -0700234 /* Disable learning while in WoL mode */
235 if (priv->wol_ports_mask & (1 << port)) {
236 reg = core_readl(priv, CORE_DIS_LEARN);
237 reg |= BIT(port);
238 core_writel(priv, reg, CORE_DIS_LEARN);
Florian Fainelli96e65d72014-09-18 17:31:25 -0700239 return;
Florian Fainellic0e68202018-08-03 11:08:42 -0700240 }
Florian Fainelli96e65d72014-09-18 17:31:25 -0700241
Florian Fainelli8b7c94e2015-10-23 12:11:08 -0700242 if (port == priv->moca_port)
243 bcm_sf2_port_intr_disable(priv, port);
Florian Fainellib6d045d2014-09-24 17:05:20 -0700244
Florian Fainelli8b7c94e2015-10-23 12:11:08 -0700245 if (priv->int_phy_mask & 1 << port && priv->hw_params.num_gphy == 1)
Florian Fainelli9af197a2015-02-05 11:40:42 -0800246 bcm_sf2_gphy_enable_set(ds, false);
247
Andrew Lunn75104db2019-02-24 20:44:43 +0100248 b53_disable_port(ds, port);
Florian Fainelli246d7f72014-08-27 17:04:56 -0700249
250 /* Power down the port memory */
251 reg = core_readl(priv, CORE_MEM_PSM_VDD_CTRL);
252 reg |= P_TXQ_PSM_VDD(port);
253 core_writel(priv, reg, CORE_MEM_PSM_VDD_CTRL);
254}
255
Florian Fainelli450b05c2014-09-24 17:05:22 -0700256
Florian Fainelli461cd1b02016-06-07 16:32:43 -0700257static int bcm_sf2_sw_indir_rw(struct bcm_sf2_priv *priv, int op, int addr,
258 int regnum, u16 val)
259{
260 int ret = 0;
261 u32 reg;
262
263 reg = reg_readl(priv, REG_SWITCH_CNTRL);
264 reg |= MDIO_MASTER_SEL;
265 reg_writel(priv, reg, REG_SWITCH_CNTRL);
266
267 /* Page << 8 | offset */
268 reg = 0x70;
269 reg <<= 2;
270 core_writel(priv, addr, reg);
271
272 /* Page << 8 | offset */
273 reg = 0x80 << 8 | regnum << 1;
274 reg <<= 2;
275
276 if (op)
277 ret = core_readl(priv, reg);
278 else
279 core_writel(priv, val, reg);
280
281 reg = reg_readl(priv, REG_SWITCH_CNTRL);
282 reg &= ~MDIO_MASTER_SEL;
283 reg_writel(priv, reg, REG_SWITCH_CNTRL);
284
285 return ret & 0xffff;
286}
287
288static int bcm_sf2_sw_mdio_read(struct mii_bus *bus, int addr, int regnum)
289{
290 struct bcm_sf2_priv *priv = bus->priv;
291
292 /* Intercept reads from Broadcom pseudo-PHY address, else, send
293 * them to our master MDIO bus controller
294 */
295 if (addr == BRCM_PSEUDO_PHY_ADDR && priv->indir_phy_mask & BIT(addr))
296 return bcm_sf2_sw_indir_rw(priv, 1, addr, regnum, 0);
297 else
Florian Fainelli2cfe8f822017-01-07 21:01:57 -0800298 return mdiobus_read_nested(priv->master_mii_bus, addr, regnum);
Florian Fainelli461cd1b02016-06-07 16:32:43 -0700299}
300
301static int bcm_sf2_sw_mdio_write(struct mii_bus *bus, int addr, int regnum,
302 u16 val)
303{
304 struct bcm_sf2_priv *priv = bus->priv;
305
306 /* Intercept writes to the Broadcom pseudo-PHY address, else,
307 * send them to our master MDIO bus controller
308 */
309 if (addr == BRCM_PSEUDO_PHY_ADDR && priv->indir_phy_mask & BIT(addr))
Kangjie Lue49505f2018-12-25 22:08:18 -0600310 return bcm_sf2_sw_indir_rw(priv, 0, addr, regnum, val);
Florian Fainelli461cd1b02016-06-07 16:32:43 -0700311 else
Kangjie Lue49505f2018-12-25 22:08:18 -0600312 return mdiobus_write_nested(priv->master_mii_bus, addr,
313 regnum, val);
Florian Fainelli461cd1b02016-06-07 16:32:43 -0700314}
315
Florian Fainelli246d7f72014-08-27 17:04:56 -0700316static irqreturn_t bcm_sf2_switch_0_isr(int irq, void *dev_id)
317{
Florian Fainellibc0cb652018-05-10 13:17:33 -0700318 struct dsa_switch *ds = dev_id;
319 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainelli246d7f72014-08-27 17:04:56 -0700320
321 priv->irq0_stat = intrl2_0_readl(priv, INTRL2_CPU_STATUS) &
322 ~priv->irq0_mask;
323 intrl2_0_writel(priv, priv->irq0_stat, INTRL2_CPU_CLEAR);
324
325 return IRQ_HANDLED;
326}
327
328static irqreturn_t bcm_sf2_switch_1_isr(int irq, void *dev_id)
329{
Florian Fainellibc0cb652018-05-10 13:17:33 -0700330 struct dsa_switch *ds = dev_id;
331 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainelli246d7f72014-08-27 17:04:56 -0700332
333 priv->irq1_stat = intrl2_1_readl(priv, INTRL2_CPU_STATUS) &
334 ~priv->irq1_mask;
335 intrl2_1_writel(priv, priv->irq1_stat, INTRL2_CPU_CLEAR);
336
Florian Fainellibc0cb652018-05-10 13:17:33 -0700337 if (priv->irq1_stat & P_LINK_UP_IRQ(P7_IRQ_OFF)) {
338 priv->port_sts[7].link = true;
339 dsa_port_phylink_mac_change(ds, 7, true);
340 }
341 if (priv->irq1_stat & P_LINK_DOWN_IRQ(P7_IRQ_OFF)) {
342 priv->port_sts[7].link = false;
343 dsa_port_phylink_mac_change(ds, 7, false);
344 }
Florian Fainelli246d7f72014-08-27 17:04:56 -0700345
346 return IRQ_HANDLED;
347}
348
Florian Fainelli33f84612014-11-25 18:08:49 -0800349static int bcm_sf2_sw_rst(struct bcm_sf2_priv *priv)
350{
351 unsigned int timeout = 1000;
352 u32 reg;
Florian Fainellieee87e42019-11-04 13:51:39 -0800353 int ret;
354
355 /* The watchdog reset does not work on 7278, we need to hit the
356 * "external" reset line through the reset controller.
357 */
358 if (priv->type == BCM7278_DEVICE_ID && !IS_ERR(priv->rcdev)) {
359 ret = reset_control_assert(priv->rcdev);
360 if (ret)
361 return ret;
362
363 return reset_control_deassert(priv->rcdev);
364 }
Florian Fainelli33f84612014-11-25 18:08:49 -0800365
366 reg = core_readl(priv, CORE_WATCHDOG_CTRL);
367 reg |= SOFTWARE_RESET | EN_CHIP_RST | EN_SW_RESET;
368 core_writel(priv, reg, CORE_WATCHDOG_CTRL);
369
370 do {
371 reg = core_readl(priv, CORE_WATCHDOG_CTRL);
372 if (!(reg & SOFTWARE_RESET))
373 break;
374
375 usleep_range(1000, 2000);
376 } while (timeout-- > 0);
377
378 if (timeout == 0)
379 return -ETIMEDOUT;
380
381 return 0;
382}
383
Florian Fainelli691c9a82015-01-20 16:42:00 -0800384static void bcm_sf2_intr_disable(struct bcm_sf2_priv *priv)
385{
Florian Fainellif01d5982016-08-25 15:23:41 -0700386 intrl2_0_mask_set(priv, 0xffffffff);
Florian Fainelli691c9a82015-01-20 16:42:00 -0800387 intrl2_0_writel(priv, 0xffffffff, INTRL2_CPU_CLEAR);
Florian Fainellif01d5982016-08-25 15:23:41 -0700388 intrl2_1_mask_set(priv, 0xffffffff);
Florian Fainelli691c9a82015-01-20 16:42:00 -0800389 intrl2_1_writel(priv, 0xffffffff, INTRL2_CPU_CLEAR);
Florian Fainelli691c9a82015-01-20 16:42:00 -0800390}
391
Florian Fainelli8b7c94e2015-10-23 12:11:08 -0700392static void bcm_sf2_identify_ports(struct bcm_sf2_priv *priv,
393 struct device_node *dn)
394{
395 struct device_node *port;
Florian Fainelli8b7c94e2015-10-23 12:11:08 -0700396 unsigned int port_num;
Andrew Lunn0c65b2b2019-11-04 02:40:33 +0100397 phy_interface_t mode;
398 int err;
Florian Fainelli8b7c94e2015-10-23 12:11:08 -0700399
400 priv->moca_port = -1;
401
402 for_each_available_child_of_node(dn, port) {
403 if (of_property_read_u32(port, "reg", &port_num))
404 continue;
405
406 /* Internal PHYs get assigned a specific 'phy-mode' property
407 * value: "internal" to help flag them before MDIO probing
408 * has completed, since they might be turned off at that
409 * time
410 */
Andrew Lunn0c65b2b2019-11-04 02:40:33 +0100411 err = of_get_phy_mode(port, &mode);
412 if (err)
Florian Fainellibedd00c2017-06-23 10:33:16 -0700413 continue;
Florian Fainelli8b7c94e2015-10-23 12:11:08 -0700414
Florian Fainellibedd00c2017-06-23 10:33:16 -0700415 if (mode == PHY_INTERFACE_MODE_INTERNAL)
416 priv->int_phy_mask |= 1 << port_num;
Florian Fainelli8b7c94e2015-10-23 12:11:08 -0700417
418 if (mode == PHY_INTERFACE_MODE_MOCA)
419 priv->moca_port = port_num;
Florian Fainelli64ff2ae2017-01-20 12:36:32 -0800420
421 if (of_property_read_bool(port, "brcm,use-bcm-hdr"))
422 priv->brcm_tag_mask |= 1 << port_num;
Florian Fainelli8b7c94e2015-10-23 12:11:08 -0700423 }
424}
425
Florian Fainelli461cd1b02016-06-07 16:32:43 -0700426static int bcm_sf2_mdio_register(struct dsa_switch *ds)
427{
Florian Fainellif4589952016-08-26 12:18:33 -0700428 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainelli461cd1b02016-06-07 16:32:43 -0700429 struct device_node *dn;
430 static int index;
431 int err;
432
433 /* Find our integrated MDIO bus node */
434 dn = of_find_compatible_node(NULL, NULL, "brcm,unimac-mdio");
435 priv->master_mii_bus = of_mdio_find_bus(dn);
436 if (!priv->master_mii_bus)
437 return -EPROBE_DEFER;
438
439 get_device(&priv->master_mii_bus->dev);
440 priv->master_mii_dn = dn;
441
442 priv->slave_mii_bus = devm_mdiobus_alloc(ds->dev);
443 if (!priv->slave_mii_bus)
444 return -ENOMEM;
445
446 priv->slave_mii_bus->priv = priv;
447 priv->slave_mii_bus->name = "sf2 slave mii";
448 priv->slave_mii_bus->read = bcm_sf2_sw_mdio_read;
449 priv->slave_mii_bus->write = bcm_sf2_sw_mdio_write;
450 snprintf(priv->slave_mii_bus->id, MII_BUS_ID_SIZE, "sf2-%d",
451 index++);
452 priv->slave_mii_bus->dev.of_node = dn;
453
454 /* Include the pseudo-PHY address to divert reads towards our
455 * workaround. This is only required for 7445D0, since 7445E0
456 * disconnects the internal switch pseudo-PHY such that we can use the
457 * regular SWITCH_MDIO master controller instead.
458 *
459 * Here we flag the pseudo PHY as needing special treatment and would
460 * otherwise make all other PHY read/writes go to the master MDIO bus
461 * controller that comes with this switch backed by the "mdio-unimac"
462 * driver.
463 */
464 if (of_machine_is_compatible("brcm,bcm7445d0"))
465 priv->indir_phy_mask |= (1 << BRCM_PSEUDO_PHY_ADDR);
466 else
467 priv->indir_phy_mask = 0;
468
469 ds->phys_mii_mask = priv->indir_phy_mask;
470 ds->slave_mii_bus = priv->slave_mii_bus;
471 priv->slave_mii_bus->parent = ds->dev->parent;
472 priv->slave_mii_bus->phy_mask = ~priv->indir_phy_mask;
473
Florian Fainelli00e798c2018-05-15 16:56:19 -0700474 err = of_mdiobus_register(priv->slave_mii_bus, dn);
475 if (err && dn)
Florian Fainelli461cd1b02016-06-07 16:32:43 -0700476 of_node_put(dn);
477
478 return err;
479}
480
481static void bcm_sf2_mdio_unregister(struct bcm_sf2_priv *priv)
482{
483 mdiobus_unregister(priv->slave_mii_bus);
zhong jiang1ddc5d32018-09-16 21:22:31 +0800484 of_node_put(priv->master_mii_dn);
Florian Fainelli461cd1b02016-06-07 16:32:43 -0700485}
486
Florian Fainelliaa9aef72014-09-19 13:07:55 -0700487static u32 bcm_sf2_sw_get_phy_flags(struct dsa_switch *ds, int port)
488{
Florian Fainellif4589952016-08-26 12:18:33 -0700489 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainelliaa9aef72014-09-19 13:07:55 -0700490
491 /* The BCM7xxx PHY driver expects to find the integrated PHY revision
492 * in bits 15:8 and the patch level in bits 7:0 which is exactly what
493 * the REG_PHY_REVISION register layout is.
494 */
495
496 return priv->hw_params.gphy_rev;
497}
498
Florian Fainellibc0cb652018-05-10 13:17:33 -0700499static void bcm_sf2_sw_validate(struct dsa_switch *ds, int port,
500 unsigned long *supported,
501 struct phylink_link_state *state)
502{
Florian Fainelli738a2e42019-08-21 17:07:46 -0700503 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainellibc0cb652018-05-10 13:17:33 -0700504 __ETHTOOL_DECLARE_LINK_MODE_MASK(mask) = { 0, };
505
506 if (!phy_interface_mode_is_rgmii(state->interface) &&
507 state->interface != PHY_INTERFACE_MODE_MII &&
508 state->interface != PHY_INTERFACE_MODE_REVMII &&
509 state->interface != PHY_INTERFACE_MODE_GMII &&
510 state->interface != PHY_INTERFACE_MODE_INTERNAL &&
511 state->interface != PHY_INTERFACE_MODE_MOCA) {
512 bitmap_zero(supported, __ETHTOOL_LINK_MODE_MASK_NBITS);
Florian Fainelli738a2e42019-08-21 17:07:46 -0700513 if (port != core_readl(priv, CORE_IMP0_PRT_ID))
514 dev_err(ds->dev,
515 "Unsupported interface: %d for port %d\n",
516 state->interface, port);
Florian Fainellibc0cb652018-05-10 13:17:33 -0700517 return;
518 }
519
520 /* Allow all the expected bits */
521 phylink_set(mask, Autoneg);
522 phylink_set_port_modes(mask);
523 phylink_set(mask, Pause);
524 phylink_set(mask, Asym_Pause);
525
526 /* With the exclusion of MII and Reverse MII, we support Gigabit,
527 * including Half duplex
528 */
529 if (state->interface != PHY_INTERFACE_MODE_MII &&
530 state->interface != PHY_INTERFACE_MODE_REVMII) {
531 phylink_set(mask, 1000baseT_Full);
532 phylink_set(mask, 1000baseT_Half);
533 }
534
535 phylink_set(mask, 10baseT_Half);
536 phylink_set(mask, 10baseT_Full);
537 phylink_set(mask, 100baseT_Half);
538 phylink_set(mask, 100baseT_Full);
539
540 bitmap_and(supported, supported, mask,
541 __ETHTOOL_LINK_MODE_MASK_NBITS);
542 bitmap_and(state->advertising, state->advertising, mask,
543 __ETHTOOL_LINK_MODE_MASK_NBITS);
544}
545
546static void bcm_sf2_sw_mac_config(struct dsa_switch *ds, int port,
547 unsigned int mode,
548 const struct phylink_link_state *state)
549{
550 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
551 u32 id_mode_dis = 0, port_mode;
552 u32 reg, offset;
553
Florian Fainelli738a2e42019-08-21 17:07:46 -0700554 if (port == core_readl(priv, CORE_IMP0_PRT_ID))
555 return;
556
Florian Fainellibc0cb652018-05-10 13:17:33 -0700557 if (priv->type == BCM7445_DEVICE_ID)
558 offset = CORE_STS_OVERRIDE_GMIIP_PORT(port);
559 else
560 offset = CORE_STS_OVERRIDE_GMIIP2_PORT(port);
561
562 switch (state->interface) {
563 case PHY_INTERFACE_MODE_RGMII:
564 id_mode_dis = 1;
565 /* fallthrough */
566 case PHY_INTERFACE_MODE_RGMII_TXID:
567 port_mode = EXT_GPHY;
568 break;
569 case PHY_INTERFACE_MODE_MII:
570 port_mode = EXT_EPHY;
571 break;
572 case PHY_INTERFACE_MODE_REVMII:
573 port_mode = EXT_REVMII;
574 break;
575 default:
576 /* all other PHYs: internal and MoCA */
577 goto force_link;
578 }
579
580 /* Clear id_mode_dis bit, and the existing port mode, let
581 * RGMII_MODE_EN bet set by mac_link_{up,down}
582 */
583 reg = reg_readl(priv, REG_RGMII_CNTRL_P(port));
584 reg &= ~ID_MODE_DIS;
585 reg &= ~(PORT_MODE_MASK << PORT_MODE_SHIFT);
586 reg &= ~(RX_PAUSE_EN | TX_PAUSE_EN);
587
588 reg |= port_mode;
589 if (id_mode_dis)
590 reg |= ID_MODE_DIS;
591
592 if (state->pause & MLO_PAUSE_TXRX_MASK) {
593 if (state->pause & MLO_PAUSE_TX)
594 reg |= TX_PAUSE_EN;
595 reg |= RX_PAUSE_EN;
596 }
597
598 reg_writel(priv, reg, REG_RGMII_CNTRL_P(port));
599
600force_link:
601 /* Force link settings detected from the PHY */
602 reg = SW_OVERRIDE;
603 switch (state->speed) {
604 case SPEED_1000:
605 reg |= SPDSTS_1000 << SPEED_SHIFT;
606 break;
607 case SPEED_100:
608 reg |= SPDSTS_100 << SPEED_SHIFT;
609 break;
610 }
611
612 if (state->link)
613 reg |= LINK_STS;
614 if (state->duplex == DUPLEX_FULL)
615 reg |= DUPLX_MODE;
616
617 core_writel(priv, reg, offset);
618}
619
620static void bcm_sf2_sw_mac_link_set(struct dsa_switch *ds, int port,
621 phy_interface_t interface, bool link)
622{
623 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
624 u32 reg;
625
626 if (!phy_interface_mode_is_rgmii(interface) &&
627 interface != PHY_INTERFACE_MODE_MII &&
628 interface != PHY_INTERFACE_MODE_REVMII)
629 return;
630
631 /* If the link is down, just disable the interface to conserve power */
632 reg = reg_readl(priv, REG_RGMII_CNTRL_P(port));
633 if (link)
634 reg |= RGMII_MODE_EN;
635 else
636 reg &= ~RGMII_MODE_EN;
637 reg_writel(priv, reg, REG_RGMII_CNTRL_P(port));
638}
639
640static void bcm_sf2_sw_mac_link_down(struct dsa_switch *ds, int port,
641 unsigned int mode,
642 phy_interface_t interface)
643{
644 bcm_sf2_sw_mac_link_set(ds, port, interface, false);
645}
646
647static void bcm_sf2_sw_mac_link_up(struct dsa_switch *ds, int port,
648 unsigned int mode,
649 phy_interface_t interface,
650 struct phy_device *phydev)
651{
652 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
653 struct ethtool_eee *p = &priv->dev->ports[port].eee;
654
655 bcm_sf2_sw_mac_link_set(ds, port, interface, true);
656
657 if (mode == MLO_AN_PHY && phydev)
658 p->eee_enabled = b53_eee_init(ds, port, phydev);
659}
660
661static void bcm_sf2_sw_fixed_state(struct dsa_switch *ds, int port,
662 struct phylink_link_state *status)
663{
664 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
665
666 status->link = false;
667
668 /* MoCA port is special as we do not get link status from CORE_LNKSTS,
669 * which means that we need to force the link at the port override
670 * level to get the data to flow. We do use what the interrupt handler
671 * did determine before.
672 *
673 * For the other ports, we just force the link status, since this is
674 * a fixed PHY device.
675 */
676 if (port == priv->moca_port) {
677 status->link = priv->port_sts[port].link;
678 /* For MoCA interfaces, also force a link down notification
679 * since some version of the user-space daemon (mocad) use
680 * cmd->autoneg to force the link, which messes up the PHY
681 * state machine and make it go in PHY_FORCING state instead.
682 */
683 if (!status->link)
Vivien Didelot68bb8ea2019-10-21 16:51:15 -0400684 netif_carrier_off(dsa_to_port(ds, port)->slave);
Florian Fainellibc0cb652018-05-10 13:17:33 -0700685 status->duplex = DUPLEX_FULL;
686 } else {
687 status->link = true;
688 }
689}
690
Florian Fainelli32e47ff2017-10-11 10:57:51 -0700691static void bcm_sf2_enable_acb(struct dsa_switch *ds)
692{
693 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
694 u32 reg;
695
696 /* Enable ACB globally */
697 reg = acb_readl(priv, ACB_CONTROL);
698 reg |= (ACB_FLUSH_MASK << ACB_FLUSH_SHIFT);
699 acb_writel(priv, reg, ACB_CONTROL);
700 reg &= ~(ACB_FLUSH_MASK << ACB_FLUSH_SHIFT);
701 reg |= ACB_EN | ACB_ALGORITHM;
702 acb_writel(priv, reg, ACB_CONTROL);
703}
704
Florian Fainelli8cfa9492014-09-18 17:31:23 -0700705static int bcm_sf2_sw_suspend(struct dsa_switch *ds)
706{
Florian Fainellif4589952016-08-26 12:18:33 -0700707 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainelli8cfa9492014-09-18 17:31:23 -0700708 unsigned int port;
709
Florian Fainelli691c9a82015-01-20 16:42:00 -0800710 bcm_sf2_intr_disable(priv);
Florian Fainelli8cfa9492014-09-18 17:31:23 -0700711
712 /* Disable all ports physically present including the IMP
713 * port, the other ones have already been disabled during
714 * bcm_sf2_sw_setup
715 */
Dan Carpenter8d6ea932019-02-13 11:23:04 +0300716 for (port = 0; port < ds->num_ports; port++) {
Vivien Didelot4a5b85f2017-10-26 11:22:55 -0400717 if (dsa_is_user_port(ds, port) || dsa_is_cpu_port(ds, port))
Andrew Lunn75104db2019-02-24 20:44:43 +0100718 bcm_sf2_port_disable(ds, port);
Florian Fainelli8cfa9492014-09-18 17:31:23 -0700719 }
720
721 return 0;
722}
723
Florian Fainelli8cfa9492014-09-18 17:31:23 -0700724static int bcm_sf2_sw_resume(struct dsa_switch *ds)
725{
Florian Fainellif4589952016-08-26 12:18:33 -0700726 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainelli8cfa9492014-09-18 17:31:23 -0700727 int ret;
728
729 ret = bcm_sf2_sw_rst(priv);
730 if (ret) {
731 pr_err("%s: failed to software reset switch\n", __func__);
732 return ret;
733 }
734
Florian Fainelli1c0130f2018-11-06 12:58:39 -0800735 ret = bcm_sf2_cfp_resume(ds);
736 if (ret)
737 return ret;
738
Florian Fainellib0836682015-02-05 11:40:41 -0800739 if (priv->hw_params.num_gphy == 1)
740 bcm_sf2_gphy_enable_set(ds, true);
Florian Fainelli8cfa9492014-09-18 17:31:23 -0700741
Florian Fainelliabd01ba2018-10-09 16:48:58 -0700742 ds->ops->setup(ds);
Florian Fainelli32e47ff2017-10-11 10:57:51 -0700743
Florian Fainelli8cfa9492014-09-18 17:31:23 -0700744 return 0;
745}
746
Florian Fainelli96e65d72014-09-18 17:31:25 -0700747static void bcm_sf2_sw_get_wol(struct dsa_switch *ds, int port,
748 struct ethtool_wolinfo *wol)
749{
Vivien Didelot68bb8ea2019-10-21 16:51:15 -0400750 struct net_device *p = dsa_to_port(ds, port)->cpu_dp->master;
Florian Fainellif4589952016-08-26 12:18:33 -0700751 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainellic3152ec2019-02-15 12:16:52 -0800752 struct ethtool_wolinfo pwol = { };
Florian Fainelli96e65d72014-09-18 17:31:25 -0700753
754 /* Get the parent device WoL settings */
Florian Fainellic3152ec2019-02-15 12:16:52 -0800755 if (p->ethtool_ops->get_wol)
756 p->ethtool_ops->get_wol(p, &pwol);
Florian Fainelli96e65d72014-09-18 17:31:25 -0700757
758 /* Advertise the parent device supported settings */
759 wol->supported = pwol.supported;
760 memset(&wol->sopass, 0, sizeof(wol->sopass));
761
762 if (pwol.wolopts & WAKE_MAGICSECURE)
763 memcpy(&wol->sopass, pwol.sopass, sizeof(wol->sopass));
764
765 if (priv->wol_ports_mask & (1 << port))
766 wol->wolopts = pwol.wolopts;
767 else
768 wol->wolopts = 0;
769}
770
771static int bcm_sf2_sw_set_wol(struct dsa_switch *ds, int port,
772 struct ethtool_wolinfo *wol)
773{
Vivien Didelot68bb8ea2019-10-21 16:51:15 -0400774 struct net_device *p = dsa_to_port(ds, port)->cpu_dp->master;
Florian Fainellif4589952016-08-26 12:18:33 -0700775 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Vivien Didelot68bb8ea2019-10-21 16:51:15 -0400776 s8 cpu_port = dsa_to_port(ds, port)->cpu_dp->index;
Florian Fainellic3152ec2019-02-15 12:16:52 -0800777 struct ethtool_wolinfo pwol = { };
Florian Fainelli96e65d72014-09-18 17:31:25 -0700778
Florian Fainellic3152ec2019-02-15 12:16:52 -0800779 if (p->ethtool_ops->get_wol)
780 p->ethtool_ops->get_wol(p, &pwol);
Florian Fainelli96e65d72014-09-18 17:31:25 -0700781 if (wol->wolopts & ~pwol.supported)
782 return -EINVAL;
783
784 if (wol->wolopts)
785 priv->wol_ports_mask |= (1 << port);
786 else
787 priv->wol_ports_mask &= ~(1 << port);
788
789 /* If we have at least one port enabled, make sure the CPU port
790 * is also enabled. If the CPU port is the last one enabled, we disable
791 * it since this configuration does not make sense.
792 */
793 if (priv->wol_ports_mask && priv->wol_ports_mask != (1 << cpu_port))
794 priv->wol_ports_mask |= (1 << cpu_port);
795 else
796 priv->wol_ports_mask &= ~(1 << cpu_port);
797
798 return p->ethtool_ops->set_wol(p, wol);
799}
800
Florian Fainelli7fbb1a92016-06-09 17:42:06 -0700801static int bcm_sf2_sw_setup(struct dsa_switch *ds)
802{
Florian Fainellif4589952016-08-26 12:18:33 -0700803 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainelli7fbb1a92016-06-09 17:42:06 -0700804 unsigned int port;
Florian Fainellid9338022016-08-18 15:30:14 -0700805
Florian Fainelli21a27742017-09-28 11:19:06 -0700806 /* Enable all valid ports and disable those unused */
Florian Fainellid9338022016-08-18 15:30:14 -0700807 for (port = 0; port < priv->hw_params.num_ports; port++) {
Florian Fainelli21a27742017-09-28 11:19:06 -0700808 /* IMP port receives special treatment */
Vivien Didelot4a5b85f2017-10-26 11:22:55 -0400809 if (dsa_is_user_port(ds, port))
Florian Fainelli21a27742017-09-28 11:19:06 -0700810 bcm_sf2_port_setup(ds, port, NULL);
811 else if (dsa_is_cpu_port(ds, port))
Florian Fainellid9338022016-08-18 15:30:14 -0700812 bcm_sf2_imp_setup(ds, port);
Florian Fainelli21a27742017-09-28 11:19:06 -0700813 else
Andrew Lunn75104db2019-02-24 20:44:43 +0100814 bcm_sf2_port_disable(ds, port);
Florian Fainellid9338022016-08-18 15:30:14 -0700815 }
816
Florian Fainelli5c1a6ea2017-10-27 15:56:01 -0700817 b53_configure_vlan(ds);
Florian Fainelli32e47ff2017-10-11 10:57:51 -0700818 bcm_sf2_enable_acb(ds);
Florian Fainellid9338022016-08-18 15:30:14 -0700819
820 return 0;
821}
822
Florian Fainellif4589952016-08-26 12:18:33 -0700823/* The SWITCH_CORE register space is managed by b53 but operates on a page +
824 * register basis so we need to translate that into an address that the
825 * bus-glue understands.
826 */
827#define SF2_PAGE_REG_MKADDR(page, reg) ((page) << 10 | (reg) << 2)
828
829static int bcm_sf2_core_read8(struct b53_device *dev, u8 page, u8 reg,
830 u8 *val)
831{
832 struct bcm_sf2_priv *priv = dev->priv;
833
834 *val = core_readl(priv, SF2_PAGE_REG_MKADDR(page, reg));
835
836 return 0;
837}
838
839static int bcm_sf2_core_read16(struct b53_device *dev, u8 page, u8 reg,
840 u16 *val)
841{
842 struct bcm_sf2_priv *priv = dev->priv;
843
844 *val = core_readl(priv, SF2_PAGE_REG_MKADDR(page, reg));
845
846 return 0;
847}
848
849static int bcm_sf2_core_read32(struct b53_device *dev, u8 page, u8 reg,
850 u32 *val)
851{
852 struct bcm_sf2_priv *priv = dev->priv;
853
854 *val = core_readl(priv, SF2_PAGE_REG_MKADDR(page, reg));
855
856 return 0;
857}
858
859static int bcm_sf2_core_read64(struct b53_device *dev, u8 page, u8 reg,
860 u64 *val)
861{
862 struct bcm_sf2_priv *priv = dev->priv;
863
864 *val = core_readq(priv, SF2_PAGE_REG_MKADDR(page, reg));
865
866 return 0;
867}
868
869static int bcm_sf2_core_write8(struct b53_device *dev, u8 page, u8 reg,
870 u8 value)
871{
872 struct bcm_sf2_priv *priv = dev->priv;
873
874 core_writel(priv, value, SF2_PAGE_REG_MKADDR(page, reg));
875
876 return 0;
877}
878
879static int bcm_sf2_core_write16(struct b53_device *dev, u8 page, u8 reg,
880 u16 value)
881{
882 struct bcm_sf2_priv *priv = dev->priv;
883
884 core_writel(priv, value, SF2_PAGE_REG_MKADDR(page, reg));
885
886 return 0;
887}
888
889static int bcm_sf2_core_write32(struct b53_device *dev, u8 page, u8 reg,
890 u32 value)
891{
892 struct bcm_sf2_priv *priv = dev->priv;
893
894 core_writel(priv, value, SF2_PAGE_REG_MKADDR(page, reg));
895
896 return 0;
897}
898
899static int bcm_sf2_core_write64(struct b53_device *dev, u8 page, u8 reg,
900 u64 value)
901{
902 struct bcm_sf2_priv *priv = dev->priv;
903
904 core_writeq(priv, value, SF2_PAGE_REG_MKADDR(page, reg));
905
906 return 0;
907}
908
Bhumika Goyal7e3108f2017-08-29 22:17:52 +0530909static const struct b53_io_ops bcm_sf2_io_ops = {
Florian Fainellif4589952016-08-26 12:18:33 -0700910 .read8 = bcm_sf2_core_read8,
911 .read16 = bcm_sf2_core_read16,
912 .read32 = bcm_sf2_core_read32,
913 .read48 = bcm_sf2_core_read64,
914 .read64 = bcm_sf2_core_read64,
915 .write8 = bcm_sf2_core_write8,
916 .write16 = bcm_sf2_core_write16,
917 .write32 = bcm_sf2_core_write32,
918 .write48 = bcm_sf2_core_write64,
919 .write64 = bcm_sf2_core_write64,
920};
921
Florian Fainellibadd62c2019-02-06 12:45:58 -0800922static void bcm_sf2_sw_get_strings(struct dsa_switch *ds, int port,
923 u32 stringset, uint8_t *data)
924{
Florian Fainellif4ae9c02019-02-06 12:45:59 -0800925 int cnt = b53_get_sset_count(ds, port, stringset);
926
Florian Fainellibadd62c2019-02-06 12:45:58 -0800927 b53_get_strings(ds, port, stringset, data);
Florian Fainellif4ae9c02019-02-06 12:45:59 -0800928 bcm_sf2_cfp_get_strings(ds, port, stringset,
929 data + cnt * ETH_GSTRING_LEN);
Florian Fainellibadd62c2019-02-06 12:45:58 -0800930}
931
932static void bcm_sf2_sw_get_ethtool_stats(struct dsa_switch *ds, int port,
933 uint64_t *data)
934{
Florian Fainellif4ae9c02019-02-06 12:45:59 -0800935 int cnt = b53_get_sset_count(ds, port, ETH_SS_STATS);
936
Florian Fainellibadd62c2019-02-06 12:45:58 -0800937 b53_get_ethtool_stats(ds, port, data);
Florian Fainellif4ae9c02019-02-06 12:45:59 -0800938 bcm_sf2_cfp_get_ethtool_stats(ds, port, data + cnt);
Florian Fainellibadd62c2019-02-06 12:45:58 -0800939}
940
941static int bcm_sf2_sw_get_sset_count(struct dsa_switch *ds, int port,
942 int sset)
943{
Florian Fainellif4ae9c02019-02-06 12:45:59 -0800944 int cnt = b53_get_sset_count(ds, port, sset);
945
946 if (cnt < 0)
947 return cnt;
948
949 cnt += bcm_sf2_cfp_get_sset_count(ds, port, sset);
950
951 return cnt;
Florian Fainellibadd62c2019-02-06 12:45:58 -0800952}
953
Florian Fainellia82f67a2017-01-08 14:52:08 -0800954static const struct dsa_switch_ops bcm_sf2_ops = {
Florian Fainelli9f668162017-11-30 09:55:35 -0800955 .get_tag_protocol = b53_get_tag_protocol,
Florian Fainelli73095cb2017-01-08 14:52:06 -0800956 .setup = bcm_sf2_sw_setup,
Florian Fainellibadd62c2019-02-06 12:45:58 -0800957 .get_strings = bcm_sf2_sw_get_strings,
958 .get_ethtool_stats = bcm_sf2_sw_get_ethtool_stats,
959 .get_sset_count = bcm_sf2_sw_get_sset_count,
Florian Fainellic7d28c92018-04-25 12:12:53 -0700960 .get_ethtool_phy_stats = b53_get_ethtool_phy_stats,
Florian Fainelli73095cb2017-01-08 14:52:06 -0800961 .get_phy_flags = bcm_sf2_sw_get_phy_flags,
Florian Fainellibc0cb652018-05-10 13:17:33 -0700962 .phylink_validate = bcm_sf2_sw_validate,
963 .phylink_mac_config = bcm_sf2_sw_mac_config,
964 .phylink_mac_link_down = bcm_sf2_sw_mac_link_down,
965 .phylink_mac_link_up = bcm_sf2_sw_mac_link_up,
966 .phylink_fixed_state = bcm_sf2_sw_fixed_state,
Florian Fainelli73095cb2017-01-08 14:52:06 -0800967 .suspend = bcm_sf2_sw_suspend,
968 .resume = bcm_sf2_sw_resume,
969 .get_wol = bcm_sf2_sw_get_wol,
970 .set_wol = bcm_sf2_sw_set_wol,
971 .port_enable = bcm_sf2_port_setup,
972 .port_disable = bcm_sf2_port_disable,
Florian Fainelli22256b02017-09-19 10:46:50 -0700973 .get_mac_eee = b53_get_mac_eee,
974 .set_mac_eee = b53_set_mac_eee,
Florian Fainelli73095cb2017-01-08 14:52:06 -0800975 .port_bridge_join = b53_br_join,
976 .port_bridge_leave = b53_br_leave,
977 .port_stp_state_set = b53_br_set_stp_state,
978 .port_fast_age = b53_br_fast_age,
979 .port_vlan_filtering = b53_vlan_filtering,
980 .port_vlan_prepare = b53_vlan_prepare,
981 .port_vlan_add = b53_vlan_add,
982 .port_vlan_del = b53_vlan_del,
Florian Fainelli73095cb2017-01-08 14:52:06 -0800983 .port_fdb_dump = b53_fdb_dump,
984 .port_fdb_add = b53_fdb_add,
985 .port_fdb_del = b53_fdb_del,
Florian Fainelli73181662017-01-30 09:48:43 -0800986 .get_rxnfc = bcm_sf2_get_rxnfc,
987 .set_rxnfc = bcm_sf2_set_rxnfc,
Florian Fainelliec960de2017-01-30 12:41:43 -0800988 .port_mirror_add = b53_mirror_add,
989 .port_mirror_del = b53_mirror_del,
Florian Fainelli29bb5e82019-10-24 12:45:08 -0700990 .port_mdb_prepare = b53_mdb_prepare,
991 .port_mdb_add = b53_mdb_add,
992 .port_mdb_del = b53_mdb_del,
Florian Fainelli73095cb2017-01-08 14:52:06 -0800993};
994
Florian Fainellia78e86e2017-01-20 12:36:29 -0800995struct bcm_sf2_of_data {
996 u32 type;
997 const u16 *reg_offsets;
998 unsigned int core_reg_align;
Florian Fainellidf191632017-08-30 12:39:33 -0700999 unsigned int num_cfp_rules;
Florian Fainellia78e86e2017-01-20 12:36:29 -08001000};
1001
1002/* Register offsets for the SWITCH_REG_* block */
1003static const u16 bcm_sf2_7445_reg_offsets[] = {
1004 [REG_SWITCH_CNTRL] = 0x00,
1005 [REG_SWITCH_STATUS] = 0x04,
1006 [REG_DIR_DATA_WRITE] = 0x08,
1007 [REG_DIR_DATA_READ] = 0x0C,
1008 [REG_SWITCH_REVISION] = 0x18,
1009 [REG_PHY_REVISION] = 0x1C,
1010 [REG_SPHY_CNTRL] = 0x2C,
1011 [REG_RGMII_0_CNTRL] = 0x34,
1012 [REG_RGMII_1_CNTRL] = 0x40,
1013 [REG_RGMII_2_CNTRL] = 0x4c,
1014 [REG_LED_0_CNTRL] = 0x90,
1015 [REG_LED_1_CNTRL] = 0x94,
1016 [REG_LED_2_CNTRL] = 0x98,
1017};
1018
1019static const struct bcm_sf2_of_data bcm_sf2_7445_data = {
1020 .type = BCM7445_DEVICE_ID,
1021 .core_reg_align = 0,
1022 .reg_offsets = bcm_sf2_7445_reg_offsets,
Florian Fainellidf191632017-08-30 12:39:33 -07001023 .num_cfp_rules = 256,
Florian Fainellia78e86e2017-01-20 12:36:29 -08001024};
1025
Florian Fainelli0fe99332017-01-20 12:36:30 -08001026static const u16 bcm_sf2_7278_reg_offsets[] = {
1027 [REG_SWITCH_CNTRL] = 0x00,
1028 [REG_SWITCH_STATUS] = 0x04,
1029 [REG_DIR_DATA_WRITE] = 0x08,
1030 [REG_DIR_DATA_READ] = 0x0c,
1031 [REG_SWITCH_REVISION] = 0x10,
1032 [REG_PHY_REVISION] = 0x14,
1033 [REG_SPHY_CNTRL] = 0x24,
1034 [REG_RGMII_0_CNTRL] = 0xe0,
1035 [REG_RGMII_1_CNTRL] = 0xec,
1036 [REG_RGMII_2_CNTRL] = 0xf8,
1037 [REG_LED_0_CNTRL] = 0x40,
1038 [REG_LED_1_CNTRL] = 0x4c,
1039 [REG_LED_2_CNTRL] = 0x58,
1040};
1041
1042static const struct bcm_sf2_of_data bcm_sf2_7278_data = {
1043 .type = BCM7278_DEVICE_ID,
1044 .core_reg_align = 1,
1045 .reg_offsets = bcm_sf2_7278_reg_offsets,
Florian Fainellidf191632017-08-30 12:39:33 -07001046 .num_cfp_rules = 128,
Florian Fainelli0fe99332017-01-20 12:36:30 -08001047};
1048
Florian Fainellia78e86e2017-01-20 12:36:29 -08001049static const struct of_device_id bcm_sf2_of_match[] = {
1050 { .compatible = "brcm,bcm7445-switch-v4.0",
1051 .data = &bcm_sf2_7445_data
1052 },
Florian Fainelli0fe99332017-01-20 12:36:30 -08001053 { .compatible = "brcm,bcm7278-switch-v4.0",
1054 .data = &bcm_sf2_7278_data
1055 },
Florian Fainelli3b07d782017-12-14 17:59:40 -08001056 { .compatible = "brcm,bcm7278-switch-v4.8",
1057 .data = &bcm_sf2_7278_data
1058 },
Florian Fainellia78e86e2017-01-20 12:36:29 -08001059 { /* sentinel */ },
1060};
1061MODULE_DEVICE_TABLE(of, bcm_sf2_of_match);
1062
Florian Fainellid9338022016-08-18 15:30:14 -07001063static int bcm_sf2_sw_probe(struct platform_device *pdev)
1064{
1065 const char *reg_names[BCM_SF2_REGS_NUM] = BCM_SF2_REGS_NAME;
1066 struct device_node *dn = pdev->dev.of_node;
Florian Fainellia78e86e2017-01-20 12:36:29 -08001067 const struct of_device_id *of_id = NULL;
1068 const struct bcm_sf2_of_data *data;
Florian Fainellif4589952016-08-26 12:18:33 -07001069 struct b53_platform_data *pdata;
Florian Fainellia4c61b92017-01-07 21:01:56 -08001070 struct dsa_switch_ops *ops;
Florian Fainellid9338022016-08-18 15:30:14 -07001071 struct bcm_sf2_priv *priv;
Florian Fainellif4589952016-08-26 12:18:33 -07001072 struct b53_device *dev;
Florian Fainellid9338022016-08-18 15:30:14 -07001073 struct dsa_switch *ds;
1074 void __iomem **base;
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001075 unsigned int i;
1076 u32 reg, rev;
1077 int ret;
1078
Florian Fainellif4589952016-08-26 12:18:33 -07001079 priv = devm_kzalloc(&pdev->dev, sizeof(*priv), GFP_KERNEL);
1080 if (!priv)
Florian Fainellid9338022016-08-18 15:30:14 -07001081 return -ENOMEM;
1082
Florian Fainellia4c61b92017-01-07 21:01:56 -08001083 ops = devm_kzalloc(&pdev->dev, sizeof(*ops), GFP_KERNEL);
1084 if (!ops)
1085 return -ENOMEM;
1086
Florian Fainellif4589952016-08-26 12:18:33 -07001087 dev = b53_switch_alloc(&pdev->dev, &bcm_sf2_io_ops, priv);
1088 if (!dev)
1089 return -ENOMEM;
Florian Fainellid9338022016-08-18 15:30:14 -07001090
Florian Fainellif4589952016-08-26 12:18:33 -07001091 pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL);
1092 if (!pdata)
1093 return -ENOMEM;
1094
Florian Fainellia78e86e2017-01-20 12:36:29 -08001095 of_id = of_match_node(bcm_sf2_of_match, dn);
1096 if (!of_id || !of_id->data)
1097 return -EINVAL;
1098
1099 data = of_id->data;
1100
1101 /* Set SWITCH_REG register offsets and SWITCH_CORE align factor */
1102 priv->type = data->type;
1103 priv->reg_offsets = data->reg_offsets;
1104 priv->core_reg_align = data->core_reg_align;
Florian Fainellidf191632017-08-30 12:39:33 -07001105 priv->num_cfp_rules = data->num_cfp_rules;
Florian Fainellia78e86e2017-01-20 12:36:29 -08001106
Florian Fainellieee87e42019-11-04 13:51:39 -08001107 priv->rcdev = devm_reset_control_get_optional_exclusive(&pdev->dev,
1108 "switch");
1109 if (PTR_ERR(priv->rcdev) == -EPROBE_DEFER)
1110 return PTR_ERR(priv->rcdev);
1111
Florian Fainellif4589952016-08-26 12:18:33 -07001112 /* Auto-detection using standard registers will not work, so
1113 * provide an indication of what kind of device we are for
1114 * b53_common to work with
1115 */
Florian Fainellia78e86e2017-01-20 12:36:29 -08001116 pdata->chip_id = priv->type;
Florian Fainellif4589952016-08-26 12:18:33 -07001117 dev->pdata = pdata;
1118
1119 priv->dev = dev;
1120 ds = dev->ds;
Florian Fainelli73095cb2017-01-08 14:52:06 -08001121 ds->ops = &bcm_sf2_ops;
Florian Fainellif4589952016-08-26 12:18:33 -07001122
Florian Fainelli181183772017-09-03 20:27:02 -07001123 /* Advertise the 8 egress queues */
1124 ds->num_tx_queues = SF2_NUM_EGRESS_QUEUES;
1125
Florian Fainellif4589952016-08-26 12:18:33 -07001126 dev_set_drvdata(&pdev->dev, priv);
Florian Fainellid9338022016-08-18 15:30:14 -07001127
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001128 spin_lock_init(&priv->indir_lock);
Florian Fainelli73181662017-01-30 09:48:43 -08001129 mutex_init(&priv->cfp.lock);
Florian Fainelliae7a5af2018-11-06 12:58:37 -08001130 INIT_LIST_HEAD(&priv->cfp.rules_list);
Florian Fainelli73181662017-01-30 09:48:43 -08001131
1132 /* CFP rule #0 cannot be used for specific classifications, flag it as
1133 * permanently used
1134 */
1135 set_bit(0, priv->cfp.used);
Florian Fainelliba0696c2017-10-20 14:39:47 -07001136 set_bit(0, priv->cfp.unique);
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001137
Florian Fainellid9338022016-08-18 15:30:14 -07001138 bcm_sf2_identify_ports(priv, dn->child);
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001139
1140 priv->irq0 = irq_of_parse_and_map(dn, 0);
1141 priv->irq1 = irq_of_parse_and_map(dn, 1);
1142
1143 base = &priv->core;
1144 for (i = 0; i < BCM_SF2_REGS_NUM; i++) {
YueHaibing42376782019-08-01 20:29:11 +08001145 *base = devm_platform_ioremap_resource(pdev, i);
Florian Fainelli4bd11672016-08-18 15:30:15 -07001146 if (IS_ERR(*base)) {
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001147 pr_err("unable to find register: %s\n", reg_names[i]);
Florian Fainelli4bd11672016-08-18 15:30:15 -07001148 return PTR_ERR(*base);
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001149 }
1150 base++;
1151 }
1152
1153 ret = bcm_sf2_sw_rst(priv);
1154 if (ret) {
1155 pr_err("unable to software reset switch: %d\n", ret);
Florian Fainelli4bd11672016-08-18 15:30:15 -07001156 return ret;
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001157 }
1158
Florian Fainellic04a17d2018-11-06 15:15:16 -08001159 bcm_sf2_gphy_enable_set(priv->dev->ds, true);
1160
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001161 ret = bcm_sf2_mdio_register(ds);
1162 if (ret) {
1163 pr_err("failed to register MDIO bus\n");
Florian Fainelli4bd11672016-08-18 15:30:15 -07001164 return ret;
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001165 }
1166
Florian Fainellic04a17d2018-11-06 15:15:16 -08001167 bcm_sf2_gphy_enable_set(priv->dev->ds, false);
1168
Florian Fainelli73181662017-01-30 09:48:43 -08001169 ret = bcm_sf2_cfp_rst(priv);
1170 if (ret) {
1171 pr_err("failed to reset CFP\n");
1172 goto out_mdio;
1173 }
1174
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001175 /* Disable all interrupts and request them */
1176 bcm_sf2_intr_disable(priv);
1177
Florian Fainelli4bd11672016-08-18 15:30:15 -07001178 ret = devm_request_irq(&pdev->dev, priv->irq0, bcm_sf2_switch_0_isr, 0,
Florian Fainellibc0cb652018-05-10 13:17:33 -07001179 "switch_0", ds);
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001180 if (ret < 0) {
1181 pr_err("failed to request switch_0 IRQ\n");
Florian Fainellibb9c0fa2016-07-29 12:35:57 -07001182 goto out_mdio;
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001183 }
1184
Florian Fainelli4bd11672016-08-18 15:30:15 -07001185 ret = devm_request_irq(&pdev->dev, priv->irq1, bcm_sf2_switch_1_isr, 0,
Florian Fainellibc0cb652018-05-10 13:17:33 -07001186 "switch_1", ds);
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001187 if (ret < 0) {
1188 pr_err("failed to request switch_1 IRQ\n");
Florian Fainelli4bd11672016-08-18 15:30:15 -07001189 goto out_mdio;
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001190 }
1191
1192 /* Reset the MIB counters */
1193 reg = core_readl(priv, CORE_GMNCFGCFG);
1194 reg |= RST_MIB_CNT;
1195 core_writel(priv, reg, CORE_GMNCFGCFG);
1196 reg &= ~RST_MIB_CNT;
1197 core_writel(priv, reg, CORE_GMNCFGCFG);
1198
1199 /* Get the maximum number of ports for this switch */
1200 priv->hw_params.num_ports = core_readl(priv, CORE_IMP0_PRT_ID) + 1;
1201 if (priv->hw_params.num_ports > DSA_MAX_PORTS)
1202 priv->hw_params.num_ports = DSA_MAX_PORTS;
1203
1204 /* Assume a single GPHY setup if we can't read that property */
1205 if (of_property_read_u32(dn, "brcm,num-gphy",
1206 &priv->hw_params.num_gphy))
1207 priv->hw_params.num_gphy = 1;
1208
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001209 rev = reg_readl(priv, REG_SWITCH_REVISION);
1210 priv->hw_params.top_rev = (rev >> SWITCH_TOP_REV_SHIFT) &
1211 SWITCH_TOP_REV_MASK;
1212 priv->hw_params.core_rev = (rev & SF2_REV_MASK);
1213
1214 rev = reg_readl(priv, REG_PHY_REVISION);
1215 priv->hw_params.gphy_rev = rev & PHY_REVISION_MASK;
1216
Florian Fainellif4589952016-08-26 12:18:33 -07001217 ret = b53_switch_register(dev);
Florian Fainellid9338022016-08-18 15:30:14 -07001218 if (ret)
Florian Fainelli4bd11672016-08-18 15:30:15 -07001219 goto out_mdio;
Florian Fainellid9338022016-08-18 15:30:14 -07001220
Florian Fainellifbb7bc42019-03-20 09:45:16 -07001221 dev_info(&pdev->dev,
1222 "Starfighter 2 top: %x.%02x, core: %x.%02x, IRQs: %d, %d\n",
1223 priv->hw_params.top_rev >> 8, priv->hw_params.top_rev & 0xff,
1224 priv->hw_params.core_rev >> 8, priv->hw_params.core_rev & 0xff,
1225 priv->irq0, priv->irq1);
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001226
1227 return 0;
1228
Florian Fainellibb9c0fa2016-07-29 12:35:57 -07001229out_mdio:
1230 bcm_sf2_mdio_unregister(priv);
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001231 return ret;
1232}
1233
Florian Fainellid9338022016-08-18 15:30:14 -07001234static int bcm_sf2_sw_remove(struct platform_device *pdev)
Florian Fainelli246d7f72014-08-27 17:04:56 -07001235{
Florian Fainellif4589952016-08-26 12:18:33 -07001236 struct bcm_sf2_priv *priv = platform_get_drvdata(pdev);
Florian Fainellid9338022016-08-18 15:30:14 -07001237
Florian Fainellid9338022016-08-18 15:30:14 -07001238 priv->wol_ports_mask = 0;
Florian Fainellif4589952016-08-26 12:18:33 -07001239 dsa_unregister_switch(priv->dev->ds);
Florian Fainelliae7a5af2018-11-06 12:58:37 -08001240 bcm_sf2_cfp_exit(priv->dev->ds);
Florian Fainelli448765e2018-10-09 16:48:57 -07001241 /* Disable all ports and interrupts */
1242 bcm_sf2_sw_suspend(priv->dev->ds);
Florian Fainellid9338022016-08-18 15:30:14 -07001243 bcm_sf2_mdio_unregister(priv);
Florian Fainellieee87e42019-11-04 13:51:39 -08001244 if (priv->type == BCM7278_DEVICE_ID && !IS_ERR(priv->rcdev))
1245 reset_control_assert(priv->rcdev);
Florian Fainelli246d7f72014-08-27 17:04:56 -07001246
1247 return 0;
1248}
Florian Fainelli246d7f72014-08-27 17:04:56 -07001249
Florian Fainelli2399d612016-10-20 09:32:19 -07001250static void bcm_sf2_sw_shutdown(struct platform_device *pdev)
1251{
1252 struct bcm_sf2_priv *priv = platform_get_drvdata(pdev);
1253
1254 /* For a kernel about to be kexec'd we want to keep the GPHY on for a
1255 * successful MDIO bus scan to occur. If we did turn off the GPHY
1256 * before (e.g: port_disable), this will also power it back on.
Florian Fainelli4a2947e2016-10-21 14:21:56 -07001257 *
1258 * Do not rely on kexec_in_progress, just power the PHY on.
Florian Fainelli2399d612016-10-20 09:32:19 -07001259 */
1260 if (priv->hw_params.num_gphy == 1)
Florian Fainelli4a2947e2016-10-21 14:21:56 -07001261 bcm_sf2_gphy_enable_set(priv->dev->ds, true);
Florian Fainelli2399d612016-10-20 09:32:19 -07001262}
1263
Florian Fainellid9338022016-08-18 15:30:14 -07001264#ifdef CONFIG_PM_SLEEP
1265static int bcm_sf2_suspend(struct device *dev)
Florian Fainelli246d7f72014-08-27 17:04:56 -07001266{
Wolfram Sang63382e02018-10-21 22:00:12 +02001267 struct bcm_sf2_priv *priv = dev_get_drvdata(dev);
Florian Fainellid9338022016-08-18 15:30:14 -07001268
Florian Fainellif4589952016-08-26 12:18:33 -07001269 return dsa_switch_suspend(priv->dev->ds);
Florian Fainelli246d7f72014-08-27 17:04:56 -07001270}
Florian Fainellid9338022016-08-18 15:30:14 -07001271
1272static int bcm_sf2_resume(struct device *dev)
1273{
Wolfram Sang63382e02018-10-21 22:00:12 +02001274 struct bcm_sf2_priv *priv = dev_get_drvdata(dev);
Florian Fainellid9338022016-08-18 15:30:14 -07001275
Florian Fainellif4589952016-08-26 12:18:33 -07001276 return dsa_switch_resume(priv->dev->ds);
Florian Fainellid9338022016-08-18 15:30:14 -07001277}
1278#endif /* CONFIG_PM_SLEEP */
1279
1280static SIMPLE_DEV_PM_OPS(bcm_sf2_pm_ops,
1281 bcm_sf2_suspend, bcm_sf2_resume);
1282
Florian Fainellid9338022016-08-18 15:30:14 -07001283
1284static struct platform_driver bcm_sf2_driver = {
1285 .probe = bcm_sf2_sw_probe,
1286 .remove = bcm_sf2_sw_remove,
Florian Fainelli2399d612016-10-20 09:32:19 -07001287 .shutdown = bcm_sf2_sw_shutdown,
Florian Fainellid9338022016-08-18 15:30:14 -07001288 .driver = {
1289 .name = "brcm-sf2",
1290 .of_match_table = bcm_sf2_of_match,
1291 .pm = &bcm_sf2_pm_ops,
1292 },
1293};
1294module_platform_driver(bcm_sf2_driver);
Florian Fainelli246d7f72014-08-27 17:04:56 -07001295
1296MODULE_AUTHOR("Broadcom Corporation");
1297MODULE_DESCRIPTION("Driver for Broadcom Starfighter 2 ethernet switch chip");
1298MODULE_LICENSE("GPL");
1299MODULE_ALIAS("platform:brcm-sf2");