2 * net/dsa/tag_dsa.c - (Non-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.
11 #include <linux/etherdevice.h>
12 #include <linux/list.h>
13 #include <linux/slab.h>
18 static struct sk_buff
*dsa_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
20 struct dsa_slave_priv
*p
= netdev_priv(dev
);
24 * Convert the outermost 802.1q tag to a DSA tag for tagged
25 * packets, or insert a DSA tag between the addresses and
26 * the ethertype field for untagged packets.
28 if (skb
->protocol
== htons(ETH_P_8021Q
)) {
29 if (skb_cow_head(skb
, 0) < 0)
33 * Construct tagged FROM_CPU DSA tag from 802.1q tag.
35 dsa_header
= skb
->data
+ 2 * ETH_ALEN
;
36 dsa_header
[0] = 0x60 | p
->parent
->index
;
37 dsa_header
[1] = p
->port
<< 3;
40 * Move CFI field from byte 2 to byte 1.
42 if (dsa_header
[2] & 0x10) {
43 dsa_header
[1] |= 0x01;
44 dsa_header
[2] &= ~0x10;
47 if (skb_cow_head(skb
, DSA_HLEN
) < 0)
49 skb_push(skb
, DSA_HLEN
);
51 memmove(skb
->data
, skb
->data
+ DSA_HLEN
, 2 * ETH_ALEN
);
54 * Construct untagged FROM_CPU DSA tag.
56 dsa_header
= skb
->data
+ 2 * ETH_ALEN
;
57 dsa_header
[0] = 0x40 | p
->parent
->index
;
58 dsa_header
[1] = p
->port
<< 3;
70 static int dsa_rcv(struct sk_buff
*skb
, struct net_device
*dev
,
71 struct packet_type
*pt
, struct net_device
*orig_dev
)
73 struct dsa_switch_tree
*dst
= dev
->dsa_ptr
;
74 struct dsa_switch
*ds
;
79 if (unlikely(dst
== NULL
))
82 skb
= skb_unshare(skb
, GFP_ATOMIC
);
86 if (unlikely(!pskb_may_pull(skb
, DSA_HLEN
)))
90 * The ethertype field is part of the DSA header.
92 dsa_header
= skb
->data
- 2;
95 * Check that frame type is either TO_CPU or FORWARD.
97 if ((dsa_header
[0] & 0xc0) != 0x00 && (dsa_header
[0] & 0xc0) != 0xc0)
101 * Determine source device and port.
103 source_device
= dsa_header
[0] & 0x1f;
104 source_port
= (dsa_header
[1] >> 3) & 0x1f;
107 * Check that the source device exists and that the source
108 * port is a registered DSA port.
110 if (source_device
>= dst
->pd
->nr_chips
)
112 ds
= dst
->ds
[source_device
];
113 if (source_port
>= DSA_MAX_PORTS
|| ds
->ports
[source_port
] == NULL
)
117 * Convert the DSA header to an 802.1q header if the 'tagged'
118 * bit in the DSA header is set. If the 'tagged' bit is clear,
119 * delete the DSA header entirely.
121 if (dsa_header
[0] & 0x20) {
125 * Insert 802.1q ethertype and copy the VLAN-related
126 * fields, but clear the bit that will hold CFI (since
127 * DSA uses that bit location for another purpose).
129 new_header
[0] = (ETH_P_8021Q
>> 8) & 0xff;
130 new_header
[1] = ETH_P_8021Q
& 0xff;
131 new_header
[2] = dsa_header
[2] & ~0x10;
132 new_header
[3] = dsa_header
[3];
135 * Move CFI bit from its place in the DSA header to
136 * its 802.1q-designated place.
138 if (dsa_header
[1] & 0x01)
139 new_header
[2] |= 0x10;
142 * Update packet checksum if skb is CHECKSUM_COMPLETE.
144 if (skb
->ip_summed
== CHECKSUM_COMPLETE
) {
145 __wsum c
= skb
->csum
;
146 c
= csum_add(c
, csum_partial(new_header
+ 2, 2, 0));
147 c
= csum_sub(c
, csum_partial(dsa_header
+ 2, 2, 0));
151 memcpy(dsa_header
, new_header
, DSA_HLEN
);
154 * Remove DSA tag and update checksum.
156 skb_pull_rcsum(skb
, DSA_HLEN
);
157 memmove(skb
->data
- ETH_HLEN
,
158 skb
->data
- ETH_HLEN
- DSA_HLEN
,
162 skb
->dev
= ds
->ports
[source_port
];
163 skb_push(skb
, ETH_HLEN
);
164 skb
->pkt_type
= PACKET_HOST
;
165 skb
->protocol
= eth_type_trans(skb
, skb
->dev
);
167 skb
->dev
->stats
.rx_packets
++;
168 skb
->dev
->stats
.rx_bytes
+= skb
->len
;
170 netif_receive_skb(skb
);
180 const struct dsa_device_ops dsa_netdev_ops
= {