New upstream version 18.02
[deb_dpdk.git] / drivers / net / mlx4 / mlx4_rxq.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright 2017 6WIND S.A.
3  * Copyright 2017 Mellanox
4  */
5
6 /**
7  * @file
8  * Rx queues configuration for mlx4 driver.
9  */
10
11 #include <assert.h>
12 #include <errno.h>
13 #include <stddef.h>
14 #include <stdint.h>
15 #include <string.h>
16
17 /* Verbs headers do not support -pedantic. */
18 #ifdef PEDANTIC
19 #pragma GCC diagnostic ignored "-Wpedantic"
20 #endif
21 #include <infiniband/mlx4dv.h>
22 #include <infiniband/verbs.h>
23 #ifdef PEDANTIC
24 #pragma GCC diagnostic error "-Wpedantic"
25 #endif
26
27 #include <rte_byteorder.h>
28 #include <rte_common.h>
29 #include <rte_errno.h>
30 #include <rte_ethdev_driver.h>
31 #include <rte_flow.h>
32 #include <rte_malloc.h>
33 #include <rte_mbuf.h>
34 #include <rte_mempool.h>
35
36 #include "mlx4.h"
37 #include "mlx4_glue.h"
38 #include "mlx4_flow.h"
39 #include "mlx4_rxtx.h"
40 #include "mlx4_utils.h"
41
42 /**
43  * Historical RSS hash key.
44  *
45  * This used to be the default for mlx4 in Linux before v3.19 switched to
46  * generating random hash keys through netdev_rss_key_fill().
47  *
48  * It is used in this PMD for consistency with past DPDK releases but can
49  * now be overridden through user configuration.
50  *
51  * Note: this is not const to work around API quirks.
52  */
53 uint8_t
54 mlx4_rss_hash_key_default[MLX4_RSS_HASH_KEY_SIZE] = {
55         0x2c, 0xc6, 0x81, 0xd1,
56         0x5b, 0xdb, 0xf4, 0xf7,
57         0xfc, 0xa2, 0x83, 0x19,
58         0xdb, 0x1a, 0x3e, 0x94,
59         0x6b, 0x9e, 0x38, 0xd9,
60         0x2c, 0x9c, 0x03, 0xd1,
61         0xad, 0x99, 0x44, 0xa7,
62         0xd9, 0x56, 0x3d, 0x59,
63         0x06, 0x3c, 0x25, 0xf3,
64         0xfc, 0x1f, 0xdc, 0x2a,
65 };
66
67 /**
68  * Obtain a RSS context with specified properties.
69  *
70  * Used when creating a flow rule targeting one or several Rx queues.
71  *
72  * If a matching RSS context already exists, it is returned with its
73  * reference count incremented.
74  *
75  * @param priv
76  *   Pointer to private structure.
77  * @param fields
78  *   Fields for RSS processing (Verbs format).
79  * @param[in] key
80  *   Hash key to use (whose size is exactly MLX4_RSS_HASH_KEY_SIZE).
81  * @param queues
82  *   Number of target queues.
83  * @param[in] queue_id
84  *   Target queues.
85  *
86  * @return
87  *   Pointer to RSS context on success, NULL otherwise and rte_errno is set.
88  */
89 struct mlx4_rss *
90 mlx4_rss_get(struct priv *priv, uint64_t fields,
91              uint8_t key[MLX4_RSS_HASH_KEY_SIZE],
92              uint16_t queues, const uint16_t queue_id[])
93 {
94         struct mlx4_rss *rss;
95         size_t queue_id_size = sizeof(queue_id[0]) * queues;
96
97         LIST_FOREACH(rss, &priv->rss, next)
98                 if (fields == rss->fields &&
99                     queues == rss->queues &&
100                     !memcmp(key, rss->key, MLX4_RSS_HASH_KEY_SIZE) &&
101                     !memcmp(queue_id, rss->queue_id, queue_id_size)) {
102                         ++rss->refcnt;
103                         return rss;
104                 }
105         rss = rte_malloc(__func__, offsetof(struct mlx4_rss, queue_id) +
106                          queue_id_size, 0);
107         if (!rss)
108                 goto error;
109         *rss = (struct mlx4_rss){
110                 .priv = priv,
111                 .refcnt = 1,
112                 .usecnt = 0,
113                 .qp = NULL,
114                 .ind = NULL,
115                 .fields = fields,
116                 .queues = queues,
117         };
118         memcpy(rss->key, key, MLX4_RSS_HASH_KEY_SIZE);
119         memcpy(rss->queue_id, queue_id, queue_id_size);
120         LIST_INSERT_HEAD(&priv->rss, rss, next);
121         return rss;
122 error:
123         rte_errno = ENOMEM;
124         return NULL;
125 }
126
127 /**
128  * Release a RSS context instance.
129  *
130  * Used when destroying a flow rule targeting one or several Rx queues.
131  *
132  * This function decrements the reference count of the context and destroys
133  * it after reaching 0. The context must have no users at this point; all
134  * prior calls to mlx4_rss_attach() must have been followed by matching
135  * calls to mlx4_rss_detach().
136  *
137  * @param rss
138  *   RSS context to release.
139  */
140 void
141 mlx4_rss_put(struct mlx4_rss *rss)
142 {
143         assert(rss->refcnt);
144         if (--rss->refcnt)
145                 return;
146         assert(!rss->usecnt);
147         assert(!rss->qp);
148         assert(!rss->ind);
149         LIST_REMOVE(rss, next);
150         rte_free(rss);
151 }
152
153 /**
154  * Attach a user to a RSS context instance.
155  *
156  * Used when the RSS QP and indirection table objects must be instantiated,
157  * that is, when a flow rule must be enabled.
158  *
159  * This function increments the usage count of the context.
160  *
161  * @param rss
162  *   RSS context to attach to.
163  *
164  * @return
165  *   0 on success, a negative errno value otherwise and rte_errno is set.
166  */
167 int
168 mlx4_rss_attach(struct mlx4_rss *rss)
169 {
170         assert(rss->refcnt);
171         if (rss->usecnt++) {
172                 assert(rss->qp);
173                 assert(rss->ind);
174                 return 0;
175         }
176
177         struct ibv_wq *ind_tbl[rss->queues];
178         struct priv *priv = rss->priv;
179         const char *msg;
180         unsigned int i = 0;
181         int ret;
182
183         if (!rte_is_power_of_2(RTE_DIM(ind_tbl))) {
184                 ret = EINVAL;
185                 msg = "number of RSS queues must be a power of two";
186                 goto error;
187         }
188         for (i = 0; i != RTE_DIM(ind_tbl); ++i) {
189                 uint16_t id = rss->queue_id[i];
190                 struct rxq *rxq = NULL;
191
192                 if (id < priv->dev->data->nb_rx_queues)
193                         rxq = priv->dev->data->rx_queues[id];
194                 if (!rxq) {
195                         ret = EINVAL;
196                         msg = "RSS target queue is not configured";
197                         goto error;
198                 }
199                 ret = mlx4_rxq_attach(rxq);
200                 if (ret) {
201                         ret = -ret;
202                         msg = "unable to attach RSS target queue";
203                         goto error;
204                 }
205                 ind_tbl[i] = rxq->wq;
206         }
207         rss->ind = mlx4_glue->create_rwq_ind_table
208                 (priv->ctx,
209                  &(struct ibv_rwq_ind_table_init_attr){
210                         .log_ind_tbl_size = rte_log2_u32(RTE_DIM(ind_tbl)),
211                         .ind_tbl = ind_tbl,
212                         .comp_mask = 0,
213                  });
214         if (!rss->ind) {
215                 ret = errno ? errno : EINVAL;
216                 msg = "RSS indirection table creation failure";
217                 goto error;
218         }
219         rss->qp = mlx4_glue->create_qp_ex
220                 (priv->ctx,
221                  &(struct ibv_qp_init_attr_ex){
222                         .comp_mask = (IBV_QP_INIT_ATTR_PD |
223                                       IBV_QP_INIT_ATTR_RX_HASH |
224                                       IBV_QP_INIT_ATTR_IND_TABLE),
225                         .qp_type = IBV_QPT_RAW_PACKET,
226                         .pd = priv->pd,
227                         .rwq_ind_tbl = rss->ind,
228                         .rx_hash_conf = {
229                                 .rx_hash_function = IBV_RX_HASH_FUNC_TOEPLITZ,
230                                 .rx_hash_key_len = MLX4_RSS_HASH_KEY_SIZE,
231                                 .rx_hash_key = rss->key,
232                                 .rx_hash_fields_mask = rss->fields,
233                         },
234                  });
235         if (!rss->qp) {
236                 ret = errno ? errno : EINVAL;
237                 msg = "RSS hash QP creation failure";
238                 goto error;
239         }
240         ret = mlx4_glue->modify_qp
241                 (rss->qp,
242                  &(struct ibv_qp_attr){
243                         .qp_state = IBV_QPS_INIT,
244                         .port_num = priv->port,
245                  },
246                  IBV_QP_STATE | IBV_QP_PORT);
247         if (ret) {
248                 msg = "failed to switch RSS hash QP to INIT state";
249                 goto error;
250         }
251         ret = mlx4_glue->modify_qp
252                 (rss->qp,
253                  &(struct ibv_qp_attr){
254                         .qp_state = IBV_QPS_RTR,
255                  },
256                  IBV_QP_STATE);
257         if (ret) {
258                 msg = "failed to switch RSS hash QP to RTR state";
259                 goto error;
260         }
261         return 0;
262 error:
263         if (rss->qp) {
264                 claim_zero(mlx4_glue->destroy_qp(rss->qp));
265                 rss->qp = NULL;
266         }
267         if (rss->ind) {
268                 claim_zero(mlx4_glue->destroy_rwq_ind_table(rss->ind));
269                 rss->ind = NULL;
270         }
271         while (i--)
272                 mlx4_rxq_detach(priv->dev->data->rx_queues[rss->queue_id[i]]);
273         ERROR("mlx4: %s", msg);
274         --rss->usecnt;
275         rte_errno = ret;
276         return -ret;
277 }
278
279 /**
280  * Detach a user from a RSS context instance.
281  *
282  * Used when disabling (not destroying) a flow rule.
283  *
284  * This function decrements the usage count of the context and destroys
285  * usage resources after reaching 0.
286  *
287  * @param rss
288  *   RSS context to detach from.
289  */
290 void
291 mlx4_rss_detach(struct mlx4_rss *rss)
292 {
293         struct priv *priv = rss->priv;
294         unsigned int i;
295
296         assert(rss->refcnt);
297         assert(rss->qp);
298         assert(rss->ind);
299         if (--rss->usecnt)
300                 return;
301         claim_zero(mlx4_glue->destroy_qp(rss->qp));
302         rss->qp = NULL;
303         claim_zero(mlx4_glue->destroy_rwq_ind_table(rss->ind));
304         rss->ind = NULL;
305         for (i = 0; i != rss->queues; ++i)
306                 mlx4_rxq_detach(priv->dev->data->rx_queues[rss->queue_id[i]]);
307 }
308
309 /**
310  * Initialize common RSS context resources.
311  *
312  * Because ConnectX-3 hardware limitations require a fixed order in the
313  * indirection table, WQs must be allocated sequentially to be part of a
314  * common RSS context.
315  *
316  * Since a newly created WQ cannot be moved to a different context, this
317  * function allocates them all at once, one for each configured Rx queue,
318  * as well as all related resources (CQs and mbufs).
319  *
320  * This must therefore be done before creating any Rx flow rules relying on
321  * indirection tables.
322  *
323  * @param priv
324  *   Pointer to private structure.
325  *
326  * @return
327  *   0 on success, a negative errno value otherwise and rte_errno is set.
328  */
329 int
330 mlx4_rss_init(struct priv *priv)
331 {
332         struct rte_eth_dev *dev = priv->dev;
333         uint8_t log2_range = rte_log2_u32(dev->data->nb_rx_queues);
334         uint32_t wq_num_prev = 0;
335         const char *msg;
336         unsigned int i;
337         int ret;
338
339         /* Prepare range for RSS contexts before creating the first WQ. */
340         ret = mlx4_glue->dv_set_context_attr
341                 (priv->ctx,
342                  MLX4DV_SET_CTX_ATTR_LOG_WQS_RANGE_SZ,
343                  &log2_range);
344         if (ret) {
345                 ERROR("cannot set up range size for RSS context to %u"
346                       " (for %u Rx queues), error: %s",
347                       1 << log2_range, dev->data->nb_rx_queues, strerror(ret));
348                 rte_errno = ret;
349                 return -ret;
350         }
351         for (i = 0; i != priv->dev->data->nb_rx_queues; ++i) {
352                 struct rxq *rxq = priv->dev->data->rx_queues[i];
353                 struct ibv_cq *cq;
354                 struct ibv_wq *wq;
355                 uint32_t wq_num;
356
357                 /* Attach the configured Rx queues. */
358                 if (rxq) {
359                         assert(!rxq->usecnt);
360                         ret = mlx4_rxq_attach(rxq);
361                         if (!ret) {
362                                 wq_num = rxq->wq->wq_num;
363                                 goto wq_num_check;
364                         }
365                         ret = -ret;
366                         msg = "unable to create Rx queue resources";
367                         goto error;
368                 }
369                 /*
370                  * WQs are temporarily allocated for unconfigured Rx queues
371                  * to maintain proper index alignment in indirection table
372                  * by skipping unused WQ numbers.
373                  *
374                  * The reason this works at all even though these WQs are
375                  * immediately destroyed is that WQNs are allocated
376                  * sequentially and are guaranteed to never be reused in the
377                  * same context by the underlying implementation.
378                  */
379                 cq = mlx4_glue->create_cq(priv->ctx, 1, NULL, NULL, 0);
380                 if (!cq) {
381                         ret = ENOMEM;
382                         msg = "placeholder CQ creation failure";
383                         goto error;
384                 }
385                 wq = mlx4_glue->create_wq
386                         (priv->ctx,
387                          &(struct ibv_wq_init_attr){
388                                 .wq_type = IBV_WQT_RQ,
389                                 .max_wr = 1,
390                                 .max_sge = 1,
391                                 .pd = priv->pd,
392                                 .cq = cq,
393                          });
394                 if (wq) {
395                         wq_num = wq->wq_num;
396                         claim_zero(mlx4_glue->destroy_wq(wq));
397                 } else {
398                         wq_num = 0; /* Shut up GCC 4.8 warnings. */
399                 }
400                 claim_zero(mlx4_glue->destroy_cq(cq));
401                 if (!wq) {
402                         ret = ENOMEM;
403                         msg = "placeholder WQ creation failure";
404                         goto error;
405                 }
406 wq_num_check:
407                 /*
408                  * While guaranteed by the implementation, make sure WQ
409                  * numbers are really sequential (as the saying goes,
410                  * trust, but verify).
411                  */
412                 if (i && wq_num - wq_num_prev != 1) {
413                         if (rxq)
414                                 mlx4_rxq_detach(rxq);
415                         ret = ERANGE;
416                         msg = "WQ numbers are not sequential";
417                         goto error;
418                 }
419                 wq_num_prev = wq_num;
420         }
421         return 0;
422 error:
423         ERROR("cannot initialize common RSS resources (queue %u): %s: %s",
424               i, msg, strerror(ret));
425         while (i--) {
426                 struct rxq *rxq = priv->dev->data->rx_queues[i];
427
428                 if (rxq)
429                         mlx4_rxq_detach(rxq);
430         }
431         rte_errno = ret;
432         return -ret;
433 }
434
435 /**
436  * Release common RSS context resources.
437  *
438  * As the reverse of mlx4_rss_init(), this must be done after removing all
439  * flow rules relying on indirection tables.
440  *
441  * @param priv
442  *   Pointer to private structure.
443  */
444 void
445 mlx4_rss_deinit(struct priv *priv)
446 {
447         unsigned int i;
448
449         for (i = 0; i != priv->dev->data->nb_rx_queues; ++i) {
450                 struct rxq *rxq = priv->dev->data->rx_queues[i];
451
452                 if (rxq) {
453                         assert(rxq->usecnt == 1);
454                         mlx4_rxq_detach(rxq);
455                 }
456         }
457 }
458
459 /**
460  * Attach a user to a Rx queue.
461  *
462  * Used when the resources of an Rx queue must be instantiated for it to
463  * become in a usable state.
464  *
465  * This function increments the usage count of the Rx queue.
466  *
467  * @param rxq
468  *   Pointer to Rx queue structure.
469  *
470  * @return
471  *   0 on success, negative errno value otherwise and rte_errno is set.
472  */
473 int
474 mlx4_rxq_attach(struct rxq *rxq)
475 {
476         if (rxq->usecnt++) {
477                 assert(rxq->cq);
478                 assert(rxq->wq);
479                 assert(rxq->wqes);
480                 assert(rxq->rq_db);
481                 return 0;
482         }
483
484         struct priv *priv = rxq->priv;
485         const uint32_t elts_n = 1 << rxq->elts_n;
486         const uint32_t sges_n = 1 << rxq->sges_n;
487         struct rte_mbuf *(*elts)[elts_n] = rxq->elts;
488         struct mlx4dv_obj mlxdv;
489         struct mlx4dv_rwq dv_rwq;
490         struct mlx4dv_cq dv_cq = { .comp_mask = MLX4DV_CQ_MASK_UAR, };
491         const char *msg;
492         struct ibv_cq *cq = NULL;
493         struct ibv_wq *wq = NULL;
494         volatile struct mlx4_wqe_data_seg (*wqes)[];
495         unsigned int i;
496         int ret;
497
498         assert(rte_is_power_of_2(elts_n));
499         cq = mlx4_glue->create_cq(priv->ctx, elts_n / sges_n, NULL,
500                                   rxq->channel, 0);
501         if (!cq) {
502                 ret = ENOMEM;
503                 msg = "CQ creation failure";
504                 goto error;
505         }
506         wq = mlx4_glue->create_wq
507                 (priv->ctx,
508                  &(struct ibv_wq_init_attr){
509                         .wq_type = IBV_WQT_RQ,
510                         .max_wr = elts_n / sges_n,
511                         .max_sge = sges_n,
512                         .pd = priv->pd,
513                         .cq = cq,
514                  });
515         if (!wq) {
516                 ret = errno ? errno : EINVAL;
517                 msg = "WQ creation failure";
518                 goto error;
519         }
520         ret = mlx4_glue->modify_wq
521                 (wq,
522                  &(struct ibv_wq_attr){
523                         .attr_mask = IBV_WQ_ATTR_STATE,
524                         .wq_state = IBV_WQS_RDY,
525                  });
526         if (ret) {
527                 msg = "WQ state change to IBV_WQS_RDY failed";
528                 goto error;
529         }
530         /* Retrieve device queue information. */
531         mlxdv.cq.in = cq;
532         mlxdv.cq.out = &dv_cq;
533         mlxdv.rwq.in = wq;
534         mlxdv.rwq.out = &dv_rwq;
535         ret = mlx4_glue->dv_init_obj(&mlxdv, MLX4DV_OBJ_RWQ | MLX4DV_OBJ_CQ);
536         if (ret) {
537                 msg = "failed to obtain device information from WQ/CQ objects";
538                 goto error;
539         }
540         wqes = (volatile struct mlx4_wqe_data_seg (*)[])
541                 ((uintptr_t)dv_rwq.buf.buf + dv_rwq.rq.offset);
542         for (i = 0; i != RTE_DIM(*elts); ++i) {
543                 volatile struct mlx4_wqe_data_seg *scat = &(*wqes)[i];
544                 struct rte_mbuf *buf = rte_pktmbuf_alloc(rxq->mp);
545
546                 if (buf == NULL) {
547                         while (i--) {
548                                 rte_pktmbuf_free_seg((*elts)[i]);
549                                 (*elts)[i] = NULL;
550                         }
551                         ret = ENOMEM;
552                         msg = "cannot allocate mbuf";
553                         goto error;
554                 }
555                 /* Headroom is reserved by rte_pktmbuf_alloc(). */
556                 assert(buf->data_off == RTE_PKTMBUF_HEADROOM);
557                 /* Buffer is supposed to be empty. */
558                 assert(rte_pktmbuf_data_len(buf) == 0);
559                 assert(rte_pktmbuf_pkt_len(buf) == 0);
560                 /* Only the first segment keeps headroom. */
561                 if (i % sges_n)
562                         buf->data_off = 0;
563                 buf->port = rxq->port_id;
564                 buf->data_len = rte_pktmbuf_tailroom(buf);
565                 buf->pkt_len = rte_pktmbuf_tailroom(buf);
566                 buf->nb_segs = 1;
567                 *scat = (struct mlx4_wqe_data_seg){
568                         .addr = rte_cpu_to_be_64(rte_pktmbuf_mtod(buf,
569                                                                   uintptr_t)),
570                         .byte_count = rte_cpu_to_be_32(buf->data_len),
571                         .lkey = rte_cpu_to_be_32(rxq->mr->lkey),
572                 };
573                 (*elts)[i] = buf;
574         }
575         DEBUG("%p: allocated and configured %u segments (max %u packets)",
576               (void *)rxq, elts_n, elts_n / sges_n);
577         rxq->cq = cq;
578         rxq->wq = wq;
579         rxq->wqes = wqes;
580         rxq->rq_db = dv_rwq.rdb;
581         rxq->mcq.buf = dv_cq.buf.buf;
582         rxq->mcq.cqe_cnt = dv_cq.cqe_cnt;
583         rxq->mcq.set_ci_db = dv_cq.set_ci_db;
584         rxq->mcq.cqe_64 = (dv_cq.cqe_size & 64) ? 1 : 0;
585         rxq->mcq.arm_db = dv_cq.arm_db;
586         rxq->mcq.arm_sn = dv_cq.arm_sn;
587         rxq->mcq.cqn = dv_cq.cqn;
588         rxq->mcq.cq_uar = dv_cq.cq_uar;
589         rxq->mcq.cq_db_reg = (uint8_t *)dv_cq.cq_uar + MLX4_CQ_DOORBELL;
590         /* Update doorbell counter. */
591         rxq->rq_ci = elts_n / sges_n;
592         rte_wmb();
593         *rxq->rq_db = rte_cpu_to_be_32(rxq->rq_ci);
594         return 0;
595 error:
596         if (wq)
597                 claim_zero(mlx4_glue->destroy_wq(wq));
598         if (cq)
599                 claim_zero(mlx4_glue->destroy_cq(cq));
600         rte_errno = ret;
601         ERROR("error while attaching Rx queue %p: %s: %s",
602               (void *)rxq, msg, strerror(ret));
603         return -ret;
604 }
605
606 /**
607  * Detach a user from a Rx queue.
608  *
609  * This function decrements the usage count of the Rx queue and destroys
610  * usage resources after reaching 0.
611  *
612  * @param rxq
613  *   Pointer to Rx queue structure.
614  */
615 void
616 mlx4_rxq_detach(struct rxq *rxq)
617 {
618         unsigned int i;
619         struct rte_mbuf *(*elts)[1 << rxq->elts_n] = rxq->elts;
620
621         if (--rxq->usecnt)
622                 return;
623         rxq->rq_ci = 0;
624         memset(&rxq->mcq, 0, sizeof(rxq->mcq));
625         rxq->rq_db = NULL;
626         rxq->wqes = NULL;
627         claim_zero(mlx4_glue->destroy_wq(rxq->wq));
628         rxq->wq = NULL;
629         claim_zero(mlx4_glue->destroy_cq(rxq->cq));
630         rxq->cq = NULL;
631         DEBUG("%p: freeing Rx queue elements", (void *)rxq);
632         for (i = 0; (i != RTE_DIM(*elts)); ++i) {
633                 if (!(*elts)[i])
634                         continue;
635                 rte_pktmbuf_free_seg((*elts)[i]);
636                 (*elts)[i] = NULL;
637         }
638 }
639
640 /**
641  * Returns the per-queue supported offloads.
642  *
643  * @param priv
644  *   Pointer to private structure.
645  *
646  * @return
647  *   Supported Tx offloads.
648  */
649 uint64_t
650 mlx4_get_rx_queue_offloads(struct priv *priv)
651 {
652         uint64_t offloads = DEV_RX_OFFLOAD_SCATTER |
653                             DEV_RX_OFFLOAD_CRC_STRIP;
654
655         if (priv->hw_csum)
656                 offloads |= DEV_RX_OFFLOAD_CHECKSUM;
657         return offloads;
658 }
659
660 /**
661  * Returns the per-port supported offloads.
662  *
663  * @param priv
664  *   Pointer to private structure.
665  *
666  * @return
667  *   Supported Rx offloads.
668  */
669 uint64_t
670 mlx4_get_rx_port_offloads(struct priv *priv)
671 {
672         uint64_t offloads = DEV_RX_OFFLOAD_VLAN_FILTER;
673
674         (void)priv;
675         return offloads;
676 }
677
678 /**
679  * Checks if the per-queue offload configuration is valid.
680  *
681  * @param priv
682  *   Pointer to private structure.
683  * @param requested
684  *   Per-queue offloads configuration.
685  *
686  * @return
687  *   Nonzero when configuration is valid.
688  */
689 static int
690 mlx4_check_rx_queue_offloads(struct priv *priv, uint64_t requested)
691 {
692         uint64_t mandatory = priv->dev->data->dev_conf.rxmode.offloads;
693         uint64_t supported = mlx4_get_rx_port_offloads(priv);
694
695         return !((mandatory ^ requested) & supported);
696 }
697
698 /**
699  * DPDK callback to configure a Rx queue.
700  *
701  * @param dev
702  *   Pointer to Ethernet device structure.
703  * @param idx
704  *   Rx queue index.
705  * @param desc
706  *   Number of descriptors to configure in queue.
707  * @param socket
708  *   NUMA socket on which memory must be allocated.
709  * @param[in] conf
710  *   Thresholds parameters.
711  * @param mp
712  *   Memory pool for buffer allocations.
713  *
714  * @return
715  *   0 on success, negative errno value otherwise and rte_errno is set.
716  */
717 int
718 mlx4_rx_queue_setup(struct rte_eth_dev *dev, uint16_t idx, uint16_t desc,
719                     unsigned int socket, const struct rte_eth_rxconf *conf,
720                     struct rte_mempool *mp)
721 {
722         struct priv *priv = dev->data->dev_private;
723         uint32_t mb_len = rte_pktmbuf_data_room_size(mp);
724         struct rte_mbuf *(*elts)[rte_align32pow2(desc)];
725         struct rxq *rxq;
726         struct mlx4_malloc_vec vec[] = {
727                 {
728                         .align = RTE_CACHE_LINE_SIZE,
729                         .size = sizeof(*rxq),
730                         .addr = (void **)&rxq,
731                 },
732                 {
733                         .align = RTE_CACHE_LINE_SIZE,
734                         .size = sizeof(*elts),
735                         .addr = (void **)&elts,
736                 },
737         };
738         int ret;
739
740         (void)conf; /* Thresholds configuration (ignored). */
741         DEBUG("%p: configuring queue %u for %u descriptors",
742               (void *)dev, idx, desc);
743         if (!mlx4_check_rx_queue_offloads(priv, conf->offloads)) {
744                 rte_errno = ENOTSUP;
745                 ERROR("%p: Rx queue offloads 0x%" PRIx64 " don't match port "
746                       "offloads 0x%" PRIx64 " or supported offloads 0x%" PRIx64,
747                       (void *)dev, conf->offloads,
748                       dev->data->dev_conf.rxmode.offloads,
749                       (mlx4_get_rx_port_offloads(priv) |
750                        mlx4_get_rx_queue_offloads(priv)));
751                 return -rte_errno;
752         }
753         if (idx >= dev->data->nb_rx_queues) {
754                 rte_errno = EOVERFLOW;
755                 ERROR("%p: queue index out of range (%u >= %u)",
756                       (void *)dev, idx, dev->data->nb_rx_queues);
757                 return -rte_errno;
758         }
759         rxq = dev->data->rx_queues[idx];
760         if (rxq) {
761                 rte_errno = EEXIST;
762                 ERROR("%p: Rx queue %u already configured, release it first",
763                       (void *)dev, idx);
764                 return -rte_errno;
765         }
766         if (!desc) {
767                 rte_errno = EINVAL;
768                 ERROR("%p: invalid number of Rx descriptors", (void *)dev);
769                 return -rte_errno;
770         }
771         if (desc != RTE_DIM(*elts)) {
772                 desc = RTE_DIM(*elts);
773                 WARN("%p: increased number of descriptors in Rx queue %u"
774                      " to the next power of two (%u)",
775                      (void *)dev, idx, desc);
776         }
777         /* Allocate and initialize Rx queue. */
778         mlx4_zmallocv_socket("RXQ", vec, RTE_DIM(vec), socket);
779         if (!rxq) {
780                 ERROR("%p: unable to allocate queue index %u",
781                       (void *)dev, idx);
782                 return -rte_errno;
783         }
784         *rxq = (struct rxq){
785                 .priv = priv,
786                 .mp = mp,
787                 .port_id = dev->data->port_id,
788                 .sges_n = 0,
789                 .elts_n = rte_log2_u32(desc),
790                 .elts = elts,
791                 /* Toggle Rx checksum offload if hardware supports it. */
792                 .csum = priv->hw_csum &&
793                         (conf->offloads & DEV_RX_OFFLOAD_CHECKSUM),
794                 .csum_l2tun = priv->hw_csum_l2tun &&
795                               (conf->offloads & DEV_RX_OFFLOAD_CHECKSUM),
796                 .l2tun_offload = priv->hw_csum_l2tun,
797                 .stats = {
798                         .idx = idx,
799                 },
800                 .socket = socket,
801         };
802         /* Enable scattered packets support for this queue if necessary. */
803         assert(mb_len >= RTE_PKTMBUF_HEADROOM);
804         if (dev->data->dev_conf.rxmode.max_rx_pkt_len <=
805             (mb_len - RTE_PKTMBUF_HEADROOM)) {
806                 ;
807         } else if (conf->offloads & DEV_RX_OFFLOAD_SCATTER) {
808                 uint32_t size =
809                         RTE_PKTMBUF_HEADROOM +
810                         dev->data->dev_conf.rxmode.max_rx_pkt_len;
811                 uint32_t sges_n;
812
813                 /*
814                  * Determine the number of SGEs needed for a full packet
815                  * and round it to the next power of two.
816                  */
817                 sges_n = rte_log2_u32((size / mb_len) + !!(size % mb_len));
818                 rxq->sges_n = sges_n;
819                 /* Make sure sges_n did not overflow. */
820                 size = mb_len * (1 << rxq->sges_n);
821                 size -= RTE_PKTMBUF_HEADROOM;
822                 if (size < dev->data->dev_conf.rxmode.max_rx_pkt_len) {
823                         rte_errno = EOVERFLOW;
824                         ERROR("%p: too many SGEs (%u) needed to handle"
825                               " requested maximum packet size %u",
826                               (void *)dev,
827                               1 << sges_n,
828                               dev->data->dev_conf.rxmode.max_rx_pkt_len);
829                         goto error;
830                 }
831         } else {
832                 WARN("%p: the requested maximum Rx packet size (%u) is"
833                      " larger than a single mbuf (%u) and scattered"
834                      " mode has not been requested",
835                      (void *)dev,
836                      dev->data->dev_conf.rxmode.max_rx_pkt_len,
837                      mb_len - RTE_PKTMBUF_HEADROOM);
838         }
839         DEBUG("%p: maximum number of segments per packet: %u",
840               (void *)dev, 1 << rxq->sges_n);
841         if (desc % (1 << rxq->sges_n)) {
842                 rte_errno = EINVAL;
843                 ERROR("%p: number of Rx queue descriptors (%u) is not a"
844                       " multiple of maximum segments per packet (%u)",
845                       (void *)dev,
846                       desc,
847                       1 << rxq->sges_n);
848                 goto error;
849         }
850         /* Use the entire Rx mempool as the memory region. */
851         rxq->mr = mlx4_mr_get(priv, mp);
852         if (!rxq->mr) {
853                 ERROR("%p: MR creation failure: %s",
854                       (void *)dev, strerror(rte_errno));
855                 goto error;
856         }
857         if (dev->data->dev_conf.intr_conf.rxq) {
858                 rxq->channel = mlx4_glue->create_comp_channel(priv->ctx);
859                 if (rxq->channel == NULL) {
860                         rte_errno = ENOMEM;
861                         ERROR("%p: Rx interrupt completion channel creation"
862                               " failure: %s",
863                               (void *)dev, strerror(rte_errno));
864                         goto error;
865                 }
866                 if (mlx4_fd_set_non_blocking(rxq->channel->fd) < 0) {
867                         ERROR("%p: unable to make Rx interrupt completion"
868                               " channel non-blocking: %s",
869                               (void *)dev, strerror(rte_errno));
870                         goto error;
871                 }
872         }
873         DEBUG("%p: adding Rx queue %p to list", (void *)dev, (void *)rxq);
874         dev->data->rx_queues[idx] = rxq;
875         return 0;
876 error:
877         dev->data->rx_queues[idx] = NULL;
878         ret = rte_errno;
879         mlx4_rx_queue_release(rxq);
880         rte_errno = ret;
881         assert(rte_errno > 0);
882         return -rte_errno;
883 }
884
885 /**
886  * DPDK callback to release a Rx queue.
887  *
888  * @param dpdk_rxq
889  *   Generic Rx queue pointer.
890  */
891 void
892 mlx4_rx_queue_release(void *dpdk_rxq)
893 {
894         struct rxq *rxq = (struct rxq *)dpdk_rxq;
895         struct priv *priv;
896         unsigned int i;
897
898         if (rxq == NULL)
899                 return;
900         priv = rxq->priv;
901         for (i = 0; i != priv->dev->data->nb_rx_queues; ++i)
902                 if (priv->dev->data->rx_queues[i] == rxq) {
903                         DEBUG("%p: removing Rx queue %p from list",
904                               (void *)priv->dev, (void *)rxq);
905                         priv->dev->data->rx_queues[i] = NULL;
906                         break;
907                 }
908         assert(!rxq->cq);
909         assert(!rxq->wq);
910         assert(!rxq->wqes);
911         assert(!rxq->rq_db);
912         if (rxq->channel)
913                 claim_zero(mlx4_glue->destroy_comp_channel(rxq->channel));
914         if (rxq->mr)
915                 mlx4_mr_put(rxq->mr);
916         rte_free(rxq);
917 }