Merge branch 'locking-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[linux/fpc-iii.git] / net / dsa / tag_edsa.c
blob67a9d26f9075072c906b9a15bf9747d132eeafb4
1 /*
2 * net/dsa/tag_edsa.c - Ethertype DSA tagging
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/etherdevice.h>
12 #include <linux/list.h>
13 #include <linux/slab.h>
15 #include "dsa_priv.h"
17 #define DSA_HLEN 4
18 #define EDSA_HLEN 8
20 static struct sk_buff *edsa_xmit(struct sk_buff *skb, struct net_device *dev)
22 struct dsa_slave_priv *p = netdev_priv(dev);
23 u8 *edsa_header;
26 * Convert the outermost 802.1q tag to a DSA tag and prepend
27 * a DSA ethertype field is the packet is tagged, or insert
28 * a DSA ethertype plus DSA tag between the addresses and the
29 * current ethertype field if the packet is untagged.
31 if (skb->protocol == htons(ETH_P_8021Q)) {
32 if (skb_cow_head(skb, DSA_HLEN) < 0)
33 return NULL;
34 skb_push(skb, DSA_HLEN);
36 memmove(skb->data, skb->data + DSA_HLEN, 2 * ETH_ALEN);
39 * Construct tagged FROM_CPU DSA tag from 802.1q tag.
41 edsa_header = skb->data + 2 * ETH_ALEN;
42 edsa_header[0] = (ETH_P_EDSA >> 8) & 0xff;
43 edsa_header[1] = ETH_P_EDSA & 0xff;
44 edsa_header[2] = 0x00;
45 edsa_header[3] = 0x00;
46 edsa_header[4] = 0x60 | p->dp->ds->index;
47 edsa_header[5] = p->dp->index << 3;
50 * Move CFI field from byte 6 to byte 5.
52 if (edsa_header[6] & 0x10) {
53 edsa_header[5] |= 0x01;
54 edsa_header[6] &= ~0x10;
56 } else {
57 if (skb_cow_head(skb, EDSA_HLEN) < 0)
58 return NULL;
59 skb_push(skb, EDSA_HLEN);
61 memmove(skb->data, skb->data + EDSA_HLEN, 2 * ETH_ALEN);
64 * Construct untagged FROM_CPU DSA tag.
66 edsa_header = skb->data + 2 * ETH_ALEN;
67 edsa_header[0] = (ETH_P_EDSA >> 8) & 0xff;
68 edsa_header[1] = ETH_P_EDSA & 0xff;
69 edsa_header[2] = 0x00;
70 edsa_header[3] = 0x00;
71 edsa_header[4] = 0x40 | p->dp->ds->index;
72 edsa_header[5] = p->dp->index << 3;
73 edsa_header[6] = 0x00;
74 edsa_header[7] = 0x00;
77 return skb;
80 static struct sk_buff *edsa_rcv(struct sk_buff *skb, struct net_device *dev,
81 struct packet_type *pt,
82 struct net_device *orig_dev)
84 struct dsa_switch_tree *dst = dev->dsa_ptr;
85 struct dsa_switch *ds;
86 u8 *edsa_header;
87 int source_device;
88 int source_port;
90 if (unlikely(!pskb_may_pull(skb, EDSA_HLEN)))
91 return NULL;
94 * Skip the two null bytes after the ethertype.
96 edsa_header = skb->data + 2;
99 * Check that frame type is either TO_CPU or FORWARD.
101 if ((edsa_header[0] & 0xc0) != 0x00 && (edsa_header[0] & 0xc0) != 0xc0)
102 return NULL;
105 * Determine source device and port.
107 source_device = edsa_header[0] & 0x1f;
108 source_port = (edsa_header[1] >> 3) & 0x1f;
111 * Check that the source device exists and that the source
112 * port is a registered DSA port.
114 if (source_device >= DSA_MAX_SWITCHES)
115 return NULL;
117 ds = dst->ds[source_device];
118 if (!ds)
119 return NULL;
121 if (source_port >= ds->num_ports || !ds->ports[source_port].netdev)
122 return NULL;
125 * If the 'tagged' bit is set, convert the DSA tag to a 802.1q
126 * tag and delete the ethertype part. If the 'tagged' bit is
127 * clear, delete the ethertype and the DSA tag parts.
129 if (edsa_header[0] & 0x20) {
130 u8 new_header[4];
133 * Insert 802.1q ethertype and copy the VLAN-related
134 * fields, but clear the bit that will hold CFI (since
135 * DSA uses that bit location for another purpose).
137 new_header[0] = (ETH_P_8021Q >> 8) & 0xff;
138 new_header[1] = ETH_P_8021Q & 0xff;
139 new_header[2] = edsa_header[2] & ~0x10;
140 new_header[3] = edsa_header[3];
143 * Move CFI bit from its place in the DSA header to
144 * its 802.1q-designated place.
146 if (edsa_header[1] & 0x01)
147 new_header[2] |= 0x10;
149 skb_pull_rcsum(skb, DSA_HLEN);
152 * Update packet checksum if skb is CHECKSUM_COMPLETE.
154 if (skb->ip_summed == CHECKSUM_COMPLETE) {
155 __wsum c = skb->csum;
156 c = csum_add(c, csum_partial(new_header + 2, 2, 0));
157 c = csum_sub(c, csum_partial(edsa_header + 2, 2, 0));
158 skb->csum = c;
161 memcpy(edsa_header, new_header, DSA_HLEN);
163 memmove(skb->data - ETH_HLEN,
164 skb->data - ETH_HLEN - DSA_HLEN,
165 2 * ETH_ALEN);
166 } else {
168 * Remove DSA tag and update checksum.
170 skb_pull_rcsum(skb, EDSA_HLEN);
171 memmove(skb->data - ETH_HLEN,
172 skb->data - ETH_HLEN - EDSA_HLEN,
173 2 * ETH_ALEN);
176 skb->dev = ds->ports[source_port].netdev;
178 return skb;
181 const struct dsa_device_ops edsa_netdev_ops = {
182 .xmit = edsa_xmit,
183 .rcv = edsa_rcv,