1 /* SPDX-License-Identifier: BSD-3-Clause 2 * Copyright 2015 6WIND S.A. 3 * Copyright 2015 Mellanox Technologies, Ltd 4 */ 5 6 #ifndef RTE_PMD_MLX5_H_ 7 #define RTE_PMD_MLX5_H_ 8 9 #include <stddef.h> 10 #include <stdbool.h> 11 #include <stdint.h> 12 #include <limits.h> 13 #include <sys/queue.h> 14 15 #include <rte_pci.h> 16 #include <rte_ether.h> 17 #include <ethdev_driver.h> 18 #include <rte_rwlock.h> 19 #include <rte_interrupts.h> 20 #include <rte_errno.h> 21 #include <rte_flow.h> 22 #include <rte_mtr.h> 23 24 #include <mlx5_glue.h> 25 #include <mlx5_devx_cmds.h> 26 #include <mlx5_prm.h> 27 #include <mlx5_common_mp.h> 28 #include <mlx5_common_mr.h> 29 #include <mlx5_common_devx.h> 30 31 #include "mlx5_defs.h" 32 #include "mlx5_utils.h" 33 #include "mlx5_os.h" 34 #include "mlx5_autoconf.h" 35 36 37 #define MLX5_SH(dev) (((struct mlx5_priv *)(dev)->data->dev_private)->sh) 38 39 /* 40 * Number of modification commands. 41 * The maximal actions amount in FW is some constant, and it is 16 in the 42 * latest releases. In some old releases, it will be limited to 8. 43 * Since there is no interface to query the capacity, the maximal value should 44 * be used to allow PMD to create the flow. The validation will be done in the 45 * lower driver layer or FW. A failure will be returned if exceeds the maximal 46 * supported actions number on the root table. 47 * On non-root tables, there is no limitation, but 32 is enough right now. 48 */ 49 #define MLX5_MAX_MODIFY_NUM 32 50 #define MLX5_ROOT_TBL_MODIFY_NUM 16 51 52 enum mlx5_ipool_index { 53 #if defined(HAVE_IBV_FLOW_DV_SUPPORT) || !defined(HAVE_INFINIBAND_VERBS_H) 54 MLX5_IPOOL_DECAP_ENCAP = 0, /* Pool for encap/decap resource. */ 55 MLX5_IPOOL_PUSH_VLAN, /* Pool for push vlan resource. */ 56 MLX5_IPOOL_TAG, /* Pool for tag resource. */ 57 MLX5_IPOOL_PORT_ID, /* Pool for port id resource. */ 58 MLX5_IPOOL_JUMP, /* Pool for jump resource. */ 59 MLX5_IPOOL_SAMPLE, /* Pool for sample resource. */ 60 MLX5_IPOOL_DEST_ARRAY, /* Pool for destination array resource. */ 61 MLX5_IPOOL_TUNNEL_ID, /* Pool for tunnel offload context */ 62 MLX5_IPOOL_TNL_TBL_ID, /* Pool for tunnel table ID. */ 63 #endif 64 MLX5_IPOOL_MTR, /* Pool for meter resource. */ 65 MLX5_IPOOL_MCP, /* Pool for metadata resource. */ 66 MLX5_IPOOL_HRXQ, /* Pool for hrxq resource. */ 67 MLX5_IPOOL_MLX5_FLOW, /* Pool for mlx5 flow handle. */ 68 MLX5_IPOOL_RTE_FLOW, /* Pool for rte_flow. */ 69 MLX5_IPOOL_RSS_EXPANTION_FLOW_ID, /* Pool for Queue/RSS flow ID. */ 70 MLX5_IPOOL_RSS_SHARED_ACTIONS, /* Pool for RSS shared actions. */ 71 MLX5_IPOOL_MTR_POLICY, /* Pool for meter policy resource. */ 72 MLX5_IPOOL_MAX, 73 }; 74 75 /* 76 * There are three reclaim memory mode supported. 77 * 0(none) means no memory reclaim. 78 * 1(light) means only PMD level reclaim. 79 * 2(aggressive) means both PMD and rdma-core level reclaim. 80 */ 81 enum mlx5_reclaim_mem_mode { 82 MLX5_RCM_NONE, /* Don't reclaim memory. */ 83 MLX5_RCM_LIGHT, /* Reclaim PMD level. */ 84 MLX5_RCM_AGGR, /* Reclaim PMD and rdma-core level. */ 85 }; 86 87 /* The type of flow. */ 88 enum mlx5_flow_type { 89 MLX5_FLOW_TYPE_CTL, /* Control flow. */ 90 MLX5_FLOW_TYPE_GEN, /* General flow. */ 91 MLX5_FLOW_TYPE_MCP, /* MCP flow. */ 92 MLX5_FLOW_TYPE_MAXI, 93 }; 94 95 /* Hlist and list callback context. */ 96 struct mlx5_flow_cb_ctx { 97 struct rte_eth_dev *dev; 98 struct rte_flow_error *error; 99 void *data; 100 void *data2; 101 }; 102 103 /* Device attributes used in mlx5 PMD */ 104 struct mlx5_dev_attr { 105 uint64_t device_cap_flags_ex; 106 int max_qp_wr; 107 int max_sge; 108 int max_cq; 109 int max_qp; 110 int max_cqe; 111 uint32_t max_pd; 112 uint32_t max_mr; 113 uint32_t max_srq; 114 uint32_t max_srq_wr; 115 uint32_t raw_packet_caps; 116 uint32_t max_rwq_indirection_table_size; 117 uint32_t max_tso; 118 uint32_t tso_supported_qpts; 119 uint64_t flags; 120 uint64_t comp_mask; 121 uint32_t sw_parsing_offloads; 122 uint32_t min_single_stride_log_num_of_bytes; 123 uint32_t max_single_stride_log_num_of_bytes; 124 uint32_t min_single_wqe_log_num_of_strides; 125 uint32_t max_single_wqe_log_num_of_strides; 126 uint32_t stride_supported_qpts; 127 uint32_t tunnel_offloads_caps; 128 char fw_ver[64]; 129 }; 130 131 /** Data associated with devices to spawn. */ 132 struct mlx5_dev_spawn_data { 133 uint32_t ifindex; /**< Network interface index. */ 134 uint32_t max_port; /**< Device maximal port index. */ 135 uint32_t phys_port; /**< Device physical port index. */ 136 int pf_bond; /**< bonding device PF index. < 0 - no bonding */ 137 int numa_node; /**< Device numa node. */ 138 struct mlx5_switch_info info; /**< Switch information. */ 139 void *phys_dev; /**< Associated physical device. */ 140 struct rte_eth_dev *eth_dev; /**< Associated Ethernet device. */ 141 struct rte_pci_device *pci_dev; /**< Backend PCI device. */ 142 struct mlx5_bond_info *bond_info; 143 }; 144 145 /** Data associated with socket messages. */ 146 struct mlx5_flow_dump_req { 147 uint32_t port_id; /**< There are plans in DPDK to extend port_id. */ 148 uint64_t flow_id; 149 } __rte_packed; 150 151 struct mlx5_flow_dump_ack { 152 int rc; /**< Return code. */ 153 }; 154 155 /** Key string for IPC. */ 156 #define MLX5_MP_NAME "net_mlx5_mp" 157 158 /** Initialize a multi-process ID. */ 159 static inline void 160 mlx5_mp_id_init(struct mlx5_mp_id *mp_id, uint16_t port_id) 161 { 162 mp_id->port_id = port_id; 163 strlcpy(mp_id->name, MLX5_MP_NAME, RTE_MP_MAX_NAME_LEN); 164 } 165 166 LIST_HEAD(mlx5_dev_list, mlx5_dev_ctx_shared); 167 168 /* Shared data between primary and secondary processes. */ 169 struct mlx5_shared_data { 170 rte_spinlock_t lock; 171 /* Global spinlock for primary and secondary processes. */ 172 int init_done; /* Whether primary has done initialization. */ 173 unsigned int secondary_cnt; /* Number of secondary processes init'd. */ 174 struct mlx5_dev_list mem_event_cb_list; 175 rte_rwlock_t mem_event_rwlock; 176 }; 177 178 /* Per-process data structure, not visible to other processes. */ 179 struct mlx5_local_data { 180 int init_done; /* Whether a secondary has done initialization. */ 181 }; 182 183 extern struct mlx5_shared_data *mlx5_shared_data; 184 185 /* Dev ops structs */ 186 extern const struct eth_dev_ops mlx5_dev_ops; 187 extern const struct eth_dev_ops mlx5_dev_sec_ops; 188 extern const struct eth_dev_ops mlx5_dev_ops_isolate; 189 190 struct mlx5_counter_ctrl { 191 /* Name of the counter. */ 192 char dpdk_name[RTE_ETH_XSTATS_NAME_SIZE]; 193 /* Name of the counter on the device table. */ 194 char ctr_name[RTE_ETH_XSTATS_NAME_SIZE]; 195 uint32_t dev:1; /**< Nonzero for dev counters. */ 196 }; 197 198 struct mlx5_xstats_ctrl { 199 /* Number of device stats. */ 200 uint16_t stats_n; 201 /* Number of device stats identified by PMD. */ 202 uint16_t mlx5_stats_n; 203 /* Index in the device counters table. */ 204 uint16_t dev_table_idx[MLX5_MAX_XSTATS]; 205 uint64_t base[MLX5_MAX_XSTATS]; 206 uint64_t xstats[MLX5_MAX_XSTATS]; 207 uint64_t hw_stats[MLX5_MAX_XSTATS]; 208 struct mlx5_counter_ctrl info[MLX5_MAX_XSTATS]; 209 }; 210 211 struct mlx5_stats_ctrl { 212 /* Base for imissed counter. */ 213 uint64_t imissed_base; 214 uint64_t imissed; 215 }; 216 217 /* Default PMD specific parameter value. */ 218 #define MLX5_ARG_UNSET (-1) 219 220 #define MLX5_LRO_SUPPORTED(dev) \ 221 (((struct mlx5_priv *)((dev)->data->dev_private))->config.lro.supported) 222 223 /* Maximal size of coalesced segment for LRO is set in chunks of 256 Bytes. */ 224 #define MLX5_LRO_SEG_CHUNK_SIZE 256u 225 226 /* Maximal size of aggregated LRO packet. */ 227 #define MLX5_MAX_LRO_SIZE (UINT8_MAX * MLX5_LRO_SEG_CHUNK_SIZE) 228 229 /* Maximal number of segments to split. */ 230 #define MLX5_MAX_RXQ_NSEG (1u << MLX5_MAX_LOG_RQ_SEGS) 231 232 /* LRO configurations structure. */ 233 struct mlx5_lro_config { 234 uint32_t supported:1; /* Whether LRO is supported. */ 235 uint32_t timeout; /* User configuration. */ 236 }; 237 238 /* 239 * Device configuration structure. 240 * 241 * Merged configuration from: 242 * 243 * - Device capabilities, 244 * - User device parameters disabled features. 245 */ 246 struct mlx5_dev_config { 247 unsigned int hw_csum:1; /* Checksum offload is supported. */ 248 unsigned int hw_vlan_strip:1; /* VLAN stripping is supported. */ 249 unsigned int hw_vlan_insert:1; /* VLAN insertion in WQE is supported. */ 250 unsigned int hw_fcs_strip:1; /* FCS stripping is supported. */ 251 unsigned int hw_padding:1; /* End alignment padding is supported. */ 252 unsigned int vf:1; /* This is a VF. */ 253 unsigned int sf:1; /* This is a SF. */ 254 unsigned int tunnel_en:3; 255 /* Whether tunnel stateless offloads are supported. */ 256 unsigned int mpls_en:1; /* MPLS over GRE/UDP is enabled. */ 257 unsigned int cqe_comp:1; /* CQE compression is enabled. */ 258 unsigned int cqe_comp_fmt:3; /* CQE compression format. */ 259 unsigned int tso:1; /* Whether TSO is supported. */ 260 unsigned int rx_vec_en:1; /* Rx vector is enabled. */ 261 unsigned int mr_ext_memseg_en:1; 262 /* Whether memseg should be extended for MR creation. */ 263 unsigned int l3_vxlan_en:1; /* Enable L3 VXLAN flow creation. */ 264 unsigned int vf_nl_en:1; /* Enable Netlink requests in VF mode. */ 265 unsigned int dv_esw_en:1; /* Enable E-Switch DV flow. */ 266 unsigned int dv_flow_en:1; /* Enable DV flow. */ 267 unsigned int dv_xmeta_en:2; /* Enable extensive flow metadata. */ 268 unsigned int lacp_by_user:1; 269 /* Enable user to manage LACP traffic. */ 270 unsigned int swp:3; /* Tx generic tunnel checksum and TSO offload. */ 271 unsigned int devx:1; /* Whether devx interface is available or not. */ 272 unsigned int dest_tir:1; /* Whether advanced DR API is available. */ 273 unsigned int reclaim_mode:2; /* Memory reclaim mode. */ 274 unsigned int rt_timestamp:1; /* realtime timestamp format. */ 275 unsigned int sys_mem_en:1; /* The default memory allocator. */ 276 unsigned int decap_en:1; /* Whether decap will be used or not. */ 277 unsigned int dv_miss_info:1; /* restore packet after partial hw miss */ 278 unsigned int allow_duplicate_pattern:1; 279 /* Allow/Prevent the duplicate rules pattern. */ 280 unsigned int mr_mempool_reg_en:1; 281 /* Allow/prevent implicit mempool memory registration. */ 282 struct { 283 unsigned int enabled:1; /* Whether MPRQ is enabled. */ 284 unsigned int stride_num_n; /* Number of strides. */ 285 unsigned int stride_size_n; /* Size of a stride. */ 286 unsigned int min_stride_size_n; /* Min size of a stride. */ 287 unsigned int max_stride_size_n; /* Max size of a stride. */ 288 unsigned int max_memcpy_len; 289 /* Maximum packet size to memcpy Rx packets. */ 290 unsigned int min_rxqs_num; 291 /* Rx queue count threshold to enable MPRQ. */ 292 } mprq; /* Configurations for Multi-Packet RQ. */ 293 int mps; /* Multi-packet send supported mode. */ 294 int dbnc; /* Skip doorbell register write barrier. */ 295 unsigned int flow_prio; /* Number of flow priorities. */ 296 enum modify_reg flow_mreg_c[MLX5_MREG_C_NUM]; 297 /* Availibility of mreg_c's. */ 298 unsigned int tso_max_payload_sz; /* Maximum TCP payload for TSO. */ 299 unsigned int ind_table_max_size; /* Maximum indirection table size. */ 300 unsigned int max_dump_files_num; /* Maximum dump files per queue. */ 301 unsigned int log_hp_size; /* Single hairpin queue data size in total. */ 302 int txqs_inline; /* Queue number threshold for inlining. */ 303 int txq_inline_min; /* Minimal amount of data bytes to inline. */ 304 int txq_inline_max; /* Max packet size for inlining with SEND. */ 305 int txq_inline_mpw; /* Max packet size for inlining with eMPW. */ 306 int tx_pp; /* Timestamp scheduling granularity in nanoseconds. */ 307 int tx_skew; /* Tx scheduling skew between WQE and data on wire. */ 308 struct mlx5_hca_attr hca_attr; /* HCA attributes. */ 309 struct mlx5_lro_config lro; /* LRO configuration. */ 310 }; 311 312 313 /* Structure for VF VLAN workaround. */ 314 struct mlx5_vf_vlan { 315 uint32_t tag:12; 316 uint32_t created:1; 317 }; 318 319 /* Flow drop context necessary due to Verbs API. */ 320 struct mlx5_drop { 321 struct mlx5_hrxq *hrxq; /* Hash Rx queue queue. */ 322 struct mlx5_rxq_obj *rxq; /* Rx queue object. */ 323 }; 324 325 /* Loopback dummy queue resources required due to Verbs API. */ 326 struct mlx5_lb_ctx { 327 struct ibv_qp *qp; /* QP object. */ 328 void *ibv_cq; /* Completion queue. */ 329 uint16_t refcnt; /* Reference count for representors. */ 330 }; 331 332 #define MLX5_COUNTERS_PER_POOL 512 333 #define MLX5_MAX_PENDING_QUERIES 4 334 #define MLX5_CNT_CONTAINER_RESIZE 64 335 #define MLX5_CNT_SHARED_OFFSET 0x80000000 336 #define IS_BATCH_CNT(cnt) (((cnt) & (MLX5_CNT_SHARED_OFFSET - 1)) >= \ 337 MLX5_CNT_BATCH_OFFSET) 338 #define MLX5_CNT_SIZE (sizeof(struct mlx5_flow_counter)) 339 #define MLX5_AGE_SIZE (sizeof(struct mlx5_age_param)) 340 341 #define MLX5_CNT_LEN(pool) \ 342 (MLX5_CNT_SIZE + \ 343 ((pool)->is_aged ? MLX5_AGE_SIZE : 0)) 344 #define MLX5_POOL_GET_CNT(pool, index) \ 345 ((struct mlx5_flow_counter *) \ 346 ((uint8_t *)((pool) + 1) + (index) * (MLX5_CNT_LEN(pool)))) 347 #define MLX5_CNT_ARRAY_IDX(pool, cnt) \ 348 ((int)(((uint8_t *)(cnt) - (uint8_t *)((pool) + 1)) / \ 349 MLX5_CNT_LEN(pool))) 350 /* 351 * The pool index and offset of counter in the pool array makes up the 352 * counter index. In case the counter is from pool 0 and offset 0, it 353 * should plus 1 to avoid index 0, since 0 means invalid counter index 354 * currently. 355 */ 356 #define MLX5_MAKE_CNT_IDX(pi, offset) \ 357 ((pi) * MLX5_COUNTERS_PER_POOL + (offset) + 1) 358 #define MLX5_CNT_TO_AGE(cnt) \ 359 ((struct mlx5_age_param *)((cnt) + 1)) 360 /* 361 * The maximum single counter is 0x800000 as MLX5_CNT_BATCH_OFFSET 362 * defines. The pool size is 512, pool index should never reach 363 * INT16_MAX. 364 */ 365 #define POOL_IDX_INVALID UINT16_MAX 366 367 /* Age status. */ 368 enum { 369 AGE_FREE, /* Initialized state. */ 370 AGE_CANDIDATE, /* Counter assigned to flows. */ 371 AGE_TMOUT, /* Timeout, wait for rte_flow_get_aged_flows and destroy. */ 372 }; 373 374 enum mlx5_counter_type { 375 MLX5_COUNTER_TYPE_ORIGIN, 376 MLX5_COUNTER_TYPE_AGE, 377 MLX5_COUNTER_TYPE_MAX, 378 }; 379 380 /* Counter age parameter. */ 381 struct mlx5_age_param { 382 uint16_t state; /**< Age state (atomically accessed). */ 383 uint16_t port_id; /**< Port id of the counter. */ 384 uint32_t timeout:24; /**< Aging timeout in seconds. */ 385 uint32_t sec_since_last_hit; 386 /**< Time in seconds since last hit (atomically accessed). */ 387 void *context; /**< Flow counter age context. */ 388 }; 389 390 struct flow_counter_stats { 391 uint64_t hits; 392 uint64_t bytes; 393 }; 394 395 /* Shared counters information for counters. */ 396 struct mlx5_flow_counter_shared { 397 union { 398 uint32_t refcnt; /* Only for shared action management. */ 399 uint32_t id; /* User counter ID for legacy sharing. */ 400 }; 401 }; 402 403 struct mlx5_flow_counter_pool; 404 /* Generic counters information. */ 405 struct mlx5_flow_counter { 406 union { 407 /* 408 * User-defined counter shared info is only used during 409 * counter active time. And aging counter sharing is not 410 * supported, so active shared counter will not be chained 411 * to the aging list. For shared counter, only when it is 412 * released, the TAILQ entry memory will be used, at that 413 * time, shared memory is not used anymore. 414 * 415 * Similarly to none-batch counter dcs, since it doesn't 416 * support aging, while counter is allocated, the entry 417 * memory is not used anymore. In this case, as bytes 418 * memory is used only when counter is allocated, and 419 * entry memory is used only when counter is free. The 420 * dcs pointer can be saved to these two different place 421 * at different stage. It will eliminate the individual 422 * counter extend struct. 423 */ 424 TAILQ_ENTRY(mlx5_flow_counter) next; 425 /**< Pointer to the next flow counter structure. */ 426 struct { 427 struct mlx5_flow_counter_shared shared_info; 428 /**< Shared counter information. */ 429 void *dcs_when_active; 430 /* 431 * For non-batch mode, the dcs will be saved 432 * here when the counter is free. 433 */ 434 }; 435 }; 436 union { 437 uint64_t hits; /**< Reset value of hits packets. */ 438 struct mlx5_flow_counter_pool *pool; /**< Counter pool. */ 439 }; 440 union { 441 uint64_t bytes; /**< Reset value of bytes. */ 442 void *dcs_when_free; 443 /* 444 * For non-batch mode, the dcs will be saved here 445 * when the counter is free. 446 */ 447 }; 448 void *action; /**< Pointer to the dv action. */ 449 }; 450 451 TAILQ_HEAD(mlx5_counters, mlx5_flow_counter); 452 453 /* Generic counter pool structure - query is in pool resolution. */ 454 struct mlx5_flow_counter_pool { 455 TAILQ_ENTRY(mlx5_flow_counter_pool) next; 456 struct mlx5_counters counters[2]; /* Free counter list. */ 457 struct mlx5_devx_obj *min_dcs; 458 /* The devx object of the minimum counter ID. */ 459 uint64_t time_of_last_age_check; 460 /* System time (from rte_rdtsc()) read in the last aging check. */ 461 uint32_t index:30; /* Pool index in container. */ 462 uint32_t is_aged:1; /* Pool with aging counter. */ 463 volatile uint32_t query_gen:1; /* Query round. */ 464 rte_spinlock_t sl; /* The pool lock. */ 465 rte_spinlock_t csl; /* The pool counter free list lock. */ 466 struct mlx5_counter_stats_raw *raw; 467 struct mlx5_counter_stats_raw *raw_hw; 468 /* The raw on HW working. */ 469 }; 470 471 /* Memory management structure for group of counter statistics raws. */ 472 struct mlx5_counter_stats_mem_mng { 473 LIST_ENTRY(mlx5_counter_stats_mem_mng) next; 474 struct mlx5_counter_stats_raw *raws; 475 struct mlx5_devx_obj *dm; 476 void *umem; 477 }; 478 479 /* Raw memory structure for the counter statistics values of a pool. */ 480 struct mlx5_counter_stats_raw { 481 LIST_ENTRY(mlx5_counter_stats_raw) next; 482 struct mlx5_counter_stats_mem_mng *mem_mng; 483 volatile struct flow_counter_stats *data; 484 }; 485 486 TAILQ_HEAD(mlx5_counter_pools, mlx5_flow_counter_pool); 487 488 /* Counter global management structure. */ 489 struct mlx5_flow_counter_mng { 490 volatile uint16_t n_valid; /* Number of valid pools. */ 491 uint16_t n; /* Number of pools. */ 492 uint16_t last_pool_idx; /* Last used pool index */ 493 int min_id; /* The minimum counter ID in the pools. */ 494 int max_id; /* The maximum counter ID in the pools. */ 495 rte_spinlock_t pool_update_sl; /* The pool update lock. */ 496 rte_spinlock_t csl[MLX5_COUNTER_TYPE_MAX]; 497 /* The counter free list lock. */ 498 struct mlx5_counters counters[MLX5_COUNTER_TYPE_MAX]; 499 /* Free counter list. */ 500 struct mlx5_flow_counter_pool **pools; /* Counter pool array. */ 501 struct mlx5_counter_stats_mem_mng *mem_mng; 502 /* Hold the memory management for the next allocated pools raws. */ 503 struct mlx5_counters flow_counters; /* Legacy flow counter list. */ 504 uint8_t pending_queries; 505 uint16_t pool_index; 506 uint8_t query_thread_on; 507 bool relaxed_ordering_read; 508 bool relaxed_ordering_write; 509 bool counter_fallback; /* Use counter fallback management. */ 510 LIST_HEAD(mem_mngs, mlx5_counter_stats_mem_mng) mem_mngs; 511 LIST_HEAD(stat_raws, mlx5_counter_stats_raw) free_stat_raws; 512 }; 513 514 /* ASO structures. */ 515 #define MLX5_ASO_QUEUE_LOG_DESC 10 516 517 struct mlx5_aso_cq { 518 uint16_t log_desc_n; 519 uint32_t cq_ci:24; 520 struct mlx5_devx_cq cq_obj; 521 uint64_t errors; 522 }; 523 524 struct mlx5_aso_sq_elem { 525 union { 526 struct { 527 struct mlx5_aso_age_pool *pool; 528 uint16_t burst_size; 529 }; 530 struct mlx5_aso_mtr *mtr; 531 struct { 532 struct mlx5_aso_ct_action *ct; 533 char *query_data; 534 }; 535 }; 536 }; 537 538 struct mlx5_aso_sq { 539 uint16_t log_desc_n; 540 rte_spinlock_t sqsl; 541 struct mlx5_aso_cq cq; 542 struct mlx5_devx_sq sq_obj; 543 volatile uint64_t *uar_addr; 544 struct mlx5_pmd_mr mr; 545 uint16_t pi; 546 uint32_t head; 547 uint32_t tail; 548 uint32_t sqn; 549 struct mlx5_aso_sq_elem elts[1 << MLX5_ASO_QUEUE_LOG_DESC]; 550 uint16_t next; /* Pool index of the next pool to query. */ 551 }; 552 553 struct mlx5_aso_age_action { 554 LIST_ENTRY(mlx5_aso_age_action) next; 555 void *dr_action; 556 uint32_t refcnt; 557 /* Following fields relevant only when action is active. */ 558 uint16_t offset; /* Offset of ASO Flow Hit flag in DevX object. */ 559 struct mlx5_age_param age_params; 560 }; 561 562 #define MLX5_ASO_AGE_ACTIONS_PER_POOL 512 563 564 struct mlx5_aso_age_pool { 565 struct mlx5_devx_obj *flow_hit_aso_obj; 566 uint16_t index; /* Pool index in pools array. */ 567 uint64_t time_of_last_age_check; /* In seconds. */ 568 struct mlx5_aso_age_action actions[MLX5_ASO_AGE_ACTIONS_PER_POOL]; 569 }; 570 571 LIST_HEAD(aso_age_list, mlx5_aso_age_action); 572 573 struct mlx5_aso_age_mng { 574 struct mlx5_aso_age_pool **pools; 575 uint16_t n; /* Total number of pools. */ 576 uint16_t next; /* Number of pools in use, index of next free pool. */ 577 rte_spinlock_t resize_sl; /* Lock for resize objects. */ 578 rte_spinlock_t free_sl; /* Lock for free list access. */ 579 struct aso_age_list free; /* Free age actions list - ready to use. */ 580 struct mlx5_aso_sq aso_sq; /* ASO queue objects. */ 581 }; 582 583 /* Management structure for geneve tlv option */ 584 struct mlx5_geneve_tlv_option_resource { 585 struct mlx5_devx_obj *obj; /* Pointer to the geneve tlv opt object. */ 586 rte_be16_t option_class; /* geneve tlv opt class.*/ 587 uint8_t option_type; /* geneve tlv opt type.*/ 588 uint8_t length; /* geneve tlv opt length. */ 589 uint32_t refcnt; /* geneve tlv object reference counter */ 590 }; 591 592 593 #define MLX5_AGE_EVENT_NEW 1 594 #define MLX5_AGE_TRIGGER 2 595 #define MLX5_AGE_SET(age_info, BIT) \ 596 ((age_info)->flags |= (1 << (BIT))) 597 #define MLX5_AGE_UNSET(age_info, BIT) \ 598 ((age_info)->flags &= ~(1 << (BIT))) 599 #define MLX5_AGE_GET(age_info, BIT) \ 600 ((age_info)->flags & (1 << (BIT))) 601 #define GET_PORT_AGE_INFO(priv) \ 602 (&((priv)->sh->port[(priv)->dev_port - 1].age_info)) 603 /* Current time in seconds. */ 604 #define MLX5_CURR_TIME_SEC (rte_rdtsc() / rte_get_tsc_hz()) 605 606 /* Aging information for per port. */ 607 struct mlx5_age_info { 608 uint8_t flags; /* Indicate if is new event or need to be triggered. */ 609 struct mlx5_counters aged_counters; /* Aged counter list. */ 610 struct aso_age_list aged_aso; /* Aged ASO actions list. */ 611 rte_spinlock_t aged_sl; /* Aged flow list lock. */ 612 }; 613 614 /* Per port data of shared IB device. */ 615 struct mlx5_dev_shared_port { 616 uint32_t ih_port_id; 617 uint32_t devx_ih_port_id; 618 /* 619 * Interrupt handler port_id. Used by shared interrupt 620 * handler to find the corresponding rte_eth device 621 * by IB port index. If value is equal or greater 622 * RTE_MAX_ETHPORTS it means there is no subhandler 623 * installed for specified IB port index. 624 */ 625 struct mlx5_age_info age_info; 626 /* Aging information for per port. */ 627 }; 628 629 /* 630 * Max number of actions per DV flow. 631 * See CREATE_FLOW_MAX_FLOW_ACTIONS_SUPPORTED 632 * in rdma-core file providers/mlx5/verbs.c. 633 */ 634 #define MLX5_DV_MAX_NUMBER_OF_ACTIONS 8 635 636 /* ASO flow meter structures */ 637 /* Modify this value if enum rte_mtr_color changes. */ 638 #define RTE_MTR_DROPPED RTE_COLORS 639 /* Yellow is now supported. */ 640 #define MLX5_MTR_RTE_COLORS (RTE_COLOR_YELLOW + 1) 641 /* table_id 22 bits in mlx5_flow_tbl_key so limit policy number. */ 642 #define MLX5_MAX_SUB_POLICY_TBL_NUM 0x3FFFFF 643 #define MLX5_INVALID_POLICY_ID UINT32_MAX 644 /* Suffix table_id on MLX5_FLOW_TABLE_LEVEL_METER. */ 645 #define MLX5_MTR_TABLE_ID_SUFFIX 1 646 /* Drop table_id on MLX5_FLOW_TABLE_LEVEL_METER. */ 647 #define MLX5_MTR_TABLE_ID_DROP 2 648 /* Priority of the meter policy matcher. */ 649 #define MLX5_MTR_POLICY_MATCHER_PRIO 0 650 /* Default policy. */ 651 #define MLX5_MTR_POLICY_MODE_DEF 1 652 /* Only green color valid. */ 653 #define MLX5_MTR_POLICY_MODE_OG 2 654 /* Only yellow color valid. */ 655 #define MLX5_MTR_POLICY_MODE_OY 3 656 657 enum mlx5_meter_domain { 658 MLX5_MTR_DOMAIN_INGRESS, 659 MLX5_MTR_DOMAIN_EGRESS, 660 MLX5_MTR_DOMAIN_TRANSFER, 661 MLX5_MTR_DOMAIN_MAX, 662 }; 663 #define MLX5_MTR_DOMAIN_INGRESS_BIT (1 << MLX5_MTR_DOMAIN_INGRESS) 664 #define MLX5_MTR_DOMAIN_EGRESS_BIT (1 << MLX5_MTR_DOMAIN_EGRESS) 665 #define MLX5_MTR_DOMAIN_TRANSFER_BIT (1 << MLX5_MTR_DOMAIN_TRANSFER) 666 #define MLX5_MTR_ALL_DOMAIN_BIT (MLX5_MTR_DOMAIN_INGRESS_BIT | \ 667 MLX5_MTR_DOMAIN_EGRESS_BIT | \ 668 MLX5_MTR_DOMAIN_TRANSFER_BIT) 669 670 /* The color tag rule structure. */ 671 struct mlx5_sub_policy_color_rule { 672 void *rule; 673 /* The color rule. */ 674 struct mlx5_flow_dv_matcher *matcher; 675 /* The color matcher. */ 676 TAILQ_ENTRY(mlx5_sub_policy_color_rule) next_port; 677 /**< Pointer to the next color rule structure. */ 678 int32_t src_port; 679 /* On which src port this rule applied. */ 680 }; 681 682 TAILQ_HEAD(mlx5_sub_policy_color_rules, mlx5_sub_policy_color_rule); 683 684 /* 685 * Meter sub-policy structure. 686 * Each RSS TIR in meter policy need its own sub-policy resource. 687 */ 688 struct mlx5_flow_meter_sub_policy { 689 uint32_t main_policy_id:1; 690 /* Main policy id is same as this sub_policy id. */ 691 uint32_t idx:31; 692 /* Index to sub_policy ipool entity. */ 693 void *main_policy; 694 /* Point to struct mlx5_flow_meter_policy. */ 695 struct mlx5_flow_tbl_resource *tbl_rsc; 696 /* The sub-policy table resource. */ 697 uint32_t rix_hrxq[MLX5_MTR_RTE_COLORS]; 698 /* Index to TIR resource. */ 699 struct mlx5_flow_tbl_resource *jump_tbl[MLX5_MTR_RTE_COLORS]; 700 /* Meter jump/drop table. */ 701 struct mlx5_sub_policy_color_rules color_rules[RTE_COLORS]; 702 /* List for the color rules. */ 703 }; 704 705 struct mlx5_meter_policy_acts { 706 uint8_t actions_n; 707 /* Number of actions. */ 708 void *dv_actions[MLX5_DV_MAX_NUMBER_OF_ACTIONS]; 709 /* Action list. */ 710 }; 711 712 struct mlx5_meter_policy_action_container { 713 uint32_t rix_mark; 714 /* Index to the mark action. */ 715 struct mlx5_flow_dv_modify_hdr_resource *modify_hdr; 716 /* Pointer to modify header resource in cache. */ 717 uint8_t fate_action; 718 /* Fate action type. */ 719 union { 720 struct rte_flow_action *rss; 721 /* Rss action configuration. */ 722 uint32_t rix_port_id_action; 723 /* Index to port ID action resource. */ 724 void *dr_jump_action[MLX5_MTR_DOMAIN_MAX]; 725 /* Jump/drop action per color. */ 726 uint16_t queue; 727 /* Queue action configuration. */ 728 struct { 729 uint32_t next_mtr_id; 730 /* The next meter id. */ 731 void *next_sub_policy; 732 /* Next meter's sub-policy. */ 733 }; 734 }; 735 }; 736 737 /* Flow meter policy parameter structure. */ 738 struct mlx5_flow_meter_policy { 739 struct rte_eth_dev *dev; 740 /* The port dev on which policy is created. */ 741 uint32_t is_rss:1; 742 /* Is RSS policy table. */ 743 uint32_t ingress:1; 744 /* Rule applies to ingress domain. */ 745 uint32_t egress:1; 746 /* Rule applies to egress domain. */ 747 uint32_t transfer:1; 748 /* Rule applies to transfer domain. */ 749 uint32_t is_queue:1; 750 /* Is queue action in policy table. */ 751 uint32_t is_hierarchy:1; 752 /* Is meter action in policy table. */ 753 uint32_t skip_y:1; 754 /* If yellow color policy is skipped. */ 755 uint32_t skip_g:1; 756 /* If green color policy is skipped. */ 757 rte_spinlock_t sl; 758 uint32_t ref_cnt; 759 /* Use count. */ 760 struct mlx5_meter_policy_action_container act_cnt[MLX5_MTR_RTE_COLORS]; 761 /* Policy actions container. */ 762 void *dr_drop_action[MLX5_MTR_DOMAIN_MAX]; 763 /* drop action for red color. */ 764 uint16_t sub_policy_num; 765 /* Count sub policy tables, 3 bits per domain. */ 766 struct mlx5_flow_meter_sub_policy **sub_policys[MLX5_MTR_DOMAIN_MAX]; 767 /* Sub policy table array must be the end of struct. */ 768 }; 769 770 /* The maximum sub policy is relate to struct mlx5_rss_hash_fields[]. */ 771 #define MLX5_MTR_RSS_MAX_SUB_POLICY 7 772 #define MLX5_MTR_SUB_POLICY_NUM_SHIFT 3 773 #define MLX5_MTR_SUB_POLICY_NUM_MASK 0x7 774 #define MLX5_MTRS_DEFAULT_RULE_PRIORITY 0xFFFF 775 #define MLX5_MTR_CHAIN_MAX_NUM 8 776 777 /* Flow meter default policy parameter structure. 778 * Policy index 0 is reserved by default policy table. 779 * Action per color as below: 780 * green - do nothing, yellow - do nothing, red - drop 781 */ 782 struct mlx5_flow_meter_def_policy { 783 struct mlx5_flow_meter_sub_policy sub_policy; 784 /* Policy rules jump to other tables. */ 785 void *dr_jump_action[RTE_COLORS]; 786 /* Jump action per color. */ 787 }; 788 789 /* Meter parameter structure. */ 790 struct mlx5_flow_meter_info { 791 uint32_t meter_id; 792 /**< Meter id. */ 793 uint32_t policy_id; 794 /* Policy id, the first sub_policy idx. */ 795 struct mlx5_flow_meter_profile *profile; 796 /**< Meter profile parameters. */ 797 rte_spinlock_t sl; /**< Meter action spinlock. */ 798 /** Set of stats counters to be enabled. 799 * @see enum rte_mtr_stats_type 800 */ 801 uint32_t bytes_dropped:1; 802 /** Set bytes dropped stats to be enabled. */ 803 uint32_t pkts_dropped:1; 804 /** Set packets dropped stats to be enabled. */ 805 uint32_t active_state:1; 806 /**< Meter hw active state. */ 807 uint32_t shared:1; 808 /**< Meter shared or not. */ 809 uint32_t is_enable:1; 810 /**< Meter disable/enable state. */ 811 uint32_t ingress:1; 812 /**< Rule applies to egress traffic. */ 813 uint32_t egress:1; 814 /** 815 * Instead of simply matching the properties of traffic as it would 816 * appear on a given DPDK port ID, enabling this attribute transfers 817 * a flow rule to the lowest possible level of any device endpoints 818 * found in the pattern. 819 * 820 * When supported, this effectively enables an application to 821 * re-route traffic not necessarily intended for it (e.g. coming 822 * from or addressed to different physical ports, VFs or 823 * applications) at the device level. 824 * 825 * It complements the behavior of some pattern items such as 826 * RTE_FLOW_ITEM_TYPE_PHY_PORT and is meaningless without them. 827 * 828 * When transferring flow rules, ingress and egress attributes keep 829 * their original meaning, as if processing traffic emitted or 830 * received by the application. 831 */ 832 uint32_t transfer:1; 833 uint32_t def_policy:1; 834 /* Meter points to default policy. */ 835 void *drop_rule[MLX5_MTR_DOMAIN_MAX]; 836 /* Meter drop rule in drop table. */ 837 uint32_t drop_cnt; 838 /**< Color counter for drop. */ 839 uint32_t ref_cnt; 840 /**< Use count. */ 841 struct mlx5_indexed_pool *flow_ipool; 842 /**< Index pool for flow id. */ 843 void *meter_action; 844 /**< Flow meter action. */ 845 }; 846 847 /* PPS(packets per second) map to BPS(Bytes per second). 848 * HW treat packet as 128bytes in PPS mode 849 */ 850 #define MLX5_MTRS_PPS_MAP_BPS_SHIFT 7 851 852 /* RFC2697 parameter structure. */ 853 struct mlx5_flow_meter_srtcm_rfc2697_prm { 854 rte_be32_t cbs_cir; 855 /* 856 * bit 24-28: cbs_exponent, bit 16-23 cbs_mantissa, 857 * bit 8-12: cir_exponent, bit 0-7 cir_mantissa. 858 */ 859 rte_be32_t ebs_eir; 860 /* 861 * bit 24-28: ebs_exponent, bit 16-23 ebs_mantissa, 862 * bit 8-12: eir_exponent, bit 0-7 eir_mantissa. 863 */ 864 }; 865 866 /* Flow meter profile structure. */ 867 struct mlx5_flow_meter_profile { 868 TAILQ_ENTRY(mlx5_flow_meter_profile) next; 869 /**< Pointer to the next flow meter structure. */ 870 uint32_t id; /**< Profile id. */ 871 struct rte_mtr_meter_profile profile; /**< Profile detail. */ 872 union { 873 struct mlx5_flow_meter_srtcm_rfc2697_prm srtcm_prm; 874 /**< srtcm_rfc2697 struct. */ 875 }; 876 uint32_t ref_cnt; /**< Use count. */ 877 uint32_t g_support:1; /**< If G color will be generated. */ 878 uint32_t y_support:1; /**< If Y color will be generated. */ 879 }; 880 881 /* 2 meters in each ASO cache line */ 882 #define MLX5_MTRS_CONTAINER_RESIZE 64 883 /* 884 * The pool index and offset of meter in the pool array makes up the 885 * meter index. In case the meter is from pool 0 and offset 0, it 886 * should plus 1 to avoid index 0, since 0 means invalid meter index 887 * currently. 888 */ 889 #define MLX5_MAKE_MTR_IDX(pi, offset) \ 890 ((pi) * MLX5_ASO_MTRS_PER_POOL + (offset) + 1) 891 892 /*aso flow meter state*/ 893 enum mlx5_aso_mtr_state { 894 ASO_METER_FREE, /* In free list. */ 895 ASO_METER_WAIT, /* ACCESS_ASO WQE in progress. */ 896 ASO_METER_READY, /* CQE received. */ 897 }; 898 899 /* Generic aso_flow_meter information. */ 900 struct mlx5_aso_mtr { 901 LIST_ENTRY(mlx5_aso_mtr) next; 902 struct mlx5_flow_meter_info fm; 903 /**< Pointer to the next aso flow meter structure. */ 904 uint8_t state; /**< ASO flow meter state. */ 905 uint8_t offset; 906 }; 907 908 /* Generic aso_flow_meter pool structure. */ 909 struct mlx5_aso_mtr_pool { 910 struct mlx5_aso_mtr mtrs[MLX5_ASO_MTRS_PER_POOL]; 911 /*Must be the first in pool*/ 912 struct mlx5_devx_obj *devx_obj; 913 /* The devx object of the minimum aso flow meter ID. */ 914 uint32_t index; /* Pool index in management structure. */ 915 }; 916 917 LIST_HEAD(aso_meter_list, mlx5_aso_mtr); 918 /* Pools management structure for ASO flow meter pools. */ 919 struct mlx5_aso_mtr_pools_mng { 920 volatile uint16_t n_valid; /* Number of valid pools. */ 921 uint16_t n; /* Number of pools. */ 922 rte_spinlock_t mtrsl; /* The ASO flow meter free list lock. */ 923 struct aso_meter_list meters; /* Free ASO flow meter list. */ 924 struct mlx5_aso_sq sq; /*SQ using by ASO flow meter. */ 925 struct mlx5_aso_mtr_pool **pools; /* ASO flow meter pool array. */ 926 }; 927 928 /* Meter management structure for global flow meter resource. */ 929 struct mlx5_flow_mtr_mng { 930 struct mlx5_aso_mtr_pools_mng pools_mng; 931 /* Pools management structure for ASO flow meter pools. */ 932 struct mlx5_flow_meter_def_policy *def_policy[MLX5_MTR_DOMAIN_MAX]; 933 /* Default policy table. */ 934 uint32_t def_policy_id; 935 /* Default policy id. */ 936 uint32_t def_policy_ref_cnt; 937 /** def_policy meter use count. */ 938 struct mlx5_flow_tbl_resource *drop_tbl[MLX5_MTR_DOMAIN_MAX]; 939 /* Meter drop table. */ 940 struct mlx5_flow_dv_matcher * 941 drop_matcher[MLX5_MTR_DOMAIN_MAX][MLX5_REG_BITS]; 942 /* Matcher meter in drop table. */ 943 struct mlx5_flow_dv_matcher *def_matcher[MLX5_MTR_DOMAIN_MAX]; 944 /* Default matcher in drop table. */ 945 void *def_rule[MLX5_MTR_DOMAIN_MAX]; 946 /* Default rule in drop table. */ 947 uint8_t max_mtr_bits; 948 /* Indicate how many bits are used by meter id at the most. */ 949 uint8_t max_mtr_flow_bits; 950 /* Indicate how many bits are used by meter flow id at the most. */ 951 }; 952 953 /* Table key of the hash organization. */ 954 union mlx5_flow_tbl_key { 955 struct { 956 /* Table ID should be at the lowest address. */ 957 uint32_t level; /**< Level of the table. */ 958 uint32_t id:22; /**< ID of the table. */ 959 uint32_t dummy:1; /**< Dummy table for DV API. */ 960 uint32_t is_fdb:1; /**< 1 - FDB, 0 - NIC TX/RX. */ 961 uint32_t is_egress:1; /**< 1 - egress, 0 - ingress. */ 962 uint32_t reserved:7; /**< must be zero for comparison. */ 963 }; 964 uint64_t v64; /**< full 64bits value of key */ 965 }; 966 967 /* Table structure. */ 968 struct mlx5_flow_tbl_resource { 969 void *obj; /**< Pointer to DR table object. */ 970 uint32_t refcnt; /**< Reference counter. */ 971 }; 972 973 #define MLX5_MAX_TABLES UINT16_MAX 974 #define MLX5_HAIRPIN_TX_TABLE (UINT16_MAX - 1) 975 /* Reserve the last two tables for metadata register copy. */ 976 #define MLX5_FLOW_MREG_ACT_TABLE_GROUP (MLX5_MAX_TABLES - 1) 977 #define MLX5_FLOW_MREG_CP_TABLE_GROUP (MLX5_MAX_TABLES - 2) 978 /* Tables for metering splits should be added here. */ 979 #define MLX5_FLOW_TABLE_LEVEL_METER (MLX5_MAX_TABLES - 3) 980 #define MLX5_FLOW_TABLE_LEVEL_POLICY (MLX5_MAX_TABLES - 4) 981 #define MLX5_MAX_TABLES_EXTERNAL MLX5_FLOW_TABLE_LEVEL_POLICY 982 #define MLX5_MAX_TABLES_FDB UINT16_MAX 983 #define MLX5_FLOW_TABLE_FACTOR 10 984 985 /* ID generation structure. */ 986 struct mlx5_flow_id_pool { 987 uint32_t *free_arr; /**< Pointer to the a array of free values. */ 988 uint32_t base_index; 989 /**< The next index that can be used without any free elements. */ 990 uint32_t *curr; /**< Pointer to the index to pop. */ 991 uint32_t *last; /**< Pointer to the last element in the empty arrray. */ 992 uint32_t max_id; /**< Maximum id can be allocated from the pool. */ 993 }; 994 995 /* Tx pacing queue structure - for Clock and Rearm queues. */ 996 struct mlx5_txpp_wq { 997 /* Completion Queue related data.*/ 998 struct mlx5_devx_cq cq_obj; 999 uint32_t cq_ci:24; 1000 uint32_t arm_sn:2; 1001 /* Send Queue related data.*/ 1002 struct mlx5_devx_sq sq_obj; 1003 uint16_t sq_size; /* Number of WQEs in the queue. */ 1004 uint16_t sq_ci; /* Next WQE to execute. */ 1005 }; 1006 1007 /* Tx packet pacing internal timestamp. */ 1008 struct mlx5_txpp_ts { 1009 uint64_t ci_ts; 1010 uint64_t ts; 1011 }; 1012 1013 /* Tx packet pacing structure. */ 1014 struct mlx5_dev_txpp { 1015 pthread_mutex_t mutex; /* Pacing create/destroy mutex. */ 1016 uint32_t refcnt; /* Pacing reference counter. */ 1017 uint32_t freq; /* Timestamp frequency, Hz. */ 1018 uint32_t tick; /* Completion tick duration in nanoseconds. */ 1019 uint32_t test; /* Packet pacing test mode. */ 1020 int32_t skew; /* Scheduling skew. */ 1021 struct rte_intr_handle intr_handle; /* Periodic interrupt. */ 1022 void *echan; /* Event Channel. */ 1023 struct mlx5_txpp_wq clock_queue; /* Clock Queue. */ 1024 struct mlx5_txpp_wq rearm_queue; /* Clock Queue. */ 1025 void *pp; /* Packet pacing context. */ 1026 uint16_t pp_id; /* Packet pacing context index. */ 1027 uint16_t ts_n; /* Number of captured timestamps. */ 1028 uint16_t ts_p; /* Pointer to statisticks timestamp. */ 1029 struct mlx5_txpp_ts *tsa; /* Timestamps sliding window stats. */ 1030 struct mlx5_txpp_ts ts; /* Cached completion id/timestamp. */ 1031 uint32_t sync_lost:1; /* ci/timestamp synchronization lost. */ 1032 /* Statistics counters. */ 1033 uint64_t err_miss_int; /* Missed service interrupt. */ 1034 uint64_t err_rearm_queue; /* Rearm Queue errors. */ 1035 uint64_t err_clock_queue; /* Clock Queue errors. */ 1036 uint64_t err_ts_past; /* Timestamp in the past. */ 1037 uint64_t err_ts_future; /* Timestamp in the distant future. */ 1038 }; 1039 1040 /* Supported flex parser profile ID. */ 1041 enum mlx5_flex_parser_profile_id { 1042 MLX5_FLEX_PARSER_ECPRI_0 = 0, 1043 MLX5_FLEX_PARSER_MAX = 8, 1044 }; 1045 1046 /* Sample ID information of flex parser structure. */ 1047 struct mlx5_flex_parser_profiles { 1048 uint32_t num; /* Actual number of samples. */ 1049 uint32_t ids[8]; /* Sample IDs for this profile. */ 1050 uint8_t offset[8]; /* Bytes offset of each parser. */ 1051 void *obj; /* Flex parser node object. */ 1052 }; 1053 1054 /* Max member ports per bonding device. */ 1055 #define MLX5_BOND_MAX_PORTS 2 1056 1057 /* Bonding device information. */ 1058 struct mlx5_bond_info { 1059 int n_port; /* Number of bond member ports. */ 1060 uint32_t ifindex; 1061 char ifname[MLX5_NAMESIZE + 1]; 1062 struct { 1063 char ifname[MLX5_NAMESIZE + 1]; 1064 uint32_t ifindex; 1065 struct rte_pci_addr pci_addr; 1066 } ports[MLX5_BOND_MAX_PORTS]; 1067 }; 1068 1069 /* Number of connection tracking objects per pool: must be a power of 2. */ 1070 #define MLX5_ASO_CT_ACTIONS_PER_POOL 64 1071 1072 /* Generate incremental and unique CT index from pool and offset. */ 1073 #define MLX5_MAKE_CT_IDX(pool, offset) \ 1074 ((pool) * MLX5_ASO_CT_ACTIONS_PER_POOL + (offset) + 1) 1075 1076 /* ASO Conntrack state. */ 1077 enum mlx5_aso_ct_state { 1078 ASO_CONNTRACK_FREE, /* Inactive, in the free list. */ 1079 ASO_CONNTRACK_WAIT, /* WQE sent in the SQ. */ 1080 ASO_CONNTRACK_READY, /* CQE received w/o error. */ 1081 ASO_CONNTRACK_QUERY, /* WQE for query sent. */ 1082 ASO_CONNTRACK_MAX, /* Guard. */ 1083 }; 1084 1085 /* Generic ASO connection tracking structure. */ 1086 struct mlx5_aso_ct_action { 1087 LIST_ENTRY(mlx5_aso_ct_action) next; /* Pointer to the next ASO CT. */ 1088 void *dr_action_orig; /* General action object for original dir. */ 1089 void *dr_action_rply; /* General action object for reply dir. */ 1090 uint32_t refcnt; /* Action used count in device flows. */ 1091 uint16_t offset; /* Offset of ASO CT in DevX objects bulk. */ 1092 uint16_t peer; /* The only peer port index could also use this CT. */ 1093 enum mlx5_aso_ct_state state; /* ASO CT state. */ 1094 bool is_original; /* The direction of the DR action to be used. */ 1095 }; 1096 1097 /* CT action object state update. */ 1098 #define MLX5_ASO_CT_UPDATE_STATE(c, s) \ 1099 __atomic_store_n(&((c)->state), (s), __ATOMIC_RELAXED) 1100 1101 /* ASO connection tracking software pool definition. */ 1102 struct mlx5_aso_ct_pool { 1103 uint16_t index; /* Pool index in pools array. */ 1104 struct mlx5_devx_obj *devx_obj; 1105 /* The first devx object in the bulk, used for freeing (not yet). */ 1106 struct mlx5_aso_ct_action actions[MLX5_ASO_CT_ACTIONS_PER_POOL]; 1107 /* CT action structures bulk. */ 1108 }; 1109 1110 LIST_HEAD(aso_ct_list, mlx5_aso_ct_action); 1111 1112 /* Pools management structure for ASO connection tracking pools. */ 1113 struct mlx5_aso_ct_pools_mng { 1114 struct mlx5_aso_ct_pool **pools; 1115 uint16_t n; /* Total number of pools. */ 1116 uint16_t next; /* Number of pools in use, index of next free pool. */ 1117 rte_spinlock_t ct_sl; /* The ASO CT free list lock. */ 1118 rte_rwlock_t resize_rwl; /* The ASO CT pool resize lock. */ 1119 struct aso_ct_list free_cts; /* Free ASO CT objects list. */ 1120 struct mlx5_aso_sq aso_sq; /* ASO queue objects. */ 1121 }; 1122 1123 /* 1124 * Shared Infiniband device context for Master/Representors 1125 * which belong to same IB device with multiple IB ports. 1126 **/ 1127 struct mlx5_dev_ctx_shared { 1128 LIST_ENTRY(mlx5_dev_ctx_shared) next; 1129 uint32_t refcnt; 1130 uint32_t devx:1; /* Opened with DV. */ 1131 uint32_t flow_hit_aso_en:1; /* Flow Hit ASO is supported. */ 1132 uint32_t rq_ts_format:2; /* RQ timestamp formats supported. */ 1133 uint32_t sq_ts_format:2; /* SQ timestamp formats supported. */ 1134 uint32_t steering_format_version:4; 1135 /* Indicates the device steering logic format. */ 1136 uint32_t qp_ts_format:2; /* QP timestamp formats supported. */ 1137 uint32_t meter_aso_en:1; /* Flow Meter ASO is supported. */ 1138 uint32_t ct_aso_en:1; /* Connection Tracking ASO is supported. */ 1139 uint32_t tunnel_header_0_1:1; /* tunnel_header_0_1 is supported. */ 1140 uint32_t misc5_cap:1; /* misc5 matcher parameter is supported. */ 1141 uint32_t reclaim_mode:1; /* Reclaim memory. */ 1142 uint32_t max_port; /* Maximal IB device port index. */ 1143 struct mlx5_bond_info bond; /* Bonding information. */ 1144 void *ctx; /* Verbs/DV/DevX context. */ 1145 void *pd; /* Protection Domain. */ 1146 uint32_t pdn; /* Protection Domain number. */ 1147 uint32_t tdn; /* Transport Domain number. */ 1148 char ibdev_name[MLX5_FS_NAME_MAX]; /* SYSFS dev name. */ 1149 char ibdev_path[MLX5_FS_PATH_MAX]; /* SYSFS dev path for secondary */ 1150 struct mlx5_dev_attr device_attr; /* Device properties. */ 1151 int numa_node; /* Numa node of backing physical device. */ 1152 LIST_ENTRY(mlx5_dev_ctx_shared) mem_event_cb; 1153 /**< Called by memory event callback. */ 1154 struct mlx5_mr_share_cache share_cache; 1155 /* Packet pacing related structure. */ 1156 struct mlx5_dev_txpp txpp; 1157 /* Shared DV/DR flow data section. */ 1158 uint32_t dv_meta_mask; /* flow META metadata supported mask. */ 1159 uint32_t dv_mark_mask; /* flow MARK metadata supported mask. */ 1160 uint32_t dv_regc0_mask; /* available bits of metatada reg_c[0]. */ 1161 void *fdb_domain; /* FDB Direct Rules name space handle. */ 1162 void *rx_domain; /* RX Direct Rules name space handle. */ 1163 void *tx_domain; /* TX Direct Rules name space handle. */ 1164 #ifndef RTE_ARCH_64 1165 rte_spinlock_t uar_lock_cq; /* CQs share a common distinct UAR */ 1166 rte_spinlock_t uar_lock[MLX5_UAR_PAGE_NUM_MAX]; 1167 /* UAR same-page access control required in 32bit implementations. */ 1168 #endif 1169 struct mlx5_hlist *flow_tbls; 1170 struct mlx5_flow_tunnel_hub *tunnel_hub; 1171 /* Direct Rules tables for FDB, NIC TX+RX */ 1172 void *dr_drop_action; /* Pointer to DR drop action, any domain. */ 1173 void *pop_vlan_action; /* Pointer to DR pop VLAN action. */ 1174 struct mlx5_hlist *encaps_decaps; /* Encap/decap action hash list. */ 1175 struct mlx5_hlist *modify_cmds; 1176 struct mlx5_hlist *tag_table; 1177 struct mlx5_list *port_id_action_list; /* Port ID action list. */ 1178 struct mlx5_list *push_vlan_action_list; /* Push VLAN actions. */ 1179 struct mlx5_list *sample_action_list; /* List of sample actions. */ 1180 struct mlx5_list *dest_array_list; 1181 /* List of destination array actions. */ 1182 struct mlx5_flow_counter_mng cmng; /* Counters management structure. */ 1183 void *default_miss_action; /* Default miss action. */ 1184 struct mlx5_indexed_pool *ipool[MLX5_IPOOL_MAX]; 1185 struct mlx5_indexed_pool *mdh_ipools[MLX5_MAX_MODIFY_NUM]; 1186 /* Shared interrupt handler section. */ 1187 struct rte_intr_handle intr_handle; /* Interrupt handler for device. */ 1188 struct rte_intr_handle intr_handle_devx; /* DEVX interrupt handler. */ 1189 void *devx_comp; /* DEVX async comp obj. */ 1190 struct mlx5_devx_obj *tis; /* TIS object. */ 1191 struct mlx5_devx_obj *td; /* Transport domain. */ 1192 void *tx_uar; /* Tx/packet pacing shared UAR. */ 1193 struct mlx5_flex_parser_profiles fp[MLX5_FLEX_PARSER_MAX]; 1194 /* Flex parser profiles information. */ 1195 void *devx_rx_uar; /* DevX UAR for Rx. */ 1196 struct mlx5_aso_age_mng *aso_age_mng; 1197 /* Management data for aging mechanism using ASO Flow Hit. */ 1198 struct mlx5_geneve_tlv_option_resource *geneve_tlv_option_resource; 1199 /* Management structure for geneve tlv option */ 1200 rte_spinlock_t geneve_tlv_opt_sl; /* Lock for geneve tlv resource */ 1201 struct mlx5_flow_mtr_mng *mtrmng; 1202 /* Meter management structure. */ 1203 struct mlx5_aso_ct_pools_mng *ct_mng; 1204 /* Management data for ASO connection tracking. */ 1205 struct mlx5_lb_ctx self_lb; /* QP to enable self loopback for Devx. */ 1206 struct mlx5_dev_shared_port port[]; /* per device port data array. */ 1207 }; 1208 1209 /* 1210 * Per-process private structure. 1211 * Caution, secondary process may rebuild the struct during port start. 1212 */ 1213 struct mlx5_proc_priv { 1214 size_t uar_table_sz; 1215 /* Size of UAR register table. */ 1216 void *uar_table[]; 1217 /* Table of UAR registers for each process. */ 1218 }; 1219 1220 /* MTR profile list. */ 1221 TAILQ_HEAD(mlx5_mtr_profiles, mlx5_flow_meter_profile); 1222 /* MTR list. */ 1223 TAILQ_HEAD(mlx5_legacy_flow_meters, mlx5_legacy_flow_meter); 1224 1225 /* RSS description. */ 1226 struct mlx5_flow_rss_desc { 1227 uint32_t level; 1228 uint32_t queue_num; /**< Number of entries in @p queue. */ 1229 uint64_t types; /**< Specific RSS hash types (see ETH_RSS_*). */ 1230 uint64_t hash_fields; /* Verbs Hash fields. */ 1231 uint8_t key[MLX5_RSS_HASH_KEY_LEN]; /**< RSS hash key. */ 1232 uint32_t key_len; /**< RSS hash key len. */ 1233 uint32_t tunnel; /**< Queue in tunnel. */ 1234 uint32_t shared_rss; /**< Shared RSS index. */ 1235 struct mlx5_ind_table_obj *ind_tbl; 1236 /**< Indirection table for shared RSS hash RX queues. */ 1237 union { 1238 uint16_t *queue; /**< Destination queues. */ 1239 const uint16_t *const_q; /**< Const pointer convert. */ 1240 }; 1241 }; 1242 1243 #define MLX5_PROC_PRIV(port_id) \ 1244 ((struct mlx5_proc_priv *)rte_eth_devices[port_id].process_private) 1245 1246 /* Verbs/DevX Rx queue elements. */ 1247 struct mlx5_rxq_obj { 1248 LIST_ENTRY(mlx5_rxq_obj) next; /* Pointer to the next element. */ 1249 struct mlx5_rxq_ctrl *rxq_ctrl; /* Back pointer to parent. */ 1250 int fd; /* File descriptor for event channel */ 1251 RTE_STD_C11 1252 union { 1253 struct { 1254 void *wq; /* Work Queue. */ 1255 void *ibv_cq; /* Completion Queue. */ 1256 void *ibv_channel; 1257 }; 1258 struct mlx5_devx_obj *rq; /* DevX RQ object for hairpin. */ 1259 struct { 1260 struct mlx5_devx_rq rq_obj; /* DevX RQ object. */ 1261 struct mlx5_devx_cq cq_obj; /* DevX CQ object. */ 1262 void *devx_channel; 1263 }; 1264 }; 1265 }; 1266 1267 /* Indirection table. */ 1268 struct mlx5_ind_table_obj { 1269 LIST_ENTRY(mlx5_ind_table_obj) next; /* Pointer to the next element. */ 1270 uint32_t refcnt; /* Reference counter. */ 1271 RTE_STD_C11 1272 union { 1273 void *ind_table; /**< Indirection table. */ 1274 struct mlx5_devx_obj *rqt; /* DevX RQT object. */ 1275 }; 1276 uint32_t queues_n; /**< Number of queues in the list. */ 1277 uint16_t *queues; /**< Queue list. */ 1278 }; 1279 1280 /* Hash Rx queue. */ 1281 __extension__ 1282 struct mlx5_hrxq { 1283 struct mlx5_list_entry entry; /* List entry. */ 1284 uint32_t standalone:1; /* This object used in shared action. */ 1285 struct mlx5_ind_table_obj *ind_table; /* Indirection table. */ 1286 RTE_STD_C11 1287 union { 1288 void *qp; /* Verbs queue pair. */ 1289 struct mlx5_devx_obj *tir; /* DevX TIR object. */ 1290 }; 1291 #if defined(HAVE_IBV_FLOW_DV_SUPPORT) || !defined(HAVE_INFINIBAND_VERBS_H) 1292 void *action; /* DV QP action pointer. */ 1293 #endif 1294 uint64_t hash_fields; /* Verbs Hash fields. */ 1295 uint32_t rss_key_len; /* Hash key length in bytes. */ 1296 uint32_t idx; /* Hash Rx queue index. */ 1297 uint8_t rss_key[]; /* Hash key. */ 1298 }; 1299 1300 /* Verbs/DevX Tx queue elements. */ 1301 struct mlx5_txq_obj { 1302 LIST_ENTRY(mlx5_txq_obj) next; /* Pointer to the next element. */ 1303 struct mlx5_txq_ctrl *txq_ctrl; /* Pointer to the control queue. */ 1304 RTE_STD_C11 1305 union { 1306 struct { 1307 void *cq; /* Completion Queue. */ 1308 void *qp; /* Queue Pair. */ 1309 }; 1310 struct { 1311 struct mlx5_devx_obj *sq; 1312 /* DevX object for Sx queue. */ 1313 struct mlx5_devx_obj *tis; /* The TIS object. */ 1314 }; 1315 struct { 1316 struct rte_eth_dev *dev; 1317 struct mlx5_devx_cq cq_obj; 1318 /* DevX CQ object and its resources. */ 1319 struct mlx5_devx_sq sq_obj; 1320 /* DevX SQ object and its resources. */ 1321 }; 1322 }; 1323 }; 1324 1325 enum mlx5_rxq_modify_type { 1326 MLX5_RXQ_MOD_ERR2RST, /* modify state from error to reset. */ 1327 MLX5_RXQ_MOD_RST2RDY, /* modify state from reset to ready. */ 1328 MLX5_RXQ_MOD_RDY2ERR, /* modify state from ready to error. */ 1329 MLX5_RXQ_MOD_RDY2RST, /* modify state from ready to reset. */ 1330 }; 1331 1332 enum mlx5_txq_modify_type { 1333 MLX5_TXQ_MOD_RST2RDY, /* modify state from reset to ready. */ 1334 MLX5_TXQ_MOD_RDY2RST, /* modify state from ready to reset. */ 1335 MLX5_TXQ_MOD_ERR2RDY, /* modify state from error to ready. */ 1336 }; 1337 1338 /* HW objects operations structure. */ 1339 struct mlx5_obj_ops { 1340 int (*rxq_obj_modify_vlan_strip)(struct mlx5_rxq_obj *rxq_obj, int on); 1341 int (*rxq_obj_new)(struct rte_eth_dev *dev, uint16_t idx); 1342 int (*rxq_event_get)(struct mlx5_rxq_obj *rxq_obj); 1343 int (*rxq_obj_modify)(struct mlx5_rxq_obj *rxq_obj, uint8_t type); 1344 void (*rxq_obj_release)(struct mlx5_rxq_obj *rxq_obj); 1345 int (*ind_table_new)(struct rte_eth_dev *dev, const unsigned int log_n, 1346 struct mlx5_ind_table_obj *ind_tbl); 1347 int (*ind_table_modify)(struct rte_eth_dev *dev, 1348 const unsigned int log_n, 1349 const uint16_t *queues, const uint32_t queues_n, 1350 struct mlx5_ind_table_obj *ind_tbl); 1351 void (*ind_table_destroy)(struct mlx5_ind_table_obj *ind_tbl); 1352 int (*hrxq_new)(struct rte_eth_dev *dev, struct mlx5_hrxq *hrxq, 1353 int tunnel __rte_unused); 1354 int (*hrxq_modify)(struct rte_eth_dev *dev, struct mlx5_hrxq *hrxq, 1355 const uint8_t *rss_key, 1356 uint64_t hash_fields, 1357 const struct mlx5_ind_table_obj *ind_tbl); 1358 void (*hrxq_destroy)(struct mlx5_hrxq *hrxq); 1359 int (*drop_action_create)(struct rte_eth_dev *dev); 1360 void (*drop_action_destroy)(struct rte_eth_dev *dev); 1361 int (*txq_obj_new)(struct rte_eth_dev *dev, uint16_t idx); 1362 int (*txq_obj_modify)(struct mlx5_txq_obj *obj, 1363 enum mlx5_txq_modify_type type, uint8_t dev_port); 1364 void (*txq_obj_release)(struct mlx5_txq_obj *txq_obj); 1365 int (*lb_dummy_queue_create)(struct rte_eth_dev *dev); 1366 void (*lb_dummy_queue_release)(struct rte_eth_dev *dev); 1367 }; 1368 1369 #define MLX5_RSS_HASH_FIELDS_LEN RTE_DIM(mlx5_rss_hash_fields) 1370 1371 /* MR operations structure. */ 1372 struct mlx5_mr_ops { 1373 mlx5_reg_mr_t reg_mr; 1374 mlx5_dereg_mr_t dereg_mr; 1375 }; 1376 1377 struct mlx5_priv { 1378 struct rte_eth_dev_data *dev_data; /* Pointer to device data. */ 1379 struct mlx5_dev_ctx_shared *sh; /* Shared device context. */ 1380 uint32_t dev_port; /* Device port number. */ 1381 struct rte_pci_device *pci_dev; /* Backend PCI device. */ 1382 struct rte_ether_addr mac[MLX5_MAX_MAC_ADDRESSES]; /* MAC addresses. */ 1383 BITFIELD_DECLARE(mac_own, uint64_t, MLX5_MAX_MAC_ADDRESSES); 1384 /* Bit-field of MAC addresses owned by the PMD. */ 1385 uint16_t vlan_filter[MLX5_MAX_VLAN_IDS]; /* VLAN filters table. */ 1386 unsigned int vlan_filter_n; /* Number of configured VLAN filters. */ 1387 /* Device properties. */ 1388 uint16_t mtu; /* Configured MTU. */ 1389 unsigned int isolated:1; /* Whether isolated mode is enabled. */ 1390 unsigned int representor:1; /* Device is a port representor. */ 1391 unsigned int master:1; /* Device is a E-Switch master. */ 1392 unsigned int txpp_en:1; /* Tx packet pacing enabled. */ 1393 unsigned int sampler_en:1; /* Whether support sampler. */ 1394 unsigned int mtr_en:1; /* Whether support meter. */ 1395 unsigned int mtr_reg_share:1; /* Whether support meter REG_C share. */ 1396 unsigned int lb_used:1; /* Loopback queue is referred to. */ 1397 uint16_t domain_id; /* Switch domain identifier. */ 1398 uint16_t vport_id; /* Associated VF vport index (if any). */ 1399 uint32_t vport_meta_tag; /* Used for vport index match ove VF LAG. */ 1400 uint32_t vport_meta_mask; /* Used for vport index field match mask. */ 1401 uint16_t representor_id; /* UINT16_MAX if not a representor. */ 1402 int32_t pf_bond; /* >=0, representor owner PF index in bonding. */ 1403 unsigned int if_index; /* Associated kernel network device index. */ 1404 /* RX/TX queues. */ 1405 unsigned int rxqs_n; /* RX queues array size. */ 1406 unsigned int txqs_n; /* TX queues array size. */ 1407 struct mlx5_rxq_data *(*rxqs)[]; /* RX queues. */ 1408 struct mlx5_txq_data *(*txqs)[]; /* TX queues. */ 1409 struct rte_mempool *mprq_mp; /* Mempool for Multi-Packet RQ. */ 1410 struct rte_eth_rss_conf rss_conf; /* RSS configuration. */ 1411 unsigned int (*reta_idx)[]; /* RETA index table. */ 1412 unsigned int reta_idx_n; /* RETA index size. */ 1413 struct mlx5_drop drop_queue; /* Flow drop queues. */ 1414 void *root_drop_action; /* Pointer to root drop action. */ 1415 struct mlx5_indexed_pool *flows[MLX5_FLOW_TYPE_MAXI]; 1416 /* RTE Flow rules. */ 1417 uint32_t ctrl_flows; /* Control flow rules. */ 1418 rte_spinlock_t flow_list_lock; 1419 struct mlx5_obj_ops obj_ops; /* HW objects operations. */ 1420 LIST_HEAD(rxq, mlx5_rxq_ctrl) rxqsctrl; /* DPDK Rx queues. */ 1421 LIST_HEAD(rxqobj, mlx5_rxq_obj) rxqsobj; /* Verbs/DevX Rx queues. */ 1422 struct mlx5_list *hrxqs; /* Hash Rx queues. */ 1423 LIST_HEAD(txq, mlx5_txq_ctrl) txqsctrl; /* DPDK Tx queues. */ 1424 LIST_HEAD(txqobj, mlx5_txq_obj) txqsobj; /* Verbs/DevX Tx queues. */ 1425 /* Indirection tables. */ 1426 LIST_HEAD(ind_tables, mlx5_ind_table_obj) ind_tbls; 1427 /* Pointer to next element. */ 1428 rte_rwlock_t ind_tbls_lock; 1429 uint32_t refcnt; /**< Reference counter. */ 1430 /**< Verbs modify header action object. */ 1431 uint8_t ft_type; /**< Flow table type, Rx or Tx. */ 1432 uint8_t max_lro_msg_size; 1433 uint32_t link_speed_capa; /* Link speed capabilities. */ 1434 struct mlx5_xstats_ctrl xstats_ctrl; /* Extended stats control. */ 1435 struct mlx5_stats_ctrl stats_ctrl; /* Stats control. */ 1436 struct mlx5_dev_config config; /* Device configuration. */ 1437 /* Context for Verbs allocator. */ 1438 int nl_socket_rdma; /* Netlink socket (NETLINK_RDMA). */ 1439 int nl_socket_route; /* Netlink socket (NETLINK_ROUTE). */ 1440 struct mlx5_nl_vlan_vmwa_context *vmwa_context; /* VLAN WA context. */ 1441 struct mlx5_hlist *mreg_cp_tbl; 1442 /* Hash table of Rx metadata register copy table. */ 1443 uint8_t mtr_sfx_reg; /* Meter prefix-suffix flow match REG_C. */ 1444 uint8_t mtr_color_reg; /* Meter color match REG_C. */ 1445 struct mlx5_legacy_flow_meters flow_meters; /* MTR list. */ 1446 struct mlx5_l3t_tbl *mtr_profile_tbl; /* Meter index lookup table. */ 1447 struct mlx5_l3t_tbl *policy_idx_tbl; /* Policy index lookup table. */ 1448 struct mlx5_l3t_tbl *mtr_idx_tbl; /* Meter index lookup table. */ 1449 uint8_t skip_default_rss_reta; /* Skip configuration of default reta. */ 1450 uint8_t fdb_def_rule; /* Whether fdb jump to table 1 is configured. */ 1451 struct mlx5_mp_id mp_id; /* ID of a multi-process process */ 1452 LIST_HEAD(fdir, mlx5_fdir_flow) fdir_flows; /* fdir flows. */ 1453 rte_spinlock_t shared_act_sl; /* Shared actions spinlock. */ 1454 uint32_t rss_shared_actions; /* RSS shared actions. */ 1455 struct mlx5_devx_obj *q_counters; /* DevX queue counter object. */ 1456 uint32_t counter_set_id; /* Queue counter ID to set in DevX objects. */ 1457 }; 1458 1459 #define PORT_ID(priv) ((priv)->dev_data->port_id) 1460 #define ETH_DEV(priv) (&rte_eth_devices[PORT_ID(priv)]) 1461 1462 struct rte_hairpin_peer_info { 1463 uint32_t qp_id; 1464 uint32_t vhca_id; 1465 uint16_t peer_q; 1466 uint16_t tx_explicit; 1467 uint16_t manual_bind; 1468 }; 1469 1470 #define BUF_SIZE 1024 1471 enum dr_dump_rec_type { 1472 DR_DUMP_REC_TYPE_PMD_PKT_REFORMAT = 4410, 1473 DR_DUMP_REC_TYPE_PMD_MODIFY_HDR = 4420, 1474 DR_DUMP_REC_TYPE_PMD_COUNTER = 4430, 1475 }; 1476 1477 /* mlx5.c */ 1478 1479 int mlx5_getenv_int(const char *); 1480 int mlx5_proc_priv_init(struct rte_eth_dev *dev); 1481 void mlx5_proc_priv_uninit(struct rte_eth_dev *dev); 1482 int mlx5_udp_tunnel_port_add(struct rte_eth_dev *dev, 1483 struct rte_eth_udp_tunnel *udp_tunnel); 1484 uint16_t mlx5_eth_find_next(uint16_t port_id, struct rte_device *odev); 1485 int mlx5_dev_close(struct rte_eth_dev *dev); 1486 int mlx5_net_remove(struct rte_device *dev); 1487 bool mlx5_is_hpf(struct rte_eth_dev *dev); 1488 bool mlx5_is_sf_repr(struct rte_eth_dev *dev); 1489 void mlx5_age_event_prepare(struct mlx5_dev_ctx_shared *sh); 1490 1491 /* Macro to iterate over all valid ports for mlx5 driver. */ 1492 #define MLX5_ETH_FOREACH_DEV(port_id, dev) \ 1493 for (port_id = mlx5_eth_find_next(0, dev); \ 1494 port_id < RTE_MAX_ETHPORTS; \ 1495 port_id = mlx5_eth_find_next(port_id + 1, dev)) 1496 int mlx5_args(struct mlx5_dev_config *config, struct rte_devargs *devargs); 1497 struct mlx5_dev_ctx_shared * 1498 mlx5_alloc_shared_dev_ctx(const struct mlx5_dev_spawn_data *spawn, 1499 const struct mlx5_dev_config *config); 1500 void mlx5_free_shared_dev_ctx(struct mlx5_dev_ctx_shared *sh); 1501 int mlx5_dev_ctx_shared_mempool_subscribe(struct rte_eth_dev *dev); 1502 void mlx5_free_table_hash_list(struct mlx5_priv *priv); 1503 int mlx5_alloc_table_hash_list(struct mlx5_priv *priv); 1504 void mlx5_set_min_inline(struct mlx5_dev_spawn_data *spawn, 1505 struct mlx5_dev_config *config); 1506 void mlx5_set_metadata_mask(struct rte_eth_dev *dev); 1507 int mlx5_dev_check_sibling_config(struct mlx5_priv *priv, 1508 struct mlx5_dev_config *config, 1509 struct rte_device *dpdk_dev); 1510 int mlx5_dev_configure(struct rte_eth_dev *dev); 1511 int mlx5_dev_infos_get(struct rte_eth_dev *dev, struct rte_eth_dev_info *info); 1512 int mlx5_fw_version_get(struct rte_eth_dev *dev, char *fw_ver, size_t fw_size); 1513 int mlx5_dev_set_mtu(struct rte_eth_dev *dev, uint16_t mtu); 1514 int mlx5_hairpin_cap_get(struct rte_eth_dev *dev, 1515 struct rte_eth_hairpin_cap *cap); 1516 bool mlx5_flex_parser_ecpri_exist(struct rte_eth_dev *dev); 1517 int mlx5_flex_parser_ecpri_alloc(struct rte_eth_dev *dev); 1518 int mlx5_flow_aso_age_mng_init(struct mlx5_dev_ctx_shared *sh); 1519 int mlx5_aso_flow_mtrs_mng_init(struct mlx5_dev_ctx_shared *sh); 1520 int mlx5_flow_aso_ct_mng_init(struct mlx5_dev_ctx_shared *sh); 1521 1522 /* mlx5_ethdev.c */ 1523 1524 int mlx5_dev_configure(struct rte_eth_dev *dev); 1525 int mlx5_representor_info_get(struct rte_eth_dev *dev, 1526 struct rte_eth_representor_info *info); 1527 #define MLX5_REPRESENTOR_ID(pf, type, repr) \ 1528 (((pf) << 14) + ((type) << 12) + ((repr) & 0xfff)) 1529 #define MLX5_REPRESENTOR_REPR(repr_id) \ 1530 ((repr_id) & 0xfff) 1531 #define MLX5_REPRESENTOR_TYPE(repr_id) \ 1532 (((repr_id) >> 12) & 3) 1533 uint16_t mlx5_representor_id_encode(const struct mlx5_switch_info *info, 1534 enum rte_eth_representor_type hpf_type); 1535 int mlx5_fw_version_get(struct rte_eth_dev *dev, char *fw_ver, 1536 size_t fw_size); 1537 int mlx5_dev_infos_get(struct rte_eth_dev *dev, 1538 struct rte_eth_dev_info *info); 1539 const uint32_t *mlx5_dev_supported_ptypes_get(struct rte_eth_dev *dev); 1540 int mlx5_dev_set_mtu(struct rte_eth_dev *dev, uint16_t mtu); 1541 int mlx5_hairpin_cap_get(struct rte_eth_dev *dev, 1542 struct rte_eth_hairpin_cap *cap); 1543 eth_rx_burst_t mlx5_select_rx_function(struct rte_eth_dev *dev); 1544 struct mlx5_priv *mlx5_port_to_eswitch_info(uint16_t port, bool valid); 1545 struct mlx5_priv *mlx5_dev_to_eswitch_info(struct rte_eth_dev *dev); 1546 int mlx5_dev_configure_rss_reta(struct rte_eth_dev *dev); 1547 1548 /* mlx5_ethdev_os.c */ 1549 1550 int mlx5_get_ifname(const struct rte_eth_dev *dev, 1551 char (*ifname)[MLX5_NAMESIZE]); 1552 unsigned int mlx5_ifindex(const struct rte_eth_dev *dev); 1553 int mlx5_get_mac(struct rte_eth_dev *dev, uint8_t (*mac)[RTE_ETHER_ADDR_LEN]); 1554 int mlx5_get_mtu(struct rte_eth_dev *dev, uint16_t *mtu); 1555 int mlx5_set_mtu(struct rte_eth_dev *dev, uint16_t mtu); 1556 int mlx5_read_clock(struct rte_eth_dev *dev, uint64_t *clock); 1557 int mlx5_link_update(struct rte_eth_dev *dev, int wait_to_complete); 1558 int mlx5_dev_get_flow_ctrl(struct rte_eth_dev *dev, 1559 struct rte_eth_fc_conf *fc_conf); 1560 int mlx5_dev_set_flow_ctrl(struct rte_eth_dev *dev, 1561 struct rte_eth_fc_conf *fc_conf); 1562 void mlx5_dev_interrupt_handler(void *arg); 1563 void mlx5_dev_interrupt_handler_devx(void *arg); 1564 int mlx5_set_link_down(struct rte_eth_dev *dev); 1565 int mlx5_set_link_up(struct rte_eth_dev *dev); 1566 int mlx5_is_removed(struct rte_eth_dev *dev); 1567 int mlx5_sysfs_switch_info(unsigned int ifindex, 1568 struct mlx5_switch_info *info); 1569 void mlx5_translate_port_name(const char *port_name_in, 1570 struct mlx5_switch_info *port_info_out); 1571 void mlx5_intr_callback_unregister(const struct rte_intr_handle *handle, 1572 rte_intr_callback_fn cb_fn, void *cb_arg); 1573 int mlx5_sysfs_bond_info(unsigned int pf_ifindex, unsigned int *ifindex, 1574 char *ifname); 1575 int mlx5_get_module_info(struct rte_eth_dev *dev, 1576 struct rte_eth_dev_module_info *modinfo); 1577 int mlx5_get_module_eeprom(struct rte_eth_dev *dev, 1578 struct rte_dev_eeprom_info *info); 1579 int mlx5_os_read_dev_stat(struct mlx5_priv *priv, 1580 const char *ctr_name, uint64_t *stat); 1581 int mlx5_os_read_dev_counters(struct rte_eth_dev *dev, uint64_t *stats); 1582 int mlx5_os_get_stats_n(struct rte_eth_dev *dev); 1583 void mlx5_os_stats_init(struct rte_eth_dev *dev); 1584 1585 /* mlx5_mac.c */ 1586 1587 void mlx5_mac_addr_remove(struct rte_eth_dev *dev, uint32_t index); 1588 int mlx5_mac_addr_add(struct rte_eth_dev *dev, struct rte_ether_addr *mac, 1589 uint32_t index, uint32_t vmdq); 1590 int mlx5_mac_addr_set(struct rte_eth_dev *dev, struct rte_ether_addr *mac_addr); 1591 int mlx5_set_mc_addr_list(struct rte_eth_dev *dev, 1592 struct rte_ether_addr *mc_addr_set, 1593 uint32_t nb_mc_addr); 1594 1595 /* mlx5_rss.c */ 1596 1597 int mlx5_rss_hash_update(struct rte_eth_dev *dev, 1598 struct rte_eth_rss_conf *rss_conf); 1599 int mlx5_rss_hash_conf_get(struct rte_eth_dev *dev, 1600 struct rte_eth_rss_conf *rss_conf); 1601 int mlx5_rss_reta_index_resize(struct rte_eth_dev *dev, unsigned int reta_size); 1602 int mlx5_dev_rss_reta_query(struct rte_eth_dev *dev, 1603 struct rte_eth_rss_reta_entry64 *reta_conf, 1604 uint16_t reta_size); 1605 int mlx5_dev_rss_reta_update(struct rte_eth_dev *dev, 1606 struct rte_eth_rss_reta_entry64 *reta_conf, 1607 uint16_t reta_size); 1608 1609 /* mlx5_rxmode.c */ 1610 1611 int mlx5_promiscuous_enable(struct rte_eth_dev *dev); 1612 int mlx5_promiscuous_disable(struct rte_eth_dev *dev); 1613 int mlx5_allmulticast_enable(struct rte_eth_dev *dev); 1614 int mlx5_allmulticast_disable(struct rte_eth_dev *dev); 1615 1616 /* mlx5_stats.c */ 1617 1618 int mlx5_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats); 1619 int mlx5_stats_reset(struct rte_eth_dev *dev); 1620 int mlx5_xstats_get(struct rte_eth_dev *dev, struct rte_eth_xstat *stats, 1621 unsigned int n); 1622 int mlx5_xstats_reset(struct rte_eth_dev *dev); 1623 int mlx5_xstats_get_names(struct rte_eth_dev *dev __rte_unused, 1624 struct rte_eth_xstat_name *xstats_names, 1625 unsigned int n); 1626 1627 /* mlx5_vlan.c */ 1628 1629 int mlx5_vlan_filter_set(struct rte_eth_dev *dev, uint16_t vlan_id, int on); 1630 void mlx5_vlan_strip_queue_set(struct rte_eth_dev *dev, uint16_t queue, int on); 1631 int mlx5_vlan_offload_set(struct rte_eth_dev *dev, int mask); 1632 1633 /* mlx5_vlan_os.c */ 1634 1635 void mlx5_vlan_vmwa_exit(void *ctx); 1636 void mlx5_vlan_vmwa_release(struct rte_eth_dev *dev, 1637 struct mlx5_vf_vlan *vf_vlan); 1638 void mlx5_vlan_vmwa_acquire(struct rte_eth_dev *dev, 1639 struct mlx5_vf_vlan *vf_vlan); 1640 void *mlx5_vlan_vmwa_init(struct rte_eth_dev *dev, uint32_t ifindex); 1641 1642 /* mlx5_trigger.c */ 1643 1644 int mlx5_dev_start(struct rte_eth_dev *dev); 1645 int mlx5_dev_stop(struct rte_eth_dev *dev); 1646 int mlx5_traffic_enable(struct rte_eth_dev *dev); 1647 void mlx5_traffic_disable(struct rte_eth_dev *dev); 1648 int mlx5_traffic_restart(struct rte_eth_dev *dev); 1649 int mlx5_hairpin_queue_peer_update(struct rte_eth_dev *dev, uint16_t peer_queue, 1650 struct rte_hairpin_peer_info *current_info, 1651 struct rte_hairpin_peer_info *peer_info, 1652 uint32_t direction); 1653 int mlx5_hairpin_queue_peer_bind(struct rte_eth_dev *dev, uint16_t cur_queue, 1654 struct rte_hairpin_peer_info *peer_info, 1655 uint32_t direction); 1656 int mlx5_hairpin_queue_peer_unbind(struct rte_eth_dev *dev, uint16_t cur_queue, 1657 uint32_t direction); 1658 int mlx5_hairpin_bind(struct rte_eth_dev *dev, uint16_t rx_port); 1659 int mlx5_hairpin_unbind(struct rte_eth_dev *dev, uint16_t rx_port); 1660 int mlx5_hairpin_get_peer_ports(struct rte_eth_dev *dev, uint16_t *peer_ports, 1661 size_t len, uint32_t direction); 1662 1663 /* mlx5_flow.c */ 1664 1665 int mlx5_flow_discover_mreg_c(struct rte_eth_dev *eth_dev); 1666 bool mlx5_flow_ext_mreg_supported(struct rte_eth_dev *dev); 1667 void mlx5_flow_print(struct rte_flow *flow); 1668 int mlx5_flow_validate(struct rte_eth_dev *dev, 1669 const struct rte_flow_attr *attr, 1670 const struct rte_flow_item items[], 1671 const struct rte_flow_action actions[], 1672 struct rte_flow_error *error); 1673 struct rte_flow *mlx5_flow_create(struct rte_eth_dev *dev, 1674 const struct rte_flow_attr *attr, 1675 const struct rte_flow_item items[], 1676 const struct rte_flow_action actions[], 1677 struct rte_flow_error *error); 1678 int mlx5_flow_destroy(struct rte_eth_dev *dev, struct rte_flow *flow, 1679 struct rte_flow_error *error); 1680 void mlx5_flow_list_flush(struct rte_eth_dev *dev, enum mlx5_flow_type type, 1681 bool active); 1682 int mlx5_flow_flush(struct rte_eth_dev *dev, struct rte_flow_error *error); 1683 int mlx5_flow_query(struct rte_eth_dev *dev, struct rte_flow *flow, 1684 const struct rte_flow_action *action, void *data, 1685 struct rte_flow_error *error); 1686 int mlx5_flow_isolate(struct rte_eth_dev *dev, int enable, 1687 struct rte_flow_error *error); 1688 int mlx5_flow_ops_get(struct rte_eth_dev *dev, const struct rte_flow_ops **ops); 1689 int mlx5_flow_start_default(struct rte_eth_dev *dev); 1690 void mlx5_flow_stop_default(struct rte_eth_dev *dev); 1691 int mlx5_flow_verify(struct rte_eth_dev *dev); 1692 int mlx5_ctrl_flow_source_queue(struct rte_eth_dev *dev, uint32_t queue); 1693 int mlx5_ctrl_flow_vlan(struct rte_eth_dev *dev, 1694 struct rte_flow_item_eth *eth_spec, 1695 struct rte_flow_item_eth *eth_mask, 1696 struct rte_flow_item_vlan *vlan_spec, 1697 struct rte_flow_item_vlan *vlan_mask); 1698 int mlx5_ctrl_flow(struct rte_eth_dev *dev, 1699 struct rte_flow_item_eth *eth_spec, 1700 struct rte_flow_item_eth *eth_mask); 1701 int mlx5_flow_lacp_miss(struct rte_eth_dev *dev); 1702 struct rte_flow *mlx5_flow_create_esw_table_zero_flow(struct rte_eth_dev *dev); 1703 void mlx5_flow_async_pool_query_handle(struct mlx5_dev_ctx_shared *sh, 1704 uint64_t async_id, int status); 1705 void mlx5_set_query_alarm(struct mlx5_dev_ctx_shared *sh); 1706 void mlx5_flow_query_alarm(void *arg); 1707 uint32_t mlx5_counter_alloc(struct rte_eth_dev *dev); 1708 void mlx5_counter_free(struct rte_eth_dev *dev, uint32_t cnt); 1709 int mlx5_counter_query(struct rte_eth_dev *dev, uint32_t cnt, 1710 bool clear, uint64_t *pkts, uint64_t *bytes); 1711 int mlx5_flow_dev_dump(struct rte_eth_dev *dev, struct rte_flow *flow, 1712 FILE *file, struct rte_flow_error *error); 1713 int save_dump_file(const unsigned char *data, uint32_t size, 1714 uint32_t type, uint32_t id, void *arg, FILE *file); 1715 int mlx5_flow_query_counter(struct rte_eth_dev *dev, struct rte_flow *flow, 1716 struct rte_flow_query_count *count, struct rte_flow_error *error); 1717 #ifdef HAVE_IBV_FLOW_DV_SUPPORT 1718 int mlx5_flow_dev_dump_ipool(struct rte_eth_dev *dev, struct rte_flow *flow, 1719 FILE *file, struct rte_flow_error *error); 1720 #endif 1721 void mlx5_flow_rxq_dynf_metadata_set(struct rte_eth_dev *dev); 1722 int mlx5_flow_get_aged_flows(struct rte_eth_dev *dev, void **contexts, 1723 uint32_t nb_contexts, struct rte_flow_error *error); 1724 int mlx5_validate_action_ct(struct rte_eth_dev *dev, 1725 const struct rte_flow_action_conntrack *conntrack, 1726 struct rte_flow_error *error); 1727 1728 1729 /* mlx5_mp_os.c */ 1730 1731 int mlx5_mp_os_primary_handle(const struct rte_mp_msg *mp_msg, 1732 const void *peer); 1733 int mlx5_mp_os_secondary_handle(const struct rte_mp_msg *mp_msg, 1734 const void *peer); 1735 void mlx5_mp_os_req_start_rxtx(struct rte_eth_dev *dev); 1736 void mlx5_mp_os_req_stop_rxtx(struct rte_eth_dev *dev); 1737 int mlx5_mp_os_req_queue_control(struct rte_eth_dev *dev, uint16_t queue_id, 1738 enum mlx5_mp_req_type req_type); 1739 1740 /* mlx5_socket.c */ 1741 1742 int mlx5_pmd_socket_init(void); 1743 1744 /* mlx5_flow_meter.c */ 1745 1746 int mlx5_flow_meter_ops_get(struct rte_eth_dev *dev, void *arg); 1747 struct mlx5_flow_meter_info *mlx5_flow_meter_find(struct mlx5_priv *priv, 1748 uint32_t meter_id, uint32_t *mtr_idx); 1749 struct mlx5_flow_meter_info * 1750 flow_dv_meter_find_by_idx(struct mlx5_priv *priv, uint32_t idx); 1751 int mlx5_flow_meter_attach(struct mlx5_priv *priv, 1752 struct mlx5_flow_meter_info *fm, 1753 const struct rte_flow_attr *attr, 1754 struct rte_flow_error *error); 1755 void mlx5_flow_meter_detach(struct mlx5_priv *priv, 1756 struct mlx5_flow_meter_info *fm); 1757 struct mlx5_flow_meter_policy *mlx5_flow_meter_policy_find 1758 (struct rte_eth_dev *dev, 1759 uint32_t policy_id, 1760 uint32_t *policy_idx); 1761 struct mlx5_flow_meter_policy * 1762 mlx5_flow_meter_hierarchy_get_final_policy(struct rte_eth_dev *dev, 1763 struct mlx5_flow_meter_policy *policy); 1764 int mlx5_flow_meter_flush(struct rte_eth_dev *dev, 1765 struct rte_mtr_error *error); 1766 void mlx5_flow_meter_rxq_flush(struct rte_eth_dev *dev); 1767 1768 /* mlx5_os.c */ 1769 struct rte_pci_driver; 1770 int mlx5_os_get_dev_attr(void *ctx, struct mlx5_dev_attr *dev_attr); 1771 void mlx5_os_free_shared_dr(struct mlx5_priv *priv); 1772 int mlx5_os_open_device(const struct mlx5_dev_spawn_data *spawn, 1773 const struct mlx5_dev_config *config, 1774 struct mlx5_dev_ctx_shared *sh); 1775 int mlx5_os_get_pdn(void *pd, uint32_t *pdn); 1776 int mlx5_os_net_probe(struct rte_device *dev); 1777 void mlx5_os_dev_shared_handler_install(struct mlx5_dev_ctx_shared *sh); 1778 void mlx5_os_dev_shared_handler_uninstall(struct mlx5_dev_ctx_shared *sh); 1779 void mlx5_os_set_reg_mr_cb(mlx5_reg_mr_t *reg_mr_cb, 1780 mlx5_dereg_mr_t *dereg_mr_cb); 1781 void mlx5_os_mac_addr_remove(struct rte_eth_dev *dev, uint32_t index); 1782 int mlx5_os_mac_addr_add(struct rte_eth_dev *dev, struct rte_ether_addr *mac, 1783 uint32_t index); 1784 int mlx5_os_vf_mac_addr_modify(struct mlx5_priv *priv, unsigned int iface_idx, 1785 struct rte_ether_addr *mac_addr, 1786 int vf_index); 1787 int mlx5_os_set_promisc(struct rte_eth_dev *dev, int enable); 1788 int mlx5_os_set_allmulti(struct rte_eth_dev *dev, int enable); 1789 int mlx5_os_set_nonblock_channel_fd(int fd); 1790 void mlx5_os_mac_addr_flush(struct rte_eth_dev *dev); 1791 1792 /* mlx5_txpp.c */ 1793 1794 int mlx5_txpp_start(struct rte_eth_dev *dev); 1795 void mlx5_txpp_stop(struct rte_eth_dev *dev); 1796 int mlx5_txpp_read_clock(struct rte_eth_dev *dev, uint64_t *timestamp); 1797 int mlx5_txpp_xstats_get(struct rte_eth_dev *dev, 1798 struct rte_eth_xstat *stats, 1799 unsigned int n, unsigned int n_used); 1800 int mlx5_txpp_xstats_reset(struct rte_eth_dev *dev); 1801 int mlx5_txpp_xstats_get_names(struct rte_eth_dev *dev, 1802 struct rte_eth_xstat_name *xstats_names, 1803 unsigned int n, unsigned int n_used); 1804 void mlx5_txpp_interrupt_handler(void *cb_arg); 1805 1806 /* mlx5_rxtx.c */ 1807 1808 eth_tx_burst_t mlx5_select_tx_function(struct rte_eth_dev *dev); 1809 1810 /* mlx5_flow_aso.c */ 1811 1812 int mlx5_aso_queue_init(struct mlx5_dev_ctx_shared *sh, 1813 enum mlx5_access_aso_opc_mod aso_opc_mod); 1814 int mlx5_aso_flow_hit_queue_poll_start(struct mlx5_dev_ctx_shared *sh); 1815 int mlx5_aso_flow_hit_queue_poll_stop(struct mlx5_dev_ctx_shared *sh); 1816 void mlx5_aso_queue_uninit(struct mlx5_dev_ctx_shared *sh, 1817 enum mlx5_access_aso_opc_mod aso_opc_mod); 1818 int mlx5_aso_meter_update_by_wqe(struct mlx5_dev_ctx_shared *sh, 1819 struct mlx5_aso_mtr *mtr); 1820 int mlx5_aso_mtr_wait(struct mlx5_dev_ctx_shared *sh, 1821 struct mlx5_aso_mtr *mtr); 1822 int mlx5_aso_ct_update_by_wqe(struct mlx5_dev_ctx_shared *sh, 1823 struct mlx5_aso_ct_action *ct, 1824 const struct rte_flow_action_conntrack *profile); 1825 int mlx5_aso_ct_wait_ready(struct mlx5_dev_ctx_shared *sh, 1826 struct mlx5_aso_ct_action *ct); 1827 int mlx5_aso_ct_query_by_wqe(struct mlx5_dev_ctx_shared *sh, 1828 struct mlx5_aso_ct_action *ct, 1829 struct rte_flow_action_conntrack *profile); 1830 int mlx5_aso_ct_available(struct mlx5_dev_ctx_shared *sh, 1831 struct mlx5_aso_ct_action *ct); 1832 uint32_t 1833 mlx5_get_supported_sw_parsing_offloads(const struct mlx5_hca_attr *attr); 1834 uint32_t 1835 mlx5_get_supported_tunneling_offloads(const struct mlx5_hca_attr *attr); 1836 1837 #endif /* RTE_PMD_MLX5_H_ */ 1838