blob: 484f695351a7fe95b9615fc4fcb6e988cc073768 [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>
13#include <linux/netdevice.h>
14#include <linux/platform_device.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090015#include <linux/slab.h>
Paul Gortmaker3a9a2312011-05-27 09:12:25 -040016#include <linux/module.h>
Lennert Buytenhek91da11f2008-10-07 13:44:02 +000017#include <net/dsa.h>
Florian Fainelli5e95329b2013-03-22 10:50:50 +000018#include <linux/of.h>
19#include <linux/of_mdio.h>
20#include <linux/of_platform.h>
Lennert Buytenhek91da11f2008-10-07 13:44:02 +000021#include "dsa_priv.h"
22
23char dsa_driver_version[] = "0.1";
24
25
26/* switch driver registration ***********************************************/
27static DEFINE_MUTEX(dsa_switch_drivers_mutex);
28static LIST_HEAD(dsa_switch_drivers);
29
30void register_switch_driver(struct dsa_switch_driver *drv)
31{
32 mutex_lock(&dsa_switch_drivers_mutex);
33 list_add_tail(&drv->list, &dsa_switch_drivers);
34 mutex_unlock(&dsa_switch_drivers_mutex);
35}
Ben Hutchingsad293b82011-11-25 14:34:07 +000036EXPORT_SYMBOL_GPL(register_switch_driver);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +000037
38void unregister_switch_driver(struct dsa_switch_driver *drv)
39{
40 mutex_lock(&dsa_switch_drivers_mutex);
41 list_del_init(&drv->list);
42 mutex_unlock(&dsa_switch_drivers_mutex);
43}
Ben Hutchingsad293b82011-11-25 14:34:07 +000044EXPORT_SYMBOL_GPL(unregister_switch_driver);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +000045
46static struct dsa_switch_driver *
47dsa_switch_probe(struct mii_bus *bus, int sw_addr, char **_name)
48{
49 struct dsa_switch_driver *ret;
50 struct list_head *list;
51 char *name;
52
53 ret = NULL;
54 name = NULL;
55
56 mutex_lock(&dsa_switch_drivers_mutex);
57 list_for_each(list, &dsa_switch_drivers) {
58 struct dsa_switch_driver *drv;
59
60 drv = list_entry(list, struct dsa_switch_driver, list);
61
62 name = drv->probe(bus, sw_addr);
63 if (name != NULL) {
64 ret = drv;
65 break;
66 }
67 }
68 mutex_unlock(&dsa_switch_drivers_mutex);
69
70 *_name = name;
71
72 return ret;
73}
74
75
76/* basic switch operations **************************************************/
77static struct dsa_switch *
Lennert Buytenheke84665c2009-03-20 09:52:09 +000078dsa_switch_setup(struct dsa_switch_tree *dst, int index,
79 struct device *parent, struct mii_bus *bus)
Lennert Buytenhek91da11f2008-10-07 13:44:02 +000080{
Lennert Buytenheke84665c2009-03-20 09:52:09 +000081 struct dsa_chip_data *pd = dst->pd->chip + index;
82 struct dsa_switch_driver *drv;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +000083 struct dsa_switch *ds;
84 int ret;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +000085 char *name;
86 int i;
Florian Fainellif9bf5a22013-01-21 09:58:51 +000087 bool valid_name_found = false;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +000088
89 /*
90 * Probe for switch model.
91 */
92 drv = dsa_switch_probe(bus, pd->sw_addr, &name);
93 if (drv == NULL) {
Lennert Buytenheke84665c2009-03-20 09:52:09 +000094 printk(KERN_ERR "%s[%d]: could not detect attached switch\n",
95 dst->master_netdev->name, index);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +000096 return ERR_PTR(-EINVAL);
97 }
Lennert Buytenheke84665c2009-03-20 09:52:09 +000098 printk(KERN_INFO "%s[%d]: detected a %s switch\n",
99 dst->master_netdev->name, index, name);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000100
101
102 /*
103 * Allocate and initialise switch state.
104 */
105 ds = kzalloc(sizeof(*ds) + drv->priv_size, GFP_KERNEL);
106 if (ds == NULL)
107 return ERR_PTR(-ENOMEM);
108
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000109 ds->dst = dst;
110 ds->index = index;
111 ds->pd = dst->pd->chip + index;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000112 ds->drv = drv;
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000113 ds->master_mii_bus = bus;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000114
115
116 /*
117 * Validate supplied switch configuration.
118 */
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000119 for (i = 0; i < DSA_MAX_PORTS; i++) {
120 char *name;
121
122 name = pd->port_names[i];
123 if (name == NULL)
124 continue;
125
126 if (!strcmp(name, "cpu")) {
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000127 if (dst->cpu_switch != -1) {
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000128 printk(KERN_ERR "multiple cpu ports?!\n");
129 ret = -EINVAL;
130 goto out;
131 }
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000132 dst->cpu_switch = index;
133 dst->cpu_port = i;
134 } else if (!strcmp(name, "dsa")) {
135 ds->dsa_port_mask |= 1 << i;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000136 } else {
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000137 ds->phys_port_mask |= 1 << i;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000138 }
Florian Fainellif9bf5a22013-01-21 09:58:51 +0000139 valid_name_found = true;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000140 }
141
Florian Fainellif9bf5a22013-01-21 09:58:51 +0000142 if (!valid_name_found && i == DSA_MAX_PORTS) {
143 ret = -EINVAL;
144 goto out;
145 }
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000146
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -0700147 /* Make the built-in MII bus mask match the number of ports,
148 * switch drivers can override this later
149 */
150 ds->phys_mii_mask = ds->phys_port_mask;
151
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000152 /*
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000153 * If the CPU connects to this switch, set the switch tree
154 * tagging protocol to the preferred tagging format of this
155 * switch.
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000156 */
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000157 if (ds->dst->cpu_switch == index)
158 ds->dst->tag_protocol = drv->tag_protocol;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000159
160
161 /*
162 * Do basic register setup.
163 */
164 ret = drv->setup(ds);
165 if (ret < 0)
166 goto out;
167
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000168 ret = drv->set_addr(ds, dst->master_netdev->dev_addr);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000169 if (ret < 0)
170 goto out;
171
172 ds->slave_mii_bus = mdiobus_alloc();
173 if (ds->slave_mii_bus == NULL) {
174 ret = -ENOMEM;
175 goto out;
176 }
177 dsa_slave_mii_bus_init(ds);
178
179 ret = mdiobus_register(ds->slave_mii_bus);
180 if (ret < 0)
181 goto out_free;
182
183
184 /*
185 * Create network devices for physical switch ports.
186 */
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000187 for (i = 0; i < DSA_MAX_PORTS; i++) {
188 struct net_device *slave_dev;
189
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000190 if (!(ds->phys_port_mask & (1 << i)))
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000191 continue;
192
193 slave_dev = dsa_slave_create(ds, parent, i, pd->port_names[i]);
194 if (slave_dev == NULL) {
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000195 printk(KERN_ERR "%s[%d]: can't create dsa "
196 "slave device for port %d(%s)\n",
197 dst->master_netdev->name,
198 index, i, pd->port_names[i]);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000199 continue;
200 }
201
202 ds->ports[i] = slave_dev;
203 }
204
205 return ds;
206
207out_free:
208 mdiobus_free(ds->slave_mii_bus);
209out:
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000210 kfree(ds);
211 return ERR_PTR(ret);
212}
213
214static void dsa_switch_destroy(struct dsa_switch *ds)
215{
216}
217
218
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000219/* link polling *************************************************************/
220static void dsa_link_poll_work(struct work_struct *ugly)
221{
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000222 struct dsa_switch_tree *dst;
223 int i;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000224
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000225 dst = container_of(ugly, struct dsa_switch_tree, link_poll_work);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000226
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000227 for (i = 0; i < dst->pd->nr_chips; i++) {
228 struct dsa_switch *ds = dst->ds[i];
229
230 if (ds != NULL && ds->drv->poll_link != NULL)
231 ds->drv->poll_link(ds);
232 }
233
234 mod_timer(&dst->link_poll_timer, round_jiffies(jiffies + HZ));
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000235}
236
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000237static void dsa_link_poll_timer(unsigned long _dst)
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000238{
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000239 struct dsa_switch_tree *dst = (void *)_dst;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000240
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000241 schedule_work(&dst->link_poll_work);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000242}
243
244
245/* platform driver init and cleanup *****************************************/
246static int dev_is_class(struct device *dev, void *class)
247{
248 if (dev->class != NULL && !strcmp(dev->class->name, class))
249 return 1;
250
251 return 0;
252}
253
254static struct device *dev_find_class(struct device *parent, char *class)
255{
256 if (dev_is_class(parent, class)) {
257 get_device(parent);
258 return parent;
259 }
260
261 return device_find_child(parent, class, dev_is_class);
262}
263
264static struct mii_bus *dev_to_mii_bus(struct device *dev)
265{
266 struct device *d;
267
268 d = dev_find_class(dev, "mdio_bus");
269 if (d != NULL) {
270 struct mii_bus *bus;
271
272 bus = to_mii_bus(d);
273 put_device(d);
274
275 return bus;
276 }
277
278 return NULL;
279}
280
281static struct net_device *dev_to_net_device(struct device *dev)
282{
283 struct device *d;
284
285 d = dev_find_class(dev, "net");
286 if (d != NULL) {
287 struct net_device *nd;
288
289 nd = to_net_dev(d);
290 dev_hold(nd);
291 put_device(d);
292
293 return nd;
294 }
295
296 return NULL;
297}
298
Florian Fainelli5e95329b2013-03-22 10:50:50 +0000299#ifdef CONFIG_OF
300static int dsa_of_setup_routing_table(struct dsa_platform_data *pd,
301 struct dsa_chip_data *cd,
302 int chip_index,
303 struct device_node *link)
304{
305 int ret;
306 const __be32 *reg;
307 int link_port_addr;
308 int link_sw_addr;
309 struct device_node *parent_sw;
310 int len;
311
312 parent_sw = of_get_parent(link);
313 if (!parent_sw)
314 return -EINVAL;
315
316 reg = of_get_property(parent_sw, "reg", &len);
317 if (!reg || (len != sizeof(*reg) * 2))
318 return -EINVAL;
319
320 link_sw_addr = be32_to_cpup(reg + 1);
321
322 if (link_sw_addr >= pd->nr_chips)
323 return -EINVAL;
324
325 /* First time routing table allocation */
326 if (!cd->rtable) {
327 cd->rtable = kmalloc(pd->nr_chips * sizeof(s8), GFP_KERNEL);
328 if (!cd->rtable)
329 return -ENOMEM;
330
331 /* default to no valid uplink/downlink */
332 memset(cd->rtable, -1, pd->nr_chips * sizeof(s8));
333 }
334
335 reg = of_get_property(link, "reg", NULL);
336 if (!reg) {
337 ret = -EINVAL;
338 goto out;
339 }
340
341 link_port_addr = be32_to_cpup(reg);
342
343 cd->rtable[link_sw_addr] = link_port_addr;
344
345 return 0;
346out:
347 kfree(cd->rtable);
348 return ret;
349}
350
Florian Fainelli21168242013-03-25 05:03:39 +0000351static void dsa_of_free_platform_data(struct dsa_platform_data *pd)
352{
353 int i;
354 int port_index;
355
356 for (i = 0; i < pd->nr_chips; i++) {
357 port_index = 0;
Florian Fainelli5f64a7d2013-03-25 05:03:40 +0000358 while (port_index < DSA_MAX_PORTS) {
Fabian Frederick1f747142014-06-23 19:32:47 +0200359 kfree(pd->chip[i].port_names[port_index]);
Florian Fainelli5f64a7d2013-03-25 05:03:40 +0000360 port_index++;
361 }
Florian Fainelli21168242013-03-25 05:03:39 +0000362 kfree(pd->chip[i].rtable);
363 }
364 kfree(pd->chip);
365}
366
Florian Fainelli5e95329b2013-03-22 10:50:50 +0000367static int dsa_of_probe(struct platform_device *pdev)
368{
369 struct device_node *np = pdev->dev.of_node;
370 struct device_node *child, *mdio, *ethernet, *port, *link;
371 struct mii_bus *mdio_bus;
372 struct platform_device *ethernet_dev;
373 struct dsa_platform_data *pd;
374 struct dsa_chip_data *cd;
375 const char *port_name;
376 int chip_index, port_index;
377 const unsigned int *sw_addr, *port_reg;
Florian Fainelli21168242013-03-25 05:03:39 +0000378 int ret;
Florian Fainelli5e95329b2013-03-22 10:50:50 +0000379
380 mdio = of_parse_phandle(np, "dsa,mii-bus", 0);
381 if (!mdio)
382 return -EINVAL;
383
384 mdio_bus = of_mdio_find_bus(mdio);
385 if (!mdio_bus)
386 return -EINVAL;
387
388 ethernet = of_parse_phandle(np, "dsa,ethernet", 0);
389 if (!ethernet)
390 return -EINVAL;
391
392 ethernet_dev = of_find_device_by_node(ethernet);
393 if (!ethernet_dev)
394 return -ENODEV;
395
396 pd = kzalloc(sizeof(*pd), GFP_KERNEL);
397 if (!pd)
398 return -ENOMEM;
399
400 pdev->dev.platform_data = pd;
401 pd->netdev = &ethernet_dev->dev;
402 pd->nr_chips = of_get_child_count(np);
403 if (pd->nr_chips > DSA_MAX_SWITCHES)
404 pd->nr_chips = DSA_MAX_SWITCHES;
405
406 pd->chip = kzalloc(pd->nr_chips * sizeof(struct dsa_chip_data),
407 GFP_KERNEL);
408 if (!pd->chip) {
409 ret = -ENOMEM;
410 goto out_free;
411 }
412
Fabian Godehardtd1c0b472014-05-16 06:21:44 +0200413 chip_index = -1;
Florian Fainelli5e95329b2013-03-22 10:50:50 +0000414 for_each_available_child_of_node(np, child) {
Fabian Godehardtd1c0b472014-05-16 06:21:44 +0200415 chip_index++;
Florian Fainelli5e95329b2013-03-22 10:50:50 +0000416 cd = &pd->chip[chip_index];
417
Florian Fainellifa981d92014-08-27 17:04:49 -0700418 cd->of_node = child;
Florian Fainelli5e95329b2013-03-22 10:50:50 +0000419 cd->mii_bus = &mdio_bus->dev;
420
421 sw_addr = of_get_property(child, "reg", NULL);
422 if (!sw_addr)
423 continue;
424
425 cd->sw_addr = be32_to_cpup(sw_addr);
426 if (cd->sw_addr > PHY_MAX_ADDR)
427 continue;
428
429 for_each_available_child_of_node(child, port) {
430 port_reg = of_get_property(port, "reg", NULL);
431 if (!port_reg)
432 continue;
433
434 port_index = be32_to_cpup(port_reg);
435
436 port_name = of_get_property(port, "label", NULL);
437 if (!port_name)
438 continue;
439
Florian Fainellibd474972014-08-27 17:04:50 -0700440 cd->port_dn[port_index] = port;
441
Florian Fainelli5e95329b2013-03-22 10:50:50 +0000442 cd->port_names[port_index] = kstrdup(port_name,
443 GFP_KERNEL);
444 if (!cd->port_names[port_index]) {
445 ret = -ENOMEM;
446 goto out_free_chip;
447 }
448
449 link = of_parse_phandle(port, "link", 0);
450
451 if (!strcmp(port_name, "dsa") && link &&
452 pd->nr_chips > 1) {
453 ret = dsa_of_setup_routing_table(pd, cd,
454 chip_index, link);
455 if (ret)
456 goto out_free_chip;
457 }
458
459 if (port_index == DSA_MAX_PORTS)
460 break;
461 }
462 }
463
464 return 0;
465
466out_free_chip:
Florian Fainelli21168242013-03-25 05:03:39 +0000467 dsa_of_free_platform_data(pd);
Florian Fainelli5e95329b2013-03-22 10:50:50 +0000468out_free:
469 kfree(pd);
470 pdev->dev.platform_data = NULL;
471 return ret;
472}
473
474static void dsa_of_remove(struct platform_device *pdev)
475{
476 struct dsa_platform_data *pd = pdev->dev.platform_data;
Florian Fainelli5e95329b2013-03-22 10:50:50 +0000477
478 if (!pdev->dev.of_node)
479 return;
480
Florian Fainelli21168242013-03-25 05:03:39 +0000481 dsa_of_free_platform_data(pd);
Florian Fainelli5e95329b2013-03-22 10:50:50 +0000482 kfree(pd);
483}
484#else
485static inline int dsa_of_probe(struct platform_device *pdev)
486{
487 return 0;
488}
489
490static inline void dsa_of_remove(struct platform_device *pdev)
491{
492}
493#endif
494
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000495static int dsa_probe(struct platform_device *pdev)
496{
497 static int dsa_version_printed;
498 struct dsa_platform_data *pd = pdev->dev.platform_data;
499 struct net_device *dev;
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000500 struct dsa_switch_tree *dst;
Florian Fainelli5e95329b2013-03-22 10:50:50 +0000501 int i, ret;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000502
503 if (!dsa_version_printed++)
504 printk(KERN_NOTICE "Distributed Switch Architecture "
505 "driver version %s\n", dsa_driver_version);
506
Florian Fainelli5e95329b2013-03-22 10:50:50 +0000507 if (pdev->dev.of_node) {
508 ret = dsa_of_probe(pdev);
509 if (ret)
510 return ret;
511
512 pd = pdev->dev.platform_data;
513 }
514
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000515 if (pd == NULL || pd->netdev == NULL)
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000516 return -EINVAL;
517
518 dev = dev_to_net_device(pd->netdev);
Florian Fainelli5e95329b2013-03-22 10:50:50 +0000519 if (dev == NULL) {
520 ret = -EINVAL;
521 goto out;
522 }
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000523
524 if (dev->dsa_ptr != NULL) {
525 dev_put(dev);
Florian Fainelli5e95329b2013-03-22 10:50:50 +0000526 ret = -EEXIST;
527 goto out;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000528 }
529
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000530 dst = kzalloc(sizeof(*dst), GFP_KERNEL);
531 if (dst == NULL) {
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000532 dev_put(dev);
Florian Fainelli5e95329b2013-03-22 10:50:50 +0000533 ret = -ENOMEM;
534 goto out;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000535 }
536
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000537 platform_set_drvdata(pdev, dst);
538
539 dst->pd = pd;
540 dst->master_netdev = dev;
541 dst->cpu_switch = -1;
542 dst->cpu_port = -1;
543
544 for (i = 0; i < pd->nr_chips; i++) {
545 struct mii_bus *bus;
546 struct dsa_switch *ds;
547
548 bus = dev_to_mii_bus(pd->chip[i].mii_bus);
549 if (bus == NULL) {
550 printk(KERN_ERR "%s[%d]: no mii bus found for "
551 "dsa switch\n", dev->name, i);
552 continue;
553 }
554
555 ds = dsa_switch_setup(dst, i, &pdev->dev, bus);
556 if (IS_ERR(ds)) {
557 printk(KERN_ERR "%s[%d]: couldn't create dsa switch "
558 "instance (error %ld)\n", dev->name, i,
559 PTR_ERR(ds));
560 continue;
561 }
562
563 dst->ds[i] = ds;
564 if (ds->drv->poll_link != NULL)
565 dst->link_poll_needed = 1;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000566 }
567
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000568 /*
569 * If we use a tagging format that doesn't have an ethertype
570 * field, make sure that all packets from this point on get
571 * sent to the tag format's receive function.
572 */
573 wmb();
574 dev->dsa_ptr = (void *)dst;
575
576 if (dst->link_poll_needed) {
577 INIT_WORK(&dst->link_poll_work, dsa_link_poll_work);
578 init_timer(&dst->link_poll_timer);
579 dst->link_poll_timer.data = (unsigned long)dst;
580 dst->link_poll_timer.function = dsa_link_poll_timer;
581 dst->link_poll_timer.expires = round_jiffies(jiffies + HZ);
582 add_timer(&dst->link_poll_timer);
583 }
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000584
585 return 0;
Florian Fainelli5e95329b2013-03-22 10:50:50 +0000586
587out:
588 dsa_of_remove(pdev);
589
590 return ret;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000591}
592
593static int dsa_remove(struct platform_device *pdev)
594{
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000595 struct dsa_switch_tree *dst = platform_get_drvdata(pdev);
596 int i;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000597
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000598 if (dst->link_poll_needed)
599 del_timer_sync(&dst->link_poll_timer);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000600
Tejun Heo43829732012-08-20 14:51:24 -0700601 flush_work(&dst->link_poll_work);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000602
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000603 for (i = 0; i < dst->pd->nr_chips; i++) {
604 struct dsa_switch *ds = dst->ds[i];
605
606 if (ds != NULL)
607 dsa_switch_destroy(ds);
608 }
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000609
Florian Fainelli5e95329b2013-03-22 10:50:50 +0000610 dsa_of_remove(pdev);
611
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000612 return 0;
613}
614
615static void dsa_shutdown(struct platform_device *pdev)
616{
617}
618
Florian Fainelli3e8a72d2014-08-27 17:04:46 -0700619static int dsa_switch_rcv(struct sk_buff *skb, struct net_device *dev,
620 struct packet_type *pt, struct net_device *orig_dev)
621{
622 struct dsa_switch_tree *dst = dev->dsa_ptr;
623
624 if (unlikely(dst == NULL)) {
625 kfree_skb(skb);
626 return 0;
627 }
628
629 return dst->ops->rcv(skb, dev, pt, orig_dev);
630}
631
632struct packet_type dsa_pack_type __read_mostly = {
633 .type = cpu_to_be16(ETH_P_XDSA),
634 .func = dsa_switch_rcv,
635};
636
Florian Fainelli5e95329b2013-03-22 10:50:50 +0000637static const struct of_device_id dsa_of_match_table[] = {
Florian Fainelli246d7f72014-08-27 17:04:56 -0700638 { .compatible = "brcm,bcm7445-switch-v4.0" },
Florian Fainelli5e95329b2013-03-22 10:50:50 +0000639 { .compatible = "marvell,dsa", },
640 {}
641};
642MODULE_DEVICE_TABLE(of, dsa_of_match_table);
643
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000644static struct platform_driver dsa_driver = {
645 .probe = dsa_probe,
646 .remove = dsa_remove,
647 .shutdown = dsa_shutdown,
648 .driver = {
649 .name = "dsa",
650 .owner = THIS_MODULE,
Florian Fainelli5e95329b2013-03-22 10:50:50 +0000651 .of_match_table = dsa_of_match_table,
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000652 },
653};
654
655static int __init dsa_init_module(void)
656{
Ben Hutchings7df899c2011-11-25 14:35:02 +0000657 int rc;
658
659 rc = platform_driver_register(&dsa_driver);
660 if (rc)
661 return rc;
662
Florian Fainelli3e8a72d2014-08-27 17:04:46 -0700663 dev_add_pack(&dsa_pack_type);
664
Ben Hutchings7df899c2011-11-25 14:35:02 +0000665 return 0;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000666}
667module_init(dsa_init_module);
668
669static void __exit dsa_cleanup_module(void)
670{
Florian Fainelli3e8a72d2014-08-27 17:04:46 -0700671 dev_remove_pack(&dsa_pack_type);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000672 platform_driver_unregister(&dsa_driver);
673}
674module_exit(dsa_cleanup_module);
675
Rusty Russell577d6a72011-01-24 14:32:52 -0600676MODULE_AUTHOR("Lennert Buytenhek <buytenh@wantstofly.org>");
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000677MODULE_DESCRIPTION("Driver for Distributed Switch Architecture switch chips");
678MODULE_LICENSE("GPL");
679MODULE_ALIAS("platform:dsa");