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(ð_hdr->dst_addr.addr_bytes[0]); 332 rte_eth_random_addr(ð_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 mlx5_os_interrupt_handler_destroy(sh->txpp.intr_handle, 745 mlx5_txpp_interrupt_handler, sh); 746 } 747 748 /* Attach interrupt handler and fires first request to Rearm Queue. */ 749 static int 750 mlx5_txpp_start_service(struct mlx5_dev_ctx_shared *sh) 751 { 752 uint16_t event_nums[1] = {0}; 753 int ret; 754 int fd; 755 756 sh->txpp.err_miss_int = 0; 757 sh->txpp.err_rearm_queue = 0; 758 sh->txpp.err_clock_queue = 0; 759 sh->txpp.err_ts_past = 0; 760 sh->txpp.err_ts_future = 0; 761 /* Attach interrupt handler to process Rearm Queue completions. */ 762 fd = mlx5_os_get_devx_channel_fd(sh->txpp.echan); 763 ret = mlx5_os_set_nonblock_channel_fd(fd); 764 if (ret) { 765 DRV_LOG(ERR, "Failed to change event channel FD."); 766 rte_errno = errno; 767 return -rte_errno; 768 } 769 fd = mlx5_os_get_devx_channel_fd(sh->txpp.echan); 770 sh->txpp.intr_handle = mlx5_os_interrupt_handler_create 771 (RTE_INTR_INSTANCE_F_SHARED, false, 772 fd, mlx5_txpp_interrupt_handler, sh); 773 if (!sh->txpp.intr_handle) { 774 DRV_LOG(ERR, "Fail to allocate intr_handle"); 775 return -rte_errno; 776 } 777 /* Subscribe CQ event to the event channel controlled by the driver. */ 778 ret = mlx5_os_devx_subscribe_devx_event(sh->txpp.echan, 779 sh->txpp.rearm_queue.cq_obj.cq->obj, 780 sizeof(event_nums), event_nums, 0); 781 if (ret) { 782 DRV_LOG(ERR, "Failed to subscribe CQE event."); 783 rte_errno = errno; 784 return -errno; 785 } 786 /* Enable interrupts in the CQ. */ 787 mlx5_txpp_cq_arm(sh); 788 /* Fire the first request on Rearm Queue. */ 789 mlx5_txpp_doorbell_rearm_queue(sh, sh->txpp.rearm_queue.sq_size - 1); 790 mlx5_txpp_init_timestamp(sh); 791 return 0; 792 } 793 794 /* 795 * The routine initializes the packet pacing infrastructure: 796 * - allocates PP context 797 * - Clock CQ/SQ 798 * - Rearm CQ/SQ 799 * - attaches rearm interrupt handler 800 * - starts Clock Queue 801 * 802 * Returns 0 on success, negative otherwise 803 */ 804 static int 805 mlx5_txpp_create(struct mlx5_dev_ctx_shared *sh) 806 { 807 int tx_pp = sh->config.tx_pp; 808 int ret; 809 810 /* Store the requested pacing parameters. */ 811 sh->txpp.tick = tx_pp >= 0 ? tx_pp : -tx_pp; 812 sh->txpp.test = !!(tx_pp < 0); 813 sh->txpp.skew = sh->config.tx_skew; 814 sh->txpp.freq = sh->cdev->config.hca_attr.dev_freq_khz; 815 ret = mlx5_txpp_create_event_channel(sh); 816 if (ret) 817 goto exit; 818 ret = mlx5_txpp_alloc_pp_index(sh); 819 if (ret) 820 goto exit; 821 ret = mlx5_txpp_create_clock_queue(sh); 822 if (ret) 823 goto exit; 824 ret = mlx5_txpp_create_rearm_queue(sh); 825 if (ret) 826 goto exit; 827 ret = mlx5_txpp_start_service(sh); 828 if (ret) 829 goto exit; 830 exit: 831 if (ret) { 832 mlx5_txpp_stop_service(sh); 833 mlx5_txpp_destroy_rearm_queue(sh); 834 mlx5_txpp_destroy_clock_queue(sh); 835 mlx5_txpp_free_pp_index(sh); 836 mlx5_txpp_destroy_event_channel(sh); 837 sh->txpp.tick = 0; 838 sh->txpp.test = 0; 839 sh->txpp.skew = 0; 840 } 841 return ret; 842 } 843 844 /* 845 * The routine destroys the packet pacing infrastructure: 846 * - detaches rearm interrupt handler 847 * - Rearm CQ/SQ 848 * - Clock CQ/SQ 849 * - PP context 850 */ 851 static void 852 mlx5_txpp_destroy(struct mlx5_dev_ctx_shared *sh) 853 { 854 mlx5_txpp_stop_service(sh); 855 mlx5_txpp_destroy_rearm_queue(sh); 856 mlx5_txpp_destroy_clock_queue(sh); 857 mlx5_txpp_free_pp_index(sh); 858 mlx5_txpp_destroy_event_channel(sh); 859 sh->txpp.tick = 0; 860 sh->txpp.test = 0; 861 sh->txpp.skew = 0; 862 } 863 864 /** 865 * Creates and starts packet pacing infrastructure on specified device. 866 * 867 * @param dev 868 * Pointer to Ethernet device structure. 869 * 870 * @return 871 * 0 on success, a negative errno value otherwise and rte_errno is set. 872 */ 873 int 874 mlx5_txpp_start(struct rte_eth_dev *dev) 875 { 876 struct mlx5_priv *priv = dev->data->dev_private; 877 struct mlx5_dev_ctx_shared *sh = priv->sh; 878 int err = 0; 879 880 if (!sh->config.tx_pp) { 881 /* Packet pacing is not requested for the device. */ 882 MLX5_ASSERT(priv->txpp_en == 0); 883 return 0; 884 } 885 if (priv->txpp_en) { 886 /* Packet pacing is already enabled for the device. */ 887 MLX5_ASSERT(sh->txpp.refcnt); 888 return 0; 889 } 890 if (sh->config.tx_pp > 0) { 891 err = rte_mbuf_dynflag_lookup 892 (RTE_MBUF_DYNFLAG_TX_TIMESTAMP_NAME, NULL); 893 /* No flag registered means no service needed. */ 894 if (err < 0) 895 return 0; 896 err = 0; 897 } 898 claim_zero(pthread_mutex_lock(&sh->txpp.mutex)); 899 if (sh->txpp.refcnt) { 900 priv->txpp_en = 1; 901 ++sh->txpp.refcnt; 902 } else { 903 err = mlx5_txpp_create(sh); 904 if (!err) { 905 MLX5_ASSERT(sh->txpp.tick); 906 priv->txpp_en = 1; 907 sh->txpp.refcnt = 1; 908 } else { 909 rte_errno = -err; 910 } 911 } 912 claim_zero(pthread_mutex_unlock(&sh->txpp.mutex)); 913 return err; 914 } 915 916 /** 917 * Stops and destroys packet pacing infrastructure on specified device. 918 * 919 * @param dev 920 * Pointer to Ethernet device structure. 921 * 922 * @return 923 * 0 on success, a negative errno value otherwise and rte_errno is set. 924 */ 925 void 926 mlx5_txpp_stop(struct rte_eth_dev *dev) 927 { 928 struct mlx5_priv *priv = dev->data->dev_private; 929 struct mlx5_dev_ctx_shared *sh = priv->sh; 930 931 if (!priv->txpp_en) { 932 /* Packet pacing is already disabled for the device. */ 933 return; 934 } 935 priv->txpp_en = 0; 936 claim_zero(pthread_mutex_lock(&sh->txpp.mutex)); 937 MLX5_ASSERT(sh->txpp.refcnt); 938 if (!sh->txpp.refcnt || --sh->txpp.refcnt) { 939 claim_zero(pthread_mutex_unlock(&sh->txpp.mutex)); 940 return; 941 } 942 /* No references any more, do actual destroy. */ 943 mlx5_txpp_destroy(sh); 944 claim_zero(pthread_mutex_unlock(&sh->txpp.mutex)); 945 } 946 947 /* 948 * Read the current clock counter of an Ethernet device 949 * 950 * This returns the current raw clock value of an Ethernet device. It is 951 * a raw amount of ticks, with no given time reference. 952 * The value returned here is from the same clock than the one 953 * filling timestamp field of Rx/Tx packets when using hardware timestamp 954 * offload. Therefore it can be used to compute a precise conversion of 955 * the device clock to the real time. 956 * 957 * @param dev 958 * Pointer to Ethernet device structure. 959 * @param clock 960 * Pointer to the uint64_t that holds the raw clock value. 961 * 962 * @return 963 * - 0: Success. 964 * - -ENOTSUP: The function is not supported in this mode. Requires 965 * packet pacing module configured and started (tx_pp devarg) 966 */ 967 int 968 mlx5_txpp_read_clock(struct rte_eth_dev *dev, uint64_t *timestamp) 969 { 970 struct mlx5_priv *priv = dev->data->dev_private; 971 struct mlx5_dev_ctx_shared *sh = priv->sh; 972 struct mlx5_proc_priv *ppriv; 973 uint64_t ts; 974 int ret; 975 976 if (sh->txpp.refcnt) { 977 struct mlx5_txpp_wq *wq = &sh->txpp.clock_queue; 978 struct mlx5_cqe *cqe = 979 (struct mlx5_cqe *)(uintptr_t)wq->cq_obj.cqes; 980 union { 981 rte_int128_t u128; 982 struct mlx5_cqe_ts cts; 983 } to; 984 985 mlx5_atomic_read_cqe((rte_int128_t *)&cqe->timestamp, &to.u128); 986 if (to.cts.op_own >> 4) { 987 DRV_LOG(DEBUG, "Clock Queue error sync lost."); 988 __atomic_fetch_add(&sh->txpp.err_clock_queue, 989 1, __ATOMIC_RELAXED); 990 sh->txpp.sync_lost = 1; 991 return -EIO; 992 } 993 ts = rte_be_to_cpu_64(to.cts.timestamp); 994 ts = mlx5_txpp_convert_rx_ts(sh, ts); 995 *timestamp = ts; 996 return 0; 997 } 998 /* Check and try to map HCA PIC BAR to allow reading real time. */ 999 ppriv = dev->process_private; 1000 if (ppriv && !ppriv->hca_bar && 1001 sh->dev_cap.rt_timestamp && mlx5_dev_is_pci(dev->device)) 1002 mlx5_txpp_map_hca_bar(dev); 1003 /* Check if we can read timestamp directly from hardware. */ 1004 if (ppriv && ppriv->hca_bar) { 1005 ts = MLX5_GET64(initial_seg, ppriv->hca_bar, real_time); 1006 ts = mlx5_txpp_convert_rx_ts(sh, ts); 1007 *timestamp = ts; 1008 return 0; 1009 } 1010 /* Not supported in isolated mode - kernel does not see the CQEs. */ 1011 if (priv->isolated || rte_eal_process_type() != RTE_PROC_PRIMARY) 1012 return -ENOTSUP; 1013 ret = mlx5_read_clock(dev, timestamp); 1014 return ret; 1015 } 1016 1017 /** 1018 * DPDK callback to clear device extended statistics. 1019 * 1020 * @param dev 1021 * Pointer to Ethernet device structure. 1022 * 1023 * @return 1024 * 0 on success and stats is reset, negative errno value otherwise and 1025 * rte_errno is set. 1026 */ 1027 int mlx5_txpp_xstats_reset(struct rte_eth_dev *dev) 1028 { 1029 struct mlx5_priv *priv = dev->data->dev_private; 1030 struct mlx5_dev_ctx_shared *sh = priv->sh; 1031 1032 __atomic_store_n(&sh->txpp.err_miss_int, 0, __ATOMIC_RELAXED); 1033 __atomic_store_n(&sh->txpp.err_rearm_queue, 0, __ATOMIC_RELAXED); 1034 __atomic_store_n(&sh->txpp.err_clock_queue, 0, __ATOMIC_RELAXED); 1035 __atomic_store_n(&sh->txpp.err_ts_past, 0, __ATOMIC_RELAXED); 1036 __atomic_store_n(&sh->txpp.err_ts_future, 0, __ATOMIC_RELAXED); 1037 return 0; 1038 } 1039 1040 /** 1041 * Routine to retrieve names of extended device statistics 1042 * for packet send scheduling. It appends the specific stats names 1043 * after the parts filled by preceding modules (eth stats, etc.) 1044 * 1045 * @param dev 1046 * Pointer to Ethernet device structure. 1047 * @param[out] xstats_names 1048 * Buffer to insert names into. 1049 * @param n 1050 * Number of names. 1051 * @param n_used 1052 * Number of names filled by preceding statistics modules. 1053 * 1054 * @return 1055 * Number of xstats names. 1056 */ 1057 int mlx5_txpp_xstats_get_names(struct rte_eth_dev *dev __rte_unused, 1058 struct rte_eth_xstat_name *xstats_names, 1059 unsigned int n, unsigned int n_used) 1060 { 1061 unsigned int n_txpp = RTE_DIM(mlx5_txpp_stat_names); 1062 unsigned int i; 1063 1064 if (n >= n_used + n_txpp && xstats_names) { 1065 for (i = 0; i < n_txpp; ++i) { 1066 strncpy(xstats_names[i + n_used].name, 1067 mlx5_txpp_stat_names[i], 1068 RTE_ETH_XSTATS_NAME_SIZE); 1069 xstats_names[i + n_used].name 1070 [RTE_ETH_XSTATS_NAME_SIZE - 1] = 0; 1071 } 1072 } 1073 return n_used + n_txpp; 1074 } 1075 1076 static inline void 1077 mlx5_txpp_read_tsa(struct mlx5_dev_txpp *txpp, 1078 struct mlx5_txpp_ts *tsa, uint16_t idx) 1079 { 1080 do { 1081 uint64_t ts, ci; 1082 1083 ts = __atomic_load_n(&txpp->tsa[idx].ts, __ATOMIC_RELAXED); 1084 ci = __atomic_load_n(&txpp->tsa[idx].ci_ts, __ATOMIC_RELAXED); 1085 rte_compiler_barrier(); 1086 if ((ci ^ ts) << MLX5_CQ_INDEX_WIDTH != 0) 1087 continue; 1088 if (__atomic_load_n(&txpp->tsa[idx].ts, 1089 __ATOMIC_RELAXED) != ts) 1090 continue; 1091 if (__atomic_load_n(&txpp->tsa[idx].ci_ts, 1092 __ATOMIC_RELAXED) != ci) 1093 continue; 1094 tsa->ts = ts; 1095 tsa->ci_ts = ci; 1096 return; 1097 } while (true); 1098 } 1099 1100 /* 1101 * Jitter reflects the clock change between 1102 * neighbours Clock Queue completions. 1103 */ 1104 static uint64_t 1105 mlx5_txpp_xstats_jitter(struct mlx5_dev_txpp *txpp) 1106 { 1107 struct mlx5_txpp_ts tsa0, tsa1; 1108 int64_t dts, dci; 1109 uint16_t ts_p; 1110 1111 if (txpp->ts_n < 2) { 1112 /* No gathered enough reports yet. */ 1113 return 0; 1114 } 1115 do { 1116 int ts_0, ts_1; 1117 1118 ts_p = txpp->ts_p; 1119 rte_compiler_barrier(); 1120 ts_0 = ts_p - 2; 1121 if (ts_0 < 0) 1122 ts_0 += MLX5_TXPP_REARM_SQ_SIZE; 1123 ts_1 = ts_p - 1; 1124 if (ts_1 < 0) 1125 ts_1 += MLX5_TXPP_REARM_SQ_SIZE; 1126 mlx5_txpp_read_tsa(txpp, &tsa0, ts_0); 1127 mlx5_txpp_read_tsa(txpp, &tsa1, ts_1); 1128 rte_compiler_barrier(); 1129 } while (ts_p != txpp->ts_p); 1130 /* We have two neighbor reports, calculate the jitter. */ 1131 dts = tsa1.ts - tsa0.ts; 1132 dci = (tsa1.ci_ts >> (64 - MLX5_CQ_INDEX_WIDTH)) - 1133 (tsa0.ci_ts >> (64 - MLX5_CQ_INDEX_WIDTH)); 1134 if (dci < 0) 1135 dci += 1 << MLX5_CQ_INDEX_WIDTH; 1136 dci *= txpp->tick; 1137 return (dts > dci) ? dts - dci : dci - dts; 1138 } 1139 1140 /* 1141 * Wander reflects the long-term clock change 1142 * over the entire length of all Clock Queue completions. 1143 */ 1144 static uint64_t 1145 mlx5_txpp_xstats_wander(struct mlx5_dev_txpp *txpp) 1146 { 1147 struct mlx5_txpp_ts tsa0, tsa1; 1148 int64_t dts, dci; 1149 uint16_t ts_p; 1150 1151 if (txpp->ts_n < MLX5_TXPP_REARM_SQ_SIZE) { 1152 /* No gathered enough reports yet. */ 1153 return 0; 1154 } 1155 do { 1156 int ts_0, ts_1; 1157 1158 ts_p = txpp->ts_p; 1159 rte_compiler_barrier(); 1160 ts_0 = ts_p - MLX5_TXPP_REARM_SQ_SIZE / 2 - 1; 1161 if (ts_0 < 0) 1162 ts_0 += MLX5_TXPP_REARM_SQ_SIZE; 1163 ts_1 = ts_p - 1; 1164 if (ts_1 < 0) 1165 ts_1 += MLX5_TXPP_REARM_SQ_SIZE; 1166 mlx5_txpp_read_tsa(txpp, &tsa0, ts_0); 1167 mlx5_txpp_read_tsa(txpp, &tsa1, ts_1); 1168 rte_compiler_barrier(); 1169 } while (ts_p != txpp->ts_p); 1170 /* We have two neighbor reports, calculate the jitter. */ 1171 dts = tsa1.ts - tsa0.ts; 1172 dci = (tsa1.ci_ts >> (64 - MLX5_CQ_INDEX_WIDTH)) - 1173 (tsa0.ci_ts >> (64 - MLX5_CQ_INDEX_WIDTH)); 1174 dci += 1 << MLX5_CQ_INDEX_WIDTH; 1175 dci *= txpp->tick; 1176 return (dts > dci) ? dts - dci : dci - dts; 1177 } 1178 1179 /** 1180 * Routine to retrieve extended device statistics 1181 * for packet send scheduling. It appends the specific statistics 1182 * after the parts filled by preceding modules (eth stats, etc.) 1183 * 1184 * @param dev 1185 * Pointer to Ethernet device. 1186 * @param[out] stats 1187 * Pointer to rte extended stats table. 1188 * @param n 1189 * The size of the stats table. 1190 * @param n_used 1191 * Number of stats filled by preceding statistics modules. 1192 * 1193 * @return 1194 * Number of extended stats on success and stats is filled, 1195 * negative on error and rte_errno is set. 1196 */ 1197 int 1198 mlx5_txpp_xstats_get(struct rte_eth_dev *dev, 1199 struct rte_eth_xstat *stats, 1200 unsigned int n, unsigned int n_used) 1201 { 1202 unsigned int n_txpp = RTE_DIM(mlx5_txpp_stat_names); 1203 1204 if (n >= n_used + n_txpp && stats) { 1205 struct mlx5_priv *priv = dev->data->dev_private; 1206 struct mlx5_dev_ctx_shared *sh = priv->sh; 1207 unsigned int i; 1208 1209 for (i = 0; i < n_txpp; ++i) 1210 stats[n_used + i].id = n_used + i; 1211 stats[n_used + 0].value = 1212 __atomic_load_n(&sh->txpp.err_miss_int, 1213 __ATOMIC_RELAXED); 1214 stats[n_used + 1].value = 1215 __atomic_load_n(&sh->txpp.err_rearm_queue, 1216 __ATOMIC_RELAXED); 1217 stats[n_used + 2].value = 1218 __atomic_load_n(&sh->txpp.err_clock_queue, 1219 __ATOMIC_RELAXED); 1220 stats[n_used + 3].value = 1221 __atomic_load_n(&sh->txpp.err_ts_past, 1222 __ATOMIC_RELAXED); 1223 stats[n_used + 4].value = 1224 __atomic_load_n(&sh->txpp.err_ts_future, 1225 __ATOMIC_RELAXED); 1226 stats[n_used + 5].value = mlx5_txpp_xstats_jitter(&sh->txpp); 1227 stats[n_used + 6].value = mlx5_txpp_xstats_wander(&sh->txpp); 1228 stats[n_used + 7].value = sh->txpp.sync_lost; 1229 } 1230 return n_used + n_txpp; 1231 } 1232