blob: e218887f18b79e352435416d8d9b3047cf52ae66 [file] [log] [blame]
Florian Fainelli246d7f72014-08-27 17:04:56 -07001/*
2 * Broadcom Starfighter 2 DSA switch driver
3 *
4 * Copyright (C) 2014, Broadcom Corporation
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 */
11
12#include <linux/list.h>
13#include <linux/module.h>
14#include <linux/netdevice.h>
15#include <linux/interrupt.h>
16#include <linux/platform_device.h>
17#include <linux/of.h>
18#include <linux/phy.h>
19#include <linux/phy_fixed.h>
20#include <linux/mii.h>
21#include <linux/of.h>
22#include <linux/of_irq.h>
23#include <linux/of_address.h>
Florian Fainelli8b7c94e2015-10-23 12:11:08 -070024#include <linux/of_net.h>
Florian Fainelli461cd1b02016-06-07 16:32:43 -070025#include <linux/of_mdio.h>
Florian Fainelli246d7f72014-08-27 17:04:56 -070026#include <net/dsa.h>
Florian Fainelli96e65d72014-09-18 17:31:25 -070027#include <linux/ethtool.h>
Florian Fainelli12f460f2015-02-24 13:15:34 -080028#include <linux/if_bridge.h>
Florian Fainelliaafc66f2015-06-10 18:08:01 -070029#include <linux/brcmphy.h>
Florian Fainelli680060d2015-10-23 11:38:07 -070030#include <linux/etherdevice.h>
31#include <net/switchdev.h>
Florian Fainellif4589952016-08-26 12:18:33 -070032#include <linux/platform_data/b53.h>
Florian Fainelli246d7f72014-08-27 17:04:56 -070033
34#include "bcm_sf2.h"
35#include "bcm_sf2_regs.h"
Florian Fainellif4589952016-08-26 12:18:33 -070036#include "b53/b53_priv.h"
37#include "b53/b53_regs.h"
Florian Fainelli246d7f72014-08-27 17:04:56 -070038
Andrew Lunn7b314362016-08-22 16:01:01 +020039static enum dsa_tag_protocol bcm_sf2_sw_get_tag_protocol(struct dsa_switch *ds)
40{
41 return DSA_TAG_PROTO_BRCM;
42}
43
Florian Fainellib6d045d2014-09-24 17:05:20 -070044static void bcm_sf2_imp_vlan_setup(struct dsa_switch *ds, int cpu_port)
Florian Fainelli246d7f72014-08-27 17:04:56 -070045{
Florian Fainellif4589952016-08-26 12:18:33 -070046 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainelli246d7f72014-08-27 17:04:56 -070047 unsigned int i;
Florian Fainellib6d045d2014-09-24 17:05:20 -070048 u32 reg;
49
50 /* Enable the IMP Port to be in the same VLAN as the other ports
51 * on a per-port basis such that we only have Port i and IMP in
52 * the same VLAN.
53 */
54 for (i = 0; i < priv->hw_params.num_ports; i++) {
Andrew Lunn74c3e2a2016-04-13 02:40:44 +020055 if (!((1 << i) & ds->enabled_port_mask))
Florian Fainellib6d045d2014-09-24 17:05:20 -070056 continue;
57
58 reg = core_readl(priv, CORE_PORT_VLAN_CTL_PORT(i));
59 reg |= (1 << cpu_port);
60 core_writel(priv, reg, CORE_PORT_VLAN_CTL_PORT(i));
61 }
62}
63
64static void bcm_sf2_imp_setup(struct dsa_switch *ds, int port)
65{
Florian Fainellif4589952016-08-26 12:18:33 -070066 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainelli246d7f72014-08-27 17:04:56 -070067 u32 reg, val;
68
69 /* Enable the port memories */
70 reg = core_readl(priv, CORE_MEM_PSM_VDD_CTRL);
71 reg &= ~P_TXQ_PSM_VDD(port);
72 core_writel(priv, reg, CORE_MEM_PSM_VDD_CTRL);
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
80 /* Enable forwarding */
81 core_writel(priv, SW_FWDG_EN, CORE_SWMODE);
82
83 /* Enable IMP port in dumb mode */
84 reg = core_readl(priv, CORE_SWITCH_CTRL);
85 reg |= MII_DUMB_FWDG_EN;
86 core_writel(priv, reg, CORE_SWITCH_CTRL);
87
88 /* Resolve which bit controls the Broadcom tag */
89 switch (port) {
90 case 8:
91 val = BRCM_HDR_EN_P8;
92 break;
93 case 7:
94 val = BRCM_HDR_EN_P7;
95 break;
96 case 5:
97 val = BRCM_HDR_EN_P5;
98 break;
99 default:
100 val = 0;
101 break;
102 }
103
104 /* Enable Broadcom tags for IMP port */
105 reg = core_readl(priv, CORE_BRCM_HDR_CTRL);
106 reg |= val;
107 core_writel(priv, reg, CORE_BRCM_HDR_CTRL);
108
109 /* Enable reception Broadcom tag for CPU TX (switch RX) to
110 * allow us to tag outgoing frames
111 */
112 reg = core_readl(priv, CORE_BRCM_HDR_RX_DIS);
113 reg &= ~(1 << port);
114 core_writel(priv, reg, CORE_BRCM_HDR_RX_DIS);
115
116 /* Enable transmission of Broadcom tags from the switch (CPU RX) to
117 * allow delivering frames to the per-port net_devices
118 */
119 reg = core_readl(priv, CORE_BRCM_HDR_TX_DIS);
120 reg &= ~(1 << port);
121 core_writel(priv, reg, CORE_BRCM_HDR_TX_DIS);
122
123 /* Force link status for IMP port */
124 reg = core_readl(priv, CORE_STS_OVERRIDE_IMP);
125 reg |= (MII_SW_OR | LINK_STS);
126 core_writel(priv, reg, CORE_STS_OVERRIDE_IMP);
Florian Fainelli246d7f72014-08-27 17:04:56 -0700127}
128
Florian Fainelli450b05c2014-09-24 17:05:22 -0700129static void bcm_sf2_eee_enable_set(struct dsa_switch *ds, int port, bool enable)
130{
Florian Fainellif4589952016-08-26 12:18:33 -0700131 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainelli450b05c2014-09-24 17:05:22 -0700132 u32 reg;
133
134 reg = core_readl(priv, CORE_EEE_EN_CTRL);
135 if (enable)
136 reg |= 1 << port;
137 else
138 reg &= ~(1 << port);
139 core_writel(priv, reg, CORE_EEE_EN_CTRL);
140}
141
Florian Fainellib0836682015-02-05 11:40:41 -0800142static void bcm_sf2_gphy_enable_set(struct dsa_switch *ds, bool enable)
143{
Florian Fainellif4589952016-08-26 12:18:33 -0700144 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainellib0836682015-02-05 11:40:41 -0800145 u32 reg;
146
Florian Fainelli9af197a2015-02-05 11:40:42 -0800147 reg = reg_readl(priv, REG_SPHY_CNTRL);
148 if (enable) {
149 reg |= PHY_RESET;
150 reg &= ~(EXT_PWR_DOWN | IDDQ_BIAS | CK25_DIS);
151 reg_writel(priv, reg, REG_SPHY_CNTRL);
152 udelay(21);
153 reg = reg_readl(priv, REG_SPHY_CNTRL);
154 reg &= ~PHY_RESET;
155 } else {
156 reg |= EXT_PWR_DOWN | IDDQ_BIAS | PHY_RESET;
157 reg_writel(priv, reg, REG_SPHY_CNTRL);
158 mdelay(1);
159 reg |= CK25_DIS;
160 }
161 reg_writel(priv, reg, REG_SPHY_CNTRL);
Florian Fainellib0836682015-02-05 11:40:41 -0800162
Florian Fainelli9af197a2015-02-05 11:40:42 -0800163 /* Use PHY-driven LED signaling */
164 if (!enable) {
165 reg = reg_readl(priv, REG_LED_CNTRL(0));
166 reg |= SPDLNK_SRC_SEL;
167 reg_writel(priv, reg, REG_LED_CNTRL(0));
168 }
Florian Fainellib0836682015-02-05 11:40:41 -0800169}
170
Florian Fainelli8b7c94e2015-10-23 12:11:08 -0700171static inline void bcm_sf2_port_intr_enable(struct bcm_sf2_priv *priv,
172 int port)
173{
174 unsigned int off;
175
176 switch (port) {
177 case 7:
178 off = P7_IRQ_OFF;
179 break;
180 case 0:
181 /* Port 0 interrupts are located on the first bank */
182 intrl2_0_mask_clear(priv, P_IRQ_MASK(P0_IRQ_OFF));
183 return;
184 default:
185 off = P_IRQ_OFF(port);
186 break;
187 }
188
189 intrl2_1_mask_clear(priv, P_IRQ_MASK(off));
190}
191
192static inline void bcm_sf2_port_intr_disable(struct bcm_sf2_priv *priv,
193 int port)
194{
195 unsigned int off;
196
197 switch (port) {
198 case 7:
199 off = P7_IRQ_OFF;
200 break;
201 case 0:
202 /* Port 0 interrupts are located on the first bank */
203 intrl2_0_mask_set(priv, P_IRQ_MASK(P0_IRQ_OFF));
204 intrl2_0_writel(priv, P_IRQ_MASK(P0_IRQ_OFF), INTRL2_CPU_CLEAR);
205 return;
206 default:
207 off = P_IRQ_OFF(port);
208 break;
209 }
210
211 intrl2_1_mask_set(priv, P_IRQ_MASK(off));
212 intrl2_1_writel(priv, P_IRQ_MASK(off), INTRL2_CPU_CLEAR);
213}
214
Florian Fainellib6d045d2014-09-24 17:05:20 -0700215static int bcm_sf2_port_setup(struct dsa_switch *ds, int port,
216 struct phy_device *phy)
Florian Fainelli246d7f72014-08-27 17:04:56 -0700217{
Florian Fainellif4589952016-08-26 12:18:33 -0700218 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainellib6d045d2014-09-24 17:05:20 -0700219 s8 cpu_port = ds->dst[ds->index].cpu_port;
Florian Fainelli246d7f72014-08-27 17:04:56 -0700220 u32 reg;
221
222 /* Clear the memory power down */
223 reg = core_readl(priv, CORE_MEM_PSM_VDD_CTRL);
224 reg &= ~P_TXQ_PSM_VDD(port);
225 core_writel(priv, reg, CORE_MEM_PSM_VDD_CTRL);
226
227 /* Clear the Rx and Tx disable bits and set to no spanning tree */
228 core_writel(priv, 0, CORE_G_PCTL_PORT(port));
229
Florian Fainelli9af197a2015-02-05 11:40:42 -0800230 /* Re-enable the GPHY and re-apply workarounds */
Florian Fainelli8b7c94e2015-10-23 12:11:08 -0700231 if (priv->int_phy_mask & 1 << port && priv->hw_params.num_gphy == 1) {
Florian Fainelli9af197a2015-02-05 11:40:42 -0800232 bcm_sf2_gphy_enable_set(ds, true);
233 if (phy) {
234 /* if phy_stop() has been called before, phy
235 * will be in halted state, and phy_start()
236 * will call resume.
237 *
238 * the resume path does not configure back
239 * autoneg settings, and since we hard reset
240 * the phy manually here, we need to reset the
241 * state machine also.
242 */
243 phy->state = PHY_READY;
244 phy_init_hw(phy);
245 }
246 }
247
Florian Fainelli8b7c94e2015-10-23 12:11:08 -0700248 /* Enable MoCA port interrupts to get notified */
249 if (port == priv->moca_port)
250 bcm_sf2_port_intr_enable(priv, port);
Florian Fainelli246d7f72014-08-27 17:04:56 -0700251
Florian Fainelli12f460f2015-02-24 13:15:34 -0800252 /* Set this port, and only this one to be in the default VLAN,
253 * if member of a bridge, restore its membership prior to
254 * bringing down this port.
255 */
Florian Fainelli246d7f72014-08-27 17:04:56 -0700256 reg = core_readl(priv, CORE_PORT_VLAN_CTL_PORT(port));
257 reg &= ~PORT_VLAN_CTRL_MASK;
258 reg |= (1 << port);
Florian Fainelli02154922016-09-10 12:39:03 -0700259 reg |= priv->dev->ports[port].vlan_ctl_mask;
Florian Fainelli246d7f72014-08-27 17:04:56 -0700260 core_writel(priv, reg, CORE_PORT_VLAN_CTL_PORT(port));
Florian Fainellib6d045d2014-09-24 17:05:20 -0700261
262 bcm_sf2_imp_vlan_setup(ds, cpu_port);
263
Florian Fainelli450b05c2014-09-24 17:05:22 -0700264 /* If EEE was enabled, restore it */
265 if (priv->port_sts[port].eee.eee_enabled)
266 bcm_sf2_eee_enable_set(ds, port, true);
267
Florian Fainellib6d045d2014-09-24 17:05:20 -0700268 return 0;
Florian Fainelli246d7f72014-08-27 17:04:56 -0700269}
270
Florian Fainellib6d045d2014-09-24 17:05:20 -0700271static void bcm_sf2_port_disable(struct dsa_switch *ds, int port,
272 struct phy_device *phy)
Florian Fainelli246d7f72014-08-27 17:04:56 -0700273{
Florian Fainellif4589952016-08-26 12:18:33 -0700274 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainelli246d7f72014-08-27 17:04:56 -0700275 u32 off, reg;
276
Florian Fainelli96e65d72014-09-18 17:31:25 -0700277 if (priv->wol_ports_mask & (1 << port))
278 return;
279
Florian Fainelli8b7c94e2015-10-23 12:11:08 -0700280 if (port == priv->moca_port)
281 bcm_sf2_port_intr_disable(priv, port);
Florian Fainellib6d045d2014-09-24 17:05:20 -0700282
Florian Fainelli8b7c94e2015-10-23 12:11:08 -0700283 if (priv->int_phy_mask & 1 << port && priv->hw_params.num_gphy == 1)
Florian Fainelli9af197a2015-02-05 11:40:42 -0800284 bcm_sf2_gphy_enable_set(ds, false);
285
Florian Fainelli246d7f72014-08-27 17:04:56 -0700286 if (dsa_is_cpu_port(ds, port))
287 off = CORE_IMP_CTL;
288 else
289 off = CORE_G_PCTL_PORT(port);
290
291 reg = core_readl(priv, off);
292 reg |= RX_DIS | TX_DIS;
293 core_writel(priv, reg, off);
294
295 /* Power down the port memory */
296 reg = core_readl(priv, CORE_MEM_PSM_VDD_CTRL);
297 reg |= P_TXQ_PSM_VDD(port);
298 core_writel(priv, reg, CORE_MEM_PSM_VDD_CTRL);
299}
300
Florian Fainelli450b05c2014-09-24 17:05:22 -0700301/* Returns 0 if EEE was not enabled, or 1 otherwise
302 */
303static int bcm_sf2_eee_init(struct dsa_switch *ds, int port,
304 struct phy_device *phy)
305{
Florian Fainellif4589952016-08-26 12:18:33 -0700306 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainelli450b05c2014-09-24 17:05:22 -0700307 struct ethtool_eee *p = &priv->port_sts[port].eee;
308 int ret;
309
310 p->supported = (SUPPORTED_1000baseT_Full | SUPPORTED_100baseT_Full);
311
312 ret = phy_init_eee(phy, 0);
313 if (ret)
314 return 0;
315
316 bcm_sf2_eee_enable_set(ds, port, true);
317
318 return 1;
319}
320
321static int bcm_sf2_sw_get_eee(struct dsa_switch *ds, int port,
322 struct ethtool_eee *e)
323{
Florian Fainellif4589952016-08-26 12:18:33 -0700324 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainelli450b05c2014-09-24 17:05:22 -0700325 struct ethtool_eee *p = &priv->port_sts[port].eee;
326 u32 reg;
327
328 reg = core_readl(priv, CORE_EEE_LPI_INDICATE);
329 e->eee_enabled = p->eee_enabled;
330 e->eee_active = !!(reg & (1 << port));
331
332 return 0;
333}
334
335static int bcm_sf2_sw_set_eee(struct dsa_switch *ds, int port,
336 struct phy_device *phydev,
337 struct ethtool_eee *e)
338{
Florian Fainellif4589952016-08-26 12:18:33 -0700339 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainelli450b05c2014-09-24 17:05:22 -0700340 struct ethtool_eee *p = &priv->port_sts[port].eee;
341
342 p->eee_enabled = e->eee_enabled;
343
344 if (!p->eee_enabled) {
345 bcm_sf2_eee_enable_set(ds, port, false);
346 } else {
347 p->eee_enabled = bcm_sf2_eee_init(ds, port, phydev);
348 if (!p->eee_enabled)
349 return -EOPNOTSUPP;
350 }
351
352 return 0;
353}
354
Florian Fainelli461cd1b02016-06-07 16:32:43 -0700355static int bcm_sf2_sw_indir_rw(struct bcm_sf2_priv *priv, int op, int addr,
356 int regnum, u16 val)
357{
358 int ret = 0;
359 u32 reg;
360
361 reg = reg_readl(priv, REG_SWITCH_CNTRL);
362 reg |= MDIO_MASTER_SEL;
363 reg_writel(priv, reg, REG_SWITCH_CNTRL);
364
365 /* Page << 8 | offset */
366 reg = 0x70;
367 reg <<= 2;
368 core_writel(priv, addr, reg);
369
370 /* Page << 8 | offset */
371 reg = 0x80 << 8 | regnum << 1;
372 reg <<= 2;
373
374 if (op)
375 ret = core_readl(priv, reg);
376 else
377 core_writel(priv, val, reg);
378
379 reg = reg_readl(priv, REG_SWITCH_CNTRL);
380 reg &= ~MDIO_MASTER_SEL;
381 reg_writel(priv, reg, REG_SWITCH_CNTRL);
382
383 return ret & 0xffff;
384}
385
386static int bcm_sf2_sw_mdio_read(struct mii_bus *bus, int addr, int regnum)
387{
388 struct bcm_sf2_priv *priv = bus->priv;
389
390 /* Intercept reads from Broadcom pseudo-PHY address, else, send
391 * them to our master MDIO bus controller
392 */
393 if (addr == BRCM_PSEUDO_PHY_ADDR && priv->indir_phy_mask & BIT(addr))
394 return bcm_sf2_sw_indir_rw(priv, 1, addr, regnum, 0);
395 else
396 return mdiobus_read(priv->master_mii_bus, addr, regnum);
397}
398
399static int bcm_sf2_sw_mdio_write(struct mii_bus *bus, int addr, int regnum,
400 u16 val)
401{
402 struct bcm_sf2_priv *priv = bus->priv;
403
404 /* Intercept writes to the Broadcom pseudo-PHY address, else,
405 * send them to our master MDIO bus controller
406 */
407 if (addr == BRCM_PSEUDO_PHY_ADDR && priv->indir_phy_mask & BIT(addr))
408 bcm_sf2_sw_indir_rw(priv, 0, addr, regnum, val);
409 else
410 mdiobus_write(priv->master_mii_bus, addr, regnum, val);
411
412 return 0;
413}
414
Florian Fainelli246d7f72014-08-27 17:04:56 -0700415static irqreturn_t bcm_sf2_switch_0_isr(int irq, void *dev_id)
416{
417 struct bcm_sf2_priv *priv = dev_id;
418
419 priv->irq0_stat = intrl2_0_readl(priv, INTRL2_CPU_STATUS) &
420 ~priv->irq0_mask;
421 intrl2_0_writel(priv, priv->irq0_stat, INTRL2_CPU_CLEAR);
422
423 return IRQ_HANDLED;
424}
425
426static irqreturn_t bcm_sf2_switch_1_isr(int irq, void *dev_id)
427{
428 struct bcm_sf2_priv *priv = dev_id;
429
430 priv->irq1_stat = intrl2_1_readl(priv, INTRL2_CPU_STATUS) &
431 ~priv->irq1_mask;
432 intrl2_1_writel(priv, priv->irq1_stat, INTRL2_CPU_CLEAR);
433
434 if (priv->irq1_stat & P_LINK_UP_IRQ(P7_IRQ_OFF))
435 priv->port_sts[7].link = 1;
436 if (priv->irq1_stat & P_LINK_DOWN_IRQ(P7_IRQ_OFF))
437 priv->port_sts[7].link = 0;
438
439 return IRQ_HANDLED;
440}
441
Florian Fainelli33f84612014-11-25 18:08:49 -0800442static int bcm_sf2_sw_rst(struct bcm_sf2_priv *priv)
443{
444 unsigned int timeout = 1000;
445 u32 reg;
446
447 reg = core_readl(priv, CORE_WATCHDOG_CTRL);
448 reg |= SOFTWARE_RESET | EN_CHIP_RST | EN_SW_RESET;
449 core_writel(priv, reg, CORE_WATCHDOG_CTRL);
450
451 do {
452 reg = core_readl(priv, CORE_WATCHDOG_CTRL);
453 if (!(reg & SOFTWARE_RESET))
454 break;
455
456 usleep_range(1000, 2000);
457 } while (timeout-- > 0);
458
459 if (timeout == 0)
460 return -ETIMEDOUT;
461
462 return 0;
463}
464
Florian Fainelli691c9a82015-01-20 16:42:00 -0800465static void bcm_sf2_intr_disable(struct bcm_sf2_priv *priv)
466{
Florian Fainellif01d5982016-08-25 15:23:41 -0700467 intrl2_0_mask_set(priv, 0xffffffff);
Florian Fainelli691c9a82015-01-20 16:42:00 -0800468 intrl2_0_writel(priv, 0xffffffff, INTRL2_CPU_CLEAR);
Florian Fainellif01d5982016-08-25 15:23:41 -0700469 intrl2_1_mask_set(priv, 0xffffffff);
Florian Fainelli691c9a82015-01-20 16:42:00 -0800470 intrl2_1_writel(priv, 0xffffffff, INTRL2_CPU_CLEAR);
Florian Fainelli691c9a82015-01-20 16:42:00 -0800471}
472
Florian Fainelli8b7c94e2015-10-23 12:11:08 -0700473static void bcm_sf2_identify_ports(struct bcm_sf2_priv *priv,
474 struct device_node *dn)
475{
476 struct device_node *port;
477 const char *phy_mode_str;
478 int mode;
479 unsigned int port_num;
480 int ret;
481
482 priv->moca_port = -1;
483
484 for_each_available_child_of_node(dn, port) {
485 if (of_property_read_u32(port, "reg", &port_num))
486 continue;
487
488 /* Internal PHYs get assigned a specific 'phy-mode' property
489 * value: "internal" to help flag them before MDIO probing
490 * has completed, since they might be turned off at that
491 * time
492 */
493 mode = of_get_phy_mode(port);
494 if (mode < 0) {
495 ret = of_property_read_string(port, "phy-mode",
496 &phy_mode_str);
497 if (ret < 0)
498 continue;
499
500 if (!strcasecmp(phy_mode_str, "internal"))
501 priv->int_phy_mask |= 1 << port_num;
502 }
503
504 if (mode == PHY_INTERFACE_MODE_MOCA)
505 priv->moca_port = port_num;
506 }
507}
508
Florian Fainelli461cd1b02016-06-07 16:32:43 -0700509static int bcm_sf2_mdio_register(struct dsa_switch *ds)
510{
Florian Fainellif4589952016-08-26 12:18:33 -0700511 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainelli461cd1b02016-06-07 16:32:43 -0700512 struct device_node *dn;
513 static int index;
514 int err;
515
516 /* Find our integrated MDIO bus node */
517 dn = of_find_compatible_node(NULL, NULL, "brcm,unimac-mdio");
518 priv->master_mii_bus = of_mdio_find_bus(dn);
519 if (!priv->master_mii_bus)
520 return -EPROBE_DEFER;
521
522 get_device(&priv->master_mii_bus->dev);
523 priv->master_mii_dn = dn;
524
525 priv->slave_mii_bus = devm_mdiobus_alloc(ds->dev);
526 if (!priv->slave_mii_bus)
527 return -ENOMEM;
528
529 priv->slave_mii_bus->priv = priv;
530 priv->slave_mii_bus->name = "sf2 slave mii";
531 priv->slave_mii_bus->read = bcm_sf2_sw_mdio_read;
532 priv->slave_mii_bus->write = bcm_sf2_sw_mdio_write;
533 snprintf(priv->slave_mii_bus->id, MII_BUS_ID_SIZE, "sf2-%d",
534 index++);
535 priv->slave_mii_bus->dev.of_node = dn;
536
537 /* Include the pseudo-PHY address to divert reads towards our
538 * workaround. This is only required for 7445D0, since 7445E0
539 * disconnects the internal switch pseudo-PHY such that we can use the
540 * regular SWITCH_MDIO master controller instead.
541 *
542 * Here we flag the pseudo PHY as needing special treatment and would
543 * otherwise make all other PHY read/writes go to the master MDIO bus
544 * controller that comes with this switch backed by the "mdio-unimac"
545 * driver.
546 */
547 if (of_machine_is_compatible("brcm,bcm7445d0"))
548 priv->indir_phy_mask |= (1 << BRCM_PSEUDO_PHY_ADDR);
549 else
550 priv->indir_phy_mask = 0;
551
552 ds->phys_mii_mask = priv->indir_phy_mask;
553 ds->slave_mii_bus = priv->slave_mii_bus;
554 priv->slave_mii_bus->parent = ds->dev->parent;
555 priv->slave_mii_bus->phy_mask = ~priv->indir_phy_mask;
556
557 if (dn)
558 err = of_mdiobus_register(priv->slave_mii_bus, dn);
559 else
560 err = mdiobus_register(priv->slave_mii_bus);
561
562 if (err)
563 of_node_put(dn);
564
565 return err;
566}
567
568static void bcm_sf2_mdio_unregister(struct bcm_sf2_priv *priv)
569{
570 mdiobus_unregister(priv->slave_mii_bus);
571 if (priv->master_mii_dn)
572 of_node_put(priv->master_mii_dn);
573}
574
Florian Fainelliaa9aef72014-09-19 13:07:55 -0700575static u32 bcm_sf2_sw_get_phy_flags(struct dsa_switch *ds, int port)
576{
Florian Fainellif4589952016-08-26 12:18:33 -0700577 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainelliaa9aef72014-09-19 13:07:55 -0700578
579 /* The BCM7xxx PHY driver expects to find the integrated PHY revision
580 * in bits 15:8 and the patch level in bits 7:0 which is exactly what
581 * the REG_PHY_REVISION register layout is.
582 */
583
584 return priv->hw_params.gphy_rev;
585}
586
Florian Fainelli246d7f72014-08-27 17:04:56 -0700587static void bcm_sf2_sw_adjust_link(struct dsa_switch *ds, int port,
588 struct phy_device *phydev)
589{
Florian Fainellif4589952016-08-26 12:18:33 -0700590 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainelli246d7f72014-08-27 17:04:56 -0700591 u32 id_mode_dis = 0, port_mode;
592 const char *str = NULL;
593 u32 reg;
594
595 switch (phydev->interface) {
596 case PHY_INTERFACE_MODE_RGMII:
597 str = "RGMII (no delay)";
598 id_mode_dis = 1;
599 case PHY_INTERFACE_MODE_RGMII_TXID:
600 if (!str)
601 str = "RGMII (TX delay)";
602 port_mode = EXT_GPHY;
603 break;
604 case PHY_INTERFACE_MODE_MII:
605 str = "MII";
606 port_mode = EXT_EPHY;
607 break;
608 case PHY_INTERFACE_MODE_REVMII:
609 str = "Reverse MII";
610 port_mode = EXT_REVMII;
611 break;
612 default:
Florian Fainelli7de15572014-09-24 17:05:19 -0700613 /* All other PHYs: internal and MoCA */
614 goto force_link;
615 }
616
617 /* If the link is down, just disable the interface to conserve power */
618 if (!phydev->link) {
619 reg = reg_readl(priv, REG_RGMII_CNTRL_P(port));
620 reg &= ~RGMII_MODE_EN;
621 reg_writel(priv, reg, REG_RGMII_CNTRL_P(port));
Florian Fainelli246d7f72014-08-27 17:04:56 -0700622 goto force_link;
623 }
624
625 /* Clear id_mode_dis bit, and the existing port mode, but
626 * make sure we enable the RGMII block for data to pass
627 */
628 reg = reg_readl(priv, REG_RGMII_CNTRL_P(port));
629 reg &= ~ID_MODE_DIS;
630 reg &= ~(PORT_MODE_MASK << PORT_MODE_SHIFT);
631 reg &= ~(RX_PAUSE_EN | TX_PAUSE_EN);
632
633 reg |= port_mode | RGMII_MODE_EN;
634 if (id_mode_dis)
635 reg |= ID_MODE_DIS;
636
637 if (phydev->pause) {
638 if (phydev->asym_pause)
639 reg |= TX_PAUSE_EN;
640 reg |= RX_PAUSE_EN;
641 }
642
643 reg_writel(priv, reg, REG_RGMII_CNTRL_P(port));
644
645 pr_info("Port %d configured for %s\n", port, str);
646
647force_link:
648 /* Force link settings detected from the PHY */
649 reg = SW_OVERRIDE;
650 switch (phydev->speed) {
651 case SPEED_1000:
652 reg |= SPDSTS_1000 << SPEED_SHIFT;
653 break;
654 case SPEED_100:
655 reg |= SPDSTS_100 << SPEED_SHIFT;
656 break;
657 }
658
659 if (phydev->link)
660 reg |= LINK_STS;
661 if (phydev->duplex == DUPLEX_FULL)
662 reg |= DUPLX_MODE;
663
664 core_writel(priv, reg, CORE_STS_OVERRIDE_GMIIP_PORT(port));
665}
666
667static void bcm_sf2_sw_fixed_link_update(struct dsa_switch *ds, int port,
668 struct fixed_phy_status *status)
669{
Florian Fainellif4589952016-08-26 12:18:33 -0700670 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainellid2eac982015-07-20 17:49:55 -0700671 u32 duplex, pause;
Florian Fainelli246d7f72014-08-27 17:04:56 -0700672 u32 reg;
673
Florian Fainelli246d7f72014-08-27 17:04:56 -0700674 duplex = core_readl(priv, CORE_DUPSTS);
675 pause = core_readl(priv, CORE_PAUSESTS);
Florian Fainelli246d7f72014-08-27 17:04:56 -0700676
677 status->link = 0;
678
Florian Fainelli8b7c94e2015-10-23 12:11:08 -0700679 /* MoCA port is special as we do not get link status from CORE_LNKSTS,
Florian Fainelli246d7f72014-08-27 17:04:56 -0700680 * which means that we need to force the link at the port override
681 * level to get the data to flow. We do use what the interrupt handler
682 * did determine before.
Florian Fainelli7855f672014-12-11 18:12:42 -0800683 *
684 * For the other ports, we just force the link status, since this is
685 * a fixed PHY device.
Florian Fainelli246d7f72014-08-27 17:04:56 -0700686 */
Florian Fainelli8b7c94e2015-10-23 12:11:08 -0700687 if (port == priv->moca_port) {
Florian Fainelli246d7f72014-08-27 17:04:56 -0700688 status->link = priv->port_sts[port].link;
Florian Fainelli4ab7f912015-05-15 12:38:01 -0700689 /* For MoCA interfaces, also force a link down notification
690 * since some version of the user-space daemon (mocad) use
691 * cmd->autoneg to force the link, which messes up the PHY
692 * state machine and make it go in PHY_FORCING state instead.
693 */
694 if (!status->link)
Andrew Lunnc8b09802016-06-04 21:16:57 +0200695 netif_carrier_off(ds->ports[port].netdev);
Florian Fainelli246d7f72014-08-27 17:04:56 -0700696 status->duplex = 1;
697 } else {
Florian Fainelli7855f672014-12-11 18:12:42 -0800698 status->link = 1;
Florian Fainelli246d7f72014-08-27 17:04:56 -0700699 status->duplex = !!(duplex & (1 << port));
700 }
701
Florian Fainelli7855f672014-12-11 18:12:42 -0800702 reg = core_readl(priv, CORE_STS_OVERRIDE_GMIIP_PORT(port));
703 reg |= SW_OVERRIDE;
704 if (status->link)
705 reg |= LINK_STS;
706 else
707 reg &= ~LINK_STS;
708 core_writel(priv, reg, CORE_STS_OVERRIDE_GMIIP_PORT(port));
709
Florian Fainelli246d7f72014-08-27 17:04:56 -0700710 if ((pause & (1 << port)) &&
711 (pause & (1 << (port + PAUSESTS_TX_PAUSE_SHIFT)))) {
712 status->asym_pause = 1;
713 status->pause = 1;
714 }
715
716 if (pause & (1 << port))
717 status->pause = 1;
718}
719
Florian Fainelli8cfa9492014-09-18 17:31:23 -0700720static int bcm_sf2_sw_suspend(struct dsa_switch *ds)
721{
Florian Fainellif4589952016-08-26 12:18:33 -0700722 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainelli8cfa9492014-09-18 17:31:23 -0700723 unsigned int port;
724
Florian Fainelli691c9a82015-01-20 16:42:00 -0800725 bcm_sf2_intr_disable(priv);
Florian Fainelli8cfa9492014-09-18 17:31:23 -0700726
727 /* Disable all ports physically present including the IMP
728 * port, the other ones have already been disabled during
729 * bcm_sf2_sw_setup
730 */
731 for (port = 0; port < DSA_MAX_PORTS; port++) {
Andrew Lunn74c3e2a2016-04-13 02:40:44 +0200732 if ((1 << port) & ds->enabled_port_mask ||
Florian Fainelli8cfa9492014-09-18 17:31:23 -0700733 dsa_is_cpu_port(ds, port))
Florian Fainellib6d045d2014-09-24 17:05:20 -0700734 bcm_sf2_port_disable(ds, port, NULL);
Florian Fainelli8cfa9492014-09-18 17:31:23 -0700735 }
736
737 return 0;
738}
739
Florian Fainelli8cfa9492014-09-18 17:31:23 -0700740static int bcm_sf2_sw_resume(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;
Florian Fainelli8cfa9492014-09-18 17:31:23 -0700744 int ret;
745
746 ret = bcm_sf2_sw_rst(priv);
747 if (ret) {
748 pr_err("%s: failed to software reset switch\n", __func__);
749 return ret;
750 }
751
Florian Fainellib0836682015-02-05 11:40:41 -0800752 if (priv->hw_params.num_gphy == 1)
753 bcm_sf2_gphy_enable_set(ds, true);
Florian Fainelli8cfa9492014-09-18 17:31:23 -0700754
755 for (port = 0; port < DSA_MAX_PORTS; port++) {
Andrew Lunn74c3e2a2016-04-13 02:40:44 +0200756 if ((1 << port) & ds->enabled_port_mask)
Florian Fainellib6d045d2014-09-24 17:05:20 -0700757 bcm_sf2_port_setup(ds, port, NULL);
Florian Fainelli8cfa9492014-09-18 17:31:23 -0700758 else if (dsa_is_cpu_port(ds, port))
759 bcm_sf2_imp_setup(ds, port);
760 }
761
762 return 0;
763}
764
Florian Fainelli96e65d72014-09-18 17:31:25 -0700765static void bcm_sf2_sw_get_wol(struct dsa_switch *ds, int port,
766 struct ethtool_wolinfo *wol)
767{
768 struct net_device *p = ds->dst[ds->index].master_netdev;
Florian Fainellif4589952016-08-26 12:18:33 -0700769 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainelli96e65d72014-09-18 17:31:25 -0700770 struct ethtool_wolinfo pwol;
771
772 /* Get the parent device WoL settings */
773 p->ethtool_ops->get_wol(p, &pwol);
774
775 /* Advertise the parent device supported settings */
776 wol->supported = pwol.supported;
777 memset(&wol->sopass, 0, sizeof(wol->sopass));
778
779 if (pwol.wolopts & WAKE_MAGICSECURE)
780 memcpy(&wol->sopass, pwol.sopass, sizeof(wol->sopass));
781
782 if (priv->wol_ports_mask & (1 << port))
783 wol->wolopts = pwol.wolopts;
784 else
785 wol->wolopts = 0;
786}
787
788static int bcm_sf2_sw_set_wol(struct dsa_switch *ds, int port,
789 struct ethtool_wolinfo *wol)
790{
791 struct net_device *p = ds->dst[ds->index].master_netdev;
Florian Fainellif4589952016-08-26 12:18:33 -0700792 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainelli96e65d72014-09-18 17:31:25 -0700793 s8 cpu_port = ds->dst[ds->index].cpu_port;
794 struct ethtool_wolinfo pwol;
795
796 p->ethtool_ops->get_wol(p, &pwol);
797 if (wol->wolopts & ~pwol.supported)
798 return -EINVAL;
799
800 if (wol->wolopts)
801 priv->wol_ports_mask |= (1 << port);
802 else
803 priv->wol_ports_mask &= ~(1 << port);
804
805 /* If we have at least one port enabled, make sure the CPU port
806 * is also enabled. If the CPU port is the last one enabled, we disable
807 * it since this configuration does not make sense.
808 */
809 if (priv->wol_ports_mask && priv->wol_ports_mask != (1 << cpu_port))
810 priv->wol_ports_mask |= (1 << cpu_port);
811 else
812 priv->wol_ports_mask &= ~(1 << cpu_port);
813
814 return p->ethtool_ops->set_wol(p, wol);
815}
816
Florian Fainellide0b9d32016-08-26 12:18:34 -0700817static int bcm_sf2_vlan_op_wait(struct bcm_sf2_priv *priv)
Florian Fainelli9c57a772016-06-09 17:42:08 -0700818{
Florian Fainellide0b9d32016-08-26 12:18:34 -0700819 unsigned int timeout = 10;
820 u32 reg;
Florian Fainelli9c57a772016-06-09 17:42:08 -0700821
Florian Fainellide0b9d32016-08-26 12:18:34 -0700822 do {
823 reg = core_readl(priv, CORE_ARLA_VTBL_RWCTRL);
824 if (!(reg & ARLA_VTBL_STDN))
825 return 0;
Florian Fainelli9c57a772016-06-09 17:42:08 -0700826
Florian Fainellide0b9d32016-08-26 12:18:34 -0700827 usleep_range(1000, 2000);
828 } while (timeout--);
Florian Fainelli9c57a772016-06-09 17:42:08 -0700829
Florian Fainellide0b9d32016-08-26 12:18:34 -0700830 return -ETIMEDOUT;
831}
Florian Fainelli9c57a772016-06-09 17:42:08 -0700832
Florian Fainellide0b9d32016-08-26 12:18:34 -0700833static int bcm_sf2_vlan_op(struct bcm_sf2_priv *priv, u8 op)
834{
835 core_writel(priv, ARLA_VTBL_STDN | op, CORE_ARLA_VTBL_RWCTRL);
836
837 return bcm_sf2_vlan_op_wait(priv);
Florian Fainelli9c57a772016-06-09 17:42:08 -0700838}
839
840static void bcm_sf2_sw_configure_vlan(struct dsa_switch *ds)
841{
Florian Fainellif4589952016-08-26 12:18:33 -0700842 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainelli9c57a772016-06-09 17:42:08 -0700843 unsigned int port;
844
845 /* Clear all VLANs */
846 bcm_sf2_vlan_op(priv, ARLA_VTBL_CMD_CLEAR);
847
848 for (port = 0; port < priv->hw_params.num_ports; port++) {
849 if (!((1 << port) & ds->enabled_port_mask))
850 continue;
851
852 core_writel(priv, 1, CORE_DEFAULT_1Q_TAG_P(port));
853 }
854}
855
Florian Fainelli7fbb1a92016-06-09 17:42:06 -0700856static int bcm_sf2_sw_setup(struct dsa_switch *ds)
857{
Florian Fainellif4589952016-08-26 12:18:33 -0700858 struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
Florian Fainelli7fbb1a92016-06-09 17:42:06 -0700859 unsigned int port;
Florian Fainellid9338022016-08-18 15:30:14 -0700860
861 /* Enable all valid ports and disable those unused */
862 for (port = 0; port < priv->hw_params.num_ports; port++) {
863 /* IMP port receives special treatment */
864 if ((1 << port) & ds->enabled_port_mask)
865 bcm_sf2_port_setup(ds, port, NULL);
866 else if (dsa_is_cpu_port(ds, port))
867 bcm_sf2_imp_setup(ds, port);
868 else
869 bcm_sf2_port_disable(ds, port, NULL);
870 }
871
872 bcm_sf2_sw_configure_vlan(ds);
873
874 return 0;
875}
876
Florian Fainellif4589952016-08-26 12:18:33 -0700877/* The SWITCH_CORE register space is managed by b53 but operates on a page +
878 * register basis so we need to translate that into an address that the
879 * bus-glue understands.
880 */
881#define SF2_PAGE_REG_MKADDR(page, reg) ((page) << 10 | (reg) << 2)
882
883static int bcm_sf2_core_read8(struct b53_device *dev, u8 page, u8 reg,
884 u8 *val)
885{
886 struct bcm_sf2_priv *priv = dev->priv;
887
888 *val = core_readl(priv, SF2_PAGE_REG_MKADDR(page, reg));
889
890 return 0;
891}
892
893static int bcm_sf2_core_read16(struct b53_device *dev, u8 page, u8 reg,
894 u16 *val)
895{
896 struct bcm_sf2_priv *priv = dev->priv;
897
898 *val = core_readl(priv, SF2_PAGE_REG_MKADDR(page, reg));
899
900 return 0;
901}
902
903static int bcm_sf2_core_read32(struct b53_device *dev, u8 page, u8 reg,
904 u32 *val)
905{
906 struct bcm_sf2_priv *priv = dev->priv;
907
908 *val = core_readl(priv, SF2_PAGE_REG_MKADDR(page, reg));
909
910 return 0;
911}
912
913static int bcm_sf2_core_read64(struct b53_device *dev, u8 page, u8 reg,
914 u64 *val)
915{
916 struct bcm_sf2_priv *priv = dev->priv;
917
918 *val = core_readq(priv, SF2_PAGE_REG_MKADDR(page, reg));
919
920 return 0;
921}
922
923static int bcm_sf2_core_write8(struct b53_device *dev, u8 page, u8 reg,
924 u8 value)
925{
926 struct bcm_sf2_priv *priv = dev->priv;
927
928 core_writel(priv, value, SF2_PAGE_REG_MKADDR(page, reg));
929
930 return 0;
931}
932
933static int bcm_sf2_core_write16(struct b53_device *dev, u8 page, u8 reg,
934 u16 value)
935{
936 struct bcm_sf2_priv *priv = dev->priv;
937
938 core_writel(priv, value, SF2_PAGE_REG_MKADDR(page, reg));
939
940 return 0;
941}
942
943static int bcm_sf2_core_write32(struct b53_device *dev, u8 page, u8 reg,
944 u32 value)
945{
946 struct bcm_sf2_priv *priv = dev->priv;
947
948 core_writel(priv, value, SF2_PAGE_REG_MKADDR(page, reg));
949
950 return 0;
951}
952
953static int bcm_sf2_core_write64(struct b53_device *dev, u8 page, u8 reg,
954 u64 value)
955{
956 struct bcm_sf2_priv *priv = dev->priv;
957
958 core_writeq(priv, value, SF2_PAGE_REG_MKADDR(page, reg));
959
960 return 0;
961}
962
Wei Yongjun0e26e5b2016-09-15 02:24:13 +0000963static struct b53_io_ops bcm_sf2_io_ops = {
Florian Fainellif4589952016-08-26 12:18:33 -0700964 .read8 = bcm_sf2_core_read8,
965 .read16 = bcm_sf2_core_read16,
966 .read32 = bcm_sf2_core_read32,
967 .read48 = bcm_sf2_core_read64,
968 .read64 = bcm_sf2_core_read64,
969 .write8 = bcm_sf2_core_write8,
970 .write16 = bcm_sf2_core_write16,
971 .write32 = bcm_sf2_core_write32,
972 .write48 = bcm_sf2_core_write64,
973 .write64 = bcm_sf2_core_write64,
974};
975
Florian Fainellid9338022016-08-18 15:30:14 -0700976static int bcm_sf2_sw_probe(struct platform_device *pdev)
977{
978 const char *reg_names[BCM_SF2_REGS_NUM] = BCM_SF2_REGS_NAME;
979 struct device_node *dn = pdev->dev.of_node;
Florian Fainellif4589952016-08-26 12:18:33 -0700980 struct b53_platform_data *pdata;
Florian Fainellid9338022016-08-18 15:30:14 -0700981 struct bcm_sf2_priv *priv;
Florian Fainellif4589952016-08-26 12:18:33 -0700982 struct b53_device *dev;
Florian Fainellid9338022016-08-18 15:30:14 -0700983 struct dsa_switch *ds;
984 void __iomem **base;
Florian Fainelli4bd11672016-08-18 15:30:15 -0700985 struct resource *r;
Florian Fainelli7fbb1a92016-06-09 17:42:06 -0700986 unsigned int i;
987 u32 reg, rev;
988 int ret;
989
Florian Fainellif4589952016-08-26 12:18:33 -0700990 priv = devm_kzalloc(&pdev->dev, sizeof(*priv), GFP_KERNEL);
991 if (!priv)
Florian Fainellid9338022016-08-18 15:30:14 -0700992 return -ENOMEM;
993
Florian Fainellif4589952016-08-26 12:18:33 -0700994 dev = b53_switch_alloc(&pdev->dev, &bcm_sf2_io_ops, priv);
995 if (!dev)
996 return -ENOMEM;
Florian Fainellid9338022016-08-18 15:30:14 -0700997
Florian Fainellif4589952016-08-26 12:18:33 -0700998 pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL);
999 if (!pdata)
1000 return -ENOMEM;
1001
1002 /* Auto-detection using standard registers will not work, so
1003 * provide an indication of what kind of device we are for
1004 * b53_common to work with
1005 */
1006 pdata->chip_id = BCM7445_DEVICE_ID;
1007 dev->pdata = pdata;
1008
1009 priv->dev = dev;
1010 ds = dev->ds;
1011
1012 /* Override the parts that are non-standard wrt. normal b53 devices */
1013 ds->ops->get_tag_protocol = bcm_sf2_sw_get_tag_protocol;
1014 ds->ops->setup = bcm_sf2_sw_setup;
1015 ds->ops->get_phy_flags = bcm_sf2_sw_get_phy_flags;
1016 ds->ops->adjust_link = bcm_sf2_sw_adjust_link;
1017 ds->ops->fixed_link_update = bcm_sf2_sw_fixed_link_update;
1018 ds->ops->suspend = bcm_sf2_sw_suspend;
1019 ds->ops->resume = bcm_sf2_sw_resume;
1020 ds->ops->get_wol = bcm_sf2_sw_get_wol;
1021 ds->ops->set_wol = bcm_sf2_sw_set_wol;
1022 ds->ops->port_enable = bcm_sf2_port_setup;
1023 ds->ops->port_disable = bcm_sf2_port_disable;
1024 ds->ops->get_eee = bcm_sf2_sw_get_eee;
1025 ds->ops->set_eee = bcm_sf2_sw_set_eee;
1026
1027 /* Avoid having DSA free our slave MDIO bus (checking for
1028 * ds->slave_mii_bus and ds->ops->phy_read being non-NULL)
1029 */
1030 ds->ops->phy_read = NULL;
1031
1032 dev_set_drvdata(&pdev->dev, priv);
Florian Fainellid9338022016-08-18 15:30:14 -07001033
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001034 spin_lock_init(&priv->indir_lock);
1035 mutex_init(&priv->stats_mutex);
1036
Florian Fainellid9338022016-08-18 15:30:14 -07001037 bcm_sf2_identify_ports(priv, dn->child);
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001038
1039 priv->irq0 = irq_of_parse_and_map(dn, 0);
1040 priv->irq1 = irq_of_parse_and_map(dn, 1);
1041
1042 base = &priv->core;
1043 for (i = 0; i < BCM_SF2_REGS_NUM; i++) {
Florian Fainelli4bd11672016-08-18 15:30:15 -07001044 r = platform_get_resource(pdev, IORESOURCE_MEM, i);
1045 *base = devm_ioremap_resource(&pdev->dev, r);
1046 if (IS_ERR(*base)) {
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001047 pr_err("unable to find register: %s\n", reg_names[i]);
Florian Fainelli4bd11672016-08-18 15:30:15 -07001048 return PTR_ERR(*base);
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001049 }
1050 base++;
1051 }
1052
1053 ret = bcm_sf2_sw_rst(priv);
1054 if (ret) {
1055 pr_err("unable to software reset switch: %d\n", ret);
Florian Fainelli4bd11672016-08-18 15:30:15 -07001056 return ret;
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001057 }
1058
1059 ret = bcm_sf2_mdio_register(ds);
1060 if (ret) {
1061 pr_err("failed to register MDIO bus\n");
Florian Fainelli4bd11672016-08-18 15:30:15 -07001062 return ret;
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001063 }
1064
1065 /* Disable all interrupts and request them */
1066 bcm_sf2_intr_disable(priv);
1067
Florian Fainelli4bd11672016-08-18 15:30:15 -07001068 ret = devm_request_irq(&pdev->dev, priv->irq0, bcm_sf2_switch_0_isr, 0,
1069 "switch_0", priv);
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001070 if (ret < 0) {
1071 pr_err("failed to request switch_0 IRQ\n");
Florian Fainellibb9c0fa2016-07-29 12:35:57 -07001072 goto out_mdio;
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001073 }
1074
Florian Fainelli4bd11672016-08-18 15:30:15 -07001075 ret = devm_request_irq(&pdev->dev, priv->irq1, bcm_sf2_switch_1_isr, 0,
1076 "switch_1", priv);
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001077 if (ret < 0) {
1078 pr_err("failed to request switch_1 IRQ\n");
Florian Fainelli4bd11672016-08-18 15:30:15 -07001079 goto out_mdio;
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001080 }
1081
1082 /* Reset the MIB counters */
1083 reg = core_readl(priv, CORE_GMNCFGCFG);
1084 reg |= RST_MIB_CNT;
1085 core_writel(priv, reg, CORE_GMNCFGCFG);
1086 reg &= ~RST_MIB_CNT;
1087 core_writel(priv, reg, CORE_GMNCFGCFG);
1088
1089 /* Get the maximum number of ports for this switch */
1090 priv->hw_params.num_ports = core_readl(priv, CORE_IMP0_PRT_ID) + 1;
1091 if (priv->hw_params.num_ports > DSA_MAX_PORTS)
1092 priv->hw_params.num_ports = DSA_MAX_PORTS;
1093
1094 /* Assume a single GPHY setup if we can't read that property */
1095 if (of_property_read_u32(dn, "brcm,num-gphy",
1096 &priv->hw_params.num_gphy))
1097 priv->hw_params.num_gphy = 1;
1098
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001099 rev = reg_readl(priv, REG_SWITCH_REVISION);
1100 priv->hw_params.top_rev = (rev >> SWITCH_TOP_REV_SHIFT) &
1101 SWITCH_TOP_REV_MASK;
1102 priv->hw_params.core_rev = (rev & SF2_REV_MASK);
1103
1104 rev = reg_readl(priv, REG_PHY_REVISION);
1105 priv->hw_params.gphy_rev = rev & PHY_REVISION_MASK;
1106
Florian Fainellif4589952016-08-26 12:18:33 -07001107 ret = b53_switch_register(dev);
Florian Fainellid9338022016-08-18 15:30:14 -07001108 if (ret)
Florian Fainelli4bd11672016-08-18 15:30:15 -07001109 goto out_mdio;
Florian Fainellid9338022016-08-18 15:30:14 -07001110
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001111 pr_info("Starfighter 2 top: %x.%02x, core: %x.%02x base: 0x%p, IRQs: %d, %d\n",
1112 priv->hw_params.top_rev >> 8, priv->hw_params.top_rev & 0xff,
1113 priv->hw_params.core_rev >> 8, priv->hw_params.core_rev & 0xff,
1114 priv->core, priv->irq0, priv->irq1);
1115
1116 return 0;
1117
Florian Fainellibb9c0fa2016-07-29 12:35:57 -07001118out_mdio:
1119 bcm_sf2_mdio_unregister(priv);
Florian Fainelli7fbb1a92016-06-09 17:42:06 -07001120 return ret;
1121}
1122
Florian Fainellid9338022016-08-18 15:30:14 -07001123static int bcm_sf2_sw_remove(struct platform_device *pdev)
Florian Fainelli246d7f72014-08-27 17:04:56 -07001124{
Florian Fainellif4589952016-08-26 12:18:33 -07001125 struct bcm_sf2_priv *priv = platform_get_drvdata(pdev);
Florian Fainellid9338022016-08-18 15:30:14 -07001126
1127 /* Disable all ports and interrupts */
1128 priv->wol_ports_mask = 0;
Florian Fainellif4589952016-08-26 12:18:33 -07001129 bcm_sf2_sw_suspend(priv->dev->ds);
1130 dsa_unregister_switch(priv->dev->ds);
Florian Fainellid9338022016-08-18 15:30:14 -07001131 bcm_sf2_mdio_unregister(priv);
Florian Fainelli246d7f72014-08-27 17:04:56 -07001132
1133 return 0;
1134}
Florian Fainelli246d7f72014-08-27 17:04:56 -07001135
Florian Fainellid9338022016-08-18 15:30:14 -07001136#ifdef CONFIG_PM_SLEEP
1137static int bcm_sf2_suspend(struct device *dev)
Florian Fainelli246d7f72014-08-27 17:04:56 -07001138{
Florian Fainellid9338022016-08-18 15:30:14 -07001139 struct platform_device *pdev = to_platform_device(dev);
Florian Fainellif4589952016-08-26 12:18:33 -07001140 struct bcm_sf2_priv *priv = platform_get_drvdata(pdev);
Florian Fainellid9338022016-08-18 15:30:14 -07001141
Florian Fainellif4589952016-08-26 12:18:33 -07001142 return dsa_switch_suspend(priv->dev->ds);
Florian Fainelli246d7f72014-08-27 17:04:56 -07001143}
Florian Fainellid9338022016-08-18 15:30:14 -07001144
1145static int bcm_sf2_resume(struct device *dev)
1146{
1147 struct platform_device *pdev = to_platform_device(dev);
Florian Fainellif4589952016-08-26 12:18:33 -07001148 struct bcm_sf2_priv *priv = platform_get_drvdata(pdev);
Florian Fainellid9338022016-08-18 15:30:14 -07001149
Florian Fainellif4589952016-08-26 12:18:33 -07001150 return dsa_switch_resume(priv->dev->ds);
Florian Fainellid9338022016-08-18 15:30:14 -07001151}
1152#endif /* CONFIG_PM_SLEEP */
1153
1154static SIMPLE_DEV_PM_OPS(bcm_sf2_pm_ops,
1155 bcm_sf2_suspend, bcm_sf2_resume);
1156
1157static const struct of_device_id bcm_sf2_of_match[] = {
1158 { .compatible = "brcm,bcm7445-switch-v4.0" },
1159 { /* sentinel */ },
1160};
1161
1162static struct platform_driver bcm_sf2_driver = {
1163 .probe = bcm_sf2_sw_probe,
1164 .remove = bcm_sf2_sw_remove,
1165 .driver = {
1166 .name = "brcm-sf2",
1167 .of_match_table = bcm_sf2_of_match,
1168 .pm = &bcm_sf2_pm_ops,
1169 },
1170};
1171module_platform_driver(bcm_sf2_driver);
Florian Fainelli246d7f72014-08-27 17:04:56 -07001172
1173MODULE_AUTHOR("Broadcom Corporation");
1174MODULE_DESCRIPTION("Driver for Broadcom Starfighter 2 ethernet switch chip");
1175MODULE_LICENSE("GPL");
1176MODULE_ALIAS("platform:brcm-sf2");