New upstream version 18.08
[deb_dpdk.git] / drivers / net / cxgbe / cxgbe_flow.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2018 Chelsio Communications.
3  * All rights reserved.
4  */
5 #include "common.h"
6 #include "cxgbe_flow.h"
7
8 #define __CXGBE_FILL_FS(__v, __m, fs, elem, e) \
9 do { \
10         if (!((fs)->val.elem || (fs)->mask.elem)) { \
11                 (fs)->val.elem = (__v); \
12                 (fs)->mask.elem = (__m); \
13         } else { \
14                 return rte_flow_error_set(e, EINVAL, RTE_FLOW_ERROR_TYPE_ITEM, \
15                                           NULL, "a filter can be specified" \
16                                           " only once"); \
17         } \
18 } while (0)
19
20 #define __CXGBE_FILL_FS_MEMCPY(__v, __m, fs, elem) \
21 do { \
22         memcpy(&(fs)->val.elem, &(__v), sizeof(__v)); \
23         memcpy(&(fs)->mask.elem, &(__m), sizeof(__m)); \
24 } while (0)
25
26 #define CXGBE_FILL_FS(v, m, elem) \
27         __CXGBE_FILL_FS(v, m, fs, elem, e)
28
29 #define CXGBE_FILL_FS_MEMCPY(v, m, elem) \
30         __CXGBE_FILL_FS_MEMCPY(v, m, fs, elem)
31
32 static int
33 cxgbe_validate_item(const struct rte_flow_item *i, struct rte_flow_error *e)
34 {
35         /* rte_flow specification does not allow it. */
36         if (!i->spec && (i->mask ||  i->last))
37                 return rte_flow_error_set(e, EINVAL, RTE_FLOW_ERROR_TYPE_ITEM,
38                                    i, "last or mask given without spec");
39         /*
40          * We don't support it.
41          * Although, we can support values in last as 0's or last == spec.
42          * But this will not provide user with any additional functionality
43          * and will only increase the complexity for us.
44          */
45         if (i->last)
46                 return rte_flow_error_set(e, ENOTSUP, RTE_FLOW_ERROR_TYPE_ITEM,
47                                    i, "last is not supported by chelsio pmd");
48         return 0;
49 }
50
51 static void
52 cxgbe_fill_filter_region(struct adapter *adap,
53                          struct ch_filter_specification *fs)
54 {
55         struct tp_params *tp = &adap->params.tp;
56         u64 hash_filter_mask = tp->hash_filter_mask;
57         u64 ntuple_mask = 0;
58
59         fs->cap = 0;
60
61         if (!is_hashfilter(adap))
62                 return;
63
64         if (fs->type) {
65                 uint8_t biton[16] = {0xff, 0xff, 0xff, 0xff,
66                                      0xff, 0xff, 0xff, 0xff,
67                                      0xff, 0xff, 0xff, 0xff,
68                                      0xff, 0xff, 0xff, 0xff};
69                 uint8_t bitoff[16] = {0};
70
71                 if (!memcmp(fs->val.lip, bitoff, sizeof(bitoff)) ||
72                     !memcmp(fs->val.fip, bitoff, sizeof(bitoff)) ||
73                     memcmp(fs->mask.lip, biton, sizeof(biton)) ||
74                     memcmp(fs->mask.fip, biton, sizeof(biton)))
75                         return;
76         } else {
77                 uint32_t biton  = 0xffffffff;
78                 uint32_t bitoff = 0x0U;
79
80                 if (!memcmp(fs->val.lip, &bitoff, sizeof(bitoff)) ||
81                     !memcmp(fs->val.fip, &bitoff, sizeof(bitoff)) ||
82                     memcmp(fs->mask.lip, &biton, sizeof(biton)) ||
83                     memcmp(fs->mask.fip, &biton, sizeof(biton)))
84                         return;
85         }
86
87         if (!fs->val.lport || fs->mask.lport != 0xffff)
88                 return;
89         if (!fs->val.fport || fs->mask.fport != 0xffff)
90                 return;
91
92         if (tp->protocol_shift >= 0)
93                 ntuple_mask |= (u64)fs->mask.proto << tp->protocol_shift;
94         if (tp->ethertype_shift >= 0)
95                 ntuple_mask |= (u64)fs->mask.ethtype << tp->ethertype_shift;
96         if (tp->port_shift >= 0)
97                 ntuple_mask |= (u64)fs->mask.iport << tp->port_shift;
98
99         if (ntuple_mask != hash_filter_mask)
100                 return;
101
102         fs->cap = 1;    /* use hash region */
103 }
104
105 static int
106 ch_rte_parsetype_port(const void *dmask, const struct rte_flow_item *item,
107                       struct ch_filter_specification *fs,
108                       struct rte_flow_error *e)
109 {
110         const struct rte_flow_item_phy_port *val = item->spec;
111         const struct rte_flow_item_phy_port *umask = item->mask;
112         const struct rte_flow_item_phy_port *mask;
113
114         mask = umask ? umask : (const struct rte_flow_item_phy_port *)dmask;
115
116         if (val->index > 0x7)
117                 return rte_flow_error_set(e, EINVAL, RTE_FLOW_ERROR_TYPE_ITEM,
118                                           item,
119                                           "port index upto 0x7 is supported");
120
121         CXGBE_FILL_FS(val->index, mask->index, iport);
122
123         return 0;
124 }
125
126 static int
127 ch_rte_parsetype_udp(const void *dmask, const struct rte_flow_item *item,
128                      struct ch_filter_specification *fs,
129                      struct rte_flow_error *e)
130 {
131         const struct rte_flow_item_udp *val = item->spec;
132         const struct rte_flow_item_udp *umask = item->mask;
133         const struct rte_flow_item_udp *mask;
134
135         mask = umask ? umask : (const struct rte_flow_item_udp *)dmask;
136
137         if (mask->hdr.dgram_len || mask->hdr.dgram_cksum)
138                 return rte_flow_error_set(e, ENOTSUP, RTE_FLOW_ERROR_TYPE_ITEM,
139                                           item,
140                                           "udp: only src/dst port supported");
141
142         CXGBE_FILL_FS(IPPROTO_UDP, 0xff, proto);
143         if (!val)
144                 return 0;
145         CXGBE_FILL_FS(be16_to_cpu(val->hdr.src_port),
146                       be16_to_cpu(mask->hdr.src_port), fport);
147         CXGBE_FILL_FS(be16_to_cpu(val->hdr.dst_port),
148                       be16_to_cpu(mask->hdr.dst_port), lport);
149         return 0;
150 }
151
152 static int
153 ch_rte_parsetype_tcp(const void *dmask, const struct rte_flow_item *item,
154                      struct ch_filter_specification *fs,
155                      struct rte_flow_error *e)
156 {
157         const struct rte_flow_item_tcp *val = item->spec;
158         const struct rte_flow_item_tcp *umask = item->mask;
159         const struct rte_flow_item_tcp *mask;
160
161         mask = umask ? umask : (const struct rte_flow_item_tcp *)dmask;
162
163         if (mask->hdr.sent_seq || mask->hdr.recv_ack || mask->hdr.data_off ||
164             mask->hdr.tcp_flags || mask->hdr.rx_win || mask->hdr.cksum ||
165             mask->hdr.tcp_urp)
166                 return rte_flow_error_set(e, ENOTSUP, RTE_FLOW_ERROR_TYPE_ITEM,
167                                           item,
168                                           "tcp: only src/dst port supported");
169
170         CXGBE_FILL_FS(IPPROTO_TCP, 0xff, proto);
171         if (!val)
172                 return 0;
173         CXGBE_FILL_FS(be16_to_cpu(val->hdr.src_port),
174                       be16_to_cpu(mask->hdr.src_port), fport);
175         CXGBE_FILL_FS(be16_to_cpu(val->hdr.dst_port),
176                       be16_to_cpu(mask->hdr.dst_port), lport);
177         return 0;
178 }
179
180 static int
181 ch_rte_parsetype_ipv4(const void *dmask, const struct rte_flow_item *item,
182                       struct ch_filter_specification *fs,
183                       struct rte_flow_error *e)
184 {
185         const struct rte_flow_item_ipv4 *val = item->spec;
186         const struct rte_flow_item_ipv4 *umask = item->mask;
187         const struct rte_flow_item_ipv4 *mask;
188
189         mask = umask ? umask : (const struct rte_flow_item_ipv4 *)dmask;
190
191         if (mask->hdr.time_to_live || mask->hdr.type_of_service)
192                 return rte_flow_error_set(e, ENOTSUP, RTE_FLOW_ERROR_TYPE_ITEM,
193                                           item, "ttl/tos are not supported");
194
195         fs->type = FILTER_TYPE_IPV4;
196         CXGBE_FILL_FS(ETHER_TYPE_IPv4, 0xffff, ethtype);
197         if (!val)
198                 return 0; /* ipv4 wild card */
199
200         CXGBE_FILL_FS(val->hdr.next_proto_id, mask->hdr.next_proto_id, proto);
201         CXGBE_FILL_FS_MEMCPY(val->hdr.dst_addr, mask->hdr.dst_addr, lip);
202         CXGBE_FILL_FS_MEMCPY(val->hdr.src_addr, mask->hdr.src_addr, fip);
203
204         return 0;
205 }
206
207 static int
208 ch_rte_parsetype_ipv6(const void *dmask, const struct rte_flow_item *item,
209                       struct ch_filter_specification *fs,
210                       struct rte_flow_error *e)
211 {
212         const struct rte_flow_item_ipv6 *val = item->spec;
213         const struct rte_flow_item_ipv6 *umask = item->mask;
214         const struct rte_flow_item_ipv6 *mask;
215
216         mask = umask ? umask : (const struct rte_flow_item_ipv6 *)dmask;
217
218         if (mask->hdr.vtc_flow ||
219             mask->hdr.payload_len || mask->hdr.hop_limits)
220                 return rte_flow_error_set(e, ENOTSUP, RTE_FLOW_ERROR_TYPE_ITEM,
221                                           item,
222                                           "tc/flow/hop are not supported");
223
224         fs->type = FILTER_TYPE_IPV6;
225         CXGBE_FILL_FS(ETHER_TYPE_IPv6, 0xffff, ethtype);
226         if (!val)
227                 return 0; /* ipv6 wild card */
228
229         CXGBE_FILL_FS(val->hdr.proto, mask->hdr.proto, proto);
230         CXGBE_FILL_FS_MEMCPY(val->hdr.dst_addr, mask->hdr.dst_addr, lip);
231         CXGBE_FILL_FS_MEMCPY(val->hdr.src_addr, mask->hdr.src_addr, fip);
232
233         return 0;
234 }
235
236 static int
237 cxgbe_rtef_parse_attr(struct rte_flow *flow, const struct rte_flow_attr *attr,
238                       struct rte_flow_error *e)
239 {
240         if (attr->egress)
241                 return rte_flow_error_set(e, ENOTSUP, RTE_FLOW_ERROR_TYPE_ATTR,
242                                           attr, "attribute:<egress> is"
243                                           " not supported !");
244         if (attr->group > 0)
245                 return rte_flow_error_set(e, ENOTSUP, RTE_FLOW_ERROR_TYPE_ATTR,
246                                           attr, "group parameter is"
247                                           " not supported.");
248
249         flow->fidx = attr->priority ? attr->priority - 1 : FILTER_ID_MAX;
250
251         return 0;
252 }
253
254 static inline int check_rxq(struct rte_eth_dev *dev, uint16_t rxq)
255 {
256         struct port_info *pi = ethdev2pinfo(dev);
257
258         if (rxq > pi->n_rx_qsets)
259                 return -EINVAL;
260         return 0;
261 }
262
263 static int cxgbe_validate_fidxondel(struct filter_entry *f, unsigned int fidx)
264 {
265         struct adapter *adap = ethdev2adap(f->dev);
266         struct ch_filter_specification fs = f->fs;
267
268         if (fidx >= adap->tids.nftids) {
269                 dev_err(adap, "invalid flow index %d.\n", fidx);
270                 return -EINVAL;
271         }
272         if (!is_filter_set(&adap->tids, fidx, fs.type)) {
273                 dev_err(adap, "Already free fidx:%d f:%p\n", fidx, f);
274                 return -EINVAL;
275         }
276
277         return 0;
278 }
279
280 static int
281 cxgbe_validate_fidxonadd(struct ch_filter_specification *fs,
282                          struct adapter *adap, unsigned int fidx)
283 {
284         if (is_filter_set(&adap->tids, fidx, fs->type)) {
285                 dev_err(adap, "filter index: %d is busy.\n", fidx);
286                 return -EBUSY;
287         }
288         if (fidx >= adap->tids.nftids) {
289                 dev_err(adap, "filter index (%u) >= max(%u)\n",
290                         fidx, adap->tids.nftids);
291                 return -ERANGE;
292         }
293
294         return 0;
295 }
296
297 static int
298 cxgbe_verify_fidx(struct rte_flow *flow, unsigned int fidx, uint8_t del)
299 {
300         if (flow->fs.cap)
301                 return 0; /* Hash filters */
302         return del ? cxgbe_validate_fidxondel(flow->f, fidx) :
303                 cxgbe_validate_fidxonadd(&flow->fs,
304                                          ethdev2adap(flow->dev), fidx);
305 }
306
307 static int cxgbe_get_fidx(struct rte_flow *flow, unsigned int *fidx)
308 {
309         struct ch_filter_specification *fs = &flow->fs;
310         struct adapter *adap = ethdev2adap(flow->dev);
311
312         /* For tcam get the next available slot, if default value specified */
313         if (flow->fidx == FILTER_ID_MAX) {
314                 int idx;
315
316                 idx = cxgbe_alloc_ftid(adap, fs->type);
317                 if (idx < 0) {
318                         dev_err(adap, "unable to get a filter index in tcam\n");
319                         return -ENOMEM;
320                 }
321                 *fidx = (unsigned int)idx;
322         } else {
323                 *fidx = flow->fidx;
324         }
325
326         return 0;
327 }
328
329 static int
330 ch_rte_parse_atype_switch(const struct rte_flow_action *a,
331                           struct ch_filter_specification *fs,
332                           struct rte_flow_error *e)
333 {
334         const struct rte_flow_action_phy_port *port;
335
336         switch (a->type) {
337         case RTE_FLOW_ACTION_TYPE_PHY_PORT:
338                 port = (const struct rte_flow_action_phy_port *)a->conf;
339                 fs->eport = port->index;
340                 break;
341         default:
342                 /* We are not supposed to come here */
343                 return rte_flow_error_set(e, EINVAL,
344                                           RTE_FLOW_ERROR_TYPE_ACTION, a,
345                                           "Action not supported");
346         }
347
348         return 0;
349 }
350
351 static int
352 cxgbe_rtef_parse_actions(struct rte_flow *flow,
353                          const struct rte_flow_action action[],
354                          struct rte_flow_error *e)
355 {
356         struct ch_filter_specification *fs = &flow->fs;
357         const struct rte_flow_action_queue *q;
358         const struct rte_flow_action *a;
359         char abit = 0;
360         int ret;
361
362         for (a = action; a->type != RTE_FLOW_ACTION_TYPE_END; a++) {
363                 switch (a->type) {
364                 case RTE_FLOW_ACTION_TYPE_VOID:
365                         continue;
366                 case RTE_FLOW_ACTION_TYPE_DROP:
367                         if (abit++)
368                                 return rte_flow_error_set(e, EINVAL,
369                                                 RTE_FLOW_ERROR_TYPE_ACTION, a,
370                                                 "specify only 1 pass/drop");
371                         fs->action = FILTER_DROP;
372                         break;
373                 case RTE_FLOW_ACTION_TYPE_QUEUE:
374                         q = (const struct rte_flow_action_queue *)a->conf;
375                         if (!q)
376                                 return rte_flow_error_set(e, EINVAL,
377                                                 RTE_FLOW_ERROR_TYPE_ACTION, q,
378                                                 "specify rx queue index");
379                         if (check_rxq(flow->dev, q->index))
380                                 return rte_flow_error_set(e, EINVAL,
381                                                 RTE_FLOW_ERROR_TYPE_ACTION, q,
382                                                 "Invalid rx queue");
383                         if (abit++)
384                                 return rte_flow_error_set(e, EINVAL,
385                                                 RTE_FLOW_ERROR_TYPE_ACTION, a,
386                                                 "specify only 1 pass/drop");
387                         fs->action = FILTER_PASS;
388                         fs->dirsteer = 1;
389                         fs->iq = q->index;
390                         break;
391                 case RTE_FLOW_ACTION_TYPE_COUNT:
392                         fs->hitcnts = 1;
393                         break;
394                 case RTE_FLOW_ACTION_TYPE_PHY_PORT:
395                         /* We allow multiple switch actions, but switch is
396                          * not compatible with either queue or drop
397                          */
398                         if (abit++ && fs->action != FILTER_SWITCH)
399                                 return rte_flow_error_set(e, EINVAL,
400                                                 RTE_FLOW_ERROR_TYPE_ACTION, a,
401                                                 "overlapping action specified");
402                         ret = ch_rte_parse_atype_switch(a, fs, e);
403                         if (ret)
404                                 return ret;
405                         fs->action = FILTER_SWITCH;
406                         break;
407                 default:
408                         /* Not supported action : return error */
409                         return rte_flow_error_set(e, ENOTSUP,
410                                                   RTE_FLOW_ERROR_TYPE_ACTION,
411                                                   a, "Action not supported");
412                 }
413         }
414
415         return 0;
416 }
417
418 struct chrte_fparse parseitem[] = {
419                 [RTE_FLOW_ITEM_TYPE_PHY_PORT] = {
420                 .fptr = ch_rte_parsetype_port,
421                 .dmask = &(const struct rte_flow_item_phy_port){
422                         .index = 0x7,
423                 }
424         },
425
426         [RTE_FLOW_ITEM_TYPE_IPV4] = {
427                 .fptr  = ch_rte_parsetype_ipv4,
428                 .dmask = &rte_flow_item_ipv4_mask,
429         },
430
431         [RTE_FLOW_ITEM_TYPE_IPV6] = {
432                 .fptr  = ch_rte_parsetype_ipv6,
433                 .dmask = &rte_flow_item_ipv6_mask,
434         },
435
436         [RTE_FLOW_ITEM_TYPE_UDP] = {
437                 .fptr  = ch_rte_parsetype_udp,
438                 .dmask = &rte_flow_item_udp_mask,
439         },
440
441         [RTE_FLOW_ITEM_TYPE_TCP] = {
442                 .fptr  = ch_rte_parsetype_tcp,
443                 .dmask = &rte_flow_item_tcp_mask,
444         },
445 };
446
447 static int
448 cxgbe_rtef_parse_items(struct rte_flow *flow,
449                        const struct rte_flow_item items[],
450                        struct rte_flow_error *e)
451 {
452         struct adapter *adap = ethdev2adap(flow->dev);
453         const struct rte_flow_item *i;
454         char repeat[ARRAY_SIZE(parseitem)] = {0};
455
456         for (i = items; i->type != RTE_FLOW_ITEM_TYPE_END; i++) {
457                 struct chrte_fparse *idx = &flow->item_parser[i->type];
458                 int ret;
459
460                 if (i->type > ARRAY_SIZE(parseitem))
461                         return rte_flow_error_set(e, ENOTSUP,
462                                                   RTE_FLOW_ERROR_TYPE_ITEM,
463                                                   i, "Item not supported");
464
465                 switch (i->type) {
466                 case RTE_FLOW_ITEM_TYPE_VOID:
467                         continue;
468                 default:
469                         /* check if item is repeated */
470                         if (repeat[i->type])
471                                 return rte_flow_error_set(e, ENOTSUP,
472                                                 RTE_FLOW_ERROR_TYPE_ITEM, i,
473                                                 "parse items cannot be repeated (except void)");
474                         repeat[i->type] = 1;
475
476                         /* validate the item */
477                         ret = cxgbe_validate_item(i, e);
478                         if (ret)
479                                 return ret;
480
481                         if (!idx || !idx->fptr) {
482                                 return rte_flow_error_set(e, ENOTSUP,
483                                                 RTE_FLOW_ERROR_TYPE_ITEM, i,
484                                                 "Item not supported");
485                         } else {
486                                 ret = idx->fptr(idx->dmask, i, &flow->fs, e);
487                                 if (ret)
488                                         return ret;
489                         }
490                 }
491         }
492
493         cxgbe_fill_filter_region(adap, &flow->fs);
494
495         return 0;
496 }
497
498 static int
499 cxgbe_flow_parse(struct rte_flow *flow,
500                  const struct rte_flow_attr *attr,
501                  const struct rte_flow_item item[],
502                  const struct rte_flow_action action[],
503                  struct rte_flow_error *e)
504 {
505         int ret;
506
507         /* parse user request into ch_filter_specification */
508         ret = cxgbe_rtef_parse_attr(flow, attr, e);
509         if (ret)
510                 return ret;
511         ret = cxgbe_rtef_parse_items(flow, item, e);
512         if (ret)
513                 return ret;
514         return cxgbe_rtef_parse_actions(flow, action, e);
515 }
516
517 static int __cxgbe_flow_create(struct rte_eth_dev *dev, struct rte_flow *flow)
518 {
519         struct ch_filter_specification *fs = &flow->fs;
520         struct adapter *adap = ethdev2adap(dev);
521         struct tid_info *t = &adap->tids;
522         struct filter_ctx ctx;
523         unsigned int fidx;
524         int err;
525
526         if (cxgbe_get_fidx(flow, &fidx))
527                 return -ENOMEM;
528         if (cxgbe_verify_fidx(flow, fidx, 0))
529                 return -1;
530
531         t4_init_completion(&ctx.completion);
532         /* go create the filter */
533         err = cxgbe_set_filter(dev, fidx, fs, &ctx);
534         if (err) {
535                 dev_err(adap, "Error %d while creating filter.\n", err);
536                 return err;
537         }
538
539         /* Poll the FW for reply */
540         err = cxgbe_poll_for_completion(&adap->sge.fw_evtq,
541                                         CXGBE_FLOW_POLL_US,
542                                         CXGBE_FLOW_POLL_CNT,
543                                         &ctx.completion);
544         if (err) {
545                 dev_err(adap, "Filter set operation timed out (%d)\n", err);
546                 return err;
547         }
548         if (ctx.result) {
549                 dev_err(adap, "Hardware error %d while creating the filter.\n",
550                         ctx.result);
551                 return ctx.result;
552         }
553
554         if (fs->cap) { /* to destroy the filter */
555                 flow->fidx = ctx.tid;
556                 flow->f = lookup_tid(t, ctx.tid);
557         } else {
558                 flow->fidx = fidx;
559                 flow->f = &adap->tids.ftid_tab[fidx];
560         }
561
562         return 0;
563 }
564
565 static struct rte_flow *
566 cxgbe_flow_create(struct rte_eth_dev *dev,
567                   const struct rte_flow_attr *attr,
568                   const struct rte_flow_item item[],
569                   const struct rte_flow_action action[],
570                   struct rte_flow_error *e)
571 {
572         struct rte_flow *flow;
573         int ret;
574
575         flow = t4_os_alloc(sizeof(struct rte_flow));
576         if (!flow) {
577                 rte_flow_error_set(e, ENOMEM, RTE_FLOW_ERROR_TYPE_HANDLE,
578                                    NULL, "Unable to allocate memory for"
579                                    " filter_entry");
580                 return NULL;
581         }
582
583         flow->item_parser = parseitem;
584         flow->dev = dev;
585
586         if (cxgbe_flow_parse(flow, attr, item, action, e)) {
587                 t4_os_free(flow);
588                 return NULL;
589         }
590
591         /* go, interact with cxgbe_filter */
592         ret = __cxgbe_flow_create(dev, flow);
593         if (ret) {
594                 rte_flow_error_set(e, ret, RTE_FLOW_ERROR_TYPE_HANDLE,
595                                    NULL, "Unable to create flow rule");
596                 t4_os_free(flow);
597                 return NULL;
598         }
599
600         flow->f->private = flow; /* Will be used during flush */
601
602         return flow;
603 }
604
605 static int __cxgbe_flow_destroy(struct rte_eth_dev *dev, struct rte_flow *flow)
606 {
607         struct adapter *adap = ethdev2adap(dev);
608         struct filter_entry *f = flow->f;
609         struct ch_filter_specification *fs;
610         struct filter_ctx ctx;
611         int err;
612
613         fs = &f->fs;
614         if (cxgbe_verify_fidx(flow, flow->fidx, 1))
615                 return -1;
616
617         t4_init_completion(&ctx.completion);
618         err = cxgbe_del_filter(dev, flow->fidx, fs, &ctx);
619         if (err) {
620                 dev_err(adap, "Error %d while deleting filter.\n", err);
621                 return err;
622         }
623
624         /* Poll the FW for reply */
625         err = cxgbe_poll_for_completion(&adap->sge.fw_evtq,
626                                         CXGBE_FLOW_POLL_US,
627                                         CXGBE_FLOW_POLL_CNT,
628                                         &ctx.completion);
629         if (err) {
630                 dev_err(adap, "Filter delete operation timed out (%d)\n", err);
631                 return err;
632         }
633         if (ctx.result) {
634                 dev_err(adap, "Hardware error %d while deleting the filter.\n",
635                         ctx.result);
636                 return ctx.result;
637         }
638
639         return 0;
640 }
641
642 static int
643 cxgbe_flow_destroy(struct rte_eth_dev *dev, struct rte_flow *flow,
644                    struct rte_flow_error *e)
645 {
646         int ret;
647
648         ret = __cxgbe_flow_destroy(dev, flow);
649         if (ret)
650                 return rte_flow_error_set(e, ret, RTE_FLOW_ERROR_TYPE_HANDLE,
651                                           flow, "error destroying filter.");
652         t4_os_free(flow);
653         return 0;
654 }
655
656 static int __cxgbe_flow_query(struct rte_flow *flow, u64 *count,
657                               u64 *byte_count)
658 {
659         struct adapter *adap = ethdev2adap(flow->dev);
660         struct ch_filter_specification fs = flow->f->fs;
661         unsigned int fidx = flow->fidx;
662         int ret = 0;
663
664         ret = cxgbe_get_filter_count(adap, fidx, count, fs.cap, 0);
665         if (ret)
666                 return ret;
667         return cxgbe_get_filter_count(adap, fidx, byte_count, fs.cap, 1);
668 }
669
670 static int
671 cxgbe_flow_query(struct rte_eth_dev *dev, struct rte_flow *flow,
672                  const struct rte_flow_action *action, void *data,
673                  struct rte_flow_error *e)
674 {
675         struct ch_filter_specification fs;
676         struct rte_flow_query_count *c;
677         struct filter_entry *f;
678         int ret;
679
680         RTE_SET_USED(dev);
681
682         f = flow->f;
683         fs = f->fs;
684
685         if (action->type != RTE_FLOW_ACTION_TYPE_COUNT)
686                 return rte_flow_error_set(e, ENOTSUP,
687                                           RTE_FLOW_ERROR_TYPE_ACTION, NULL,
688                                           "only count supported for query");
689
690         /*
691          * This is a valid operation, Since we are allowed to do chelsio
692          * specific operations in rte side of our code but not vise-versa
693          *
694          * So, fs can be queried/modified here BUT rte_flow_query_count
695          * cannot be worked on by the lower layer since we want to maintain
696          * it as rte_flow agnostic.
697          */
698         if (!fs.hitcnts)
699                 return rte_flow_error_set(e, EINVAL, RTE_FLOW_ERROR_TYPE_ACTION,
700                                           &fs, "filter hit counters were not"
701                                           " enabled during filter creation");
702
703         c = (struct rte_flow_query_count *)data;
704         ret = __cxgbe_flow_query(flow, &c->hits, &c->bytes);
705         if (ret)
706                 return rte_flow_error_set(e, -ret, RTE_FLOW_ERROR_TYPE_ACTION,
707                                           f, "cxgbe pmd failed to"
708                                           " perform query");
709
710         /* Query was successful */
711         c->bytes_set = 1;
712         c->hits_set = 1;
713
714         return 0; /* success / partial_success */
715 }
716
717 static int
718 cxgbe_flow_validate(struct rte_eth_dev *dev,
719                     const struct rte_flow_attr *attr,
720                     const struct rte_flow_item item[],
721                     const struct rte_flow_action action[],
722                     struct rte_flow_error *e)
723 {
724         struct adapter *adap = ethdev2adap(dev);
725         struct rte_flow *flow;
726         unsigned int fidx;
727         int ret;
728
729         flow = t4_os_alloc(sizeof(struct rte_flow));
730         if (!flow)
731                 return rte_flow_error_set(e, ENOMEM, RTE_FLOW_ERROR_TYPE_HANDLE,
732                                 NULL,
733                                 "Unable to allocate memory for filter_entry");
734
735         flow->item_parser = parseitem;
736         flow->dev = dev;
737
738         ret = cxgbe_flow_parse(flow, attr, item, action, e);
739         if (ret) {
740                 t4_os_free(flow);
741                 return ret;
742         }
743
744         if (validate_filter(adap, &flow->fs)) {
745                 t4_os_free(flow);
746                 return rte_flow_error_set(e, EINVAL, RTE_FLOW_ERROR_TYPE_HANDLE,
747                                 NULL,
748                                 "validation failed. Check f/w config file.");
749         }
750
751         if (cxgbe_get_fidx(flow, &fidx)) {
752                 t4_os_free(flow);
753                 return rte_flow_error_set(e, ENOMEM, RTE_FLOW_ERROR_TYPE_HANDLE,
754                                           NULL, "no memory in tcam.");
755         }
756
757         if (cxgbe_verify_fidx(flow, fidx, 0)) {
758                 t4_os_free(flow);
759                 return rte_flow_error_set(e, EINVAL, RTE_FLOW_ERROR_TYPE_HANDLE,
760                                           NULL, "validation failed");
761         }
762
763         t4_os_free(flow);
764         return 0;
765 }
766
767 /*
768  * @ret : > 0 filter destroyed succsesfully
769  *        < 0 error destroying filter
770  *        == 1 filter not active / not found
771  */
772 static int
773 cxgbe_check_n_destroy(struct filter_entry *f, struct rte_eth_dev *dev,
774                       struct rte_flow_error *e)
775 {
776         if (f && (f->valid || f->pending) &&
777             f->dev == dev && /* Only if user has asked for this port */
778              f->private) /* We (rte_flow) created this filter */
779                 return cxgbe_flow_destroy(dev, (struct rte_flow *)f->private,
780                                           e);
781         return 1;
782 }
783
784 static int cxgbe_flow_flush(struct rte_eth_dev *dev, struct rte_flow_error *e)
785 {
786         struct adapter *adap = ethdev2adap(dev);
787         unsigned int i;
788         int ret = 0;
789
790         if (adap->tids.ftid_tab) {
791                 struct filter_entry *f = &adap->tids.ftid_tab[0];
792
793                 for (i = 0; i < adap->tids.nftids; i++, f++) {
794                         ret = cxgbe_check_n_destroy(f, dev, e);
795                         if (ret < 0)
796                                 goto out;
797                 }
798         }
799
800         if (is_hashfilter(adap) && adap->tids.tid_tab) {
801                 struct filter_entry *f;
802
803                 for (i = adap->tids.hash_base; i <= adap->tids.ntids; i++) {
804                         f = (struct filter_entry *)adap->tids.tid_tab[i];
805
806                         ret = cxgbe_check_n_destroy(f, dev, e);
807                         if (ret < 0)
808                                 goto out;
809                 }
810         }
811
812 out:
813         return ret >= 0 ? 0 : ret;
814 }
815
816 static const struct rte_flow_ops cxgbe_flow_ops = {
817         .validate       = cxgbe_flow_validate,
818         .create         = cxgbe_flow_create,
819         .destroy        = cxgbe_flow_destroy,
820         .flush          = cxgbe_flow_flush,
821         .query          = cxgbe_flow_query,
822         .isolate        = NULL,
823 };
824
825 int
826 cxgbe_dev_filter_ctrl(struct rte_eth_dev *dev,
827                       enum rte_filter_type filter_type,
828                       enum rte_filter_op filter_op,
829                       void *arg)
830 {
831         int ret = 0;
832
833         RTE_SET_USED(dev);
834         switch (filter_type) {
835         case RTE_ETH_FILTER_GENERIC:
836                 if (filter_op != RTE_ETH_FILTER_GET)
837                         return -EINVAL;
838                 *(const void **)arg = &cxgbe_flow_ops;
839                 break;
840         default:
841                 ret = -ENOTSUP;
842                 break;
843         }
844         return ret;
845 }