1 // SPDX-License-Identifier: (GPL-2.0 OR MIT)
3 * Microsemi Ocelot Switch driver
5 * Copyright (c) 2017 Microsemi Corporation
7 #include <linux/interrupt.h>
8 #include <linux/module.h>
9 #include <linux/of_net.h>
10 #include <linux/netdevice.h>
11 #include <linux/of_mdio.h>
12 #include <linux/of_platform.h>
13 #include <linux/mfd/syscon.h>
14 #include <linux/skbuff.h>
15 #include <net/switchdev.h>
19 static int ocelot_parse_ifh(u32
*ifh
, struct frame_info
*info
)
24 /* The IFH is in network order, switch to CPU order */
25 for (i
= 0; i
< IFH_LEN
; i
++)
26 ifh
[i
] = ntohl((__force __be32
)ifh
[i
]);
28 wlen
= (ifh
[1] >> 7) & 0xff;
29 llen
= (ifh
[1] >> 15) & 0x3f;
30 info
->len
= OCELOT_BUFFER_CELL_SZ
* wlen
+ llen
- 80;
32 info
->port
= (ifh
[2] & GENMASK(14, 11)) >> 11;
34 info
->cpuq
= (ifh
[3] & GENMASK(27, 20)) >> 20;
35 info
->tag_type
= (ifh
[3] & BIT(16)) >> 16;
36 info
->vid
= ifh
[3] & GENMASK(11, 0);
41 static int ocelot_rx_frame_word(struct ocelot
*ocelot
, u8 grp
, bool ifh
,
47 val
= ocelot_read_rix(ocelot
, QS_XTR_RD
, grp
);
48 if (val
== XTR_NOT_READY
) {
53 val
= ocelot_read_rix(ocelot
, QS_XTR_RD
, grp
);
54 } while (val
== XTR_NOT_READY
);
65 bytes_valid
= XTR_VALID_BYTES(val
);
66 val
= ocelot_read_rix(ocelot
, QS_XTR_RD
, grp
);
67 if (val
== XTR_ESCAPE
)
68 *rval
= ocelot_read_rix(ocelot
, QS_XTR_RD
, grp
);
74 *rval
= ocelot_read_rix(ocelot
, QS_XTR_RD
, grp
);
84 static irqreturn_t
ocelot_xtr_irq_handler(int irq
, void *arg
)
86 struct ocelot
*ocelot
= arg
;
90 if (!(ocelot_read(ocelot
, QS_XTR_DATA_PRESENT
) & BIT(grp
)))
95 struct net_device
*dev
;
100 struct frame_info info
;
102 for (i
= 0; i
< IFH_LEN
; i
++) {
103 err
= ocelot_rx_frame_word(ocelot
, grp
, true, &ifh
[i
]);
111 ocelot_parse_ifh(ifh
, &info
);
113 dev
= ocelot
->ports
[info
.port
]->dev
;
115 skb
= netdev_alloc_skb(dev
, info
.len
);
117 if (unlikely(!skb
)) {
118 netdev_err(dev
, "Unable to allocate sk_buff\n");
122 buf_len
= info
.len
- ETH_FCS_LEN
;
123 buf
= (u32
*)skb_put(skb
, buf_len
);
127 sz
= ocelot_rx_frame_word(ocelot
, grp
, false, &val
);
130 } while (len
< buf_len
);
133 sz
= ocelot_rx_frame_word(ocelot
, grp
, false, &val
);
134 /* Update the statistics if part of the FCS was read before */
135 len
-= ETH_FCS_LEN
- sz
;
137 if (unlikely(dev
->features
& NETIF_F_RXFCS
)) {
138 buf
= (u32
*)skb_put(skb
, ETH_FCS_LEN
);
147 /* Everything we see on an interface that is in the HW bridge
148 * has already been forwarded.
150 if (ocelot
->bridge_mask
& BIT(info
.port
))
151 skb
->offload_fwd_mark
= 1;
153 skb
->protocol
= eth_type_trans(skb
, dev
);
155 dev
->stats
.rx_bytes
+= len
;
156 dev
->stats
.rx_packets
++;
157 } while (ocelot_read(ocelot
, QS_XTR_DATA_PRESENT
) & BIT(grp
));
160 while (ocelot_read(ocelot
, QS_XTR_DATA_PRESENT
) & BIT(grp
))
161 ocelot_read_rix(ocelot
, QS_XTR_RD
, grp
);
166 static const struct of_device_id mscc_ocelot_match
[] = {
167 { .compatible
= "mscc,vsc7514-switch" },
170 MODULE_DEVICE_TABLE(of
, mscc_ocelot_match
);
172 static int mscc_ocelot_probe(struct platform_device
*pdev
)
176 struct device_node
*np
= pdev
->dev
.of_node
;
177 struct device_node
*ports
, *portnp
;
178 struct ocelot
*ocelot
;
183 enum ocelot_target id
;
193 if (!np
&& !pdev
->dev
.platform_data
)
196 ocelot
= devm_kzalloc(&pdev
->dev
, sizeof(*ocelot
), GFP_KERNEL
);
200 platform_set_drvdata(pdev
, ocelot
);
201 ocelot
->dev
= &pdev
->dev
;
203 for (i
= 0; i
< ARRAY_SIZE(res
); i
++) {
204 struct regmap
*target
;
206 target
= ocelot_io_platform_init(ocelot
, pdev
, res
[i
].name
);
208 return PTR_ERR(target
);
210 ocelot
->targets
[res
[i
].id
] = target
;
213 hsio
= syscon_regmap_lookup_by_compatible("mscc,ocelot-hsio");
215 dev_err(&pdev
->dev
, "missing hsio syscon\n");
216 return PTR_ERR(hsio
);
219 ocelot
->targets
[HSIO
] = hsio
;
221 err
= ocelot_chip_init(ocelot
);
225 irq
= platform_get_irq_byname(pdev
, "xtr");
229 err
= devm_request_threaded_irq(&pdev
->dev
, irq
, NULL
,
230 ocelot_xtr_irq_handler
, IRQF_ONESHOT
,
231 "frame extraction", ocelot
);
235 regmap_field_write(ocelot
->regfields
[SYS_RESET_CFG_MEM_INIT
], 1);
236 regmap_field_write(ocelot
->regfields
[SYS_RESET_CFG_MEM_ENA
], 1);
240 regmap_field_read(ocelot
->regfields
[SYS_RESET_CFG_MEM_INIT
],
244 regmap_field_write(ocelot
->regfields
[SYS_RESET_CFG_MEM_ENA
], 1);
245 regmap_field_write(ocelot
->regfields
[SYS_RESET_CFG_CORE_ENA
], 1);
247 ocelot
->num_cpu_ports
= 1; /* 1 port on the switch, two groups */
249 ports
= of_get_child_by_name(np
, "ethernet-ports");
251 dev_err(&pdev
->dev
, "no ethernet-ports child node found\n");
255 ocelot
->num_phys_ports
= of_get_child_count(ports
);
257 ocelot
->ports
= devm_kcalloc(&pdev
->dev
, ocelot
->num_phys_ports
,
258 sizeof(struct ocelot_port
*), GFP_KERNEL
);
260 INIT_LIST_HEAD(&ocelot
->multicast
);
263 for_each_available_child_of_node(ports
, portnp
) {
264 struct device_node
*phy_node
;
265 struct phy_device
*phy
;
266 struct resource
*res
;
273 if (of_property_read_u32(portnp
, "reg", &port
))
276 snprintf(res_name
, sizeof(res_name
), "port%d", port
);
278 res
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
,
280 regs
= devm_ioremap_resource(&pdev
->dev
, res
);
284 phy_node
= of_parse_phandle(portnp
, "phy-handle", 0);
288 phy
= of_phy_find_device(phy_node
);
292 err
= ocelot_probe_port(ocelot
, port
, regs
, phy
);
296 phy_mode
= of_get_phy_mode(portnp
);
298 ocelot
->ports
[port
]->phy_mode
= PHY_INTERFACE_MODE_NA
;
300 ocelot
->ports
[port
]->phy_mode
= phy_mode
;
302 switch (ocelot
->ports
[port
]->phy_mode
) {
303 case PHY_INTERFACE_MODE_NA
:
305 case PHY_INTERFACE_MODE_SGMII
:
307 case PHY_INTERFACE_MODE_QSGMII
:
308 /* Ensure clock signals and speed is set on all
311 ocelot_port_writel(ocelot
->ports
[port
],
312 DEV_CLOCK_CFG_LINK_SPEED
318 "invalid phy mode for port%d, (Q)SGMII only\n",
323 serdes
= devm_of_phy_get(ocelot
->dev
, portnp
, NULL
);
324 if (IS_ERR(serdes
)) {
325 err
= PTR_ERR(serdes
);
326 if (err
== -EPROBE_DEFER
)
327 dev_dbg(ocelot
->dev
, "deferring probe\n");
330 "missing SerDes phys for port%d\n",
333 goto err_probe_ports
;
336 ocelot
->ports
[port
]->serdes
= serdes
;
339 register_netdevice_notifier(&ocelot_netdevice_nb
);
340 register_switchdev_notifier(&ocelot_switchdev_nb
);
341 register_switchdev_blocking_notifier(&ocelot_switchdev_blocking_nb
);
343 dev_info(&pdev
->dev
, "Ocelot switch probed\n");
351 static int mscc_ocelot_remove(struct platform_device
*pdev
)
353 struct ocelot
*ocelot
= platform_get_drvdata(pdev
);
355 ocelot_deinit(ocelot
);
356 unregister_switchdev_blocking_notifier(&ocelot_switchdev_blocking_nb
);
357 unregister_switchdev_notifier(&ocelot_switchdev_nb
);
358 unregister_netdevice_notifier(&ocelot_netdevice_nb
);
363 static struct platform_driver mscc_ocelot_driver
= {
364 .probe
= mscc_ocelot_probe
,
365 .remove
= mscc_ocelot_remove
,
367 .name
= "ocelot-switch",
368 .of_match_table
= mscc_ocelot_match
,
372 module_platform_driver(mscc_ocelot_driver
);
374 MODULE_DESCRIPTION("Microsemi Ocelot switch driver");
375 MODULE_AUTHOR("Alexandre Belloni <alexandre.belloni@bootlin.com>");
376 MODULE_LICENSE("Dual MIT/GPL");