Loading...
1// SPDX-License-Identifier: GPL-2.0
2/* Copyright 2019 NXP Semiconductors
3 */
4#include <linux/dsa/ocelot.h>
5#include <soc/mscc/ocelot.h>
6#include "dsa_priv.h"
7
8static void ocelot_xmit_common(struct sk_buff *skb, struct net_device *netdev,
9 __be32 ifh_prefix, void **ifh)
10{
11 struct dsa_port *dp = dsa_slave_to_port(netdev);
12 struct dsa_switch *ds = dp->ds;
13 void *injection;
14 __be32 *prefix;
15 u32 rew_op = 0;
16
17 injection = skb_push(skb, OCELOT_TAG_LEN);
18 prefix = skb_push(skb, OCELOT_SHORT_PREFIX_LEN);
19
20 *prefix = ifh_prefix;
21 memset(injection, 0, OCELOT_TAG_LEN);
22 ocelot_ifh_set_bypass(injection, 1);
23 ocelot_ifh_set_src(injection, ds->num_ports);
24 ocelot_ifh_set_qos_class(injection, skb->priority);
25
26 rew_op = ocelot_ptp_rew_op(skb);
27 if (rew_op)
28 ocelot_ifh_set_rew_op(injection, rew_op);
29
30 *ifh = injection;
31}
32
33static struct sk_buff *ocelot_xmit(struct sk_buff *skb,
34 struct net_device *netdev)
35{
36 struct dsa_port *dp = dsa_slave_to_port(netdev);
37 void *injection;
38
39 ocelot_xmit_common(skb, netdev, cpu_to_be32(0x8880000a), &injection);
40 ocelot_ifh_set_dest(injection, BIT_ULL(dp->index));
41
42 return skb;
43}
44
45static struct sk_buff *seville_xmit(struct sk_buff *skb,
46 struct net_device *netdev)
47{
48 struct dsa_port *dp = dsa_slave_to_port(netdev);
49 void *injection;
50
51 ocelot_xmit_common(skb, netdev, cpu_to_be32(0x88800005), &injection);
52 seville_ifh_set_dest(injection, BIT_ULL(dp->index));
53
54 return skb;
55}
56
57static struct sk_buff *ocelot_rcv(struct sk_buff *skb,
58 struct net_device *netdev,
59 struct packet_type *pt)
60{
61 u64 src_port, qos_class;
62 u64 vlan_tci, tag_type;
63 u8 *start = skb->data;
64 struct dsa_port *dp;
65 u8 *extraction;
66 u16 vlan_tpid;
67
68 /* Revert skb->data by the amount consumed by the DSA master,
69 * so it points to the beginning of the frame.
70 */
71 skb_push(skb, ETH_HLEN);
72 /* We don't care about the short prefix, it is just for easy entrance
73 * into the DSA master's RX filter. Discard it now by moving it into
74 * the headroom.
75 */
76 skb_pull(skb, OCELOT_SHORT_PREFIX_LEN);
77 /* And skb->data now points to the extraction frame header.
78 * Keep a pointer to it.
79 */
80 extraction = skb->data;
81 /* Now the EFH is part of the headroom as well */
82 skb_pull(skb, OCELOT_TAG_LEN);
83 /* Reset the pointer to the real MAC header */
84 skb_reset_mac_header(skb);
85 skb_reset_mac_len(skb);
86 /* And move skb->data to the correct location again */
87 skb_pull(skb, ETH_HLEN);
88
89 /* Remove from inet csum the extraction header */
90 skb_postpull_rcsum(skb, start, OCELOT_TOTAL_TAG_LEN);
91
92 ocelot_xfh_get_src_port(extraction, &src_port);
93 ocelot_xfh_get_qos_class(extraction, &qos_class);
94 ocelot_xfh_get_tag_type(extraction, &tag_type);
95 ocelot_xfh_get_vlan_tci(extraction, &vlan_tci);
96
97 skb->dev = dsa_master_find_slave(netdev, 0, src_port);
98 if (!skb->dev)
99 /* The switch will reflect back some frames sent through
100 * sockets opened on the bare DSA master. These will come back
101 * with src_port equal to the index of the CPU port, for which
102 * there is no slave registered. So don't print any error
103 * message here (ignore and drop those frames).
104 */
105 return NULL;
106
107 skb->offload_fwd_mark = 1;
108 skb->priority = qos_class;
109
110 /* Ocelot switches copy frames unmodified to the CPU. However, it is
111 * possible for the user to request a VLAN modification through
112 * VCAP_IS1_ACT_VID_REPLACE_ENA. In this case, what will happen is that
113 * the VLAN ID field from the Extraction Header gets updated, but the
114 * 802.1Q header does not (the classified VLAN only becomes visible on
115 * egress through the "port tag" of front-panel ports).
116 * So, for traffic extracted by the CPU, we want to pick up the
117 * classified VLAN and manually replace the existing 802.1Q header from
118 * the packet with it, so that the operating system is always up to
119 * date with the result of tc-vlan actions.
120 * NOTE: In VLAN-unaware mode, we don't want to do that, we want the
121 * frame to remain unmodified, because the classified VLAN is always
122 * equal to the pvid of the ingress port and should not be used for
123 * processing.
124 */
125 dp = dsa_slave_to_port(skb->dev);
126 vlan_tpid = tag_type ? ETH_P_8021AD : ETH_P_8021Q;
127
128 if (dsa_port_is_vlan_filtering(dp) &&
129 eth_hdr(skb)->h_proto == htons(vlan_tpid)) {
130 u16 dummy_vlan_tci;
131
132 skb_push_rcsum(skb, ETH_HLEN);
133 __skb_vlan_pop(skb, &dummy_vlan_tci);
134 skb_pull_rcsum(skb, ETH_HLEN);
135 __vlan_hwaccel_put_tag(skb, htons(vlan_tpid), vlan_tci);
136 }
137
138 return skb;
139}
140
141static const struct dsa_device_ops ocelot_netdev_ops = {
142 .name = "ocelot",
143 .proto = DSA_TAG_PROTO_OCELOT,
144 .xmit = ocelot_xmit,
145 .rcv = ocelot_rcv,
146 .needed_headroom = OCELOT_TOTAL_TAG_LEN,
147 .promisc_on_master = true,
148};
149
150DSA_TAG_DRIVER(ocelot_netdev_ops);
151MODULE_ALIAS_DSA_TAG_DRIVER(DSA_TAG_PROTO_OCELOT);
152
153static const struct dsa_device_ops seville_netdev_ops = {
154 .name = "seville",
155 .proto = DSA_TAG_PROTO_SEVILLE,
156 .xmit = seville_xmit,
157 .rcv = ocelot_rcv,
158 .needed_headroom = OCELOT_TOTAL_TAG_LEN,
159 .promisc_on_master = true,
160};
161
162DSA_TAG_DRIVER(seville_netdev_ops);
163MODULE_ALIAS_DSA_TAG_DRIVER(DSA_TAG_PROTO_SEVILLE);
164
165static struct dsa_tag_driver *ocelot_tag_driver_array[] = {
166 &DSA_TAG_DRIVER_NAME(ocelot_netdev_ops),
167 &DSA_TAG_DRIVER_NAME(seville_netdev_ops),
168};
169
170module_dsa_tag_drivers(ocelot_tag_driver_array);
171
172MODULE_LICENSE("GPL v2");
1// SPDX-License-Identifier: GPL-2.0
2/* Copyright 2019 NXP Semiconductors
3 */
4#include <soc/mscc/ocelot.h>
5#include <linux/packing.h>
6#include "dsa_priv.h"
7
8/* The CPU injection header and the CPU extraction header can have 3 types of
9 * prefixes: long, short and no prefix. The format of the header itself is the
10 * same in all 3 cases.
11 *
12 * Extraction with long prefix:
13 *
14 * +-------------------+-------------------+------+------+------------+-------+
15 * | ff:ff:ff:ff:ff:ff | ff:ff:ff:ff:ff:ff | 8880 | 000a | extraction | frame |
16 * | | | | | header | |
17 * +-------------------+-------------------+------+------+------------+-------+
18 * 48 bits 48 bits 16 bits 16 bits 128 bits
19 *
20 * Extraction with short prefix:
21 *
22 * +------+------+------------+-------+
23 * | 8880 | 000a | extraction | frame |
24 * | | | header | |
25 * +------+------+------------+-------+
26 * 16 bits 16 bits 128 bits
27 *
28 * Extraction with no prefix:
29 *
30 * +------------+-------+
31 * | extraction | frame |
32 * | header | |
33 * +------------+-------+
34 * 128 bits
35 *
36 *
37 * Injection with long prefix:
38 *
39 * +-------------------+-------------------+------+------+------------+-------+
40 * | any dmac | any smac | 8880 | 000a | injection | frame |
41 * | | | | | header | |
42 * +-------------------+-------------------+------+------+------------+-------+
43 * 48 bits 48 bits 16 bits 16 bits 128 bits
44 *
45 * Injection with short prefix:
46 *
47 * +------+------+------------+-------+
48 * | 8880 | 000a | injection | frame |
49 * | | | header | |
50 * +------+------+------------+-------+
51 * 16 bits 16 bits 128 bits
52 *
53 * Injection with no prefix:
54 *
55 * +------------+-------+
56 * | injection | frame |
57 * | header | |
58 * +------------+-------+
59 * 128 bits
60 *
61 * The injection header looks like this (network byte order, bit 127
62 * is part of lowest address byte in memory, bit 0 is part of highest
63 * address byte):
64 *
65 * +------+------+------+------+------+------+------+------+
66 * 127:120 |BYPASS| MASQ | MASQ_PORT |REW_OP|REW_OP|
67 * +------+------+------+------+------+------+------+------+
68 * 119:112 | REW_OP |
69 * +------+------+------+------+------+------+------+------+
70 * 111:104 | REW_VAL |
71 * +------+------+------+------+------+------+------+------+
72 * 103: 96 | REW_VAL |
73 * +------+------+------+------+------+------+------+------+
74 * 95: 88 | REW_VAL |
75 * +------+------+------+------+------+------+------+------+
76 * 87: 80 | REW_VAL |
77 * +------+------+------+------+------+------+------+------+
78 * 79: 72 | RSV |
79 * +------+------+------+------+------+------+------+------+
80 * 71: 64 | RSV | DEST |
81 * +------+------+------+------+------+------+------+------+
82 * 63: 56 | DEST |
83 * +------+------+------+------+------+------+------+------+
84 * 55: 48 | RSV |
85 * +------+------+------+------+------+------+------+------+
86 * 47: 40 | RSV | SRC_PORT | RSV |TFRM_TIMER|
87 * +------+------+------+------+------+------+------+------+
88 * 39: 32 | TFRM_TIMER | RSV |
89 * +------+------+------+------+------+------+------+------+
90 * 31: 24 | RSV | DP | POP_CNT | CPUQ |
91 * +------+------+------+------+------+------+------+------+
92 * 23: 16 | CPUQ | QOS_CLASS |TAG_TYPE|
93 * +------+------+------+------+------+------+------+------+
94 * 15: 8 | PCP | DEI | VID |
95 * +------+------+------+------+------+------+------+------+
96 * 7: 0 | VID |
97 * +------+------+------+------+------+------+------+------+
98 *
99 * And the extraction header looks like this:
100 *
101 * +------+------+------+------+------+------+------+------+
102 * 127:120 | RSV | REW_OP |
103 * +------+------+------+------+------+------+------+------+
104 * 119:112 | REW_OP | REW_VAL |
105 * +------+------+------+------+------+------+------+------+
106 * 111:104 | REW_VAL |
107 * +------+------+------+------+------+------+------+------+
108 * 103: 96 | REW_VAL |
109 * +------+------+------+------+------+------+------+------+
110 * 95: 88 | REW_VAL |
111 * +------+------+------+------+------+------+------+------+
112 * 87: 80 | REW_VAL | LLEN |
113 * +------+------+------+------+------+------+------+------+
114 * 79: 72 | LLEN | WLEN |
115 * +------+------+------+------+------+------+------+------+
116 * 71: 64 | WLEN | RSV |
117 * +------+------+------+------+------+------+------+------+
118 * 63: 56 | RSV |
119 * +------+------+------+------+------+------+------+------+
120 * 55: 48 | RSV |
121 * +------+------+------+------+------+------+------+------+
122 * 47: 40 | RSV | SRC_PORT | ACL_ID |
123 * +------+------+------+------+------+------+------+------+
124 * 39: 32 | ACL_ID | RSV | SFLOW_ID |
125 * +------+------+------+------+------+------+------+------+
126 * 31: 24 |ACL_HIT| DP | LRN_FLAGS | CPUQ |
127 * +------+------+------+------+------+------+------+------+
128 * 23: 16 | CPUQ | QOS_CLASS |TAG_TYPE|
129 * +------+------+------+------+------+------+------+------+
130 * 15: 8 | PCP | DEI | VID |
131 * +------+------+------+------+------+------+------+------+
132 * 7: 0 | VID |
133 * +------+------+------+------+------+------+------+------+
134 */
135
136static struct sk_buff *ocelot_xmit(struct sk_buff *skb,
137 struct net_device *netdev)
138{
139 struct dsa_port *dp = dsa_slave_to_port(netdev);
140 struct dsa_switch *ds = dp->ds;
141 struct ocelot *ocelot = ds->priv;
142 struct ocelot_port *ocelot_port;
143 u64 qos_class, rew_op;
144 u8 *injection;
145
146 if (unlikely(skb_cow_head(skb, OCELOT_TAG_LEN) < 0)) {
147 netdev_err(netdev, "Cannot make room for tag.\n");
148 return NULL;
149 }
150
151 ocelot_port = ocelot->ports[dp->index];
152
153 injection = skb_push(skb, OCELOT_TAG_LEN);
154
155 memcpy(injection, ocelot_port->xmit_template, OCELOT_TAG_LEN);
156 /* Fix up the fields which are not statically determined
157 * in the template
158 */
159 qos_class = skb->priority;
160 packing(injection, &qos_class, 19, 17, OCELOT_TAG_LEN, PACK, 0);
161
162 if (ocelot->ptp && (skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP)) {
163 struct sk_buff *clone = DSA_SKB_CB(skb)->clone;
164
165 rew_op = ocelot_port->ptp_cmd;
166 /* Retrieve timestamp ID populated inside skb->cb[0] of the
167 * clone by ocelot_port_add_txtstamp_skb
168 */
169 if (ocelot_port->ptp_cmd == IFH_REW_OP_TWO_STEP_PTP)
170 rew_op |= clone->cb[0] << 3;
171
172 packing(injection, &rew_op, 125, 117, OCELOT_TAG_LEN, PACK, 0);
173 }
174
175 return skb;
176}
177
178static struct sk_buff *ocelot_rcv(struct sk_buff *skb,
179 struct net_device *netdev,
180 struct packet_type *pt)
181{
182 u64 src_port, qos_class;
183 u8 *start = skb->data;
184 u8 *extraction;
185
186 /* Revert skb->data by the amount consumed by the DSA master,
187 * so it points to the beginning of the frame.
188 */
189 skb_push(skb, ETH_HLEN);
190 /* We don't care about the long prefix, it is just for easy entrance
191 * into the DSA master's RX filter. Discard it now by moving it into
192 * the headroom.
193 */
194 skb_pull(skb, OCELOT_LONG_PREFIX_LEN);
195 /* And skb->data now points to the extraction frame header.
196 * Keep a pointer to it.
197 */
198 extraction = skb->data;
199 /* Now the EFH is part of the headroom as well */
200 skb_pull(skb, OCELOT_TAG_LEN);
201 /* Reset the pointer to the real MAC header */
202 skb_reset_mac_header(skb);
203 skb_reset_mac_len(skb);
204 /* And move skb->data to the correct location again */
205 skb_pull(skb, ETH_HLEN);
206
207 /* Remove from inet csum the extraction header */
208 skb_postpull_rcsum(skb, start, OCELOT_LONG_PREFIX_LEN + OCELOT_TAG_LEN);
209
210 packing(extraction, &src_port, 46, 43, OCELOT_TAG_LEN, UNPACK, 0);
211 packing(extraction, &qos_class, 19, 17, OCELOT_TAG_LEN, UNPACK, 0);
212
213 skb->dev = dsa_master_find_slave(netdev, 0, src_port);
214 if (!skb->dev)
215 /* The switch will reflect back some frames sent through
216 * sockets opened on the bare DSA master. These will come back
217 * with src_port equal to the index of the CPU port, for which
218 * there is no slave registered. So don't print any error
219 * message here (ignore and drop those frames).
220 */
221 return NULL;
222
223 skb->offload_fwd_mark = 1;
224 skb->priority = qos_class;
225
226 return skb;
227}
228
229static const struct dsa_device_ops ocelot_netdev_ops = {
230 .name = "ocelot",
231 .proto = DSA_TAG_PROTO_OCELOT,
232 .xmit = ocelot_xmit,
233 .rcv = ocelot_rcv,
234 .overhead = OCELOT_TAG_LEN + OCELOT_LONG_PREFIX_LEN,
235};
236
237MODULE_LICENSE("GPL v2");
238MODULE_ALIAS_DSA_TAG_DRIVER(DSA_TAG_PROTO_OCELOT);
239
240module_dsa_tag_driver(ocelot_netdev_ops);