1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2010-2017 Intel Corporation
13 #include <netinet/in.h>
14 #include <rte_string_fns.h>
15 #include <rte_byteorder.h>
16 #include <rte_common.h>
17 #include <rte_cycles.h>
19 #include <rte_interrupts.h>
21 #include <rte_debug.h>
23 #include <rte_bus_pci.h>
24 #include <rte_branch_prediction.h>
25 #include <rte_memory.h>
26 #include <rte_kvargs.h>
28 #include <rte_alarm.h>
29 #include <rte_ether.h>
30 #include <rte_ethdev_driver.h>
31 #include <rte_ethdev_pci.h>
32 #include <rte_malloc.h>
33 #include <rte_random.h>
35 #include <rte_hash_crc.h>
36 #ifdef RTE_LIBRTE_SECURITY
37 #include <rte_security_driver.h>
40 #include "ixgbe_logs.h"
41 #include "base/ixgbe_api.h"
42 #include "base/ixgbe_vf.h"
43 #include "base/ixgbe_common.h"
44 #include "ixgbe_ethdev.h"
45 #include "ixgbe_bypass.h"
46 #include "ixgbe_rxtx.h"
47 #include "base/ixgbe_type.h"
48 #include "base/ixgbe_phy.h"
49 #include "ixgbe_regs.h"
52 * High threshold controlling when to start sending XOFF frames. Must be at
53 * least 8 bytes less than receive packet buffer size. This value is in units
56 #define IXGBE_FC_HI 0x80
59 * Low threshold controlling when to start sending XON frames. This value is
60 * in units of 1024 bytes.
62 #define IXGBE_FC_LO 0x40
64 /* Timer value included in XOFF frames. */
65 #define IXGBE_FC_PAUSE 0x680
67 /*Default value of Max Rx Queue*/
68 #define IXGBE_MAX_RX_QUEUE_NUM 128
70 #define IXGBE_LINK_DOWN_CHECK_TIMEOUT 4000 /* ms */
71 #define IXGBE_LINK_UP_CHECK_TIMEOUT 1000 /* ms */
72 #define IXGBE_VMDQ_NUM_UC_MAC 4096 /* Maximum nb. of UC MAC addr. */
74 #define IXGBE_MMW_SIZE_DEFAULT 0x4
75 #define IXGBE_MMW_SIZE_JUMBO_FRAME 0x14
76 #define IXGBE_MAX_RING_DESC 4096 /* replicate define from rxtx */
79 * Default values for RX/TX configuration
81 #define IXGBE_DEFAULT_RX_FREE_THRESH 32
82 #define IXGBE_DEFAULT_RX_PTHRESH 8
83 #define IXGBE_DEFAULT_RX_HTHRESH 8
84 #define IXGBE_DEFAULT_RX_WTHRESH 0
86 #define IXGBE_DEFAULT_TX_FREE_THRESH 32
87 #define IXGBE_DEFAULT_TX_PTHRESH 32
88 #define IXGBE_DEFAULT_TX_HTHRESH 0
89 #define IXGBE_DEFAULT_TX_WTHRESH 0
90 #define IXGBE_DEFAULT_TX_RSBIT_THRESH 32
92 /* Bit shift and mask */
93 #define IXGBE_4_BIT_WIDTH (CHAR_BIT / 2)
94 #define IXGBE_4_BIT_MASK RTE_LEN2MASK(IXGBE_4_BIT_WIDTH, uint8_t)
95 #define IXGBE_8_BIT_WIDTH CHAR_BIT
96 #define IXGBE_8_BIT_MASK UINT8_MAX
98 #define IXGBEVF_PMD_NAME "rte_ixgbevf_pmd" /* PMD name */
100 #define IXGBE_QUEUE_STAT_COUNTERS (sizeof(hw_stats->qprc) / sizeof(hw_stats->qprc[0]))
102 /* Additional timesync values. */
103 #define NSEC_PER_SEC 1000000000L
104 #define IXGBE_INCVAL_10GB 0x66666666
105 #define IXGBE_INCVAL_1GB 0x40000000
106 #define IXGBE_INCVAL_100 0x50000000
107 #define IXGBE_INCVAL_SHIFT_10GB 28
108 #define IXGBE_INCVAL_SHIFT_1GB 24
109 #define IXGBE_INCVAL_SHIFT_100 21
110 #define IXGBE_INCVAL_SHIFT_82599 7
111 #define IXGBE_INCPER_SHIFT_82599 24
113 #define IXGBE_CYCLECOUNTER_MASK 0xffffffffffffffffULL
115 #define IXGBE_VT_CTL_POOLING_MODE_MASK 0x00030000
116 #define IXGBE_VT_CTL_POOLING_MODE_ETAG 0x00010000
117 #define IXGBE_ETAG_ETYPE 0x00005084
118 #define IXGBE_ETAG_ETYPE_MASK 0x0000ffff
119 #define IXGBE_ETAG_ETYPE_VALID 0x80000000
120 #define IXGBE_RAH_ADTYPE 0x40000000
121 #define IXGBE_RAL_ETAG_FILTER_MASK 0x00003fff
122 #define IXGBE_VMVIR_TAGA_MASK 0x18000000
123 #define IXGBE_VMVIR_TAGA_ETAG_INSERT 0x08000000
124 #define IXGBE_VMTIR(_i) (0x00017000 + ((_i) * 4)) /* 64 of these (0-63) */
125 #define IXGBE_QDE_STRIP_TAG 0x00000004
126 #define IXGBE_VTEICR_MASK 0x07
128 #define IXGBE_EXVET_VET_EXT_SHIFT 16
129 #define IXGBE_DMATXCTL_VT_MASK 0xFFFF0000
131 #define IXGBEVF_DEVARG_PFLINK_FULLCHK "pflink_fullchk"
133 static const char * const ixgbevf_valid_arguments[] = {
134 IXGBEVF_DEVARG_PFLINK_FULLCHK,
138 static int eth_ixgbe_dev_init(struct rte_eth_dev *eth_dev, void *init_params);
139 static int eth_ixgbe_dev_uninit(struct rte_eth_dev *eth_dev);
140 static int ixgbe_fdir_filter_init(struct rte_eth_dev *eth_dev);
141 static int ixgbe_fdir_filter_uninit(struct rte_eth_dev *eth_dev);
142 static int ixgbe_l2_tn_filter_init(struct rte_eth_dev *eth_dev);
143 static int ixgbe_l2_tn_filter_uninit(struct rte_eth_dev *eth_dev);
144 static int ixgbe_ntuple_filter_uninit(struct rte_eth_dev *eth_dev);
145 static int ixgbe_dev_configure(struct rte_eth_dev *dev);
146 static int ixgbe_dev_start(struct rte_eth_dev *dev);
147 static void ixgbe_dev_stop(struct rte_eth_dev *dev);
148 static int ixgbe_dev_set_link_up(struct rte_eth_dev *dev);
149 static int ixgbe_dev_set_link_down(struct rte_eth_dev *dev);
150 static void ixgbe_dev_close(struct rte_eth_dev *dev);
151 static int ixgbe_dev_reset(struct rte_eth_dev *dev);
152 static int ixgbe_dev_promiscuous_enable(struct rte_eth_dev *dev);
153 static int ixgbe_dev_promiscuous_disable(struct rte_eth_dev *dev);
154 static int ixgbe_dev_allmulticast_enable(struct rte_eth_dev *dev);
155 static int ixgbe_dev_allmulticast_disable(struct rte_eth_dev *dev);
156 static int ixgbe_dev_link_update(struct rte_eth_dev *dev,
157 int wait_to_complete);
158 static int ixgbe_dev_stats_get(struct rte_eth_dev *dev,
159 struct rte_eth_stats *stats);
160 static int ixgbe_dev_xstats_get(struct rte_eth_dev *dev,
161 struct rte_eth_xstat *xstats, unsigned n);
162 static int ixgbevf_dev_xstats_get(struct rte_eth_dev *dev,
163 struct rte_eth_xstat *xstats, unsigned n);
165 ixgbe_dev_xstats_get_by_id(struct rte_eth_dev *dev, const uint64_t *ids,
166 uint64_t *values, unsigned int n);
167 static int ixgbe_dev_stats_reset(struct rte_eth_dev *dev);
168 static int ixgbe_dev_xstats_reset(struct rte_eth_dev *dev);
169 static int ixgbe_dev_xstats_get_names(struct rte_eth_dev *dev,
170 struct rte_eth_xstat_name *xstats_names,
172 static int ixgbevf_dev_xstats_get_names(struct rte_eth_dev *dev,
173 struct rte_eth_xstat_name *xstats_names, unsigned limit);
174 static int ixgbe_dev_xstats_get_names_by_id(
175 struct rte_eth_dev *dev,
176 struct rte_eth_xstat_name *xstats_names,
179 static int ixgbe_dev_queue_stats_mapping_set(struct rte_eth_dev *eth_dev,
183 static int ixgbe_fw_version_get(struct rte_eth_dev *dev, char *fw_version,
185 static int ixgbe_dev_info_get(struct rte_eth_dev *dev,
186 struct rte_eth_dev_info *dev_info);
187 static const uint32_t *ixgbe_dev_supported_ptypes_get(struct rte_eth_dev *dev);
188 static int ixgbevf_dev_info_get(struct rte_eth_dev *dev,
189 struct rte_eth_dev_info *dev_info);
190 static int ixgbe_dev_mtu_set(struct rte_eth_dev *dev, uint16_t mtu);
192 static int ixgbe_vlan_filter_set(struct rte_eth_dev *dev,
193 uint16_t vlan_id, int on);
194 static int ixgbe_vlan_tpid_set(struct rte_eth_dev *dev,
195 enum rte_vlan_type vlan_type,
197 static void ixgbe_vlan_hw_strip_bitmap_set(struct rte_eth_dev *dev,
198 uint16_t queue, bool on);
199 static void ixgbe_vlan_strip_queue_set(struct rte_eth_dev *dev, uint16_t queue,
201 static void ixgbe_config_vlan_strip_on_all_queues(struct rte_eth_dev *dev,
203 static int ixgbe_vlan_offload_config(struct rte_eth_dev *dev, int mask);
204 static int ixgbe_vlan_offload_set(struct rte_eth_dev *dev, int mask);
205 static void ixgbe_vlan_hw_strip_enable(struct rte_eth_dev *dev, uint16_t queue);
206 static void ixgbe_vlan_hw_strip_disable(struct rte_eth_dev *dev, uint16_t queue);
207 static void ixgbe_vlan_hw_extend_enable(struct rte_eth_dev *dev);
208 static void ixgbe_vlan_hw_extend_disable(struct rte_eth_dev *dev);
210 static int ixgbe_dev_led_on(struct rte_eth_dev *dev);
211 static int ixgbe_dev_led_off(struct rte_eth_dev *dev);
212 static int ixgbe_flow_ctrl_get(struct rte_eth_dev *dev,
213 struct rte_eth_fc_conf *fc_conf);
214 static int ixgbe_flow_ctrl_set(struct rte_eth_dev *dev,
215 struct rte_eth_fc_conf *fc_conf);
216 static int ixgbe_priority_flow_ctrl_set(struct rte_eth_dev *dev,
217 struct rte_eth_pfc_conf *pfc_conf);
218 static int ixgbe_dev_rss_reta_update(struct rte_eth_dev *dev,
219 struct rte_eth_rss_reta_entry64 *reta_conf,
221 static int ixgbe_dev_rss_reta_query(struct rte_eth_dev *dev,
222 struct rte_eth_rss_reta_entry64 *reta_conf,
224 static void ixgbe_dev_link_status_print(struct rte_eth_dev *dev);
225 static int ixgbe_dev_lsc_interrupt_setup(struct rte_eth_dev *dev, uint8_t on);
226 static int ixgbe_dev_macsec_interrupt_setup(struct rte_eth_dev *dev);
227 static int ixgbe_dev_rxq_interrupt_setup(struct rte_eth_dev *dev);
228 static int ixgbe_dev_interrupt_get_status(struct rte_eth_dev *dev);
229 static int ixgbe_dev_interrupt_action(struct rte_eth_dev *dev);
230 static void ixgbe_dev_interrupt_handler(void *param);
231 static void ixgbe_dev_interrupt_delayed_handler(void *param);
232 static void ixgbe_dev_setup_link_alarm_handler(void *param);
234 static int ixgbe_add_rar(struct rte_eth_dev *dev,
235 struct rte_ether_addr *mac_addr,
236 uint32_t index, uint32_t pool);
237 static void ixgbe_remove_rar(struct rte_eth_dev *dev, uint32_t index);
238 static int ixgbe_set_default_mac_addr(struct rte_eth_dev *dev,
239 struct rte_ether_addr *mac_addr);
240 static void ixgbe_dcb_init(struct ixgbe_hw *hw, struct ixgbe_dcb_config *dcb_config);
241 static bool is_device_supported(struct rte_eth_dev *dev,
242 struct rte_pci_driver *drv);
244 /* For Virtual Function support */
245 static int eth_ixgbevf_dev_init(struct rte_eth_dev *eth_dev);
246 static int eth_ixgbevf_dev_uninit(struct rte_eth_dev *eth_dev);
247 static int ixgbevf_dev_configure(struct rte_eth_dev *dev);
248 static int ixgbevf_dev_start(struct rte_eth_dev *dev);
249 static int ixgbevf_dev_link_update(struct rte_eth_dev *dev,
250 int wait_to_complete);
251 static void ixgbevf_dev_stop(struct rte_eth_dev *dev);
252 static void ixgbevf_dev_close(struct rte_eth_dev *dev);
253 static int ixgbevf_dev_reset(struct rte_eth_dev *dev);
254 static void ixgbevf_intr_disable(struct rte_eth_dev *dev);
255 static void ixgbevf_intr_enable(struct rte_eth_dev *dev);
256 static int ixgbevf_dev_stats_get(struct rte_eth_dev *dev,
257 struct rte_eth_stats *stats);
258 static int ixgbevf_dev_stats_reset(struct rte_eth_dev *dev);
259 static int ixgbevf_vlan_filter_set(struct rte_eth_dev *dev,
260 uint16_t vlan_id, int on);
261 static void ixgbevf_vlan_strip_queue_set(struct rte_eth_dev *dev,
262 uint16_t queue, int on);
263 static int ixgbevf_vlan_offload_config(struct rte_eth_dev *dev, int mask);
264 static int ixgbevf_vlan_offload_set(struct rte_eth_dev *dev, int mask);
265 static void ixgbevf_set_vfta_all(struct rte_eth_dev *dev, bool on);
266 static int ixgbevf_dev_rx_queue_intr_enable(struct rte_eth_dev *dev,
268 static int ixgbevf_dev_rx_queue_intr_disable(struct rte_eth_dev *dev,
270 static void ixgbevf_set_ivar_map(struct ixgbe_hw *hw, int8_t direction,
271 uint8_t queue, uint8_t msix_vector);
272 static void ixgbevf_configure_msix(struct rte_eth_dev *dev);
273 static int ixgbevf_dev_promiscuous_enable(struct rte_eth_dev *dev);
274 static int ixgbevf_dev_promiscuous_disable(struct rte_eth_dev *dev);
275 static int ixgbevf_dev_allmulticast_enable(struct rte_eth_dev *dev);
276 static int ixgbevf_dev_allmulticast_disable(struct rte_eth_dev *dev);
278 /* For Eth VMDQ APIs support */
279 static int ixgbe_uc_hash_table_set(struct rte_eth_dev *dev, struct
280 rte_ether_addr * mac_addr, uint8_t on);
281 static int ixgbe_uc_all_hash_table_set(struct rte_eth_dev *dev, uint8_t on);
282 static int ixgbe_mirror_rule_set(struct rte_eth_dev *dev,
283 struct rte_eth_mirror_conf *mirror_conf,
284 uint8_t rule_id, uint8_t on);
285 static int ixgbe_mirror_rule_reset(struct rte_eth_dev *dev,
287 static int ixgbe_dev_rx_queue_intr_enable(struct rte_eth_dev *dev,
289 static int ixgbe_dev_rx_queue_intr_disable(struct rte_eth_dev *dev,
291 static void ixgbe_set_ivar_map(struct ixgbe_hw *hw, int8_t direction,
292 uint8_t queue, uint8_t msix_vector);
293 static void ixgbe_configure_msix(struct rte_eth_dev *dev);
295 static int ixgbevf_add_mac_addr(struct rte_eth_dev *dev,
296 struct rte_ether_addr *mac_addr,
297 uint32_t index, uint32_t pool);
298 static void ixgbevf_remove_mac_addr(struct rte_eth_dev *dev, uint32_t index);
299 static int ixgbevf_set_default_mac_addr(struct rte_eth_dev *dev,
300 struct rte_ether_addr *mac_addr);
301 static int ixgbe_syn_filter_get(struct rte_eth_dev *dev,
302 struct rte_eth_syn_filter *filter);
303 static int ixgbe_syn_filter_handle(struct rte_eth_dev *dev,
304 enum rte_filter_op filter_op,
306 static int ixgbe_add_5tuple_filter(struct rte_eth_dev *dev,
307 struct ixgbe_5tuple_filter *filter);
308 static void ixgbe_remove_5tuple_filter(struct rte_eth_dev *dev,
309 struct ixgbe_5tuple_filter *filter);
310 static int ixgbe_ntuple_filter_handle(struct rte_eth_dev *dev,
311 enum rte_filter_op filter_op,
313 static int ixgbe_get_ntuple_filter(struct rte_eth_dev *dev,
314 struct rte_eth_ntuple_filter *filter);
315 static int ixgbe_ethertype_filter_handle(struct rte_eth_dev *dev,
316 enum rte_filter_op filter_op,
318 static int ixgbe_get_ethertype_filter(struct rte_eth_dev *dev,
319 struct rte_eth_ethertype_filter *filter);
320 static int ixgbe_dev_filter_ctrl(struct rte_eth_dev *dev,
321 enum rte_filter_type filter_type,
322 enum rte_filter_op filter_op,
324 static int ixgbevf_dev_set_mtu(struct rte_eth_dev *dev, uint16_t mtu);
326 static int ixgbe_dev_set_mc_addr_list(struct rte_eth_dev *dev,
327 struct rte_ether_addr *mc_addr_set,
328 uint32_t nb_mc_addr);
329 static int ixgbe_dev_get_dcb_info(struct rte_eth_dev *dev,
330 struct rte_eth_dcb_info *dcb_info);
332 static int ixgbe_get_reg_length(struct rte_eth_dev *dev);
333 static int ixgbe_get_regs(struct rte_eth_dev *dev,
334 struct rte_dev_reg_info *regs);
335 static int ixgbe_get_eeprom_length(struct rte_eth_dev *dev);
336 static int ixgbe_get_eeprom(struct rte_eth_dev *dev,
337 struct rte_dev_eeprom_info *eeprom);
338 static int ixgbe_set_eeprom(struct rte_eth_dev *dev,
339 struct rte_dev_eeprom_info *eeprom);
341 static int ixgbe_get_module_info(struct rte_eth_dev *dev,
342 struct rte_eth_dev_module_info *modinfo);
343 static int ixgbe_get_module_eeprom(struct rte_eth_dev *dev,
344 struct rte_dev_eeprom_info *info);
346 static int ixgbevf_get_reg_length(struct rte_eth_dev *dev);
347 static int ixgbevf_get_regs(struct rte_eth_dev *dev,
348 struct rte_dev_reg_info *regs);
350 static int ixgbe_timesync_enable(struct rte_eth_dev *dev);
351 static int ixgbe_timesync_disable(struct rte_eth_dev *dev);
352 static int ixgbe_timesync_read_rx_timestamp(struct rte_eth_dev *dev,
353 struct timespec *timestamp,
355 static int ixgbe_timesync_read_tx_timestamp(struct rte_eth_dev *dev,
356 struct timespec *timestamp);
357 static int ixgbe_timesync_adjust_time(struct rte_eth_dev *dev, int64_t delta);
358 static int ixgbe_timesync_read_time(struct rte_eth_dev *dev,
359 struct timespec *timestamp);
360 static int ixgbe_timesync_write_time(struct rte_eth_dev *dev,
361 const struct timespec *timestamp);
362 static void ixgbevf_dev_interrupt_handler(void *param);
364 static int ixgbe_dev_l2_tunnel_eth_type_conf
365 (struct rte_eth_dev *dev, struct rte_eth_l2_tunnel_conf *l2_tunnel);
366 static int ixgbe_dev_l2_tunnel_offload_set
367 (struct rte_eth_dev *dev,
368 struct rte_eth_l2_tunnel_conf *l2_tunnel,
371 static int ixgbe_dev_l2_tunnel_filter_handle(struct rte_eth_dev *dev,
372 enum rte_filter_op filter_op,
375 static int ixgbe_dev_udp_tunnel_port_add(struct rte_eth_dev *dev,
376 struct rte_eth_udp_tunnel *udp_tunnel);
377 static int ixgbe_dev_udp_tunnel_port_del(struct rte_eth_dev *dev,
378 struct rte_eth_udp_tunnel *udp_tunnel);
379 static int ixgbe_filter_restore(struct rte_eth_dev *dev);
380 static void ixgbe_l2_tunnel_conf(struct rte_eth_dev *dev);
383 * Define VF Stats MACRO for Non "cleared on read" register
385 #define UPDATE_VF_STAT(reg, last, cur) \
387 uint32_t latest = IXGBE_READ_REG(hw, reg); \
388 cur += (latest - last) & UINT_MAX; \
392 #define UPDATE_VF_STAT_36BIT(lsb, msb, last, cur) \
394 u64 new_lsb = IXGBE_READ_REG(hw, lsb); \
395 u64 new_msb = IXGBE_READ_REG(hw, msb); \
396 u64 latest = ((new_msb << 32) | new_lsb); \
397 cur += (0x1000000000LL + latest - last) & 0xFFFFFFFFFLL; \
401 #define IXGBE_SET_HWSTRIP(h, q) do {\
402 uint32_t idx = (q) / (sizeof((h)->bitmap[0]) * NBBY); \
403 uint32_t bit = (q) % (sizeof((h)->bitmap[0]) * NBBY); \
404 (h)->bitmap[idx] |= 1 << bit;\
407 #define IXGBE_CLEAR_HWSTRIP(h, q) do {\
408 uint32_t idx = (q) / (sizeof((h)->bitmap[0]) * NBBY); \
409 uint32_t bit = (q) % (sizeof((h)->bitmap[0]) * NBBY); \
410 (h)->bitmap[idx] &= ~(1 << bit);\
413 #define IXGBE_GET_HWSTRIP(h, q, r) do {\
414 uint32_t idx = (q) / (sizeof((h)->bitmap[0]) * NBBY); \
415 uint32_t bit = (q) % (sizeof((h)->bitmap[0]) * NBBY); \
416 (r) = (h)->bitmap[idx] >> bit & 1;\
419 int ixgbe_logtype_init;
420 int ixgbe_logtype_driver;
422 #ifdef RTE_LIBRTE_IXGBE_DEBUG_RX
423 int ixgbe_logtype_rx;
425 #ifdef RTE_LIBRTE_IXGBE_DEBUG_TX
426 int ixgbe_logtype_tx;
428 #ifdef RTE_LIBRTE_IXGBE_DEBUG_TX_FREE
429 int ixgbe_logtype_tx_free;
433 * The set of PCI devices this driver supports
435 static const struct rte_pci_id pci_id_ixgbe_map[] = {
436 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598) },
437 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598_BX) },
438 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598AF_DUAL_PORT) },
439 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598AF_SINGLE_PORT) },
440 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598AT) },
441 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598AT2) },
442 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598EB_SFP_LOM) },
443 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598EB_CX4) },
444 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598_CX4_DUAL_PORT) },
445 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598_DA_DUAL_PORT) },
446 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598_SR_DUAL_PORT_EM) },
447 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598EB_XF_LR) },
448 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_KX4) },
449 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_KX4_MEZZ) },
450 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_KR) },
451 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_COMBO_BACKPLANE) },
452 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_CX4) },
453 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_SFP) },
454 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_BACKPLANE_FCOE) },
455 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_SFP_FCOE) },
456 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_SFP_EM) },
457 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_SFP_SF2) },
458 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_SFP_SF_QP) },
459 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_QSFP_SF_QP) },
460 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599EN_SFP) },
461 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_XAUI_LOM) },
462 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_T3_LOM) },
463 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X540T) },
464 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X540T1) },
465 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_X_SFP) },
466 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_X_10G_T) },
467 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_X_1G_T) },
468 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550T) },
469 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550T1) },
470 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_KR) },
471 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_KR_L) },
472 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_SFP_N) },
473 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_SGMII) },
474 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_SGMII_L) },
475 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_10G_T) },
476 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_QSFP) },
477 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_QSFP_N) },
478 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_SFP) },
479 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_1G_T) },
480 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_1G_T_L) },
481 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_X_KX4) },
482 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_X_KR) },
483 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_X_XFI) },
484 #ifdef RTE_LIBRTE_IXGBE_BYPASS
485 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_BYPASS) },
487 { .vendor_id = 0, /* sentinel */ },
491 * The set of PCI devices this driver supports (for 82599 VF)
493 static const struct rte_pci_id pci_id_ixgbevf_map[] = {
494 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_VF) },
495 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_VF_HV) },
496 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X540_VF) },
497 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X540_VF_HV) },
498 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550_VF_HV) },
499 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550_VF) },
500 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_VF) },
501 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_VF_HV) },
502 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_X_VF) },
503 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_X_VF_HV) },
504 { .vendor_id = 0, /* sentinel */ },
507 static const struct rte_eth_desc_lim rx_desc_lim = {
508 .nb_max = IXGBE_MAX_RING_DESC,
509 .nb_min = IXGBE_MIN_RING_DESC,
510 .nb_align = IXGBE_RXD_ALIGN,
513 static const struct rte_eth_desc_lim tx_desc_lim = {
514 .nb_max = IXGBE_MAX_RING_DESC,
515 .nb_min = IXGBE_MIN_RING_DESC,
516 .nb_align = IXGBE_TXD_ALIGN,
517 .nb_seg_max = IXGBE_TX_MAX_SEG,
518 .nb_mtu_seg_max = IXGBE_TX_MAX_SEG,
521 static const struct eth_dev_ops ixgbe_eth_dev_ops = {
522 .dev_configure = ixgbe_dev_configure,
523 .dev_start = ixgbe_dev_start,
524 .dev_stop = ixgbe_dev_stop,
525 .dev_set_link_up = ixgbe_dev_set_link_up,
526 .dev_set_link_down = ixgbe_dev_set_link_down,
527 .dev_close = ixgbe_dev_close,
528 .dev_reset = ixgbe_dev_reset,
529 .promiscuous_enable = ixgbe_dev_promiscuous_enable,
530 .promiscuous_disable = ixgbe_dev_promiscuous_disable,
531 .allmulticast_enable = ixgbe_dev_allmulticast_enable,
532 .allmulticast_disable = ixgbe_dev_allmulticast_disable,
533 .link_update = ixgbe_dev_link_update,
534 .stats_get = ixgbe_dev_stats_get,
535 .xstats_get = ixgbe_dev_xstats_get,
536 .xstats_get_by_id = ixgbe_dev_xstats_get_by_id,
537 .stats_reset = ixgbe_dev_stats_reset,
538 .xstats_reset = ixgbe_dev_xstats_reset,
539 .xstats_get_names = ixgbe_dev_xstats_get_names,
540 .xstats_get_names_by_id = ixgbe_dev_xstats_get_names_by_id,
541 .queue_stats_mapping_set = ixgbe_dev_queue_stats_mapping_set,
542 .fw_version_get = ixgbe_fw_version_get,
543 .dev_infos_get = ixgbe_dev_info_get,
544 .dev_supported_ptypes_get = ixgbe_dev_supported_ptypes_get,
545 .mtu_set = ixgbe_dev_mtu_set,
546 .vlan_filter_set = ixgbe_vlan_filter_set,
547 .vlan_tpid_set = ixgbe_vlan_tpid_set,
548 .vlan_offload_set = ixgbe_vlan_offload_set,
549 .vlan_strip_queue_set = ixgbe_vlan_strip_queue_set,
550 .rx_queue_start = ixgbe_dev_rx_queue_start,
551 .rx_queue_stop = ixgbe_dev_rx_queue_stop,
552 .tx_queue_start = ixgbe_dev_tx_queue_start,
553 .tx_queue_stop = ixgbe_dev_tx_queue_stop,
554 .rx_queue_setup = ixgbe_dev_rx_queue_setup,
555 .rx_queue_intr_enable = ixgbe_dev_rx_queue_intr_enable,
556 .rx_queue_intr_disable = ixgbe_dev_rx_queue_intr_disable,
557 .rx_queue_release = ixgbe_dev_rx_queue_release,
558 .rx_queue_count = ixgbe_dev_rx_queue_count,
559 .rx_descriptor_done = ixgbe_dev_rx_descriptor_done,
560 .rx_descriptor_status = ixgbe_dev_rx_descriptor_status,
561 .tx_descriptor_status = ixgbe_dev_tx_descriptor_status,
562 .tx_queue_setup = ixgbe_dev_tx_queue_setup,
563 .tx_queue_release = ixgbe_dev_tx_queue_release,
564 .dev_led_on = ixgbe_dev_led_on,
565 .dev_led_off = ixgbe_dev_led_off,
566 .flow_ctrl_get = ixgbe_flow_ctrl_get,
567 .flow_ctrl_set = ixgbe_flow_ctrl_set,
568 .priority_flow_ctrl_set = ixgbe_priority_flow_ctrl_set,
569 .mac_addr_add = ixgbe_add_rar,
570 .mac_addr_remove = ixgbe_remove_rar,
571 .mac_addr_set = ixgbe_set_default_mac_addr,
572 .uc_hash_table_set = ixgbe_uc_hash_table_set,
573 .uc_all_hash_table_set = ixgbe_uc_all_hash_table_set,
574 .mirror_rule_set = ixgbe_mirror_rule_set,
575 .mirror_rule_reset = ixgbe_mirror_rule_reset,
576 .set_queue_rate_limit = ixgbe_set_queue_rate_limit,
577 .reta_update = ixgbe_dev_rss_reta_update,
578 .reta_query = ixgbe_dev_rss_reta_query,
579 .rss_hash_update = ixgbe_dev_rss_hash_update,
580 .rss_hash_conf_get = ixgbe_dev_rss_hash_conf_get,
581 .filter_ctrl = ixgbe_dev_filter_ctrl,
582 .set_mc_addr_list = ixgbe_dev_set_mc_addr_list,
583 .rxq_info_get = ixgbe_rxq_info_get,
584 .txq_info_get = ixgbe_txq_info_get,
585 .timesync_enable = ixgbe_timesync_enable,
586 .timesync_disable = ixgbe_timesync_disable,
587 .timesync_read_rx_timestamp = ixgbe_timesync_read_rx_timestamp,
588 .timesync_read_tx_timestamp = ixgbe_timesync_read_tx_timestamp,
589 .get_reg = ixgbe_get_regs,
590 .get_eeprom_length = ixgbe_get_eeprom_length,
591 .get_eeprom = ixgbe_get_eeprom,
592 .set_eeprom = ixgbe_set_eeprom,
593 .get_module_info = ixgbe_get_module_info,
594 .get_module_eeprom = ixgbe_get_module_eeprom,
595 .get_dcb_info = ixgbe_dev_get_dcb_info,
596 .timesync_adjust_time = ixgbe_timesync_adjust_time,
597 .timesync_read_time = ixgbe_timesync_read_time,
598 .timesync_write_time = ixgbe_timesync_write_time,
599 .l2_tunnel_eth_type_conf = ixgbe_dev_l2_tunnel_eth_type_conf,
600 .l2_tunnel_offload_set = ixgbe_dev_l2_tunnel_offload_set,
601 .udp_tunnel_port_add = ixgbe_dev_udp_tunnel_port_add,
602 .udp_tunnel_port_del = ixgbe_dev_udp_tunnel_port_del,
603 .tm_ops_get = ixgbe_tm_ops_get,
607 * dev_ops for virtual function, bare necessities for basic vf
608 * operation have been implemented
610 static const struct eth_dev_ops ixgbevf_eth_dev_ops = {
611 .dev_configure = ixgbevf_dev_configure,
612 .dev_start = ixgbevf_dev_start,
613 .dev_stop = ixgbevf_dev_stop,
614 .link_update = ixgbevf_dev_link_update,
615 .stats_get = ixgbevf_dev_stats_get,
616 .xstats_get = ixgbevf_dev_xstats_get,
617 .stats_reset = ixgbevf_dev_stats_reset,
618 .xstats_reset = ixgbevf_dev_stats_reset,
619 .xstats_get_names = ixgbevf_dev_xstats_get_names,
620 .dev_close = ixgbevf_dev_close,
621 .dev_reset = ixgbevf_dev_reset,
622 .promiscuous_enable = ixgbevf_dev_promiscuous_enable,
623 .promiscuous_disable = ixgbevf_dev_promiscuous_disable,
624 .allmulticast_enable = ixgbevf_dev_allmulticast_enable,
625 .allmulticast_disable = ixgbevf_dev_allmulticast_disable,
626 .dev_infos_get = ixgbevf_dev_info_get,
627 .dev_supported_ptypes_get = ixgbe_dev_supported_ptypes_get,
628 .mtu_set = ixgbevf_dev_set_mtu,
629 .vlan_filter_set = ixgbevf_vlan_filter_set,
630 .vlan_strip_queue_set = ixgbevf_vlan_strip_queue_set,
631 .vlan_offload_set = ixgbevf_vlan_offload_set,
632 .rx_queue_setup = ixgbe_dev_rx_queue_setup,
633 .rx_queue_release = ixgbe_dev_rx_queue_release,
634 .rx_descriptor_done = ixgbe_dev_rx_descriptor_done,
635 .rx_descriptor_status = ixgbe_dev_rx_descriptor_status,
636 .tx_descriptor_status = ixgbe_dev_tx_descriptor_status,
637 .tx_queue_setup = ixgbe_dev_tx_queue_setup,
638 .tx_queue_release = ixgbe_dev_tx_queue_release,
639 .rx_queue_intr_enable = ixgbevf_dev_rx_queue_intr_enable,
640 .rx_queue_intr_disable = ixgbevf_dev_rx_queue_intr_disable,
641 .mac_addr_add = ixgbevf_add_mac_addr,
642 .mac_addr_remove = ixgbevf_remove_mac_addr,
643 .set_mc_addr_list = ixgbe_dev_set_mc_addr_list,
644 .rxq_info_get = ixgbe_rxq_info_get,
645 .txq_info_get = ixgbe_txq_info_get,
646 .mac_addr_set = ixgbevf_set_default_mac_addr,
647 .get_reg = ixgbevf_get_regs,
648 .reta_update = ixgbe_dev_rss_reta_update,
649 .reta_query = ixgbe_dev_rss_reta_query,
650 .rss_hash_update = ixgbe_dev_rss_hash_update,
651 .rss_hash_conf_get = ixgbe_dev_rss_hash_conf_get,
654 /* store statistics names and its offset in stats structure */
655 struct rte_ixgbe_xstats_name_off {
656 char name[RTE_ETH_XSTATS_NAME_SIZE];
660 static const struct rte_ixgbe_xstats_name_off rte_ixgbe_stats_strings[] = {
661 {"rx_crc_errors", offsetof(struct ixgbe_hw_stats, crcerrs)},
662 {"rx_illegal_byte_errors", offsetof(struct ixgbe_hw_stats, illerrc)},
663 {"rx_error_bytes", offsetof(struct ixgbe_hw_stats, errbc)},
664 {"mac_local_errors", offsetof(struct ixgbe_hw_stats, mlfc)},
665 {"mac_remote_errors", offsetof(struct ixgbe_hw_stats, mrfc)},
666 {"rx_length_errors", offsetof(struct ixgbe_hw_stats, rlec)},
667 {"tx_xon_packets", offsetof(struct ixgbe_hw_stats, lxontxc)},
668 {"rx_xon_packets", offsetof(struct ixgbe_hw_stats, lxonrxc)},
669 {"tx_xoff_packets", offsetof(struct ixgbe_hw_stats, lxofftxc)},
670 {"rx_xoff_packets", offsetof(struct ixgbe_hw_stats, lxoffrxc)},
671 {"rx_size_64_packets", offsetof(struct ixgbe_hw_stats, prc64)},
672 {"rx_size_65_to_127_packets", offsetof(struct ixgbe_hw_stats, prc127)},
673 {"rx_size_128_to_255_packets", offsetof(struct ixgbe_hw_stats, prc255)},
674 {"rx_size_256_to_511_packets", offsetof(struct ixgbe_hw_stats, prc511)},
675 {"rx_size_512_to_1023_packets", offsetof(struct ixgbe_hw_stats,
677 {"rx_size_1024_to_max_packets", offsetof(struct ixgbe_hw_stats,
679 {"rx_broadcast_packets", offsetof(struct ixgbe_hw_stats, bprc)},
680 {"rx_multicast_packets", offsetof(struct ixgbe_hw_stats, mprc)},
681 {"rx_fragment_errors", offsetof(struct ixgbe_hw_stats, rfc)},
682 {"rx_undersize_errors", offsetof(struct ixgbe_hw_stats, ruc)},
683 {"rx_oversize_errors", offsetof(struct ixgbe_hw_stats, roc)},
684 {"rx_jabber_errors", offsetof(struct ixgbe_hw_stats, rjc)},
685 {"rx_management_packets", offsetof(struct ixgbe_hw_stats, mngprc)},
686 {"rx_management_dropped", offsetof(struct ixgbe_hw_stats, mngpdc)},
687 {"tx_management_packets", offsetof(struct ixgbe_hw_stats, mngptc)},
688 {"rx_total_packets", offsetof(struct ixgbe_hw_stats, tpr)},
689 {"rx_total_bytes", offsetof(struct ixgbe_hw_stats, tor)},
690 {"tx_total_packets", offsetof(struct ixgbe_hw_stats, tpt)},
691 {"tx_size_64_packets", offsetof(struct ixgbe_hw_stats, ptc64)},
692 {"tx_size_65_to_127_packets", offsetof(struct ixgbe_hw_stats, ptc127)},
693 {"tx_size_128_to_255_packets", offsetof(struct ixgbe_hw_stats, ptc255)},
694 {"tx_size_256_to_511_packets", offsetof(struct ixgbe_hw_stats, ptc511)},
695 {"tx_size_512_to_1023_packets", offsetof(struct ixgbe_hw_stats,
697 {"tx_size_1024_to_max_packets", offsetof(struct ixgbe_hw_stats,
699 {"tx_multicast_packets", offsetof(struct ixgbe_hw_stats, mptc)},
700 {"tx_broadcast_packets", offsetof(struct ixgbe_hw_stats, bptc)},
701 {"rx_mac_short_packet_dropped", offsetof(struct ixgbe_hw_stats, mspdc)},
702 {"rx_l3_l4_xsum_error", offsetof(struct ixgbe_hw_stats, xec)},
704 {"flow_director_added_filters", offsetof(struct ixgbe_hw_stats,
706 {"flow_director_removed_filters", offsetof(struct ixgbe_hw_stats,
708 {"flow_director_filter_add_errors", offsetof(struct ixgbe_hw_stats,
710 {"flow_director_filter_remove_errors", offsetof(struct ixgbe_hw_stats,
712 {"flow_director_matched_filters", offsetof(struct ixgbe_hw_stats,
714 {"flow_director_missed_filters", offsetof(struct ixgbe_hw_stats,
717 {"rx_fcoe_crc_errors", offsetof(struct ixgbe_hw_stats, fccrc)},
718 {"rx_fcoe_dropped", offsetof(struct ixgbe_hw_stats, fcoerpdc)},
719 {"rx_fcoe_mbuf_allocation_errors", offsetof(struct ixgbe_hw_stats,
721 {"rx_fcoe_packets", offsetof(struct ixgbe_hw_stats, fcoeprc)},
722 {"tx_fcoe_packets", offsetof(struct ixgbe_hw_stats, fcoeptc)},
723 {"rx_fcoe_bytes", offsetof(struct ixgbe_hw_stats, fcoedwrc)},
724 {"tx_fcoe_bytes", offsetof(struct ixgbe_hw_stats, fcoedwtc)},
725 {"rx_fcoe_no_direct_data_placement", offsetof(struct ixgbe_hw_stats,
727 {"rx_fcoe_no_direct_data_placement_ext_buff",
728 offsetof(struct ixgbe_hw_stats, fcoe_noddp_ext_buff)},
730 {"tx_flow_control_xon_packets", offsetof(struct ixgbe_hw_stats,
732 {"rx_flow_control_xon_packets", offsetof(struct ixgbe_hw_stats,
734 {"tx_flow_control_xoff_packets", offsetof(struct ixgbe_hw_stats,
736 {"rx_flow_control_xoff_packets", offsetof(struct ixgbe_hw_stats,
738 {"rx_total_missed_packets", offsetof(struct ixgbe_hw_stats, mpctotal)},
741 #define IXGBE_NB_HW_STATS (sizeof(rte_ixgbe_stats_strings) / \
742 sizeof(rte_ixgbe_stats_strings[0]))
744 /* MACsec statistics */
745 static const struct rte_ixgbe_xstats_name_off rte_ixgbe_macsec_strings[] = {
746 {"out_pkts_untagged", offsetof(struct ixgbe_macsec_stats,
748 {"out_pkts_encrypted", offsetof(struct ixgbe_macsec_stats,
749 out_pkts_encrypted)},
750 {"out_pkts_protected", offsetof(struct ixgbe_macsec_stats,
751 out_pkts_protected)},
752 {"out_octets_encrypted", offsetof(struct ixgbe_macsec_stats,
753 out_octets_encrypted)},
754 {"out_octets_protected", offsetof(struct ixgbe_macsec_stats,
755 out_octets_protected)},
756 {"in_pkts_untagged", offsetof(struct ixgbe_macsec_stats,
758 {"in_pkts_badtag", offsetof(struct ixgbe_macsec_stats,
760 {"in_pkts_nosci", offsetof(struct ixgbe_macsec_stats,
762 {"in_pkts_unknownsci", offsetof(struct ixgbe_macsec_stats,
763 in_pkts_unknownsci)},
764 {"in_octets_decrypted", offsetof(struct ixgbe_macsec_stats,
765 in_octets_decrypted)},
766 {"in_octets_validated", offsetof(struct ixgbe_macsec_stats,
767 in_octets_validated)},
768 {"in_pkts_unchecked", offsetof(struct ixgbe_macsec_stats,
770 {"in_pkts_delayed", offsetof(struct ixgbe_macsec_stats,
772 {"in_pkts_late", offsetof(struct ixgbe_macsec_stats,
774 {"in_pkts_ok", offsetof(struct ixgbe_macsec_stats,
776 {"in_pkts_invalid", offsetof(struct ixgbe_macsec_stats,
778 {"in_pkts_notvalid", offsetof(struct ixgbe_macsec_stats,
780 {"in_pkts_unusedsa", offsetof(struct ixgbe_macsec_stats,
782 {"in_pkts_notusingsa", offsetof(struct ixgbe_macsec_stats,
783 in_pkts_notusingsa)},
786 #define IXGBE_NB_MACSEC_STATS (sizeof(rte_ixgbe_macsec_strings) / \
787 sizeof(rte_ixgbe_macsec_strings[0]))
789 /* Per-queue statistics */
790 static const struct rte_ixgbe_xstats_name_off rte_ixgbe_rxq_strings[] = {
791 {"mbuf_allocation_errors", offsetof(struct ixgbe_hw_stats, rnbc)},
792 {"dropped", offsetof(struct ixgbe_hw_stats, mpc)},
793 {"xon_packets", offsetof(struct ixgbe_hw_stats, pxonrxc)},
794 {"xoff_packets", offsetof(struct ixgbe_hw_stats, pxoffrxc)},
797 #define IXGBE_NB_RXQ_PRIO_STATS (sizeof(rte_ixgbe_rxq_strings) / \
798 sizeof(rte_ixgbe_rxq_strings[0]))
799 #define IXGBE_NB_RXQ_PRIO_VALUES 8
801 static const struct rte_ixgbe_xstats_name_off rte_ixgbe_txq_strings[] = {
802 {"xon_packets", offsetof(struct ixgbe_hw_stats, pxontxc)},
803 {"xoff_packets", offsetof(struct ixgbe_hw_stats, pxofftxc)},
804 {"xon_to_xoff_packets", offsetof(struct ixgbe_hw_stats,
808 #define IXGBE_NB_TXQ_PRIO_STATS (sizeof(rte_ixgbe_txq_strings) / \
809 sizeof(rte_ixgbe_txq_strings[0]))
810 #define IXGBE_NB_TXQ_PRIO_VALUES 8
812 static const struct rte_ixgbe_xstats_name_off rte_ixgbevf_stats_strings[] = {
813 {"rx_multicast_packets", offsetof(struct ixgbevf_hw_stats, vfmprc)},
816 #define IXGBEVF_NB_XSTATS (sizeof(rte_ixgbevf_stats_strings) / \
817 sizeof(rte_ixgbevf_stats_strings[0]))
820 * This function is the same as ixgbe_is_sfp() in base/ixgbe.h.
823 ixgbe_is_sfp(struct ixgbe_hw *hw)
825 switch (hw->phy.type) {
826 case ixgbe_phy_sfp_avago:
827 case ixgbe_phy_sfp_ftl:
828 case ixgbe_phy_sfp_intel:
829 case ixgbe_phy_sfp_unknown:
830 case ixgbe_phy_sfp_passive_tyco:
831 case ixgbe_phy_sfp_passive_unknown:
838 static inline int32_t
839 ixgbe_pf_reset_hw(struct ixgbe_hw *hw)
844 status = ixgbe_reset_hw(hw);
846 ctrl_ext = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT);
847 /* Set PF Reset Done bit so PF/VF Mail Ops can work */
848 ctrl_ext |= IXGBE_CTRL_EXT_PFRSTD;
849 IXGBE_WRITE_REG(hw, IXGBE_CTRL_EXT, ctrl_ext);
850 IXGBE_WRITE_FLUSH(hw);
852 if (status == IXGBE_ERR_SFP_NOT_PRESENT)
853 status = IXGBE_SUCCESS;
858 ixgbe_enable_intr(struct rte_eth_dev *dev)
860 struct ixgbe_interrupt *intr =
861 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
862 struct ixgbe_hw *hw =
863 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
865 IXGBE_WRITE_REG(hw, IXGBE_EIMS, intr->mask);
866 IXGBE_WRITE_FLUSH(hw);
870 * This function is based on ixgbe_disable_intr() in base/ixgbe.h.
873 ixgbe_disable_intr(struct ixgbe_hw *hw)
875 PMD_INIT_FUNC_TRACE();
877 if (hw->mac.type == ixgbe_mac_82598EB) {
878 IXGBE_WRITE_REG(hw, IXGBE_EIMC, ~0);
880 IXGBE_WRITE_REG(hw, IXGBE_EIMC, 0xFFFF0000);
881 IXGBE_WRITE_REG(hw, IXGBE_EIMC_EX(0), ~0);
882 IXGBE_WRITE_REG(hw, IXGBE_EIMC_EX(1), ~0);
884 IXGBE_WRITE_FLUSH(hw);
888 * This function resets queue statistics mapping registers.
889 * From Niantic datasheet, Initialization of Statistics section:
890 * "...if software requires the queue counters, the RQSMR and TQSM registers
891 * must be re-programmed following a device reset.
894 ixgbe_reset_qstat_mappings(struct ixgbe_hw *hw)
898 for (i = 0; i != IXGBE_NB_STAT_MAPPING_REGS; i++) {
899 IXGBE_WRITE_REG(hw, IXGBE_RQSMR(i), 0);
900 IXGBE_WRITE_REG(hw, IXGBE_TQSM(i), 0);
906 ixgbe_dev_queue_stats_mapping_set(struct rte_eth_dev *eth_dev,
911 #define QSM_REG_NB_BITS_PER_QMAP_FIELD 8
912 #define NB_QMAP_FIELDS_PER_QSM_REG 4
913 #define QMAP_FIELD_RESERVED_BITS_MASK 0x0f
915 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(eth_dev->data->dev_private);
916 struct ixgbe_stat_mapping_registers *stat_mappings =
917 IXGBE_DEV_PRIVATE_TO_STAT_MAPPINGS(eth_dev->data->dev_private);
918 uint32_t qsmr_mask = 0;
919 uint32_t clearing_mask = QMAP_FIELD_RESERVED_BITS_MASK;
923 if ((hw->mac.type != ixgbe_mac_82599EB) &&
924 (hw->mac.type != ixgbe_mac_X540) &&
925 (hw->mac.type != ixgbe_mac_X550) &&
926 (hw->mac.type != ixgbe_mac_X550EM_x) &&
927 (hw->mac.type != ixgbe_mac_X550EM_a))
930 PMD_INIT_LOG(DEBUG, "Setting port %d, %s queue_id %d to stat index %d",
931 (int)(eth_dev->data->port_id), is_rx ? "RX" : "TX",
934 n = (uint8_t)(queue_id / NB_QMAP_FIELDS_PER_QSM_REG);
935 if (n >= IXGBE_NB_STAT_MAPPING_REGS) {
936 PMD_INIT_LOG(ERR, "Nb of stat mapping registers exceeded");
939 offset = (uint8_t)(queue_id % NB_QMAP_FIELDS_PER_QSM_REG);
941 /* Now clear any previous stat_idx set */
942 clearing_mask <<= (QSM_REG_NB_BITS_PER_QMAP_FIELD * offset);
944 stat_mappings->tqsm[n] &= ~clearing_mask;
946 stat_mappings->rqsmr[n] &= ~clearing_mask;
948 q_map = (uint32_t)stat_idx;
949 q_map &= QMAP_FIELD_RESERVED_BITS_MASK;
950 qsmr_mask = q_map << (QSM_REG_NB_BITS_PER_QMAP_FIELD * offset);
952 stat_mappings->tqsm[n] |= qsmr_mask;
954 stat_mappings->rqsmr[n] |= qsmr_mask;
956 PMD_INIT_LOG(DEBUG, "Set port %d, %s queue_id %d to stat index %d",
957 (int)(eth_dev->data->port_id), is_rx ? "RX" : "TX",
959 PMD_INIT_LOG(DEBUG, "%s[%d] = 0x%08x", is_rx ? "RQSMR" : "TQSM", n,
960 is_rx ? stat_mappings->rqsmr[n] : stat_mappings->tqsm[n]);
962 /* Now write the mapping in the appropriate register */
964 PMD_INIT_LOG(DEBUG, "Write 0x%x to RX IXGBE stat mapping reg:%d",
965 stat_mappings->rqsmr[n], n);
966 IXGBE_WRITE_REG(hw, IXGBE_RQSMR(n), stat_mappings->rqsmr[n]);
968 PMD_INIT_LOG(DEBUG, "Write 0x%x to TX IXGBE stat mapping reg:%d",
969 stat_mappings->tqsm[n], n);
970 IXGBE_WRITE_REG(hw, IXGBE_TQSM(n), stat_mappings->tqsm[n]);
976 ixgbe_restore_statistics_mapping(struct rte_eth_dev *dev)
978 struct ixgbe_stat_mapping_registers *stat_mappings =
979 IXGBE_DEV_PRIVATE_TO_STAT_MAPPINGS(dev->data->dev_private);
980 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
983 /* write whatever was in stat mapping table to the NIC */
984 for (i = 0; i < IXGBE_NB_STAT_MAPPING_REGS; i++) {
986 IXGBE_WRITE_REG(hw, IXGBE_RQSMR(i), stat_mappings->rqsmr[i]);
989 IXGBE_WRITE_REG(hw, IXGBE_TQSM(i), stat_mappings->tqsm[i]);
994 ixgbe_dcb_init(struct ixgbe_hw *hw, struct ixgbe_dcb_config *dcb_config)
997 struct ixgbe_dcb_tc_config *tc;
998 uint8_t dcb_max_tc = IXGBE_DCB_MAX_TRAFFIC_CLASS;
1000 dcb_config->num_tcs.pg_tcs = dcb_max_tc;
1001 dcb_config->num_tcs.pfc_tcs = dcb_max_tc;
1002 for (i = 0; i < dcb_max_tc; i++) {
1003 tc = &dcb_config->tc_config[i];
1004 tc->path[IXGBE_DCB_TX_CONFIG].bwg_id = i;
1005 tc->path[IXGBE_DCB_TX_CONFIG].bwg_percent =
1006 (uint8_t)(100/dcb_max_tc + (i & 1));
1007 tc->path[IXGBE_DCB_RX_CONFIG].bwg_id = i;
1008 tc->path[IXGBE_DCB_RX_CONFIG].bwg_percent =
1009 (uint8_t)(100/dcb_max_tc + (i & 1));
1010 tc->pfc = ixgbe_dcb_pfc_disabled;
1013 /* Initialize default user to priority mapping, UPx->TC0 */
1014 tc = &dcb_config->tc_config[0];
1015 tc->path[IXGBE_DCB_TX_CONFIG].up_to_tc_bitmap = 0xFF;
1016 tc->path[IXGBE_DCB_RX_CONFIG].up_to_tc_bitmap = 0xFF;
1017 for (i = 0; i < IXGBE_DCB_MAX_BW_GROUP; i++) {
1018 dcb_config->bw_percentage[IXGBE_DCB_TX_CONFIG][i] = 100;
1019 dcb_config->bw_percentage[IXGBE_DCB_RX_CONFIG][i] = 100;
1021 dcb_config->rx_pba_cfg = ixgbe_dcb_pba_equal;
1022 dcb_config->pfc_mode_enable = false;
1023 dcb_config->vt_mode = true;
1024 dcb_config->round_robin_enable = false;
1025 /* support all DCB capabilities in 82599 */
1026 dcb_config->support.capabilities = 0xFF;
1028 /*we only support 4 Tcs for X540, X550 */
1029 if (hw->mac.type == ixgbe_mac_X540 ||
1030 hw->mac.type == ixgbe_mac_X550 ||
1031 hw->mac.type == ixgbe_mac_X550EM_x ||
1032 hw->mac.type == ixgbe_mac_X550EM_a) {
1033 dcb_config->num_tcs.pg_tcs = 4;
1034 dcb_config->num_tcs.pfc_tcs = 4;
1039 * Ensure that all locks are released before first NVM or PHY access
1042 ixgbe_swfw_lock_reset(struct ixgbe_hw *hw)
1047 * Phy lock should not fail in this early stage. If this is the case,
1048 * it is due to an improper exit of the application.
1049 * So force the release of the faulty lock. Release of common lock
1050 * is done automatically by swfw_sync function.
1052 mask = IXGBE_GSSR_PHY0_SM << hw->bus.func;
1053 if (ixgbe_acquire_swfw_semaphore(hw, mask) < 0) {
1054 PMD_DRV_LOG(DEBUG, "SWFW phy%d lock released", hw->bus.func);
1056 ixgbe_release_swfw_semaphore(hw, mask);
1059 * These ones are more tricky since they are common to all ports; but
1060 * swfw_sync retries last long enough (1s) to be almost sure that if
1061 * lock can not be taken it is due to an improper lock of the
1064 mask = IXGBE_GSSR_EEP_SM | IXGBE_GSSR_MAC_CSR_SM | IXGBE_GSSR_SW_MNG_SM;
1065 if (ixgbe_acquire_swfw_semaphore(hw, mask) < 0) {
1066 PMD_DRV_LOG(DEBUG, "SWFW common locks released");
1068 ixgbe_release_swfw_semaphore(hw, mask);
1072 * This function is based on code in ixgbe_attach() in base/ixgbe.c.
1073 * It returns 0 on success.
1076 eth_ixgbe_dev_init(struct rte_eth_dev *eth_dev, void *init_params __rte_unused)
1078 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(eth_dev);
1079 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
1080 struct ixgbe_hw *hw =
1081 IXGBE_DEV_PRIVATE_TO_HW(eth_dev->data->dev_private);
1082 struct ixgbe_vfta *shadow_vfta =
1083 IXGBE_DEV_PRIVATE_TO_VFTA(eth_dev->data->dev_private);
1084 struct ixgbe_hwstrip *hwstrip =
1085 IXGBE_DEV_PRIVATE_TO_HWSTRIP_BITMAP(eth_dev->data->dev_private);
1086 struct ixgbe_dcb_config *dcb_config =
1087 IXGBE_DEV_PRIVATE_TO_DCB_CFG(eth_dev->data->dev_private);
1088 struct ixgbe_filter_info *filter_info =
1089 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(eth_dev->data->dev_private);
1090 struct ixgbe_bw_conf *bw_conf =
1091 IXGBE_DEV_PRIVATE_TO_BW_CONF(eth_dev->data->dev_private);
1096 PMD_INIT_FUNC_TRACE();
1098 eth_dev->dev_ops = &ixgbe_eth_dev_ops;
1099 eth_dev->rx_pkt_burst = &ixgbe_recv_pkts;
1100 eth_dev->tx_pkt_burst = &ixgbe_xmit_pkts;
1101 eth_dev->tx_pkt_prepare = &ixgbe_prep_pkts;
1104 * For secondary processes, we don't initialise any further as primary
1105 * has already done this work. Only check we don't need a different
1106 * RX and TX function.
1108 if (rte_eal_process_type() != RTE_PROC_PRIMARY) {
1109 struct ixgbe_tx_queue *txq;
1110 /* TX queue function in primary, set by last queue initialized
1111 * Tx queue may not initialized by primary process
1113 if (eth_dev->data->tx_queues) {
1114 txq = eth_dev->data->tx_queues[eth_dev->data->nb_tx_queues-1];
1115 ixgbe_set_tx_function(eth_dev, txq);
1117 /* Use default TX function if we get here */
1118 PMD_INIT_LOG(NOTICE, "No TX queues configured yet. "
1119 "Using default TX function.");
1122 ixgbe_set_rx_function(eth_dev);
1127 rte_eth_copy_pci_info(eth_dev, pci_dev);
1129 /* Vendor and Device ID need to be set before init of shared code */
1130 hw->device_id = pci_dev->id.device_id;
1131 hw->vendor_id = pci_dev->id.vendor_id;
1132 hw->hw_addr = (void *)pci_dev->mem_resource[0].addr;
1133 hw->allow_unsupported_sfp = 1;
1135 /* Initialize the shared code (base driver) */
1136 #ifdef RTE_LIBRTE_IXGBE_BYPASS
1137 diag = ixgbe_bypass_init_shared_code(hw);
1139 diag = ixgbe_init_shared_code(hw);
1140 #endif /* RTE_LIBRTE_IXGBE_BYPASS */
1142 if (diag != IXGBE_SUCCESS) {
1143 PMD_INIT_LOG(ERR, "Shared code init failed: %d", diag);
1147 if (hw->mac.ops.fw_recovery_mode && hw->mac.ops.fw_recovery_mode(hw)) {
1148 PMD_INIT_LOG(ERR, "\nERROR: "
1149 "Firmware recovery mode detected. Limiting functionality.\n"
1150 "Refer to the Intel(R) Ethernet Adapters and Devices "
1151 "User Guide for details on firmware recovery mode.");
1155 /* pick up the PCI bus settings for reporting later */
1156 ixgbe_get_bus_info(hw);
1158 /* Unlock any pending hardware semaphore */
1159 ixgbe_swfw_lock_reset(hw);
1161 #ifdef RTE_LIBRTE_SECURITY
1162 /* Initialize security_ctx only for primary process*/
1163 if (ixgbe_ipsec_ctx_create(eth_dev))
1167 /* Initialize DCB configuration*/
1168 memset(dcb_config, 0, sizeof(struct ixgbe_dcb_config));
1169 ixgbe_dcb_init(hw, dcb_config);
1170 /* Get Hardware Flow Control setting */
1171 hw->fc.requested_mode = ixgbe_fc_full;
1172 hw->fc.current_mode = ixgbe_fc_full;
1173 hw->fc.pause_time = IXGBE_FC_PAUSE;
1174 for (i = 0; i < IXGBE_DCB_MAX_TRAFFIC_CLASS; i++) {
1175 hw->fc.low_water[i] = IXGBE_FC_LO;
1176 hw->fc.high_water[i] = IXGBE_FC_HI;
1178 hw->fc.send_xon = 1;
1180 /* Make sure we have a good EEPROM before we read from it */
1181 diag = ixgbe_validate_eeprom_checksum(hw, &csum);
1182 if (diag != IXGBE_SUCCESS) {
1183 PMD_INIT_LOG(ERR, "The EEPROM checksum is not valid: %d", diag);
1187 #ifdef RTE_LIBRTE_IXGBE_BYPASS
1188 diag = ixgbe_bypass_init_hw(hw);
1190 diag = ixgbe_init_hw(hw);
1191 #endif /* RTE_LIBRTE_IXGBE_BYPASS */
1194 * Devices with copper phys will fail to initialise if ixgbe_init_hw()
1195 * is called too soon after the kernel driver unbinding/binding occurs.
1196 * The failure occurs in ixgbe_identify_phy_generic() for all devices,
1197 * but for non-copper devies, ixgbe_identify_sfp_module_generic() is
1198 * also called. See ixgbe_identify_phy_82599(). The reason for the
1199 * failure is not known, and only occuts when virtualisation features
1200 * are disabled in the bios. A delay of 100ms was found to be enough by
1201 * trial-and-error, and is doubled to be safe.
1203 if (diag && (hw->mac.ops.get_media_type(hw) == ixgbe_media_type_copper)) {
1205 diag = ixgbe_init_hw(hw);
1208 if (diag == IXGBE_ERR_SFP_NOT_PRESENT)
1209 diag = IXGBE_SUCCESS;
1211 if (diag == IXGBE_ERR_EEPROM_VERSION) {
1212 PMD_INIT_LOG(ERR, "This device is a pre-production adapter/"
1213 "LOM. Please be aware there may be issues associated "
1214 "with your hardware.");
1215 PMD_INIT_LOG(ERR, "If you are experiencing problems "
1216 "please contact your Intel or hardware representative "
1217 "who provided you with this hardware.");
1218 } else if (diag == IXGBE_ERR_SFP_NOT_SUPPORTED)
1219 PMD_INIT_LOG(ERR, "Unsupported SFP+ Module");
1221 PMD_INIT_LOG(ERR, "Hardware Initialization Failure: %d", diag);
1225 /* Reset the hw statistics */
1226 ixgbe_dev_stats_reset(eth_dev);
1228 /* disable interrupt */
1229 ixgbe_disable_intr(hw);
1231 /* reset mappings for queue statistics hw counters*/
1232 ixgbe_reset_qstat_mappings(hw);
1234 /* Allocate memory for storing MAC addresses */
1235 eth_dev->data->mac_addrs = rte_zmalloc("ixgbe", RTE_ETHER_ADDR_LEN *
1236 hw->mac.num_rar_entries, 0);
1237 if (eth_dev->data->mac_addrs == NULL) {
1239 "Failed to allocate %u bytes needed to store "
1241 RTE_ETHER_ADDR_LEN * hw->mac.num_rar_entries);
1244 /* Copy the permanent MAC address */
1245 rte_ether_addr_copy((struct rte_ether_addr *)hw->mac.perm_addr,
1246 ð_dev->data->mac_addrs[0]);
1248 /* Allocate memory for storing hash filter MAC addresses */
1249 eth_dev->data->hash_mac_addrs = rte_zmalloc(
1250 "ixgbe", RTE_ETHER_ADDR_LEN * IXGBE_VMDQ_NUM_UC_MAC, 0);
1251 if (eth_dev->data->hash_mac_addrs == NULL) {
1253 "Failed to allocate %d bytes needed to store MAC addresses",
1254 RTE_ETHER_ADDR_LEN * IXGBE_VMDQ_NUM_UC_MAC);
1258 /* Pass the information to the rte_eth_dev_close() that it should also
1259 * release the private port resources.
1261 eth_dev->data->dev_flags |= RTE_ETH_DEV_CLOSE_REMOVE;
1263 /* initialize the vfta */
1264 memset(shadow_vfta, 0, sizeof(*shadow_vfta));
1266 /* initialize the hw strip bitmap*/
1267 memset(hwstrip, 0, sizeof(*hwstrip));
1269 /* initialize PF if max_vfs not zero */
1270 ixgbe_pf_host_init(eth_dev);
1272 ctrl_ext = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT);
1273 /* let hardware know driver is loaded */
1274 ctrl_ext |= IXGBE_CTRL_EXT_DRV_LOAD;
1275 /* Set PF Reset Done bit so PF/VF Mail Ops can work */
1276 ctrl_ext |= IXGBE_CTRL_EXT_PFRSTD;
1277 IXGBE_WRITE_REG(hw, IXGBE_CTRL_EXT, ctrl_ext);
1278 IXGBE_WRITE_FLUSH(hw);
1280 if (ixgbe_is_sfp(hw) && hw->phy.sfp_type != ixgbe_sfp_type_not_present)
1281 PMD_INIT_LOG(DEBUG, "MAC: %d, PHY: %d, SFP+: %d",
1282 (int) hw->mac.type, (int) hw->phy.type,
1283 (int) hw->phy.sfp_type);
1285 PMD_INIT_LOG(DEBUG, "MAC: %d, PHY: %d",
1286 (int) hw->mac.type, (int) hw->phy.type);
1288 PMD_INIT_LOG(DEBUG, "port %d vendorID=0x%x deviceID=0x%x",
1289 eth_dev->data->port_id, pci_dev->id.vendor_id,
1290 pci_dev->id.device_id);
1292 rte_intr_callback_register(intr_handle,
1293 ixgbe_dev_interrupt_handler, eth_dev);
1295 /* enable uio/vfio intr/eventfd mapping */
1296 rte_intr_enable(intr_handle);
1298 /* enable support intr */
1299 ixgbe_enable_intr(eth_dev);
1301 /* initialize filter info */
1302 memset(filter_info, 0,
1303 sizeof(struct ixgbe_filter_info));
1305 /* initialize 5tuple filter list */
1306 TAILQ_INIT(&filter_info->fivetuple_list);
1308 /* initialize flow director filter list & hash */
1309 ixgbe_fdir_filter_init(eth_dev);
1311 /* initialize l2 tunnel filter list & hash */
1312 ixgbe_l2_tn_filter_init(eth_dev);
1314 /* initialize flow filter lists */
1315 ixgbe_filterlist_init();
1317 /* initialize bandwidth configuration info */
1318 memset(bw_conf, 0, sizeof(struct ixgbe_bw_conf));
1320 /* initialize Traffic Manager configuration */
1321 ixgbe_tm_conf_init(eth_dev);
1327 eth_ixgbe_dev_uninit(struct rte_eth_dev *eth_dev)
1329 PMD_INIT_FUNC_TRACE();
1331 if (rte_eal_process_type() != RTE_PROC_PRIMARY)
1334 ixgbe_dev_close(eth_dev);
1339 static int ixgbe_ntuple_filter_uninit(struct rte_eth_dev *eth_dev)
1341 struct ixgbe_filter_info *filter_info =
1342 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(eth_dev->data->dev_private);
1343 struct ixgbe_5tuple_filter *p_5tuple;
1345 while ((p_5tuple = TAILQ_FIRST(&filter_info->fivetuple_list))) {
1346 TAILQ_REMOVE(&filter_info->fivetuple_list,
1351 memset(filter_info->fivetuple_mask, 0,
1352 sizeof(uint32_t) * IXGBE_5TUPLE_ARRAY_SIZE);
1357 static int ixgbe_fdir_filter_uninit(struct rte_eth_dev *eth_dev)
1359 struct ixgbe_hw_fdir_info *fdir_info =
1360 IXGBE_DEV_PRIVATE_TO_FDIR_INFO(eth_dev->data->dev_private);
1361 struct ixgbe_fdir_filter *fdir_filter;
1363 if (fdir_info->hash_map)
1364 rte_free(fdir_info->hash_map);
1365 if (fdir_info->hash_handle)
1366 rte_hash_free(fdir_info->hash_handle);
1368 while ((fdir_filter = TAILQ_FIRST(&fdir_info->fdir_list))) {
1369 TAILQ_REMOVE(&fdir_info->fdir_list,
1372 rte_free(fdir_filter);
1378 static int ixgbe_l2_tn_filter_uninit(struct rte_eth_dev *eth_dev)
1380 struct ixgbe_l2_tn_info *l2_tn_info =
1381 IXGBE_DEV_PRIVATE_TO_L2_TN_INFO(eth_dev->data->dev_private);
1382 struct ixgbe_l2_tn_filter *l2_tn_filter;
1384 if (l2_tn_info->hash_map)
1385 rte_free(l2_tn_info->hash_map);
1386 if (l2_tn_info->hash_handle)
1387 rte_hash_free(l2_tn_info->hash_handle);
1389 while ((l2_tn_filter = TAILQ_FIRST(&l2_tn_info->l2_tn_list))) {
1390 TAILQ_REMOVE(&l2_tn_info->l2_tn_list,
1393 rte_free(l2_tn_filter);
1399 static int ixgbe_fdir_filter_init(struct rte_eth_dev *eth_dev)
1401 struct ixgbe_hw_fdir_info *fdir_info =
1402 IXGBE_DEV_PRIVATE_TO_FDIR_INFO(eth_dev->data->dev_private);
1403 char fdir_hash_name[RTE_HASH_NAMESIZE];
1404 struct rte_hash_parameters fdir_hash_params = {
1405 .name = fdir_hash_name,
1406 .entries = IXGBE_MAX_FDIR_FILTER_NUM,
1407 .key_len = sizeof(union ixgbe_atr_input),
1408 .hash_func = rte_hash_crc,
1409 .hash_func_init_val = 0,
1410 .socket_id = rte_socket_id(),
1413 TAILQ_INIT(&fdir_info->fdir_list);
1414 snprintf(fdir_hash_name, RTE_HASH_NAMESIZE,
1415 "fdir_%s", eth_dev->device->name);
1416 fdir_info->hash_handle = rte_hash_create(&fdir_hash_params);
1417 if (!fdir_info->hash_handle) {
1418 PMD_INIT_LOG(ERR, "Failed to create fdir hash table!");
1421 fdir_info->hash_map = rte_zmalloc("ixgbe",
1422 sizeof(struct ixgbe_fdir_filter *) *
1423 IXGBE_MAX_FDIR_FILTER_NUM,
1425 if (!fdir_info->hash_map) {
1427 "Failed to allocate memory for fdir hash map!");
1430 fdir_info->mask_added = FALSE;
1435 static int ixgbe_l2_tn_filter_init(struct rte_eth_dev *eth_dev)
1437 struct ixgbe_l2_tn_info *l2_tn_info =
1438 IXGBE_DEV_PRIVATE_TO_L2_TN_INFO(eth_dev->data->dev_private);
1439 char l2_tn_hash_name[RTE_HASH_NAMESIZE];
1440 struct rte_hash_parameters l2_tn_hash_params = {
1441 .name = l2_tn_hash_name,
1442 .entries = IXGBE_MAX_L2_TN_FILTER_NUM,
1443 .key_len = sizeof(struct ixgbe_l2_tn_key),
1444 .hash_func = rte_hash_crc,
1445 .hash_func_init_val = 0,
1446 .socket_id = rte_socket_id(),
1449 TAILQ_INIT(&l2_tn_info->l2_tn_list);
1450 snprintf(l2_tn_hash_name, RTE_HASH_NAMESIZE,
1451 "l2_tn_%s", eth_dev->device->name);
1452 l2_tn_info->hash_handle = rte_hash_create(&l2_tn_hash_params);
1453 if (!l2_tn_info->hash_handle) {
1454 PMD_INIT_LOG(ERR, "Failed to create L2 TN hash table!");
1457 l2_tn_info->hash_map = rte_zmalloc("ixgbe",
1458 sizeof(struct ixgbe_l2_tn_filter *) *
1459 IXGBE_MAX_L2_TN_FILTER_NUM,
1461 if (!l2_tn_info->hash_map) {
1463 "Failed to allocate memory for L2 TN hash map!");
1466 l2_tn_info->e_tag_en = FALSE;
1467 l2_tn_info->e_tag_fwd_en = FALSE;
1468 l2_tn_info->e_tag_ether_type = RTE_ETHER_TYPE_ETAG;
1473 * Negotiate mailbox API version with the PF.
1474 * After reset API version is always set to the basic one (ixgbe_mbox_api_10).
1475 * Then we try to negotiate starting with the most recent one.
1476 * If all negotiation attempts fail, then we will proceed with
1477 * the default one (ixgbe_mbox_api_10).
1480 ixgbevf_negotiate_api(struct ixgbe_hw *hw)
1484 /* start with highest supported, proceed down */
1485 static const enum ixgbe_pfvf_api_rev sup_ver[] = {
1493 i != RTE_DIM(sup_ver) &&
1494 ixgbevf_negotiate_api_version(hw, sup_ver[i]) != 0;
1500 generate_random_mac_addr(struct rte_ether_addr *mac_addr)
1504 /* Set Organizationally Unique Identifier (OUI) prefix. */
1505 mac_addr->addr_bytes[0] = 0x00;
1506 mac_addr->addr_bytes[1] = 0x09;
1507 mac_addr->addr_bytes[2] = 0xC0;
1508 /* Force indication of locally assigned MAC address. */
1509 mac_addr->addr_bytes[0] |= RTE_ETHER_LOCAL_ADMIN_ADDR;
1510 /* Generate the last 3 bytes of the MAC address with a random number. */
1511 random = rte_rand();
1512 memcpy(&mac_addr->addr_bytes[3], &random, 3);
1516 devarg_handle_int(__rte_unused const char *key, const char *value,
1519 uint16_t *n = extra_args;
1521 if (value == NULL || extra_args == NULL)
1524 *n = (uint16_t)strtoul(value, NULL, 0);
1525 if (*n == USHRT_MAX && errno == ERANGE)
1532 ixgbevf_parse_devargs(struct ixgbe_adapter *adapter,
1533 struct rte_devargs *devargs)
1535 struct rte_kvargs *kvlist;
1536 uint16_t pflink_fullchk;
1538 if (devargs == NULL)
1541 kvlist = rte_kvargs_parse(devargs->args, ixgbevf_valid_arguments);
1545 if (rte_kvargs_count(kvlist, IXGBEVF_DEVARG_PFLINK_FULLCHK) == 1 &&
1546 rte_kvargs_process(kvlist, IXGBEVF_DEVARG_PFLINK_FULLCHK,
1547 devarg_handle_int, &pflink_fullchk) == 0 &&
1548 pflink_fullchk == 1)
1549 adapter->pflink_fullchk = 1;
1551 rte_kvargs_free(kvlist);
1555 * Virtual Function device init
1558 eth_ixgbevf_dev_init(struct rte_eth_dev *eth_dev)
1562 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(eth_dev);
1563 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
1564 struct ixgbe_hw *hw =
1565 IXGBE_DEV_PRIVATE_TO_HW(eth_dev->data->dev_private);
1566 struct ixgbe_vfta *shadow_vfta =
1567 IXGBE_DEV_PRIVATE_TO_VFTA(eth_dev->data->dev_private);
1568 struct ixgbe_hwstrip *hwstrip =
1569 IXGBE_DEV_PRIVATE_TO_HWSTRIP_BITMAP(eth_dev->data->dev_private);
1570 struct rte_ether_addr *perm_addr =
1571 (struct rte_ether_addr *)hw->mac.perm_addr;
1573 PMD_INIT_FUNC_TRACE();
1575 eth_dev->dev_ops = &ixgbevf_eth_dev_ops;
1576 eth_dev->rx_pkt_burst = &ixgbe_recv_pkts;
1577 eth_dev->tx_pkt_burst = &ixgbe_xmit_pkts;
1579 /* for secondary processes, we don't initialise any further as primary
1580 * has already done this work. Only check we don't need a different
1583 if (rte_eal_process_type() != RTE_PROC_PRIMARY) {
1584 struct ixgbe_tx_queue *txq;
1585 /* TX queue function in primary, set by last queue initialized
1586 * Tx queue may not initialized by primary process
1588 if (eth_dev->data->tx_queues) {
1589 txq = eth_dev->data->tx_queues[eth_dev->data->nb_tx_queues - 1];
1590 ixgbe_set_tx_function(eth_dev, txq);
1592 /* Use default TX function if we get here */
1593 PMD_INIT_LOG(NOTICE,
1594 "No TX queues configured yet. Using default TX function.");
1597 ixgbe_set_rx_function(eth_dev);
1602 ixgbevf_parse_devargs(eth_dev->data->dev_private,
1603 pci_dev->device.devargs);
1605 rte_eth_copy_pci_info(eth_dev, pci_dev);
1607 hw->device_id = pci_dev->id.device_id;
1608 hw->vendor_id = pci_dev->id.vendor_id;
1609 hw->hw_addr = (void *)pci_dev->mem_resource[0].addr;
1611 /* initialize the vfta */
1612 memset(shadow_vfta, 0, sizeof(*shadow_vfta));
1614 /* initialize the hw strip bitmap*/
1615 memset(hwstrip, 0, sizeof(*hwstrip));
1617 /* Initialize the shared code (base driver) */
1618 diag = ixgbe_init_shared_code(hw);
1619 if (diag != IXGBE_SUCCESS) {
1620 PMD_INIT_LOG(ERR, "Shared code init failed for ixgbevf: %d", diag);
1624 /* init_mailbox_params */
1625 hw->mbx.ops.init_params(hw);
1627 /* Reset the hw statistics */
1628 ixgbevf_dev_stats_reset(eth_dev);
1630 /* Disable the interrupts for VF */
1631 ixgbevf_intr_disable(eth_dev);
1633 hw->mac.num_rar_entries = 128; /* The MAX of the underlying PF */
1634 diag = hw->mac.ops.reset_hw(hw);
1637 * The VF reset operation returns the IXGBE_ERR_INVALID_MAC_ADDR when
1638 * the underlying PF driver has not assigned a MAC address to the VF.
1639 * In this case, assign a random MAC address.
1641 if ((diag != IXGBE_SUCCESS) && (diag != IXGBE_ERR_INVALID_MAC_ADDR)) {
1642 PMD_INIT_LOG(ERR, "VF Initialization Failure: %d", diag);
1644 * This error code will be propagated to the app by
1645 * rte_eth_dev_reset, so use a public error code rather than
1646 * the internal-only IXGBE_ERR_RESET_FAILED
1651 /* negotiate mailbox API version to use with the PF. */
1652 ixgbevf_negotiate_api(hw);
1654 /* Get Rx/Tx queue count via mailbox, which is ready after reset_hw */
1655 ixgbevf_get_queues(hw, &tcs, &tc);
1657 /* Allocate memory for storing MAC addresses */
1658 eth_dev->data->mac_addrs = rte_zmalloc("ixgbevf", RTE_ETHER_ADDR_LEN *
1659 hw->mac.num_rar_entries, 0);
1660 if (eth_dev->data->mac_addrs == NULL) {
1662 "Failed to allocate %u bytes needed to store "
1664 RTE_ETHER_ADDR_LEN * hw->mac.num_rar_entries);
1668 /* Pass the information to the rte_eth_dev_close() that it should also
1669 * release the private port resources.
1671 eth_dev->data->dev_flags |= RTE_ETH_DEV_CLOSE_REMOVE;
1673 /* Generate a random MAC address, if none was assigned by PF. */
1674 if (rte_is_zero_ether_addr(perm_addr)) {
1675 generate_random_mac_addr(perm_addr);
1676 diag = ixgbe_set_rar_vf(hw, 1, perm_addr->addr_bytes, 0, 1);
1678 rte_free(eth_dev->data->mac_addrs);
1679 eth_dev->data->mac_addrs = NULL;
1682 PMD_INIT_LOG(INFO, "\tVF MAC address not assigned by Host PF");
1683 PMD_INIT_LOG(INFO, "\tAssign randomly generated MAC address "
1684 "%02x:%02x:%02x:%02x:%02x:%02x",
1685 perm_addr->addr_bytes[0],
1686 perm_addr->addr_bytes[1],
1687 perm_addr->addr_bytes[2],
1688 perm_addr->addr_bytes[3],
1689 perm_addr->addr_bytes[4],
1690 perm_addr->addr_bytes[5]);
1693 /* Copy the permanent MAC address */
1694 rte_ether_addr_copy(perm_addr, ð_dev->data->mac_addrs[0]);
1696 /* reset the hardware with the new settings */
1697 diag = hw->mac.ops.start_hw(hw);
1703 PMD_INIT_LOG(ERR, "VF Initialization Failure: %d", diag);
1707 rte_intr_callback_register(intr_handle,
1708 ixgbevf_dev_interrupt_handler, eth_dev);
1709 rte_intr_enable(intr_handle);
1710 ixgbevf_intr_enable(eth_dev);
1712 PMD_INIT_LOG(DEBUG, "port %d vendorID=0x%x deviceID=0x%x mac.type=%s",
1713 eth_dev->data->port_id, pci_dev->id.vendor_id,
1714 pci_dev->id.device_id, "ixgbe_mac_82599_vf");
1719 /* Virtual Function device uninit */
1722 eth_ixgbevf_dev_uninit(struct rte_eth_dev *eth_dev)
1724 PMD_INIT_FUNC_TRACE();
1726 if (rte_eal_process_type() != RTE_PROC_PRIMARY)
1729 ixgbevf_dev_close(eth_dev);
1735 eth_ixgbe_pci_probe(struct rte_pci_driver *pci_drv __rte_unused,
1736 struct rte_pci_device *pci_dev)
1738 char name[RTE_ETH_NAME_MAX_LEN];
1739 struct rte_eth_dev *pf_ethdev;
1740 struct rte_eth_devargs eth_da;
1743 if (pci_dev->device.devargs) {
1744 retval = rte_eth_devargs_parse(pci_dev->device.devargs->args,
1749 memset(ð_da, 0, sizeof(eth_da));
1751 retval = rte_eth_dev_create(&pci_dev->device, pci_dev->device.name,
1752 sizeof(struct ixgbe_adapter),
1753 eth_dev_pci_specific_init, pci_dev,
1754 eth_ixgbe_dev_init, NULL);
1756 if (retval || eth_da.nb_representor_ports < 1)
1759 pf_ethdev = rte_eth_dev_allocated(pci_dev->device.name);
1760 if (pf_ethdev == NULL)
1763 /* probe VF representor ports */
1764 for (i = 0; i < eth_da.nb_representor_ports; i++) {
1765 struct ixgbe_vf_info *vfinfo;
1766 struct ixgbe_vf_representor representor;
1768 vfinfo = *IXGBE_DEV_PRIVATE_TO_P_VFDATA(
1769 pf_ethdev->data->dev_private);
1770 if (vfinfo == NULL) {
1772 "no virtual functions supported by PF");
1776 representor.vf_id = eth_da.representor_ports[i];
1777 representor.switch_domain_id = vfinfo->switch_domain_id;
1778 representor.pf_ethdev = pf_ethdev;
1780 /* representor port net_bdf_port */
1781 snprintf(name, sizeof(name), "net_%s_representor_%d",
1782 pci_dev->device.name,
1783 eth_da.representor_ports[i]);
1785 retval = rte_eth_dev_create(&pci_dev->device, name,
1786 sizeof(struct ixgbe_vf_representor), NULL, NULL,
1787 ixgbe_vf_representor_init, &representor);
1790 PMD_DRV_LOG(ERR, "failed to create ixgbe vf "
1791 "representor %s.", name);
1797 static int eth_ixgbe_pci_remove(struct rte_pci_device *pci_dev)
1799 struct rte_eth_dev *ethdev;
1801 ethdev = rte_eth_dev_allocated(pci_dev->device.name);
1805 if (ethdev->data->dev_flags & RTE_ETH_DEV_REPRESENTOR)
1806 return rte_eth_dev_destroy(ethdev, ixgbe_vf_representor_uninit);
1808 return rte_eth_dev_destroy(ethdev, eth_ixgbe_dev_uninit);
1811 static struct rte_pci_driver rte_ixgbe_pmd = {
1812 .id_table = pci_id_ixgbe_map,
1813 .drv_flags = RTE_PCI_DRV_NEED_MAPPING | RTE_PCI_DRV_INTR_LSC,
1814 .probe = eth_ixgbe_pci_probe,
1815 .remove = eth_ixgbe_pci_remove,
1818 static int eth_ixgbevf_pci_probe(struct rte_pci_driver *pci_drv __rte_unused,
1819 struct rte_pci_device *pci_dev)
1821 return rte_eth_dev_pci_generic_probe(pci_dev,
1822 sizeof(struct ixgbe_adapter), eth_ixgbevf_dev_init);
1825 static int eth_ixgbevf_pci_remove(struct rte_pci_device *pci_dev)
1827 return rte_eth_dev_pci_generic_remove(pci_dev, eth_ixgbevf_dev_uninit);
1831 * virtual function driver struct
1833 static struct rte_pci_driver rte_ixgbevf_pmd = {
1834 .id_table = pci_id_ixgbevf_map,
1835 .drv_flags = RTE_PCI_DRV_NEED_MAPPING,
1836 .probe = eth_ixgbevf_pci_probe,
1837 .remove = eth_ixgbevf_pci_remove,
1841 ixgbe_vlan_filter_set(struct rte_eth_dev *dev, uint16_t vlan_id, int on)
1843 struct ixgbe_hw *hw =
1844 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1845 struct ixgbe_vfta *shadow_vfta =
1846 IXGBE_DEV_PRIVATE_TO_VFTA(dev->data->dev_private);
1851 vid_idx = (uint32_t) ((vlan_id >> 5) & 0x7F);
1852 vid_bit = (uint32_t) (1 << (vlan_id & 0x1F));
1853 vfta = IXGBE_READ_REG(hw, IXGBE_VFTA(vid_idx));
1858 IXGBE_WRITE_REG(hw, IXGBE_VFTA(vid_idx), vfta);
1860 /* update local VFTA copy */
1861 shadow_vfta->vfta[vid_idx] = vfta;
1867 ixgbe_vlan_strip_queue_set(struct rte_eth_dev *dev, uint16_t queue, int on)
1870 ixgbe_vlan_hw_strip_enable(dev, queue);
1872 ixgbe_vlan_hw_strip_disable(dev, queue);
1876 ixgbe_vlan_tpid_set(struct rte_eth_dev *dev,
1877 enum rte_vlan_type vlan_type,
1880 struct ixgbe_hw *hw =
1881 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1886 qinq = IXGBE_READ_REG(hw, IXGBE_DMATXCTL);
1887 qinq &= IXGBE_DMATXCTL_GDV;
1889 switch (vlan_type) {
1890 case ETH_VLAN_TYPE_INNER:
1892 reg = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
1893 reg = (reg & (~IXGBE_VLNCTRL_VET)) | (uint32_t)tpid;
1894 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, reg);
1895 reg = IXGBE_READ_REG(hw, IXGBE_DMATXCTL);
1896 reg = (reg & (~IXGBE_DMATXCTL_VT_MASK))
1897 | ((uint32_t)tpid << IXGBE_DMATXCTL_VT_SHIFT);
1898 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL, reg);
1901 PMD_DRV_LOG(ERR, "Inner type is not supported"
1905 case ETH_VLAN_TYPE_OUTER:
1907 /* Only the high 16-bits is valid */
1908 IXGBE_WRITE_REG(hw, IXGBE_EXVET, (uint32_t)tpid <<
1909 IXGBE_EXVET_VET_EXT_SHIFT);
1911 reg = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
1912 reg = (reg & (~IXGBE_VLNCTRL_VET)) | (uint32_t)tpid;
1913 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, reg);
1914 reg = IXGBE_READ_REG(hw, IXGBE_DMATXCTL);
1915 reg = (reg & (~IXGBE_DMATXCTL_VT_MASK))
1916 | ((uint32_t)tpid << IXGBE_DMATXCTL_VT_SHIFT);
1917 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL, reg);
1923 PMD_DRV_LOG(ERR, "Unsupported VLAN type %d", vlan_type);
1931 ixgbe_vlan_hw_filter_disable(struct rte_eth_dev *dev)
1933 struct ixgbe_hw *hw =
1934 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1937 PMD_INIT_FUNC_TRACE();
1939 /* Filter Table Disable */
1940 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
1941 vlnctrl &= ~IXGBE_VLNCTRL_VFE;
1943 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
1947 ixgbe_vlan_hw_filter_enable(struct rte_eth_dev *dev)
1949 struct ixgbe_hw *hw =
1950 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1951 struct ixgbe_vfta *shadow_vfta =
1952 IXGBE_DEV_PRIVATE_TO_VFTA(dev->data->dev_private);
1956 PMD_INIT_FUNC_TRACE();
1958 /* Filter Table Enable */
1959 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
1960 vlnctrl &= ~IXGBE_VLNCTRL_CFIEN;
1961 vlnctrl |= IXGBE_VLNCTRL_VFE;
1963 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
1965 /* write whatever is in local vfta copy */
1966 for (i = 0; i < IXGBE_VFTA_SIZE; i++)
1967 IXGBE_WRITE_REG(hw, IXGBE_VFTA(i), shadow_vfta->vfta[i]);
1971 ixgbe_vlan_hw_strip_bitmap_set(struct rte_eth_dev *dev, uint16_t queue, bool on)
1973 struct ixgbe_hwstrip *hwstrip =
1974 IXGBE_DEV_PRIVATE_TO_HWSTRIP_BITMAP(dev->data->dev_private);
1975 struct ixgbe_rx_queue *rxq;
1977 if (queue >= IXGBE_MAX_RX_QUEUE_NUM)
1981 IXGBE_SET_HWSTRIP(hwstrip, queue);
1983 IXGBE_CLEAR_HWSTRIP(hwstrip, queue);
1985 if (queue >= dev->data->nb_rx_queues)
1988 rxq = dev->data->rx_queues[queue];
1991 rxq->vlan_flags = PKT_RX_VLAN | PKT_RX_VLAN_STRIPPED;
1992 rxq->offloads |= DEV_RX_OFFLOAD_VLAN_STRIP;
1994 rxq->vlan_flags = PKT_RX_VLAN;
1995 rxq->offloads &= ~DEV_RX_OFFLOAD_VLAN_STRIP;
2000 ixgbe_vlan_hw_strip_disable(struct rte_eth_dev *dev, uint16_t queue)
2002 struct ixgbe_hw *hw =
2003 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2006 PMD_INIT_FUNC_TRACE();
2008 if (hw->mac.type == ixgbe_mac_82598EB) {
2009 /* No queue level support */
2010 PMD_INIT_LOG(NOTICE, "82598EB not support queue level hw strip");
2014 /* Other 10G NIC, the VLAN strip can be setup per queue in RXDCTL */
2015 ctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(queue));
2016 ctrl &= ~IXGBE_RXDCTL_VME;
2017 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(queue), ctrl);
2019 /* record those setting for HW strip per queue */
2020 ixgbe_vlan_hw_strip_bitmap_set(dev, queue, 0);
2024 ixgbe_vlan_hw_strip_enable(struct rte_eth_dev *dev, uint16_t queue)
2026 struct ixgbe_hw *hw =
2027 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2030 PMD_INIT_FUNC_TRACE();
2032 if (hw->mac.type == ixgbe_mac_82598EB) {
2033 /* No queue level supported */
2034 PMD_INIT_LOG(NOTICE, "82598EB not support queue level hw strip");
2038 /* Other 10G NIC, the VLAN strip can be setup per queue in RXDCTL */
2039 ctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(queue));
2040 ctrl |= IXGBE_RXDCTL_VME;
2041 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(queue), ctrl);
2043 /* record those setting for HW strip per queue */
2044 ixgbe_vlan_hw_strip_bitmap_set(dev, queue, 1);
2048 ixgbe_vlan_hw_extend_disable(struct rte_eth_dev *dev)
2050 struct ixgbe_hw *hw =
2051 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2054 PMD_INIT_FUNC_TRACE();
2056 /* DMATXCTRL: Geric Double VLAN Disable */
2057 ctrl = IXGBE_READ_REG(hw, IXGBE_DMATXCTL);
2058 ctrl &= ~IXGBE_DMATXCTL_GDV;
2059 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL, ctrl);
2061 /* CTRL_EXT: Global Double VLAN Disable */
2062 ctrl = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT);
2063 ctrl &= ~IXGBE_EXTENDED_VLAN;
2064 IXGBE_WRITE_REG(hw, IXGBE_CTRL_EXT, ctrl);
2069 ixgbe_vlan_hw_extend_enable(struct rte_eth_dev *dev)
2071 struct ixgbe_hw *hw =
2072 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2075 PMD_INIT_FUNC_TRACE();
2077 /* DMATXCTRL: Geric Double VLAN Enable */
2078 ctrl = IXGBE_READ_REG(hw, IXGBE_DMATXCTL);
2079 ctrl |= IXGBE_DMATXCTL_GDV;
2080 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL, ctrl);
2082 /* CTRL_EXT: Global Double VLAN Enable */
2083 ctrl = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT);
2084 ctrl |= IXGBE_EXTENDED_VLAN;
2085 IXGBE_WRITE_REG(hw, IXGBE_CTRL_EXT, ctrl);
2087 /* Clear pooling mode of PFVTCTL. It's required by X550. */
2088 if (hw->mac.type == ixgbe_mac_X550 ||
2089 hw->mac.type == ixgbe_mac_X550EM_x ||
2090 hw->mac.type == ixgbe_mac_X550EM_a) {
2091 ctrl = IXGBE_READ_REG(hw, IXGBE_VT_CTL);
2092 ctrl &= ~IXGBE_VT_CTL_POOLING_MODE_MASK;
2093 IXGBE_WRITE_REG(hw, IXGBE_VT_CTL, ctrl);
2097 * VET EXT field in the EXVET register = 0x8100 by default
2098 * So no need to change. Same to VT field of DMATXCTL register
2103 ixgbe_vlan_hw_strip_config(struct rte_eth_dev *dev)
2105 struct ixgbe_hw *hw =
2106 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2107 struct rte_eth_rxmode *rxmode = &dev->data->dev_conf.rxmode;
2110 struct ixgbe_rx_queue *rxq;
2113 PMD_INIT_FUNC_TRACE();
2115 if (hw->mac.type == ixgbe_mac_82598EB) {
2116 if (rxmode->offloads & DEV_RX_OFFLOAD_VLAN_STRIP) {
2117 ctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
2118 ctrl |= IXGBE_VLNCTRL_VME;
2119 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, ctrl);
2121 ctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
2122 ctrl &= ~IXGBE_VLNCTRL_VME;
2123 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, ctrl);
2127 * Other 10G NIC, the VLAN strip can be setup
2128 * per queue in RXDCTL
2130 for (i = 0; i < dev->data->nb_rx_queues; i++) {
2131 rxq = dev->data->rx_queues[i];
2132 ctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(rxq->reg_idx));
2133 if (rxq->offloads & DEV_RX_OFFLOAD_VLAN_STRIP) {
2134 ctrl |= IXGBE_RXDCTL_VME;
2137 ctrl &= ~IXGBE_RXDCTL_VME;
2140 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(rxq->reg_idx), ctrl);
2142 /* record those setting for HW strip per queue */
2143 ixgbe_vlan_hw_strip_bitmap_set(dev, i, on);
2149 ixgbe_config_vlan_strip_on_all_queues(struct rte_eth_dev *dev, int mask)
2152 struct rte_eth_rxmode *rxmode;
2153 struct ixgbe_rx_queue *rxq;
2155 if (mask & ETH_VLAN_STRIP_MASK) {
2156 rxmode = &dev->data->dev_conf.rxmode;
2157 if (rxmode->offloads & DEV_RX_OFFLOAD_VLAN_STRIP)
2158 for (i = 0; i < dev->data->nb_rx_queues; i++) {
2159 rxq = dev->data->rx_queues[i];
2160 rxq->offloads |= DEV_RX_OFFLOAD_VLAN_STRIP;
2163 for (i = 0; i < dev->data->nb_rx_queues; i++) {
2164 rxq = dev->data->rx_queues[i];
2165 rxq->offloads &= ~DEV_RX_OFFLOAD_VLAN_STRIP;
2171 ixgbe_vlan_offload_config(struct rte_eth_dev *dev, int mask)
2173 struct rte_eth_rxmode *rxmode;
2174 rxmode = &dev->data->dev_conf.rxmode;
2176 if (mask & ETH_VLAN_STRIP_MASK) {
2177 ixgbe_vlan_hw_strip_config(dev);
2180 if (mask & ETH_VLAN_FILTER_MASK) {
2181 if (rxmode->offloads & DEV_RX_OFFLOAD_VLAN_FILTER)
2182 ixgbe_vlan_hw_filter_enable(dev);
2184 ixgbe_vlan_hw_filter_disable(dev);
2187 if (mask & ETH_VLAN_EXTEND_MASK) {
2188 if (rxmode->offloads & DEV_RX_OFFLOAD_VLAN_EXTEND)
2189 ixgbe_vlan_hw_extend_enable(dev);
2191 ixgbe_vlan_hw_extend_disable(dev);
2198 ixgbe_vlan_offload_set(struct rte_eth_dev *dev, int mask)
2200 ixgbe_config_vlan_strip_on_all_queues(dev, mask);
2202 ixgbe_vlan_offload_config(dev, mask);
2208 ixgbe_vmdq_vlan_hw_filter_enable(struct rte_eth_dev *dev)
2210 struct ixgbe_hw *hw =
2211 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2212 /* VLNCTRL: enable vlan filtering and allow all vlan tags through */
2213 uint32_t vlanctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
2215 vlanctrl |= IXGBE_VLNCTRL_VFE; /* enable vlan filters */
2216 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlanctrl);
2220 ixgbe_check_vf_rss_rxq_num(struct rte_eth_dev *dev, uint16_t nb_rx_q)
2222 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
2227 RTE_ETH_DEV_SRIOV(dev).active = ETH_64_POOLS;
2230 RTE_ETH_DEV_SRIOV(dev).active = ETH_32_POOLS;
2236 RTE_ETH_DEV_SRIOV(dev).nb_q_per_pool =
2237 IXGBE_MAX_RX_QUEUE_NUM / RTE_ETH_DEV_SRIOV(dev).active;
2238 RTE_ETH_DEV_SRIOV(dev).def_pool_q_idx =
2239 pci_dev->max_vfs * RTE_ETH_DEV_SRIOV(dev).nb_q_per_pool;
2244 ixgbe_check_mq_mode(struct rte_eth_dev *dev)
2246 struct rte_eth_conf *dev_conf = &dev->data->dev_conf;
2247 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2248 uint16_t nb_rx_q = dev->data->nb_rx_queues;
2249 uint16_t nb_tx_q = dev->data->nb_tx_queues;
2251 if (RTE_ETH_DEV_SRIOV(dev).active != 0) {
2252 /* check multi-queue mode */
2253 switch (dev_conf->rxmode.mq_mode) {
2254 case ETH_MQ_RX_VMDQ_DCB:
2255 PMD_INIT_LOG(INFO, "ETH_MQ_RX_VMDQ_DCB mode supported in SRIOV");
2257 case ETH_MQ_RX_VMDQ_DCB_RSS:
2258 /* DCB/RSS VMDQ in SRIOV mode, not implement yet */
2259 PMD_INIT_LOG(ERR, "SRIOV active,"
2260 " unsupported mq_mode rx %d.",
2261 dev_conf->rxmode.mq_mode);
2264 case ETH_MQ_RX_VMDQ_RSS:
2265 dev->data->dev_conf.rxmode.mq_mode = ETH_MQ_RX_VMDQ_RSS;
2266 if (nb_rx_q <= RTE_ETH_DEV_SRIOV(dev).nb_q_per_pool)
2267 if (ixgbe_check_vf_rss_rxq_num(dev, nb_rx_q)) {
2268 PMD_INIT_LOG(ERR, "SRIOV is active,"
2269 " invalid queue number"
2270 " for VMDQ RSS, allowed"
2271 " value are 1, 2 or 4.");
2275 case ETH_MQ_RX_VMDQ_ONLY:
2276 case ETH_MQ_RX_NONE:
2277 /* if nothing mq mode configure, use default scheme */
2278 dev->data->dev_conf.rxmode.mq_mode = ETH_MQ_RX_VMDQ_ONLY;
2280 default: /* ETH_MQ_RX_DCB, ETH_MQ_RX_DCB_RSS or ETH_MQ_TX_DCB*/
2281 /* SRIOV only works in VMDq enable mode */
2282 PMD_INIT_LOG(ERR, "SRIOV is active,"
2283 " wrong mq_mode rx %d.",
2284 dev_conf->rxmode.mq_mode);
2288 switch (dev_conf->txmode.mq_mode) {
2289 case ETH_MQ_TX_VMDQ_DCB:
2290 PMD_INIT_LOG(INFO, "ETH_MQ_TX_VMDQ_DCB mode supported in SRIOV");
2291 dev->data->dev_conf.txmode.mq_mode = ETH_MQ_TX_VMDQ_DCB;
2293 default: /* ETH_MQ_TX_VMDQ_ONLY or ETH_MQ_TX_NONE */
2294 dev->data->dev_conf.txmode.mq_mode = ETH_MQ_TX_VMDQ_ONLY;
2298 /* check valid queue number */
2299 if ((nb_rx_q > RTE_ETH_DEV_SRIOV(dev).nb_q_per_pool) ||
2300 (nb_tx_q > RTE_ETH_DEV_SRIOV(dev).nb_q_per_pool)) {
2301 PMD_INIT_LOG(ERR, "SRIOV is active,"
2302 " nb_rx_q=%d nb_tx_q=%d queue number"
2303 " must be less than or equal to %d.",
2305 RTE_ETH_DEV_SRIOV(dev).nb_q_per_pool);
2309 if (dev_conf->rxmode.mq_mode == ETH_MQ_RX_VMDQ_DCB_RSS) {
2310 PMD_INIT_LOG(ERR, "VMDQ+DCB+RSS mq_mode is"
2314 /* check configuration for vmdb+dcb mode */
2315 if (dev_conf->rxmode.mq_mode == ETH_MQ_RX_VMDQ_DCB) {
2316 const struct rte_eth_vmdq_dcb_conf *conf;
2318 if (nb_rx_q != IXGBE_VMDQ_DCB_NB_QUEUES) {
2319 PMD_INIT_LOG(ERR, "VMDQ+DCB, nb_rx_q != %d.",
2320 IXGBE_VMDQ_DCB_NB_QUEUES);
2323 conf = &dev_conf->rx_adv_conf.vmdq_dcb_conf;
2324 if (!(conf->nb_queue_pools == ETH_16_POOLS ||
2325 conf->nb_queue_pools == ETH_32_POOLS)) {
2326 PMD_INIT_LOG(ERR, "VMDQ+DCB selected,"
2327 " nb_queue_pools must be %d or %d.",
2328 ETH_16_POOLS, ETH_32_POOLS);
2332 if (dev_conf->txmode.mq_mode == ETH_MQ_TX_VMDQ_DCB) {
2333 const struct rte_eth_vmdq_dcb_tx_conf *conf;
2335 if (nb_tx_q != IXGBE_VMDQ_DCB_NB_QUEUES) {
2336 PMD_INIT_LOG(ERR, "VMDQ+DCB, nb_tx_q != %d",
2337 IXGBE_VMDQ_DCB_NB_QUEUES);
2340 conf = &dev_conf->tx_adv_conf.vmdq_dcb_tx_conf;
2341 if (!(conf->nb_queue_pools == ETH_16_POOLS ||
2342 conf->nb_queue_pools == ETH_32_POOLS)) {
2343 PMD_INIT_LOG(ERR, "VMDQ+DCB selected,"
2344 " nb_queue_pools != %d and"
2345 " nb_queue_pools != %d.",
2346 ETH_16_POOLS, ETH_32_POOLS);
2351 /* For DCB mode check our configuration before we go further */
2352 if (dev_conf->rxmode.mq_mode == ETH_MQ_RX_DCB) {
2353 const struct rte_eth_dcb_rx_conf *conf;
2355 conf = &dev_conf->rx_adv_conf.dcb_rx_conf;
2356 if (!(conf->nb_tcs == ETH_4_TCS ||
2357 conf->nb_tcs == ETH_8_TCS)) {
2358 PMD_INIT_LOG(ERR, "DCB selected, nb_tcs != %d"
2359 " and nb_tcs != %d.",
2360 ETH_4_TCS, ETH_8_TCS);
2365 if (dev_conf->txmode.mq_mode == ETH_MQ_TX_DCB) {
2366 const struct rte_eth_dcb_tx_conf *conf;
2368 conf = &dev_conf->tx_adv_conf.dcb_tx_conf;
2369 if (!(conf->nb_tcs == ETH_4_TCS ||
2370 conf->nb_tcs == ETH_8_TCS)) {
2371 PMD_INIT_LOG(ERR, "DCB selected, nb_tcs != %d"
2372 " and nb_tcs != %d.",
2373 ETH_4_TCS, ETH_8_TCS);
2379 * When DCB/VT is off, maximum number of queues changes,
2380 * except for 82598EB, which remains constant.
2382 if (dev_conf->txmode.mq_mode == ETH_MQ_TX_NONE &&
2383 hw->mac.type != ixgbe_mac_82598EB) {
2384 if (nb_tx_q > IXGBE_NONE_MODE_TX_NB_QUEUES) {
2386 "Neither VT nor DCB are enabled, "
2388 IXGBE_NONE_MODE_TX_NB_QUEUES);
2397 ixgbe_dev_configure(struct rte_eth_dev *dev)
2399 struct ixgbe_interrupt *intr =
2400 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
2401 struct ixgbe_adapter *adapter = dev->data->dev_private;
2404 PMD_INIT_FUNC_TRACE();
2405 /* multipe queue mode checking */
2406 ret = ixgbe_check_mq_mode(dev);
2408 PMD_DRV_LOG(ERR, "ixgbe_check_mq_mode fails with %d.",
2413 /* set flag to update link status after init */
2414 intr->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
2417 * Initialize to TRUE. If any of Rx queues doesn't meet the bulk
2418 * allocation or vector Rx preconditions we will reset it.
2420 adapter->rx_bulk_alloc_allowed = true;
2421 adapter->rx_vec_allowed = true;
2427 ixgbe_dev_phy_intr_setup(struct rte_eth_dev *dev)
2429 struct ixgbe_hw *hw =
2430 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2431 struct ixgbe_interrupt *intr =
2432 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
2435 /* only set up it on X550EM_X */
2436 if (hw->mac.type == ixgbe_mac_X550EM_x) {
2437 gpie = IXGBE_READ_REG(hw, IXGBE_GPIE);
2438 gpie |= IXGBE_SDP0_GPIEN_X550EM_x;
2439 IXGBE_WRITE_REG(hw, IXGBE_GPIE, gpie);
2440 if (hw->phy.type == ixgbe_phy_x550em_ext_t)
2441 intr->mask |= IXGBE_EICR_GPI_SDP0_X550EM_x;
2446 ixgbe_set_vf_rate_limit(struct rte_eth_dev *dev, uint16_t vf,
2447 uint16_t tx_rate, uint64_t q_msk)
2449 struct ixgbe_hw *hw;
2450 struct ixgbe_vf_info *vfinfo;
2451 struct rte_eth_link link;
2452 uint8_t nb_q_per_pool;
2453 uint32_t queue_stride;
2454 uint32_t queue_idx, idx = 0, vf_idx;
2456 uint16_t total_rate = 0;
2457 struct rte_pci_device *pci_dev;
2460 pci_dev = RTE_ETH_DEV_TO_PCI(dev);
2461 ret = rte_eth_link_get_nowait(dev->data->port_id, &link);
2465 if (vf >= pci_dev->max_vfs)
2468 if (tx_rate > link.link_speed)
2474 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2475 vfinfo = *(IXGBE_DEV_PRIVATE_TO_P_VFDATA(dev->data->dev_private));
2476 nb_q_per_pool = RTE_ETH_DEV_SRIOV(dev).nb_q_per_pool;
2477 queue_stride = IXGBE_MAX_RX_QUEUE_NUM / RTE_ETH_DEV_SRIOV(dev).active;
2478 queue_idx = vf * queue_stride;
2479 queue_end = queue_idx + nb_q_per_pool - 1;
2480 if (queue_end >= hw->mac.max_tx_queues)
2484 for (vf_idx = 0; vf_idx < pci_dev->max_vfs; vf_idx++) {
2487 for (idx = 0; idx < RTE_DIM(vfinfo[vf_idx].tx_rate);
2489 total_rate += vfinfo[vf_idx].tx_rate[idx];
2495 /* Store tx_rate for this vf. */
2496 for (idx = 0; idx < nb_q_per_pool; idx++) {
2497 if (((uint64_t)0x1 << idx) & q_msk) {
2498 if (vfinfo[vf].tx_rate[idx] != tx_rate)
2499 vfinfo[vf].tx_rate[idx] = tx_rate;
2500 total_rate += tx_rate;
2504 if (total_rate > dev->data->dev_link.link_speed) {
2505 /* Reset stored TX rate of the VF if it causes exceed
2508 memset(vfinfo[vf].tx_rate, 0, sizeof(vfinfo[vf].tx_rate));
2512 /* Set RTTBCNRC of each queue/pool for vf X */
2513 for (; queue_idx <= queue_end; queue_idx++) {
2515 ixgbe_set_queue_rate_limit(dev, queue_idx, tx_rate);
2523 * Configure device link speed and setup link.
2524 * It returns 0 on success.
2527 ixgbe_dev_start(struct rte_eth_dev *dev)
2529 struct ixgbe_hw *hw =
2530 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2531 struct ixgbe_vf_info *vfinfo =
2532 *IXGBE_DEV_PRIVATE_TO_P_VFDATA(dev->data->dev_private);
2533 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
2534 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
2535 uint32_t intr_vector = 0;
2536 int err, link_up = 0, negotiate = 0;
2538 uint32_t allowed_speeds = 0;
2542 uint32_t *link_speeds;
2543 struct ixgbe_tm_conf *tm_conf =
2544 IXGBE_DEV_PRIVATE_TO_TM_CONF(dev->data->dev_private);
2546 PMD_INIT_FUNC_TRACE();
2548 /* IXGBE devices don't support:
2549 * - half duplex (checked afterwards for valid speeds)
2550 * - fixed speed: TODO implement
2552 if (dev->data->dev_conf.link_speeds & ETH_LINK_SPEED_FIXED) {
2554 "Invalid link_speeds for port %u, fix speed not supported",
2555 dev->data->port_id);
2559 /* Stop the link setup handler before resetting the HW. */
2560 rte_eal_alarm_cancel(ixgbe_dev_setup_link_alarm_handler, dev);
2562 /* disable uio/vfio intr/eventfd mapping */
2563 rte_intr_disable(intr_handle);
2566 hw->adapter_stopped = 0;
2567 ixgbe_stop_adapter(hw);
2569 /* reinitialize adapter
2570 * this calls reset and start
2572 status = ixgbe_pf_reset_hw(hw);
2575 hw->mac.ops.start_hw(hw);
2576 hw->mac.get_link_status = true;
2578 /* configure PF module if SRIOV enabled */
2579 ixgbe_pf_host_configure(dev);
2581 ixgbe_dev_phy_intr_setup(dev);
2583 /* check and configure queue intr-vector mapping */
2584 if ((rte_intr_cap_multiple(intr_handle) ||
2585 !RTE_ETH_DEV_SRIOV(dev).active) &&
2586 dev->data->dev_conf.intr_conf.rxq != 0) {
2587 intr_vector = dev->data->nb_rx_queues;
2588 if (intr_vector > IXGBE_MAX_INTR_QUEUE_NUM) {
2589 PMD_INIT_LOG(ERR, "At most %d intr queues supported",
2590 IXGBE_MAX_INTR_QUEUE_NUM);
2593 if (rte_intr_efd_enable(intr_handle, intr_vector))
2597 if (rte_intr_dp_is_en(intr_handle) && !intr_handle->intr_vec) {
2598 intr_handle->intr_vec =
2599 rte_zmalloc("intr_vec",
2600 dev->data->nb_rx_queues * sizeof(int), 0);
2601 if (intr_handle->intr_vec == NULL) {
2602 PMD_INIT_LOG(ERR, "Failed to allocate %d rx_queues"
2603 " intr_vec", dev->data->nb_rx_queues);
2608 /* confiugre msix for sleep until rx interrupt */
2609 ixgbe_configure_msix(dev);
2611 /* initialize transmission unit */
2612 ixgbe_dev_tx_init(dev);
2614 /* This can fail when allocating mbufs for descriptor rings */
2615 err = ixgbe_dev_rx_init(dev);
2617 PMD_INIT_LOG(ERR, "Unable to initialize RX hardware");
2621 mask = ETH_VLAN_STRIP_MASK | ETH_VLAN_FILTER_MASK |
2622 ETH_VLAN_EXTEND_MASK;
2623 err = ixgbe_vlan_offload_config(dev, mask);
2625 PMD_INIT_LOG(ERR, "Unable to set VLAN offload");
2629 if (dev->data->dev_conf.rxmode.mq_mode == ETH_MQ_RX_VMDQ_ONLY) {
2630 /* Enable vlan filtering for VMDq */
2631 ixgbe_vmdq_vlan_hw_filter_enable(dev);
2634 /* Configure DCB hw */
2635 ixgbe_configure_dcb(dev);
2637 if (dev->data->dev_conf.fdir_conf.mode != RTE_FDIR_MODE_NONE) {
2638 err = ixgbe_fdir_configure(dev);
2643 /* Restore vf rate limit */
2644 if (vfinfo != NULL) {
2645 for (vf = 0; vf < pci_dev->max_vfs; vf++)
2646 for (idx = 0; idx < IXGBE_MAX_QUEUE_NUM_PER_VF; idx++)
2647 if (vfinfo[vf].tx_rate[idx] != 0)
2648 ixgbe_set_vf_rate_limit(
2650 vfinfo[vf].tx_rate[idx],
2654 ixgbe_restore_statistics_mapping(dev);
2656 err = ixgbe_dev_rxtx_start(dev);
2658 PMD_INIT_LOG(ERR, "Unable to start rxtx queues");
2662 /* Skip link setup if loopback mode is enabled. */
2663 if (dev->data->dev_conf.lpbk_mode != 0) {
2664 err = ixgbe_check_supported_loopback_mode(dev);
2666 PMD_INIT_LOG(ERR, "Unsupported loopback mode");
2669 goto skip_link_setup;
2673 if (ixgbe_is_sfp(hw) && hw->phy.multispeed_fiber) {
2674 err = hw->mac.ops.setup_sfp(hw);
2679 if (hw->mac.ops.get_media_type(hw) == ixgbe_media_type_copper) {
2680 /* Turn on the copper */
2681 ixgbe_set_phy_power(hw, true);
2683 /* Turn on the laser */
2684 ixgbe_enable_tx_laser(hw);
2687 err = ixgbe_check_link(hw, &speed, &link_up, 0);
2690 dev->data->dev_link.link_status = link_up;
2692 err = ixgbe_get_link_capabilities(hw, &speed, &negotiate);
2696 switch (hw->mac.type) {
2697 case ixgbe_mac_X550:
2698 case ixgbe_mac_X550EM_x:
2699 case ixgbe_mac_X550EM_a:
2700 allowed_speeds = ETH_LINK_SPEED_100M | ETH_LINK_SPEED_1G |
2701 ETH_LINK_SPEED_2_5G | ETH_LINK_SPEED_5G |
2703 if (hw->device_id == IXGBE_DEV_ID_X550EM_A_1G_T ||
2704 hw->device_id == IXGBE_DEV_ID_X550EM_A_1G_T_L)
2705 allowed_speeds = ETH_LINK_SPEED_10M |
2706 ETH_LINK_SPEED_100M | ETH_LINK_SPEED_1G;
2709 allowed_speeds = ETH_LINK_SPEED_100M | ETH_LINK_SPEED_1G |
2713 link_speeds = &dev->data->dev_conf.link_speeds;
2714 if (*link_speeds & ~allowed_speeds) {
2715 PMD_INIT_LOG(ERR, "Invalid link setting");
2720 if (*link_speeds == ETH_LINK_SPEED_AUTONEG) {
2721 switch (hw->mac.type) {
2722 case ixgbe_mac_82598EB:
2723 speed = IXGBE_LINK_SPEED_82598_AUTONEG;
2725 case ixgbe_mac_82599EB:
2726 case ixgbe_mac_X540:
2727 speed = IXGBE_LINK_SPEED_82599_AUTONEG;
2729 case ixgbe_mac_X550:
2730 case ixgbe_mac_X550EM_x:
2731 case ixgbe_mac_X550EM_a:
2732 speed = IXGBE_LINK_SPEED_X550_AUTONEG;
2735 speed = IXGBE_LINK_SPEED_82599_AUTONEG;
2738 if (*link_speeds & ETH_LINK_SPEED_10G)
2739 speed |= IXGBE_LINK_SPEED_10GB_FULL;
2740 if (*link_speeds & ETH_LINK_SPEED_5G)
2741 speed |= IXGBE_LINK_SPEED_5GB_FULL;
2742 if (*link_speeds & ETH_LINK_SPEED_2_5G)
2743 speed |= IXGBE_LINK_SPEED_2_5GB_FULL;
2744 if (*link_speeds & ETH_LINK_SPEED_1G)
2745 speed |= IXGBE_LINK_SPEED_1GB_FULL;
2746 if (*link_speeds & ETH_LINK_SPEED_100M)
2747 speed |= IXGBE_LINK_SPEED_100_FULL;
2748 if (*link_speeds & ETH_LINK_SPEED_10M)
2749 speed |= IXGBE_LINK_SPEED_10_FULL;
2752 err = ixgbe_setup_link(hw, speed, link_up);
2758 if (rte_intr_allow_others(intr_handle)) {
2759 /* check if lsc interrupt is enabled */
2760 if (dev->data->dev_conf.intr_conf.lsc != 0)
2761 ixgbe_dev_lsc_interrupt_setup(dev, TRUE);
2763 ixgbe_dev_lsc_interrupt_setup(dev, FALSE);
2764 ixgbe_dev_macsec_interrupt_setup(dev);
2766 rte_intr_callback_unregister(intr_handle,
2767 ixgbe_dev_interrupt_handler, dev);
2768 if (dev->data->dev_conf.intr_conf.lsc != 0)
2769 PMD_INIT_LOG(INFO, "lsc won't enable because of"
2770 " no intr multiplex");
2773 /* check if rxq interrupt is enabled */
2774 if (dev->data->dev_conf.intr_conf.rxq != 0 &&
2775 rte_intr_dp_is_en(intr_handle))
2776 ixgbe_dev_rxq_interrupt_setup(dev);
2778 /* enable uio/vfio intr/eventfd mapping */
2779 rte_intr_enable(intr_handle);
2781 /* resume enabled intr since hw reset */
2782 ixgbe_enable_intr(dev);
2783 ixgbe_l2_tunnel_conf(dev);
2784 ixgbe_filter_restore(dev);
2786 if (tm_conf->root && !tm_conf->committed)
2787 PMD_DRV_LOG(WARNING,
2788 "please call hierarchy_commit() "
2789 "before starting the port");
2792 * Update link status right before return, because it may
2793 * start link configuration process in a separate thread.
2795 ixgbe_dev_link_update(dev, 0);
2800 PMD_INIT_LOG(ERR, "failure in ixgbe_dev_start(): %d", err);
2801 ixgbe_dev_clear_queues(dev);
2806 * Stop device: disable rx and tx functions to allow for reconfiguring.
2809 ixgbe_dev_stop(struct rte_eth_dev *dev)
2811 struct rte_eth_link link;
2812 struct ixgbe_adapter *adapter = dev->data->dev_private;
2813 struct ixgbe_hw *hw =
2814 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2815 struct ixgbe_vf_info *vfinfo =
2816 *IXGBE_DEV_PRIVATE_TO_P_VFDATA(dev->data->dev_private);
2817 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
2818 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
2820 struct ixgbe_tm_conf *tm_conf =
2821 IXGBE_DEV_PRIVATE_TO_TM_CONF(dev->data->dev_private);
2823 if (hw->adapter_stopped)
2826 PMD_INIT_FUNC_TRACE();
2828 rte_eal_alarm_cancel(ixgbe_dev_setup_link_alarm_handler, dev);
2830 /* disable interrupts */
2831 ixgbe_disable_intr(hw);
2834 ixgbe_pf_reset_hw(hw);
2835 hw->adapter_stopped = 0;
2838 ixgbe_stop_adapter(hw);
2840 for (vf = 0; vfinfo != NULL && vf < pci_dev->max_vfs; vf++)
2841 vfinfo[vf].clear_to_send = false;
2843 if (hw->mac.ops.get_media_type(hw) == ixgbe_media_type_copper) {
2844 /* Turn off the copper */
2845 ixgbe_set_phy_power(hw, false);
2847 /* Turn off the laser */
2848 ixgbe_disable_tx_laser(hw);
2851 ixgbe_dev_clear_queues(dev);
2853 /* Clear stored conf */
2854 dev->data->scattered_rx = 0;
2857 /* Clear recorded link status */
2858 memset(&link, 0, sizeof(link));
2859 rte_eth_linkstatus_set(dev, &link);
2861 if (!rte_intr_allow_others(intr_handle))
2862 /* resume to the default handler */
2863 rte_intr_callback_register(intr_handle,
2864 ixgbe_dev_interrupt_handler,
2867 /* Clean datapath event and queue/vec mapping */
2868 rte_intr_efd_disable(intr_handle);
2869 if (intr_handle->intr_vec != NULL) {
2870 rte_free(intr_handle->intr_vec);
2871 intr_handle->intr_vec = NULL;
2874 /* reset hierarchy commit */
2875 tm_conf->committed = false;
2877 adapter->rss_reta_updated = 0;
2879 hw->adapter_stopped = true;
2883 * Set device link up: enable tx.
2886 ixgbe_dev_set_link_up(struct rte_eth_dev *dev)
2888 struct ixgbe_hw *hw =
2889 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2890 if (hw->mac.type == ixgbe_mac_82599EB) {
2891 #ifdef RTE_LIBRTE_IXGBE_BYPASS
2892 if (hw->device_id == IXGBE_DEV_ID_82599_BYPASS) {
2893 /* Not suported in bypass mode */
2894 PMD_INIT_LOG(ERR, "Set link up is not supported "
2895 "by device id 0x%x", hw->device_id);
2901 if (hw->mac.ops.get_media_type(hw) == ixgbe_media_type_copper) {
2902 /* Turn on the copper */
2903 ixgbe_set_phy_power(hw, true);
2905 /* Turn on the laser */
2906 ixgbe_enable_tx_laser(hw);
2913 * Set device link down: disable tx.
2916 ixgbe_dev_set_link_down(struct rte_eth_dev *dev)
2918 struct ixgbe_hw *hw =
2919 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2920 if (hw->mac.type == ixgbe_mac_82599EB) {
2921 #ifdef RTE_LIBRTE_IXGBE_BYPASS
2922 if (hw->device_id == IXGBE_DEV_ID_82599_BYPASS) {
2923 /* Not suported in bypass mode */
2924 PMD_INIT_LOG(ERR, "Set link down is not supported "
2925 "by device id 0x%x", hw->device_id);
2931 if (hw->mac.ops.get_media_type(hw) == ixgbe_media_type_copper) {
2932 /* Turn off the copper */
2933 ixgbe_set_phy_power(hw, false);
2935 /* Turn off the laser */
2936 ixgbe_disable_tx_laser(hw);
2943 * Reset and stop device.
2946 ixgbe_dev_close(struct rte_eth_dev *dev)
2948 struct ixgbe_hw *hw =
2949 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2950 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
2951 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
2955 PMD_INIT_FUNC_TRACE();
2957 ixgbe_pf_reset_hw(hw);
2959 ixgbe_dev_stop(dev);
2961 ixgbe_dev_free_queues(dev);
2963 ixgbe_disable_pcie_master(hw);
2965 /* reprogram the RAR[0] in case user changed it. */
2966 ixgbe_set_rar(hw, 0, hw->mac.addr, 0, IXGBE_RAH_AV);
2968 dev->dev_ops = NULL;
2969 dev->rx_pkt_burst = NULL;
2970 dev->tx_pkt_burst = NULL;
2972 /* Unlock any pending hardware semaphore */
2973 ixgbe_swfw_lock_reset(hw);
2975 /* disable uio intr before callback unregister */
2976 rte_intr_disable(intr_handle);
2979 ret = rte_intr_callback_unregister(intr_handle,
2980 ixgbe_dev_interrupt_handler, dev);
2983 } else if (ret != -EAGAIN) {
2985 "intr callback unregister failed: %d",
2989 } while (retries++ < (10 + IXGBE_LINK_UP_TIME));
2991 /* cancel the delay handler before remove dev */
2992 rte_eal_alarm_cancel(ixgbe_dev_interrupt_delayed_handler, dev);
2994 /* uninitialize PF if max_vfs not zero */
2995 ixgbe_pf_host_uninit(dev);
2997 /* remove all the fdir filters & hash */
2998 ixgbe_fdir_filter_uninit(dev);
3000 /* remove all the L2 tunnel filters & hash */
3001 ixgbe_l2_tn_filter_uninit(dev);
3003 /* Remove all ntuple filters of the device */
3004 ixgbe_ntuple_filter_uninit(dev);
3006 /* clear all the filters list */
3007 ixgbe_filterlist_flush();
3009 /* Remove all Traffic Manager configuration */
3010 ixgbe_tm_conf_uninit(dev);
3012 #ifdef RTE_LIBRTE_SECURITY
3013 rte_free(dev->security_ctx);
3022 ixgbe_dev_reset(struct rte_eth_dev *dev)
3026 /* When a DPDK PMD PF begin to reset PF port, it should notify all
3027 * its VF to make them align with it. The detailed notification
3028 * mechanism is PMD specific. As to ixgbe PF, it is rather complex.
3029 * To avoid unexpected behavior in VF, currently reset of PF with
3030 * SR-IOV activation is not supported. It might be supported later.
3032 if (dev->data->sriov.active)
3035 ret = eth_ixgbe_dev_uninit(dev);
3039 ret = eth_ixgbe_dev_init(dev, NULL);
3045 ixgbe_read_stats_registers(struct ixgbe_hw *hw,
3046 struct ixgbe_hw_stats *hw_stats,
3047 struct ixgbe_macsec_stats *macsec_stats,
3048 uint64_t *total_missed_rx, uint64_t *total_qbrc,
3049 uint64_t *total_qprc, uint64_t *total_qprdc)
3051 uint32_t bprc, lxon, lxoff, total;
3052 uint32_t delta_gprc = 0;
3054 /* Workaround for RX byte count not including CRC bytes when CRC
3055 * strip is enabled. CRC bytes are removed from counters when crc_strip
3058 int crc_strip = (IXGBE_READ_REG(hw, IXGBE_HLREG0) &
3059 IXGBE_HLREG0_RXCRCSTRP);
3061 hw_stats->crcerrs += IXGBE_READ_REG(hw, IXGBE_CRCERRS);
3062 hw_stats->illerrc += IXGBE_READ_REG(hw, IXGBE_ILLERRC);
3063 hw_stats->errbc += IXGBE_READ_REG(hw, IXGBE_ERRBC);
3064 hw_stats->mspdc += IXGBE_READ_REG(hw, IXGBE_MSPDC);
3066 for (i = 0; i < 8; i++) {
3067 uint32_t mp = IXGBE_READ_REG(hw, IXGBE_MPC(i));
3069 /* global total per queue */
3070 hw_stats->mpc[i] += mp;
3071 /* Running comprehensive total for stats display */
3072 *total_missed_rx += hw_stats->mpc[i];
3073 if (hw->mac.type == ixgbe_mac_82598EB) {
3074 hw_stats->rnbc[i] +=
3075 IXGBE_READ_REG(hw, IXGBE_RNBC(i));
3076 hw_stats->pxonrxc[i] +=
3077 IXGBE_READ_REG(hw, IXGBE_PXONRXC(i));
3078 hw_stats->pxoffrxc[i] +=
3079 IXGBE_READ_REG(hw, IXGBE_PXOFFRXC(i));
3081 hw_stats->pxonrxc[i] +=
3082 IXGBE_READ_REG(hw, IXGBE_PXONRXCNT(i));
3083 hw_stats->pxoffrxc[i] +=
3084 IXGBE_READ_REG(hw, IXGBE_PXOFFRXCNT(i));
3085 hw_stats->pxon2offc[i] +=
3086 IXGBE_READ_REG(hw, IXGBE_PXON2OFFCNT(i));
3088 hw_stats->pxontxc[i] +=
3089 IXGBE_READ_REG(hw, IXGBE_PXONTXC(i));
3090 hw_stats->pxofftxc[i] +=
3091 IXGBE_READ_REG(hw, IXGBE_PXOFFTXC(i));
3093 for (i = 0; i < IXGBE_QUEUE_STAT_COUNTERS; i++) {
3094 uint32_t delta_qprc = IXGBE_READ_REG(hw, IXGBE_QPRC(i));
3095 uint32_t delta_qptc = IXGBE_READ_REG(hw, IXGBE_QPTC(i));
3096 uint32_t delta_qprdc = IXGBE_READ_REG(hw, IXGBE_QPRDC(i));
3098 delta_gprc += delta_qprc;
3100 hw_stats->qprc[i] += delta_qprc;
3101 hw_stats->qptc[i] += delta_qptc;
3103 hw_stats->qbrc[i] += IXGBE_READ_REG(hw, IXGBE_QBRC_L(i));
3104 hw_stats->qbrc[i] +=
3105 ((uint64_t)IXGBE_READ_REG(hw, IXGBE_QBRC_H(i)) << 32);
3107 hw_stats->qbrc[i] -= delta_qprc * RTE_ETHER_CRC_LEN;
3109 hw_stats->qbtc[i] += IXGBE_READ_REG(hw, IXGBE_QBTC_L(i));
3110 hw_stats->qbtc[i] +=
3111 ((uint64_t)IXGBE_READ_REG(hw, IXGBE_QBTC_H(i)) << 32);
3113 hw_stats->qprdc[i] += delta_qprdc;
3114 *total_qprdc += hw_stats->qprdc[i];
3116 *total_qprc += hw_stats->qprc[i];
3117 *total_qbrc += hw_stats->qbrc[i];
3119 hw_stats->mlfc += IXGBE_READ_REG(hw, IXGBE_MLFC);
3120 hw_stats->mrfc += IXGBE_READ_REG(hw, IXGBE_MRFC);
3121 hw_stats->rlec += IXGBE_READ_REG(hw, IXGBE_RLEC);
3124 * An errata states that gprc actually counts good + missed packets:
3125 * Workaround to set gprc to summated queue packet receives
3127 hw_stats->gprc = *total_qprc;
3129 if (hw->mac.type != ixgbe_mac_82598EB) {
3130 hw_stats->gorc += IXGBE_READ_REG(hw, IXGBE_GORCL);
3131 hw_stats->gorc += ((u64)IXGBE_READ_REG(hw, IXGBE_GORCH) << 32);
3132 hw_stats->gotc += IXGBE_READ_REG(hw, IXGBE_GOTCL);
3133 hw_stats->gotc += ((u64)IXGBE_READ_REG(hw, IXGBE_GOTCH) << 32);
3134 hw_stats->tor += IXGBE_READ_REG(hw, IXGBE_TORL);
3135 hw_stats->tor += ((u64)IXGBE_READ_REG(hw, IXGBE_TORH) << 32);
3136 hw_stats->lxonrxc += IXGBE_READ_REG(hw, IXGBE_LXONRXCNT);
3137 hw_stats->lxoffrxc += IXGBE_READ_REG(hw, IXGBE_LXOFFRXCNT);
3139 hw_stats->lxonrxc += IXGBE_READ_REG(hw, IXGBE_LXONRXC);
3140 hw_stats->lxoffrxc += IXGBE_READ_REG(hw, IXGBE_LXOFFRXC);
3141 /* 82598 only has a counter in the high register */
3142 hw_stats->gorc += IXGBE_READ_REG(hw, IXGBE_GORCH);
3143 hw_stats->gotc += IXGBE_READ_REG(hw, IXGBE_GOTCH);
3144 hw_stats->tor += IXGBE_READ_REG(hw, IXGBE_TORH);
3146 uint64_t old_tpr = hw_stats->tpr;
3148 hw_stats->tpr += IXGBE_READ_REG(hw, IXGBE_TPR);
3149 hw_stats->tpt += IXGBE_READ_REG(hw, IXGBE_TPT);
3152 hw_stats->gorc -= delta_gprc * RTE_ETHER_CRC_LEN;
3154 uint64_t delta_gptc = IXGBE_READ_REG(hw, IXGBE_GPTC);
3155 hw_stats->gptc += delta_gptc;
3156 hw_stats->gotc -= delta_gptc * RTE_ETHER_CRC_LEN;
3157 hw_stats->tor -= (hw_stats->tpr - old_tpr) * RTE_ETHER_CRC_LEN;
3160 * Workaround: mprc hardware is incorrectly counting
3161 * broadcasts, so for now we subtract those.
3163 bprc = IXGBE_READ_REG(hw, IXGBE_BPRC);
3164 hw_stats->bprc += bprc;
3165 hw_stats->mprc += IXGBE_READ_REG(hw, IXGBE_MPRC);
3166 if (hw->mac.type == ixgbe_mac_82598EB)
3167 hw_stats->mprc -= bprc;
3169 hw_stats->prc64 += IXGBE_READ_REG(hw, IXGBE_PRC64);
3170 hw_stats->prc127 += IXGBE_READ_REG(hw, IXGBE_PRC127);
3171 hw_stats->prc255 += IXGBE_READ_REG(hw, IXGBE_PRC255);
3172 hw_stats->prc511 += IXGBE_READ_REG(hw, IXGBE_PRC511);
3173 hw_stats->prc1023 += IXGBE_READ_REG(hw, IXGBE_PRC1023);
3174 hw_stats->prc1522 += IXGBE_READ_REG(hw, IXGBE_PRC1522);
3176 lxon = IXGBE_READ_REG(hw, IXGBE_LXONTXC);
3177 hw_stats->lxontxc += lxon;
3178 lxoff = IXGBE_READ_REG(hw, IXGBE_LXOFFTXC);
3179 hw_stats->lxofftxc += lxoff;
3180 total = lxon + lxoff;
3182 hw_stats->mptc += IXGBE_READ_REG(hw, IXGBE_MPTC);
3183 hw_stats->ptc64 += IXGBE_READ_REG(hw, IXGBE_PTC64);
3184 hw_stats->gptc -= total;
3185 hw_stats->mptc -= total;
3186 hw_stats->ptc64 -= total;
3187 hw_stats->gotc -= total * RTE_ETHER_MIN_LEN;
3189 hw_stats->ruc += IXGBE_READ_REG(hw, IXGBE_RUC);
3190 hw_stats->rfc += IXGBE_READ_REG(hw, IXGBE_RFC);
3191 hw_stats->roc += IXGBE_READ_REG(hw, IXGBE_ROC);
3192 hw_stats->rjc += IXGBE_READ_REG(hw, IXGBE_RJC);
3193 hw_stats->mngprc += IXGBE_READ_REG(hw, IXGBE_MNGPRC);
3194 hw_stats->mngpdc += IXGBE_READ_REG(hw, IXGBE_MNGPDC);
3195 hw_stats->mngptc += IXGBE_READ_REG(hw, IXGBE_MNGPTC);
3196 hw_stats->ptc127 += IXGBE_READ_REG(hw, IXGBE_PTC127);
3197 hw_stats->ptc255 += IXGBE_READ_REG(hw, IXGBE_PTC255);
3198 hw_stats->ptc511 += IXGBE_READ_REG(hw, IXGBE_PTC511);
3199 hw_stats->ptc1023 += IXGBE_READ_REG(hw, IXGBE_PTC1023);
3200 hw_stats->ptc1522 += IXGBE_READ_REG(hw, IXGBE_PTC1522);
3201 hw_stats->bptc += IXGBE_READ_REG(hw, IXGBE_BPTC);
3202 hw_stats->xec += IXGBE_READ_REG(hw, IXGBE_XEC);
3203 hw_stats->fccrc += IXGBE_READ_REG(hw, IXGBE_FCCRC);
3204 hw_stats->fclast += IXGBE_READ_REG(hw, IXGBE_FCLAST);
3205 /* Only read FCOE on 82599 */
3206 if (hw->mac.type != ixgbe_mac_82598EB) {
3207 hw_stats->fcoerpdc += IXGBE_READ_REG(hw, IXGBE_FCOERPDC);
3208 hw_stats->fcoeprc += IXGBE_READ_REG(hw, IXGBE_FCOEPRC);
3209 hw_stats->fcoeptc += IXGBE_READ_REG(hw, IXGBE_FCOEPTC);
3210 hw_stats->fcoedwrc += IXGBE_READ_REG(hw, IXGBE_FCOEDWRC);
3211 hw_stats->fcoedwtc += IXGBE_READ_REG(hw, IXGBE_FCOEDWTC);
3214 /* Flow Director Stats registers */
3215 if (hw->mac.type != ixgbe_mac_82598EB) {
3216 hw_stats->fdirmatch += IXGBE_READ_REG(hw, IXGBE_FDIRMATCH);
3217 hw_stats->fdirmiss += IXGBE_READ_REG(hw, IXGBE_FDIRMISS);
3218 hw_stats->fdirustat_add += IXGBE_READ_REG(hw,
3219 IXGBE_FDIRUSTAT) & 0xFFFF;
3220 hw_stats->fdirustat_remove += (IXGBE_READ_REG(hw,
3221 IXGBE_FDIRUSTAT) >> 16) & 0xFFFF;
3222 hw_stats->fdirfstat_fadd += IXGBE_READ_REG(hw,
3223 IXGBE_FDIRFSTAT) & 0xFFFF;
3224 hw_stats->fdirfstat_fremove += (IXGBE_READ_REG(hw,
3225 IXGBE_FDIRFSTAT) >> 16) & 0xFFFF;
3227 /* MACsec Stats registers */
3228 macsec_stats->out_pkts_untagged += IXGBE_READ_REG(hw, IXGBE_LSECTXUT);
3229 macsec_stats->out_pkts_encrypted +=
3230 IXGBE_READ_REG(hw, IXGBE_LSECTXPKTE);
3231 macsec_stats->out_pkts_protected +=
3232 IXGBE_READ_REG(hw, IXGBE_LSECTXPKTP);
3233 macsec_stats->out_octets_encrypted +=
3234 IXGBE_READ_REG(hw, IXGBE_LSECTXOCTE);
3235 macsec_stats->out_octets_protected +=
3236 IXGBE_READ_REG(hw, IXGBE_LSECTXOCTP);
3237 macsec_stats->in_pkts_untagged += IXGBE_READ_REG(hw, IXGBE_LSECRXUT);
3238 macsec_stats->in_pkts_badtag += IXGBE_READ_REG(hw, IXGBE_LSECRXBAD);
3239 macsec_stats->in_pkts_nosci += IXGBE_READ_REG(hw, IXGBE_LSECRXNOSCI);
3240 macsec_stats->in_pkts_unknownsci +=
3241 IXGBE_READ_REG(hw, IXGBE_LSECRXUNSCI);
3242 macsec_stats->in_octets_decrypted +=
3243 IXGBE_READ_REG(hw, IXGBE_LSECRXOCTD);
3244 macsec_stats->in_octets_validated +=
3245 IXGBE_READ_REG(hw, IXGBE_LSECRXOCTV);
3246 macsec_stats->in_pkts_unchecked += IXGBE_READ_REG(hw, IXGBE_LSECRXUNCH);
3247 macsec_stats->in_pkts_delayed += IXGBE_READ_REG(hw, IXGBE_LSECRXDELAY);
3248 macsec_stats->in_pkts_late += IXGBE_READ_REG(hw, IXGBE_LSECRXLATE);
3249 for (i = 0; i < 2; i++) {
3250 macsec_stats->in_pkts_ok +=
3251 IXGBE_READ_REG(hw, IXGBE_LSECRXOK(i));
3252 macsec_stats->in_pkts_invalid +=
3253 IXGBE_READ_REG(hw, IXGBE_LSECRXINV(i));
3254 macsec_stats->in_pkts_notvalid +=
3255 IXGBE_READ_REG(hw, IXGBE_LSECRXNV(i));
3257 macsec_stats->in_pkts_unusedsa += IXGBE_READ_REG(hw, IXGBE_LSECRXUNSA);
3258 macsec_stats->in_pkts_notusingsa +=
3259 IXGBE_READ_REG(hw, IXGBE_LSECRXNUSA);
3263 * This function is based on ixgbe_update_stats_counters() in ixgbe/ixgbe.c
3266 ixgbe_dev_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats)
3268 struct ixgbe_hw *hw =
3269 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3270 struct ixgbe_hw_stats *hw_stats =
3271 IXGBE_DEV_PRIVATE_TO_STATS(dev->data->dev_private);
3272 struct ixgbe_macsec_stats *macsec_stats =
3273 IXGBE_DEV_PRIVATE_TO_MACSEC_STATS(
3274 dev->data->dev_private);
3275 uint64_t total_missed_rx, total_qbrc, total_qprc, total_qprdc;
3278 total_missed_rx = 0;
3283 ixgbe_read_stats_registers(hw, hw_stats, macsec_stats, &total_missed_rx,
3284 &total_qbrc, &total_qprc, &total_qprdc);
3289 /* Fill out the rte_eth_stats statistics structure */
3290 stats->ipackets = total_qprc;
3291 stats->ibytes = total_qbrc;
3292 stats->opackets = hw_stats->gptc;
3293 stats->obytes = hw_stats->gotc;
3295 for (i = 0; i < IXGBE_QUEUE_STAT_COUNTERS; i++) {
3296 stats->q_ipackets[i] = hw_stats->qprc[i];
3297 stats->q_opackets[i] = hw_stats->qptc[i];
3298 stats->q_ibytes[i] = hw_stats->qbrc[i];
3299 stats->q_obytes[i] = hw_stats->qbtc[i];
3300 stats->q_errors[i] = hw_stats->qprdc[i];
3304 stats->imissed = total_missed_rx;
3305 stats->ierrors = hw_stats->crcerrs +
3322 ixgbe_dev_stats_reset(struct rte_eth_dev *dev)
3324 struct ixgbe_hw_stats *stats =
3325 IXGBE_DEV_PRIVATE_TO_STATS(dev->data->dev_private);
3327 /* HW registers are cleared on read */
3328 ixgbe_dev_stats_get(dev, NULL);
3330 /* Reset software totals */
3331 memset(stats, 0, sizeof(*stats));
3336 /* This function calculates the number of xstats based on the current config */
3338 ixgbe_xstats_calc_num(void) {
3339 return IXGBE_NB_HW_STATS + IXGBE_NB_MACSEC_STATS +
3340 (IXGBE_NB_RXQ_PRIO_STATS * IXGBE_NB_RXQ_PRIO_VALUES) +
3341 (IXGBE_NB_TXQ_PRIO_STATS * IXGBE_NB_TXQ_PRIO_VALUES);
3344 static int ixgbe_dev_xstats_get_names(__rte_unused struct rte_eth_dev *dev,
3345 struct rte_eth_xstat_name *xstats_names, __rte_unused unsigned int size)
3347 const unsigned cnt_stats = ixgbe_xstats_calc_num();
3348 unsigned stat, i, count;
3350 if (xstats_names != NULL) {
3353 /* Note: limit >= cnt_stats checked upstream
3354 * in rte_eth_xstats_names()
3357 /* Extended stats from ixgbe_hw_stats */
3358 for (i = 0; i < IXGBE_NB_HW_STATS; i++) {
3359 strlcpy(xstats_names[count].name,
3360 rte_ixgbe_stats_strings[i].name,
3361 sizeof(xstats_names[count].name));
3366 for (i = 0; i < IXGBE_NB_MACSEC_STATS; i++) {
3367 strlcpy(xstats_names[count].name,
3368 rte_ixgbe_macsec_strings[i].name,
3369 sizeof(xstats_names[count].name));
3373 /* RX Priority Stats */
3374 for (stat = 0; stat < IXGBE_NB_RXQ_PRIO_STATS; stat++) {
3375 for (i = 0; i < IXGBE_NB_RXQ_PRIO_VALUES; i++) {
3376 snprintf(xstats_names[count].name,
3377 sizeof(xstats_names[count].name),
3378 "rx_priority%u_%s", i,
3379 rte_ixgbe_rxq_strings[stat].name);
3384 /* TX Priority Stats */
3385 for (stat = 0; stat < IXGBE_NB_TXQ_PRIO_STATS; stat++) {
3386 for (i = 0; i < IXGBE_NB_TXQ_PRIO_VALUES; i++) {
3387 snprintf(xstats_names[count].name,
3388 sizeof(xstats_names[count].name),
3389 "tx_priority%u_%s", i,
3390 rte_ixgbe_txq_strings[stat].name);
3398 static int ixgbe_dev_xstats_get_names_by_id(
3399 struct rte_eth_dev *dev,
3400 struct rte_eth_xstat_name *xstats_names,
3401 const uint64_t *ids,
3405 const unsigned int cnt_stats = ixgbe_xstats_calc_num();
3406 unsigned int stat, i, count;
3408 if (xstats_names != NULL) {
3411 /* Note: limit >= cnt_stats checked upstream
3412 * in rte_eth_xstats_names()
3415 /* Extended stats from ixgbe_hw_stats */
3416 for (i = 0; i < IXGBE_NB_HW_STATS; i++) {
3417 strlcpy(xstats_names[count].name,
3418 rte_ixgbe_stats_strings[i].name,
3419 sizeof(xstats_names[count].name));
3424 for (i = 0; i < IXGBE_NB_MACSEC_STATS; i++) {
3425 strlcpy(xstats_names[count].name,
3426 rte_ixgbe_macsec_strings[i].name,
3427 sizeof(xstats_names[count].name));
3431 /* RX Priority Stats */
3432 for (stat = 0; stat < IXGBE_NB_RXQ_PRIO_STATS; stat++) {
3433 for (i = 0; i < IXGBE_NB_RXQ_PRIO_VALUES; i++) {
3434 snprintf(xstats_names[count].name,
3435 sizeof(xstats_names[count].name),
3436 "rx_priority%u_%s", i,
3437 rte_ixgbe_rxq_strings[stat].name);
3442 /* TX Priority Stats */
3443 for (stat = 0; stat < IXGBE_NB_TXQ_PRIO_STATS; stat++) {
3444 for (i = 0; i < IXGBE_NB_TXQ_PRIO_VALUES; i++) {
3445 snprintf(xstats_names[count].name,
3446 sizeof(xstats_names[count].name),
3447 "tx_priority%u_%s", i,
3448 rte_ixgbe_txq_strings[stat].name);
3457 uint16_t size = ixgbe_xstats_calc_num();
3458 struct rte_eth_xstat_name xstats_names_copy[size];
3460 ixgbe_dev_xstats_get_names_by_id(dev, xstats_names_copy, NULL,
3463 for (i = 0; i < limit; i++) {
3464 if (ids[i] >= size) {
3465 PMD_INIT_LOG(ERR, "id value isn't valid");
3468 strcpy(xstats_names[i].name,
3469 xstats_names_copy[ids[i]].name);
3474 static int ixgbevf_dev_xstats_get_names(__rte_unused struct rte_eth_dev *dev,
3475 struct rte_eth_xstat_name *xstats_names, unsigned limit)
3479 if (limit < IXGBEVF_NB_XSTATS && xstats_names != NULL)
3482 if (xstats_names != NULL)
3483 for (i = 0; i < IXGBEVF_NB_XSTATS; i++)
3484 strlcpy(xstats_names[i].name,
3485 rte_ixgbevf_stats_strings[i].name,
3486 sizeof(xstats_names[i].name));
3487 return IXGBEVF_NB_XSTATS;
3491 ixgbe_dev_xstats_get(struct rte_eth_dev *dev, struct rte_eth_xstat *xstats,
3494 struct ixgbe_hw *hw =
3495 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3496 struct ixgbe_hw_stats *hw_stats =
3497 IXGBE_DEV_PRIVATE_TO_STATS(dev->data->dev_private);
3498 struct ixgbe_macsec_stats *macsec_stats =
3499 IXGBE_DEV_PRIVATE_TO_MACSEC_STATS(
3500 dev->data->dev_private);
3501 uint64_t total_missed_rx, total_qbrc, total_qprc, total_qprdc;
3502 unsigned i, stat, count = 0;
3504 count = ixgbe_xstats_calc_num();
3509 total_missed_rx = 0;
3514 ixgbe_read_stats_registers(hw, hw_stats, macsec_stats, &total_missed_rx,
3515 &total_qbrc, &total_qprc, &total_qprdc);
3517 /* If this is a reset xstats is NULL, and we have cleared the
3518 * registers by reading them.
3523 /* Extended stats from ixgbe_hw_stats */
3525 for (i = 0; i < IXGBE_NB_HW_STATS; i++) {
3526 xstats[count].value = *(uint64_t *)(((char *)hw_stats) +
3527 rte_ixgbe_stats_strings[i].offset);
3528 xstats[count].id = count;
3533 for (i = 0; i < IXGBE_NB_MACSEC_STATS; i++) {
3534 xstats[count].value = *(uint64_t *)(((char *)macsec_stats) +
3535 rte_ixgbe_macsec_strings[i].offset);
3536 xstats[count].id = count;
3540 /* RX Priority Stats */
3541 for (stat = 0; stat < IXGBE_NB_RXQ_PRIO_STATS; stat++) {
3542 for (i = 0; i < IXGBE_NB_RXQ_PRIO_VALUES; i++) {
3543 xstats[count].value = *(uint64_t *)(((char *)hw_stats) +
3544 rte_ixgbe_rxq_strings[stat].offset +
3545 (sizeof(uint64_t) * i));
3546 xstats[count].id = count;
3551 /* TX Priority Stats */
3552 for (stat = 0; stat < IXGBE_NB_TXQ_PRIO_STATS; stat++) {
3553 for (i = 0; i < IXGBE_NB_TXQ_PRIO_VALUES; i++) {
3554 xstats[count].value = *(uint64_t *)(((char *)hw_stats) +
3555 rte_ixgbe_txq_strings[stat].offset +
3556 (sizeof(uint64_t) * i));
3557 xstats[count].id = count;
3565 ixgbe_dev_xstats_get_by_id(struct rte_eth_dev *dev, const uint64_t *ids,
3566 uint64_t *values, unsigned int n)
3569 struct ixgbe_hw *hw =
3570 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3571 struct ixgbe_hw_stats *hw_stats =
3572 IXGBE_DEV_PRIVATE_TO_STATS(
3573 dev->data->dev_private);
3574 struct ixgbe_macsec_stats *macsec_stats =
3575 IXGBE_DEV_PRIVATE_TO_MACSEC_STATS(
3576 dev->data->dev_private);
3577 uint64_t total_missed_rx, total_qbrc, total_qprc, total_qprdc;
3578 unsigned int i, stat, count = 0;
3580 count = ixgbe_xstats_calc_num();
3582 if (!ids && n < count)
3585 total_missed_rx = 0;
3590 ixgbe_read_stats_registers(hw, hw_stats, macsec_stats,
3591 &total_missed_rx, &total_qbrc, &total_qprc,
3594 /* If this is a reset xstats is NULL, and we have cleared the
3595 * registers by reading them.
3597 if (!ids && !values)
3600 /* Extended stats from ixgbe_hw_stats */
3602 for (i = 0; i < IXGBE_NB_HW_STATS; i++) {
3603 values[count] = *(uint64_t *)(((char *)hw_stats) +
3604 rte_ixgbe_stats_strings[i].offset);
3609 for (i = 0; i < IXGBE_NB_MACSEC_STATS; i++) {
3610 values[count] = *(uint64_t *)(((char *)macsec_stats) +
3611 rte_ixgbe_macsec_strings[i].offset);
3615 /* RX Priority Stats */
3616 for (stat = 0; stat < IXGBE_NB_RXQ_PRIO_STATS; stat++) {
3617 for (i = 0; i < IXGBE_NB_RXQ_PRIO_VALUES; i++) {
3619 *(uint64_t *)(((char *)hw_stats) +
3620 rte_ixgbe_rxq_strings[stat].offset +
3621 (sizeof(uint64_t) * i));
3626 /* TX Priority Stats */
3627 for (stat = 0; stat < IXGBE_NB_TXQ_PRIO_STATS; stat++) {
3628 for (i = 0; i < IXGBE_NB_TXQ_PRIO_VALUES; i++) {
3630 *(uint64_t *)(((char *)hw_stats) +
3631 rte_ixgbe_txq_strings[stat].offset +
3632 (sizeof(uint64_t) * i));
3640 uint16_t size = ixgbe_xstats_calc_num();
3641 uint64_t values_copy[size];
3643 ixgbe_dev_xstats_get_by_id(dev, NULL, values_copy, size);
3645 for (i = 0; i < n; i++) {
3646 if (ids[i] >= size) {
3647 PMD_INIT_LOG(ERR, "id value isn't valid");
3650 values[i] = values_copy[ids[i]];
3656 ixgbe_dev_xstats_reset(struct rte_eth_dev *dev)
3658 struct ixgbe_hw_stats *stats =
3659 IXGBE_DEV_PRIVATE_TO_STATS(dev->data->dev_private);
3660 struct ixgbe_macsec_stats *macsec_stats =
3661 IXGBE_DEV_PRIVATE_TO_MACSEC_STATS(
3662 dev->data->dev_private);
3664 unsigned count = ixgbe_xstats_calc_num();
3666 /* HW registers are cleared on read */
3667 ixgbe_dev_xstats_get(dev, NULL, count);
3669 /* Reset software totals */
3670 memset(stats, 0, sizeof(*stats));
3671 memset(macsec_stats, 0, sizeof(*macsec_stats));
3677 ixgbevf_update_stats(struct rte_eth_dev *dev)
3679 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3680 struct ixgbevf_hw_stats *hw_stats = (struct ixgbevf_hw_stats *)
3681 IXGBE_DEV_PRIVATE_TO_STATS(dev->data->dev_private);
3683 /* Good Rx packet, include VF loopback */
3684 UPDATE_VF_STAT(IXGBE_VFGPRC,
3685 hw_stats->last_vfgprc, hw_stats->vfgprc);
3687 /* Good Rx octets, include VF loopback */
3688 UPDATE_VF_STAT_36BIT(IXGBE_VFGORC_LSB, IXGBE_VFGORC_MSB,
3689 hw_stats->last_vfgorc, hw_stats->vfgorc);
3691 /* Good Tx packet, include VF loopback */
3692 UPDATE_VF_STAT(IXGBE_VFGPTC,
3693 hw_stats->last_vfgptc, hw_stats->vfgptc);
3695 /* Good Tx octets, include VF loopback */
3696 UPDATE_VF_STAT_36BIT(IXGBE_VFGOTC_LSB, IXGBE_VFGOTC_MSB,
3697 hw_stats->last_vfgotc, hw_stats->vfgotc);
3699 /* Rx Multicst Packet */
3700 UPDATE_VF_STAT(IXGBE_VFMPRC,
3701 hw_stats->last_vfmprc, hw_stats->vfmprc);
3705 ixgbevf_dev_xstats_get(struct rte_eth_dev *dev, struct rte_eth_xstat *xstats,
3708 struct ixgbevf_hw_stats *hw_stats = (struct ixgbevf_hw_stats *)
3709 IXGBE_DEV_PRIVATE_TO_STATS(dev->data->dev_private);
3712 if (n < IXGBEVF_NB_XSTATS)
3713 return IXGBEVF_NB_XSTATS;
3715 ixgbevf_update_stats(dev);
3720 /* Extended stats */
3721 for (i = 0; i < IXGBEVF_NB_XSTATS; i++) {
3723 xstats[i].value = *(uint64_t *)(((char *)hw_stats) +
3724 rte_ixgbevf_stats_strings[i].offset);
3727 return IXGBEVF_NB_XSTATS;
3731 ixgbevf_dev_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats)
3733 struct ixgbevf_hw_stats *hw_stats = (struct ixgbevf_hw_stats *)
3734 IXGBE_DEV_PRIVATE_TO_STATS(dev->data->dev_private);
3736 ixgbevf_update_stats(dev);
3741 stats->ipackets = hw_stats->vfgprc;
3742 stats->ibytes = hw_stats->vfgorc;
3743 stats->opackets = hw_stats->vfgptc;
3744 stats->obytes = hw_stats->vfgotc;
3749 ixgbevf_dev_stats_reset(struct rte_eth_dev *dev)
3751 struct ixgbevf_hw_stats *hw_stats = (struct ixgbevf_hw_stats *)
3752 IXGBE_DEV_PRIVATE_TO_STATS(dev->data->dev_private);
3754 /* Sync HW register to the last stats */
3755 ixgbevf_dev_stats_get(dev, NULL);
3757 /* reset HW current stats*/
3758 hw_stats->vfgprc = 0;
3759 hw_stats->vfgorc = 0;
3760 hw_stats->vfgptc = 0;
3761 hw_stats->vfgotc = 0;
3767 ixgbe_fw_version_get(struct rte_eth_dev *dev, char *fw_version, size_t fw_size)
3769 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3770 u16 eeprom_verh, eeprom_verl;
3774 ixgbe_read_eeprom(hw, 0x2e, &eeprom_verh);
3775 ixgbe_read_eeprom(hw, 0x2d, &eeprom_verl);
3777 etrack_id = (eeprom_verh << 16) | eeprom_verl;
3778 ret = snprintf(fw_version, fw_size, "0x%08x", etrack_id);
3780 ret += 1; /* add the size of '\0' */
3781 if (fw_size < (u32)ret)
3788 ixgbe_dev_info_get(struct rte_eth_dev *dev, struct rte_eth_dev_info *dev_info)
3790 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
3791 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3792 struct rte_eth_conf *dev_conf = &dev->data->dev_conf;
3794 dev_info->max_rx_queues = (uint16_t)hw->mac.max_rx_queues;
3795 dev_info->max_tx_queues = (uint16_t)hw->mac.max_tx_queues;
3796 if (RTE_ETH_DEV_SRIOV(dev).active == 0) {
3798 * When DCB/VT is off, maximum number of queues changes,
3799 * except for 82598EB, which remains constant.
3801 if (dev_conf->txmode.mq_mode == ETH_MQ_TX_NONE &&
3802 hw->mac.type != ixgbe_mac_82598EB)
3803 dev_info->max_tx_queues = IXGBE_NONE_MODE_TX_NB_QUEUES;
3805 dev_info->min_rx_bufsize = 1024; /* cf BSIZEPACKET in SRRCTL register */
3806 dev_info->max_rx_pktlen = 15872; /* includes CRC, cf MAXFRS register */
3807 dev_info->max_mac_addrs = hw->mac.num_rar_entries;
3808 dev_info->max_hash_mac_addrs = IXGBE_VMDQ_NUM_UC_MAC;
3809 dev_info->max_vfs = pci_dev->max_vfs;
3810 if (hw->mac.type == ixgbe_mac_82598EB)
3811 dev_info->max_vmdq_pools = ETH_16_POOLS;
3813 dev_info->max_vmdq_pools = ETH_64_POOLS;
3814 dev_info->max_mtu = dev_info->max_rx_pktlen - IXGBE_ETH_OVERHEAD;
3815 dev_info->min_mtu = RTE_ETHER_MIN_MTU;
3816 dev_info->vmdq_queue_num = dev_info->max_rx_queues;
3817 dev_info->rx_queue_offload_capa = ixgbe_get_rx_queue_offloads(dev);
3818 dev_info->rx_offload_capa = (ixgbe_get_rx_port_offloads(dev) |
3819 dev_info->rx_queue_offload_capa);
3820 dev_info->tx_queue_offload_capa = ixgbe_get_tx_queue_offloads(dev);
3821 dev_info->tx_offload_capa = ixgbe_get_tx_port_offloads(dev);
3823 dev_info->default_rxconf = (struct rte_eth_rxconf) {
3825 .pthresh = IXGBE_DEFAULT_RX_PTHRESH,
3826 .hthresh = IXGBE_DEFAULT_RX_HTHRESH,
3827 .wthresh = IXGBE_DEFAULT_RX_WTHRESH,
3829 .rx_free_thresh = IXGBE_DEFAULT_RX_FREE_THRESH,
3834 dev_info->default_txconf = (struct rte_eth_txconf) {
3836 .pthresh = IXGBE_DEFAULT_TX_PTHRESH,
3837 .hthresh = IXGBE_DEFAULT_TX_HTHRESH,
3838 .wthresh = IXGBE_DEFAULT_TX_WTHRESH,
3840 .tx_free_thresh = IXGBE_DEFAULT_TX_FREE_THRESH,
3841 .tx_rs_thresh = IXGBE_DEFAULT_TX_RSBIT_THRESH,
3845 dev_info->rx_desc_lim = rx_desc_lim;
3846 dev_info->tx_desc_lim = tx_desc_lim;
3848 dev_info->hash_key_size = IXGBE_HKEY_MAX_INDEX * sizeof(uint32_t);
3849 dev_info->reta_size = ixgbe_reta_size_get(hw->mac.type);
3850 dev_info->flow_type_rss_offloads = IXGBE_RSS_OFFLOAD_ALL;
3852 dev_info->speed_capa = ETH_LINK_SPEED_1G | ETH_LINK_SPEED_10G;
3853 if (hw->device_id == IXGBE_DEV_ID_X550EM_A_1G_T ||
3854 hw->device_id == IXGBE_DEV_ID_X550EM_A_1G_T_L)
3855 dev_info->speed_capa = ETH_LINK_SPEED_10M |
3856 ETH_LINK_SPEED_100M | ETH_LINK_SPEED_1G;
3858 if (hw->mac.type == ixgbe_mac_X540 ||
3859 hw->mac.type == ixgbe_mac_X540_vf ||
3860 hw->mac.type == ixgbe_mac_X550 ||
3861 hw->mac.type == ixgbe_mac_X550_vf) {
3862 dev_info->speed_capa |= ETH_LINK_SPEED_100M;
3864 if (hw->mac.type == ixgbe_mac_X550) {
3865 dev_info->speed_capa |= ETH_LINK_SPEED_2_5G;
3866 dev_info->speed_capa |= ETH_LINK_SPEED_5G;
3869 /* Driver-preferred Rx/Tx parameters */
3870 dev_info->default_rxportconf.burst_size = 32;
3871 dev_info->default_txportconf.burst_size = 32;
3872 dev_info->default_rxportconf.nb_queues = 1;
3873 dev_info->default_txportconf.nb_queues = 1;
3874 dev_info->default_rxportconf.ring_size = 256;
3875 dev_info->default_txportconf.ring_size = 256;
3880 static const uint32_t *
3881 ixgbe_dev_supported_ptypes_get(struct rte_eth_dev *dev)
3883 static const uint32_t ptypes[] = {
3884 /* For non-vec functions,
3885 * refers to ixgbe_rxd_pkt_info_to_pkt_type();
3886 * for vec functions,
3887 * refers to _recv_raw_pkts_vec().
3891 RTE_PTYPE_L3_IPV4_EXT,
3893 RTE_PTYPE_L3_IPV6_EXT,
3897 RTE_PTYPE_TUNNEL_IP,
3898 RTE_PTYPE_INNER_L3_IPV6,
3899 RTE_PTYPE_INNER_L3_IPV6_EXT,
3900 RTE_PTYPE_INNER_L4_TCP,
3901 RTE_PTYPE_INNER_L4_UDP,
3905 if (dev->rx_pkt_burst == ixgbe_recv_pkts ||
3906 dev->rx_pkt_burst == ixgbe_recv_pkts_lro_single_alloc ||
3907 dev->rx_pkt_burst == ixgbe_recv_pkts_lro_bulk_alloc ||
3908 dev->rx_pkt_burst == ixgbe_recv_pkts_bulk_alloc)
3911 #if defined(RTE_ARCH_X86) || defined(RTE_MACHINE_CPUFLAG_NEON)
3912 if (dev->rx_pkt_burst == ixgbe_recv_pkts_vec ||
3913 dev->rx_pkt_burst == ixgbe_recv_scattered_pkts_vec)
3920 ixgbevf_dev_info_get(struct rte_eth_dev *dev,
3921 struct rte_eth_dev_info *dev_info)
3923 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
3924 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3926 dev_info->max_rx_queues = (uint16_t)hw->mac.max_rx_queues;
3927 dev_info->max_tx_queues = (uint16_t)hw->mac.max_tx_queues;
3928 dev_info->min_rx_bufsize = 1024; /* cf BSIZEPACKET in SRRCTL reg */
3929 dev_info->max_rx_pktlen = 9728; /* includes CRC, cf MAXFRS reg */
3930 dev_info->max_mtu = dev_info->max_rx_pktlen - IXGBE_ETH_OVERHEAD;
3931 dev_info->max_mac_addrs = hw->mac.num_rar_entries;
3932 dev_info->max_hash_mac_addrs = IXGBE_VMDQ_NUM_UC_MAC;
3933 dev_info->max_vfs = pci_dev->max_vfs;
3934 if (hw->mac.type == ixgbe_mac_82598EB)
3935 dev_info->max_vmdq_pools = ETH_16_POOLS;
3937 dev_info->max_vmdq_pools = ETH_64_POOLS;
3938 dev_info->rx_queue_offload_capa = ixgbe_get_rx_queue_offloads(dev);
3939 dev_info->rx_offload_capa = (ixgbe_get_rx_port_offloads(dev) |
3940 dev_info->rx_queue_offload_capa);
3941 dev_info->tx_queue_offload_capa = ixgbe_get_tx_queue_offloads(dev);
3942 dev_info->tx_offload_capa = ixgbe_get_tx_port_offloads(dev);
3943 dev_info->hash_key_size = IXGBE_HKEY_MAX_INDEX * sizeof(uint32_t);
3944 dev_info->reta_size = ixgbe_reta_size_get(hw->mac.type);
3945 dev_info->flow_type_rss_offloads = IXGBE_RSS_OFFLOAD_ALL;
3947 dev_info->default_rxconf = (struct rte_eth_rxconf) {
3949 .pthresh = IXGBE_DEFAULT_RX_PTHRESH,
3950 .hthresh = IXGBE_DEFAULT_RX_HTHRESH,
3951 .wthresh = IXGBE_DEFAULT_RX_WTHRESH,
3953 .rx_free_thresh = IXGBE_DEFAULT_RX_FREE_THRESH,
3958 dev_info->default_txconf = (struct rte_eth_txconf) {
3960 .pthresh = IXGBE_DEFAULT_TX_PTHRESH,
3961 .hthresh = IXGBE_DEFAULT_TX_HTHRESH,
3962 .wthresh = IXGBE_DEFAULT_TX_WTHRESH,
3964 .tx_free_thresh = IXGBE_DEFAULT_TX_FREE_THRESH,
3965 .tx_rs_thresh = IXGBE_DEFAULT_TX_RSBIT_THRESH,
3969 dev_info->rx_desc_lim = rx_desc_lim;
3970 dev_info->tx_desc_lim = tx_desc_lim;
3976 ixgbevf_check_link(struct ixgbe_hw *hw, ixgbe_link_speed *speed,
3977 int *link_up, int wait_to_complete)
3979 struct ixgbe_adapter *adapter = container_of(hw,
3980 struct ixgbe_adapter, hw);
3981 struct ixgbe_mbx_info *mbx = &hw->mbx;
3982 struct ixgbe_mac_info *mac = &hw->mac;
3983 uint32_t links_reg, in_msg;
3986 /* If we were hit with a reset drop the link */
3987 if (!mbx->ops.check_for_rst(hw, 0) || !mbx->timeout)
3988 mac->get_link_status = true;
3990 if (!mac->get_link_status)
3993 /* if link status is down no point in checking to see if pf is up */
3994 links_reg = IXGBE_READ_REG(hw, IXGBE_VFLINKS);
3995 if (!(links_reg & IXGBE_LINKS_UP))
3998 /* for SFP+ modules and DA cables on 82599 it can take up to 500usecs
3999 * before the link status is correct
4001 if (mac->type == ixgbe_mac_82599_vf && wait_to_complete) {
4004 for (i = 0; i < 5; i++) {
4006 links_reg = IXGBE_READ_REG(hw, IXGBE_VFLINKS);
4008 if (!(links_reg & IXGBE_LINKS_UP))
4013 switch (links_reg & IXGBE_LINKS_SPEED_82599) {
4014 case IXGBE_LINKS_SPEED_10G_82599:
4015 *speed = IXGBE_LINK_SPEED_10GB_FULL;
4016 if (hw->mac.type >= ixgbe_mac_X550) {
4017 if (links_reg & IXGBE_LINKS_SPEED_NON_STD)
4018 *speed = IXGBE_LINK_SPEED_2_5GB_FULL;
4021 case IXGBE_LINKS_SPEED_1G_82599:
4022 *speed = IXGBE_LINK_SPEED_1GB_FULL;
4024 case IXGBE_LINKS_SPEED_100_82599:
4025 *speed = IXGBE_LINK_SPEED_100_FULL;
4026 if (hw->mac.type == ixgbe_mac_X550) {
4027 if (links_reg & IXGBE_LINKS_SPEED_NON_STD)
4028 *speed = IXGBE_LINK_SPEED_5GB_FULL;
4031 case IXGBE_LINKS_SPEED_10_X550EM_A:
4032 *speed = IXGBE_LINK_SPEED_UNKNOWN;
4033 /* Since Reserved in older MAC's */
4034 if (hw->mac.type >= ixgbe_mac_X550)
4035 *speed = IXGBE_LINK_SPEED_10_FULL;
4038 *speed = IXGBE_LINK_SPEED_UNKNOWN;
4041 if (wait_to_complete == 0 && adapter->pflink_fullchk == 0) {
4042 if (*speed == IXGBE_LINK_SPEED_UNKNOWN)
4043 mac->get_link_status = true;
4045 mac->get_link_status = false;
4050 /* if the read failed it could just be a mailbox collision, best wait
4051 * until we are called again and don't report an error
4053 if (mbx->ops.read(hw, &in_msg, 1, 0))
4056 if (!(in_msg & IXGBE_VT_MSGTYPE_CTS)) {
4057 /* msg is not CTS and is NACK we must have lost CTS status */
4058 if (in_msg & IXGBE_VT_MSGTYPE_NACK)
4059 mac->get_link_status = false;
4063 /* the pf is talking, if we timed out in the past we reinit */
4064 if (!mbx->timeout) {
4069 /* if we passed all the tests above then the link is up and we no
4070 * longer need to check for link
4072 mac->get_link_status = false;
4075 *link_up = !mac->get_link_status;
4080 ixgbe_dev_setup_link_alarm_handler(void *param)
4082 struct rte_eth_dev *dev = (struct rte_eth_dev *)param;
4083 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4084 struct ixgbe_interrupt *intr =
4085 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
4087 bool autoneg = false;
4089 speed = hw->phy.autoneg_advertised;
4091 ixgbe_get_link_capabilities(hw, &speed, &autoneg);
4093 ixgbe_setup_link(hw, speed, true);
4095 intr->flags &= ~IXGBE_FLAG_NEED_LINK_CONFIG;
4098 /* return 0 means link status changed, -1 means not changed */
4100 ixgbe_dev_link_update_share(struct rte_eth_dev *dev,
4101 int wait_to_complete, int vf)
4103 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4104 struct rte_eth_link link;
4105 ixgbe_link_speed link_speed = IXGBE_LINK_SPEED_UNKNOWN;
4106 struct ixgbe_interrupt *intr =
4107 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
4112 memset(&link, 0, sizeof(link));
4113 link.link_status = ETH_LINK_DOWN;
4114 link.link_speed = ETH_SPEED_NUM_NONE;
4115 link.link_duplex = ETH_LINK_HALF_DUPLEX;
4116 link.link_autoneg = ETH_LINK_AUTONEG;
4118 hw->mac.get_link_status = true;
4120 if (intr->flags & IXGBE_FLAG_NEED_LINK_CONFIG)
4121 return rte_eth_linkstatus_set(dev, &link);
4123 /* check if it needs to wait to complete, if lsc interrupt is enabled */
4124 if (wait_to_complete == 0 || dev->data->dev_conf.intr_conf.lsc != 0)
4128 diag = ixgbevf_check_link(hw, &link_speed, &link_up, wait);
4130 diag = ixgbe_check_link(hw, &link_speed, &link_up, wait);
4133 link.link_speed = ETH_SPEED_NUM_100M;
4134 link.link_duplex = ETH_LINK_FULL_DUPLEX;
4135 return rte_eth_linkstatus_set(dev, &link);
4139 if (ixgbe_get_media_type(hw) == ixgbe_media_type_fiber) {
4140 intr->flags |= IXGBE_FLAG_NEED_LINK_CONFIG;
4141 rte_eal_alarm_set(10,
4142 ixgbe_dev_setup_link_alarm_handler, dev);
4144 return rte_eth_linkstatus_set(dev, &link);
4147 link.link_status = ETH_LINK_UP;
4148 link.link_duplex = ETH_LINK_FULL_DUPLEX;
4150 switch (link_speed) {
4152 case IXGBE_LINK_SPEED_UNKNOWN:
4153 if (hw->device_id == IXGBE_DEV_ID_X550EM_A_1G_T ||
4154 hw->device_id == IXGBE_DEV_ID_X550EM_A_1G_T_L)
4155 link.link_speed = ETH_SPEED_NUM_10M;
4157 link.link_speed = ETH_SPEED_NUM_100M;
4160 case IXGBE_LINK_SPEED_100_FULL:
4161 link.link_speed = ETH_SPEED_NUM_100M;
4164 case IXGBE_LINK_SPEED_1GB_FULL:
4165 link.link_speed = ETH_SPEED_NUM_1G;
4168 case IXGBE_LINK_SPEED_2_5GB_FULL:
4169 link.link_speed = ETH_SPEED_NUM_2_5G;
4172 case IXGBE_LINK_SPEED_5GB_FULL:
4173 link.link_speed = ETH_SPEED_NUM_5G;
4176 case IXGBE_LINK_SPEED_10GB_FULL:
4177 link.link_speed = ETH_SPEED_NUM_10G;
4181 return rte_eth_linkstatus_set(dev, &link);
4185 ixgbe_dev_link_update(struct rte_eth_dev *dev, int wait_to_complete)
4187 return ixgbe_dev_link_update_share(dev, wait_to_complete, 0);
4191 ixgbevf_dev_link_update(struct rte_eth_dev *dev, int wait_to_complete)
4193 return ixgbe_dev_link_update_share(dev, wait_to_complete, 1);
4197 ixgbe_dev_promiscuous_enable(struct rte_eth_dev *dev)
4199 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4202 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
4203 fctrl |= (IXGBE_FCTRL_UPE | IXGBE_FCTRL_MPE);
4204 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
4210 ixgbe_dev_promiscuous_disable(struct rte_eth_dev *dev)
4212 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4215 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
4216 fctrl &= (~IXGBE_FCTRL_UPE);
4217 if (dev->data->all_multicast == 1)
4218 fctrl |= IXGBE_FCTRL_MPE;
4220 fctrl &= (~IXGBE_FCTRL_MPE);
4221 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
4227 ixgbe_dev_allmulticast_enable(struct rte_eth_dev *dev)
4229 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4232 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
4233 fctrl |= IXGBE_FCTRL_MPE;
4234 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
4240 ixgbe_dev_allmulticast_disable(struct rte_eth_dev *dev)
4242 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4245 if (dev->data->promiscuous == 1)
4246 return 0; /* must remain in all_multicast mode */
4248 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
4249 fctrl &= (~IXGBE_FCTRL_MPE);
4250 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
4256 * It clears the interrupt causes and enables the interrupt.
4257 * It will be called once only during nic initialized.
4260 * Pointer to struct rte_eth_dev.
4262 * Enable or Disable.
4265 * - On success, zero.
4266 * - On failure, a negative value.
4269 ixgbe_dev_lsc_interrupt_setup(struct rte_eth_dev *dev, uint8_t on)
4271 struct ixgbe_interrupt *intr =
4272 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
4274 ixgbe_dev_link_status_print(dev);
4276 intr->mask |= IXGBE_EICR_LSC;
4278 intr->mask &= ~IXGBE_EICR_LSC;
4284 * It clears the interrupt causes and enables the interrupt.
4285 * It will be called once only during nic initialized.
4288 * Pointer to struct rte_eth_dev.
4291 * - On success, zero.
4292 * - On failure, a negative value.
4295 ixgbe_dev_rxq_interrupt_setup(struct rte_eth_dev *dev)
4297 struct ixgbe_interrupt *intr =
4298 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
4300 intr->mask |= IXGBE_EICR_RTX_QUEUE;
4306 * It clears the interrupt causes and enables the interrupt.
4307 * It will be called once only during nic initialized.
4310 * Pointer to struct rte_eth_dev.
4313 * - On success, zero.
4314 * - On failure, a negative value.
4317 ixgbe_dev_macsec_interrupt_setup(struct rte_eth_dev *dev)
4319 struct ixgbe_interrupt *intr =
4320 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
4322 intr->mask |= IXGBE_EICR_LINKSEC;
4328 * It reads ICR and sets flag (IXGBE_EICR_LSC) for the link_update.
4331 * Pointer to struct rte_eth_dev.
4334 * - On success, zero.
4335 * - On failure, a negative value.
4338 ixgbe_dev_interrupt_get_status(struct rte_eth_dev *dev)
4341 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4342 struct ixgbe_interrupt *intr =
4343 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
4345 /* clear all cause mask */
4346 ixgbe_disable_intr(hw);
4348 /* read-on-clear nic registers here */
4349 eicr = IXGBE_READ_REG(hw, IXGBE_EICR);
4350 PMD_DRV_LOG(DEBUG, "eicr %x", eicr);
4354 /* set flag for async link update */
4355 if (eicr & IXGBE_EICR_LSC)
4356 intr->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
4358 if (eicr & IXGBE_EICR_MAILBOX)
4359 intr->flags |= IXGBE_FLAG_MAILBOX;
4361 if (eicr & IXGBE_EICR_LINKSEC)
4362 intr->flags |= IXGBE_FLAG_MACSEC;
4364 if (hw->mac.type == ixgbe_mac_X550EM_x &&
4365 hw->phy.type == ixgbe_phy_x550em_ext_t &&
4366 (eicr & IXGBE_EICR_GPI_SDP0_X550EM_x))
4367 intr->flags |= IXGBE_FLAG_PHY_INTERRUPT;
4373 * It gets and then prints the link status.
4376 * Pointer to struct rte_eth_dev.
4379 * - On success, zero.
4380 * - On failure, a negative value.
4383 ixgbe_dev_link_status_print(struct rte_eth_dev *dev)
4385 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
4386 struct rte_eth_link link;
4388 rte_eth_linkstatus_get(dev, &link);
4390 if (link.link_status) {
4391 PMD_INIT_LOG(INFO, "Port %d: Link Up - speed %u Mbps - %s",
4392 (int)(dev->data->port_id),
4393 (unsigned)link.link_speed,
4394 link.link_duplex == ETH_LINK_FULL_DUPLEX ?
4395 "full-duplex" : "half-duplex");
4397 PMD_INIT_LOG(INFO, " Port %d: Link Down",
4398 (int)(dev->data->port_id));
4400 PMD_INIT_LOG(DEBUG, "PCI Address: " PCI_PRI_FMT,
4401 pci_dev->addr.domain,
4403 pci_dev->addr.devid,
4404 pci_dev->addr.function);
4408 * It executes link_update after knowing an interrupt occurred.
4411 * Pointer to struct rte_eth_dev.
4414 * - On success, zero.
4415 * - On failure, a negative value.
4418 ixgbe_dev_interrupt_action(struct rte_eth_dev *dev)
4420 struct ixgbe_interrupt *intr =
4421 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
4423 struct ixgbe_hw *hw =
4424 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4426 PMD_DRV_LOG(DEBUG, "intr action type %d", intr->flags);
4428 if (intr->flags & IXGBE_FLAG_MAILBOX) {
4429 ixgbe_pf_mbx_process(dev);
4430 intr->flags &= ~IXGBE_FLAG_MAILBOX;
4433 if (intr->flags & IXGBE_FLAG_PHY_INTERRUPT) {
4434 ixgbe_handle_lasi(hw);
4435 intr->flags &= ~IXGBE_FLAG_PHY_INTERRUPT;
4438 if (intr->flags & IXGBE_FLAG_NEED_LINK_UPDATE) {
4439 struct rte_eth_link link;
4441 /* get the link status before link update, for predicting later */
4442 rte_eth_linkstatus_get(dev, &link);
4444 ixgbe_dev_link_update(dev, 0);
4447 if (!link.link_status)
4448 /* handle it 1 sec later, wait it being stable */
4449 timeout = IXGBE_LINK_UP_CHECK_TIMEOUT;
4450 /* likely to down */
4452 /* handle it 4 sec later, wait it being stable */
4453 timeout = IXGBE_LINK_DOWN_CHECK_TIMEOUT;
4455 ixgbe_dev_link_status_print(dev);
4456 if (rte_eal_alarm_set(timeout * 1000,
4457 ixgbe_dev_interrupt_delayed_handler, (void *)dev) < 0)
4458 PMD_DRV_LOG(ERR, "Error setting alarm");
4460 /* remember original mask */
4461 intr->mask_original = intr->mask;
4462 /* only disable lsc interrupt */
4463 intr->mask &= ~IXGBE_EIMS_LSC;
4467 PMD_DRV_LOG(DEBUG, "enable intr immediately");
4468 ixgbe_enable_intr(dev);
4474 * Interrupt handler which shall be registered for alarm callback for delayed
4475 * handling specific interrupt to wait for the stable nic state. As the
4476 * NIC interrupt state is not stable for ixgbe after link is just down,
4477 * it needs to wait 4 seconds to get the stable status.
4480 * Pointer to interrupt handle.
4482 * The address of parameter (struct rte_eth_dev *) regsitered before.
4488 ixgbe_dev_interrupt_delayed_handler(void *param)
4490 struct rte_eth_dev *dev = (struct rte_eth_dev *)param;
4491 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
4492 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
4493 struct ixgbe_interrupt *intr =
4494 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
4495 struct ixgbe_hw *hw =
4496 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4499 ixgbe_disable_intr(hw);
4501 eicr = IXGBE_READ_REG(hw, IXGBE_EICR);
4502 if (eicr & IXGBE_EICR_MAILBOX)
4503 ixgbe_pf_mbx_process(dev);
4505 if (intr->flags & IXGBE_FLAG_PHY_INTERRUPT) {
4506 ixgbe_handle_lasi(hw);
4507 intr->flags &= ~IXGBE_FLAG_PHY_INTERRUPT;
4510 if (intr->flags & IXGBE_FLAG_NEED_LINK_UPDATE) {
4511 ixgbe_dev_link_update(dev, 0);
4512 intr->flags &= ~IXGBE_FLAG_NEED_LINK_UPDATE;
4513 ixgbe_dev_link_status_print(dev);
4514 _rte_eth_dev_callback_process(dev, RTE_ETH_EVENT_INTR_LSC,
4518 if (intr->flags & IXGBE_FLAG_MACSEC) {
4519 _rte_eth_dev_callback_process(dev, RTE_ETH_EVENT_MACSEC,
4521 intr->flags &= ~IXGBE_FLAG_MACSEC;
4524 /* restore original mask */
4525 intr->mask = intr->mask_original;
4526 intr->mask_original = 0;
4528 PMD_DRV_LOG(DEBUG, "enable intr in delayed handler S[%08x]", eicr);
4529 ixgbe_enable_intr(dev);
4530 rte_intr_ack(intr_handle);
4534 * Interrupt handler triggered by NIC for handling
4535 * specific interrupt.
4538 * Pointer to interrupt handle.
4540 * The address of parameter (struct rte_eth_dev *) regsitered before.
4546 ixgbe_dev_interrupt_handler(void *param)
4548 struct rte_eth_dev *dev = (struct rte_eth_dev *)param;
4550 ixgbe_dev_interrupt_get_status(dev);
4551 ixgbe_dev_interrupt_action(dev);
4555 ixgbe_dev_led_on(struct rte_eth_dev *dev)
4557 struct ixgbe_hw *hw;
4559 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4560 return ixgbe_led_on(hw, 0) == IXGBE_SUCCESS ? 0 : -ENOTSUP;
4564 ixgbe_dev_led_off(struct rte_eth_dev *dev)
4566 struct ixgbe_hw *hw;
4568 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4569 return ixgbe_led_off(hw, 0) == IXGBE_SUCCESS ? 0 : -ENOTSUP;
4573 ixgbe_flow_ctrl_get(struct rte_eth_dev *dev, struct rte_eth_fc_conf *fc_conf)
4575 struct ixgbe_hw *hw;
4581 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4583 fc_conf->pause_time = hw->fc.pause_time;
4584 fc_conf->high_water = hw->fc.high_water[0];
4585 fc_conf->low_water = hw->fc.low_water[0];
4586 fc_conf->send_xon = hw->fc.send_xon;
4587 fc_conf->autoneg = !hw->fc.disable_fc_autoneg;
4590 * Return rx_pause status according to actual setting of
4593 mflcn_reg = IXGBE_READ_REG(hw, IXGBE_MFLCN);
4594 if (mflcn_reg & (IXGBE_MFLCN_RPFCE | IXGBE_MFLCN_RFCE))
4600 * Return tx_pause status according to actual setting of
4603 fccfg_reg = IXGBE_READ_REG(hw, IXGBE_FCCFG);
4604 if (fccfg_reg & (IXGBE_FCCFG_TFCE_802_3X | IXGBE_FCCFG_TFCE_PRIORITY))
4609 if (rx_pause && tx_pause)
4610 fc_conf->mode = RTE_FC_FULL;
4612 fc_conf->mode = RTE_FC_RX_PAUSE;
4614 fc_conf->mode = RTE_FC_TX_PAUSE;
4616 fc_conf->mode = RTE_FC_NONE;
4622 ixgbe_flow_ctrl_set(struct rte_eth_dev *dev, struct rte_eth_fc_conf *fc_conf)
4624 struct ixgbe_hw *hw;
4626 uint32_t rx_buf_size;
4627 uint32_t max_high_water;
4629 enum ixgbe_fc_mode rte_fcmode_2_ixgbe_fcmode[] = {
4636 PMD_INIT_FUNC_TRACE();
4638 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4639 rx_buf_size = IXGBE_READ_REG(hw, IXGBE_RXPBSIZE(0));
4640 PMD_INIT_LOG(DEBUG, "Rx packet buffer size = 0x%x", rx_buf_size);
4643 * At least reserve one Ethernet frame for watermark
4644 * high_water/low_water in kilo bytes for ixgbe
4646 max_high_water = (rx_buf_size -
4647 RTE_ETHER_MAX_LEN) >> IXGBE_RXPBSIZE_SHIFT;
4648 if ((fc_conf->high_water > max_high_water) ||
4649 (fc_conf->high_water < fc_conf->low_water)) {
4650 PMD_INIT_LOG(ERR, "Invalid high/low water setup value in KB");
4651 PMD_INIT_LOG(ERR, "High_water must <= 0x%x", max_high_water);
4655 hw->fc.requested_mode = rte_fcmode_2_ixgbe_fcmode[fc_conf->mode];
4656 hw->fc.pause_time = fc_conf->pause_time;
4657 hw->fc.high_water[0] = fc_conf->high_water;
4658 hw->fc.low_water[0] = fc_conf->low_water;
4659 hw->fc.send_xon = fc_conf->send_xon;
4660 hw->fc.disable_fc_autoneg = !fc_conf->autoneg;
4662 err = ixgbe_fc_enable(hw);
4664 /* Not negotiated is not an error case */
4665 if ((err == IXGBE_SUCCESS) || (err == IXGBE_ERR_FC_NOT_NEGOTIATED)) {
4667 /* check if we want to forward MAC frames - driver doesn't have native
4668 * capability to do that, so we'll write the registers ourselves */
4670 mflcn = IXGBE_READ_REG(hw, IXGBE_MFLCN);
4672 /* set or clear MFLCN.PMCF bit depending on configuration */
4673 if (fc_conf->mac_ctrl_frame_fwd != 0)
4674 mflcn |= IXGBE_MFLCN_PMCF;
4676 mflcn &= ~IXGBE_MFLCN_PMCF;
4678 IXGBE_WRITE_REG(hw, IXGBE_MFLCN, mflcn);
4679 IXGBE_WRITE_FLUSH(hw);
4684 PMD_INIT_LOG(ERR, "ixgbe_fc_enable = 0x%x", err);
4689 * ixgbe_pfc_enable_generic - Enable flow control
4690 * @hw: pointer to hardware structure
4691 * @tc_num: traffic class number
4692 * Enable flow control according to the current settings.
4695 ixgbe_dcb_pfc_enable_generic(struct ixgbe_hw *hw, uint8_t tc_num)
4698 uint32_t mflcn_reg, fccfg_reg;
4700 uint32_t fcrtl, fcrth;
4704 /* Validate the water mark configuration */
4705 if (!hw->fc.pause_time) {
4706 ret_val = IXGBE_ERR_INVALID_LINK_SETTINGS;
4710 /* Low water mark of zero causes XOFF floods */
4711 if (hw->fc.current_mode & ixgbe_fc_tx_pause) {
4712 /* High/Low water can not be 0 */
4713 if ((!hw->fc.high_water[tc_num]) || (!hw->fc.low_water[tc_num])) {
4714 PMD_INIT_LOG(ERR, "Invalid water mark configuration");
4715 ret_val = IXGBE_ERR_INVALID_LINK_SETTINGS;
4719 if (hw->fc.low_water[tc_num] >= hw->fc.high_water[tc_num]) {
4720 PMD_INIT_LOG(ERR, "Invalid water mark configuration");
4721 ret_val = IXGBE_ERR_INVALID_LINK_SETTINGS;
4725 /* Negotiate the fc mode to use */
4726 ixgbe_fc_autoneg(hw);
4728 /* Disable any previous flow control settings */
4729 mflcn_reg = IXGBE_READ_REG(hw, IXGBE_MFLCN);
4730 mflcn_reg &= ~(IXGBE_MFLCN_RPFCE_SHIFT | IXGBE_MFLCN_RFCE|IXGBE_MFLCN_RPFCE);
4732 fccfg_reg = IXGBE_READ_REG(hw, IXGBE_FCCFG);
4733 fccfg_reg &= ~(IXGBE_FCCFG_TFCE_802_3X | IXGBE_FCCFG_TFCE_PRIORITY);
4735 switch (hw->fc.current_mode) {
4738 * If the count of enabled RX Priority Flow control >1,
4739 * and the TX pause can not be disabled
4742 for (i = 0; i < IXGBE_DCB_MAX_TRAFFIC_CLASS; i++) {
4743 reg = IXGBE_READ_REG(hw, IXGBE_FCRTH_82599(i));
4744 if (reg & IXGBE_FCRTH_FCEN)
4748 fccfg_reg |= IXGBE_FCCFG_TFCE_PRIORITY;
4750 case ixgbe_fc_rx_pause:
4752 * Rx Flow control is enabled and Tx Flow control is
4753 * disabled by software override. Since there really
4754 * isn't a way to advertise that we are capable of RX
4755 * Pause ONLY, we will advertise that we support both
4756 * symmetric and asymmetric Rx PAUSE. Later, we will
4757 * disable the adapter's ability to send PAUSE frames.
4759 mflcn_reg |= IXGBE_MFLCN_RPFCE;
4761 * If the count of enabled RX Priority Flow control >1,
4762 * and the TX pause can not be disabled
4765 for (i = 0; i < IXGBE_DCB_MAX_TRAFFIC_CLASS; i++) {
4766 reg = IXGBE_READ_REG(hw, IXGBE_FCRTH_82599(i));
4767 if (reg & IXGBE_FCRTH_FCEN)
4771 fccfg_reg |= IXGBE_FCCFG_TFCE_PRIORITY;
4773 case ixgbe_fc_tx_pause:
4775 * Tx Flow control is enabled, and Rx Flow control is
4776 * disabled by software override.
4778 fccfg_reg |= IXGBE_FCCFG_TFCE_PRIORITY;
4781 /* Flow control (both Rx and Tx) is enabled by SW override. */
4782 mflcn_reg |= IXGBE_MFLCN_RPFCE;
4783 fccfg_reg |= IXGBE_FCCFG_TFCE_PRIORITY;
4786 PMD_DRV_LOG(DEBUG, "Flow control param set incorrectly");
4787 ret_val = IXGBE_ERR_CONFIG;
4791 /* Set 802.3x based flow control settings. */
4792 mflcn_reg |= IXGBE_MFLCN_DPF;
4793 IXGBE_WRITE_REG(hw, IXGBE_MFLCN, mflcn_reg);
4794 IXGBE_WRITE_REG(hw, IXGBE_FCCFG, fccfg_reg);
4796 /* Set up and enable Rx high/low water mark thresholds, enable XON. */
4797 if ((hw->fc.current_mode & ixgbe_fc_tx_pause) &&
4798 hw->fc.high_water[tc_num]) {
4799 fcrtl = (hw->fc.low_water[tc_num] << 10) | IXGBE_FCRTL_XONE;
4800 IXGBE_WRITE_REG(hw, IXGBE_FCRTL_82599(tc_num), fcrtl);
4801 fcrth = (hw->fc.high_water[tc_num] << 10) | IXGBE_FCRTH_FCEN;
4803 IXGBE_WRITE_REG(hw, IXGBE_FCRTL_82599(tc_num), 0);
4805 * In order to prevent Tx hangs when the internal Tx
4806 * switch is enabled we must set the high water mark
4807 * to the maximum FCRTH value. This allows the Tx
4808 * switch to function even under heavy Rx workloads.
4810 fcrth = IXGBE_READ_REG(hw, IXGBE_RXPBSIZE(tc_num)) - 32;
4812 IXGBE_WRITE_REG(hw, IXGBE_FCRTH_82599(tc_num), fcrth);
4814 /* Configure pause time (2 TCs per register) */
4815 reg = hw->fc.pause_time * 0x00010001;
4816 for (i = 0; i < (IXGBE_DCB_MAX_TRAFFIC_CLASS / 2); i++)
4817 IXGBE_WRITE_REG(hw, IXGBE_FCTTV(i), reg);
4819 /* Configure flow control refresh threshold value */
4820 IXGBE_WRITE_REG(hw, IXGBE_FCRTV, hw->fc.pause_time / 2);
4827 ixgbe_dcb_pfc_enable(struct rte_eth_dev *dev, uint8_t tc_num)
4829 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4830 int32_t ret_val = IXGBE_NOT_IMPLEMENTED;
4832 if (hw->mac.type != ixgbe_mac_82598EB) {
4833 ret_val = ixgbe_dcb_pfc_enable_generic(hw, tc_num);
4839 ixgbe_priority_flow_ctrl_set(struct rte_eth_dev *dev, struct rte_eth_pfc_conf *pfc_conf)
4842 uint32_t rx_buf_size;
4843 uint32_t max_high_water;
4845 uint8_t map[IXGBE_DCB_MAX_USER_PRIORITY] = { 0 };
4846 struct ixgbe_hw *hw =
4847 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4848 struct ixgbe_dcb_config *dcb_config =
4849 IXGBE_DEV_PRIVATE_TO_DCB_CFG(dev->data->dev_private);
4851 enum ixgbe_fc_mode rte_fcmode_2_ixgbe_fcmode[] = {
4858 PMD_INIT_FUNC_TRACE();
4860 ixgbe_dcb_unpack_map_cee(dcb_config, IXGBE_DCB_RX_CONFIG, map);
4861 tc_num = map[pfc_conf->priority];
4862 rx_buf_size = IXGBE_READ_REG(hw, IXGBE_RXPBSIZE(tc_num));
4863 PMD_INIT_LOG(DEBUG, "Rx packet buffer size = 0x%x", rx_buf_size);
4865 * At least reserve one Ethernet frame for watermark
4866 * high_water/low_water in kilo bytes for ixgbe
4868 max_high_water = (rx_buf_size -
4869 RTE_ETHER_MAX_LEN) >> IXGBE_RXPBSIZE_SHIFT;
4870 if ((pfc_conf->fc.high_water > max_high_water) ||
4871 (pfc_conf->fc.high_water <= pfc_conf->fc.low_water)) {
4872 PMD_INIT_LOG(ERR, "Invalid high/low water setup value in KB");
4873 PMD_INIT_LOG(ERR, "High_water must <= 0x%x", max_high_water);
4877 hw->fc.requested_mode = rte_fcmode_2_ixgbe_fcmode[pfc_conf->fc.mode];
4878 hw->fc.pause_time = pfc_conf->fc.pause_time;
4879 hw->fc.send_xon = pfc_conf->fc.send_xon;
4880 hw->fc.low_water[tc_num] = pfc_conf->fc.low_water;
4881 hw->fc.high_water[tc_num] = pfc_conf->fc.high_water;
4883 err = ixgbe_dcb_pfc_enable(dev, tc_num);
4885 /* Not negotiated is not an error case */
4886 if ((err == IXGBE_SUCCESS) || (err == IXGBE_ERR_FC_NOT_NEGOTIATED))
4889 PMD_INIT_LOG(ERR, "ixgbe_dcb_pfc_enable = 0x%x", err);
4894 ixgbe_dev_rss_reta_update(struct rte_eth_dev *dev,
4895 struct rte_eth_rss_reta_entry64 *reta_conf,
4898 uint16_t i, sp_reta_size;
4901 uint16_t idx, shift;
4902 struct ixgbe_adapter *adapter = dev->data->dev_private;
4903 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4906 PMD_INIT_FUNC_TRACE();
4908 if (!ixgbe_rss_update_sp(hw->mac.type)) {
4909 PMD_DRV_LOG(ERR, "RSS reta update is not supported on this "
4914 sp_reta_size = ixgbe_reta_size_get(hw->mac.type);
4915 if (reta_size != sp_reta_size) {
4916 PMD_DRV_LOG(ERR, "The size of hash lookup table configured "
4917 "(%d) doesn't match the number hardware can supported "
4918 "(%d)", reta_size, sp_reta_size);
4922 for (i = 0; i < reta_size; i += IXGBE_4_BIT_WIDTH) {
4923 idx = i / RTE_RETA_GROUP_SIZE;
4924 shift = i % RTE_RETA_GROUP_SIZE;
4925 mask = (uint8_t)((reta_conf[idx].mask >> shift) &
4929 reta_reg = ixgbe_reta_reg_get(hw->mac.type, i);
4930 if (mask == IXGBE_4_BIT_MASK)
4933 r = IXGBE_READ_REG(hw, reta_reg);
4934 for (j = 0, reta = 0; j < IXGBE_4_BIT_WIDTH; j++) {
4935 if (mask & (0x1 << j))
4936 reta |= reta_conf[idx].reta[shift + j] <<
4939 reta |= r & (IXGBE_8_BIT_MASK <<
4942 IXGBE_WRITE_REG(hw, reta_reg, reta);
4944 adapter->rss_reta_updated = 1;
4950 ixgbe_dev_rss_reta_query(struct rte_eth_dev *dev,
4951 struct rte_eth_rss_reta_entry64 *reta_conf,
4954 uint16_t i, sp_reta_size;
4957 uint16_t idx, shift;
4958 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4961 PMD_INIT_FUNC_TRACE();
4962 sp_reta_size = ixgbe_reta_size_get(hw->mac.type);
4963 if (reta_size != sp_reta_size) {
4964 PMD_DRV_LOG(ERR, "The size of hash lookup table configured "
4965 "(%d) doesn't match the number hardware can supported "
4966 "(%d)", reta_size, sp_reta_size);
4970 for (i = 0; i < reta_size; i += IXGBE_4_BIT_WIDTH) {
4971 idx = i / RTE_RETA_GROUP_SIZE;
4972 shift = i % RTE_RETA_GROUP_SIZE;
4973 mask = (uint8_t)((reta_conf[idx].mask >> shift) &
4978 reta_reg = ixgbe_reta_reg_get(hw->mac.type, i);
4979 reta = IXGBE_READ_REG(hw, reta_reg);
4980 for (j = 0; j < IXGBE_4_BIT_WIDTH; j++) {
4981 if (mask & (0x1 << j))
4982 reta_conf[idx].reta[shift + j] =
4983 ((reta >> (CHAR_BIT * j)) &
4992 ixgbe_add_rar(struct rte_eth_dev *dev, struct rte_ether_addr *mac_addr,
4993 uint32_t index, uint32_t pool)
4995 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4996 uint32_t enable_addr = 1;
4998 return ixgbe_set_rar(hw, index, mac_addr->addr_bytes,
5003 ixgbe_remove_rar(struct rte_eth_dev *dev, uint32_t index)
5005 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5007 ixgbe_clear_rar(hw, index);
5011 ixgbe_set_default_mac_addr(struct rte_eth_dev *dev, struct rte_ether_addr *addr)
5013 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
5015 ixgbe_remove_rar(dev, 0);
5016 ixgbe_add_rar(dev, addr, 0, pci_dev->max_vfs);
5022 is_device_supported(struct rte_eth_dev *dev, struct rte_pci_driver *drv)
5024 if (strcmp(dev->device->driver->name, drv->driver.name))
5031 is_ixgbe_supported(struct rte_eth_dev *dev)
5033 return is_device_supported(dev, &rte_ixgbe_pmd);
5037 ixgbe_dev_mtu_set(struct rte_eth_dev *dev, uint16_t mtu)
5041 struct ixgbe_hw *hw;
5042 struct rte_eth_dev_info dev_info;
5043 uint32_t frame_size = mtu + IXGBE_ETH_OVERHEAD;
5044 struct rte_eth_dev_data *dev_data = dev->data;
5047 ret = ixgbe_dev_info_get(dev, &dev_info);
5051 /* check that mtu is within the allowed range */
5052 if (mtu < RTE_ETHER_MIN_MTU || frame_size > dev_info.max_rx_pktlen)
5055 /* If device is started, refuse mtu that requires the support of
5056 * scattered packets when this feature has not been enabled before.
5058 if (dev_data->dev_started && !dev_data->scattered_rx &&
5059 (frame_size + 2 * IXGBE_VLAN_TAG_SIZE >
5060 dev->data->min_rx_buf_size - RTE_PKTMBUF_HEADROOM)) {
5061 PMD_INIT_LOG(ERR, "Stop port first.");
5065 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5066 hlreg0 = IXGBE_READ_REG(hw, IXGBE_HLREG0);
5068 /* switch to jumbo mode if needed */
5069 if (frame_size > RTE_ETHER_MAX_LEN) {
5070 dev->data->dev_conf.rxmode.offloads |=
5071 DEV_RX_OFFLOAD_JUMBO_FRAME;
5072 hlreg0 |= IXGBE_HLREG0_JUMBOEN;
5074 dev->data->dev_conf.rxmode.offloads &=
5075 ~DEV_RX_OFFLOAD_JUMBO_FRAME;
5076 hlreg0 &= ~IXGBE_HLREG0_JUMBOEN;
5078 IXGBE_WRITE_REG(hw, IXGBE_HLREG0, hlreg0);
5080 /* update max frame size */
5081 dev->data->dev_conf.rxmode.max_rx_pkt_len = frame_size;
5083 maxfrs = IXGBE_READ_REG(hw, IXGBE_MAXFRS);
5084 maxfrs &= 0x0000FFFF;
5085 maxfrs |= (dev->data->dev_conf.rxmode.max_rx_pkt_len << 16);
5086 IXGBE_WRITE_REG(hw, IXGBE_MAXFRS, maxfrs);
5092 * Virtual Function operations
5095 ixgbevf_intr_disable(struct rte_eth_dev *dev)
5097 struct ixgbe_interrupt *intr =
5098 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
5099 struct ixgbe_hw *hw =
5100 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5102 PMD_INIT_FUNC_TRACE();
5104 /* Clear interrupt mask to stop from interrupts being generated */
5105 IXGBE_WRITE_REG(hw, IXGBE_VTEIMC, IXGBE_VF_IRQ_CLEAR_MASK);
5107 IXGBE_WRITE_FLUSH(hw);
5109 /* Clear mask value. */
5114 ixgbevf_intr_enable(struct rte_eth_dev *dev)
5116 struct ixgbe_interrupt *intr =
5117 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
5118 struct ixgbe_hw *hw =
5119 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5121 PMD_INIT_FUNC_TRACE();
5123 /* VF enable interrupt autoclean */
5124 IXGBE_WRITE_REG(hw, IXGBE_VTEIAM, IXGBE_VF_IRQ_ENABLE_MASK);
5125 IXGBE_WRITE_REG(hw, IXGBE_VTEIAC, IXGBE_VF_IRQ_ENABLE_MASK);
5126 IXGBE_WRITE_REG(hw, IXGBE_VTEIMS, IXGBE_VF_IRQ_ENABLE_MASK);
5128 IXGBE_WRITE_FLUSH(hw);
5130 /* Save IXGBE_VTEIMS value to mask. */
5131 intr->mask = IXGBE_VF_IRQ_ENABLE_MASK;
5135 ixgbevf_dev_configure(struct rte_eth_dev *dev)
5137 struct rte_eth_conf *conf = &dev->data->dev_conf;
5138 struct ixgbe_adapter *adapter = dev->data->dev_private;
5140 PMD_INIT_LOG(DEBUG, "Configured Virtual Function port id: %d",
5141 dev->data->port_id);
5144 * VF has no ability to enable/disable HW CRC
5145 * Keep the persistent behavior the same as Host PF
5147 #ifndef RTE_LIBRTE_IXGBE_PF_DISABLE_STRIP_CRC
5148 if (conf->rxmode.offloads & DEV_RX_OFFLOAD_KEEP_CRC) {
5149 PMD_INIT_LOG(NOTICE, "VF can't disable HW CRC Strip");
5150 conf->rxmode.offloads &= ~DEV_RX_OFFLOAD_KEEP_CRC;
5153 if (!(conf->rxmode.offloads & DEV_RX_OFFLOAD_KEEP_CRC)) {
5154 PMD_INIT_LOG(NOTICE, "VF can't enable HW CRC Strip");
5155 conf->rxmode.offloads |= DEV_RX_OFFLOAD_KEEP_CRC;
5160 * Initialize to TRUE. If any of Rx queues doesn't meet the bulk
5161 * allocation or vector Rx preconditions we will reset it.
5163 adapter->rx_bulk_alloc_allowed = true;
5164 adapter->rx_vec_allowed = true;
5170 ixgbevf_dev_start(struct rte_eth_dev *dev)
5172 struct ixgbe_hw *hw =
5173 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5174 uint32_t intr_vector = 0;
5175 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
5176 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
5180 PMD_INIT_FUNC_TRACE();
5182 /* Stop the link setup handler before resetting the HW. */
5183 rte_eal_alarm_cancel(ixgbe_dev_setup_link_alarm_handler, dev);
5185 err = hw->mac.ops.reset_hw(hw);
5187 PMD_INIT_LOG(ERR, "Unable to reset vf hardware (%d)", err);
5190 hw->mac.get_link_status = true;
5192 /* negotiate mailbox API version to use with the PF. */
5193 ixgbevf_negotiate_api(hw);
5195 ixgbevf_dev_tx_init(dev);
5197 /* This can fail when allocating mbufs for descriptor rings */
5198 err = ixgbevf_dev_rx_init(dev);
5200 PMD_INIT_LOG(ERR, "Unable to initialize RX hardware (%d)", err);
5201 ixgbe_dev_clear_queues(dev);
5206 ixgbevf_set_vfta_all(dev, 1);
5209 mask = ETH_VLAN_STRIP_MASK | ETH_VLAN_FILTER_MASK |
5210 ETH_VLAN_EXTEND_MASK;
5211 err = ixgbevf_vlan_offload_config(dev, mask);
5213 PMD_INIT_LOG(ERR, "Unable to set VLAN offload (%d)", err);
5214 ixgbe_dev_clear_queues(dev);
5218 ixgbevf_dev_rxtx_start(dev);
5220 /* check and configure queue intr-vector mapping */
5221 if (rte_intr_cap_multiple(intr_handle) &&
5222 dev->data->dev_conf.intr_conf.rxq) {
5223 /* According to datasheet, only vector 0/1/2 can be used,
5224 * now only one vector is used for Rx queue
5227 if (rte_intr_efd_enable(intr_handle, intr_vector))
5231 if (rte_intr_dp_is_en(intr_handle) && !intr_handle->intr_vec) {
5232 intr_handle->intr_vec =
5233 rte_zmalloc("intr_vec",
5234 dev->data->nb_rx_queues * sizeof(int), 0);
5235 if (intr_handle->intr_vec == NULL) {
5236 PMD_INIT_LOG(ERR, "Failed to allocate %d rx_queues"
5237 " intr_vec", dev->data->nb_rx_queues);
5241 ixgbevf_configure_msix(dev);
5243 /* When a VF port is bound to VFIO-PCI, only miscellaneous interrupt
5244 * is mapped to VFIO vector 0 in eth_ixgbevf_dev_init( ).
5245 * If previous VFIO interrupt mapping setting in eth_ixgbevf_dev_init( )
5246 * is not cleared, it will fail when following rte_intr_enable( ) tries
5247 * to map Rx queue interrupt to other VFIO vectors.
5248 * So clear uio/vfio intr/evevnfd first to avoid failure.
5250 rte_intr_disable(intr_handle);
5252 rte_intr_enable(intr_handle);
5254 /* Re-enable interrupt for VF */
5255 ixgbevf_intr_enable(dev);
5258 * Update link status right before return, because it may
5259 * start link configuration process in a separate thread.
5261 ixgbevf_dev_link_update(dev, 0);
5263 hw->adapter_stopped = false;
5269 ixgbevf_dev_stop(struct rte_eth_dev *dev)
5271 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5272 struct ixgbe_adapter *adapter = dev->data->dev_private;
5273 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
5274 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
5276 if (hw->adapter_stopped)
5279 PMD_INIT_FUNC_TRACE();
5281 rte_eal_alarm_cancel(ixgbe_dev_setup_link_alarm_handler, dev);
5283 ixgbevf_intr_disable(dev);
5285 hw->adapter_stopped = 1;
5286 ixgbe_stop_adapter(hw);
5289 * Clear what we set, but we still keep shadow_vfta to
5290 * restore after device starts
5292 ixgbevf_set_vfta_all(dev, 0);
5294 /* Clear stored conf */
5295 dev->data->scattered_rx = 0;
5297 ixgbe_dev_clear_queues(dev);
5299 /* Clean datapath event and queue/vec mapping */
5300 rte_intr_efd_disable(intr_handle);
5301 if (intr_handle->intr_vec != NULL) {
5302 rte_free(intr_handle->intr_vec);
5303 intr_handle->intr_vec = NULL;
5306 adapter->rss_reta_updated = 0;
5310 ixgbevf_dev_close(struct rte_eth_dev *dev)
5312 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5313 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
5314 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
5316 PMD_INIT_FUNC_TRACE();
5320 ixgbevf_dev_stop(dev);
5322 ixgbe_dev_free_queues(dev);
5325 * Remove the VF MAC address ro ensure
5326 * that the VF traffic goes to the PF
5327 * after stop, close and detach of the VF
5329 ixgbevf_remove_mac_addr(dev, 0);
5331 dev->dev_ops = NULL;
5332 dev->rx_pkt_burst = NULL;
5333 dev->tx_pkt_burst = NULL;
5335 rte_intr_disable(intr_handle);
5336 rte_intr_callback_unregister(intr_handle,
5337 ixgbevf_dev_interrupt_handler, dev);
5344 ixgbevf_dev_reset(struct rte_eth_dev *dev)
5348 ret = eth_ixgbevf_dev_uninit(dev);
5352 ret = eth_ixgbevf_dev_init(dev);
5357 static void ixgbevf_set_vfta_all(struct rte_eth_dev *dev, bool on)
5359 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5360 struct ixgbe_vfta *shadow_vfta =
5361 IXGBE_DEV_PRIVATE_TO_VFTA(dev->data->dev_private);
5362 int i = 0, j = 0, vfta = 0, mask = 1;
5364 for (i = 0; i < IXGBE_VFTA_SIZE; i++) {
5365 vfta = shadow_vfta->vfta[i];
5368 for (j = 0; j < 32; j++) {
5370 ixgbe_set_vfta(hw, (i<<5)+j, 0,
5380 ixgbevf_vlan_filter_set(struct rte_eth_dev *dev, uint16_t vlan_id, int on)
5382 struct ixgbe_hw *hw =
5383 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5384 struct ixgbe_vfta *shadow_vfta =
5385 IXGBE_DEV_PRIVATE_TO_VFTA(dev->data->dev_private);
5386 uint32_t vid_idx = 0;
5387 uint32_t vid_bit = 0;
5390 PMD_INIT_FUNC_TRACE();
5392 /* vind is not used in VF driver, set to 0, check ixgbe_set_vfta_vf */
5393 ret = ixgbe_set_vfta(hw, vlan_id, 0, !!on, false);
5395 PMD_INIT_LOG(ERR, "Unable to set VF vlan");
5398 vid_idx = (uint32_t) ((vlan_id >> 5) & 0x7F);
5399 vid_bit = (uint32_t) (1 << (vlan_id & 0x1F));
5401 /* Save what we set and retore it after device reset */
5403 shadow_vfta->vfta[vid_idx] |= vid_bit;
5405 shadow_vfta->vfta[vid_idx] &= ~vid_bit;
5411 ixgbevf_vlan_strip_queue_set(struct rte_eth_dev *dev, uint16_t queue, int on)
5413 struct ixgbe_hw *hw =
5414 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5417 PMD_INIT_FUNC_TRACE();
5419 if (queue >= hw->mac.max_rx_queues)
5422 ctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(queue));
5424 ctrl |= IXGBE_RXDCTL_VME;
5426 ctrl &= ~IXGBE_RXDCTL_VME;
5427 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(queue), ctrl);
5429 ixgbe_vlan_hw_strip_bitmap_set(dev, queue, on);
5433 ixgbevf_vlan_offload_config(struct rte_eth_dev *dev, int mask)
5435 struct ixgbe_rx_queue *rxq;
5439 /* VF function only support hw strip feature, others are not support */
5440 if (mask & ETH_VLAN_STRIP_MASK) {
5441 for (i = 0; i < dev->data->nb_rx_queues; i++) {
5442 rxq = dev->data->rx_queues[i];
5443 on = !!(rxq->offloads & DEV_RX_OFFLOAD_VLAN_STRIP);
5444 ixgbevf_vlan_strip_queue_set(dev, i, on);
5452 ixgbevf_vlan_offload_set(struct rte_eth_dev *dev, int mask)
5454 ixgbe_config_vlan_strip_on_all_queues(dev, mask);
5456 ixgbevf_vlan_offload_config(dev, mask);
5462 ixgbe_vt_check(struct ixgbe_hw *hw)
5466 /* if Virtualization Technology is enabled */
5467 reg_val = IXGBE_READ_REG(hw, IXGBE_VT_CTL);
5468 if (!(reg_val & IXGBE_VT_CTL_VT_ENABLE)) {
5469 PMD_INIT_LOG(ERR, "VT must be enabled for this setting");
5477 ixgbe_uta_vector(struct ixgbe_hw *hw, struct rte_ether_addr *uc_addr)
5479 uint32_t vector = 0;
5481 switch (hw->mac.mc_filter_type) {
5482 case 0: /* use bits [47:36] of the address */
5483 vector = ((uc_addr->addr_bytes[4] >> 4) |
5484 (((uint16_t)uc_addr->addr_bytes[5]) << 4));
5486 case 1: /* use bits [46:35] of the address */
5487 vector = ((uc_addr->addr_bytes[4] >> 3) |
5488 (((uint16_t)uc_addr->addr_bytes[5]) << 5));
5490 case 2: /* use bits [45:34] of the address */
5491 vector = ((uc_addr->addr_bytes[4] >> 2) |
5492 (((uint16_t)uc_addr->addr_bytes[5]) << 6));
5494 case 3: /* use bits [43:32] of the address */
5495 vector = ((uc_addr->addr_bytes[4]) |
5496 (((uint16_t)uc_addr->addr_bytes[5]) << 8));
5498 default: /* Invalid mc_filter_type */
5502 /* vector can only be 12-bits or boundary will be exceeded */
5508 ixgbe_uc_hash_table_set(struct rte_eth_dev *dev,
5509 struct rte_ether_addr *mac_addr, uint8_t on)
5516 const uint32_t ixgbe_uta_idx_mask = 0x7F;
5517 const uint32_t ixgbe_uta_bit_shift = 5;
5518 const uint32_t ixgbe_uta_bit_mask = (0x1 << ixgbe_uta_bit_shift) - 1;
5519 const uint32_t bit1 = 0x1;
5521 struct ixgbe_hw *hw =
5522 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5523 struct ixgbe_uta_info *uta_info =
5524 IXGBE_DEV_PRIVATE_TO_UTA(dev->data->dev_private);
5526 /* The UTA table only exists on 82599 hardware and newer */
5527 if (hw->mac.type < ixgbe_mac_82599EB)
5530 vector = ixgbe_uta_vector(hw, mac_addr);
5531 uta_idx = (vector >> ixgbe_uta_bit_shift) & ixgbe_uta_idx_mask;
5532 uta_shift = vector & ixgbe_uta_bit_mask;
5534 rc = ((uta_info->uta_shadow[uta_idx] >> uta_shift & bit1) != 0);
5538 reg_val = IXGBE_READ_REG(hw, IXGBE_UTA(uta_idx));
5540 uta_info->uta_in_use++;
5541 reg_val |= (bit1 << uta_shift);
5542 uta_info->uta_shadow[uta_idx] |= (bit1 << uta_shift);
5544 uta_info->uta_in_use--;
5545 reg_val &= ~(bit1 << uta_shift);
5546 uta_info->uta_shadow[uta_idx] &= ~(bit1 << uta_shift);
5549 IXGBE_WRITE_REG(hw, IXGBE_UTA(uta_idx), reg_val);
5551 if (uta_info->uta_in_use > 0)
5552 IXGBE_WRITE_REG(hw, IXGBE_MCSTCTRL,
5553 IXGBE_MCSTCTRL_MFE | hw->mac.mc_filter_type);
5555 IXGBE_WRITE_REG(hw, IXGBE_MCSTCTRL, hw->mac.mc_filter_type);
5561 ixgbe_uc_all_hash_table_set(struct rte_eth_dev *dev, uint8_t on)
5564 struct ixgbe_hw *hw =
5565 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5566 struct ixgbe_uta_info *uta_info =
5567 IXGBE_DEV_PRIVATE_TO_UTA(dev->data->dev_private);
5569 /* The UTA table only exists on 82599 hardware and newer */
5570 if (hw->mac.type < ixgbe_mac_82599EB)
5574 for (i = 0; i < ETH_VMDQ_NUM_UC_HASH_ARRAY; i++) {
5575 uta_info->uta_shadow[i] = ~0;
5576 IXGBE_WRITE_REG(hw, IXGBE_UTA(i), ~0);
5579 for (i = 0; i < ETH_VMDQ_NUM_UC_HASH_ARRAY; i++) {
5580 uta_info->uta_shadow[i] = 0;
5581 IXGBE_WRITE_REG(hw, IXGBE_UTA(i), 0);
5589 ixgbe_convert_vm_rx_mask_to_val(uint16_t rx_mask, uint32_t orig_val)
5591 uint32_t new_val = orig_val;
5593 if (rx_mask & ETH_VMDQ_ACCEPT_UNTAG)
5594 new_val |= IXGBE_VMOLR_AUPE;
5595 if (rx_mask & ETH_VMDQ_ACCEPT_HASH_MC)
5596 new_val |= IXGBE_VMOLR_ROMPE;
5597 if (rx_mask & ETH_VMDQ_ACCEPT_HASH_UC)
5598 new_val |= IXGBE_VMOLR_ROPE;
5599 if (rx_mask & ETH_VMDQ_ACCEPT_BROADCAST)
5600 new_val |= IXGBE_VMOLR_BAM;
5601 if (rx_mask & ETH_VMDQ_ACCEPT_MULTICAST)
5602 new_val |= IXGBE_VMOLR_MPE;
5607 #define IXGBE_MRCTL_VPME 0x01 /* Virtual Pool Mirroring. */
5608 #define IXGBE_MRCTL_UPME 0x02 /* Uplink Port Mirroring. */
5609 #define IXGBE_MRCTL_DPME 0x04 /* Downlink Port Mirroring. */
5610 #define IXGBE_MRCTL_VLME 0x08 /* VLAN Mirroring. */
5611 #define IXGBE_INVALID_MIRROR_TYPE(mirror_type) \
5612 ((mirror_type) & ~(uint8_t)(ETH_MIRROR_VIRTUAL_POOL_UP | \
5613 ETH_MIRROR_UPLINK_PORT | ETH_MIRROR_DOWNLINK_PORT | ETH_MIRROR_VLAN))
5616 ixgbe_mirror_rule_set(struct rte_eth_dev *dev,
5617 struct rte_eth_mirror_conf *mirror_conf,
5618 uint8_t rule_id, uint8_t on)
5620 uint32_t mr_ctl, vlvf;
5621 uint32_t mp_lsb = 0;
5622 uint32_t mv_msb = 0;
5623 uint32_t mv_lsb = 0;
5624 uint32_t mp_msb = 0;
5627 uint64_t vlan_mask = 0;
5629 const uint8_t pool_mask_offset = 32;
5630 const uint8_t vlan_mask_offset = 32;
5631 const uint8_t dst_pool_offset = 8;
5632 const uint8_t rule_mr_offset = 4;
5633 const uint8_t mirror_rule_mask = 0x0F;
5635 struct ixgbe_mirror_info *mr_info =
5636 (IXGBE_DEV_PRIVATE_TO_PFDATA(dev->data->dev_private));
5637 struct ixgbe_hw *hw =
5638 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5639 uint8_t mirror_type = 0;
5641 if (ixgbe_vt_check(hw) < 0)
5644 if (rule_id >= IXGBE_MAX_MIRROR_RULES)
5647 if (IXGBE_INVALID_MIRROR_TYPE(mirror_conf->rule_type)) {
5648 PMD_DRV_LOG(ERR, "unsupported mirror type 0x%x.",
5649 mirror_conf->rule_type);
5653 if (mirror_conf->rule_type & ETH_MIRROR_VLAN) {
5654 mirror_type |= IXGBE_MRCTL_VLME;
5655 /* Check if vlan id is valid and find conresponding VLAN ID
5658 for (i = 0; i < IXGBE_VLVF_ENTRIES; i++) {
5659 if (mirror_conf->vlan.vlan_mask & (1ULL << i)) {
5660 /* search vlan id related pool vlan filter
5663 reg_index = ixgbe_find_vlvf_slot(
5665 mirror_conf->vlan.vlan_id[i],
5669 vlvf = IXGBE_READ_REG(hw,
5670 IXGBE_VLVF(reg_index));
5671 if ((vlvf & IXGBE_VLVF_VIEN) &&
5672 ((vlvf & IXGBE_VLVF_VLANID_MASK) ==
5673 mirror_conf->vlan.vlan_id[i]))
5674 vlan_mask |= (1ULL << reg_index);
5681 mv_lsb = vlan_mask & 0xFFFFFFFF;
5682 mv_msb = vlan_mask >> vlan_mask_offset;
5684 mr_info->mr_conf[rule_id].vlan.vlan_mask =
5685 mirror_conf->vlan.vlan_mask;
5686 for (i = 0; i < ETH_VMDQ_MAX_VLAN_FILTERS; i++) {
5687 if (mirror_conf->vlan.vlan_mask & (1ULL << i))
5688 mr_info->mr_conf[rule_id].vlan.vlan_id[i] =
5689 mirror_conf->vlan.vlan_id[i];
5694 mr_info->mr_conf[rule_id].vlan.vlan_mask = 0;
5695 for (i = 0; i < ETH_VMDQ_MAX_VLAN_FILTERS; i++)
5696 mr_info->mr_conf[rule_id].vlan.vlan_id[i] = 0;
5701 * if enable pool mirror, write related pool mask register,if disable
5702 * pool mirror, clear PFMRVM register
5704 if (mirror_conf->rule_type & ETH_MIRROR_VIRTUAL_POOL_UP) {
5705 mirror_type |= IXGBE_MRCTL_VPME;
5707 mp_lsb = mirror_conf->pool_mask & 0xFFFFFFFF;
5708 mp_msb = mirror_conf->pool_mask >> pool_mask_offset;
5709 mr_info->mr_conf[rule_id].pool_mask =
5710 mirror_conf->pool_mask;
5715 mr_info->mr_conf[rule_id].pool_mask = 0;
5718 if (mirror_conf->rule_type & ETH_MIRROR_UPLINK_PORT)
5719 mirror_type |= IXGBE_MRCTL_UPME;
5720 if (mirror_conf->rule_type & ETH_MIRROR_DOWNLINK_PORT)
5721 mirror_type |= IXGBE_MRCTL_DPME;
5723 /* read mirror control register and recalculate it */
5724 mr_ctl = IXGBE_READ_REG(hw, IXGBE_MRCTL(rule_id));
5727 mr_ctl |= mirror_type;
5728 mr_ctl &= mirror_rule_mask;
5729 mr_ctl |= mirror_conf->dst_pool << dst_pool_offset;
5731 mr_ctl &= ~(mirror_conf->rule_type & mirror_rule_mask);
5734 mr_info->mr_conf[rule_id].rule_type = mirror_conf->rule_type;
5735 mr_info->mr_conf[rule_id].dst_pool = mirror_conf->dst_pool;
5737 /* write mirrror control register */
5738 IXGBE_WRITE_REG(hw, IXGBE_MRCTL(rule_id), mr_ctl);
5740 /* write pool mirrror control register */
5741 if (mirror_conf->rule_type & ETH_MIRROR_VIRTUAL_POOL_UP) {
5742 IXGBE_WRITE_REG(hw, IXGBE_VMRVM(rule_id), mp_lsb);
5743 IXGBE_WRITE_REG(hw, IXGBE_VMRVM(rule_id + rule_mr_offset),
5746 /* write VLAN mirrror control register */
5747 if (mirror_conf->rule_type & ETH_MIRROR_VLAN) {
5748 IXGBE_WRITE_REG(hw, IXGBE_VMRVLAN(rule_id), mv_lsb);
5749 IXGBE_WRITE_REG(hw, IXGBE_VMRVLAN(rule_id + rule_mr_offset),
5757 ixgbe_mirror_rule_reset(struct rte_eth_dev *dev, uint8_t rule_id)
5760 uint32_t lsb_val = 0;
5761 uint32_t msb_val = 0;
5762 const uint8_t rule_mr_offset = 4;
5764 struct ixgbe_hw *hw =
5765 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5766 struct ixgbe_mirror_info *mr_info =
5767 (IXGBE_DEV_PRIVATE_TO_PFDATA(dev->data->dev_private));
5769 if (ixgbe_vt_check(hw) < 0)
5772 if (rule_id >= IXGBE_MAX_MIRROR_RULES)
5775 memset(&mr_info->mr_conf[rule_id], 0,
5776 sizeof(struct rte_eth_mirror_conf));
5778 /* clear PFVMCTL register */
5779 IXGBE_WRITE_REG(hw, IXGBE_MRCTL(rule_id), mr_ctl);
5781 /* clear pool mask register */
5782 IXGBE_WRITE_REG(hw, IXGBE_VMRVM(rule_id), lsb_val);
5783 IXGBE_WRITE_REG(hw, IXGBE_VMRVM(rule_id + rule_mr_offset), msb_val);
5785 /* clear vlan mask register */
5786 IXGBE_WRITE_REG(hw, IXGBE_VMRVLAN(rule_id), lsb_val);
5787 IXGBE_WRITE_REG(hw, IXGBE_VMRVLAN(rule_id + rule_mr_offset), msb_val);
5793 ixgbevf_dev_rx_queue_intr_enable(struct rte_eth_dev *dev, uint16_t queue_id)
5795 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
5796 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
5797 struct ixgbe_interrupt *intr =
5798 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
5799 struct ixgbe_hw *hw =
5800 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5801 uint32_t vec = IXGBE_MISC_VEC_ID;
5803 if (rte_intr_allow_others(intr_handle))
5804 vec = IXGBE_RX_VEC_START;
5805 intr->mask |= (1 << vec);
5806 RTE_SET_USED(queue_id);
5807 IXGBE_WRITE_REG(hw, IXGBE_VTEIMS, intr->mask);
5809 rte_intr_ack(intr_handle);
5815 ixgbevf_dev_rx_queue_intr_disable(struct rte_eth_dev *dev, uint16_t queue_id)
5817 struct ixgbe_interrupt *intr =
5818 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
5819 struct ixgbe_hw *hw =
5820 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5821 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
5822 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
5823 uint32_t vec = IXGBE_MISC_VEC_ID;
5825 if (rte_intr_allow_others(intr_handle))
5826 vec = IXGBE_RX_VEC_START;
5827 intr->mask &= ~(1 << vec);
5828 RTE_SET_USED(queue_id);
5829 IXGBE_WRITE_REG(hw, IXGBE_VTEIMS, intr->mask);
5835 ixgbe_dev_rx_queue_intr_enable(struct rte_eth_dev *dev, uint16_t queue_id)
5837 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
5838 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
5840 struct ixgbe_hw *hw =
5841 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5842 struct ixgbe_interrupt *intr =
5843 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
5845 if (queue_id < 16) {
5846 ixgbe_disable_intr(hw);
5847 intr->mask |= (1 << queue_id);
5848 ixgbe_enable_intr(dev);
5849 } else if (queue_id < 32) {
5850 mask = IXGBE_READ_REG(hw, IXGBE_EIMS_EX(0));
5851 mask &= (1 << queue_id);
5852 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(0), mask);
5853 } else if (queue_id < 64) {
5854 mask = IXGBE_READ_REG(hw, IXGBE_EIMS_EX(1));
5855 mask &= (1 << (queue_id - 32));
5856 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(1), mask);
5858 rte_intr_ack(intr_handle);
5864 ixgbe_dev_rx_queue_intr_disable(struct rte_eth_dev *dev, uint16_t queue_id)
5867 struct ixgbe_hw *hw =
5868 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5869 struct ixgbe_interrupt *intr =
5870 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
5872 if (queue_id < 16) {
5873 ixgbe_disable_intr(hw);
5874 intr->mask &= ~(1 << queue_id);
5875 ixgbe_enable_intr(dev);
5876 } else if (queue_id < 32) {
5877 mask = IXGBE_READ_REG(hw, IXGBE_EIMS_EX(0));
5878 mask &= ~(1 << queue_id);
5879 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(0), mask);
5880 } else if (queue_id < 64) {
5881 mask = IXGBE_READ_REG(hw, IXGBE_EIMS_EX(1));
5882 mask &= ~(1 << (queue_id - 32));
5883 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(1), mask);
5890 ixgbevf_set_ivar_map(struct ixgbe_hw *hw, int8_t direction,
5891 uint8_t queue, uint8_t msix_vector)
5895 if (direction == -1) {
5897 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
5898 tmp = IXGBE_READ_REG(hw, IXGBE_VTIVAR_MISC);
5901 IXGBE_WRITE_REG(hw, IXGBE_VTIVAR_MISC, tmp);
5903 /* rx or tx cause */
5904 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
5905 idx = ((16 * (queue & 1)) + (8 * direction));
5906 tmp = IXGBE_READ_REG(hw, IXGBE_VTIVAR(queue >> 1));
5907 tmp &= ~(0xFF << idx);
5908 tmp |= (msix_vector << idx);
5909 IXGBE_WRITE_REG(hw, IXGBE_VTIVAR(queue >> 1), tmp);
5914 * set the IVAR registers, mapping interrupt causes to vectors
5916 * pointer to ixgbe_hw struct
5918 * 0 for Rx, 1 for Tx, -1 for other causes
5920 * queue to map the corresponding interrupt to
5922 * the vector to map to the corresponding queue
5925 ixgbe_set_ivar_map(struct ixgbe_hw *hw, int8_t direction,
5926 uint8_t queue, uint8_t msix_vector)
5930 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
5931 if (hw->mac.type == ixgbe_mac_82598EB) {
5932 if (direction == -1)
5934 idx = (((direction * 64) + queue) >> 2) & 0x1F;
5935 tmp = IXGBE_READ_REG(hw, IXGBE_IVAR(idx));
5936 tmp &= ~(0xFF << (8 * (queue & 0x3)));
5937 tmp |= (msix_vector << (8 * (queue & 0x3)));
5938 IXGBE_WRITE_REG(hw, IXGBE_IVAR(idx), tmp);
5939 } else if ((hw->mac.type == ixgbe_mac_82599EB) ||
5940 (hw->mac.type == ixgbe_mac_X540) ||
5941 (hw->mac.type == ixgbe_mac_X550) ||
5942 (hw->mac.type == ixgbe_mac_X550EM_x)) {
5943 if (direction == -1) {
5945 idx = ((queue & 1) * 8);
5946 tmp = IXGBE_READ_REG(hw, IXGBE_IVAR_MISC);
5947 tmp &= ~(0xFF << idx);
5948 tmp |= (msix_vector << idx);
5949 IXGBE_WRITE_REG(hw, IXGBE_IVAR_MISC, tmp);
5951 /* rx or tx causes */
5952 idx = ((16 * (queue & 1)) + (8 * direction));
5953 tmp = IXGBE_READ_REG(hw, IXGBE_IVAR(queue >> 1));
5954 tmp &= ~(0xFF << idx);
5955 tmp |= (msix_vector << idx);
5956 IXGBE_WRITE_REG(hw, IXGBE_IVAR(queue >> 1), tmp);
5962 ixgbevf_configure_msix(struct rte_eth_dev *dev)
5964 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
5965 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
5966 struct ixgbe_hw *hw =
5967 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5969 uint32_t vector_idx = IXGBE_MISC_VEC_ID;
5970 uint32_t base = IXGBE_MISC_VEC_ID;
5972 /* Configure VF other cause ivar */
5973 ixgbevf_set_ivar_map(hw, -1, 1, vector_idx);
5975 /* won't configure msix register if no mapping is done
5976 * between intr vector and event fd.
5978 if (!rte_intr_dp_is_en(intr_handle))
5981 if (rte_intr_allow_others(intr_handle)) {
5982 base = IXGBE_RX_VEC_START;
5983 vector_idx = IXGBE_RX_VEC_START;
5986 /* Configure all RX queues of VF */
5987 for (q_idx = 0; q_idx < dev->data->nb_rx_queues; q_idx++) {
5988 /* Force all queue use vector 0,
5989 * as IXGBE_VF_MAXMSIVECOTR = 1
5991 ixgbevf_set_ivar_map(hw, 0, q_idx, vector_idx);
5992 intr_handle->intr_vec[q_idx] = vector_idx;
5993 if (vector_idx < base + intr_handle->nb_efd - 1)
5997 /* As RX queue setting above show, all queues use the vector 0.
5998 * Set only the ITR value of IXGBE_MISC_VEC_ID.
6000 IXGBE_WRITE_REG(hw, IXGBE_VTEITR(IXGBE_MISC_VEC_ID),
6001 IXGBE_EITR_INTERVAL_US(IXGBE_QUEUE_ITR_INTERVAL_DEFAULT)
6002 | IXGBE_EITR_CNT_WDIS);
6006 * Sets up the hardware to properly generate MSI-X interrupts
6008 * board private structure
6011 ixgbe_configure_msix(struct rte_eth_dev *dev)
6013 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
6014 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
6015 struct ixgbe_hw *hw =
6016 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6017 uint32_t queue_id, base = IXGBE_MISC_VEC_ID;
6018 uint32_t vec = IXGBE_MISC_VEC_ID;
6022 /* won't configure msix register if no mapping is done
6023 * between intr vector and event fd
6024 * but if misx has been enabled already, need to configure
6025 * auto clean, auto mask and throttling.
6027 gpie = IXGBE_READ_REG(hw, IXGBE_GPIE);
6028 if (!rte_intr_dp_is_en(intr_handle) &&
6029 !(gpie & (IXGBE_GPIE_MSIX_MODE | IXGBE_GPIE_PBA_SUPPORT)))
6032 if (rte_intr_allow_others(intr_handle))
6033 vec = base = IXGBE_RX_VEC_START;
6035 /* setup GPIE for MSI-x mode */
6036 gpie = IXGBE_READ_REG(hw, IXGBE_GPIE);
6037 gpie |= IXGBE_GPIE_MSIX_MODE | IXGBE_GPIE_PBA_SUPPORT |
6038 IXGBE_GPIE_OCD | IXGBE_GPIE_EIAME;
6039 /* auto clearing and auto setting corresponding bits in EIMS
6040 * when MSI-X interrupt is triggered
6042 if (hw->mac.type == ixgbe_mac_82598EB) {
6043 IXGBE_WRITE_REG(hw, IXGBE_EIAM, IXGBE_EICS_RTX_QUEUE);
6045 IXGBE_WRITE_REG(hw, IXGBE_EIAM_EX(0), 0xFFFFFFFF);
6046 IXGBE_WRITE_REG(hw, IXGBE_EIAM_EX(1), 0xFFFFFFFF);
6048 IXGBE_WRITE_REG(hw, IXGBE_GPIE, gpie);
6050 /* Populate the IVAR table and set the ITR values to the
6051 * corresponding register.
6053 if (rte_intr_dp_is_en(intr_handle)) {
6054 for (queue_id = 0; queue_id < dev->data->nb_rx_queues;
6056 /* by default, 1:1 mapping */
6057 ixgbe_set_ivar_map(hw, 0, queue_id, vec);
6058 intr_handle->intr_vec[queue_id] = vec;
6059 if (vec < base + intr_handle->nb_efd - 1)
6063 switch (hw->mac.type) {
6064 case ixgbe_mac_82598EB:
6065 ixgbe_set_ivar_map(hw, -1,
6066 IXGBE_IVAR_OTHER_CAUSES_INDEX,
6069 case ixgbe_mac_82599EB:
6070 case ixgbe_mac_X540:
6071 case ixgbe_mac_X550:
6072 case ixgbe_mac_X550EM_x:
6073 ixgbe_set_ivar_map(hw, -1, 1, IXGBE_MISC_VEC_ID);
6079 IXGBE_WRITE_REG(hw, IXGBE_EITR(IXGBE_MISC_VEC_ID),
6080 IXGBE_EITR_INTERVAL_US(IXGBE_QUEUE_ITR_INTERVAL_DEFAULT)
6081 | IXGBE_EITR_CNT_WDIS);
6083 /* set up to autoclear timer, and the vectors */
6084 mask = IXGBE_EIMS_ENABLE_MASK;
6085 mask &= ~(IXGBE_EIMS_OTHER |
6086 IXGBE_EIMS_MAILBOX |
6089 IXGBE_WRITE_REG(hw, IXGBE_EIAC, mask);
6093 ixgbe_set_queue_rate_limit(struct rte_eth_dev *dev,
6094 uint16_t queue_idx, uint16_t tx_rate)
6096 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6097 struct rte_eth_rxmode *rxmode;
6098 uint32_t rf_dec, rf_int;
6100 uint16_t link_speed = dev->data->dev_link.link_speed;
6102 if (queue_idx >= hw->mac.max_tx_queues)
6106 /* Calculate the rate factor values to set */
6107 rf_int = (uint32_t)link_speed / (uint32_t)tx_rate;
6108 rf_dec = (uint32_t)link_speed % (uint32_t)tx_rate;
6109 rf_dec = (rf_dec << IXGBE_RTTBCNRC_RF_INT_SHIFT) / tx_rate;
6111 bcnrc_val = IXGBE_RTTBCNRC_RS_ENA;
6112 bcnrc_val |= ((rf_int << IXGBE_RTTBCNRC_RF_INT_SHIFT) &
6113 IXGBE_RTTBCNRC_RF_INT_MASK_M);
6114 bcnrc_val |= (rf_dec & IXGBE_RTTBCNRC_RF_DEC_MASK);
6119 rxmode = &dev->data->dev_conf.rxmode;
6121 * Set global transmit compensation time to the MMW_SIZE in RTTBCNRM
6122 * register. MMW_SIZE=0x014 if 9728-byte jumbo is supported, otherwise
6125 if ((rxmode->offloads & DEV_RX_OFFLOAD_JUMBO_FRAME) &&
6126 (rxmode->max_rx_pkt_len >= IXGBE_MAX_JUMBO_FRAME_SIZE))
6127 IXGBE_WRITE_REG(hw, IXGBE_RTTBCNRM,
6128 IXGBE_MMW_SIZE_JUMBO_FRAME);
6130 IXGBE_WRITE_REG(hw, IXGBE_RTTBCNRM,
6131 IXGBE_MMW_SIZE_DEFAULT);
6133 /* Set RTTBCNRC of queue X */
6134 IXGBE_WRITE_REG(hw, IXGBE_RTTDQSEL, queue_idx);
6135 IXGBE_WRITE_REG(hw, IXGBE_RTTBCNRC, bcnrc_val);
6136 IXGBE_WRITE_FLUSH(hw);
6142 ixgbevf_add_mac_addr(struct rte_eth_dev *dev, struct rte_ether_addr *mac_addr,
6143 __attribute__((unused)) uint32_t index,
6144 __attribute__((unused)) uint32_t pool)
6146 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6150 * On a 82599 VF, adding again the same MAC addr is not an idempotent
6151 * operation. Trap this case to avoid exhausting the [very limited]
6152 * set of PF resources used to store VF MAC addresses.
6154 if (memcmp(hw->mac.perm_addr, mac_addr,
6155 sizeof(struct rte_ether_addr)) == 0)
6157 diag = ixgbevf_set_uc_addr_vf(hw, 2, mac_addr->addr_bytes);
6159 PMD_DRV_LOG(ERR, "Unable to add MAC address "
6160 "%02x:%02x:%02x:%02x:%02x:%02x - diag=%d",
6161 mac_addr->addr_bytes[0],
6162 mac_addr->addr_bytes[1],
6163 mac_addr->addr_bytes[2],
6164 mac_addr->addr_bytes[3],
6165 mac_addr->addr_bytes[4],
6166 mac_addr->addr_bytes[5],
6172 ixgbevf_remove_mac_addr(struct rte_eth_dev *dev, uint32_t index)
6174 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6175 struct rte_ether_addr *perm_addr =
6176 (struct rte_ether_addr *)hw->mac.perm_addr;
6177 struct rte_ether_addr *mac_addr;
6182 * The IXGBE_VF_SET_MACVLAN command of the ixgbe-pf driver does
6183 * not support the deletion of a given MAC address.
6184 * Instead, it imposes to delete all MAC addresses, then to add again
6185 * all MAC addresses with the exception of the one to be deleted.
6187 (void) ixgbevf_set_uc_addr_vf(hw, 0, NULL);
6190 * Add again all MAC addresses, with the exception of the deleted one
6191 * and of the permanent MAC address.
6193 for (i = 0, mac_addr = dev->data->mac_addrs;
6194 i < hw->mac.num_rar_entries; i++, mac_addr++) {
6195 /* Skip the deleted MAC address */
6198 /* Skip NULL MAC addresses */
6199 if (rte_is_zero_ether_addr(mac_addr))
6201 /* Skip the permanent MAC address */
6202 if (memcmp(perm_addr, mac_addr,
6203 sizeof(struct rte_ether_addr)) == 0)
6205 diag = ixgbevf_set_uc_addr_vf(hw, 2, mac_addr->addr_bytes);
6208 "Adding again MAC address "
6209 "%02x:%02x:%02x:%02x:%02x:%02x failed "
6211 mac_addr->addr_bytes[0],
6212 mac_addr->addr_bytes[1],
6213 mac_addr->addr_bytes[2],
6214 mac_addr->addr_bytes[3],
6215 mac_addr->addr_bytes[4],
6216 mac_addr->addr_bytes[5],
6222 ixgbevf_set_default_mac_addr(struct rte_eth_dev *dev,
6223 struct rte_ether_addr *addr)
6225 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6227 hw->mac.ops.set_rar(hw, 0, (void *)addr, 0, 0);
6233 ixgbe_syn_filter_set(struct rte_eth_dev *dev,
6234 struct rte_eth_syn_filter *filter,
6237 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6238 struct ixgbe_filter_info *filter_info =
6239 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
6243 if (filter->queue >= IXGBE_MAX_RX_QUEUE_NUM)
6246 syn_info = filter_info->syn_info;
6249 if (syn_info & IXGBE_SYN_FILTER_ENABLE)
6251 synqf = (uint32_t)(((filter->queue << IXGBE_SYN_FILTER_QUEUE_SHIFT) &
6252 IXGBE_SYN_FILTER_QUEUE) | IXGBE_SYN_FILTER_ENABLE);
6254 if (filter->hig_pri)
6255 synqf |= IXGBE_SYN_FILTER_SYNQFP;
6257 synqf &= ~IXGBE_SYN_FILTER_SYNQFP;
6259 synqf = IXGBE_READ_REG(hw, IXGBE_SYNQF);
6260 if (!(syn_info & IXGBE_SYN_FILTER_ENABLE))
6262 synqf &= ~(IXGBE_SYN_FILTER_QUEUE | IXGBE_SYN_FILTER_ENABLE);
6265 filter_info->syn_info = synqf;
6266 IXGBE_WRITE_REG(hw, IXGBE_SYNQF, synqf);
6267 IXGBE_WRITE_FLUSH(hw);
6272 ixgbe_syn_filter_get(struct rte_eth_dev *dev,
6273 struct rte_eth_syn_filter *filter)
6275 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6276 uint32_t synqf = IXGBE_READ_REG(hw, IXGBE_SYNQF);
6278 if (synqf & IXGBE_SYN_FILTER_ENABLE) {
6279 filter->hig_pri = (synqf & IXGBE_SYN_FILTER_SYNQFP) ? 1 : 0;
6280 filter->queue = (uint16_t)((synqf & IXGBE_SYN_FILTER_QUEUE) >> 1);
6287 ixgbe_syn_filter_handle(struct rte_eth_dev *dev,
6288 enum rte_filter_op filter_op,
6291 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6294 MAC_TYPE_FILTER_SUP(hw->mac.type);
6296 if (filter_op == RTE_ETH_FILTER_NOP)
6300 PMD_DRV_LOG(ERR, "arg shouldn't be NULL for operation %u",
6305 switch (filter_op) {
6306 case RTE_ETH_FILTER_ADD:
6307 ret = ixgbe_syn_filter_set(dev,
6308 (struct rte_eth_syn_filter *)arg,
6311 case RTE_ETH_FILTER_DELETE:
6312 ret = ixgbe_syn_filter_set(dev,
6313 (struct rte_eth_syn_filter *)arg,
6316 case RTE_ETH_FILTER_GET:
6317 ret = ixgbe_syn_filter_get(dev,
6318 (struct rte_eth_syn_filter *)arg);
6321 PMD_DRV_LOG(ERR, "unsupported operation %u", filter_op);
6330 static inline enum ixgbe_5tuple_protocol
6331 convert_protocol_type(uint8_t protocol_value)
6333 if (protocol_value == IPPROTO_TCP)
6334 return IXGBE_FILTER_PROTOCOL_TCP;
6335 else if (protocol_value == IPPROTO_UDP)
6336 return IXGBE_FILTER_PROTOCOL_UDP;
6337 else if (protocol_value == IPPROTO_SCTP)
6338 return IXGBE_FILTER_PROTOCOL_SCTP;
6340 return IXGBE_FILTER_PROTOCOL_NONE;
6343 /* inject a 5-tuple filter to HW */
6345 ixgbe_inject_5tuple_filter(struct rte_eth_dev *dev,
6346 struct ixgbe_5tuple_filter *filter)
6348 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6350 uint32_t ftqf, sdpqf;
6351 uint32_t l34timir = 0;
6352 uint8_t mask = 0xff;
6356 sdpqf = (uint32_t)(filter->filter_info.dst_port <<
6357 IXGBE_SDPQF_DSTPORT_SHIFT);
6358 sdpqf = sdpqf | (filter->filter_info.src_port & IXGBE_SDPQF_SRCPORT);
6360 ftqf = (uint32_t)(filter->filter_info.proto &
6361 IXGBE_FTQF_PROTOCOL_MASK);
6362 ftqf |= (uint32_t)((filter->filter_info.priority &
6363 IXGBE_FTQF_PRIORITY_MASK) << IXGBE_FTQF_PRIORITY_SHIFT);
6364 if (filter->filter_info.src_ip_mask == 0) /* 0 means compare. */
6365 mask &= IXGBE_FTQF_SOURCE_ADDR_MASK;
6366 if (filter->filter_info.dst_ip_mask == 0)
6367 mask &= IXGBE_FTQF_DEST_ADDR_MASK;
6368 if (filter->filter_info.src_port_mask == 0)
6369 mask &= IXGBE_FTQF_SOURCE_PORT_MASK;
6370 if (filter->filter_info.dst_port_mask == 0)
6371 mask &= IXGBE_FTQF_DEST_PORT_MASK;
6372 if (filter->filter_info.proto_mask == 0)
6373 mask &= IXGBE_FTQF_PROTOCOL_COMP_MASK;
6374 ftqf |= mask << IXGBE_FTQF_5TUPLE_MASK_SHIFT;
6375 ftqf |= IXGBE_FTQF_POOL_MASK_EN;
6376 ftqf |= IXGBE_FTQF_QUEUE_ENABLE;
6378 IXGBE_WRITE_REG(hw, IXGBE_DAQF(i), filter->filter_info.dst_ip);
6379 IXGBE_WRITE_REG(hw, IXGBE_SAQF(i), filter->filter_info.src_ip);
6380 IXGBE_WRITE_REG(hw, IXGBE_SDPQF(i), sdpqf);
6381 IXGBE_WRITE_REG(hw, IXGBE_FTQF(i), ftqf);
6383 l34timir |= IXGBE_L34T_IMIR_RESERVE;
6384 l34timir |= (uint32_t)(filter->queue <<
6385 IXGBE_L34T_IMIR_QUEUE_SHIFT);
6386 IXGBE_WRITE_REG(hw, IXGBE_L34T_IMIR(i), l34timir);
6390 * add a 5tuple filter
6393 * dev: Pointer to struct rte_eth_dev.
6394 * index: the index the filter allocates.
6395 * filter: ponter to the filter that will be added.
6396 * rx_queue: the queue id the filter assigned to.
6399 * - On success, zero.
6400 * - On failure, a negative value.
6403 ixgbe_add_5tuple_filter(struct rte_eth_dev *dev,
6404 struct ixgbe_5tuple_filter *filter)
6406 struct ixgbe_filter_info *filter_info =
6407 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
6411 * look for an unused 5tuple filter index,
6412 * and insert the filter to list.
6414 for (i = 0; i < IXGBE_MAX_FTQF_FILTERS; i++) {
6415 idx = i / (sizeof(uint32_t) * NBBY);
6416 shift = i % (sizeof(uint32_t) * NBBY);
6417 if (!(filter_info->fivetuple_mask[idx] & (1 << shift))) {
6418 filter_info->fivetuple_mask[idx] |= 1 << shift;
6420 TAILQ_INSERT_TAIL(&filter_info->fivetuple_list,
6426 if (i >= IXGBE_MAX_FTQF_FILTERS) {
6427 PMD_DRV_LOG(ERR, "5tuple filters are full.");
6431 ixgbe_inject_5tuple_filter(dev, filter);
6437 * remove a 5tuple filter
6440 * dev: Pointer to struct rte_eth_dev.
6441 * filter: the pointer of the filter will be removed.
6444 ixgbe_remove_5tuple_filter(struct rte_eth_dev *dev,
6445 struct ixgbe_5tuple_filter *filter)
6447 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6448 struct ixgbe_filter_info *filter_info =
6449 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
6450 uint16_t index = filter->index;
6452 filter_info->fivetuple_mask[index / (sizeof(uint32_t) * NBBY)] &=
6453 ~(1 << (index % (sizeof(uint32_t) * NBBY)));
6454 TAILQ_REMOVE(&filter_info->fivetuple_list, filter, entries);
6457 IXGBE_WRITE_REG(hw, IXGBE_DAQF(index), 0);
6458 IXGBE_WRITE_REG(hw, IXGBE_SAQF(index), 0);
6459 IXGBE_WRITE_REG(hw, IXGBE_SDPQF(index), 0);
6460 IXGBE_WRITE_REG(hw, IXGBE_FTQF(index), 0);
6461 IXGBE_WRITE_REG(hw, IXGBE_L34T_IMIR(index), 0);
6465 ixgbevf_dev_set_mtu(struct rte_eth_dev *dev, uint16_t mtu)
6467 struct ixgbe_hw *hw;
6468 uint32_t max_frame = mtu + IXGBE_ETH_OVERHEAD;
6469 struct rte_eth_dev_data *dev_data = dev->data;
6471 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6473 if (mtu < RTE_ETHER_MIN_MTU ||
6474 max_frame > RTE_ETHER_MAX_JUMBO_FRAME_LEN)
6477 /* If device is started, refuse mtu that requires the support of
6478 * scattered packets when this feature has not been enabled before.
6480 if (dev_data->dev_started && !dev_data->scattered_rx &&
6481 (max_frame + 2 * IXGBE_VLAN_TAG_SIZE >
6482 dev->data->min_rx_buf_size - RTE_PKTMBUF_HEADROOM)) {
6483 PMD_INIT_LOG(ERR, "Stop port first.");
6488 * When supported by the underlying PF driver, use the IXGBE_VF_SET_MTU
6489 * request of the version 2.0 of the mailbox API.
6490 * For now, use the IXGBE_VF_SET_LPE request of the version 1.0
6491 * of the mailbox API.
6492 * This call to IXGBE_SET_LPE action won't work with ixgbe pf drivers
6493 * prior to 3.11.33 which contains the following change:
6494 * "ixgbe: Enable jumbo frames support w/ SR-IOV"
6496 ixgbevf_rlpml_set_vf(hw, max_frame);
6498 /* update max frame size */
6499 dev->data->dev_conf.rxmode.max_rx_pkt_len = max_frame;
6503 static inline struct ixgbe_5tuple_filter *
6504 ixgbe_5tuple_filter_lookup(struct ixgbe_5tuple_filter_list *filter_list,
6505 struct ixgbe_5tuple_filter_info *key)
6507 struct ixgbe_5tuple_filter *it;
6509 TAILQ_FOREACH(it, filter_list, entries) {
6510 if (memcmp(key, &it->filter_info,
6511 sizeof(struct ixgbe_5tuple_filter_info)) == 0) {
6518 /* translate elements in struct rte_eth_ntuple_filter to struct ixgbe_5tuple_filter_info*/
6520 ntuple_filter_to_5tuple(struct rte_eth_ntuple_filter *filter,
6521 struct ixgbe_5tuple_filter_info *filter_info)
6523 if (filter->queue >= IXGBE_MAX_RX_QUEUE_NUM ||
6524 filter->priority > IXGBE_5TUPLE_MAX_PRI ||
6525 filter->priority < IXGBE_5TUPLE_MIN_PRI)
6528 switch (filter->dst_ip_mask) {
6530 filter_info->dst_ip_mask = 0;
6531 filter_info->dst_ip = filter->dst_ip;
6534 filter_info->dst_ip_mask = 1;
6537 PMD_DRV_LOG(ERR, "invalid dst_ip mask.");
6541 switch (filter->src_ip_mask) {
6543 filter_info->src_ip_mask = 0;
6544 filter_info->src_ip = filter->src_ip;
6547 filter_info->src_ip_mask = 1;
6550 PMD_DRV_LOG(ERR, "invalid src_ip mask.");
6554 switch (filter->dst_port_mask) {
6556 filter_info->dst_port_mask = 0;
6557 filter_info->dst_port = filter->dst_port;
6560 filter_info->dst_port_mask = 1;
6563 PMD_DRV_LOG(ERR, "invalid dst_port mask.");
6567 switch (filter->src_port_mask) {
6569 filter_info->src_port_mask = 0;
6570 filter_info->src_port = filter->src_port;
6573 filter_info->src_port_mask = 1;
6576 PMD_DRV_LOG(ERR, "invalid src_port mask.");
6580 switch (filter->proto_mask) {
6582 filter_info->proto_mask = 0;
6583 filter_info->proto =
6584 convert_protocol_type(filter->proto);
6587 filter_info->proto_mask = 1;
6590 PMD_DRV_LOG(ERR, "invalid protocol mask.");
6594 filter_info->priority = (uint8_t)filter->priority;
6599 * add or delete a ntuple filter
6602 * dev: Pointer to struct rte_eth_dev.
6603 * ntuple_filter: Pointer to struct rte_eth_ntuple_filter
6604 * add: if true, add filter, if false, remove filter
6607 * - On success, zero.
6608 * - On failure, a negative value.
6611 ixgbe_add_del_ntuple_filter(struct rte_eth_dev *dev,
6612 struct rte_eth_ntuple_filter *ntuple_filter,
6615 struct ixgbe_filter_info *filter_info =
6616 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
6617 struct ixgbe_5tuple_filter_info filter_5tuple;
6618 struct ixgbe_5tuple_filter *filter;
6621 if (ntuple_filter->flags != RTE_5TUPLE_FLAGS) {
6622 PMD_DRV_LOG(ERR, "only 5tuple is supported.");
6626 memset(&filter_5tuple, 0, sizeof(struct ixgbe_5tuple_filter_info));
6627 ret = ntuple_filter_to_5tuple(ntuple_filter, &filter_5tuple);
6631 filter = ixgbe_5tuple_filter_lookup(&filter_info->fivetuple_list,
6633 if (filter != NULL && add) {
6634 PMD_DRV_LOG(ERR, "filter exists.");
6637 if (filter == NULL && !add) {
6638 PMD_DRV_LOG(ERR, "filter doesn't exist.");
6643 filter = rte_zmalloc("ixgbe_5tuple_filter",
6644 sizeof(struct ixgbe_5tuple_filter), 0);
6647 rte_memcpy(&filter->filter_info,
6649 sizeof(struct ixgbe_5tuple_filter_info));
6650 filter->queue = ntuple_filter->queue;
6651 ret = ixgbe_add_5tuple_filter(dev, filter);
6657 ixgbe_remove_5tuple_filter(dev, filter);
6663 * get a ntuple filter
6666 * dev: Pointer to struct rte_eth_dev.
6667 * ntuple_filter: Pointer to struct rte_eth_ntuple_filter
6670 * - On success, zero.
6671 * - On failure, a negative value.
6674 ixgbe_get_ntuple_filter(struct rte_eth_dev *dev,
6675 struct rte_eth_ntuple_filter *ntuple_filter)
6677 struct ixgbe_filter_info *filter_info =
6678 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
6679 struct ixgbe_5tuple_filter_info filter_5tuple;
6680 struct ixgbe_5tuple_filter *filter;
6683 if (ntuple_filter->flags != RTE_5TUPLE_FLAGS) {
6684 PMD_DRV_LOG(ERR, "only 5tuple is supported.");
6688 memset(&filter_5tuple, 0, sizeof(struct ixgbe_5tuple_filter_info));
6689 ret = ntuple_filter_to_5tuple(ntuple_filter, &filter_5tuple);
6693 filter = ixgbe_5tuple_filter_lookup(&filter_info->fivetuple_list,
6695 if (filter == NULL) {
6696 PMD_DRV_LOG(ERR, "filter doesn't exist.");
6699 ntuple_filter->queue = filter->queue;
6704 * ixgbe_ntuple_filter_handle - Handle operations for ntuple filter.
6705 * @dev: pointer to rte_eth_dev structure
6706 * @filter_op:operation will be taken.
6707 * @arg: a pointer to specific structure corresponding to the filter_op
6710 * - On success, zero.
6711 * - On failure, a negative value.
6714 ixgbe_ntuple_filter_handle(struct rte_eth_dev *dev,
6715 enum rte_filter_op filter_op,
6718 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6721 MAC_TYPE_FILTER_SUP_EXT(hw->mac.type);
6723 if (filter_op == RTE_ETH_FILTER_NOP)
6727 PMD_DRV_LOG(ERR, "arg shouldn't be NULL for operation %u.",
6732 switch (filter_op) {
6733 case RTE_ETH_FILTER_ADD:
6734 ret = ixgbe_add_del_ntuple_filter(dev,
6735 (struct rte_eth_ntuple_filter *)arg,
6738 case RTE_ETH_FILTER_DELETE:
6739 ret = ixgbe_add_del_ntuple_filter(dev,
6740 (struct rte_eth_ntuple_filter *)arg,
6743 case RTE_ETH_FILTER_GET:
6744 ret = ixgbe_get_ntuple_filter(dev,
6745 (struct rte_eth_ntuple_filter *)arg);
6748 PMD_DRV_LOG(ERR, "unsupported operation %u.", filter_op);
6756 ixgbe_add_del_ethertype_filter(struct rte_eth_dev *dev,
6757 struct rte_eth_ethertype_filter *filter,
6760 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6761 struct ixgbe_filter_info *filter_info =
6762 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
6766 struct ixgbe_ethertype_filter ethertype_filter;
6768 if (filter->queue >= IXGBE_MAX_RX_QUEUE_NUM)
6771 if (filter->ether_type == RTE_ETHER_TYPE_IPV4 ||
6772 filter->ether_type == RTE_ETHER_TYPE_IPV6) {
6773 PMD_DRV_LOG(ERR, "unsupported ether_type(0x%04x) in"
6774 " ethertype filter.", filter->ether_type);
6778 if (filter->flags & RTE_ETHTYPE_FLAGS_MAC) {
6779 PMD_DRV_LOG(ERR, "mac compare is unsupported.");
6782 if (filter->flags & RTE_ETHTYPE_FLAGS_DROP) {
6783 PMD_DRV_LOG(ERR, "drop option is unsupported.");
6787 ret = ixgbe_ethertype_filter_lookup(filter_info, filter->ether_type);
6788 if (ret >= 0 && add) {
6789 PMD_DRV_LOG(ERR, "ethertype (0x%04x) filter exists.",
6790 filter->ether_type);
6793 if (ret < 0 && !add) {
6794 PMD_DRV_LOG(ERR, "ethertype (0x%04x) filter doesn't exist.",
6795 filter->ether_type);
6800 etqf = IXGBE_ETQF_FILTER_EN;
6801 etqf |= (uint32_t)filter->ether_type;
6802 etqs |= (uint32_t)((filter->queue <<
6803 IXGBE_ETQS_RX_QUEUE_SHIFT) &
6804 IXGBE_ETQS_RX_QUEUE);
6805 etqs |= IXGBE_ETQS_QUEUE_EN;
6807 ethertype_filter.ethertype = filter->ether_type;
6808 ethertype_filter.etqf = etqf;
6809 ethertype_filter.etqs = etqs;
6810 ethertype_filter.conf = FALSE;
6811 ret = ixgbe_ethertype_filter_insert(filter_info,
6814 PMD_DRV_LOG(ERR, "ethertype filters are full.");
6818 ret = ixgbe_ethertype_filter_remove(filter_info, (uint8_t)ret);
6822 IXGBE_WRITE_REG(hw, IXGBE_ETQF(ret), etqf);
6823 IXGBE_WRITE_REG(hw, IXGBE_ETQS(ret), etqs);
6824 IXGBE_WRITE_FLUSH(hw);
6830 ixgbe_get_ethertype_filter(struct rte_eth_dev *dev,
6831 struct rte_eth_ethertype_filter *filter)
6833 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6834 struct ixgbe_filter_info *filter_info =
6835 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
6836 uint32_t etqf, etqs;
6839 ret = ixgbe_ethertype_filter_lookup(filter_info, filter->ether_type);
6841 PMD_DRV_LOG(ERR, "ethertype (0x%04x) filter doesn't exist.",
6842 filter->ether_type);
6846 etqf = IXGBE_READ_REG(hw, IXGBE_ETQF(ret));
6847 if (etqf & IXGBE_ETQF_FILTER_EN) {
6848 etqs = IXGBE_READ_REG(hw, IXGBE_ETQS(ret));
6849 filter->ether_type = etqf & IXGBE_ETQF_ETHERTYPE;
6851 filter->queue = (etqs & IXGBE_ETQS_RX_QUEUE) >>
6852 IXGBE_ETQS_RX_QUEUE_SHIFT;
6859 * ixgbe_ethertype_filter_handle - Handle operations for ethertype filter.
6860 * @dev: pointer to rte_eth_dev structure
6861 * @filter_op:operation will be taken.
6862 * @arg: a pointer to specific structure corresponding to the filter_op
6865 ixgbe_ethertype_filter_handle(struct rte_eth_dev *dev,
6866 enum rte_filter_op filter_op,
6869 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6872 MAC_TYPE_FILTER_SUP(hw->mac.type);
6874 if (filter_op == RTE_ETH_FILTER_NOP)
6878 PMD_DRV_LOG(ERR, "arg shouldn't be NULL for operation %u.",
6883 switch (filter_op) {
6884 case RTE_ETH_FILTER_ADD:
6885 ret = ixgbe_add_del_ethertype_filter(dev,
6886 (struct rte_eth_ethertype_filter *)arg,
6889 case RTE_ETH_FILTER_DELETE:
6890 ret = ixgbe_add_del_ethertype_filter(dev,
6891 (struct rte_eth_ethertype_filter *)arg,
6894 case RTE_ETH_FILTER_GET:
6895 ret = ixgbe_get_ethertype_filter(dev,
6896 (struct rte_eth_ethertype_filter *)arg);
6899 PMD_DRV_LOG(ERR, "unsupported operation %u.", filter_op);
6907 ixgbe_dev_filter_ctrl(struct rte_eth_dev *dev,
6908 enum rte_filter_type filter_type,
6909 enum rte_filter_op filter_op,
6914 switch (filter_type) {
6915 case RTE_ETH_FILTER_NTUPLE:
6916 ret = ixgbe_ntuple_filter_handle(dev, filter_op, arg);
6918 case RTE_ETH_FILTER_ETHERTYPE:
6919 ret = ixgbe_ethertype_filter_handle(dev, filter_op, arg);
6921 case RTE_ETH_FILTER_SYN:
6922 ret = ixgbe_syn_filter_handle(dev, filter_op, arg);
6924 case RTE_ETH_FILTER_FDIR:
6925 ret = ixgbe_fdir_ctrl_func(dev, filter_op, arg);
6927 case RTE_ETH_FILTER_L2_TUNNEL:
6928 ret = ixgbe_dev_l2_tunnel_filter_handle(dev, filter_op, arg);
6930 case RTE_ETH_FILTER_GENERIC:
6931 if (filter_op != RTE_ETH_FILTER_GET)
6933 *(const void **)arg = &ixgbe_flow_ops;
6936 PMD_DRV_LOG(WARNING, "Filter type (%d) not supported",
6946 ixgbe_dev_addr_list_itr(__attribute__((unused)) struct ixgbe_hw *hw,
6947 u8 **mc_addr_ptr, u32 *vmdq)
6952 mc_addr = *mc_addr_ptr;
6953 *mc_addr_ptr = (mc_addr + sizeof(struct rte_ether_addr));
6958 ixgbe_dev_set_mc_addr_list(struct rte_eth_dev *dev,
6959 struct rte_ether_addr *mc_addr_set,
6960 uint32_t nb_mc_addr)
6962 struct ixgbe_hw *hw;
6965 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6966 mc_addr_list = (u8 *)mc_addr_set;
6967 return ixgbe_update_mc_addr_list(hw, mc_addr_list, nb_mc_addr,
6968 ixgbe_dev_addr_list_itr, TRUE);
6972 ixgbe_read_systime_cyclecounter(struct rte_eth_dev *dev)
6974 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6975 uint64_t systime_cycles;
6977 switch (hw->mac.type) {
6978 case ixgbe_mac_X550:
6979 case ixgbe_mac_X550EM_x:
6980 case ixgbe_mac_X550EM_a:
6981 /* SYSTIMEL stores ns and SYSTIMEH stores seconds. */
6982 systime_cycles = (uint64_t)IXGBE_READ_REG(hw, IXGBE_SYSTIML);
6983 systime_cycles += (uint64_t)IXGBE_READ_REG(hw, IXGBE_SYSTIMH)
6987 systime_cycles = (uint64_t)IXGBE_READ_REG(hw, IXGBE_SYSTIML);
6988 systime_cycles |= (uint64_t)IXGBE_READ_REG(hw, IXGBE_SYSTIMH)
6992 return systime_cycles;
6996 ixgbe_read_rx_tstamp_cyclecounter(struct rte_eth_dev *dev)
6998 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6999 uint64_t rx_tstamp_cycles;
7001 switch (hw->mac.type) {
7002 case ixgbe_mac_X550:
7003 case ixgbe_mac_X550EM_x:
7004 case ixgbe_mac_X550EM_a:
7005 /* RXSTMPL stores ns and RXSTMPH stores seconds. */
7006 rx_tstamp_cycles = (uint64_t)IXGBE_READ_REG(hw, IXGBE_RXSTMPL);
7007 rx_tstamp_cycles += (uint64_t)IXGBE_READ_REG(hw, IXGBE_RXSTMPH)
7011 /* RXSTMPL stores ns and RXSTMPH stores seconds. */
7012 rx_tstamp_cycles = (uint64_t)IXGBE_READ_REG(hw, IXGBE_RXSTMPL);
7013 rx_tstamp_cycles |= (uint64_t)IXGBE_READ_REG(hw, IXGBE_RXSTMPH)
7017 return rx_tstamp_cycles;
7021 ixgbe_read_tx_tstamp_cyclecounter(struct rte_eth_dev *dev)
7023 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7024 uint64_t tx_tstamp_cycles;
7026 switch (hw->mac.type) {
7027 case ixgbe_mac_X550:
7028 case ixgbe_mac_X550EM_x:
7029 case ixgbe_mac_X550EM_a:
7030 /* TXSTMPL stores ns and TXSTMPH stores seconds. */
7031 tx_tstamp_cycles = (uint64_t)IXGBE_READ_REG(hw, IXGBE_TXSTMPL);
7032 tx_tstamp_cycles += (uint64_t)IXGBE_READ_REG(hw, IXGBE_TXSTMPH)
7036 /* TXSTMPL stores ns and TXSTMPH stores seconds. */
7037 tx_tstamp_cycles = (uint64_t)IXGBE_READ_REG(hw, IXGBE_TXSTMPL);
7038 tx_tstamp_cycles |= (uint64_t)IXGBE_READ_REG(hw, IXGBE_TXSTMPH)
7042 return tx_tstamp_cycles;
7046 ixgbe_start_timecounters(struct rte_eth_dev *dev)
7048 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7049 struct ixgbe_adapter *adapter = dev->data->dev_private;
7050 struct rte_eth_link link;
7051 uint32_t incval = 0;
7054 /* Get current link speed. */
7055 ixgbe_dev_link_update(dev, 1);
7056 rte_eth_linkstatus_get(dev, &link);
7058 switch (link.link_speed) {
7059 case ETH_SPEED_NUM_100M:
7060 incval = IXGBE_INCVAL_100;
7061 shift = IXGBE_INCVAL_SHIFT_100;
7063 case ETH_SPEED_NUM_1G:
7064 incval = IXGBE_INCVAL_1GB;
7065 shift = IXGBE_INCVAL_SHIFT_1GB;
7067 case ETH_SPEED_NUM_10G:
7069 incval = IXGBE_INCVAL_10GB;
7070 shift = IXGBE_INCVAL_SHIFT_10GB;
7074 switch (hw->mac.type) {
7075 case ixgbe_mac_X550:
7076 case ixgbe_mac_X550EM_x:
7077 case ixgbe_mac_X550EM_a:
7078 /* Independent of link speed. */
7080 /* Cycles read will be interpreted as ns. */
7083 case ixgbe_mac_X540:
7084 IXGBE_WRITE_REG(hw, IXGBE_TIMINCA, incval);
7086 case ixgbe_mac_82599EB:
7087 incval >>= IXGBE_INCVAL_SHIFT_82599;
7088 shift -= IXGBE_INCVAL_SHIFT_82599;
7089 IXGBE_WRITE_REG(hw, IXGBE_TIMINCA,
7090 (1 << IXGBE_INCPER_SHIFT_82599) | incval);
7093 /* Not supported. */
7097 memset(&adapter->systime_tc, 0, sizeof(struct rte_timecounter));
7098 memset(&adapter->rx_tstamp_tc, 0, sizeof(struct rte_timecounter));
7099 memset(&adapter->tx_tstamp_tc, 0, sizeof(struct rte_timecounter));
7101 adapter->systime_tc.cc_mask = IXGBE_CYCLECOUNTER_MASK;
7102 adapter->systime_tc.cc_shift = shift;
7103 adapter->systime_tc.nsec_mask = (1ULL << shift) - 1;
7105 adapter->rx_tstamp_tc.cc_mask = IXGBE_CYCLECOUNTER_MASK;
7106 adapter->rx_tstamp_tc.cc_shift = shift;
7107 adapter->rx_tstamp_tc.nsec_mask = (1ULL << shift) - 1;
7109 adapter->tx_tstamp_tc.cc_mask = IXGBE_CYCLECOUNTER_MASK;
7110 adapter->tx_tstamp_tc.cc_shift = shift;
7111 adapter->tx_tstamp_tc.nsec_mask = (1ULL << shift) - 1;
7115 ixgbe_timesync_adjust_time(struct rte_eth_dev *dev, int64_t delta)
7117 struct ixgbe_adapter *adapter = dev->data->dev_private;
7119 adapter->systime_tc.nsec += delta;
7120 adapter->rx_tstamp_tc.nsec += delta;
7121 adapter->tx_tstamp_tc.nsec += delta;
7127 ixgbe_timesync_write_time(struct rte_eth_dev *dev, const struct timespec *ts)
7130 struct ixgbe_adapter *adapter = dev->data->dev_private;
7132 ns = rte_timespec_to_ns(ts);
7133 /* Set the timecounters to a new value. */
7134 adapter->systime_tc.nsec = ns;
7135 adapter->rx_tstamp_tc.nsec = ns;
7136 adapter->tx_tstamp_tc.nsec = ns;
7142 ixgbe_timesync_read_time(struct rte_eth_dev *dev, struct timespec *ts)
7144 uint64_t ns, systime_cycles;
7145 struct ixgbe_adapter *adapter = dev->data->dev_private;
7147 systime_cycles = ixgbe_read_systime_cyclecounter(dev);
7148 ns = rte_timecounter_update(&adapter->systime_tc, systime_cycles);
7149 *ts = rte_ns_to_timespec(ns);
7155 ixgbe_timesync_enable(struct rte_eth_dev *dev)
7157 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7161 /* Stop the timesync system time. */
7162 IXGBE_WRITE_REG(hw, IXGBE_TIMINCA, 0x0);
7163 /* Reset the timesync system time value. */
7164 IXGBE_WRITE_REG(hw, IXGBE_SYSTIML, 0x0);
7165 IXGBE_WRITE_REG(hw, IXGBE_SYSTIMH, 0x0);
7167 /* Enable system time for platforms where it isn't on by default. */
7168 tsauxc = IXGBE_READ_REG(hw, IXGBE_TSAUXC);
7169 tsauxc &= ~IXGBE_TSAUXC_DISABLE_SYSTIME;
7170 IXGBE_WRITE_REG(hw, IXGBE_TSAUXC, tsauxc);
7172 ixgbe_start_timecounters(dev);
7174 /* Enable L2 filtering of IEEE1588/802.1AS Ethernet frame types. */
7175 IXGBE_WRITE_REG(hw, IXGBE_ETQF(IXGBE_ETQF_FILTER_1588),
7176 (RTE_ETHER_TYPE_1588 |
7177 IXGBE_ETQF_FILTER_EN |
7180 /* Enable timestamping of received PTP packets. */
7181 tsync_ctl = IXGBE_READ_REG(hw, IXGBE_TSYNCRXCTL);
7182 tsync_ctl |= IXGBE_TSYNCRXCTL_ENABLED;
7183 IXGBE_WRITE_REG(hw, IXGBE_TSYNCRXCTL, tsync_ctl);
7185 /* Enable timestamping of transmitted PTP packets. */
7186 tsync_ctl = IXGBE_READ_REG(hw, IXGBE_TSYNCTXCTL);
7187 tsync_ctl |= IXGBE_TSYNCTXCTL_ENABLED;
7188 IXGBE_WRITE_REG(hw, IXGBE_TSYNCTXCTL, tsync_ctl);
7190 IXGBE_WRITE_FLUSH(hw);
7196 ixgbe_timesync_disable(struct rte_eth_dev *dev)
7198 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7201 /* Disable timestamping of transmitted PTP packets. */
7202 tsync_ctl = IXGBE_READ_REG(hw, IXGBE_TSYNCTXCTL);
7203 tsync_ctl &= ~IXGBE_TSYNCTXCTL_ENABLED;
7204 IXGBE_WRITE_REG(hw, IXGBE_TSYNCTXCTL, tsync_ctl);
7206 /* Disable timestamping of received PTP packets. */
7207 tsync_ctl = IXGBE_READ_REG(hw, IXGBE_TSYNCRXCTL);
7208 tsync_ctl &= ~IXGBE_TSYNCRXCTL_ENABLED;
7209 IXGBE_WRITE_REG(hw, IXGBE_TSYNCRXCTL, tsync_ctl);
7211 /* Disable L2 filtering of IEEE1588/802.1AS Ethernet frame types. */
7212 IXGBE_WRITE_REG(hw, IXGBE_ETQF(IXGBE_ETQF_FILTER_1588), 0);
7214 /* Stop incrementating the System Time registers. */
7215 IXGBE_WRITE_REG(hw, IXGBE_TIMINCA, 0);
7221 ixgbe_timesync_read_rx_timestamp(struct rte_eth_dev *dev,
7222 struct timespec *timestamp,
7223 uint32_t flags __rte_unused)
7225 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7226 struct ixgbe_adapter *adapter = dev->data->dev_private;
7227 uint32_t tsync_rxctl;
7228 uint64_t rx_tstamp_cycles;
7231 tsync_rxctl = IXGBE_READ_REG(hw, IXGBE_TSYNCRXCTL);
7232 if ((tsync_rxctl & IXGBE_TSYNCRXCTL_VALID) == 0)
7235 rx_tstamp_cycles = ixgbe_read_rx_tstamp_cyclecounter(dev);
7236 ns = rte_timecounter_update(&adapter->rx_tstamp_tc, rx_tstamp_cycles);
7237 *timestamp = rte_ns_to_timespec(ns);
7243 ixgbe_timesync_read_tx_timestamp(struct rte_eth_dev *dev,
7244 struct timespec *timestamp)
7246 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7247 struct ixgbe_adapter *adapter = dev->data->dev_private;
7248 uint32_t tsync_txctl;
7249 uint64_t tx_tstamp_cycles;
7252 tsync_txctl = IXGBE_READ_REG(hw, IXGBE_TSYNCTXCTL);
7253 if ((tsync_txctl & IXGBE_TSYNCTXCTL_VALID) == 0)
7256 tx_tstamp_cycles = ixgbe_read_tx_tstamp_cyclecounter(dev);
7257 ns = rte_timecounter_update(&adapter->tx_tstamp_tc, tx_tstamp_cycles);
7258 *timestamp = rte_ns_to_timespec(ns);
7264 ixgbe_get_reg_length(struct rte_eth_dev *dev)
7266 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7269 const struct reg_info *reg_group;
7270 const struct reg_info **reg_set = (hw->mac.type == ixgbe_mac_82598EB) ?
7271 ixgbe_regs_mac_82598EB : ixgbe_regs_others;
7273 while ((reg_group = reg_set[g_ind++]))
7274 count += ixgbe_regs_group_count(reg_group);
7280 ixgbevf_get_reg_length(struct rte_eth_dev *dev __rte_unused)
7284 const struct reg_info *reg_group;
7286 while ((reg_group = ixgbevf_regs[g_ind++]))
7287 count += ixgbe_regs_group_count(reg_group);
7293 ixgbe_get_regs(struct rte_eth_dev *dev,
7294 struct rte_dev_reg_info *regs)
7296 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7297 uint32_t *data = regs->data;
7300 const struct reg_info *reg_group;
7301 const struct reg_info **reg_set = (hw->mac.type == ixgbe_mac_82598EB) ?
7302 ixgbe_regs_mac_82598EB : ixgbe_regs_others;
7305 regs->length = ixgbe_get_reg_length(dev);
7306 regs->width = sizeof(uint32_t);
7310 /* Support only full register dump */
7311 if ((regs->length == 0) ||
7312 (regs->length == (uint32_t)ixgbe_get_reg_length(dev))) {
7313 regs->version = hw->mac.type << 24 | hw->revision_id << 16 |
7315 while ((reg_group = reg_set[g_ind++]))
7316 count += ixgbe_read_regs_group(dev, &data[count],
7325 ixgbevf_get_regs(struct rte_eth_dev *dev,
7326 struct rte_dev_reg_info *regs)
7328 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7329 uint32_t *data = regs->data;
7332 const struct reg_info *reg_group;
7335 regs->length = ixgbevf_get_reg_length(dev);
7336 regs->width = sizeof(uint32_t);
7340 /* Support only full register dump */
7341 if ((regs->length == 0) ||
7342 (regs->length == (uint32_t)ixgbevf_get_reg_length(dev))) {
7343 regs->version = hw->mac.type << 24 | hw->revision_id << 16 |
7345 while ((reg_group = ixgbevf_regs[g_ind++]))
7346 count += ixgbe_read_regs_group(dev, &data[count],
7355 ixgbe_get_eeprom_length(struct rte_eth_dev *dev)
7357 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7359 /* Return unit is byte count */
7360 return hw->eeprom.word_size * 2;
7364 ixgbe_get_eeprom(struct rte_eth_dev *dev,
7365 struct rte_dev_eeprom_info *in_eeprom)
7367 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7368 struct ixgbe_eeprom_info *eeprom = &hw->eeprom;
7369 uint16_t *data = in_eeprom->data;
7372 first = in_eeprom->offset >> 1;
7373 length = in_eeprom->length >> 1;
7374 if ((first > hw->eeprom.word_size) ||
7375 ((first + length) > hw->eeprom.word_size))
7378 in_eeprom->magic = hw->vendor_id | (hw->device_id << 16);
7380 return eeprom->ops.read_buffer(hw, first, length, data);
7384 ixgbe_set_eeprom(struct rte_eth_dev *dev,
7385 struct rte_dev_eeprom_info *in_eeprom)
7387 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7388 struct ixgbe_eeprom_info *eeprom = &hw->eeprom;
7389 uint16_t *data = in_eeprom->data;
7392 first = in_eeprom->offset >> 1;
7393 length = in_eeprom->length >> 1;
7394 if ((first > hw->eeprom.word_size) ||
7395 ((first + length) > hw->eeprom.word_size))
7398 in_eeprom->magic = hw->vendor_id | (hw->device_id << 16);
7400 return eeprom->ops.write_buffer(hw, first, length, data);
7404 ixgbe_get_module_info(struct rte_eth_dev *dev,
7405 struct rte_eth_dev_module_info *modinfo)
7407 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7409 uint8_t sff8472_rev, addr_mode;
7410 bool page_swap = false;
7412 /* Check whether we support SFF-8472 or not */
7413 status = hw->phy.ops.read_i2c_eeprom(hw,
7414 IXGBE_SFF_SFF_8472_COMP,
7419 /* addressing mode is not supported */
7420 status = hw->phy.ops.read_i2c_eeprom(hw,
7421 IXGBE_SFF_SFF_8472_SWAP,
7426 if (addr_mode & IXGBE_SFF_ADDRESSING_MODE) {
7428 "Address change required to access page 0xA2, "
7429 "but not supported. Please report the module "
7430 "type to the driver maintainers.");
7434 if (sff8472_rev == IXGBE_SFF_SFF_8472_UNSUP || page_swap) {
7435 /* We have a SFP, but it does not support SFF-8472 */
7436 modinfo->type = RTE_ETH_MODULE_SFF_8079;
7437 modinfo->eeprom_len = RTE_ETH_MODULE_SFF_8079_LEN;
7439 /* We have a SFP which supports a revision of SFF-8472. */
7440 modinfo->type = RTE_ETH_MODULE_SFF_8472;
7441 modinfo->eeprom_len = RTE_ETH_MODULE_SFF_8472_LEN;
7448 ixgbe_get_module_eeprom(struct rte_eth_dev *dev,
7449 struct rte_dev_eeprom_info *info)
7451 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7452 uint32_t status = IXGBE_ERR_PHY_ADDR_INVALID;
7453 uint8_t databyte = 0xFF;
7454 uint8_t *data = info->data;
7457 if (info->length == 0)
7460 for (i = info->offset; i < info->offset + info->length; i++) {
7461 if (i < RTE_ETH_MODULE_SFF_8079_LEN)
7462 status = hw->phy.ops.read_i2c_eeprom(hw, i, &databyte);
7464 status = hw->phy.ops.read_i2c_sff8472(hw, i, &databyte);
7469 data[i - info->offset] = databyte;
7476 ixgbe_reta_size_get(enum ixgbe_mac_type mac_type) {
7478 case ixgbe_mac_X550:
7479 case ixgbe_mac_X550EM_x:
7480 case ixgbe_mac_X550EM_a:
7481 return ETH_RSS_RETA_SIZE_512;
7482 case ixgbe_mac_X550_vf:
7483 case ixgbe_mac_X550EM_x_vf:
7484 case ixgbe_mac_X550EM_a_vf:
7485 return ETH_RSS_RETA_SIZE_64;
7486 case ixgbe_mac_X540_vf:
7487 case ixgbe_mac_82599_vf:
7490 return ETH_RSS_RETA_SIZE_128;
7495 ixgbe_reta_reg_get(enum ixgbe_mac_type mac_type, uint16_t reta_idx) {
7497 case ixgbe_mac_X550:
7498 case ixgbe_mac_X550EM_x:
7499 case ixgbe_mac_X550EM_a:
7500 if (reta_idx < ETH_RSS_RETA_SIZE_128)
7501 return IXGBE_RETA(reta_idx >> 2);
7503 return IXGBE_ERETA((reta_idx - ETH_RSS_RETA_SIZE_128) >> 2);
7504 case ixgbe_mac_X550_vf:
7505 case ixgbe_mac_X550EM_x_vf:
7506 case ixgbe_mac_X550EM_a_vf:
7507 return IXGBE_VFRETA(reta_idx >> 2);
7509 return IXGBE_RETA(reta_idx >> 2);
7514 ixgbe_mrqc_reg_get(enum ixgbe_mac_type mac_type) {
7516 case ixgbe_mac_X550_vf:
7517 case ixgbe_mac_X550EM_x_vf:
7518 case ixgbe_mac_X550EM_a_vf:
7519 return IXGBE_VFMRQC;
7526 ixgbe_rssrk_reg_get(enum ixgbe_mac_type mac_type, uint8_t i) {
7528 case ixgbe_mac_X550_vf:
7529 case ixgbe_mac_X550EM_x_vf:
7530 case ixgbe_mac_X550EM_a_vf:
7531 return IXGBE_VFRSSRK(i);
7533 return IXGBE_RSSRK(i);
7538 ixgbe_rss_update_sp(enum ixgbe_mac_type mac_type) {
7540 case ixgbe_mac_82599_vf:
7541 case ixgbe_mac_X540_vf:
7549 ixgbe_dev_get_dcb_info(struct rte_eth_dev *dev,
7550 struct rte_eth_dcb_info *dcb_info)
7552 struct ixgbe_dcb_config *dcb_config =
7553 IXGBE_DEV_PRIVATE_TO_DCB_CFG(dev->data->dev_private);
7554 struct ixgbe_dcb_tc_config *tc;
7555 struct rte_eth_dcb_tc_queue_mapping *tc_queue;
7559 if (dev->data->dev_conf.rxmode.mq_mode & ETH_MQ_RX_DCB_FLAG)
7560 dcb_info->nb_tcs = dcb_config->num_tcs.pg_tcs;
7562 dcb_info->nb_tcs = 1;
7564 tc_queue = &dcb_info->tc_queue;
7565 nb_tcs = dcb_info->nb_tcs;
7567 if (dcb_config->vt_mode) { /* vt is enabled*/
7568 struct rte_eth_vmdq_dcb_conf *vmdq_rx_conf =
7569 &dev->data->dev_conf.rx_adv_conf.vmdq_dcb_conf;
7570 for (i = 0; i < ETH_DCB_NUM_USER_PRIORITIES; i++)
7571 dcb_info->prio_tc[i] = vmdq_rx_conf->dcb_tc[i];
7572 if (RTE_ETH_DEV_SRIOV(dev).active > 0) {
7573 for (j = 0; j < nb_tcs; j++) {
7574 tc_queue->tc_rxq[0][j].base = j;
7575 tc_queue->tc_rxq[0][j].nb_queue = 1;
7576 tc_queue->tc_txq[0][j].base = j;
7577 tc_queue->tc_txq[0][j].nb_queue = 1;
7580 for (i = 0; i < vmdq_rx_conf->nb_queue_pools; i++) {
7581 for (j = 0; j < nb_tcs; j++) {
7582 tc_queue->tc_rxq[i][j].base =
7584 tc_queue->tc_rxq[i][j].nb_queue = 1;
7585 tc_queue->tc_txq[i][j].base =
7587 tc_queue->tc_txq[i][j].nb_queue = 1;
7591 } else { /* vt is disabled*/
7592 struct rte_eth_dcb_rx_conf *rx_conf =
7593 &dev->data->dev_conf.rx_adv_conf.dcb_rx_conf;
7594 for (i = 0; i < ETH_DCB_NUM_USER_PRIORITIES; i++)
7595 dcb_info->prio_tc[i] = rx_conf->dcb_tc[i];
7596 if (dcb_info->nb_tcs == ETH_4_TCS) {
7597 for (i = 0; i < dcb_info->nb_tcs; i++) {
7598 dcb_info->tc_queue.tc_rxq[0][i].base = i * 32;
7599 dcb_info->tc_queue.tc_rxq[0][i].nb_queue = 16;
7601 dcb_info->tc_queue.tc_txq[0][0].base = 0;
7602 dcb_info->tc_queue.tc_txq[0][1].base = 64;
7603 dcb_info->tc_queue.tc_txq[0][2].base = 96;
7604 dcb_info->tc_queue.tc_txq[0][3].base = 112;
7605 dcb_info->tc_queue.tc_txq[0][0].nb_queue = 64;
7606 dcb_info->tc_queue.tc_txq[0][1].nb_queue = 32;
7607 dcb_info->tc_queue.tc_txq[0][2].nb_queue = 16;
7608 dcb_info->tc_queue.tc_txq[0][3].nb_queue = 16;
7609 } else if (dcb_info->nb_tcs == ETH_8_TCS) {
7610 for (i = 0; i < dcb_info->nb_tcs; i++) {
7611 dcb_info->tc_queue.tc_rxq[0][i].base = i * 16;
7612 dcb_info->tc_queue.tc_rxq[0][i].nb_queue = 16;
7614 dcb_info->tc_queue.tc_txq[0][0].base = 0;
7615 dcb_info->tc_queue.tc_txq[0][1].base = 32;
7616 dcb_info->tc_queue.tc_txq[0][2].base = 64;
7617 dcb_info->tc_queue.tc_txq[0][3].base = 80;
7618 dcb_info->tc_queue.tc_txq[0][4].base = 96;
7619 dcb_info->tc_queue.tc_txq[0][5].base = 104;
7620 dcb_info->tc_queue.tc_txq[0][6].base = 112;
7621 dcb_info->tc_queue.tc_txq[0][7].base = 120;
7622 dcb_info->tc_queue.tc_txq[0][0].nb_queue = 32;
7623 dcb_info->tc_queue.tc_txq[0][1].nb_queue = 32;
7624 dcb_info->tc_queue.tc_txq[0][2].nb_queue = 16;
7625 dcb_info->tc_queue.tc_txq[0][3].nb_queue = 16;
7626 dcb_info->tc_queue.tc_txq[0][4].nb_queue = 8;
7627 dcb_info->tc_queue.tc_txq[0][5].nb_queue = 8;
7628 dcb_info->tc_queue.tc_txq[0][6].nb_queue = 8;
7629 dcb_info->tc_queue.tc_txq[0][7].nb_queue = 8;
7632 for (i = 0; i < dcb_info->nb_tcs; i++) {
7633 tc = &dcb_config->tc_config[i];
7634 dcb_info->tc_bws[i] = tc->path[IXGBE_DCB_TX_CONFIG].bwg_percent;
7639 /* Update e-tag ether type */
7641 ixgbe_update_e_tag_eth_type(struct ixgbe_hw *hw,
7642 uint16_t ether_type)
7644 uint32_t etag_etype;
7646 if (hw->mac.type != ixgbe_mac_X550 &&
7647 hw->mac.type != ixgbe_mac_X550EM_x &&
7648 hw->mac.type != ixgbe_mac_X550EM_a) {
7652 etag_etype = IXGBE_READ_REG(hw, IXGBE_ETAG_ETYPE);
7653 etag_etype &= ~IXGBE_ETAG_ETYPE_MASK;
7654 etag_etype |= ether_type;
7655 IXGBE_WRITE_REG(hw, IXGBE_ETAG_ETYPE, etag_etype);
7656 IXGBE_WRITE_FLUSH(hw);
7661 /* Config l2 tunnel ether type */
7663 ixgbe_dev_l2_tunnel_eth_type_conf(struct rte_eth_dev *dev,
7664 struct rte_eth_l2_tunnel_conf *l2_tunnel)
7667 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7668 struct ixgbe_l2_tn_info *l2_tn_info =
7669 IXGBE_DEV_PRIVATE_TO_L2_TN_INFO(dev->data->dev_private);
7671 if (l2_tunnel == NULL)
7674 switch (l2_tunnel->l2_tunnel_type) {
7675 case RTE_L2_TUNNEL_TYPE_E_TAG:
7676 l2_tn_info->e_tag_ether_type = l2_tunnel->ether_type;
7677 ret = ixgbe_update_e_tag_eth_type(hw, l2_tunnel->ether_type);
7680 PMD_DRV_LOG(ERR, "Invalid tunnel type");
7688 /* Enable e-tag tunnel */
7690 ixgbe_e_tag_enable(struct ixgbe_hw *hw)
7692 uint32_t etag_etype;
7694 if (hw->mac.type != ixgbe_mac_X550 &&
7695 hw->mac.type != ixgbe_mac_X550EM_x &&
7696 hw->mac.type != ixgbe_mac_X550EM_a) {
7700 etag_etype = IXGBE_READ_REG(hw, IXGBE_ETAG_ETYPE);
7701 etag_etype |= IXGBE_ETAG_ETYPE_VALID;
7702 IXGBE_WRITE_REG(hw, IXGBE_ETAG_ETYPE, etag_etype);
7703 IXGBE_WRITE_FLUSH(hw);
7708 /* Enable l2 tunnel */
7710 ixgbe_dev_l2_tunnel_enable(struct rte_eth_dev *dev,
7711 enum rte_eth_tunnel_type l2_tunnel_type)
7714 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7715 struct ixgbe_l2_tn_info *l2_tn_info =
7716 IXGBE_DEV_PRIVATE_TO_L2_TN_INFO(dev->data->dev_private);
7718 switch (l2_tunnel_type) {
7719 case RTE_L2_TUNNEL_TYPE_E_TAG:
7720 l2_tn_info->e_tag_en = TRUE;
7721 ret = ixgbe_e_tag_enable(hw);
7724 PMD_DRV_LOG(ERR, "Invalid tunnel type");
7732 /* Disable e-tag tunnel */
7734 ixgbe_e_tag_disable(struct ixgbe_hw *hw)
7736 uint32_t etag_etype;
7738 if (hw->mac.type != ixgbe_mac_X550 &&
7739 hw->mac.type != ixgbe_mac_X550EM_x &&
7740 hw->mac.type != ixgbe_mac_X550EM_a) {
7744 etag_etype = IXGBE_READ_REG(hw, IXGBE_ETAG_ETYPE);
7745 etag_etype &= ~IXGBE_ETAG_ETYPE_VALID;
7746 IXGBE_WRITE_REG(hw, IXGBE_ETAG_ETYPE, etag_etype);
7747 IXGBE_WRITE_FLUSH(hw);
7752 /* Disable l2 tunnel */
7754 ixgbe_dev_l2_tunnel_disable(struct rte_eth_dev *dev,
7755 enum rte_eth_tunnel_type l2_tunnel_type)
7758 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7759 struct ixgbe_l2_tn_info *l2_tn_info =
7760 IXGBE_DEV_PRIVATE_TO_L2_TN_INFO(dev->data->dev_private);
7762 switch (l2_tunnel_type) {
7763 case RTE_L2_TUNNEL_TYPE_E_TAG:
7764 l2_tn_info->e_tag_en = FALSE;
7765 ret = ixgbe_e_tag_disable(hw);
7768 PMD_DRV_LOG(ERR, "Invalid tunnel type");
7777 ixgbe_e_tag_filter_del(struct rte_eth_dev *dev,
7778 struct rte_eth_l2_tunnel_conf *l2_tunnel)
7781 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7782 uint32_t i, rar_entries;
7783 uint32_t rar_low, rar_high;
7785 if (hw->mac.type != ixgbe_mac_X550 &&
7786 hw->mac.type != ixgbe_mac_X550EM_x &&
7787 hw->mac.type != ixgbe_mac_X550EM_a) {
7791 rar_entries = ixgbe_get_num_rx_addrs(hw);
7793 for (i = 1; i < rar_entries; i++) {
7794 rar_high = IXGBE_READ_REG(hw, IXGBE_RAH(i));
7795 rar_low = IXGBE_READ_REG(hw, IXGBE_RAL(i));
7796 if ((rar_high & IXGBE_RAH_AV) &&
7797 (rar_high & IXGBE_RAH_ADTYPE) &&
7798 ((rar_low & IXGBE_RAL_ETAG_FILTER_MASK) ==
7799 l2_tunnel->tunnel_id)) {
7800 IXGBE_WRITE_REG(hw, IXGBE_RAL(i), 0);
7801 IXGBE_WRITE_REG(hw, IXGBE_RAH(i), 0);
7803 ixgbe_clear_vmdq(hw, i, IXGBE_CLEAR_VMDQ_ALL);
7813 ixgbe_e_tag_filter_add(struct rte_eth_dev *dev,
7814 struct rte_eth_l2_tunnel_conf *l2_tunnel)
7817 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7818 uint32_t i, rar_entries;
7819 uint32_t rar_low, rar_high;
7821 if (hw->mac.type != ixgbe_mac_X550 &&
7822 hw->mac.type != ixgbe_mac_X550EM_x &&
7823 hw->mac.type != ixgbe_mac_X550EM_a) {
7827 /* One entry for one tunnel. Try to remove potential existing entry. */
7828 ixgbe_e_tag_filter_del(dev, l2_tunnel);
7830 rar_entries = ixgbe_get_num_rx_addrs(hw);
7832 for (i = 1; i < rar_entries; i++) {
7833 rar_high = IXGBE_READ_REG(hw, IXGBE_RAH(i));
7834 if (rar_high & IXGBE_RAH_AV) {
7837 ixgbe_set_vmdq(hw, i, l2_tunnel->pool);
7838 rar_high = IXGBE_RAH_AV | IXGBE_RAH_ADTYPE;
7839 rar_low = l2_tunnel->tunnel_id;
7841 IXGBE_WRITE_REG(hw, IXGBE_RAL(i), rar_low);
7842 IXGBE_WRITE_REG(hw, IXGBE_RAH(i), rar_high);
7848 PMD_INIT_LOG(NOTICE, "The table of E-tag forwarding rule is full."
7849 " Please remove a rule before adding a new one.");
7853 static inline struct ixgbe_l2_tn_filter *
7854 ixgbe_l2_tn_filter_lookup(struct ixgbe_l2_tn_info *l2_tn_info,
7855 struct ixgbe_l2_tn_key *key)
7859 ret = rte_hash_lookup(l2_tn_info->hash_handle, (const void *)key);
7863 return l2_tn_info->hash_map[ret];
7867 ixgbe_insert_l2_tn_filter(struct ixgbe_l2_tn_info *l2_tn_info,
7868 struct ixgbe_l2_tn_filter *l2_tn_filter)
7872 ret = rte_hash_add_key(l2_tn_info->hash_handle,
7873 &l2_tn_filter->key);
7877 "Failed to insert L2 tunnel filter"
7878 " to hash table %d!",
7883 l2_tn_info->hash_map[ret] = l2_tn_filter;
7885 TAILQ_INSERT_TAIL(&l2_tn_info->l2_tn_list, l2_tn_filter, entries);
7891 ixgbe_remove_l2_tn_filter(struct ixgbe_l2_tn_info *l2_tn_info,
7892 struct ixgbe_l2_tn_key *key)
7895 struct ixgbe_l2_tn_filter *l2_tn_filter;
7897 ret = rte_hash_del_key(l2_tn_info->hash_handle, key);
7901 "No such L2 tunnel filter to delete %d!",
7906 l2_tn_filter = l2_tn_info->hash_map[ret];
7907 l2_tn_info->hash_map[ret] = NULL;
7909 TAILQ_REMOVE(&l2_tn_info->l2_tn_list, l2_tn_filter, entries);
7910 rte_free(l2_tn_filter);
7915 /* Add l2 tunnel filter */
7917 ixgbe_dev_l2_tunnel_filter_add(struct rte_eth_dev *dev,
7918 struct rte_eth_l2_tunnel_conf *l2_tunnel,
7922 struct ixgbe_l2_tn_info *l2_tn_info =
7923 IXGBE_DEV_PRIVATE_TO_L2_TN_INFO(dev->data->dev_private);
7924 struct ixgbe_l2_tn_key key;
7925 struct ixgbe_l2_tn_filter *node;
7928 key.l2_tn_type = l2_tunnel->l2_tunnel_type;
7929 key.tn_id = l2_tunnel->tunnel_id;
7931 node = ixgbe_l2_tn_filter_lookup(l2_tn_info, &key);
7935 "The L2 tunnel filter already exists!");
7939 node = rte_zmalloc("ixgbe_l2_tn",
7940 sizeof(struct ixgbe_l2_tn_filter),
7945 rte_memcpy(&node->key,
7947 sizeof(struct ixgbe_l2_tn_key));
7948 node->pool = l2_tunnel->pool;
7949 ret = ixgbe_insert_l2_tn_filter(l2_tn_info, node);
7956 switch (l2_tunnel->l2_tunnel_type) {
7957 case RTE_L2_TUNNEL_TYPE_E_TAG:
7958 ret = ixgbe_e_tag_filter_add(dev, l2_tunnel);
7961 PMD_DRV_LOG(ERR, "Invalid tunnel type");
7966 if ((!restore) && (ret < 0))
7967 (void)ixgbe_remove_l2_tn_filter(l2_tn_info, &key);
7972 /* Delete l2 tunnel filter */
7974 ixgbe_dev_l2_tunnel_filter_del(struct rte_eth_dev *dev,
7975 struct rte_eth_l2_tunnel_conf *l2_tunnel)
7978 struct ixgbe_l2_tn_info *l2_tn_info =
7979 IXGBE_DEV_PRIVATE_TO_L2_TN_INFO(dev->data->dev_private);
7980 struct ixgbe_l2_tn_key key;
7982 key.l2_tn_type = l2_tunnel->l2_tunnel_type;
7983 key.tn_id = l2_tunnel->tunnel_id;
7984 ret = ixgbe_remove_l2_tn_filter(l2_tn_info, &key);
7988 switch (l2_tunnel->l2_tunnel_type) {
7989 case RTE_L2_TUNNEL_TYPE_E_TAG:
7990 ret = ixgbe_e_tag_filter_del(dev, l2_tunnel);
7993 PMD_DRV_LOG(ERR, "Invalid tunnel type");
8002 * ixgbe_dev_l2_tunnel_filter_handle - Handle operations for l2 tunnel filter.
8003 * @dev: pointer to rte_eth_dev structure
8004 * @filter_op:operation will be taken.
8005 * @arg: a pointer to specific structure corresponding to the filter_op
8008 ixgbe_dev_l2_tunnel_filter_handle(struct rte_eth_dev *dev,
8009 enum rte_filter_op filter_op,
8014 if (filter_op == RTE_ETH_FILTER_NOP)
8018 PMD_DRV_LOG(ERR, "arg shouldn't be NULL for operation %u.",
8023 switch (filter_op) {
8024 case RTE_ETH_FILTER_ADD:
8025 ret = ixgbe_dev_l2_tunnel_filter_add
8027 (struct rte_eth_l2_tunnel_conf *)arg,
8030 case RTE_ETH_FILTER_DELETE:
8031 ret = ixgbe_dev_l2_tunnel_filter_del
8033 (struct rte_eth_l2_tunnel_conf *)arg);
8036 PMD_DRV_LOG(ERR, "unsupported operation %u.", filter_op);
8044 ixgbe_e_tag_forwarding_en_dis(struct rte_eth_dev *dev, bool en)
8048 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8050 if (hw->mac.type != ixgbe_mac_X550 &&
8051 hw->mac.type != ixgbe_mac_X550EM_x &&
8052 hw->mac.type != ixgbe_mac_X550EM_a) {
8056 ctrl = IXGBE_READ_REG(hw, IXGBE_VT_CTL);
8057 ctrl &= ~IXGBE_VT_CTL_POOLING_MODE_MASK;
8059 ctrl |= IXGBE_VT_CTL_POOLING_MODE_ETAG;
8060 IXGBE_WRITE_REG(hw, IXGBE_VT_CTL, ctrl);
8065 /* Enable l2 tunnel forwarding */
8067 ixgbe_dev_l2_tunnel_forwarding_enable
8068 (struct rte_eth_dev *dev,
8069 enum rte_eth_tunnel_type l2_tunnel_type)
8071 struct ixgbe_l2_tn_info *l2_tn_info =
8072 IXGBE_DEV_PRIVATE_TO_L2_TN_INFO(dev->data->dev_private);
8075 switch (l2_tunnel_type) {
8076 case RTE_L2_TUNNEL_TYPE_E_TAG:
8077 l2_tn_info->e_tag_fwd_en = TRUE;
8078 ret = ixgbe_e_tag_forwarding_en_dis(dev, 1);
8081 PMD_DRV_LOG(ERR, "Invalid tunnel type");
8089 /* Disable l2 tunnel forwarding */
8091 ixgbe_dev_l2_tunnel_forwarding_disable
8092 (struct rte_eth_dev *dev,
8093 enum rte_eth_tunnel_type l2_tunnel_type)
8095 struct ixgbe_l2_tn_info *l2_tn_info =
8096 IXGBE_DEV_PRIVATE_TO_L2_TN_INFO(dev->data->dev_private);
8099 switch (l2_tunnel_type) {
8100 case RTE_L2_TUNNEL_TYPE_E_TAG:
8101 l2_tn_info->e_tag_fwd_en = FALSE;
8102 ret = ixgbe_e_tag_forwarding_en_dis(dev, 0);
8105 PMD_DRV_LOG(ERR, "Invalid tunnel type");
8114 ixgbe_e_tag_insertion_en_dis(struct rte_eth_dev *dev,
8115 struct rte_eth_l2_tunnel_conf *l2_tunnel,
8118 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
8120 uint32_t vmtir, vmvir;
8121 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8123 if (l2_tunnel->vf_id >= pci_dev->max_vfs) {
8125 "VF id %u should be less than %u",
8131 if (hw->mac.type != ixgbe_mac_X550 &&
8132 hw->mac.type != ixgbe_mac_X550EM_x &&
8133 hw->mac.type != ixgbe_mac_X550EM_a) {
8138 vmtir = l2_tunnel->tunnel_id;
8142 IXGBE_WRITE_REG(hw, IXGBE_VMTIR(l2_tunnel->vf_id), vmtir);
8144 vmvir = IXGBE_READ_REG(hw, IXGBE_VMVIR(l2_tunnel->vf_id));
8145 vmvir &= ~IXGBE_VMVIR_TAGA_MASK;
8147 vmvir |= IXGBE_VMVIR_TAGA_ETAG_INSERT;
8148 IXGBE_WRITE_REG(hw, IXGBE_VMVIR(l2_tunnel->vf_id), vmvir);
8153 /* Enable l2 tunnel tag insertion */
8155 ixgbe_dev_l2_tunnel_insertion_enable(struct rte_eth_dev *dev,
8156 struct rte_eth_l2_tunnel_conf *l2_tunnel)
8160 switch (l2_tunnel->l2_tunnel_type) {
8161 case RTE_L2_TUNNEL_TYPE_E_TAG:
8162 ret = ixgbe_e_tag_insertion_en_dis(dev, l2_tunnel, 1);
8165 PMD_DRV_LOG(ERR, "Invalid tunnel type");
8173 /* Disable l2 tunnel tag insertion */
8175 ixgbe_dev_l2_tunnel_insertion_disable
8176 (struct rte_eth_dev *dev,
8177 struct rte_eth_l2_tunnel_conf *l2_tunnel)
8181 switch (l2_tunnel->l2_tunnel_type) {
8182 case RTE_L2_TUNNEL_TYPE_E_TAG:
8183 ret = ixgbe_e_tag_insertion_en_dis(dev, l2_tunnel, 0);
8186 PMD_DRV_LOG(ERR, "Invalid tunnel type");
8195 ixgbe_e_tag_stripping_en_dis(struct rte_eth_dev *dev,
8200 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8202 if (hw->mac.type != ixgbe_mac_X550 &&
8203 hw->mac.type != ixgbe_mac_X550EM_x &&
8204 hw->mac.type != ixgbe_mac_X550EM_a) {
8208 qde = IXGBE_READ_REG(hw, IXGBE_QDE);
8210 qde |= IXGBE_QDE_STRIP_TAG;
8212 qde &= ~IXGBE_QDE_STRIP_TAG;
8213 qde &= ~IXGBE_QDE_READ;
8214 qde |= IXGBE_QDE_WRITE;
8215 IXGBE_WRITE_REG(hw, IXGBE_QDE, qde);
8220 /* Enable l2 tunnel tag stripping */
8222 ixgbe_dev_l2_tunnel_stripping_enable
8223 (struct rte_eth_dev *dev,
8224 enum rte_eth_tunnel_type l2_tunnel_type)
8228 switch (l2_tunnel_type) {
8229 case RTE_L2_TUNNEL_TYPE_E_TAG:
8230 ret = ixgbe_e_tag_stripping_en_dis(dev, 1);
8233 PMD_DRV_LOG(ERR, "Invalid tunnel type");
8241 /* Disable l2 tunnel tag stripping */
8243 ixgbe_dev_l2_tunnel_stripping_disable
8244 (struct rte_eth_dev *dev,
8245 enum rte_eth_tunnel_type l2_tunnel_type)
8249 switch (l2_tunnel_type) {
8250 case RTE_L2_TUNNEL_TYPE_E_TAG:
8251 ret = ixgbe_e_tag_stripping_en_dis(dev, 0);
8254 PMD_DRV_LOG(ERR, "Invalid tunnel type");
8262 /* Enable/disable l2 tunnel offload functions */
8264 ixgbe_dev_l2_tunnel_offload_set
8265 (struct rte_eth_dev *dev,
8266 struct rte_eth_l2_tunnel_conf *l2_tunnel,
8272 if (l2_tunnel == NULL)
8276 if (mask & ETH_L2_TUNNEL_ENABLE_MASK) {
8278 ret = ixgbe_dev_l2_tunnel_enable(
8280 l2_tunnel->l2_tunnel_type);
8282 ret = ixgbe_dev_l2_tunnel_disable(
8284 l2_tunnel->l2_tunnel_type);
8287 if (mask & ETH_L2_TUNNEL_INSERTION_MASK) {
8289 ret = ixgbe_dev_l2_tunnel_insertion_enable(
8293 ret = ixgbe_dev_l2_tunnel_insertion_disable(
8298 if (mask & ETH_L2_TUNNEL_STRIPPING_MASK) {
8300 ret = ixgbe_dev_l2_tunnel_stripping_enable(
8302 l2_tunnel->l2_tunnel_type);
8304 ret = ixgbe_dev_l2_tunnel_stripping_disable(
8306 l2_tunnel->l2_tunnel_type);
8309 if (mask & ETH_L2_TUNNEL_FORWARDING_MASK) {
8311 ret = ixgbe_dev_l2_tunnel_forwarding_enable(
8313 l2_tunnel->l2_tunnel_type);
8315 ret = ixgbe_dev_l2_tunnel_forwarding_disable(
8317 l2_tunnel->l2_tunnel_type);
8324 ixgbe_update_vxlan_port(struct ixgbe_hw *hw,
8327 IXGBE_WRITE_REG(hw, IXGBE_VXLANCTRL, port);
8328 IXGBE_WRITE_FLUSH(hw);
8333 /* There's only one register for VxLAN UDP port.
8334 * So, we cannot add several ports. Will update it.
8337 ixgbe_add_vxlan_port(struct ixgbe_hw *hw,
8341 PMD_DRV_LOG(ERR, "Add VxLAN port 0 is not allowed.");
8345 return ixgbe_update_vxlan_port(hw, port);
8348 /* We cannot delete the VxLAN port. For there's a register for VxLAN
8349 * UDP port, it must have a value.
8350 * So, will reset it to the original value 0.
8353 ixgbe_del_vxlan_port(struct ixgbe_hw *hw,
8358 cur_port = (uint16_t)IXGBE_READ_REG(hw, IXGBE_VXLANCTRL);
8360 if (cur_port != port) {
8361 PMD_DRV_LOG(ERR, "Port %u does not exist.", port);
8365 return ixgbe_update_vxlan_port(hw, 0);
8368 /* Add UDP tunneling port */
8370 ixgbe_dev_udp_tunnel_port_add(struct rte_eth_dev *dev,
8371 struct rte_eth_udp_tunnel *udp_tunnel)
8374 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8376 if (hw->mac.type != ixgbe_mac_X550 &&
8377 hw->mac.type != ixgbe_mac_X550EM_x &&
8378 hw->mac.type != ixgbe_mac_X550EM_a) {
8382 if (udp_tunnel == NULL)
8385 switch (udp_tunnel->prot_type) {
8386 case RTE_TUNNEL_TYPE_VXLAN:
8387 ret = ixgbe_add_vxlan_port(hw, udp_tunnel->udp_port);
8390 case RTE_TUNNEL_TYPE_GENEVE:
8391 case RTE_TUNNEL_TYPE_TEREDO:
8392 PMD_DRV_LOG(ERR, "Tunnel type is not supported now.");
8397 PMD_DRV_LOG(ERR, "Invalid tunnel type");
8405 /* Remove UDP tunneling port */
8407 ixgbe_dev_udp_tunnel_port_del(struct rte_eth_dev *dev,
8408 struct rte_eth_udp_tunnel *udp_tunnel)
8411 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8413 if (hw->mac.type != ixgbe_mac_X550 &&
8414 hw->mac.type != ixgbe_mac_X550EM_x &&
8415 hw->mac.type != ixgbe_mac_X550EM_a) {
8419 if (udp_tunnel == NULL)
8422 switch (udp_tunnel->prot_type) {
8423 case RTE_TUNNEL_TYPE_VXLAN:
8424 ret = ixgbe_del_vxlan_port(hw, udp_tunnel->udp_port);
8426 case RTE_TUNNEL_TYPE_GENEVE:
8427 case RTE_TUNNEL_TYPE_TEREDO:
8428 PMD_DRV_LOG(ERR, "Tunnel type is not supported now.");
8432 PMD_DRV_LOG(ERR, "Invalid tunnel type");
8441 ixgbevf_dev_promiscuous_enable(struct rte_eth_dev *dev)
8443 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8446 switch (hw->mac.ops.update_xcast_mode(hw, IXGBEVF_XCAST_MODE_PROMISC)) {
8450 case IXGBE_ERR_FEATURE_NOT_SUPPORTED:
8462 ixgbevf_dev_promiscuous_disable(struct rte_eth_dev *dev)
8464 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8467 switch (hw->mac.ops.update_xcast_mode(hw, IXGBEVF_XCAST_MODE_NONE)) {
8471 case IXGBE_ERR_FEATURE_NOT_SUPPORTED:
8483 ixgbevf_dev_allmulticast_enable(struct rte_eth_dev *dev)
8485 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8487 int mode = IXGBEVF_XCAST_MODE_ALLMULTI;
8489 switch (hw->mac.ops.update_xcast_mode(hw, mode)) {
8493 case IXGBE_ERR_FEATURE_NOT_SUPPORTED:
8505 ixgbevf_dev_allmulticast_disable(struct rte_eth_dev *dev)
8507 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8510 switch (hw->mac.ops.update_xcast_mode(hw, IXGBEVF_XCAST_MODE_MULTI)) {
8514 case IXGBE_ERR_FEATURE_NOT_SUPPORTED:
8525 static void ixgbevf_mbx_process(struct rte_eth_dev *dev)
8527 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8530 /* peek the message first */
8531 in_msg = IXGBE_READ_REG(hw, IXGBE_VFMBMEM);
8533 /* PF reset VF event */
8534 if (in_msg == IXGBE_PF_CONTROL_MSG) {
8535 /* dummy mbx read to ack pf */
8536 if (ixgbe_read_mbx(hw, &in_msg, 1, 0))
8538 _rte_eth_dev_callback_process(dev, RTE_ETH_EVENT_INTR_RESET,
8544 ixgbevf_dev_interrupt_get_status(struct rte_eth_dev *dev)
8547 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8548 struct ixgbe_interrupt *intr =
8549 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
8550 ixgbevf_intr_disable(dev);
8552 /* read-on-clear nic registers here */
8553 eicr = IXGBE_READ_REG(hw, IXGBE_VTEICR);
8556 /* only one misc vector supported - mailbox */
8557 eicr &= IXGBE_VTEICR_MASK;
8558 if (eicr == IXGBE_MISC_VEC_ID)
8559 intr->flags |= IXGBE_FLAG_MAILBOX;
8565 ixgbevf_dev_interrupt_action(struct rte_eth_dev *dev)
8567 struct ixgbe_interrupt *intr =
8568 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
8570 if (intr->flags & IXGBE_FLAG_MAILBOX) {
8571 ixgbevf_mbx_process(dev);
8572 intr->flags &= ~IXGBE_FLAG_MAILBOX;
8575 ixgbevf_intr_enable(dev);
8581 ixgbevf_dev_interrupt_handler(void *param)
8583 struct rte_eth_dev *dev = (struct rte_eth_dev *)param;
8585 ixgbevf_dev_interrupt_get_status(dev);
8586 ixgbevf_dev_interrupt_action(dev);
8590 * ixgbe_disable_sec_tx_path_generic - Stops the transmit data path
8591 * @hw: pointer to hardware structure
8593 * Stops the transmit data path and waits for the HW to internally empty
8594 * the Tx security block
8596 int ixgbe_disable_sec_tx_path_generic(struct ixgbe_hw *hw)
8598 #define IXGBE_MAX_SECTX_POLL 40
8603 sectxreg = IXGBE_READ_REG(hw, IXGBE_SECTXCTRL);
8604 sectxreg |= IXGBE_SECTXCTRL_TX_DIS;
8605 IXGBE_WRITE_REG(hw, IXGBE_SECTXCTRL, sectxreg);
8606 for (i = 0; i < IXGBE_MAX_SECTX_POLL; i++) {
8607 sectxreg = IXGBE_READ_REG(hw, IXGBE_SECTXSTAT);
8608 if (sectxreg & IXGBE_SECTXSTAT_SECTX_RDY)
8610 /* Use interrupt-safe sleep just in case */
8614 /* For informational purposes only */
8615 if (i >= IXGBE_MAX_SECTX_POLL)
8616 PMD_DRV_LOG(DEBUG, "Tx unit being enabled before security "
8617 "path fully disabled. Continuing with init.");
8619 return IXGBE_SUCCESS;
8623 * ixgbe_enable_sec_tx_path_generic - Enables the transmit data path
8624 * @hw: pointer to hardware structure
8626 * Enables the transmit data path.
8628 int ixgbe_enable_sec_tx_path_generic(struct ixgbe_hw *hw)
8632 sectxreg = IXGBE_READ_REG(hw, IXGBE_SECTXCTRL);
8633 sectxreg &= ~IXGBE_SECTXCTRL_TX_DIS;
8634 IXGBE_WRITE_REG(hw, IXGBE_SECTXCTRL, sectxreg);
8635 IXGBE_WRITE_FLUSH(hw);
8637 return IXGBE_SUCCESS;
8640 /* restore n-tuple filter */
8642 ixgbe_ntuple_filter_restore(struct rte_eth_dev *dev)
8644 struct ixgbe_filter_info *filter_info =
8645 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
8646 struct ixgbe_5tuple_filter *node;
8648 TAILQ_FOREACH(node, &filter_info->fivetuple_list, entries) {
8649 ixgbe_inject_5tuple_filter(dev, node);
8653 /* restore ethernet type filter */
8655 ixgbe_ethertype_filter_restore(struct rte_eth_dev *dev)
8657 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8658 struct ixgbe_filter_info *filter_info =
8659 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
8662 for (i = 0; i < IXGBE_MAX_ETQF_FILTERS; i++) {
8663 if (filter_info->ethertype_mask & (1 << i)) {
8664 IXGBE_WRITE_REG(hw, IXGBE_ETQF(i),
8665 filter_info->ethertype_filters[i].etqf);
8666 IXGBE_WRITE_REG(hw, IXGBE_ETQS(i),
8667 filter_info->ethertype_filters[i].etqs);
8668 IXGBE_WRITE_FLUSH(hw);
8673 /* restore SYN filter */
8675 ixgbe_syn_filter_restore(struct rte_eth_dev *dev)
8677 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8678 struct ixgbe_filter_info *filter_info =
8679 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
8682 synqf = filter_info->syn_info;
8684 if (synqf & IXGBE_SYN_FILTER_ENABLE) {
8685 IXGBE_WRITE_REG(hw, IXGBE_SYNQF, synqf);
8686 IXGBE_WRITE_FLUSH(hw);
8690 /* restore L2 tunnel filter */
8692 ixgbe_l2_tn_filter_restore(struct rte_eth_dev *dev)
8694 struct ixgbe_l2_tn_info *l2_tn_info =
8695 IXGBE_DEV_PRIVATE_TO_L2_TN_INFO(dev->data->dev_private);
8696 struct ixgbe_l2_tn_filter *node;
8697 struct rte_eth_l2_tunnel_conf l2_tn_conf;
8699 TAILQ_FOREACH(node, &l2_tn_info->l2_tn_list, entries) {
8700 l2_tn_conf.l2_tunnel_type = node->key.l2_tn_type;
8701 l2_tn_conf.tunnel_id = node->key.tn_id;
8702 l2_tn_conf.pool = node->pool;
8703 (void)ixgbe_dev_l2_tunnel_filter_add(dev, &l2_tn_conf, TRUE);
8707 /* restore rss filter */
8709 ixgbe_rss_filter_restore(struct rte_eth_dev *dev)
8711 struct ixgbe_filter_info *filter_info =
8712 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
8714 if (filter_info->rss_info.conf.queue_num)
8715 ixgbe_config_rss_filter(dev,
8716 &filter_info->rss_info, TRUE);
8720 ixgbe_filter_restore(struct rte_eth_dev *dev)
8722 ixgbe_ntuple_filter_restore(dev);
8723 ixgbe_ethertype_filter_restore(dev);
8724 ixgbe_syn_filter_restore(dev);
8725 ixgbe_fdir_filter_restore(dev);
8726 ixgbe_l2_tn_filter_restore(dev);
8727 ixgbe_rss_filter_restore(dev);
8733 ixgbe_l2_tunnel_conf(struct rte_eth_dev *dev)
8735 struct ixgbe_l2_tn_info *l2_tn_info =
8736 IXGBE_DEV_PRIVATE_TO_L2_TN_INFO(dev->data->dev_private);
8737 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8739 if (l2_tn_info->e_tag_en)
8740 (void)ixgbe_e_tag_enable(hw);
8742 if (l2_tn_info->e_tag_fwd_en)
8743 (void)ixgbe_e_tag_forwarding_en_dis(dev, 1);
8745 (void)ixgbe_update_e_tag_eth_type(hw, l2_tn_info->e_tag_ether_type);
8748 /* remove all the n-tuple filters */
8750 ixgbe_clear_all_ntuple_filter(struct rte_eth_dev *dev)
8752 struct ixgbe_filter_info *filter_info =
8753 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
8754 struct ixgbe_5tuple_filter *p_5tuple;
8756 while ((p_5tuple = TAILQ_FIRST(&filter_info->fivetuple_list)))
8757 ixgbe_remove_5tuple_filter(dev, p_5tuple);
8760 /* remove all the ether type filters */
8762 ixgbe_clear_all_ethertype_filter(struct rte_eth_dev *dev)
8764 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8765 struct ixgbe_filter_info *filter_info =
8766 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
8769 for (i = 0; i < IXGBE_MAX_ETQF_FILTERS; i++) {
8770 if (filter_info->ethertype_mask & (1 << i) &&
8771 !filter_info->ethertype_filters[i].conf) {
8772 (void)ixgbe_ethertype_filter_remove(filter_info,
8774 IXGBE_WRITE_REG(hw, IXGBE_ETQF(i), 0);
8775 IXGBE_WRITE_REG(hw, IXGBE_ETQS(i), 0);
8776 IXGBE_WRITE_FLUSH(hw);
8781 /* remove the SYN filter */
8783 ixgbe_clear_syn_filter(struct rte_eth_dev *dev)
8785 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8786 struct ixgbe_filter_info *filter_info =
8787 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
8789 if (filter_info->syn_info & IXGBE_SYN_FILTER_ENABLE) {
8790 filter_info->syn_info = 0;
8792 IXGBE_WRITE_REG(hw, IXGBE_SYNQF, 0);
8793 IXGBE_WRITE_FLUSH(hw);
8797 /* remove all the L2 tunnel filters */
8799 ixgbe_clear_all_l2_tn_filter(struct rte_eth_dev *dev)
8801 struct ixgbe_l2_tn_info *l2_tn_info =
8802 IXGBE_DEV_PRIVATE_TO_L2_TN_INFO(dev->data->dev_private);
8803 struct ixgbe_l2_tn_filter *l2_tn_filter;
8804 struct rte_eth_l2_tunnel_conf l2_tn_conf;
8807 while ((l2_tn_filter = TAILQ_FIRST(&l2_tn_info->l2_tn_list))) {
8808 l2_tn_conf.l2_tunnel_type = l2_tn_filter->key.l2_tn_type;
8809 l2_tn_conf.tunnel_id = l2_tn_filter->key.tn_id;
8810 l2_tn_conf.pool = l2_tn_filter->pool;
8811 ret = ixgbe_dev_l2_tunnel_filter_del(dev, &l2_tn_conf);
8819 RTE_PMD_REGISTER_PCI(net_ixgbe, rte_ixgbe_pmd);
8820 RTE_PMD_REGISTER_PCI_TABLE(net_ixgbe, pci_id_ixgbe_map);
8821 RTE_PMD_REGISTER_KMOD_DEP(net_ixgbe, "* igb_uio | uio_pci_generic | vfio-pci");
8822 RTE_PMD_REGISTER_PCI(net_ixgbe_vf, rte_ixgbevf_pmd);
8823 RTE_PMD_REGISTER_PCI_TABLE(net_ixgbe_vf, pci_id_ixgbevf_map);
8824 RTE_PMD_REGISTER_KMOD_DEP(net_ixgbe_vf, "* igb_uio | vfio-pci");
8825 RTE_PMD_REGISTER_PARAM_STRING(net_ixgbe_vf,
8826 IXGBEVF_DEVARG_PFLINK_FULLCHK "=<0|1>");
8828 RTE_INIT(ixgbe_init_log)
8830 ixgbe_logtype_init = rte_log_register("pmd.net.ixgbe.init");
8831 if (ixgbe_logtype_init >= 0)
8832 rte_log_set_level(ixgbe_logtype_init, RTE_LOG_NOTICE);
8833 ixgbe_logtype_driver = rte_log_register("pmd.net.ixgbe.driver");
8834 if (ixgbe_logtype_driver >= 0)
8835 rte_log_set_level(ixgbe_logtype_driver, RTE_LOG_NOTICE);
8836 #ifdef RTE_LIBRTE_IXGBE_DEBUG_RX
8837 ixgbe_logtype_rx = rte_log_register("pmd.net.ixgbe.rx");
8838 if (ixgbe_logtype_rx >= 0)
8839 rte_log_set_level(ixgbe_logtype_rx, RTE_LOG_DEBUG);
8842 #ifdef RTE_LIBRTE_IXGBE_DEBUG_TX
8843 ixgbe_logtype_tx = rte_log_register("pmd.net.ixgbe.tx");
8844 if (ixgbe_logtype_tx >= 0)
8845 rte_log_set_level(ixgbe_logtype_tx, RTE_LOG_DEBUG);
8848 #ifdef RTE_LIBRTE_IXGBE_DEBUG_TX_FREE
8849 ixgbe_logtype_tx_free = rte_log_register("pmd.net.ixgbe.tx_free");
8850 if (ixgbe_logtype_tx_free >= 0)
8851 rte_log_set_level(ixgbe_logtype_tx_free, RTE_LOG_DEBUG);