1 // SPDX-License-Identifier: GPL-2.0
3 * Mediatek DSA Tag support
8 #include <linux/etherdevice.h>
9 #include <linux/if_vlan.h>
14 #define MTK_HDR_XMIT_UNTAGGED 0
15 #define MTK_HDR_XMIT_TAGGED_TPID_8100 1
16 #define MTK_HDR_RECV_SOURCE_PORT_MASK GENMASK(2, 0)
17 #define MTK_HDR_XMIT_DP_BIT_MASK GENMASK(5, 0)
18 #define MTK_HDR_XMIT_SA_DIS BIT(6)
20 static struct sk_buff *mtk_tag_xmit(struct sk_buff *skb,
21 struct net_device *dev)
23 struct dsa_port *dp = dsa_slave_to_port(dev);
25 bool is_vlan_skb = true;
26 unsigned char *dest = eth_hdr(skb)->h_dest;
27 bool is_multicast_skb = is_multicast_ether_addr(dest) &&
28 !is_broadcast_ether_addr(dest);
30 /* Build the special tag after the MAC Source Address. If VLAN header
31 * is present, it's required that VLAN header and special tag is
32 * being combined. Only in this way we can allow the switch can parse
33 * the both special and VLAN tag at the same time and then look up VLAN
36 if (!skb_vlan_tagged(skb)) {
37 skb_push(skb, MTK_HDR_LEN);
38 memmove(skb->data, skb->data + MTK_HDR_LEN, 2 * ETH_ALEN);
42 mtk_tag = skb->data + 2 * ETH_ALEN;
44 /* Mark tag attribute on special tag insertion to notify hardware
45 * whether that's a combined special tag with 802.1Q header.
47 mtk_tag[0] = is_vlan_skb ? MTK_HDR_XMIT_TAGGED_TPID_8100 :
48 MTK_HDR_XMIT_UNTAGGED;
49 mtk_tag[1] = (1 << dp->index) & MTK_HDR_XMIT_DP_BIT_MASK;
51 /* Disable SA learning for multicast frames */
52 if (unlikely(is_multicast_skb))
53 mtk_tag[1] |= MTK_HDR_XMIT_SA_DIS;
55 /* Tag control information is kept for 802.1Q */
64 static struct sk_buff *mtk_tag_rcv(struct sk_buff *skb, struct net_device *dev,
65 struct packet_type *pt)
70 unsigned char *dest = eth_hdr(skb)->h_dest;
71 bool is_multicast_skb = is_multicast_ether_addr(dest) &&
72 !is_broadcast_ether_addr(dest);
74 if (unlikely(!pskb_may_pull(skb, MTK_HDR_LEN)))
77 /* The MTK header is added by the switch between src addr
78 * and ethertype at this point, skb->data points to 2 bytes
79 * after src addr so header should be 2 bytes right before.
81 phdr = (__be16 *)(skb->data - 2);
84 /* Remove MTK tag and recalculate checksum. */
85 skb_pull_rcsum(skb, MTK_HDR_LEN);
87 memmove(skb->data - ETH_HLEN,
88 skb->data - ETH_HLEN - MTK_HDR_LEN,
91 /* Get source port information */
92 port = (hdr & MTK_HDR_RECV_SOURCE_PORT_MASK);
94 skb->dev = dsa_master_find_slave(dev, 0, port);
98 /* Only unicast or broadcast frames are offloaded */
99 if (likely(!is_multicast_skb))
100 skb->offload_fwd_mark = 1;
105 static const struct dsa_device_ops mtk_netdev_ops = {
107 .proto = DSA_TAG_PROTO_MTK,
108 .xmit = mtk_tag_xmit,
110 .overhead = MTK_HDR_LEN,
113 MODULE_LICENSE("GPL");
114 MODULE_ALIAS_DSA_TAG_DRIVER(DSA_TAG_PROTO_MTK);
116 module_dsa_tag_driver(mtk_netdev_ops);