927c32728460db92860a72795397e35166be987c
[dpdk.git] / drivers / net / mlx5 / mlx5_txpp.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright 2020 Mellanox Technologies, Ltd
3  */
4 #include <fcntl.h>
5 #include <stdint.h>
6
7 #include <rte_ether.h>
8 #include <ethdev_driver.h>
9 #include <rte_interrupts.h>
10 #include <rte_alarm.h>
11 #include <rte_malloc.h>
12 #include <rte_cycles.h>
13 #include <rte_eal_paging.h>
14
15 #include <mlx5_malloc.h>
16 #include <mlx5_common_devx.h>
17
18 #include "mlx5.h"
19 #include "mlx5_rx.h"
20 #include "mlx5_tx.h"
21 #include "mlx5_common_os.h"
22
23 static_assert(sizeof(struct mlx5_cqe_ts) == sizeof(rte_int128_t),
24                 "Wrong timestamp CQE part size");
25
26 static const char * const mlx5_txpp_stat_names[] = {
27         "tx_pp_missed_interrupt_errors", /* Missed service interrupt. */
28         "tx_pp_rearm_queue_errors", /* Rearm Queue errors. */
29         "tx_pp_clock_queue_errors", /* Clock Queue errors. */
30         "tx_pp_timestamp_past_errors", /* Timestamp in the past. */
31         "tx_pp_timestamp_future_errors", /* Timestamp in the distant future. */
32         "tx_pp_jitter", /* Timestamp jitter (one Clock Queue completion). */
33         "tx_pp_wander", /* Timestamp wander (half of Clock Queue CQEs). */
34         "tx_pp_sync_lost", /* Scheduling synchronization lost. */
35 };
36
37 /* Destroy Event Queue Notification Channel. */
38 static void
39 mlx5_txpp_destroy_event_channel(struct mlx5_dev_ctx_shared *sh)
40 {
41         if (sh->txpp.echan) {
42                 mlx5_os_devx_destroy_event_channel(sh->txpp.echan);
43                 sh->txpp.echan = NULL;
44         }
45 }
46
47 /* Create Event Queue Notification Channel. */
48 static int
49 mlx5_txpp_create_event_channel(struct mlx5_dev_ctx_shared *sh)
50 {
51         MLX5_ASSERT(!sh->txpp.echan);
52         sh->txpp.echan = mlx5_os_devx_create_event_channel(sh->cdev->ctx,
53                         MLX5DV_DEVX_CREATE_EVENT_CHANNEL_FLAGS_OMIT_EV_DATA);
54         if (!sh->txpp.echan) {
55                 rte_errno = errno;
56                 DRV_LOG(ERR, "Failed to create event channel %d.", rte_errno);
57                 return -rte_errno;
58         }
59         return 0;
60 }
61
62 static void
63 mlx5_txpp_free_pp_index(struct mlx5_dev_ctx_shared *sh)
64 {
65 #ifdef HAVE_MLX5DV_PP_ALLOC
66         if (sh->txpp.pp) {
67                 mlx5_glue->dv_free_pp(sh->txpp.pp);
68                 sh->txpp.pp = NULL;
69                 sh->txpp.pp_id = 0;
70         }
71 #else
72         RTE_SET_USED(sh);
73         DRV_LOG(ERR, "Freeing pacing index is not supported.");
74 #endif
75 }
76
77 /* Allocate Packet Pacing index from kernel via mlx5dv call. */
78 static int
79 mlx5_txpp_alloc_pp_index(struct mlx5_dev_ctx_shared *sh)
80 {
81 #ifdef HAVE_MLX5DV_PP_ALLOC
82         uint32_t pp[MLX5_ST_SZ_DW(set_pp_rate_limit_context)];
83         uint64_t rate;
84
85         MLX5_ASSERT(!sh->txpp.pp);
86         memset(&pp, 0, sizeof(pp));
87         rate = NS_PER_S / sh->txpp.tick;
88         if (rate * sh->txpp.tick != NS_PER_S)
89                 DRV_LOG(WARNING, "Packet pacing frequency is not precise.");
90         if (sh->txpp.test) {
91                 uint32_t len;
92
93                 len = RTE_MAX(MLX5_TXPP_TEST_PKT_SIZE,
94                               (size_t)RTE_ETHER_MIN_LEN);
95                 MLX5_SET(set_pp_rate_limit_context, &pp,
96                          burst_upper_bound, len);
97                 MLX5_SET(set_pp_rate_limit_context, &pp,
98                          typical_packet_size, len);
99                 /* Convert packets per second into kilobits. */
100                 rate = (rate * len) / (1000ul / CHAR_BIT);
101                 DRV_LOG(INFO, "Packet pacing rate set to %" PRIu64, rate);
102         }
103         MLX5_SET(set_pp_rate_limit_context, &pp, rate_limit, rate);
104         MLX5_SET(set_pp_rate_limit_context, &pp, rate_mode,
105                  sh->txpp.test ? MLX5_DATA_RATE : MLX5_WQE_RATE);
106         sh->txpp.pp = mlx5_glue->dv_alloc_pp
107                                 (sh->cdev->ctx, sizeof(pp), &pp,
108                                  MLX5DV_PP_ALLOC_FLAGS_DEDICATED_INDEX);
109         if (sh->txpp.pp == NULL) {
110                 DRV_LOG(ERR, "Failed to allocate packet pacing index.");
111                 rte_errno = errno;
112                 return -errno;
113         }
114         if (!((struct mlx5dv_pp *)sh->txpp.pp)->index) {
115                 DRV_LOG(ERR, "Zero packet pacing index allocated.");
116                 mlx5_txpp_free_pp_index(sh);
117                 rte_errno = ENOTSUP;
118                 return -ENOTSUP;
119         }
120         sh->txpp.pp_id = ((struct mlx5dv_pp *)(sh->txpp.pp))->index;
121         return 0;
122 #else
123         RTE_SET_USED(sh);
124         DRV_LOG(ERR, "Allocating pacing index is not supported.");
125         rte_errno = ENOTSUP;
126         return -ENOTSUP;
127 #endif
128 }
129
130 static void
131 mlx5_txpp_destroy_send_queue(struct mlx5_txpp_wq *wq)
132 {
133         mlx5_devx_sq_destroy(&wq->sq_obj);
134         mlx5_devx_cq_destroy(&wq->cq_obj);
135         memset(wq, 0, sizeof(*wq));
136 }
137
138 static void
139 mlx5_txpp_destroy_rearm_queue(struct mlx5_dev_ctx_shared *sh)
140 {
141         struct mlx5_txpp_wq *wq = &sh->txpp.rearm_queue;
142
143         mlx5_txpp_destroy_send_queue(wq);
144 }
145
146 static void
147 mlx5_txpp_destroy_clock_queue(struct mlx5_dev_ctx_shared *sh)
148 {
149         struct mlx5_txpp_wq *wq = &sh->txpp.clock_queue;
150
151         mlx5_txpp_destroy_send_queue(wq);
152         if (sh->txpp.tsa) {
153                 mlx5_free(sh->txpp.tsa);
154                 sh->txpp.tsa = NULL;
155         }
156 }
157
158 static void
159 mlx5_txpp_doorbell_rearm_queue(struct mlx5_dev_ctx_shared *sh, uint16_t ci)
160 {
161         struct mlx5_txpp_wq *wq = &sh->txpp.rearm_queue;
162         struct mlx5_wqe *wqe = (struct mlx5_wqe *)(uintptr_t)wq->sq_obj.wqes;
163         union {
164                 uint32_t w32[2];
165                 uint64_t w64;
166         } cs;
167
168         wq->sq_ci = ci + 1;
169         cs.w32[0] = rte_cpu_to_be_32(rte_be_to_cpu_32
170                         (wqe[ci & (wq->sq_size - 1)].ctrl[0]) | (ci - 1) << 8);
171         cs.w32[1] = wqe[ci & (wq->sq_size - 1)].ctrl[1];
172         /* Update SQ doorbell record with new SQ ci. */
173         mlx5_doorbell_ring(&sh->tx_uar.bf_db, cs.w64, wq->sq_ci,
174                            wq->sq_obj.db_rec, !sh->tx_uar.dbnc);
175 }
176
177 static void
178 mlx5_txpp_fill_wqe_rearm_queue(struct mlx5_dev_ctx_shared *sh)
179 {
180         struct mlx5_txpp_wq *wq = &sh->txpp.rearm_queue;
181         struct mlx5_wqe *wqe = (struct mlx5_wqe *)(uintptr_t)wq->sq_obj.wqes;
182         uint32_t i;
183
184         for (i = 0; i < wq->sq_size; i += 2) {
185                 struct mlx5_wqe_cseg *cs;
186                 struct mlx5_wqe_qseg *qs;
187                 uint32_t index;
188
189                 /* Build SEND_EN request with slave WQE index. */
190                 cs = &wqe[i + 0].cseg;
191                 cs->opcode = RTE_BE32(MLX5_OPCODE_SEND_EN | 0);
192                 cs->sq_ds = rte_cpu_to_be_32((wq->sq_obj.sq->id << 8) | 2);
193                 cs->flags = RTE_BE32(MLX5_COMP_ALWAYS <<
194                                      MLX5_COMP_MODE_OFFSET);
195                 cs->misc = RTE_BE32(0);
196                 qs = RTE_PTR_ADD(cs, sizeof(struct mlx5_wqe_cseg));
197                 index = (i * MLX5_TXPP_REARM / 2 + MLX5_TXPP_REARM) &
198                         ((1 << MLX5_WQ_INDEX_WIDTH) - 1);
199                 qs->max_index = rte_cpu_to_be_32(index);
200                 qs->qpn_cqn =
201                            rte_cpu_to_be_32(sh->txpp.clock_queue.sq_obj.sq->id);
202                 /* Build WAIT request with slave CQE index. */
203                 cs = &wqe[i + 1].cseg;
204                 cs->opcode = RTE_BE32(MLX5_OPCODE_WAIT | 0);
205                 cs->sq_ds = rte_cpu_to_be_32((wq->sq_obj.sq->id << 8) | 2);
206                 cs->flags = RTE_BE32(MLX5_COMP_ONLY_ERR <<
207                                      MLX5_COMP_MODE_OFFSET);
208                 cs->misc = RTE_BE32(0);
209                 qs = RTE_PTR_ADD(cs, sizeof(struct mlx5_wqe_cseg));
210                 index = (i * MLX5_TXPP_REARM / 2 + MLX5_TXPP_REARM / 2) &
211                         ((1 << MLX5_CQ_INDEX_WIDTH) - 1);
212                 qs->max_index = rte_cpu_to_be_32(index);
213                 qs->qpn_cqn =
214                            rte_cpu_to_be_32(sh->txpp.clock_queue.cq_obj.cq->id);
215         }
216 }
217
218 /* Creates the Rearm Queue to fire the requests to Clock Queue in realtime. */
219 static int
220 mlx5_txpp_create_rearm_queue(struct mlx5_dev_ctx_shared *sh)
221 {
222         struct mlx5_devx_create_sq_attr sq_attr = {
223                 .cd_master = 1,
224                 .state = MLX5_SQC_STATE_RST,
225                 .tis_lst_sz = 1,
226                 .tis_num = sh->tis[0]->id,
227                 .wq_attr = (struct mlx5_devx_wq_attr){
228                         .pd = sh->cdev->pdn,
229                         .uar_page =
230                                 mlx5_os_get_devx_uar_page_id(sh->tx_uar.obj),
231                 },
232                 .ts_format = mlx5_ts_format_conv
233                                        (sh->cdev->config.hca_attr.sq_ts_format),
234         };
235         struct mlx5_devx_modify_sq_attr msq_attr = { 0 };
236         struct mlx5_devx_cq_attr cq_attr = {
237                 .uar_page_id = mlx5_os_get_devx_uar_page_id(sh->tx_uar.obj),
238         };
239         struct mlx5_txpp_wq *wq = &sh->txpp.rearm_queue;
240         int ret;
241
242         /* Create completion queue object for Rearm Queue. */
243         ret = mlx5_devx_cq_create(sh->cdev->ctx, &wq->cq_obj,
244                                   log2above(MLX5_TXPP_REARM_CQ_SIZE), &cq_attr,
245                                   sh->numa_node);
246         if (ret) {
247                 DRV_LOG(ERR, "Failed to create CQ for Rearm Queue.");
248                 return ret;
249         }
250         wq->cq_ci = 0;
251         wq->arm_sn = 0;
252         wq->sq_size = MLX5_TXPP_REARM_SQ_SIZE;
253         MLX5_ASSERT(wq->sq_size == (1 << log2above(wq->sq_size)));
254         /* Create send queue object for Rearm Queue. */
255         sq_attr.cqn = wq->cq_obj.cq->id;
256         /* There should be no WQE leftovers in the cyclic queue. */
257         ret = mlx5_devx_sq_create(sh->cdev->ctx, &wq->sq_obj,
258                                   log2above(MLX5_TXPP_REARM_SQ_SIZE), &sq_attr,
259                                   sh->numa_node);
260         if (ret) {
261                 rte_errno = errno;
262                 DRV_LOG(ERR, "Failed to create SQ for Rearm Queue.");
263                 goto error;
264         }
265         /* Build the WQEs in the Send Queue before goto Ready state. */
266         mlx5_txpp_fill_wqe_rearm_queue(sh);
267         /* Change queue state to ready. */
268         msq_attr.sq_state = MLX5_SQC_STATE_RST;
269         msq_attr.state = MLX5_SQC_STATE_RDY;
270         ret = mlx5_devx_cmd_modify_sq(wq->sq_obj.sq, &msq_attr);
271         if (ret) {
272                 DRV_LOG(ERR, "Failed to set SQ ready state Rearm Queue.");
273                 goto error;
274         }
275         return 0;
276 error:
277         ret = -rte_errno;
278         mlx5_txpp_destroy_rearm_queue(sh);
279         rte_errno = -ret;
280         return ret;
281 }
282
283 static void
284 mlx5_txpp_fill_wqe_clock_queue(struct mlx5_dev_ctx_shared *sh)
285 {
286         struct mlx5_txpp_wq *wq = &sh->txpp.clock_queue;
287         struct mlx5_wqe *wqe = (struct mlx5_wqe *)(uintptr_t)wq->sq_obj.wqes;
288         struct mlx5_wqe_cseg *cs = &wqe->cseg;
289         uint32_t wqe_size, opcode, i;
290         uint8_t *dst;
291
292         /* For test purposes fill the WQ with SEND inline packet. */
293         if (sh->txpp.test) {
294                 wqe_size = RTE_ALIGN(MLX5_TXPP_TEST_PKT_SIZE +
295                                      MLX5_WQE_CSEG_SIZE +
296                                      2 * MLX5_WQE_ESEG_SIZE -
297                                      MLX5_ESEG_MIN_INLINE_SIZE,
298                                      MLX5_WSEG_SIZE);
299                 opcode = MLX5_OPCODE_SEND;
300         } else {
301                 wqe_size = MLX5_WSEG_SIZE;
302                 opcode = MLX5_OPCODE_NOP;
303         }
304         cs->opcode = rte_cpu_to_be_32(opcode | 0); /* Index is ignored. */
305         cs->sq_ds = rte_cpu_to_be_32((wq->sq_obj.sq->id << 8) |
306                                      (wqe_size / MLX5_WSEG_SIZE));
307         cs->flags = RTE_BE32(MLX5_COMP_ALWAYS << MLX5_COMP_MODE_OFFSET);
308         cs->misc = RTE_BE32(0);
309         wqe_size = RTE_ALIGN(wqe_size, MLX5_WQE_SIZE);
310         if (sh->txpp.test) {
311                 struct mlx5_wqe_eseg *es = &wqe->eseg;
312                 struct rte_ether_hdr *eth_hdr;
313                 struct rte_ipv4_hdr *ip_hdr;
314                 struct rte_udp_hdr *udp_hdr;
315
316                 /* Build the inline test packet pattern. */
317                 MLX5_ASSERT(wqe_size <= MLX5_WQE_SIZE_MAX);
318                 MLX5_ASSERT(MLX5_TXPP_TEST_PKT_SIZE >=
319                                 (sizeof(struct rte_ether_hdr) +
320                                  sizeof(struct rte_ipv4_hdr)));
321                 es->flags = 0;
322                 es->cs_flags = MLX5_ETH_WQE_L3_CSUM | MLX5_ETH_WQE_L4_CSUM;
323                 es->swp_offs = 0;
324                 es->metadata = 0;
325                 es->swp_flags = 0;
326                 es->mss = 0;
327                 es->inline_hdr_sz = RTE_BE16(MLX5_TXPP_TEST_PKT_SIZE);
328                 /* Build test packet L2 header (Ethernet). */
329                 dst = (uint8_t *)&es->inline_data;
330                 eth_hdr = (struct rte_ether_hdr *)dst;
331                 rte_eth_random_addr(&eth_hdr->dst_addr.addr_bytes[0]);
332                 rte_eth_random_addr(&eth_hdr->src_addr.addr_bytes[0]);
333                 eth_hdr->ether_type = rte_cpu_to_be_16(RTE_ETHER_TYPE_IPV4);
334                 /* Build test packet L3 header (IP v4). */
335                 dst += sizeof(struct rte_ether_hdr);
336                 ip_hdr = (struct rte_ipv4_hdr *)dst;
337                 ip_hdr->version_ihl = RTE_IPV4_VHL_DEF;
338                 ip_hdr->type_of_service = 0;
339                 ip_hdr->fragment_offset = 0;
340                 ip_hdr->time_to_live = 64;
341                 ip_hdr->next_proto_id = IPPROTO_UDP;
342                 ip_hdr->packet_id = 0;
343                 ip_hdr->total_length = RTE_BE16(MLX5_TXPP_TEST_PKT_SIZE -
344                                                 sizeof(struct rte_ether_hdr));
345                 /* use RFC5735 / RFC2544 reserved network test addresses */
346                 ip_hdr->src_addr = RTE_BE32((198U << 24) | (18 << 16) |
347                                             (0 << 8) | 1);
348                 ip_hdr->dst_addr = RTE_BE32((198U << 24) | (18 << 16) |
349                                             (0 << 8) | 2);
350                 if (MLX5_TXPP_TEST_PKT_SIZE <
351                                         (sizeof(struct rte_ether_hdr) +
352                                          sizeof(struct rte_ipv4_hdr) +
353                                          sizeof(struct rte_udp_hdr)))
354                         goto wcopy;
355                 /* Build test packet L4 header (UDP). */
356                 dst += sizeof(struct rte_ipv4_hdr);
357                 udp_hdr = (struct rte_udp_hdr *)dst;
358                 udp_hdr->src_port = RTE_BE16(9); /* RFC863 Discard. */
359                 udp_hdr->dst_port = RTE_BE16(9);
360                 udp_hdr->dgram_len = RTE_BE16(MLX5_TXPP_TEST_PKT_SIZE -
361                                               sizeof(struct rte_ether_hdr) -
362                                               sizeof(struct rte_ipv4_hdr));
363                 udp_hdr->dgram_cksum = 0;
364                 /* Fill the test packet data. */
365                 dst += sizeof(struct rte_udp_hdr);
366                 for (i = sizeof(struct rte_ether_hdr) +
367                         sizeof(struct rte_ipv4_hdr) +
368                         sizeof(struct rte_udp_hdr);
369                                 i < MLX5_TXPP_TEST_PKT_SIZE; i++)
370                         *dst++ = (uint8_t)(i & 0xFF);
371         }
372 wcopy:
373         /* Duplicate the pattern to the next WQEs. */
374         dst = (uint8_t *)(uintptr_t)wq->sq_obj.umem_buf;
375         for (i = 1; i < MLX5_TXPP_CLKQ_SIZE; i++) {
376                 dst += wqe_size;
377                 rte_memcpy(dst, (void *)(uintptr_t)wq->sq_obj.umem_buf,
378                            wqe_size);
379         }
380 }
381
382 /* Creates the Clock Queue for packet pacing, returns zero on success. */
383 static int
384 mlx5_txpp_create_clock_queue(struct mlx5_dev_ctx_shared *sh)
385 {
386         struct mlx5_devx_create_sq_attr sq_attr = { 0 };
387         struct mlx5_devx_modify_sq_attr msq_attr = { 0 };
388         struct mlx5_devx_cq_attr cq_attr = {
389                 .use_first_only = 1,
390                 .overrun_ignore = 1,
391                 .uar_page_id = mlx5_os_get_devx_uar_page_id(sh->tx_uar.obj),
392         };
393         struct mlx5_txpp_wq *wq = &sh->txpp.clock_queue;
394         int ret;
395
396         sh->txpp.tsa = mlx5_malloc(MLX5_MEM_RTE | MLX5_MEM_ZERO,
397                                    MLX5_TXPP_REARM_SQ_SIZE *
398                                    sizeof(struct mlx5_txpp_ts),
399                                    0, sh->numa_node);
400         if (!sh->txpp.tsa) {
401                 DRV_LOG(ERR, "Failed to allocate memory for CQ stats.");
402                 return -ENOMEM;
403         }
404         sh->txpp.ts_p = 0;
405         sh->txpp.ts_n = 0;
406         /* Create completion queue object for Clock Queue. */
407         ret = mlx5_devx_cq_create(sh->cdev->ctx, &wq->cq_obj,
408                                   log2above(MLX5_TXPP_CLKQ_SIZE), &cq_attr,
409                                   sh->numa_node);
410         if (ret) {
411                 DRV_LOG(ERR, "Failed to create CQ for Clock Queue.");
412                 goto error;
413         }
414         wq->cq_ci = 0;
415         /* Allocate memory buffer for Send Queue WQEs. */
416         if (sh->txpp.test) {
417                 wq->sq_size = RTE_ALIGN(MLX5_TXPP_TEST_PKT_SIZE +
418                                         MLX5_WQE_CSEG_SIZE +
419                                         2 * MLX5_WQE_ESEG_SIZE -
420                                         MLX5_ESEG_MIN_INLINE_SIZE,
421                                         MLX5_WQE_SIZE) / MLX5_WQE_SIZE;
422                 wq->sq_size *= MLX5_TXPP_CLKQ_SIZE;
423         } else {
424                 wq->sq_size = MLX5_TXPP_CLKQ_SIZE;
425         }
426         /* There should not be WQE leftovers in the cyclic queue. */
427         MLX5_ASSERT(wq->sq_size == (1 << log2above(wq->sq_size)));
428         /* Create send queue object for Clock Queue. */
429         if (sh->txpp.test) {
430                 sq_attr.tis_lst_sz = 1;
431                 sq_attr.tis_num = sh->tis[0]->id;
432                 sq_attr.non_wire = 0;
433                 sq_attr.static_sq_wq = 1;
434         } else {
435                 sq_attr.non_wire = 1;
436                 sq_attr.static_sq_wq = 1;
437         }
438         sq_attr.cqn = wq->cq_obj.cq->id;
439         sq_attr.packet_pacing_rate_limit_index = sh->txpp.pp_id;
440         sq_attr.wq_attr.cd_slave = 1;
441         sq_attr.wq_attr.uar_page = mlx5_os_get_devx_uar_page_id(sh->tx_uar.obj);
442         sq_attr.wq_attr.pd = sh->cdev->pdn;
443         sq_attr.ts_format =
444                 mlx5_ts_format_conv(sh->cdev->config.hca_attr.sq_ts_format);
445         ret = mlx5_devx_sq_create(sh->cdev->ctx, &wq->sq_obj,
446                                   log2above(wq->sq_size),
447                                   &sq_attr, sh->numa_node);
448         if (ret) {
449                 rte_errno = errno;
450                 DRV_LOG(ERR, "Failed to create SQ for Clock Queue.");
451                 goto error;
452         }
453         /* Build the WQEs in the Send Queue before goto Ready state. */
454         mlx5_txpp_fill_wqe_clock_queue(sh);
455         /* Change queue state to ready. */
456         msq_attr.sq_state = MLX5_SQC_STATE_RST;
457         msq_attr.state = MLX5_SQC_STATE_RDY;
458         wq->sq_ci = 0;
459         ret = mlx5_devx_cmd_modify_sq(wq->sq_obj.sq, &msq_attr);
460         if (ret) {
461                 DRV_LOG(ERR, "Failed to set SQ ready state Clock Queue.");
462                 goto error;
463         }
464         return 0;
465 error:
466         ret = -rte_errno;
467         mlx5_txpp_destroy_clock_queue(sh);
468         rte_errno = -ret;
469         return ret;
470 }
471
472 /* Enable notification from the Rearm Queue CQ. */
473 static inline void
474 mlx5_txpp_cq_arm(struct mlx5_dev_ctx_shared *sh)
475 {
476         struct mlx5_txpp_wq *aq = &sh->txpp.rearm_queue;
477         uint32_t arm_sn = aq->arm_sn << MLX5_CQ_SQN_OFFSET;
478         uint32_t db_hi = arm_sn | MLX5_CQ_DBR_CMD_ALL | aq->cq_ci;
479         uint64_t db_be =
480                 rte_cpu_to_be_64(((uint64_t)db_hi << 32) | aq->cq_obj.cq->id);
481
482         mlx5_doorbell_ring(&sh->tx_uar.cq_db, db_be, db_hi,
483                            &aq->cq_obj.db_rec[MLX5_CQ_ARM_DB], 0);
484         aq->arm_sn++;
485 }
486
487 #if defined(RTE_ARCH_X86_64)
488 static inline int
489 mlx5_atomic128_compare_exchange(rte_int128_t *dst,
490                                 rte_int128_t *exp,
491                                 const rte_int128_t *src)
492 {
493         uint8_t res;
494
495         asm volatile (MPLOCKED
496                       "cmpxchg16b %[dst];"
497                       " sete %[res]"
498                       : [dst] "=m" (dst->val[0]),
499                         "=a" (exp->val[0]),
500                         "=d" (exp->val[1]),
501                         [res] "=r" (res)
502                       : "b" (src->val[0]),
503                         "c" (src->val[1]),
504                         "a" (exp->val[0]),
505                         "d" (exp->val[1]),
506                         "m" (dst->val[0])
507                       : "memory");
508
509         return res;
510 }
511 #endif
512
513 static inline void
514 mlx5_atomic_read_cqe(rte_int128_t *from, rte_int128_t *ts)
515 {
516         /*
517          * The only CQE of Clock Queue is being continuously
518          * updated by hardware with specified rate. We must
519          * read timestamp and WQE completion index atomically.
520          */
521 #if defined(RTE_ARCH_X86_64)
522         rte_int128_t src;
523
524         memset(&src, 0, sizeof(src));
525         *ts = src;
526         /* if (*from == *ts) *from = *src else *ts = *from; */
527         mlx5_atomic128_compare_exchange(from, ts, &src);
528 #else
529         uint64_t *cqe = (uint64_t *)from;
530
531         /*
532          * Power architecture does not support 16B compare-and-swap.
533          * ARM implements it in software, code below is more relevant.
534          */
535         for (;;) {
536                 uint64_t tm, op;
537                 uint64_t *ps;
538
539                 rte_compiler_barrier();
540                 tm = __atomic_load_n(cqe + 0, __ATOMIC_RELAXED);
541                 op = __atomic_load_n(cqe + 1, __ATOMIC_RELAXED);
542                 rte_compiler_barrier();
543                 if (tm != __atomic_load_n(cqe + 0, __ATOMIC_RELAXED))
544                         continue;
545                 if (op != __atomic_load_n(cqe + 1, __ATOMIC_RELAXED))
546                         continue;
547                 ps = (uint64_t *)ts;
548                 ps[0] = tm;
549                 ps[1] = op;
550                 return;
551         }
552 #endif
553 }
554
555 /* Stores timestamp in the cache structure to share data with datapath. */
556 static inline void
557 mlx5_txpp_cache_timestamp(struct mlx5_dev_ctx_shared *sh,
558                            uint64_t ts, uint64_t ci)
559 {
560         ci = ci << (64 - MLX5_CQ_INDEX_WIDTH);
561         ci |= (ts << MLX5_CQ_INDEX_WIDTH) >> MLX5_CQ_INDEX_WIDTH;
562         rte_compiler_barrier();
563         __atomic_store_n(&sh->txpp.ts.ts, ts, __ATOMIC_RELAXED);
564         __atomic_store_n(&sh->txpp.ts.ci_ts, ci, __ATOMIC_RELAXED);
565         rte_wmb();
566 }
567
568 /* Reads timestamp from Clock Queue CQE and stores in the cache. */
569 static inline void
570 mlx5_txpp_update_timestamp(struct mlx5_dev_ctx_shared *sh)
571 {
572         struct mlx5_txpp_wq *wq = &sh->txpp.clock_queue;
573         struct mlx5_cqe *cqe = (struct mlx5_cqe *)(uintptr_t)wq->cq_obj.cqes;
574         union {
575                 rte_int128_t u128;
576                 struct mlx5_cqe_ts cts;
577         } to;
578         uint64_t ts;
579         uint16_t ci;
580         uint8_t opcode;
581
582         mlx5_atomic_read_cqe((rte_int128_t *)&cqe->timestamp, &to.u128);
583         opcode = MLX5_CQE_OPCODE(to.cts.op_own);
584         if (opcode) {
585                 if (opcode != MLX5_CQE_INVALID) {
586                         /*
587                          * Commit the error state if and only if
588                          * we have got at least one actual completion.
589                          */
590                         DRV_LOG(DEBUG,
591                                 "Clock Queue error sync lost (%X).", opcode);
592                                 __atomic_fetch_add(&sh->txpp.err_clock_queue,
593                                    1, __ATOMIC_RELAXED);
594                         sh->txpp.sync_lost = 1;
595                 }
596                 return;
597         }
598         ci = rte_be_to_cpu_16(to.cts.wqe_counter);
599         ts = rte_be_to_cpu_64(to.cts.timestamp);
600         ts = mlx5_txpp_convert_rx_ts(sh, ts);
601         wq->cq_ci += (ci - wq->sq_ci) & UINT16_MAX;
602         wq->sq_ci = ci;
603         mlx5_txpp_cache_timestamp(sh, ts, wq->cq_ci);
604 }
605
606 /* Waits for the first completion on Clock Queue to init timestamp. */
607 static inline void
608 mlx5_txpp_init_timestamp(struct mlx5_dev_ctx_shared *sh)
609 {
610         struct mlx5_txpp_wq *wq = &sh->txpp.clock_queue;
611         uint32_t wait;
612
613         sh->txpp.ts_p = 0;
614         sh->txpp.ts_n = 0;
615         for (wait = 0; wait < MLX5_TXPP_WAIT_INIT_TS; wait++) {
616                 mlx5_txpp_update_timestamp(sh);
617                 if (wq->sq_ci)
618                         return;
619                 /* Wait one millisecond and try again. */
620                 rte_delay_us_sleep(US_PER_S / MS_PER_S);
621         }
622         DRV_LOG(ERR, "Unable to initialize timestamp.");
623         sh->txpp.sync_lost = 1;
624 }
625
626 #ifdef HAVE_IBV_DEVX_EVENT
627 /* Gather statistics for timestamp from Clock Queue CQE. */
628 static inline void
629 mlx5_txpp_gather_timestamp(struct mlx5_dev_ctx_shared *sh)
630 {
631         /* Check whether we have a valid timestamp. */
632         if (!sh->txpp.clock_queue.sq_ci && !sh->txpp.ts_n)
633                 return;
634         MLX5_ASSERT(sh->txpp.ts_p < MLX5_TXPP_REARM_SQ_SIZE);
635         __atomic_store_n(&sh->txpp.tsa[sh->txpp.ts_p].ts,
636                          sh->txpp.ts.ts, __ATOMIC_RELAXED);
637         __atomic_store_n(&sh->txpp.tsa[sh->txpp.ts_p].ci_ts,
638                          sh->txpp.ts.ci_ts, __ATOMIC_RELAXED);
639         if (++sh->txpp.ts_p >= MLX5_TXPP_REARM_SQ_SIZE)
640                 sh->txpp.ts_p = 0;
641         if (sh->txpp.ts_n < MLX5_TXPP_REARM_SQ_SIZE)
642                 ++sh->txpp.ts_n;
643 }
644
645 /* Handles Rearm Queue completions in periodic service. */
646 static __rte_always_inline void
647 mlx5_txpp_handle_rearm_queue(struct mlx5_dev_ctx_shared *sh)
648 {
649         struct mlx5_txpp_wq *wq = &sh->txpp.rearm_queue;
650         uint32_t cq_ci = wq->cq_ci;
651         bool error = false;
652         int ret;
653
654         do {
655                 volatile struct mlx5_cqe *cqe;
656
657                 cqe = &wq->cq_obj.cqes[cq_ci & (MLX5_TXPP_REARM_CQ_SIZE - 1)];
658                 ret = check_cqe(cqe, MLX5_TXPP_REARM_CQ_SIZE, cq_ci);
659                 switch (ret) {
660                 case MLX5_CQE_STATUS_ERR:
661                         error = true;
662                         ++cq_ci;
663                         break;
664                 case MLX5_CQE_STATUS_SW_OWN:
665                         wq->sq_ci += 2;
666                         ++cq_ci;
667                         break;
668                 case MLX5_CQE_STATUS_HW_OWN:
669                         break;
670                 default:
671                         MLX5_ASSERT(false);
672                         break;
673                 }
674         } while (ret != MLX5_CQE_STATUS_HW_OWN);
675         if (likely(cq_ci != wq->cq_ci)) {
676                 /* Check whether we have missed interrupts. */
677                 if (cq_ci - wq->cq_ci != 1) {
678                         DRV_LOG(DEBUG, "Rearm Queue missed interrupt.");
679                         __atomic_fetch_add(&sh->txpp.err_miss_int,
680                                            1, __ATOMIC_RELAXED);
681                         /* Check sync lost on wqe index. */
682                         if (cq_ci - wq->cq_ci >=
683                                 (((1UL << MLX5_WQ_INDEX_WIDTH) /
684                                   MLX5_TXPP_REARM) - 1))
685                                 error = 1;
686                 }
687                 /* Update doorbell record to notify hardware. */
688                 rte_compiler_barrier();
689                 *wq->cq_obj.db_rec = rte_cpu_to_be_32(cq_ci);
690                 rte_wmb();
691                 wq->cq_ci = cq_ci;
692                 /* Fire new requests to Rearm Queue. */
693                 if (error) {
694                         DRV_LOG(DEBUG, "Rearm Queue error sync lost.");
695                         __atomic_fetch_add(&sh->txpp.err_rearm_queue,
696                                            1, __ATOMIC_RELAXED);
697                         sh->txpp.sync_lost = 1;
698                 }
699         }
700 }
701
702 /* Handles Clock Queue completions in periodic service. */
703 static __rte_always_inline void
704 mlx5_txpp_handle_clock_queue(struct mlx5_dev_ctx_shared *sh)
705 {
706         mlx5_txpp_update_timestamp(sh);
707         mlx5_txpp_gather_timestamp(sh);
708 }
709 #endif
710
711 /* Invoked periodically on Rearm Queue completions. */
712 void
713 mlx5_txpp_interrupt_handler(void *cb_arg)
714 {
715 #ifndef HAVE_IBV_DEVX_EVENT
716         RTE_SET_USED(cb_arg);
717         return;
718 #else
719         struct mlx5_dev_ctx_shared *sh = cb_arg;
720         union {
721                 struct mlx5dv_devx_async_event_hdr event_resp;
722                 uint8_t buf[sizeof(struct mlx5dv_devx_async_event_hdr) + 128];
723         } out;
724
725         MLX5_ASSERT(rte_eal_process_type() == RTE_PROC_PRIMARY);
726         /* Process events in the loop. Only rearm completions are expected. */
727         while (mlx5_glue->devx_get_event
728                                 (sh->txpp.echan,
729                                  &out.event_resp,
730                                  sizeof(out.buf)) >=
731                                  (ssize_t)sizeof(out.event_resp.cookie)) {
732                 mlx5_txpp_handle_rearm_queue(sh);
733                 mlx5_txpp_handle_clock_queue(sh);
734                 mlx5_txpp_cq_arm(sh);
735                 mlx5_txpp_doorbell_rearm_queue
736                                         (sh, sh->txpp.rearm_queue.sq_ci - 1);
737         }
738 #endif /* HAVE_IBV_DEVX_ASYNC */
739 }
740
741 static void
742 mlx5_txpp_stop_service(struct mlx5_dev_ctx_shared *sh)
743 {
744         if (!rte_intr_fd_get(sh->txpp.intr_handle))
745                 return;
746         mlx5_intr_callback_unregister(sh->txpp.intr_handle,
747                                       mlx5_txpp_interrupt_handler, sh);
748         rte_intr_instance_free(sh->txpp.intr_handle);
749 }
750
751 /* Attach interrupt handler and fires first request to Rearm Queue. */
752 static int
753 mlx5_txpp_start_service(struct mlx5_dev_ctx_shared *sh)
754 {
755         uint16_t event_nums[1] = {0};
756         int ret;
757         int fd;
758
759         sh->txpp.err_miss_int = 0;
760         sh->txpp.err_rearm_queue = 0;
761         sh->txpp.err_clock_queue = 0;
762         sh->txpp.err_ts_past = 0;
763         sh->txpp.err_ts_future = 0;
764         /* Attach interrupt handler to process Rearm Queue completions. */
765         fd = mlx5_os_get_devx_channel_fd(sh->txpp.echan);
766         ret = mlx5_os_set_nonblock_channel_fd(fd);
767         if (ret) {
768                 DRV_LOG(ERR, "Failed to change event channel FD.");
769                 rte_errno = errno;
770                 return -rte_errno;
771         }
772         sh->txpp.intr_handle =
773                         rte_intr_instance_alloc(RTE_INTR_INSTANCE_F_SHARED);
774         if (sh->txpp.intr_handle == NULL) {
775                 DRV_LOG(ERR, "Fail to allocate intr_handle");
776                 return -ENOMEM;
777         }
778         fd = mlx5_os_get_devx_channel_fd(sh->txpp.echan);
779         if (rte_intr_fd_set(sh->txpp.intr_handle, fd))
780                 return -rte_errno;
781
782         if (rte_intr_type_set(sh->txpp.intr_handle, RTE_INTR_HANDLE_EXT))
783                 return -rte_errno;
784
785         if (rte_intr_callback_register(sh->txpp.intr_handle,
786                                        mlx5_txpp_interrupt_handler, sh)) {
787                 rte_intr_fd_set(sh->txpp.intr_handle, 0);
788                 DRV_LOG(ERR, "Failed to register CQE interrupt %d.", rte_errno);
789                 return -rte_errno;
790         }
791         /* Subscribe CQ event to the event channel controlled by the driver. */
792         ret = mlx5_os_devx_subscribe_devx_event(sh->txpp.echan,
793                                             sh->txpp.rearm_queue.cq_obj.cq->obj,
794                                              sizeof(event_nums), event_nums, 0);
795         if (ret) {
796                 DRV_LOG(ERR, "Failed to subscribe CQE event.");
797                 rte_errno = errno;
798                 return -errno;
799         }
800         /* Enable interrupts in the CQ. */
801         mlx5_txpp_cq_arm(sh);
802         /* Fire the first request on Rearm Queue. */
803         mlx5_txpp_doorbell_rearm_queue(sh, sh->txpp.rearm_queue.sq_size - 1);
804         mlx5_txpp_init_timestamp(sh);
805         return 0;
806 }
807
808 /*
809  * The routine initializes the packet pacing infrastructure:
810  * - allocates PP context
811  * - Clock CQ/SQ
812  * - Rearm CQ/SQ
813  * - attaches rearm interrupt handler
814  * - starts Clock Queue
815  *
816  * Returns 0 on success, negative otherwise
817  */
818 static int
819 mlx5_txpp_create(struct mlx5_dev_ctx_shared *sh, struct mlx5_priv *priv)
820 {
821         int tx_pp = priv->config.tx_pp;
822         int ret;
823
824         /* Store the requested pacing parameters. */
825         sh->txpp.tick = tx_pp >= 0 ? tx_pp : -tx_pp;
826         sh->txpp.test = !!(tx_pp < 0);
827         sh->txpp.skew = priv->config.tx_skew;
828         sh->txpp.freq = priv->config.hca_attr.dev_freq_khz;
829         ret = mlx5_txpp_create_event_channel(sh);
830         if (ret)
831                 goto exit;
832         ret = mlx5_txpp_alloc_pp_index(sh);
833         if (ret)
834                 goto exit;
835         ret = mlx5_txpp_create_clock_queue(sh);
836         if (ret)
837                 goto exit;
838         ret = mlx5_txpp_create_rearm_queue(sh);
839         if (ret)
840                 goto exit;
841         ret = mlx5_txpp_start_service(sh);
842         if (ret)
843                 goto exit;
844 exit:
845         if (ret) {
846                 mlx5_txpp_stop_service(sh);
847                 mlx5_txpp_destroy_rearm_queue(sh);
848                 mlx5_txpp_destroy_clock_queue(sh);
849                 mlx5_txpp_free_pp_index(sh);
850                 mlx5_txpp_destroy_event_channel(sh);
851                 sh->txpp.tick = 0;
852                 sh->txpp.test = 0;
853                 sh->txpp.skew = 0;
854         }
855         return ret;
856 }
857
858 /*
859  * The routine destroys the packet pacing infrastructure:
860  * - detaches rearm interrupt handler
861  * - Rearm CQ/SQ
862  * - Clock CQ/SQ
863  * - PP context
864  */
865 static void
866 mlx5_txpp_destroy(struct mlx5_dev_ctx_shared *sh)
867 {
868         mlx5_txpp_stop_service(sh);
869         mlx5_txpp_destroy_rearm_queue(sh);
870         mlx5_txpp_destroy_clock_queue(sh);
871         mlx5_txpp_free_pp_index(sh);
872         mlx5_txpp_destroy_event_channel(sh);
873         sh->txpp.tick = 0;
874         sh->txpp.test = 0;
875         sh->txpp.skew = 0;
876 }
877
878 /**
879  * Creates and starts packet pacing infrastructure on specified device.
880  *
881  * @param dev
882  *   Pointer to Ethernet device structure.
883  *
884  * @return
885  *   0 on success, a negative errno value otherwise and rte_errno is set.
886  */
887 int
888 mlx5_txpp_start(struct rte_eth_dev *dev)
889 {
890         struct mlx5_priv *priv = dev->data->dev_private;
891         struct mlx5_dev_ctx_shared *sh = priv->sh;
892         int err = 0;
893         int ret;
894
895         if (!priv->config.tx_pp) {
896                 /* Packet pacing is not requested for the device. */
897                 MLX5_ASSERT(priv->txpp_en == 0);
898                 return 0;
899         }
900         if (priv->txpp_en) {
901                 /* Packet pacing is already enabled for the device. */
902                 MLX5_ASSERT(sh->txpp.refcnt);
903                 return 0;
904         }
905         if (priv->config.tx_pp > 0) {
906                 ret = rte_mbuf_dynflag_lookup
907                                 (RTE_MBUF_DYNFLAG_TX_TIMESTAMP_NAME, NULL);
908                 if (ret < 0)
909                         return 0;
910         }
911         ret = pthread_mutex_lock(&sh->txpp.mutex);
912         MLX5_ASSERT(!ret);
913         RTE_SET_USED(ret);
914         if (sh->txpp.refcnt) {
915                 priv->txpp_en = 1;
916                 ++sh->txpp.refcnt;
917         } else {
918                 err = mlx5_txpp_create(sh, priv);
919                 if (!err) {
920                         MLX5_ASSERT(sh->txpp.tick);
921                         priv->txpp_en = 1;
922                         sh->txpp.refcnt = 1;
923                 } else {
924                         rte_errno = -err;
925                 }
926         }
927         ret = pthread_mutex_unlock(&sh->txpp.mutex);
928         MLX5_ASSERT(!ret);
929         RTE_SET_USED(ret);
930         return err;
931 }
932
933 /**
934  * Stops and destroys packet pacing infrastructure on specified device.
935  *
936  * @param dev
937  *   Pointer to Ethernet device structure.
938  *
939  * @return
940  *   0 on success, a negative errno value otherwise and rte_errno is set.
941  */
942 void
943 mlx5_txpp_stop(struct rte_eth_dev *dev)
944 {
945         struct mlx5_priv *priv = dev->data->dev_private;
946         struct mlx5_dev_ctx_shared *sh = priv->sh;
947         int ret;
948
949         if (!priv->txpp_en) {
950                 /* Packet pacing is already disabled for the device. */
951                 return;
952         }
953         priv->txpp_en = 0;
954         ret = pthread_mutex_lock(&sh->txpp.mutex);
955         MLX5_ASSERT(!ret);
956         RTE_SET_USED(ret);
957         MLX5_ASSERT(sh->txpp.refcnt);
958         if (!sh->txpp.refcnt || --sh->txpp.refcnt)
959                 return;
960         /* No references any more, do actual destroy. */
961         mlx5_txpp_destroy(sh);
962         ret = pthread_mutex_unlock(&sh->txpp.mutex);
963         MLX5_ASSERT(!ret);
964         RTE_SET_USED(ret);
965 }
966
967 /*
968  * Read the current clock counter of an Ethernet device
969  *
970  * This returns the current raw clock value of an Ethernet device. It is
971  * a raw amount of ticks, with no given time reference.
972  * The value returned here is from the same clock than the one
973  * filling timestamp field of Rx/Tx packets when using hardware timestamp
974  * offload. Therefore it can be used to compute a precise conversion of
975  * the device clock to the real time.
976  *
977  * @param dev
978  *   Pointer to Ethernet device structure.
979  * @param clock
980  *   Pointer to the uint64_t that holds the raw clock value.
981  *
982  * @return
983  *   - 0: Success.
984  *   - -ENOTSUP: The function is not supported in this mode. Requires
985  *     packet pacing module configured and started (tx_pp devarg)
986  */
987 int
988 mlx5_txpp_read_clock(struct rte_eth_dev *dev, uint64_t *timestamp)
989 {
990         struct mlx5_priv *priv = dev->data->dev_private;
991         struct mlx5_dev_ctx_shared *sh = priv->sh;
992         int ret;
993
994         if (sh->txpp.refcnt) {
995                 struct mlx5_txpp_wq *wq = &sh->txpp.clock_queue;
996                 struct mlx5_cqe *cqe =
997                                 (struct mlx5_cqe *)(uintptr_t)wq->cq_obj.cqes;
998                 union {
999                         rte_int128_t u128;
1000                         struct mlx5_cqe_ts cts;
1001                 } to;
1002                 uint64_t ts;
1003
1004                 mlx5_atomic_read_cqe((rte_int128_t *)&cqe->timestamp, &to.u128);
1005                 if (to.cts.op_own >> 4) {
1006                         DRV_LOG(DEBUG, "Clock Queue error sync lost.");
1007                         __atomic_fetch_add(&sh->txpp.err_clock_queue,
1008                                            1, __ATOMIC_RELAXED);
1009                         sh->txpp.sync_lost = 1;
1010                         return -EIO;
1011                 }
1012                 ts = rte_be_to_cpu_64(to.cts.timestamp);
1013                 ts = mlx5_txpp_convert_rx_ts(sh, ts);
1014                 *timestamp = ts;
1015                 return 0;
1016         }
1017         /* Not supported in isolated mode - kernel does not see the CQEs. */
1018         if (priv->isolated || rte_eal_process_type() != RTE_PROC_PRIMARY)
1019                 return -ENOTSUP;
1020         ret = mlx5_read_clock(dev, timestamp);
1021         return ret;
1022 }
1023
1024 /**
1025  * DPDK callback to clear device extended statistics.
1026  *
1027  * @param dev
1028  *   Pointer to Ethernet device structure.
1029  *
1030  * @return
1031  *   0 on success and stats is reset, negative errno value otherwise and
1032  *   rte_errno is set.
1033  */
1034 int mlx5_txpp_xstats_reset(struct rte_eth_dev *dev)
1035 {
1036         struct mlx5_priv *priv = dev->data->dev_private;
1037         struct mlx5_dev_ctx_shared *sh = priv->sh;
1038
1039         __atomic_store_n(&sh->txpp.err_miss_int, 0, __ATOMIC_RELAXED);
1040         __atomic_store_n(&sh->txpp.err_rearm_queue, 0, __ATOMIC_RELAXED);
1041         __atomic_store_n(&sh->txpp.err_clock_queue, 0, __ATOMIC_RELAXED);
1042         __atomic_store_n(&sh->txpp.err_ts_past, 0, __ATOMIC_RELAXED);
1043         __atomic_store_n(&sh->txpp.err_ts_future, 0, __ATOMIC_RELAXED);
1044         return 0;
1045 }
1046
1047 /**
1048  * Routine to retrieve names of extended device statistics
1049  * for packet send scheduling. It appends the specific stats names
1050  * after the parts filled by preceding modules (eth stats, etc.)
1051  *
1052  * @param dev
1053  *   Pointer to Ethernet device structure.
1054  * @param[out] xstats_names
1055  *   Buffer to insert names into.
1056  * @param n
1057  *   Number of names.
1058  * @param n_used
1059  *   Number of names filled by preceding statistics modules.
1060  *
1061  * @return
1062  *   Number of xstats names.
1063  */
1064 int mlx5_txpp_xstats_get_names(struct rte_eth_dev *dev __rte_unused,
1065                                struct rte_eth_xstat_name *xstats_names,
1066                                unsigned int n, unsigned int n_used)
1067 {
1068         unsigned int n_txpp = RTE_DIM(mlx5_txpp_stat_names);
1069         unsigned int i;
1070
1071         if (n >= n_used + n_txpp && xstats_names) {
1072                 for (i = 0; i < n_txpp; ++i) {
1073                         strncpy(xstats_names[i + n_used].name,
1074                                 mlx5_txpp_stat_names[i],
1075                                 RTE_ETH_XSTATS_NAME_SIZE);
1076                         xstats_names[i + n_used].name
1077                                         [RTE_ETH_XSTATS_NAME_SIZE - 1] = 0;
1078                 }
1079         }
1080         return n_used + n_txpp;
1081 }
1082
1083 static inline void
1084 mlx5_txpp_read_tsa(struct mlx5_dev_txpp *txpp,
1085                    struct mlx5_txpp_ts *tsa, uint16_t idx)
1086 {
1087         do {
1088                 uint64_t ts, ci;
1089
1090                 ts = __atomic_load_n(&txpp->tsa[idx].ts, __ATOMIC_RELAXED);
1091                 ci = __atomic_load_n(&txpp->tsa[idx].ci_ts, __ATOMIC_RELAXED);
1092                 rte_compiler_barrier();
1093                 if ((ci ^ ts) << MLX5_CQ_INDEX_WIDTH != 0)
1094                         continue;
1095                 if (__atomic_load_n(&txpp->tsa[idx].ts,
1096                                     __ATOMIC_RELAXED) != ts)
1097                         continue;
1098                 if (__atomic_load_n(&txpp->tsa[idx].ci_ts,
1099                                     __ATOMIC_RELAXED) != ci)
1100                         continue;
1101                 tsa->ts = ts;
1102                 tsa->ci_ts = ci;
1103                 return;
1104         } while (true);
1105 }
1106
1107 /*
1108  * Jitter reflects the clock change between
1109  * neighbours Clock Queue completions.
1110  */
1111 static uint64_t
1112 mlx5_txpp_xstats_jitter(struct mlx5_dev_txpp *txpp)
1113 {
1114         struct mlx5_txpp_ts tsa0, tsa1;
1115         int64_t dts, dci;
1116         uint16_t ts_p;
1117
1118         if (txpp->ts_n < 2) {
1119                 /* No gathered enough reports yet. */
1120                 return 0;
1121         }
1122         do {
1123                 int ts_0, ts_1;
1124
1125                 ts_p = txpp->ts_p;
1126                 rte_compiler_barrier();
1127                 ts_0 = ts_p - 2;
1128                 if (ts_0 < 0)
1129                         ts_0 += MLX5_TXPP_REARM_SQ_SIZE;
1130                 ts_1 = ts_p - 1;
1131                 if (ts_1 < 0)
1132                         ts_1 += MLX5_TXPP_REARM_SQ_SIZE;
1133                 mlx5_txpp_read_tsa(txpp, &tsa0, ts_0);
1134                 mlx5_txpp_read_tsa(txpp, &tsa1, ts_1);
1135                 rte_compiler_barrier();
1136         } while (ts_p != txpp->ts_p);
1137         /* We have two neighbor reports, calculate the jitter. */
1138         dts = tsa1.ts - tsa0.ts;
1139         dci = (tsa1.ci_ts >> (64 - MLX5_CQ_INDEX_WIDTH)) -
1140               (tsa0.ci_ts >> (64 - MLX5_CQ_INDEX_WIDTH));
1141         if (dci < 0)
1142                 dci += 1 << MLX5_CQ_INDEX_WIDTH;
1143         dci *= txpp->tick;
1144         return (dts > dci) ? dts - dci : dci - dts;
1145 }
1146
1147 /*
1148  * Wander reflects the long-term clock change
1149  * over the entire length of all Clock Queue completions.
1150  */
1151 static uint64_t
1152 mlx5_txpp_xstats_wander(struct mlx5_dev_txpp *txpp)
1153 {
1154         struct mlx5_txpp_ts tsa0, tsa1;
1155         int64_t dts, dci;
1156         uint16_t ts_p;
1157
1158         if (txpp->ts_n < MLX5_TXPP_REARM_SQ_SIZE) {
1159                 /* No gathered enough reports yet. */
1160                 return 0;
1161         }
1162         do {
1163                 int ts_0, ts_1;
1164
1165                 ts_p = txpp->ts_p;
1166                 rte_compiler_barrier();
1167                 ts_0 = ts_p - MLX5_TXPP_REARM_SQ_SIZE / 2 - 1;
1168                 if (ts_0 < 0)
1169                         ts_0 += MLX5_TXPP_REARM_SQ_SIZE;
1170                 ts_1 = ts_p - 1;
1171                 if (ts_1 < 0)
1172                         ts_1 += MLX5_TXPP_REARM_SQ_SIZE;
1173                 mlx5_txpp_read_tsa(txpp, &tsa0, ts_0);
1174                 mlx5_txpp_read_tsa(txpp, &tsa1, ts_1);
1175                 rte_compiler_barrier();
1176         } while (ts_p != txpp->ts_p);
1177         /* We have two neighbor reports, calculate the jitter. */
1178         dts = tsa1.ts - tsa0.ts;
1179         dci = (tsa1.ci_ts >> (64 - MLX5_CQ_INDEX_WIDTH)) -
1180               (tsa0.ci_ts >> (64 - MLX5_CQ_INDEX_WIDTH));
1181         dci += 1 << MLX5_CQ_INDEX_WIDTH;
1182         dci *= txpp->tick;
1183         return (dts > dci) ? dts - dci : dci - dts;
1184 }
1185
1186 /**
1187  * Routine to retrieve extended device statistics
1188  * for packet send scheduling. It appends the specific statistics
1189  * after the parts filled by preceding modules (eth stats, etc.)
1190  *
1191  * @param dev
1192  *   Pointer to Ethernet device.
1193  * @param[out] stats
1194  *   Pointer to rte extended stats table.
1195  * @param n
1196  *   The size of the stats table.
1197  * @param n_used
1198  *   Number of stats filled by preceding statistics modules.
1199  *
1200  * @return
1201  *   Number of extended stats on success and stats is filled,
1202  *   negative on error and rte_errno is set.
1203  */
1204 int
1205 mlx5_txpp_xstats_get(struct rte_eth_dev *dev,
1206                      struct rte_eth_xstat *stats,
1207                      unsigned int n, unsigned int n_used)
1208 {
1209         unsigned int n_txpp = RTE_DIM(mlx5_txpp_stat_names);
1210
1211         if (n >= n_used + n_txpp && stats) {
1212                 struct mlx5_priv *priv = dev->data->dev_private;
1213                 struct mlx5_dev_ctx_shared *sh = priv->sh;
1214                 unsigned int i;
1215
1216                 for (i = 0; i < n_txpp; ++i)
1217                         stats[n_used + i].id = n_used + i;
1218                 stats[n_used + 0].value =
1219                                 __atomic_load_n(&sh->txpp.err_miss_int,
1220                                                 __ATOMIC_RELAXED);
1221                 stats[n_used + 1].value =
1222                                 __atomic_load_n(&sh->txpp.err_rearm_queue,
1223                                                 __ATOMIC_RELAXED);
1224                 stats[n_used + 2].value =
1225                                 __atomic_load_n(&sh->txpp.err_clock_queue,
1226                                                 __ATOMIC_RELAXED);
1227                 stats[n_used + 3].value =
1228                                 __atomic_load_n(&sh->txpp.err_ts_past,
1229                                                 __ATOMIC_RELAXED);
1230                 stats[n_used + 4].value =
1231                                 __atomic_load_n(&sh->txpp.err_ts_future,
1232                                                 __ATOMIC_RELAXED);
1233                 stats[n_used + 5].value = mlx5_txpp_xstats_jitter(&sh->txpp);
1234                 stats[n_used + 6].value = mlx5_txpp_xstats_wander(&sh->txpp);
1235                 stats[n_used + 7].value = sh->txpp.sync_lost;
1236         }
1237         return n_used + n_txpp;
1238 }