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/netdevice.h>
10 #include <linux/of_mdio.h>
11 #include <linux/of_platform.h>
12 #include <linux/mfd/syscon.h>
13 #include <linux/skbuff.h>
17 static int ocelot_parse_ifh(u32 *ifh, struct frame_info *info)
22 /* The IFH is in network order, switch to CPU order */
23 for (i = 0; i < IFH_LEN; i++)
24 ifh[i] = ntohl((__force __be32)ifh[i]);
26 wlen = (ifh[1] >> 7) & 0xff;
27 llen = (ifh[1] >> 15) & 0x3f;
28 info->len = OCELOT_BUFFER_CELL_SZ * wlen + llen - 80;
30 info->port = (ifh[2] & GENMASK(14, 11)) >> 11;
32 info->cpuq = (ifh[3] & GENMASK(27, 20)) >> 20;
33 info->tag_type = (ifh[3] & BIT(16)) >> 16;
34 info->vid = ifh[3] & GENMASK(11, 0);
39 static int ocelot_rx_frame_word(struct ocelot *ocelot, u8 grp, bool ifh,
45 val = ocelot_read_rix(ocelot, QS_XTR_RD, grp);
46 if (val == XTR_NOT_READY) {
51 val = ocelot_read_rix(ocelot, QS_XTR_RD, grp);
52 } while (val == XTR_NOT_READY);
63 bytes_valid = XTR_VALID_BYTES(val);
64 val = ocelot_read_rix(ocelot, QS_XTR_RD, grp);
65 if (val == XTR_ESCAPE)
66 *rval = ocelot_read_rix(ocelot, QS_XTR_RD, grp);
72 *rval = ocelot_read_rix(ocelot, QS_XTR_RD, grp);
82 static irqreturn_t ocelot_xtr_irq_handler(int irq, void *arg)
84 struct ocelot *ocelot = arg;
88 if (!(ocelot_read(ocelot, QS_XTR_DATA_PRESENT) & BIT(grp)))
93 struct net_device *dev;
98 struct frame_info info;
100 for (i = 0; i < IFH_LEN; i++) {
101 err = ocelot_rx_frame_word(ocelot, grp, true, &ifh[i]);
109 ocelot_parse_ifh(ifh, &info);
111 dev = ocelot->ports[info.port]->dev;
113 skb = netdev_alloc_skb(dev, info.len);
115 if (unlikely(!skb)) {
116 netdev_err(dev, "Unable to allocate sk_buff\n");
120 buf_len = info.len - ETH_FCS_LEN;
121 buf = (u32 *)skb_put(skb, buf_len);
125 sz = ocelot_rx_frame_word(ocelot, grp, false, &val);
128 } while (len < buf_len);
130 /* Read the FCS and discard it */
131 sz = ocelot_rx_frame_word(ocelot, grp, false, &val);
132 /* Update the statistics if part of the FCS was read before */
133 len -= ETH_FCS_LEN - sz;
140 /* Everything we see on an interface that is in the HW bridge
141 * has already been forwarded.
143 if (ocelot->bridge_mask & BIT(info.port))
144 skb->offload_fwd_mark = 1;
146 skb->protocol = eth_type_trans(skb, dev);
148 dev->stats.rx_bytes += len;
149 dev->stats.rx_packets++;
150 } while (ocelot_read(ocelot, QS_XTR_DATA_PRESENT) & BIT(grp));
153 while (ocelot_read(ocelot, QS_XTR_DATA_PRESENT) & BIT(grp))
154 ocelot_read_rix(ocelot, QS_XTR_RD, grp);
159 static const struct of_device_id mscc_ocelot_match[] = {
160 { .compatible = "mscc,vsc7514-switch" },
163 MODULE_DEVICE_TABLE(of, mscc_ocelot_match);
165 static int mscc_ocelot_probe(struct platform_device *pdev)
169 struct device_node *np = pdev->dev.of_node;
170 struct device_node *ports, *portnp;
171 struct ocelot *ocelot;
176 enum ocelot_target id;
186 if (!np && !pdev->dev.platform_data)
189 ocelot = devm_kzalloc(&pdev->dev, sizeof(*ocelot), GFP_KERNEL);
193 platform_set_drvdata(pdev, ocelot);
194 ocelot->dev = &pdev->dev;
196 for (i = 0; i < ARRAY_SIZE(res); i++) {
197 struct regmap *target;
199 target = ocelot_io_platform_init(ocelot, pdev, res[i].name);
201 return PTR_ERR(target);
203 ocelot->targets[res[i].id] = target;
206 hsio = syscon_regmap_lookup_by_compatible("mscc,ocelot-hsio");
208 dev_err(&pdev->dev, "missing hsio syscon\n");
209 return PTR_ERR(hsio);
212 ocelot->targets[HSIO] = hsio;
214 err = ocelot_chip_init(ocelot);
218 irq = platform_get_irq_byname(pdev, "xtr");
222 err = devm_request_threaded_irq(&pdev->dev, irq, NULL,
223 ocelot_xtr_irq_handler, IRQF_ONESHOT,
224 "frame extraction", ocelot);
228 regmap_field_write(ocelot->regfields[SYS_RESET_CFG_MEM_INIT], 1);
229 regmap_field_write(ocelot->regfields[SYS_RESET_CFG_MEM_ENA], 1);
233 regmap_field_read(ocelot->regfields[SYS_RESET_CFG_MEM_INIT],
237 regmap_field_write(ocelot->regfields[SYS_RESET_CFG_MEM_ENA], 1);
238 regmap_field_write(ocelot->regfields[SYS_RESET_CFG_CORE_ENA], 1);
240 ocelot->num_cpu_ports = 1; /* 1 port on the switch, two groups */
242 ports = of_get_child_by_name(np, "ethernet-ports");
244 dev_err(&pdev->dev, "no ethernet-ports child node found\n");
248 ocelot->num_phys_ports = of_get_child_count(ports);
250 ocelot->ports = devm_kcalloc(&pdev->dev, ocelot->num_phys_ports,
251 sizeof(struct ocelot_port *), GFP_KERNEL);
253 INIT_LIST_HEAD(&ocelot->multicast);
256 ocelot_rmw(ocelot, HSIO_HW_CFG_DEV1G_4_MODE |
257 HSIO_HW_CFG_DEV1G_6_MODE |
258 HSIO_HW_CFG_DEV1G_9_MODE,
259 HSIO_HW_CFG_DEV1G_4_MODE |
260 HSIO_HW_CFG_DEV1G_6_MODE |
261 HSIO_HW_CFG_DEV1G_9_MODE,
264 for_each_available_child_of_node(ports, portnp) {
265 struct device_node *phy_node;
266 struct phy_device *phy;
267 struct resource *res;
272 if (of_property_read_u32(portnp, "reg", &port))
275 snprintf(res_name, sizeof(res_name), "port%d", port);
277 res = platform_get_resource_byname(pdev, IORESOURCE_MEM,
279 regs = devm_ioremap_resource(&pdev->dev, res);
283 phy_node = of_parse_phandle(portnp, "phy-handle", 0);
287 phy = of_phy_find_device(phy_node);
291 err = ocelot_probe_port(ocelot, port, regs, phy);
293 dev_err(&pdev->dev, "failed to probe ports\n");
294 goto err_probe_ports;
298 register_netdevice_notifier(&ocelot_netdevice_nb);
300 dev_info(&pdev->dev, "Ocelot switch probed\n");
308 static int mscc_ocelot_remove(struct platform_device *pdev)
310 struct ocelot *ocelot = platform_get_drvdata(pdev);
312 ocelot_deinit(ocelot);
313 unregister_netdevice_notifier(&ocelot_netdevice_nb);
318 static struct platform_driver mscc_ocelot_driver = {
319 .probe = mscc_ocelot_probe,
320 .remove = mscc_ocelot_remove,
322 .name = "ocelot-switch",
323 .of_match_table = mscc_ocelot_match,
327 module_platform_driver(mscc_ocelot_driver);
329 MODULE_DESCRIPTION("Microsemi Ocelot switch driver");
330 MODULE_AUTHOR("Alexandre Belloni <alexandre.belloni@bootlin.com>");
331 MODULE_LICENSE("Dual MIT/GPL");