1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * net/dsa/dsa2.c - Hardware switch handling, binding version 2
4 * Copyright (c) 2008-2009 Marvell Semiconductor
9 #include <linux/device.h>
10 #include <linux/err.h>
11 #include <linux/list.h>
12 #include <linux/netdevice.h>
13 #include <linux/slab.h>
14 #include <linux/rtnetlink.h>
16 #include <linux/of_net.h>
17 #include <net/devlink.h>
21 static DEFINE_MUTEX(dsa2_mutex);
22 LIST_HEAD(dsa_tree_list);
24 static const struct devlink_ops dsa_devlink_ops = {
27 struct dsa_switch *dsa_switch_find(int tree_index, int sw_index)
29 struct dsa_switch_tree *dst;
32 list_for_each_entry(dst, &dsa_tree_list, list) {
33 if (dst->index != tree_index)
36 list_for_each_entry(dp, &dst->ports, list) {
37 if (dp->ds->index != sw_index)
46 EXPORT_SYMBOL_GPL(dsa_switch_find);
48 static struct dsa_switch_tree *dsa_tree_find(int index)
50 struct dsa_switch_tree *dst;
52 list_for_each_entry(dst, &dsa_tree_list, list)
53 if (dst->index == index)
59 static struct dsa_switch_tree *dsa_tree_alloc(int index)
61 struct dsa_switch_tree *dst;
63 dst = kzalloc(sizeof(*dst), GFP_KERNEL);
69 INIT_LIST_HEAD(&dst->rtable);
71 INIT_LIST_HEAD(&dst->ports);
73 INIT_LIST_HEAD(&dst->list);
74 list_add_tail(&dst->list, &dsa_tree_list);
76 kref_init(&dst->refcount);
81 static void dsa_tree_free(struct dsa_switch_tree *dst)
87 static struct dsa_switch_tree *dsa_tree_get(struct dsa_switch_tree *dst)
90 kref_get(&dst->refcount);
95 static struct dsa_switch_tree *dsa_tree_touch(int index)
97 struct dsa_switch_tree *dst;
99 dst = dsa_tree_find(index);
101 return dsa_tree_get(dst);
103 return dsa_tree_alloc(index);
106 static void dsa_tree_release(struct kref *ref)
108 struct dsa_switch_tree *dst;
110 dst = container_of(ref, struct dsa_switch_tree, refcount);
115 static void dsa_tree_put(struct dsa_switch_tree *dst)
118 kref_put(&dst->refcount, dsa_tree_release);
121 static bool dsa_port_is_dsa(struct dsa_port *port)
123 return port->type == DSA_PORT_TYPE_DSA;
126 static bool dsa_port_is_cpu(struct dsa_port *port)
128 return port->type == DSA_PORT_TYPE_CPU;
131 static bool dsa_port_is_user(struct dsa_port *dp)
133 return dp->type == DSA_PORT_TYPE_USER;
136 static struct dsa_port *dsa_tree_find_port_by_node(struct dsa_switch_tree *dst,
137 struct device_node *dn)
141 list_for_each_entry(dp, &dst->ports, list)
148 static struct dsa_link *dsa_link_touch(struct dsa_port *dp,
149 struct dsa_port *link_dp)
151 struct dsa_switch *ds = dp->ds;
152 struct dsa_switch_tree *dst;
157 list_for_each_entry(dl, &dst->rtable, list)
158 if (dl->dp == dp && dl->link_dp == link_dp)
161 dl = kzalloc(sizeof(*dl), GFP_KERNEL);
166 dl->link_dp = link_dp;
168 INIT_LIST_HEAD(&dl->list);
169 list_add_tail(&dl->list, &dst->rtable);
174 static bool dsa_port_setup_routing_table(struct dsa_port *dp)
176 struct dsa_switch *ds = dp->ds;
177 struct dsa_switch_tree *dst = ds->dst;
178 struct device_node *dn = dp->dn;
179 struct of_phandle_iterator it;
180 struct dsa_port *link_dp;
184 of_for_each_phandle(&it, err, dn, "link", NULL, 0) {
185 link_dp = dsa_tree_find_port_by_node(dst, it.node);
187 of_node_put(it.node);
191 dl = dsa_link_touch(dp, link_dp);
193 of_node_put(it.node);
201 static bool dsa_tree_setup_routing_table(struct dsa_switch_tree *dst)
203 bool complete = true;
206 list_for_each_entry(dp, &dst->ports, list) {
207 if (dsa_port_is_dsa(dp)) {
208 complete = dsa_port_setup_routing_table(dp);
217 static struct dsa_port *dsa_tree_find_first_cpu(struct dsa_switch_tree *dst)
221 list_for_each_entry(dp, &dst->ports, list)
222 if (dsa_port_is_cpu(dp))
228 static int dsa_tree_setup_default_cpu(struct dsa_switch_tree *dst)
230 struct dsa_port *cpu_dp, *dp;
232 cpu_dp = dsa_tree_find_first_cpu(dst);
234 pr_err("DSA: tree %d has no CPU port\n", dst->index);
238 /* Assign the default CPU port to all ports of the fabric */
239 list_for_each_entry(dp, &dst->ports, list)
240 if (dsa_port_is_user(dp) || dsa_port_is_dsa(dp))
246 static void dsa_tree_teardown_default_cpu(struct dsa_switch_tree *dst)
250 list_for_each_entry(dp, &dst->ports, list)
251 if (dsa_port_is_user(dp) || dsa_port_is_dsa(dp))
255 static int dsa_port_setup(struct dsa_port *dp)
257 struct dsa_switch *ds = dp->ds;
258 struct dsa_switch_tree *dst = ds->dst;
259 const unsigned char *id = (const unsigned char *)&dst->index;
260 const unsigned char len = sizeof(dst->index);
261 struct devlink_port *dlp = &dp->devlink_port;
262 bool dsa_port_link_registered = false;
263 bool devlink_port_registered = false;
264 struct devlink_port_attrs attrs = {};
265 struct devlink *dl = ds->devlink;
266 bool dsa_port_enabled = false;
269 attrs.phys.port_number = dp->index;
270 memcpy(attrs.switch_id.id, id, len);
271 attrs.switch_id.id_len = len;
277 case DSA_PORT_TYPE_UNUSED:
278 dsa_port_disable(dp);
280 case DSA_PORT_TYPE_CPU:
281 memset(dlp, 0, sizeof(*dlp));
282 attrs.flavour = DEVLINK_PORT_FLAVOUR_CPU;
283 devlink_port_attrs_set(dlp, &attrs);
284 err = devlink_port_register(dl, dlp, dp->index);
287 devlink_port_registered = true;
289 err = dsa_port_link_register_of(dp);
292 dsa_port_link_registered = true;
294 err = dsa_port_enable(dp, NULL);
297 dsa_port_enabled = true;
300 case DSA_PORT_TYPE_DSA:
301 memset(dlp, 0, sizeof(*dlp));
302 attrs.flavour = DEVLINK_PORT_FLAVOUR_DSA;
303 devlink_port_attrs_set(dlp, &attrs);
304 err = devlink_port_register(dl, dlp, dp->index);
307 devlink_port_registered = true;
309 err = dsa_port_link_register_of(dp);
312 dsa_port_link_registered = true;
314 err = dsa_port_enable(dp, NULL);
317 dsa_port_enabled = true;
320 case DSA_PORT_TYPE_USER:
321 memset(dlp, 0, sizeof(*dlp));
322 attrs.flavour = DEVLINK_PORT_FLAVOUR_PHYSICAL;
323 devlink_port_attrs_set(dlp, &attrs);
324 err = devlink_port_register(dl, dlp, dp->index);
327 devlink_port_registered = true;
329 dp->mac = of_get_mac_address(dp->dn);
330 err = dsa_slave_create(dp);
334 devlink_port_type_eth_set(dlp, dp->slave);
338 if (err && dsa_port_enabled)
339 dsa_port_disable(dp);
340 if (err && dsa_port_link_registered)
341 dsa_port_link_unregister_of(dp);
342 if (err && devlink_port_registered)
343 devlink_port_unregister(dlp);
352 static void dsa_port_teardown(struct dsa_port *dp)
354 struct devlink_port *dlp = &dp->devlink_port;
360 case DSA_PORT_TYPE_UNUSED:
362 case DSA_PORT_TYPE_CPU:
363 dsa_port_disable(dp);
364 dsa_tag_driver_put(dp->tag_ops);
365 devlink_port_unregister(dlp);
366 dsa_port_link_unregister_of(dp);
368 case DSA_PORT_TYPE_DSA:
369 dsa_port_disable(dp);
370 devlink_port_unregister(dlp);
371 dsa_port_link_unregister_of(dp);
373 case DSA_PORT_TYPE_USER:
374 devlink_port_unregister(dlp);
376 dsa_slave_destroy(dp->slave);
385 static int dsa_switch_setup(struct dsa_switch *ds)
387 struct dsa_devlink_priv *dl_priv;
393 /* Initialize ds->phys_mii_mask before registering the slave MDIO bus
394 * driver and before ops->setup() has run, since the switch drivers and
395 * the slave MDIO bus driver rely on these values for probing PHY
398 ds->phys_mii_mask |= dsa_user_ports(ds);
400 /* Add the switch to devlink before calling setup, so that setup can
403 ds->devlink = devlink_alloc(&dsa_devlink_ops, sizeof(*dl_priv));
406 dl_priv = devlink_priv(ds->devlink);
409 err = devlink_register(ds->devlink, ds->dev);
413 err = dsa_switch_register_notifier(ds);
415 goto unregister_devlink;
417 err = ds->ops->setup(ds);
419 goto unregister_notifier;
421 devlink_params_publish(ds->devlink);
423 if (!ds->slave_mii_bus && ds->ops->phy_read) {
424 ds->slave_mii_bus = devm_mdiobus_alloc(ds->dev);
425 if (!ds->slave_mii_bus) {
427 goto unregister_notifier;
430 dsa_slave_mii_bus_init(ds);
432 err = mdiobus_register(ds->slave_mii_bus);
434 goto unregister_notifier;
442 dsa_switch_unregister_notifier(ds);
444 devlink_unregister(ds->devlink);
446 devlink_free(ds->devlink);
452 static void dsa_switch_teardown(struct dsa_switch *ds)
457 if (ds->slave_mii_bus && ds->ops->phy_read)
458 mdiobus_unregister(ds->slave_mii_bus);
460 dsa_switch_unregister_notifier(ds);
462 if (ds->ops->teardown)
463 ds->ops->teardown(ds);
466 devlink_unregister(ds->devlink);
467 devlink_free(ds->devlink);
474 static int dsa_tree_setup_switches(struct dsa_switch_tree *dst)
479 list_for_each_entry(dp, &dst->ports, list) {
480 err = dsa_switch_setup(dp->ds);
485 list_for_each_entry(dp, &dst->ports, list) {
486 err = dsa_port_setup(dp);
494 list_for_each_entry(dp, &dst->ports, list)
495 dsa_port_teardown(dp);
497 list_for_each_entry(dp, &dst->ports, list)
498 dsa_switch_teardown(dp->ds);
503 static void dsa_tree_teardown_switches(struct dsa_switch_tree *dst)
507 list_for_each_entry(dp, &dst->ports, list)
508 dsa_port_teardown(dp);
510 list_for_each_entry(dp, &dst->ports, list)
511 dsa_switch_teardown(dp->ds);
514 static int dsa_tree_setup_master(struct dsa_switch_tree *dst)
519 list_for_each_entry(dp, &dst->ports, list) {
520 if (dsa_port_is_cpu(dp)) {
521 err = dsa_master_setup(dp->master, dp);
530 static void dsa_tree_teardown_master(struct dsa_switch_tree *dst)
534 list_for_each_entry(dp, &dst->ports, list)
535 if (dsa_port_is_cpu(dp))
536 dsa_master_teardown(dp->master);
539 static int dsa_tree_setup(struct dsa_switch_tree *dst)
545 pr_err("DSA: tree %d already setup! Disjoint trees?\n",
550 complete = dsa_tree_setup_routing_table(dst);
554 err = dsa_tree_setup_default_cpu(dst);
558 err = dsa_tree_setup_switches(dst);
560 goto teardown_default_cpu;
562 err = dsa_tree_setup_master(dst);
564 goto teardown_switches;
568 pr_info("DSA: tree %d setup\n", dst->index);
573 dsa_tree_teardown_switches(dst);
574 teardown_default_cpu:
575 dsa_tree_teardown_default_cpu(dst);
580 static void dsa_tree_teardown(struct dsa_switch_tree *dst)
582 struct dsa_link *dl, *next;
587 dsa_tree_teardown_master(dst);
589 dsa_tree_teardown_switches(dst);
591 dsa_tree_teardown_default_cpu(dst);
593 list_for_each_entry_safe(dl, next, &dst->rtable, list) {
598 pr_info("DSA: tree %d torn down\n", dst->index);
603 static struct dsa_port *dsa_port_touch(struct dsa_switch *ds, int index)
605 struct dsa_switch_tree *dst = ds->dst;
608 list_for_each_entry(dp, &dst->ports, list)
609 if (dp->ds == ds && dp->index == index)
612 dp = kzalloc(sizeof(*dp), GFP_KERNEL);
619 INIT_LIST_HEAD(&dp->list);
620 list_add_tail(&dp->list, &dst->ports);
625 static int dsa_port_parse_user(struct dsa_port *dp, const char *name)
630 dp->type = DSA_PORT_TYPE_USER;
636 static int dsa_port_parse_dsa(struct dsa_port *dp)
638 dp->type = DSA_PORT_TYPE_DSA;
643 static enum dsa_tag_protocol dsa_get_tag_protocol(struct dsa_port *dp,
644 struct net_device *master)
646 enum dsa_tag_protocol tag_protocol = DSA_TAG_PROTO_NONE;
647 struct dsa_switch *mds, *ds = dp->ds;
648 unsigned int mdp_upstream;
649 struct dsa_port *mdp;
651 /* It is possible to stack DSA switches onto one another when that
652 * happens the switch driver may want to know if its tagging protocol
653 * is going to work in such a configuration.
655 if (dsa_slave_dev_check(master)) {
656 mdp = dsa_slave_to_port(master);
658 mdp_upstream = dsa_upstream_port(mds, mdp->index);
659 tag_protocol = mds->ops->get_tag_protocol(mds, mdp_upstream,
663 /* If the master device is not itself a DSA slave in a disjoint DSA
664 * tree, then return immediately.
666 return ds->ops->get_tag_protocol(ds, dp->index, tag_protocol);
669 static int dsa_port_parse_cpu(struct dsa_port *dp, struct net_device *master)
671 struct dsa_switch *ds = dp->ds;
672 struct dsa_switch_tree *dst = ds->dst;
673 const struct dsa_device_ops *tag_ops;
674 enum dsa_tag_protocol tag_protocol;
676 tag_protocol = dsa_get_tag_protocol(dp, master);
677 tag_ops = dsa_tag_driver_get(tag_protocol);
678 if (IS_ERR(tag_ops)) {
679 if (PTR_ERR(tag_ops) == -ENOPROTOOPT)
680 return -EPROBE_DEFER;
681 dev_warn(ds->dev, "No tagger for this switch\n");
683 return PTR_ERR(tag_ops);
687 dp->type = DSA_PORT_TYPE_CPU;
688 dp->filter = tag_ops->filter;
689 dp->rcv = tag_ops->rcv;
690 dp->tag_ops = tag_ops;
696 static int dsa_port_parse_of(struct dsa_port *dp, struct device_node *dn)
698 struct device_node *ethernet = of_parse_phandle(dn, "ethernet", 0);
699 const char *name = of_get_property(dn, "label", NULL);
700 bool link = of_property_read_bool(dn, "link");
705 struct net_device *master;
707 master = of_find_net_device_by_node(ethernet);
709 return -EPROBE_DEFER;
711 return dsa_port_parse_cpu(dp, master);
715 return dsa_port_parse_dsa(dp);
717 return dsa_port_parse_user(dp, name);
720 static int dsa_switch_parse_ports_of(struct dsa_switch *ds,
721 struct device_node *dn)
723 struct device_node *ports, *port;
728 ports = of_get_child_by_name(dn, "ports");
730 /* The second possibility is "ethernet-ports" */
731 ports = of_get_child_by_name(dn, "ethernet-ports");
733 dev_err(ds->dev, "no ports child node found\n");
738 for_each_available_child_of_node(ports, port) {
739 err = of_property_read_u32(port, "reg", ®);
743 if (reg >= ds->num_ports) {
748 dp = dsa_to_port(ds, reg);
750 err = dsa_port_parse_of(dp, port);
760 static int dsa_switch_parse_member_of(struct dsa_switch *ds,
761 struct device_node *dn)
766 /* Don't error out if this optional property isn't found */
767 sz = of_property_read_variable_u32_array(dn, "dsa,member", m, 2, 2);
768 if (sz < 0 && sz != -EINVAL)
773 ds->dst = dsa_tree_touch(m[0]);
780 static int dsa_switch_touch_ports(struct dsa_switch *ds)
785 for (port = 0; port < ds->num_ports; port++) {
786 dp = dsa_port_touch(ds, port);
794 static int dsa_switch_parse_of(struct dsa_switch *ds, struct device_node *dn)
798 err = dsa_switch_parse_member_of(ds, dn);
802 err = dsa_switch_touch_ports(ds);
806 return dsa_switch_parse_ports_of(ds, dn);
809 static int dsa_port_parse(struct dsa_port *dp, const char *name,
812 if (!strcmp(name, "cpu")) {
813 struct net_device *master;
815 master = dsa_dev_to_net_device(dev);
817 return -EPROBE_DEFER;
821 return dsa_port_parse_cpu(dp, master);
824 if (!strcmp(name, "dsa"))
825 return dsa_port_parse_dsa(dp);
827 return dsa_port_parse_user(dp, name);
830 static int dsa_switch_parse_ports(struct dsa_switch *ds,
831 struct dsa_chip_data *cd)
833 bool valid_name_found = false;
840 for (i = 0; i < DSA_MAX_PORTS; i++) {
841 name = cd->port_names[i];
843 dp = dsa_to_port(ds, i);
848 err = dsa_port_parse(dp, name, dev);
852 valid_name_found = true;
855 if (!valid_name_found && i == DSA_MAX_PORTS)
861 static int dsa_switch_parse(struct dsa_switch *ds, struct dsa_chip_data *cd)
867 /* We don't support interconnected switches nor multiple trees via
868 * platform data, so this is the unique switch of the tree.
871 ds->dst = dsa_tree_touch(0);
875 err = dsa_switch_touch_ports(ds);
879 return dsa_switch_parse_ports(ds, cd);
882 static void dsa_switch_release_ports(struct dsa_switch *ds)
884 struct dsa_switch_tree *dst = ds->dst;
885 struct dsa_port *dp, *next;
887 list_for_each_entry_safe(dp, next, &dst->ports, list) {
895 static int dsa_switch_probe(struct dsa_switch *ds)
897 struct dsa_switch_tree *dst;
898 struct dsa_chip_data *pdata;
899 struct device_node *np;
905 pdata = ds->dev->platform_data;
906 np = ds->dev->of_node;
912 err = dsa_switch_parse_of(ds, np);
914 dsa_switch_release_ports(ds);
916 err = dsa_switch_parse(ds, pdata);
918 dsa_switch_release_ports(ds);
928 err = dsa_tree_setup(dst);
930 dsa_switch_release_ports(ds);
937 int dsa_register_switch(struct dsa_switch *ds)
941 mutex_lock(&dsa2_mutex);
942 err = dsa_switch_probe(ds);
943 dsa_tree_put(ds->dst);
944 mutex_unlock(&dsa2_mutex);
948 EXPORT_SYMBOL_GPL(dsa_register_switch);
950 static void dsa_switch_remove(struct dsa_switch *ds)
952 struct dsa_switch_tree *dst = ds->dst;
954 dsa_tree_teardown(dst);
955 dsa_switch_release_ports(ds);
959 void dsa_unregister_switch(struct dsa_switch *ds)
961 mutex_lock(&dsa2_mutex);
962 dsa_switch_remove(ds);
963 mutex_unlock(&dsa2_mutex);
965 EXPORT_SYMBOL_GPL(dsa_unregister_switch);