2 * net/dsa/dsa2.c - Hardware switch handling, binding version 2
3 * Copyright (c) 2008-2009 Marvell Semiconductor
4 * Copyright (c) 2013 Florian Fainelli <florian@openwrt.org>
5 * Copyright (c) 2016 Andrew Lunn <andrew@lunn.ch>
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 /* dp->index is used now as port_number. However
276 * CPU ports should have separate numbering
277 * independent from front panel port numbers.
279 devlink_port_attrs_set(&dp
->devlink_port
,
280 DEVLINK_PORT_FLAVOUR_CPU
,
281 dp
->index
, false, 0);
282 err
= dsa_port_link_register_of(dp
);
284 dev_err(ds
->dev
, "failed to setup link for port %d.%d\n",
285 ds
->index
, dp
->index
);
289 case DSA_PORT_TYPE_DSA
:
290 /* dp->index is used now as port_number. However
291 * DSA ports should have separate numbering
292 * independent from front panel port numbers.
294 devlink_port_attrs_set(&dp
->devlink_port
,
295 DEVLINK_PORT_FLAVOUR_DSA
,
296 dp
->index
, false, 0);
297 err
= dsa_port_link_register_of(dp
);
299 dev_err(ds
->dev
, "failed to setup link for port %d.%d\n",
300 ds
->index
, dp
->index
);
304 case DSA_PORT_TYPE_USER
:
305 devlink_port_attrs_set(&dp
->devlink_port
,
306 DEVLINK_PORT_FLAVOUR_PHYSICAL
,
307 dp
->index
, false, 0);
308 err
= dsa_slave_create(dp
);
310 dev_err(ds
->dev
, "failed to create slave for port %d.%d\n",
311 ds
->index
, dp
->index
);
313 devlink_port_type_eth_set(&dp
->devlink_port
, dp
->slave
);
320 static void dsa_port_teardown(struct dsa_port
*dp
)
322 if (dp
->type
!= DSA_PORT_TYPE_UNUSED
)
323 devlink_port_unregister(&dp
->devlink_port
);
326 case DSA_PORT_TYPE_UNUSED
:
328 case DSA_PORT_TYPE_CPU
:
329 case DSA_PORT_TYPE_DSA
:
330 dsa_port_link_unregister_of(dp
);
332 case DSA_PORT_TYPE_USER
:
334 dsa_slave_destroy(dp
->slave
);
341 static int dsa_switch_setup(struct dsa_switch
*ds
)
345 /* Initialize ds->phys_mii_mask before registering the slave MDIO bus
346 * driver and before ops->setup() has run, since the switch drivers and
347 * the slave MDIO bus driver rely on these values for probing PHY
350 ds
->phys_mii_mask
|= dsa_user_ports(ds
);
352 /* Add the switch to devlink before calling setup, so that setup can
355 ds
->devlink
= devlink_alloc(&dsa_devlink_ops
, 0);
359 err
= devlink_register(ds
->devlink
, ds
->dev
);
363 err
= ds
->ops
->setup(ds
);
367 err
= dsa_switch_register_notifier(ds
);
371 if (!ds
->slave_mii_bus
&& ds
->ops
->phy_read
) {
372 ds
->slave_mii_bus
= devm_mdiobus_alloc(ds
->dev
);
373 if (!ds
->slave_mii_bus
)
376 dsa_slave_mii_bus_init(ds
);
378 err
= mdiobus_register(ds
->slave_mii_bus
);
386 static void dsa_switch_teardown(struct dsa_switch
*ds
)
388 if (ds
->slave_mii_bus
&& ds
->ops
->phy_read
)
389 mdiobus_unregister(ds
->slave_mii_bus
);
391 dsa_switch_unregister_notifier(ds
);
394 devlink_unregister(ds
->devlink
);
395 devlink_free(ds
->devlink
);
401 static int dsa_tree_setup_switches(struct dsa_switch_tree
*dst
)
403 struct dsa_switch
*ds
;
408 for (device
= 0; device
< DSA_MAX_SWITCHES
; device
++) {
409 ds
= dst
->ds
[device
];
413 err
= dsa_switch_setup(ds
);
417 for (port
= 0; port
< ds
->num_ports
; port
++) {
418 dp
= &ds
->ports
[port
];
420 err
= dsa_port_setup(dp
);
429 static void dsa_tree_teardown_switches(struct dsa_switch_tree
*dst
)
431 struct dsa_switch
*ds
;
435 for (device
= 0; device
< DSA_MAX_SWITCHES
; device
++) {
436 ds
= dst
->ds
[device
];
440 for (port
= 0; port
< ds
->num_ports
; port
++) {
441 dp
= &ds
->ports
[port
];
443 dsa_port_teardown(dp
);
446 dsa_switch_teardown(ds
);
450 static int dsa_tree_setup_master(struct dsa_switch_tree
*dst
)
452 struct dsa_port
*cpu_dp
= dst
->cpu_dp
;
453 struct net_device
*master
= cpu_dp
->master
;
455 /* DSA currently supports a single pair of CPU port and master device */
456 return dsa_master_setup(master
, cpu_dp
);
459 static void dsa_tree_teardown_master(struct dsa_switch_tree
*dst
)
461 struct dsa_port
*cpu_dp
= dst
->cpu_dp
;
462 struct net_device
*master
= cpu_dp
->master
;
464 return dsa_master_teardown(master
);
467 static int dsa_tree_setup(struct dsa_switch_tree
*dst
)
473 pr_err("DSA: tree %d already setup! Disjoint trees?\n",
478 complete
= dsa_tree_setup_routing_table(dst
);
482 err
= dsa_tree_setup_default_cpu(dst
);
486 err
= dsa_tree_setup_switches(dst
);
490 err
= dsa_tree_setup_master(dst
);
496 pr_info("DSA: tree %d setup\n", dst
->index
);
501 static void dsa_tree_teardown(struct dsa_switch_tree
*dst
)
506 dsa_tree_teardown_master(dst
);
508 dsa_tree_teardown_switches(dst
);
510 dsa_tree_teardown_default_cpu(dst
);
512 pr_info("DSA: tree %d torn down\n", dst
->index
);
517 static void dsa_tree_remove_switch(struct dsa_switch_tree
*dst
,
520 dsa_tree_teardown(dst
);
522 dst
->ds
[index
] = NULL
;
526 static int dsa_tree_add_switch(struct dsa_switch_tree
*dst
,
527 struct dsa_switch
*ds
)
529 unsigned int index
= ds
->index
;
538 err
= dsa_tree_setup(dst
);
540 dsa_tree_remove_switch(dst
, index
);
545 static int dsa_port_parse_user(struct dsa_port
*dp
, const char *name
)
550 dp
->type
= DSA_PORT_TYPE_USER
;
556 static int dsa_port_parse_dsa(struct dsa_port
*dp
)
558 dp
->type
= DSA_PORT_TYPE_DSA
;
563 static int dsa_port_parse_cpu(struct dsa_port
*dp
, struct net_device
*master
)
565 struct dsa_switch
*ds
= dp
->ds
;
566 struct dsa_switch_tree
*dst
= ds
->dst
;
567 const struct dsa_device_ops
*tag_ops
;
568 enum dsa_tag_protocol tag_protocol
;
570 tag_protocol
= ds
->ops
->get_tag_protocol(ds
, dp
->index
);
571 tag_ops
= dsa_resolve_tag_protocol(tag_protocol
);
572 if (IS_ERR(tag_ops
)) {
573 dev_warn(ds
->dev
, "No tagger for this switch\n");
574 return PTR_ERR(tag_ops
);
577 dp
->type
= DSA_PORT_TYPE_CPU
;
578 dp
->rcv
= tag_ops
->rcv
;
579 dp
->tag_ops
= tag_ops
;
586 static int dsa_port_parse_of(struct dsa_port
*dp
, struct device_node
*dn
)
588 struct device_node
*ethernet
= of_parse_phandle(dn
, "ethernet", 0);
589 const char *name
= of_get_property(dn
, "label", NULL
);
590 bool link
= of_property_read_bool(dn
, "link");
595 struct net_device
*master
;
597 master
= of_find_net_device_by_node(ethernet
);
599 return -EPROBE_DEFER
;
601 return dsa_port_parse_cpu(dp
, master
);
605 return dsa_port_parse_dsa(dp
);
607 return dsa_port_parse_user(dp
, name
);
610 static int dsa_switch_parse_ports_of(struct dsa_switch
*ds
,
611 struct device_node
*dn
)
613 struct device_node
*ports
, *port
;
618 ports
= of_get_child_by_name(dn
, "ports");
620 dev_err(ds
->dev
, "no ports child node found\n");
624 for_each_available_child_of_node(ports
, port
) {
625 err
= of_property_read_u32(port
, "reg", ®
);
629 if (reg
>= ds
->num_ports
)
632 dp
= &ds
->ports
[reg
];
634 err
= dsa_port_parse_of(dp
, port
);
642 static int dsa_switch_parse_member_of(struct dsa_switch
*ds
,
643 struct device_node
*dn
)
648 /* Don't error out if this optional property isn't found */
649 sz
= of_property_read_variable_u32_array(dn
, "dsa,member", m
, 2, 2);
650 if (sz
< 0 && sz
!= -EINVAL
)
654 if (ds
->index
>= DSA_MAX_SWITCHES
)
657 ds
->dst
= dsa_tree_touch(m
[0]);
664 static int dsa_switch_parse_of(struct dsa_switch
*ds
, struct device_node
*dn
)
668 err
= dsa_switch_parse_member_of(ds
, dn
);
672 return dsa_switch_parse_ports_of(ds
, dn
);
675 static int dsa_port_parse(struct dsa_port
*dp
, const char *name
,
678 if (!strcmp(name
, "cpu")) {
679 struct net_device
*master
;
681 master
= dsa_dev_to_net_device(dev
);
683 return -EPROBE_DEFER
;
687 return dsa_port_parse_cpu(dp
, master
);
690 if (!strcmp(name
, "dsa"))
691 return dsa_port_parse_dsa(dp
);
693 return dsa_port_parse_user(dp
, name
);
696 static int dsa_switch_parse_ports(struct dsa_switch
*ds
,
697 struct dsa_chip_data
*cd
)
699 bool valid_name_found
= false;
706 for (i
= 0; i
< DSA_MAX_PORTS
; i
++) {
707 name
= cd
->port_names
[i
];
714 err
= dsa_port_parse(dp
, name
, dev
);
718 valid_name_found
= true;
721 if (!valid_name_found
&& i
== DSA_MAX_PORTS
)
727 static int dsa_switch_parse(struct dsa_switch
*ds
, struct dsa_chip_data
*cd
)
731 /* We don't support interconnected switches nor multiple trees via
732 * platform data, so this is the unique switch of the tree.
735 ds
->dst
= dsa_tree_touch(0);
739 return dsa_switch_parse_ports(ds
, cd
);
742 static int dsa_switch_add(struct dsa_switch
*ds
)
744 struct dsa_switch_tree
*dst
= ds
->dst
;
746 return dsa_tree_add_switch(dst
, ds
);
749 static int dsa_switch_probe(struct dsa_switch
*ds
)
751 struct dsa_chip_data
*pdata
= ds
->dev
->platform_data
;
752 struct device_node
*np
= ds
->dev
->of_node
;
756 err
= dsa_switch_parse_of(ds
, np
);
758 err
= dsa_switch_parse(ds
, pdata
);
765 return dsa_switch_add(ds
);
768 struct dsa_switch
*dsa_switch_alloc(struct device
*dev
, size_t n
)
770 size_t size
= sizeof(struct dsa_switch
) + n
* sizeof(struct dsa_port
);
771 struct dsa_switch
*ds
;
774 ds
= devm_kzalloc(dev
, size
, GFP_KERNEL
);
778 /* We avoid allocating memory outside dsa_switch
779 * if it is not needed.
781 if (n
<= sizeof(ds
->_bitmap
) * 8) {
782 ds
->bitmap
= &ds
->_bitmap
;
784 ds
->bitmap
= devm_kcalloc(dev
,
786 sizeof(unsigned long),
788 if (unlikely(!ds
->bitmap
))
795 for (i
= 0; i
< ds
->num_ports
; ++i
) {
796 ds
->ports
[i
].index
= i
;
797 ds
->ports
[i
].ds
= ds
;
802 EXPORT_SYMBOL_GPL(dsa_switch_alloc
);
804 int dsa_register_switch(struct dsa_switch
*ds
)
808 mutex_lock(&dsa2_mutex
);
809 err
= dsa_switch_probe(ds
);
810 dsa_tree_put(ds
->dst
);
811 mutex_unlock(&dsa2_mutex
);
815 EXPORT_SYMBOL_GPL(dsa_register_switch
);
817 static void dsa_switch_remove(struct dsa_switch
*ds
)
819 struct dsa_switch_tree
*dst
= ds
->dst
;
820 unsigned int index
= ds
->index
;
822 dsa_tree_remove_switch(dst
, index
);
825 void dsa_unregister_switch(struct dsa_switch
*ds
)
827 mutex_lock(&dsa2_mutex
);
828 dsa_switch_remove(ds
);
829 mutex_unlock(&dsa2_mutex
);
831 EXPORT_SYMBOL_GPL(dsa_unregister_switch
);