1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671
|
.. SPDX-License-Identifier: BSD-3-Clause
Copyright 2023 The DPDK contributors
.. include:: <isonum.txt>
DPDK Release 23.11
==================
New Features
------------
* **Build requirements increased for C11.**
From DPDK 23.11 onwards,
building DPDK will require a C compiler which supports the C11 standard,
including support for C11 standard atomics.
More specifically, the requirements will be:
* Support for flag ``-std=c11`` (or similar)
* ``__STDC_NO_ATOMICS__`` is *not defined* when using c11 flag
Please note:
* C11, including standard atomics, is supported from GCC version 5 onwards,
and is the default language version in that release
(Ref: https://gcc.gnu.org/gcc-5/changes.html)
* C11 is the default compilation mode in Clang from version 3.6,
which also added support for standard atomics
(Ref: https://releases.llvm.org/3.6.0/tools/clang/docs/ReleaseNotes.html)
* **Updated dependencies when linking against libarchive.**
When the libarchive development package is present on the system,
DPDK will use libarchive and register a dependency on it.
However, on a number of Linux distributions, including, for example, Fedora and Ubuntu,
installing the libarchive dev package does not cause all required dependencies for static linking to be automatically installed too.
These additional dev packages, such as ``liblz4-dev`` and ``libacl1-dev`` on Ubuntu,
will need to be installed manually (if not already present)
to prevent errors with linking against DPDK static libraries.
* **Added new build options.**
* Enabling deprecated libraries is now done using
the new ``enable_deprecated_libraries`` build option.
* Optional libraries can now be selected with the new ``enable_libs``
build option similarly to the existing ``enable_drivers`` build option.
* **Introduced a new API for atomic operations.**
This new API serves as a wrapper for transitioning
to standard atomic operations as described in the C11 standard.
This API implementation points at the compiler intrinsics by default.
The implementation using C11 standard atomic operations is enabled
via the ``enable_stdatomic`` build option.
* **Added support for power intrinsics with AMD processors.**
Added AMD ``MONITORX``/``MWAITX`` instructions in EAL for power optimisation.
* **Added support for allow/block list in vmbus bus driver.***
The ``vmbus`` bus driver now supports ``-a`` and ``-b`` EAL options
for selecting devices.
* **Added mbuf recycling support.**
Added ``rte_eth_recycle_rx_queue_info_get`` and ``rte_eth_recycle_mbufs``
functions which allow the user to copy used mbufs from the Tx mbuf ring
into the Rx mbuf ring. This feature supports the case that the Rx Ethernet
device is different from the Tx Ethernet device with respective driver
callback functions in ``rte_eth_recycle_mbufs``.
* **Added amd-pstate driver support to the power management library.**
Added support for amd-pstate driver which works on AMD EPYC processors.
* **Added maximum Rx buffer size to report.**
Introduced the ``max_rx_bufsize`` field, representing
the maximum Rx buffer size per descriptor supported by the HW,
in the structure ``rte_eth_dev_info`` to avoid wasting mempool space.
* **Improved support of RSS hash algorithm.**
* Added support to query RSS hash algorithm capability via ``rte_eth_dev_info_get()``,
and set RSS hash algorithm via ``rte_eth_dev_configure()``
or ``rte_eth_dev_rss_hash_update()``.
* Added new function ``rte_eth_dev_rss_algo_name``
to get name of RSS hash algorithm.
* **Added packet type flow matching criteria.**
Added ``RTE_FLOW_ITEM_TYPE_PTYPE`` to allow matching on L2/L3/L4
and tunnel information as defined in mbuf packet type.
* **Added a flow action type for P4-defined actions.**
For P4-programmable devices, hardware pipeline can be configured through
a new "PROG" action type and its associated custom arguments.
Such P4 pipelines, not using the standard blocks of the flow API,
can be managed with ``RTE_FLOW_ITEM_TYPE_FLEX`` and ``RTE_FLOW_ACTION_TYPE_PROG``.
* **Added flow group set miss actions.**
Introduced ``rte_flow_group_set_miss_actions()`` API to explicitly set
a group's miss actions, which are the actions to be performed on packets
that didn't match any of the flow rules in the group.
* **Updated Amazon ena (Elastic Network Adapter) net driver.**
* Upgraded ENA HAL to latest version.
* Added support for connection tracking allowance utilization metrics.
* Added support for reporting Rx overrun errors in xstats.
* Added support for ENA-express metrics.
* **Added a new vDPA PMD for Corigine NFP devices.**
Added a new Corigine NFP vDPA (``nfp_vdpa``) PMD.
See the :doc:`../vdpadevs/nfp` guide for more details on this driver.
* **Updated Corigine/Netronome nfp driver.**
* Added inline IPsec offload based on the security framework.
* **Updated Intel cpfl driver.**
* Added support for port representor.
* Added support for flow offload (including P4-defined pipeline).
* **Updated Intel iavf driver.**
* Added support for iavf auto-reset.
* **Updated Intel i40e driver.**
* Added support for new X722 devices.
* **Updated Marvell cnxk net driver.**
* Added support for ``RTE_FLOW_ITEM_TYPE_IPV6_ROUTING_EXT`` flow item.
* Added support for ``RTE_FLOW_ACTION_TYPE_AGE`` flow action.
* **Updated NVIDIA mlx5 net driver.**
* Added support for multi-port E-Switch.
* Added support for Network Service Header (NSH) flow matching.
* Added support for ``RTE_FLOW_ITEM_TYPE_PTYPE`` flow item.
* Added support for ``RTE_FLOW_ACTION_TYPE_IPV6_EXT_PUSH`` flow action.
* Added support for ``RTE_FLOW_ACTION_TYPE_IPV6_EXT_REMOVE`` flow action.
* Added support for ``RTE_FLOW_ACTION_TYPE_PORT_REPRESENTOR`` flow action and mirror.
* Added support for ``RTE_FLOW_ACTION_TYPE_INDIRECT_LIST`` flow action.
* **Updated Solarflare net driver.**
* Added support for transfer flow action ``INDIRECT`` with subtype ``VXLAN_ENCAP``.
* Supported packet replay (multi-count / multi-delivery) in transfer flows.
* **Updated Wangxun ngbe driver.**
* Added 100M and auto-neg support in YT PHY fiber mode.
* **Added support for TLS and DTLS record processing.**
Added TLS and DTLS record transform for security session
and added enhancements to ``rte_crypto_op`` fields
to handle all datapath requirements of TLS and DTLS.
The support was added for TLS 1.2, TLS 1.3 and DTLS 1.2.
* **Added out of place processing support for inline ingress security session.**
Similar to out of place processing support for lookaside security session,
added the same support for inline ingress security session.
* **Added security Rx inject API.**
Added Rx inject API to allow applications to submit packets
for protocol offload and have them injected back to ethdev Rx
so that further ethdev Rx actions (IP reassembly, packet parsing and flow lookups)
can happen based on the inner packet.
When using the API implemented by an ethdev the application would be able to process
packets that are received without/failed inline offload processing
(such as fragmented ESP packets with inline IPsec offload).
When using the API implemented by a cryptodev it can be used for injecting packets
to ethdev Rx after IPsec processing and take advantage of ethdev Rx actions
for the inner packet which cannot be accelerated in inline protocol offload mode.
* **Updated cryptodev scheduler driver.**
* Added support for DOCSIS security protocol
through the ``rte_security`` API callbacks.
* **Updated ipsec_mb crypto driver.**
* Added Intel IPsec MB v1.5 library support for x86 platform.
* Added support for digest encrypted to the AESNI_MB asynchronous crypto driver.
* **Updated Intel QuickAssist Technology driver.**
* Enabled support for QAT 2.0c (4944) devices in QAT crypto driver.
* Added support for SM2 ECDSA algorithm.
* **Updated Marvell cnxk crypto driver.**
* Added SM2 algorithm support in asymmetric crypto operations.
* Added asymmetric crypto ECDH support.
* **Updated Marvell Nitrox symmetric crypto driver.**
* Added support for AES-CCM algorithm.
* **Updated Intel vRAN Boost baseband driver.**
* Added support for the new Intel vRAN Boost v2 device variant (GNR-D)
within the unified driver.
* **Added support for models with multiple I/O in mldev library.**
Added support in mldev library for models with multiple inputs and outputs.
* **Updated Marvell cnxk mldev driver.**
* Added support for models compiled using TVM framework.
* **Added new eventdev Ethernet Rx adapter create API.**
Added new function ``rte_event_eth_rx_adapter_create_ext_with_params()``
for creating Rx adapter instance for the applications desire to
control both the event port allocation and event buffer size.
* **Added eventdev DMA adapter.**
* Added the Event DMA Adapter Library. This library extends the event-based
model by introducing APIs that allow applications to enqueue/dequeue DMA
operations to/from dmadev as events scheduled by an event device.
* **Added eventdev support to link queues to port with link profile.**
Introduced event link profiles that can be used to associate links between
event queues and an event port with a unique identifier termed the "link profile".
The profile can be used to switch between the associated links in fast-path
without the additional overhead of linking/unlinking and waiting for unlinking.
* Added ``rte_event_port_profile_links_set``, ``rte_event_port_profile_unlink``
``rte_event_port_profile_links_get`` and ``rte_event_port_profile_switch``
functions to enable this feature.
* **Updated Marvell cnxk eventdev driver.**
* Added support for ``remaining_ticks_get`` timer adapter PMD callback
to get the remaining ticks to expire for a given event timer.
* Added link profiles support, up to two link profiles are supported.
* **Updated Marvell cnxk dmadev driver.**
* Added support for source buffer auto free for memory to device DMA.
* **Added dispatcher library.**
Added dispatcher library which purpose is to help decouple different
parts (modules) of an eventdev-based application.
* **Added CLI based graph application.**
Added CLI based graph application which exercises different use cases.
The application provides a framework so that each use case can be added via a file.
Each CLI will further be translated into a graph representing the use case.
* **Added layer 2 MACsec forwarding example application.**
Added a new example layer 2 forwarding application to benchmark
MACsec encryption/decryption using rte_security based inline sessions.
Removed Items
-------------
* eal: Removed deprecated ``RTE_FUNC_PTR_OR_*`` macros.
* ethdev: Removed deprecated macro ``RTE_ETH_DEV_BONDED_SLAVE``.
* flow_classify: Removed flow classification library and examples.
* kni: Removed the Kernel Network Interface (KNI) library and driver.
* cryptodev: Removed the arrays of algorithm strings ``rte_crypto_cipher_algorithm_strings``,
``rte_crypto_auth_algorithm_strings``, ``rte_crypto_aead_algorithm_strings`` and
``rte_crypto_asym_xform_strings``.
* cryptodev: Removed explicit SM2 xform parameter in asymmetric xform.
* security: Removed deprecated field ``reserved_opts``
from struct ``rte_security_ipsec_sa_options``.
* mldev: Removed functions ``rte_ml_io_input_size_get`` and ``rte_ml_io_output_size_get``.
* cmdline: Removed broken and unused function ``cmdline_poll``.
API Changes
-----------
* eal: The thread API has changed.
The function ``rte_thread_create_control()`` does not take attributes anymore.
The whole thread API was promoted to stable level,
except ``rte_thread_setname()`` and ``rte_ctrl_thread_create()`` which are
replaced with ``rte_thread_set_name()`` and ``rte_thread_create_control()``.
* eal: Removed ``RTE_CPUFLAG_NUMFLAGS`` to avoid misusage and theoretical ABI
compatibility issue when adding new cpuflags.
* power: Updated the x86 Uncore power management API so that it is vendor agnostic.
* ethdev: When ``rte_eth_dev_configure`` or ``rte_eth_dev_rss_hash_update`` are called,
the ``rss_key_len`` of structure ``rte_eth_rss_conf`` should be provided
by the user for the case ``rss_key != NULL``,
it won't be taken as default 40 bytes anymore.
* bonding: Replaced master/slave to main/member. The data structure
``struct rte_eth_bond_8023ad_slave_info`` was renamed to
``struct rte_eth_bond_8023ad_member_info`` in DPDK 23.11.
The following functions were removed in DPDK 23.11.
The old functions:
``rte_eth_bond_8023ad_slave_info``,
``rte_eth_bond_active_slaves_get``,
``rte_eth_bond_slave_add``,
``rte_eth_bond_slave_remove``, and
``rte_eth_bond_slaves_get``
will be replaced by:
``rte_eth_bond_8023ad_member_info``,
``rte_eth_bond_active_members_get``,
``rte_eth_bond_member_add``,
``rte_eth_bond_member_remove``, and
``rte_eth_bond_members_get``.
* cryptodev: The elliptic curve asymmetric private and public keys can be maintained
per session. These keys are moved from per packet ``rte_crypto_ecdsa_op_param`` and
``rte_crypto_sm2_op_param`` to generic EC xform ``rte_crypto_ec_xform``.
* security: Structures ``rte_security_ops`` and ``rte_security_ctx`` were moved to
internal library headers not visible to application.
* mldev: Updated the structure ``rte_ml_model_info`` to support input and output
with arbitrary shapes.
Updated ``rte_ml_op``, ``rte_ml_io_quantize`` and ``rte_ml_io_dequantize``
to support an array of ``rte_ml_buff_seg``.
* pcapng: The time parameters were removed
from the functions ``rte_pcapng_copy`` and ``rte_pcapng_write_stats``.
ABI Changes
-----------
* ethdev: Added ``recycle_tx_mbufs_reuse`` and ``recycle_rx_descriptors_refill``
fields to ``rte_eth_dev`` structure.
* ethdev: Structure ``rte_eth_fp_ops`` was affected to add
``recycle_tx_mbufs_reuse`` and ``recycle_rx_descriptors_refill``
fields, to move ``rxq`` and ``txq`` fields, to change the size of
``reserved1`` and ``reserved2`` fields.
* ethdev: Added ``algorithm`` field to ``rte_eth_rss_conf`` structure
for RSS hash algorithm.
* ethdev: Added ``rss_algo_capa`` field to ``rte_eth_dev_info`` structure
for reporting RSS hash algorithm capability.
* security: struct ``rte_security_ipsec_sa_options`` was updated
due to inline out-of-place feature addition.
Tested Platforms
----------------
* Intel\ |reg| platforms with Intel\ |reg| NICs combinations
* CPU
* Intel Atom\ |reg| P5342 processor
* Intel\ |reg| Atom\ |trade| x74xxRE
* Intel\ |reg| Atom\ |trade| CPU C3758 @ 2.20GHz
* Intel\ |reg| Xeon\ |reg| CPU D-1553N @ 2.30GHz
* Intel\ |reg| Xeon\ |reg| CPU E5-2699 v4 @ 2.20GHz
* Intel\ |reg| Xeon\ |reg| D-1747NTE CPU @ 2.50GHz
* Intel\ |reg| Xeon\ |reg| D-2796NT CPU @ 2.00GHz
* Intel\ |reg| Xeon\ |reg| Gold 6139 CPU @ 2.30GHz
* Intel\ |reg| Xeon\ |reg| Gold 6140M CPU @ 2.30GHz
* Intel\ |reg| Xeon\ |reg| Gold 6252N CPU @ 2.30GHz
* Intel\ |reg| Xeon\ |reg| Gold 6348 CPU @ 2.60GHz
* Intel\ |reg| Xeon\ |reg| Platinum 8280M CPU @ 2.70GHz
* Intel\ |reg| Xeon\ |reg| Platinum 8380 CPU @ 2.30GHz
* Intel\ |reg| Xeon\ |reg| Platinum 8490H
* GENUINE INTEL\ |reg| XEON\ |reg|
* OS:
* CBL Mariner 2.0
* Fedora 38
* FreeBSD 13.2
* OpenAnolis OS 8.8
* Red Hat Enterprise Linux Server release 8.7
* Red Hat Enterprise Linux Server release 9.2
* SUSE Linux Enterprise Server 15 SP5
* Ubuntu 22.04.3
* NICs:
* Intel\ |reg| Ethernet Controller E810-C for SFP (4x25G)
* Firmware version: 4.40 0x8001c301 1.3492.0
* Device id (pf/vf): 8086:1593 / 8086:1889
* Driver version(out-tree): 1.13.1_1_g565e8ce94_dirty (ice)
* Driver version(in-tree): 5.15.0-82-generic (Ubuntu22.04.3)/ 5.14.0-284.11.1.rt14.296.el9_2.x86_64 (RHEL9.2)/ 5.15.129-rt67 (Ubuntu22.04.3)(ice)
* OS Default DDP: 1.3.36.0
* COMMS DDP: 1.3.46.0
* Wireless Edge DDP: 1.3.14.0
* Intel\ |reg| Ethernet Controller E810-C for QSFP (2x100G)
* Firmware version: 4.40 0x8001c2f1 1.3492.0
* Device id (pf/vf): 8086:1592 / 8086:1889
* Driver version(out-tree): 1.13.1_1_g565e8ce94_dirty (ice)
* Driver version(in-tree): 5.15.55.1-1.cm2-5464b22cac7+ (CBL Mariner 2.0) (ice)
* OS Default DDP: 1.3.36.0
* COMMS DDP: 1.3.46.0
* Wireless Edge DDP: 1.3.14.0
* Intel\ |reg| Ethernet Controller E810-XXV for SFP (2x25G)
* Firmware version: 4.40 0x8001c2f5 1.3492.0
* Device id (pf/vf): 8086:159b / 8086:1889
* Driver version: 1.13.1_1_g565e8ce94_dirty (ice)
* OS Default DDP: 1.3.36.0
* COMMS DDP: 1.3.46.0
* Intel\ |reg| Ethernet Connection E823-C for QSFP
* Firmware version: 3.33 0x8001b295 1.3443.0
* Device id (pf/vf): 8086:188b / 8086:1889
* Driver version: 1.13.1_1_g565e8ce94_dirty (ice)
* OS Default DDP: 1.3.36.0
* COMMS DDP: 1.3.46.0
* Wireless Edge DDP: 1.3.14.0
* Intel\ |reg| Ethernet Connection E823-L for QSFP
* Firmware version: 3.33 0x8001b4b0 1.3429.0
* Device id (pf/vf): 8086:124c / 8086:1889
* Driver version: 1.13.1_1_g565e8ce94_dirty (ice)
* OS Default DDP: 1.3.36.0
* COMMS DDP: 1.3.46.0
* Wireless Edge DDP: 1.3.14.0
* Intel\ |reg| Ethernet Connection E822-L for backplane
* Firmware version: 3.33 0x8001b4b6 1.3429.0
* Device id (pf/vf): 8086:1897 / 8086:1889
* Driver version: 1.13.1_1_g565e8ce94_dirty (ice)
* OS Default DDP: 1.3.36.0
* COMMS DDP: 1.3.46.0
* Wireless Edge DDP: 1.3.14.0
* Intel\ |reg| 82599ES 10 Gigabit Ethernet Controller
* Firmware version: 0x000161bf
* Device id (pf/vf): 8086:10fb / 8086:10ed
* Driver version(out-tree): 5.19.6 (ixgbe)
* Driver version(in-tree): 5.15.0-82-generic (Ubuntu22.04.3)/ 5.14.0-284.11.1.el9_2.x86_64 (RHEL9.2)(ixgbe)
* Intel\ |reg| Ethernet Converged Network Adapter X710-DA4 (4x10G)
* Firmware version: 9.30 0x8000e606 1.3429.0
* Device id (pf/vf): 8086:1572 / 8086:154c
* Driver version(out-tree): 2.23.17 (i40e)
* Intel\ |reg| Corporation Ethernet Connection X722 for 10GbE SFP+ (2x10G)
* Firmware version: 6.20 0x80003d82 1.3353.0
* Device id (pf/vf): 8086:37d0 / 8086:37cd
* Driver version(out-tree): 2.23.17 (i40e)
* Driver version(in-tree): 5.14.0-284.11.1.el9_2.x86_64 (RHEL9.2)(i40e)
* Intel\ |reg| Corporation Ethernet Connection X722 for 10GBASE-T
* Firmware version: 6.20 0x80003d3e 1.2935.0
* Device id (pf/vf): 8086:37d2 / 8086:37cd
* Driver version(out-tree): 2.23.17 (i40e)
* Driver version(in-tree): 5.14.0-284.11.1.el9_2.x86_64 (RHEL9.2) (i40e)
* Intel\ |reg| Ethernet Converged Network Adapter XXV710-DA2 (2x25G)
* Firmware version: 9.30 0x8000e5f5 1.3429.0
* Device id (pf/vf): 8086:158b / 8086:154c
* Driver version(out-tree): 2.23.17 (i40e)
* Driver version(in-tree): 5.15.0-82-generic (Ubuntu22.04.3)/5.14.0-284.11.1.el9_2.x86_64 (RHEL9.2)(i40e)
* Intel\ |reg| Ethernet Converged Network Adapter XL710-QDA2 (2X40G)
* Firmware version(PF): 9.30 0x8000e5ee 1.3429.0
* Device id (pf/vf): 8086:1583 / 8086:154c
* Driver version(out-tree): 2.23.17 (i40e)
* Intel\ |reg| Ethernet Controller I225-LM
* Firmware version: 1.3, 0x800000c9
* Device id (pf): 8086:15f2
* Driver version(in-tree): 5.15.0-82-generic (Ubuntu22.04.3)(igc)
* Intel\ |reg| Ethernet Controller I226-LM
* Firmware version: 2.14, 0x8000028c
* Device id (pf): 8086:125b
* Driver version(in-tree): 5.15.0-82-generic (Ubuntu22.04.3)(igc)
* Intel Corporation I350 Gigabit Network Connection
* Firmware version: 1.63, 0x80001001
* Device id (pf/vf): 8086:1521 / 8086:1520
* Driver version(in-tree): 5.15.0-60-generic (Ubuntu22.04.3)(igb)
* Intel\ |reg| platforms with NVIDIA\ |reg| NICs combinations
* CPU:
* Intel\ |reg| Xeon\ |reg| Gold 6154 CPU @ 3.00GHz
* Intel\ |reg| Xeon\ |reg| CPU E5-2697A v4 @ 2.60GHz
* Intel\ |reg| Xeon\ |reg| CPU E5-2697 v3 @ 2.60GHz
* Intel\ |reg| Xeon\ |reg| CPU E5-2680 v2 @ 2.80GHz
* Intel\ |reg| Xeon\ |reg| CPU E5-2670 0 @ 2.60GHz
* Intel\ |reg| Xeon\ |reg| CPU E5-2650 v4 @ 2.20GHz
* Intel\ |reg| Xeon\ |reg| CPU E5-2650 v3 @ 2.30GHz
* Intel\ |reg| Xeon\ |reg| CPU E5-2640 @ 2.50GHz
* Intel\ |reg| Xeon\ |reg| CPU E5-2650 0 @ 2.00GHz
* Intel\ |reg| Xeon\ |reg| CPU E5-2620 v4 @ 2.10GHz
* OS:
* Red Hat Enterprise Linux release 9.1 (Plow)
* Red Hat Enterprise Linux release 8.6 (Ootpa)
* Red Hat Enterprise Linux release 8.4 (Ootpa)
* Red Hat Enterprise Linux Server release 7.9 (Maipo)
* Red Hat Enterprise Linux Server release 7.6 (Maipo)
* Ubuntu 22.04
* Ubuntu 20.04
* SUSE Enterprise Linux 15 SP2
* OFED:
* MLNX_OFED 23.07-0.5.1.2 and above
* upstream kernel:
* Linux 6.7.0-rc1 and above
* rdma-core:
* rdma-core-48.0 and above
* NICs
* NVIDIA\ |reg| ConnectX\ |reg|-4 Lx 25G MCX4121A-ACAT (2x25G)
* Host interface: PCI Express 3.0 x8
* Device ID: 15b3:1015
* Firmware version: 14.32.1010 and above
* NVIDIA\ |reg| ConnectX\ |reg|-4 Lx 50G MCX4131A-GCAT (1x50G)
* Host interface: PCI Express 3.0 x8
* Device ID: 15b3:1015
* Firmware version: 14.32.1010 and above
* NVIDIA\ |reg| ConnectX\ |reg|-5 100G MCX516A-CCAT (2x100G)
* Host interface: PCI Express 3.0 x16
* Device ID: 15b3:1017
* Firmware version: 16.35.2000 and above
* NVIDIA\ |reg| ConnectX\ |reg|-5 100G MCX516A-CCAT (2x100G)
* Host interface: PCI Express 3.0 x16
* Device ID: 15b3:1017
* Firmware version: 16.38.1900 and above
* NVIDIA\ |reg| ConnectX\ |reg|-5 100G MCX556A-ECAT (2x100G)
* Host interface: PCI Express 3.0 x16
* Device ID: 15b3:1017
* Firmware version: 16.38.1900 and above
* NVIDIA\ |reg| ConnectX\ |reg|-5 100G MCX556A-EDAT (2x100G)
* Host interface: PCI Express 3.0 x16
* Device ID: 15b3:1017
* Firmware version: 16.38.1900 and above
* NVIDIA\ |reg| ConnectX\ |reg|-5 Ex EN 100G MCX516A-CDAT (2x100G)
* Host interface: PCI Express 4.0 x16
* Device ID: 15b3:1019
* Firmware version: 16.38.1900 and above
* NVIDIA\ |reg| ConnectX\ |reg|-6 Dx EN 100G MCX623106AN-CDAT (2x100G)
* Host interface: PCI Express 4.0 x16
* Device ID: 15b3:101d
* Firmware version: 22.38.1900 and above
* NVIDIA\ |reg| ConnectX\ |reg|-6 Lx EN 25G MCX631102AN-ADAT (2x25G)
* Host interface: PCI Express 4.0 x8
* Device ID: 15b3:101f
* Firmware version: 26.38.1900 and above
* NVIDIA\ |reg| ConnectX\ |reg|-7 200G CX713106AE-HEA_QP1_Ax (2x200G)
* Host interface: PCI Express 5.0 x16
* Device ID: 15b3:1021
* Firmware version: 28.38.1900 and above
* NVIDIA\ |reg| BlueField\ |reg| SmartNIC
* NVIDIA\ |reg| BlueField\ |reg|-2 SmartNIC MT41686 - MBF2H332A-AEEOT_A1 (2x25G)
* Host interface: PCI Express 3.0 x16
* Device ID: 15b3:a2d6
* Firmware version: 24.38.1002 and above
* NVIDIA\ |reg| BlueField\ |reg|-3 P-Series DPU MT41692 - 900-9D3B6-00CV-AAB (2x200G)
* Host interface: PCI Express 5.0 x16
* Device ID: 15b3:a2dc
* Firmware version: 32.38.1002 and above
* Embedded software:
* Ubuntu 22.04
* MLNX_OFED 23.07-0.5.0.0 and above
* DOCA_2.2.0_BSP_4.2.0_Ubuntu_22.04-2.23-07
* DPDK application running on ARM cores
* IBM Power 9 platforms with NVIDIA\ |reg| NICs combinations
* CPU:
* POWER9 2.2 (pvr 004e 1202)
* OS:
* Ubuntu 20.04
* NICs:
* NVIDIA\ |reg| ConnectX\ |reg|-6 Dx 100G MCX623106AN-CDAT (2x100G)
* Host interface: PCI Express 4.0 x16
* Device ID: 15b3:101d
* Firmware version: 22.38.1900 and above
* NVIDIA\ |reg| ConnectX\ |reg|-7 200G CX713106AE-HEA_QP1_Ax (2x200G)
* Host interface: PCI Express 5.0 x16
* Device ID: 15b3:1021
* Firmware version: 28.38.1900 and above
* OFED:
* MLNX_OFED 23.07-0.5.1.2
|