x86, apic: Fix spurious error interrupts triggering on all non-boot APs
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / net / dsa / dsa.c
blob71489f69a42c1e38f59b5c61dfe6c2d2b557242d
1 /*
2 * net/dsa/dsa.c - Hardware switch handling
3 * Copyright (c) 2008-2009 Marvell Semiconductor
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 */
11 #include <linux/list.h>
12 #include <linux/netdevice.h>
13 #include <linux/platform_device.h>
14 #include <net/dsa.h>
15 #include "dsa_priv.h"
17 char dsa_driver_version[] = "0.1";
20 /* switch driver registration ***********************************************/
21 static DEFINE_MUTEX(dsa_switch_drivers_mutex);
22 static LIST_HEAD(dsa_switch_drivers);
24 void register_switch_driver(struct dsa_switch_driver *drv)
26 mutex_lock(&dsa_switch_drivers_mutex);
27 list_add_tail(&drv->list, &dsa_switch_drivers);
28 mutex_unlock(&dsa_switch_drivers_mutex);
31 void unregister_switch_driver(struct dsa_switch_driver *drv)
33 mutex_lock(&dsa_switch_drivers_mutex);
34 list_del_init(&drv->list);
35 mutex_unlock(&dsa_switch_drivers_mutex);
38 static struct dsa_switch_driver *
39 dsa_switch_probe(struct mii_bus *bus, int sw_addr, char **_name)
41 struct dsa_switch_driver *ret;
42 struct list_head *list;
43 char *name;
45 ret = NULL;
46 name = NULL;
48 mutex_lock(&dsa_switch_drivers_mutex);
49 list_for_each(list, &dsa_switch_drivers) {
50 struct dsa_switch_driver *drv;
52 drv = list_entry(list, struct dsa_switch_driver, list);
54 name = drv->probe(bus, sw_addr);
55 if (name != NULL) {
56 ret = drv;
57 break;
60 mutex_unlock(&dsa_switch_drivers_mutex);
62 *_name = name;
64 return ret;
68 /* basic switch operations **************************************************/
69 static struct dsa_switch *
70 dsa_switch_setup(struct dsa_switch_tree *dst, int index,
71 struct device *parent, struct mii_bus *bus)
73 struct dsa_chip_data *pd = dst->pd->chip + index;
74 struct dsa_switch_driver *drv;
75 struct dsa_switch *ds;
76 int ret;
77 char *name;
78 int i;
81 * Probe for switch model.
83 drv = dsa_switch_probe(bus, pd->sw_addr, &name);
84 if (drv == NULL) {
85 printk(KERN_ERR "%s[%d]: could not detect attached switch\n",
86 dst->master_netdev->name, index);
87 return ERR_PTR(-EINVAL);
89 printk(KERN_INFO "%s[%d]: detected a %s switch\n",
90 dst->master_netdev->name, index, name);
94 * Allocate and initialise switch state.
96 ds = kzalloc(sizeof(*ds) + drv->priv_size, GFP_KERNEL);
97 if (ds == NULL)
98 return ERR_PTR(-ENOMEM);
100 ds->dst = dst;
101 ds->index = index;
102 ds->pd = dst->pd->chip + index;
103 ds->drv = drv;
104 ds->master_mii_bus = bus;
108 * Validate supplied switch configuration.
110 for (i = 0; i < DSA_MAX_PORTS; i++) {
111 char *name;
113 name = pd->port_names[i];
114 if (name == NULL)
115 continue;
117 if (!strcmp(name, "cpu")) {
118 if (dst->cpu_switch != -1) {
119 printk(KERN_ERR "multiple cpu ports?!\n");
120 ret = -EINVAL;
121 goto out;
123 dst->cpu_switch = index;
124 dst->cpu_port = i;
125 } else if (!strcmp(name, "dsa")) {
126 ds->dsa_port_mask |= 1 << i;
127 } else {
128 ds->phys_port_mask |= 1 << i;
134 * If the CPU connects to this switch, set the switch tree
135 * tagging protocol to the preferred tagging format of this
136 * switch.
138 if (ds->dst->cpu_switch == index)
139 ds->dst->tag_protocol = drv->tag_protocol;
143 * Do basic register setup.
145 ret = drv->setup(ds);
146 if (ret < 0)
147 goto out;
149 ret = drv->set_addr(ds, dst->master_netdev->dev_addr);
150 if (ret < 0)
151 goto out;
153 ds->slave_mii_bus = mdiobus_alloc();
154 if (ds->slave_mii_bus == NULL) {
155 ret = -ENOMEM;
156 goto out;
158 dsa_slave_mii_bus_init(ds);
160 ret = mdiobus_register(ds->slave_mii_bus);
161 if (ret < 0)
162 goto out_free;
166 * Create network devices for physical switch ports.
168 for (i = 0; i < DSA_MAX_PORTS; i++) {
169 struct net_device *slave_dev;
171 if (!(ds->phys_port_mask & (1 << i)))
172 continue;
174 slave_dev = dsa_slave_create(ds, parent, i, pd->port_names[i]);
175 if (slave_dev == NULL) {
176 printk(KERN_ERR "%s[%d]: can't create dsa "
177 "slave device for port %d(%s)\n",
178 dst->master_netdev->name,
179 index, i, pd->port_names[i]);
180 continue;
183 ds->ports[i] = slave_dev;
186 return ds;
188 out_free:
189 mdiobus_free(ds->slave_mii_bus);
190 out:
191 kfree(ds);
192 return ERR_PTR(ret);
195 static void dsa_switch_destroy(struct dsa_switch *ds)
200 /* hooks for ethertype-less tagging formats *********************************/
202 * The original DSA tag format and some other tag formats have no
203 * ethertype, which means that we need to add a little hack to the
204 * networking receive path to make sure that received frames get
205 * the right ->protocol assigned to them when one of those tag
206 * formats is in use.
208 bool dsa_uses_dsa_tags(void *dsa_ptr)
210 struct dsa_switch_tree *dst = dsa_ptr;
212 return !!(dst->tag_protocol == htons(ETH_P_DSA));
215 bool dsa_uses_trailer_tags(void *dsa_ptr)
217 struct dsa_switch_tree *dst = dsa_ptr;
219 return !!(dst->tag_protocol == htons(ETH_P_TRAILER));
223 /* link polling *************************************************************/
224 static void dsa_link_poll_work(struct work_struct *ugly)
226 struct dsa_switch_tree *dst;
227 int i;
229 dst = container_of(ugly, struct dsa_switch_tree, link_poll_work);
231 for (i = 0; i < dst->pd->nr_chips; i++) {
232 struct dsa_switch *ds = dst->ds[i];
234 if (ds != NULL && ds->drv->poll_link != NULL)
235 ds->drv->poll_link(ds);
238 mod_timer(&dst->link_poll_timer, round_jiffies(jiffies + HZ));
241 static void dsa_link_poll_timer(unsigned long _dst)
243 struct dsa_switch_tree *dst = (void *)_dst;
245 schedule_work(&dst->link_poll_work);
249 /* platform driver init and cleanup *****************************************/
250 static int dev_is_class(struct device *dev, void *class)
252 if (dev->class != NULL && !strcmp(dev->class->name, class))
253 return 1;
255 return 0;
258 static struct device *dev_find_class(struct device *parent, char *class)
260 if (dev_is_class(parent, class)) {
261 get_device(parent);
262 return parent;
265 return device_find_child(parent, class, dev_is_class);
268 static struct mii_bus *dev_to_mii_bus(struct device *dev)
270 struct device *d;
272 d = dev_find_class(dev, "mdio_bus");
273 if (d != NULL) {
274 struct mii_bus *bus;
276 bus = to_mii_bus(d);
277 put_device(d);
279 return bus;
282 return NULL;
285 static struct net_device *dev_to_net_device(struct device *dev)
287 struct device *d;
289 d = dev_find_class(dev, "net");
290 if (d != NULL) {
291 struct net_device *nd;
293 nd = to_net_dev(d);
294 dev_hold(nd);
295 put_device(d);
297 return nd;
300 return NULL;
303 static int dsa_probe(struct platform_device *pdev)
305 static int dsa_version_printed;
306 struct dsa_platform_data *pd = pdev->dev.platform_data;
307 struct net_device *dev;
308 struct dsa_switch_tree *dst;
309 int i;
311 if (!dsa_version_printed++)
312 printk(KERN_NOTICE "Distributed Switch Architecture "
313 "driver version %s\n", dsa_driver_version);
315 if (pd == NULL || pd->netdev == NULL)
316 return -EINVAL;
318 dev = dev_to_net_device(pd->netdev);
319 if (dev == NULL)
320 return -EINVAL;
322 if (dev->dsa_ptr != NULL) {
323 dev_put(dev);
324 return -EEXIST;
327 dst = kzalloc(sizeof(*dst), GFP_KERNEL);
328 if (dst == NULL) {
329 dev_put(dev);
330 return -ENOMEM;
333 platform_set_drvdata(pdev, dst);
335 dst->pd = pd;
336 dst->master_netdev = dev;
337 dst->cpu_switch = -1;
338 dst->cpu_port = -1;
340 for (i = 0; i < pd->nr_chips; i++) {
341 struct mii_bus *bus;
342 struct dsa_switch *ds;
344 bus = dev_to_mii_bus(pd->chip[i].mii_bus);
345 if (bus == NULL) {
346 printk(KERN_ERR "%s[%d]: no mii bus found for "
347 "dsa switch\n", dev->name, i);
348 continue;
351 ds = dsa_switch_setup(dst, i, &pdev->dev, bus);
352 if (IS_ERR(ds)) {
353 printk(KERN_ERR "%s[%d]: couldn't create dsa switch "
354 "instance (error %ld)\n", dev->name, i,
355 PTR_ERR(ds));
356 continue;
359 dst->ds[i] = ds;
360 if (ds->drv->poll_link != NULL)
361 dst->link_poll_needed = 1;
365 * If we use a tagging format that doesn't have an ethertype
366 * field, make sure that all packets from this point on get
367 * sent to the tag format's receive function.
369 wmb();
370 dev->dsa_ptr = (void *)dst;
372 if (dst->link_poll_needed) {
373 INIT_WORK(&dst->link_poll_work, dsa_link_poll_work);
374 init_timer(&dst->link_poll_timer);
375 dst->link_poll_timer.data = (unsigned long)dst;
376 dst->link_poll_timer.function = dsa_link_poll_timer;
377 dst->link_poll_timer.expires = round_jiffies(jiffies + HZ);
378 add_timer(&dst->link_poll_timer);
381 return 0;
384 static int dsa_remove(struct platform_device *pdev)
386 struct dsa_switch_tree *dst = platform_get_drvdata(pdev);
387 int i;
389 if (dst->link_poll_needed)
390 del_timer_sync(&dst->link_poll_timer);
392 flush_scheduled_work();
394 for (i = 0; i < dst->pd->nr_chips; i++) {
395 struct dsa_switch *ds = dst->ds[i];
397 if (ds != NULL)
398 dsa_switch_destroy(ds);
401 return 0;
404 static void dsa_shutdown(struct platform_device *pdev)
408 static struct platform_driver dsa_driver = {
409 .probe = dsa_probe,
410 .remove = dsa_remove,
411 .shutdown = dsa_shutdown,
412 .driver = {
413 .name = "dsa",
414 .owner = THIS_MODULE,
418 static int __init dsa_init_module(void)
420 return platform_driver_register(&dsa_driver);
422 module_init(dsa_init_module);
424 static void __exit dsa_cleanup_module(void)
426 platform_driver_unregister(&dsa_driver);
428 module_exit(dsa_cleanup_module);
430 MODULE_AUTHOR("Lennert Buytenhek <buytenh@wantstofly.org>")
431 MODULE_DESCRIPTION("Driver for Distributed Switch Architecture switch chips");
432 MODULE_LICENSE("GPL");
433 MODULE_ALIAS("platform:dsa");