1 .. SPDX-License-Identifier: BSD-3-Clause
2 Copyright(c) 2018 Intel Corporation.
7 The ice PMD (librte_pmd_ice) provides poll mode driver support for
8 10/25 Gbps IntelĀ® Ethernet 810 Series Network Adapters based on
9 the Intel Ethernet Controller E810.
15 - Identifying your adapter using `Intel Support
16 <http://www.intel.com/support>`_ and get the latest NVM/FW images.
18 - Follow the DPDK :ref:`Getting Started Guide for Linux <linux_gsg>` to setup the basic DPDK environment.
20 - To get better performance on Intel platforms, please follow the "How to get best performance with NICs on Intel platforms"
21 section of the :ref:`Getting Started Guide for Linux <linux_gsg>`.
24 Pre-Installation Configuration
25 ------------------------------
30 The following options can be modified in the ``config`` file.
31 Please note that enabling debugging options may affect system performance.
33 - ``CONFIG_RTE_LIBRTE_ICE_PMD`` (default ``y``)
35 Toggle compilation of the ``librte_pmd_ice`` driver.
37 - ``CONFIG_RTE_LIBRTE_ICE_DEBUG_*`` (default ``n``)
39 Toggle display of generic debugging messages.
41 - ``CONFIG_RTE_LIBRTE_ICE_RX_ALLOW_BULK_ALLOC`` (default ``y``)
43 Toggle bulk allocation for RX.
45 - ``CONFIG_RTE_LIBRTE_ICE_16BYTE_RX_DESC`` (default ``n``)
47 Toggle to use a 16-byte RX descriptor, by default the RX descriptor is 32 byte.
49 Runtime Config Options
50 ~~~~~~~~~~~~~~~~~~~~~~
52 - ``Maximum Number of Queue Pairs``
54 The maximum number of queue pairs is decided by HW. If not configured, APP
55 uses the number from HW. Users can check the number by calling the API
56 ``rte_eth_dev_info_get``.
57 If users want to limit the number of queues, they can set a smaller number
58 using EAL parameter like ``max_queue_pair_num=n``.
61 Driver compilation and testing
62 ------------------------------
64 Refer to the document :ref:`compiling and testing a PMD for a NIC <pmd_build_and_test>`
73 Vector PMD for RX and TX path are selected automatically. The paths
74 are chosen based on 2 conditions.
77 On the X86 platform, the driver checks if the CPU supports AVX2.
78 If it's supported, AVX2 paths will be chosen. If not, SSE is chosen.
80 - ``Offload features``
81 The supported HW offload features are described in the document ice_vec.ini.
82 If any not supported features are used, ICE vector PMD is disabled and the
83 normal paths are chosen.
85 Malicious driver detection (MDD)
86 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
88 It's not appropriate to send a packet, if this packet's destination MAC address
89 is just this port's MAC address. If SW tries to send such packets, HW will
90 report a MDD event and drop the packets.
92 The APPs based on DPDK should avoid providing such packets.
94 Sample Application Notes
95 ------------------------
100 Vlan filter only works when Promiscuous mode is off.
102 To start ``testpmd``, and add vlan 10 to port 0:
104 .. code-block:: console
106 ./app/testpmd -l 0-15 -n 4 -- -i
109 testpmd> rx_vlan add 10 0
111 Limitations or Known issues
112 ---------------------------
114 The Intel E810 requires a programmable pipeline package be downloaded
115 by the driver to support normal operations. The E810 has a limited
116 functionality built in to allow PXE boot and other use cases, but the
117 driver must download a package file during the driver initialization
118 stage. The file must be in the /lib/firmware/intel/ice/ddp directory
119 and it must be named ice.pkg. A symbolic link to this file is also ok.
120 The same package file is used by both the kernel driver and the DPDK PMD.
126 Ice code released in 19.02 is for evaluation only.