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>
21 #include <net/devlink.h>
25 static LIST_HEAD(dsa_tree_list);
26 static DEFINE_MUTEX(dsa2_mutex);
28 static const struct devlink_ops dsa_devlink_ops = {
31 static struct dsa_switch_tree *dsa_tree_find(int index)
33 struct dsa_switch_tree *dst;
35 list_for_each_entry(dst, &dsa_tree_list, list)
36 if (dst->index == index)
42 static struct dsa_switch_tree *dsa_tree_alloc(int index)
44 struct dsa_switch_tree *dst;
46 dst = kzalloc(sizeof(*dst), GFP_KERNEL);
52 INIT_LIST_HEAD(&dst->list);
53 list_add_tail(&dsa_tree_list, &dst->list);
55 kref_init(&dst->refcount);
60 static void dsa_tree_free(struct dsa_switch_tree *dst)
66 static struct dsa_switch_tree *dsa_tree_get(struct dsa_switch_tree *dst)
69 kref_get(&dst->refcount);
74 static struct dsa_switch_tree *dsa_tree_touch(int index)
76 struct dsa_switch_tree *dst;
78 dst = dsa_tree_find(index);
80 return dsa_tree_get(dst);
82 return dsa_tree_alloc(index);
85 static void dsa_tree_release(struct kref *ref)
87 struct dsa_switch_tree *dst;
89 dst = container_of(ref, struct dsa_switch_tree, refcount);
94 static void dsa_tree_put(struct dsa_switch_tree *dst)
97 kref_put(&dst->refcount, dsa_tree_release);
100 static bool dsa_port_is_dsa(struct dsa_port *port)
102 return port->type == DSA_PORT_TYPE_DSA;
105 static bool dsa_port_is_cpu(struct dsa_port *port)
107 return port->type == DSA_PORT_TYPE_CPU;
110 static bool dsa_port_is_user(struct dsa_port *dp)
112 return dp->type == DSA_PORT_TYPE_USER;
115 static struct dsa_port *dsa_tree_find_port_by_node(struct dsa_switch_tree *dst,
116 struct device_node *dn)
118 struct dsa_switch *ds;
122 for (device = 0; device < DSA_MAX_SWITCHES; device++) {
123 ds = dst->ds[device];
127 for (port = 0; port < ds->num_ports; port++) {
128 dp = &ds->ports[port];
138 static bool dsa_port_setup_routing_table(struct dsa_port *dp)
140 struct dsa_switch *ds = dp->ds;
141 struct dsa_switch_tree *dst = ds->dst;
142 struct device_node *dn = dp->dn;
143 struct of_phandle_iterator it;
144 struct dsa_port *link_dp;
147 of_for_each_phandle(&it, err, dn, "link", NULL, 0) {
148 link_dp = dsa_tree_find_port_by_node(dst, it.node);
150 of_node_put(it.node);
154 ds->rtable[link_dp->ds->index] = dp->index;
160 static bool dsa_switch_setup_routing_table(struct dsa_switch *ds)
162 bool complete = true;
166 for (i = 0; i < DSA_MAX_SWITCHES; i++)
167 ds->rtable[i] = DSA_RTABLE_NONE;
169 for (i = 0; i < ds->num_ports; i++) {
172 if (dsa_port_is_dsa(dp)) {
173 complete = dsa_port_setup_routing_table(dp);
182 static bool dsa_tree_setup_routing_table(struct dsa_switch_tree *dst)
184 struct dsa_switch *ds;
185 bool complete = true;
188 for (device = 0; device < DSA_MAX_SWITCHES; device++) {
189 ds = dst->ds[device];
193 complete = dsa_switch_setup_routing_table(ds);
201 static struct dsa_port *dsa_tree_find_first_cpu(struct dsa_switch_tree *dst)
203 struct dsa_switch *ds;
207 for (device = 0; device < DSA_MAX_SWITCHES; device++) {
208 ds = dst->ds[device];
212 for (port = 0; port < ds->num_ports; port++) {
213 dp = &ds->ports[port];
215 if (dsa_port_is_cpu(dp))
223 static int dsa_tree_setup_default_cpu(struct dsa_switch_tree *dst)
225 struct dsa_switch *ds;
229 /* DSA currently only supports a single CPU port */
230 dst->cpu_dp = dsa_tree_find_first_cpu(dst);
232 pr_warn("Tree has no master device\n");
236 /* Assign the default CPU port to all ports of the fabric */
237 for (device = 0; device < DSA_MAX_SWITCHES; device++) {
238 ds = dst->ds[device];
242 for (port = 0; port < ds->num_ports; port++) {
243 dp = &ds->ports[port];
245 if (dsa_port_is_user(dp) || dsa_port_is_dsa(dp))
246 dp->cpu_dp = dst->cpu_dp;
253 static void dsa_tree_teardown_default_cpu(struct dsa_switch_tree *dst)
255 /* DSA currently only supports a single CPU port */
259 static int dsa_port_setup(struct dsa_port *dp)
261 enum devlink_port_flavour flavour;
262 struct dsa_switch *ds = dp->ds;
263 struct dsa_switch_tree *dst = ds->dst;
266 if (dp->type == DSA_PORT_TYPE_UNUSED)
269 memset(&dp->devlink_port, 0, sizeof(dp->devlink_port));
270 dp->mac = of_get_mac_address(dp->dn);
273 case DSA_PORT_TYPE_CPU:
274 flavour = DEVLINK_PORT_FLAVOUR_CPU;
276 case DSA_PORT_TYPE_DSA:
277 flavour = DEVLINK_PORT_FLAVOUR_DSA;
279 case DSA_PORT_TYPE_USER: /* fall-through */
281 flavour = DEVLINK_PORT_FLAVOUR_PHYSICAL;
285 /* dp->index is used now as port_number. However
286 * CPU and DSA ports should have separate numbering
287 * independent from front panel port numbers.
289 devlink_port_attrs_set(&dp->devlink_port, flavour,
291 (const char *) &dst->index, sizeof(dst->index));
292 err = devlink_port_register(ds->devlink, &dp->devlink_port,
298 case DSA_PORT_TYPE_UNUSED:
300 case DSA_PORT_TYPE_CPU:
301 err = dsa_port_link_register_of(dp);
303 dev_err(ds->dev, "failed to setup link for port %d.%d\n",
304 ds->index, dp->index);
308 case DSA_PORT_TYPE_DSA:
309 err = dsa_port_link_register_of(dp);
311 dev_err(ds->dev, "failed to setup link for port %d.%d\n",
312 ds->index, dp->index);
316 case DSA_PORT_TYPE_USER:
317 err = dsa_slave_create(dp);
319 dev_err(ds->dev, "failed to create slave for port %d.%d\n",
320 ds->index, dp->index);
322 devlink_port_type_eth_set(&dp->devlink_port, dp->slave);
329 static void dsa_port_teardown(struct dsa_port *dp)
331 if (dp->type != DSA_PORT_TYPE_UNUSED)
332 devlink_port_unregister(&dp->devlink_port);
335 case DSA_PORT_TYPE_UNUSED:
337 case DSA_PORT_TYPE_CPU:
338 dsa_tag_driver_put(dp->tag_ops);
340 case DSA_PORT_TYPE_DSA:
341 dsa_port_link_unregister_of(dp);
343 case DSA_PORT_TYPE_USER:
345 dsa_slave_destroy(dp->slave);
352 static int dsa_switch_setup(struct dsa_switch *ds)
356 /* Initialize ds->phys_mii_mask before registering the slave MDIO bus
357 * driver and before ops->setup() has run, since the switch drivers and
358 * the slave MDIO bus driver rely on these values for probing PHY
361 ds->phys_mii_mask |= dsa_user_ports(ds);
363 /* Add the switch to devlink before calling setup, so that setup can
366 ds->devlink = devlink_alloc(&dsa_devlink_ops, 0);
370 err = devlink_register(ds->devlink, ds->dev);
374 err = dsa_switch_register_notifier(ds);
378 err = ds->ops->setup(ds);
382 if (!ds->slave_mii_bus && ds->ops->phy_read) {
383 ds->slave_mii_bus = devm_mdiobus_alloc(ds->dev);
384 if (!ds->slave_mii_bus)
387 dsa_slave_mii_bus_init(ds);
389 err = mdiobus_register(ds->slave_mii_bus);
397 static void dsa_switch_teardown(struct dsa_switch *ds)
399 if (ds->slave_mii_bus && ds->ops->phy_read)
400 mdiobus_unregister(ds->slave_mii_bus);
402 dsa_switch_unregister_notifier(ds);
405 devlink_unregister(ds->devlink);
406 devlink_free(ds->devlink);
412 static int dsa_tree_setup_switches(struct dsa_switch_tree *dst)
414 struct dsa_switch *ds;
419 for (device = 0; device < DSA_MAX_SWITCHES; device++) {
420 ds = dst->ds[device];
424 err = dsa_switch_setup(ds);
428 for (port = 0; port < ds->num_ports; port++) {
429 dp = &ds->ports[port];
431 err = dsa_port_setup(dp);
440 static void dsa_tree_teardown_switches(struct dsa_switch_tree *dst)
442 struct dsa_switch *ds;
446 for (device = 0; device < DSA_MAX_SWITCHES; device++) {
447 ds = dst->ds[device];
451 for (port = 0; port < ds->num_ports; port++) {
452 dp = &ds->ports[port];
454 dsa_port_teardown(dp);
457 dsa_switch_teardown(ds);
461 static int dsa_tree_setup_master(struct dsa_switch_tree *dst)
463 struct dsa_port *cpu_dp = dst->cpu_dp;
464 struct net_device *master = cpu_dp->master;
466 /* DSA currently supports a single pair of CPU port and master device */
467 return dsa_master_setup(master, cpu_dp);
470 static void dsa_tree_teardown_master(struct dsa_switch_tree *dst)
472 struct dsa_port *cpu_dp = dst->cpu_dp;
473 struct net_device *master = cpu_dp->master;
475 return dsa_master_teardown(master);
478 static int dsa_tree_setup(struct dsa_switch_tree *dst)
484 pr_err("DSA: tree %d already setup! Disjoint trees?\n",
489 complete = dsa_tree_setup_routing_table(dst);
493 err = dsa_tree_setup_default_cpu(dst);
497 err = dsa_tree_setup_switches(dst);
501 err = dsa_tree_setup_master(dst);
507 pr_info("DSA: tree %d setup\n", dst->index);
512 static void dsa_tree_teardown(struct dsa_switch_tree *dst)
517 dsa_tree_teardown_master(dst);
519 dsa_tree_teardown_switches(dst);
521 dsa_tree_teardown_default_cpu(dst);
523 pr_info("DSA: tree %d torn down\n", dst->index);
528 static void dsa_tree_remove_switch(struct dsa_switch_tree *dst,
531 dsa_tree_teardown(dst);
533 dst->ds[index] = NULL;
537 static int dsa_tree_add_switch(struct dsa_switch_tree *dst,
538 struct dsa_switch *ds)
540 unsigned int index = ds->index;
549 err = dsa_tree_setup(dst);
551 dsa_tree_remove_switch(dst, index);
556 static int dsa_port_parse_user(struct dsa_port *dp, const char *name)
561 dp->type = DSA_PORT_TYPE_USER;
567 static int dsa_port_parse_dsa(struct dsa_port *dp)
569 dp->type = DSA_PORT_TYPE_DSA;
574 static int dsa_port_parse_cpu(struct dsa_port *dp, struct net_device *master)
576 struct dsa_switch *ds = dp->ds;
577 struct dsa_switch_tree *dst = ds->dst;
578 const struct dsa_device_ops *tag_ops;
579 enum dsa_tag_protocol tag_protocol;
581 tag_protocol = ds->ops->get_tag_protocol(ds, dp->index);
582 tag_ops = dsa_tag_driver_get(tag_protocol);
583 if (IS_ERR(tag_ops)) {
584 dev_warn(ds->dev, "No tagger for this switch\n");
585 return PTR_ERR(tag_ops);
588 dp->type = DSA_PORT_TYPE_CPU;
589 dp->filter = tag_ops->filter;
590 dp->rcv = tag_ops->rcv;
591 dp->tag_ops = tag_ops;
598 static int dsa_port_parse_of(struct dsa_port *dp, struct device_node *dn)
600 struct device_node *ethernet = of_parse_phandle(dn, "ethernet", 0);
601 const char *name = of_get_property(dn, "label", NULL);
602 bool link = of_property_read_bool(dn, "link");
607 struct net_device *master;
609 master = of_find_net_device_by_node(ethernet);
611 return -EPROBE_DEFER;
613 return dsa_port_parse_cpu(dp, master);
617 return dsa_port_parse_dsa(dp);
619 return dsa_port_parse_user(dp, name);
622 static int dsa_switch_parse_ports_of(struct dsa_switch *ds,
623 struct device_node *dn)
625 struct device_node *ports, *port;
630 ports = of_get_child_by_name(dn, "ports");
632 dev_err(ds->dev, "no ports child node found\n");
636 for_each_available_child_of_node(ports, port) {
637 err = of_property_read_u32(port, "reg", ®);
641 if (reg >= ds->num_ports) {
646 dp = &ds->ports[reg];
648 err = dsa_port_parse_of(dp, port);
658 static int dsa_switch_parse_member_of(struct dsa_switch *ds,
659 struct device_node *dn)
664 /* Don't error out if this optional property isn't found */
665 sz = of_property_read_variable_u32_array(dn, "dsa,member", m, 2, 2);
666 if (sz < 0 && sz != -EINVAL)
670 if (ds->index >= DSA_MAX_SWITCHES)
673 ds->dst = dsa_tree_touch(m[0]);
680 static int dsa_switch_parse_of(struct dsa_switch *ds, struct device_node *dn)
684 err = dsa_switch_parse_member_of(ds, dn);
688 return dsa_switch_parse_ports_of(ds, dn);
691 static int dsa_port_parse(struct dsa_port *dp, const char *name,
694 if (!strcmp(name, "cpu")) {
695 struct net_device *master;
697 master = dsa_dev_to_net_device(dev);
699 return -EPROBE_DEFER;
703 return dsa_port_parse_cpu(dp, master);
706 if (!strcmp(name, "dsa"))
707 return dsa_port_parse_dsa(dp);
709 return dsa_port_parse_user(dp, name);
712 static int dsa_switch_parse_ports(struct dsa_switch *ds,
713 struct dsa_chip_data *cd)
715 bool valid_name_found = false;
722 for (i = 0; i < DSA_MAX_PORTS; i++) {
723 name = cd->port_names[i];
730 err = dsa_port_parse(dp, name, dev);
734 valid_name_found = true;
737 if (!valid_name_found && i == DSA_MAX_PORTS)
743 static int dsa_switch_parse(struct dsa_switch *ds, struct dsa_chip_data *cd)
747 /* We don't support interconnected switches nor multiple trees via
748 * platform data, so this is the unique switch of the tree.
751 ds->dst = dsa_tree_touch(0);
755 return dsa_switch_parse_ports(ds, cd);
758 static int dsa_switch_add(struct dsa_switch *ds)
760 struct dsa_switch_tree *dst = ds->dst;
762 return dsa_tree_add_switch(dst, ds);
765 static int dsa_switch_probe(struct dsa_switch *ds)
767 struct dsa_chip_data *pdata = ds->dev->platform_data;
768 struct device_node *np = ds->dev->of_node;
772 err = dsa_switch_parse_of(ds, np);
774 err = dsa_switch_parse(ds, pdata);
781 return dsa_switch_add(ds);
784 struct dsa_switch *dsa_switch_alloc(struct device *dev, size_t n)
786 struct dsa_switch *ds;
789 ds = devm_kzalloc(dev, struct_size(ds, ports, n), GFP_KERNEL);
793 /* We avoid allocating memory outside dsa_switch
794 * if it is not needed.
796 if (n <= sizeof(ds->_bitmap) * 8) {
797 ds->bitmap = &ds->_bitmap;
799 ds->bitmap = devm_kcalloc(dev,
801 sizeof(unsigned long),
803 if (unlikely(!ds->bitmap))
810 for (i = 0; i < ds->num_ports; ++i) {
811 ds->ports[i].index = i;
812 ds->ports[i].ds = ds;
817 EXPORT_SYMBOL_GPL(dsa_switch_alloc);
819 int dsa_register_switch(struct dsa_switch *ds)
823 mutex_lock(&dsa2_mutex);
824 err = dsa_switch_probe(ds);
825 dsa_tree_put(ds->dst);
826 mutex_unlock(&dsa2_mutex);
830 EXPORT_SYMBOL_GPL(dsa_register_switch);
832 static void dsa_switch_remove(struct dsa_switch *ds)
834 struct dsa_switch_tree *dst = ds->dst;
835 unsigned int index = ds->index;
837 dsa_tree_remove_switch(dst, index);
840 void dsa_unregister_switch(struct dsa_switch *ds)
842 mutex_lock(&dsa2_mutex);
843 dsa_switch_remove(ds);
844 mutex_unlock(&dsa2_mutex);
846 EXPORT_SYMBOL_GPL(dsa_unregister_switch);