1 // SPDX-License-Identifier: GPL-2.0+
3 * net/dsa/tag_trailer.c - Trailer tag format handling
4 * Copyright (c) 2008-2009 Marvell Semiconductor
7 #include <linux/etherdevice.h>
8 #include <linux/list.h>
9 #include <linux/slab.h>
13 static struct sk_buff
*trailer_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
15 struct dsa_port
*dp
= dsa_slave_to_port(dev
);
18 trailer
= skb_put(skb
, 4);
20 trailer
[1] = 1 << dp
->index
;
27 static struct sk_buff
*trailer_rcv(struct sk_buff
*skb
, struct net_device
*dev
,
28 struct packet_type
*pt
)
33 if (skb_linearize(skb
))
36 trailer
= skb_tail_pointer(skb
) - 4;
37 if (trailer
[0] != 0x80 || (trailer
[1] & 0xf8) != 0x00 ||
38 (trailer
[2] & 0xef) != 0x00 || trailer
[3] != 0x00)
41 source_port
= trailer
[1] & 7;
43 skb
->dev
= dsa_master_find_slave(dev
, 0, source_port
);
47 if (pskb_trim_rcsum(skb
, skb
->len
- 4))
53 static const struct dsa_device_ops trailer_netdev_ops
= {
55 .proto
= DSA_TAG_PROTO_TRAILER
,
62 MODULE_LICENSE("GPL");
63 MODULE_ALIAS_DSA_TAG_DRIVER(DSA_TAG_PROTO_TRAILER
);
65 module_dsa_tag_driver(trailer_netdev_ops
);