blob: 5a8759d2de6c5b9c764f0b47a9a9d7bd31d4be9d [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);
Florian Fainellide34d702020-02-06 11:23:52 -080071 reg |= (MII_SW_OR | LINK_STS);
Florian Fainelli98c5f7d2020-02-24 15:56:32 -080072 reg &= ~GMII_SPEED_UP_2G;
Florian Fainelli5fc0f212019-10-31 15:54:05 -070073 core_writel(priv, reg, offset);
74
75 /* Enable Broadcast, Multicast, Unicast forwarding to IMP port */
76 reg = core_readl(priv, CORE_IMP_CTL);
77 reg |= (RX_BCST_EN | RX_MCST_EN | RX_UCST_EN);
78 reg &= ~(RX_DIS | TX_DIS);
79 core_writel(priv, reg, CORE_IMP_CTL);
80 } else {
81 reg = core_readl(priv, CORE_G_PCTL_PORT(port));
82 reg &= ~(RX_DIS | TX_DIS);
83 core_writel(priv, reg, CORE_G_PCTL_PORT(port));
84 }
Florian Fainelli246d7f72014-08-27 17:04:56 -070085}
86
Florian Fainellib0836682015-02-05 11:40:41 -080087static void bcm_sf2_gphy_enable_set(struct dsa_switch *ds, bool enable)
88{
Florian Fainellif4589952016-08-26 12:18:33 -070089 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainellib0836682015-02-05 11:40:41 -080090 u32 reg;
91
Florian Fainelli9af197a2015-02-05 11:40:42 -080092 reg = reg_readl(priv, REG_SPHY_CNTRL);
93 if (enable) {
94 reg |= PHY_RESET;
Florian Fainelli4b52d012017-11-21 17:37:46 -080095 reg &= ~(EXT_PWR_DOWN | IDDQ_BIAS | IDDQ_GLOBAL_PWR | CK25_DIS);
Florian Fainelli9af197a2015-02-05 11:40:42 -080096 reg_writel(priv, reg, REG_SPHY_CNTRL);
97 udelay(21);
98 reg = reg_readl(priv, REG_SPHY_CNTRL);
99 reg &= ~PHY_RESET;
100 } else {
101 reg |= EXT_PWR_DOWN | IDDQ_BIAS | PHY_RESET;
102 reg_writel(priv, reg, REG_SPHY_CNTRL);
103 mdelay(1);
104 reg |= CK25_DIS;
105 }
106 reg_writel(priv, reg, REG_SPHY_CNTRL);
Florian Fainellib0836682015-02-05 11:40:41 -0800107
Florian Fainelli9af197a2015-02-05 11:40:42 -0800108 /* Use PHY-driven LED signaling */
109 if (!enable) {
110 reg = reg_readl(priv, REG_LED_CNTRL(0));
111 reg |= SPDLNK_SRC_SEL;
112 reg_writel(priv, reg, REG_LED_CNTRL(0));
113 }
Florian Fainellib0836682015-02-05 11:40:41 -0800114}
115
Florian Fainelli8b7c94e2015-10-23 12:11:08 -0700116static inline void bcm_sf2_port_intr_enable(struct bcm_sf2_priv *priv,
117 int port)
118{
119 unsigned int off;
120
121 switch (port) {
122 case 7:
123 off = P7_IRQ_OFF;
124 break;
125 case 0:
126 /* Port 0 interrupts are located on the first bank */
127 intrl2_0_mask_clear(priv, P_IRQ_MASK(P0_IRQ_OFF));
128 return;
129 default:
130 off = P_IRQ_OFF(port);
131 break;
132 }
133
134 intrl2_1_mask_clear(priv, P_IRQ_MASK(off));
135}
136
137static inline void bcm_sf2_port_intr_disable(struct bcm_sf2_priv *priv,
138 int port)
139{
140 unsigned int off;
141
142 switch (port) {
143 case 7:
144 off = P7_IRQ_OFF;
145 break;
146 case 0:
147 /* Port 0 interrupts are located on the first bank */
148 intrl2_0_mask_set(priv, P_IRQ_MASK(P0_IRQ_OFF));
149 intrl2_0_writel(priv, P_IRQ_MASK(P0_IRQ_OFF), INTRL2_CPU_CLEAR);
150 return;
151 default:
152 off = P_IRQ_OFF(port);
153 break;
154 }
155
156 intrl2_1_mask_set(priv, P_IRQ_MASK(off));
157 intrl2_1_writel(priv, P_IRQ_MASK(off), INTRL2_CPU_CLEAR);
158}
159
Florian Fainellib6d045d2014-09-24 17:05:20 -0700160static int bcm_sf2_port_setup(struct dsa_switch *ds, int port,
161 struct phy_device *phy)
Florian Fainelli246d7f72014-08-27 17:04:56 -0700162{
Florian Fainellif4589952016-08-26 12:18:33 -0700163 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainellie1b91472017-01-30 09:48:41 -0800164 unsigned int i;
Florian Fainelli246d7f72014-08-27 17:04:56 -0700165 u32 reg;
166
Vivien Didelot74be4ba2019-08-19 16:00:49 -0400167 if (!dsa_is_user_port(ds, port))
168 return 0;
169
Florian Fainelli246d7f72014-08-27 17:04:56 -0700170 /* Clear the memory power down */
171 reg = core_readl(priv, CORE_MEM_PSM_VDD_CTRL);
172 reg &= ~P_TXQ_PSM_VDD(port);
173 core_writel(priv, reg, CORE_MEM_PSM_VDD_CTRL);
174
Florian Fainellic0e68202018-08-03 11:08:42 -0700175 /* Enable learning */
176 reg = core_readl(priv, CORE_DIS_LEARN);
177 reg &= ~BIT(port);
178 core_writel(priv, reg, CORE_DIS_LEARN);
179
Florian Fainelli64ff2ae2017-01-20 12:36:32 -0800180 /* Enable Broadcom tags for that port if requested */
Florian Fainelli8b6b2082020-03-30 14:38:50 -0700181 if (priv->brcm_tag_mask & BIT(port)) {
Florian Fainellib409a9e2017-09-19 10:46:48 -0700182 b53_brcm_hdr_setup(ds, port);
Florian Fainelli64ff2ae2017-01-20 12:36:32 -0800183
Florian Fainelli8b6b2082020-03-30 14:38:50 -0700184 /* Disable learning on ASP port */
185 if (port == 7) {
186 reg = core_readl(priv, CORE_DIS_LEARN);
187 reg |= BIT(port);
188 core_writel(priv, reg, CORE_DIS_LEARN);
189 }
190 }
191
Florian Fainellie1b91472017-01-30 09:48:41 -0800192 /* Configure Traffic Class to QoS mapping, allow each priority to map
193 * to a different queue number
194 */
195 reg = core_readl(priv, CORE_PORT_TC2_QOS_MAP_PORT(port));
Florian Fainelli181183772017-09-03 20:27:02 -0700196 for (i = 0; i < SF2_NUM_EGRESS_QUEUES; i++)
Florian Fainellie1b91472017-01-30 09:48:41 -0800197 reg |= i << (PRT_TO_QID_SHIFT * i);
198 core_writel(priv, reg, CORE_PORT_TC2_QOS_MAP_PORT(port));
199
Florian Fainelli9af197a2015-02-05 11:40:42 -0800200 /* Re-enable the GPHY and re-apply workarounds */
Florian Fainelli8b7c94e2015-10-23 12:11:08 -0700201 if (priv->int_phy_mask & 1 << port && priv->hw_params.num_gphy == 1) {
Florian Fainelli9af197a2015-02-05 11:40:42 -0800202 bcm_sf2_gphy_enable_set(ds, true);
203 if (phy) {
204 /* if phy_stop() has been called before, phy
205 * will be in halted state, and phy_start()
206 * will call resume.
207 *
208 * the resume path does not configure back
209 * autoneg settings, and since we hard reset
210 * the phy manually here, we need to reset the
211 * state machine also.
212 */
213 phy->state = PHY_READY;
214 phy_init_hw(phy);
215 }
216 }
217
Florian Fainelli8b7c94e2015-10-23 12:11:08 -0700218 /* Enable MoCA port interrupts to get notified */
219 if (port == priv->moca_port)
220 bcm_sf2_port_intr_enable(priv, port);
Florian Fainelli246d7f72014-08-27 17:04:56 -0700221
Florian Fainelli32e47ff2017-10-11 10:57:51 -0700222 /* Set per-queue pause threshold to 32 */
223 core_writel(priv, 32, CORE_TXQ_THD_PAUSE_QN_PORT(port));
224
225 /* Set ACB threshold to 24 */
226 for (i = 0; i < SF2_NUM_EGRESS_QUEUES; i++) {
227 reg = acb_readl(priv, ACB_QUEUE_CFG(port *
228 SF2_NUM_EGRESS_QUEUES + i));
229 reg &= ~XOFF_THRESHOLD_MASK;
230 reg |= 24;
231 acb_writel(priv, reg, ACB_QUEUE_CFG(port *
232 SF2_NUM_EGRESS_QUEUES + i));
233 }
234
Florian Fainellif86ad772017-09-19 10:46:54 -0700235 return b53_enable_port(ds, port, phy);
Florian Fainelli246d7f72014-08-27 17:04:56 -0700236}
237
Andrew Lunn75104db2019-02-24 20:44:43 +0100238static void bcm_sf2_port_disable(struct dsa_switch *ds, int port)
Florian Fainelli246d7f72014-08-27 17:04:56 -0700239{
Florian Fainellif4589952016-08-26 12:18:33 -0700240 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Colin Ian King5c17a072018-07-04 07:54:36 +0100241 u32 reg;
Florian Fainelli246d7f72014-08-27 17:04:56 -0700242
Florian Fainellic0e68202018-08-03 11:08:42 -0700243 /* Disable learning while in WoL mode */
244 if (priv->wol_ports_mask & (1 << port)) {
245 reg = core_readl(priv, CORE_DIS_LEARN);
246 reg |= BIT(port);
247 core_writel(priv, reg, CORE_DIS_LEARN);
Florian Fainelli96e65d72014-09-18 17:31:25 -0700248 return;
Florian Fainellic0e68202018-08-03 11:08:42 -0700249 }
Florian Fainelli96e65d72014-09-18 17:31:25 -0700250
Florian Fainelli8b7c94e2015-10-23 12:11:08 -0700251 if (port == priv->moca_port)
252 bcm_sf2_port_intr_disable(priv, port);
Florian Fainellib6d045d2014-09-24 17:05:20 -0700253
Florian Fainelli8b7c94e2015-10-23 12:11:08 -0700254 if (priv->int_phy_mask & 1 << port && priv->hw_params.num_gphy == 1)
Florian Fainelli9af197a2015-02-05 11:40:42 -0800255 bcm_sf2_gphy_enable_set(ds, false);
256
Andrew Lunn75104db2019-02-24 20:44:43 +0100257 b53_disable_port(ds, port);
Florian Fainelli246d7f72014-08-27 17:04:56 -0700258
259 /* Power down the port memory */
260 reg = core_readl(priv, CORE_MEM_PSM_VDD_CTRL);
261 reg |= P_TXQ_PSM_VDD(port);
262 core_writel(priv, reg, CORE_MEM_PSM_VDD_CTRL);
263}
264
Florian Fainelli450b05c2014-09-24 17:05:22 -0700265
Florian Fainelli461cd1b02016-06-07 16:32:43 -0700266static int bcm_sf2_sw_indir_rw(struct bcm_sf2_priv *priv, int op, int addr,
267 int regnum, u16 val)
268{
269 int ret = 0;
270 u32 reg;
271
272 reg = reg_readl(priv, REG_SWITCH_CNTRL);
273 reg |= MDIO_MASTER_SEL;
274 reg_writel(priv, reg, REG_SWITCH_CNTRL);
275
276 /* Page << 8 | offset */
277 reg = 0x70;
278 reg <<= 2;
279 core_writel(priv, addr, reg);
280
281 /* Page << 8 | offset */
282 reg = 0x80 << 8 | regnum << 1;
283 reg <<= 2;
284
285 if (op)
286 ret = core_readl(priv, reg);
287 else
288 core_writel(priv, val, reg);
289
290 reg = reg_readl(priv, REG_SWITCH_CNTRL);
291 reg &= ~MDIO_MASTER_SEL;
292 reg_writel(priv, reg, REG_SWITCH_CNTRL);
293
294 return ret & 0xffff;
295}
296
297static int bcm_sf2_sw_mdio_read(struct mii_bus *bus, int addr, int regnum)
298{
299 struct bcm_sf2_priv *priv = bus->priv;
300
301 /* Intercept reads from Broadcom pseudo-PHY address, else, send
302 * them to our master MDIO bus controller
303 */
304 if (addr == BRCM_PSEUDO_PHY_ADDR && priv->indir_phy_mask & BIT(addr))
305 return bcm_sf2_sw_indir_rw(priv, 1, addr, regnum, 0);
306 else
Florian Fainelli2cfe8f822017-01-07 21:01:57 -0800307 return mdiobus_read_nested(priv->master_mii_bus, addr, regnum);
Florian Fainelli461cd1b02016-06-07 16:32:43 -0700308}
309
310static int bcm_sf2_sw_mdio_write(struct mii_bus *bus, int addr, int regnum,
311 u16 val)
312{
313 struct bcm_sf2_priv *priv = bus->priv;
314
315 /* Intercept writes to the Broadcom pseudo-PHY address, else,
316 * send them to our master MDIO bus controller
317 */
318 if (addr == BRCM_PSEUDO_PHY_ADDR && priv->indir_phy_mask & BIT(addr))
Kangjie Lue49505f2018-12-25 22:08:18 -0600319 return bcm_sf2_sw_indir_rw(priv, 0, addr, regnum, val);
Florian Fainelli461cd1b02016-06-07 16:32:43 -0700320 else
Kangjie Lue49505f2018-12-25 22:08:18 -0600321 return mdiobus_write_nested(priv->master_mii_bus, addr,
322 regnum, val);
Florian Fainelli461cd1b02016-06-07 16:32:43 -0700323}
324
Florian Fainelli246d7f72014-08-27 17:04:56 -0700325static irqreturn_t bcm_sf2_switch_0_isr(int irq, void *dev_id)
326{
Florian Fainellibc0cb652018-05-10 13:17:33 -0700327 struct dsa_switch *ds = dev_id;
328 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainelli246d7f72014-08-27 17:04:56 -0700329
330 priv->irq0_stat = intrl2_0_readl(priv, INTRL2_CPU_STATUS) &
331 ~priv->irq0_mask;
332 intrl2_0_writel(priv, priv->irq0_stat, INTRL2_CPU_CLEAR);
333
334 return IRQ_HANDLED;
335}
336
337static irqreturn_t bcm_sf2_switch_1_isr(int irq, void *dev_id)
338{
Florian Fainellibc0cb652018-05-10 13:17:33 -0700339 struct dsa_switch *ds = dev_id;
340 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainelli246d7f72014-08-27 17:04:56 -0700341
342 priv->irq1_stat = intrl2_1_readl(priv, INTRL2_CPU_STATUS) &
343 ~priv->irq1_mask;
344 intrl2_1_writel(priv, priv->irq1_stat, INTRL2_CPU_CLEAR);
345
Florian Fainellibc0cb652018-05-10 13:17:33 -0700346 if (priv->irq1_stat & P_LINK_UP_IRQ(P7_IRQ_OFF)) {
347 priv->port_sts[7].link = true;
348 dsa_port_phylink_mac_change(ds, 7, true);
349 }
350 if (priv->irq1_stat & P_LINK_DOWN_IRQ(P7_IRQ_OFF)) {
351 priv->port_sts[7].link = false;
352 dsa_port_phylink_mac_change(ds, 7, false);
353 }
Florian Fainelli246d7f72014-08-27 17:04:56 -0700354
355 return IRQ_HANDLED;
356}
357
Florian Fainelli33f84612014-11-25 18:08:49 -0800358static int bcm_sf2_sw_rst(struct bcm_sf2_priv *priv)
359{
360 unsigned int timeout = 1000;
361 u32 reg;
Florian Fainellieee87e42019-11-04 13:51:39 -0800362 int ret;
363
364 /* The watchdog reset does not work on 7278, we need to hit the
365 * "external" reset line through the reset controller.
366 */
367 if (priv->type == BCM7278_DEVICE_ID && !IS_ERR(priv->rcdev)) {
368 ret = reset_control_assert(priv->rcdev);
369 if (ret)
370 return ret;
371
372 return reset_control_deassert(priv->rcdev);
373 }
Florian Fainelli33f84612014-11-25 18:08:49 -0800374
375 reg = core_readl(priv, CORE_WATCHDOG_CTRL);
376 reg |= SOFTWARE_RESET | EN_CHIP_RST | EN_SW_RESET;
377 core_writel(priv, reg, CORE_WATCHDOG_CTRL);
378
379 do {
380 reg = core_readl(priv, CORE_WATCHDOG_CTRL);
381 if (!(reg & SOFTWARE_RESET))
382 break;
383
384 usleep_range(1000, 2000);
385 } while (timeout-- > 0);
386
387 if (timeout == 0)
388 return -ETIMEDOUT;
389
390 return 0;
391}
392
Florian Fainelli691c9a82015-01-20 16:42:00 -0800393static void bcm_sf2_intr_disable(struct bcm_sf2_priv *priv)
394{
Florian Fainellif01d5982016-08-25 15:23:41 -0700395 intrl2_0_mask_set(priv, 0xffffffff);
Florian Fainelli691c9a82015-01-20 16:42:00 -0800396 intrl2_0_writel(priv, 0xffffffff, INTRL2_CPU_CLEAR);
Florian Fainellif01d5982016-08-25 15:23:41 -0700397 intrl2_1_mask_set(priv, 0xffffffff);
Florian Fainelli691c9a82015-01-20 16:42:00 -0800398 intrl2_1_writel(priv, 0xffffffff, INTRL2_CPU_CLEAR);
Florian Fainelli691c9a82015-01-20 16:42:00 -0800399}
400
Florian Fainelli8b7c94e2015-10-23 12:11:08 -0700401static void bcm_sf2_identify_ports(struct bcm_sf2_priv *priv,
402 struct device_node *dn)
403{
404 struct device_node *port;
Florian Fainelli8b7c94e2015-10-23 12:11:08 -0700405 unsigned int port_num;
Andrew Lunn0c65b2b2019-11-04 02:40:33 +0100406 phy_interface_t mode;
407 int err;
Florian Fainelli8b7c94e2015-10-23 12:11:08 -0700408
409 priv->moca_port = -1;
410
411 for_each_available_child_of_node(dn, port) {
412 if (of_property_read_u32(port, "reg", &port_num))
413 continue;
414
415 /* Internal PHYs get assigned a specific 'phy-mode' property
416 * value: "internal" to help flag them before MDIO probing
417 * has completed, since they might be turned off at that
418 * time
419 */
Andrew Lunn0c65b2b2019-11-04 02:40:33 +0100420 err = of_get_phy_mode(port, &mode);
421 if (err)
Florian Fainellibedd00c2017-06-23 10:33:16 -0700422 continue;
Florian Fainelli8b7c94e2015-10-23 12:11:08 -0700423
Florian Fainellibedd00c2017-06-23 10:33:16 -0700424 if (mode == PHY_INTERFACE_MODE_INTERNAL)
425 priv->int_phy_mask |= 1 << port_num;
Florian Fainelli8b7c94e2015-10-23 12:11:08 -0700426
427 if (mode == PHY_INTERFACE_MODE_MOCA)
428 priv->moca_port = port_num;
Florian Fainelli64ff2ae2017-01-20 12:36:32 -0800429
430 if (of_property_read_bool(port, "brcm,use-bcm-hdr"))
431 priv->brcm_tag_mask |= 1 << port_num;
Florian Fainelli8b7c94e2015-10-23 12:11:08 -0700432 }
433}
434
Florian Fainelli461cd1b02016-06-07 16:32:43 -0700435static int bcm_sf2_mdio_register(struct dsa_switch *ds)
436{
Florian Fainellif4589952016-08-26 12:18:33 -0700437 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainelli461cd1b02016-06-07 16:32:43 -0700438 struct device_node *dn;
439 static int index;
440 int err;
441
442 /* Find our integrated MDIO bus node */
443 dn = of_find_compatible_node(NULL, NULL, "brcm,unimac-mdio");
444 priv->master_mii_bus = of_mdio_find_bus(dn);
445 if (!priv->master_mii_bus)
446 return -EPROBE_DEFER;
447
448 get_device(&priv->master_mii_bus->dev);
449 priv->master_mii_dn = dn;
450
451 priv->slave_mii_bus = devm_mdiobus_alloc(ds->dev);
452 if (!priv->slave_mii_bus)
453 return -ENOMEM;
454
455 priv->slave_mii_bus->priv = priv;
456 priv->slave_mii_bus->name = "sf2 slave mii";
457 priv->slave_mii_bus->read = bcm_sf2_sw_mdio_read;
458 priv->slave_mii_bus->write = bcm_sf2_sw_mdio_write;
459 snprintf(priv->slave_mii_bus->id, MII_BUS_ID_SIZE, "sf2-%d",
460 index++);
461 priv->slave_mii_bus->dev.of_node = dn;
462
463 /* Include the pseudo-PHY address to divert reads towards our
464 * workaround. This is only required for 7445D0, since 7445E0
465 * disconnects the internal switch pseudo-PHY such that we can use the
466 * regular SWITCH_MDIO master controller instead.
467 *
468 * Here we flag the pseudo PHY as needing special treatment and would
469 * otherwise make all other PHY read/writes go to the master MDIO bus
470 * controller that comes with this switch backed by the "mdio-unimac"
471 * driver.
472 */
473 if (of_machine_is_compatible("brcm,bcm7445d0"))
474 priv->indir_phy_mask |= (1 << BRCM_PSEUDO_PHY_ADDR);
475 else
476 priv->indir_phy_mask = 0;
477
478 ds->phys_mii_mask = priv->indir_phy_mask;
479 ds->slave_mii_bus = priv->slave_mii_bus;
480 priv->slave_mii_bus->parent = ds->dev->parent;
481 priv->slave_mii_bus->phy_mask = ~priv->indir_phy_mask;
482
Florian Fainelli536fab52020-04-04 14:35:17 -0700483 err = mdiobus_register(priv->slave_mii_bus);
Florian Fainelli00e798c2018-05-15 16:56:19 -0700484 if (err && dn)
Florian Fainelli461cd1b02016-06-07 16:32:43 -0700485 of_node_put(dn);
486
487 return err;
488}
489
490static void bcm_sf2_mdio_unregister(struct bcm_sf2_priv *priv)
491{
492 mdiobus_unregister(priv->slave_mii_bus);
zhong jiang1ddc5d32018-09-16 21:22:31 +0800493 of_node_put(priv->master_mii_dn);
Florian Fainelli461cd1b02016-06-07 16:32:43 -0700494}
495
Florian Fainelliaa9aef72014-09-19 13:07:55 -0700496static u32 bcm_sf2_sw_get_phy_flags(struct dsa_switch *ds, int port)
497{
Florian Fainellif4589952016-08-26 12:18:33 -0700498 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainelliaa9aef72014-09-19 13:07:55 -0700499
500 /* The BCM7xxx PHY driver expects to find the integrated PHY revision
501 * in bits 15:8 and the patch level in bits 7:0 which is exactly what
502 * the REG_PHY_REVISION register layout is.
503 */
504
505 return priv->hw_params.gphy_rev;
506}
507
Florian Fainellibc0cb652018-05-10 13:17:33 -0700508static void bcm_sf2_sw_validate(struct dsa_switch *ds, int port,
509 unsigned long *supported,
510 struct phylink_link_state *state)
511{
Florian Fainelli738a2e42019-08-21 17:07:46 -0700512 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainellibc0cb652018-05-10 13:17:33 -0700513 __ETHTOOL_DECLARE_LINK_MODE_MASK(mask) = { 0, };
514
515 if (!phy_interface_mode_is_rgmii(state->interface) &&
516 state->interface != PHY_INTERFACE_MODE_MII &&
517 state->interface != PHY_INTERFACE_MODE_REVMII &&
518 state->interface != PHY_INTERFACE_MODE_GMII &&
519 state->interface != PHY_INTERFACE_MODE_INTERNAL &&
520 state->interface != PHY_INTERFACE_MODE_MOCA) {
521 bitmap_zero(supported, __ETHTOOL_LINK_MODE_MASK_NBITS);
Florian Fainelli738a2e42019-08-21 17:07:46 -0700522 if (port != core_readl(priv, CORE_IMP0_PRT_ID))
523 dev_err(ds->dev,
524 "Unsupported interface: %d for port %d\n",
525 state->interface, port);
Florian Fainellibc0cb652018-05-10 13:17:33 -0700526 return;
527 }
528
529 /* Allow all the expected bits */
530 phylink_set(mask, Autoneg);
531 phylink_set_port_modes(mask);
532 phylink_set(mask, Pause);
533 phylink_set(mask, Asym_Pause);
534
535 /* With the exclusion of MII and Reverse MII, we support Gigabit,
536 * including Half duplex
537 */
538 if (state->interface != PHY_INTERFACE_MODE_MII &&
539 state->interface != PHY_INTERFACE_MODE_REVMII) {
540 phylink_set(mask, 1000baseT_Full);
541 phylink_set(mask, 1000baseT_Half);
542 }
543
544 phylink_set(mask, 10baseT_Half);
545 phylink_set(mask, 10baseT_Full);
546 phylink_set(mask, 100baseT_Half);
547 phylink_set(mask, 100baseT_Full);
548
549 bitmap_and(supported, supported, mask,
550 __ETHTOOL_LINK_MODE_MASK_NBITS);
551 bitmap_and(state->advertising, state->advertising, mask,
552 __ETHTOOL_LINK_MODE_MASK_NBITS);
553}
554
555static void bcm_sf2_sw_mac_config(struct dsa_switch *ds, int port,
556 unsigned int mode,
557 const struct phylink_link_state *state)
558{
559 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
560 u32 id_mode_dis = 0, port_mode;
561 u32 reg, offset;
562
Florian Fainelli738a2e42019-08-21 17:07:46 -0700563 if (port == core_readl(priv, CORE_IMP0_PRT_ID))
564 return;
565
Florian Fainellibc0cb652018-05-10 13:17:33 -0700566 if (priv->type == BCM7445_DEVICE_ID)
567 offset = CORE_STS_OVERRIDE_GMIIP_PORT(port);
568 else
569 offset = CORE_STS_OVERRIDE_GMIIP2_PORT(port);
570
571 switch (state->interface) {
572 case PHY_INTERFACE_MODE_RGMII:
573 id_mode_dis = 1;
574 /* fallthrough */
575 case PHY_INTERFACE_MODE_RGMII_TXID:
576 port_mode = EXT_GPHY;
577 break;
578 case PHY_INTERFACE_MODE_MII:
579 port_mode = EXT_EPHY;
580 break;
581 case PHY_INTERFACE_MODE_REVMII:
582 port_mode = EXT_REVMII;
583 break;
584 default:
585 /* all other PHYs: internal and MoCA */
586 goto force_link;
587 }
588
589 /* Clear id_mode_dis bit, and the existing port mode, let
590 * RGMII_MODE_EN bet set by mac_link_{up,down}
591 */
592 reg = reg_readl(priv, REG_RGMII_CNTRL_P(port));
593 reg &= ~ID_MODE_DIS;
594 reg &= ~(PORT_MODE_MASK << PORT_MODE_SHIFT);
595 reg &= ~(RX_PAUSE_EN | TX_PAUSE_EN);
596
597 reg |= port_mode;
598 if (id_mode_dis)
599 reg |= ID_MODE_DIS;
600
601 if (state->pause & MLO_PAUSE_TXRX_MASK) {
602 if (state->pause & MLO_PAUSE_TX)
603 reg |= TX_PAUSE_EN;
604 reg |= RX_PAUSE_EN;
605 }
606
607 reg_writel(priv, reg, REG_RGMII_CNTRL_P(port));
608
609force_link:
610 /* Force link settings detected from the PHY */
611 reg = SW_OVERRIDE;
612 switch (state->speed) {
613 case SPEED_1000:
614 reg |= SPDSTS_1000 << SPEED_SHIFT;
615 break;
616 case SPEED_100:
617 reg |= SPDSTS_100 << SPEED_SHIFT;
618 break;
619 }
620
Florian Fainellibc0cb652018-05-10 13:17:33 -0700621 if (state->duplex == DUPLEX_FULL)
622 reg |= DUPLX_MODE;
623
624 core_writel(priv, reg, offset);
625}
626
627static void bcm_sf2_sw_mac_link_set(struct dsa_switch *ds, int port,
628 phy_interface_t interface, bool link)
629{
630 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
631 u32 reg;
632
633 if (!phy_interface_mode_is_rgmii(interface) &&
634 interface != PHY_INTERFACE_MODE_MII &&
635 interface != PHY_INTERFACE_MODE_REVMII)
636 return;
637
638 /* If the link is down, just disable the interface to conserve power */
639 reg = reg_readl(priv, REG_RGMII_CNTRL_P(port));
640 if (link)
641 reg |= RGMII_MODE_EN;
642 else
643 reg &= ~RGMII_MODE_EN;
644 reg_writel(priv, reg, REG_RGMII_CNTRL_P(port));
645}
646
647static void bcm_sf2_sw_mac_link_down(struct dsa_switch *ds, int port,
648 unsigned int mode,
649 phy_interface_t interface)
650{
Russell King2d1f90f2020-06-30 11:28:08 +0100651 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
652 u32 reg, offset;
653
654 if (port != core_readl(priv, CORE_IMP0_PRT_ID)) {
655 if (priv->type == BCM7445_DEVICE_ID)
656 offset = CORE_STS_OVERRIDE_GMIIP_PORT(port);
657 else
658 offset = CORE_STS_OVERRIDE_GMIIP2_PORT(port);
659
660 reg = core_readl(priv, offset);
661 reg &= ~LINK_STS;
662 core_writel(priv, reg, offset);
663 }
664
Florian Fainellibc0cb652018-05-10 13:17:33 -0700665 bcm_sf2_sw_mac_link_set(ds, port, interface, false);
666}
667
668static void bcm_sf2_sw_mac_link_up(struct dsa_switch *ds, int port,
669 unsigned int mode,
670 phy_interface_t interface,
Russell King5b502a72020-02-26 10:23:46 +0000671 struct phy_device *phydev,
672 int speed, int duplex,
673 bool tx_pause, bool rx_pause)
Florian Fainellibc0cb652018-05-10 13:17:33 -0700674{
675 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
676 struct ethtool_eee *p = &priv->dev->ports[port].eee;
Russell King2d1f90f2020-06-30 11:28:08 +0100677 u32 reg, offset;
Florian Fainellibc0cb652018-05-10 13:17:33 -0700678
679 bcm_sf2_sw_mac_link_set(ds, port, interface, true);
680
Russell King2d1f90f2020-06-30 11:28:08 +0100681 if (port != core_readl(priv, CORE_IMP0_PRT_ID)) {
682 if (priv->type == BCM7445_DEVICE_ID)
683 offset = CORE_STS_OVERRIDE_GMIIP_PORT(port);
684 else
685 offset = CORE_STS_OVERRIDE_GMIIP2_PORT(port);
686
687 reg = core_readl(priv, offset);
688 reg |= LINK_STS;
689 core_writel(priv, reg, offset);
690 }
691
Florian Fainellibc0cb652018-05-10 13:17:33 -0700692 if (mode == MLO_AN_PHY && phydev)
693 p->eee_enabled = b53_eee_init(ds, port, phydev);
694}
695
696static void bcm_sf2_sw_fixed_state(struct dsa_switch *ds, int port,
697 struct phylink_link_state *status)
698{
699 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
700
701 status->link = false;
702
703 /* MoCA port is special as we do not get link status from CORE_LNKSTS,
704 * which means that we need to force the link at the port override
705 * level to get the data to flow. We do use what the interrupt handler
706 * did determine before.
707 *
708 * For the other ports, we just force the link status, since this is
709 * a fixed PHY device.
710 */
711 if (port == priv->moca_port) {
712 status->link = priv->port_sts[port].link;
713 /* For MoCA interfaces, also force a link down notification
714 * since some version of the user-space daemon (mocad) use
715 * cmd->autoneg to force the link, which messes up the PHY
716 * state machine and make it go in PHY_FORCING state instead.
717 */
718 if (!status->link)
Vivien Didelot68bb8ea2019-10-21 16:51:15 -0400719 netif_carrier_off(dsa_to_port(ds, port)->slave);
Florian Fainellibc0cb652018-05-10 13:17:33 -0700720 status->duplex = DUPLEX_FULL;
721 } else {
722 status->link = true;
723 }
724}
725
Florian Fainelli32e47ff2017-10-11 10:57:51 -0700726static void bcm_sf2_enable_acb(struct dsa_switch *ds)
727{
728 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
729 u32 reg;
730
731 /* Enable ACB globally */
732 reg = acb_readl(priv, ACB_CONTROL);
733 reg |= (ACB_FLUSH_MASK << ACB_FLUSH_SHIFT);
734 acb_writel(priv, reg, ACB_CONTROL);
735 reg &= ~(ACB_FLUSH_MASK << ACB_FLUSH_SHIFT);
736 reg |= ACB_EN | ACB_ALGORITHM;
737 acb_writel(priv, reg, ACB_CONTROL);
738}
739
Florian Fainelli8cfa9492014-09-18 17:31:23 -0700740static int bcm_sf2_sw_suspend(struct dsa_switch *ds)
741{
Florian Fainellif4589952016-08-26 12:18:33 -0700742 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainelli8cfa9492014-09-18 17:31:23 -0700743 unsigned int port;
744
Florian Fainelli691c9a82015-01-20 16:42:00 -0800745 bcm_sf2_intr_disable(priv);
Florian Fainelli8cfa9492014-09-18 17:31:23 -0700746
747 /* Disable all ports physically present including the IMP
748 * port, the other ones have already been disabled during
749 * bcm_sf2_sw_setup
750 */
Dan Carpenter8d6ea932019-02-13 11:23:04 +0300751 for (port = 0; port < ds->num_ports; port++) {
Vivien Didelot4a5b85f2017-10-26 11:22:55 -0400752 if (dsa_is_user_port(ds, port) || dsa_is_cpu_port(ds, port))
Andrew Lunn75104db2019-02-24 20:44:43 +0100753 bcm_sf2_port_disable(ds, port);
Florian Fainelli8cfa9492014-09-18 17:31:23 -0700754 }
755
756 return 0;
757}
758
Florian Fainelli8cfa9492014-09-18 17:31:23 -0700759static int bcm_sf2_sw_resume(struct dsa_switch *ds)
760{
Florian Fainellif4589952016-08-26 12:18:33 -0700761 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainelli8cfa9492014-09-18 17:31:23 -0700762 int ret;
763
764 ret = bcm_sf2_sw_rst(priv);
765 if (ret) {
766 pr_err("%s: failed to software reset switch\n", __func__);
767 return ret;
768 }
769
Florian Fainelli1c0130f2018-11-06 12:58:39 -0800770 ret = bcm_sf2_cfp_resume(ds);
771 if (ret)
772 return ret;
773
Florian Fainellib0836682015-02-05 11:40:41 -0800774 if (priv->hw_params.num_gphy == 1)
775 bcm_sf2_gphy_enable_set(ds, true);
Florian Fainelli8cfa9492014-09-18 17:31:23 -0700776
Florian Fainelliabd01ba2018-10-09 16:48:58 -0700777 ds->ops->setup(ds);
Florian Fainelli32e47ff2017-10-11 10:57:51 -0700778
Florian Fainelli8cfa9492014-09-18 17:31:23 -0700779 return 0;
780}
781
Florian Fainelli96e65d72014-09-18 17:31:25 -0700782static void bcm_sf2_sw_get_wol(struct dsa_switch *ds, int port,
783 struct ethtool_wolinfo *wol)
784{
Vivien Didelot68bb8ea2019-10-21 16:51:15 -0400785 struct net_device *p = dsa_to_port(ds, port)->cpu_dp->master;
Florian Fainellif4589952016-08-26 12:18:33 -0700786 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainellic3152ec2019-02-15 12:16:52 -0800787 struct ethtool_wolinfo pwol = { };
Florian Fainelli96e65d72014-09-18 17:31:25 -0700788
789 /* Get the parent device WoL settings */
Florian Fainellic3152ec2019-02-15 12:16:52 -0800790 if (p->ethtool_ops->get_wol)
791 p->ethtool_ops->get_wol(p, &pwol);
Florian Fainelli96e65d72014-09-18 17:31:25 -0700792
793 /* Advertise the parent device supported settings */
794 wol->supported = pwol.supported;
795 memset(&wol->sopass, 0, sizeof(wol->sopass));
796
797 if (pwol.wolopts & WAKE_MAGICSECURE)
798 memcpy(&wol->sopass, pwol.sopass, sizeof(wol->sopass));
799
800 if (priv->wol_ports_mask & (1 << port))
801 wol->wolopts = pwol.wolopts;
802 else
803 wol->wolopts = 0;
804}
805
806static int bcm_sf2_sw_set_wol(struct dsa_switch *ds, int port,
807 struct ethtool_wolinfo *wol)
808{
Vivien Didelot68bb8ea2019-10-21 16:51:15 -0400809 struct net_device *p = dsa_to_port(ds, port)->cpu_dp->master;
Florian Fainellif4589952016-08-26 12:18:33 -0700810 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Vivien Didelot68bb8ea2019-10-21 16:51:15 -0400811 s8 cpu_port = dsa_to_port(ds, port)->cpu_dp->index;
Florian Fainellic3152ec2019-02-15 12:16:52 -0800812 struct ethtool_wolinfo pwol = { };
Florian Fainelli96e65d72014-09-18 17:31:25 -0700813
Florian Fainellic3152ec2019-02-15 12:16:52 -0800814 if (p->ethtool_ops->get_wol)
815 p->ethtool_ops->get_wol(p, &pwol);
Florian Fainelli96e65d72014-09-18 17:31:25 -0700816 if (wol->wolopts & ~pwol.supported)
817 return -EINVAL;
818
819 if (wol->wolopts)
820 priv->wol_ports_mask |= (1 << port);
821 else
822 priv->wol_ports_mask &= ~(1 << port);
823
824 /* If we have at least one port enabled, make sure the CPU port
825 * is also enabled. If the CPU port is the last one enabled, we disable
826 * it since this configuration does not make sense.
827 */
828 if (priv->wol_ports_mask && priv->wol_ports_mask != (1 << cpu_port))
829 priv->wol_ports_mask |= (1 << cpu_port);
830 else
831 priv->wol_ports_mask &= ~(1 << cpu_port);
832
833 return p->ethtool_ops->set_wol(p, wol);
834}
835
Florian Fainelli7fbb1a92016-06-09 17:42:06 -0700836static int bcm_sf2_sw_setup(struct dsa_switch *ds)
837{
Florian Fainellif4589952016-08-26 12:18:33 -0700838 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainelli7fbb1a92016-06-09 17:42:06 -0700839 unsigned int port;
Florian Fainellid9338022016-08-18 15:30:14 -0700840
Florian Fainelli21a27742017-09-28 11:19:06 -0700841 /* Enable all valid ports and disable those unused */
Florian Fainellid9338022016-08-18 15:30:14 -0700842 for (port = 0; port < priv->hw_params.num_ports; port++) {
Florian Fainelli21a27742017-09-28 11:19:06 -0700843 /* IMP port receives special treatment */
Vivien Didelot4a5b85f2017-10-26 11:22:55 -0400844 if (dsa_is_user_port(ds, port))
Florian Fainelli21a27742017-09-28 11:19:06 -0700845 bcm_sf2_port_setup(ds, port, NULL);
846 else if (dsa_is_cpu_port(ds, port))
Florian Fainellid9338022016-08-18 15:30:14 -0700847 bcm_sf2_imp_setup(ds, port);
Florian Fainelli21a27742017-09-28 11:19:06 -0700848 else
Andrew Lunn75104db2019-02-24 20:44:43 +0100849 bcm_sf2_port_disable(ds, port);
Florian Fainellid9338022016-08-18 15:30:14 -0700850 }
851
Florian Fainelli5c1a6ea2017-10-27 15:56:01 -0700852 b53_configure_vlan(ds);
Florian Fainelli32e47ff2017-10-11 10:57:51 -0700853 bcm_sf2_enable_acb(ds);
Florian Fainellid9338022016-08-18 15:30:14 -0700854
855 return 0;
856}
857
Florian Fainellif4589952016-08-26 12:18:33 -0700858/* The SWITCH_CORE register space is managed by b53 but operates on a page +
859 * register basis so we need to translate that into an address that the
860 * bus-glue understands.
861 */
862#define SF2_PAGE_REG_MKADDR(page, reg) ((page) << 10 | (reg) << 2)
863
864static int bcm_sf2_core_read8(struct b53_device *dev, u8 page, u8 reg,
865 u8 *val)
866{
867 struct bcm_sf2_priv *priv = dev->priv;
868
869 *val = core_readl(priv, SF2_PAGE_REG_MKADDR(page, reg));
870
871 return 0;
872}
873
874static int bcm_sf2_core_read16(struct b53_device *dev, u8 page, u8 reg,
875 u16 *val)
876{
877 struct bcm_sf2_priv *priv = dev->priv;
878
879 *val = core_readl(priv, SF2_PAGE_REG_MKADDR(page, reg));
880
881 return 0;
882}
883
884static int bcm_sf2_core_read32(struct b53_device *dev, u8 page, u8 reg,
885 u32 *val)
886{
887 struct bcm_sf2_priv *priv = dev->priv;
888
889 *val = core_readl(priv, SF2_PAGE_REG_MKADDR(page, reg));
890
891 return 0;
892}
893
894static int bcm_sf2_core_read64(struct b53_device *dev, u8 page, u8 reg,
895 u64 *val)
896{
897 struct bcm_sf2_priv *priv = dev->priv;
898
899 *val = core_readq(priv, SF2_PAGE_REG_MKADDR(page, reg));
900
901 return 0;
902}
903
904static int bcm_sf2_core_write8(struct b53_device *dev, u8 page, u8 reg,
905 u8 value)
906{
907 struct bcm_sf2_priv *priv = dev->priv;
908
909 core_writel(priv, value, SF2_PAGE_REG_MKADDR(page, reg));
910
911 return 0;
912}
913
914static int bcm_sf2_core_write16(struct b53_device *dev, u8 page, u8 reg,
915 u16 value)
916{
917 struct bcm_sf2_priv *priv = dev->priv;
918
919 core_writel(priv, value, SF2_PAGE_REG_MKADDR(page, reg));
920
921 return 0;
922}
923
924static int bcm_sf2_core_write32(struct b53_device *dev, u8 page, u8 reg,
925 u32 value)
926{
927 struct bcm_sf2_priv *priv = dev->priv;
928
929 core_writel(priv, value, SF2_PAGE_REG_MKADDR(page, reg));
930
931 return 0;
932}
933
934static int bcm_sf2_core_write64(struct b53_device *dev, u8 page, u8 reg,
935 u64 value)
936{
937 struct bcm_sf2_priv *priv = dev->priv;
938
939 core_writeq(priv, value, SF2_PAGE_REG_MKADDR(page, reg));
940
941 return 0;
942}
943
Bhumika Goyal7e3108f2017-08-29 22:17:52 +0530944static const struct b53_io_ops bcm_sf2_io_ops = {
Florian Fainellif4589952016-08-26 12:18:33 -0700945 .read8 = bcm_sf2_core_read8,
946 .read16 = bcm_sf2_core_read16,
947 .read32 = bcm_sf2_core_read32,
948 .read48 = bcm_sf2_core_read64,
949 .read64 = bcm_sf2_core_read64,
950 .write8 = bcm_sf2_core_write8,
951 .write16 = bcm_sf2_core_write16,
952 .write32 = bcm_sf2_core_write32,
953 .write48 = bcm_sf2_core_write64,
954 .write64 = bcm_sf2_core_write64,
955};
956
Florian Fainellibadd62c2019-02-06 12:45:58 -0800957static void bcm_sf2_sw_get_strings(struct dsa_switch *ds, int port,
958 u32 stringset, uint8_t *data)
959{
Florian Fainellif4ae9c02019-02-06 12:45:59 -0800960 int cnt = b53_get_sset_count(ds, port, stringset);
961
Florian Fainellibadd62c2019-02-06 12:45:58 -0800962 b53_get_strings(ds, port, stringset, data);
Florian Fainellif4ae9c02019-02-06 12:45:59 -0800963 bcm_sf2_cfp_get_strings(ds, port, stringset,
964 data + cnt * ETH_GSTRING_LEN);
Florian Fainellibadd62c2019-02-06 12:45:58 -0800965}
966
967static void bcm_sf2_sw_get_ethtool_stats(struct dsa_switch *ds, int port,
968 uint64_t *data)
969{
Florian Fainellif4ae9c02019-02-06 12:45:59 -0800970 int cnt = b53_get_sset_count(ds, port, ETH_SS_STATS);
971
Florian Fainellibadd62c2019-02-06 12:45:58 -0800972 b53_get_ethtool_stats(ds, port, data);
Florian Fainellif4ae9c02019-02-06 12:45:59 -0800973 bcm_sf2_cfp_get_ethtool_stats(ds, port, data + cnt);
Florian Fainellibadd62c2019-02-06 12:45:58 -0800974}
975
976static int bcm_sf2_sw_get_sset_count(struct dsa_switch *ds, int port,
977 int sset)
978{
Florian Fainellif4ae9c02019-02-06 12:45:59 -0800979 int cnt = b53_get_sset_count(ds, port, sset);
980
981 if (cnt < 0)
982 return cnt;
983
984 cnt += bcm_sf2_cfp_get_sset_count(ds, port, sset);
985
986 return cnt;
Florian Fainellibadd62c2019-02-06 12:45:58 -0800987}
988
Florian Fainellia82f67a2017-01-08 14:52:08 -0800989static const struct dsa_switch_ops bcm_sf2_ops = {
Florian Fainelli9f668162017-11-30 09:55:35 -0800990 .get_tag_protocol = b53_get_tag_protocol,
Florian Fainelli73095cb2017-01-08 14:52:06 -0800991 .setup = bcm_sf2_sw_setup,
Florian Fainellibadd62c2019-02-06 12:45:58 -0800992 .get_strings = bcm_sf2_sw_get_strings,
993 .get_ethtool_stats = bcm_sf2_sw_get_ethtool_stats,
994 .get_sset_count = bcm_sf2_sw_get_sset_count,
Florian Fainellic7d28c92018-04-25 12:12:53 -0700995 .get_ethtool_phy_stats = b53_get_ethtool_phy_stats,
Florian Fainelli73095cb2017-01-08 14:52:06 -0800996 .get_phy_flags = bcm_sf2_sw_get_phy_flags,
Florian Fainellibc0cb652018-05-10 13:17:33 -0700997 .phylink_validate = bcm_sf2_sw_validate,
998 .phylink_mac_config = bcm_sf2_sw_mac_config,
999 .phylink_mac_link_down = bcm_sf2_sw_mac_link_down,
1000 .phylink_mac_link_up = bcm_sf2_sw_mac_link_up,
1001 .phylink_fixed_state = bcm_sf2_sw_fixed_state,
Florian Fainelli73095cb2017-01-08 14:52:06 -08001002 .suspend = bcm_sf2_sw_suspend,
1003 .resume = bcm_sf2_sw_resume,
1004 .get_wol = bcm_sf2_sw_get_wol,
1005 .set_wol = bcm_sf2_sw_set_wol,
1006 .port_enable = bcm_sf2_port_setup,
1007 .port_disable = bcm_sf2_port_disable,
Florian Fainelli22256b02017-09-19 10:46:50 -07001008 .get_mac_eee = b53_get_mac_eee,
1009 .set_mac_eee = b53_set_mac_eee,
Florian Fainelli73095cb2017-01-08 14:52:06 -08001010 .port_bridge_join = b53_br_join,
1011 .port_bridge_leave = b53_br_leave,
1012 .port_stp_state_set = b53_br_set_stp_state,
1013 .port_fast_age = b53_br_fast_age,
1014 .port_vlan_filtering = b53_vlan_filtering,
1015 .port_vlan_prepare = b53_vlan_prepare,
1016 .port_vlan_add = b53_vlan_add,
1017 .port_vlan_del = b53_vlan_del,
Florian Fainelli73095cb2017-01-08 14:52:06 -08001018 .port_fdb_dump = b53_fdb_dump,
1019 .port_fdb_add = b53_fdb_add,
1020 .port_fdb_del = b53_fdb_del,
Florian Fainelli73181662017-01-30 09:48:43 -08001021 .get_rxnfc = bcm_sf2_get_rxnfc,
1022 .set_rxnfc = bcm_sf2_set_rxnfc,
Florian Fainelliec960de2017-01-30 12:41:43 -08001023 .port_mirror_add = b53_mirror_add,
1024 .port_mirror_del = b53_mirror_del,
Florian Fainelli29bb5e82019-10-24 12:45:08 -07001025 .port_mdb_prepare = b53_mdb_prepare,
1026 .port_mdb_add = b53_mdb_add,
1027 .port_mdb_del = b53_mdb_del,
Florian Fainelli73095cb2017-01-08 14:52:06 -08001028};
1029
Florian Fainellia78e86e2017-01-20 12:36:29 -08001030struct bcm_sf2_of_data {
1031 u32 type;
1032 const u16 *reg_offsets;
1033 unsigned int core_reg_align;
Florian Fainellidf191632017-08-30 12:39:33 -07001034 unsigned int num_cfp_rules;
Florian Fainellia78e86e2017-01-20 12:36:29 -08001035};
1036
1037/* Register offsets for the SWITCH_REG_* block */
1038static const u16 bcm_sf2_7445_reg_offsets[] = {
1039 [REG_SWITCH_CNTRL] = 0x00,
1040 [REG_SWITCH_STATUS] = 0x04,
1041 [REG_DIR_DATA_WRITE] = 0x08,
1042 [REG_DIR_DATA_READ] = 0x0C,
1043 [REG_SWITCH_REVISION] = 0x18,
1044 [REG_PHY_REVISION] = 0x1C,
1045 [REG_SPHY_CNTRL] = 0x2C,
1046 [REG_RGMII_0_CNTRL] = 0x34,
1047 [REG_RGMII_1_CNTRL] = 0x40,
1048 [REG_RGMII_2_CNTRL] = 0x4c,
1049 [REG_LED_0_CNTRL] = 0x90,
1050 [REG_LED_1_CNTRL] = 0x94,
1051 [REG_LED_2_CNTRL] = 0x98,
1052};
1053
1054static const struct bcm_sf2_of_data bcm_sf2_7445_data = {
1055 .type = BCM7445_DEVICE_ID,
1056 .core_reg_align = 0,
1057 .reg_offsets = bcm_sf2_7445_reg_offsets,
Florian Fainellidf191632017-08-30 12:39:33 -07001058 .num_cfp_rules = 256,
Florian Fainellia78e86e2017-01-20 12:36:29 -08001059};
1060
Florian Fainelli0fe99332017-01-20 12:36:30 -08001061static const u16 bcm_sf2_7278_reg_offsets[] = {
1062 [REG_SWITCH_CNTRL] = 0x00,
1063 [REG_SWITCH_STATUS] = 0x04,
1064 [REG_DIR_DATA_WRITE] = 0x08,
1065 [REG_DIR_DATA_READ] = 0x0c,
1066 [REG_SWITCH_REVISION] = 0x10,
1067 [REG_PHY_REVISION] = 0x14,
1068 [REG_SPHY_CNTRL] = 0x24,
1069 [REG_RGMII_0_CNTRL] = 0xe0,
1070 [REG_RGMII_1_CNTRL] = 0xec,
1071 [REG_RGMII_2_CNTRL] = 0xf8,
1072 [REG_LED_0_CNTRL] = 0x40,
1073 [REG_LED_1_CNTRL] = 0x4c,
1074 [REG_LED_2_CNTRL] = 0x58,
1075};
1076
1077static const struct bcm_sf2_of_data bcm_sf2_7278_data = {
1078 .type = BCM7278_DEVICE_ID,
1079 .core_reg_align = 1,
1080 .reg_offsets = bcm_sf2_7278_reg_offsets,
Florian Fainellidf191632017-08-30 12:39:33 -07001081 .num_cfp_rules = 128,
Florian Fainelli0fe99332017-01-20 12:36:30 -08001082};
1083
Florian Fainellia78e86e2017-01-20 12:36:29 -08001084static const struct of_device_id bcm_sf2_of_match[] = {
1085 { .compatible = "brcm,bcm7445-switch-v4.0",
1086 .data = &bcm_sf2_7445_data
1087 },
Florian Fainelli0fe99332017-01-20 12:36:30 -08001088 { .compatible = "brcm,bcm7278-switch-v4.0",
1089 .data = &bcm_sf2_7278_data
1090 },
Florian Fainelli3b07d782017-12-14 17:59:40 -08001091 { .compatible = "brcm,bcm7278-switch-v4.8",
1092 .data = &bcm_sf2_7278_data
1093 },
Florian Fainellia78e86e2017-01-20 12:36:29 -08001094 { /* sentinel */ },
1095};
1096MODULE_DEVICE_TABLE(of, bcm_sf2_of_match);
1097
Florian Fainellid9338022016-08-18 15:30:14 -07001098static int bcm_sf2_sw_probe(struct platform_device *pdev)
1099{
1100 const char *reg_names[BCM_SF2_REGS_NUM] = BCM_SF2_REGS_NAME;
1101 struct device_node *dn = pdev->dev.of_node;
Florian Fainellia78e86e2017-01-20 12:36:29 -08001102 const struct of_device_id *of_id = NULL;
1103 const struct bcm_sf2_of_data *data;
Florian Fainellif4589952016-08-26 12:18:33 -07001104 struct b53_platform_data *pdata;
Florian Fainellia4c61b92017-01-07 21:01:56 -08001105 struct dsa_switch_ops *ops;
Florian Fainelliafa3b592020-04-05 13:00:30 -07001106 struct device_node *ports;
Florian Fainellid9338022016-08-18 15:30:14 -07001107 struct bcm_sf2_priv *priv;
Florian Fainellif4589952016-08-26 12:18:33 -07001108 struct b53_device *dev;
Florian Fainellid9338022016-08-18 15:30:14 -07001109 struct dsa_switch *ds;
1110 void __iomem **base;
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001111 unsigned int i;
1112 u32 reg, rev;
1113 int ret;
1114
Florian Fainellif4589952016-08-26 12:18:33 -07001115 priv = devm_kzalloc(&pdev->dev, sizeof(*priv), GFP_KERNEL);
1116 if (!priv)
Florian Fainellid9338022016-08-18 15:30:14 -07001117 return -ENOMEM;
1118
Florian Fainellia4c61b92017-01-07 21:01:56 -08001119 ops = devm_kzalloc(&pdev->dev, sizeof(*ops), GFP_KERNEL);
1120 if (!ops)
1121 return -ENOMEM;
1122
Florian Fainellif4589952016-08-26 12:18:33 -07001123 dev = b53_switch_alloc(&pdev->dev, &bcm_sf2_io_ops, priv);
1124 if (!dev)
1125 return -ENOMEM;
Florian Fainellid9338022016-08-18 15:30:14 -07001126
Florian Fainellif4589952016-08-26 12:18:33 -07001127 pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL);
1128 if (!pdata)
1129 return -ENOMEM;
1130
Florian Fainellia78e86e2017-01-20 12:36:29 -08001131 of_id = of_match_node(bcm_sf2_of_match, dn);
1132 if (!of_id || !of_id->data)
1133 return -EINVAL;
1134
1135 data = of_id->data;
1136
1137 /* Set SWITCH_REG register offsets and SWITCH_CORE align factor */
1138 priv->type = data->type;
1139 priv->reg_offsets = data->reg_offsets;
1140 priv->core_reg_align = data->core_reg_align;
Florian Fainellidf191632017-08-30 12:39:33 -07001141 priv->num_cfp_rules = data->num_cfp_rules;
Florian Fainellia78e86e2017-01-20 12:36:29 -08001142
Florian Fainellieee87e42019-11-04 13:51:39 -08001143 priv->rcdev = devm_reset_control_get_optional_exclusive(&pdev->dev,
1144 "switch");
1145 if (PTR_ERR(priv->rcdev) == -EPROBE_DEFER)
1146 return PTR_ERR(priv->rcdev);
1147
Florian Fainellif4589952016-08-26 12:18:33 -07001148 /* Auto-detection using standard registers will not work, so
1149 * provide an indication of what kind of device we are for
1150 * b53_common to work with
1151 */
Florian Fainellia78e86e2017-01-20 12:36:29 -08001152 pdata->chip_id = priv->type;
Florian Fainellif4589952016-08-26 12:18:33 -07001153 dev->pdata = pdata;
1154
1155 priv->dev = dev;
1156 ds = dev->ds;
Florian Fainelli73095cb2017-01-08 14:52:06 -08001157 ds->ops = &bcm_sf2_ops;
Florian Fainellif4589952016-08-26 12:18:33 -07001158
Florian Fainelli181183772017-09-03 20:27:02 -07001159 /* Advertise the 8 egress queues */
1160 ds->num_tx_queues = SF2_NUM_EGRESS_QUEUES;
1161
Florian Fainellif4589952016-08-26 12:18:33 -07001162 dev_set_drvdata(&pdev->dev, priv);
Florian Fainellid9338022016-08-18 15:30:14 -07001163
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001164 spin_lock_init(&priv->indir_lock);
Florian Fainelli73181662017-01-30 09:48:43 -08001165 mutex_init(&priv->cfp.lock);
Florian Fainelliae7a5af2018-11-06 12:58:37 -08001166 INIT_LIST_HEAD(&priv->cfp.rules_list);
Florian Fainelli73181662017-01-30 09:48:43 -08001167
1168 /* CFP rule #0 cannot be used for specific classifications, flag it as
1169 * permanently used
1170 */
1171 set_bit(0, priv->cfp.used);
Florian Fainelliba0696c2017-10-20 14:39:47 -07001172 set_bit(0, priv->cfp.unique);
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001173
Florian Fainelli8dbe4c52020-06-17 20:42:44 -07001174 /* Balance of_node_put() done by of_find_node_by_name() */
1175 of_node_get(dn);
Florian Fainelliafa3b592020-04-05 13:00:30 -07001176 ports = of_find_node_by_name(dn, "ports");
1177 if (ports) {
1178 bcm_sf2_identify_ports(priv, ports);
1179 of_node_put(ports);
1180 }
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001181
1182 priv->irq0 = irq_of_parse_and_map(dn, 0);
1183 priv->irq1 = irq_of_parse_and_map(dn, 1);
1184
1185 base = &priv->core;
1186 for (i = 0; i < BCM_SF2_REGS_NUM; i++) {
YueHaibing42376782019-08-01 20:29:11 +08001187 *base = devm_platform_ioremap_resource(pdev, i);
Florian Fainelli4bd11672016-08-18 15:30:15 -07001188 if (IS_ERR(*base)) {
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001189 pr_err("unable to find register: %s\n", reg_names[i]);
Florian Fainelli4bd11672016-08-18 15:30:15 -07001190 return PTR_ERR(*base);
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001191 }
1192 base++;
1193 }
1194
1195 ret = bcm_sf2_sw_rst(priv);
1196 if (ret) {
1197 pr_err("unable to software reset switch: %d\n", ret);
Florian Fainelli4bd11672016-08-18 15:30:15 -07001198 return ret;
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001199 }
1200
Florian Fainellic04a17d2018-11-06 15:15:16 -08001201 bcm_sf2_gphy_enable_set(priv->dev->ds, true);
1202
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001203 ret = bcm_sf2_mdio_register(ds);
1204 if (ret) {
1205 pr_err("failed to register MDIO bus\n");
Florian Fainelli4bd11672016-08-18 15:30:15 -07001206 return ret;
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001207 }
1208
Florian Fainellic04a17d2018-11-06 15:15:16 -08001209 bcm_sf2_gphy_enable_set(priv->dev->ds, false);
1210
Florian Fainelli73181662017-01-30 09:48:43 -08001211 ret = bcm_sf2_cfp_rst(priv);
1212 if (ret) {
1213 pr_err("failed to reset CFP\n");
1214 goto out_mdio;
1215 }
1216
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001217 /* Disable all interrupts and request them */
1218 bcm_sf2_intr_disable(priv);
1219
Florian Fainelli4bd11672016-08-18 15:30:15 -07001220 ret = devm_request_irq(&pdev->dev, priv->irq0, bcm_sf2_switch_0_isr, 0,
Florian Fainellibc0cb652018-05-10 13:17:33 -07001221 "switch_0", ds);
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001222 if (ret < 0) {
1223 pr_err("failed to request switch_0 IRQ\n");
Florian Fainellibb9c0fa2016-07-29 12:35:57 -07001224 goto out_mdio;
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001225 }
1226
Florian Fainelli4bd11672016-08-18 15:30:15 -07001227 ret = devm_request_irq(&pdev->dev, priv->irq1, bcm_sf2_switch_1_isr, 0,
Florian Fainellibc0cb652018-05-10 13:17:33 -07001228 "switch_1", ds);
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001229 if (ret < 0) {
1230 pr_err("failed to request switch_1 IRQ\n");
Florian Fainelli4bd11672016-08-18 15:30:15 -07001231 goto out_mdio;
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001232 }
1233
1234 /* Reset the MIB counters */
1235 reg = core_readl(priv, CORE_GMNCFGCFG);
1236 reg |= RST_MIB_CNT;
1237 core_writel(priv, reg, CORE_GMNCFGCFG);
1238 reg &= ~RST_MIB_CNT;
1239 core_writel(priv, reg, CORE_GMNCFGCFG);
1240
1241 /* Get the maximum number of ports for this switch */
1242 priv->hw_params.num_ports = core_readl(priv, CORE_IMP0_PRT_ID) + 1;
1243 if (priv->hw_params.num_ports > DSA_MAX_PORTS)
1244 priv->hw_params.num_ports = DSA_MAX_PORTS;
1245
1246 /* Assume a single GPHY setup if we can't read that property */
1247 if (of_property_read_u32(dn, "brcm,num-gphy",
1248 &priv->hw_params.num_gphy))
1249 priv->hw_params.num_gphy = 1;
1250
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001251 rev = reg_readl(priv, REG_SWITCH_REVISION);
1252 priv->hw_params.top_rev = (rev >> SWITCH_TOP_REV_SHIFT) &
1253 SWITCH_TOP_REV_MASK;
1254 priv->hw_params.core_rev = (rev & SF2_REV_MASK);
1255
1256 rev = reg_readl(priv, REG_PHY_REVISION);
1257 priv->hw_params.gphy_rev = rev & PHY_REVISION_MASK;
1258
Florian Fainellif4589952016-08-26 12:18:33 -07001259 ret = b53_switch_register(dev);
Florian Fainellid9338022016-08-18 15:30:14 -07001260 if (ret)
Florian Fainelli4bd11672016-08-18 15:30:15 -07001261 goto out_mdio;
Florian Fainellid9338022016-08-18 15:30:14 -07001262
Florian Fainellifbb7bc42019-03-20 09:45:16 -07001263 dev_info(&pdev->dev,
1264 "Starfighter 2 top: %x.%02x, core: %x.%02x, IRQs: %d, %d\n",
1265 priv->hw_params.top_rev >> 8, priv->hw_params.top_rev & 0xff,
1266 priv->hw_params.core_rev >> 8, priv->hw_params.core_rev & 0xff,
1267 priv->irq0, priv->irq1);
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001268
1269 return 0;
1270
Florian Fainellibb9c0fa2016-07-29 12:35:57 -07001271out_mdio:
1272 bcm_sf2_mdio_unregister(priv);
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001273 return ret;
1274}
1275
Florian Fainellid9338022016-08-18 15:30:14 -07001276static int bcm_sf2_sw_remove(struct platform_device *pdev)
Florian Fainelli246d7f72014-08-27 17:04:56 -07001277{
Florian Fainellif4589952016-08-26 12:18:33 -07001278 struct bcm_sf2_priv *priv = platform_get_drvdata(pdev);
Florian Fainellid9338022016-08-18 15:30:14 -07001279
Florian Fainellid9338022016-08-18 15:30:14 -07001280 priv->wol_ports_mask = 0;
Florian Fainellie6840002019-11-02 20:17:39 -07001281 /* Disable interrupts */
1282 bcm_sf2_intr_disable(priv);
Florian Fainellif4589952016-08-26 12:18:33 -07001283 dsa_unregister_switch(priv->dev->ds);
Florian Fainelliae7a5af2018-11-06 12:58:37 -08001284 bcm_sf2_cfp_exit(priv->dev->ds);
Florian Fainellid9338022016-08-18 15:30:14 -07001285 bcm_sf2_mdio_unregister(priv);
Florian Fainellieee87e42019-11-04 13:51:39 -08001286 if (priv->type == BCM7278_DEVICE_ID && !IS_ERR(priv->rcdev))
1287 reset_control_assert(priv->rcdev);
Florian Fainelli246d7f72014-08-27 17:04:56 -07001288
1289 return 0;
1290}
Florian Fainelli246d7f72014-08-27 17:04:56 -07001291
Florian Fainelli2399d612016-10-20 09:32:19 -07001292static void bcm_sf2_sw_shutdown(struct platform_device *pdev)
1293{
1294 struct bcm_sf2_priv *priv = platform_get_drvdata(pdev);
1295
1296 /* For a kernel about to be kexec'd we want to keep the GPHY on for a
1297 * successful MDIO bus scan to occur. If we did turn off the GPHY
1298 * before (e.g: port_disable), this will also power it back on.
Florian Fainelli4a2947e2016-10-21 14:21:56 -07001299 *
1300 * Do not rely on kexec_in_progress, just power the PHY on.
Florian Fainelli2399d612016-10-20 09:32:19 -07001301 */
1302 if (priv->hw_params.num_gphy == 1)
Florian Fainelli4a2947e2016-10-21 14:21:56 -07001303 bcm_sf2_gphy_enable_set(priv->dev->ds, true);
Florian Fainelli2399d612016-10-20 09:32:19 -07001304}
1305
Florian Fainellid9338022016-08-18 15:30:14 -07001306#ifdef CONFIG_PM_SLEEP
1307static int bcm_sf2_suspend(struct device *dev)
Florian Fainelli246d7f72014-08-27 17:04:56 -07001308{
Wolfram Sang63382e02018-10-21 22:00:12 +02001309 struct bcm_sf2_priv *priv = dev_get_drvdata(dev);
Florian Fainellid9338022016-08-18 15:30:14 -07001310
Florian Fainellif4589952016-08-26 12:18:33 -07001311 return dsa_switch_suspend(priv->dev->ds);
Florian Fainelli246d7f72014-08-27 17:04:56 -07001312}
Florian Fainellid9338022016-08-18 15:30:14 -07001313
1314static int bcm_sf2_resume(struct device *dev)
1315{
Wolfram Sang63382e02018-10-21 22:00:12 +02001316 struct bcm_sf2_priv *priv = dev_get_drvdata(dev);
Florian Fainellid9338022016-08-18 15:30:14 -07001317
Florian Fainellif4589952016-08-26 12:18:33 -07001318 return dsa_switch_resume(priv->dev->ds);
Florian Fainellid9338022016-08-18 15:30:14 -07001319}
1320#endif /* CONFIG_PM_SLEEP */
1321
1322static SIMPLE_DEV_PM_OPS(bcm_sf2_pm_ops,
1323 bcm_sf2_suspend, bcm_sf2_resume);
1324
Florian Fainellid9338022016-08-18 15:30:14 -07001325
1326static struct platform_driver bcm_sf2_driver = {
1327 .probe = bcm_sf2_sw_probe,
1328 .remove = bcm_sf2_sw_remove,
Florian Fainelli2399d612016-10-20 09:32:19 -07001329 .shutdown = bcm_sf2_sw_shutdown,
Florian Fainellid9338022016-08-18 15:30:14 -07001330 .driver = {
1331 .name = "brcm-sf2",
1332 .of_match_table = bcm_sf2_of_match,
1333 .pm = &bcm_sf2_pm_ops,
1334 },
1335};
1336module_platform_driver(bcm_sf2_driver);
Florian Fainelli246d7f72014-08-27 17:04:56 -07001337
1338MODULE_AUTHOR("Broadcom Corporation");
1339MODULE_DESCRIPTION("Driver for Broadcom Starfighter 2 ethernet switch chip");
1340MODULE_LICENSE("GPL");
1341MODULE_ALIAS("platform:brcm-sf2");