blob: 1df0a7cf1e9e25dc83a7ac2024e1c2b9136f1988 [file] [log] [blame]
Lennert Buytenhek91da11f2008-10-07 13:44:02 +00001/*
2 * net/dsa/dsa.c - Hardware switch handling
Lennert Buytenheke84665c2009-03-20 09:52:09 +00003 * Copyright (c) 2008-2009 Marvell Semiconductor
Florian Fainelli5e95329b2013-03-22 10:50:50 +00004 * Copyright (c) 2013 Florian Fainelli <florian@openwrt.org>
Lennert Buytenhek91da11f2008-10-07 13:44:02 +00005 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 */
11
12#include <linux/list.h>
Lennert Buytenhek91da11f2008-10-07 13:44:02 +000013#include <linux/platform_device.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090014#include <linux/slab.h>
Paul Gortmaker3a9a2312011-05-27 09:12:25 -040015#include <linux/module.h>
Lennert Buytenhek91da11f2008-10-07 13:44:02 +000016#include <net/dsa.h>
Florian Fainelli5e95329b2013-03-22 10:50:50 +000017#include <linux/of.h>
18#include <linux/of_mdio.h>
19#include <linux/of_platform.h>
Lennert Buytenhek91da11f2008-10-07 13:44:02 +000020#include "dsa_priv.h"
21
22char dsa_driver_version[] = "0.1";
23
24
25/* switch driver registration ***********************************************/
26static DEFINE_MUTEX(dsa_switch_drivers_mutex);
27static LIST_HEAD(dsa_switch_drivers);
28
29void register_switch_driver(struct dsa_switch_driver *drv)
30{
31 mutex_lock(&dsa_switch_drivers_mutex);
32 list_add_tail(&drv->list, &dsa_switch_drivers);
33 mutex_unlock(&dsa_switch_drivers_mutex);
34}
Ben Hutchingsad293b82011-11-25 14:34:07 +000035EXPORT_SYMBOL_GPL(register_switch_driver);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +000036
37void unregister_switch_driver(struct dsa_switch_driver *drv)
38{
39 mutex_lock(&dsa_switch_drivers_mutex);
40 list_del_init(&drv->list);
41 mutex_unlock(&dsa_switch_drivers_mutex);
42}
Ben Hutchingsad293b82011-11-25 14:34:07 +000043EXPORT_SYMBOL_GPL(unregister_switch_driver);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +000044
45static struct dsa_switch_driver *
46dsa_switch_probe(struct mii_bus *bus, int sw_addr, char **_name)
47{
48 struct dsa_switch_driver *ret;
49 struct list_head *list;
50 char *name;
51
52 ret = NULL;
53 name = NULL;
54
55 mutex_lock(&dsa_switch_drivers_mutex);
56 list_for_each(list, &dsa_switch_drivers) {
57 struct dsa_switch_driver *drv;
58
59 drv = list_entry(list, struct dsa_switch_driver, list);
60
61 name = drv->probe(bus, sw_addr);
62 if (name != NULL) {
63 ret = drv;
64 break;
65 }
66 }
67 mutex_unlock(&dsa_switch_drivers_mutex);
68
69 *_name = name;
70
71 return ret;
72}
73
74
75/* basic switch operations **************************************************/
76static struct dsa_switch *
Lennert Buytenheke84665c2009-03-20 09:52:09 +000077dsa_switch_setup(struct dsa_switch_tree *dst, int index,
78 struct device *parent, struct mii_bus *bus)
Lennert Buytenhek91da11f2008-10-07 13:44:02 +000079{
Lennert Buytenheke84665c2009-03-20 09:52:09 +000080 struct dsa_chip_data *pd = dst->pd->chip + index;
81 struct dsa_switch_driver *drv;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +000082 struct dsa_switch *ds;
83 int ret;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +000084 char *name;
85 int i;
Florian Fainellif9bf5a22013-01-21 09:58:51 +000086 bool valid_name_found = false;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +000087
88 /*
89 * Probe for switch model.
90 */
91 drv = dsa_switch_probe(bus, pd->sw_addr, &name);
92 if (drv == NULL) {
Lennert Buytenheke84665c2009-03-20 09:52:09 +000093 printk(KERN_ERR "%s[%d]: could not detect attached switch\n",
94 dst->master_netdev->name, index);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +000095 return ERR_PTR(-EINVAL);
96 }
Lennert Buytenheke84665c2009-03-20 09:52:09 +000097 printk(KERN_INFO "%s[%d]: detected a %s switch\n",
98 dst->master_netdev->name, index, name);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +000099
100
101 /*
102 * Allocate and initialise switch state.
103 */
104 ds = kzalloc(sizeof(*ds) + drv->priv_size, GFP_KERNEL);
105 if (ds == NULL)
106 return ERR_PTR(-ENOMEM);
107
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000108 ds->dst = dst;
109 ds->index = index;
110 ds->pd = dst->pd->chip + index;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000111 ds->drv = drv;
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000112 ds->master_mii_bus = bus;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000113
114
115 /*
116 * Validate supplied switch configuration.
117 */
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000118 for (i = 0; i < DSA_MAX_PORTS; i++) {
119 char *name;
120
121 name = pd->port_names[i];
122 if (name == NULL)
123 continue;
124
125 if (!strcmp(name, "cpu")) {
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000126 if (dst->cpu_switch != -1) {
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000127 printk(KERN_ERR "multiple cpu ports?!\n");
128 ret = -EINVAL;
129 goto out;
130 }
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000131 dst->cpu_switch = index;
132 dst->cpu_port = i;
133 } else if (!strcmp(name, "dsa")) {
134 ds->dsa_port_mask |= 1 << i;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000135 } else {
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000136 ds->phys_port_mask |= 1 << i;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000137 }
Florian Fainellif9bf5a22013-01-21 09:58:51 +0000138 valid_name_found = true;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000139 }
140
Florian Fainellif9bf5a22013-01-21 09:58:51 +0000141 if (!valid_name_found && i == DSA_MAX_PORTS) {
142 ret = -EINVAL;
143 goto out;
144 }
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000145
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -0700146 /* Make the built-in MII bus mask match the number of ports,
147 * switch drivers can override this later
148 */
149 ds->phys_mii_mask = ds->phys_port_mask;
150
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000151 /*
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000152 * If the CPU connects to this switch, set the switch tree
153 * tagging protocol to the preferred tagging format of this
154 * switch.
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000155 */
Alexander Duyck50753142014-09-15 13:00:19 -0400156 if (dst->cpu_switch == index) {
157 switch (drv->tag_protocol) {
158#ifdef CONFIG_NET_DSA_TAG_DSA
159 case DSA_TAG_PROTO_DSA:
160 dst->rcv = dsa_netdev_ops.rcv;
161 break;
162#endif
163#ifdef CONFIG_NET_DSA_TAG_EDSA
164 case DSA_TAG_PROTO_EDSA:
165 dst->rcv = edsa_netdev_ops.rcv;
166 break;
167#endif
168#ifdef CONFIG_NET_DSA_TAG_TRAILER
169 case DSA_TAG_PROTO_TRAILER:
170 dst->rcv = trailer_netdev_ops.rcv;
171 break;
172#endif
173#ifdef CONFIG_NET_DSA_TAG_BRCM
174 case DSA_TAG_PROTO_BRCM:
175 dst->rcv = brcm_netdev_ops.rcv;
176 break;
177#endif
178 default:
179 break;
180 }
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000181
Alexander Duyck50753142014-09-15 13:00:19 -0400182 dst->tag_protocol = drv->tag_protocol;
183 }
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000184
185 /*
186 * Do basic register setup.
187 */
188 ret = drv->setup(ds);
189 if (ret < 0)
190 goto out;
191
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000192 ret = drv->set_addr(ds, dst->master_netdev->dev_addr);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000193 if (ret < 0)
194 goto out;
195
196 ds->slave_mii_bus = mdiobus_alloc();
197 if (ds->slave_mii_bus == NULL) {
198 ret = -ENOMEM;
199 goto out;
200 }
201 dsa_slave_mii_bus_init(ds);
202
203 ret = mdiobus_register(ds->slave_mii_bus);
204 if (ret < 0)
205 goto out_free;
206
207
208 /*
209 * Create network devices for physical switch ports.
210 */
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000211 for (i = 0; i < DSA_MAX_PORTS; i++) {
212 struct net_device *slave_dev;
213
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000214 if (!(ds->phys_port_mask & (1 << i)))
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000215 continue;
216
217 slave_dev = dsa_slave_create(ds, parent, i, pd->port_names[i]);
218 if (slave_dev == NULL) {
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000219 printk(KERN_ERR "%s[%d]: can't create dsa "
220 "slave device for port %d(%s)\n",
221 dst->master_netdev->name,
222 index, i, pd->port_names[i]);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000223 continue;
224 }
225
226 ds->ports[i] = slave_dev;
227 }
228
229 return ds;
230
231out_free:
232 mdiobus_free(ds->slave_mii_bus);
233out:
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000234 kfree(ds);
235 return ERR_PTR(ret);
236}
237
238static void dsa_switch_destroy(struct dsa_switch *ds)
239{
240}
241
242
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000243/* link polling *************************************************************/
244static void dsa_link_poll_work(struct work_struct *ugly)
245{
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000246 struct dsa_switch_tree *dst;
247 int i;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000248
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000249 dst = container_of(ugly, struct dsa_switch_tree, link_poll_work);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000250
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000251 for (i = 0; i < dst->pd->nr_chips; i++) {
252 struct dsa_switch *ds = dst->ds[i];
253
254 if (ds != NULL && ds->drv->poll_link != NULL)
255 ds->drv->poll_link(ds);
256 }
257
258 mod_timer(&dst->link_poll_timer, round_jiffies(jiffies + HZ));
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000259}
260
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000261static void dsa_link_poll_timer(unsigned long _dst)
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000262{
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000263 struct dsa_switch_tree *dst = (void *)_dst;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000264
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000265 schedule_work(&dst->link_poll_work);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000266}
267
268
269/* platform driver init and cleanup *****************************************/
270static int dev_is_class(struct device *dev, void *class)
271{
272 if (dev->class != NULL && !strcmp(dev->class->name, class))
273 return 1;
274
275 return 0;
276}
277
278static struct device *dev_find_class(struct device *parent, char *class)
279{
280 if (dev_is_class(parent, class)) {
281 get_device(parent);
282 return parent;
283 }
284
285 return device_find_child(parent, class, dev_is_class);
286}
287
288static struct mii_bus *dev_to_mii_bus(struct device *dev)
289{
290 struct device *d;
291
292 d = dev_find_class(dev, "mdio_bus");
293 if (d != NULL) {
294 struct mii_bus *bus;
295
296 bus = to_mii_bus(d);
297 put_device(d);
298
299 return bus;
300 }
301
302 return NULL;
303}
304
305static struct net_device *dev_to_net_device(struct device *dev)
306{
307 struct device *d;
308
309 d = dev_find_class(dev, "net");
310 if (d != NULL) {
311 struct net_device *nd;
312
313 nd = to_net_dev(d);
314 dev_hold(nd);
315 put_device(d);
316
317 return nd;
318 }
319
320 return NULL;
321}
322
Florian Fainelli5e95329b2013-03-22 10:50:50 +0000323#ifdef CONFIG_OF
324static int dsa_of_setup_routing_table(struct dsa_platform_data *pd,
325 struct dsa_chip_data *cd,
326 int chip_index,
327 struct device_node *link)
328{
329 int ret;
330 const __be32 *reg;
331 int link_port_addr;
332 int link_sw_addr;
333 struct device_node *parent_sw;
334 int len;
335
336 parent_sw = of_get_parent(link);
337 if (!parent_sw)
338 return -EINVAL;
339
340 reg = of_get_property(parent_sw, "reg", &len);
341 if (!reg || (len != sizeof(*reg) * 2))
342 return -EINVAL;
343
344 link_sw_addr = be32_to_cpup(reg + 1);
345
346 if (link_sw_addr >= pd->nr_chips)
347 return -EINVAL;
348
349 /* First time routing table allocation */
350 if (!cd->rtable) {
351 cd->rtable = kmalloc(pd->nr_chips * sizeof(s8), GFP_KERNEL);
352 if (!cd->rtable)
353 return -ENOMEM;
354
355 /* default to no valid uplink/downlink */
356 memset(cd->rtable, -1, pd->nr_chips * sizeof(s8));
357 }
358
359 reg = of_get_property(link, "reg", NULL);
360 if (!reg) {
361 ret = -EINVAL;
362 goto out;
363 }
364
365 link_port_addr = be32_to_cpup(reg);
366
367 cd->rtable[link_sw_addr] = link_port_addr;
368
369 return 0;
370out:
371 kfree(cd->rtable);
372 return ret;
373}
374
Florian Fainelli21168242013-03-25 05:03:39 +0000375static void dsa_of_free_platform_data(struct dsa_platform_data *pd)
376{
377 int i;
378 int port_index;
379
380 for (i = 0; i < pd->nr_chips; i++) {
381 port_index = 0;
Florian Fainelli5f64a7d2013-03-25 05:03:40 +0000382 while (port_index < DSA_MAX_PORTS) {
Fabian Frederick1f747142014-06-23 19:32:47 +0200383 kfree(pd->chip[i].port_names[port_index]);
Florian Fainelli5f64a7d2013-03-25 05:03:40 +0000384 port_index++;
385 }
Florian Fainelli21168242013-03-25 05:03:39 +0000386 kfree(pd->chip[i].rtable);
387 }
388 kfree(pd->chip);
389}
390
Florian Fainelli5e95329b2013-03-22 10:50:50 +0000391static int dsa_of_probe(struct platform_device *pdev)
392{
393 struct device_node *np = pdev->dev.of_node;
394 struct device_node *child, *mdio, *ethernet, *port, *link;
395 struct mii_bus *mdio_bus;
396 struct platform_device *ethernet_dev;
397 struct dsa_platform_data *pd;
398 struct dsa_chip_data *cd;
399 const char *port_name;
400 int chip_index, port_index;
401 const unsigned int *sw_addr, *port_reg;
Florian Fainelli21168242013-03-25 05:03:39 +0000402 int ret;
Florian Fainelli5e95329b2013-03-22 10:50:50 +0000403
404 mdio = of_parse_phandle(np, "dsa,mii-bus", 0);
405 if (!mdio)
406 return -EINVAL;
407
408 mdio_bus = of_mdio_find_bus(mdio);
409 if (!mdio_bus)
410 return -EINVAL;
411
412 ethernet = of_parse_phandle(np, "dsa,ethernet", 0);
413 if (!ethernet)
414 return -EINVAL;
415
416 ethernet_dev = of_find_device_by_node(ethernet);
417 if (!ethernet_dev)
418 return -ENODEV;
419
420 pd = kzalloc(sizeof(*pd), GFP_KERNEL);
421 if (!pd)
422 return -ENOMEM;
423
424 pdev->dev.platform_data = pd;
425 pd->netdev = &ethernet_dev->dev;
426 pd->nr_chips = of_get_child_count(np);
427 if (pd->nr_chips > DSA_MAX_SWITCHES)
428 pd->nr_chips = DSA_MAX_SWITCHES;
429
430 pd->chip = kzalloc(pd->nr_chips * sizeof(struct dsa_chip_data),
431 GFP_KERNEL);
432 if (!pd->chip) {
433 ret = -ENOMEM;
434 goto out_free;
435 }
436
Fabian Godehardtd1c0b472014-05-16 06:21:44 +0200437 chip_index = -1;
Florian Fainelli5e95329b2013-03-22 10:50:50 +0000438 for_each_available_child_of_node(np, child) {
Fabian Godehardtd1c0b472014-05-16 06:21:44 +0200439 chip_index++;
Florian Fainelli5e95329b2013-03-22 10:50:50 +0000440 cd = &pd->chip[chip_index];
441
Florian Fainellifa981d92014-08-27 17:04:49 -0700442 cd->of_node = child;
Florian Fainelli5e95329b2013-03-22 10:50:50 +0000443 cd->mii_bus = &mdio_bus->dev;
444
445 sw_addr = of_get_property(child, "reg", NULL);
446 if (!sw_addr)
447 continue;
448
449 cd->sw_addr = be32_to_cpup(sw_addr);
450 if (cd->sw_addr > PHY_MAX_ADDR)
451 continue;
452
453 for_each_available_child_of_node(child, port) {
454 port_reg = of_get_property(port, "reg", NULL);
455 if (!port_reg)
456 continue;
457
458 port_index = be32_to_cpup(port_reg);
459
460 port_name = of_get_property(port, "label", NULL);
461 if (!port_name)
462 continue;
463
Florian Fainellibd474972014-08-27 17:04:50 -0700464 cd->port_dn[port_index] = port;
465
Florian Fainelli5e95329b2013-03-22 10:50:50 +0000466 cd->port_names[port_index] = kstrdup(port_name,
467 GFP_KERNEL);
468 if (!cd->port_names[port_index]) {
469 ret = -ENOMEM;
470 goto out_free_chip;
471 }
472
473 link = of_parse_phandle(port, "link", 0);
474
475 if (!strcmp(port_name, "dsa") && link &&
476 pd->nr_chips > 1) {
477 ret = dsa_of_setup_routing_table(pd, cd,
478 chip_index, link);
479 if (ret)
480 goto out_free_chip;
481 }
482
483 if (port_index == DSA_MAX_PORTS)
484 break;
485 }
486 }
487
488 return 0;
489
490out_free_chip:
Florian Fainelli21168242013-03-25 05:03:39 +0000491 dsa_of_free_platform_data(pd);
Florian Fainelli5e95329b2013-03-22 10:50:50 +0000492out_free:
493 kfree(pd);
494 pdev->dev.platform_data = NULL;
495 return ret;
496}
497
498static void dsa_of_remove(struct platform_device *pdev)
499{
500 struct dsa_platform_data *pd = pdev->dev.platform_data;
Florian Fainelli5e95329b2013-03-22 10:50:50 +0000501
502 if (!pdev->dev.of_node)
503 return;
504
Florian Fainelli21168242013-03-25 05:03:39 +0000505 dsa_of_free_platform_data(pd);
Florian Fainelli5e95329b2013-03-22 10:50:50 +0000506 kfree(pd);
507}
508#else
509static inline int dsa_of_probe(struct platform_device *pdev)
510{
511 return 0;
512}
513
514static inline void dsa_of_remove(struct platform_device *pdev)
515{
516}
517#endif
518
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000519static int dsa_probe(struct platform_device *pdev)
520{
521 static int dsa_version_printed;
522 struct dsa_platform_data *pd = pdev->dev.platform_data;
523 struct net_device *dev;
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000524 struct dsa_switch_tree *dst;
Florian Fainelli5e95329b2013-03-22 10:50:50 +0000525 int i, ret;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000526
527 if (!dsa_version_printed++)
528 printk(KERN_NOTICE "Distributed Switch Architecture "
529 "driver version %s\n", dsa_driver_version);
530
Florian Fainelli5e95329b2013-03-22 10:50:50 +0000531 if (pdev->dev.of_node) {
532 ret = dsa_of_probe(pdev);
533 if (ret)
534 return ret;
535
536 pd = pdev->dev.platform_data;
537 }
538
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000539 if (pd == NULL || pd->netdev == NULL)
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000540 return -EINVAL;
541
542 dev = dev_to_net_device(pd->netdev);
Florian Fainelli5e95329b2013-03-22 10:50:50 +0000543 if (dev == NULL) {
544 ret = -EINVAL;
545 goto out;
546 }
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000547
548 if (dev->dsa_ptr != NULL) {
549 dev_put(dev);
Florian Fainelli5e95329b2013-03-22 10:50:50 +0000550 ret = -EEXIST;
551 goto out;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000552 }
553
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000554 dst = kzalloc(sizeof(*dst), GFP_KERNEL);
555 if (dst == NULL) {
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000556 dev_put(dev);
Florian Fainelli5e95329b2013-03-22 10:50:50 +0000557 ret = -ENOMEM;
558 goto out;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000559 }
560
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000561 platform_set_drvdata(pdev, dst);
562
563 dst->pd = pd;
564 dst->master_netdev = dev;
565 dst->cpu_switch = -1;
566 dst->cpu_port = -1;
567
568 for (i = 0; i < pd->nr_chips; i++) {
569 struct mii_bus *bus;
570 struct dsa_switch *ds;
571
572 bus = dev_to_mii_bus(pd->chip[i].mii_bus);
573 if (bus == NULL) {
574 printk(KERN_ERR "%s[%d]: no mii bus found for "
575 "dsa switch\n", dev->name, i);
576 continue;
577 }
578
579 ds = dsa_switch_setup(dst, i, &pdev->dev, bus);
580 if (IS_ERR(ds)) {
581 printk(KERN_ERR "%s[%d]: couldn't create dsa switch "
582 "instance (error %ld)\n", dev->name, i,
583 PTR_ERR(ds));
584 continue;
585 }
586
587 dst->ds[i] = ds;
588 if (ds->drv->poll_link != NULL)
589 dst->link_poll_needed = 1;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000590 }
591
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000592 /*
593 * If we use a tagging format that doesn't have an ethertype
594 * field, make sure that all packets from this point on get
595 * sent to the tag format's receive function.
596 */
597 wmb();
598 dev->dsa_ptr = (void *)dst;
599
600 if (dst->link_poll_needed) {
601 INIT_WORK(&dst->link_poll_work, dsa_link_poll_work);
602 init_timer(&dst->link_poll_timer);
603 dst->link_poll_timer.data = (unsigned long)dst;
604 dst->link_poll_timer.function = dsa_link_poll_timer;
605 dst->link_poll_timer.expires = round_jiffies(jiffies + HZ);
606 add_timer(&dst->link_poll_timer);
607 }
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000608
609 return 0;
Florian Fainelli5e95329b2013-03-22 10:50:50 +0000610
611out:
612 dsa_of_remove(pdev);
613
614 return ret;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000615}
616
617static int dsa_remove(struct platform_device *pdev)
618{
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000619 struct dsa_switch_tree *dst = platform_get_drvdata(pdev);
620 int i;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000621
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000622 if (dst->link_poll_needed)
623 del_timer_sync(&dst->link_poll_timer);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000624
Tejun Heo43829732012-08-20 14:51:24 -0700625 flush_work(&dst->link_poll_work);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000626
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000627 for (i = 0; i < dst->pd->nr_chips; i++) {
628 struct dsa_switch *ds = dst->ds[i];
629
630 if (ds != NULL)
631 dsa_switch_destroy(ds);
632 }
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000633
Florian Fainelli5e95329b2013-03-22 10:50:50 +0000634 dsa_of_remove(pdev);
635
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000636 return 0;
637}
638
639static void dsa_shutdown(struct platform_device *pdev)
640{
641}
642
Florian Fainelli3e8a72d2014-08-27 17:04:46 -0700643static int dsa_switch_rcv(struct sk_buff *skb, struct net_device *dev,
644 struct packet_type *pt, struct net_device *orig_dev)
645{
646 struct dsa_switch_tree *dst = dev->dsa_ptr;
647
648 if (unlikely(dst == NULL)) {
649 kfree_skb(skb);
650 return 0;
651 }
652
Alexander Duyck50753142014-09-15 13:00:19 -0400653 return dst->rcv(skb, dev, pt, orig_dev);
Florian Fainelli3e8a72d2014-08-27 17:04:46 -0700654}
655
Florian Fainelli61b73632014-08-29 12:42:07 -0700656static struct packet_type dsa_pack_type __read_mostly = {
Florian Fainelli3e8a72d2014-08-27 17:04:46 -0700657 .type = cpu_to_be16(ETH_P_XDSA),
658 .func = dsa_switch_rcv,
659};
660
Florian Fainelli5e95329b2013-03-22 10:50:50 +0000661static const struct of_device_id dsa_of_match_table[] = {
Florian Fainelli246d7f72014-08-27 17:04:56 -0700662 { .compatible = "brcm,bcm7445-switch-v4.0" },
Florian Fainelli5e95329b2013-03-22 10:50:50 +0000663 { .compatible = "marvell,dsa", },
664 {}
665};
666MODULE_DEVICE_TABLE(of, dsa_of_match_table);
667
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000668static struct platform_driver dsa_driver = {
669 .probe = dsa_probe,
670 .remove = dsa_remove,
671 .shutdown = dsa_shutdown,
672 .driver = {
673 .name = "dsa",
674 .owner = THIS_MODULE,
Florian Fainelli5e95329b2013-03-22 10:50:50 +0000675 .of_match_table = dsa_of_match_table,
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000676 },
677};
678
679static int __init dsa_init_module(void)
680{
Ben Hutchings7df899c2011-11-25 14:35:02 +0000681 int rc;
682
683 rc = platform_driver_register(&dsa_driver);
684 if (rc)
685 return rc;
686
Florian Fainelli3e8a72d2014-08-27 17:04:46 -0700687 dev_add_pack(&dsa_pack_type);
688
Ben Hutchings7df899c2011-11-25 14:35:02 +0000689 return 0;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000690}
691module_init(dsa_init_module);
692
693static void __exit dsa_cleanup_module(void)
694{
Florian Fainelli3e8a72d2014-08-27 17:04:46 -0700695 dev_remove_pack(&dsa_pack_type);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000696 platform_driver_unregister(&dsa_driver);
697}
698module_exit(dsa_cleanup_module);
699
Rusty Russell577d6a72011-01-24 14:32:52 -0600700MODULE_AUTHOR("Lennert Buytenhek <buytenh@wantstofly.org>");
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000701MODULE_DESCRIPTION("Driver for Distributed Switch Architecture switch chips");
702MODULE_LICENSE("GPL");
703MODULE_ALIAS("platform:dsa");