net/sfc: discard packets with bad CRC on EF10 ESSB Rx
[dpdk.git] / drivers / net / sfc / sfc_ef10_essb_rx.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  *
3  * Copyright (c) 2017-2018 Solarflare Communications Inc.
4  * All rights reserved.
5  *
6  * This software was jointly developed between OKTET Labs (under contract
7  * for Solarflare) and Solarflare Communications, Inc.
8  */
9
10 /* EF10 equal stride packed stream receive native datapath implementation */
11
12 #include <stdbool.h>
13
14 #include <rte_byteorder.h>
15 #include <rte_mbuf_ptype.h>
16 #include <rte_mbuf.h>
17 #include <rte_io.h>
18
19 #include "efx.h"
20 #include "efx_types.h"
21 #include "efx_regs.h"
22 #include "efx_regs_ef10.h"
23
24 #include "sfc_tweak.h"
25 #include "sfc_dp_rx.h"
26 #include "sfc_kvargs.h"
27 #include "sfc_ef10.h"
28
29 /* Tunnels are not supported */
30 #define SFC_EF10_RX_EV_ENCAP_SUPPORT    0
31 #include "sfc_ef10_rx_ev.h"
32
33 #define sfc_ef10_essb_rx_err(dpq, ...) \
34         SFC_DP_LOG(SFC_KVARG_DATAPATH_EF10_ESSB, ERR, dpq, __VA_ARGS__)
35
36 #define sfc_ef10_essb_rx_info(dpq, ...) \
37         SFC_DP_LOG(SFC_KVARG_DATAPATH_EF10_ESSB, INFO, dpq, __VA_ARGS__)
38
39 /*
40  * Fake length for RXQ descriptors in equal stride super-buffer mode
41  * to make hardware happy.
42  */
43 #define SFC_EF10_ESSB_RX_FAKE_BUF_SIZE  32
44
45 /**
46  * Minimum number of Rx buffers the datapath allows to use.
47  *
48  * Each HW Rx descriptor has many Rx buffers. The number of buffers
49  * in one HW Rx descriptor is equal to size of contiguous block
50  * provided by Rx buffers memory pool. The contiguous block size
51  * depends on CONFIG_RTE_DRIVER_MEMPOOL_BUCKET_SIZE_KB and rte_mbuf
52  * data size specified on the memory pool creation. Typical rte_mbuf
53  * data size is about 2k which makes a bit less than 32 buffers in
54  * contiguous block with default bucket size equal to 64k.
55  * Since HW Rx descriptors are pushed by 8 (see SFC_EF10_RX_WPTR_ALIGN),
56  * it makes about 256 as required minimum. Double it in advertised
57  * minimum to allow for at least 2 refill blocks.
58  */
59 #define SFC_EF10_ESSB_RX_DESCS_MIN      512
60
61 /**
62  * Number of Rx buffers should be aligned to.
63  *
64  * There are no extra requirements on alignment since actual number of
65  * pushed Rx buffers will be multiple by contiguous block size which
66  * is unknown beforehand.
67  */
68 #define SFC_EF10_ESSB_RX_DESCS_ALIGN    1
69
70 /**
71  * Maximum number of descriptors/buffers in the Rx ring.
72  * It should guarantee that corresponding event queue never overfill.
73  */
74 #define SFC_EF10_ESSB_RXQ_LIMIT(_nevs) \
75         ((_nevs) - 1 /* head must not step on tail */ - \
76          (SFC_EF10_EV_PER_CACHE_LINE - 1) /* max unused EvQ entries */ - \
77          1 /* Rx error */ - 1 /* flush */)
78
79 struct sfc_ef10_essb_rx_sw_desc {
80         struct rte_mbuf                 *first_mbuf;
81 };
82
83 struct sfc_ef10_essb_rxq {
84         /* Used on data path */
85         unsigned int                    flags;
86 #define SFC_EF10_ESSB_RXQ_STARTED       0x1
87 #define SFC_EF10_ESSB_RXQ_NOT_RUNNING   0x2
88 #define SFC_EF10_ESSB_RXQ_EXCEPTION     0x4
89         unsigned int                    rxq_ptr_mask;
90         unsigned int                    block_size;
91         unsigned int                    buf_stride;
92         unsigned int                    bufs_ptr;
93         unsigned int                    completed;
94         unsigned int                    pending_id;
95         unsigned int                    bufs_pending;
96         unsigned int                    left_in_completed;
97         unsigned int                    left_in_pending;
98         unsigned int                    evq_read_ptr;
99         unsigned int                    evq_ptr_mask;
100         efx_qword_t                     *evq_hw_ring;
101         struct sfc_ef10_essb_rx_sw_desc *sw_ring;
102         uint16_t                        port_id;
103
104         /* Used on refill */
105         unsigned int                    added;
106         unsigned int                    max_fill_level;
107         unsigned int                    refill_threshold;
108         struct rte_mempool              *refill_mb_pool;
109         efx_qword_t                     *rxq_hw_ring;
110         volatile void                   *doorbell;
111
112         /* Datapath receive queue anchor */
113         struct sfc_dp_rxq               dp;
114 };
115
116 static inline struct sfc_ef10_essb_rxq *
117 sfc_ef10_essb_rxq_by_dp_rxq(struct sfc_dp_rxq *dp_rxq)
118 {
119         return container_of(dp_rxq, struct sfc_ef10_essb_rxq, dp);
120 }
121
122 static struct rte_mbuf *
123 sfc_ef10_essb_next_mbuf(const struct sfc_ef10_essb_rxq *rxq,
124                         struct rte_mbuf *mbuf)
125 {
126         return (struct rte_mbuf *)((uintptr_t)mbuf + rxq->buf_stride);
127 }
128
129 static struct rte_mbuf *
130 sfc_ef10_essb_mbuf_by_index(const struct sfc_ef10_essb_rxq *rxq,
131                             struct rte_mbuf *mbuf, unsigned int idx)
132 {
133         return (struct rte_mbuf *)((uintptr_t)mbuf + idx * rxq->buf_stride);
134 }
135
136 static struct rte_mbuf *
137 sfc_ef10_essb_maybe_next_completed(struct sfc_ef10_essb_rxq *rxq)
138 {
139         const struct sfc_ef10_essb_rx_sw_desc *rxd;
140
141         if (rxq->left_in_completed != 0) {
142                 rxd = &rxq->sw_ring[rxq->completed & rxq->rxq_ptr_mask];
143                 return sfc_ef10_essb_mbuf_by_index(rxq, rxd->first_mbuf,
144                                 rxq->block_size - rxq->left_in_completed);
145         } else {
146                 rxq->completed++;
147                 rxd = &rxq->sw_ring[rxq->completed & rxq->rxq_ptr_mask];
148                 rxq->left_in_completed = rxq->block_size;
149                 return rxd->first_mbuf;
150         }
151 }
152
153 static void
154 sfc_ef10_essb_rx_qrefill(struct sfc_ef10_essb_rxq *rxq)
155 {
156         const unsigned int rxq_ptr_mask = rxq->rxq_ptr_mask;
157         unsigned int free_space;
158         unsigned int bulks;
159         void *mbuf_blocks[SFC_EF10_RX_WPTR_ALIGN];
160         unsigned int added = rxq->added;
161
162         free_space = rxq->max_fill_level - (added - rxq->completed);
163
164         if (free_space < rxq->refill_threshold)
165                 return;
166
167         bulks = free_space / RTE_DIM(mbuf_blocks);
168         /* refill_threshold guarantees that bulks is positive */
169         SFC_ASSERT(bulks > 0);
170
171         do {
172                 unsigned int id;
173                 unsigned int i;
174
175                 if (unlikely(rte_mempool_get_contig_blocks(rxq->refill_mb_pool,
176                                 mbuf_blocks, RTE_DIM(mbuf_blocks)) < 0)) {
177                         struct rte_eth_dev_data *dev_data =
178                                 rte_eth_devices[rxq->port_id].data;
179
180                         /*
181                          * It is hardly a safe way to increment counter
182                          * from different contexts, but all PMDs do it.
183                          */
184                         dev_data->rx_mbuf_alloc_failed += RTE_DIM(mbuf_blocks);
185                         /* Return if we have posted nothing yet */
186                         if (added == rxq->added)
187                                 return;
188                         /* Push posted */
189                         break;
190                 }
191
192                 for (i = 0, id = added & rxq_ptr_mask;
193                      i < RTE_DIM(mbuf_blocks);
194                      ++i, ++id) {
195                         struct rte_mbuf *m = mbuf_blocks[i];
196                         struct sfc_ef10_essb_rx_sw_desc *rxd;
197
198                         SFC_ASSERT((id & ~rxq_ptr_mask) == 0);
199                         rxd = &rxq->sw_ring[id];
200                         rxd->first_mbuf = m;
201
202                         /* RX_KER_BYTE_CNT is ignored by firmware */
203                         EFX_POPULATE_QWORD_2(rxq->rxq_hw_ring[id],
204                                              ESF_DZ_RX_KER_BYTE_CNT,
205                                              SFC_EF10_ESSB_RX_FAKE_BUF_SIZE,
206                                              ESF_DZ_RX_KER_BUF_ADDR,
207                                              rte_mbuf_data_iova_default(m));
208                 }
209
210                 added += RTE_DIM(mbuf_blocks);
211
212         } while (--bulks > 0);
213
214         SFC_ASSERT(rxq->added != added);
215         rxq->added = added;
216         sfc_ef10_rx_qpush(rxq->doorbell, added, rxq_ptr_mask);
217 }
218
219 static bool
220 sfc_ef10_essb_rx_event_get(struct sfc_ef10_essb_rxq *rxq, efx_qword_t *rx_ev)
221 {
222         *rx_ev = rxq->evq_hw_ring[rxq->evq_read_ptr & rxq->evq_ptr_mask];
223
224         if (!sfc_ef10_ev_present(*rx_ev))
225                 return false;
226
227         if (unlikely(EFX_QWORD_FIELD(*rx_ev, FSF_AZ_EV_CODE) !=
228                      FSE_AZ_EV_CODE_RX_EV)) {
229                 /*
230                  * Do not move read_ptr to keep the event for exception
231                  * handling
232                  */
233                 rxq->flags |= SFC_EF10_ESSB_RXQ_EXCEPTION;
234                 sfc_ef10_essb_rx_err(&rxq->dp.dpq,
235                                      "RxQ exception at EvQ read ptr %#x",
236                                      rxq->evq_read_ptr);
237                 return false;
238         }
239
240         rxq->evq_read_ptr++;
241         return true;
242 }
243
244 static void
245 sfc_ef10_essb_rx_process_ev(struct sfc_ef10_essb_rxq *rxq, efx_qword_t rx_ev)
246 {
247         unsigned int ready;
248
249         ready = (EFX_QWORD_FIELD(rx_ev, ESF_DZ_RX_DSC_PTR_LBITS) -
250                  rxq->bufs_ptr) &
251                 EFX_MASK32(ESF_DZ_RX_DSC_PTR_LBITS);
252
253         rxq->bufs_ptr += ready;
254         rxq->bufs_pending += ready;
255
256         SFC_ASSERT(ready > 0);
257         do {
258                 const struct sfc_ef10_essb_rx_sw_desc *rxd;
259                 struct rte_mbuf *m;
260                 unsigned int todo_bufs;
261                 struct rte_mbuf *m0;
262
263                 rxd = &rxq->sw_ring[rxq->pending_id];
264                 m = sfc_ef10_essb_mbuf_by_index(rxq, rxd->first_mbuf,
265                         rxq->block_size - rxq->left_in_pending);
266
267                 if (ready < rxq->left_in_pending) {
268                         todo_bufs = ready;
269                         ready = 0;
270                         rxq->left_in_pending -= todo_bufs;
271                 } else {
272                         todo_bufs = rxq->left_in_pending;
273                         ready -= todo_bufs;
274                         rxq->left_in_pending = rxq->block_size;
275                         if (rxq->pending_id != rxq->rxq_ptr_mask)
276                                 rxq->pending_id++;
277                         else
278                                 rxq->pending_id = 0;
279                 }
280
281                 SFC_ASSERT(todo_bufs > 0);
282                 --todo_bufs;
283
284                 sfc_ef10_rx_ev_to_offloads(rx_ev, m, ~0ull);
285
286                 /* Prefetch pseudo-header */
287                 rte_prefetch0((uint8_t *)m->buf_addr + RTE_PKTMBUF_HEADROOM);
288
289                 m0 = m;
290                 while (todo_bufs-- > 0) {
291                         m = sfc_ef10_essb_next_mbuf(rxq, m);
292                         m->ol_flags = m0->ol_flags;
293                         m->packet_type = m0->packet_type;
294                         /* Prefetch pseudo-header */
295                         rte_prefetch0((uint8_t *)m->buf_addr +
296                                       RTE_PKTMBUF_HEADROOM);
297                 }
298         } while (ready > 0);
299 }
300
301 static unsigned int
302 sfc_ef10_essb_rx_get_pending(struct sfc_ef10_essb_rxq *rxq,
303                              struct rte_mbuf **rx_pkts, uint16_t nb_pkts)
304 {
305         unsigned int n_rx_pkts = 0;
306         unsigned int todo_bufs;
307         struct rte_mbuf *m;
308
309         while ((todo_bufs = RTE_MIN(nb_pkts - n_rx_pkts,
310                                     rxq->bufs_pending)) > 0) {
311                 m = sfc_ef10_essb_maybe_next_completed(rxq);
312
313                 todo_bufs = RTE_MIN(todo_bufs, rxq->left_in_completed);
314
315                 rxq->bufs_pending -= todo_bufs;
316                 rxq->left_in_completed -= todo_bufs;
317
318                 SFC_ASSERT(todo_bufs > 0);
319                 todo_bufs--;
320
321                 do {
322                         const efx_qword_t *qwordp;
323                         uint16_t pkt_len;
324
325                         /* Buffers to be discarded have 0 in packet type */
326                         if (unlikely(m->packet_type == 0)) {
327                                 rte_mempool_put(rxq->refill_mb_pool, m);
328                                 goto next_buf;
329                         }
330
331                         rx_pkts[n_rx_pkts++] = m;
332
333                         /* Parse pseudo-header */
334                         qwordp = (const efx_qword_t *)
335                                 ((uint8_t *)m->buf_addr + RTE_PKTMBUF_HEADROOM);
336                         pkt_len =
337                                 EFX_QWORD_FIELD(*qwordp,
338                                                 ES_EZ_ESSB_RX_PREFIX_DATA_LEN);
339
340                         m->data_off = RTE_PKTMBUF_HEADROOM +
341                                 ES_EZ_ESSB_RX_PREFIX_LEN;
342                         m->port = rxq->port_id;
343
344                         rte_pktmbuf_pkt_len(m) = pkt_len;
345                         rte_pktmbuf_data_len(m) = pkt_len;
346
347                         m->ol_flags |=
348                                 (PKT_RX_RSS_HASH *
349                                  !!EFX_TEST_QWORD_BIT(*qwordp,
350                                         ES_EZ_ESSB_RX_PREFIX_HASH_VALID_LBN)) |
351                                 (PKT_RX_FDIR_ID *
352                                  !!EFX_TEST_QWORD_BIT(*qwordp,
353                                         ES_EZ_ESSB_RX_PREFIX_MARK_VALID_LBN)) |
354                                 (PKT_RX_FDIR *
355                                  !!EFX_TEST_QWORD_BIT(*qwordp,
356                                         ES_EZ_ESSB_RX_PREFIX_MATCH_FLAG_LBN));
357
358                         /* EFX_QWORD_FIELD converts little-endian to CPU */
359                         m->hash.rss =
360                                 EFX_QWORD_FIELD(*qwordp,
361                                                 ES_EZ_ESSB_RX_PREFIX_HASH);
362                         m->hash.fdir.hi =
363                                 EFX_QWORD_FIELD(*qwordp,
364                                                 ES_EZ_ESSB_RX_PREFIX_MARK);
365
366 next_buf:
367                         m = sfc_ef10_essb_next_mbuf(rxq, m);
368                 } while (todo_bufs-- > 0);
369         }
370
371         return n_rx_pkts;
372 }
373
374
375 static uint16_t
376 sfc_ef10_essb_recv_pkts(void *rx_queue, struct rte_mbuf **rx_pkts,
377                         uint16_t nb_pkts)
378 {
379         struct sfc_ef10_essb_rxq *rxq = sfc_ef10_essb_rxq_by_dp_rxq(rx_queue);
380         const unsigned int evq_old_read_ptr = rxq->evq_read_ptr;
381         uint16_t n_rx_pkts;
382         efx_qword_t rx_ev;
383
384         if (unlikely(rxq->flags & (SFC_EF10_ESSB_RXQ_NOT_RUNNING |
385                                    SFC_EF10_ESSB_RXQ_EXCEPTION)))
386                 return 0;
387
388         n_rx_pkts = sfc_ef10_essb_rx_get_pending(rxq, rx_pkts, nb_pkts);
389
390         while (n_rx_pkts != nb_pkts &&
391                sfc_ef10_essb_rx_event_get(rxq, &rx_ev)) {
392                 /*
393                  * DROP_EVENT is an internal to the NIC, software should
394                  * never see it and, therefore, may ignore it.
395                  */
396
397                 sfc_ef10_essb_rx_process_ev(rxq, rx_ev);
398                 n_rx_pkts += sfc_ef10_essb_rx_get_pending(rxq,
399                                                           rx_pkts + n_rx_pkts,
400                                                           nb_pkts - n_rx_pkts);
401         }
402
403         sfc_ef10_ev_qclear(rxq->evq_hw_ring, rxq->evq_ptr_mask,
404                            evq_old_read_ptr, rxq->evq_read_ptr);
405
406         /* It is not a problem if we refill in the case of exception */
407         sfc_ef10_essb_rx_qrefill(rxq);
408
409         return n_rx_pkts;
410 }
411
412 static sfc_dp_rx_qdesc_npending_t sfc_ef10_essb_rx_qdesc_npending;
413 static unsigned int
414 sfc_ef10_essb_rx_qdesc_npending(__rte_unused struct sfc_dp_rxq *dp_rxq)
415 {
416         /*
417          * Correct implementation requires EvQ polling and events
418          * processing.
419          */
420         return -ENOTSUP;
421 }
422
423 static sfc_dp_rx_qdesc_status_t sfc_ef10_essb_rx_qdesc_status;
424 static int
425 sfc_ef10_essb_rx_qdesc_status(__rte_unused struct sfc_dp_rxq *dp_rxq,
426                               __rte_unused uint16_t offset)
427 {
428         return -ENOTSUP;
429 }
430
431 static sfc_dp_rx_get_dev_info_t sfc_ef10_essb_rx_get_dev_info;
432 static void
433 sfc_ef10_essb_rx_get_dev_info(struct rte_eth_dev_info *dev_info)
434 {
435         /*
436          * Number of descriptors just defines maximum number of pushed
437          * descriptors (fill level).
438          */
439         dev_info->rx_desc_lim.nb_min = SFC_EF10_ESSB_RX_DESCS_MIN;
440         dev_info->rx_desc_lim.nb_align = SFC_EF10_ESSB_RX_DESCS_ALIGN;
441 }
442
443 static sfc_dp_rx_pool_ops_supported_t sfc_ef10_essb_rx_pool_ops_supported;
444 static int
445 sfc_ef10_essb_rx_pool_ops_supported(const char *pool)
446 {
447         SFC_ASSERT(pool != NULL);
448
449         if (strcmp(pool, "bucket") == 0)
450                 return 0;
451
452         return -ENOTSUP;
453 }
454
455 static sfc_dp_rx_qsize_up_rings_t sfc_ef10_essb_rx_qsize_up_rings;
456 static int
457 sfc_ef10_essb_rx_qsize_up_rings(uint16_t nb_rx_desc,
458                                 struct rte_mempool *mb_pool,
459                                 unsigned int *rxq_entries,
460                                 unsigned int *evq_entries,
461                                 unsigned int *rxq_max_fill_level)
462 {
463         int rc;
464         struct rte_mempool_info mp_info;
465         unsigned int nb_hw_rx_desc;
466         unsigned int max_events;
467
468         rc = rte_mempool_ops_get_info(mb_pool, &mp_info);
469         if (rc != 0)
470                 return -rc;
471         if (mp_info.contig_block_size == 0)
472                 return EINVAL;
473
474         /*
475          * Calculate required number of hardware Rx descriptors each
476          * carrying contig block size Rx buffers.
477          * It cannot be less than Rx write pointer alignment plus 1
478          * in order to avoid cases when the ring is guaranteed to be
479          * empty.
480          */
481         nb_hw_rx_desc = RTE_MAX(SFC_DIV_ROUND_UP(nb_rx_desc,
482                                                  mp_info.contig_block_size),
483                                 SFC_EF10_RX_WPTR_ALIGN + 1);
484         if (nb_hw_rx_desc <= EFX_RXQ_MINNDESCS) {
485                 *rxq_entries = EFX_RXQ_MINNDESCS;
486         } else {
487                 *rxq_entries = rte_align32pow2(nb_hw_rx_desc);
488                 if (*rxq_entries > EFX_RXQ_MAXNDESCS)
489                         return EINVAL;
490         }
491
492         max_events = RTE_ALIGN_FLOOR(nb_hw_rx_desc, SFC_EF10_RX_WPTR_ALIGN) *
493                 mp_info.contig_block_size +
494                 (SFC_EF10_EV_PER_CACHE_LINE - 1) /* max unused EvQ entries */ +
495                 1 /* Rx error */ + 1 /* flush */ + 1 /* head-tail space */;
496
497         *evq_entries = rte_align32pow2(max_events);
498         *evq_entries = RTE_MAX(*evq_entries, (unsigned int)EFX_EVQ_MINNEVS);
499         *evq_entries = RTE_MIN(*evq_entries, (unsigned int)EFX_EVQ_MAXNEVS);
500
501         /*
502          * May be even maximum event queue size is insufficient to handle
503          * so many Rx descriptors. If so, we should limit Rx queue fill level.
504          */
505         *rxq_max_fill_level = RTE_MIN(nb_rx_desc,
506                                       SFC_EF10_ESSB_RXQ_LIMIT(*evq_entries));
507         return 0;
508 }
509
510 static sfc_dp_rx_qcreate_t sfc_ef10_essb_rx_qcreate;
511 static int
512 sfc_ef10_essb_rx_qcreate(uint16_t port_id, uint16_t queue_id,
513                          const struct rte_pci_addr *pci_addr, int socket_id,
514                          const struct sfc_dp_rx_qcreate_info *info,
515                          struct sfc_dp_rxq **dp_rxqp)
516 {
517         struct rte_mempool * const mp = info->refill_mb_pool;
518         struct rte_mempool_info mp_info;
519         struct sfc_ef10_essb_rxq *rxq;
520         int rc;
521
522         rc = rte_mempool_ops_get_info(mp, &mp_info);
523         if (rc != 0) {
524                 /* Positive errno is used in the driver */
525                 rc = -rc;
526                 goto fail_get_contig_block_size;
527         }
528
529         /* Check if the mempool provides block dequeue */
530         rc = EINVAL;
531         if (mp_info.contig_block_size == 0)
532                 goto fail_no_block_dequeue;
533
534         rc = ENOMEM;
535         rxq = rte_zmalloc_socket("sfc-ef10-rxq", sizeof(*rxq),
536                                  RTE_CACHE_LINE_SIZE, socket_id);
537         if (rxq == NULL)
538                 goto fail_rxq_alloc;
539
540         sfc_dp_queue_init(&rxq->dp.dpq, port_id, queue_id, pci_addr);
541
542         rc = ENOMEM;
543         rxq->sw_ring = rte_calloc_socket("sfc-ef10-rxq-sw_ring",
544                                          info->rxq_entries,
545                                          sizeof(*rxq->sw_ring),
546                                          RTE_CACHE_LINE_SIZE, socket_id);
547         if (rxq->sw_ring == NULL)
548                 goto fail_desc_alloc;
549
550         rxq->block_size = mp_info.contig_block_size;
551         rxq->buf_stride = mp->header_size + mp->elt_size + mp->trailer_size;
552         rxq->rxq_ptr_mask = info->rxq_entries - 1;
553         rxq->evq_ptr_mask = info->evq_entries - 1;
554         rxq->evq_hw_ring = info->evq_hw_ring;
555         rxq->port_id = port_id;
556
557         rxq->max_fill_level = info->max_fill_level / mp_info.contig_block_size;
558         rxq->refill_threshold =
559                 RTE_MAX(info->refill_threshold / mp_info.contig_block_size,
560                         SFC_EF10_RX_WPTR_ALIGN);
561         rxq->refill_mb_pool = mp;
562         rxq->rxq_hw_ring = info->rxq_hw_ring;
563
564         rxq->doorbell = (volatile uint8_t *)info->mem_bar +
565                         ER_DZ_RX_DESC_UPD_REG_OFST +
566                         (info->hw_index << info->vi_window_shift);
567
568         sfc_ef10_essb_rx_info(&rxq->dp.dpq,
569                               "block size is %u, buf stride is %u",
570                               rxq->block_size, rxq->buf_stride);
571         sfc_ef10_essb_rx_info(&rxq->dp.dpq,
572                               "max fill level is %u descs (%u bufs), "
573                               "refill threashold %u descs (%u bufs)",
574                               rxq->max_fill_level,
575                               rxq->max_fill_level * rxq->block_size,
576                               rxq->refill_threshold,
577                               rxq->refill_threshold * rxq->block_size);
578
579         *dp_rxqp = &rxq->dp;
580         return 0;
581
582 fail_desc_alloc:
583         rte_free(rxq);
584
585 fail_rxq_alloc:
586 fail_no_block_dequeue:
587 fail_get_contig_block_size:
588         return rc;
589 }
590
591 static sfc_dp_rx_qdestroy_t sfc_ef10_essb_rx_qdestroy;
592 static void
593 sfc_ef10_essb_rx_qdestroy(struct sfc_dp_rxq *dp_rxq)
594 {
595         struct sfc_ef10_essb_rxq *rxq = sfc_ef10_essb_rxq_by_dp_rxq(dp_rxq);
596
597         rte_free(rxq->sw_ring);
598         rte_free(rxq);
599 }
600
601 static sfc_dp_rx_qstart_t sfc_ef10_essb_rx_qstart;
602 static int
603 sfc_ef10_essb_rx_qstart(struct sfc_dp_rxq *dp_rxq, unsigned int evq_read_ptr)
604 {
605         struct sfc_ef10_essb_rxq *rxq = sfc_ef10_essb_rxq_by_dp_rxq(dp_rxq);
606
607         rxq->evq_read_ptr = evq_read_ptr;
608
609         /* Initialize before refill */
610         rxq->completed = rxq->pending_id = rxq->added = 0;
611         rxq->left_in_completed = rxq->left_in_pending = rxq->block_size;
612         rxq->bufs_ptr = UINT_MAX;
613         rxq->bufs_pending = 0;
614
615         sfc_ef10_essb_rx_qrefill(rxq);
616
617         rxq->flags |= SFC_EF10_ESSB_RXQ_STARTED;
618         rxq->flags &=
619                 ~(SFC_EF10_ESSB_RXQ_NOT_RUNNING | SFC_EF10_ESSB_RXQ_EXCEPTION);
620
621         return 0;
622 }
623
624 static sfc_dp_rx_qstop_t sfc_ef10_essb_rx_qstop;
625 static void
626 sfc_ef10_essb_rx_qstop(struct sfc_dp_rxq *dp_rxq, unsigned int *evq_read_ptr)
627 {
628         struct sfc_ef10_essb_rxq *rxq = sfc_ef10_essb_rxq_by_dp_rxq(dp_rxq);
629
630         rxq->flags |= SFC_EF10_ESSB_RXQ_NOT_RUNNING;
631
632         *evq_read_ptr = rxq->evq_read_ptr;
633 }
634
635 static sfc_dp_rx_qrx_ev_t sfc_ef10_essb_rx_qrx_ev;
636 static bool
637 sfc_ef10_essb_rx_qrx_ev(struct sfc_dp_rxq *dp_rxq, __rte_unused unsigned int id)
638 {
639         __rte_unused struct sfc_ef10_essb_rxq *rxq;
640
641         rxq = sfc_ef10_essb_rxq_by_dp_rxq(dp_rxq);
642         SFC_ASSERT(rxq->flags & SFC_EF10_ESSB_RXQ_NOT_RUNNING);
643
644         /*
645          * It is safe to ignore Rx event since we free all mbufs on
646          * queue purge anyway.
647          */
648
649         return false;
650 }
651
652 static sfc_dp_rx_qpurge_t sfc_ef10_essb_rx_qpurge;
653 static void
654 sfc_ef10_essb_rx_qpurge(struct sfc_dp_rxq *dp_rxq)
655 {
656         struct sfc_ef10_essb_rxq *rxq = sfc_ef10_essb_rxq_by_dp_rxq(dp_rxq);
657         unsigned int i, j;
658         const struct sfc_ef10_essb_rx_sw_desc *rxd;
659         struct rte_mbuf *m;
660
661         if (rxq->completed != rxq->added && rxq->left_in_completed > 0) {
662                 rxd = &rxq->sw_ring[rxq->completed & rxq->rxq_ptr_mask];
663                 m = sfc_ef10_essb_mbuf_by_index(rxq, rxd->first_mbuf,
664                                 rxq->block_size - rxq->left_in_completed);
665                 do {
666                         rxq->left_in_completed--;
667                         rte_mempool_put(rxq->refill_mb_pool, m);
668                         m = sfc_ef10_essb_next_mbuf(rxq, m);
669                 } while (rxq->left_in_completed > 0);
670                 rxq->completed++;
671         }
672
673         for (i = rxq->completed; i != rxq->added; ++i) {
674                 rxd = &rxq->sw_ring[i & rxq->rxq_ptr_mask];
675                 m = rxd->first_mbuf;
676                 for (j = 0; j < rxq->block_size; ++j) {
677                         rte_mempool_put(rxq->refill_mb_pool, m);
678                         m = sfc_ef10_essb_next_mbuf(rxq, m);
679                 }
680         }
681
682         rxq->flags &= ~SFC_EF10_ESSB_RXQ_STARTED;
683 }
684
685 struct sfc_dp_rx sfc_ef10_essb_rx = {
686         .dp = {
687                 .name           = SFC_KVARG_DATAPATH_EF10_ESSB,
688                 .type           = SFC_DP_RX,
689                 .hw_fw_caps     = SFC_DP_HW_FW_CAP_EF10 |
690                                   SFC_DP_HW_FW_CAP_RX_ES_SUPER_BUFFER,
691         },
692         .features               = SFC_DP_RX_FEAT_FLOW_FLAG |
693                                   SFC_DP_RX_FEAT_FLOW_MARK,
694         .get_dev_info           = sfc_ef10_essb_rx_get_dev_info,
695         .pool_ops_supported     = sfc_ef10_essb_rx_pool_ops_supported,
696         .qsize_up_rings         = sfc_ef10_essb_rx_qsize_up_rings,
697         .qcreate                = sfc_ef10_essb_rx_qcreate,
698         .qdestroy               = sfc_ef10_essb_rx_qdestroy,
699         .qstart                 = sfc_ef10_essb_rx_qstart,
700         .qstop                  = sfc_ef10_essb_rx_qstop,
701         .qrx_ev                 = sfc_ef10_essb_rx_qrx_ev,
702         .qpurge                 = sfc_ef10_essb_rx_qpurge,
703         .supported_ptypes_get   = sfc_ef10_supported_ptypes_get,
704         .qdesc_npending         = sfc_ef10_essb_rx_qdesc_npending,
705         .qdesc_status           = sfc_ef10_essb_rx_qdesc_status,
706         .pkt_burst              = sfc_ef10_essb_recv_pkts,
707 };