ff962c141d6f521170cb4afaec84a250e2e36646
[dpdk.git] / drivers / net / cnxk / cnxk_flow.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(C) 2021 Marvell.
3  */
4 #include <cnxk_flow.h>
5
6 const struct cnxk_rte_flow_term_info term[] = {
7         [RTE_FLOW_ITEM_TYPE_ETH] = {ROC_NPC_ITEM_TYPE_ETH,
8                                     sizeof(struct rte_flow_item_eth)},
9         [RTE_FLOW_ITEM_TYPE_VLAN] = {ROC_NPC_ITEM_TYPE_VLAN,
10                                      sizeof(struct rte_flow_item_vlan)},
11         [RTE_FLOW_ITEM_TYPE_E_TAG] = {ROC_NPC_ITEM_TYPE_E_TAG,
12                                       sizeof(struct rte_flow_item_e_tag)},
13         [RTE_FLOW_ITEM_TYPE_IPV4] = {ROC_NPC_ITEM_TYPE_IPV4,
14                                      sizeof(struct rte_flow_item_ipv4)},
15         [RTE_FLOW_ITEM_TYPE_IPV6] = {ROC_NPC_ITEM_TYPE_IPV6,
16                                      sizeof(struct rte_flow_item_ipv6)},
17         [RTE_FLOW_ITEM_TYPE_ARP_ETH_IPV4] = {
18                         ROC_NPC_ITEM_TYPE_ARP_ETH_IPV4,
19                         sizeof(struct rte_flow_item_arp_eth_ipv4)},
20         [RTE_FLOW_ITEM_TYPE_MPLS] = {ROC_NPC_ITEM_TYPE_MPLS,
21                                      sizeof(struct rte_flow_item_mpls)},
22         [RTE_FLOW_ITEM_TYPE_ICMP] = {ROC_NPC_ITEM_TYPE_ICMP,
23                                      sizeof(struct rte_flow_item_icmp)},
24         [RTE_FLOW_ITEM_TYPE_UDP] = {ROC_NPC_ITEM_TYPE_UDP,
25                                     sizeof(struct rte_flow_item_udp)},
26         [RTE_FLOW_ITEM_TYPE_TCP] = {ROC_NPC_ITEM_TYPE_TCP,
27                                     sizeof(struct rte_flow_item_tcp)},
28         [RTE_FLOW_ITEM_TYPE_SCTP] = {ROC_NPC_ITEM_TYPE_SCTP,
29                                      sizeof(struct rte_flow_item_sctp)},
30         [RTE_FLOW_ITEM_TYPE_ESP] = {ROC_NPC_ITEM_TYPE_ESP,
31                                     sizeof(struct rte_flow_item_esp)},
32         [RTE_FLOW_ITEM_TYPE_GRE] = {ROC_NPC_ITEM_TYPE_GRE,
33                                     sizeof(struct rte_flow_item_gre)},
34         [RTE_FLOW_ITEM_TYPE_NVGRE] = {ROC_NPC_ITEM_TYPE_NVGRE,
35                                       sizeof(struct rte_flow_item_nvgre)},
36         [RTE_FLOW_ITEM_TYPE_VXLAN] = {ROC_NPC_ITEM_TYPE_VXLAN,
37                                       sizeof(struct rte_flow_item_vxlan)},
38         [RTE_FLOW_ITEM_TYPE_GTPC] = {ROC_NPC_ITEM_TYPE_GTPC,
39                                      sizeof(struct rte_flow_item_gtp)},
40         [RTE_FLOW_ITEM_TYPE_GTPU] = {ROC_NPC_ITEM_TYPE_GTPU,
41                                      sizeof(struct rte_flow_item_gtp)},
42         [RTE_FLOW_ITEM_TYPE_GENEVE] = {ROC_NPC_ITEM_TYPE_GENEVE,
43                                        sizeof(struct rte_flow_item_geneve)},
44         [RTE_FLOW_ITEM_TYPE_VXLAN_GPE] = {
45                         ROC_NPC_ITEM_TYPE_VXLAN_GPE,
46                         sizeof(struct rte_flow_item_vxlan_gpe)},
47         [RTE_FLOW_ITEM_TYPE_IPV6_EXT] = {ROC_NPC_ITEM_TYPE_IPV6_EXT,
48                                          sizeof(struct rte_flow_item_ipv6_ext)},
49         [RTE_FLOW_ITEM_TYPE_VOID] = {ROC_NPC_ITEM_TYPE_VOID, 0},
50         [RTE_FLOW_ITEM_TYPE_ANY] = {ROC_NPC_ITEM_TYPE_ANY, 0},
51         [RTE_FLOW_ITEM_TYPE_GRE_KEY] = {ROC_NPC_ITEM_TYPE_GRE_KEY,
52                                         sizeof(uint32_t)},
53         [RTE_FLOW_ITEM_TYPE_HIGIG2] = {ROC_NPC_ITEM_TYPE_HIGIG2,
54                                        sizeof(struct rte_flow_item_higig2_hdr)},
55         [RTE_FLOW_ITEM_TYPE_RAW] = {ROC_NPC_ITEM_TYPE_RAW,
56                                     sizeof(struct rte_flow_item_raw)},
57         [RTE_FLOW_ITEM_TYPE_MARK] = {ROC_NPC_ITEM_TYPE_MARK,
58                                      sizeof(struct rte_flow_item_mark)}};
59
60 static int
61 npc_rss_action_validate(struct rte_eth_dev *eth_dev,
62                         const struct rte_flow_attr *attr,
63                         const struct rte_flow_action *act)
64 {
65         const struct rte_flow_action_rss *rss;
66
67         rss = (const struct rte_flow_action_rss *)act->conf;
68
69         if (attr->egress) {
70                 plt_err("No support of RSS in egress");
71                 return -EINVAL;
72         }
73
74         if (eth_dev->data->dev_conf.rxmode.mq_mode != RTE_ETH_MQ_RX_RSS) {
75                 plt_err("multi-queue mode is disabled");
76                 return -ENOTSUP;
77         }
78
79         if (!rss || !rss->queue_num) {
80                 plt_err("no valid queues");
81                 return -EINVAL;
82         }
83
84         if (rss->func != RTE_ETH_HASH_FUNCTION_DEFAULT) {
85                 plt_err("non-default RSS hash functions are not supported");
86                 return -ENOTSUP;
87         }
88
89         if (rss->key_len && rss->key_len > ROC_NIX_RSS_KEY_LEN) {
90                 plt_err("RSS hash key too large");
91                 return -ENOTSUP;
92         }
93
94         return 0;
95 }
96
97 static void
98 npc_rss_flowkey_get(struct cnxk_eth_dev *eth_dev,
99                     const struct roc_npc_action *rss_action,
100                     uint32_t *flowkey_cfg)
101 {
102         const struct roc_npc_action_rss *rss;
103
104         rss = (const struct roc_npc_action_rss *)rss_action->conf;
105
106         *flowkey_cfg = cnxk_rss_ethdev_to_nix(eth_dev, rss->types, rss->level);
107 }
108
109 static int
110 cnxk_map_actions(struct rte_eth_dev *eth_dev, const struct rte_flow_attr *attr,
111                  const struct rte_flow_action actions[],
112                  struct roc_npc_action in_actions[], uint32_t *flowkey_cfg)
113 {
114         struct cnxk_eth_dev *dev = cnxk_eth_pmd_priv(eth_dev);
115         const struct rte_flow_action_port_id *port_act;
116         const struct rte_flow_action_queue *act_q;
117         struct roc_npc *roc_npc_src = &dev->npc;
118         struct rte_eth_dev *portid_eth_dev;
119         char if_name[RTE_ETH_NAME_MAX_LEN];
120         struct cnxk_eth_dev *hw_dst;
121         struct roc_npc *roc_npc_dst;
122         int i = 0, rc = 0;
123         int rq;
124
125         for (; actions->type != RTE_FLOW_ACTION_TYPE_END; actions++) {
126                 switch (actions->type) {
127                 case RTE_FLOW_ACTION_TYPE_VOID:
128                         in_actions[i].type = ROC_NPC_ACTION_TYPE_VOID;
129                         break;
130
131                 case RTE_FLOW_ACTION_TYPE_MARK:
132                         in_actions[i].type = ROC_NPC_ACTION_TYPE_MARK;
133                         in_actions[i].conf = actions->conf;
134                         break;
135
136                 case RTE_FLOW_ACTION_TYPE_FLAG:
137                         in_actions[i].type = ROC_NPC_ACTION_TYPE_FLAG;
138                         break;
139
140                 case RTE_FLOW_ACTION_TYPE_COUNT:
141                         in_actions[i].type = ROC_NPC_ACTION_TYPE_COUNT;
142                         break;
143
144                 case RTE_FLOW_ACTION_TYPE_DROP:
145                         in_actions[i].type = ROC_NPC_ACTION_TYPE_DROP;
146                         break;
147
148                 case RTE_FLOW_ACTION_TYPE_PF:
149                         in_actions[i].type = ROC_NPC_ACTION_TYPE_PF;
150                         break;
151
152                 case RTE_FLOW_ACTION_TYPE_VF:
153                         in_actions[i].type = ROC_NPC_ACTION_TYPE_VF;
154                         in_actions[i].conf = actions->conf;
155                         break;
156
157                 case RTE_FLOW_ACTION_TYPE_PORT_ID:
158                         in_actions[i].type = ROC_NPC_ACTION_TYPE_PORT_ID;
159                         in_actions[i].conf = actions->conf;
160                         port_act = (const struct rte_flow_action_port_id *)
161                                            actions->conf;
162                         if (rte_eth_dev_get_name_by_port(port_act->id,
163                                                          if_name)) {
164                                 plt_err("Name not found for output port id");
165                                 goto err_exit;
166                         }
167                         portid_eth_dev = rte_eth_dev_allocated(if_name);
168                         if (!portid_eth_dev) {
169                                 plt_err("eth_dev not found for output port id");
170                                 goto err_exit;
171                         }
172                         if (strcmp(portid_eth_dev->device->driver->name,
173                                    eth_dev->device->driver->name) != 0) {
174                                 plt_err("Output port not under same driver");
175                                 goto err_exit;
176                         }
177                         hw_dst = portid_eth_dev->data->dev_private;
178                         roc_npc_dst = &hw_dst->npc;
179
180                         rc = roc_npc_validate_portid_action(roc_npc_src,
181                                                             roc_npc_dst);
182
183                         if (rc)
184                                 goto err_exit;
185                         break;
186
187                 case RTE_FLOW_ACTION_TYPE_QUEUE:
188                         act_q = (const struct rte_flow_action_queue *)
189                                         actions->conf;
190                         rq = act_q->index;
191                         if (rq >= eth_dev->data->nb_rx_queues) {
192                                 plt_npc_dbg("Invalid queue index");
193                                 goto err_exit;
194                         }
195                         in_actions[i].type = ROC_NPC_ACTION_TYPE_QUEUE;
196                         in_actions[i].conf = actions->conf;
197                         break;
198
199                 case RTE_FLOW_ACTION_TYPE_RSS:
200                         rc = npc_rss_action_validate(eth_dev, attr, actions);
201                         if (rc)
202                                 goto err_exit;
203                         in_actions[i].type = ROC_NPC_ACTION_TYPE_RSS;
204                         in_actions[i].conf = actions->conf;
205                         npc_rss_flowkey_get(dev, &in_actions[i], flowkey_cfg);
206                         break;
207
208                 case RTE_FLOW_ACTION_TYPE_SECURITY:
209                         in_actions[i].type = ROC_NPC_ACTION_TYPE_SEC;
210                         break;
211                 case RTE_FLOW_ACTION_TYPE_OF_POP_VLAN:
212                         in_actions[i].type = ROC_NPC_ACTION_TYPE_VLAN_STRIP;
213                         break;
214                 case RTE_FLOW_ACTION_TYPE_OF_SET_VLAN_VID:
215                         in_actions[i].type = ROC_NPC_ACTION_TYPE_VLAN_INSERT;
216                         in_actions[i].conf = actions->conf;
217                         break;
218                 case RTE_FLOW_ACTION_TYPE_OF_PUSH_VLAN:
219                         in_actions[i].type =
220                                 ROC_NPC_ACTION_TYPE_VLAN_ETHTYPE_INSERT;
221                         in_actions[i].conf = actions->conf;
222                         break;
223                 case RTE_FLOW_ACTION_TYPE_OF_SET_VLAN_PCP:
224                         in_actions[i].type =
225                                 ROC_NPC_ACTION_TYPE_VLAN_PCP_INSERT;
226                         in_actions[i].conf = actions->conf;
227                         break;
228                 case RTE_FLOW_ACTION_TYPE_METER:
229                         in_actions[i].type = ROC_NPC_ACTION_TYPE_METER;
230                         in_actions[i].conf = actions->conf;
231                         break;
232                 default:
233                         plt_npc_dbg("Action is not supported = %d",
234                                     actions->type);
235                         goto err_exit;
236                 }
237                 i++;
238         }
239         in_actions[i].type = ROC_NPC_ACTION_TYPE_END;
240         return 0;
241
242 err_exit:
243         return -EINVAL;
244 }
245
246 static int
247 cnxk_map_flow_data(struct rte_eth_dev *eth_dev,
248                    const struct rte_flow_attr *attr,
249                    const struct rte_flow_item pattern[],
250                    const struct rte_flow_action actions[],
251                    struct roc_npc_attr *in_attr,
252                    struct roc_npc_item_info in_pattern[],
253                    struct roc_npc_action in_actions[], uint32_t *flowkey_cfg)
254 {
255         int i = 0;
256
257         in_attr->priority = attr->priority;
258         in_attr->ingress = attr->ingress;
259         in_attr->egress = attr->egress;
260
261         while (pattern->type != RTE_FLOW_ITEM_TYPE_END) {
262                 in_pattern[i].spec = pattern->spec;
263                 in_pattern[i].last = pattern->last;
264                 in_pattern[i].mask = pattern->mask;
265                 in_pattern[i].type = term[pattern->type].item_type;
266                 in_pattern[i].size = term[pattern->type].item_size;
267                 pattern++;
268                 i++;
269         }
270         in_pattern[i].type = ROC_NPC_ITEM_TYPE_END;
271
272         return cnxk_map_actions(eth_dev, attr, actions, in_actions,
273                                 flowkey_cfg);
274 }
275
276 static int
277 cnxk_flow_validate(struct rte_eth_dev *eth_dev,
278                    const struct rte_flow_attr *attr,
279                    const struct rte_flow_item pattern[],
280                    const struct rte_flow_action actions[],
281                    struct rte_flow_error *error)
282 {
283         struct roc_npc_item_info in_pattern[ROC_NPC_ITEM_TYPE_END + 1];
284         struct roc_npc_action in_actions[ROC_NPC_MAX_ACTION_COUNT];
285         struct cnxk_eth_dev *dev = cnxk_eth_pmd_priv(eth_dev);
286         struct roc_npc *npc = &dev->npc;
287         struct roc_npc_attr in_attr;
288         struct roc_npc_flow flow;
289         uint32_t flowkey_cfg = 0;
290         int rc;
291
292         memset(&flow, 0, sizeof(flow));
293
294         rc = cnxk_map_flow_data(eth_dev, attr, pattern, actions, &in_attr,
295                                 in_pattern, in_actions, &flowkey_cfg);
296         if (rc) {
297                 rte_flow_error_set(error, 0, RTE_FLOW_ERROR_TYPE_ACTION_NUM,
298                                    NULL, "Failed to map flow data");
299                 return rc;
300         }
301
302         return roc_npc_flow_parse(npc, &in_attr, in_pattern, in_actions, &flow);
303 }
304
305 struct roc_npc_flow *
306 cnxk_flow_create(struct rte_eth_dev *eth_dev, const struct rte_flow_attr *attr,
307                  const struct rte_flow_item pattern[],
308                  const struct rte_flow_action actions[],
309                  struct rte_flow_error *error)
310 {
311         struct cnxk_eth_dev *dev = cnxk_eth_pmd_priv(eth_dev);
312         struct roc_npc_item_info in_pattern[ROC_NPC_ITEM_TYPE_END + 1];
313         struct roc_npc_action in_actions[ROC_NPC_MAX_ACTION_COUNT];
314         struct roc_npc *npc = &dev->npc;
315         struct roc_npc_attr in_attr;
316         struct roc_npc_flow *flow;
317         int errcode = 0;
318         int rc;
319
320         rc = cnxk_map_flow_data(eth_dev, attr, pattern, actions, &in_attr,
321                                 in_pattern, in_actions,
322                                 &npc->flowkey_cfg_state);
323         if (rc) {
324                 rte_flow_error_set(error, 0, RTE_FLOW_ERROR_TYPE_ACTION_NUM,
325                                    NULL, "Failed to map flow data");
326                 return NULL;
327         }
328
329         flow = roc_npc_flow_create(npc, &in_attr, in_pattern, in_actions,
330                                    &errcode);
331         if (errcode != 0) {
332                 rte_flow_error_set(error, errcode, errcode, NULL,
333                                    roc_error_msg_get(errcode));
334                 return NULL;
335         }
336
337         return flow;
338 }
339
340 int
341 cnxk_flow_destroy(struct rte_eth_dev *eth_dev, struct roc_npc_flow *flow,
342                   struct rte_flow_error *error)
343 {
344         struct cnxk_eth_dev *dev = cnxk_eth_pmd_priv(eth_dev);
345         struct roc_npc *npc = &dev->npc;
346         int rc;
347
348         rc = roc_npc_flow_destroy(npc, flow);
349         if (rc)
350                 rte_flow_error_set(error, rc, RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
351                                    NULL, "Flow Destroy failed");
352         return rc;
353 }
354
355 static int
356 cnxk_flow_flush(struct rte_eth_dev *eth_dev, struct rte_flow_error *error)
357 {
358         struct cnxk_eth_dev *dev = cnxk_eth_pmd_priv(eth_dev);
359         struct roc_npc *npc = &dev->npc;
360         int rc;
361
362         rc = roc_npc_mcam_free_all_resources(npc);
363         if (rc) {
364                 rte_flow_error_set(error, EIO, RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
365                                    NULL, "Failed to flush filter");
366                 return -rte_errno;
367         }
368
369         return 0;
370 }
371
372 static int
373 cnxk_flow_query(struct rte_eth_dev *eth_dev, struct rte_flow *flow,
374                 const struct rte_flow_action *action, void *data,
375                 struct rte_flow_error *error)
376 {
377         struct roc_npc_flow *in_flow = (struct roc_npc_flow *)flow;
378         struct cnxk_eth_dev *dev = cnxk_eth_pmd_priv(eth_dev);
379         struct roc_npc *npc = &dev->npc;
380         struct rte_flow_query_count *query = data;
381         const char *errmsg = NULL;
382         int errcode = ENOTSUP;
383         int rc;
384
385         if (action->type != RTE_FLOW_ACTION_TYPE_COUNT) {
386                 errmsg = "Only COUNT is supported in query";
387                 goto err_exit;
388         }
389
390         if (in_flow->ctr_id == NPC_COUNTER_NONE) {
391                 errmsg = "Counter is not available";
392                 goto err_exit;
393         }
394
395         rc = roc_npc_mcam_read_counter(npc, in_flow->ctr_id, &query->hits);
396         if (rc != 0) {
397                 errcode = EIO;
398                 errmsg = "Error reading flow counter";
399                 goto err_exit;
400         }
401         query->hits_set = 1;
402         query->bytes_set = 0;
403
404         if (query->reset)
405                 rc = roc_npc_mcam_clear_counter(npc, in_flow->ctr_id);
406         if (rc != 0) {
407                 errcode = EIO;
408                 errmsg = "Error clearing flow counter";
409                 goto err_exit;
410         }
411
412         return 0;
413
414 err_exit:
415         rte_flow_error_set(error, errcode, RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
416                            NULL, errmsg);
417         return -rte_errno;
418 }
419
420 static int
421 cnxk_flow_isolate(struct rte_eth_dev *eth_dev __rte_unused,
422                   int enable __rte_unused, struct rte_flow_error *error)
423 {
424         /* If we support, we need to un-install the default mcam
425          * entry for this port.
426          */
427
428         rte_flow_error_set(error, ENOTSUP, RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
429                            NULL, "Flow isolation not supported");
430
431         return -rte_errno;
432 }
433
434 static int
435 cnxk_flow_dev_dump(struct rte_eth_dev *eth_dev, struct rte_flow *flow,
436                    FILE *file, struct rte_flow_error *error)
437 {
438         struct cnxk_eth_dev *dev = cnxk_eth_pmd_priv(eth_dev);
439         struct roc_npc *npc = &dev->npc;
440
441         if (file == NULL) {
442                 rte_flow_error_set(error, EINVAL,
443                                    RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL,
444                                    "Invalid file");
445                 return -rte_errno;
446         }
447
448         if (flow != NULL) {
449                 rte_flow_error_set(error, EINVAL,
450                                    RTE_FLOW_ERROR_TYPE_HANDLE,
451                                    NULL,
452                                    "Invalid argument");
453                 return -EINVAL;
454         }
455
456         roc_npc_flow_dump(file, npc);
457
458         return 0;
459 }
460
461 struct rte_flow_ops cnxk_flow_ops = {
462         .validate = cnxk_flow_validate,
463         .flush = cnxk_flow_flush,
464         .query = cnxk_flow_query,
465         .isolate = cnxk_flow_isolate,
466         .dev_dump = cnxk_flow_dev_dump,
467 };