1 /* SPDX-License-Identifier: BSD-3-Clause 2 * Copyright 2021 Mellanox Technologies, Ltd 3 */ 4 5 #include <rte_malloc.h> 6 #include <rte_log.h> 7 #include <rte_errno.h> 8 #include <rte_bus_pci.h> 9 #include <rte_spinlock.h> 10 #include <rte_comp.h> 11 #include <rte_compressdev.h> 12 #include <rte_compressdev_pmd.h> 13 14 #include <mlx5_glue.h> 15 #include <mlx5_common.h> 16 #include <mlx5_devx_cmds.h> 17 #include <mlx5_common_os.h> 18 #include <mlx5_common_devx.h> 19 #include <mlx5_common_mr.h> 20 #include <mlx5_prm.h> 21 22 #include "mlx5_compress_utils.h" 23 24 #define MLX5_COMPRESS_DRIVER_NAME mlx5_compress 25 #define MLX5_COMPRESS_MAX_QPS 1024 26 #define MLX5_COMP_MAX_WIN_SIZE_CONF 6u 27 28 struct mlx5_compress_xform { 29 LIST_ENTRY(mlx5_compress_xform) next; 30 enum rte_comp_xform_type type; 31 enum rte_comp_checksum_type csum_type; 32 uint32_t opcode; 33 uint32_t gga_ctrl1; /* BE. */ 34 }; 35 36 struct mlx5_compress_priv { 37 TAILQ_ENTRY(mlx5_compress_priv) next; 38 struct rte_compressdev *compressdev; 39 struct mlx5_common_device *cdev; /* Backend mlx5 device. */ 40 void *uar; 41 uint8_t min_block_size; 42 /* Minimum huffman block size supported by the device. */ 43 struct rte_compressdev_config dev_config; 44 LIST_HEAD(xform_list, mlx5_compress_xform) xform_list; 45 rte_spinlock_t xform_sl; 46 volatile uint64_t *uar_addr; 47 /* HCA caps*/ 48 uint32_t mmo_decomp_sq:1; 49 uint32_t mmo_decomp_qp:1; 50 uint32_t mmo_comp_sq:1; 51 uint32_t mmo_comp_qp:1; 52 uint32_t mmo_dma_sq:1; 53 uint32_t mmo_dma_qp:1; 54 #ifndef RTE_ARCH_64 55 rte_spinlock_t uar32_sl; 56 #endif /* RTE_ARCH_64 */ 57 }; 58 59 struct mlx5_compress_qp { 60 uint16_t qp_id; 61 uint16_t entries_n; 62 uint16_t pi; 63 uint16_t ci; 64 struct mlx5_mr_ctrl mr_ctrl; 65 int socket_id; 66 struct mlx5_devx_cq cq; 67 struct mlx5_devx_qp qp; 68 struct mlx5_pmd_mr opaque_mr; 69 struct rte_comp_op **ops; 70 struct mlx5_compress_priv *priv; 71 struct rte_compressdev_stats stats; 72 }; 73 74 TAILQ_HEAD(mlx5_compress_privs, mlx5_compress_priv) mlx5_compress_priv_list = 75 TAILQ_HEAD_INITIALIZER(mlx5_compress_priv_list); 76 static pthread_mutex_t priv_list_lock = PTHREAD_MUTEX_INITIALIZER; 77 78 int mlx5_compress_logtype; 79 80 static const struct rte_compressdev_capabilities mlx5_caps[] = { 81 { 82 .algo = RTE_COMP_ALGO_NULL, 83 .comp_feature_flags = RTE_COMP_FF_ADLER32_CHECKSUM | 84 RTE_COMP_FF_CRC32_CHECKSUM | 85 RTE_COMP_FF_CRC32_ADLER32_CHECKSUM | 86 RTE_COMP_FF_SHAREABLE_PRIV_XFORM, 87 }, 88 { 89 .algo = RTE_COMP_ALGO_DEFLATE, 90 .comp_feature_flags = RTE_COMP_FF_ADLER32_CHECKSUM | 91 RTE_COMP_FF_CRC32_CHECKSUM | 92 RTE_COMP_FF_CRC32_ADLER32_CHECKSUM | 93 RTE_COMP_FF_SHAREABLE_PRIV_XFORM | 94 RTE_COMP_FF_HUFFMAN_FIXED | 95 RTE_COMP_FF_HUFFMAN_DYNAMIC, 96 .window_size = {.min = 10, .max = 15, .increment = 1}, 97 }, 98 { 99 .algo = RTE_COMP_ALGO_LIST_END, 100 } 101 }; 102 103 static void 104 mlx5_compress_dev_info_get(struct rte_compressdev *dev, 105 struct rte_compressdev_info *info) 106 { 107 RTE_SET_USED(dev); 108 if (info != NULL) { 109 info->max_nb_queue_pairs = MLX5_COMPRESS_MAX_QPS; 110 info->feature_flags = RTE_COMPDEV_FF_HW_ACCELERATED; 111 info->capabilities = mlx5_caps; 112 } 113 } 114 115 static int 116 mlx5_compress_dev_configure(struct rte_compressdev *dev, 117 struct rte_compressdev_config *config) 118 { 119 struct mlx5_compress_priv *priv; 120 121 if (dev == NULL || config == NULL) 122 return -EINVAL; 123 priv = dev->data->dev_private; 124 priv->dev_config = *config; 125 return 0; 126 } 127 128 static int 129 mlx5_compress_dev_close(struct rte_compressdev *dev) 130 { 131 RTE_SET_USED(dev); 132 return 0; 133 } 134 135 static int 136 mlx5_compress_qp_release(struct rte_compressdev *dev, uint16_t qp_id) 137 { 138 struct mlx5_compress_qp *qp = dev->data->queue_pairs[qp_id]; 139 140 if (qp->qp.qp != NULL) 141 mlx5_devx_qp_destroy(&qp->qp); 142 if (qp->cq.cq != NULL) 143 mlx5_devx_cq_destroy(&qp->cq); 144 if (qp->opaque_mr.obj != NULL) { 145 void *opaq = qp->opaque_mr.addr; 146 147 mlx5_common_verbs_dereg_mr(&qp->opaque_mr); 148 if (opaq != NULL) 149 rte_free(opaq); 150 } 151 mlx5_mr_btree_free(&qp->mr_ctrl.cache_bh); 152 rte_free(qp); 153 dev->data->queue_pairs[qp_id] = NULL; 154 return 0; 155 } 156 157 static void 158 mlx5_compress_init_qp(struct mlx5_compress_qp *qp) 159 { 160 volatile struct mlx5_gga_wqe *restrict wqe = 161 (volatile struct mlx5_gga_wqe *)qp->qp.wqes; 162 volatile struct mlx5_gga_compress_opaque *opaq = qp->opaque_mr.addr; 163 const uint32_t sq_ds = rte_cpu_to_be_32((qp->qp.qp->id << 8) | 4u); 164 const uint32_t flags = RTE_BE32(MLX5_COMP_ALWAYS << 165 MLX5_COMP_MODE_OFFSET); 166 const uint32_t opaq_lkey = rte_cpu_to_be_32(qp->opaque_mr.lkey); 167 int i; 168 169 /* All the next fields state should stay constant. */ 170 for (i = 0; i < qp->entries_n; ++i, ++wqe) { 171 wqe->sq_ds = sq_ds; 172 wqe->flags = flags; 173 wqe->opaque_lkey = opaq_lkey; 174 wqe->opaque_vaddr = rte_cpu_to_be_64 175 ((uint64_t)(uintptr_t)&opaq[i]); 176 } 177 } 178 179 static int 180 mlx5_compress_qp_setup(struct rte_compressdev *dev, uint16_t qp_id, 181 uint32_t max_inflight_ops, int socket_id) 182 { 183 struct mlx5_compress_priv *priv = dev->data->dev_private; 184 struct mlx5_compress_qp *qp; 185 struct mlx5_devx_cq_attr cq_attr = { 186 .uar_page_id = mlx5_os_get_devx_uar_page_id(priv->uar), 187 }; 188 struct mlx5_devx_qp_attr qp_attr = { 189 .pd = priv->cdev->pdn, 190 .uar_index = mlx5_os_get_devx_uar_page_id(priv->uar), 191 .user_index = qp_id, 192 }; 193 uint32_t log_ops_n = rte_log2_u32(max_inflight_ops); 194 uint32_t alloc_size = sizeof(*qp); 195 void *opaq_buf; 196 int ret; 197 198 alloc_size = RTE_ALIGN(alloc_size, RTE_CACHE_LINE_SIZE); 199 alloc_size += sizeof(struct rte_comp_op *) * (1u << log_ops_n); 200 qp = rte_zmalloc_socket(__func__, alloc_size, RTE_CACHE_LINE_SIZE, 201 socket_id); 202 if (qp == NULL) { 203 DRV_LOG(ERR, "Failed to allocate qp memory."); 204 rte_errno = ENOMEM; 205 return -rte_errno; 206 } 207 dev->data->queue_pairs[qp_id] = qp; 208 if (mlx5_mr_ctrl_init(&qp->mr_ctrl, &priv->cdev->mr_scache.dev_gen, 209 priv->dev_config.socket_id)) { 210 DRV_LOG(ERR, "Cannot allocate MR Btree for qp %u.", 211 (uint32_t)qp_id); 212 rte_errno = ENOMEM; 213 goto err; 214 } 215 opaq_buf = rte_calloc(__func__, (size_t)1 << log_ops_n, 216 sizeof(struct mlx5_gga_compress_opaque), 217 sizeof(struct mlx5_gga_compress_opaque)); 218 if (opaq_buf == NULL) { 219 DRV_LOG(ERR, "Failed to allocate opaque memory."); 220 rte_errno = ENOMEM; 221 goto err; 222 } 223 qp->entries_n = 1 << log_ops_n; 224 qp->socket_id = socket_id; 225 qp->qp_id = qp_id; 226 qp->priv = priv; 227 qp->ops = (struct rte_comp_op **)RTE_ALIGN((uintptr_t)(qp + 1), 228 RTE_CACHE_LINE_SIZE); 229 if (mlx5_common_verbs_reg_mr(priv->cdev->pd, opaq_buf, qp->entries_n * 230 sizeof(struct mlx5_gga_compress_opaque), 231 &qp->opaque_mr) != 0) { 232 rte_free(opaq_buf); 233 DRV_LOG(ERR, "Failed to register opaque MR."); 234 rte_errno = ENOMEM; 235 goto err; 236 } 237 ret = mlx5_devx_cq_create(priv->cdev->ctx, &qp->cq, log_ops_n, &cq_attr, 238 socket_id); 239 if (ret != 0) { 240 DRV_LOG(ERR, "Failed to create CQ."); 241 goto err; 242 } 243 qp_attr.cqn = qp->cq.cq->id; 244 qp_attr.ts_format = 245 mlx5_ts_format_conv(priv->cdev->config.hca_attr.qp_ts_format); 246 qp_attr.rq_size = 0; 247 qp_attr.sq_size = RTE_BIT32(log_ops_n); 248 qp_attr.mmo = priv->mmo_decomp_qp && priv->mmo_comp_qp 249 && priv->mmo_dma_qp; 250 ret = mlx5_devx_qp_create(priv->cdev->ctx, &qp->qp, log_ops_n, &qp_attr, 251 socket_id); 252 if (ret != 0) { 253 DRV_LOG(ERR, "Failed to create QP."); 254 goto err; 255 } 256 mlx5_compress_init_qp(qp); 257 ret = mlx5_devx_qp2rts(&qp->qp, 0); 258 if (ret) 259 goto err; 260 DRV_LOG(INFO, "QP %u: SQN=0x%X CQN=0x%X entries num = %u", 261 (uint32_t)qp_id, qp->qp.qp->id, qp->cq.cq->id, qp->entries_n); 262 return 0; 263 err: 264 mlx5_compress_qp_release(dev, qp_id); 265 return -1; 266 } 267 268 static int 269 mlx5_compress_xform_free(struct rte_compressdev *dev, void *xform) 270 { 271 struct mlx5_compress_priv *priv = dev->data->dev_private; 272 273 rte_spinlock_lock(&priv->xform_sl); 274 LIST_REMOVE((struct mlx5_compress_xform *)xform, next); 275 rte_spinlock_unlock(&priv->xform_sl); 276 rte_free(xform); 277 return 0; 278 } 279 280 static int 281 mlx5_compress_xform_create(struct rte_compressdev *dev, 282 const struct rte_comp_xform *xform, 283 void **private_xform) 284 { 285 struct mlx5_compress_priv *priv = dev->data->dev_private; 286 struct mlx5_compress_xform *xfrm; 287 uint32_t size; 288 289 switch (xform->type) { 290 case RTE_COMP_COMPRESS: 291 if (xform->compress.algo == RTE_COMP_ALGO_NULL && 292 !priv->mmo_dma_qp && !priv->mmo_dma_sq) { 293 DRV_LOG(ERR, "Not enough capabilities to support DMA operation, maybe old FW/OFED version?"); 294 return -ENOTSUP; 295 } else if (!priv->mmo_comp_qp && !priv->mmo_comp_sq) { 296 DRV_LOG(ERR, "Not enough capabilities to support compress operation, maybe old FW/OFED version?"); 297 return -ENOTSUP; 298 } 299 if (xform->compress.level == RTE_COMP_LEVEL_NONE) { 300 DRV_LOG(ERR, "Non-compressed block is not supported."); 301 return -ENOTSUP; 302 } 303 if (xform->compress.hash_algo != RTE_COMP_HASH_ALGO_NONE) { 304 DRV_LOG(ERR, "SHA is not supported."); 305 return -ENOTSUP; 306 } 307 break; 308 case RTE_COMP_DECOMPRESS: 309 if (xform->decompress.algo == RTE_COMP_ALGO_NULL && 310 !priv->mmo_dma_qp && !priv->mmo_dma_sq) { 311 DRV_LOG(ERR, "Not enough capabilities to support DMA operation, maybe old FW/OFED version?"); 312 return -ENOTSUP; 313 } else if (!priv->mmo_decomp_qp && !priv->mmo_decomp_sq) { 314 DRV_LOG(ERR, "Not enough capabilities to support decompress operation, maybe old FW/OFED version?"); 315 return -ENOTSUP; 316 } 317 if (xform->compress.hash_algo != RTE_COMP_HASH_ALGO_NONE) { 318 DRV_LOG(ERR, "SHA is not supported."); 319 return -ENOTSUP; 320 } 321 break; 322 default: 323 DRV_LOG(ERR, "Xform type should be compress/decompress"); 324 return -ENOTSUP; 325 } 326 327 xfrm = rte_zmalloc_socket(__func__, sizeof(*xfrm), 0, 328 priv->dev_config.socket_id); 329 if (xfrm == NULL) 330 return -ENOMEM; 331 xfrm->opcode = MLX5_OPCODE_MMO; 332 xfrm->type = xform->type; 333 switch (xform->type) { 334 case RTE_COMP_COMPRESS: 335 switch (xform->compress.algo) { 336 case RTE_COMP_ALGO_NULL: 337 xfrm->opcode += MLX5_OPC_MOD_MMO_DMA << 338 WQE_CSEG_OPC_MOD_OFFSET; 339 break; 340 case RTE_COMP_ALGO_DEFLATE: 341 size = 1 << xform->compress.window_size; 342 size /= MLX5_GGA_COMP_WIN_SIZE_UNITS; 343 xfrm->gga_ctrl1 += RTE_MIN(rte_log2_u32(size), 344 MLX5_COMP_MAX_WIN_SIZE_CONF) << 345 WQE_GGA_COMP_WIN_SIZE_OFFSET; 346 switch (xform->compress.level) { 347 case RTE_COMP_LEVEL_PMD_DEFAULT: 348 size = MLX5_GGA_COMP_LOG_BLOCK_SIZE_MAX; 349 break; 350 case RTE_COMP_LEVEL_MAX: 351 size = priv->min_block_size; 352 break; 353 default: 354 size = RTE_MAX(MLX5_GGA_COMP_LOG_BLOCK_SIZE_MAX 355 + 1 - xform->compress.level, 356 priv->min_block_size); 357 } 358 xfrm->gga_ctrl1 += RTE_MIN(size, 359 MLX5_GGA_COMP_LOG_BLOCK_SIZE_MAX) << 360 WQE_GGA_COMP_BLOCK_SIZE_OFFSET; 361 xfrm->opcode += MLX5_OPC_MOD_MMO_COMP << 362 WQE_CSEG_OPC_MOD_OFFSET; 363 size = xform->compress.deflate.huffman == 364 RTE_COMP_HUFFMAN_DYNAMIC ? 365 MLX5_GGA_COMP_LOG_DYNAMIC_SIZE_MAX : 366 MLX5_GGA_COMP_LOG_DYNAMIC_SIZE_MIN; 367 xfrm->gga_ctrl1 += size << 368 WQE_GGA_COMP_DYNAMIC_SIZE_OFFSET; 369 break; 370 default: 371 goto err; 372 } 373 xfrm->csum_type = xform->compress.chksum; 374 break; 375 case RTE_COMP_DECOMPRESS: 376 switch (xform->decompress.algo) { 377 case RTE_COMP_ALGO_NULL: 378 xfrm->opcode += MLX5_OPC_MOD_MMO_DMA << 379 WQE_CSEG_OPC_MOD_OFFSET; 380 break; 381 case RTE_COMP_ALGO_DEFLATE: 382 xfrm->opcode += MLX5_OPC_MOD_MMO_DECOMP << 383 WQE_CSEG_OPC_MOD_OFFSET; 384 break; 385 default: 386 goto err; 387 } 388 xfrm->csum_type = xform->decompress.chksum; 389 break; 390 default: 391 DRV_LOG(ERR, "Algorithm %u is not supported.", xform->type); 392 goto err; 393 } 394 DRV_LOG(DEBUG, "New xform: gga ctrl1 = 0x%08X opcode = 0x%08X csum " 395 "type = %d.", xfrm->gga_ctrl1, xfrm->opcode, xfrm->csum_type); 396 xfrm->gga_ctrl1 = rte_cpu_to_be_32(xfrm->gga_ctrl1); 397 rte_spinlock_lock(&priv->xform_sl); 398 LIST_INSERT_HEAD(&priv->xform_list, xfrm, next); 399 rte_spinlock_unlock(&priv->xform_sl); 400 *private_xform = xfrm; 401 return 0; 402 err: 403 rte_free(xfrm); 404 return -ENOTSUP; 405 } 406 407 static void 408 mlx5_compress_dev_stop(struct rte_compressdev *dev) 409 { 410 RTE_SET_USED(dev); 411 } 412 413 static int 414 mlx5_compress_dev_start(struct rte_compressdev *dev) 415 { 416 struct mlx5_compress_priv *priv = dev->data->dev_private; 417 418 return mlx5_dev_mempool_subscribe(priv->cdev); 419 } 420 421 static void 422 mlx5_compress_stats_get(struct rte_compressdev *dev, 423 struct rte_compressdev_stats *stats) 424 { 425 int qp_id; 426 427 for (qp_id = 0; qp_id < dev->data->nb_queue_pairs; qp_id++) { 428 struct mlx5_compress_qp *qp = dev->data->queue_pairs[qp_id]; 429 430 stats->enqueued_count += qp->stats.enqueued_count; 431 stats->dequeued_count += qp->stats.dequeued_count; 432 stats->enqueue_err_count += qp->stats.enqueue_err_count; 433 stats->dequeue_err_count += qp->stats.dequeue_err_count; 434 } 435 } 436 437 static void 438 mlx5_compress_stats_reset(struct rte_compressdev *dev) 439 { 440 int qp_id; 441 442 for (qp_id = 0; qp_id < dev->data->nb_queue_pairs; qp_id++) { 443 struct mlx5_compress_qp *qp = dev->data->queue_pairs[qp_id]; 444 445 memset(&qp->stats, 0, sizeof(qp->stats)); 446 } 447 } 448 449 static struct rte_compressdev_ops mlx5_compress_ops = { 450 .dev_configure = mlx5_compress_dev_configure, 451 .dev_start = mlx5_compress_dev_start, 452 .dev_stop = mlx5_compress_dev_stop, 453 .dev_close = mlx5_compress_dev_close, 454 .dev_infos_get = mlx5_compress_dev_info_get, 455 .stats_get = mlx5_compress_stats_get, 456 .stats_reset = mlx5_compress_stats_reset, 457 .queue_pair_setup = mlx5_compress_qp_setup, 458 .queue_pair_release = mlx5_compress_qp_release, 459 .private_xform_create = mlx5_compress_xform_create, 460 .private_xform_free = mlx5_compress_xform_free, 461 .stream_create = NULL, 462 .stream_free = NULL, 463 }; 464 465 static __rte_always_inline uint32_t 466 mlx5_compress_dseg_set(struct mlx5_compress_qp *qp, 467 volatile struct mlx5_wqe_dseg *restrict dseg, 468 struct rte_mbuf *restrict mbuf, 469 uint32_t offset, uint32_t len) 470 { 471 uintptr_t addr = rte_pktmbuf_mtod_offset(mbuf, uintptr_t, offset); 472 473 dseg->bcount = rte_cpu_to_be_32(len); 474 dseg->lkey = mlx5_mr_mb2mr(qp->priv->cdev, 0, &qp->mr_ctrl, mbuf); 475 dseg->pbuf = rte_cpu_to_be_64(addr); 476 return dseg->lkey; 477 } 478 479 /* 480 * Provide safe 64bit store operation to mlx5 UAR region for both 32bit and 481 * 64bit architectures. 482 */ 483 static __rte_always_inline void 484 mlx5_compress_uar_write(uint64_t val, struct mlx5_compress_priv *priv) 485 { 486 #ifdef RTE_ARCH_64 487 *priv->uar_addr = val; 488 #else /* !RTE_ARCH_64 */ 489 rte_spinlock_lock(&priv->uar32_sl); 490 *(volatile uint32_t *)priv->uar_addr = val; 491 rte_io_wmb(); 492 *((volatile uint32_t *)priv->uar_addr + 1) = val >> 32; 493 rte_spinlock_unlock(&priv->uar32_sl); 494 #endif 495 } 496 497 static uint16_t 498 mlx5_compress_enqueue_burst(void *queue_pair, struct rte_comp_op **ops, 499 uint16_t nb_ops) 500 { 501 struct mlx5_compress_qp *qp = queue_pair; 502 volatile struct mlx5_gga_wqe *wqes = (volatile struct mlx5_gga_wqe *) 503 qp->qp.wqes, *wqe; 504 struct mlx5_compress_xform *xform; 505 struct rte_comp_op *op; 506 uint16_t mask = qp->entries_n - 1; 507 uint16_t remain = qp->entries_n - (qp->pi - qp->ci); 508 uint16_t idx; 509 bool invalid; 510 511 if (remain < nb_ops) 512 nb_ops = remain; 513 else 514 remain = nb_ops; 515 if (unlikely(remain == 0)) 516 return 0; 517 do { 518 idx = qp->pi & mask; 519 wqe = &wqes[idx]; 520 rte_prefetch0(&wqes[(qp->pi + 1) & mask]); 521 op = *ops++; 522 xform = op->private_xform; 523 /* 524 * Check operation arguments and error cases: 525 * - Operation type must be state-less. 526 * - Compress operation flush flag must be FULL or FINAL. 527 * - Source and destination buffers must be mapped internally. 528 */ 529 invalid = op->op_type != RTE_COMP_OP_STATELESS || 530 (xform->type == RTE_COMP_COMPRESS && 531 op->flush_flag < RTE_COMP_FLUSH_FULL); 532 if (unlikely(invalid || 533 (mlx5_compress_dseg_set(qp, &wqe->gather, 534 op->m_src, 535 op->src.offset, 536 op->src.length) == 537 UINT32_MAX) || 538 (mlx5_compress_dseg_set(qp, &wqe->scatter, 539 op->m_dst, 540 op->dst.offset, 541 rte_pktmbuf_pkt_len(op->m_dst) - 542 op->dst.offset) == 543 UINT32_MAX))) { 544 op->status = invalid ? RTE_COMP_OP_STATUS_INVALID_ARGS : 545 RTE_COMP_OP_STATUS_ERROR; 546 nb_ops -= remain; 547 if (unlikely(nb_ops == 0)) 548 return 0; 549 break; 550 } 551 wqe->gga_ctrl1 = xform->gga_ctrl1; 552 wqe->opcode = rte_cpu_to_be_32(xform->opcode + (qp->pi << 8)); 553 qp->ops[idx] = op; 554 qp->pi++; 555 } while (--remain); 556 qp->stats.enqueued_count += nb_ops; 557 rte_io_wmb(); 558 qp->qp.db_rec[MLX5_SND_DBR] = rte_cpu_to_be_32(qp->pi); 559 rte_wmb(); 560 mlx5_compress_uar_write(*(volatile uint64_t *)wqe, qp->priv); 561 rte_wmb(); 562 return nb_ops; 563 } 564 565 static void 566 mlx5_compress_dump_err_objs(volatile uint32_t *cqe, volatile uint32_t *wqe, 567 volatile uint32_t *opaq) 568 { 569 size_t i; 570 571 DRV_LOG(ERR, "Error cqe:"); 572 for (i = 0; i < sizeof(struct mlx5_err_cqe) >> 2; i += 4) 573 DRV_LOG(ERR, "%08X %08X %08X %08X", cqe[i], cqe[i + 1], 574 cqe[i + 2], cqe[i + 3]); 575 DRV_LOG(ERR, "\nError wqe:"); 576 for (i = 0; i < sizeof(struct mlx5_gga_wqe) >> 2; i += 4) 577 DRV_LOG(ERR, "%08X %08X %08X %08X", wqe[i], wqe[i + 1], 578 wqe[i + 2], wqe[i + 3]); 579 DRV_LOG(ERR, "\nError opaq:"); 580 for (i = 0; i < sizeof(struct mlx5_gga_compress_opaque) >> 2; i += 4) 581 DRV_LOG(ERR, "%08X %08X %08X %08X", opaq[i], opaq[i + 1], 582 opaq[i + 2], opaq[i + 3]); 583 } 584 585 static void 586 mlx5_compress_cqe_err_handle(struct mlx5_compress_qp *qp, 587 struct rte_comp_op *op) 588 { 589 const uint32_t idx = qp->ci & (qp->entries_n - 1); 590 volatile struct mlx5_err_cqe *cqe = (volatile struct mlx5_err_cqe *) 591 &qp->cq.cqes[idx]; 592 volatile struct mlx5_gga_wqe *wqes = (volatile struct mlx5_gga_wqe *) 593 qp->qp.wqes; 594 volatile struct mlx5_gga_compress_opaque *opaq = qp->opaque_mr.addr; 595 596 op->status = RTE_COMP_OP_STATUS_ERROR; 597 op->consumed = 0; 598 op->produced = 0; 599 op->output_chksum = 0; 600 op->debug_status = rte_be_to_cpu_32(opaq[idx].syndrom) | 601 ((uint64_t)rte_be_to_cpu_32(cqe->syndrome) << 32); 602 mlx5_compress_dump_err_objs((volatile uint32_t *)cqe, 603 (volatile uint32_t *)&wqes[idx], 604 (volatile uint32_t *)&opaq[idx]); 605 qp->stats.dequeue_err_count++; 606 } 607 608 static uint16_t 609 mlx5_compress_dequeue_burst(void *queue_pair, struct rte_comp_op **ops, 610 uint16_t nb_ops) 611 { 612 struct mlx5_compress_qp *qp = queue_pair; 613 volatile struct mlx5_compress_xform *restrict xform; 614 volatile struct mlx5_cqe *restrict cqe; 615 volatile struct mlx5_gga_compress_opaque *opaq = qp->opaque_mr.addr; 616 struct rte_comp_op *restrict op; 617 const unsigned int cq_size = qp->entries_n; 618 const unsigned int mask = cq_size - 1; 619 uint32_t idx; 620 uint32_t next_idx = qp->ci & mask; 621 const uint16_t max = RTE_MIN((uint16_t)(qp->pi - qp->ci), nb_ops); 622 uint16_t i = 0; 623 int ret; 624 625 if (unlikely(max == 0)) 626 return 0; 627 do { 628 idx = next_idx; 629 next_idx = (qp->ci + 1) & mask; 630 rte_prefetch0(&qp->cq.cqes[next_idx]); 631 rte_prefetch0(qp->ops[next_idx]); 632 op = qp->ops[idx]; 633 cqe = &qp->cq.cqes[idx]; 634 ret = check_cqe(cqe, cq_size, qp->ci); 635 /* 636 * Be sure owner read is done before any other cookie field or 637 * opaque field. 638 */ 639 rte_io_rmb(); 640 if (unlikely(ret != MLX5_CQE_STATUS_SW_OWN)) { 641 if (likely(ret == MLX5_CQE_STATUS_HW_OWN)) 642 break; 643 mlx5_compress_cqe_err_handle(qp, op); 644 } else { 645 xform = op->private_xform; 646 op->status = RTE_COMP_OP_STATUS_SUCCESS; 647 op->consumed = op->src.length; 648 op->produced = rte_be_to_cpu_32(cqe->byte_cnt); 649 MLX5_ASSERT(cqe->byte_cnt == 650 opaq[idx].scattered_length); 651 switch (xform->csum_type) { 652 case RTE_COMP_CHECKSUM_CRC32: 653 op->output_chksum = (uint64_t)rte_be_to_cpu_32 654 (opaq[idx].crc32); 655 break; 656 case RTE_COMP_CHECKSUM_ADLER32: 657 op->output_chksum = (uint64_t)rte_be_to_cpu_32 658 (opaq[idx].adler32) << 32; 659 break; 660 case RTE_COMP_CHECKSUM_CRC32_ADLER32: 661 op->output_chksum = (uint64_t)rte_be_to_cpu_32 662 (opaq[idx].crc32) | 663 ((uint64_t)rte_be_to_cpu_32 664 (opaq[idx].adler32) << 32); 665 break; 666 default: 667 break; 668 } 669 } 670 ops[i++] = op; 671 qp->ci++; 672 } while (i < max); 673 if (likely(i != 0)) { 674 rte_io_wmb(); 675 qp->cq.db_rec[0] = rte_cpu_to_be_32(qp->ci); 676 qp->stats.dequeued_count += i; 677 } 678 return i; 679 } 680 681 static void 682 mlx5_compress_uar_release(struct mlx5_compress_priv *priv) 683 { 684 if (priv->uar != NULL) { 685 mlx5_glue->devx_free_uar(priv->uar); 686 priv->uar = NULL; 687 } 688 } 689 690 static int 691 mlx5_compress_uar_prepare(struct mlx5_compress_priv *priv) 692 { 693 priv->uar = mlx5_devx_alloc_uar(priv->cdev->ctx, -1); 694 if (priv->uar == NULL || mlx5_os_get_devx_uar_reg_addr(priv->uar) == 695 NULL) { 696 rte_errno = errno; 697 DRV_LOG(ERR, "Failed to allocate UAR."); 698 return -1; 699 } 700 priv->uar_addr = mlx5_os_get_devx_uar_reg_addr(priv->uar); 701 MLX5_ASSERT(priv->uar_addr); 702 #ifndef RTE_ARCH_64 703 rte_spinlock_init(&priv->uar32_sl); 704 #endif /* RTE_ARCH_64 */ 705 return 0; 706 } 707 708 static int 709 mlx5_compress_dev_probe(struct mlx5_common_device *cdev) 710 { 711 struct rte_compressdev *compressdev; 712 struct mlx5_compress_priv *priv; 713 struct mlx5_hca_attr *attr = &cdev->config.hca_attr; 714 struct rte_compressdev_pmd_init_params init_params = { 715 .name = "", 716 .socket_id = cdev->dev->numa_node, 717 }; 718 const char *ibdev_name = mlx5_os_get_ctx_device_name(cdev->ctx); 719 720 if (rte_eal_process_type() != RTE_PROC_PRIMARY) { 721 DRV_LOG(ERR, "Non-primary process type is not supported."); 722 rte_errno = ENOTSUP; 723 return -rte_errno; 724 } 725 if (!attr->mmo_decompress_qp_en && !attr->mmo_decompress_sq_en 726 && !attr->mmo_compress_qp_en && !attr->mmo_compress_sq_en 727 && !attr->mmo_dma_qp_en && !attr->mmo_dma_sq_en) { 728 DRV_LOG(ERR, "Not enough capabilities to support compress operations, maybe old FW/OFED version?"); 729 claim_zero(mlx5_glue->close_device(cdev->ctx)); 730 rte_errno = ENOTSUP; 731 return -ENOTSUP; 732 } 733 compressdev = rte_compressdev_pmd_create(ibdev_name, cdev->dev, 734 sizeof(*priv), &init_params); 735 if (compressdev == NULL) { 736 DRV_LOG(ERR, "Failed to create device \"%s\".", ibdev_name); 737 return -ENODEV; 738 } 739 DRV_LOG(INFO, 740 "Compress device %s was created successfully.", ibdev_name); 741 compressdev->dev_ops = &mlx5_compress_ops; 742 compressdev->dequeue_burst = mlx5_compress_dequeue_burst; 743 compressdev->enqueue_burst = mlx5_compress_enqueue_burst; 744 compressdev->feature_flags = RTE_COMPDEV_FF_HW_ACCELERATED; 745 priv = compressdev->data->dev_private; 746 priv->mmo_decomp_sq = attr->mmo_decompress_sq_en; 747 priv->mmo_decomp_qp = attr->mmo_decompress_qp_en; 748 priv->mmo_comp_sq = attr->mmo_compress_sq_en; 749 priv->mmo_comp_qp = attr->mmo_compress_qp_en; 750 priv->mmo_dma_sq = attr->mmo_dma_sq_en; 751 priv->mmo_dma_qp = attr->mmo_dma_qp_en; 752 priv->cdev = cdev; 753 priv->compressdev = compressdev; 754 priv->min_block_size = attr->compress_min_block_size; 755 if (mlx5_compress_uar_prepare(priv) != 0) { 756 rte_compressdev_pmd_destroy(priv->compressdev); 757 return -1; 758 } 759 pthread_mutex_lock(&priv_list_lock); 760 TAILQ_INSERT_TAIL(&mlx5_compress_priv_list, priv, next); 761 pthread_mutex_unlock(&priv_list_lock); 762 return 0; 763 } 764 765 static int 766 mlx5_compress_dev_remove(struct mlx5_common_device *cdev) 767 { 768 struct mlx5_compress_priv *priv = NULL; 769 770 pthread_mutex_lock(&priv_list_lock); 771 TAILQ_FOREACH(priv, &mlx5_compress_priv_list, next) 772 if (priv->compressdev->device == cdev->dev) 773 break; 774 if (priv) 775 TAILQ_REMOVE(&mlx5_compress_priv_list, priv, next); 776 pthread_mutex_unlock(&priv_list_lock); 777 if (priv) { 778 mlx5_compress_uar_release(priv); 779 rte_compressdev_pmd_destroy(priv->compressdev); 780 } 781 return 0; 782 } 783 784 static const struct rte_pci_id mlx5_compress_pci_id_map[] = { 785 { 786 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX, 787 PCI_DEVICE_ID_MELLANOX_CONNECTX6DXBF) 788 }, 789 { 790 .vendor_id = 0 791 } 792 }; 793 794 static struct mlx5_class_driver mlx5_compress_driver = { 795 .drv_class = MLX5_CLASS_COMPRESS, 796 .name = RTE_STR(MLX5_COMPRESS_DRIVER_NAME), 797 .id_table = mlx5_compress_pci_id_map, 798 .probe = mlx5_compress_dev_probe, 799 .remove = mlx5_compress_dev_remove, 800 }; 801 802 RTE_INIT(rte_mlx5_compress_init) 803 { 804 mlx5_common_init(); 805 if (mlx5_glue != NULL) 806 mlx5_class_driver_register(&mlx5_compress_driver); 807 } 808 809 RTE_LOG_REGISTER_DEFAULT(mlx5_compress_logtype, NOTICE) 810 RTE_PMD_EXPORT_NAME(MLX5_COMPRESS_DRIVER_NAME, __COUNTER__); 811 RTE_PMD_REGISTER_PCI_TABLE(MLX5_COMPRESS_DRIVER_NAME, mlx5_compress_pci_id_map); 812 RTE_PMD_REGISTER_KMOD_DEP(MLX5_COMPRESS_DRIVER_NAME, "* ib_uverbs & mlx5_core & mlx5_ib"); 813