Loading...
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * Mediatek DSA Tag support
4 * Copyright (C) 2017 Landen Chao <landen.chao@mediatek.com>
5 * Sean Wang <sean.wang@mediatek.com>
6 */
7
8#include <linux/etherdevice.h>
9#include <linux/if_vlan.h>
10
11#include "tag.h"
12
13#define MTK_NAME "mtk"
14
15#define MTK_HDR_LEN 4
16#define MTK_HDR_XMIT_UNTAGGED 0
17#define MTK_HDR_XMIT_TAGGED_TPID_8100 1
18#define MTK_HDR_XMIT_TAGGED_TPID_88A8 2
19#define MTK_HDR_RECV_SOURCE_PORT_MASK GENMASK(2, 0)
20#define MTK_HDR_XMIT_DP_BIT_MASK GENMASK(5, 0)
21#define MTK_HDR_XMIT_SA_DIS BIT(6)
22
23static struct sk_buff *mtk_tag_xmit(struct sk_buff *skb,
24 struct net_device *dev)
25{
26 struct dsa_port *dp = dsa_user_to_port(dev);
27 u8 xmit_tpid;
28 u8 *mtk_tag;
29
30 skb_set_queue_mapping(skb, dp->index);
31
32 /* Build the special tag after the MAC Source Address. If VLAN header
33 * is present, it's required that VLAN header and special tag is
34 * being combined. Only in this way we can allow the switch can parse
35 * the both special and VLAN tag at the same time and then look up VLAN
36 * table with VID.
37 */
38 switch (skb->protocol) {
39 case htons(ETH_P_8021Q):
40 xmit_tpid = MTK_HDR_XMIT_TAGGED_TPID_8100;
41 break;
42 case htons(ETH_P_8021AD):
43 xmit_tpid = MTK_HDR_XMIT_TAGGED_TPID_88A8;
44 break;
45 default:
46 xmit_tpid = MTK_HDR_XMIT_UNTAGGED;
47 skb_push(skb, MTK_HDR_LEN);
48 dsa_alloc_etype_header(skb, MTK_HDR_LEN);
49 }
50
51 mtk_tag = dsa_etype_header_pos_tx(skb);
52
53 /* Mark tag attribute on special tag insertion to notify hardware
54 * whether that's a combined special tag with 802.1Q header.
55 */
56 mtk_tag[0] = xmit_tpid;
57 mtk_tag[1] = (1 << dp->index) & MTK_HDR_XMIT_DP_BIT_MASK;
58
59 /* Tag control information is kept for 802.1Q */
60 if (xmit_tpid == MTK_HDR_XMIT_UNTAGGED) {
61 mtk_tag[2] = 0;
62 mtk_tag[3] = 0;
63 }
64
65 return skb;
66}
67
68static struct sk_buff *mtk_tag_rcv(struct sk_buff *skb, struct net_device *dev)
69{
70 u16 hdr;
71 int port;
72 __be16 *phdr;
73
74 if (unlikely(!pskb_may_pull(skb, MTK_HDR_LEN)))
75 return NULL;
76
77 phdr = dsa_etype_header_pos_rx(skb);
78 hdr = ntohs(*phdr);
79
80 /* Remove MTK tag and recalculate checksum. */
81 skb_pull_rcsum(skb, MTK_HDR_LEN);
82
83 dsa_strip_etype_header(skb, MTK_HDR_LEN);
84
85 /* Get source port information */
86 port = (hdr & MTK_HDR_RECV_SOURCE_PORT_MASK);
87
88 skb->dev = dsa_conduit_find_user(dev, 0, port);
89 if (!skb->dev)
90 return NULL;
91
92 dsa_default_offload_fwd_mark(skb);
93
94 return skb;
95}
96
97static const struct dsa_device_ops mtk_netdev_ops = {
98 .name = MTK_NAME,
99 .proto = DSA_TAG_PROTO_MTK,
100 .xmit = mtk_tag_xmit,
101 .rcv = mtk_tag_rcv,
102 .needed_headroom = MTK_HDR_LEN,
103};
104
105MODULE_DESCRIPTION("DSA tag driver for Mediatek switches");
106MODULE_LICENSE("GPL");
107MODULE_ALIAS_DSA_TAG_DRIVER(DSA_TAG_PROTO_MTK, MTK_NAME);
108
109module_dsa_tag_driver(mtk_netdev_ops);
1/*
2 * Mediatek DSA Tag support
3 * Copyright (C) 2017 Landen Chao <landen.chao@mediatek.com>
4 * Sean Wang <sean.wang@mediatek.com>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 and
7 * only version 2 as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 */
14
15#include <linux/etherdevice.h>
16#include <linux/if_vlan.h>
17
18#include "dsa_priv.h"
19
20#define MTK_HDR_LEN 4
21#define MTK_HDR_XMIT_UNTAGGED 0
22#define MTK_HDR_XMIT_TAGGED_TPID_8100 1
23#define MTK_HDR_RECV_SOURCE_PORT_MASK GENMASK(2, 0)
24#define MTK_HDR_XMIT_DP_BIT_MASK GENMASK(5, 0)
25
26static struct sk_buff *mtk_tag_xmit(struct sk_buff *skb,
27 struct net_device *dev)
28{
29 struct dsa_port *dp = dsa_slave_to_port(dev);
30 u8 *mtk_tag;
31 bool is_vlan_skb = true;
32
33 /* Build the special tag after the MAC Source Address. If VLAN header
34 * is present, it's required that VLAN header and special tag is
35 * being combined. Only in this way we can allow the switch can parse
36 * the both special and VLAN tag at the same time and then look up VLAN
37 * table with VID.
38 */
39 if (!skb_vlan_tagged(skb)) {
40 if (skb_cow_head(skb, MTK_HDR_LEN) < 0)
41 return NULL;
42
43 skb_push(skb, MTK_HDR_LEN);
44 memmove(skb->data, skb->data + MTK_HDR_LEN, 2 * ETH_ALEN);
45 is_vlan_skb = false;
46 }
47
48 mtk_tag = skb->data + 2 * ETH_ALEN;
49
50 /* Mark tag attribute on special tag insertion to notify hardware
51 * whether that's a combined special tag with 802.1Q header.
52 */
53 mtk_tag[0] = is_vlan_skb ? MTK_HDR_XMIT_TAGGED_TPID_8100 :
54 MTK_HDR_XMIT_UNTAGGED;
55 mtk_tag[1] = (1 << dp->index) & MTK_HDR_XMIT_DP_BIT_MASK;
56
57 /* Tag control information is kept for 802.1Q */
58 if (!is_vlan_skb) {
59 mtk_tag[2] = 0;
60 mtk_tag[3] = 0;
61 }
62
63 return skb;
64}
65
66static struct sk_buff *mtk_tag_rcv(struct sk_buff *skb, struct net_device *dev,
67 struct packet_type *pt)
68{
69 int port;
70 __be16 *phdr, hdr;
71
72 if (unlikely(!pskb_may_pull(skb, MTK_HDR_LEN)))
73 return NULL;
74
75 /* The MTK header is added by the switch between src addr
76 * and ethertype at this point, skb->data points to 2 bytes
77 * after src addr so header should be 2 bytes right before.
78 */
79 phdr = (__be16 *)(skb->data - 2);
80 hdr = ntohs(*phdr);
81
82 /* Remove MTK tag and recalculate checksum. */
83 skb_pull_rcsum(skb, MTK_HDR_LEN);
84
85 memmove(skb->data - ETH_HLEN,
86 skb->data - ETH_HLEN - MTK_HDR_LEN,
87 2 * ETH_ALEN);
88
89 /* Get source port information */
90 port = (hdr & MTK_HDR_RECV_SOURCE_PORT_MASK);
91
92 skb->dev = dsa_master_find_slave(dev, 0, port);
93 if (!skb->dev)
94 return NULL;
95
96 return skb;
97}
98
99static int mtk_tag_flow_dissect(const struct sk_buff *skb, __be16 *proto,
100 int *offset)
101{
102 *offset = 4;
103 *proto = ((__be16 *)skb->data)[1];
104
105 return 0;
106}
107
108const struct dsa_device_ops mtk_netdev_ops = {
109 .xmit = mtk_tag_xmit,
110 .rcv = mtk_tag_rcv,
111 .flow_dissect = mtk_tag_flow_dissect,
112};