aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
Diffstat (limited to 'net')
-rw-r--r--net/dsa/dsa.c56
-rw-r--r--net/dsa/dsa_priv.h11
-rw-r--r--net/dsa/slave.c39
-rw-r--r--net/dsa/tag_brcm.c1
-rw-r--r--net/dsa/tag_dsa.c1
-rw-r--r--net/dsa/tag_edsa.c1
-rw-r--r--net/dsa/tag_trailer.c1
7 files changed, 62 insertions, 48 deletions
diff --git a/net/dsa/dsa.c b/net/dsa/dsa.c
index 61f145c44555..b34d6978d773 100644
--- a/net/dsa/dsa.c
+++ b/net/dsa/dsa.c
@@ -10,7 +10,6 @@
10 */ 10 */
11 11
12#include <linux/list.h> 12#include <linux/list.h>
13#include <linux/netdevice.h>
14#include <linux/platform_device.h> 13#include <linux/platform_device.h>
15#include <linux/slab.h> 14#include <linux/slab.h>
16#include <linux/module.h> 15#include <linux/module.h>
@@ -44,7 +43,7 @@ void unregister_switch_driver(struct dsa_switch_driver *drv)
44EXPORT_SYMBOL_GPL(unregister_switch_driver); 43EXPORT_SYMBOL_GPL(unregister_switch_driver);
45 44
46static struct dsa_switch_driver * 45static struct dsa_switch_driver *
47dsa_switch_probe(struct mii_bus *bus, int sw_addr, char **_name) 46dsa_switch_probe(struct device *host_dev, int sw_addr, char **_name)
48{ 47{
49 struct dsa_switch_driver *ret; 48 struct dsa_switch_driver *ret;
50 struct list_head *list; 49 struct list_head *list;
@@ -59,7 +58,7 @@ dsa_switch_probe(struct mii_bus *bus, int sw_addr, char **_name)
59 58
60 drv = list_entry(list, struct dsa_switch_driver, list); 59 drv = list_entry(list, struct dsa_switch_driver, list);
61 60
62 name = drv->probe(bus, sw_addr); 61 name = drv->probe(host_dev, sw_addr);
63 if (name != NULL) { 62 if (name != NULL) {
64 ret = drv; 63 ret = drv;
65 break; 64 break;
@@ -76,7 +75,7 @@ dsa_switch_probe(struct mii_bus *bus, int sw_addr, char **_name)
76/* basic switch operations **************************************************/ 75/* basic switch operations **************************************************/
77static struct dsa_switch * 76static struct dsa_switch *
78dsa_switch_setup(struct dsa_switch_tree *dst, int index, 77dsa_switch_setup(struct dsa_switch_tree *dst, int index,
79 struct device *parent, struct mii_bus *bus) 78 struct device *parent, struct device *host_dev)
80{ 79{
81 struct dsa_chip_data *pd = dst->pd->chip + index; 80 struct dsa_chip_data *pd = dst->pd->chip + index;
82 struct dsa_switch_driver *drv; 81 struct dsa_switch_driver *drv;
@@ -89,7 +88,7 @@ dsa_switch_setup(struct dsa_switch_tree *dst, int index,
89 /* 88 /*
90 * Probe for switch model. 89 * Probe for switch model.
91 */ 90 */
92 drv = dsa_switch_probe(bus, pd->sw_addr, &name); 91 drv = dsa_switch_probe(host_dev, pd->sw_addr, &name);
93 if (drv == NULL) { 92 if (drv == NULL) {
94 printk(KERN_ERR "%s[%d]: could not detect attached switch\n", 93 printk(KERN_ERR "%s[%d]: could not detect attached switch\n",
95 dst->master_netdev->name, index); 94 dst->master_netdev->name, index);
@@ -110,8 +109,7 @@ dsa_switch_setup(struct dsa_switch_tree *dst, int index,
110 ds->index = index; 109 ds->index = index;
111 ds->pd = dst->pd->chip + index; 110 ds->pd = dst->pd->chip + index;
112 ds->drv = drv; 111 ds->drv = drv;
113 ds->master_mii_bus = bus; 112 ds->master_dev = host_dev;
114
115 113
116 /* 114 /*
117 * Validate supplied switch configuration. 115 * Validate supplied switch configuration.
@@ -154,9 +152,34 @@ dsa_switch_setup(struct dsa_switch_tree *dst, int index,
154 * tagging protocol to the preferred tagging format of this 152 * tagging protocol to the preferred tagging format of this
155 * switch. 153 * switch.
156 */ 154 */
157 if (ds->dst->cpu_switch == index) 155 if (dst->cpu_switch == index) {
158 ds->dst->tag_protocol = drv->tag_protocol; 156 switch (drv->tag_protocol) {
157#ifdef CONFIG_NET_DSA_TAG_DSA
158 case DSA_TAG_PROTO_DSA:
159 dst->rcv = dsa_netdev_ops.rcv;
160 break;
161#endif
162#ifdef CONFIG_NET_DSA_TAG_EDSA
163 case DSA_TAG_PROTO_EDSA:
164 dst->rcv = edsa_netdev_ops.rcv;
165 break;
166#endif
167#ifdef CONFIG_NET_DSA_TAG_TRAILER
168 case DSA_TAG_PROTO_TRAILER:
169 dst->rcv = trailer_netdev_ops.rcv;
170 break;
171#endif
172#ifdef CONFIG_NET_DSA_TAG_BRCM
173 case DSA_TAG_PROTO_BRCM:
174 dst->rcv = brcm_netdev_ops.rcv;
175 break;
176#endif
177 default:
178 break;
179 }
159 180
181 dst->tag_protocol = drv->tag_protocol;
182 }
160 183
161 /* 184 /*
162 * Do basic register setup. 185 * Do basic register setup.
@@ -261,7 +284,7 @@ static struct device *dev_find_class(struct device *parent, char *class)
261 return device_find_child(parent, class, dev_is_class); 284 return device_find_child(parent, class, dev_is_class);
262} 285}
263 286
264static struct mii_bus *dev_to_mii_bus(struct device *dev) 287struct mii_bus *dsa_host_dev_to_mii_bus(struct device *dev)
265{ 288{
266 struct device *d; 289 struct device *d;
267 290
@@ -277,6 +300,7 @@ static struct mii_bus *dev_to_mii_bus(struct device *dev)
277 300
278 return NULL; 301 return NULL;
279} 302}
303EXPORT_SYMBOL_GPL(dsa_host_dev_to_mii_bus);
280 304
281static struct net_device *dev_to_net_device(struct device *dev) 305static struct net_device *dev_to_net_device(struct device *dev)
282{ 306{
@@ -542,17 +566,9 @@ static int dsa_probe(struct platform_device *pdev)
542 dst->cpu_port = -1; 566 dst->cpu_port = -1;
543 567
544 for (i = 0; i < pd->nr_chips; i++) { 568 for (i = 0; i < pd->nr_chips; i++) {
545 struct mii_bus *bus;
546 struct dsa_switch *ds; 569 struct dsa_switch *ds;
547 570
548 bus = dev_to_mii_bus(pd->chip[i].mii_bus); 571 ds = dsa_switch_setup(dst, i, &pdev->dev, pd->chip[i].host_dev);
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)) { 572 if (IS_ERR(ds)) {
557 printk(KERN_ERR "%s[%d]: couldn't create dsa switch " 573 printk(KERN_ERR "%s[%d]: couldn't create dsa switch "
558 "instance (error %ld)\n", dev->name, i, 574 "instance (error %ld)\n", dev->name, i,
@@ -626,7 +642,7 @@ static int dsa_switch_rcv(struct sk_buff *skb, struct net_device *dev,
626 return 0; 642 return 0;
627 } 643 }
628 644
629 return dst->ops->rcv(skb, dev, pt, orig_dev); 645 return dst->rcv(skb, dev, pt, orig_dev);
630} 646}
631 647
632static struct packet_type dsa_pack_type __read_mostly = { 648static struct packet_type dsa_pack_type __read_mostly = {
diff --git a/net/dsa/dsa_priv.h b/net/dsa/dsa_priv.h
index 98afed4d92ba..f90899e8ab5a 100644
--- a/net/dsa/dsa_priv.h
+++ b/net/dsa/dsa_priv.h
@@ -12,7 +12,13 @@
12#define __DSA_PRIV_H 12#define __DSA_PRIV_H
13 13
14#include <linux/phy.h> 14#include <linux/phy.h>
15#include <net/dsa.h> 15#include <linux/netdevice.h>
16
17struct dsa_device_ops {
18 netdev_tx_t (*xmit)(struct sk_buff *skb, struct net_device *dev);
19 int (*rcv)(struct sk_buff *skb, struct net_device *dev,
20 struct packet_type *pt, struct net_device *orig_dev);
21};
16 22
17struct dsa_slave_priv { 23struct dsa_slave_priv {
18 /* 24 /*
@@ -20,6 +26,8 @@ struct dsa_slave_priv {
20 * switch port. 26 * switch port.
21 */ 27 */
22 struct net_device *dev; 28 struct net_device *dev;
29 netdev_tx_t (*xmit)(struct sk_buff *skb,
30 struct net_device *dev);
23 31
24 /* 32 /*
25 * Which switch this port is a part of, and the port index 33 * Which switch this port is a part of, and the port index
@@ -43,6 +51,7 @@ struct dsa_slave_priv {
43extern char dsa_driver_version[]; 51extern char dsa_driver_version[];
44 52
45/* slave.c */ 53/* slave.c */
54extern const struct dsa_device_ops notag_netdev_ops;
46void dsa_slave_mii_bus_init(struct dsa_switch *ds); 55void dsa_slave_mii_bus_init(struct dsa_switch *ds);
47struct net_device *dsa_slave_create(struct dsa_switch *ds, 56struct net_device *dsa_slave_create(struct dsa_switch *ds,
48 struct device *parent, 57 struct device *parent,
diff --git a/net/dsa/slave.c b/net/dsa/slave.c
index 809eeb13eb12..90c9689ed362 100644
--- a/net/dsa/slave.c
+++ b/net/dsa/slave.c
@@ -9,7 +9,6 @@
9 */ 9 */
10 10
11#include <linux/list.h> 11#include <linux/list.h>
12#include <linux/netdevice.h>
13#include <linux/etherdevice.h> 12#include <linux/etherdevice.h>
14#include <linux/phy.h> 13#include <linux/phy.h>
15#include <linux/of_net.h> 14#include <linux/of_net.h>
@@ -45,7 +44,7 @@ void dsa_slave_mii_bus_init(struct dsa_switch *ds)
45 ds->slave_mii_bus->write = dsa_slave_phy_write; 44 ds->slave_mii_bus->write = dsa_slave_phy_write;
46 snprintf(ds->slave_mii_bus->id, MII_BUS_ID_SIZE, "dsa-%d:%.2x", 45 snprintf(ds->slave_mii_bus->id, MII_BUS_ID_SIZE, "dsa-%d:%.2x",
47 ds->index, ds->pd->sw_addr); 46 ds->index, ds->pd->sw_addr);
48 ds->slave_mii_bus->parent = &ds->master_mii_bus->dev; 47 ds->slave_mii_bus->parent = ds->master_dev;
49} 48}
50 49
51 50
@@ -176,9 +175,8 @@ static int dsa_slave_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
176static netdev_tx_t dsa_slave_xmit(struct sk_buff *skb, struct net_device *dev) 175static netdev_tx_t dsa_slave_xmit(struct sk_buff *skb, struct net_device *dev)
177{ 176{
178 struct dsa_slave_priv *p = netdev_priv(dev); 177 struct dsa_slave_priv *p = netdev_priv(dev);
179 struct dsa_switch_tree *dst = p->parent->dst;
180 178
181 return dst->ops->xmit(skb, dev); 179 return p->xmit(skb, dev);
182} 180}
183 181
184static netdev_tx_t dsa_slave_notag_xmit(struct sk_buff *skb, 182static netdev_tx_t dsa_slave_notag_xmit(struct sk_buff *skb,
@@ -325,11 +323,6 @@ static const struct net_device_ops dsa_slave_netdev_ops = {
325 .ndo_do_ioctl = dsa_slave_ioctl, 323 .ndo_do_ioctl = dsa_slave_ioctl,
326}; 324};
327 325
328static const struct dsa_device_ops notag_netdev_ops = {
329 .xmit = dsa_slave_notag_xmit,
330 .rcv = NULL,
331};
332
333static void dsa_slave_adjust_link(struct net_device *dev) 326static void dsa_slave_adjust_link(struct net_device *dev)
334{ 327{
335 struct dsa_slave_priv *p = netdev_priv(dev); 328 struct dsa_slave_priv *p = netdev_priv(dev);
@@ -435,41 +428,41 @@ dsa_slave_create(struct dsa_switch *ds, struct device *parent,
435 slave_dev->tx_queue_len = 0; 428 slave_dev->tx_queue_len = 0;
436 slave_dev->netdev_ops = &dsa_slave_netdev_ops; 429 slave_dev->netdev_ops = &dsa_slave_netdev_ops;
437 430
431 SET_NETDEV_DEV(slave_dev, parent);
432 slave_dev->dev.of_node = ds->pd->port_dn[port];
433 slave_dev->vlan_features = master->vlan_features;
434
435 p = netdev_priv(slave_dev);
436 p->dev = slave_dev;
437 p->parent = ds;
438 p->port = port;
439
438 switch (ds->dst->tag_protocol) { 440 switch (ds->dst->tag_protocol) {
439#ifdef CONFIG_NET_DSA_TAG_DSA 441#ifdef CONFIG_NET_DSA_TAG_DSA
440 case DSA_TAG_PROTO_DSA: 442 case DSA_TAG_PROTO_DSA:
441 ds->dst->ops = &dsa_netdev_ops; 443 p->xmit = dsa_netdev_ops.xmit;
442 break; 444 break;
443#endif 445#endif
444#ifdef CONFIG_NET_DSA_TAG_EDSA 446#ifdef CONFIG_NET_DSA_TAG_EDSA
445 case DSA_TAG_PROTO_EDSA: 447 case DSA_TAG_PROTO_EDSA:
446 ds->dst->ops = &edsa_netdev_ops; 448 p->xmit = edsa_netdev_ops.xmit;
447 break; 449 break;
448#endif 450#endif
449#ifdef CONFIG_NET_DSA_TAG_TRAILER 451#ifdef CONFIG_NET_DSA_TAG_TRAILER
450 case DSA_TAG_PROTO_TRAILER: 452 case DSA_TAG_PROTO_TRAILER:
451 ds->dst->ops = &trailer_netdev_ops; 453 p->xmit = trailer_netdev_ops.xmit;
452 break; 454 break;
453#endif 455#endif
454#ifdef CONFIG_NET_DSA_TAG_BRCM 456#ifdef CONFIG_NET_DSA_TAG_BRCM
455 case DSA_TAG_PROTO_BRCM: 457 case DSA_TAG_PROTO_BRCM:
456 ds->dst->ops = &brcm_netdev_ops; 458 p->xmit = brcm_netdev_ops.xmit;
457 break; 459 break;
458#endif 460#endif
459 default: 461 default:
460 ds->dst->ops = &notag_netdev_ops; 462 p->xmit = dsa_slave_notag_xmit;
461 break; 463 break;
462 } 464 }
463 465
464 SET_NETDEV_DEV(slave_dev, parent);
465 slave_dev->dev.of_node = ds->pd->port_dn[port];
466 slave_dev->vlan_features = master->vlan_features;
467
468 p = netdev_priv(slave_dev);
469 p->dev = slave_dev;
470 p->parent = ds;
471 p->port = port;
472
473 p->old_pause = -1; 466 p->old_pause = -1;
474 p->old_link = -1; 467 p->old_link = -1;
475 p->old_duplex = -1; 468 p->old_duplex = -1;
diff --git a/net/dsa/tag_brcm.c b/net/dsa/tag_brcm.c
index 8fbc21c0de78..83d3572cdb20 100644
--- a/net/dsa/tag_brcm.c
+++ b/net/dsa/tag_brcm.c
@@ -11,7 +11,6 @@
11 11
12#include <linux/etherdevice.h> 12#include <linux/etherdevice.h>
13#include <linux/list.h> 13#include <linux/list.h>
14#include <linux/netdevice.h>
15#include <linux/slab.h> 14#include <linux/slab.h>
16#include "dsa_priv.h" 15#include "dsa_priv.h"
17 16
diff --git a/net/dsa/tag_dsa.c b/net/dsa/tag_dsa.c
index d7dbc5bda5c0..ce90c8bdc658 100644
--- a/net/dsa/tag_dsa.c
+++ b/net/dsa/tag_dsa.c
@@ -10,7 +10,6 @@
10 10
11#include <linux/etherdevice.h> 11#include <linux/etherdevice.h>
12#include <linux/list.h> 12#include <linux/list.h>
13#include <linux/netdevice.h>
14#include <linux/slab.h> 13#include <linux/slab.h>
15#include "dsa_priv.h" 14#include "dsa_priv.h"
16 15
diff --git a/net/dsa/tag_edsa.c b/net/dsa/tag_edsa.c
index 6b30abe89183..94fcce778679 100644
--- a/net/dsa/tag_edsa.c
+++ b/net/dsa/tag_edsa.c
@@ -10,7 +10,6 @@
10 10
11#include <linux/etherdevice.h> 11#include <linux/etherdevice.h>
12#include <linux/list.h> 12#include <linux/list.h>
13#include <linux/netdevice.h>
14#include <linux/slab.h> 13#include <linux/slab.h>
15#include "dsa_priv.h" 14#include "dsa_priv.h"
16 15
diff --git a/net/dsa/tag_trailer.c b/net/dsa/tag_trailer.c
index 5fe9444842c5..115fdca34077 100644
--- a/net/dsa/tag_trailer.c
+++ b/net/dsa/tag_trailer.c
@@ -10,7 +10,6 @@
10 10
11#include <linux/etherdevice.h> 11#include <linux/etherdevice.h>
12#include <linux/list.h> 12#include <linux/list.h>
13#include <linux/netdevice.h>
14#include <linux/slab.h> 13#include <linux/slab.h>
15#include "dsa_priv.h" 14#include "dsa_priv.h"
16 15