2 * net/dsa/dsa2.c - Hardware switch handling, binding version 2
3 * Copyright (c) 2008-2009 Marvell Semiconductor
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
13 #include <linux/device.h>
14 #include <linux/err.h>
15 #include <linux/list.h>
16 #include <linux/netdevice.h>
17 #include <linux/slab.h>
18 #include <linux/rtnetlink.h>
20 #include <linux/of_net.h>
24 static LIST_HEAD(dsa_tree_list);
25 static DEFINE_MUTEX(dsa2_mutex);
27 static const struct devlink_ops dsa_devlink_ops = {
30 static struct dsa_switch_tree *dsa_tree_find(int index)
32 struct dsa_switch_tree *dst;
34 list_for_each_entry(dst, &dsa_tree_list, list)
35 if (dst->index == index)
41 static struct dsa_switch_tree *dsa_tree_alloc(int index)
43 struct dsa_switch_tree *dst;
45 dst = kzalloc(sizeof(*dst), GFP_KERNEL);
51 INIT_LIST_HEAD(&dst->list);
52 list_add_tail(&dsa_tree_list, &dst->list);
54 kref_init(&dst->refcount);
59 static void dsa_tree_free(struct dsa_switch_tree *dst)
65 static struct dsa_switch_tree *dsa_tree_get(struct dsa_switch_tree *dst)
68 kref_get(&dst->refcount);
73 static struct dsa_switch_tree *dsa_tree_touch(int index)
75 struct dsa_switch_tree *dst;
77 dst = dsa_tree_find(index);
79 return dsa_tree_get(dst);
81 return dsa_tree_alloc(index);
84 static void dsa_tree_release(struct kref *ref)
86 struct dsa_switch_tree *dst;
88 dst = container_of(ref, struct dsa_switch_tree, refcount);
93 static void dsa_tree_put(struct dsa_switch_tree *dst)
96 kref_put(&dst->refcount, dsa_tree_release);
99 static bool dsa_port_is_dsa(struct dsa_port *port)
101 return port->type == DSA_PORT_TYPE_DSA;
104 static bool dsa_port_is_cpu(struct dsa_port *port)
106 return port->type == DSA_PORT_TYPE_CPU;
109 static bool dsa_port_is_user(struct dsa_port *dp)
111 return dp->type == DSA_PORT_TYPE_USER;
114 static struct dsa_port *dsa_tree_find_port_by_node(struct dsa_switch_tree *dst,
115 struct device_node *dn)
117 struct dsa_switch *ds;
121 for (device = 0; device < DSA_MAX_SWITCHES; device++) {
122 ds = dst->ds[device];
126 for (port = 0; port < ds->num_ports; port++) {
127 dp = &ds->ports[port];
137 static bool dsa_port_setup_routing_table(struct dsa_port *dp)
139 struct dsa_switch *ds = dp->ds;
140 struct dsa_switch_tree *dst = ds->dst;
141 struct device_node *dn = dp->dn;
142 struct of_phandle_iterator it;
143 struct dsa_port *link_dp;
146 of_for_each_phandle(&it, err, dn, "link", NULL, 0) {
147 link_dp = dsa_tree_find_port_by_node(dst, it.node);
149 of_node_put(it.node);
153 ds->rtable[link_dp->ds->index] = dp->index;
159 static bool dsa_switch_setup_routing_table(struct dsa_switch *ds)
161 bool complete = true;
165 for (i = 0; i < DSA_MAX_SWITCHES; i++)
166 ds->rtable[i] = DSA_RTABLE_NONE;
168 for (i = 0; i < ds->num_ports; i++) {
171 if (dsa_port_is_dsa(dp)) {
172 complete = dsa_port_setup_routing_table(dp);
181 static bool dsa_tree_setup_routing_table(struct dsa_switch_tree *dst)
183 struct dsa_switch *ds;
184 bool complete = true;
187 for (device = 0; device < DSA_MAX_SWITCHES; device++) {
188 ds = dst->ds[device];
192 complete = dsa_switch_setup_routing_table(ds);
200 static struct dsa_port *dsa_tree_find_first_cpu(struct dsa_switch_tree *dst)
202 struct dsa_switch *ds;
206 for (device = 0; device < DSA_MAX_SWITCHES; device++) {
207 ds = dst->ds[device];
211 for (port = 0; port < ds->num_ports; port++) {
212 dp = &ds->ports[port];
214 if (dsa_port_is_cpu(dp))
222 static int dsa_tree_setup_default_cpu(struct dsa_switch_tree *dst)
224 struct dsa_switch *ds;
228 /* DSA currently only supports a single CPU port */
229 dst->cpu_dp = dsa_tree_find_first_cpu(dst);
231 pr_warn("Tree has no master device\n");
235 /* Assign the default CPU port to all ports of the fabric */
236 for (device = 0; device < DSA_MAX_SWITCHES; device++) {
237 ds = dst->ds[device];
241 for (port = 0; port < ds->num_ports; port++) {
242 dp = &ds->ports[port];
244 if (dsa_port_is_user(dp) || dsa_port_is_dsa(dp))
245 dp->cpu_dp = dst->cpu_dp;
252 static void dsa_tree_teardown_default_cpu(struct dsa_switch_tree *dst)
254 /* DSA currently only supports a single CPU port */
258 static int dsa_port_setup(struct dsa_port *dp)
260 struct dsa_switch *ds = dp->ds;
263 memset(&dp->devlink_port, 0, sizeof(dp->devlink_port));
265 if (dp->type != DSA_PORT_TYPE_UNUSED)
266 err = devlink_port_register(ds->devlink, &dp->devlink_port,
272 case DSA_PORT_TYPE_UNUSED:
274 case DSA_PORT_TYPE_CPU:
275 case DSA_PORT_TYPE_DSA:
276 err = dsa_port_link_register_of(dp);
278 dev_err(ds->dev, "failed to setup link for port %d.%d\n",
279 ds->index, dp->index);
283 case DSA_PORT_TYPE_USER:
284 err = dsa_slave_create(dp);
286 dev_err(ds->dev, "failed to create slave for port %d.%d\n",
287 ds->index, dp->index);
289 devlink_port_type_eth_set(&dp->devlink_port, dp->slave);
296 static void dsa_port_teardown(struct dsa_port *dp)
298 if (dp->type != DSA_PORT_TYPE_UNUSED)
299 devlink_port_unregister(&dp->devlink_port);
302 case DSA_PORT_TYPE_UNUSED:
304 case DSA_PORT_TYPE_CPU:
305 case DSA_PORT_TYPE_DSA:
306 dsa_port_link_unregister_of(dp);
308 case DSA_PORT_TYPE_USER:
310 dsa_slave_destroy(dp->slave);
317 static int dsa_switch_setup(struct dsa_switch *ds)
321 /* Initialize ds->phys_mii_mask before registering the slave MDIO bus
322 * driver and before ops->setup() has run, since the switch drivers and
323 * the slave MDIO bus driver rely on these values for probing PHY
326 ds->phys_mii_mask |= dsa_user_ports(ds);
328 /* Add the switch to devlink before calling setup, so that setup can
331 ds->devlink = devlink_alloc(&dsa_devlink_ops, 0);
335 err = devlink_register(ds->devlink, ds->dev);
339 err = ds->ops->setup(ds);
343 err = dsa_switch_register_notifier(ds);
347 if (!ds->slave_mii_bus && ds->ops->phy_read) {
348 ds->slave_mii_bus = devm_mdiobus_alloc(ds->dev);
349 if (!ds->slave_mii_bus)
352 dsa_slave_mii_bus_init(ds);
354 err = mdiobus_register(ds->slave_mii_bus);
362 static void dsa_switch_teardown(struct dsa_switch *ds)
364 if (ds->slave_mii_bus && ds->ops->phy_read)
365 mdiobus_unregister(ds->slave_mii_bus);
367 dsa_switch_unregister_notifier(ds);
370 devlink_unregister(ds->devlink);
371 devlink_free(ds->devlink);
377 static int dsa_tree_setup_switches(struct dsa_switch_tree *dst)
379 struct dsa_switch *ds;
384 for (device = 0; device < DSA_MAX_SWITCHES; device++) {
385 ds = dst->ds[device];
389 err = dsa_switch_setup(ds);
393 for (port = 0; port < ds->num_ports; port++) {
394 dp = &ds->ports[port];
396 err = dsa_port_setup(dp);
405 static void dsa_tree_teardown_switches(struct dsa_switch_tree *dst)
407 struct dsa_switch *ds;
411 for (device = 0; device < DSA_MAX_SWITCHES; device++) {
412 ds = dst->ds[device];
416 for (port = 0; port < ds->num_ports; port++) {
417 dp = &ds->ports[port];
419 dsa_port_teardown(dp);
422 dsa_switch_teardown(ds);
426 static int dsa_tree_setup_master(struct dsa_switch_tree *dst)
428 struct dsa_port *cpu_dp = dst->cpu_dp;
429 struct net_device *master = cpu_dp->master;
431 /* DSA currently supports a single pair of CPU port and master device */
432 return dsa_master_setup(master, cpu_dp);
435 static void dsa_tree_teardown_master(struct dsa_switch_tree *dst)
437 struct dsa_port *cpu_dp = dst->cpu_dp;
438 struct net_device *master = cpu_dp->master;
440 return dsa_master_teardown(master);
443 static int dsa_tree_setup(struct dsa_switch_tree *dst)
449 pr_err("DSA: tree %d already setup! Disjoint trees?\n",
454 complete = dsa_tree_setup_routing_table(dst);
458 err = dsa_tree_setup_default_cpu(dst);
462 err = dsa_tree_setup_switches(dst);
466 err = dsa_tree_setup_master(dst);
472 pr_info("DSA: tree %d setup\n", dst->index);
477 static void dsa_tree_teardown(struct dsa_switch_tree *dst)
482 dsa_tree_teardown_master(dst);
484 dsa_tree_teardown_switches(dst);
486 dsa_tree_teardown_default_cpu(dst);
488 pr_info("DSA: tree %d torn down\n", dst->index);
493 static void dsa_tree_remove_switch(struct dsa_switch_tree *dst,
496 dsa_tree_teardown(dst);
498 dst->ds[index] = NULL;
502 static int dsa_tree_add_switch(struct dsa_switch_tree *dst,
503 struct dsa_switch *ds)
505 unsigned int index = ds->index;
514 err = dsa_tree_setup(dst);
516 dsa_tree_remove_switch(dst, index);
521 static int dsa_port_parse_user(struct dsa_port *dp, const char *name)
526 dp->type = DSA_PORT_TYPE_USER;
532 static int dsa_port_parse_dsa(struct dsa_port *dp)
534 dp->type = DSA_PORT_TYPE_DSA;
539 static int dsa_port_parse_cpu(struct dsa_port *dp, struct net_device *master)
541 struct dsa_switch *ds = dp->ds;
542 struct dsa_switch_tree *dst = ds->dst;
543 const struct dsa_device_ops *tag_ops;
544 enum dsa_tag_protocol tag_protocol;
546 tag_protocol = ds->ops->get_tag_protocol(ds, dp->index);
547 tag_ops = dsa_resolve_tag_protocol(tag_protocol);
548 if (IS_ERR(tag_ops)) {
549 dev_warn(ds->dev, "No tagger for this switch\n");
550 return PTR_ERR(tag_ops);
553 dp->type = DSA_PORT_TYPE_CPU;
554 dp->rcv = tag_ops->rcv;
555 dp->tag_ops = tag_ops;
562 static int dsa_port_parse_of(struct dsa_port *dp, struct device_node *dn)
564 struct device_node *ethernet = of_parse_phandle(dn, "ethernet", 0);
565 const char *name = of_get_property(dn, "label", NULL);
566 bool link = of_property_read_bool(dn, "link");
571 struct net_device *master;
573 master = of_find_net_device_by_node(ethernet);
575 return -EPROBE_DEFER;
577 return dsa_port_parse_cpu(dp, master);
581 return dsa_port_parse_dsa(dp);
583 return dsa_port_parse_user(dp, name);
586 static int dsa_switch_parse_ports_of(struct dsa_switch *ds,
587 struct device_node *dn)
589 struct device_node *ports, *port;
594 ports = of_get_child_by_name(dn, "ports");
596 dev_err(ds->dev, "no ports child node found\n");
600 for_each_available_child_of_node(ports, port) {
601 err = of_property_read_u32(port, "reg", ®);
605 if (reg >= ds->num_ports)
608 dp = &ds->ports[reg];
610 err = dsa_port_parse_of(dp, port);
618 static int dsa_switch_parse_member_of(struct dsa_switch *ds,
619 struct device_node *dn)
624 /* Don't error out if this optional property isn't found */
625 sz = of_property_read_variable_u32_array(dn, "dsa,member", m, 2, 2);
626 if (sz < 0 && sz != -EINVAL)
630 if (ds->index >= DSA_MAX_SWITCHES)
633 ds->dst = dsa_tree_touch(m[0]);
640 static int dsa_switch_parse_of(struct dsa_switch *ds, struct device_node *dn)
644 err = dsa_switch_parse_member_of(ds, dn);
648 return dsa_switch_parse_ports_of(ds, dn);
651 static int dsa_port_parse(struct dsa_port *dp, const char *name,
654 if (!strcmp(name, "cpu")) {
655 struct net_device *master;
657 master = dsa_dev_to_net_device(dev);
659 return -EPROBE_DEFER;
663 return dsa_port_parse_cpu(dp, master);
666 if (!strcmp(name, "dsa"))
667 return dsa_port_parse_dsa(dp);
669 return dsa_port_parse_user(dp, name);
672 static int dsa_switch_parse_ports(struct dsa_switch *ds,
673 struct dsa_chip_data *cd)
675 bool valid_name_found = false;
682 for (i = 0; i < DSA_MAX_PORTS; i++) {
683 name = cd->port_names[i];
690 err = dsa_port_parse(dp, name, dev);
694 valid_name_found = true;
697 if (!valid_name_found && i == DSA_MAX_PORTS)
703 static int dsa_switch_parse(struct dsa_switch *ds, struct dsa_chip_data *cd)
707 /* We don't support interconnected switches nor multiple trees via
708 * platform data, so this is the unique switch of the tree.
711 ds->dst = dsa_tree_touch(0);
715 return dsa_switch_parse_ports(ds, cd);
718 static int dsa_switch_add(struct dsa_switch *ds)
720 struct dsa_switch_tree *dst = ds->dst;
722 return dsa_tree_add_switch(dst, ds);
725 static int dsa_switch_probe(struct dsa_switch *ds)
727 struct dsa_chip_data *pdata = ds->dev->platform_data;
728 struct device_node *np = ds->dev->of_node;
732 err = dsa_switch_parse_of(ds, np);
734 err = dsa_switch_parse(ds, pdata);
741 return dsa_switch_add(ds);
744 struct dsa_switch *dsa_switch_alloc(struct device *dev, size_t n)
746 size_t size = sizeof(struct dsa_switch) + n * sizeof(struct dsa_port);
747 struct dsa_switch *ds;
750 ds = devm_kzalloc(dev, size, GFP_KERNEL);
757 for (i = 0; i < ds->num_ports; ++i) {
758 ds->ports[i].index = i;
759 ds->ports[i].ds = ds;
764 EXPORT_SYMBOL_GPL(dsa_switch_alloc);
766 int dsa_register_switch(struct dsa_switch *ds)
770 mutex_lock(&dsa2_mutex);
771 err = dsa_switch_probe(ds);
772 dsa_tree_put(ds->dst);
773 mutex_unlock(&dsa2_mutex);
777 EXPORT_SYMBOL_GPL(dsa_register_switch);
779 static void dsa_switch_remove(struct dsa_switch *ds)
781 struct dsa_switch_tree *dst = ds->dst;
782 unsigned int index = ds->index;
784 dsa_tree_remove_switch(dst, index);
787 void dsa_unregister_switch(struct dsa_switch *ds)
789 mutex_lock(&dsa2_mutex);
790 dsa_switch_remove(ds);
791 mutex_unlock(&dsa2_mutex);
793 EXPORT_SYMBOL_GPL(dsa_unregister_switch);