4 * Copyright(c) 2010-2017 Intel Corporation. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
11 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * * Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in
15 * the documentation and/or other materials provided with the
17 * * Neither the name of Intel Corporation nor the names of its
18 * contributors may be used to endorse or promote products derived
19 * from this software without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34 #include <sys/queue.h>
42 #include <netinet/in.h>
43 #include <rte_byteorder.h>
44 #include <rte_common.h>
45 #include <rte_cycles.h>
47 #include <rte_interrupts.h>
49 #include <rte_debug.h>
51 #include <rte_atomic.h>
52 #include <rte_branch_prediction.h>
53 #include <rte_memory.h>
54 #include <rte_memzone.h>
56 #include <rte_alarm.h>
57 #include <rte_ether.h>
58 #include <rte_ethdev.h>
59 #include <rte_ethdev_pci.h>
60 #include <rte_atomic.h>
61 #include <rte_malloc.h>
62 #include <rte_random.h>
64 #include <rte_hash_crc.h>
66 #include "ixgbe_logs.h"
67 #include "base/ixgbe_api.h"
68 #include "base/ixgbe_vf.h"
69 #include "base/ixgbe_common.h"
70 #include "ixgbe_ethdev.h"
71 #include "ixgbe_bypass.h"
72 #include "ixgbe_rxtx.h"
73 #include "base/ixgbe_type.h"
74 #include "base/ixgbe_phy.h"
75 #include "ixgbe_regs.h"
78 * High threshold controlling when to start sending XOFF frames. Must be at
79 * least 8 bytes less than receive packet buffer size. This value is in units
82 #define IXGBE_FC_HI 0x80
85 * Low threshold controlling when to start sending XON frames. This value is
86 * in units of 1024 bytes.
88 #define IXGBE_FC_LO 0x40
90 /* Default minimum inter-interrupt interval for EITR configuration */
91 #define IXGBE_MIN_INTER_INTERRUPT_INTERVAL_DEFAULT 0x79E
93 /* Timer value included in XOFF frames. */
94 #define IXGBE_FC_PAUSE 0x680
96 #define IXGBE_LINK_DOWN_CHECK_TIMEOUT 4000 /* ms */
97 #define IXGBE_LINK_UP_CHECK_TIMEOUT 1000 /* ms */
98 #define IXGBE_VMDQ_NUM_UC_MAC 4096 /* Maximum nb. of UC MAC addr. */
100 #define IXGBE_MMW_SIZE_DEFAULT 0x4
101 #define IXGBE_MMW_SIZE_JUMBO_FRAME 0x14
102 #define IXGBE_MAX_RING_DESC 4096 /* replicate define from rxtx */
105 * Default values for RX/TX configuration
107 #define IXGBE_DEFAULT_RX_FREE_THRESH 32
108 #define IXGBE_DEFAULT_RX_PTHRESH 8
109 #define IXGBE_DEFAULT_RX_HTHRESH 8
110 #define IXGBE_DEFAULT_RX_WTHRESH 0
112 #define IXGBE_DEFAULT_TX_FREE_THRESH 32
113 #define IXGBE_DEFAULT_TX_PTHRESH 32
114 #define IXGBE_DEFAULT_TX_HTHRESH 0
115 #define IXGBE_DEFAULT_TX_WTHRESH 0
116 #define IXGBE_DEFAULT_TX_RSBIT_THRESH 32
118 /* Bit shift and mask */
119 #define IXGBE_4_BIT_WIDTH (CHAR_BIT / 2)
120 #define IXGBE_4_BIT_MASK RTE_LEN2MASK(IXGBE_4_BIT_WIDTH, uint8_t)
121 #define IXGBE_8_BIT_WIDTH CHAR_BIT
122 #define IXGBE_8_BIT_MASK UINT8_MAX
124 #define IXGBEVF_PMD_NAME "rte_ixgbevf_pmd" /* PMD name */
126 #define IXGBE_QUEUE_STAT_COUNTERS (sizeof(hw_stats->qprc) / sizeof(hw_stats->qprc[0]))
128 #define IXGBE_HKEY_MAX_INDEX 10
130 /* Additional timesync values. */
131 #define NSEC_PER_SEC 1000000000L
132 #define IXGBE_INCVAL_10GB 0x66666666
133 #define IXGBE_INCVAL_1GB 0x40000000
134 #define IXGBE_INCVAL_100 0x50000000
135 #define IXGBE_INCVAL_SHIFT_10GB 28
136 #define IXGBE_INCVAL_SHIFT_1GB 24
137 #define IXGBE_INCVAL_SHIFT_100 21
138 #define IXGBE_INCVAL_SHIFT_82599 7
139 #define IXGBE_INCPER_SHIFT_82599 24
141 #define IXGBE_CYCLECOUNTER_MASK 0xffffffffffffffffULL
143 #define IXGBE_VT_CTL_POOLING_MODE_MASK 0x00030000
144 #define IXGBE_VT_CTL_POOLING_MODE_ETAG 0x00010000
145 #define DEFAULT_ETAG_ETYPE 0x893f
146 #define IXGBE_ETAG_ETYPE 0x00005084
147 #define IXGBE_ETAG_ETYPE_MASK 0x0000ffff
148 #define IXGBE_ETAG_ETYPE_VALID 0x80000000
149 #define IXGBE_RAH_ADTYPE 0x40000000
150 #define IXGBE_RAL_ETAG_FILTER_MASK 0x00003fff
151 #define IXGBE_VMVIR_TAGA_MASK 0x18000000
152 #define IXGBE_VMVIR_TAGA_ETAG_INSERT 0x08000000
153 #define IXGBE_VMTIR(_i) (0x00017000 + ((_i) * 4)) /* 64 of these (0-63) */
154 #define IXGBE_QDE_STRIP_TAG 0x00000004
155 #define IXGBE_VTEICR_MASK 0x07
157 #define IXGBE_EXVET_VET_EXT_SHIFT 16
158 #define IXGBE_DMATXCTL_VT_MASK 0xFFFF0000
160 static int eth_ixgbe_dev_init(struct rte_eth_dev *eth_dev);
161 static int eth_ixgbe_dev_uninit(struct rte_eth_dev *eth_dev);
162 static int ixgbe_fdir_filter_init(struct rte_eth_dev *eth_dev);
163 static int ixgbe_fdir_filter_uninit(struct rte_eth_dev *eth_dev);
164 static int ixgbe_l2_tn_filter_init(struct rte_eth_dev *eth_dev);
165 static int ixgbe_l2_tn_filter_uninit(struct rte_eth_dev *eth_dev);
166 static int ixgbe_ntuple_filter_uninit(struct rte_eth_dev *eth_dev);
167 static int ixgbe_dev_configure(struct rte_eth_dev *dev);
168 static int ixgbe_dev_start(struct rte_eth_dev *dev);
169 static void ixgbe_dev_stop(struct rte_eth_dev *dev);
170 static int ixgbe_dev_set_link_up(struct rte_eth_dev *dev);
171 static int ixgbe_dev_set_link_down(struct rte_eth_dev *dev);
172 static void ixgbe_dev_close(struct rte_eth_dev *dev);
173 static void ixgbe_dev_promiscuous_enable(struct rte_eth_dev *dev);
174 static void ixgbe_dev_promiscuous_disable(struct rte_eth_dev *dev);
175 static void ixgbe_dev_allmulticast_enable(struct rte_eth_dev *dev);
176 static void ixgbe_dev_allmulticast_disable(struct rte_eth_dev *dev);
177 static int ixgbe_dev_link_update(struct rte_eth_dev *dev,
178 int wait_to_complete);
179 static void ixgbe_dev_stats_get(struct rte_eth_dev *dev,
180 struct rte_eth_stats *stats);
181 static int ixgbe_dev_xstats_get(struct rte_eth_dev *dev,
182 struct rte_eth_xstat *xstats, unsigned n);
183 static int ixgbevf_dev_xstats_get(struct rte_eth_dev *dev,
184 struct rte_eth_xstat *xstats, unsigned n);
186 ixgbe_dev_xstats_get_by_id(struct rte_eth_dev *dev, const uint64_t *ids,
187 uint64_t *values, unsigned int n);
188 static void ixgbe_dev_stats_reset(struct rte_eth_dev *dev);
189 static void ixgbe_dev_xstats_reset(struct rte_eth_dev *dev);
190 static int ixgbe_dev_xstats_get_names(struct rte_eth_dev *dev,
191 struct rte_eth_xstat_name *xstats_names,
193 static int ixgbevf_dev_xstats_get_names(struct rte_eth_dev *dev,
194 struct rte_eth_xstat_name *xstats_names, unsigned limit);
195 static int ixgbe_dev_xstats_get_names_by_id(
196 struct rte_eth_dev *dev,
197 struct rte_eth_xstat_name *xstats_names,
200 static int ixgbe_dev_queue_stats_mapping_set(struct rte_eth_dev *eth_dev,
204 static int ixgbe_fw_version_get(struct rte_eth_dev *dev, char *fw_version,
206 static void ixgbe_dev_info_get(struct rte_eth_dev *dev,
207 struct rte_eth_dev_info *dev_info);
208 static const uint32_t *ixgbe_dev_supported_ptypes_get(struct rte_eth_dev *dev);
209 static void ixgbevf_dev_info_get(struct rte_eth_dev *dev,
210 struct rte_eth_dev_info *dev_info);
211 static int ixgbe_dev_mtu_set(struct rte_eth_dev *dev, uint16_t mtu);
213 static int ixgbe_vlan_filter_set(struct rte_eth_dev *dev,
214 uint16_t vlan_id, int on);
215 static int ixgbe_vlan_tpid_set(struct rte_eth_dev *dev,
216 enum rte_vlan_type vlan_type,
218 static void ixgbe_vlan_hw_strip_bitmap_set(struct rte_eth_dev *dev,
219 uint16_t queue, bool on);
220 static void ixgbe_vlan_strip_queue_set(struct rte_eth_dev *dev, uint16_t queue,
222 static void ixgbe_vlan_offload_set(struct rte_eth_dev *dev, int mask);
223 static void ixgbe_vlan_hw_strip_enable(struct rte_eth_dev *dev, uint16_t queue);
224 static void ixgbe_vlan_hw_strip_disable(struct rte_eth_dev *dev, uint16_t queue);
225 static void ixgbe_vlan_hw_extend_enable(struct rte_eth_dev *dev);
226 static void ixgbe_vlan_hw_extend_disable(struct rte_eth_dev *dev);
228 static int ixgbe_dev_led_on(struct rte_eth_dev *dev);
229 static int ixgbe_dev_led_off(struct rte_eth_dev *dev);
230 static int ixgbe_flow_ctrl_get(struct rte_eth_dev *dev,
231 struct rte_eth_fc_conf *fc_conf);
232 static int ixgbe_flow_ctrl_set(struct rte_eth_dev *dev,
233 struct rte_eth_fc_conf *fc_conf);
234 static int ixgbe_priority_flow_ctrl_set(struct rte_eth_dev *dev,
235 struct rte_eth_pfc_conf *pfc_conf);
236 static int ixgbe_dev_rss_reta_update(struct rte_eth_dev *dev,
237 struct rte_eth_rss_reta_entry64 *reta_conf,
239 static int ixgbe_dev_rss_reta_query(struct rte_eth_dev *dev,
240 struct rte_eth_rss_reta_entry64 *reta_conf,
242 static void ixgbe_dev_link_status_print(struct rte_eth_dev *dev);
243 static int ixgbe_dev_lsc_interrupt_setup(struct rte_eth_dev *dev);
244 static int ixgbe_dev_macsec_interrupt_setup(struct rte_eth_dev *dev);
245 static int ixgbe_dev_rxq_interrupt_setup(struct rte_eth_dev *dev);
246 static int ixgbe_dev_interrupt_get_status(struct rte_eth_dev *dev);
247 static int ixgbe_dev_interrupt_action(struct rte_eth_dev *dev,
248 struct rte_intr_handle *handle);
249 static void ixgbe_dev_interrupt_handler(void *param);
250 static void ixgbe_dev_interrupt_delayed_handler(void *param);
251 static int ixgbe_add_rar(struct rte_eth_dev *dev, struct ether_addr *mac_addr,
252 uint32_t index, uint32_t pool);
253 static void ixgbe_remove_rar(struct rte_eth_dev *dev, uint32_t index);
254 static void ixgbe_set_default_mac_addr(struct rte_eth_dev *dev,
255 struct ether_addr *mac_addr);
256 static void ixgbe_dcb_init(struct ixgbe_hw *hw, struct ixgbe_dcb_config *dcb_config);
257 static bool is_device_supported(struct rte_eth_dev *dev,
258 struct rte_pci_driver *drv);
260 /* For Virtual Function support */
261 static int eth_ixgbevf_dev_init(struct rte_eth_dev *eth_dev);
262 static int eth_ixgbevf_dev_uninit(struct rte_eth_dev *eth_dev);
263 static int ixgbevf_dev_configure(struct rte_eth_dev *dev);
264 static int ixgbevf_dev_start(struct rte_eth_dev *dev);
265 static int ixgbevf_dev_link_update(struct rte_eth_dev *dev,
266 int wait_to_complete);
267 static void ixgbevf_dev_stop(struct rte_eth_dev *dev);
268 static void ixgbevf_dev_close(struct rte_eth_dev *dev);
269 static void ixgbevf_intr_disable(struct ixgbe_hw *hw);
270 static void ixgbevf_intr_enable(struct ixgbe_hw *hw);
271 static void ixgbevf_dev_stats_get(struct rte_eth_dev *dev,
272 struct rte_eth_stats *stats);
273 static void ixgbevf_dev_stats_reset(struct rte_eth_dev *dev);
274 static int ixgbevf_vlan_filter_set(struct rte_eth_dev *dev,
275 uint16_t vlan_id, int on);
276 static void ixgbevf_vlan_strip_queue_set(struct rte_eth_dev *dev,
277 uint16_t queue, int on);
278 static void ixgbevf_vlan_offload_set(struct rte_eth_dev *dev, int mask);
279 static void ixgbevf_set_vfta_all(struct rte_eth_dev *dev, bool on);
280 static int ixgbevf_dev_rx_queue_intr_enable(struct rte_eth_dev *dev,
282 static int ixgbevf_dev_rx_queue_intr_disable(struct rte_eth_dev *dev,
284 static void ixgbevf_set_ivar_map(struct ixgbe_hw *hw, int8_t direction,
285 uint8_t queue, uint8_t msix_vector);
286 static void ixgbevf_configure_msix(struct rte_eth_dev *dev);
287 static void ixgbevf_dev_allmulticast_enable(struct rte_eth_dev *dev);
288 static void ixgbevf_dev_allmulticast_disable(struct rte_eth_dev *dev);
290 /* For Eth VMDQ APIs support */
291 static int ixgbe_uc_hash_table_set(struct rte_eth_dev *dev, struct
292 ether_addr * mac_addr, uint8_t on);
293 static int ixgbe_uc_all_hash_table_set(struct rte_eth_dev *dev, uint8_t on);
294 static int ixgbe_mirror_rule_set(struct rte_eth_dev *dev,
295 struct rte_eth_mirror_conf *mirror_conf,
296 uint8_t rule_id, uint8_t on);
297 static int ixgbe_mirror_rule_reset(struct rte_eth_dev *dev,
299 static int ixgbe_dev_rx_queue_intr_enable(struct rte_eth_dev *dev,
301 static int ixgbe_dev_rx_queue_intr_disable(struct rte_eth_dev *dev,
303 static void ixgbe_set_ivar_map(struct ixgbe_hw *hw, int8_t direction,
304 uint8_t queue, uint8_t msix_vector);
305 static void ixgbe_configure_msix(struct rte_eth_dev *dev);
307 static int ixgbe_set_queue_rate_limit(struct rte_eth_dev *dev,
308 uint16_t queue_idx, uint16_t tx_rate);
310 static int ixgbevf_add_mac_addr(struct rte_eth_dev *dev,
311 struct ether_addr *mac_addr,
312 uint32_t index, uint32_t pool);
313 static void ixgbevf_remove_mac_addr(struct rte_eth_dev *dev, uint32_t index);
314 static void ixgbevf_set_default_mac_addr(struct rte_eth_dev *dev,
315 struct ether_addr *mac_addr);
316 static int ixgbe_syn_filter_get(struct rte_eth_dev *dev,
317 struct rte_eth_syn_filter *filter);
318 static int ixgbe_syn_filter_handle(struct rte_eth_dev *dev,
319 enum rte_filter_op filter_op,
321 static int ixgbe_add_5tuple_filter(struct rte_eth_dev *dev,
322 struct ixgbe_5tuple_filter *filter);
323 static void ixgbe_remove_5tuple_filter(struct rte_eth_dev *dev,
324 struct ixgbe_5tuple_filter *filter);
325 static int ixgbe_ntuple_filter_handle(struct rte_eth_dev *dev,
326 enum rte_filter_op filter_op,
328 static int ixgbe_get_ntuple_filter(struct rte_eth_dev *dev,
329 struct rte_eth_ntuple_filter *filter);
330 static int ixgbe_ethertype_filter_handle(struct rte_eth_dev *dev,
331 enum rte_filter_op filter_op,
333 static int ixgbe_get_ethertype_filter(struct rte_eth_dev *dev,
334 struct rte_eth_ethertype_filter *filter);
335 static int ixgbe_dev_filter_ctrl(struct rte_eth_dev *dev,
336 enum rte_filter_type filter_type,
337 enum rte_filter_op filter_op,
339 static int ixgbevf_dev_set_mtu(struct rte_eth_dev *dev, uint16_t mtu);
341 static int ixgbe_dev_set_mc_addr_list(struct rte_eth_dev *dev,
342 struct ether_addr *mc_addr_set,
343 uint32_t nb_mc_addr);
344 static int ixgbe_dev_get_dcb_info(struct rte_eth_dev *dev,
345 struct rte_eth_dcb_info *dcb_info);
347 static int ixgbe_get_reg_length(struct rte_eth_dev *dev);
348 static int ixgbe_get_regs(struct rte_eth_dev *dev,
349 struct rte_dev_reg_info *regs);
350 static int ixgbe_get_eeprom_length(struct rte_eth_dev *dev);
351 static int ixgbe_get_eeprom(struct rte_eth_dev *dev,
352 struct rte_dev_eeprom_info *eeprom);
353 static int ixgbe_set_eeprom(struct rte_eth_dev *dev,
354 struct rte_dev_eeprom_info *eeprom);
356 static int ixgbevf_get_reg_length(struct rte_eth_dev *dev);
357 static int ixgbevf_get_regs(struct rte_eth_dev *dev,
358 struct rte_dev_reg_info *regs);
360 static int ixgbe_timesync_enable(struct rte_eth_dev *dev);
361 static int ixgbe_timesync_disable(struct rte_eth_dev *dev);
362 static int ixgbe_timesync_read_rx_timestamp(struct rte_eth_dev *dev,
363 struct timespec *timestamp,
365 static int ixgbe_timesync_read_tx_timestamp(struct rte_eth_dev *dev,
366 struct timespec *timestamp);
367 static int ixgbe_timesync_adjust_time(struct rte_eth_dev *dev, int64_t delta);
368 static int ixgbe_timesync_read_time(struct rte_eth_dev *dev,
369 struct timespec *timestamp);
370 static int ixgbe_timesync_write_time(struct rte_eth_dev *dev,
371 const struct timespec *timestamp);
372 static void ixgbevf_dev_interrupt_handler(void *param);
374 static int ixgbe_dev_l2_tunnel_eth_type_conf
375 (struct rte_eth_dev *dev, struct rte_eth_l2_tunnel_conf *l2_tunnel);
376 static int ixgbe_dev_l2_tunnel_offload_set
377 (struct rte_eth_dev *dev,
378 struct rte_eth_l2_tunnel_conf *l2_tunnel,
381 static int ixgbe_dev_l2_tunnel_filter_handle(struct rte_eth_dev *dev,
382 enum rte_filter_op filter_op,
385 static int ixgbe_dev_udp_tunnel_port_add(struct rte_eth_dev *dev,
386 struct rte_eth_udp_tunnel *udp_tunnel);
387 static int ixgbe_dev_udp_tunnel_port_del(struct rte_eth_dev *dev,
388 struct rte_eth_udp_tunnel *udp_tunnel);
389 static int ixgbe_filter_restore(struct rte_eth_dev *dev);
390 static void ixgbe_l2_tunnel_conf(struct rte_eth_dev *dev);
393 * Define VF Stats MACRO for Non "cleared on read" register
395 #define UPDATE_VF_STAT(reg, last, cur) \
397 uint32_t latest = IXGBE_READ_REG(hw, reg); \
398 cur += (latest - last) & UINT_MAX; \
402 #define UPDATE_VF_STAT_36BIT(lsb, msb, last, cur) \
404 u64 new_lsb = IXGBE_READ_REG(hw, lsb); \
405 u64 new_msb = IXGBE_READ_REG(hw, msb); \
406 u64 latest = ((new_msb << 32) | new_lsb); \
407 cur += (0x1000000000LL + latest - last) & 0xFFFFFFFFFLL; \
411 #define IXGBE_SET_HWSTRIP(h, q) do {\
412 uint32_t idx = (q) / (sizeof((h)->bitmap[0]) * NBBY); \
413 uint32_t bit = (q) % (sizeof((h)->bitmap[0]) * NBBY); \
414 (h)->bitmap[idx] |= 1 << bit;\
417 #define IXGBE_CLEAR_HWSTRIP(h, q) do {\
418 uint32_t idx = (q) / (sizeof((h)->bitmap[0]) * NBBY); \
419 uint32_t bit = (q) % (sizeof((h)->bitmap[0]) * NBBY); \
420 (h)->bitmap[idx] &= ~(1 << bit);\
423 #define IXGBE_GET_HWSTRIP(h, q, r) do {\
424 uint32_t idx = (q) / (sizeof((h)->bitmap[0]) * NBBY); \
425 uint32_t bit = (q) % (sizeof((h)->bitmap[0]) * NBBY); \
426 (r) = (h)->bitmap[idx] >> bit & 1;\
430 * The set of PCI devices this driver supports
432 static const struct rte_pci_id pci_id_ixgbe_map[] = {
433 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598) },
434 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598_BX) },
435 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598AF_DUAL_PORT) },
436 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598AF_SINGLE_PORT) },
437 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598AT) },
438 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598AT2) },
439 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598EB_SFP_LOM) },
440 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598EB_CX4) },
441 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598_CX4_DUAL_PORT) },
442 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598_DA_DUAL_PORT) },
443 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598_SR_DUAL_PORT_EM) },
444 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598EB_XF_LR) },
445 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_KX4) },
446 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_KX4_MEZZ) },
447 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_KR) },
448 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_COMBO_BACKPLANE) },
449 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_SUBDEV_ID_82599_KX4_KR_MEZZ) },
450 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_CX4) },
451 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_SFP) },
452 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_SUBDEV_ID_82599_SFP) },
453 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_SUBDEV_ID_82599_RNDC) },
454 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_SUBDEV_ID_82599_560FLR) },
455 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_SUBDEV_ID_82599_ECNA_DP) },
456 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_BACKPLANE_FCOE) },
457 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_SFP_FCOE) },
458 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_SFP_EM) },
459 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_SFP_SF2) },
460 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_SFP_SF_QP) },
461 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_QSFP_SF_QP) },
462 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599EN_SFP) },
463 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_XAUI_LOM) },
464 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_T3_LOM) },
465 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_LS) },
466 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X540T) },
467 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X540T1) },
468 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_X_SFP) },
469 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_X_10G_T) },
470 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_X_1G_T) },
471 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550T) },
472 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550T1) },
473 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_KR) },
474 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_KR_L) },
475 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_SFP_N) },
476 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_SGMII) },
477 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_SGMII_L) },
478 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_10G_T) },
479 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_QSFP) },
480 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_QSFP_N) },
481 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_SFP) },
482 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_1G_T) },
483 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_1G_T_L) },
484 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_X_KX4) },
485 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_X_KR) },
486 #ifdef RTE_LIBRTE_IXGBE_BYPASS
487 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_BYPASS) },
489 { .vendor_id = 0, /* sentinel */ },
493 * The set of PCI devices this driver supports (for 82599 VF)
495 static const struct rte_pci_id pci_id_ixgbevf_map[] = {
496 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_VF) },
497 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_VF_HV) },
498 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X540_VF) },
499 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X540_VF_HV) },
500 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550_VF_HV) },
501 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550_VF) },
502 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_VF) },
503 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_VF_HV) },
504 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_X_VF) },
505 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_X_VF_HV) },
506 { .vendor_id = 0, /* sentinel */ },
509 static const struct rte_eth_desc_lim rx_desc_lim = {
510 .nb_max = IXGBE_MAX_RING_DESC,
511 .nb_min = IXGBE_MIN_RING_DESC,
512 .nb_align = IXGBE_RXD_ALIGN,
515 static const struct rte_eth_desc_lim tx_desc_lim = {
516 .nb_max = IXGBE_MAX_RING_DESC,
517 .nb_min = IXGBE_MIN_RING_DESC,
518 .nb_align = IXGBE_TXD_ALIGN,
519 .nb_seg_max = IXGBE_TX_MAX_SEG,
520 .nb_mtu_seg_max = IXGBE_TX_MAX_SEG,
523 static const struct eth_dev_ops ixgbe_eth_dev_ops = {
524 .dev_configure = ixgbe_dev_configure,
525 .dev_start = ixgbe_dev_start,
526 .dev_stop = ixgbe_dev_stop,
527 .dev_set_link_up = ixgbe_dev_set_link_up,
528 .dev_set_link_down = ixgbe_dev_set_link_down,
529 .dev_close = ixgbe_dev_close,
530 .promiscuous_enable = ixgbe_dev_promiscuous_enable,
531 .promiscuous_disable = ixgbe_dev_promiscuous_disable,
532 .allmulticast_enable = ixgbe_dev_allmulticast_enable,
533 .allmulticast_disable = ixgbe_dev_allmulticast_disable,
534 .link_update = ixgbe_dev_link_update,
535 .stats_get = ixgbe_dev_stats_get,
536 .xstats_get = ixgbe_dev_xstats_get,
537 .xstats_get_by_id = ixgbe_dev_xstats_get_by_id,
538 .stats_reset = ixgbe_dev_stats_reset,
539 .xstats_reset = ixgbe_dev_xstats_reset,
540 .xstats_get_names = ixgbe_dev_xstats_get_names,
541 .xstats_get_names_by_id = ixgbe_dev_xstats_get_names_by_id,
542 .queue_stats_mapping_set = ixgbe_dev_queue_stats_mapping_set,
543 .fw_version_get = ixgbe_fw_version_get,
544 .dev_infos_get = ixgbe_dev_info_get,
545 .dev_supported_ptypes_get = ixgbe_dev_supported_ptypes_get,
546 .mtu_set = ixgbe_dev_mtu_set,
547 .vlan_filter_set = ixgbe_vlan_filter_set,
548 .vlan_tpid_set = ixgbe_vlan_tpid_set,
549 .vlan_offload_set = ixgbe_vlan_offload_set,
550 .vlan_strip_queue_set = ixgbe_vlan_strip_queue_set,
551 .rx_queue_start = ixgbe_dev_rx_queue_start,
552 .rx_queue_stop = ixgbe_dev_rx_queue_stop,
553 .tx_queue_start = ixgbe_dev_tx_queue_start,
554 .tx_queue_stop = ixgbe_dev_tx_queue_stop,
555 .rx_queue_setup = ixgbe_dev_rx_queue_setup,
556 .rx_queue_intr_enable = ixgbe_dev_rx_queue_intr_enable,
557 .rx_queue_intr_disable = ixgbe_dev_rx_queue_intr_disable,
558 .rx_queue_release = ixgbe_dev_rx_queue_release,
559 .rx_queue_count = ixgbe_dev_rx_queue_count,
560 .rx_descriptor_done = ixgbe_dev_rx_descriptor_done,
561 .rx_descriptor_status = ixgbe_dev_rx_descriptor_status,
562 .tx_descriptor_status = ixgbe_dev_tx_descriptor_status,
563 .tx_queue_setup = ixgbe_dev_tx_queue_setup,
564 .tx_queue_release = ixgbe_dev_tx_queue_release,
565 .dev_led_on = ixgbe_dev_led_on,
566 .dev_led_off = ixgbe_dev_led_off,
567 .flow_ctrl_get = ixgbe_flow_ctrl_get,
568 .flow_ctrl_set = ixgbe_flow_ctrl_set,
569 .priority_flow_ctrl_set = ixgbe_priority_flow_ctrl_set,
570 .mac_addr_add = ixgbe_add_rar,
571 .mac_addr_remove = ixgbe_remove_rar,
572 .mac_addr_set = ixgbe_set_default_mac_addr,
573 .uc_hash_table_set = ixgbe_uc_hash_table_set,
574 .uc_all_hash_table_set = ixgbe_uc_all_hash_table_set,
575 .mirror_rule_set = ixgbe_mirror_rule_set,
576 .mirror_rule_reset = ixgbe_mirror_rule_reset,
577 .set_queue_rate_limit = ixgbe_set_queue_rate_limit,
578 .reta_update = ixgbe_dev_rss_reta_update,
579 .reta_query = ixgbe_dev_rss_reta_query,
580 .rss_hash_update = ixgbe_dev_rss_hash_update,
581 .rss_hash_conf_get = ixgbe_dev_rss_hash_conf_get,
582 .filter_ctrl = ixgbe_dev_filter_ctrl,
583 .set_mc_addr_list = ixgbe_dev_set_mc_addr_list,
584 .rxq_info_get = ixgbe_rxq_info_get,
585 .txq_info_get = ixgbe_txq_info_get,
586 .timesync_enable = ixgbe_timesync_enable,
587 .timesync_disable = ixgbe_timesync_disable,
588 .timesync_read_rx_timestamp = ixgbe_timesync_read_rx_timestamp,
589 .timesync_read_tx_timestamp = ixgbe_timesync_read_tx_timestamp,
590 .get_reg = ixgbe_get_regs,
591 .get_eeprom_length = ixgbe_get_eeprom_length,
592 .get_eeprom = ixgbe_get_eeprom,
593 .set_eeprom = ixgbe_set_eeprom,
594 .get_dcb_info = ixgbe_dev_get_dcb_info,
595 .timesync_adjust_time = ixgbe_timesync_adjust_time,
596 .timesync_read_time = ixgbe_timesync_read_time,
597 .timesync_write_time = ixgbe_timesync_write_time,
598 .l2_tunnel_eth_type_conf = ixgbe_dev_l2_tunnel_eth_type_conf,
599 .l2_tunnel_offload_set = ixgbe_dev_l2_tunnel_offload_set,
600 .udp_tunnel_port_add = ixgbe_dev_udp_tunnel_port_add,
601 .udp_tunnel_port_del = ixgbe_dev_udp_tunnel_port_del,
602 .tm_ops_get = ixgbe_tm_ops_get,
606 * dev_ops for virtual function, bare necessities for basic vf
607 * operation have been implemented
609 static const struct eth_dev_ops ixgbevf_eth_dev_ops = {
610 .dev_configure = ixgbevf_dev_configure,
611 .dev_start = ixgbevf_dev_start,
612 .dev_stop = ixgbevf_dev_stop,
613 .link_update = ixgbevf_dev_link_update,
614 .stats_get = ixgbevf_dev_stats_get,
615 .xstats_get = ixgbevf_dev_xstats_get,
616 .stats_reset = ixgbevf_dev_stats_reset,
617 .xstats_reset = ixgbevf_dev_stats_reset,
618 .xstats_get_names = ixgbevf_dev_xstats_get_names,
619 .dev_close = ixgbevf_dev_close,
620 .allmulticast_enable = ixgbevf_dev_allmulticast_enable,
621 .allmulticast_disable = ixgbevf_dev_allmulticast_disable,
622 .dev_infos_get = ixgbevf_dev_info_get,
623 .dev_supported_ptypes_get = ixgbe_dev_supported_ptypes_get,
624 .mtu_set = ixgbevf_dev_set_mtu,
625 .vlan_filter_set = ixgbevf_vlan_filter_set,
626 .vlan_strip_queue_set = ixgbevf_vlan_strip_queue_set,
627 .vlan_offload_set = ixgbevf_vlan_offload_set,
628 .rx_queue_setup = ixgbe_dev_rx_queue_setup,
629 .rx_queue_release = ixgbe_dev_rx_queue_release,
630 .rx_descriptor_done = ixgbe_dev_rx_descriptor_done,
631 .rx_descriptor_status = ixgbe_dev_rx_descriptor_status,
632 .tx_descriptor_status = ixgbe_dev_tx_descriptor_status,
633 .tx_queue_setup = ixgbe_dev_tx_queue_setup,
634 .tx_queue_release = ixgbe_dev_tx_queue_release,
635 .rx_queue_intr_enable = ixgbevf_dev_rx_queue_intr_enable,
636 .rx_queue_intr_disable = ixgbevf_dev_rx_queue_intr_disable,
637 .mac_addr_add = ixgbevf_add_mac_addr,
638 .mac_addr_remove = ixgbevf_remove_mac_addr,
639 .set_mc_addr_list = ixgbe_dev_set_mc_addr_list,
640 .rxq_info_get = ixgbe_rxq_info_get,
641 .txq_info_get = ixgbe_txq_info_get,
642 .mac_addr_set = ixgbevf_set_default_mac_addr,
643 .get_reg = ixgbevf_get_regs,
644 .reta_update = ixgbe_dev_rss_reta_update,
645 .reta_query = ixgbe_dev_rss_reta_query,
646 .rss_hash_update = ixgbe_dev_rss_hash_update,
647 .rss_hash_conf_get = ixgbe_dev_rss_hash_conf_get,
650 /* store statistics names and its offset in stats structure */
651 struct rte_ixgbe_xstats_name_off {
652 char name[RTE_ETH_XSTATS_NAME_SIZE];
656 static const struct rte_ixgbe_xstats_name_off rte_ixgbe_stats_strings[] = {
657 {"rx_crc_errors", offsetof(struct ixgbe_hw_stats, crcerrs)},
658 {"rx_illegal_byte_errors", offsetof(struct ixgbe_hw_stats, illerrc)},
659 {"rx_error_bytes", offsetof(struct ixgbe_hw_stats, errbc)},
660 {"mac_local_errors", offsetof(struct ixgbe_hw_stats, mlfc)},
661 {"mac_remote_errors", offsetof(struct ixgbe_hw_stats, mrfc)},
662 {"rx_length_errors", offsetof(struct ixgbe_hw_stats, rlec)},
663 {"tx_xon_packets", offsetof(struct ixgbe_hw_stats, lxontxc)},
664 {"rx_xon_packets", offsetof(struct ixgbe_hw_stats, lxonrxc)},
665 {"tx_xoff_packets", offsetof(struct ixgbe_hw_stats, lxofftxc)},
666 {"rx_xoff_packets", offsetof(struct ixgbe_hw_stats, lxoffrxc)},
667 {"rx_size_64_packets", offsetof(struct ixgbe_hw_stats, prc64)},
668 {"rx_size_65_to_127_packets", offsetof(struct ixgbe_hw_stats, prc127)},
669 {"rx_size_128_to_255_packets", offsetof(struct ixgbe_hw_stats, prc255)},
670 {"rx_size_256_to_511_packets", offsetof(struct ixgbe_hw_stats, prc511)},
671 {"rx_size_512_to_1023_packets", offsetof(struct ixgbe_hw_stats,
673 {"rx_size_1024_to_max_packets", offsetof(struct ixgbe_hw_stats,
675 {"rx_broadcast_packets", offsetof(struct ixgbe_hw_stats, bprc)},
676 {"rx_multicast_packets", offsetof(struct ixgbe_hw_stats, mprc)},
677 {"rx_fragment_errors", offsetof(struct ixgbe_hw_stats, rfc)},
678 {"rx_undersize_errors", offsetof(struct ixgbe_hw_stats, ruc)},
679 {"rx_oversize_errors", offsetof(struct ixgbe_hw_stats, roc)},
680 {"rx_jabber_errors", offsetof(struct ixgbe_hw_stats, rjc)},
681 {"rx_management_packets", offsetof(struct ixgbe_hw_stats, mngprc)},
682 {"rx_management_dropped", offsetof(struct ixgbe_hw_stats, mngpdc)},
683 {"tx_management_packets", offsetof(struct ixgbe_hw_stats, mngptc)},
684 {"rx_total_packets", offsetof(struct ixgbe_hw_stats, tpr)},
685 {"rx_total_bytes", offsetof(struct ixgbe_hw_stats, tor)},
686 {"tx_total_packets", offsetof(struct ixgbe_hw_stats, tpt)},
687 {"tx_size_64_packets", offsetof(struct ixgbe_hw_stats, ptc64)},
688 {"tx_size_65_to_127_packets", offsetof(struct ixgbe_hw_stats, ptc127)},
689 {"tx_size_128_to_255_packets", offsetof(struct ixgbe_hw_stats, ptc255)},
690 {"tx_size_256_to_511_packets", offsetof(struct ixgbe_hw_stats, ptc511)},
691 {"tx_size_512_to_1023_packets", offsetof(struct ixgbe_hw_stats,
693 {"tx_size_1024_to_max_packets", offsetof(struct ixgbe_hw_stats,
695 {"tx_multicast_packets", offsetof(struct ixgbe_hw_stats, mptc)},
696 {"tx_broadcast_packets", offsetof(struct ixgbe_hw_stats, bptc)},
697 {"rx_mac_short_packet_dropped", offsetof(struct ixgbe_hw_stats, mspdc)},
698 {"rx_l3_l4_xsum_error", offsetof(struct ixgbe_hw_stats, xec)},
700 {"flow_director_added_filters", offsetof(struct ixgbe_hw_stats,
702 {"flow_director_removed_filters", offsetof(struct ixgbe_hw_stats,
704 {"flow_director_filter_add_errors", offsetof(struct ixgbe_hw_stats,
706 {"flow_director_filter_remove_errors", offsetof(struct ixgbe_hw_stats,
708 {"flow_director_matched_filters", offsetof(struct ixgbe_hw_stats,
710 {"flow_director_missed_filters", offsetof(struct ixgbe_hw_stats,
713 {"rx_fcoe_crc_errors", offsetof(struct ixgbe_hw_stats, fccrc)},
714 {"rx_fcoe_dropped", offsetof(struct ixgbe_hw_stats, fcoerpdc)},
715 {"rx_fcoe_mbuf_allocation_errors", offsetof(struct ixgbe_hw_stats,
717 {"rx_fcoe_packets", offsetof(struct ixgbe_hw_stats, fcoeprc)},
718 {"tx_fcoe_packets", offsetof(struct ixgbe_hw_stats, fcoeptc)},
719 {"rx_fcoe_bytes", offsetof(struct ixgbe_hw_stats, fcoedwrc)},
720 {"tx_fcoe_bytes", offsetof(struct ixgbe_hw_stats, fcoedwtc)},
721 {"rx_fcoe_no_direct_data_placement", offsetof(struct ixgbe_hw_stats,
723 {"rx_fcoe_no_direct_data_placement_ext_buff",
724 offsetof(struct ixgbe_hw_stats, fcoe_noddp_ext_buff)},
726 {"tx_flow_control_xon_packets", offsetof(struct ixgbe_hw_stats,
728 {"rx_flow_control_xon_packets", offsetof(struct ixgbe_hw_stats,
730 {"tx_flow_control_xoff_packets", offsetof(struct ixgbe_hw_stats,
732 {"rx_flow_control_xoff_packets", offsetof(struct ixgbe_hw_stats,
734 {"rx_total_missed_packets", offsetof(struct ixgbe_hw_stats, mpctotal)},
737 #define IXGBE_NB_HW_STATS (sizeof(rte_ixgbe_stats_strings) / \
738 sizeof(rte_ixgbe_stats_strings[0]))
740 /* MACsec statistics */
741 static const struct rte_ixgbe_xstats_name_off rte_ixgbe_macsec_strings[] = {
742 {"out_pkts_untagged", offsetof(struct ixgbe_macsec_stats,
744 {"out_pkts_encrypted", offsetof(struct ixgbe_macsec_stats,
745 out_pkts_encrypted)},
746 {"out_pkts_protected", offsetof(struct ixgbe_macsec_stats,
747 out_pkts_protected)},
748 {"out_octets_encrypted", offsetof(struct ixgbe_macsec_stats,
749 out_octets_encrypted)},
750 {"out_octets_protected", offsetof(struct ixgbe_macsec_stats,
751 out_octets_protected)},
752 {"in_pkts_untagged", offsetof(struct ixgbe_macsec_stats,
754 {"in_pkts_badtag", offsetof(struct ixgbe_macsec_stats,
756 {"in_pkts_nosci", offsetof(struct ixgbe_macsec_stats,
758 {"in_pkts_unknownsci", offsetof(struct ixgbe_macsec_stats,
759 in_pkts_unknownsci)},
760 {"in_octets_decrypted", offsetof(struct ixgbe_macsec_stats,
761 in_octets_decrypted)},
762 {"in_octets_validated", offsetof(struct ixgbe_macsec_stats,
763 in_octets_validated)},
764 {"in_pkts_unchecked", offsetof(struct ixgbe_macsec_stats,
766 {"in_pkts_delayed", offsetof(struct ixgbe_macsec_stats,
768 {"in_pkts_late", offsetof(struct ixgbe_macsec_stats,
770 {"in_pkts_ok", offsetof(struct ixgbe_macsec_stats,
772 {"in_pkts_invalid", offsetof(struct ixgbe_macsec_stats,
774 {"in_pkts_notvalid", offsetof(struct ixgbe_macsec_stats,
776 {"in_pkts_unusedsa", offsetof(struct ixgbe_macsec_stats,
778 {"in_pkts_notusingsa", offsetof(struct ixgbe_macsec_stats,
779 in_pkts_notusingsa)},
782 #define IXGBE_NB_MACSEC_STATS (sizeof(rte_ixgbe_macsec_strings) / \
783 sizeof(rte_ixgbe_macsec_strings[0]))
785 /* Per-queue statistics */
786 static const struct rte_ixgbe_xstats_name_off rte_ixgbe_rxq_strings[] = {
787 {"mbuf_allocation_errors", offsetof(struct ixgbe_hw_stats, rnbc)},
788 {"dropped", offsetof(struct ixgbe_hw_stats, mpc)},
789 {"xon_packets", offsetof(struct ixgbe_hw_stats, pxonrxc)},
790 {"xoff_packets", offsetof(struct ixgbe_hw_stats, pxoffrxc)},
793 #define IXGBE_NB_RXQ_PRIO_STATS (sizeof(rte_ixgbe_rxq_strings) / \
794 sizeof(rte_ixgbe_rxq_strings[0]))
795 #define IXGBE_NB_RXQ_PRIO_VALUES 8
797 static const struct rte_ixgbe_xstats_name_off rte_ixgbe_txq_strings[] = {
798 {"xon_packets", offsetof(struct ixgbe_hw_stats, pxontxc)},
799 {"xoff_packets", offsetof(struct ixgbe_hw_stats, pxofftxc)},
800 {"xon_to_xoff_packets", offsetof(struct ixgbe_hw_stats,
804 #define IXGBE_NB_TXQ_PRIO_STATS (sizeof(rte_ixgbe_txq_strings) / \
805 sizeof(rte_ixgbe_txq_strings[0]))
806 #define IXGBE_NB_TXQ_PRIO_VALUES 8
808 static const struct rte_ixgbe_xstats_name_off rte_ixgbevf_stats_strings[] = {
809 {"rx_multicast_packets", offsetof(struct ixgbevf_hw_stats, vfmprc)},
812 #define IXGBEVF_NB_XSTATS (sizeof(rte_ixgbevf_stats_strings) / \
813 sizeof(rte_ixgbevf_stats_strings[0]))
816 * Atomically reads the link status information from global
817 * structure rte_eth_dev.
820 * - Pointer to the structure rte_eth_dev to read from.
821 * - Pointer to the buffer to be saved with the link status.
824 * - On success, zero.
825 * - On failure, negative value.
828 rte_ixgbe_dev_atomic_read_link_status(struct rte_eth_dev *dev,
829 struct rte_eth_link *link)
831 struct rte_eth_link *dst = link;
832 struct rte_eth_link *src = &(dev->data->dev_link);
834 if (rte_atomic64_cmpset((uint64_t *)dst, *(uint64_t *)dst,
835 *(uint64_t *)src) == 0)
842 * Atomically writes the link status information into global
843 * structure rte_eth_dev.
846 * - Pointer to the structure rte_eth_dev to read from.
847 * - Pointer to the buffer to be saved with the link status.
850 * - On success, zero.
851 * - On failure, negative value.
854 rte_ixgbe_dev_atomic_write_link_status(struct rte_eth_dev *dev,
855 struct rte_eth_link *link)
857 struct rte_eth_link *dst = &(dev->data->dev_link);
858 struct rte_eth_link *src = link;
860 if (rte_atomic64_cmpset((uint64_t *)dst, *(uint64_t *)dst,
861 *(uint64_t *)src) == 0)
868 * This function is the same as ixgbe_is_sfp() in base/ixgbe.h.
871 ixgbe_is_sfp(struct ixgbe_hw *hw)
873 switch (hw->phy.type) {
874 case ixgbe_phy_sfp_avago:
875 case ixgbe_phy_sfp_ftl:
876 case ixgbe_phy_sfp_intel:
877 case ixgbe_phy_sfp_unknown:
878 case ixgbe_phy_sfp_passive_tyco:
879 case ixgbe_phy_sfp_passive_unknown:
886 static inline int32_t
887 ixgbe_pf_reset_hw(struct ixgbe_hw *hw)
892 status = ixgbe_reset_hw(hw);
894 ctrl_ext = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT);
895 /* Set PF Reset Done bit so PF/VF Mail Ops can work */
896 ctrl_ext |= IXGBE_CTRL_EXT_PFRSTD;
897 IXGBE_WRITE_REG(hw, IXGBE_CTRL_EXT, ctrl_ext);
898 IXGBE_WRITE_FLUSH(hw);
900 if (status == IXGBE_ERR_SFP_NOT_PRESENT)
901 status = IXGBE_SUCCESS;
906 ixgbe_enable_intr(struct rte_eth_dev *dev)
908 struct ixgbe_interrupt *intr =
909 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
910 struct ixgbe_hw *hw =
911 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
913 IXGBE_WRITE_REG(hw, IXGBE_EIMS, intr->mask);
914 IXGBE_WRITE_FLUSH(hw);
918 * This function is based on ixgbe_disable_intr() in base/ixgbe.h.
921 ixgbe_disable_intr(struct ixgbe_hw *hw)
923 PMD_INIT_FUNC_TRACE();
925 if (hw->mac.type == ixgbe_mac_82598EB) {
926 IXGBE_WRITE_REG(hw, IXGBE_EIMC, ~0);
928 IXGBE_WRITE_REG(hw, IXGBE_EIMC, 0xFFFF0000);
929 IXGBE_WRITE_REG(hw, IXGBE_EIMC_EX(0), ~0);
930 IXGBE_WRITE_REG(hw, IXGBE_EIMC_EX(1), ~0);
932 IXGBE_WRITE_FLUSH(hw);
936 * This function resets queue statistics mapping registers.
937 * From Niantic datasheet, Initialization of Statistics section:
938 * "...if software requires the queue counters, the RQSMR and TQSM registers
939 * must be re-programmed following a device reset.
942 ixgbe_reset_qstat_mappings(struct ixgbe_hw *hw)
946 for (i = 0; i != IXGBE_NB_STAT_MAPPING_REGS; i++) {
947 IXGBE_WRITE_REG(hw, IXGBE_RQSMR(i), 0);
948 IXGBE_WRITE_REG(hw, IXGBE_TQSM(i), 0);
954 ixgbe_dev_queue_stats_mapping_set(struct rte_eth_dev *eth_dev,
959 #define QSM_REG_NB_BITS_PER_QMAP_FIELD 8
960 #define NB_QMAP_FIELDS_PER_QSM_REG 4
961 #define QMAP_FIELD_RESERVED_BITS_MASK 0x0f
963 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(eth_dev->data->dev_private);
964 struct ixgbe_stat_mapping_registers *stat_mappings =
965 IXGBE_DEV_PRIVATE_TO_STAT_MAPPINGS(eth_dev->data->dev_private);
966 uint32_t qsmr_mask = 0;
967 uint32_t clearing_mask = QMAP_FIELD_RESERVED_BITS_MASK;
971 if ((hw->mac.type != ixgbe_mac_82599EB) &&
972 (hw->mac.type != ixgbe_mac_X540) &&
973 (hw->mac.type != ixgbe_mac_X550) &&
974 (hw->mac.type != ixgbe_mac_X550EM_x) &&
975 (hw->mac.type != ixgbe_mac_X550EM_a))
978 PMD_INIT_LOG(DEBUG, "Setting port %d, %s queue_id %d to stat index %d",
979 (int)(eth_dev->data->port_id), is_rx ? "RX" : "TX",
982 n = (uint8_t)(queue_id / NB_QMAP_FIELDS_PER_QSM_REG);
983 if (n >= IXGBE_NB_STAT_MAPPING_REGS) {
984 PMD_INIT_LOG(ERR, "Nb of stat mapping registers exceeded");
987 offset = (uint8_t)(queue_id % NB_QMAP_FIELDS_PER_QSM_REG);
989 /* Now clear any previous stat_idx set */
990 clearing_mask <<= (QSM_REG_NB_BITS_PER_QMAP_FIELD * offset);
992 stat_mappings->tqsm[n] &= ~clearing_mask;
994 stat_mappings->rqsmr[n] &= ~clearing_mask;
996 q_map = (uint32_t)stat_idx;
997 q_map &= QMAP_FIELD_RESERVED_BITS_MASK;
998 qsmr_mask = q_map << (QSM_REG_NB_BITS_PER_QMAP_FIELD * offset);
1000 stat_mappings->tqsm[n] |= qsmr_mask;
1002 stat_mappings->rqsmr[n] |= qsmr_mask;
1004 PMD_INIT_LOG(DEBUG, "Set port %d, %s queue_id %d to stat index %d",
1005 (int)(eth_dev->data->port_id), is_rx ? "RX" : "TX",
1006 queue_id, stat_idx);
1007 PMD_INIT_LOG(DEBUG, "%s[%d] = 0x%08x", is_rx ? "RQSMR" : "TQSM", n,
1008 is_rx ? stat_mappings->rqsmr[n] : stat_mappings->tqsm[n]);
1010 /* Now write the mapping in the appropriate register */
1012 PMD_INIT_LOG(DEBUG, "Write 0x%x to RX IXGBE stat mapping reg:%d",
1013 stat_mappings->rqsmr[n], n);
1014 IXGBE_WRITE_REG(hw, IXGBE_RQSMR(n), stat_mappings->rqsmr[n]);
1016 PMD_INIT_LOG(DEBUG, "Write 0x%x to TX IXGBE stat mapping reg:%d",
1017 stat_mappings->tqsm[n], n);
1018 IXGBE_WRITE_REG(hw, IXGBE_TQSM(n), stat_mappings->tqsm[n]);
1024 ixgbe_restore_statistics_mapping(struct rte_eth_dev *dev)
1026 struct ixgbe_stat_mapping_registers *stat_mappings =
1027 IXGBE_DEV_PRIVATE_TO_STAT_MAPPINGS(dev->data->dev_private);
1028 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1031 /* write whatever was in stat mapping table to the NIC */
1032 for (i = 0; i < IXGBE_NB_STAT_MAPPING_REGS; i++) {
1034 IXGBE_WRITE_REG(hw, IXGBE_RQSMR(i), stat_mappings->rqsmr[i]);
1037 IXGBE_WRITE_REG(hw, IXGBE_TQSM(i), stat_mappings->tqsm[i]);
1042 ixgbe_dcb_init(struct ixgbe_hw *hw, struct ixgbe_dcb_config *dcb_config)
1045 struct ixgbe_dcb_tc_config *tc;
1046 uint8_t dcb_max_tc = IXGBE_DCB_MAX_TRAFFIC_CLASS;
1048 dcb_config->num_tcs.pg_tcs = dcb_max_tc;
1049 dcb_config->num_tcs.pfc_tcs = dcb_max_tc;
1050 for (i = 0; i < dcb_max_tc; i++) {
1051 tc = &dcb_config->tc_config[i];
1052 tc->path[IXGBE_DCB_TX_CONFIG].bwg_id = i;
1053 tc->path[IXGBE_DCB_TX_CONFIG].bwg_percent =
1054 (uint8_t)(100/dcb_max_tc + (i & 1));
1055 tc->path[IXGBE_DCB_RX_CONFIG].bwg_id = i;
1056 tc->path[IXGBE_DCB_RX_CONFIG].bwg_percent =
1057 (uint8_t)(100/dcb_max_tc + (i & 1));
1058 tc->pfc = ixgbe_dcb_pfc_disabled;
1061 /* Initialize default user to priority mapping, UPx->TC0 */
1062 tc = &dcb_config->tc_config[0];
1063 tc->path[IXGBE_DCB_TX_CONFIG].up_to_tc_bitmap = 0xFF;
1064 tc->path[IXGBE_DCB_RX_CONFIG].up_to_tc_bitmap = 0xFF;
1065 for (i = 0; i < IXGBE_DCB_MAX_BW_GROUP; i++) {
1066 dcb_config->bw_percentage[IXGBE_DCB_TX_CONFIG][i] = 100;
1067 dcb_config->bw_percentage[IXGBE_DCB_RX_CONFIG][i] = 100;
1069 dcb_config->rx_pba_cfg = ixgbe_dcb_pba_equal;
1070 dcb_config->pfc_mode_enable = false;
1071 dcb_config->vt_mode = true;
1072 dcb_config->round_robin_enable = false;
1073 /* support all DCB capabilities in 82599 */
1074 dcb_config->support.capabilities = 0xFF;
1076 /*we only support 4 Tcs for X540, X550 */
1077 if (hw->mac.type == ixgbe_mac_X540 ||
1078 hw->mac.type == ixgbe_mac_X550 ||
1079 hw->mac.type == ixgbe_mac_X550EM_x ||
1080 hw->mac.type == ixgbe_mac_X550EM_a) {
1081 dcb_config->num_tcs.pg_tcs = 4;
1082 dcb_config->num_tcs.pfc_tcs = 4;
1087 * Ensure that all locks are released before first NVM or PHY access
1090 ixgbe_swfw_lock_reset(struct ixgbe_hw *hw)
1095 * Phy lock should not fail in this early stage. If this is the case,
1096 * it is due to an improper exit of the application.
1097 * So force the release of the faulty lock. Release of common lock
1098 * is done automatically by swfw_sync function.
1100 mask = IXGBE_GSSR_PHY0_SM << hw->bus.func;
1101 if (ixgbe_acquire_swfw_semaphore(hw, mask) < 0) {
1102 PMD_DRV_LOG(DEBUG, "SWFW phy%d lock released", hw->bus.func);
1104 ixgbe_release_swfw_semaphore(hw, mask);
1107 * These ones are more tricky since they are common to all ports; but
1108 * swfw_sync retries last long enough (1s) to be almost sure that if
1109 * lock can not be taken it is due to an improper lock of the
1112 mask = IXGBE_GSSR_EEP_SM | IXGBE_GSSR_MAC_CSR_SM | IXGBE_GSSR_SW_MNG_SM;
1113 if (ixgbe_acquire_swfw_semaphore(hw, mask) < 0) {
1114 PMD_DRV_LOG(DEBUG, "SWFW common locks released");
1116 ixgbe_release_swfw_semaphore(hw, mask);
1120 * This function is based on code in ixgbe_attach() in base/ixgbe.c.
1121 * It returns 0 on success.
1124 eth_ixgbe_dev_init(struct rte_eth_dev *eth_dev)
1126 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(eth_dev);
1127 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
1128 struct ixgbe_hw *hw =
1129 IXGBE_DEV_PRIVATE_TO_HW(eth_dev->data->dev_private);
1130 struct ixgbe_vfta *shadow_vfta =
1131 IXGBE_DEV_PRIVATE_TO_VFTA(eth_dev->data->dev_private);
1132 struct ixgbe_hwstrip *hwstrip =
1133 IXGBE_DEV_PRIVATE_TO_HWSTRIP_BITMAP(eth_dev->data->dev_private);
1134 struct ixgbe_dcb_config *dcb_config =
1135 IXGBE_DEV_PRIVATE_TO_DCB_CFG(eth_dev->data->dev_private);
1136 struct ixgbe_filter_info *filter_info =
1137 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(eth_dev->data->dev_private);
1138 struct ixgbe_bw_conf *bw_conf =
1139 IXGBE_DEV_PRIVATE_TO_BW_CONF(eth_dev->data->dev_private);
1144 PMD_INIT_FUNC_TRACE();
1146 eth_dev->dev_ops = &ixgbe_eth_dev_ops;
1147 eth_dev->rx_pkt_burst = &ixgbe_recv_pkts;
1148 eth_dev->tx_pkt_burst = &ixgbe_xmit_pkts;
1149 eth_dev->tx_pkt_prepare = &ixgbe_prep_pkts;
1152 * For secondary processes, we don't initialise any further as primary
1153 * has already done this work. Only check we don't need a different
1154 * RX and TX function.
1156 if (rte_eal_process_type() != RTE_PROC_PRIMARY) {
1157 struct ixgbe_tx_queue *txq;
1158 /* TX queue function in primary, set by last queue initialized
1159 * Tx queue may not initialized by primary process
1161 if (eth_dev->data->tx_queues) {
1162 txq = eth_dev->data->tx_queues[eth_dev->data->nb_tx_queues-1];
1163 ixgbe_set_tx_function(eth_dev, txq);
1165 /* Use default TX function if we get here */
1166 PMD_INIT_LOG(NOTICE, "No TX queues configured yet. "
1167 "Using default TX function.");
1170 ixgbe_set_rx_function(eth_dev);
1175 rte_eth_copy_pci_info(eth_dev, pci_dev);
1176 eth_dev->data->dev_flags |= RTE_ETH_DEV_DETACHABLE;
1178 /* Vendor and Device ID need to be set before init of shared code */
1179 hw->device_id = pci_dev->id.device_id;
1180 hw->vendor_id = pci_dev->id.vendor_id;
1181 hw->hw_addr = (void *)pci_dev->mem_resource[0].addr;
1182 hw->allow_unsupported_sfp = 1;
1184 /* Initialize the shared code (base driver) */
1185 #ifdef RTE_LIBRTE_IXGBE_BYPASS
1186 diag = ixgbe_bypass_init_shared_code(hw);
1188 diag = ixgbe_init_shared_code(hw);
1189 #endif /* RTE_LIBRTE_IXGBE_BYPASS */
1191 if (diag != IXGBE_SUCCESS) {
1192 PMD_INIT_LOG(ERR, "Shared code init failed: %d", diag);
1196 /* pick up the PCI bus settings for reporting later */
1197 ixgbe_get_bus_info(hw);
1199 /* Unlock any pending hardware semaphore */
1200 ixgbe_swfw_lock_reset(hw);
1202 /* Initialize DCB configuration*/
1203 memset(dcb_config, 0, sizeof(struct ixgbe_dcb_config));
1204 ixgbe_dcb_init(hw, dcb_config);
1205 /* Get Hardware Flow Control setting */
1206 hw->fc.requested_mode = ixgbe_fc_full;
1207 hw->fc.current_mode = ixgbe_fc_full;
1208 hw->fc.pause_time = IXGBE_FC_PAUSE;
1209 for (i = 0; i < IXGBE_DCB_MAX_TRAFFIC_CLASS; i++) {
1210 hw->fc.low_water[i] = IXGBE_FC_LO;
1211 hw->fc.high_water[i] = IXGBE_FC_HI;
1213 hw->fc.send_xon = 1;
1215 /* Make sure we have a good EEPROM before we read from it */
1216 diag = ixgbe_validate_eeprom_checksum(hw, &csum);
1217 if (diag != IXGBE_SUCCESS) {
1218 PMD_INIT_LOG(ERR, "The EEPROM checksum is not valid: %d", diag);
1222 #ifdef RTE_LIBRTE_IXGBE_BYPASS
1223 diag = ixgbe_bypass_init_hw(hw);
1225 diag = ixgbe_init_hw(hw);
1226 #endif /* RTE_LIBRTE_IXGBE_BYPASS */
1229 * Devices with copper phys will fail to initialise if ixgbe_init_hw()
1230 * is called too soon after the kernel driver unbinding/binding occurs.
1231 * The failure occurs in ixgbe_identify_phy_generic() for all devices,
1232 * but for non-copper devies, ixgbe_identify_sfp_module_generic() is
1233 * also called. See ixgbe_identify_phy_82599(). The reason for the
1234 * failure is not known, and only occuts when virtualisation features
1235 * are disabled in the bios. A delay of 100ms was found to be enough by
1236 * trial-and-error, and is doubled to be safe.
1238 if (diag && (hw->mac.ops.get_media_type(hw) == ixgbe_media_type_copper)) {
1240 diag = ixgbe_init_hw(hw);
1243 if (diag == IXGBE_ERR_SFP_NOT_PRESENT)
1244 diag = IXGBE_SUCCESS;
1246 if (diag == IXGBE_ERR_EEPROM_VERSION) {
1247 PMD_INIT_LOG(ERR, "This device is a pre-production adapter/"
1248 "LOM. Please be aware there may be issues associated "
1249 "with your hardware.");
1250 PMD_INIT_LOG(ERR, "If you are experiencing problems "
1251 "please contact your Intel or hardware representative "
1252 "who provided you with this hardware.");
1253 } else if (diag == IXGBE_ERR_SFP_NOT_SUPPORTED)
1254 PMD_INIT_LOG(ERR, "Unsupported SFP+ Module");
1256 PMD_INIT_LOG(ERR, "Hardware Initialization Failure: %d", diag);
1260 /* Reset the hw statistics */
1261 ixgbe_dev_stats_reset(eth_dev);
1263 /* disable interrupt */
1264 ixgbe_disable_intr(hw);
1266 /* reset mappings for queue statistics hw counters*/
1267 ixgbe_reset_qstat_mappings(hw);
1269 /* Allocate memory for storing MAC addresses */
1270 eth_dev->data->mac_addrs = rte_zmalloc("ixgbe", ETHER_ADDR_LEN *
1271 hw->mac.num_rar_entries, 0);
1272 if (eth_dev->data->mac_addrs == NULL) {
1274 "Failed to allocate %u bytes needed to store "
1276 ETHER_ADDR_LEN * hw->mac.num_rar_entries);
1279 /* Copy the permanent MAC address */
1280 ether_addr_copy((struct ether_addr *) hw->mac.perm_addr,
1281 ð_dev->data->mac_addrs[0]);
1283 /* Allocate memory for storing hash filter MAC addresses */
1284 eth_dev->data->hash_mac_addrs = rte_zmalloc("ixgbe", ETHER_ADDR_LEN *
1285 IXGBE_VMDQ_NUM_UC_MAC, 0);
1286 if (eth_dev->data->hash_mac_addrs == NULL) {
1288 "Failed to allocate %d bytes needed to store MAC addresses",
1289 ETHER_ADDR_LEN * IXGBE_VMDQ_NUM_UC_MAC);
1293 /* initialize the vfta */
1294 memset(shadow_vfta, 0, sizeof(*shadow_vfta));
1296 /* initialize the hw strip bitmap*/
1297 memset(hwstrip, 0, sizeof(*hwstrip));
1299 /* initialize PF if max_vfs not zero */
1300 ixgbe_pf_host_init(eth_dev);
1302 ctrl_ext = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT);
1303 /* let hardware know driver is loaded */
1304 ctrl_ext |= IXGBE_CTRL_EXT_DRV_LOAD;
1305 /* Set PF Reset Done bit so PF/VF Mail Ops can work */
1306 ctrl_ext |= IXGBE_CTRL_EXT_PFRSTD;
1307 IXGBE_WRITE_REG(hw, IXGBE_CTRL_EXT, ctrl_ext);
1308 IXGBE_WRITE_FLUSH(hw);
1310 if (ixgbe_is_sfp(hw) && hw->phy.sfp_type != ixgbe_sfp_type_not_present)
1311 PMD_INIT_LOG(DEBUG, "MAC: %d, PHY: %d, SFP+: %d",
1312 (int) hw->mac.type, (int) hw->phy.type,
1313 (int) hw->phy.sfp_type);
1315 PMD_INIT_LOG(DEBUG, "MAC: %d, PHY: %d",
1316 (int) hw->mac.type, (int) hw->phy.type);
1318 PMD_INIT_LOG(DEBUG, "port %d vendorID=0x%x deviceID=0x%x",
1319 eth_dev->data->port_id, pci_dev->id.vendor_id,
1320 pci_dev->id.device_id);
1322 rte_intr_callback_register(intr_handle,
1323 ixgbe_dev_interrupt_handler, eth_dev);
1325 /* enable uio/vfio intr/eventfd mapping */
1326 rte_intr_enable(intr_handle);
1328 /* enable support intr */
1329 ixgbe_enable_intr(eth_dev);
1331 /* initialize filter info */
1332 memset(filter_info, 0,
1333 sizeof(struct ixgbe_filter_info));
1335 /* initialize 5tuple filter list */
1336 TAILQ_INIT(&filter_info->fivetuple_list);
1338 /* initialize flow director filter list & hash */
1339 ixgbe_fdir_filter_init(eth_dev);
1341 /* initialize l2 tunnel filter list & hash */
1342 ixgbe_l2_tn_filter_init(eth_dev);
1344 TAILQ_INIT(&filter_ntuple_list);
1345 TAILQ_INIT(&filter_ethertype_list);
1346 TAILQ_INIT(&filter_syn_list);
1347 TAILQ_INIT(&filter_fdir_list);
1348 TAILQ_INIT(&filter_l2_tunnel_list);
1349 TAILQ_INIT(&ixgbe_flow_list);
1351 /* initialize bandwidth configuration info */
1352 memset(bw_conf, 0, sizeof(struct ixgbe_bw_conf));
1354 /* initialize Traffic Manager configuration */
1355 ixgbe_tm_conf_init(eth_dev);
1361 eth_ixgbe_dev_uninit(struct rte_eth_dev *eth_dev)
1363 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(eth_dev);
1364 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
1365 struct ixgbe_hw *hw;
1367 PMD_INIT_FUNC_TRACE();
1369 if (rte_eal_process_type() != RTE_PROC_PRIMARY)
1372 hw = IXGBE_DEV_PRIVATE_TO_HW(eth_dev->data->dev_private);
1374 if (hw->adapter_stopped == 0)
1375 ixgbe_dev_close(eth_dev);
1377 eth_dev->dev_ops = NULL;
1378 eth_dev->rx_pkt_burst = NULL;
1379 eth_dev->tx_pkt_burst = NULL;
1381 /* Unlock any pending hardware semaphore */
1382 ixgbe_swfw_lock_reset(hw);
1384 /* disable uio intr before callback unregister */
1385 rte_intr_disable(intr_handle);
1386 rte_intr_callback_unregister(intr_handle,
1387 ixgbe_dev_interrupt_handler, eth_dev);
1389 /* uninitialize PF if max_vfs not zero */
1390 ixgbe_pf_host_uninit(eth_dev);
1392 rte_free(eth_dev->data->mac_addrs);
1393 eth_dev->data->mac_addrs = NULL;
1395 rte_free(eth_dev->data->hash_mac_addrs);
1396 eth_dev->data->hash_mac_addrs = NULL;
1398 /* remove all the fdir filters & hash */
1399 ixgbe_fdir_filter_uninit(eth_dev);
1401 /* remove all the L2 tunnel filters & hash */
1402 ixgbe_l2_tn_filter_uninit(eth_dev);
1404 /* Remove all ntuple filters of the device */
1405 ixgbe_ntuple_filter_uninit(eth_dev);
1407 /* clear all the filters list */
1408 ixgbe_filterlist_flush();
1410 /* Remove all Traffic Manager configuration */
1411 ixgbe_tm_conf_uninit(eth_dev);
1416 static int ixgbe_ntuple_filter_uninit(struct rte_eth_dev *eth_dev)
1418 struct ixgbe_filter_info *filter_info =
1419 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(eth_dev->data->dev_private);
1420 struct ixgbe_5tuple_filter *p_5tuple;
1422 while ((p_5tuple = TAILQ_FIRST(&filter_info->fivetuple_list))) {
1423 TAILQ_REMOVE(&filter_info->fivetuple_list,
1428 memset(filter_info->fivetuple_mask, 0,
1429 sizeof(uint32_t) * IXGBE_5TUPLE_ARRAY_SIZE);
1434 static int ixgbe_fdir_filter_uninit(struct rte_eth_dev *eth_dev)
1436 struct ixgbe_hw_fdir_info *fdir_info =
1437 IXGBE_DEV_PRIVATE_TO_FDIR_INFO(eth_dev->data->dev_private);
1438 struct ixgbe_fdir_filter *fdir_filter;
1440 if (fdir_info->hash_map)
1441 rte_free(fdir_info->hash_map);
1442 if (fdir_info->hash_handle)
1443 rte_hash_free(fdir_info->hash_handle);
1445 while ((fdir_filter = TAILQ_FIRST(&fdir_info->fdir_list))) {
1446 TAILQ_REMOVE(&fdir_info->fdir_list,
1449 rte_free(fdir_filter);
1455 static int ixgbe_l2_tn_filter_uninit(struct rte_eth_dev *eth_dev)
1457 struct ixgbe_l2_tn_info *l2_tn_info =
1458 IXGBE_DEV_PRIVATE_TO_L2_TN_INFO(eth_dev->data->dev_private);
1459 struct ixgbe_l2_tn_filter *l2_tn_filter;
1461 if (l2_tn_info->hash_map)
1462 rte_free(l2_tn_info->hash_map);
1463 if (l2_tn_info->hash_handle)
1464 rte_hash_free(l2_tn_info->hash_handle);
1466 while ((l2_tn_filter = TAILQ_FIRST(&l2_tn_info->l2_tn_list))) {
1467 TAILQ_REMOVE(&l2_tn_info->l2_tn_list,
1470 rte_free(l2_tn_filter);
1476 static int ixgbe_fdir_filter_init(struct rte_eth_dev *eth_dev)
1478 struct ixgbe_hw_fdir_info *fdir_info =
1479 IXGBE_DEV_PRIVATE_TO_FDIR_INFO(eth_dev->data->dev_private);
1480 char fdir_hash_name[RTE_HASH_NAMESIZE];
1481 struct rte_hash_parameters fdir_hash_params = {
1482 .name = fdir_hash_name,
1483 .entries = IXGBE_MAX_FDIR_FILTER_NUM,
1484 .key_len = sizeof(union ixgbe_atr_input),
1485 .hash_func = rte_hash_crc,
1486 .hash_func_init_val = 0,
1487 .socket_id = rte_socket_id(),
1490 TAILQ_INIT(&fdir_info->fdir_list);
1491 snprintf(fdir_hash_name, RTE_HASH_NAMESIZE,
1492 "fdir_%s", eth_dev->device->name);
1493 fdir_info->hash_handle = rte_hash_create(&fdir_hash_params);
1494 if (!fdir_info->hash_handle) {
1495 PMD_INIT_LOG(ERR, "Failed to create fdir hash table!");
1498 fdir_info->hash_map = rte_zmalloc("ixgbe",
1499 sizeof(struct ixgbe_fdir_filter *) *
1500 IXGBE_MAX_FDIR_FILTER_NUM,
1502 if (!fdir_info->hash_map) {
1504 "Failed to allocate memory for fdir hash map!");
1507 fdir_info->mask_added = FALSE;
1512 static int ixgbe_l2_tn_filter_init(struct rte_eth_dev *eth_dev)
1514 struct ixgbe_l2_tn_info *l2_tn_info =
1515 IXGBE_DEV_PRIVATE_TO_L2_TN_INFO(eth_dev->data->dev_private);
1516 char l2_tn_hash_name[RTE_HASH_NAMESIZE];
1517 struct rte_hash_parameters l2_tn_hash_params = {
1518 .name = l2_tn_hash_name,
1519 .entries = IXGBE_MAX_L2_TN_FILTER_NUM,
1520 .key_len = sizeof(struct ixgbe_l2_tn_key),
1521 .hash_func = rte_hash_crc,
1522 .hash_func_init_val = 0,
1523 .socket_id = rte_socket_id(),
1526 TAILQ_INIT(&l2_tn_info->l2_tn_list);
1527 snprintf(l2_tn_hash_name, RTE_HASH_NAMESIZE,
1528 "l2_tn_%s", eth_dev->device->name);
1529 l2_tn_info->hash_handle = rte_hash_create(&l2_tn_hash_params);
1530 if (!l2_tn_info->hash_handle) {
1531 PMD_INIT_LOG(ERR, "Failed to create L2 TN hash table!");
1534 l2_tn_info->hash_map = rte_zmalloc("ixgbe",
1535 sizeof(struct ixgbe_l2_tn_filter *) *
1536 IXGBE_MAX_L2_TN_FILTER_NUM,
1538 if (!l2_tn_info->hash_map) {
1540 "Failed to allocate memory for L2 TN hash map!");
1543 l2_tn_info->e_tag_en = FALSE;
1544 l2_tn_info->e_tag_fwd_en = FALSE;
1545 l2_tn_info->e_tag_ether_type = DEFAULT_ETAG_ETYPE;
1550 * Negotiate mailbox API version with the PF.
1551 * After reset API version is always set to the basic one (ixgbe_mbox_api_10).
1552 * Then we try to negotiate starting with the most recent one.
1553 * If all negotiation attempts fail, then we will proceed with
1554 * the default one (ixgbe_mbox_api_10).
1557 ixgbevf_negotiate_api(struct ixgbe_hw *hw)
1561 /* start with highest supported, proceed down */
1562 static const enum ixgbe_pfvf_api_rev sup_ver[] = {
1569 i != RTE_DIM(sup_ver) &&
1570 ixgbevf_negotiate_api_version(hw, sup_ver[i]) != 0;
1576 generate_random_mac_addr(struct ether_addr *mac_addr)
1580 /* Set Organizationally Unique Identifier (OUI) prefix. */
1581 mac_addr->addr_bytes[0] = 0x00;
1582 mac_addr->addr_bytes[1] = 0x09;
1583 mac_addr->addr_bytes[2] = 0xC0;
1584 /* Force indication of locally assigned MAC address. */
1585 mac_addr->addr_bytes[0] |= ETHER_LOCAL_ADMIN_ADDR;
1586 /* Generate the last 3 bytes of the MAC address with a random number. */
1587 random = rte_rand();
1588 memcpy(&mac_addr->addr_bytes[3], &random, 3);
1592 * Virtual Function device init
1595 eth_ixgbevf_dev_init(struct rte_eth_dev *eth_dev)
1599 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(eth_dev);
1600 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
1601 struct ixgbe_hw *hw =
1602 IXGBE_DEV_PRIVATE_TO_HW(eth_dev->data->dev_private);
1603 struct ixgbe_vfta *shadow_vfta =
1604 IXGBE_DEV_PRIVATE_TO_VFTA(eth_dev->data->dev_private);
1605 struct ixgbe_hwstrip *hwstrip =
1606 IXGBE_DEV_PRIVATE_TO_HWSTRIP_BITMAP(eth_dev->data->dev_private);
1607 struct ether_addr *perm_addr = (struct ether_addr *) hw->mac.perm_addr;
1609 PMD_INIT_FUNC_TRACE();
1611 eth_dev->dev_ops = &ixgbevf_eth_dev_ops;
1612 eth_dev->rx_pkt_burst = &ixgbe_recv_pkts;
1613 eth_dev->tx_pkt_burst = &ixgbe_xmit_pkts;
1615 /* for secondary processes, we don't initialise any further as primary
1616 * has already done this work. Only check we don't need a different
1619 if (rte_eal_process_type() != RTE_PROC_PRIMARY) {
1620 struct ixgbe_tx_queue *txq;
1621 /* TX queue function in primary, set by last queue initialized
1622 * Tx queue may not initialized by primary process
1624 if (eth_dev->data->tx_queues) {
1625 txq = eth_dev->data->tx_queues[eth_dev->data->nb_tx_queues - 1];
1626 ixgbe_set_tx_function(eth_dev, txq);
1628 /* Use default TX function if we get here */
1629 PMD_INIT_LOG(NOTICE,
1630 "No TX queues configured yet. Using default TX function.");
1633 ixgbe_set_rx_function(eth_dev);
1638 rte_eth_copy_pci_info(eth_dev, pci_dev);
1639 eth_dev->data->dev_flags |= RTE_ETH_DEV_DETACHABLE;
1641 hw->device_id = pci_dev->id.device_id;
1642 hw->vendor_id = pci_dev->id.vendor_id;
1643 hw->hw_addr = (void *)pci_dev->mem_resource[0].addr;
1645 /* initialize the vfta */
1646 memset(shadow_vfta, 0, sizeof(*shadow_vfta));
1648 /* initialize the hw strip bitmap*/
1649 memset(hwstrip, 0, sizeof(*hwstrip));
1651 /* Initialize the shared code (base driver) */
1652 diag = ixgbe_init_shared_code(hw);
1653 if (diag != IXGBE_SUCCESS) {
1654 PMD_INIT_LOG(ERR, "Shared code init failed for ixgbevf: %d", diag);
1658 /* init_mailbox_params */
1659 hw->mbx.ops.init_params(hw);
1661 /* Reset the hw statistics */
1662 ixgbevf_dev_stats_reset(eth_dev);
1664 /* Disable the interrupts for VF */
1665 ixgbevf_intr_disable(hw);
1667 hw->mac.num_rar_entries = 128; /* The MAX of the underlying PF */
1668 diag = hw->mac.ops.reset_hw(hw);
1671 * The VF reset operation returns the IXGBE_ERR_INVALID_MAC_ADDR when
1672 * the underlying PF driver has not assigned a MAC address to the VF.
1673 * In this case, assign a random MAC address.
1675 if ((diag != IXGBE_SUCCESS) && (diag != IXGBE_ERR_INVALID_MAC_ADDR)) {
1676 PMD_INIT_LOG(ERR, "VF Initialization Failure: %d", diag);
1680 /* negotiate mailbox API version to use with the PF. */
1681 ixgbevf_negotiate_api(hw);
1683 /* Get Rx/Tx queue count via mailbox, which is ready after reset_hw */
1684 ixgbevf_get_queues(hw, &tcs, &tc);
1686 /* Allocate memory for storing MAC addresses */
1687 eth_dev->data->mac_addrs = rte_zmalloc("ixgbevf", ETHER_ADDR_LEN *
1688 hw->mac.num_rar_entries, 0);
1689 if (eth_dev->data->mac_addrs == NULL) {
1691 "Failed to allocate %u bytes needed to store "
1693 ETHER_ADDR_LEN * hw->mac.num_rar_entries);
1697 /* Generate a random MAC address, if none was assigned by PF. */
1698 if (is_zero_ether_addr(perm_addr)) {
1699 generate_random_mac_addr(perm_addr);
1700 diag = ixgbe_set_rar_vf(hw, 1, perm_addr->addr_bytes, 0, 1);
1702 rte_free(eth_dev->data->mac_addrs);
1703 eth_dev->data->mac_addrs = NULL;
1706 PMD_INIT_LOG(INFO, "\tVF MAC address not assigned by Host PF");
1707 PMD_INIT_LOG(INFO, "\tAssign randomly generated MAC address "
1708 "%02x:%02x:%02x:%02x:%02x:%02x",
1709 perm_addr->addr_bytes[0],
1710 perm_addr->addr_bytes[1],
1711 perm_addr->addr_bytes[2],
1712 perm_addr->addr_bytes[3],
1713 perm_addr->addr_bytes[4],
1714 perm_addr->addr_bytes[5]);
1717 /* Copy the permanent MAC address */
1718 ether_addr_copy(perm_addr, ð_dev->data->mac_addrs[0]);
1720 /* reset the hardware with the new settings */
1721 diag = hw->mac.ops.start_hw(hw);
1727 PMD_INIT_LOG(ERR, "VF Initialization Failure: %d", diag);
1731 rte_intr_callback_register(intr_handle,
1732 ixgbevf_dev_interrupt_handler, eth_dev);
1733 rte_intr_enable(intr_handle);
1734 ixgbevf_intr_enable(hw);
1736 PMD_INIT_LOG(DEBUG, "port %d vendorID=0x%x deviceID=0x%x mac.type=%s",
1737 eth_dev->data->port_id, pci_dev->id.vendor_id,
1738 pci_dev->id.device_id, "ixgbe_mac_82599_vf");
1743 /* Virtual Function device uninit */
1746 eth_ixgbevf_dev_uninit(struct rte_eth_dev *eth_dev)
1748 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(eth_dev);
1749 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
1750 struct ixgbe_hw *hw;
1752 PMD_INIT_FUNC_TRACE();
1754 if (rte_eal_process_type() != RTE_PROC_PRIMARY)
1757 hw = IXGBE_DEV_PRIVATE_TO_HW(eth_dev->data->dev_private);
1759 if (hw->adapter_stopped == 0)
1760 ixgbevf_dev_close(eth_dev);
1762 eth_dev->dev_ops = NULL;
1763 eth_dev->rx_pkt_burst = NULL;
1764 eth_dev->tx_pkt_burst = NULL;
1766 /* Disable the interrupts for VF */
1767 ixgbevf_intr_disable(hw);
1769 rte_free(eth_dev->data->mac_addrs);
1770 eth_dev->data->mac_addrs = NULL;
1772 rte_intr_disable(intr_handle);
1773 rte_intr_callback_unregister(intr_handle,
1774 ixgbevf_dev_interrupt_handler, eth_dev);
1779 static int eth_ixgbe_pci_probe(struct rte_pci_driver *pci_drv __rte_unused,
1780 struct rte_pci_device *pci_dev)
1782 return rte_eth_dev_pci_generic_probe(pci_dev,
1783 sizeof(struct ixgbe_adapter), eth_ixgbe_dev_init);
1786 static int eth_ixgbe_pci_remove(struct rte_pci_device *pci_dev)
1788 return rte_eth_dev_pci_generic_remove(pci_dev, eth_ixgbe_dev_uninit);
1791 static struct rte_pci_driver rte_ixgbe_pmd = {
1792 .id_table = pci_id_ixgbe_map,
1793 .drv_flags = RTE_PCI_DRV_NEED_MAPPING | RTE_PCI_DRV_INTR_LSC,
1794 .probe = eth_ixgbe_pci_probe,
1795 .remove = eth_ixgbe_pci_remove,
1798 static int eth_ixgbevf_pci_probe(struct rte_pci_driver *pci_drv __rte_unused,
1799 struct rte_pci_device *pci_dev)
1801 return rte_eth_dev_pci_generic_probe(pci_dev,
1802 sizeof(struct ixgbe_adapter), eth_ixgbevf_dev_init);
1805 static int eth_ixgbevf_pci_remove(struct rte_pci_device *pci_dev)
1807 return rte_eth_dev_pci_generic_remove(pci_dev, eth_ixgbevf_dev_uninit);
1811 * virtual function driver struct
1813 static struct rte_pci_driver rte_ixgbevf_pmd = {
1814 .id_table = pci_id_ixgbevf_map,
1815 .drv_flags = RTE_PCI_DRV_NEED_MAPPING,
1816 .probe = eth_ixgbevf_pci_probe,
1817 .remove = eth_ixgbevf_pci_remove,
1821 ixgbe_vlan_filter_set(struct rte_eth_dev *dev, uint16_t vlan_id, int on)
1823 struct ixgbe_hw *hw =
1824 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1825 struct ixgbe_vfta *shadow_vfta =
1826 IXGBE_DEV_PRIVATE_TO_VFTA(dev->data->dev_private);
1831 vid_idx = (uint32_t) ((vlan_id >> 5) & 0x7F);
1832 vid_bit = (uint32_t) (1 << (vlan_id & 0x1F));
1833 vfta = IXGBE_READ_REG(hw, IXGBE_VFTA(vid_idx));
1838 IXGBE_WRITE_REG(hw, IXGBE_VFTA(vid_idx), vfta);
1840 /* update local VFTA copy */
1841 shadow_vfta->vfta[vid_idx] = vfta;
1847 ixgbe_vlan_strip_queue_set(struct rte_eth_dev *dev, uint16_t queue, int on)
1850 ixgbe_vlan_hw_strip_enable(dev, queue);
1852 ixgbe_vlan_hw_strip_disable(dev, queue);
1856 ixgbe_vlan_tpid_set(struct rte_eth_dev *dev,
1857 enum rte_vlan_type vlan_type,
1860 struct ixgbe_hw *hw =
1861 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1866 qinq = IXGBE_READ_REG(hw, IXGBE_DMATXCTL);
1867 qinq &= IXGBE_DMATXCTL_GDV;
1869 switch (vlan_type) {
1870 case ETH_VLAN_TYPE_INNER:
1872 reg = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
1873 reg = (reg & (~IXGBE_VLNCTRL_VET)) | (uint32_t)tpid;
1874 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, reg);
1875 reg = IXGBE_READ_REG(hw, IXGBE_DMATXCTL);
1876 reg = (reg & (~IXGBE_DMATXCTL_VT_MASK))
1877 | ((uint32_t)tpid << IXGBE_DMATXCTL_VT_SHIFT);
1878 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL, reg);
1881 PMD_DRV_LOG(ERR, "Inner type is not supported"
1885 case ETH_VLAN_TYPE_OUTER:
1887 /* Only the high 16-bits is valid */
1888 IXGBE_WRITE_REG(hw, IXGBE_EXVET, (uint32_t)tpid <<
1889 IXGBE_EXVET_VET_EXT_SHIFT);
1891 reg = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
1892 reg = (reg & (~IXGBE_VLNCTRL_VET)) | (uint32_t)tpid;
1893 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, reg);
1894 reg = IXGBE_READ_REG(hw, IXGBE_DMATXCTL);
1895 reg = (reg & (~IXGBE_DMATXCTL_VT_MASK))
1896 | ((uint32_t)tpid << IXGBE_DMATXCTL_VT_SHIFT);
1897 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL, reg);
1903 PMD_DRV_LOG(ERR, "Unsupported VLAN type %d", vlan_type);
1911 ixgbe_vlan_hw_filter_disable(struct rte_eth_dev *dev)
1913 struct ixgbe_hw *hw =
1914 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1917 PMD_INIT_FUNC_TRACE();
1919 /* Filter Table Disable */
1920 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
1921 vlnctrl &= ~IXGBE_VLNCTRL_VFE;
1923 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
1927 ixgbe_vlan_hw_filter_enable(struct rte_eth_dev *dev)
1929 struct ixgbe_hw *hw =
1930 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1931 struct ixgbe_vfta *shadow_vfta =
1932 IXGBE_DEV_PRIVATE_TO_VFTA(dev->data->dev_private);
1936 PMD_INIT_FUNC_TRACE();
1938 /* Filter Table Enable */
1939 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
1940 vlnctrl &= ~IXGBE_VLNCTRL_CFIEN;
1941 vlnctrl |= IXGBE_VLNCTRL_VFE;
1943 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
1945 /* write whatever is in local vfta copy */
1946 for (i = 0; i < IXGBE_VFTA_SIZE; i++)
1947 IXGBE_WRITE_REG(hw, IXGBE_VFTA(i), shadow_vfta->vfta[i]);
1951 ixgbe_vlan_hw_strip_bitmap_set(struct rte_eth_dev *dev, uint16_t queue, bool on)
1953 struct ixgbe_hwstrip *hwstrip =
1954 IXGBE_DEV_PRIVATE_TO_HWSTRIP_BITMAP(dev->data->dev_private);
1955 struct ixgbe_rx_queue *rxq;
1957 if (queue >= IXGBE_MAX_RX_QUEUE_NUM)
1961 IXGBE_SET_HWSTRIP(hwstrip, queue);
1963 IXGBE_CLEAR_HWSTRIP(hwstrip, queue);
1965 if (queue >= dev->data->nb_rx_queues)
1968 rxq = dev->data->rx_queues[queue];
1971 rxq->vlan_flags = PKT_RX_VLAN_PKT | PKT_RX_VLAN_STRIPPED;
1973 rxq->vlan_flags = PKT_RX_VLAN_PKT;
1977 ixgbe_vlan_hw_strip_disable(struct rte_eth_dev *dev, uint16_t queue)
1979 struct ixgbe_hw *hw =
1980 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1983 PMD_INIT_FUNC_TRACE();
1985 if (hw->mac.type == ixgbe_mac_82598EB) {
1986 /* No queue level support */
1987 PMD_INIT_LOG(NOTICE, "82598EB not support queue level hw strip");
1991 /* Other 10G NIC, the VLAN strip can be setup per queue in RXDCTL */
1992 ctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(queue));
1993 ctrl &= ~IXGBE_RXDCTL_VME;
1994 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(queue), ctrl);
1996 /* record those setting for HW strip per queue */
1997 ixgbe_vlan_hw_strip_bitmap_set(dev, queue, 0);
2001 ixgbe_vlan_hw_strip_enable(struct rte_eth_dev *dev, uint16_t queue)
2003 struct ixgbe_hw *hw =
2004 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2007 PMD_INIT_FUNC_TRACE();
2009 if (hw->mac.type == ixgbe_mac_82598EB) {
2010 /* No queue level supported */
2011 PMD_INIT_LOG(NOTICE, "82598EB not support queue level hw strip");
2015 /* Other 10G NIC, the VLAN strip can be setup per queue in RXDCTL */
2016 ctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(queue));
2017 ctrl |= IXGBE_RXDCTL_VME;
2018 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(queue), ctrl);
2020 /* record those setting for HW strip per queue */
2021 ixgbe_vlan_hw_strip_bitmap_set(dev, queue, 1);
2025 ixgbe_vlan_hw_strip_disable_all(struct rte_eth_dev *dev)
2027 struct ixgbe_hw *hw =
2028 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2031 struct ixgbe_rx_queue *rxq;
2033 PMD_INIT_FUNC_TRACE();
2035 if (hw->mac.type == ixgbe_mac_82598EB) {
2036 ctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
2037 ctrl &= ~IXGBE_VLNCTRL_VME;
2038 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, ctrl);
2040 /* Other 10G NIC, the VLAN strip can be setup per queue in RXDCTL */
2041 for (i = 0; i < dev->data->nb_rx_queues; i++) {
2042 rxq = dev->data->rx_queues[i];
2043 ctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(rxq->reg_idx));
2044 ctrl &= ~IXGBE_RXDCTL_VME;
2045 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(rxq->reg_idx), ctrl);
2047 /* record those setting for HW strip per queue */
2048 ixgbe_vlan_hw_strip_bitmap_set(dev, i, 0);
2054 ixgbe_vlan_hw_strip_enable_all(struct rte_eth_dev *dev)
2056 struct ixgbe_hw *hw =
2057 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2060 struct ixgbe_rx_queue *rxq;
2062 PMD_INIT_FUNC_TRACE();
2064 if (hw->mac.type == ixgbe_mac_82598EB) {
2065 ctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
2066 ctrl |= IXGBE_VLNCTRL_VME;
2067 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, ctrl);
2069 /* Other 10G NIC, the VLAN strip can be setup per queue in RXDCTL */
2070 for (i = 0; i < dev->data->nb_rx_queues; i++) {
2071 rxq = dev->data->rx_queues[i];
2072 ctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(rxq->reg_idx));
2073 ctrl |= IXGBE_RXDCTL_VME;
2074 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(rxq->reg_idx), ctrl);
2076 /* record those setting for HW strip per queue */
2077 ixgbe_vlan_hw_strip_bitmap_set(dev, i, 1);
2083 ixgbe_vlan_hw_extend_disable(struct rte_eth_dev *dev)
2085 struct ixgbe_hw *hw =
2086 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2089 PMD_INIT_FUNC_TRACE();
2091 /* DMATXCTRL: Geric Double VLAN Disable */
2092 ctrl = IXGBE_READ_REG(hw, IXGBE_DMATXCTL);
2093 ctrl &= ~IXGBE_DMATXCTL_GDV;
2094 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL, ctrl);
2096 /* CTRL_EXT: Global Double VLAN Disable */
2097 ctrl = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT);
2098 ctrl &= ~IXGBE_EXTENDED_VLAN;
2099 IXGBE_WRITE_REG(hw, IXGBE_CTRL_EXT, ctrl);
2104 ixgbe_vlan_hw_extend_enable(struct rte_eth_dev *dev)
2106 struct ixgbe_hw *hw =
2107 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2110 PMD_INIT_FUNC_TRACE();
2112 /* DMATXCTRL: Geric Double VLAN Enable */
2113 ctrl = IXGBE_READ_REG(hw, IXGBE_DMATXCTL);
2114 ctrl |= IXGBE_DMATXCTL_GDV;
2115 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL, ctrl);
2117 /* CTRL_EXT: Global Double VLAN Enable */
2118 ctrl = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT);
2119 ctrl |= IXGBE_EXTENDED_VLAN;
2120 IXGBE_WRITE_REG(hw, IXGBE_CTRL_EXT, ctrl);
2122 /* Clear pooling mode of PFVTCTL. It's required by X550. */
2123 if (hw->mac.type == ixgbe_mac_X550 ||
2124 hw->mac.type == ixgbe_mac_X550EM_x ||
2125 hw->mac.type == ixgbe_mac_X550EM_a) {
2126 ctrl = IXGBE_READ_REG(hw, IXGBE_VT_CTL);
2127 ctrl &= ~IXGBE_VT_CTL_POOLING_MODE_MASK;
2128 IXGBE_WRITE_REG(hw, IXGBE_VT_CTL, ctrl);
2132 * VET EXT field in the EXVET register = 0x8100 by default
2133 * So no need to change. Same to VT field of DMATXCTL register
2138 ixgbe_vlan_offload_set(struct rte_eth_dev *dev, int mask)
2140 if (mask & ETH_VLAN_STRIP_MASK) {
2141 if (dev->data->dev_conf.rxmode.hw_vlan_strip)
2142 ixgbe_vlan_hw_strip_enable_all(dev);
2144 ixgbe_vlan_hw_strip_disable_all(dev);
2147 if (mask & ETH_VLAN_FILTER_MASK) {
2148 if (dev->data->dev_conf.rxmode.hw_vlan_filter)
2149 ixgbe_vlan_hw_filter_enable(dev);
2151 ixgbe_vlan_hw_filter_disable(dev);
2154 if (mask & ETH_VLAN_EXTEND_MASK) {
2155 if (dev->data->dev_conf.rxmode.hw_vlan_extend)
2156 ixgbe_vlan_hw_extend_enable(dev);
2158 ixgbe_vlan_hw_extend_disable(dev);
2163 ixgbe_vmdq_vlan_hw_filter_enable(struct rte_eth_dev *dev)
2165 struct ixgbe_hw *hw =
2166 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2167 /* VLNCTRL: enable vlan filtering and allow all vlan tags through */
2168 uint32_t vlanctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
2170 vlanctrl |= IXGBE_VLNCTRL_VFE; /* enable vlan filters */
2171 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlanctrl);
2175 ixgbe_check_vf_rss_rxq_num(struct rte_eth_dev *dev, uint16_t nb_rx_q)
2177 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
2182 RTE_ETH_DEV_SRIOV(dev).active = ETH_64_POOLS;
2185 RTE_ETH_DEV_SRIOV(dev).active = ETH_32_POOLS;
2191 RTE_ETH_DEV_SRIOV(dev).nb_q_per_pool = nb_rx_q;
2192 RTE_ETH_DEV_SRIOV(dev).def_pool_q_idx = pci_dev->max_vfs * nb_rx_q;
2198 ixgbe_check_mq_mode(struct rte_eth_dev *dev)
2200 struct rte_eth_conf *dev_conf = &dev->data->dev_conf;
2201 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2202 uint16_t nb_rx_q = dev->data->nb_rx_queues;
2203 uint16_t nb_tx_q = dev->data->nb_tx_queues;
2205 if (RTE_ETH_DEV_SRIOV(dev).active != 0) {
2206 /* check multi-queue mode */
2207 switch (dev_conf->rxmode.mq_mode) {
2208 case ETH_MQ_RX_VMDQ_DCB:
2209 PMD_INIT_LOG(INFO, "ETH_MQ_RX_VMDQ_DCB mode supported in SRIOV");
2211 case ETH_MQ_RX_VMDQ_DCB_RSS:
2212 /* DCB/RSS VMDQ in SRIOV mode, not implement yet */
2213 PMD_INIT_LOG(ERR, "SRIOV active,"
2214 " unsupported mq_mode rx %d.",
2215 dev_conf->rxmode.mq_mode);
2218 case ETH_MQ_RX_VMDQ_RSS:
2219 dev->data->dev_conf.rxmode.mq_mode = ETH_MQ_RX_VMDQ_RSS;
2220 if (nb_rx_q <= RTE_ETH_DEV_SRIOV(dev).nb_q_per_pool)
2221 if (ixgbe_check_vf_rss_rxq_num(dev, nb_rx_q)) {
2222 PMD_INIT_LOG(ERR, "SRIOV is active,"
2223 " invalid queue number"
2224 " for VMDQ RSS, allowed"
2225 " value are 1, 2 or 4.");
2229 case ETH_MQ_RX_VMDQ_ONLY:
2230 case ETH_MQ_RX_NONE:
2231 /* if nothing mq mode configure, use default scheme */
2232 dev->data->dev_conf.rxmode.mq_mode = ETH_MQ_RX_VMDQ_ONLY;
2233 if (RTE_ETH_DEV_SRIOV(dev).nb_q_per_pool > 1)
2234 RTE_ETH_DEV_SRIOV(dev).nb_q_per_pool = 1;
2236 default: /* ETH_MQ_RX_DCB, ETH_MQ_RX_DCB_RSS or ETH_MQ_TX_DCB*/
2237 /* SRIOV only works in VMDq enable mode */
2238 PMD_INIT_LOG(ERR, "SRIOV is active,"
2239 " wrong mq_mode rx %d.",
2240 dev_conf->rxmode.mq_mode);
2244 switch (dev_conf->txmode.mq_mode) {
2245 case ETH_MQ_TX_VMDQ_DCB:
2246 PMD_INIT_LOG(INFO, "ETH_MQ_TX_VMDQ_DCB mode supported in SRIOV");
2247 dev->data->dev_conf.txmode.mq_mode = ETH_MQ_TX_VMDQ_DCB;
2249 default: /* ETH_MQ_TX_VMDQ_ONLY or ETH_MQ_TX_NONE */
2250 dev->data->dev_conf.txmode.mq_mode = ETH_MQ_TX_VMDQ_ONLY;
2254 /* check valid queue number */
2255 if ((nb_rx_q > RTE_ETH_DEV_SRIOV(dev).nb_q_per_pool) ||
2256 (nb_tx_q > RTE_ETH_DEV_SRIOV(dev).nb_q_per_pool)) {
2257 PMD_INIT_LOG(ERR, "SRIOV is active,"
2258 " nb_rx_q=%d nb_tx_q=%d queue number"
2259 " must be less than or equal to %d.",
2261 RTE_ETH_DEV_SRIOV(dev).nb_q_per_pool);
2265 if (dev_conf->rxmode.mq_mode == ETH_MQ_RX_VMDQ_DCB_RSS) {
2266 PMD_INIT_LOG(ERR, "VMDQ+DCB+RSS mq_mode is"
2270 /* check configuration for vmdb+dcb mode */
2271 if (dev_conf->rxmode.mq_mode == ETH_MQ_RX_VMDQ_DCB) {
2272 const struct rte_eth_vmdq_dcb_conf *conf;
2274 if (nb_rx_q != IXGBE_VMDQ_DCB_NB_QUEUES) {
2275 PMD_INIT_LOG(ERR, "VMDQ+DCB, nb_rx_q != %d.",
2276 IXGBE_VMDQ_DCB_NB_QUEUES);
2279 conf = &dev_conf->rx_adv_conf.vmdq_dcb_conf;
2280 if (!(conf->nb_queue_pools == ETH_16_POOLS ||
2281 conf->nb_queue_pools == ETH_32_POOLS)) {
2282 PMD_INIT_LOG(ERR, "VMDQ+DCB selected,"
2283 " nb_queue_pools must be %d or %d.",
2284 ETH_16_POOLS, ETH_32_POOLS);
2288 if (dev_conf->txmode.mq_mode == ETH_MQ_TX_VMDQ_DCB) {
2289 const struct rte_eth_vmdq_dcb_tx_conf *conf;
2291 if (nb_tx_q != IXGBE_VMDQ_DCB_NB_QUEUES) {
2292 PMD_INIT_LOG(ERR, "VMDQ+DCB, nb_tx_q != %d",
2293 IXGBE_VMDQ_DCB_NB_QUEUES);
2296 conf = &dev_conf->tx_adv_conf.vmdq_dcb_tx_conf;
2297 if (!(conf->nb_queue_pools == ETH_16_POOLS ||
2298 conf->nb_queue_pools == ETH_32_POOLS)) {
2299 PMD_INIT_LOG(ERR, "VMDQ+DCB selected,"
2300 " nb_queue_pools != %d and"
2301 " nb_queue_pools != %d.",
2302 ETH_16_POOLS, ETH_32_POOLS);
2307 /* For DCB mode check our configuration before we go further */
2308 if (dev_conf->rxmode.mq_mode == ETH_MQ_RX_DCB) {
2309 const struct rte_eth_dcb_rx_conf *conf;
2311 if (nb_rx_q != IXGBE_DCB_NB_QUEUES) {
2312 PMD_INIT_LOG(ERR, "DCB selected, nb_rx_q != %d.",
2313 IXGBE_DCB_NB_QUEUES);
2316 conf = &dev_conf->rx_adv_conf.dcb_rx_conf;
2317 if (!(conf->nb_tcs == ETH_4_TCS ||
2318 conf->nb_tcs == ETH_8_TCS)) {
2319 PMD_INIT_LOG(ERR, "DCB selected, nb_tcs != %d"
2320 " and nb_tcs != %d.",
2321 ETH_4_TCS, ETH_8_TCS);
2326 if (dev_conf->txmode.mq_mode == ETH_MQ_TX_DCB) {
2327 const struct rte_eth_dcb_tx_conf *conf;
2329 if (nb_tx_q != IXGBE_DCB_NB_QUEUES) {
2330 PMD_INIT_LOG(ERR, "DCB, nb_tx_q != %d.",
2331 IXGBE_DCB_NB_QUEUES);
2334 conf = &dev_conf->tx_adv_conf.dcb_tx_conf;
2335 if (!(conf->nb_tcs == ETH_4_TCS ||
2336 conf->nb_tcs == ETH_8_TCS)) {
2337 PMD_INIT_LOG(ERR, "DCB selected, nb_tcs != %d"
2338 " and nb_tcs != %d.",
2339 ETH_4_TCS, ETH_8_TCS);
2345 * When DCB/VT is off, maximum number of queues changes,
2346 * except for 82598EB, which remains constant.
2348 if (dev_conf->txmode.mq_mode == ETH_MQ_TX_NONE &&
2349 hw->mac.type != ixgbe_mac_82598EB) {
2350 if (nb_tx_q > IXGBE_NONE_MODE_TX_NB_QUEUES) {
2352 "Neither VT nor DCB are enabled, "
2354 IXGBE_NONE_MODE_TX_NB_QUEUES);
2363 ixgbe_dev_configure(struct rte_eth_dev *dev)
2365 struct ixgbe_interrupt *intr =
2366 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
2367 struct ixgbe_adapter *adapter =
2368 (struct ixgbe_adapter *)dev->data->dev_private;
2371 PMD_INIT_FUNC_TRACE();
2372 /* multipe queue mode checking */
2373 ret = ixgbe_check_mq_mode(dev);
2375 PMD_DRV_LOG(ERR, "ixgbe_check_mq_mode fails with %d.",
2380 /* set flag to update link status after init */
2381 intr->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
2384 * Initialize to TRUE. If any of Rx queues doesn't meet the bulk
2385 * allocation or vector Rx preconditions we will reset it.
2387 adapter->rx_bulk_alloc_allowed = true;
2388 adapter->rx_vec_allowed = true;
2394 ixgbe_dev_phy_intr_setup(struct rte_eth_dev *dev)
2396 struct ixgbe_hw *hw =
2397 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2398 struct ixgbe_interrupt *intr =
2399 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
2402 /* only set up it on X550EM_X */
2403 if (hw->mac.type == ixgbe_mac_X550EM_x) {
2404 gpie = IXGBE_READ_REG(hw, IXGBE_GPIE);
2405 gpie |= IXGBE_SDP0_GPIEN_X550EM_x;
2406 IXGBE_WRITE_REG(hw, IXGBE_GPIE, gpie);
2407 if (hw->phy.type == ixgbe_phy_x550em_ext_t)
2408 intr->mask |= IXGBE_EICR_GPI_SDP0_X550EM_x;
2413 ixgbe_set_vf_rate_limit(struct rte_eth_dev *dev, uint16_t vf,
2414 uint16_t tx_rate, uint64_t q_msk)
2416 struct ixgbe_hw *hw;
2417 struct ixgbe_vf_info *vfinfo;
2418 struct rte_eth_link link;
2419 uint8_t nb_q_per_pool;
2420 uint32_t queue_stride;
2421 uint32_t queue_idx, idx = 0, vf_idx;
2423 uint16_t total_rate = 0;
2424 struct rte_pci_device *pci_dev;
2426 pci_dev = RTE_ETH_DEV_TO_PCI(dev);
2427 rte_eth_link_get_nowait(dev->data->port_id, &link);
2429 if (vf >= pci_dev->max_vfs)
2432 if (tx_rate > link.link_speed)
2438 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2439 vfinfo = *(IXGBE_DEV_PRIVATE_TO_P_VFDATA(dev->data->dev_private));
2440 nb_q_per_pool = RTE_ETH_DEV_SRIOV(dev).nb_q_per_pool;
2441 queue_stride = IXGBE_MAX_RX_QUEUE_NUM / RTE_ETH_DEV_SRIOV(dev).active;
2442 queue_idx = vf * queue_stride;
2443 queue_end = queue_idx + nb_q_per_pool - 1;
2444 if (queue_end >= hw->mac.max_tx_queues)
2448 for (vf_idx = 0; vf_idx < pci_dev->max_vfs; vf_idx++) {
2451 for (idx = 0; idx < RTE_DIM(vfinfo[vf_idx].tx_rate);
2453 total_rate += vfinfo[vf_idx].tx_rate[idx];
2459 /* Store tx_rate for this vf. */
2460 for (idx = 0; idx < nb_q_per_pool; idx++) {
2461 if (((uint64_t)0x1 << idx) & q_msk) {
2462 if (vfinfo[vf].tx_rate[idx] != tx_rate)
2463 vfinfo[vf].tx_rate[idx] = tx_rate;
2464 total_rate += tx_rate;
2468 if (total_rate > dev->data->dev_link.link_speed) {
2469 /* Reset stored TX rate of the VF if it causes exceed
2472 memset(vfinfo[vf].tx_rate, 0, sizeof(vfinfo[vf].tx_rate));
2476 /* Set RTTBCNRC of each queue/pool for vf X */
2477 for (; queue_idx <= queue_end; queue_idx++) {
2479 ixgbe_set_queue_rate_limit(dev, queue_idx, tx_rate);
2487 * Configure device link speed and setup link.
2488 * It returns 0 on success.
2491 ixgbe_dev_start(struct rte_eth_dev *dev)
2493 struct ixgbe_hw *hw =
2494 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2495 struct ixgbe_vf_info *vfinfo =
2496 *IXGBE_DEV_PRIVATE_TO_P_VFDATA(dev->data->dev_private);
2497 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
2498 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
2499 uint32_t intr_vector = 0;
2500 int err, link_up = 0, negotiate = 0;
2505 uint32_t *link_speeds;
2507 PMD_INIT_FUNC_TRACE();
2509 /* IXGBE devices don't support:
2510 * - half duplex (checked afterwards for valid speeds)
2511 * - fixed speed: TODO implement
2513 if (dev->data->dev_conf.link_speeds & ETH_LINK_SPEED_FIXED) {
2514 PMD_INIT_LOG(ERR, "Invalid link_speeds for port %hhu; fix speed not supported",
2515 dev->data->port_id);
2519 /* disable uio/vfio intr/eventfd mapping */
2520 rte_intr_disable(intr_handle);
2523 hw->adapter_stopped = 0;
2524 ixgbe_stop_adapter(hw);
2526 /* reinitialize adapter
2527 * this calls reset and start
2529 status = ixgbe_pf_reset_hw(hw);
2532 hw->mac.ops.start_hw(hw);
2533 hw->mac.get_link_status = true;
2535 /* configure PF module if SRIOV enabled */
2536 ixgbe_pf_host_configure(dev);
2538 ixgbe_dev_phy_intr_setup(dev);
2540 /* check and configure queue intr-vector mapping */
2541 if ((rte_intr_cap_multiple(intr_handle) ||
2542 !RTE_ETH_DEV_SRIOV(dev).active) &&
2543 dev->data->dev_conf.intr_conf.rxq != 0) {
2544 intr_vector = dev->data->nb_rx_queues;
2545 if (intr_vector > IXGBE_MAX_INTR_QUEUE_NUM) {
2546 PMD_INIT_LOG(ERR, "At most %d intr queues supported",
2547 IXGBE_MAX_INTR_QUEUE_NUM);
2550 if (rte_intr_efd_enable(intr_handle, intr_vector))
2554 if (rte_intr_dp_is_en(intr_handle) && !intr_handle->intr_vec) {
2555 intr_handle->intr_vec =
2556 rte_zmalloc("intr_vec",
2557 dev->data->nb_rx_queues * sizeof(int), 0);
2558 if (intr_handle->intr_vec == NULL) {
2559 PMD_INIT_LOG(ERR, "Failed to allocate %d rx_queues"
2560 " intr_vec", dev->data->nb_rx_queues);
2565 /* confiugre msix for sleep until rx interrupt */
2566 ixgbe_configure_msix(dev);
2568 /* initialize transmission unit */
2569 ixgbe_dev_tx_init(dev);
2571 /* This can fail when allocating mbufs for descriptor rings */
2572 err = ixgbe_dev_rx_init(dev);
2574 PMD_INIT_LOG(ERR, "Unable to initialize RX hardware");
2578 mask = ETH_VLAN_STRIP_MASK | ETH_VLAN_FILTER_MASK |
2579 ETH_VLAN_EXTEND_MASK;
2580 ixgbe_vlan_offload_set(dev, mask);
2582 if (dev->data->dev_conf.rxmode.mq_mode == ETH_MQ_RX_VMDQ_ONLY) {
2583 /* Enable vlan filtering for VMDq */
2584 ixgbe_vmdq_vlan_hw_filter_enable(dev);
2587 /* Configure DCB hw */
2588 ixgbe_configure_dcb(dev);
2590 if (dev->data->dev_conf.fdir_conf.mode != RTE_FDIR_MODE_NONE) {
2591 err = ixgbe_fdir_configure(dev);
2596 /* Restore vf rate limit */
2597 if (vfinfo != NULL) {
2598 for (vf = 0; vf < pci_dev->max_vfs; vf++)
2599 for (idx = 0; idx < IXGBE_MAX_QUEUE_NUM_PER_VF; idx++)
2600 if (vfinfo[vf].tx_rate[idx] != 0)
2601 ixgbe_set_vf_rate_limit(
2603 vfinfo[vf].tx_rate[idx],
2607 ixgbe_restore_statistics_mapping(dev);
2609 err = ixgbe_dev_rxtx_start(dev);
2611 PMD_INIT_LOG(ERR, "Unable to start rxtx queues");
2615 /* Skip link setup if loopback mode is enabled for 82599. */
2616 if (hw->mac.type == ixgbe_mac_82599EB &&
2617 dev->data->dev_conf.lpbk_mode == IXGBE_LPBK_82599_TX_RX)
2618 goto skip_link_setup;
2620 if (ixgbe_is_sfp(hw) && hw->phy.multispeed_fiber) {
2621 err = hw->mac.ops.setup_sfp(hw);
2626 if (hw->mac.ops.get_media_type(hw) == ixgbe_media_type_copper) {
2627 /* Turn on the copper */
2628 ixgbe_set_phy_power(hw, true);
2630 /* Turn on the laser */
2631 ixgbe_enable_tx_laser(hw);
2634 err = ixgbe_check_link(hw, &speed, &link_up, 0);
2637 dev->data->dev_link.link_status = link_up;
2639 err = ixgbe_get_link_capabilities(hw, &speed, &negotiate);
2643 link_speeds = &dev->data->dev_conf.link_speeds;
2644 if (*link_speeds & ~(ETH_LINK_SPEED_100M | ETH_LINK_SPEED_1G |
2645 ETH_LINK_SPEED_10G)) {
2646 PMD_INIT_LOG(ERR, "Invalid link setting");
2651 if (*link_speeds == ETH_LINK_SPEED_AUTONEG) {
2652 speed = (hw->mac.type != ixgbe_mac_82598EB) ?
2653 IXGBE_LINK_SPEED_82599_AUTONEG :
2654 IXGBE_LINK_SPEED_82598_AUTONEG;
2656 if (*link_speeds & ETH_LINK_SPEED_10G)
2657 speed |= IXGBE_LINK_SPEED_10GB_FULL;
2658 if (*link_speeds & ETH_LINK_SPEED_1G)
2659 speed |= IXGBE_LINK_SPEED_1GB_FULL;
2660 if (*link_speeds & ETH_LINK_SPEED_100M)
2661 speed |= IXGBE_LINK_SPEED_100_FULL;
2664 err = ixgbe_setup_link(hw, speed, link_up);
2670 if (rte_intr_allow_others(intr_handle)) {
2671 /* check if lsc interrupt is enabled */
2672 if (dev->data->dev_conf.intr_conf.lsc != 0)
2673 ixgbe_dev_lsc_interrupt_setup(dev);
2674 ixgbe_dev_macsec_interrupt_setup(dev);
2676 rte_intr_callback_unregister(intr_handle,
2677 ixgbe_dev_interrupt_handler, dev);
2678 if (dev->data->dev_conf.intr_conf.lsc != 0)
2679 PMD_INIT_LOG(INFO, "lsc won't enable because of"
2680 " no intr multiplex");
2683 /* check if rxq interrupt is enabled */
2684 if (dev->data->dev_conf.intr_conf.rxq != 0 &&
2685 rte_intr_dp_is_en(intr_handle))
2686 ixgbe_dev_rxq_interrupt_setup(dev);
2688 /* enable uio/vfio intr/eventfd mapping */
2689 rte_intr_enable(intr_handle);
2691 /* resume enabled intr since hw reset */
2692 ixgbe_enable_intr(dev);
2693 ixgbe_l2_tunnel_conf(dev);
2694 ixgbe_filter_restore(dev);
2699 PMD_INIT_LOG(ERR, "failure in ixgbe_dev_start(): %d", err);
2700 ixgbe_dev_clear_queues(dev);
2705 * Stop device: disable rx and tx functions to allow for reconfiguring.
2708 ixgbe_dev_stop(struct rte_eth_dev *dev)
2710 struct rte_eth_link link;
2711 struct ixgbe_hw *hw =
2712 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2713 struct ixgbe_vf_info *vfinfo =
2714 *IXGBE_DEV_PRIVATE_TO_P_VFDATA(dev->data->dev_private);
2715 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
2716 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
2718 struct ixgbe_tm_conf *tm_conf =
2719 IXGBE_DEV_PRIVATE_TO_TM_CONF(dev->data->dev_private);
2721 PMD_INIT_FUNC_TRACE();
2723 /* disable interrupts */
2724 ixgbe_disable_intr(hw);
2727 ixgbe_pf_reset_hw(hw);
2728 hw->adapter_stopped = 0;
2731 ixgbe_stop_adapter(hw);
2733 for (vf = 0; vfinfo != NULL && vf < pci_dev->max_vfs; vf++)
2734 vfinfo[vf].clear_to_send = false;
2736 if (hw->mac.ops.get_media_type(hw) == ixgbe_media_type_copper) {
2737 /* Turn off the copper */
2738 ixgbe_set_phy_power(hw, false);
2740 /* Turn off the laser */
2741 ixgbe_disable_tx_laser(hw);
2744 ixgbe_dev_clear_queues(dev);
2746 /* Clear stored conf */
2747 dev->data->scattered_rx = 0;
2750 /* Clear recorded link status */
2751 memset(&link, 0, sizeof(link));
2752 rte_ixgbe_dev_atomic_write_link_status(dev, &link);
2754 if (!rte_intr_allow_others(intr_handle))
2755 /* resume to the default handler */
2756 rte_intr_callback_register(intr_handle,
2757 ixgbe_dev_interrupt_handler,
2760 /* Clean datapath event and queue/vec mapping */
2761 rte_intr_efd_disable(intr_handle);
2762 if (intr_handle->intr_vec != NULL) {
2763 rte_free(intr_handle->intr_vec);
2764 intr_handle->intr_vec = NULL;
2767 /* reset hierarchy commit */
2768 tm_conf->committed = false;
2772 * Set device link up: enable tx.
2775 ixgbe_dev_set_link_up(struct rte_eth_dev *dev)
2777 struct ixgbe_hw *hw =
2778 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2779 if (hw->mac.type == ixgbe_mac_82599EB) {
2780 #ifdef RTE_LIBRTE_IXGBE_BYPASS
2781 if (hw->device_id == IXGBE_DEV_ID_82599_BYPASS) {
2782 /* Not suported in bypass mode */
2783 PMD_INIT_LOG(ERR, "Set link up is not supported "
2784 "by device id 0x%x", hw->device_id);
2790 if (hw->mac.ops.get_media_type(hw) == ixgbe_media_type_copper) {
2791 /* Turn on the copper */
2792 ixgbe_set_phy_power(hw, true);
2794 /* Turn on the laser */
2795 ixgbe_enable_tx_laser(hw);
2802 * Set device link down: disable tx.
2805 ixgbe_dev_set_link_down(struct rte_eth_dev *dev)
2807 struct ixgbe_hw *hw =
2808 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2809 if (hw->mac.type == ixgbe_mac_82599EB) {
2810 #ifdef RTE_LIBRTE_IXGBE_BYPASS
2811 if (hw->device_id == IXGBE_DEV_ID_82599_BYPASS) {
2812 /* Not suported in bypass mode */
2813 PMD_INIT_LOG(ERR, "Set link down is not supported "
2814 "by device id 0x%x", hw->device_id);
2820 if (hw->mac.ops.get_media_type(hw) == ixgbe_media_type_copper) {
2821 /* Turn off the copper */
2822 ixgbe_set_phy_power(hw, false);
2824 /* Turn off the laser */
2825 ixgbe_disable_tx_laser(hw);
2832 * Reest and stop device.
2835 ixgbe_dev_close(struct rte_eth_dev *dev)
2837 struct ixgbe_hw *hw =
2838 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2840 PMD_INIT_FUNC_TRACE();
2842 ixgbe_pf_reset_hw(hw);
2844 ixgbe_dev_stop(dev);
2845 hw->adapter_stopped = 1;
2847 ixgbe_dev_free_queues(dev);
2849 ixgbe_disable_pcie_master(hw);
2851 /* reprogram the RAR[0] in case user changed it. */
2852 ixgbe_set_rar(hw, 0, hw->mac.addr, 0, IXGBE_RAH_AV);
2856 ixgbe_read_stats_registers(struct ixgbe_hw *hw,
2857 struct ixgbe_hw_stats *hw_stats,
2858 struct ixgbe_macsec_stats *macsec_stats,
2859 uint64_t *total_missed_rx, uint64_t *total_qbrc,
2860 uint64_t *total_qprc, uint64_t *total_qprdc)
2862 uint32_t bprc, lxon, lxoff, total;
2863 uint32_t delta_gprc = 0;
2865 /* Workaround for RX byte count not including CRC bytes when CRC
2866 * strip is enabled. CRC bytes are removed from counters when crc_strip
2869 int crc_strip = (IXGBE_READ_REG(hw, IXGBE_HLREG0) &
2870 IXGBE_HLREG0_RXCRCSTRP);
2872 hw_stats->crcerrs += IXGBE_READ_REG(hw, IXGBE_CRCERRS);
2873 hw_stats->illerrc += IXGBE_READ_REG(hw, IXGBE_ILLERRC);
2874 hw_stats->errbc += IXGBE_READ_REG(hw, IXGBE_ERRBC);
2875 hw_stats->mspdc += IXGBE_READ_REG(hw, IXGBE_MSPDC);
2877 for (i = 0; i < 8; i++) {
2878 uint32_t mp = IXGBE_READ_REG(hw, IXGBE_MPC(i));
2880 /* global total per queue */
2881 hw_stats->mpc[i] += mp;
2882 /* Running comprehensive total for stats display */
2883 *total_missed_rx += hw_stats->mpc[i];
2884 if (hw->mac.type == ixgbe_mac_82598EB) {
2885 hw_stats->rnbc[i] +=
2886 IXGBE_READ_REG(hw, IXGBE_RNBC(i));
2887 hw_stats->pxonrxc[i] +=
2888 IXGBE_READ_REG(hw, IXGBE_PXONRXC(i));
2889 hw_stats->pxoffrxc[i] +=
2890 IXGBE_READ_REG(hw, IXGBE_PXOFFRXC(i));
2892 hw_stats->pxonrxc[i] +=
2893 IXGBE_READ_REG(hw, IXGBE_PXONRXCNT(i));
2894 hw_stats->pxoffrxc[i] +=
2895 IXGBE_READ_REG(hw, IXGBE_PXOFFRXCNT(i));
2896 hw_stats->pxon2offc[i] +=
2897 IXGBE_READ_REG(hw, IXGBE_PXON2OFFCNT(i));
2899 hw_stats->pxontxc[i] +=
2900 IXGBE_READ_REG(hw, IXGBE_PXONTXC(i));
2901 hw_stats->pxofftxc[i] +=
2902 IXGBE_READ_REG(hw, IXGBE_PXOFFTXC(i));
2904 for (i = 0; i < IXGBE_QUEUE_STAT_COUNTERS; i++) {
2905 uint32_t delta_qprc = IXGBE_READ_REG(hw, IXGBE_QPRC(i));
2906 uint32_t delta_qptc = IXGBE_READ_REG(hw, IXGBE_QPTC(i));
2907 uint32_t delta_qprdc = IXGBE_READ_REG(hw, IXGBE_QPRDC(i));
2909 delta_gprc += delta_qprc;
2911 hw_stats->qprc[i] += delta_qprc;
2912 hw_stats->qptc[i] += delta_qptc;
2914 hw_stats->qbrc[i] += IXGBE_READ_REG(hw, IXGBE_QBRC_L(i));
2915 hw_stats->qbrc[i] +=
2916 ((uint64_t)IXGBE_READ_REG(hw, IXGBE_QBRC_H(i)) << 32);
2918 hw_stats->qbrc[i] -= delta_qprc * ETHER_CRC_LEN;
2920 hw_stats->qbtc[i] += IXGBE_READ_REG(hw, IXGBE_QBTC_L(i));
2921 hw_stats->qbtc[i] +=
2922 ((uint64_t)IXGBE_READ_REG(hw, IXGBE_QBTC_H(i)) << 32);
2924 hw_stats->qprdc[i] += delta_qprdc;
2925 *total_qprdc += hw_stats->qprdc[i];
2927 *total_qprc += hw_stats->qprc[i];
2928 *total_qbrc += hw_stats->qbrc[i];
2930 hw_stats->mlfc += IXGBE_READ_REG(hw, IXGBE_MLFC);
2931 hw_stats->mrfc += IXGBE_READ_REG(hw, IXGBE_MRFC);
2932 hw_stats->rlec += IXGBE_READ_REG(hw, IXGBE_RLEC);
2935 * An errata states that gprc actually counts good + missed packets:
2936 * Workaround to set gprc to summated queue packet receives
2938 hw_stats->gprc = *total_qprc;
2940 if (hw->mac.type != ixgbe_mac_82598EB) {
2941 hw_stats->gorc += IXGBE_READ_REG(hw, IXGBE_GORCL);
2942 hw_stats->gorc += ((u64)IXGBE_READ_REG(hw, IXGBE_GORCH) << 32);
2943 hw_stats->gotc += IXGBE_READ_REG(hw, IXGBE_GOTCL);
2944 hw_stats->gotc += ((u64)IXGBE_READ_REG(hw, IXGBE_GOTCH) << 32);
2945 hw_stats->tor += IXGBE_READ_REG(hw, IXGBE_TORL);
2946 hw_stats->tor += ((u64)IXGBE_READ_REG(hw, IXGBE_TORH) << 32);
2947 hw_stats->lxonrxc += IXGBE_READ_REG(hw, IXGBE_LXONRXCNT);
2948 hw_stats->lxoffrxc += IXGBE_READ_REG(hw, IXGBE_LXOFFRXCNT);
2950 hw_stats->lxonrxc += IXGBE_READ_REG(hw, IXGBE_LXONRXC);
2951 hw_stats->lxoffrxc += IXGBE_READ_REG(hw, IXGBE_LXOFFRXC);
2952 /* 82598 only has a counter in the high register */
2953 hw_stats->gorc += IXGBE_READ_REG(hw, IXGBE_GORCH);
2954 hw_stats->gotc += IXGBE_READ_REG(hw, IXGBE_GOTCH);
2955 hw_stats->tor += IXGBE_READ_REG(hw, IXGBE_TORH);
2957 uint64_t old_tpr = hw_stats->tpr;
2959 hw_stats->tpr += IXGBE_READ_REG(hw, IXGBE_TPR);
2960 hw_stats->tpt += IXGBE_READ_REG(hw, IXGBE_TPT);
2963 hw_stats->gorc -= delta_gprc * ETHER_CRC_LEN;
2965 uint64_t delta_gptc = IXGBE_READ_REG(hw, IXGBE_GPTC);
2966 hw_stats->gptc += delta_gptc;
2967 hw_stats->gotc -= delta_gptc * ETHER_CRC_LEN;
2968 hw_stats->tor -= (hw_stats->tpr - old_tpr) * ETHER_CRC_LEN;
2971 * Workaround: mprc hardware is incorrectly counting
2972 * broadcasts, so for now we subtract those.
2974 bprc = IXGBE_READ_REG(hw, IXGBE_BPRC);
2975 hw_stats->bprc += bprc;
2976 hw_stats->mprc += IXGBE_READ_REG(hw, IXGBE_MPRC);
2977 if (hw->mac.type == ixgbe_mac_82598EB)
2978 hw_stats->mprc -= bprc;
2980 hw_stats->prc64 += IXGBE_READ_REG(hw, IXGBE_PRC64);
2981 hw_stats->prc127 += IXGBE_READ_REG(hw, IXGBE_PRC127);
2982 hw_stats->prc255 += IXGBE_READ_REG(hw, IXGBE_PRC255);
2983 hw_stats->prc511 += IXGBE_READ_REG(hw, IXGBE_PRC511);
2984 hw_stats->prc1023 += IXGBE_READ_REG(hw, IXGBE_PRC1023);
2985 hw_stats->prc1522 += IXGBE_READ_REG(hw, IXGBE_PRC1522);
2987 lxon = IXGBE_READ_REG(hw, IXGBE_LXONTXC);
2988 hw_stats->lxontxc += lxon;
2989 lxoff = IXGBE_READ_REG(hw, IXGBE_LXOFFTXC);
2990 hw_stats->lxofftxc += lxoff;
2991 total = lxon + lxoff;
2993 hw_stats->mptc += IXGBE_READ_REG(hw, IXGBE_MPTC);
2994 hw_stats->ptc64 += IXGBE_READ_REG(hw, IXGBE_PTC64);
2995 hw_stats->gptc -= total;
2996 hw_stats->mptc -= total;
2997 hw_stats->ptc64 -= total;
2998 hw_stats->gotc -= total * ETHER_MIN_LEN;
3000 hw_stats->ruc += IXGBE_READ_REG(hw, IXGBE_RUC);
3001 hw_stats->rfc += IXGBE_READ_REG(hw, IXGBE_RFC);
3002 hw_stats->roc += IXGBE_READ_REG(hw, IXGBE_ROC);
3003 hw_stats->rjc += IXGBE_READ_REG(hw, IXGBE_RJC);
3004 hw_stats->mngprc += IXGBE_READ_REG(hw, IXGBE_MNGPRC);
3005 hw_stats->mngpdc += IXGBE_READ_REG(hw, IXGBE_MNGPDC);
3006 hw_stats->mngptc += IXGBE_READ_REG(hw, IXGBE_MNGPTC);
3007 hw_stats->ptc127 += IXGBE_READ_REG(hw, IXGBE_PTC127);
3008 hw_stats->ptc255 += IXGBE_READ_REG(hw, IXGBE_PTC255);
3009 hw_stats->ptc511 += IXGBE_READ_REG(hw, IXGBE_PTC511);
3010 hw_stats->ptc1023 += IXGBE_READ_REG(hw, IXGBE_PTC1023);
3011 hw_stats->ptc1522 += IXGBE_READ_REG(hw, IXGBE_PTC1522);
3012 hw_stats->bptc += IXGBE_READ_REG(hw, IXGBE_BPTC);
3013 hw_stats->xec += IXGBE_READ_REG(hw, IXGBE_XEC);
3014 hw_stats->fccrc += IXGBE_READ_REG(hw, IXGBE_FCCRC);
3015 hw_stats->fclast += IXGBE_READ_REG(hw, IXGBE_FCLAST);
3016 /* Only read FCOE on 82599 */
3017 if (hw->mac.type != ixgbe_mac_82598EB) {
3018 hw_stats->fcoerpdc += IXGBE_READ_REG(hw, IXGBE_FCOERPDC);
3019 hw_stats->fcoeprc += IXGBE_READ_REG(hw, IXGBE_FCOEPRC);
3020 hw_stats->fcoeptc += IXGBE_READ_REG(hw, IXGBE_FCOEPTC);
3021 hw_stats->fcoedwrc += IXGBE_READ_REG(hw, IXGBE_FCOEDWRC);
3022 hw_stats->fcoedwtc += IXGBE_READ_REG(hw, IXGBE_FCOEDWTC);
3025 /* Flow Director Stats registers */
3026 hw_stats->fdirmatch += IXGBE_READ_REG(hw, IXGBE_FDIRMATCH);
3027 hw_stats->fdirmiss += IXGBE_READ_REG(hw, IXGBE_FDIRMISS);
3029 /* MACsec Stats registers */
3030 macsec_stats->out_pkts_untagged += IXGBE_READ_REG(hw, IXGBE_LSECTXUT);
3031 macsec_stats->out_pkts_encrypted +=
3032 IXGBE_READ_REG(hw, IXGBE_LSECTXPKTE);
3033 macsec_stats->out_pkts_protected +=
3034 IXGBE_READ_REG(hw, IXGBE_LSECTXPKTP);
3035 macsec_stats->out_octets_encrypted +=
3036 IXGBE_READ_REG(hw, IXGBE_LSECTXOCTE);
3037 macsec_stats->out_octets_protected +=
3038 IXGBE_READ_REG(hw, IXGBE_LSECTXOCTP);
3039 macsec_stats->in_pkts_untagged += IXGBE_READ_REG(hw, IXGBE_LSECRXUT);
3040 macsec_stats->in_pkts_badtag += IXGBE_READ_REG(hw, IXGBE_LSECRXBAD);
3041 macsec_stats->in_pkts_nosci += IXGBE_READ_REG(hw, IXGBE_LSECRXNOSCI);
3042 macsec_stats->in_pkts_unknownsci +=
3043 IXGBE_READ_REG(hw, IXGBE_LSECRXUNSCI);
3044 macsec_stats->in_octets_decrypted +=
3045 IXGBE_READ_REG(hw, IXGBE_LSECRXOCTD);
3046 macsec_stats->in_octets_validated +=
3047 IXGBE_READ_REG(hw, IXGBE_LSECRXOCTV);
3048 macsec_stats->in_pkts_unchecked += IXGBE_READ_REG(hw, IXGBE_LSECRXUNCH);
3049 macsec_stats->in_pkts_delayed += IXGBE_READ_REG(hw, IXGBE_LSECRXDELAY);
3050 macsec_stats->in_pkts_late += IXGBE_READ_REG(hw, IXGBE_LSECRXLATE);
3051 for (i = 0; i < 2; i++) {
3052 macsec_stats->in_pkts_ok +=
3053 IXGBE_READ_REG(hw, IXGBE_LSECRXOK(i));
3054 macsec_stats->in_pkts_invalid +=
3055 IXGBE_READ_REG(hw, IXGBE_LSECRXINV(i));
3056 macsec_stats->in_pkts_notvalid +=
3057 IXGBE_READ_REG(hw, IXGBE_LSECRXNV(i));
3059 macsec_stats->in_pkts_unusedsa += IXGBE_READ_REG(hw, IXGBE_LSECRXUNSA);
3060 macsec_stats->in_pkts_notusingsa +=
3061 IXGBE_READ_REG(hw, IXGBE_LSECRXNUSA);
3065 * This function is based on ixgbe_update_stats_counters() in ixgbe/ixgbe.c
3068 ixgbe_dev_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats)
3070 struct ixgbe_hw *hw =
3071 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3072 struct ixgbe_hw_stats *hw_stats =
3073 IXGBE_DEV_PRIVATE_TO_STATS(dev->data->dev_private);
3074 struct ixgbe_macsec_stats *macsec_stats =
3075 IXGBE_DEV_PRIVATE_TO_MACSEC_STATS(
3076 dev->data->dev_private);
3077 uint64_t total_missed_rx, total_qbrc, total_qprc, total_qprdc;
3080 total_missed_rx = 0;
3085 ixgbe_read_stats_registers(hw, hw_stats, macsec_stats, &total_missed_rx,
3086 &total_qbrc, &total_qprc, &total_qprdc);
3091 /* Fill out the rte_eth_stats statistics structure */
3092 stats->ipackets = total_qprc;
3093 stats->ibytes = total_qbrc;
3094 stats->opackets = hw_stats->gptc;
3095 stats->obytes = hw_stats->gotc;
3097 for (i = 0; i < IXGBE_QUEUE_STAT_COUNTERS; i++) {
3098 stats->q_ipackets[i] = hw_stats->qprc[i];
3099 stats->q_opackets[i] = hw_stats->qptc[i];
3100 stats->q_ibytes[i] = hw_stats->qbrc[i];
3101 stats->q_obytes[i] = hw_stats->qbtc[i];
3102 stats->q_errors[i] = hw_stats->qprdc[i];
3106 stats->imissed = total_missed_rx;
3107 stats->ierrors = hw_stats->crcerrs +
3123 ixgbe_dev_stats_reset(struct rte_eth_dev *dev)
3125 struct ixgbe_hw_stats *stats =
3126 IXGBE_DEV_PRIVATE_TO_STATS(dev->data->dev_private);
3128 /* HW registers are cleared on read */
3129 ixgbe_dev_stats_get(dev, NULL);
3131 /* Reset software totals */
3132 memset(stats, 0, sizeof(*stats));
3135 /* This function calculates the number of xstats based on the current config */
3137 ixgbe_xstats_calc_num(void) {
3138 return IXGBE_NB_HW_STATS + IXGBE_NB_MACSEC_STATS +
3139 (IXGBE_NB_RXQ_PRIO_STATS * IXGBE_NB_RXQ_PRIO_VALUES) +
3140 (IXGBE_NB_TXQ_PRIO_STATS * IXGBE_NB_TXQ_PRIO_VALUES);
3143 static int ixgbe_dev_xstats_get_names(__rte_unused struct rte_eth_dev *dev,
3144 struct rte_eth_xstat_name *xstats_names, __rte_unused unsigned int size)
3146 const unsigned cnt_stats = ixgbe_xstats_calc_num();
3147 unsigned stat, i, count;
3149 if (xstats_names != NULL) {
3152 /* Note: limit >= cnt_stats checked upstream
3153 * in rte_eth_xstats_names()
3156 /* Extended stats from ixgbe_hw_stats */
3157 for (i = 0; i < IXGBE_NB_HW_STATS; i++) {
3158 snprintf(xstats_names[count].name,
3159 sizeof(xstats_names[count].name),
3161 rte_ixgbe_stats_strings[i].name);
3166 for (i = 0; i < IXGBE_NB_MACSEC_STATS; i++) {
3167 snprintf(xstats_names[count].name,
3168 sizeof(xstats_names[count].name),
3170 rte_ixgbe_macsec_strings[i].name);
3174 /* RX Priority Stats */
3175 for (stat = 0; stat < IXGBE_NB_RXQ_PRIO_STATS; stat++) {
3176 for (i = 0; i < IXGBE_NB_RXQ_PRIO_VALUES; i++) {
3177 snprintf(xstats_names[count].name,
3178 sizeof(xstats_names[count].name),
3179 "rx_priority%u_%s", i,
3180 rte_ixgbe_rxq_strings[stat].name);
3185 /* TX Priority Stats */
3186 for (stat = 0; stat < IXGBE_NB_TXQ_PRIO_STATS; stat++) {
3187 for (i = 0; i < IXGBE_NB_TXQ_PRIO_VALUES; i++) {
3188 snprintf(xstats_names[count].name,
3189 sizeof(xstats_names[count].name),
3190 "tx_priority%u_%s", i,
3191 rte_ixgbe_txq_strings[stat].name);
3199 static int ixgbe_dev_xstats_get_names_by_id(
3200 struct rte_eth_dev *dev,
3201 struct rte_eth_xstat_name *xstats_names,
3202 const uint64_t *ids,
3206 const unsigned int cnt_stats = ixgbe_xstats_calc_num();
3207 unsigned int stat, i, count;
3209 if (xstats_names != NULL) {
3212 /* Note: limit >= cnt_stats checked upstream
3213 * in rte_eth_xstats_names()
3216 /* Extended stats from ixgbe_hw_stats */
3217 for (i = 0; i < IXGBE_NB_HW_STATS; i++) {
3218 snprintf(xstats_names[count].name,
3219 sizeof(xstats_names[count].name),
3221 rte_ixgbe_stats_strings[i].name);
3226 for (i = 0; i < IXGBE_NB_MACSEC_STATS; i++) {
3227 snprintf(xstats_names[count].name,
3228 sizeof(xstats_names[count].name),
3230 rte_ixgbe_macsec_strings[i].name);
3234 /* RX Priority Stats */
3235 for (stat = 0; stat < IXGBE_NB_RXQ_PRIO_STATS; stat++) {
3236 for (i = 0; i < IXGBE_NB_RXQ_PRIO_VALUES; i++) {
3237 snprintf(xstats_names[count].name,
3238 sizeof(xstats_names[count].name),
3239 "rx_priority%u_%s", i,
3240 rte_ixgbe_rxq_strings[stat].name);
3245 /* TX Priority Stats */
3246 for (stat = 0; stat < IXGBE_NB_TXQ_PRIO_STATS; stat++) {
3247 for (i = 0; i < IXGBE_NB_TXQ_PRIO_VALUES; i++) {
3248 snprintf(xstats_names[count].name,
3249 sizeof(xstats_names[count].name),
3250 "tx_priority%u_%s", i,
3251 rte_ixgbe_txq_strings[stat].name);
3260 uint16_t size = ixgbe_xstats_calc_num();
3261 struct rte_eth_xstat_name xstats_names_copy[size];
3263 ixgbe_dev_xstats_get_names_by_id(dev, xstats_names_copy, NULL,
3266 for (i = 0; i < limit; i++) {
3267 if (ids[i] >= size) {
3268 PMD_INIT_LOG(ERR, "id value isn't valid");
3271 strcpy(xstats_names[i].name,
3272 xstats_names_copy[ids[i]].name);
3277 static int ixgbevf_dev_xstats_get_names(__rte_unused struct rte_eth_dev *dev,
3278 struct rte_eth_xstat_name *xstats_names, unsigned limit)
3282 if (limit < IXGBEVF_NB_XSTATS && xstats_names != NULL)
3285 if (xstats_names != NULL)
3286 for (i = 0; i < IXGBEVF_NB_XSTATS; i++)
3287 snprintf(xstats_names[i].name,
3288 sizeof(xstats_names[i].name),
3289 "%s", rte_ixgbevf_stats_strings[i].name);
3290 return IXGBEVF_NB_XSTATS;
3294 ixgbe_dev_xstats_get(struct rte_eth_dev *dev, struct rte_eth_xstat *xstats,
3297 struct ixgbe_hw *hw =
3298 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3299 struct ixgbe_hw_stats *hw_stats =
3300 IXGBE_DEV_PRIVATE_TO_STATS(dev->data->dev_private);
3301 struct ixgbe_macsec_stats *macsec_stats =
3302 IXGBE_DEV_PRIVATE_TO_MACSEC_STATS(
3303 dev->data->dev_private);
3304 uint64_t total_missed_rx, total_qbrc, total_qprc, total_qprdc;
3305 unsigned i, stat, count = 0;
3307 count = ixgbe_xstats_calc_num();
3312 total_missed_rx = 0;
3317 ixgbe_read_stats_registers(hw, hw_stats, macsec_stats, &total_missed_rx,
3318 &total_qbrc, &total_qprc, &total_qprdc);
3320 /* If this is a reset xstats is NULL, and we have cleared the
3321 * registers by reading them.
3326 /* Extended stats from ixgbe_hw_stats */
3328 for (i = 0; i < IXGBE_NB_HW_STATS; i++) {
3329 xstats[count].value = *(uint64_t *)(((char *)hw_stats) +
3330 rte_ixgbe_stats_strings[i].offset);
3331 xstats[count].id = count;
3336 for (i = 0; i < IXGBE_NB_MACSEC_STATS; i++) {
3337 xstats[count].value = *(uint64_t *)(((char *)macsec_stats) +
3338 rte_ixgbe_macsec_strings[i].offset);
3339 xstats[count].id = count;
3343 /* RX Priority Stats */
3344 for (stat = 0; stat < IXGBE_NB_RXQ_PRIO_STATS; stat++) {
3345 for (i = 0; i < IXGBE_NB_RXQ_PRIO_VALUES; i++) {
3346 xstats[count].value = *(uint64_t *)(((char *)hw_stats) +
3347 rte_ixgbe_rxq_strings[stat].offset +
3348 (sizeof(uint64_t) * i));
3349 xstats[count].id = count;
3354 /* TX Priority Stats */
3355 for (stat = 0; stat < IXGBE_NB_TXQ_PRIO_STATS; stat++) {
3356 for (i = 0; i < IXGBE_NB_TXQ_PRIO_VALUES; i++) {
3357 xstats[count].value = *(uint64_t *)(((char *)hw_stats) +
3358 rte_ixgbe_txq_strings[stat].offset +
3359 (sizeof(uint64_t) * i));
3360 xstats[count].id = count;
3368 ixgbe_dev_xstats_get_by_id(struct rte_eth_dev *dev, const uint64_t *ids,
3369 uint64_t *values, unsigned int n)
3372 struct ixgbe_hw *hw =
3373 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3374 struct ixgbe_hw_stats *hw_stats =
3375 IXGBE_DEV_PRIVATE_TO_STATS(
3376 dev->data->dev_private);
3377 struct ixgbe_macsec_stats *macsec_stats =
3378 IXGBE_DEV_PRIVATE_TO_MACSEC_STATS(
3379 dev->data->dev_private);
3380 uint64_t total_missed_rx, total_qbrc, total_qprc, total_qprdc;
3381 unsigned int i, stat, count = 0;
3383 count = ixgbe_xstats_calc_num();
3385 if (!ids && n < count)
3388 total_missed_rx = 0;
3393 ixgbe_read_stats_registers(hw, hw_stats, macsec_stats,
3394 &total_missed_rx, &total_qbrc, &total_qprc,
3397 /* If this is a reset xstats is NULL, and we have cleared the
3398 * registers by reading them.
3400 if (!ids && !values)
3403 /* Extended stats from ixgbe_hw_stats */
3405 for (i = 0; i < IXGBE_NB_HW_STATS; i++) {
3406 values[count] = *(uint64_t *)(((char *)hw_stats) +
3407 rte_ixgbe_stats_strings[i].offset);
3412 for (i = 0; i < IXGBE_NB_MACSEC_STATS; i++) {
3413 values[count] = *(uint64_t *)(((char *)macsec_stats) +
3414 rte_ixgbe_macsec_strings[i].offset);
3418 /* RX Priority Stats */
3419 for (stat = 0; stat < IXGBE_NB_RXQ_PRIO_STATS; stat++) {
3420 for (i = 0; i < IXGBE_NB_RXQ_PRIO_VALUES; i++) {
3422 *(uint64_t *)(((char *)hw_stats) +
3423 rte_ixgbe_rxq_strings[stat].offset +
3424 (sizeof(uint64_t) * i));
3429 /* TX Priority Stats */
3430 for (stat = 0; stat < IXGBE_NB_TXQ_PRIO_STATS; stat++) {
3431 for (i = 0; i < IXGBE_NB_TXQ_PRIO_VALUES; i++) {
3433 *(uint64_t *)(((char *)hw_stats) +
3434 rte_ixgbe_txq_strings[stat].offset +
3435 (sizeof(uint64_t) * i));
3443 uint16_t size = ixgbe_xstats_calc_num();
3444 uint64_t values_copy[size];
3446 ixgbe_dev_xstats_get_by_id(dev, NULL, values_copy, size);
3448 for (i = 0; i < n; i++) {
3449 if (ids[i] >= size) {
3450 PMD_INIT_LOG(ERR, "id value isn't valid");
3453 values[i] = values_copy[ids[i]];
3459 ixgbe_dev_xstats_reset(struct rte_eth_dev *dev)
3461 struct ixgbe_hw_stats *stats =
3462 IXGBE_DEV_PRIVATE_TO_STATS(dev->data->dev_private);
3463 struct ixgbe_macsec_stats *macsec_stats =
3464 IXGBE_DEV_PRIVATE_TO_MACSEC_STATS(
3465 dev->data->dev_private);
3467 unsigned count = ixgbe_xstats_calc_num();
3469 /* HW registers are cleared on read */
3470 ixgbe_dev_xstats_get(dev, NULL, count);
3472 /* Reset software totals */
3473 memset(stats, 0, sizeof(*stats));
3474 memset(macsec_stats, 0, sizeof(*macsec_stats));
3478 ixgbevf_update_stats(struct rte_eth_dev *dev)
3480 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3481 struct ixgbevf_hw_stats *hw_stats = (struct ixgbevf_hw_stats *)
3482 IXGBE_DEV_PRIVATE_TO_STATS(dev->data->dev_private);
3484 /* Good Rx packet, include VF loopback */
3485 UPDATE_VF_STAT(IXGBE_VFGPRC,
3486 hw_stats->last_vfgprc, hw_stats->vfgprc);
3488 /* Good Rx octets, include VF loopback */
3489 UPDATE_VF_STAT_36BIT(IXGBE_VFGORC_LSB, IXGBE_VFGORC_MSB,
3490 hw_stats->last_vfgorc, hw_stats->vfgorc);
3492 /* Good Tx packet, include VF loopback */
3493 UPDATE_VF_STAT(IXGBE_VFGPTC,
3494 hw_stats->last_vfgptc, hw_stats->vfgptc);
3496 /* Good Tx octets, include VF loopback */
3497 UPDATE_VF_STAT_36BIT(IXGBE_VFGOTC_LSB, IXGBE_VFGOTC_MSB,
3498 hw_stats->last_vfgotc, hw_stats->vfgotc);
3500 /* Rx Multicst Packet */
3501 UPDATE_VF_STAT(IXGBE_VFMPRC,
3502 hw_stats->last_vfmprc, hw_stats->vfmprc);
3506 ixgbevf_dev_xstats_get(struct rte_eth_dev *dev, struct rte_eth_xstat *xstats,
3509 struct ixgbevf_hw_stats *hw_stats = (struct ixgbevf_hw_stats *)
3510 IXGBE_DEV_PRIVATE_TO_STATS(dev->data->dev_private);
3513 if (n < IXGBEVF_NB_XSTATS)
3514 return IXGBEVF_NB_XSTATS;
3516 ixgbevf_update_stats(dev);
3521 /* Extended stats */
3522 for (i = 0; i < IXGBEVF_NB_XSTATS; i++) {
3524 xstats[i].value = *(uint64_t *)(((char *)hw_stats) +
3525 rte_ixgbevf_stats_strings[i].offset);
3528 return IXGBEVF_NB_XSTATS;
3532 ixgbevf_dev_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats)
3534 struct ixgbevf_hw_stats *hw_stats = (struct ixgbevf_hw_stats *)
3535 IXGBE_DEV_PRIVATE_TO_STATS(dev->data->dev_private);
3537 ixgbevf_update_stats(dev);
3542 stats->ipackets = hw_stats->vfgprc;
3543 stats->ibytes = hw_stats->vfgorc;
3544 stats->opackets = hw_stats->vfgptc;
3545 stats->obytes = hw_stats->vfgotc;
3549 ixgbevf_dev_stats_reset(struct rte_eth_dev *dev)
3551 struct ixgbevf_hw_stats *hw_stats = (struct ixgbevf_hw_stats *)
3552 IXGBE_DEV_PRIVATE_TO_STATS(dev->data->dev_private);
3554 /* Sync HW register to the last stats */
3555 ixgbevf_dev_stats_get(dev, NULL);
3557 /* reset HW current stats*/
3558 hw_stats->vfgprc = 0;
3559 hw_stats->vfgorc = 0;
3560 hw_stats->vfgptc = 0;
3561 hw_stats->vfgotc = 0;
3565 ixgbe_fw_version_get(struct rte_eth_dev *dev, char *fw_version, size_t fw_size)
3567 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3568 u16 eeprom_verh, eeprom_verl;
3572 ixgbe_read_eeprom(hw, 0x2e, &eeprom_verh);
3573 ixgbe_read_eeprom(hw, 0x2d, &eeprom_verl);
3575 etrack_id = (eeprom_verh << 16) | eeprom_verl;
3576 ret = snprintf(fw_version, fw_size, "0x%08x", etrack_id);
3578 ret += 1; /* add the size of '\0' */
3579 if (fw_size < (u32)ret)
3586 ixgbe_dev_info_get(struct rte_eth_dev *dev, struct rte_eth_dev_info *dev_info)
3588 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
3589 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3590 struct rte_eth_conf *dev_conf = &dev->data->dev_conf;
3592 dev_info->pci_dev = pci_dev;
3593 dev_info->max_rx_queues = (uint16_t)hw->mac.max_rx_queues;
3594 dev_info->max_tx_queues = (uint16_t)hw->mac.max_tx_queues;
3595 if (RTE_ETH_DEV_SRIOV(dev).active == 0) {
3597 * When DCB/VT is off, maximum number of queues changes,
3598 * except for 82598EB, which remains constant.
3600 if (dev_conf->txmode.mq_mode == ETH_MQ_TX_NONE &&
3601 hw->mac.type != ixgbe_mac_82598EB)
3602 dev_info->max_tx_queues = IXGBE_NONE_MODE_TX_NB_QUEUES;
3604 dev_info->min_rx_bufsize = 1024; /* cf BSIZEPACKET in SRRCTL register */
3605 dev_info->max_rx_pktlen = 15872; /* includes CRC, cf MAXFRS register */
3606 dev_info->max_mac_addrs = hw->mac.num_rar_entries;
3607 dev_info->max_hash_mac_addrs = IXGBE_VMDQ_NUM_UC_MAC;
3608 dev_info->max_vfs = pci_dev->max_vfs;
3609 if (hw->mac.type == ixgbe_mac_82598EB)
3610 dev_info->max_vmdq_pools = ETH_16_POOLS;
3612 dev_info->max_vmdq_pools = ETH_64_POOLS;
3613 dev_info->vmdq_queue_num = dev_info->max_rx_queues;
3614 dev_info->rx_offload_capa =
3615 DEV_RX_OFFLOAD_VLAN_STRIP |
3616 DEV_RX_OFFLOAD_IPV4_CKSUM |
3617 DEV_RX_OFFLOAD_UDP_CKSUM |
3618 DEV_RX_OFFLOAD_TCP_CKSUM;
3621 * RSC is only supported by 82599 and x540 PF devices in a non-SR-IOV
3624 if ((hw->mac.type == ixgbe_mac_82599EB ||
3625 hw->mac.type == ixgbe_mac_X540) &&
3626 !RTE_ETH_DEV_SRIOV(dev).active)
3627 dev_info->rx_offload_capa |= DEV_RX_OFFLOAD_TCP_LRO;
3629 if (hw->mac.type == ixgbe_mac_82599EB ||
3630 hw->mac.type == ixgbe_mac_X540)
3631 dev_info->rx_offload_capa |= DEV_RX_OFFLOAD_MACSEC_STRIP;
3633 if (hw->mac.type == ixgbe_mac_X550 ||
3634 hw->mac.type == ixgbe_mac_X550EM_x ||
3635 hw->mac.type == ixgbe_mac_X550EM_a)
3636 dev_info->rx_offload_capa |= DEV_RX_OFFLOAD_OUTER_IPV4_CKSUM;
3638 dev_info->tx_offload_capa =
3639 DEV_TX_OFFLOAD_VLAN_INSERT |
3640 DEV_TX_OFFLOAD_IPV4_CKSUM |
3641 DEV_TX_OFFLOAD_UDP_CKSUM |
3642 DEV_TX_OFFLOAD_TCP_CKSUM |
3643 DEV_TX_OFFLOAD_SCTP_CKSUM |
3644 DEV_TX_OFFLOAD_TCP_TSO;
3646 if (hw->mac.type == ixgbe_mac_82599EB ||
3647 hw->mac.type == ixgbe_mac_X540)
3648 dev_info->tx_offload_capa |= DEV_TX_OFFLOAD_MACSEC_INSERT;
3650 if (hw->mac.type == ixgbe_mac_X550 ||
3651 hw->mac.type == ixgbe_mac_X550EM_x ||
3652 hw->mac.type == ixgbe_mac_X550EM_a)
3653 dev_info->tx_offload_capa |= DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM;
3655 dev_info->default_rxconf = (struct rte_eth_rxconf) {
3657 .pthresh = IXGBE_DEFAULT_RX_PTHRESH,
3658 .hthresh = IXGBE_DEFAULT_RX_HTHRESH,
3659 .wthresh = IXGBE_DEFAULT_RX_WTHRESH,
3661 .rx_free_thresh = IXGBE_DEFAULT_RX_FREE_THRESH,
3665 dev_info->default_txconf = (struct rte_eth_txconf) {
3667 .pthresh = IXGBE_DEFAULT_TX_PTHRESH,
3668 .hthresh = IXGBE_DEFAULT_TX_HTHRESH,
3669 .wthresh = IXGBE_DEFAULT_TX_WTHRESH,
3671 .tx_free_thresh = IXGBE_DEFAULT_TX_FREE_THRESH,
3672 .tx_rs_thresh = IXGBE_DEFAULT_TX_RSBIT_THRESH,
3673 .txq_flags = ETH_TXQ_FLAGS_NOMULTSEGS |
3674 ETH_TXQ_FLAGS_NOOFFLOADS,
3677 dev_info->rx_desc_lim = rx_desc_lim;
3678 dev_info->tx_desc_lim = tx_desc_lim;
3680 dev_info->hash_key_size = IXGBE_HKEY_MAX_INDEX * sizeof(uint32_t);
3681 dev_info->reta_size = ixgbe_reta_size_get(hw->mac.type);
3682 dev_info->flow_type_rss_offloads = IXGBE_RSS_OFFLOAD_ALL;
3684 dev_info->speed_capa = ETH_LINK_SPEED_1G | ETH_LINK_SPEED_10G;
3685 if (hw->mac.type == ixgbe_mac_X540 ||
3686 hw->mac.type == ixgbe_mac_X540_vf ||
3687 hw->mac.type == ixgbe_mac_X550 ||
3688 hw->mac.type == ixgbe_mac_X550_vf) {
3689 dev_info->speed_capa |= ETH_LINK_SPEED_100M;
3693 static const uint32_t *
3694 ixgbe_dev_supported_ptypes_get(struct rte_eth_dev *dev)
3696 static const uint32_t ptypes[] = {
3697 /* For non-vec functions,
3698 * refers to ixgbe_rxd_pkt_info_to_pkt_type();
3699 * for vec functions,
3700 * refers to _recv_raw_pkts_vec().
3704 RTE_PTYPE_L3_IPV4_EXT,
3706 RTE_PTYPE_L3_IPV6_EXT,
3710 RTE_PTYPE_TUNNEL_IP,
3711 RTE_PTYPE_INNER_L3_IPV6,
3712 RTE_PTYPE_INNER_L3_IPV6_EXT,
3713 RTE_PTYPE_INNER_L4_TCP,
3714 RTE_PTYPE_INNER_L4_UDP,
3718 if (dev->rx_pkt_burst == ixgbe_recv_pkts ||
3719 dev->rx_pkt_burst == ixgbe_recv_pkts_lro_single_alloc ||
3720 dev->rx_pkt_burst == ixgbe_recv_pkts_lro_bulk_alloc ||
3721 dev->rx_pkt_burst == ixgbe_recv_pkts_bulk_alloc)
3724 #if defined(RTE_ARCH_X86)
3725 if (dev->rx_pkt_burst == ixgbe_recv_pkts_vec ||
3726 dev->rx_pkt_burst == ixgbe_recv_scattered_pkts_vec)
3733 ixgbevf_dev_info_get(struct rte_eth_dev *dev,
3734 struct rte_eth_dev_info *dev_info)
3736 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
3737 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3739 dev_info->pci_dev = pci_dev;
3740 dev_info->max_rx_queues = (uint16_t)hw->mac.max_rx_queues;
3741 dev_info->max_tx_queues = (uint16_t)hw->mac.max_tx_queues;
3742 dev_info->min_rx_bufsize = 1024; /* cf BSIZEPACKET in SRRCTL reg */
3743 dev_info->max_rx_pktlen = 9728; /* includes CRC, cf MAXFRS reg */
3744 dev_info->max_mac_addrs = hw->mac.num_rar_entries;
3745 dev_info->max_hash_mac_addrs = IXGBE_VMDQ_NUM_UC_MAC;
3746 dev_info->max_vfs = pci_dev->max_vfs;
3747 if (hw->mac.type == ixgbe_mac_82598EB)
3748 dev_info->max_vmdq_pools = ETH_16_POOLS;
3750 dev_info->max_vmdq_pools = ETH_64_POOLS;
3751 dev_info->rx_offload_capa = DEV_RX_OFFLOAD_VLAN_STRIP |
3752 DEV_RX_OFFLOAD_IPV4_CKSUM |
3753 DEV_RX_OFFLOAD_UDP_CKSUM |
3754 DEV_RX_OFFLOAD_TCP_CKSUM;
3755 dev_info->tx_offload_capa = DEV_TX_OFFLOAD_VLAN_INSERT |
3756 DEV_TX_OFFLOAD_IPV4_CKSUM |
3757 DEV_TX_OFFLOAD_UDP_CKSUM |
3758 DEV_TX_OFFLOAD_TCP_CKSUM |
3759 DEV_TX_OFFLOAD_SCTP_CKSUM |
3760 DEV_TX_OFFLOAD_TCP_TSO;
3762 dev_info->default_rxconf = (struct rte_eth_rxconf) {
3764 .pthresh = IXGBE_DEFAULT_RX_PTHRESH,
3765 .hthresh = IXGBE_DEFAULT_RX_HTHRESH,
3766 .wthresh = IXGBE_DEFAULT_RX_WTHRESH,
3768 .rx_free_thresh = IXGBE_DEFAULT_RX_FREE_THRESH,
3772 dev_info->default_txconf = (struct rte_eth_txconf) {
3774 .pthresh = IXGBE_DEFAULT_TX_PTHRESH,
3775 .hthresh = IXGBE_DEFAULT_TX_HTHRESH,
3776 .wthresh = IXGBE_DEFAULT_TX_WTHRESH,
3778 .tx_free_thresh = IXGBE_DEFAULT_TX_FREE_THRESH,
3779 .tx_rs_thresh = IXGBE_DEFAULT_TX_RSBIT_THRESH,
3780 .txq_flags = ETH_TXQ_FLAGS_NOMULTSEGS |
3781 ETH_TXQ_FLAGS_NOOFFLOADS,
3784 dev_info->rx_desc_lim = rx_desc_lim;
3785 dev_info->tx_desc_lim = tx_desc_lim;
3789 ixgbevf_check_link(struct ixgbe_hw *hw, ixgbe_link_speed *speed,
3790 int *link_up, int wait_to_complete)
3793 * for a quick link status checking, wait_to_compelet == 0,
3794 * skip PF link status checking
3796 bool no_pflink_check = wait_to_complete == 0;
3797 struct ixgbe_mbx_info *mbx = &hw->mbx;
3798 struct ixgbe_mac_info *mac = &hw->mac;
3799 uint32_t links_reg, in_msg;
3802 /* If we were hit with a reset drop the link */
3803 if (!mbx->ops.check_for_rst(hw, 0) || !mbx->timeout)
3804 mac->get_link_status = true;
3806 if (!mac->get_link_status)
3809 /* if link status is down no point in checking to see if pf is up */
3810 links_reg = IXGBE_READ_REG(hw, IXGBE_VFLINKS);
3811 if (!(links_reg & IXGBE_LINKS_UP))
3814 /* for SFP+ modules and DA cables on 82599 it can take up to 500usecs
3815 * before the link status is correct
3817 if (mac->type == ixgbe_mac_82599_vf) {
3820 for (i = 0; i < 5; i++) {
3822 links_reg = IXGBE_READ_REG(hw, IXGBE_VFLINKS);
3824 if (!(links_reg & IXGBE_LINKS_UP))
3829 switch (links_reg & IXGBE_LINKS_SPEED_82599) {
3830 case IXGBE_LINKS_SPEED_10G_82599:
3831 *speed = IXGBE_LINK_SPEED_10GB_FULL;
3832 if (hw->mac.type >= ixgbe_mac_X550) {
3833 if (links_reg & IXGBE_LINKS_SPEED_NON_STD)
3834 *speed = IXGBE_LINK_SPEED_2_5GB_FULL;
3837 case IXGBE_LINKS_SPEED_1G_82599:
3838 *speed = IXGBE_LINK_SPEED_1GB_FULL;
3840 case IXGBE_LINKS_SPEED_100_82599:
3841 *speed = IXGBE_LINK_SPEED_100_FULL;
3842 if (hw->mac.type == ixgbe_mac_X550) {
3843 if (links_reg & IXGBE_LINKS_SPEED_NON_STD)
3844 *speed = IXGBE_LINK_SPEED_5GB_FULL;
3847 case IXGBE_LINKS_SPEED_10_X550EM_A:
3848 *speed = IXGBE_LINK_SPEED_UNKNOWN;
3849 /* Since Reserved in older MAC's */
3850 if (hw->mac.type >= ixgbe_mac_X550)
3851 *speed = IXGBE_LINK_SPEED_10_FULL;
3854 *speed = IXGBE_LINK_SPEED_UNKNOWN;
3857 if (no_pflink_check) {
3858 if (*speed == IXGBE_LINK_SPEED_UNKNOWN)
3859 mac->get_link_status = true;
3861 mac->get_link_status = false;
3865 /* if the read failed it could just be a mailbox collision, best wait
3866 * until we are called again and don't report an error
3868 if (mbx->ops.read(hw, &in_msg, 1, 0))
3871 if (!(in_msg & IXGBE_VT_MSGTYPE_CTS)) {
3872 /* msg is not CTS and is NACK we must have lost CTS status */
3873 if (in_msg & IXGBE_VT_MSGTYPE_NACK)
3878 /* the pf is talking, if we timed out in the past we reinit */
3879 if (!mbx->timeout) {
3884 /* if we passed all the tests above then the link is up and we no
3885 * longer need to check for link
3887 mac->get_link_status = false;
3890 *link_up = !mac->get_link_status;
3894 /* return 0 means link status changed, -1 means not changed */
3896 ixgbe_dev_link_update_share(struct rte_eth_dev *dev,
3897 int wait_to_complete, int vf)
3899 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3900 struct rte_eth_link link, old;
3901 ixgbe_link_speed link_speed = IXGBE_LINK_SPEED_UNKNOWN;
3902 struct ixgbe_interrupt *intr =
3903 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
3908 bool autoneg = false;
3910 link.link_status = ETH_LINK_DOWN;
3911 link.link_speed = 0;
3912 link.link_duplex = ETH_LINK_HALF_DUPLEX;
3913 memset(&old, 0, sizeof(old));
3914 rte_ixgbe_dev_atomic_read_link_status(dev, &old);
3916 hw->mac.get_link_status = true;
3918 if ((intr->flags & IXGBE_FLAG_NEED_LINK_CONFIG) &&
3919 ixgbe_get_media_type(hw) == ixgbe_media_type_fiber) {
3920 speed = hw->phy.autoneg_advertised;
3922 ixgbe_get_link_capabilities(hw, &speed, &autoneg);
3923 ixgbe_setup_link(hw, speed, true);
3926 /* check if it needs to wait to complete, if lsc interrupt is enabled */
3927 if (wait_to_complete == 0 || dev->data->dev_conf.intr_conf.lsc != 0)
3931 diag = ixgbevf_check_link(hw, &link_speed, &link_up, wait);
3933 diag = ixgbe_check_link(hw, &link_speed, &link_up, wait);
3936 link.link_speed = ETH_SPEED_NUM_100M;
3937 link.link_duplex = ETH_LINK_FULL_DUPLEX;
3938 rte_ixgbe_dev_atomic_write_link_status(dev, &link);
3939 if (link.link_status == old.link_status)
3945 rte_ixgbe_dev_atomic_write_link_status(dev, &link);
3946 intr->flags |= IXGBE_FLAG_NEED_LINK_CONFIG;
3947 if (link.link_status == old.link_status)
3951 intr->flags &= ~IXGBE_FLAG_NEED_LINK_CONFIG;
3952 link.link_status = ETH_LINK_UP;
3953 link.link_duplex = ETH_LINK_FULL_DUPLEX;
3955 switch (link_speed) {
3957 case IXGBE_LINK_SPEED_UNKNOWN:
3958 link.link_duplex = ETH_LINK_FULL_DUPLEX;
3959 link.link_speed = ETH_SPEED_NUM_100M;
3962 case IXGBE_LINK_SPEED_100_FULL:
3963 link.link_speed = ETH_SPEED_NUM_100M;
3966 case IXGBE_LINK_SPEED_1GB_FULL:
3967 link.link_speed = ETH_SPEED_NUM_1G;
3970 case IXGBE_LINK_SPEED_10GB_FULL:
3971 link.link_speed = ETH_SPEED_NUM_10G;
3974 rte_ixgbe_dev_atomic_write_link_status(dev, &link);
3976 if (link.link_status == old.link_status)
3983 ixgbe_dev_link_update(struct rte_eth_dev *dev, int wait_to_complete)
3985 return ixgbe_dev_link_update_share(dev, wait_to_complete, 0);
3989 ixgbevf_dev_link_update(struct rte_eth_dev *dev, int wait_to_complete)
3991 return ixgbe_dev_link_update_share(dev, wait_to_complete, 1);
3995 ixgbe_dev_promiscuous_enable(struct rte_eth_dev *dev)
3997 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4000 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
4001 fctrl |= (IXGBE_FCTRL_UPE | IXGBE_FCTRL_MPE);
4002 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
4006 ixgbe_dev_promiscuous_disable(struct rte_eth_dev *dev)
4008 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4011 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
4012 fctrl &= (~IXGBE_FCTRL_UPE);
4013 if (dev->data->all_multicast == 1)
4014 fctrl |= IXGBE_FCTRL_MPE;
4016 fctrl &= (~IXGBE_FCTRL_MPE);
4017 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
4021 ixgbe_dev_allmulticast_enable(struct rte_eth_dev *dev)
4023 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4026 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
4027 fctrl |= IXGBE_FCTRL_MPE;
4028 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
4032 ixgbe_dev_allmulticast_disable(struct rte_eth_dev *dev)
4034 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4037 if (dev->data->promiscuous == 1)
4038 return; /* must remain in all_multicast mode */
4040 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
4041 fctrl &= (~IXGBE_FCTRL_MPE);
4042 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
4046 * It clears the interrupt causes and enables the interrupt.
4047 * It will be called once only during nic initialized.
4050 * Pointer to struct rte_eth_dev.
4053 * - On success, zero.
4054 * - On failure, a negative value.
4057 ixgbe_dev_lsc_interrupt_setup(struct rte_eth_dev *dev)
4059 struct ixgbe_interrupt *intr =
4060 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
4062 ixgbe_dev_link_status_print(dev);
4063 intr->mask |= IXGBE_EICR_LSC;
4069 * It clears the interrupt causes and enables the interrupt.
4070 * It will be called once only during nic initialized.
4073 * Pointer to struct rte_eth_dev.
4076 * - On success, zero.
4077 * - On failure, a negative value.
4080 ixgbe_dev_rxq_interrupt_setup(struct rte_eth_dev *dev)
4082 struct ixgbe_interrupt *intr =
4083 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
4085 intr->mask |= IXGBE_EICR_RTX_QUEUE;
4091 * It clears the interrupt causes and enables the interrupt.
4092 * It will be called once only during nic initialized.
4095 * Pointer to struct rte_eth_dev.
4098 * - On success, zero.
4099 * - On failure, a negative value.
4102 ixgbe_dev_macsec_interrupt_setup(struct rte_eth_dev *dev)
4104 struct ixgbe_interrupt *intr =
4105 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
4107 intr->mask |= IXGBE_EICR_LINKSEC;
4113 * It reads ICR and sets flag (IXGBE_EICR_LSC) for the link_update.
4116 * Pointer to struct rte_eth_dev.
4119 * - On success, zero.
4120 * - On failure, a negative value.
4123 ixgbe_dev_interrupt_get_status(struct rte_eth_dev *dev)
4126 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4127 struct ixgbe_interrupt *intr =
4128 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
4130 /* clear all cause mask */
4131 ixgbe_disable_intr(hw);
4133 /* read-on-clear nic registers here */
4134 eicr = IXGBE_READ_REG(hw, IXGBE_EICR);
4135 PMD_DRV_LOG(DEBUG, "eicr %x", eicr);
4139 /* set flag for async link update */
4140 if (eicr & IXGBE_EICR_LSC)
4141 intr->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
4143 if (eicr & IXGBE_EICR_MAILBOX)
4144 intr->flags |= IXGBE_FLAG_MAILBOX;
4146 if (eicr & IXGBE_EICR_LINKSEC)
4147 intr->flags |= IXGBE_FLAG_MACSEC;
4149 if (hw->mac.type == ixgbe_mac_X550EM_x &&
4150 hw->phy.type == ixgbe_phy_x550em_ext_t &&
4151 (eicr & IXGBE_EICR_GPI_SDP0_X550EM_x))
4152 intr->flags |= IXGBE_FLAG_PHY_INTERRUPT;
4158 * It gets and then prints the link status.
4161 * Pointer to struct rte_eth_dev.
4164 * - On success, zero.
4165 * - On failure, a negative value.
4168 ixgbe_dev_link_status_print(struct rte_eth_dev *dev)
4170 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
4171 struct rte_eth_link link;
4173 memset(&link, 0, sizeof(link));
4174 rte_ixgbe_dev_atomic_read_link_status(dev, &link);
4175 if (link.link_status) {
4176 PMD_INIT_LOG(INFO, "Port %d: Link Up - speed %u Mbps - %s",
4177 (int)(dev->data->port_id),
4178 (unsigned)link.link_speed,
4179 link.link_duplex == ETH_LINK_FULL_DUPLEX ?
4180 "full-duplex" : "half-duplex");
4182 PMD_INIT_LOG(INFO, " Port %d: Link Down",
4183 (int)(dev->data->port_id));
4185 PMD_INIT_LOG(DEBUG, "PCI Address: " PCI_PRI_FMT,
4186 pci_dev->addr.domain,
4188 pci_dev->addr.devid,
4189 pci_dev->addr.function);
4193 * It executes link_update after knowing an interrupt occurred.
4196 * Pointer to struct rte_eth_dev.
4199 * - On success, zero.
4200 * - On failure, a negative value.
4203 ixgbe_dev_interrupt_action(struct rte_eth_dev *dev,
4204 struct rte_intr_handle *intr_handle)
4206 struct ixgbe_interrupt *intr =
4207 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
4209 struct rte_eth_link link;
4210 struct ixgbe_hw *hw =
4211 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4213 PMD_DRV_LOG(DEBUG, "intr action type %d", intr->flags);
4215 if (intr->flags & IXGBE_FLAG_MAILBOX) {
4216 ixgbe_pf_mbx_process(dev);
4217 intr->flags &= ~IXGBE_FLAG_MAILBOX;
4220 if (intr->flags & IXGBE_FLAG_PHY_INTERRUPT) {
4221 ixgbe_handle_lasi(hw);
4222 intr->flags &= ~IXGBE_FLAG_PHY_INTERRUPT;
4225 if (intr->flags & IXGBE_FLAG_NEED_LINK_UPDATE) {
4226 /* get the link status before link update, for predicting later */
4227 memset(&link, 0, sizeof(link));
4228 rte_ixgbe_dev_atomic_read_link_status(dev, &link);
4230 ixgbe_dev_link_update(dev, 0);
4233 if (!link.link_status)
4234 /* handle it 1 sec later, wait it being stable */
4235 timeout = IXGBE_LINK_UP_CHECK_TIMEOUT;
4236 /* likely to down */
4238 /* handle it 4 sec later, wait it being stable */
4239 timeout = IXGBE_LINK_DOWN_CHECK_TIMEOUT;
4241 ixgbe_dev_link_status_print(dev);
4242 if (rte_eal_alarm_set(timeout * 1000,
4243 ixgbe_dev_interrupt_delayed_handler, (void *)dev) < 0)
4244 PMD_DRV_LOG(ERR, "Error setting alarm");
4246 /* remember original mask */
4247 intr->mask_original = intr->mask;
4248 /* only disable lsc interrupt */
4249 intr->mask &= ~IXGBE_EIMS_LSC;
4253 PMD_DRV_LOG(DEBUG, "enable intr immediately");
4254 ixgbe_enable_intr(dev);
4255 rte_intr_enable(intr_handle);
4261 * Interrupt handler which shall be registered for alarm callback for delayed
4262 * handling specific interrupt to wait for the stable nic state. As the
4263 * NIC interrupt state is not stable for ixgbe after link is just down,
4264 * it needs to wait 4 seconds to get the stable status.
4267 * Pointer to interrupt handle.
4269 * The address of parameter (struct rte_eth_dev *) regsitered before.
4275 ixgbe_dev_interrupt_delayed_handler(void *param)
4277 struct rte_eth_dev *dev = (struct rte_eth_dev *)param;
4278 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
4279 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
4280 struct ixgbe_interrupt *intr =
4281 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
4282 struct ixgbe_hw *hw =
4283 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4286 ixgbe_disable_intr(hw);
4288 eicr = IXGBE_READ_REG(hw, IXGBE_EICR);
4289 if (eicr & IXGBE_EICR_MAILBOX)
4290 ixgbe_pf_mbx_process(dev);
4292 if (intr->flags & IXGBE_FLAG_PHY_INTERRUPT) {
4293 ixgbe_handle_lasi(hw);
4294 intr->flags &= ~IXGBE_FLAG_PHY_INTERRUPT;
4297 if (intr->flags & IXGBE_FLAG_NEED_LINK_UPDATE) {
4298 ixgbe_dev_link_update(dev, 0);
4299 intr->flags &= ~IXGBE_FLAG_NEED_LINK_UPDATE;
4300 ixgbe_dev_link_status_print(dev);
4301 _rte_eth_dev_callback_process(dev, RTE_ETH_EVENT_INTR_LSC,
4305 if (intr->flags & IXGBE_FLAG_MACSEC) {
4306 _rte_eth_dev_callback_process(dev, RTE_ETH_EVENT_MACSEC,
4308 intr->flags &= ~IXGBE_FLAG_MACSEC;
4311 /* restore original mask */
4312 intr->mask = intr->mask_original;
4313 intr->mask_original = 0;
4315 PMD_DRV_LOG(DEBUG, "enable intr in delayed handler S[%08x]", eicr);
4316 ixgbe_enable_intr(dev);
4317 rte_intr_enable(intr_handle);
4321 * Interrupt handler triggered by NIC for handling
4322 * specific interrupt.
4325 * Pointer to interrupt handle.
4327 * The address of parameter (struct rte_eth_dev *) regsitered before.
4333 ixgbe_dev_interrupt_handler(void *param)
4335 struct rte_eth_dev *dev = (struct rte_eth_dev *)param;
4337 ixgbe_dev_interrupt_get_status(dev);
4338 ixgbe_dev_interrupt_action(dev, dev->intr_handle);
4342 ixgbe_dev_led_on(struct rte_eth_dev *dev)
4344 struct ixgbe_hw *hw;
4346 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4347 return ixgbe_led_on(hw, 0) == IXGBE_SUCCESS ? 0 : -ENOTSUP;
4351 ixgbe_dev_led_off(struct rte_eth_dev *dev)
4353 struct ixgbe_hw *hw;
4355 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4356 return ixgbe_led_off(hw, 0) == IXGBE_SUCCESS ? 0 : -ENOTSUP;
4360 ixgbe_flow_ctrl_get(struct rte_eth_dev *dev, struct rte_eth_fc_conf *fc_conf)
4362 struct ixgbe_hw *hw;
4368 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4370 fc_conf->pause_time = hw->fc.pause_time;
4371 fc_conf->high_water = hw->fc.high_water[0];
4372 fc_conf->low_water = hw->fc.low_water[0];
4373 fc_conf->send_xon = hw->fc.send_xon;
4374 fc_conf->autoneg = !hw->fc.disable_fc_autoneg;
4377 * Return rx_pause status according to actual setting of
4380 mflcn_reg = IXGBE_READ_REG(hw, IXGBE_MFLCN);
4381 if (mflcn_reg & (IXGBE_MFLCN_RPFCE | IXGBE_MFLCN_RFCE))
4387 * Return tx_pause status according to actual setting of
4390 fccfg_reg = IXGBE_READ_REG(hw, IXGBE_FCCFG);
4391 if (fccfg_reg & (IXGBE_FCCFG_TFCE_802_3X | IXGBE_FCCFG_TFCE_PRIORITY))
4396 if (rx_pause && tx_pause)
4397 fc_conf->mode = RTE_FC_FULL;
4399 fc_conf->mode = RTE_FC_RX_PAUSE;
4401 fc_conf->mode = RTE_FC_TX_PAUSE;
4403 fc_conf->mode = RTE_FC_NONE;
4409 ixgbe_flow_ctrl_set(struct rte_eth_dev *dev, struct rte_eth_fc_conf *fc_conf)
4411 struct ixgbe_hw *hw;
4413 uint32_t rx_buf_size;
4414 uint32_t max_high_water;
4416 enum ixgbe_fc_mode rte_fcmode_2_ixgbe_fcmode[] = {
4423 PMD_INIT_FUNC_TRACE();
4425 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4426 rx_buf_size = IXGBE_READ_REG(hw, IXGBE_RXPBSIZE(0));
4427 PMD_INIT_LOG(DEBUG, "Rx packet buffer size = 0x%x", rx_buf_size);
4430 * At least reserve one Ethernet frame for watermark
4431 * high_water/low_water in kilo bytes for ixgbe
4433 max_high_water = (rx_buf_size - ETHER_MAX_LEN) >> IXGBE_RXPBSIZE_SHIFT;
4434 if ((fc_conf->high_water > max_high_water) ||
4435 (fc_conf->high_water < fc_conf->low_water)) {
4436 PMD_INIT_LOG(ERR, "Invalid high/low water setup value in KB");
4437 PMD_INIT_LOG(ERR, "High_water must <= 0x%x", max_high_water);
4441 hw->fc.requested_mode = rte_fcmode_2_ixgbe_fcmode[fc_conf->mode];
4442 hw->fc.pause_time = fc_conf->pause_time;
4443 hw->fc.high_water[0] = fc_conf->high_water;
4444 hw->fc.low_water[0] = fc_conf->low_water;
4445 hw->fc.send_xon = fc_conf->send_xon;
4446 hw->fc.disable_fc_autoneg = !fc_conf->autoneg;
4448 err = ixgbe_fc_enable(hw);
4450 /* Not negotiated is not an error case */
4451 if ((err == IXGBE_SUCCESS) || (err == IXGBE_ERR_FC_NOT_NEGOTIATED)) {
4453 /* check if we want to forward MAC frames - driver doesn't have native
4454 * capability to do that, so we'll write the registers ourselves */
4456 mflcn = IXGBE_READ_REG(hw, IXGBE_MFLCN);
4458 /* set or clear MFLCN.PMCF bit depending on configuration */
4459 if (fc_conf->mac_ctrl_frame_fwd != 0)
4460 mflcn |= IXGBE_MFLCN_PMCF;
4462 mflcn &= ~IXGBE_MFLCN_PMCF;
4464 IXGBE_WRITE_REG(hw, IXGBE_MFLCN, mflcn);
4465 IXGBE_WRITE_FLUSH(hw);
4470 PMD_INIT_LOG(ERR, "ixgbe_fc_enable = 0x%x", err);
4475 * ixgbe_pfc_enable_generic - Enable flow control
4476 * @hw: pointer to hardware structure
4477 * @tc_num: traffic class number
4478 * Enable flow control according to the current settings.
4481 ixgbe_dcb_pfc_enable_generic(struct ixgbe_hw *hw, uint8_t tc_num)
4484 uint32_t mflcn_reg, fccfg_reg;
4486 uint32_t fcrtl, fcrth;
4490 /* Validate the water mark configuration */
4491 if (!hw->fc.pause_time) {
4492 ret_val = IXGBE_ERR_INVALID_LINK_SETTINGS;
4496 /* Low water mark of zero causes XOFF floods */
4497 if (hw->fc.current_mode & ixgbe_fc_tx_pause) {
4498 /* High/Low water can not be 0 */
4499 if ((!hw->fc.high_water[tc_num]) || (!hw->fc.low_water[tc_num])) {
4500 PMD_INIT_LOG(ERR, "Invalid water mark configuration");
4501 ret_val = IXGBE_ERR_INVALID_LINK_SETTINGS;
4505 if (hw->fc.low_water[tc_num] >= hw->fc.high_water[tc_num]) {
4506 PMD_INIT_LOG(ERR, "Invalid water mark configuration");
4507 ret_val = IXGBE_ERR_INVALID_LINK_SETTINGS;
4511 /* Negotiate the fc mode to use */
4512 ixgbe_fc_autoneg(hw);
4514 /* Disable any previous flow control settings */
4515 mflcn_reg = IXGBE_READ_REG(hw, IXGBE_MFLCN);
4516 mflcn_reg &= ~(IXGBE_MFLCN_RPFCE_SHIFT | IXGBE_MFLCN_RFCE|IXGBE_MFLCN_RPFCE);
4518 fccfg_reg = IXGBE_READ_REG(hw, IXGBE_FCCFG);
4519 fccfg_reg &= ~(IXGBE_FCCFG_TFCE_802_3X | IXGBE_FCCFG_TFCE_PRIORITY);
4521 switch (hw->fc.current_mode) {
4524 * If the count of enabled RX Priority Flow control >1,
4525 * and the TX pause can not be disabled
4528 for (i = 0; i < IXGBE_DCB_MAX_TRAFFIC_CLASS; i++) {
4529 reg = IXGBE_READ_REG(hw, IXGBE_FCRTH_82599(i));
4530 if (reg & IXGBE_FCRTH_FCEN)
4534 fccfg_reg |= IXGBE_FCCFG_TFCE_PRIORITY;
4536 case ixgbe_fc_rx_pause:
4538 * Rx Flow control is enabled and Tx Flow control is
4539 * disabled by software override. Since there really
4540 * isn't a way to advertise that we are capable of RX
4541 * Pause ONLY, we will advertise that we support both
4542 * symmetric and asymmetric Rx PAUSE. Later, we will
4543 * disable the adapter's ability to send PAUSE frames.
4545 mflcn_reg |= IXGBE_MFLCN_RPFCE;
4547 * If the count of enabled RX Priority Flow control >1,
4548 * and the TX pause can not be disabled
4551 for (i = 0; i < IXGBE_DCB_MAX_TRAFFIC_CLASS; i++) {
4552 reg = IXGBE_READ_REG(hw, IXGBE_FCRTH_82599(i));
4553 if (reg & IXGBE_FCRTH_FCEN)
4557 fccfg_reg |= IXGBE_FCCFG_TFCE_PRIORITY;
4559 case ixgbe_fc_tx_pause:
4561 * Tx Flow control is enabled, and Rx Flow control is
4562 * disabled by software override.
4564 fccfg_reg |= IXGBE_FCCFG_TFCE_PRIORITY;
4567 /* Flow control (both Rx and Tx) is enabled by SW override. */
4568 mflcn_reg |= IXGBE_MFLCN_RPFCE;
4569 fccfg_reg |= IXGBE_FCCFG_TFCE_PRIORITY;
4572 PMD_DRV_LOG(DEBUG, "Flow control param set incorrectly");
4573 ret_val = IXGBE_ERR_CONFIG;
4577 /* Set 802.3x based flow control settings. */
4578 mflcn_reg |= IXGBE_MFLCN_DPF;
4579 IXGBE_WRITE_REG(hw, IXGBE_MFLCN, mflcn_reg);
4580 IXGBE_WRITE_REG(hw, IXGBE_FCCFG, fccfg_reg);
4582 /* Set up and enable Rx high/low water mark thresholds, enable XON. */
4583 if ((hw->fc.current_mode & ixgbe_fc_tx_pause) &&
4584 hw->fc.high_water[tc_num]) {
4585 fcrtl = (hw->fc.low_water[tc_num] << 10) | IXGBE_FCRTL_XONE;
4586 IXGBE_WRITE_REG(hw, IXGBE_FCRTL_82599(tc_num), fcrtl);
4587 fcrth = (hw->fc.high_water[tc_num] << 10) | IXGBE_FCRTH_FCEN;
4589 IXGBE_WRITE_REG(hw, IXGBE_FCRTL_82599(tc_num), 0);
4591 * In order to prevent Tx hangs when the internal Tx
4592 * switch is enabled we must set the high water mark
4593 * to the maximum FCRTH value. This allows the Tx
4594 * switch to function even under heavy Rx workloads.
4596 fcrth = IXGBE_READ_REG(hw, IXGBE_RXPBSIZE(tc_num)) - 32;
4598 IXGBE_WRITE_REG(hw, IXGBE_FCRTH_82599(tc_num), fcrth);
4600 /* Configure pause time (2 TCs per register) */
4601 reg = hw->fc.pause_time * 0x00010001;
4602 for (i = 0; i < (IXGBE_DCB_MAX_TRAFFIC_CLASS / 2); i++)
4603 IXGBE_WRITE_REG(hw, IXGBE_FCTTV(i), reg);
4605 /* Configure flow control refresh threshold value */
4606 IXGBE_WRITE_REG(hw, IXGBE_FCRTV, hw->fc.pause_time / 2);
4613 ixgbe_dcb_pfc_enable(struct rte_eth_dev *dev, uint8_t tc_num)
4615 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4616 int32_t ret_val = IXGBE_NOT_IMPLEMENTED;
4618 if (hw->mac.type != ixgbe_mac_82598EB) {
4619 ret_val = ixgbe_dcb_pfc_enable_generic(hw, tc_num);
4625 ixgbe_priority_flow_ctrl_set(struct rte_eth_dev *dev, struct rte_eth_pfc_conf *pfc_conf)
4628 uint32_t rx_buf_size;
4629 uint32_t max_high_water;
4631 uint8_t map[IXGBE_DCB_MAX_USER_PRIORITY] = { 0 };
4632 struct ixgbe_hw *hw =
4633 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4634 struct ixgbe_dcb_config *dcb_config =
4635 IXGBE_DEV_PRIVATE_TO_DCB_CFG(dev->data->dev_private);
4637 enum ixgbe_fc_mode rte_fcmode_2_ixgbe_fcmode[] = {
4644 PMD_INIT_FUNC_TRACE();
4646 ixgbe_dcb_unpack_map_cee(dcb_config, IXGBE_DCB_RX_CONFIG, map);
4647 tc_num = map[pfc_conf->priority];
4648 rx_buf_size = IXGBE_READ_REG(hw, IXGBE_RXPBSIZE(tc_num));
4649 PMD_INIT_LOG(DEBUG, "Rx packet buffer size = 0x%x", rx_buf_size);
4651 * At least reserve one Ethernet frame for watermark
4652 * high_water/low_water in kilo bytes for ixgbe
4654 max_high_water = (rx_buf_size - ETHER_MAX_LEN) >> IXGBE_RXPBSIZE_SHIFT;
4655 if ((pfc_conf->fc.high_water > max_high_water) ||
4656 (pfc_conf->fc.high_water <= pfc_conf->fc.low_water)) {
4657 PMD_INIT_LOG(ERR, "Invalid high/low water setup value in KB");
4658 PMD_INIT_LOG(ERR, "High_water must <= 0x%x", max_high_water);
4662 hw->fc.requested_mode = rte_fcmode_2_ixgbe_fcmode[pfc_conf->fc.mode];
4663 hw->fc.pause_time = pfc_conf->fc.pause_time;
4664 hw->fc.send_xon = pfc_conf->fc.send_xon;
4665 hw->fc.low_water[tc_num] = pfc_conf->fc.low_water;
4666 hw->fc.high_water[tc_num] = pfc_conf->fc.high_water;
4668 err = ixgbe_dcb_pfc_enable(dev, tc_num);
4670 /* Not negotiated is not an error case */
4671 if ((err == IXGBE_SUCCESS) || (err == IXGBE_ERR_FC_NOT_NEGOTIATED))
4674 PMD_INIT_LOG(ERR, "ixgbe_dcb_pfc_enable = 0x%x", err);
4679 ixgbe_dev_rss_reta_update(struct rte_eth_dev *dev,
4680 struct rte_eth_rss_reta_entry64 *reta_conf,
4683 uint16_t i, sp_reta_size;
4686 uint16_t idx, shift;
4687 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4690 PMD_INIT_FUNC_TRACE();
4692 if (!ixgbe_rss_update_sp(hw->mac.type)) {
4693 PMD_DRV_LOG(ERR, "RSS reta update is not supported on this "
4698 sp_reta_size = ixgbe_reta_size_get(hw->mac.type);
4699 if (reta_size != sp_reta_size) {
4700 PMD_DRV_LOG(ERR, "The size of hash lookup table configured "
4701 "(%d) doesn't match the number hardware can supported "
4702 "(%d)", reta_size, sp_reta_size);
4706 for (i = 0; i < reta_size; i += IXGBE_4_BIT_WIDTH) {
4707 idx = i / RTE_RETA_GROUP_SIZE;
4708 shift = i % RTE_RETA_GROUP_SIZE;
4709 mask = (uint8_t)((reta_conf[idx].mask >> shift) &
4713 reta_reg = ixgbe_reta_reg_get(hw->mac.type, i);
4714 if (mask == IXGBE_4_BIT_MASK)
4717 r = IXGBE_READ_REG(hw, reta_reg);
4718 for (j = 0, reta = 0; j < IXGBE_4_BIT_WIDTH; j++) {
4719 if (mask & (0x1 << j))
4720 reta |= reta_conf[idx].reta[shift + j] <<
4723 reta |= r & (IXGBE_8_BIT_MASK <<
4726 IXGBE_WRITE_REG(hw, reta_reg, reta);
4733 ixgbe_dev_rss_reta_query(struct rte_eth_dev *dev,
4734 struct rte_eth_rss_reta_entry64 *reta_conf,
4737 uint16_t i, sp_reta_size;
4740 uint16_t idx, shift;
4741 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4744 PMD_INIT_FUNC_TRACE();
4745 sp_reta_size = ixgbe_reta_size_get(hw->mac.type);
4746 if (reta_size != sp_reta_size) {
4747 PMD_DRV_LOG(ERR, "The size of hash lookup table configured "
4748 "(%d) doesn't match the number hardware can supported "
4749 "(%d)", reta_size, sp_reta_size);
4753 for (i = 0; i < reta_size; i += IXGBE_4_BIT_WIDTH) {
4754 idx = i / RTE_RETA_GROUP_SIZE;
4755 shift = i % RTE_RETA_GROUP_SIZE;
4756 mask = (uint8_t)((reta_conf[idx].mask >> shift) &
4761 reta_reg = ixgbe_reta_reg_get(hw->mac.type, i);
4762 reta = IXGBE_READ_REG(hw, reta_reg);
4763 for (j = 0; j < IXGBE_4_BIT_WIDTH; j++) {
4764 if (mask & (0x1 << j))
4765 reta_conf[idx].reta[shift + j] =
4766 ((reta >> (CHAR_BIT * j)) &
4775 ixgbe_add_rar(struct rte_eth_dev *dev, struct ether_addr *mac_addr,
4776 uint32_t index, uint32_t pool)
4778 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4779 uint32_t enable_addr = 1;
4781 return ixgbe_set_rar(hw, index, mac_addr->addr_bytes,
4786 ixgbe_remove_rar(struct rte_eth_dev *dev, uint32_t index)
4788 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4790 ixgbe_clear_rar(hw, index);
4794 ixgbe_set_default_mac_addr(struct rte_eth_dev *dev, struct ether_addr *addr)
4796 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
4798 ixgbe_remove_rar(dev, 0);
4800 ixgbe_add_rar(dev, addr, 0, pci_dev->max_vfs);
4804 is_device_supported(struct rte_eth_dev *dev, struct rte_pci_driver *drv)
4806 if (strcmp(dev->device->driver->name, drv->driver.name))
4813 is_ixgbe_supported(struct rte_eth_dev *dev)
4815 return is_device_supported(dev, &rte_ixgbe_pmd);
4819 ixgbe_dev_mtu_set(struct rte_eth_dev *dev, uint16_t mtu)
4823 struct ixgbe_hw *hw;
4824 struct rte_eth_dev_info dev_info;
4825 uint32_t frame_size = mtu + ETHER_HDR_LEN + ETHER_CRC_LEN;
4826 struct rte_eth_dev_data *dev_data = dev->data;
4828 ixgbe_dev_info_get(dev, &dev_info);
4830 /* check that mtu is within the allowed range */
4831 if ((mtu < ETHER_MIN_MTU) || (frame_size > dev_info.max_rx_pktlen))
4834 /* If device is started, refuse mtu that requires the support of
4835 * scattered packets when this feature has not been enabled before.
4837 if (dev_data->dev_started && !dev_data->scattered_rx &&
4838 (frame_size + 2 * IXGBE_VLAN_TAG_SIZE >
4839 dev->data->min_rx_buf_size - RTE_PKTMBUF_HEADROOM)) {
4840 PMD_INIT_LOG(ERR, "Stop port first.");
4844 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4845 hlreg0 = IXGBE_READ_REG(hw, IXGBE_HLREG0);
4847 /* switch to jumbo mode if needed */
4848 if (frame_size > ETHER_MAX_LEN) {
4849 dev->data->dev_conf.rxmode.jumbo_frame = 1;
4850 hlreg0 |= IXGBE_HLREG0_JUMBOEN;
4852 dev->data->dev_conf.rxmode.jumbo_frame = 0;
4853 hlreg0 &= ~IXGBE_HLREG0_JUMBOEN;
4855 IXGBE_WRITE_REG(hw, IXGBE_HLREG0, hlreg0);
4857 /* update max frame size */
4858 dev->data->dev_conf.rxmode.max_rx_pkt_len = frame_size;
4860 maxfrs = IXGBE_READ_REG(hw, IXGBE_MAXFRS);
4861 maxfrs &= 0x0000FFFF;
4862 maxfrs |= (dev->data->dev_conf.rxmode.max_rx_pkt_len << 16);
4863 IXGBE_WRITE_REG(hw, IXGBE_MAXFRS, maxfrs);
4869 * Virtual Function operations
4872 ixgbevf_intr_disable(struct ixgbe_hw *hw)
4874 PMD_INIT_FUNC_TRACE();
4876 /* Clear interrupt mask to stop from interrupts being generated */
4877 IXGBE_WRITE_REG(hw, IXGBE_VTEIMC, IXGBE_VF_IRQ_CLEAR_MASK);
4879 IXGBE_WRITE_FLUSH(hw);
4883 ixgbevf_intr_enable(struct ixgbe_hw *hw)
4885 PMD_INIT_FUNC_TRACE();
4887 /* VF enable interrupt autoclean */
4888 IXGBE_WRITE_REG(hw, IXGBE_VTEIAM, IXGBE_VF_IRQ_ENABLE_MASK);
4889 IXGBE_WRITE_REG(hw, IXGBE_VTEIAC, IXGBE_VF_IRQ_ENABLE_MASK);
4890 IXGBE_WRITE_REG(hw, IXGBE_VTEIMS, IXGBE_VF_IRQ_ENABLE_MASK);
4892 IXGBE_WRITE_FLUSH(hw);
4896 ixgbevf_dev_configure(struct rte_eth_dev *dev)
4898 struct rte_eth_conf *conf = &dev->data->dev_conf;
4899 struct ixgbe_adapter *adapter =
4900 (struct ixgbe_adapter *)dev->data->dev_private;
4902 PMD_INIT_LOG(DEBUG, "Configured Virtual Function port id: %d",
4903 dev->data->port_id);
4906 * VF has no ability to enable/disable HW CRC
4907 * Keep the persistent behavior the same as Host PF
4909 #ifndef RTE_LIBRTE_IXGBE_PF_DISABLE_STRIP_CRC
4910 if (!conf->rxmode.hw_strip_crc) {
4911 PMD_INIT_LOG(NOTICE, "VF can't disable HW CRC Strip");
4912 conf->rxmode.hw_strip_crc = 1;
4915 if (conf->rxmode.hw_strip_crc) {
4916 PMD_INIT_LOG(NOTICE, "VF can't enable HW CRC Strip");
4917 conf->rxmode.hw_strip_crc = 0;
4922 * Initialize to TRUE. If any of Rx queues doesn't meet the bulk
4923 * allocation or vector Rx preconditions we will reset it.
4925 adapter->rx_bulk_alloc_allowed = true;
4926 adapter->rx_vec_allowed = true;
4932 ixgbevf_dev_start(struct rte_eth_dev *dev)
4934 struct ixgbe_hw *hw =
4935 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4936 uint32_t intr_vector = 0;
4937 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
4938 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
4942 PMD_INIT_FUNC_TRACE();
4944 hw->mac.ops.reset_hw(hw);
4945 hw->mac.get_link_status = true;
4947 /* negotiate mailbox API version to use with the PF. */
4948 ixgbevf_negotiate_api(hw);
4950 ixgbevf_dev_tx_init(dev);
4952 /* This can fail when allocating mbufs for descriptor rings */
4953 err = ixgbevf_dev_rx_init(dev);
4955 PMD_INIT_LOG(ERR, "Unable to initialize RX hardware (%d)", err);
4956 ixgbe_dev_clear_queues(dev);
4961 ixgbevf_set_vfta_all(dev, 1);
4964 mask = ETH_VLAN_STRIP_MASK | ETH_VLAN_FILTER_MASK |
4965 ETH_VLAN_EXTEND_MASK;
4966 ixgbevf_vlan_offload_set(dev, mask);
4968 ixgbevf_dev_rxtx_start(dev);
4970 /* check and configure queue intr-vector mapping */
4971 if (dev->data->dev_conf.intr_conf.rxq != 0) {
4972 intr_vector = dev->data->nb_rx_queues;
4973 if (rte_intr_efd_enable(intr_handle, intr_vector))
4977 if (rte_intr_dp_is_en(intr_handle) && !intr_handle->intr_vec) {
4978 intr_handle->intr_vec =
4979 rte_zmalloc("intr_vec",
4980 dev->data->nb_rx_queues * sizeof(int), 0);
4981 if (intr_handle->intr_vec == NULL) {
4982 PMD_INIT_LOG(ERR, "Failed to allocate %d rx_queues"
4983 " intr_vec", dev->data->nb_rx_queues);
4987 ixgbevf_configure_msix(dev);
4989 rte_intr_enable(intr_handle);
4991 /* Re-enable interrupt for VF */
4992 ixgbevf_intr_enable(hw);
4998 ixgbevf_dev_stop(struct rte_eth_dev *dev)
5000 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5001 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
5002 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
5004 PMD_INIT_FUNC_TRACE();
5006 ixgbevf_intr_disable(hw);
5008 hw->adapter_stopped = 1;
5009 ixgbe_stop_adapter(hw);
5012 * Clear what we set, but we still keep shadow_vfta to
5013 * restore after device starts
5015 ixgbevf_set_vfta_all(dev, 0);
5017 /* Clear stored conf */
5018 dev->data->scattered_rx = 0;
5020 ixgbe_dev_clear_queues(dev);
5022 /* Clean datapath event and queue/vec mapping */
5023 rte_intr_efd_disable(intr_handle);
5024 if (intr_handle->intr_vec != NULL) {
5025 rte_free(intr_handle->intr_vec);
5026 intr_handle->intr_vec = NULL;
5031 ixgbevf_dev_close(struct rte_eth_dev *dev)
5033 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5035 PMD_INIT_FUNC_TRACE();
5039 ixgbevf_dev_stop(dev);
5041 ixgbe_dev_free_queues(dev);
5044 * Remove the VF MAC address ro ensure
5045 * that the VF traffic goes to the PF
5046 * after stop, close and detach of the VF
5048 ixgbevf_remove_mac_addr(dev, 0);
5051 static void ixgbevf_set_vfta_all(struct rte_eth_dev *dev, bool on)
5053 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5054 struct ixgbe_vfta *shadow_vfta =
5055 IXGBE_DEV_PRIVATE_TO_VFTA(dev->data->dev_private);
5056 int i = 0, j = 0, vfta = 0, mask = 1;
5058 for (i = 0; i < IXGBE_VFTA_SIZE; i++) {
5059 vfta = shadow_vfta->vfta[i];
5062 for (j = 0; j < 32; j++) {
5064 ixgbe_set_vfta(hw, (i<<5)+j, 0,
5074 ixgbevf_vlan_filter_set(struct rte_eth_dev *dev, uint16_t vlan_id, int on)
5076 struct ixgbe_hw *hw =
5077 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5078 struct ixgbe_vfta *shadow_vfta =
5079 IXGBE_DEV_PRIVATE_TO_VFTA(dev->data->dev_private);
5080 uint32_t vid_idx = 0;
5081 uint32_t vid_bit = 0;
5084 PMD_INIT_FUNC_TRACE();
5086 /* vind is not used in VF driver, set to 0, check ixgbe_set_vfta_vf */
5087 ret = ixgbe_set_vfta(hw, vlan_id, 0, !!on, false);
5089 PMD_INIT_LOG(ERR, "Unable to set VF vlan");
5092 vid_idx = (uint32_t) ((vlan_id >> 5) & 0x7F);
5093 vid_bit = (uint32_t) (1 << (vlan_id & 0x1F));
5095 /* Save what we set and retore it after device reset */
5097 shadow_vfta->vfta[vid_idx] |= vid_bit;
5099 shadow_vfta->vfta[vid_idx] &= ~vid_bit;
5105 ixgbevf_vlan_strip_queue_set(struct rte_eth_dev *dev, uint16_t queue, int on)
5107 struct ixgbe_hw *hw =
5108 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5111 PMD_INIT_FUNC_TRACE();
5113 if (queue >= hw->mac.max_rx_queues)
5116 ctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(queue));
5118 ctrl |= IXGBE_RXDCTL_VME;
5120 ctrl &= ~IXGBE_RXDCTL_VME;
5121 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(queue), ctrl);
5123 ixgbe_vlan_hw_strip_bitmap_set(dev, queue, on);
5127 ixgbevf_vlan_offload_set(struct rte_eth_dev *dev, int mask)
5129 struct ixgbe_hw *hw =
5130 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5134 /* VF function only support hw strip feature, others are not support */
5135 if (mask & ETH_VLAN_STRIP_MASK) {
5136 on = !!(dev->data->dev_conf.rxmode.hw_vlan_strip);
5138 for (i = 0; i < hw->mac.max_rx_queues; i++)
5139 ixgbevf_vlan_strip_queue_set(dev, i, on);
5144 ixgbe_vt_check(struct ixgbe_hw *hw)
5148 /* if Virtualization Technology is enabled */
5149 reg_val = IXGBE_READ_REG(hw, IXGBE_VT_CTL);
5150 if (!(reg_val & IXGBE_VT_CTL_VT_ENABLE)) {
5151 PMD_INIT_LOG(ERR, "VT must be enabled for this setting");
5159 ixgbe_uta_vector(struct ixgbe_hw *hw, struct ether_addr *uc_addr)
5161 uint32_t vector = 0;
5163 switch (hw->mac.mc_filter_type) {
5164 case 0: /* use bits [47:36] of the address */
5165 vector = ((uc_addr->addr_bytes[4] >> 4) |
5166 (((uint16_t)uc_addr->addr_bytes[5]) << 4));
5168 case 1: /* use bits [46:35] of the address */
5169 vector = ((uc_addr->addr_bytes[4] >> 3) |
5170 (((uint16_t)uc_addr->addr_bytes[5]) << 5));
5172 case 2: /* use bits [45:34] of the address */
5173 vector = ((uc_addr->addr_bytes[4] >> 2) |
5174 (((uint16_t)uc_addr->addr_bytes[5]) << 6));
5176 case 3: /* use bits [43:32] of the address */
5177 vector = ((uc_addr->addr_bytes[4]) |
5178 (((uint16_t)uc_addr->addr_bytes[5]) << 8));
5180 default: /* Invalid mc_filter_type */
5184 /* vector can only be 12-bits or boundary will be exceeded */
5190 ixgbe_uc_hash_table_set(struct rte_eth_dev *dev, struct ether_addr *mac_addr,
5198 const uint32_t ixgbe_uta_idx_mask = 0x7F;
5199 const uint32_t ixgbe_uta_bit_shift = 5;
5200 const uint32_t ixgbe_uta_bit_mask = (0x1 << ixgbe_uta_bit_shift) - 1;
5201 const uint32_t bit1 = 0x1;
5203 struct ixgbe_hw *hw =
5204 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5205 struct ixgbe_uta_info *uta_info =
5206 IXGBE_DEV_PRIVATE_TO_UTA(dev->data->dev_private);
5208 /* The UTA table only exists on 82599 hardware and newer */
5209 if (hw->mac.type < ixgbe_mac_82599EB)
5212 vector = ixgbe_uta_vector(hw, mac_addr);
5213 uta_idx = (vector >> ixgbe_uta_bit_shift) & ixgbe_uta_idx_mask;
5214 uta_shift = vector & ixgbe_uta_bit_mask;
5216 rc = ((uta_info->uta_shadow[uta_idx] >> uta_shift & bit1) != 0);
5220 reg_val = IXGBE_READ_REG(hw, IXGBE_UTA(uta_idx));
5222 uta_info->uta_in_use++;
5223 reg_val |= (bit1 << uta_shift);
5224 uta_info->uta_shadow[uta_idx] |= (bit1 << uta_shift);
5226 uta_info->uta_in_use--;
5227 reg_val &= ~(bit1 << uta_shift);
5228 uta_info->uta_shadow[uta_idx] &= ~(bit1 << uta_shift);
5231 IXGBE_WRITE_REG(hw, IXGBE_UTA(uta_idx), reg_val);
5233 if (uta_info->uta_in_use > 0)
5234 IXGBE_WRITE_REG(hw, IXGBE_MCSTCTRL,
5235 IXGBE_MCSTCTRL_MFE | hw->mac.mc_filter_type);
5237 IXGBE_WRITE_REG(hw, IXGBE_MCSTCTRL, hw->mac.mc_filter_type);
5243 ixgbe_uc_all_hash_table_set(struct rte_eth_dev *dev, uint8_t on)
5246 struct ixgbe_hw *hw =
5247 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5248 struct ixgbe_uta_info *uta_info =
5249 IXGBE_DEV_PRIVATE_TO_UTA(dev->data->dev_private);
5251 /* The UTA table only exists on 82599 hardware and newer */
5252 if (hw->mac.type < ixgbe_mac_82599EB)
5256 for (i = 0; i < ETH_VMDQ_NUM_UC_HASH_ARRAY; i++) {
5257 uta_info->uta_shadow[i] = ~0;
5258 IXGBE_WRITE_REG(hw, IXGBE_UTA(i), ~0);
5261 for (i = 0; i < ETH_VMDQ_NUM_UC_HASH_ARRAY; i++) {
5262 uta_info->uta_shadow[i] = 0;
5263 IXGBE_WRITE_REG(hw, IXGBE_UTA(i), 0);
5271 ixgbe_convert_vm_rx_mask_to_val(uint16_t rx_mask, uint32_t orig_val)
5273 uint32_t new_val = orig_val;
5275 if (rx_mask & ETH_VMDQ_ACCEPT_UNTAG)
5276 new_val |= IXGBE_VMOLR_AUPE;
5277 if (rx_mask & ETH_VMDQ_ACCEPT_HASH_MC)
5278 new_val |= IXGBE_VMOLR_ROMPE;
5279 if (rx_mask & ETH_VMDQ_ACCEPT_HASH_UC)
5280 new_val |= IXGBE_VMOLR_ROPE;
5281 if (rx_mask & ETH_VMDQ_ACCEPT_BROADCAST)
5282 new_val |= IXGBE_VMOLR_BAM;
5283 if (rx_mask & ETH_VMDQ_ACCEPT_MULTICAST)
5284 new_val |= IXGBE_VMOLR_MPE;
5289 #define IXGBE_MRCTL_VPME 0x01 /* Virtual Pool Mirroring. */
5290 #define IXGBE_MRCTL_UPME 0x02 /* Uplink Port Mirroring. */
5291 #define IXGBE_MRCTL_DPME 0x04 /* Downlink Port Mirroring. */
5292 #define IXGBE_MRCTL_VLME 0x08 /* VLAN Mirroring. */
5293 #define IXGBE_INVALID_MIRROR_TYPE(mirror_type) \
5294 ((mirror_type) & ~(uint8_t)(ETH_MIRROR_VIRTUAL_POOL_UP | \
5295 ETH_MIRROR_UPLINK_PORT | ETH_MIRROR_DOWNLINK_PORT | ETH_MIRROR_VLAN))
5298 ixgbe_mirror_rule_set(struct rte_eth_dev *dev,
5299 struct rte_eth_mirror_conf *mirror_conf,
5300 uint8_t rule_id, uint8_t on)
5302 uint32_t mr_ctl, vlvf;
5303 uint32_t mp_lsb = 0;
5304 uint32_t mv_msb = 0;
5305 uint32_t mv_lsb = 0;
5306 uint32_t mp_msb = 0;
5309 uint64_t vlan_mask = 0;
5311 const uint8_t pool_mask_offset = 32;
5312 const uint8_t vlan_mask_offset = 32;
5313 const uint8_t dst_pool_offset = 8;
5314 const uint8_t rule_mr_offset = 4;
5315 const uint8_t mirror_rule_mask = 0x0F;
5317 struct ixgbe_mirror_info *mr_info =
5318 (IXGBE_DEV_PRIVATE_TO_PFDATA(dev->data->dev_private));
5319 struct ixgbe_hw *hw =
5320 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5321 uint8_t mirror_type = 0;
5323 if (ixgbe_vt_check(hw) < 0)
5326 if (rule_id >= IXGBE_MAX_MIRROR_RULES)
5329 if (IXGBE_INVALID_MIRROR_TYPE(mirror_conf->rule_type)) {
5330 PMD_DRV_LOG(ERR, "unsupported mirror type 0x%x.",
5331 mirror_conf->rule_type);
5335 if (mirror_conf->rule_type & ETH_MIRROR_VLAN) {
5336 mirror_type |= IXGBE_MRCTL_VLME;
5337 /* Check if vlan id is valid and find conresponding VLAN ID
5340 for (i = 0; i < IXGBE_VLVF_ENTRIES; i++) {
5341 if (mirror_conf->vlan.vlan_mask & (1ULL << i)) {
5342 /* search vlan id related pool vlan filter
5345 reg_index = ixgbe_find_vlvf_slot(
5347 mirror_conf->vlan.vlan_id[i],
5351 vlvf = IXGBE_READ_REG(hw,
5352 IXGBE_VLVF(reg_index));
5353 if ((vlvf & IXGBE_VLVF_VIEN) &&
5354 ((vlvf & IXGBE_VLVF_VLANID_MASK) ==
5355 mirror_conf->vlan.vlan_id[i]))
5356 vlan_mask |= (1ULL << reg_index);
5363 mv_lsb = vlan_mask & 0xFFFFFFFF;
5364 mv_msb = vlan_mask >> vlan_mask_offset;
5366 mr_info->mr_conf[rule_id].vlan.vlan_mask =
5367 mirror_conf->vlan.vlan_mask;
5368 for (i = 0; i < ETH_VMDQ_MAX_VLAN_FILTERS; i++) {
5369 if (mirror_conf->vlan.vlan_mask & (1ULL << i))
5370 mr_info->mr_conf[rule_id].vlan.vlan_id[i] =
5371 mirror_conf->vlan.vlan_id[i];
5376 mr_info->mr_conf[rule_id].vlan.vlan_mask = 0;
5377 for (i = 0; i < ETH_VMDQ_MAX_VLAN_FILTERS; i++)
5378 mr_info->mr_conf[rule_id].vlan.vlan_id[i] = 0;
5383 * if enable pool mirror, write related pool mask register,if disable
5384 * pool mirror, clear PFMRVM register
5386 if (mirror_conf->rule_type & ETH_MIRROR_VIRTUAL_POOL_UP) {
5387 mirror_type |= IXGBE_MRCTL_VPME;
5389 mp_lsb = mirror_conf->pool_mask & 0xFFFFFFFF;
5390 mp_msb = mirror_conf->pool_mask >> pool_mask_offset;
5391 mr_info->mr_conf[rule_id].pool_mask =
5392 mirror_conf->pool_mask;
5397 mr_info->mr_conf[rule_id].pool_mask = 0;
5400 if (mirror_conf->rule_type & ETH_MIRROR_UPLINK_PORT)
5401 mirror_type |= IXGBE_MRCTL_UPME;
5402 if (mirror_conf->rule_type & ETH_MIRROR_DOWNLINK_PORT)
5403 mirror_type |= IXGBE_MRCTL_DPME;
5405 /* read mirror control register and recalculate it */
5406 mr_ctl = IXGBE_READ_REG(hw, IXGBE_MRCTL(rule_id));
5409 mr_ctl |= mirror_type;
5410 mr_ctl &= mirror_rule_mask;
5411 mr_ctl |= mirror_conf->dst_pool << dst_pool_offset;
5413 mr_ctl &= ~(mirror_conf->rule_type & mirror_rule_mask);
5416 mr_info->mr_conf[rule_id].rule_type = mirror_conf->rule_type;
5417 mr_info->mr_conf[rule_id].dst_pool = mirror_conf->dst_pool;
5419 /* write mirrror control register */
5420 IXGBE_WRITE_REG(hw, IXGBE_MRCTL(rule_id), mr_ctl);
5422 /* write pool mirrror control register */
5423 if (mirror_conf->rule_type == ETH_MIRROR_VIRTUAL_POOL_UP) {
5424 IXGBE_WRITE_REG(hw, IXGBE_VMRVM(rule_id), mp_lsb);
5425 IXGBE_WRITE_REG(hw, IXGBE_VMRVM(rule_id + rule_mr_offset),
5428 /* write VLAN mirrror control register */
5429 if (mirror_conf->rule_type == ETH_MIRROR_VLAN) {
5430 IXGBE_WRITE_REG(hw, IXGBE_VMRVLAN(rule_id), mv_lsb);
5431 IXGBE_WRITE_REG(hw, IXGBE_VMRVLAN(rule_id + rule_mr_offset),
5439 ixgbe_mirror_rule_reset(struct rte_eth_dev *dev, uint8_t rule_id)
5442 uint32_t lsb_val = 0;
5443 uint32_t msb_val = 0;
5444 const uint8_t rule_mr_offset = 4;
5446 struct ixgbe_hw *hw =
5447 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5448 struct ixgbe_mirror_info *mr_info =
5449 (IXGBE_DEV_PRIVATE_TO_PFDATA(dev->data->dev_private));
5451 if (ixgbe_vt_check(hw) < 0)
5454 memset(&mr_info->mr_conf[rule_id], 0,
5455 sizeof(struct rte_eth_mirror_conf));
5457 /* clear PFVMCTL register */
5458 IXGBE_WRITE_REG(hw, IXGBE_MRCTL(rule_id), mr_ctl);
5460 /* clear pool mask register */
5461 IXGBE_WRITE_REG(hw, IXGBE_VMRVM(rule_id), lsb_val);
5462 IXGBE_WRITE_REG(hw, IXGBE_VMRVM(rule_id + rule_mr_offset), msb_val);
5464 /* clear vlan mask register */
5465 IXGBE_WRITE_REG(hw, IXGBE_VMRVLAN(rule_id), lsb_val);
5466 IXGBE_WRITE_REG(hw, IXGBE_VMRVLAN(rule_id + rule_mr_offset), msb_val);
5472 ixgbevf_dev_rx_queue_intr_enable(struct rte_eth_dev *dev, uint16_t queue_id)
5474 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
5475 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
5477 struct ixgbe_hw *hw =
5478 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5480 mask = IXGBE_READ_REG(hw, IXGBE_VTEIMS);
5481 mask |= (1 << IXGBE_MISC_VEC_ID);
5482 RTE_SET_USED(queue_id);
5483 IXGBE_WRITE_REG(hw, IXGBE_VTEIMS, mask);
5485 rte_intr_enable(intr_handle);
5491 ixgbevf_dev_rx_queue_intr_disable(struct rte_eth_dev *dev, uint16_t queue_id)
5494 struct ixgbe_hw *hw =
5495 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5497 mask = IXGBE_READ_REG(hw, IXGBE_VTEIMS);
5498 mask &= ~(1 << IXGBE_MISC_VEC_ID);
5499 RTE_SET_USED(queue_id);
5500 IXGBE_WRITE_REG(hw, IXGBE_VTEIMS, mask);
5506 ixgbe_dev_rx_queue_intr_enable(struct rte_eth_dev *dev, uint16_t queue_id)
5508 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
5509 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
5511 struct ixgbe_hw *hw =
5512 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5513 struct ixgbe_interrupt *intr =
5514 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
5516 if (queue_id < 16) {
5517 ixgbe_disable_intr(hw);
5518 intr->mask |= (1 << queue_id);
5519 ixgbe_enable_intr(dev);
5520 } else if (queue_id < 32) {
5521 mask = IXGBE_READ_REG(hw, IXGBE_EIMS_EX(0));
5522 mask &= (1 << queue_id);
5523 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(0), mask);
5524 } else if (queue_id < 64) {
5525 mask = IXGBE_READ_REG(hw, IXGBE_EIMS_EX(1));
5526 mask &= (1 << (queue_id - 32));
5527 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(1), mask);
5529 rte_intr_enable(intr_handle);
5535 ixgbe_dev_rx_queue_intr_disable(struct rte_eth_dev *dev, uint16_t queue_id)
5538 struct ixgbe_hw *hw =
5539 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5540 struct ixgbe_interrupt *intr =
5541 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
5543 if (queue_id < 16) {
5544 ixgbe_disable_intr(hw);
5545 intr->mask &= ~(1 << queue_id);
5546 ixgbe_enable_intr(dev);
5547 } else if (queue_id < 32) {
5548 mask = IXGBE_READ_REG(hw, IXGBE_EIMS_EX(0));
5549 mask &= ~(1 << queue_id);
5550 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(0), mask);
5551 } else if (queue_id < 64) {
5552 mask = IXGBE_READ_REG(hw, IXGBE_EIMS_EX(1));
5553 mask &= ~(1 << (queue_id - 32));
5554 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(1), mask);
5561 ixgbevf_set_ivar_map(struct ixgbe_hw *hw, int8_t direction,
5562 uint8_t queue, uint8_t msix_vector)
5566 if (direction == -1) {
5568 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
5569 tmp = IXGBE_READ_REG(hw, IXGBE_VTIVAR_MISC);
5572 IXGBE_WRITE_REG(hw, IXGBE_VTIVAR_MISC, tmp);
5574 /* rx or tx cause */
5575 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
5576 idx = ((16 * (queue & 1)) + (8 * direction));
5577 tmp = IXGBE_READ_REG(hw, IXGBE_VTIVAR(queue >> 1));
5578 tmp &= ~(0xFF << idx);
5579 tmp |= (msix_vector << idx);
5580 IXGBE_WRITE_REG(hw, IXGBE_VTIVAR(queue >> 1), tmp);
5585 * set the IVAR registers, mapping interrupt causes to vectors
5587 * pointer to ixgbe_hw struct
5589 * 0 for Rx, 1 for Tx, -1 for other causes
5591 * queue to map the corresponding interrupt to
5593 * the vector to map to the corresponding queue
5596 ixgbe_set_ivar_map(struct ixgbe_hw *hw, int8_t direction,
5597 uint8_t queue, uint8_t msix_vector)
5601 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
5602 if (hw->mac.type == ixgbe_mac_82598EB) {
5603 if (direction == -1)
5605 idx = (((direction * 64) + queue) >> 2) & 0x1F;
5606 tmp = IXGBE_READ_REG(hw, IXGBE_IVAR(idx));
5607 tmp &= ~(0xFF << (8 * (queue & 0x3)));
5608 tmp |= (msix_vector << (8 * (queue & 0x3)));
5609 IXGBE_WRITE_REG(hw, IXGBE_IVAR(idx), tmp);
5610 } else if ((hw->mac.type == ixgbe_mac_82599EB) ||
5611 (hw->mac.type == ixgbe_mac_X540)) {
5612 if (direction == -1) {
5614 idx = ((queue & 1) * 8);
5615 tmp = IXGBE_READ_REG(hw, IXGBE_IVAR_MISC);
5616 tmp &= ~(0xFF << idx);
5617 tmp |= (msix_vector << idx);
5618 IXGBE_WRITE_REG(hw, IXGBE_IVAR_MISC, tmp);
5620 /* rx or tx causes */
5621 idx = ((16 * (queue & 1)) + (8 * direction));
5622 tmp = IXGBE_READ_REG(hw, IXGBE_IVAR(queue >> 1));
5623 tmp &= ~(0xFF << idx);
5624 tmp |= (msix_vector << idx);
5625 IXGBE_WRITE_REG(hw, IXGBE_IVAR(queue >> 1), tmp);
5631 ixgbevf_configure_msix(struct rte_eth_dev *dev)
5633 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
5634 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
5635 struct ixgbe_hw *hw =
5636 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5638 uint32_t vector_idx = IXGBE_MISC_VEC_ID;
5640 /* Configure VF other cause ivar */
5641 ixgbevf_set_ivar_map(hw, -1, 1, vector_idx);
5643 /* won't configure msix register if no mapping is done
5644 * between intr vector and event fd.
5646 if (!rte_intr_dp_is_en(intr_handle))
5649 /* Configure all RX queues of VF */
5650 for (q_idx = 0; q_idx < dev->data->nb_rx_queues; q_idx++) {
5651 /* Force all queue use vector 0,
5652 * as IXGBE_VF_MAXMSIVECOTR = 1
5654 ixgbevf_set_ivar_map(hw, 0, q_idx, vector_idx);
5655 intr_handle->intr_vec[q_idx] = vector_idx;
5660 * Sets up the hardware to properly generate MSI-X interrupts
5662 * board private structure
5665 ixgbe_configure_msix(struct rte_eth_dev *dev)
5667 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
5668 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
5669 struct ixgbe_hw *hw =
5670 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5671 uint32_t queue_id, base = IXGBE_MISC_VEC_ID;
5672 uint32_t vec = IXGBE_MISC_VEC_ID;
5676 /* won't configure msix register if no mapping is done
5677 * between intr vector and event fd
5679 if (!rte_intr_dp_is_en(intr_handle))
5682 if (rte_intr_allow_others(intr_handle))
5683 vec = base = IXGBE_RX_VEC_START;
5685 /* setup GPIE for MSI-x mode */
5686 gpie = IXGBE_READ_REG(hw, IXGBE_GPIE);
5687 gpie |= IXGBE_GPIE_MSIX_MODE | IXGBE_GPIE_PBA_SUPPORT |
5688 IXGBE_GPIE_OCD | IXGBE_GPIE_EIAME;
5689 /* auto clearing and auto setting corresponding bits in EIMS
5690 * when MSI-X interrupt is triggered
5692 if (hw->mac.type == ixgbe_mac_82598EB) {
5693 IXGBE_WRITE_REG(hw, IXGBE_EIAM, IXGBE_EICS_RTX_QUEUE);
5695 IXGBE_WRITE_REG(hw, IXGBE_EIAM_EX(0), 0xFFFFFFFF);
5696 IXGBE_WRITE_REG(hw, IXGBE_EIAM_EX(1), 0xFFFFFFFF);
5698 IXGBE_WRITE_REG(hw, IXGBE_GPIE, gpie);
5700 /* Populate the IVAR table and set the ITR values to the
5701 * corresponding register.
5703 for (queue_id = 0; queue_id < dev->data->nb_rx_queues;
5705 /* by default, 1:1 mapping */
5706 ixgbe_set_ivar_map(hw, 0, queue_id, vec);
5707 intr_handle->intr_vec[queue_id] = vec;
5708 if (vec < base + intr_handle->nb_efd - 1)
5712 switch (hw->mac.type) {
5713 case ixgbe_mac_82598EB:
5714 ixgbe_set_ivar_map(hw, -1, IXGBE_IVAR_OTHER_CAUSES_INDEX,
5717 case ixgbe_mac_82599EB:
5718 case ixgbe_mac_X540:
5719 ixgbe_set_ivar_map(hw, -1, 1, IXGBE_MISC_VEC_ID);
5724 IXGBE_WRITE_REG(hw, IXGBE_EITR(IXGBE_MISC_VEC_ID),
5725 IXGBE_MIN_INTER_INTERRUPT_INTERVAL_DEFAULT & 0xFFF);
5727 /* set up to autoclear timer, and the vectors */
5728 mask = IXGBE_EIMS_ENABLE_MASK;
5729 mask &= ~(IXGBE_EIMS_OTHER |
5730 IXGBE_EIMS_MAILBOX |
5733 IXGBE_WRITE_REG(hw, IXGBE_EIAC, mask);
5736 static int ixgbe_set_queue_rate_limit(struct rte_eth_dev *dev,
5737 uint16_t queue_idx, uint16_t tx_rate)
5739 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5740 uint32_t rf_dec, rf_int;
5742 uint16_t link_speed = dev->data->dev_link.link_speed;
5744 if (queue_idx >= hw->mac.max_tx_queues)
5748 /* Calculate the rate factor values to set */
5749 rf_int = (uint32_t)link_speed / (uint32_t)tx_rate;
5750 rf_dec = (uint32_t)link_speed % (uint32_t)tx_rate;
5751 rf_dec = (rf_dec << IXGBE_RTTBCNRC_RF_INT_SHIFT) / tx_rate;
5753 bcnrc_val = IXGBE_RTTBCNRC_RS_ENA;
5754 bcnrc_val |= ((rf_int << IXGBE_RTTBCNRC_RF_INT_SHIFT) &
5755 IXGBE_RTTBCNRC_RF_INT_MASK_M);
5756 bcnrc_val |= (rf_dec & IXGBE_RTTBCNRC_RF_DEC_MASK);
5762 * Set global transmit compensation time to the MMW_SIZE in RTTBCNRM
5763 * register. MMW_SIZE=0x014 if 9728-byte jumbo is supported, otherwise
5766 if ((dev->data->dev_conf.rxmode.jumbo_frame == 1) &&
5767 (dev->data->dev_conf.rxmode.max_rx_pkt_len >=
5768 IXGBE_MAX_JUMBO_FRAME_SIZE))
5769 IXGBE_WRITE_REG(hw, IXGBE_RTTBCNRM,
5770 IXGBE_MMW_SIZE_JUMBO_FRAME);
5772 IXGBE_WRITE_REG(hw, IXGBE_RTTBCNRM,
5773 IXGBE_MMW_SIZE_DEFAULT);
5775 /* Set RTTBCNRC of queue X */
5776 IXGBE_WRITE_REG(hw, IXGBE_RTTDQSEL, queue_idx);
5777 IXGBE_WRITE_REG(hw, IXGBE_RTTBCNRC, bcnrc_val);
5778 IXGBE_WRITE_FLUSH(hw);
5784 ixgbevf_add_mac_addr(struct rte_eth_dev *dev, struct ether_addr *mac_addr,
5785 __attribute__((unused)) uint32_t index,
5786 __attribute__((unused)) uint32_t pool)
5788 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5792 * On a 82599 VF, adding again the same MAC addr is not an idempotent
5793 * operation. Trap this case to avoid exhausting the [very limited]
5794 * set of PF resources used to store VF MAC addresses.
5796 if (memcmp(hw->mac.perm_addr, mac_addr, sizeof(struct ether_addr)) == 0)
5798 diag = ixgbevf_set_uc_addr_vf(hw, 2, mac_addr->addr_bytes);
5800 PMD_DRV_LOG(ERR, "Unable to add MAC address "
5801 "%02x:%02x:%02x:%02x:%02x:%02x - diag=%d",
5802 mac_addr->addr_bytes[0],
5803 mac_addr->addr_bytes[1],
5804 mac_addr->addr_bytes[2],
5805 mac_addr->addr_bytes[3],
5806 mac_addr->addr_bytes[4],
5807 mac_addr->addr_bytes[5],
5813 ixgbevf_remove_mac_addr(struct rte_eth_dev *dev, uint32_t index)
5815 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5816 struct ether_addr *perm_addr = (struct ether_addr *) hw->mac.perm_addr;
5817 struct ether_addr *mac_addr;
5822 * The IXGBE_VF_SET_MACVLAN command of the ixgbe-pf driver does
5823 * not support the deletion of a given MAC address.
5824 * Instead, it imposes to delete all MAC addresses, then to add again
5825 * all MAC addresses with the exception of the one to be deleted.
5827 (void) ixgbevf_set_uc_addr_vf(hw, 0, NULL);
5830 * Add again all MAC addresses, with the exception of the deleted one
5831 * and of the permanent MAC address.
5833 for (i = 0, mac_addr = dev->data->mac_addrs;
5834 i < hw->mac.num_rar_entries; i++, mac_addr++) {
5835 /* Skip the deleted MAC address */
5838 /* Skip NULL MAC addresses */
5839 if (is_zero_ether_addr(mac_addr))
5841 /* Skip the permanent MAC address */
5842 if (memcmp(perm_addr, mac_addr, sizeof(struct ether_addr)) == 0)
5844 diag = ixgbevf_set_uc_addr_vf(hw, 2, mac_addr->addr_bytes);
5847 "Adding again MAC address "
5848 "%02x:%02x:%02x:%02x:%02x:%02x failed "
5850 mac_addr->addr_bytes[0],
5851 mac_addr->addr_bytes[1],
5852 mac_addr->addr_bytes[2],
5853 mac_addr->addr_bytes[3],
5854 mac_addr->addr_bytes[4],
5855 mac_addr->addr_bytes[5],
5861 ixgbevf_set_default_mac_addr(struct rte_eth_dev *dev, struct ether_addr *addr)
5863 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5865 hw->mac.ops.set_rar(hw, 0, (void *)addr, 0, 0);
5869 ixgbe_syn_filter_set(struct rte_eth_dev *dev,
5870 struct rte_eth_syn_filter *filter,
5873 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5874 struct ixgbe_filter_info *filter_info =
5875 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
5879 if (filter->queue >= IXGBE_MAX_RX_QUEUE_NUM)
5882 syn_info = filter_info->syn_info;
5885 if (syn_info & IXGBE_SYN_FILTER_ENABLE)
5887 synqf = (uint32_t)(((filter->queue << IXGBE_SYN_FILTER_QUEUE_SHIFT) &
5888 IXGBE_SYN_FILTER_QUEUE) | IXGBE_SYN_FILTER_ENABLE);
5890 if (filter->hig_pri)
5891 synqf |= IXGBE_SYN_FILTER_SYNQFP;
5893 synqf &= ~IXGBE_SYN_FILTER_SYNQFP;
5895 synqf = IXGBE_READ_REG(hw, IXGBE_SYNQF);
5896 if (!(syn_info & IXGBE_SYN_FILTER_ENABLE))
5898 synqf &= ~(IXGBE_SYN_FILTER_QUEUE | IXGBE_SYN_FILTER_ENABLE);
5901 filter_info->syn_info = synqf;
5902 IXGBE_WRITE_REG(hw, IXGBE_SYNQF, synqf);
5903 IXGBE_WRITE_FLUSH(hw);
5908 ixgbe_syn_filter_get(struct rte_eth_dev *dev,
5909 struct rte_eth_syn_filter *filter)
5911 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5912 uint32_t synqf = IXGBE_READ_REG(hw, IXGBE_SYNQF);
5914 if (synqf & IXGBE_SYN_FILTER_ENABLE) {
5915 filter->hig_pri = (synqf & IXGBE_SYN_FILTER_SYNQFP) ? 1 : 0;
5916 filter->queue = (uint16_t)((synqf & IXGBE_SYN_FILTER_QUEUE) >> 1);
5923 ixgbe_syn_filter_handle(struct rte_eth_dev *dev,
5924 enum rte_filter_op filter_op,
5927 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5930 MAC_TYPE_FILTER_SUP(hw->mac.type);
5932 if (filter_op == RTE_ETH_FILTER_NOP)
5936 PMD_DRV_LOG(ERR, "arg shouldn't be NULL for operation %u",
5941 switch (filter_op) {
5942 case RTE_ETH_FILTER_ADD:
5943 ret = ixgbe_syn_filter_set(dev,
5944 (struct rte_eth_syn_filter *)arg,
5947 case RTE_ETH_FILTER_DELETE:
5948 ret = ixgbe_syn_filter_set(dev,
5949 (struct rte_eth_syn_filter *)arg,
5952 case RTE_ETH_FILTER_GET:
5953 ret = ixgbe_syn_filter_get(dev,
5954 (struct rte_eth_syn_filter *)arg);
5957 PMD_DRV_LOG(ERR, "unsupported operation %u", filter_op);
5966 static inline enum ixgbe_5tuple_protocol
5967 convert_protocol_type(uint8_t protocol_value)
5969 if (protocol_value == IPPROTO_TCP)
5970 return IXGBE_FILTER_PROTOCOL_TCP;
5971 else if (protocol_value == IPPROTO_UDP)
5972 return IXGBE_FILTER_PROTOCOL_UDP;
5973 else if (protocol_value == IPPROTO_SCTP)
5974 return IXGBE_FILTER_PROTOCOL_SCTP;
5976 return IXGBE_FILTER_PROTOCOL_NONE;
5979 /* inject a 5-tuple filter to HW */
5981 ixgbe_inject_5tuple_filter(struct rte_eth_dev *dev,
5982 struct ixgbe_5tuple_filter *filter)
5984 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5986 uint32_t ftqf, sdpqf;
5987 uint32_t l34timir = 0;
5988 uint8_t mask = 0xff;
5992 sdpqf = (uint32_t)(filter->filter_info.dst_port <<
5993 IXGBE_SDPQF_DSTPORT_SHIFT);
5994 sdpqf = sdpqf | (filter->filter_info.src_port & IXGBE_SDPQF_SRCPORT);
5996 ftqf = (uint32_t)(filter->filter_info.proto &
5997 IXGBE_FTQF_PROTOCOL_MASK);
5998 ftqf |= (uint32_t)((filter->filter_info.priority &
5999 IXGBE_FTQF_PRIORITY_MASK) << IXGBE_FTQF_PRIORITY_SHIFT);
6000 if (filter->filter_info.src_ip_mask == 0) /* 0 means compare. */
6001 mask &= IXGBE_FTQF_SOURCE_ADDR_MASK;
6002 if (filter->filter_info.dst_ip_mask == 0)
6003 mask &= IXGBE_FTQF_DEST_ADDR_MASK;
6004 if (filter->filter_info.src_port_mask == 0)
6005 mask &= IXGBE_FTQF_SOURCE_PORT_MASK;
6006 if (filter->filter_info.dst_port_mask == 0)
6007 mask &= IXGBE_FTQF_DEST_PORT_MASK;
6008 if (filter->filter_info.proto_mask == 0)
6009 mask &= IXGBE_FTQF_PROTOCOL_COMP_MASK;
6010 ftqf |= mask << IXGBE_FTQF_5TUPLE_MASK_SHIFT;
6011 ftqf |= IXGBE_FTQF_POOL_MASK_EN;
6012 ftqf |= IXGBE_FTQF_QUEUE_ENABLE;
6014 IXGBE_WRITE_REG(hw, IXGBE_DAQF(i), filter->filter_info.dst_ip);
6015 IXGBE_WRITE_REG(hw, IXGBE_SAQF(i), filter->filter_info.src_ip);
6016 IXGBE_WRITE_REG(hw, IXGBE_SDPQF(i), sdpqf);
6017 IXGBE_WRITE_REG(hw, IXGBE_FTQF(i), ftqf);
6019 l34timir |= IXGBE_L34T_IMIR_RESERVE;
6020 l34timir |= (uint32_t)(filter->queue <<
6021 IXGBE_L34T_IMIR_QUEUE_SHIFT);
6022 IXGBE_WRITE_REG(hw, IXGBE_L34T_IMIR(i), l34timir);
6026 * add a 5tuple filter
6029 * dev: Pointer to struct rte_eth_dev.
6030 * index: the index the filter allocates.
6031 * filter: ponter to the filter that will be added.
6032 * rx_queue: the queue id the filter assigned to.
6035 * - On success, zero.
6036 * - On failure, a negative value.
6039 ixgbe_add_5tuple_filter(struct rte_eth_dev *dev,
6040 struct ixgbe_5tuple_filter *filter)
6042 struct ixgbe_filter_info *filter_info =
6043 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
6047 * look for an unused 5tuple filter index,
6048 * and insert the filter to list.
6050 for (i = 0; i < IXGBE_MAX_FTQF_FILTERS; i++) {
6051 idx = i / (sizeof(uint32_t) * NBBY);
6052 shift = i % (sizeof(uint32_t) * NBBY);
6053 if (!(filter_info->fivetuple_mask[idx] & (1 << shift))) {
6054 filter_info->fivetuple_mask[idx] |= 1 << shift;
6056 TAILQ_INSERT_TAIL(&filter_info->fivetuple_list,
6062 if (i >= IXGBE_MAX_FTQF_FILTERS) {
6063 PMD_DRV_LOG(ERR, "5tuple filters are full.");
6067 ixgbe_inject_5tuple_filter(dev, filter);
6073 * remove a 5tuple filter
6076 * dev: Pointer to struct rte_eth_dev.
6077 * filter: the pointer of the filter will be removed.
6080 ixgbe_remove_5tuple_filter(struct rte_eth_dev *dev,
6081 struct ixgbe_5tuple_filter *filter)
6083 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6084 struct ixgbe_filter_info *filter_info =
6085 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
6086 uint16_t index = filter->index;
6088 filter_info->fivetuple_mask[index / (sizeof(uint32_t) * NBBY)] &=
6089 ~(1 << (index % (sizeof(uint32_t) * NBBY)));
6090 TAILQ_REMOVE(&filter_info->fivetuple_list, filter, entries);
6093 IXGBE_WRITE_REG(hw, IXGBE_DAQF(index), 0);
6094 IXGBE_WRITE_REG(hw, IXGBE_SAQF(index), 0);
6095 IXGBE_WRITE_REG(hw, IXGBE_SDPQF(index), 0);
6096 IXGBE_WRITE_REG(hw, IXGBE_FTQF(index), 0);
6097 IXGBE_WRITE_REG(hw, IXGBE_L34T_IMIR(index), 0);
6101 ixgbevf_dev_set_mtu(struct rte_eth_dev *dev, uint16_t mtu)
6103 struct ixgbe_hw *hw;
6104 uint32_t max_frame = mtu + ETHER_HDR_LEN + ETHER_CRC_LEN;
6105 struct rte_eth_rxmode *rx_conf = &dev->data->dev_conf.rxmode;
6107 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6109 if ((mtu < ETHER_MIN_MTU) || (max_frame > ETHER_MAX_JUMBO_FRAME_LEN))
6112 /* refuse mtu that requires the support of scattered packets when this
6113 * feature has not been enabled before.
6115 if (!rx_conf->enable_scatter &&
6116 (max_frame + 2 * IXGBE_VLAN_TAG_SIZE >
6117 dev->data->min_rx_buf_size - RTE_PKTMBUF_HEADROOM))
6121 * When supported by the underlying PF driver, use the IXGBE_VF_SET_MTU
6122 * request of the version 2.0 of the mailbox API.
6123 * For now, use the IXGBE_VF_SET_LPE request of the version 1.0
6124 * of the mailbox API.
6125 * This call to IXGBE_SET_LPE action won't work with ixgbe pf drivers
6126 * prior to 3.11.33 which contains the following change:
6127 * "ixgbe: Enable jumbo frames support w/ SR-IOV"
6129 ixgbevf_rlpml_set_vf(hw, max_frame);
6131 /* update max frame size */
6132 dev->data->dev_conf.rxmode.max_rx_pkt_len = max_frame;
6136 static inline struct ixgbe_5tuple_filter *
6137 ixgbe_5tuple_filter_lookup(struct ixgbe_5tuple_filter_list *filter_list,
6138 struct ixgbe_5tuple_filter_info *key)
6140 struct ixgbe_5tuple_filter *it;
6142 TAILQ_FOREACH(it, filter_list, entries) {
6143 if (memcmp(key, &it->filter_info,
6144 sizeof(struct ixgbe_5tuple_filter_info)) == 0) {
6151 /* translate elements in struct rte_eth_ntuple_filter to struct ixgbe_5tuple_filter_info*/
6153 ntuple_filter_to_5tuple(struct rte_eth_ntuple_filter *filter,
6154 struct ixgbe_5tuple_filter_info *filter_info)
6156 if (filter->queue >= IXGBE_MAX_RX_QUEUE_NUM ||
6157 filter->priority > IXGBE_5TUPLE_MAX_PRI ||
6158 filter->priority < IXGBE_5TUPLE_MIN_PRI)
6161 switch (filter->dst_ip_mask) {
6163 filter_info->dst_ip_mask = 0;
6164 filter_info->dst_ip = filter->dst_ip;
6167 filter_info->dst_ip_mask = 1;
6170 PMD_DRV_LOG(ERR, "invalid dst_ip mask.");
6174 switch (filter->src_ip_mask) {
6176 filter_info->src_ip_mask = 0;
6177 filter_info->src_ip = filter->src_ip;
6180 filter_info->src_ip_mask = 1;
6183 PMD_DRV_LOG(ERR, "invalid src_ip mask.");
6187 switch (filter->dst_port_mask) {
6189 filter_info->dst_port_mask = 0;
6190 filter_info->dst_port = filter->dst_port;
6193 filter_info->dst_port_mask = 1;
6196 PMD_DRV_LOG(ERR, "invalid dst_port mask.");
6200 switch (filter->src_port_mask) {
6202 filter_info->src_port_mask = 0;
6203 filter_info->src_port = filter->src_port;
6206 filter_info->src_port_mask = 1;
6209 PMD_DRV_LOG(ERR, "invalid src_port mask.");
6213 switch (filter->proto_mask) {
6215 filter_info->proto_mask = 0;
6216 filter_info->proto =
6217 convert_protocol_type(filter->proto);
6220 filter_info->proto_mask = 1;
6223 PMD_DRV_LOG(ERR, "invalid protocol mask.");
6227 filter_info->priority = (uint8_t)filter->priority;
6232 * add or delete a ntuple filter
6235 * dev: Pointer to struct rte_eth_dev.
6236 * ntuple_filter: Pointer to struct rte_eth_ntuple_filter
6237 * add: if true, add filter, if false, remove filter
6240 * - On success, zero.
6241 * - On failure, a negative value.
6244 ixgbe_add_del_ntuple_filter(struct rte_eth_dev *dev,
6245 struct rte_eth_ntuple_filter *ntuple_filter,
6248 struct ixgbe_filter_info *filter_info =
6249 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
6250 struct ixgbe_5tuple_filter_info filter_5tuple;
6251 struct ixgbe_5tuple_filter *filter;
6254 if (ntuple_filter->flags != RTE_5TUPLE_FLAGS) {
6255 PMD_DRV_LOG(ERR, "only 5tuple is supported.");
6259 memset(&filter_5tuple, 0, sizeof(struct ixgbe_5tuple_filter_info));
6260 ret = ntuple_filter_to_5tuple(ntuple_filter, &filter_5tuple);
6264 filter = ixgbe_5tuple_filter_lookup(&filter_info->fivetuple_list,
6266 if (filter != NULL && add) {
6267 PMD_DRV_LOG(ERR, "filter exists.");
6270 if (filter == NULL && !add) {
6271 PMD_DRV_LOG(ERR, "filter doesn't exist.");
6276 filter = rte_zmalloc("ixgbe_5tuple_filter",
6277 sizeof(struct ixgbe_5tuple_filter), 0);
6280 (void)rte_memcpy(&filter->filter_info,
6282 sizeof(struct ixgbe_5tuple_filter_info));
6283 filter->queue = ntuple_filter->queue;
6284 ret = ixgbe_add_5tuple_filter(dev, filter);
6290 ixgbe_remove_5tuple_filter(dev, filter);
6296 * get a ntuple filter
6299 * dev: Pointer to struct rte_eth_dev.
6300 * ntuple_filter: Pointer to struct rte_eth_ntuple_filter
6303 * - On success, zero.
6304 * - On failure, a negative value.
6307 ixgbe_get_ntuple_filter(struct rte_eth_dev *dev,
6308 struct rte_eth_ntuple_filter *ntuple_filter)
6310 struct ixgbe_filter_info *filter_info =
6311 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
6312 struct ixgbe_5tuple_filter_info filter_5tuple;
6313 struct ixgbe_5tuple_filter *filter;
6316 if (ntuple_filter->flags != RTE_5TUPLE_FLAGS) {
6317 PMD_DRV_LOG(ERR, "only 5tuple is supported.");
6321 memset(&filter_5tuple, 0, sizeof(struct ixgbe_5tuple_filter_info));
6322 ret = ntuple_filter_to_5tuple(ntuple_filter, &filter_5tuple);
6326 filter = ixgbe_5tuple_filter_lookup(&filter_info->fivetuple_list,
6328 if (filter == NULL) {
6329 PMD_DRV_LOG(ERR, "filter doesn't exist.");
6332 ntuple_filter->queue = filter->queue;
6337 * ixgbe_ntuple_filter_handle - Handle operations for ntuple filter.
6338 * @dev: pointer to rte_eth_dev structure
6339 * @filter_op:operation will be taken.
6340 * @arg: a pointer to specific structure corresponding to the filter_op
6343 * - On success, zero.
6344 * - On failure, a negative value.
6347 ixgbe_ntuple_filter_handle(struct rte_eth_dev *dev,
6348 enum rte_filter_op filter_op,
6351 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6354 MAC_TYPE_FILTER_SUP_EXT(hw->mac.type);
6356 if (filter_op == RTE_ETH_FILTER_NOP)
6360 PMD_DRV_LOG(ERR, "arg shouldn't be NULL for operation %u.",
6365 switch (filter_op) {
6366 case RTE_ETH_FILTER_ADD:
6367 ret = ixgbe_add_del_ntuple_filter(dev,
6368 (struct rte_eth_ntuple_filter *)arg,
6371 case RTE_ETH_FILTER_DELETE:
6372 ret = ixgbe_add_del_ntuple_filter(dev,
6373 (struct rte_eth_ntuple_filter *)arg,
6376 case RTE_ETH_FILTER_GET:
6377 ret = ixgbe_get_ntuple_filter(dev,
6378 (struct rte_eth_ntuple_filter *)arg);
6381 PMD_DRV_LOG(ERR, "unsupported operation %u.", filter_op);
6389 ixgbe_add_del_ethertype_filter(struct rte_eth_dev *dev,
6390 struct rte_eth_ethertype_filter *filter,
6393 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6394 struct ixgbe_filter_info *filter_info =
6395 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
6399 struct ixgbe_ethertype_filter ethertype_filter;
6401 if (filter->queue >= IXGBE_MAX_RX_QUEUE_NUM)
6404 if (filter->ether_type == ETHER_TYPE_IPv4 ||
6405 filter->ether_type == ETHER_TYPE_IPv6) {
6406 PMD_DRV_LOG(ERR, "unsupported ether_type(0x%04x) in"
6407 " ethertype filter.", filter->ether_type);
6411 if (filter->flags & RTE_ETHTYPE_FLAGS_MAC) {
6412 PMD_DRV_LOG(ERR, "mac compare is unsupported.");
6415 if (filter->flags & RTE_ETHTYPE_FLAGS_DROP) {
6416 PMD_DRV_LOG(ERR, "drop option is unsupported.");
6420 ret = ixgbe_ethertype_filter_lookup(filter_info, filter->ether_type);
6421 if (ret >= 0 && add) {
6422 PMD_DRV_LOG(ERR, "ethertype (0x%04x) filter exists.",
6423 filter->ether_type);
6426 if (ret < 0 && !add) {
6427 PMD_DRV_LOG(ERR, "ethertype (0x%04x) filter doesn't exist.",
6428 filter->ether_type);
6433 etqf = IXGBE_ETQF_FILTER_EN;
6434 etqf |= (uint32_t)filter->ether_type;
6435 etqs |= (uint32_t)((filter->queue <<
6436 IXGBE_ETQS_RX_QUEUE_SHIFT) &
6437 IXGBE_ETQS_RX_QUEUE);
6438 etqs |= IXGBE_ETQS_QUEUE_EN;
6440 ethertype_filter.ethertype = filter->ether_type;
6441 ethertype_filter.etqf = etqf;
6442 ethertype_filter.etqs = etqs;
6443 ethertype_filter.conf = FALSE;
6444 ret = ixgbe_ethertype_filter_insert(filter_info,
6447 PMD_DRV_LOG(ERR, "ethertype filters are full.");
6451 ret = ixgbe_ethertype_filter_remove(filter_info, (uint8_t)ret);
6455 IXGBE_WRITE_REG(hw, IXGBE_ETQF(ret), etqf);
6456 IXGBE_WRITE_REG(hw, IXGBE_ETQS(ret), etqs);
6457 IXGBE_WRITE_FLUSH(hw);
6463 ixgbe_get_ethertype_filter(struct rte_eth_dev *dev,
6464 struct rte_eth_ethertype_filter *filter)
6466 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6467 struct ixgbe_filter_info *filter_info =
6468 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
6469 uint32_t etqf, etqs;
6472 ret = ixgbe_ethertype_filter_lookup(filter_info, filter->ether_type);
6474 PMD_DRV_LOG(ERR, "ethertype (0x%04x) filter doesn't exist.",
6475 filter->ether_type);
6479 etqf = IXGBE_READ_REG(hw, IXGBE_ETQF(ret));
6480 if (etqf & IXGBE_ETQF_FILTER_EN) {
6481 etqs = IXGBE_READ_REG(hw, IXGBE_ETQS(ret));
6482 filter->ether_type = etqf & IXGBE_ETQF_ETHERTYPE;
6484 filter->queue = (etqs & IXGBE_ETQS_RX_QUEUE) >>
6485 IXGBE_ETQS_RX_QUEUE_SHIFT;
6492 * ixgbe_ethertype_filter_handle - Handle operations for ethertype filter.
6493 * @dev: pointer to rte_eth_dev structure
6494 * @filter_op:operation will be taken.
6495 * @arg: a pointer to specific structure corresponding to the filter_op
6498 ixgbe_ethertype_filter_handle(struct rte_eth_dev *dev,
6499 enum rte_filter_op filter_op,
6502 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6505 MAC_TYPE_FILTER_SUP(hw->mac.type);
6507 if (filter_op == RTE_ETH_FILTER_NOP)
6511 PMD_DRV_LOG(ERR, "arg shouldn't be NULL for operation %u.",
6516 switch (filter_op) {
6517 case RTE_ETH_FILTER_ADD:
6518 ret = ixgbe_add_del_ethertype_filter(dev,
6519 (struct rte_eth_ethertype_filter *)arg,
6522 case RTE_ETH_FILTER_DELETE:
6523 ret = ixgbe_add_del_ethertype_filter(dev,
6524 (struct rte_eth_ethertype_filter *)arg,
6527 case RTE_ETH_FILTER_GET:
6528 ret = ixgbe_get_ethertype_filter(dev,
6529 (struct rte_eth_ethertype_filter *)arg);
6532 PMD_DRV_LOG(ERR, "unsupported operation %u.", filter_op);
6540 ixgbe_dev_filter_ctrl(struct rte_eth_dev *dev,
6541 enum rte_filter_type filter_type,
6542 enum rte_filter_op filter_op,
6547 switch (filter_type) {
6548 case RTE_ETH_FILTER_NTUPLE:
6549 ret = ixgbe_ntuple_filter_handle(dev, filter_op, arg);
6551 case RTE_ETH_FILTER_ETHERTYPE:
6552 ret = ixgbe_ethertype_filter_handle(dev, filter_op, arg);
6554 case RTE_ETH_FILTER_SYN:
6555 ret = ixgbe_syn_filter_handle(dev, filter_op, arg);
6557 case RTE_ETH_FILTER_FDIR:
6558 ret = ixgbe_fdir_ctrl_func(dev, filter_op, arg);
6560 case RTE_ETH_FILTER_L2_TUNNEL:
6561 ret = ixgbe_dev_l2_tunnel_filter_handle(dev, filter_op, arg);
6563 case RTE_ETH_FILTER_GENERIC:
6564 if (filter_op != RTE_ETH_FILTER_GET)
6566 *(const void **)arg = &ixgbe_flow_ops;
6569 PMD_DRV_LOG(WARNING, "Filter type (%d) not supported",
6579 ixgbe_dev_addr_list_itr(__attribute__((unused)) struct ixgbe_hw *hw,
6580 u8 **mc_addr_ptr, u32 *vmdq)
6585 mc_addr = *mc_addr_ptr;
6586 *mc_addr_ptr = (mc_addr + sizeof(struct ether_addr));
6591 ixgbe_dev_set_mc_addr_list(struct rte_eth_dev *dev,
6592 struct ether_addr *mc_addr_set,
6593 uint32_t nb_mc_addr)
6595 struct ixgbe_hw *hw;
6598 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6599 mc_addr_list = (u8 *)mc_addr_set;
6600 return ixgbe_update_mc_addr_list(hw, mc_addr_list, nb_mc_addr,
6601 ixgbe_dev_addr_list_itr, TRUE);
6605 ixgbe_read_systime_cyclecounter(struct rte_eth_dev *dev)
6607 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6608 uint64_t systime_cycles;
6610 switch (hw->mac.type) {
6611 case ixgbe_mac_X550:
6612 case ixgbe_mac_X550EM_x:
6613 case ixgbe_mac_X550EM_a:
6614 /* SYSTIMEL stores ns and SYSTIMEH stores seconds. */
6615 systime_cycles = (uint64_t)IXGBE_READ_REG(hw, IXGBE_SYSTIML);
6616 systime_cycles += (uint64_t)IXGBE_READ_REG(hw, IXGBE_SYSTIMH)
6620 systime_cycles = (uint64_t)IXGBE_READ_REG(hw, IXGBE_SYSTIML);
6621 systime_cycles |= (uint64_t)IXGBE_READ_REG(hw, IXGBE_SYSTIMH)
6625 return systime_cycles;
6629 ixgbe_read_rx_tstamp_cyclecounter(struct rte_eth_dev *dev)
6631 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6632 uint64_t rx_tstamp_cycles;
6634 switch (hw->mac.type) {
6635 case ixgbe_mac_X550:
6636 case ixgbe_mac_X550EM_x:
6637 case ixgbe_mac_X550EM_a:
6638 /* RXSTMPL stores ns and RXSTMPH stores seconds. */
6639 rx_tstamp_cycles = (uint64_t)IXGBE_READ_REG(hw, IXGBE_RXSTMPL);
6640 rx_tstamp_cycles += (uint64_t)IXGBE_READ_REG(hw, IXGBE_RXSTMPH)
6644 /* RXSTMPL stores ns and RXSTMPH stores seconds. */
6645 rx_tstamp_cycles = (uint64_t)IXGBE_READ_REG(hw, IXGBE_RXSTMPL);
6646 rx_tstamp_cycles |= (uint64_t)IXGBE_READ_REG(hw, IXGBE_RXSTMPH)
6650 return rx_tstamp_cycles;
6654 ixgbe_read_tx_tstamp_cyclecounter(struct rte_eth_dev *dev)
6656 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6657 uint64_t tx_tstamp_cycles;
6659 switch (hw->mac.type) {
6660 case ixgbe_mac_X550:
6661 case ixgbe_mac_X550EM_x:
6662 case ixgbe_mac_X550EM_a:
6663 /* TXSTMPL stores ns and TXSTMPH stores seconds. */
6664 tx_tstamp_cycles = (uint64_t)IXGBE_READ_REG(hw, IXGBE_TXSTMPL);
6665 tx_tstamp_cycles += (uint64_t)IXGBE_READ_REG(hw, IXGBE_TXSTMPH)
6669 /* TXSTMPL stores ns and TXSTMPH stores seconds. */
6670 tx_tstamp_cycles = (uint64_t)IXGBE_READ_REG(hw, IXGBE_TXSTMPL);
6671 tx_tstamp_cycles |= (uint64_t)IXGBE_READ_REG(hw, IXGBE_TXSTMPH)
6675 return tx_tstamp_cycles;
6679 ixgbe_start_timecounters(struct rte_eth_dev *dev)
6681 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6682 struct ixgbe_adapter *adapter =
6683 (struct ixgbe_adapter *)dev->data->dev_private;
6684 struct rte_eth_link link;
6685 uint32_t incval = 0;
6688 /* Get current link speed. */
6689 memset(&link, 0, sizeof(link));
6690 ixgbe_dev_link_update(dev, 1);
6691 rte_ixgbe_dev_atomic_read_link_status(dev, &link);
6693 switch (link.link_speed) {
6694 case ETH_SPEED_NUM_100M:
6695 incval = IXGBE_INCVAL_100;
6696 shift = IXGBE_INCVAL_SHIFT_100;
6698 case ETH_SPEED_NUM_1G:
6699 incval = IXGBE_INCVAL_1GB;
6700 shift = IXGBE_INCVAL_SHIFT_1GB;
6702 case ETH_SPEED_NUM_10G:
6704 incval = IXGBE_INCVAL_10GB;
6705 shift = IXGBE_INCVAL_SHIFT_10GB;
6709 switch (hw->mac.type) {
6710 case ixgbe_mac_X550:
6711 case ixgbe_mac_X550EM_x:
6712 case ixgbe_mac_X550EM_a:
6713 /* Independent of link speed. */
6715 /* Cycles read will be interpreted as ns. */
6718 case ixgbe_mac_X540:
6719 IXGBE_WRITE_REG(hw, IXGBE_TIMINCA, incval);
6721 case ixgbe_mac_82599EB:
6722 incval >>= IXGBE_INCVAL_SHIFT_82599;
6723 shift -= IXGBE_INCVAL_SHIFT_82599;
6724 IXGBE_WRITE_REG(hw, IXGBE_TIMINCA,
6725 (1 << IXGBE_INCPER_SHIFT_82599) | incval);
6728 /* Not supported. */
6732 memset(&adapter->systime_tc, 0, sizeof(struct rte_timecounter));
6733 memset(&adapter->rx_tstamp_tc, 0, sizeof(struct rte_timecounter));
6734 memset(&adapter->tx_tstamp_tc, 0, sizeof(struct rte_timecounter));
6736 adapter->systime_tc.cc_mask = IXGBE_CYCLECOUNTER_MASK;
6737 adapter->systime_tc.cc_shift = shift;
6738 adapter->systime_tc.nsec_mask = (1ULL << shift) - 1;
6740 adapter->rx_tstamp_tc.cc_mask = IXGBE_CYCLECOUNTER_MASK;
6741 adapter->rx_tstamp_tc.cc_shift = shift;
6742 adapter->rx_tstamp_tc.nsec_mask = (1ULL << shift) - 1;
6744 adapter->tx_tstamp_tc.cc_mask = IXGBE_CYCLECOUNTER_MASK;
6745 adapter->tx_tstamp_tc.cc_shift = shift;
6746 adapter->tx_tstamp_tc.nsec_mask = (1ULL << shift) - 1;
6750 ixgbe_timesync_adjust_time(struct rte_eth_dev *dev, int64_t delta)
6752 struct ixgbe_adapter *adapter =
6753 (struct ixgbe_adapter *)dev->data->dev_private;
6755 adapter->systime_tc.nsec += delta;
6756 adapter->rx_tstamp_tc.nsec += delta;
6757 adapter->tx_tstamp_tc.nsec += delta;
6763 ixgbe_timesync_write_time(struct rte_eth_dev *dev, const struct timespec *ts)
6766 struct ixgbe_adapter *adapter =
6767 (struct ixgbe_adapter *)dev->data->dev_private;
6769 ns = rte_timespec_to_ns(ts);
6770 /* Set the timecounters to a new value. */
6771 adapter->systime_tc.nsec = ns;
6772 adapter->rx_tstamp_tc.nsec = ns;
6773 adapter->tx_tstamp_tc.nsec = ns;
6779 ixgbe_timesync_read_time(struct rte_eth_dev *dev, struct timespec *ts)
6781 uint64_t ns, systime_cycles;
6782 struct ixgbe_adapter *adapter =
6783 (struct ixgbe_adapter *)dev->data->dev_private;
6785 systime_cycles = ixgbe_read_systime_cyclecounter(dev);
6786 ns = rte_timecounter_update(&adapter->systime_tc, systime_cycles);
6787 *ts = rte_ns_to_timespec(ns);
6793 ixgbe_timesync_enable(struct rte_eth_dev *dev)
6795 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6799 /* Stop the timesync system time. */
6800 IXGBE_WRITE_REG(hw, IXGBE_TIMINCA, 0x0);
6801 /* Reset the timesync system time value. */
6802 IXGBE_WRITE_REG(hw, IXGBE_SYSTIML, 0x0);
6803 IXGBE_WRITE_REG(hw, IXGBE_SYSTIMH, 0x0);
6805 /* Enable system time for platforms where it isn't on by default. */
6806 tsauxc = IXGBE_READ_REG(hw, IXGBE_TSAUXC);
6807 tsauxc &= ~IXGBE_TSAUXC_DISABLE_SYSTIME;
6808 IXGBE_WRITE_REG(hw, IXGBE_TSAUXC, tsauxc);
6810 ixgbe_start_timecounters(dev);
6812 /* Enable L2 filtering of IEEE1588/802.1AS Ethernet frame types. */
6813 IXGBE_WRITE_REG(hw, IXGBE_ETQF(IXGBE_ETQF_FILTER_1588),
6815 IXGBE_ETQF_FILTER_EN |
6818 /* Enable timestamping of received PTP packets. */
6819 tsync_ctl = IXGBE_READ_REG(hw, IXGBE_TSYNCRXCTL);
6820 tsync_ctl |= IXGBE_TSYNCRXCTL_ENABLED;
6821 IXGBE_WRITE_REG(hw, IXGBE_TSYNCRXCTL, tsync_ctl);
6823 /* Enable timestamping of transmitted PTP packets. */
6824 tsync_ctl = IXGBE_READ_REG(hw, IXGBE_TSYNCTXCTL);
6825 tsync_ctl |= IXGBE_TSYNCTXCTL_ENABLED;
6826 IXGBE_WRITE_REG(hw, IXGBE_TSYNCTXCTL, tsync_ctl);
6828 IXGBE_WRITE_FLUSH(hw);
6834 ixgbe_timesync_disable(struct rte_eth_dev *dev)
6836 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6839 /* Disable timestamping of transmitted PTP packets. */
6840 tsync_ctl = IXGBE_READ_REG(hw, IXGBE_TSYNCTXCTL);
6841 tsync_ctl &= ~IXGBE_TSYNCTXCTL_ENABLED;
6842 IXGBE_WRITE_REG(hw, IXGBE_TSYNCTXCTL, tsync_ctl);
6844 /* Disable timestamping of received PTP packets. */
6845 tsync_ctl = IXGBE_READ_REG(hw, IXGBE_TSYNCRXCTL);
6846 tsync_ctl &= ~IXGBE_TSYNCRXCTL_ENABLED;
6847 IXGBE_WRITE_REG(hw, IXGBE_TSYNCRXCTL, tsync_ctl);
6849 /* Disable L2 filtering of IEEE1588/802.1AS Ethernet frame types. */
6850 IXGBE_WRITE_REG(hw, IXGBE_ETQF(IXGBE_ETQF_FILTER_1588), 0);
6852 /* Stop incrementating the System Time registers. */
6853 IXGBE_WRITE_REG(hw, IXGBE_TIMINCA, 0);
6859 ixgbe_timesync_read_rx_timestamp(struct rte_eth_dev *dev,
6860 struct timespec *timestamp,
6861 uint32_t flags __rte_unused)
6863 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6864 struct ixgbe_adapter *adapter =
6865 (struct ixgbe_adapter *)dev->data->dev_private;
6866 uint32_t tsync_rxctl;
6867 uint64_t rx_tstamp_cycles;
6870 tsync_rxctl = IXGBE_READ_REG(hw, IXGBE_TSYNCRXCTL);
6871 if ((tsync_rxctl & IXGBE_TSYNCRXCTL_VALID) == 0)
6874 rx_tstamp_cycles = ixgbe_read_rx_tstamp_cyclecounter(dev);
6875 ns = rte_timecounter_update(&adapter->rx_tstamp_tc, rx_tstamp_cycles);
6876 *timestamp = rte_ns_to_timespec(ns);
6882 ixgbe_timesync_read_tx_timestamp(struct rte_eth_dev *dev,
6883 struct timespec *timestamp)
6885 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6886 struct ixgbe_adapter *adapter =
6887 (struct ixgbe_adapter *)dev->data->dev_private;
6888 uint32_t tsync_txctl;
6889 uint64_t tx_tstamp_cycles;
6892 tsync_txctl = IXGBE_READ_REG(hw, IXGBE_TSYNCTXCTL);
6893 if ((tsync_txctl & IXGBE_TSYNCTXCTL_VALID) == 0)
6896 tx_tstamp_cycles = ixgbe_read_tx_tstamp_cyclecounter(dev);
6897 ns = rte_timecounter_update(&adapter->tx_tstamp_tc, tx_tstamp_cycles);
6898 *timestamp = rte_ns_to_timespec(ns);
6904 ixgbe_get_reg_length(struct rte_eth_dev *dev)
6906 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6909 const struct reg_info *reg_group;
6910 const struct reg_info **reg_set = (hw->mac.type == ixgbe_mac_82598EB) ?
6911 ixgbe_regs_mac_82598EB : ixgbe_regs_others;
6913 while ((reg_group = reg_set[g_ind++]))
6914 count += ixgbe_regs_group_count(reg_group);
6920 ixgbevf_get_reg_length(struct rte_eth_dev *dev __rte_unused)
6924 const struct reg_info *reg_group;
6926 while ((reg_group = ixgbevf_regs[g_ind++]))
6927 count += ixgbe_regs_group_count(reg_group);
6933 ixgbe_get_regs(struct rte_eth_dev *dev,
6934 struct rte_dev_reg_info *regs)
6936 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6937 uint32_t *data = regs->data;
6940 const struct reg_info *reg_group;
6941 const struct reg_info **reg_set = (hw->mac.type == ixgbe_mac_82598EB) ?
6942 ixgbe_regs_mac_82598EB : ixgbe_regs_others;
6945 regs->length = ixgbe_get_reg_length(dev);
6946 regs->width = sizeof(uint32_t);
6950 /* Support only full register dump */
6951 if ((regs->length == 0) ||
6952 (regs->length == (uint32_t)ixgbe_get_reg_length(dev))) {
6953 regs->version = hw->mac.type << 24 | hw->revision_id << 16 |
6955 while ((reg_group = reg_set[g_ind++]))
6956 count += ixgbe_read_regs_group(dev, &data[count],
6965 ixgbevf_get_regs(struct rte_eth_dev *dev,
6966 struct rte_dev_reg_info *regs)
6968 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6969 uint32_t *data = regs->data;
6972 const struct reg_info *reg_group;
6975 regs->length = ixgbevf_get_reg_length(dev);
6976 regs->width = sizeof(uint32_t);
6980 /* Support only full register dump */
6981 if ((regs->length == 0) ||
6982 (regs->length == (uint32_t)ixgbevf_get_reg_length(dev))) {
6983 regs->version = hw->mac.type << 24 | hw->revision_id << 16 |
6985 while ((reg_group = ixgbevf_regs[g_ind++]))
6986 count += ixgbe_read_regs_group(dev, &data[count],
6995 ixgbe_get_eeprom_length(struct rte_eth_dev *dev)
6997 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6999 /* Return unit is byte count */
7000 return hw->eeprom.word_size * 2;
7004 ixgbe_get_eeprom(struct rte_eth_dev *dev,
7005 struct rte_dev_eeprom_info *in_eeprom)
7007 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7008 struct ixgbe_eeprom_info *eeprom = &hw->eeprom;
7009 uint16_t *data = in_eeprom->data;
7012 first = in_eeprom->offset >> 1;
7013 length = in_eeprom->length >> 1;
7014 if ((first > hw->eeprom.word_size) ||
7015 ((first + length) > hw->eeprom.word_size))
7018 in_eeprom->magic = hw->vendor_id | (hw->device_id << 16);
7020 return eeprom->ops.read_buffer(hw, first, length, data);
7024 ixgbe_set_eeprom(struct rte_eth_dev *dev,
7025 struct rte_dev_eeprom_info *in_eeprom)
7027 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7028 struct ixgbe_eeprom_info *eeprom = &hw->eeprom;
7029 uint16_t *data = in_eeprom->data;
7032 first = in_eeprom->offset >> 1;
7033 length = in_eeprom->length >> 1;
7034 if ((first > hw->eeprom.word_size) ||
7035 ((first + length) > hw->eeprom.word_size))
7038 in_eeprom->magic = hw->vendor_id | (hw->device_id << 16);
7040 return eeprom->ops.write_buffer(hw, first, length, data);
7044 ixgbe_reta_size_get(enum ixgbe_mac_type mac_type) {
7046 case ixgbe_mac_X550:
7047 case ixgbe_mac_X550EM_x:
7048 case ixgbe_mac_X550EM_a:
7049 return ETH_RSS_RETA_SIZE_512;
7050 case ixgbe_mac_X550_vf:
7051 case ixgbe_mac_X550EM_x_vf:
7052 case ixgbe_mac_X550EM_a_vf:
7053 return ETH_RSS_RETA_SIZE_64;
7055 return ETH_RSS_RETA_SIZE_128;
7060 ixgbe_reta_reg_get(enum ixgbe_mac_type mac_type, uint16_t reta_idx) {
7062 case ixgbe_mac_X550:
7063 case ixgbe_mac_X550EM_x:
7064 case ixgbe_mac_X550EM_a:
7065 if (reta_idx < ETH_RSS_RETA_SIZE_128)
7066 return IXGBE_RETA(reta_idx >> 2);
7068 return IXGBE_ERETA((reta_idx - ETH_RSS_RETA_SIZE_128) >> 2);
7069 case ixgbe_mac_X550_vf:
7070 case ixgbe_mac_X550EM_x_vf:
7071 case ixgbe_mac_X550EM_a_vf:
7072 return IXGBE_VFRETA(reta_idx >> 2);
7074 return IXGBE_RETA(reta_idx >> 2);
7079 ixgbe_mrqc_reg_get(enum ixgbe_mac_type mac_type) {
7081 case ixgbe_mac_X550_vf:
7082 case ixgbe_mac_X550EM_x_vf:
7083 case ixgbe_mac_X550EM_a_vf:
7084 return IXGBE_VFMRQC;
7091 ixgbe_rssrk_reg_get(enum ixgbe_mac_type mac_type, uint8_t i) {
7093 case ixgbe_mac_X550_vf:
7094 case ixgbe_mac_X550EM_x_vf:
7095 case ixgbe_mac_X550EM_a_vf:
7096 return IXGBE_VFRSSRK(i);
7098 return IXGBE_RSSRK(i);
7103 ixgbe_rss_update_sp(enum ixgbe_mac_type mac_type) {
7105 case ixgbe_mac_82599_vf:
7106 case ixgbe_mac_X540_vf:
7114 ixgbe_dev_get_dcb_info(struct rte_eth_dev *dev,
7115 struct rte_eth_dcb_info *dcb_info)
7117 struct ixgbe_dcb_config *dcb_config =
7118 IXGBE_DEV_PRIVATE_TO_DCB_CFG(dev->data->dev_private);
7119 struct ixgbe_dcb_tc_config *tc;
7122 if (dev->data->dev_conf.rxmode.mq_mode & ETH_MQ_RX_DCB_FLAG)
7123 dcb_info->nb_tcs = dcb_config->num_tcs.pg_tcs;
7125 dcb_info->nb_tcs = 1;
7127 if (dcb_config->vt_mode) { /* vt is enabled*/
7128 struct rte_eth_vmdq_dcb_conf *vmdq_rx_conf =
7129 &dev->data->dev_conf.rx_adv_conf.vmdq_dcb_conf;
7130 for (i = 0; i < ETH_DCB_NUM_USER_PRIORITIES; i++)
7131 dcb_info->prio_tc[i] = vmdq_rx_conf->dcb_tc[i];
7132 for (i = 0; i < vmdq_rx_conf->nb_queue_pools; i++) {
7133 for (j = 0; j < dcb_info->nb_tcs; j++) {
7134 dcb_info->tc_queue.tc_rxq[i][j].base =
7135 i * dcb_info->nb_tcs + j;
7136 dcb_info->tc_queue.tc_rxq[i][j].nb_queue = 1;
7137 dcb_info->tc_queue.tc_txq[i][j].base =
7138 i * dcb_info->nb_tcs + j;
7139 dcb_info->tc_queue.tc_txq[i][j].nb_queue = 1;
7142 } else { /* vt is disabled*/
7143 struct rte_eth_dcb_rx_conf *rx_conf =
7144 &dev->data->dev_conf.rx_adv_conf.dcb_rx_conf;
7145 for (i = 0; i < ETH_DCB_NUM_USER_PRIORITIES; i++)
7146 dcb_info->prio_tc[i] = rx_conf->dcb_tc[i];
7147 if (dcb_info->nb_tcs == ETH_4_TCS) {
7148 for (i = 0; i < dcb_info->nb_tcs; i++) {
7149 dcb_info->tc_queue.tc_rxq[0][i].base = i * 32;
7150 dcb_info->tc_queue.tc_rxq[0][i].nb_queue = 16;
7152 dcb_info->tc_queue.tc_txq[0][0].base = 0;
7153 dcb_info->tc_queue.tc_txq[0][1].base = 64;
7154 dcb_info->tc_queue.tc_txq[0][2].base = 96;
7155 dcb_info->tc_queue.tc_txq[0][3].base = 112;
7156 dcb_info->tc_queue.tc_txq[0][0].nb_queue = 64;
7157 dcb_info->tc_queue.tc_txq[0][1].nb_queue = 32;
7158 dcb_info->tc_queue.tc_txq[0][2].nb_queue = 16;
7159 dcb_info->tc_queue.tc_txq[0][3].nb_queue = 16;
7160 } else if (dcb_info->nb_tcs == ETH_8_TCS) {
7161 for (i = 0; i < dcb_info->nb_tcs; i++) {
7162 dcb_info->tc_queue.tc_rxq[0][i].base = i * 16;
7163 dcb_info->tc_queue.tc_rxq[0][i].nb_queue = 16;
7165 dcb_info->tc_queue.tc_txq[0][0].base = 0;
7166 dcb_info->tc_queue.tc_txq[0][1].base = 32;
7167 dcb_info->tc_queue.tc_txq[0][2].base = 64;
7168 dcb_info->tc_queue.tc_txq[0][3].base = 80;
7169 dcb_info->tc_queue.tc_txq[0][4].base = 96;
7170 dcb_info->tc_queue.tc_txq[0][5].base = 104;
7171 dcb_info->tc_queue.tc_txq[0][6].base = 112;
7172 dcb_info->tc_queue.tc_txq[0][7].base = 120;
7173 dcb_info->tc_queue.tc_txq[0][0].nb_queue = 32;
7174 dcb_info->tc_queue.tc_txq[0][1].nb_queue = 32;
7175 dcb_info->tc_queue.tc_txq[0][2].nb_queue = 16;
7176 dcb_info->tc_queue.tc_txq[0][3].nb_queue = 16;
7177 dcb_info->tc_queue.tc_txq[0][4].nb_queue = 8;
7178 dcb_info->tc_queue.tc_txq[0][5].nb_queue = 8;
7179 dcb_info->tc_queue.tc_txq[0][6].nb_queue = 8;
7180 dcb_info->tc_queue.tc_txq[0][7].nb_queue = 8;
7183 for (i = 0; i < dcb_info->nb_tcs; i++) {
7184 tc = &dcb_config->tc_config[i];
7185 dcb_info->tc_bws[i] = tc->path[IXGBE_DCB_TX_CONFIG].bwg_percent;
7190 /* Update e-tag ether type */
7192 ixgbe_update_e_tag_eth_type(struct ixgbe_hw *hw,
7193 uint16_t ether_type)
7195 uint32_t etag_etype;
7197 if (hw->mac.type != ixgbe_mac_X550 &&
7198 hw->mac.type != ixgbe_mac_X550EM_x &&
7199 hw->mac.type != ixgbe_mac_X550EM_a) {
7203 etag_etype = IXGBE_READ_REG(hw, IXGBE_ETAG_ETYPE);
7204 etag_etype &= ~IXGBE_ETAG_ETYPE_MASK;
7205 etag_etype |= ether_type;
7206 IXGBE_WRITE_REG(hw, IXGBE_ETAG_ETYPE, etag_etype);
7207 IXGBE_WRITE_FLUSH(hw);
7212 /* Config l2 tunnel ether type */
7214 ixgbe_dev_l2_tunnel_eth_type_conf(struct rte_eth_dev *dev,
7215 struct rte_eth_l2_tunnel_conf *l2_tunnel)
7218 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7219 struct ixgbe_l2_tn_info *l2_tn_info =
7220 IXGBE_DEV_PRIVATE_TO_L2_TN_INFO(dev->data->dev_private);
7222 if (l2_tunnel == NULL)
7225 switch (l2_tunnel->l2_tunnel_type) {
7226 case RTE_L2_TUNNEL_TYPE_E_TAG:
7227 l2_tn_info->e_tag_ether_type = l2_tunnel->ether_type;
7228 ret = ixgbe_update_e_tag_eth_type(hw, l2_tunnel->ether_type);
7231 PMD_DRV_LOG(ERR, "Invalid tunnel type");
7239 /* Enable e-tag tunnel */
7241 ixgbe_e_tag_enable(struct ixgbe_hw *hw)
7243 uint32_t etag_etype;
7245 if (hw->mac.type != ixgbe_mac_X550 &&
7246 hw->mac.type != ixgbe_mac_X550EM_x &&
7247 hw->mac.type != ixgbe_mac_X550EM_a) {
7251 etag_etype = IXGBE_READ_REG(hw, IXGBE_ETAG_ETYPE);
7252 etag_etype |= IXGBE_ETAG_ETYPE_VALID;
7253 IXGBE_WRITE_REG(hw, IXGBE_ETAG_ETYPE, etag_etype);
7254 IXGBE_WRITE_FLUSH(hw);
7259 /* Enable l2 tunnel */
7261 ixgbe_dev_l2_tunnel_enable(struct rte_eth_dev *dev,
7262 enum rte_eth_tunnel_type l2_tunnel_type)
7265 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7266 struct ixgbe_l2_tn_info *l2_tn_info =
7267 IXGBE_DEV_PRIVATE_TO_L2_TN_INFO(dev->data->dev_private);
7269 switch (l2_tunnel_type) {
7270 case RTE_L2_TUNNEL_TYPE_E_TAG:
7271 l2_tn_info->e_tag_en = TRUE;
7272 ret = ixgbe_e_tag_enable(hw);
7275 PMD_DRV_LOG(ERR, "Invalid tunnel type");
7283 /* Disable e-tag tunnel */
7285 ixgbe_e_tag_disable(struct ixgbe_hw *hw)
7287 uint32_t etag_etype;
7289 if (hw->mac.type != ixgbe_mac_X550 &&
7290 hw->mac.type != ixgbe_mac_X550EM_x &&
7291 hw->mac.type != ixgbe_mac_X550EM_a) {
7295 etag_etype = IXGBE_READ_REG(hw, IXGBE_ETAG_ETYPE);
7296 etag_etype &= ~IXGBE_ETAG_ETYPE_VALID;
7297 IXGBE_WRITE_REG(hw, IXGBE_ETAG_ETYPE, etag_etype);
7298 IXGBE_WRITE_FLUSH(hw);
7303 /* Disable l2 tunnel */
7305 ixgbe_dev_l2_tunnel_disable(struct rte_eth_dev *dev,
7306 enum rte_eth_tunnel_type l2_tunnel_type)
7309 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7310 struct ixgbe_l2_tn_info *l2_tn_info =
7311 IXGBE_DEV_PRIVATE_TO_L2_TN_INFO(dev->data->dev_private);
7313 switch (l2_tunnel_type) {
7314 case RTE_L2_TUNNEL_TYPE_E_TAG:
7315 l2_tn_info->e_tag_en = FALSE;
7316 ret = ixgbe_e_tag_disable(hw);
7319 PMD_DRV_LOG(ERR, "Invalid tunnel type");
7328 ixgbe_e_tag_filter_del(struct rte_eth_dev *dev,
7329 struct rte_eth_l2_tunnel_conf *l2_tunnel)
7332 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7333 uint32_t i, rar_entries;
7334 uint32_t rar_low, rar_high;
7336 if (hw->mac.type != ixgbe_mac_X550 &&
7337 hw->mac.type != ixgbe_mac_X550EM_x &&
7338 hw->mac.type != ixgbe_mac_X550EM_a) {
7342 rar_entries = ixgbe_get_num_rx_addrs(hw);
7344 for (i = 1; i < rar_entries; i++) {
7345 rar_high = IXGBE_READ_REG(hw, IXGBE_RAH(i));
7346 rar_low = IXGBE_READ_REG(hw, IXGBE_RAL(i));
7347 if ((rar_high & IXGBE_RAH_AV) &&
7348 (rar_high & IXGBE_RAH_ADTYPE) &&
7349 ((rar_low & IXGBE_RAL_ETAG_FILTER_MASK) ==
7350 l2_tunnel->tunnel_id)) {
7351 IXGBE_WRITE_REG(hw, IXGBE_RAL(i), 0);
7352 IXGBE_WRITE_REG(hw, IXGBE_RAH(i), 0);
7354 ixgbe_clear_vmdq(hw, i, IXGBE_CLEAR_VMDQ_ALL);
7364 ixgbe_e_tag_filter_add(struct rte_eth_dev *dev,
7365 struct rte_eth_l2_tunnel_conf *l2_tunnel)
7368 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7369 uint32_t i, rar_entries;
7370 uint32_t rar_low, rar_high;
7372 if (hw->mac.type != ixgbe_mac_X550 &&
7373 hw->mac.type != ixgbe_mac_X550EM_x &&
7374 hw->mac.type != ixgbe_mac_X550EM_a) {
7378 /* One entry for one tunnel. Try to remove potential existing entry. */
7379 ixgbe_e_tag_filter_del(dev, l2_tunnel);
7381 rar_entries = ixgbe_get_num_rx_addrs(hw);
7383 for (i = 1; i < rar_entries; i++) {
7384 rar_high = IXGBE_READ_REG(hw, IXGBE_RAH(i));
7385 if (rar_high & IXGBE_RAH_AV) {
7388 ixgbe_set_vmdq(hw, i, l2_tunnel->pool);
7389 rar_high = IXGBE_RAH_AV | IXGBE_RAH_ADTYPE;
7390 rar_low = l2_tunnel->tunnel_id;
7392 IXGBE_WRITE_REG(hw, IXGBE_RAL(i), rar_low);
7393 IXGBE_WRITE_REG(hw, IXGBE_RAH(i), rar_high);
7399 PMD_INIT_LOG(NOTICE, "The table of E-tag forwarding rule is full."
7400 " Please remove a rule before adding a new one.");
7404 static inline struct ixgbe_l2_tn_filter *
7405 ixgbe_l2_tn_filter_lookup(struct ixgbe_l2_tn_info *l2_tn_info,
7406 struct ixgbe_l2_tn_key *key)
7410 ret = rte_hash_lookup(l2_tn_info->hash_handle, (const void *)key);
7414 return l2_tn_info->hash_map[ret];
7418 ixgbe_insert_l2_tn_filter(struct ixgbe_l2_tn_info *l2_tn_info,
7419 struct ixgbe_l2_tn_filter *l2_tn_filter)
7423 ret = rte_hash_add_key(l2_tn_info->hash_handle,
7424 &l2_tn_filter->key);
7428 "Failed to insert L2 tunnel filter"
7429 " to hash table %d!",
7434 l2_tn_info->hash_map[ret] = l2_tn_filter;
7436 TAILQ_INSERT_TAIL(&l2_tn_info->l2_tn_list, l2_tn_filter, entries);
7442 ixgbe_remove_l2_tn_filter(struct ixgbe_l2_tn_info *l2_tn_info,
7443 struct ixgbe_l2_tn_key *key)
7446 struct ixgbe_l2_tn_filter *l2_tn_filter;
7448 ret = rte_hash_del_key(l2_tn_info->hash_handle, key);
7452 "No such L2 tunnel filter to delete %d!",
7457 l2_tn_filter = l2_tn_info->hash_map[ret];
7458 l2_tn_info->hash_map[ret] = NULL;
7460 TAILQ_REMOVE(&l2_tn_info->l2_tn_list, l2_tn_filter, entries);
7461 rte_free(l2_tn_filter);
7466 /* Add l2 tunnel filter */
7468 ixgbe_dev_l2_tunnel_filter_add(struct rte_eth_dev *dev,
7469 struct rte_eth_l2_tunnel_conf *l2_tunnel,
7473 struct ixgbe_l2_tn_info *l2_tn_info =
7474 IXGBE_DEV_PRIVATE_TO_L2_TN_INFO(dev->data->dev_private);
7475 struct ixgbe_l2_tn_key key;
7476 struct ixgbe_l2_tn_filter *node;
7479 key.l2_tn_type = l2_tunnel->l2_tunnel_type;
7480 key.tn_id = l2_tunnel->tunnel_id;
7482 node = ixgbe_l2_tn_filter_lookup(l2_tn_info, &key);
7486 "The L2 tunnel filter already exists!");
7490 node = rte_zmalloc("ixgbe_l2_tn",
7491 sizeof(struct ixgbe_l2_tn_filter),
7496 (void)rte_memcpy(&node->key,
7498 sizeof(struct ixgbe_l2_tn_key));
7499 node->pool = l2_tunnel->pool;
7500 ret = ixgbe_insert_l2_tn_filter(l2_tn_info, node);
7507 switch (l2_tunnel->l2_tunnel_type) {
7508 case RTE_L2_TUNNEL_TYPE_E_TAG:
7509 ret = ixgbe_e_tag_filter_add(dev, l2_tunnel);
7512 PMD_DRV_LOG(ERR, "Invalid tunnel type");
7517 if ((!restore) && (ret < 0))
7518 (void)ixgbe_remove_l2_tn_filter(l2_tn_info, &key);
7523 /* Delete l2 tunnel filter */
7525 ixgbe_dev_l2_tunnel_filter_del(struct rte_eth_dev *dev,
7526 struct rte_eth_l2_tunnel_conf *l2_tunnel)
7529 struct ixgbe_l2_tn_info *l2_tn_info =
7530 IXGBE_DEV_PRIVATE_TO_L2_TN_INFO(dev->data->dev_private);
7531 struct ixgbe_l2_tn_key key;
7533 key.l2_tn_type = l2_tunnel->l2_tunnel_type;
7534 key.tn_id = l2_tunnel->tunnel_id;
7535 ret = ixgbe_remove_l2_tn_filter(l2_tn_info, &key);
7539 switch (l2_tunnel->l2_tunnel_type) {
7540 case RTE_L2_TUNNEL_TYPE_E_TAG:
7541 ret = ixgbe_e_tag_filter_del(dev, l2_tunnel);
7544 PMD_DRV_LOG(ERR, "Invalid tunnel type");
7553 * ixgbe_dev_l2_tunnel_filter_handle - Handle operations for l2 tunnel filter.
7554 * @dev: pointer to rte_eth_dev structure
7555 * @filter_op:operation will be taken.
7556 * @arg: a pointer to specific structure corresponding to the filter_op
7559 ixgbe_dev_l2_tunnel_filter_handle(struct rte_eth_dev *dev,
7560 enum rte_filter_op filter_op,
7565 if (filter_op == RTE_ETH_FILTER_NOP)
7569 PMD_DRV_LOG(ERR, "arg shouldn't be NULL for operation %u.",
7574 switch (filter_op) {
7575 case RTE_ETH_FILTER_ADD:
7576 ret = ixgbe_dev_l2_tunnel_filter_add
7578 (struct rte_eth_l2_tunnel_conf *)arg,
7581 case RTE_ETH_FILTER_DELETE:
7582 ret = ixgbe_dev_l2_tunnel_filter_del
7584 (struct rte_eth_l2_tunnel_conf *)arg);
7587 PMD_DRV_LOG(ERR, "unsupported operation %u.", filter_op);
7595 ixgbe_e_tag_forwarding_en_dis(struct rte_eth_dev *dev, bool en)
7599 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7601 if (hw->mac.type != ixgbe_mac_X550 &&
7602 hw->mac.type != ixgbe_mac_X550EM_x &&
7603 hw->mac.type != ixgbe_mac_X550EM_a) {
7607 ctrl = IXGBE_READ_REG(hw, IXGBE_VT_CTL);
7608 ctrl &= ~IXGBE_VT_CTL_POOLING_MODE_MASK;
7610 ctrl |= IXGBE_VT_CTL_POOLING_MODE_ETAG;
7611 IXGBE_WRITE_REG(hw, IXGBE_VT_CTL, ctrl);
7616 /* Enable l2 tunnel forwarding */
7618 ixgbe_dev_l2_tunnel_forwarding_enable
7619 (struct rte_eth_dev *dev,
7620 enum rte_eth_tunnel_type l2_tunnel_type)
7622 struct ixgbe_l2_tn_info *l2_tn_info =
7623 IXGBE_DEV_PRIVATE_TO_L2_TN_INFO(dev->data->dev_private);
7626 switch (l2_tunnel_type) {
7627 case RTE_L2_TUNNEL_TYPE_E_TAG:
7628 l2_tn_info->e_tag_fwd_en = TRUE;
7629 ret = ixgbe_e_tag_forwarding_en_dis(dev, 1);
7632 PMD_DRV_LOG(ERR, "Invalid tunnel type");
7640 /* Disable l2 tunnel forwarding */
7642 ixgbe_dev_l2_tunnel_forwarding_disable
7643 (struct rte_eth_dev *dev,
7644 enum rte_eth_tunnel_type l2_tunnel_type)
7646 struct ixgbe_l2_tn_info *l2_tn_info =
7647 IXGBE_DEV_PRIVATE_TO_L2_TN_INFO(dev->data->dev_private);
7650 switch (l2_tunnel_type) {
7651 case RTE_L2_TUNNEL_TYPE_E_TAG:
7652 l2_tn_info->e_tag_fwd_en = FALSE;
7653 ret = ixgbe_e_tag_forwarding_en_dis(dev, 0);
7656 PMD_DRV_LOG(ERR, "Invalid tunnel type");
7665 ixgbe_e_tag_insertion_en_dis(struct rte_eth_dev *dev,
7666 struct rte_eth_l2_tunnel_conf *l2_tunnel,
7669 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
7671 uint32_t vmtir, vmvir;
7672 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7674 if (l2_tunnel->vf_id >= pci_dev->max_vfs) {
7676 "VF id %u should be less than %u",
7682 if (hw->mac.type != ixgbe_mac_X550 &&
7683 hw->mac.type != ixgbe_mac_X550EM_x &&
7684 hw->mac.type != ixgbe_mac_X550EM_a) {
7689 vmtir = l2_tunnel->tunnel_id;
7693 IXGBE_WRITE_REG(hw, IXGBE_VMTIR(l2_tunnel->vf_id), vmtir);
7695 vmvir = IXGBE_READ_REG(hw, IXGBE_VMVIR(l2_tunnel->vf_id));
7696 vmvir &= ~IXGBE_VMVIR_TAGA_MASK;
7698 vmvir |= IXGBE_VMVIR_TAGA_ETAG_INSERT;
7699 IXGBE_WRITE_REG(hw, IXGBE_VMVIR(l2_tunnel->vf_id), vmvir);
7704 /* Enable l2 tunnel tag insertion */
7706 ixgbe_dev_l2_tunnel_insertion_enable(struct rte_eth_dev *dev,
7707 struct rte_eth_l2_tunnel_conf *l2_tunnel)
7711 switch (l2_tunnel->l2_tunnel_type) {
7712 case RTE_L2_TUNNEL_TYPE_E_TAG:
7713 ret = ixgbe_e_tag_insertion_en_dis(dev, l2_tunnel, 1);
7716 PMD_DRV_LOG(ERR, "Invalid tunnel type");
7724 /* Disable l2 tunnel tag insertion */
7726 ixgbe_dev_l2_tunnel_insertion_disable
7727 (struct rte_eth_dev *dev,
7728 struct rte_eth_l2_tunnel_conf *l2_tunnel)
7732 switch (l2_tunnel->l2_tunnel_type) {
7733 case RTE_L2_TUNNEL_TYPE_E_TAG:
7734 ret = ixgbe_e_tag_insertion_en_dis(dev, l2_tunnel, 0);
7737 PMD_DRV_LOG(ERR, "Invalid tunnel type");
7746 ixgbe_e_tag_stripping_en_dis(struct rte_eth_dev *dev,
7751 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7753 if (hw->mac.type != ixgbe_mac_X550 &&
7754 hw->mac.type != ixgbe_mac_X550EM_x &&
7755 hw->mac.type != ixgbe_mac_X550EM_a) {
7759 qde = IXGBE_READ_REG(hw, IXGBE_QDE);
7761 qde |= IXGBE_QDE_STRIP_TAG;
7763 qde &= ~IXGBE_QDE_STRIP_TAG;
7764 qde &= ~IXGBE_QDE_READ;
7765 qde |= IXGBE_QDE_WRITE;
7766 IXGBE_WRITE_REG(hw, IXGBE_QDE, qde);
7771 /* Enable l2 tunnel tag stripping */
7773 ixgbe_dev_l2_tunnel_stripping_enable
7774 (struct rte_eth_dev *dev,
7775 enum rte_eth_tunnel_type l2_tunnel_type)
7779 switch (l2_tunnel_type) {
7780 case RTE_L2_TUNNEL_TYPE_E_TAG:
7781 ret = ixgbe_e_tag_stripping_en_dis(dev, 1);
7784 PMD_DRV_LOG(ERR, "Invalid tunnel type");
7792 /* Disable l2 tunnel tag stripping */
7794 ixgbe_dev_l2_tunnel_stripping_disable
7795 (struct rte_eth_dev *dev,
7796 enum rte_eth_tunnel_type l2_tunnel_type)
7800 switch (l2_tunnel_type) {
7801 case RTE_L2_TUNNEL_TYPE_E_TAG:
7802 ret = ixgbe_e_tag_stripping_en_dis(dev, 0);
7805 PMD_DRV_LOG(ERR, "Invalid tunnel type");
7813 /* Enable/disable l2 tunnel offload functions */
7815 ixgbe_dev_l2_tunnel_offload_set
7816 (struct rte_eth_dev *dev,
7817 struct rte_eth_l2_tunnel_conf *l2_tunnel,
7823 if (l2_tunnel == NULL)
7827 if (mask & ETH_L2_TUNNEL_ENABLE_MASK) {
7829 ret = ixgbe_dev_l2_tunnel_enable(
7831 l2_tunnel->l2_tunnel_type);
7833 ret = ixgbe_dev_l2_tunnel_disable(
7835 l2_tunnel->l2_tunnel_type);
7838 if (mask & ETH_L2_TUNNEL_INSERTION_MASK) {
7840 ret = ixgbe_dev_l2_tunnel_insertion_enable(
7844 ret = ixgbe_dev_l2_tunnel_insertion_disable(
7849 if (mask & ETH_L2_TUNNEL_STRIPPING_MASK) {
7851 ret = ixgbe_dev_l2_tunnel_stripping_enable(
7853 l2_tunnel->l2_tunnel_type);
7855 ret = ixgbe_dev_l2_tunnel_stripping_disable(
7857 l2_tunnel->l2_tunnel_type);
7860 if (mask & ETH_L2_TUNNEL_FORWARDING_MASK) {
7862 ret = ixgbe_dev_l2_tunnel_forwarding_enable(
7864 l2_tunnel->l2_tunnel_type);
7866 ret = ixgbe_dev_l2_tunnel_forwarding_disable(
7868 l2_tunnel->l2_tunnel_type);
7875 ixgbe_update_vxlan_port(struct ixgbe_hw *hw,
7878 IXGBE_WRITE_REG(hw, IXGBE_VXLANCTRL, port);
7879 IXGBE_WRITE_FLUSH(hw);
7884 /* There's only one register for VxLAN UDP port.
7885 * So, we cannot add several ports. Will update it.
7888 ixgbe_add_vxlan_port(struct ixgbe_hw *hw,
7892 PMD_DRV_LOG(ERR, "Add VxLAN port 0 is not allowed.");
7896 return ixgbe_update_vxlan_port(hw, port);
7899 /* We cannot delete the VxLAN port. For there's a register for VxLAN
7900 * UDP port, it must have a value.
7901 * So, will reset it to the original value 0.
7904 ixgbe_del_vxlan_port(struct ixgbe_hw *hw,
7909 cur_port = (uint16_t)IXGBE_READ_REG(hw, IXGBE_VXLANCTRL);
7911 if (cur_port != port) {
7912 PMD_DRV_LOG(ERR, "Port %u does not exist.", port);
7916 return ixgbe_update_vxlan_port(hw, 0);
7919 /* Add UDP tunneling port */
7921 ixgbe_dev_udp_tunnel_port_add(struct rte_eth_dev *dev,
7922 struct rte_eth_udp_tunnel *udp_tunnel)
7925 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7927 if (hw->mac.type != ixgbe_mac_X550 &&
7928 hw->mac.type != ixgbe_mac_X550EM_x &&
7929 hw->mac.type != ixgbe_mac_X550EM_a) {
7933 if (udp_tunnel == NULL)
7936 switch (udp_tunnel->prot_type) {
7937 case RTE_TUNNEL_TYPE_VXLAN:
7938 ret = ixgbe_add_vxlan_port(hw, udp_tunnel->udp_port);
7941 case RTE_TUNNEL_TYPE_GENEVE:
7942 case RTE_TUNNEL_TYPE_TEREDO:
7943 PMD_DRV_LOG(ERR, "Tunnel type is not supported now.");
7948 PMD_DRV_LOG(ERR, "Invalid tunnel type");
7956 /* Remove UDP tunneling port */
7958 ixgbe_dev_udp_tunnel_port_del(struct rte_eth_dev *dev,
7959 struct rte_eth_udp_tunnel *udp_tunnel)
7962 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7964 if (hw->mac.type != ixgbe_mac_X550 &&
7965 hw->mac.type != ixgbe_mac_X550EM_x &&
7966 hw->mac.type != ixgbe_mac_X550EM_a) {
7970 if (udp_tunnel == NULL)
7973 switch (udp_tunnel->prot_type) {
7974 case RTE_TUNNEL_TYPE_VXLAN:
7975 ret = ixgbe_del_vxlan_port(hw, udp_tunnel->udp_port);
7977 case RTE_TUNNEL_TYPE_GENEVE:
7978 case RTE_TUNNEL_TYPE_TEREDO:
7979 PMD_DRV_LOG(ERR, "Tunnel type is not supported now.");
7983 PMD_DRV_LOG(ERR, "Invalid tunnel type");
7992 ixgbevf_dev_allmulticast_enable(struct rte_eth_dev *dev)
7994 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7996 hw->mac.ops.update_xcast_mode(hw, IXGBEVF_XCAST_MODE_ALLMULTI);
8000 ixgbevf_dev_allmulticast_disable(struct rte_eth_dev *dev)
8002 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8004 hw->mac.ops.update_xcast_mode(hw, IXGBEVF_XCAST_MODE_MULTI);
8007 static void ixgbevf_mbx_process(struct rte_eth_dev *dev)
8009 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8012 if (ixgbe_read_mbx(hw, &in_msg, 1, 0))
8015 /* PF reset VF event */
8016 if (in_msg == IXGBE_PF_CONTROL_MSG)
8017 _rte_eth_dev_callback_process(dev, RTE_ETH_EVENT_INTR_RESET,
8022 ixgbevf_dev_interrupt_get_status(struct rte_eth_dev *dev)
8025 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8026 struct ixgbe_interrupt *intr =
8027 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
8028 ixgbevf_intr_disable(hw);
8030 /* read-on-clear nic registers here */
8031 eicr = IXGBE_READ_REG(hw, IXGBE_VTEICR);
8034 /* only one misc vector supported - mailbox */
8035 eicr &= IXGBE_VTEICR_MASK;
8036 if (eicr == IXGBE_MISC_VEC_ID)
8037 intr->flags |= IXGBE_FLAG_MAILBOX;
8043 ixgbevf_dev_interrupt_action(struct rte_eth_dev *dev)
8045 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8046 struct ixgbe_interrupt *intr =
8047 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
8049 if (intr->flags & IXGBE_FLAG_MAILBOX) {
8050 ixgbevf_mbx_process(dev);
8051 intr->flags &= ~IXGBE_FLAG_MAILBOX;
8054 ixgbevf_intr_enable(hw);
8060 ixgbevf_dev_interrupt_handler(void *param)
8062 struct rte_eth_dev *dev = (struct rte_eth_dev *)param;
8064 ixgbevf_dev_interrupt_get_status(dev);
8065 ixgbevf_dev_interrupt_action(dev);
8069 * ixgbe_disable_sec_tx_path_generic - Stops the transmit data path
8070 * @hw: pointer to hardware structure
8072 * Stops the transmit data path and waits for the HW to internally empty
8073 * the Tx security block
8075 int ixgbe_disable_sec_tx_path_generic(struct ixgbe_hw *hw)
8077 #define IXGBE_MAX_SECTX_POLL 40
8082 sectxreg = IXGBE_READ_REG(hw, IXGBE_SECTXCTRL);
8083 sectxreg |= IXGBE_SECTXCTRL_TX_DIS;
8084 IXGBE_WRITE_REG(hw, IXGBE_SECTXCTRL, sectxreg);
8085 for (i = 0; i < IXGBE_MAX_SECTX_POLL; i++) {
8086 sectxreg = IXGBE_READ_REG(hw, IXGBE_SECTXSTAT);
8087 if (sectxreg & IXGBE_SECTXSTAT_SECTX_RDY)
8089 /* Use interrupt-safe sleep just in case */
8093 /* For informational purposes only */
8094 if (i >= IXGBE_MAX_SECTX_POLL)
8095 PMD_DRV_LOG(DEBUG, "Tx unit being enabled before security "
8096 "path fully disabled. Continuing with init.");
8098 return IXGBE_SUCCESS;
8102 * ixgbe_enable_sec_tx_path_generic - Enables the transmit data path
8103 * @hw: pointer to hardware structure
8105 * Enables the transmit data path.
8107 int ixgbe_enable_sec_tx_path_generic(struct ixgbe_hw *hw)
8111 sectxreg = IXGBE_READ_REG(hw, IXGBE_SECTXCTRL);
8112 sectxreg &= ~IXGBE_SECTXCTRL_TX_DIS;
8113 IXGBE_WRITE_REG(hw, IXGBE_SECTXCTRL, sectxreg);
8114 IXGBE_WRITE_FLUSH(hw);
8116 return IXGBE_SUCCESS;
8119 /* restore n-tuple filter */
8121 ixgbe_ntuple_filter_restore(struct rte_eth_dev *dev)
8123 struct ixgbe_filter_info *filter_info =
8124 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
8125 struct ixgbe_5tuple_filter *node;
8127 TAILQ_FOREACH(node, &filter_info->fivetuple_list, entries) {
8128 ixgbe_inject_5tuple_filter(dev, node);
8132 /* restore ethernet type filter */
8134 ixgbe_ethertype_filter_restore(struct rte_eth_dev *dev)
8136 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8137 struct ixgbe_filter_info *filter_info =
8138 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
8141 for (i = 0; i < IXGBE_MAX_ETQF_FILTERS; i++) {
8142 if (filter_info->ethertype_mask & (1 << i)) {
8143 IXGBE_WRITE_REG(hw, IXGBE_ETQF(i),
8144 filter_info->ethertype_filters[i].etqf);
8145 IXGBE_WRITE_REG(hw, IXGBE_ETQS(i),
8146 filter_info->ethertype_filters[i].etqs);
8147 IXGBE_WRITE_FLUSH(hw);
8152 /* restore SYN filter */
8154 ixgbe_syn_filter_restore(struct rte_eth_dev *dev)
8156 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8157 struct ixgbe_filter_info *filter_info =
8158 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
8161 synqf = filter_info->syn_info;
8163 if (synqf & IXGBE_SYN_FILTER_ENABLE) {
8164 IXGBE_WRITE_REG(hw, IXGBE_SYNQF, synqf);
8165 IXGBE_WRITE_FLUSH(hw);
8169 /* restore L2 tunnel filter */
8171 ixgbe_l2_tn_filter_restore(struct rte_eth_dev *dev)
8173 struct ixgbe_l2_tn_info *l2_tn_info =
8174 IXGBE_DEV_PRIVATE_TO_L2_TN_INFO(dev->data->dev_private);
8175 struct ixgbe_l2_tn_filter *node;
8176 struct rte_eth_l2_tunnel_conf l2_tn_conf;
8178 TAILQ_FOREACH(node, &l2_tn_info->l2_tn_list, entries) {
8179 l2_tn_conf.l2_tunnel_type = node->key.l2_tn_type;
8180 l2_tn_conf.tunnel_id = node->key.tn_id;
8181 l2_tn_conf.pool = node->pool;
8182 (void)ixgbe_dev_l2_tunnel_filter_add(dev, &l2_tn_conf, TRUE);
8187 ixgbe_filter_restore(struct rte_eth_dev *dev)
8189 ixgbe_ntuple_filter_restore(dev);
8190 ixgbe_ethertype_filter_restore(dev);
8191 ixgbe_syn_filter_restore(dev);
8192 ixgbe_fdir_filter_restore(dev);
8193 ixgbe_l2_tn_filter_restore(dev);
8199 ixgbe_l2_tunnel_conf(struct rte_eth_dev *dev)
8201 struct ixgbe_l2_tn_info *l2_tn_info =
8202 IXGBE_DEV_PRIVATE_TO_L2_TN_INFO(dev->data->dev_private);
8203 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8205 if (l2_tn_info->e_tag_en)
8206 (void)ixgbe_e_tag_enable(hw);
8208 if (l2_tn_info->e_tag_fwd_en)
8209 (void)ixgbe_e_tag_forwarding_en_dis(dev, 1);
8211 (void)ixgbe_update_e_tag_eth_type(hw, l2_tn_info->e_tag_ether_type);
8214 /* remove all the n-tuple filters */
8216 ixgbe_clear_all_ntuple_filter(struct rte_eth_dev *dev)
8218 struct ixgbe_filter_info *filter_info =
8219 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
8220 struct ixgbe_5tuple_filter *p_5tuple;
8222 while ((p_5tuple = TAILQ_FIRST(&filter_info->fivetuple_list)))
8223 ixgbe_remove_5tuple_filter(dev, p_5tuple);
8226 /* remove all the ether type filters */
8228 ixgbe_clear_all_ethertype_filter(struct rte_eth_dev *dev)
8230 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8231 struct ixgbe_filter_info *filter_info =
8232 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
8235 for (i = 0; i < IXGBE_MAX_ETQF_FILTERS; i++) {
8236 if (filter_info->ethertype_mask & (1 << i) &&
8237 !filter_info->ethertype_filters[i].conf) {
8238 (void)ixgbe_ethertype_filter_remove(filter_info,
8240 IXGBE_WRITE_REG(hw, IXGBE_ETQF(i), 0);
8241 IXGBE_WRITE_REG(hw, IXGBE_ETQS(i), 0);
8242 IXGBE_WRITE_FLUSH(hw);
8247 /* remove the SYN filter */
8249 ixgbe_clear_syn_filter(struct rte_eth_dev *dev)
8251 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8252 struct ixgbe_filter_info *filter_info =
8253 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
8255 if (filter_info->syn_info & IXGBE_SYN_FILTER_ENABLE) {
8256 filter_info->syn_info = 0;
8258 IXGBE_WRITE_REG(hw, IXGBE_SYNQF, 0);
8259 IXGBE_WRITE_FLUSH(hw);
8263 /* remove all the L2 tunnel filters */
8265 ixgbe_clear_all_l2_tn_filter(struct rte_eth_dev *dev)
8267 struct ixgbe_l2_tn_info *l2_tn_info =
8268 IXGBE_DEV_PRIVATE_TO_L2_TN_INFO(dev->data->dev_private);
8269 struct ixgbe_l2_tn_filter *l2_tn_filter;
8270 struct rte_eth_l2_tunnel_conf l2_tn_conf;
8273 while ((l2_tn_filter = TAILQ_FIRST(&l2_tn_info->l2_tn_list))) {
8274 l2_tn_conf.l2_tunnel_type = l2_tn_filter->key.l2_tn_type;
8275 l2_tn_conf.tunnel_id = l2_tn_filter->key.tn_id;
8276 l2_tn_conf.pool = l2_tn_filter->pool;
8277 ret = ixgbe_dev_l2_tunnel_filter_del(dev, &l2_tn_conf);
8285 RTE_PMD_REGISTER_PCI(net_ixgbe, rte_ixgbe_pmd);
8286 RTE_PMD_REGISTER_PCI_TABLE(net_ixgbe, pci_id_ixgbe_map);
8287 RTE_PMD_REGISTER_KMOD_DEP(net_ixgbe, "* igb_uio | uio_pci_generic | vfio-pci");
8288 RTE_PMD_REGISTER_PCI(net_ixgbe_vf, rte_ixgbevf_pmd);
8289 RTE_PMD_REGISTER_PCI_TABLE(net_ixgbe_vf, pci_id_ixgbevf_map);
8290 RTE_PMD_REGISTER_KMOD_DEP(net_ixgbe_vf, "* igb_uio | vfio-pci");