4 * Copyright(c) 2010-2017 Intel Corporation. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
11 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * * Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in
15 * the documentation and/or other materials provided with the
17 * * Neither the name of Intel Corporation nor the names of its
18 * contributors may be used to endorse or promote products derived
19 * from this software without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34 #include <sys/queue.h>
42 #include <netinet/in.h>
43 #include <rte_byteorder.h>
44 #include <rte_common.h>
45 #include <rte_cycles.h>
47 #include <rte_interrupts.h>
49 #include <rte_debug.h>
51 #include <rte_atomic.h>
52 #include <rte_branch_prediction.h>
53 #include <rte_memory.h>
54 #include <rte_memzone.h>
56 #include <rte_alarm.h>
57 #include <rte_ether.h>
58 #include <rte_ethdev.h>
59 #include <rte_atomic.h>
60 #include <rte_malloc.h>
61 #include <rte_random.h>
63 #include <rte_hash_crc.h>
65 #include "ixgbe_logs.h"
66 #include "base/ixgbe_api.h"
67 #include "base/ixgbe_vf.h"
68 #include "base/ixgbe_common.h"
69 #include "ixgbe_ethdev.h"
70 #include "ixgbe_bypass.h"
71 #include "ixgbe_rxtx.h"
72 #include "base/ixgbe_type.h"
73 #include "base/ixgbe_phy.h"
74 #include "ixgbe_regs.h"
76 #include "rte_pmd_ixgbe.h"
79 * High threshold controlling when to start sending XOFF frames. Must be at
80 * least 8 bytes less than receive packet buffer size. This value is in units
83 #define IXGBE_FC_HI 0x80
86 * Low threshold controlling when to start sending XON frames. This value is
87 * in units of 1024 bytes.
89 #define IXGBE_FC_LO 0x40
91 /* Default minimum inter-interrupt interval for EITR configuration */
92 #define IXGBE_MIN_INTER_INTERRUPT_INTERVAL_DEFAULT 0x79E
94 /* Timer value included in XOFF frames. */
95 #define IXGBE_FC_PAUSE 0x680
97 #define IXGBE_LINK_DOWN_CHECK_TIMEOUT 4000 /* ms */
98 #define IXGBE_LINK_UP_CHECK_TIMEOUT 1000 /* ms */
99 #define IXGBE_VMDQ_NUM_UC_MAC 4096 /* Maximum nb. of UC MAC addr. */
101 #define IXGBE_MMW_SIZE_DEFAULT 0x4
102 #define IXGBE_MMW_SIZE_JUMBO_FRAME 0x14
103 #define IXGBE_MAX_RING_DESC 4096 /* replicate define from rxtx */
106 * Default values for RX/TX configuration
108 #define IXGBE_DEFAULT_RX_FREE_THRESH 32
109 #define IXGBE_DEFAULT_RX_PTHRESH 8
110 #define IXGBE_DEFAULT_RX_HTHRESH 8
111 #define IXGBE_DEFAULT_RX_WTHRESH 0
113 #define IXGBE_DEFAULT_TX_FREE_THRESH 32
114 #define IXGBE_DEFAULT_TX_PTHRESH 32
115 #define IXGBE_DEFAULT_TX_HTHRESH 0
116 #define IXGBE_DEFAULT_TX_WTHRESH 0
117 #define IXGBE_DEFAULT_TX_RSBIT_THRESH 32
119 /* Bit shift and mask */
120 #define IXGBE_4_BIT_WIDTH (CHAR_BIT / 2)
121 #define IXGBE_4_BIT_MASK RTE_LEN2MASK(IXGBE_4_BIT_WIDTH, uint8_t)
122 #define IXGBE_8_BIT_WIDTH CHAR_BIT
123 #define IXGBE_8_BIT_MASK UINT8_MAX
125 #define IXGBEVF_PMD_NAME "rte_ixgbevf_pmd" /* PMD name */
127 #define IXGBE_QUEUE_STAT_COUNTERS (sizeof(hw_stats->qprc) / sizeof(hw_stats->qprc[0]))
129 #define IXGBE_HKEY_MAX_INDEX 10
131 /* Additional timesync values. */
132 #define NSEC_PER_SEC 1000000000L
133 #define IXGBE_INCVAL_10GB 0x66666666
134 #define IXGBE_INCVAL_1GB 0x40000000
135 #define IXGBE_INCVAL_100 0x50000000
136 #define IXGBE_INCVAL_SHIFT_10GB 28
137 #define IXGBE_INCVAL_SHIFT_1GB 24
138 #define IXGBE_INCVAL_SHIFT_100 21
139 #define IXGBE_INCVAL_SHIFT_82599 7
140 #define IXGBE_INCPER_SHIFT_82599 24
142 #define IXGBE_CYCLECOUNTER_MASK 0xffffffffffffffffULL
144 #define IXGBE_VT_CTL_POOLING_MODE_MASK 0x00030000
145 #define IXGBE_VT_CTL_POOLING_MODE_ETAG 0x00010000
146 #define DEFAULT_ETAG_ETYPE 0x893f
147 #define IXGBE_ETAG_ETYPE 0x00005084
148 #define IXGBE_ETAG_ETYPE_MASK 0x0000ffff
149 #define IXGBE_ETAG_ETYPE_VALID 0x80000000
150 #define IXGBE_RAH_ADTYPE 0x40000000
151 #define IXGBE_RAL_ETAG_FILTER_MASK 0x00003fff
152 #define IXGBE_VMVIR_TAGA_MASK 0x18000000
153 #define IXGBE_VMVIR_TAGA_ETAG_INSERT 0x08000000
154 #define IXGBE_VMTIR(_i) (0x00017000 + ((_i) * 4)) /* 64 of these (0-63) */
155 #define IXGBE_QDE_STRIP_TAG 0x00000004
156 #define IXGBE_VTEICR_MASK 0x07
158 enum ixgbevf_xcast_modes {
159 IXGBEVF_XCAST_MODE_NONE = 0,
160 IXGBEVF_XCAST_MODE_MULTI,
161 IXGBEVF_XCAST_MODE_ALLMULTI,
164 #define IXGBE_EXVET_VET_EXT_SHIFT 16
165 #define IXGBE_DMATXCTL_VT_MASK 0xFFFF0000
167 static int eth_ixgbe_dev_init(struct rte_eth_dev *eth_dev);
168 static int eth_ixgbe_dev_uninit(struct rte_eth_dev *eth_dev);
169 static int ixgbe_fdir_filter_init(struct rte_eth_dev *eth_dev);
170 static int ixgbe_fdir_filter_uninit(struct rte_eth_dev *eth_dev);
171 static int ixgbe_l2_tn_filter_init(struct rte_eth_dev *eth_dev);
172 static int ixgbe_l2_tn_filter_uninit(struct rte_eth_dev *eth_dev);
173 static int ixgbe_ntuple_filter_uninit(struct rte_eth_dev *eth_dev);
174 static int ixgbe_dev_configure(struct rte_eth_dev *dev);
175 static int ixgbe_dev_start(struct rte_eth_dev *dev);
176 static void ixgbe_dev_stop(struct rte_eth_dev *dev);
177 static int ixgbe_dev_set_link_up(struct rte_eth_dev *dev);
178 static int ixgbe_dev_set_link_down(struct rte_eth_dev *dev);
179 static void ixgbe_dev_close(struct rte_eth_dev *dev);
180 static void ixgbe_dev_promiscuous_enable(struct rte_eth_dev *dev);
181 static void ixgbe_dev_promiscuous_disable(struct rte_eth_dev *dev);
182 static void ixgbe_dev_allmulticast_enable(struct rte_eth_dev *dev);
183 static void ixgbe_dev_allmulticast_disable(struct rte_eth_dev *dev);
184 static int ixgbe_dev_link_update(struct rte_eth_dev *dev,
185 int wait_to_complete);
186 static void ixgbe_dev_stats_get(struct rte_eth_dev *dev,
187 struct rte_eth_stats *stats);
188 static int ixgbe_dev_xstats_get(struct rte_eth_dev *dev,
189 struct rte_eth_xstat *xstats, unsigned n);
190 static int ixgbevf_dev_xstats_get(struct rte_eth_dev *dev,
191 struct rte_eth_xstat *xstats, unsigned n);
192 static void ixgbe_dev_stats_reset(struct rte_eth_dev *dev);
193 static void ixgbe_dev_xstats_reset(struct rte_eth_dev *dev);
194 static int ixgbe_dev_xstats_get_names(__rte_unused struct rte_eth_dev *dev,
195 struct rte_eth_xstat_name *xstats_names, __rte_unused unsigned limit);
196 static int ixgbevf_dev_xstats_get_names(__rte_unused struct rte_eth_dev *dev,
197 struct rte_eth_xstat_name *xstats_names, __rte_unused unsigned limit);
198 static int ixgbe_dev_queue_stats_mapping_set(struct rte_eth_dev *eth_dev,
202 static int ixgbe_fw_version_get(struct rte_eth_dev *dev, char *fw_version,
204 static void ixgbe_dev_info_get(struct rte_eth_dev *dev,
205 struct rte_eth_dev_info *dev_info);
206 static const uint32_t *ixgbe_dev_supported_ptypes_get(struct rte_eth_dev *dev);
207 static void ixgbevf_dev_info_get(struct rte_eth_dev *dev,
208 struct rte_eth_dev_info *dev_info);
209 static int ixgbe_dev_mtu_set(struct rte_eth_dev *dev, uint16_t mtu);
211 static int ixgbe_vlan_filter_set(struct rte_eth_dev *dev,
212 uint16_t vlan_id, int on);
213 static int ixgbe_vlan_tpid_set(struct rte_eth_dev *dev,
214 enum rte_vlan_type vlan_type,
216 static void ixgbe_vlan_hw_strip_bitmap_set(struct rte_eth_dev *dev,
217 uint16_t queue, bool on);
218 static void ixgbe_vlan_strip_queue_set(struct rte_eth_dev *dev, uint16_t queue,
220 static void ixgbe_vlan_offload_set(struct rte_eth_dev *dev, int mask);
221 static void ixgbe_vlan_hw_strip_enable(struct rte_eth_dev *dev, uint16_t queue);
222 static void ixgbe_vlan_hw_strip_disable(struct rte_eth_dev *dev, uint16_t queue);
223 static void ixgbe_vlan_hw_extend_enable(struct rte_eth_dev *dev);
224 static void ixgbe_vlan_hw_extend_disable(struct rte_eth_dev *dev);
226 static int ixgbe_dev_led_on(struct rte_eth_dev *dev);
227 static int ixgbe_dev_led_off(struct rte_eth_dev *dev);
228 static int ixgbe_flow_ctrl_get(struct rte_eth_dev *dev,
229 struct rte_eth_fc_conf *fc_conf);
230 static int ixgbe_flow_ctrl_set(struct rte_eth_dev *dev,
231 struct rte_eth_fc_conf *fc_conf);
232 static int ixgbe_priority_flow_ctrl_set(struct rte_eth_dev *dev,
233 struct rte_eth_pfc_conf *pfc_conf);
234 static int ixgbe_dev_rss_reta_update(struct rte_eth_dev *dev,
235 struct rte_eth_rss_reta_entry64 *reta_conf,
237 static int ixgbe_dev_rss_reta_query(struct rte_eth_dev *dev,
238 struct rte_eth_rss_reta_entry64 *reta_conf,
240 static void ixgbe_dev_link_status_print(struct rte_eth_dev *dev);
241 static int ixgbe_dev_lsc_interrupt_setup(struct rte_eth_dev *dev);
242 static int ixgbe_dev_macsec_interrupt_setup(struct rte_eth_dev *dev);
243 static int ixgbe_dev_rxq_interrupt_setup(struct rte_eth_dev *dev);
244 static int ixgbe_dev_interrupt_get_status(struct rte_eth_dev *dev);
245 static int ixgbe_dev_interrupt_action(struct rte_eth_dev *dev,
246 struct rte_intr_handle *handle);
247 static void ixgbe_dev_interrupt_handler(struct rte_intr_handle *handle,
249 static void ixgbe_dev_interrupt_delayed_handler(void *param);
250 static void ixgbe_add_rar(struct rte_eth_dev *dev, struct ether_addr *mac_addr,
251 uint32_t index, uint32_t pool);
252 static void ixgbe_remove_rar(struct rte_eth_dev *dev, uint32_t index);
253 static void ixgbe_set_default_mac_addr(struct rte_eth_dev *dev,
254 struct ether_addr *mac_addr);
255 static void ixgbe_dcb_init(struct ixgbe_hw *hw, struct ixgbe_dcb_config *dcb_config);
256 static int is_ixgbe_pmd(const char *driver_name);
258 /* For Virtual Function support */
259 static int eth_ixgbevf_dev_init(struct rte_eth_dev *eth_dev);
260 static int eth_ixgbevf_dev_uninit(struct rte_eth_dev *eth_dev);
261 static int ixgbevf_dev_configure(struct rte_eth_dev *dev);
262 static int ixgbevf_dev_start(struct rte_eth_dev *dev);
263 static void ixgbevf_dev_stop(struct rte_eth_dev *dev);
264 static void ixgbevf_dev_close(struct rte_eth_dev *dev);
265 static void ixgbevf_intr_disable(struct ixgbe_hw *hw);
266 static void ixgbevf_intr_enable(struct ixgbe_hw *hw);
267 static void ixgbevf_dev_stats_get(struct rte_eth_dev *dev,
268 struct rte_eth_stats *stats);
269 static void ixgbevf_dev_stats_reset(struct rte_eth_dev *dev);
270 static int ixgbevf_vlan_filter_set(struct rte_eth_dev *dev,
271 uint16_t vlan_id, int on);
272 static void ixgbevf_vlan_strip_queue_set(struct rte_eth_dev *dev,
273 uint16_t queue, int on);
274 static void ixgbevf_vlan_offload_set(struct rte_eth_dev *dev, int mask);
275 static void ixgbevf_set_vfta_all(struct rte_eth_dev *dev, bool on);
276 static int ixgbevf_dev_rx_queue_intr_enable(struct rte_eth_dev *dev,
278 static int ixgbevf_dev_rx_queue_intr_disable(struct rte_eth_dev *dev,
280 static void ixgbevf_set_ivar_map(struct ixgbe_hw *hw, int8_t direction,
281 uint8_t queue, uint8_t msix_vector);
282 static void ixgbevf_configure_msix(struct rte_eth_dev *dev);
283 static void ixgbevf_dev_allmulticast_enable(struct rte_eth_dev *dev);
284 static void ixgbevf_dev_allmulticast_disable(struct rte_eth_dev *dev);
286 /* For Eth VMDQ APIs support */
287 static int ixgbe_uc_hash_table_set(struct rte_eth_dev *dev, struct
288 ether_addr * mac_addr, uint8_t on);
289 static int ixgbe_uc_all_hash_table_set(struct rte_eth_dev *dev, uint8_t on);
290 static int ixgbe_mirror_rule_set(struct rte_eth_dev *dev,
291 struct rte_eth_mirror_conf *mirror_conf,
292 uint8_t rule_id, uint8_t on);
293 static int ixgbe_mirror_rule_reset(struct rte_eth_dev *dev,
295 static int ixgbe_dev_rx_queue_intr_enable(struct rte_eth_dev *dev,
297 static int ixgbe_dev_rx_queue_intr_disable(struct rte_eth_dev *dev,
299 static void ixgbe_set_ivar_map(struct ixgbe_hw *hw, int8_t direction,
300 uint8_t queue, uint8_t msix_vector);
301 static void ixgbe_configure_msix(struct rte_eth_dev *dev);
303 static int ixgbe_set_queue_rate_limit(struct rte_eth_dev *dev,
304 uint16_t queue_idx, uint16_t tx_rate);
306 static void ixgbevf_add_mac_addr(struct rte_eth_dev *dev,
307 struct ether_addr *mac_addr,
308 uint32_t index, uint32_t pool);
309 static void ixgbevf_remove_mac_addr(struct rte_eth_dev *dev, uint32_t index);
310 static void ixgbevf_set_default_mac_addr(struct rte_eth_dev *dev,
311 struct ether_addr *mac_addr);
312 static int ixgbe_syn_filter_set(struct rte_eth_dev *dev,
313 struct rte_eth_syn_filter *filter,
315 static int ixgbe_syn_filter_get(struct rte_eth_dev *dev,
316 struct rte_eth_syn_filter *filter);
317 static int ixgbe_syn_filter_handle(struct rte_eth_dev *dev,
318 enum rte_filter_op filter_op,
320 static int ixgbe_add_5tuple_filter(struct rte_eth_dev *dev,
321 struct ixgbe_5tuple_filter *filter);
322 static void ixgbe_remove_5tuple_filter(struct rte_eth_dev *dev,
323 struct ixgbe_5tuple_filter *filter);
324 static int ixgbe_add_del_ntuple_filter(struct rte_eth_dev *dev,
325 struct rte_eth_ntuple_filter *filter,
327 static int ixgbe_ntuple_filter_handle(struct rte_eth_dev *dev,
328 enum rte_filter_op filter_op,
330 static int ixgbe_get_ntuple_filter(struct rte_eth_dev *dev,
331 struct rte_eth_ntuple_filter *filter);
332 static int ixgbe_add_del_ethertype_filter(struct rte_eth_dev *dev,
333 struct rte_eth_ethertype_filter *filter,
335 static int ixgbe_ethertype_filter_handle(struct rte_eth_dev *dev,
336 enum rte_filter_op filter_op,
338 static int ixgbe_get_ethertype_filter(struct rte_eth_dev *dev,
339 struct rte_eth_ethertype_filter *filter);
340 static int ixgbe_dev_filter_ctrl(struct rte_eth_dev *dev,
341 enum rte_filter_type filter_type,
342 enum rte_filter_op filter_op,
344 static int ixgbevf_dev_set_mtu(struct rte_eth_dev *dev, uint16_t mtu);
346 static int ixgbe_dev_set_mc_addr_list(struct rte_eth_dev *dev,
347 struct ether_addr *mc_addr_set,
348 uint32_t nb_mc_addr);
349 static int ixgbe_dev_get_dcb_info(struct rte_eth_dev *dev,
350 struct rte_eth_dcb_info *dcb_info);
352 static int ixgbe_get_reg_length(struct rte_eth_dev *dev);
353 static int ixgbe_get_regs(struct rte_eth_dev *dev,
354 struct rte_dev_reg_info *regs);
355 static int ixgbe_get_eeprom_length(struct rte_eth_dev *dev);
356 static int ixgbe_get_eeprom(struct rte_eth_dev *dev,
357 struct rte_dev_eeprom_info *eeprom);
358 static int ixgbe_set_eeprom(struct rte_eth_dev *dev,
359 struct rte_dev_eeprom_info *eeprom);
361 static int ixgbevf_get_reg_length(struct rte_eth_dev *dev);
362 static int ixgbevf_get_regs(struct rte_eth_dev *dev,
363 struct rte_dev_reg_info *regs);
365 static int ixgbe_timesync_enable(struct rte_eth_dev *dev);
366 static int ixgbe_timesync_disable(struct rte_eth_dev *dev);
367 static int ixgbe_timesync_read_rx_timestamp(struct rte_eth_dev *dev,
368 struct timespec *timestamp,
370 static int ixgbe_timesync_read_tx_timestamp(struct rte_eth_dev *dev,
371 struct timespec *timestamp);
372 static int ixgbe_timesync_adjust_time(struct rte_eth_dev *dev, int64_t delta);
373 static int ixgbe_timesync_read_time(struct rte_eth_dev *dev,
374 struct timespec *timestamp);
375 static int ixgbe_timesync_write_time(struct rte_eth_dev *dev,
376 const struct timespec *timestamp);
377 static void ixgbevf_dev_interrupt_handler(struct rte_intr_handle *handle,
380 static int ixgbe_dev_l2_tunnel_eth_type_conf
381 (struct rte_eth_dev *dev, struct rte_eth_l2_tunnel_conf *l2_tunnel);
382 static int ixgbe_dev_l2_tunnel_offload_set
383 (struct rte_eth_dev *dev,
384 struct rte_eth_l2_tunnel_conf *l2_tunnel,
387 static int ixgbe_dev_l2_tunnel_filter_handle(struct rte_eth_dev *dev,
388 enum rte_filter_op filter_op,
391 static int ixgbe_dev_udp_tunnel_port_add(struct rte_eth_dev *dev,
392 struct rte_eth_udp_tunnel *udp_tunnel);
393 static int ixgbe_dev_udp_tunnel_port_del(struct rte_eth_dev *dev,
394 struct rte_eth_udp_tunnel *udp_tunnel);
395 static int ixgbe_filter_restore(struct rte_eth_dev *dev);
396 static void ixgbe_l2_tunnel_conf(struct rte_eth_dev *dev);
399 * Define VF Stats MACRO for Non "cleared on read" register
401 #define UPDATE_VF_STAT(reg, last, cur) \
403 uint32_t latest = IXGBE_READ_REG(hw, reg); \
404 cur += (latest - last) & UINT_MAX; \
408 #define UPDATE_VF_STAT_36BIT(lsb, msb, last, cur) \
410 u64 new_lsb = IXGBE_READ_REG(hw, lsb); \
411 u64 new_msb = IXGBE_READ_REG(hw, msb); \
412 u64 latest = ((new_msb << 32) | new_lsb); \
413 cur += (0x1000000000LL + latest - last) & 0xFFFFFFFFFLL; \
417 #define IXGBE_SET_HWSTRIP(h, q) do {\
418 uint32_t idx = (q) / (sizeof((h)->bitmap[0]) * NBBY); \
419 uint32_t bit = (q) % (sizeof((h)->bitmap[0]) * NBBY); \
420 (h)->bitmap[idx] |= 1 << bit;\
423 #define IXGBE_CLEAR_HWSTRIP(h, q) do {\
424 uint32_t idx = (q) / (sizeof((h)->bitmap[0]) * NBBY); \
425 uint32_t bit = (q) % (sizeof((h)->bitmap[0]) * NBBY); \
426 (h)->bitmap[idx] &= ~(1 << bit);\
429 #define IXGBE_GET_HWSTRIP(h, q, r) do {\
430 uint32_t idx = (q) / (sizeof((h)->bitmap[0]) * NBBY); \
431 uint32_t bit = (q) % (sizeof((h)->bitmap[0]) * NBBY); \
432 (r) = (h)->bitmap[idx] >> bit & 1;\
436 * The set of PCI devices this driver supports
438 static const struct rte_pci_id pci_id_ixgbe_map[] = {
439 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598) },
440 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598_BX) },
441 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598AF_DUAL_PORT) },
442 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598AF_SINGLE_PORT) },
443 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598AT) },
444 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598AT2) },
445 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598EB_SFP_LOM) },
446 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598EB_CX4) },
447 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598_CX4_DUAL_PORT) },
448 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598_DA_DUAL_PORT) },
449 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598_SR_DUAL_PORT_EM) },
450 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598EB_XF_LR) },
451 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_KX4) },
452 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_KX4_MEZZ) },
453 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_KR) },
454 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_COMBO_BACKPLANE) },
455 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_SUBDEV_ID_82599_KX4_KR_MEZZ) },
456 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_CX4) },
457 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_SFP) },
458 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_SUBDEV_ID_82599_SFP) },
459 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_SUBDEV_ID_82599_RNDC) },
460 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_SUBDEV_ID_82599_560FLR) },
461 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_SUBDEV_ID_82599_ECNA_DP) },
462 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_BACKPLANE_FCOE) },
463 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_SFP_FCOE) },
464 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_SFP_EM) },
465 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_SFP_SF2) },
466 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_SFP_SF_QP) },
467 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_QSFP_SF_QP) },
468 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599EN_SFP) },
469 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_XAUI_LOM) },
470 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_T3_LOM) },
471 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_LS) },
472 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X540T) },
473 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X540T1) },
474 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_X_SFP) },
475 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_X_10G_T) },
476 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_X_1G_T) },
477 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550T) },
478 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550T1) },
479 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_KR) },
480 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_KR_L) },
481 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_SFP_N) },
482 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_SGMII) },
483 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_SGMII_L) },
484 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_10G_T) },
485 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_QSFP) },
486 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_QSFP_N) },
487 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_SFP) },
488 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_1G_T) },
489 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_1G_T_L) },
490 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_X_KX4) },
491 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_X_KR) },
492 #ifdef RTE_NIC_BYPASS
493 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_BYPASS) },
495 { .vendor_id = 0, /* sentinel */ },
499 * The set of PCI devices this driver supports (for 82599 VF)
501 static const struct rte_pci_id pci_id_ixgbevf_map[] = {
502 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_VF) },
503 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_VF_HV) },
504 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X540_VF) },
505 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X540_VF_HV) },
506 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550_VF_HV) },
507 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550_VF) },
508 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_VF) },
509 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_VF_HV) },
510 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_X_VF) },
511 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_X_VF_HV) },
512 { .vendor_id = 0, /* sentinel */ },
515 static const struct rte_eth_desc_lim rx_desc_lim = {
516 .nb_max = IXGBE_MAX_RING_DESC,
517 .nb_min = IXGBE_MIN_RING_DESC,
518 .nb_align = IXGBE_RXD_ALIGN,
521 static const struct rte_eth_desc_lim tx_desc_lim = {
522 .nb_max = IXGBE_MAX_RING_DESC,
523 .nb_min = IXGBE_MIN_RING_DESC,
524 .nb_align = IXGBE_TXD_ALIGN,
525 .nb_seg_max = IXGBE_TX_MAX_SEG,
526 .nb_mtu_seg_max = IXGBE_TX_MAX_SEG,
529 static const struct eth_dev_ops ixgbe_eth_dev_ops = {
530 .dev_configure = ixgbe_dev_configure,
531 .dev_start = ixgbe_dev_start,
532 .dev_stop = ixgbe_dev_stop,
533 .dev_set_link_up = ixgbe_dev_set_link_up,
534 .dev_set_link_down = ixgbe_dev_set_link_down,
535 .dev_close = ixgbe_dev_close,
536 .promiscuous_enable = ixgbe_dev_promiscuous_enable,
537 .promiscuous_disable = ixgbe_dev_promiscuous_disable,
538 .allmulticast_enable = ixgbe_dev_allmulticast_enable,
539 .allmulticast_disable = ixgbe_dev_allmulticast_disable,
540 .link_update = ixgbe_dev_link_update,
541 .stats_get = ixgbe_dev_stats_get,
542 .xstats_get = ixgbe_dev_xstats_get,
543 .stats_reset = ixgbe_dev_stats_reset,
544 .xstats_reset = ixgbe_dev_xstats_reset,
545 .xstats_get_names = ixgbe_dev_xstats_get_names,
546 .queue_stats_mapping_set = ixgbe_dev_queue_stats_mapping_set,
547 .fw_version_get = ixgbe_fw_version_get,
548 .dev_infos_get = ixgbe_dev_info_get,
549 .dev_supported_ptypes_get = ixgbe_dev_supported_ptypes_get,
550 .mtu_set = ixgbe_dev_mtu_set,
551 .vlan_filter_set = ixgbe_vlan_filter_set,
552 .vlan_tpid_set = ixgbe_vlan_tpid_set,
553 .vlan_offload_set = ixgbe_vlan_offload_set,
554 .vlan_strip_queue_set = ixgbe_vlan_strip_queue_set,
555 .rx_queue_start = ixgbe_dev_rx_queue_start,
556 .rx_queue_stop = ixgbe_dev_rx_queue_stop,
557 .tx_queue_start = ixgbe_dev_tx_queue_start,
558 .tx_queue_stop = ixgbe_dev_tx_queue_stop,
559 .rx_queue_setup = ixgbe_dev_rx_queue_setup,
560 .rx_queue_intr_enable = ixgbe_dev_rx_queue_intr_enable,
561 .rx_queue_intr_disable = ixgbe_dev_rx_queue_intr_disable,
562 .rx_queue_release = ixgbe_dev_rx_queue_release,
563 .rx_queue_count = ixgbe_dev_rx_queue_count,
564 .rx_descriptor_done = ixgbe_dev_rx_descriptor_done,
565 .tx_queue_setup = ixgbe_dev_tx_queue_setup,
566 .tx_queue_release = ixgbe_dev_tx_queue_release,
567 .dev_led_on = ixgbe_dev_led_on,
568 .dev_led_off = ixgbe_dev_led_off,
569 .flow_ctrl_get = ixgbe_flow_ctrl_get,
570 .flow_ctrl_set = ixgbe_flow_ctrl_set,
571 .priority_flow_ctrl_set = ixgbe_priority_flow_ctrl_set,
572 .mac_addr_add = ixgbe_add_rar,
573 .mac_addr_remove = ixgbe_remove_rar,
574 .mac_addr_set = ixgbe_set_default_mac_addr,
575 .uc_hash_table_set = ixgbe_uc_hash_table_set,
576 .uc_all_hash_table_set = ixgbe_uc_all_hash_table_set,
577 .mirror_rule_set = ixgbe_mirror_rule_set,
578 .mirror_rule_reset = ixgbe_mirror_rule_reset,
579 .set_queue_rate_limit = ixgbe_set_queue_rate_limit,
580 .reta_update = ixgbe_dev_rss_reta_update,
581 .reta_query = ixgbe_dev_rss_reta_query,
582 #ifdef RTE_NIC_BYPASS
583 .bypass_init = ixgbe_bypass_init,
584 .bypass_state_set = ixgbe_bypass_state_store,
585 .bypass_state_show = ixgbe_bypass_state_show,
586 .bypass_event_set = ixgbe_bypass_event_store,
587 .bypass_event_show = ixgbe_bypass_event_show,
588 .bypass_wd_timeout_set = ixgbe_bypass_wd_timeout_store,
589 .bypass_wd_timeout_show = ixgbe_bypass_wd_timeout_show,
590 .bypass_ver_show = ixgbe_bypass_ver_show,
591 .bypass_wd_reset = ixgbe_bypass_wd_reset,
592 #endif /* RTE_NIC_BYPASS */
593 .rss_hash_update = ixgbe_dev_rss_hash_update,
594 .rss_hash_conf_get = ixgbe_dev_rss_hash_conf_get,
595 .filter_ctrl = ixgbe_dev_filter_ctrl,
596 .set_mc_addr_list = ixgbe_dev_set_mc_addr_list,
597 .rxq_info_get = ixgbe_rxq_info_get,
598 .txq_info_get = ixgbe_txq_info_get,
599 .timesync_enable = ixgbe_timesync_enable,
600 .timesync_disable = ixgbe_timesync_disable,
601 .timesync_read_rx_timestamp = ixgbe_timesync_read_rx_timestamp,
602 .timesync_read_tx_timestamp = ixgbe_timesync_read_tx_timestamp,
603 .get_reg = ixgbe_get_regs,
604 .get_eeprom_length = ixgbe_get_eeprom_length,
605 .get_eeprom = ixgbe_get_eeprom,
606 .set_eeprom = ixgbe_set_eeprom,
607 .get_dcb_info = ixgbe_dev_get_dcb_info,
608 .timesync_adjust_time = ixgbe_timesync_adjust_time,
609 .timesync_read_time = ixgbe_timesync_read_time,
610 .timesync_write_time = ixgbe_timesync_write_time,
611 .l2_tunnel_eth_type_conf = ixgbe_dev_l2_tunnel_eth_type_conf,
612 .l2_tunnel_offload_set = ixgbe_dev_l2_tunnel_offload_set,
613 .udp_tunnel_port_add = ixgbe_dev_udp_tunnel_port_add,
614 .udp_tunnel_port_del = ixgbe_dev_udp_tunnel_port_del,
618 * dev_ops for virtual function, bare necessities for basic vf
619 * operation have been implemented
621 static const struct eth_dev_ops ixgbevf_eth_dev_ops = {
622 .dev_configure = ixgbevf_dev_configure,
623 .dev_start = ixgbevf_dev_start,
624 .dev_stop = ixgbevf_dev_stop,
625 .link_update = ixgbe_dev_link_update,
626 .stats_get = ixgbevf_dev_stats_get,
627 .xstats_get = ixgbevf_dev_xstats_get,
628 .stats_reset = ixgbevf_dev_stats_reset,
629 .xstats_reset = ixgbevf_dev_stats_reset,
630 .xstats_get_names = ixgbevf_dev_xstats_get_names,
631 .dev_close = ixgbevf_dev_close,
632 .allmulticast_enable = ixgbevf_dev_allmulticast_enable,
633 .allmulticast_disable = ixgbevf_dev_allmulticast_disable,
634 .dev_infos_get = ixgbevf_dev_info_get,
635 .dev_supported_ptypes_get = ixgbe_dev_supported_ptypes_get,
636 .mtu_set = ixgbevf_dev_set_mtu,
637 .vlan_filter_set = ixgbevf_vlan_filter_set,
638 .vlan_strip_queue_set = ixgbevf_vlan_strip_queue_set,
639 .vlan_offload_set = ixgbevf_vlan_offload_set,
640 .rx_queue_setup = ixgbe_dev_rx_queue_setup,
641 .rx_queue_release = ixgbe_dev_rx_queue_release,
642 .rx_descriptor_done = ixgbe_dev_rx_descriptor_done,
643 .tx_queue_setup = ixgbe_dev_tx_queue_setup,
644 .tx_queue_release = ixgbe_dev_tx_queue_release,
645 .rx_queue_intr_enable = ixgbevf_dev_rx_queue_intr_enable,
646 .rx_queue_intr_disable = ixgbevf_dev_rx_queue_intr_disable,
647 .mac_addr_add = ixgbevf_add_mac_addr,
648 .mac_addr_remove = ixgbevf_remove_mac_addr,
649 .set_mc_addr_list = ixgbe_dev_set_mc_addr_list,
650 .rxq_info_get = ixgbe_rxq_info_get,
651 .txq_info_get = ixgbe_txq_info_get,
652 .mac_addr_set = ixgbevf_set_default_mac_addr,
653 .get_reg = ixgbevf_get_regs,
654 .reta_update = ixgbe_dev_rss_reta_update,
655 .reta_query = ixgbe_dev_rss_reta_query,
656 .rss_hash_update = ixgbe_dev_rss_hash_update,
657 .rss_hash_conf_get = ixgbe_dev_rss_hash_conf_get,
660 /* store statistics names and its offset in stats structure */
661 struct rte_ixgbe_xstats_name_off {
662 char name[RTE_ETH_XSTATS_NAME_SIZE];
666 static const struct rte_ixgbe_xstats_name_off rte_ixgbe_stats_strings[] = {
667 {"rx_crc_errors", offsetof(struct ixgbe_hw_stats, crcerrs)},
668 {"rx_illegal_byte_errors", offsetof(struct ixgbe_hw_stats, illerrc)},
669 {"rx_error_bytes", offsetof(struct ixgbe_hw_stats, errbc)},
670 {"mac_local_errors", offsetof(struct ixgbe_hw_stats, mlfc)},
671 {"mac_remote_errors", offsetof(struct ixgbe_hw_stats, mrfc)},
672 {"rx_length_errors", offsetof(struct ixgbe_hw_stats, rlec)},
673 {"tx_xon_packets", offsetof(struct ixgbe_hw_stats, lxontxc)},
674 {"rx_xon_packets", offsetof(struct ixgbe_hw_stats, lxonrxc)},
675 {"tx_xoff_packets", offsetof(struct ixgbe_hw_stats, lxofftxc)},
676 {"rx_xoff_packets", offsetof(struct ixgbe_hw_stats, lxoffrxc)},
677 {"rx_size_64_packets", offsetof(struct ixgbe_hw_stats, prc64)},
678 {"rx_size_65_to_127_packets", offsetof(struct ixgbe_hw_stats, prc127)},
679 {"rx_size_128_to_255_packets", offsetof(struct ixgbe_hw_stats, prc255)},
680 {"rx_size_256_to_511_packets", offsetof(struct ixgbe_hw_stats, prc511)},
681 {"rx_size_512_to_1023_packets", offsetof(struct ixgbe_hw_stats,
683 {"rx_size_1024_to_max_packets", offsetof(struct ixgbe_hw_stats,
685 {"rx_broadcast_packets", offsetof(struct ixgbe_hw_stats, bprc)},
686 {"rx_multicast_packets", offsetof(struct ixgbe_hw_stats, mprc)},
687 {"rx_fragment_errors", offsetof(struct ixgbe_hw_stats, rfc)},
688 {"rx_undersize_errors", offsetof(struct ixgbe_hw_stats, ruc)},
689 {"rx_oversize_errors", offsetof(struct ixgbe_hw_stats, roc)},
690 {"rx_jabber_errors", offsetof(struct ixgbe_hw_stats, rjc)},
691 {"rx_management_packets", offsetof(struct ixgbe_hw_stats, mngprc)},
692 {"rx_management_dropped", offsetof(struct ixgbe_hw_stats, mngpdc)},
693 {"tx_management_packets", offsetof(struct ixgbe_hw_stats, mngptc)},
694 {"rx_total_packets", offsetof(struct ixgbe_hw_stats, tpr)},
695 {"rx_total_bytes", offsetof(struct ixgbe_hw_stats, tor)},
696 {"tx_total_packets", offsetof(struct ixgbe_hw_stats, tpt)},
697 {"tx_size_64_packets", offsetof(struct ixgbe_hw_stats, ptc64)},
698 {"tx_size_65_to_127_packets", offsetof(struct ixgbe_hw_stats, ptc127)},
699 {"tx_size_128_to_255_packets", offsetof(struct ixgbe_hw_stats, ptc255)},
700 {"tx_size_256_to_511_packets", offsetof(struct ixgbe_hw_stats, ptc511)},
701 {"tx_size_512_to_1023_packets", offsetof(struct ixgbe_hw_stats,
703 {"tx_size_1024_to_max_packets", offsetof(struct ixgbe_hw_stats,
705 {"tx_multicast_packets", offsetof(struct ixgbe_hw_stats, mptc)},
706 {"tx_broadcast_packets", offsetof(struct ixgbe_hw_stats, bptc)},
707 {"rx_mac_short_packet_dropped", offsetof(struct ixgbe_hw_stats, mspdc)},
708 {"rx_l3_l4_xsum_error", offsetof(struct ixgbe_hw_stats, xec)},
710 {"flow_director_added_filters", offsetof(struct ixgbe_hw_stats,
712 {"flow_director_removed_filters", offsetof(struct ixgbe_hw_stats,
714 {"flow_director_filter_add_errors", offsetof(struct ixgbe_hw_stats,
716 {"flow_director_filter_remove_errors", offsetof(struct ixgbe_hw_stats,
718 {"flow_director_matched_filters", offsetof(struct ixgbe_hw_stats,
720 {"flow_director_missed_filters", offsetof(struct ixgbe_hw_stats,
723 {"rx_fcoe_crc_errors", offsetof(struct ixgbe_hw_stats, fccrc)},
724 {"rx_fcoe_dropped", offsetof(struct ixgbe_hw_stats, fcoerpdc)},
725 {"rx_fcoe_mbuf_allocation_errors", offsetof(struct ixgbe_hw_stats,
727 {"rx_fcoe_packets", offsetof(struct ixgbe_hw_stats, fcoeprc)},
728 {"tx_fcoe_packets", offsetof(struct ixgbe_hw_stats, fcoeptc)},
729 {"rx_fcoe_bytes", offsetof(struct ixgbe_hw_stats, fcoedwrc)},
730 {"tx_fcoe_bytes", offsetof(struct ixgbe_hw_stats, fcoedwtc)},
731 {"rx_fcoe_no_direct_data_placement", offsetof(struct ixgbe_hw_stats,
733 {"rx_fcoe_no_direct_data_placement_ext_buff",
734 offsetof(struct ixgbe_hw_stats, fcoe_noddp_ext_buff)},
736 {"tx_flow_control_xon_packets", offsetof(struct ixgbe_hw_stats,
738 {"rx_flow_control_xon_packets", offsetof(struct ixgbe_hw_stats,
740 {"tx_flow_control_xoff_packets", offsetof(struct ixgbe_hw_stats,
742 {"rx_flow_control_xoff_packets", offsetof(struct ixgbe_hw_stats,
744 {"rx_total_missed_packets", offsetof(struct ixgbe_hw_stats, mpctotal)},
747 #define IXGBE_NB_HW_STATS (sizeof(rte_ixgbe_stats_strings) / \
748 sizeof(rte_ixgbe_stats_strings[0]))
750 /* MACsec statistics */
751 static const struct rte_ixgbe_xstats_name_off rte_ixgbe_macsec_strings[] = {
752 {"out_pkts_untagged", offsetof(struct ixgbe_macsec_stats,
754 {"out_pkts_encrypted", offsetof(struct ixgbe_macsec_stats,
755 out_pkts_encrypted)},
756 {"out_pkts_protected", offsetof(struct ixgbe_macsec_stats,
757 out_pkts_protected)},
758 {"out_octets_encrypted", offsetof(struct ixgbe_macsec_stats,
759 out_octets_encrypted)},
760 {"out_octets_protected", offsetof(struct ixgbe_macsec_stats,
761 out_octets_protected)},
762 {"in_pkts_untagged", offsetof(struct ixgbe_macsec_stats,
764 {"in_pkts_badtag", offsetof(struct ixgbe_macsec_stats,
766 {"in_pkts_nosci", offsetof(struct ixgbe_macsec_stats,
768 {"in_pkts_unknownsci", offsetof(struct ixgbe_macsec_stats,
769 in_pkts_unknownsci)},
770 {"in_octets_decrypted", offsetof(struct ixgbe_macsec_stats,
771 in_octets_decrypted)},
772 {"in_octets_validated", offsetof(struct ixgbe_macsec_stats,
773 in_octets_validated)},
774 {"in_pkts_unchecked", offsetof(struct ixgbe_macsec_stats,
776 {"in_pkts_delayed", offsetof(struct ixgbe_macsec_stats,
778 {"in_pkts_late", offsetof(struct ixgbe_macsec_stats,
780 {"in_pkts_ok", offsetof(struct ixgbe_macsec_stats,
782 {"in_pkts_invalid", offsetof(struct ixgbe_macsec_stats,
784 {"in_pkts_notvalid", offsetof(struct ixgbe_macsec_stats,
786 {"in_pkts_unusedsa", offsetof(struct ixgbe_macsec_stats,
788 {"in_pkts_notusingsa", offsetof(struct ixgbe_macsec_stats,
789 in_pkts_notusingsa)},
792 #define IXGBE_NB_MACSEC_STATS (sizeof(rte_ixgbe_macsec_strings) / \
793 sizeof(rte_ixgbe_macsec_strings[0]))
795 /* Per-queue statistics */
796 static const struct rte_ixgbe_xstats_name_off rte_ixgbe_rxq_strings[] = {
797 {"mbuf_allocation_errors", offsetof(struct ixgbe_hw_stats, rnbc)},
798 {"dropped", offsetof(struct ixgbe_hw_stats, mpc)},
799 {"xon_packets", offsetof(struct ixgbe_hw_stats, pxonrxc)},
800 {"xoff_packets", offsetof(struct ixgbe_hw_stats, pxoffrxc)},
803 #define IXGBE_NB_RXQ_PRIO_STATS (sizeof(rte_ixgbe_rxq_strings) / \
804 sizeof(rte_ixgbe_rxq_strings[0]))
805 #define IXGBE_NB_RXQ_PRIO_VALUES 8
807 static const struct rte_ixgbe_xstats_name_off rte_ixgbe_txq_strings[] = {
808 {"xon_packets", offsetof(struct ixgbe_hw_stats, pxontxc)},
809 {"xoff_packets", offsetof(struct ixgbe_hw_stats, pxofftxc)},
810 {"xon_to_xoff_packets", offsetof(struct ixgbe_hw_stats,
814 #define IXGBE_NB_TXQ_PRIO_STATS (sizeof(rte_ixgbe_txq_strings) / \
815 sizeof(rte_ixgbe_txq_strings[0]))
816 #define IXGBE_NB_TXQ_PRIO_VALUES 8
818 static const struct rte_ixgbe_xstats_name_off rte_ixgbevf_stats_strings[] = {
819 {"rx_multicast_packets", offsetof(struct ixgbevf_hw_stats, vfmprc)},
822 #define IXGBEVF_NB_XSTATS (sizeof(rte_ixgbevf_stats_strings) / \
823 sizeof(rte_ixgbevf_stats_strings[0]))
826 * Atomically reads the link status information from global
827 * structure rte_eth_dev.
830 * - Pointer to the structure rte_eth_dev to read from.
831 * - Pointer to the buffer to be saved with the link status.
834 * - On success, zero.
835 * - On failure, negative value.
838 rte_ixgbe_dev_atomic_read_link_status(struct rte_eth_dev *dev,
839 struct rte_eth_link *link)
841 struct rte_eth_link *dst = link;
842 struct rte_eth_link *src = &(dev->data->dev_link);
844 if (rte_atomic64_cmpset((uint64_t *)dst, *(uint64_t *)dst,
845 *(uint64_t *)src) == 0)
852 * Atomically writes the link status information into global
853 * structure rte_eth_dev.
856 * - Pointer to the structure rte_eth_dev to read from.
857 * - Pointer to the buffer to be saved with the link status.
860 * - On success, zero.
861 * - On failure, negative value.
864 rte_ixgbe_dev_atomic_write_link_status(struct rte_eth_dev *dev,
865 struct rte_eth_link *link)
867 struct rte_eth_link *dst = &(dev->data->dev_link);
868 struct rte_eth_link *src = link;
870 if (rte_atomic64_cmpset((uint64_t *)dst, *(uint64_t *)dst,
871 *(uint64_t *)src) == 0)
878 * This function is the same as ixgbe_is_sfp() in base/ixgbe.h.
881 ixgbe_is_sfp(struct ixgbe_hw *hw)
883 switch (hw->phy.type) {
884 case ixgbe_phy_sfp_avago:
885 case ixgbe_phy_sfp_ftl:
886 case ixgbe_phy_sfp_intel:
887 case ixgbe_phy_sfp_unknown:
888 case ixgbe_phy_sfp_passive_tyco:
889 case ixgbe_phy_sfp_passive_unknown:
896 static inline int32_t
897 ixgbe_pf_reset_hw(struct ixgbe_hw *hw)
902 status = ixgbe_reset_hw(hw);
904 ctrl_ext = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT);
905 /* Set PF Reset Done bit so PF/VF Mail Ops can work */
906 ctrl_ext |= IXGBE_CTRL_EXT_PFRSTD;
907 IXGBE_WRITE_REG(hw, IXGBE_CTRL_EXT, ctrl_ext);
908 IXGBE_WRITE_FLUSH(hw);
914 ixgbe_enable_intr(struct rte_eth_dev *dev)
916 struct ixgbe_interrupt *intr =
917 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
918 struct ixgbe_hw *hw =
919 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
921 IXGBE_WRITE_REG(hw, IXGBE_EIMS, intr->mask);
922 IXGBE_WRITE_FLUSH(hw);
926 * This function is based on ixgbe_disable_intr() in base/ixgbe.h.
929 ixgbe_disable_intr(struct ixgbe_hw *hw)
931 PMD_INIT_FUNC_TRACE();
933 if (hw->mac.type == ixgbe_mac_82598EB) {
934 IXGBE_WRITE_REG(hw, IXGBE_EIMC, ~0);
936 IXGBE_WRITE_REG(hw, IXGBE_EIMC, 0xFFFF0000);
937 IXGBE_WRITE_REG(hw, IXGBE_EIMC_EX(0), ~0);
938 IXGBE_WRITE_REG(hw, IXGBE_EIMC_EX(1), ~0);
940 IXGBE_WRITE_FLUSH(hw);
944 * This function resets queue statistics mapping registers.
945 * From Niantic datasheet, Initialization of Statistics section:
946 * "...if software requires the queue counters, the RQSMR and TQSM registers
947 * must be re-programmed following a device reset.
950 ixgbe_reset_qstat_mappings(struct ixgbe_hw *hw)
954 for (i = 0; i != IXGBE_NB_STAT_MAPPING_REGS; i++) {
955 IXGBE_WRITE_REG(hw, IXGBE_RQSMR(i), 0);
956 IXGBE_WRITE_REG(hw, IXGBE_TQSM(i), 0);
962 ixgbe_dev_queue_stats_mapping_set(struct rte_eth_dev *eth_dev,
967 #define QSM_REG_NB_BITS_PER_QMAP_FIELD 8
968 #define NB_QMAP_FIELDS_PER_QSM_REG 4
969 #define QMAP_FIELD_RESERVED_BITS_MASK 0x0f
971 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(eth_dev->data->dev_private);
972 struct ixgbe_stat_mapping_registers *stat_mappings =
973 IXGBE_DEV_PRIVATE_TO_STAT_MAPPINGS(eth_dev->data->dev_private);
974 uint32_t qsmr_mask = 0;
975 uint32_t clearing_mask = QMAP_FIELD_RESERVED_BITS_MASK;
979 if ((hw->mac.type != ixgbe_mac_82599EB) &&
980 (hw->mac.type != ixgbe_mac_X540) &&
981 (hw->mac.type != ixgbe_mac_X550) &&
982 (hw->mac.type != ixgbe_mac_X550EM_x) &&
983 (hw->mac.type != ixgbe_mac_X550EM_a))
986 PMD_INIT_LOG(DEBUG, "Setting port %d, %s queue_id %d to stat index %d",
987 (int)(eth_dev->data->port_id), is_rx ? "RX" : "TX",
990 n = (uint8_t)(queue_id / NB_QMAP_FIELDS_PER_QSM_REG);
991 if (n >= IXGBE_NB_STAT_MAPPING_REGS) {
992 PMD_INIT_LOG(ERR, "Nb of stat mapping registers exceeded");
995 offset = (uint8_t)(queue_id % NB_QMAP_FIELDS_PER_QSM_REG);
997 /* Now clear any previous stat_idx set */
998 clearing_mask <<= (QSM_REG_NB_BITS_PER_QMAP_FIELD * offset);
1000 stat_mappings->tqsm[n] &= ~clearing_mask;
1002 stat_mappings->rqsmr[n] &= ~clearing_mask;
1004 q_map = (uint32_t)stat_idx;
1005 q_map &= QMAP_FIELD_RESERVED_BITS_MASK;
1006 qsmr_mask = q_map << (QSM_REG_NB_BITS_PER_QMAP_FIELD * offset);
1008 stat_mappings->tqsm[n] |= qsmr_mask;
1010 stat_mappings->rqsmr[n] |= qsmr_mask;
1012 PMD_INIT_LOG(DEBUG, "Set port %d, %s queue_id %d to stat index %d",
1013 (int)(eth_dev->data->port_id), is_rx ? "RX" : "TX",
1014 queue_id, stat_idx);
1015 PMD_INIT_LOG(DEBUG, "%s[%d] = 0x%08x", is_rx ? "RQSMR" : "TQSM", n,
1016 is_rx ? stat_mappings->rqsmr[n] : stat_mappings->tqsm[n]);
1018 /* Now write the mapping in the appropriate register */
1020 PMD_INIT_LOG(DEBUG, "Write 0x%x to RX IXGBE stat mapping reg:%d",
1021 stat_mappings->rqsmr[n], n);
1022 IXGBE_WRITE_REG(hw, IXGBE_RQSMR(n), stat_mappings->rqsmr[n]);
1024 PMD_INIT_LOG(DEBUG, "Write 0x%x to TX IXGBE stat mapping reg:%d",
1025 stat_mappings->tqsm[n], n);
1026 IXGBE_WRITE_REG(hw, IXGBE_TQSM(n), stat_mappings->tqsm[n]);
1032 ixgbe_restore_statistics_mapping(struct rte_eth_dev *dev)
1034 struct ixgbe_stat_mapping_registers *stat_mappings =
1035 IXGBE_DEV_PRIVATE_TO_STAT_MAPPINGS(dev->data->dev_private);
1036 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1039 /* write whatever was in stat mapping table to the NIC */
1040 for (i = 0; i < IXGBE_NB_STAT_MAPPING_REGS; i++) {
1042 IXGBE_WRITE_REG(hw, IXGBE_RQSMR(i), stat_mappings->rqsmr[i]);
1045 IXGBE_WRITE_REG(hw, IXGBE_TQSM(i), stat_mappings->tqsm[i]);
1050 ixgbe_dcb_init(struct ixgbe_hw *hw, struct ixgbe_dcb_config *dcb_config)
1053 struct ixgbe_dcb_tc_config *tc;
1054 uint8_t dcb_max_tc = IXGBE_DCB_MAX_TRAFFIC_CLASS;
1056 dcb_config->num_tcs.pg_tcs = dcb_max_tc;
1057 dcb_config->num_tcs.pfc_tcs = dcb_max_tc;
1058 for (i = 0; i < dcb_max_tc; i++) {
1059 tc = &dcb_config->tc_config[i];
1060 tc->path[IXGBE_DCB_TX_CONFIG].bwg_id = i;
1061 tc->path[IXGBE_DCB_TX_CONFIG].bwg_percent =
1062 (uint8_t)(100/dcb_max_tc + (i & 1));
1063 tc->path[IXGBE_DCB_RX_CONFIG].bwg_id = i;
1064 tc->path[IXGBE_DCB_RX_CONFIG].bwg_percent =
1065 (uint8_t)(100/dcb_max_tc + (i & 1));
1066 tc->pfc = ixgbe_dcb_pfc_disabled;
1069 /* Initialize default user to priority mapping, UPx->TC0 */
1070 tc = &dcb_config->tc_config[0];
1071 tc->path[IXGBE_DCB_TX_CONFIG].up_to_tc_bitmap = 0xFF;
1072 tc->path[IXGBE_DCB_RX_CONFIG].up_to_tc_bitmap = 0xFF;
1073 for (i = 0; i < IXGBE_DCB_MAX_BW_GROUP; i++) {
1074 dcb_config->bw_percentage[IXGBE_DCB_TX_CONFIG][i] = 100;
1075 dcb_config->bw_percentage[IXGBE_DCB_RX_CONFIG][i] = 100;
1077 dcb_config->rx_pba_cfg = ixgbe_dcb_pba_equal;
1078 dcb_config->pfc_mode_enable = false;
1079 dcb_config->vt_mode = true;
1080 dcb_config->round_robin_enable = false;
1081 /* support all DCB capabilities in 82599 */
1082 dcb_config->support.capabilities = 0xFF;
1084 /*we only support 4 Tcs for X540, X550 */
1085 if (hw->mac.type == ixgbe_mac_X540 ||
1086 hw->mac.type == ixgbe_mac_X550 ||
1087 hw->mac.type == ixgbe_mac_X550EM_x ||
1088 hw->mac.type == ixgbe_mac_X550EM_a) {
1089 dcb_config->num_tcs.pg_tcs = 4;
1090 dcb_config->num_tcs.pfc_tcs = 4;
1095 * Ensure that all locks are released before first NVM or PHY access
1098 ixgbe_swfw_lock_reset(struct ixgbe_hw *hw)
1103 * Phy lock should not fail in this early stage. If this is the case,
1104 * it is due to an improper exit of the application.
1105 * So force the release of the faulty lock. Release of common lock
1106 * is done automatically by swfw_sync function.
1108 mask = IXGBE_GSSR_PHY0_SM << hw->bus.func;
1109 if (ixgbe_acquire_swfw_semaphore(hw, mask) < 0) {
1110 PMD_DRV_LOG(DEBUG, "SWFW phy%d lock released", hw->bus.func);
1112 ixgbe_release_swfw_semaphore(hw, mask);
1115 * These ones are more tricky since they are common to all ports; but
1116 * swfw_sync retries last long enough (1s) to be almost sure that if
1117 * lock can not be taken it is due to an improper lock of the
1120 mask = IXGBE_GSSR_EEP_SM | IXGBE_GSSR_MAC_CSR_SM | IXGBE_GSSR_SW_MNG_SM;
1121 if (ixgbe_acquire_swfw_semaphore(hw, mask) < 0) {
1122 PMD_DRV_LOG(DEBUG, "SWFW common locks released");
1124 ixgbe_release_swfw_semaphore(hw, mask);
1128 * This function is based on code in ixgbe_attach() in base/ixgbe.c.
1129 * It returns 0 on success.
1132 eth_ixgbe_dev_init(struct rte_eth_dev *eth_dev)
1134 struct rte_pci_device *pci_dev = IXGBE_DEV_TO_PCI(eth_dev);
1135 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
1136 struct ixgbe_hw *hw =
1137 IXGBE_DEV_PRIVATE_TO_HW(eth_dev->data->dev_private);
1138 struct ixgbe_vfta *shadow_vfta =
1139 IXGBE_DEV_PRIVATE_TO_VFTA(eth_dev->data->dev_private);
1140 struct ixgbe_hwstrip *hwstrip =
1141 IXGBE_DEV_PRIVATE_TO_HWSTRIP_BITMAP(eth_dev->data->dev_private);
1142 struct ixgbe_dcb_config *dcb_config =
1143 IXGBE_DEV_PRIVATE_TO_DCB_CFG(eth_dev->data->dev_private);
1144 struct ixgbe_filter_info *filter_info =
1145 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(eth_dev->data->dev_private);
1150 PMD_INIT_FUNC_TRACE();
1152 eth_dev->dev_ops = &ixgbe_eth_dev_ops;
1153 eth_dev->rx_pkt_burst = &ixgbe_recv_pkts;
1154 eth_dev->tx_pkt_burst = &ixgbe_xmit_pkts;
1155 eth_dev->tx_pkt_prepare = &ixgbe_prep_pkts;
1158 * For secondary processes, we don't initialise any further as primary
1159 * has already done this work. Only check we don't need a different
1160 * RX and TX function.
1162 if (rte_eal_process_type() != RTE_PROC_PRIMARY) {
1163 struct ixgbe_tx_queue *txq;
1164 /* TX queue function in primary, set by last queue initialized
1165 * Tx queue may not initialized by primary process
1167 if (eth_dev->data->tx_queues) {
1168 txq = eth_dev->data->tx_queues[eth_dev->data->nb_tx_queues-1];
1169 ixgbe_set_tx_function(eth_dev, txq);
1171 /* Use default TX function if we get here */
1172 PMD_INIT_LOG(NOTICE, "No TX queues configured yet. "
1173 "Using default TX function.");
1176 ixgbe_set_rx_function(eth_dev);
1181 rte_eth_copy_pci_info(eth_dev, pci_dev);
1182 eth_dev->data->dev_flags = RTE_ETH_DEV_DETACHABLE;
1184 /* Vendor and Device ID need to be set before init of shared code */
1185 hw->device_id = pci_dev->id.device_id;
1186 hw->vendor_id = pci_dev->id.vendor_id;
1187 hw->hw_addr = (void *)pci_dev->mem_resource[0].addr;
1188 hw->allow_unsupported_sfp = 1;
1190 /* Initialize the shared code (base driver) */
1191 #ifdef RTE_NIC_BYPASS
1192 diag = ixgbe_bypass_init_shared_code(hw);
1194 diag = ixgbe_init_shared_code(hw);
1195 #endif /* RTE_NIC_BYPASS */
1197 if (diag != IXGBE_SUCCESS) {
1198 PMD_INIT_LOG(ERR, "Shared code init failed: %d", diag);
1202 /* pick up the PCI bus settings for reporting later */
1203 ixgbe_get_bus_info(hw);
1205 /* Unlock any pending hardware semaphore */
1206 ixgbe_swfw_lock_reset(hw);
1208 /* Initialize DCB configuration*/
1209 memset(dcb_config, 0, sizeof(struct ixgbe_dcb_config));
1210 ixgbe_dcb_init(hw, dcb_config);
1211 /* Get Hardware Flow Control setting */
1212 hw->fc.requested_mode = ixgbe_fc_full;
1213 hw->fc.current_mode = ixgbe_fc_full;
1214 hw->fc.pause_time = IXGBE_FC_PAUSE;
1215 for (i = 0; i < IXGBE_DCB_MAX_TRAFFIC_CLASS; i++) {
1216 hw->fc.low_water[i] = IXGBE_FC_LO;
1217 hw->fc.high_water[i] = IXGBE_FC_HI;
1219 hw->fc.send_xon = 1;
1221 /* Make sure we have a good EEPROM before we read from it */
1222 diag = ixgbe_validate_eeprom_checksum(hw, &csum);
1223 if (diag != IXGBE_SUCCESS) {
1224 PMD_INIT_LOG(ERR, "The EEPROM checksum is not valid: %d", diag);
1228 #ifdef RTE_NIC_BYPASS
1229 diag = ixgbe_bypass_init_hw(hw);
1231 diag = ixgbe_init_hw(hw);
1232 #endif /* RTE_NIC_BYPASS */
1235 * Devices with copper phys will fail to initialise if ixgbe_init_hw()
1236 * is called too soon after the kernel driver unbinding/binding occurs.
1237 * The failure occurs in ixgbe_identify_phy_generic() for all devices,
1238 * but for non-copper devies, ixgbe_identify_sfp_module_generic() is
1239 * also called. See ixgbe_identify_phy_82599(). The reason for the
1240 * failure is not known, and only occuts when virtualisation features
1241 * are disabled in the bios. A delay of 100ms was found to be enough by
1242 * trial-and-error, and is doubled to be safe.
1244 if (diag && (hw->mac.ops.get_media_type(hw) == ixgbe_media_type_copper)) {
1246 diag = ixgbe_init_hw(hw);
1249 if (diag == IXGBE_ERR_EEPROM_VERSION) {
1250 PMD_INIT_LOG(ERR, "This device is a pre-production adapter/"
1251 "LOM. Please be aware there may be issues associated "
1252 "with your hardware.");
1253 PMD_INIT_LOG(ERR, "If you are experiencing problems "
1254 "please contact your Intel or hardware representative "
1255 "who provided you with this hardware.");
1256 } else if (diag == IXGBE_ERR_SFP_NOT_SUPPORTED)
1257 PMD_INIT_LOG(ERR, "Unsupported SFP+ Module");
1259 PMD_INIT_LOG(ERR, "Hardware Initialization Failure: %d", diag);
1263 /* Reset the hw statistics */
1264 ixgbe_dev_stats_reset(eth_dev);
1266 /* disable interrupt */
1267 ixgbe_disable_intr(hw);
1269 /* reset mappings for queue statistics hw counters*/
1270 ixgbe_reset_qstat_mappings(hw);
1272 /* Allocate memory for storing MAC addresses */
1273 eth_dev->data->mac_addrs = rte_zmalloc("ixgbe", ETHER_ADDR_LEN *
1274 hw->mac.num_rar_entries, 0);
1275 if (eth_dev->data->mac_addrs == NULL) {
1277 "Failed to allocate %u bytes needed to store "
1279 ETHER_ADDR_LEN * hw->mac.num_rar_entries);
1282 /* Copy the permanent MAC address */
1283 ether_addr_copy((struct ether_addr *) hw->mac.perm_addr,
1284 ð_dev->data->mac_addrs[0]);
1286 /* Allocate memory for storing hash filter MAC addresses */
1287 eth_dev->data->hash_mac_addrs = rte_zmalloc("ixgbe", ETHER_ADDR_LEN *
1288 IXGBE_VMDQ_NUM_UC_MAC, 0);
1289 if (eth_dev->data->hash_mac_addrs == NULL) {
1291 "Failed to allocate %d bytes needed to store MAC addresses",
1292 ETHER_ADDR_LEN * IXGBE_VMDQ_NUM_UC_MAC);
1296 /* initialize the vfta */
1297 memset(shadow_vfta, 0, sizeof(*shadow_vfta));
1299 /* initialize the hw strip bitmap*/
1300 memset(hwstrip, 0, sizeof(*hwstrip));
1302 /* initialize PF if max_vfs not zero */
1303 ixgbe_pf_host_init(eth_dev);
1305 ctrl_ext = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT);
1306 /* let hardware know driver is loaded */
1307 ctrl_ext |= IXGBE_CTRL_EXT_DRV_LOAD;
1308 /* Set PF Reset Done bit so PF/VF Mail Ops can work */
1309 ctrl_ext |= IXGBE_CTRL_EXT_PFRSTD;
1310 IXGBE_WRITE_REG(hw, IXGBE_CTRL_EXT, ctrl_ext);
1311 IXGBE_WRITE_FLUSH(hw);
1313 if (ixgbe_is_sfp(hw) && hw->phy.sfp_type != ixgbe_sfp_type_not_present)
1314 PMD_INIT_LOG(DEBUG, "MAC: %d, PHY: %d, SFP+: %d",
1315 (int) hw->mac.type, (int) hw->phy.type,
1316 (int) hw->phy.sfp_type);
1318 PMD_INIT_LOG(DEBUG, "MAC: %d, PHY: %d",
1319 (int) hw->mac.type, (int) hw->phy.type);
1321 PMD_INIT_LOG(DEBUG, "port %d vendorID=0x%x deviceID=0x%x",
1322 eth_dev->data->port_id, pci_dev->id.vendor_id,
1323 pci_dev->id.device_id);
1325 rte_intr_callback_register(intr_handle,
1326 ixgbe_dev_interrupt_handler, eth_dev);
1328 /* enable uio/vfio intr/eventfd mapping */
1329 rte_intr_enable(intr_handle);
1331 /* enable support intr */
1332 ixgbe_enable_intr(eth_dev);
1334 /* initialize filter info */
1335 memset(filter_info, 0,
1336 sizeof(struct ixgbe_filter_info));
1338 /* initialize 5tuple filter list */
1339 TAILQ_INIT(&filter_info->fivetuple_list);
1341 /* initialize flow director filter list & hash */
1342 ixgbe_fdir_filter_init(eth_dev);
1344 /* initialize l2 tunnel filter list & hash */
1345 ixgbe_l2_tn_filter_init(eth_dev);
1350 eth_ixgbe_dev_uninit(struct rte_eth_dev *eth_dev)
1352 struct rte_pci_device *pci_dev = IXGBE_DEV_TO_PCI(eth_dev);
1353 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
1354 struct ixgbe_hw *hw;
1356 PMD_INIT_FUNC_TRACE();
1358 if (rte_eal_process_type() != RTE_PROC_PRIMARY)
1361 hw = IXGBE_DEV_PRIVATE_TO_HW(eth_dev->data->dev_private);
1363 if (hw->adapter_stopped == 0)
1364 ixgbe_dev_close(eth_dev);
1366 eth_dev->dev_ops = NULL;
1367 eth_dev->rx_pkt_burst = NULL;
1368 eth_dev->tx_pkt_burst = NULL;
1370 /* Unlock any pending hardware semaphore */
1371 ixgbe_swfw_lock_reset(hw);
1373 /* disable uio intr before callback unregister */
1374 rte_intr_disable(intr_handle);
1375 rte_intr_callback_unregister(intr_handle,
1376 ixgbe_dev_interrupt_handler, eth_dev);
1378 /* uninitialize PF if max_vfs not zero */
1379 ixgbe_pf_host_uninit(eth_dev);
1381 rte_free(eth_dev->data->mac_addrs);
1382 eth_dev->data->mac_addrs = NULL;
1384 rte_free(eth_dev->data->hash_mac_addrs);
1385 eth_dev->data->hash_mac_addrs = NULL;
1387 /* remove all the fdir filters & hash */
1388 ixgbe_fdir_filter_uninit(eth_dev);
1390 /* remove all the L2 tunnel filters & hash */
1391 ixgbe_l2_tn_filter_uninit(eth_dev);
1393 /* Remove all ntuple filters of the device */
1394 ixgbe_ntuple_filter_uninit(eth_dev);
1399 static int ixgbe_ntuple_filter_uninit(struct rte_eth_dev *eth_dev)
1401 struct ixgbe_filter_info *filter_info =
1402 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(eth_dev->data->dev_private);
1403 struct ixgbe_5tuple_filter *p_5tuple;
1405 while ((p_5tuple = TAILQ_FIRST(&filter_info->fivetuple_list))) {
1406 TAILQ_REMOVE(&filter_info->fivetuple_list,
1411 memset(filter_info->fivetuple_mask, 0,
1412 sizeof(uint32_t) * IXGBE_5TUPLE_ARRAY_SIZE);
1417 static int ixgbe_fdir_filter_uninit(struct rte_eth_dev *eth_dev)
1419 struct ixgbe_hw_fdir_info *fdir_info =
1420 IXGBE_DEV_PRIVATE_TO_FDIR_INFO(eth_dev->data->dev_private);
1421 struct ixgbe_fdir_filter *fdir_filter;
1423 if (fdir_info->hash_map)
1424 rte_free(fdir_info->hash_map);
1425 if (fdir_info->hash_handle)
1426 rte_hash_free(fdir_info->hash_handle);
1428 while ((fdir_filter = TAILQ_FIRST(&fdir_info->fdir_list))) {
1429 TAILQ_REMOVE(&fdir_info->fdir_list,
1432 rte_free(fdir_filter);
1438 static int ixgbe_l2_tn_filter_uninit(struct rte_eth_dev *eth_dev)
1440 struct ixgbe_l2_tn_info *l2_tn_info =
1441 IXGBE_DEV_PRIVATE_TO_L2_TN_INFO(eth_dev->data->dev_private);
1442 struct ixgbe_l2_tn_filter *l2_tn_filter;
1444 if (l2_tn_info->hash_map)
1445 rte_free(l2_tn_info->hash_map);
1446 if (l2_tn_info->hash_handle)
1447 rte_hash_free(l2_tn_info->hash_handle);
1449 while ((l2_tn_filter = TAILQ_FIRST(&l2_tn_info->l2_tn_list))) {
1450 TAILQ_REMOVE(&l2_tn_info->l2_tn_list,
1453 rte_free(l2_tn_filter);
1459 static int ixgbe_fdir_filter_init(struct rte_eth_dev *eth_dev)
1461 struct ixgbe_hw_fdir_info *fdir_info =
1462 IXGBE_DEV_PRIVATE_TO_FDIR_INFO(eth_dev->data->dev_private);
1463 char fdir_hash_name[RTE_HASH_NAMESIZE];
1464 struct rte_hash_parameters fdir_hash_params = {
1465 .name = fdir_hash_name,
1466 .entries = IXGBE_MAX_FDIR_FILTER_NUM,
1467 .key_len = sizeof(union ixgbe_atr_input),
1468 .hash_func = rte_hash_crc,
1469 .hash_func_init_val = 0,
1470 .socket_id = rte_socket_id(),
1473 TAILQ_INIT(&fdir_info->fdir_list);
1474 snprintf(fdir_hash_name, RTE_HASH_NAMESIZE,
1475 "fdir_%s", eth_dev->data->name);
1476 fdir_info->hash_handle = rte_hash_create(&fdir_hash_params);
1477 if (!fdir_info->hash_handle) {
1478 PMD_INIT_LOG(ERR, "Failed to create fdir hash table!");
1481 fdir_info->hash_map = rte_zmalloc("ixgbe",
1482 sizeof(struct ixgbe_fdir_filter *) *
1483 IXGBE_MAX_FDIR_FILTER_NUM,
1485 if (!fdir_info->hash_map) {
1487 "Failed to allocate memory for fdir hash map!");
1490 fdir_info->mask_added = FALSE;
1495 static int ixgbe_l2_tn_filter_init(struct rte_eth_dev *eth_dev)
1497 struct ixgbe_l2_tn_info *l2_tn_info =
1498 IXGBE_DEV_PRIVATE_TO_L2_TN_INFO(eth_dev->data->dev_private);
1499 char l2_tn_hash_name[RTE_HASH_NAMESIZE];
1500 struct rte_hash_parameters l2_tn_hash_params = {
1501 .name = l2_tn_hash_name,
1502 .entries = IXGBE_MAX_L2_TN_FILTER_NUM,
1503 .key_len = sizeof(struct ixgbe_l2_tn_key),
1504 .hash_func = rte_hash_crc,
1505 .hash_func_init_val = 0,
1506 .socket_id = rte_socket_id(),
1509 TAILQ_INIT(&l2_tn_info->l2_tn_list);
1510 snprintf(l2_tn_hash_name, RTE_HASH_NAMESIZE,
1511 "l2_tn_%s", eth_dev->data->name);
1512 l2_tn_info->hash_handle = rte_hash_create(&l2_tn_hash_params);
1513 if (!l2_tn_info->hash_handle) {
1514 PMD_INIT_LOG(ERR, "Failed to create L2 TN hash table!");
1517 l2_tn_info->hash_map = rte_zmalloc("ixgbe",
1518 sizeof(struct ixgbe_l2_tn_filter *) *
1519 IXGBE_MAX_L2_TN_FILTER_NUM,
1521 if (!l2_tn_info->hash_map) {
1523 "Failed to allocate memory for L2 TN hash map!");
1526 l2_tn_info->e_tag_en = FALSE;
1527 l2_tn_info->e_tag_fwd_en = FALSE;
1528 l2_tn_info->e_tag_ether_type = DEFAULT_ETAG_ETYPE;
1533 * Negotiate mailbox API version with the PF.
1534 * After reset API version is always set to the basic one (ixgbe_mbox_api_10).
1535 * Then we try to negotiate starting with the most recent one.
1536 * If all negotiation attempts fail, then we will proceed with
1537 * the default one (ixgbe_mbox_api_10).
1540 ixgbevf_negotiate_api(struct ixgbe_hw *hw)
1544 /* start with highest supported, proceed down */
1545 static const enum ixgbe_pfvf_api_rev sup_ver[] = {
1552 i != RTE_DIM(sup_ver) &&
1553 ixgbevf_negotiate_api_version(hw, sup_ver[i]) != 0;
1559 generate_random_mac_addr(struct ether_addr *mac_addr)
1563 /* Set Organizationally Unique Identifier (OUI) prefix. */
1564 mac_addr->addr_bytes[0] = 0x00;
1565 mac_addr->addr_bytes[1] = 0x09;
1566 mac_addr->addr_bytes[2] = 0xC0;
1567 /* Force indication of locally assigned MAC address. */
1568 mac_addr->addr_bytes[0] |= ETHER_LOCAL_ADMIN_ADDR;
1569 /* Generate the last 3 bytes of the MAC address with a random number. */
1570 random = rte_rand();
1571 memcpy(&mac_addr->addr_bytes[3], &random, 3);
1575 * Virtual Function device init
1578 eth_ixgbevf_dev_init(struct rte_eth_dev *eth_dev)
1582 struct rte_pci_device *pci_dev = IXGBE_DEV_TO_PCI(eth_dev);
1583 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
1584 struct ixgbe_hw *hw =
1585 IXGBE_DEV_PRIVATE_TO_HW(eth_dev->data->dev_private);
1586 struct ixgbe_vfta *shadow_vfta =
1587 IXGBE_DEV_PRIVATE_TO_VFTA(eth_dev->data->dev_private);
1588 struct ixgbe_hwstrip *hwstrip =
1589 IXGBE_DEV_PRIVATE_TO_HWSTRIP_BITMAP(eth_dev->data->dev_private);
1590 struct ether_addr *perm_addr = (struct ether_addr *) hw->mac.perm_addr;
1592 PMD_INIT_FUNC_TRACE();
1594 eth_dev->dev_ops = &ixgbevf_eth_dev_ops;
1595 eth_dev->rx_pkt_burst = &ixgbe_recv_pkts;
1596 eth_dev->tx_pkt_burst = &ixgbe_xmit_pkts;
1598 /* for secondary processes, we don't initialise any further as primary
1599 * has already done this work. Only check we don't need a different
1602 if (rte_eal_process_type() != RTE_PROC_PRIMARY) {
1603 struct ixgbe_tx_queue *txq;
1604 /* TX queue function in primary, set by last queue initialized
1605 * Tx queue may not initialized by primary process
1607 if (eth_dev->data->tx_queues) {
1608 txq = eth_dev->data->tx_queues[eth_dev->data->nb_tx_queues - 1];
1609 ixgbe_set_tx_function(eth_dev, txq);
1611 /* Use default TX function if we get here */
1612 PMD_INIT_LOG(NOTICE,
1613 "No TX queues configured yet. Using default TX function.");
1616 ixgbe_set_rx_function(eth_dev);
1621 rte_eth_copy_pci_info(eth_dev, pci_dev);
1622 eth_dev->data->dev_flags = RTE_ETH_DEV_DETACHABLE;
1624 hw->device_id = pci_dev->id.device_id;
1625 hw->vendor_id = pci_dev->id.vendor_id;
1626 hw->hw_addr = (void *)pci_dev->mem_resource[0].addr;
1628 /* initialize the vfta */
1629 memset(shadow_vfta, 0, sizeof(*shadow_vfta));
1631 /* initialize the hw strip bitmap*/
1632 memset(hwstrip, 0, sizeof(*hwstrip));
1634 /* Initialize the shared code (base driver) */
1635 diag = ixgbe_init_shared_code(hw);
1636 if (diag != IXGBE_SUCCESS) {
1637 PMD_INIT_LOG(ERR, "Shared code init failed for ixgbevf: %d", diag);
1641 /* init_mailbox_params */
1642 hw->mbx.ops.init_params(hw);
1644 /* Reset the hw statistics */
1645 ixgbevf_dev_stats_reset(eth_dev);
1647 /* Disable the interrupts for VF */
1648 ixgbevf_intr_disable(hw);
1650 hw->mac.num_rar_entries = 128; /* The MAX of the underlying PF */
1651 diag = hw->mac.ops.reset_hw(hw);
1654 * The VF reset operation returns the IXGBE_ERR_INVALID_MAC_ADDR when
1655 * the underlying PF driver has not assigned a MAC address to the VF.
1656 * In this case, assign a random MAC address.
1658 if ((diag != IXGBE_SUCCESS) && (diag != IXGBE_ERR_INVALID_MAC_ADDR)) {
1659 PMD_INIT_LOG(ERR, "VF Initialization Failure: %d", diag);
1663 /* negotiate mailbox API version to use with the PF. */
1664 ixgbevf_negotiate_api(hw);
1666 /* Get Rx/Tx queue count via mailbox, which is ready after reset_hw */
1667 ixgbevf_get_queues(hw, &tcs, &tc);
1669 /* Allocate memory for storing MAC addresses */
1670 eth_dev->data->mac_addrs = rte_zmalloc("ixgbevf", ETHER_ADDR_LEN *
1671 hw->mac.num_rar_entries, 0);
1672 if (eth_dev->data->mac_addrs == NULL) {
1674 "Failed to allocate %u bytes needed to store "
1676 ETHER_ADDR_LEN * hw->mac.num_rar_entries);
1680 /* Generate a random MAC address, if none was assigned by PF. */
1681 if (is_zero_ether_addr(perm_addr)) {
1682 generate_random_mac_addr(perm_addr);
1683 diag = ixgbe_set_rar_vf(hw, 1, perm_addr->addr_bytes, 0, 1);
1685 rte_free(eth_dev->data->mac_addrs);
1686 eth_dev->data->mac_addrs = NULL;
1689 PMD_INIT_LOG(INFO, "\tVF MAC address not assigned by Host PF");
1690 PMD_INIT_LOG(INFO, "\tAssign randomly generated MAC address "
1691 "%02x:%02x:%02x:%02x:%02x:%02x",
1692 perm_addr->addr_bytes[0],
1693 perm_addr->addr_bytes[1],
1694 perm_addr->addr_bytes[2],
1695 perm_addr->addr_bytes[3],
1696 perm_addr->addr_bytes[4],
1697 perm_addr->addr_bytes[5]);
1700 /* Copy the permanent MAC address */
1701 ether_addr_copy(perm_addr, ð_dev->data->mac_addrs[0]);
1703 /* reset the hardware with the new settings */
1704 diag = hw->mac.ops.start_hw(hw);
1710 PMD_INIT_LOG(ERR, "VF Initialization Failure: %d", diag);
1714 rte_intr_callback_register(intr_handle,
1715 ixgbevf_dev_interrupt_handler, eth_dev);
1716 rte_intr_enable(intr_handle);
1717 ixgbevf_intr_enable(hw);
1719 PMD_INIT_LOG(DEBUG, "port %d vendorID=0x%x deviceID=0x%x mac.type=%s",
1720 eth_dev->data->port_id, pci_dev->id.vendor_id,
1721 pci_dev->id.device_id, "ixgbe_mac_82599_vf");
1726 /* Virtual Function device uninit */
1729 eth_ixgbevf_dev_uninit(struct rte_eth_dev *eth_dev)
1731 struct rte_pci_device *pci_dev = IXGBE_DEV_TO_PCI(eth_dev);
1732 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
1733 struct ixgbe_hw *hw;
1735 PMD_INIT_FUNC_TRACE();
1737 if (rte_eal_process_type() != RTE_PROC_PRIMARY)
1740 hw = IXGBE_DEV_PRIVATE_TO_HW(eth_dev->data->dev_private);
1742 if (hw->adapter_stopped == 0)
1743 ixgbevf_dev_close(eth_dev);
1745 eth_dev->dev_ops = NULL;
1746 eth_dev->rx_pkt_burst = NULL;
1747 eth_dev->tx_pkt_burst = NULL;
1749 /* Disable the interrupts for VF */
1750 ixgbevf_intr_disable(hw);
1752 rte_free(eth_dev->data->mac_addrs);
1753 eth_dev->data->mac_addrs = NULL;
1755 rte_intr_disable(intr_handle);
1756 rte_intr_callback_unregister(intr_handle,
1757 ixgbevf_dev_interrupt_handler, eth_dev);
1762 static struct eth_driver rte_ixgbe_pmd = {
1764 .id_table = pci_id_ixgbe_map,
1765 .drv_flags = RTE_PCI_DRV_NEED_MAPPING | RTE_PCI_DRV_INTR_LSC,
1766 .probe = rte_eth_dev_pci_probe,
1767 .remove = rte_eth_dev_pci_remove,
1769 .eth_dev_init = eth_ixgbe_dev_init,
1770 .eth_dev_uninit = eth_ixgbe_dev_uninit,
1771 .dev_private_size = sizeof(struct ixgbe_adapter),
1775 * virtual function driver struct
1777 static struct eth_driver rte_ixgbevf_pmd = {
1779 .id_table = pci_id_ixgbevf_map,
1780 .drv_flags = RTE_PCI_DRV_NEED_MAPPING,
1781 .probe = rte_eth_dev_pci_probe,
1782 .remove = rte_eth_dev_pci_remove,
1784 .eth_dev_init = eth_ixgbevf_dev_init,
1785 .eth_dev_uninit = eth_ixgbevf_dev_uninit,
1786 .dev_private_size = sizeof(struct ixgbe_adapter),
1790 ixgbe_vlan_filter_set(struct rte_eth_dev *dev, uint16_t vlan_id, int on)
1792 struct ixgbe_hw *hw =
1793 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1794 struct ixgbe_vfta *shadow_vfta =
1795 IXGBE_DEV_PRIVATE_TO_VFTA(dev->data->dev_private);
1800 vid_idx = (uint32_t) ((vlan_id >> 5) & 0x7F);
1801 vid_bit = (uint32_t) (1 << (vlan_id & 0x1F));
1802 vfta = IXGBE_READ_REG(hw, IXGBE_VFTA(vid_idx));
1807 IXGBE_WRITE_REG(hw, IXGBE_VFTA(vid_idx), vfta);
1809 /* update local VFTA copy */
1810 shadow_vfta->vfta[vid_idx] = vfta;
1816 ixgbe_vlan_strip_queue_set(struct rte_eth_dev *dev, uint16_t queue, int on)
1819 ixgbe_vlan_hw_strip_enable(dev, queue);
1821 ixgbe_vlan_hw_strip_disable(dev, queue);
1825 ixgbe_vlan_tpid_set(struct rte_eth_dev *dev,
1826 enum rte_vlan_type vlan_type,
1829 struct ixgbe_hw *hw =
1830 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1835 qinq = IXGBE_READ_REG(hw, IXGBE_DMATXCTL);
1836 qinq &= IXGBE_DMATXCTL_GDV;
1838 switch (vlan_type) {
1839 case ETH_VLAN_TYPE_INNER:
1841 reg = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
1842 reg = (reg & (~IXGBE_VLNCTRL_VET)) | (uint32_t)tpid;
1843 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, reg);
1844 reg = IXGBE_READ_REG(hw, IXGBE_DMATXCTL);
1845 reg = (reg & (~IXGBE_DMATXCTL_VT_MASK))
1846 | ((uint32_t)tpid << IXGBE_DMATXCTL_VT_SHIFT);
1847 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL, reg);
1850 PMD_DRV_LOG(ERR, "Inner type is not supported"
1854 case ETH_VLAN_TYPE_OUTER:
1856 /* Only the high 16-bits is valid */
1857 IXGBE_WRITE_REG(hw, IXGBE_EXVET, (uint32_t)tpid <<
1858 IXGBE_EXVET_VET_EXT_SHIFT);
1860 reg = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
1861 reg = (reg & (~IXGBE_VLNCTRL_VET)) | (uint32_t)tpid;
1862 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, reg);
1863 reg = IXGBE_READ_REG(hw, IXGBE_DMATXCTL);
1864 reg = (reg & (~IXGBE_DMATXCTL_VT_MASK))
1865 | ((uint32_t)tpid << IXGBE_DMATXCTL_VT_SHIFT);
1866 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL, reg);
1872 PMD_DRV_LOG(ERR, "Unsupported VLAN type %d", vlan_type);
1880 ixgbe_vlan_hw_filter_disable(struct rte_eth_dev *dev)
1882 struct ixgbe_hw *hw =
1883 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1886 PMD_INIT_FUNC_TRACE();
1888 /* Filter Table Disable */
1889 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
1890 vlnctrl &= ~IXGBE_VLNCTRL_VFE;
1892 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
1896 ixgbe_vlan_hw_filter_enable(struct rte_eth_dev *dev)
1898 struct ixgbe_hw *hw =
1899 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1900 struct ixgbe_vfta *shadow_vfta =
1901 IXGBE_DEV_PRIVATE_TO_VFTA(dev->data->dev_private);
1905 PMD_INIT_FUNC_TRACE();
1907 /* Filter Table Enable */
1908 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
1909 vlnctrl &= ~IXGBE_VLNCTRL_CFIEN;
1910 vlnctrl |= IXGBE_VLNCTRL_VFE;
1912 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
1914 /* write whatever is in local vfta copy */
1915 for (i = 0; i < IXGBE_VFTA_SIZE; i++)
1916 IXGBE_WRITE_REG(hw, IXGBE_VFTA(i), shadow_vfta->vfta[i]);
1920 ixgbe_vlan_hw_strip_bitmap_set(struct rte_eth_dev *dev, uint16_t queue, bool on)
1922 struct ixgbe_hwstrip *hwstrip =
1923 IXGBE_DEV_PRIVATE_TO_HWSTRIP_BITMAP(dev->data->dev_private);
1924 struct ixgbe_rx_queue *rxq;
1926 if (queue >= IXGBE_MAX_RX_QUEUE_NUM)
1930 IXGBE_SET_HWSTRIP(hwstrip, queue);
1932 IXGBE_CLEAR_HWSTRIP(hwstrip, queue);
1934 if (queue >= dev->data->nb_rx_queues)
1937 rxq = dev->data->rx_queues[queue];
1940 rxq->vlan_flags = PKT_RX_VLAN_PKT | PKT_RX_VLAN_STRIPPED;
1942 rxq->vlan_flags = PKT_RX_VLAN_PKT;
1946 ixgbe_vlan_hw_strip_disable(struct rte_eth_dev *dev, uint16_t queue)
1948 struct ixgbe_hw *hw =
1949 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1952 PMD_INIT_FUNC_TRACE();
1954 if (hw->mac.type == ixgbe_mac_82598EB) {
1955 /* No queue level support */
1956 PMD_INIT_LOG(NOTICE, "82598EB not support queue level hw strip");
1960 /* Other 10G NIC, the VLAN strip can be setup per queue in RXDCTL */
1961 ctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(queue));
1962 ctrl &= ~IXGBE_RXDCTL_VME;
1963 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(queue), ctrl);
1965 /* record those setting for HW strip per queue */
1966 ixgbe_vlan_hw_strip_bitmap_set(dev, queue, 0);
1970 ixgbe_vlan_hw_strip_enable(struct rte_eth_dev *dev, uint16_t queue)
1972 struct ixgbe_hw *hw =
1973 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1976 PMD_INIT_FUNC_TRACE();
1978 if (hw->mac.type == ixgbe_mac_82598EB) {
1979 /* No queue level supported */
1980 PMD_INIT_LOG(NOTICE, "82598EB not support queue level hw strip");
1984 /* Other 10G NIC, the VLAN strip can be setup per queue in RXDCTL */
1985 ctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(queue));
1986 ctrl |= IXGBE_RXDCTL_VME;
1987 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(queue), ctrl);
1989 /* record those setting for HW strip per queue */
1990 ixgbe_vlan_hw_strip_bitmap_set(dev, queue, 1);
1994 ixgbe_vlan_hw_strip_disable_all(struct rte_eth_dev *dev)
1996 struct ixgbe_hw *hw =
1997 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2000 struct ixgbe_rx_queue *rxq;
2002 PMD_INIT_FUNC_TRACE();
2004 if (hw->mac.type == ixgbe_mac_82598EB) {
2005 ctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
2006 ctrl &= ~IXGBE_VLNCTRL_VME;
2007 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, ctrl);
2009 /* Other 10G NIC, the VLAN strip can be setup per queue in RXDCTL */
2010 for (i = 0; i < dev->data->nb_rx_queues; i++) {
2011 rxq = dev->data->rx_queues[i];
2012 ctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(rxq->reg_idx));
2013 ctrl &= ~IXGBE_RXDCTL_VME;
2014 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(rxq->reg_idx), ctrl);
2016 /* record those setting for HW strip per queue */
2017 ixgbe_vlan_hw_strip_bitmap_set(dev, i, 0);
2023 ixgbe_vlan_hw_strip_enable_all(struct rte_eth_dev *dev)
2025 struct ixgbe_hw *hw =
2026 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2029 struct ixgbe_rx_queue *rxq;
2031 PMD_INIT_FUNC_TRACE();
2033 if (hw->mac.type == ixgbe_mac_82598EB) {
2034 ctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
2035 ctrl |= IXGBE_VLNCTRL_VME;
2036 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, ctrl);
2038 /* Other 10G NIC, the VLAN strip can be setup per queue in RXDCTL */
2039 for (i = 0; i < dev->data->nb_rx_queues; i++) {
2040 rxq = dev->data->rx_queues[i];
2041 ctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(rxq->reg_idx));
2042 ctrl |= IXGBE_RXDCTL_VME;
2043 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(rxq->reg_idx), ctrl);
2045 /* record those setting for HW strip per queue */
2046 ixgbe_vlan_hw_strip_bitmap_set(dev, i, 1);
2052 ixgbe_vlan_hw_extend_disable(struct rte_eth_dev *dev)
2054 struct ixgbe_hw *hw =
2055 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2058 PMD_INIT_FUNC_TRACE();
2060 /* DMATXCTRL: Geric Double VLAN Disable */
2061 ctrl = IXGBE_READ_REG(hw, IXGBE_DMATXCTL);
2062 ctrl &= ~IXGBE_DMATXCTL_GDV;
2063 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL, ctrl);
2065 /* CTRL_EXT: Global Double VLAN Disable */
2066 ctrl = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT);
2067 ctrl &= ~IXGBE_EXTENDED_VLAN;
2068 IXGBE_WRITE_REG(hw, IXGBE_CTRL_EXT, ctrl);
2073 ixgbe_vlan_hw_extend_enable(struct rte_eth_dev *dev)
2075 struct ixgbe_hw *hw =
2076 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2079 PMD_INIT_FUNC_TRACE();
2081 /* DMATXCTRL: Geric Double VLAN Enable */
2082 ctrl = IXGBE_READ_REG(hw, IXGBE_DMATXCTL);
2083 ctrl |= IXGBE_DMATXCTL_GDV;
2084 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL, ctrl);
2086 /* CTRL_EXT: Global Double VLAN Enable */
2087 ctrl = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT);
2088 ctrl |= IXGBE_EXTENDED_VLAN;
2089 IXGBE_WRITE_REG(hw, IXGBE_CTRL_EXT, ctrl);
2091 /* Clear pooling mode of PFVTCTL. It's required by X550. */
2092 if (hw->mac.type == ixgbe_mac_X550 ||
2093 hw->mac.type == ixgbe_mac_X550EM_x ||
2094 hw->mac.type == ixgbe_mac_X550EM_a) {
2095 ctrl = IXGBE_READ_REG(hw, IXGBE_VT_CTL);
2096 ctrl &= ~IXGBE_VT_CTL_POOLING_MODE_MASK;
2097 IXGBE_WRITE_REG(hw, IXGBE_VT_CTL, ctrl);
2101 * VET EXT field in the EXVET register = 0x8100 by default
2102 * So no need to change. Same to VT field of DMATXCTL register
2107 ixgbe_vlan_offload_set(struct rte_eth_dev *dev, int mask)
2109 if (mask & ETH_VLAN_STRIP_MASK) {
2110 if (dev->data->dev_conf.rxmode.hw_vlan_strip)
2111 ixgbe_vlan_hw_strip_enable_all(dev);
2113 ixgbe_vlan_hw_strip_disable_all(dev);
2116 if (mask & ETH_VLAN_FILTER_MASK) {
2117 if (dev->data->dev_conf.rxmode.hw_vlan_filter)
2118 ixgbe_vlan_hw_filter_enable(dev);
2120 ixgbe_vlan_hw_filter_disable(dev);
2123 if (mask & ETH_VLAN_EXTEND_MASK) {
2124 if (dev->data->dev_conf.rxmode.hw_vlan_extend)
2125 ixgbe_vlan_hw_extend_enable(dev);
2127 ixgbe_vlan_hw_extend_disable(dev);
2132 ixgbe_vmdq_vlan_hw_filter_enable(struct rte_eth_dev *dev)
2134 struct ixgbe_hw *hw =
2135 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2136 /* VLNCTRL: enable vlan filtering and allow all vlan tags through */
2137 uint32_t vlanctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
2139 vlanctrl |= IXGBE_VLNCTRL_VFE; /* enable vlan filters */
2140 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlanctrl);
2144 ixgbe_check_vf_rss_rxq_num(struct rte_eth_dev *dev, uint16_t nb_rx_q)
2146 struct rte_pci_device *pci_dev = IXGBE_DEV_TO_PCI(dev);
2151 RTE_ETH_DEV_SRIOV(dev).active = ETH_64_POOLS;
2154 RTE_ETH_DEV_SRIOV(dev).active = ETH_32_POOLS;
2160 RTE_ETH_DEV_SRIOV(dev).nb_q_per_pool = nb_rx_q;
2161 RTE_ETH_DEV_SRIOV(dev).def_pool_q_idx = pci_dev->max_vfs * nb_rx_q;
2167 ixgbe_check_mq_mode(struct rte_eth_dev *dev)
2169 struct rte_eth_conf *dev_conf = &dev->data->dev_conf;
2170 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2171 uint16_t nb_rx_q = dev->data->nb_rx_queues;
2172 uint16_t nb_tx_q = dev->data->nb_tx_queues;
2174 if (RTE_ETH_DEV_SRIOV(dev).active != 0) {
2175 /* check multi-queue mode */
2176 switch (dev_conf->rxmode.mq_mode) {
2177 case ETH_MQ_RX_VMDQ_DCB:
2178 PMD_INIT_LOG(INFO, "ETH_MQ_RX_VMDQ_DCB mode supported in SRIOV");
2180 case ETH_MQ_RX_VMDQ_DCB_RSS:
2181 /* DCB/RSS VMDQ in SRIOV mode, not implement yet */
2182 PMD_INIT_LOG(ERR, "SRIOV active,"
2183 " unsupported mq_mode rx %d.",
2184 dev_conf->rxmode.mq_mode);
2187 case ETH_MQ_RX_VMDQ_RSS:
2188 dev->data->dev_conf.rxmode.mq_mode = ETH_MQ_RX_VMDQ_RSS;
2189 if (nb_rx_q <= RTE_ETH_DEV_SRIOV(dev).nb_q_per_pool)
2190 if (ixgbe_check_vf_rss_rxq_num(dev, nb_rx_q)) {
2191 PMD_INIT_LOG(ERR, "SRIOV is active,"
2192 " invalid queue number"
2193 " for VMDQ RSS, allowed"
2194 " value are 1, 2 or 4.");
2198 case ETH_MQ_RX_VMDQ_ONLY:
2199 case ETH_MQ_RX_NONE:
2200 /* if nothing mq mode configure, use default scheme */
2201 dev->data->dev_conf.rxmode.mq_mode = ETH_MQ_RX_VMDQ_ONLY;
2202 if (RTE_ETH_DEV_SRIOV(dev).nb_q_per_pool > 1)
2203 RTE_ETH_DEV_SRIOV(dev).nb_q_per_pool = 1;
2205 default: /* ETH_MQ_RX_DCB, ETH_MQ_RX_DCB_RSS or ETH_MQ_TX_DCB*/
2206 /* SRIOV only works in VMDq enable mode */
2207 PMD_INIT_LOG(ERR, "SRIOV is active,"
2208 " wrong mq_mode rx %d.",
2209 dev_conf->rxmode.mq_mode);
2213 switch (dev_conf->txmode.mq_mode) {
2214 case ETH_MQ_TX_VMDQ_DCB:
2215 PMD_INIT_LOG(INFO, "ETH_MQ_TX_VMDQ_DCB mode supported in SRIOV");
2216 dev->data->dev_conf.txmode.mq_mode = ETH_MQ_TX_VMDQ_DCB;
2218 default: /* ETH_MQ_TX_VMDQ_ONLY or ETH_MQ_TX_NONE */
2219 dev->data->dev_conf.txmode.mq_mode = ETH_MQ_TX_VMDQ_ONLY;
2223 /* check valid queue number */
2224 if ((nb_rx_q > RTE_ETH_DEV_SRIOV(dev).nb_q_per_pool) ||
2225 (nb_tx_q > RTE_ETH_DEV_SRIOV(dev).nb_q_per_pool)) {
2226 PMD_INIT_LOG(ERR, "SRIOV is active,"
2227 " nb_rx_q=%d nb_tx_q=%d queue number"
2228 " must be less than or equal to %d.",
2230 RTE_ETH_DEV_SRIOV(dev).nb_q_per_pool);
2234 if (dev_conf->rxmode.mq_mode == ETH_MQ_RX_VMDQ_DCB_RSS) {
2235 PMD_INIT_LOG(ERR, "VMDQ+DCB+RSS mq_mode is"
2239 /* check configuration for vmdb+dcb mode */
2240 if (dev_conf->rxmode.mq_mode == ETH_MQ_RX_VMDQ_DCB) {
2241 const struct rte_eth_vmdq_dcb_conf *conf;
2243 if (nb_rx_q != IXGBE_VMDQ_DCB_NB_QUEUES) {
2244 PMD_INIT_LOG(ERR, "VMDQ+DCB, nb_rx_q != %d.",
2245 IXGBE_VMDQ_DCB_NB_QUEUES);
2248 conf = &dev_conf->rx_adv_conf.vmdq_dcb_conf;
2249 if (!(conf->nb_queue_pools == ETH_16_POOLS ||
2250 conf->nb_queue_pools == ETH_32_POOLS)) {
2251 PMD_INIT_LOG(ERR, "VMDQ+DCB selected,"
2252 " nb_queue_pools must be %d or %d.",
2253 ETH_16_POOLS, ETH_32_POOLS);
2257 if (dev_conf->txmode.mq_mode == ETH_MQ_TX_VMDQ_DCB) {
2258 const struct rte_eth_vmdq_dcb_tx_conf *conf;
2260 if (nb_tx_q != IXGBE_VMDQ_DCB_NB_QUEUES) {
2261 PMD_INIT_LOG(ERR, "VMDQ+DCB, nb_tx_q != %d",
2262 IXGBE_VMDQ_DCB_NB_QUEUES);
2265 conf = &dev_conf->tx_adv_conf.vmdq_dcb_tx_conf;
2266 if (!(conf->nb_queue_pools == ETH_16_POOLS ||
2267 conf->nb_queue_pools == ETH_32_POOLS)) {
2268 PMD_INIT_LOG(ERR, "VMDQ+DCB selected,"
2269 " nb_queue_pools != %d and"
2270 " nb_queue_pools != %d.",
2271 ETH_16_POOLS, ETH_32_POOLS);
2276 /* For DCB mode check our configuration before we go further */
2277 if (dev_conf->rxmode.mq_mode == ETH_MQ_RX_DCB) {
2278 const struct rte_eth_dcb_rx_conf *conf;
2280 if (nb_rx_q != IXGBE_DCB_NB_QUEUES) {
2281 PMD_INIT_LOG(ERR, "DCB selected, nb_rx_q != %d.",
2282 IXGBE_DCB_NB_QUEUES);
2285 conf = &dev_conf->rx_adv_conf.dcb_rx_conf;
2286 if (!(conf->nb_tcs == ETH_4_TCS ||
2287 conf->nb_tcs == ETH_8_TCS)) {
2288 PMD_INIT_LOG(ERR, "DCB selected, nb_tcs != %d"
2289 " and nb_tcs != %d.",
2290 ETH_4_TCS, ETH_8_TCS);
2295 if (dev_conf->txmode.mq_mode == ETH_MQ_TX_DCB) {
2296 const struct rte_eth_dcb_tx_conf *conf;
2298 if (nb_tx_q != IXGBE_DCB_NB_QUEUES) {
2299 PMD_INIT_LOG(ERR, "DCB, nb_tx_q != %d.",
2300 IXGBE_DCB_NB_QUEUES);
2303 conf = &dev_conf->tx_adv_conf.dcb_tx_conf;
2304 if (!(conf->nb_tcs == ETH_4_TCS ||
2305 conf->nb_tcs == ETH_8_TCS)) {
2306 PMD_INIT_LOG(ERR, "DCB selected, nb_tcs != %d"
2307 " and nb_tcs != %d.",
2308 ETH_4_TCS, ETH_8_TCS);
2314 * When DCB/VT is off, maximum number of queues changes,
2315 * except for 82598EB, which remains constant.
2317 if (dev_conf->txmode.mq_mode == ETH_MQ_TX_NONE &&
2318 hw->mac.type != ixgbe_mac_82598EB) {
2319 if (nb_tx_q > IXGBE_NONE_MODE_TX_NB_QUEUES) {
2321 "Neither VT nor DCB are enabled, "
2323 IXGBE_NONE_MODE_TX_NB_QUEUES);
2332 ixgbe_dev_configure(struct rte_eth_dev *dev)
2334 struct ixgbe_interrupt *intr =
2335 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
2336 struct ixgbe_adapter *adapter =
2337 (struct ixgbe_adapter *)dev->data->dev_private;
2340 PMD_INIT_FUNC_TRACE();
2341 /* multipe queue mode checking */
2342 ret = ixgbe_check_mq_mode(dev);
2344 PMD_DRV_LOG(ERR, "ixgbe_check_mq_mode fails with %d.",
2349 /* set flag to update link status after init */
2350 intr->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
2353 * Initialize to TRUE. If any of Rx queues doesn't meet the bulk
2354 * allocation or vector Rx preconditions we will reset it.
2356 adapter->rx_bulk_alloc_allowed = true;
2357 adapter->rx_vec_allowed = true;
2363 ixgbe_dev_phy_intr_setup(struct rte_eth_dev *dev)
2365 struct ixgbe_hw *hw =
2366 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2367 struct ixgbe_interrupt *intr =
2368 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
2371 /* only set up it on X550EM_X */
2372 if (hw->mac.type == ixgbe_mac_X550EM_x) {
2373 gpie = IXGBE_READ_REG(hw, IXGBE_GPIE);
2374 gpie |= IXGBE_SDP0_GPIEN_X550EM_x;
2375 IXGBE_WRITE_REG(hw, IXGBE_GPIE, gpie);
2376 if (hw->phy.type == ixgbe_phy_x550em_ext_t)
2377 intr->mask |= IXGBE_EICR_GPI_SDP0_X550EM_x;
2382 * Configure device link speed and setup link.
2383 * It returns 0 on success.
2386 ixgbe_dev_start(struct rte_eth_dev *dev)
2388 struct ixgbe_hw *hw =
2389 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2390 struct ixgbe_vf_info *vfinfo =
2391 *IXGBE_DEV_PRIVATE_TO_P_VFDATA(dev->data->dev_private);
2392 struct rte_pci_device *pci_dev = IXGBE_DEV_TO_PCI(dev);
2393 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
2394 uint32_t intr_vector = 0;
2395 int err, link_up = 0, negotiate = 0;
2400 uint32_t *link_speeds;
2402 PMD_INIT_FUNC_TRACE();
2404 /* IXGBE devices don't support:
2405 * - half duplex (checked afterwards for valid speeds)
2406 * - fixed speed: TODO implement
2408 if (dev->data->dev_conf.link_speeds & ETH_LINK_SPEED_FIXED) {
2409 PMD_INIT_LOG(ERR, "Invalid link_speeds for port %hhu; fix speed not supported",
2410 dev->data->port_id);
2414 /* disable uio/vfio intr/eventfd mapping */
2415 rte_intr_disable(intr_handle);
2418 hw->adapter_stopped = 0;
2419 ixgbe_stop_adapter(hw);
2421 /* reinitialize adapter
2422 * this calls reset and start
2424 status = ixgbe_pf_reset_hw(hw);
2427 hw->mac.ops.start_hw(hw);
2428 hw->mac.get_link_status = true;
2430 /* configure PF module if SRIOV enabled */
2431 ixgbe_pf_host_configure(dev);
2433 ixgbe_dev_phy_intr_setup(dev);
2435 /* check and configure queue intr-vector mapping */
2436 if ((rte_intr_cap_multiple(intr_handle) ||
2437 !RTE_ETH_DEV_SRIOV(dev).active) &&
2438 dev->data->dev_conf.intr_conf.rxq != 0) {
2439 intr_vector = dev->data->nb_rx_queues;
2440 if (intr_vector > IXGBE_MAX_INTR_QUEUE_NUM) {
2441 PMD_INIT_LOG(ERR, "At most %d intr queues supported",
2442 IXGBE_MAX_INTR_QUEUE_NUM);
2445 if (rte_intr_efd_enable(intr_handle, intr_vector))
2449 if (rte_intr_dp_is_en(intr_handle) && !intr_handle->intr_vec) {
2450 intr_handle->intr_vec =
2451 rte_zmalloc("intr_vec",
2452 dev->data->nb_rx_queues * sizeof(int), 0);
2453 if (intr_handle->intr_vec == NULL) {
2454 PMD_INIT_LOG(ERR, "Failed to allocate %d rx_queues"
2455 " intr_vec\n", dev->data->nb_rx_queues);
2460 /* confiugre msix for sleep until rx interrupt */
2461 ixgbe_configure_msix(dev);
2463 /* initialize transmission unit */
2464 ixgbe_dev_tx_init(dev);
2466 /* This can fail when allocating mbufs for descriptor rings */
2467 err = ixgbe_dev_rx_init(dev);
2469 PMD_INIT_LOG(ERR, "Unable to initialize RX hardware");
2473 mask = ETH_VLAN_STRIP_MASK | ETH_VLAN_FILTER_MASK |
2474 ETH_VLAN_EXTEND_MASK;
2475 ixgbe_vlan_offload_set(dev, mask);
2477 if (dev->data->dev_conf.rxmode.mq_mode == ETH_MQ_RX_VMDQ_ONLY) {
2478 /* Enable vlan filtering for VMDq */
2479 ixgbe_vmdq_vlan_hw_filter_enable(dev);
2482 /* Configure DCB hw */
2483 ixgbe_configure_dcb(dev);
2485 if (dev->data->dev_conf.fdir_conf.mode != RTE_FDIR_MODE_NONE) {
2486 err = ixgbe_fdir_configure(dev);
2491 /* Restore vf rate limit */
2492 if (vfinfo != NULL) {
2493 for (vf = 0; vf < pci_dev->max_vfs; vf++)
2494 for (idx = 0; idx < IXGBE_MAX_QUEUE_NUM_PER_VF; idx++)
2495 if (vfinfo[vf].tx_rate[idx] != 0)
2496 rte_pmd_ixgbe_set_vf_rate_limit(
2497 dev->data->port_id, vf,
2498 vfinfo[vf].tx_rate[idx],
2502 ixgbe_restore_statistics_mapping(dev);
2504 err = ixgbe_dev_rxtx_start(dev);
2506 PMD_INIT_LOG(ERR, "Unable to start rxtx queues");
2510 /* Skip link setup if loopback mode is enabled for 82599. */
2511 if (hw->mac.type == ixgbe_mac_82599EB &&
2512 dev->data->dev_conf.lpbk_mode == IXGBE_LPBK_82599_TX_RX)
2513 goto skip_link_setup;
2515 if (ixgbe_is_sfp(hw) && hw->phy.multispeed_fiber) {
2516 err = hw->mac.ops.setup_sfp(hw);
2521 if (hw->mac.ops.get_media_type(hw) == ixgbe_media_type_copper) {
2522 /* Turn on the copper */
2523 ixgbe_set_phy_power(hw, true);
2525 /* Turn on the laser */
2526 ixgbe_enable_tx_laser(hw);
2529 err = ixgbe_check_link(hw, &speed, &link_up, 0);
2532 dev->data->dev_link.link_status = link_up;
2534 err = ixgbe_get_link_capabilities(hw, &speed, &negotiate);
2538 link_speeds = &dev->data->dev_conf.link_speeds;
2539 if (*link_speeds & ~(ETH_LINK_SPEED_100M | ETH_LINK_SPEED_1G |
2540 ETH_LINK_SPEED_10G)) {
2541 PMD_INIT_LOG(ERR, "Invalid link setting");
2546 if (*link_speeds == ETH_LINK_SPEED_AUTONEG) {
2547 speed = (hw->mac.type != ixgbe_mac_82598EB) ?
2548 IXGBE_LINK_SPEED_82599_AUTONEG :
2549 IXGBE_LINK_SPEED_82598_AUTONEG;
2551 if (*link_speeds & ETH_LINK_SPEED_10G)
2552 speed |= IXGBE_LINK_SPEED_10GB_FULL;
2553 if (*link_speeds & ETH_LINK_SPEED_1G)
2554 speed |= IXGBE_LINK_SPEED_1GB_FULL;
2555 if (*link_speeds & ETH_LINK_SPEED_100M)
2556 speed |= IXGBE_LINK_SPEED_100_FULL;
2559 err = ixgbe_setup_link(hw, speed, link_up);
2565 if (rte_intr_allow_others(intr_handle)) {
2566 /* check if lsc interrupt is enabled */
2567 if (dev->data->dev_conf.intr_conf.lsc != 0)
2568 ixgbe_dev_lsc_interrupt_setup(dev);
2569 ixgbe_dev_macsec_interrupt_setup(dev);
2571 rte_intr_callback_unregister(intr_handle,
2572 ixgbe_dev_interrupt_handler, dev);
2573 if (dev->data->dev_conf.intr_conf.lsc != 0)
2574 PMD_INIT_LOG(INFO, "lsc won't enable because of"
2575 " no intr multiplex\n");
2578 /* check if rxq interrupt is enabled */
2579 if (dev->data->dev_conf.intr_conf.rxq != 0 &&
2580 rte_intr_dp_is_en(intr_handle))
2581 ixgbe_dev_rxq_interrupt_setup(dev);
2583 /* enable uio/vfio intr/eventfd mapping */
2584 rte_intr_enable(intr_handle);
2586 /* resume enabled intr since hw reset */
2587 ixgbe_enable_intr(dev);
2588 ixgbe_l2_tunnel_conf(dev);
2589 ixgbe_filter_restore(dev);
2594 PMD_INIT_LOG(ERR, "failure in ixgbe_dev_start(): %d", err);
2595 ixgbe_dev_clear_queues(dev);
2600 * Stop device: disable rx and tx functions to allow for reconfiguring.
2603 ixgbe_dev_stop(struct rte_eth_dev *dev)
2605 struct rte_eth_link link;
2606 struct ixgbe_hw *hw =
2607 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2608 struct ixgbe_vf_info *vfinfo =
2609 *IXGBE_DEV_PRIVATE_TO_P_VFDATA(dev->data->dev_private);
2610 struct rte_pci_device *pci_dev = IXGBE_DEV_TO_PCI(dev);
2611 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
2614 PMD_INIT_FUNC_TRACE();
2616 /* disable interrupts */
2617 ixgbe_disable_intr(hw);
2620 ixgbe_pf_reset_hw(hw);
2621 hw->adapter_stopped = 0;
2624 ixgbe_stop_adapter(hw);
2626 for (vf = 0; vfinfo != NULL && vf < pci_dev->max_vfs; vf++)
2627 vfinfo[vf].clear_to_send = false;
2629 if (hw->mac.ops.get_media_type(hw) == ixgbe_media_type_copper) {
2630 /* Turn off the copper */
2631 ixgbe_set_phy_power(hw, false);
2633 /* Turn off the laser */
2634 ixgbe_disable_tx_laser(hw);
2637 ixgbe_dev_clear_queues(dev);
2639 /* Clear stored conf */
2640 dev->data->scattered_rx = 0;
2643 /* Clear recorded link status */
2644 memset(&link, 0, sizeof(link));
2645 rte_ixgbe_dev_atomic_write_link_status(dev, &link);
2647 if (!rte_intr_allow_others(intr_handle))
2648 /* resume to the default handler */
2649 rte_intr_callback_register(intr_handle,
2650 ixgbe_dev_interrupt_handler,
2653 /* Clean datapath event and queue/vec mapping */
2654 rte_intr_efd_disable(intr_handle);
2655 if (intr_handle->intr_vec != NULL) {
2656 rte_free(intr_handle->intr_vec);
2657 intr_handle->intr_vec = NULL;
2662 * Set device link up: enable tx.
2665 ixgbe_dev_set_link_up(struct rte_eth_dev *dev)
2667 struct ixgbe_hw *hw =
2668 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2669 if (hw->mac.type == ixgbe_mac_82599EB) {
2670 #ifdef RTE_NIC_BYPASS
2671 if (hw->device_id == IXGBE_DEV_ID_82599_BYPASS) {
2672 /* Not suported in bypass mode */
2673 PMD_INIT_LOG(ERR, "Set link up is not supported "
2674 "by device id 0x%x", hw->device_id);
2680 if (hw->mac.ops.get_media_type(hw) == ixgbe_media_type_copper) {
2681 /* Turn on the copper */
2682 ixgbe_set_phy_power(hw, true);
2684 /* Turn on the laser */
2685 ixgbe_enable_tx_laser(hw);
2692 * Set device link down: disable tx.
2695 ixgbe_dev_set_link_down(struct rte_eth_dev *dev)
2697 struct ixgbe_hw *hw =
2698 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2699 if (hw->mac.type == ixgbe_mac_82599EB) {
2700 #ifdef RTE_NIC_BYPASS
2701 if (hw->device_id == IXGBE_DEV_ID_82599_BYPASS) {
2702 /* Not suported in bypass mode */
2703 PMD_INIT_LOG(ERR, "Set link down is not supported "
2704 "by device id 0x%x", hw->device_id);
2710 if (hw->mac.ops.get_media_type(hw) == ixgbe_media_type_copper) {
2711 /* Turn off the copper */
2712 ixgbe_set_phy_power(hw, false);
2714 /* Turn off the laser */
2715 ixgbe_disable_tx_laser(hw);
2722 * Reest and stop device.
2725 ixgbe_dev_close(struct rte_eth_dev *dev)
2727 struct ixgbe_hw *hw =
2728 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2730 PMD_INIT_FUNC_TRACE();
2732 ixgbe_pf_reset_hw(hw);
2734 ixgbe_dev_stop(dev);
2735 hw->adapter_stopped = 1;
2737 ixgbe_dev_free_queues(dev);
2739 ixgbe_disable_pcie_master(hw);
2741 /* reprogram the RAR[0] in case user changed it. */
2742 ixgbe_set_rar(hw, 0, hw->mac.addr, 0, IXGBE_RAH_AV);
2746 ixgbe_read_stats_registers(struct ixgbe_hw *hw,
2747 struct ixgbe_hw_stats *hw_stats,
2748 struct ixgbe_macsec_stats *macsec_stats,
2749 uint64_t *total_missed_rx, uint64_t *total_qbrc,
2750 uint64_t *total_qprc, uint64_t *total_qprdc)
2752 uint32_t bprc, lxon, lxoff, total;
2753 uint32_t delta_gprc = 0;
2755 /* Workaround for RX byte count not including CRC bytes when CRC
2756 * strip is enabled. CRC bytes are removed from counters when crc_strip
2759 int crc_strip = (IXGBE_READ_REG(hw, IXGBE_HLREG0) &
2760 IXGBE_HLREG0_RXCRCSTRP);
2762 hw_stats->crcerrs += IXGBE_READ_REG(hw, IXGBE_CRCERRS);
2763 hw_stats->illerrc += IXGBE_READ_REG(hw, IXGBE_ILLERRC);
2764 hw_stats->errbc += IXGBE_READ_REG(hw, IXGBE_ERRBC);
2765 hw_stats->mspdc += IXGBE_READ_REG(hw, IXGBE_MSPDC);
2767 for (i = 0; i < 8; i++) {
2768 uint32_t mp = IXGBE_READ_REG(hw, IXGBE_MPC(i));
2770 /* global total per queue */
2771 hw_stats->mpc[i] += mp;
2772 /* Running comprehensive total for stats display */
2773 *total_missed_rx += hw_stats->mpc[i];
2774 if (hw->mac.type == ixgbe_mac_82598EB) {
2775 hw_stats->rnbc[i] +=
2776 IXGBE_READ_REG(hw, IXGBE_RNBC(i));
2777 hw_stats->pxonrxc[i] +=
2778 IXGBE_READ_REG(hw, IXGBE_PXONRXC(i));
2779 hw_stats->pxoffrxc[i] +=
2780 IXGBE_READ_REG(hw, IXGBE_PXOFFRXC(i));
2782 hw_stats->pxonrxc[i] +=
2783 IXGBE_READ_REG(hw, IXGBE_PXONRXCNT(i));
2784 hw_stats->pxoffrxc[i] +=
2785 IXGBE_READ_REG(hw, IXGBE_PXOFFRXCNT(i));
2786 hw_stats->pxon2offc[i] +=
2787 IXGBE_READ_REG(hw, IXGBE_PXON2OFFCNT(i));
2789 hw_stats->pxontxc[i] +=
2790 IXGBE_READ_REG(hw, IXGBE_PXONTXC(i));
2791 hw_stats->pxofftxc[i] +=
2792 IXGBE_READ_REG(hw, IXGBE_PXOFFTXC(i));
2794 for (i = 0; i < IXGBE_QUEUE_STAT_COUNTERS; i++) {
2795 uint32_t delta_qprc = IXGBE_READ_REG(hw, IXGBE_QPRC(i));
2796 uint32_t delta_qptc = IXGBE_READ_REG(hw, IXGBE_QPTC(i));
2797 uint32_t delta_qprdc = IXGBE_READ_REG(hw, IXGBE_QPRDC(i));
2799 delta_gprc += delta_qprc;
2801 hw_stats->qprc[i] += delta_qprc;
2802 hw_stats->qptc[i] += delta_qptc;
2804 hw_stats->qbrc[i] += IXGBE_READ_REG(hw, IXGBE_QBRC_L(i));
2805 hw_stats->qbrc[i] +=
2806 ((uint64_t)IXGBE_READ_REG(hw, IXGBE_QBRC_H(i)) << 32);
2808 hw_stats->qbrc[i] -= delta_qprc * ETHER_CRC_LEN;
2810 hw_stats->qbtc[i] += IXGBE_READ_REG(hw, IXGBE_QBTC_L(i));
2811 hw_stats->qbtc[i] +=
2812 ((uint64_t)IXGBE_READ_REG(hw, IXGBE_QBTC_H(i)) << 32);
2814 hw_stats->qprdc[i] += delta_qprdc;
2815 *total_qprdc += hw_stats->qprdc[i];
2817 *total_qprc += hw_stats->qprc[i];
2818 *total_qbrc += hw_stats->qbrc[i];
2820 hw_stats->mlfc += IXGBE_READ_REG(hw, IXGBE_MLFC);
2821 hw_stats->mrfc += IXGBE_READ_REG(hw, IXGBE_MRFC);
2822 hw_stats->rlec += IXGBE_READ_REG(hw, IXGBE_RLEC);
2825 * An errata states that gprc actually counts good + missed packets:
2826 * Workaround to set gprc to summated queue packet receives
2828 hw_stats->gprc = *total_qprc;
2830 if (hw->mac.type != ixgbe_mac_82598EB) {
2831 hw_stats->gorc += IXGBE_READ_REG(hw, IXGBE_GORCL);
2832 hw_stats->gorc += ((u64)IXGBE_READ_REG(hw, IXGBE_GORCH) << 32);
2833 hw_stats->gotc += IXGBE_READ_REG(hw, IXGBE_GOTCL);
2834 hw_stats->gotc += ((u64)IXGBE_READ_REG(hw, IXGBE_GOTCH) << 32);
2835 hw_stats->tor += IXGBE_READ_REG(hw, IXGBE_TORL);
2836 hw_stats->tor += ((u64)IXGBE_READ_REG(hw, IXGBE_TORH) << 32);
2837 hw_stats->lxonrxc += IXGBE_READ_REG(hw, IXGBE_LXONRXCNT);
2838 hw_stats->lxoffrxc += IXGBE_READ_REG(hw, IXGBE_LXOFFRXCNT);
2840 hw_stats->lxonrxc += IXGBE_READ_REG(hw, IXGBE_LXONRXC);
2841 hw_stats->lxoffrxc += IXGBE_READ_REG(hw, IXGBE_LXOFFRXC);
2842 /* 82598 only has a counter in the high register */
2843 hw_stats->gorc += IXGBE_READ_REG(hw, IXGBE_GORCH);
2844 hw_stats->gotc += IXGBE_READ_REG(hw, IXGBE_GOTCH);
2845 hw_stats->tor += IXGBE_READ_REG(hw, IXGBE_TORH);
2847 uint64_t old_tpr = hw_stats->tpr;
2849 hw_stats->tpr += IXGBE_READ_REG(hw, IXGBE_TPR);
2850 hw_stats->tpt += IXGBE_READ_REG(hw, IXGBE_TPT);
2853 hw_stats->gorc -= delta_gprc * ETHER_CRC_LEN;
2855 uint64_t delta_gptc = IXGBE_READ_REG(hw, IXGBE_GPTC);
2856 hw_stats->gptc += delta_gptc;
2857 hw_stats->gotc -= delta_gptc * ETHER_CRC_LEN;
2858 hw_stats->tor -= (hw_stats->tpr - old_tpr) * ETHER_CRC_LEN;
2861 * Workaround: mprc hardware is incorrectly counting
2862 * broadcasts, so for now we subtract those.
2864 bprc = IXGBE_READ_REG(hw, IXGBE_BPRC);
2865 hw_stats->bprc += bprc;
2866 hw_stats->mprc += IXGBE_READ_REG(hw, IXGBE_MPRC);
2867 if (hw->mac.type == ixgbe_mac_82598EB)
2868 hw_stats->mprc -= bprc;
2870 hw_stats->prc64 += IXGBE_READ_REG(hw, IXGBE_PRC64);
2871 hw_stats->prc127 += IXGBE_READ_REG(hw, IXGBE_PRC127);
2872 hw_stats->prc255 += IXGBE_READ_REG(hw, IXGBE_PRC255);
2873 hw_stats->prc511 += IXGBE_READ_REG(hw, IXGBE_PRC511);
2874 hw_stats->prc1023 += IXGBE_READ_REG(hw, IXGBE_PRC1023);
2875 hw_stats->prc1522 += IXGBE_READ_REG(hw, IXGBE_PRC1522);
2877 lxon = IXGBE_READ_REG(hw, IXGBE_LXONTXC);
2878 hw_stats->lxontxc += lxon;
2879 lxoff = IXGBE_READ_REG(hw, IXGBE_LXOFFTXC);
2880 hw_stats->lxofftxc += lxoff;
2881 total = lxon + lxoff;
2883 hw_stats->mptc += IXGBE_READ_REG(hw, IXGBE_MPTC);
2884 hw_stats->ptc64 += IXGBE_READ_REG(hw, IXGBE_PTC64);
2885 hw_stats->gptc -= total;
2886 hw_stats->mptc -= total;
2887 hw_stats->ptc64 -= total;
2888 hw_stats->gotc -= total * ETHER_MIN_LEN;
2890 hw_stats->ruc += IXGBE_READ_REG(hw, IXGBE_RUC);
2891 hw_stats->rfc += IXGBE_READ_REG(hw, IXGBE_RFC);
2892 hw_stats->roc += IXGBE_READ_REG(hw, IXGBE_ROC);
2893 hw_stats->rjc += IXGBE_READ_REG(hw, IXGBE_RJC);
2894 hw_stats->mngprc += IXGBE_READ_REG(hw, IXGBE_MNGPRC);
2895 hw_stats->mngpdc += IXGBE_READ_REG(hw, IXGBE_MNGPDC);
2896 hw_stats->mngptc += IXGBE_READ_REG(hw, IXGBE_MNGPTC);
2897 hw_stats->ptc127 += IXGBE_READ_REG(hw, IXGBE_PTC127);
2898 hw_stats->ptc255 += IXGBE_READ_REG(hw, IXGBE_PTC255);
2899 hw_stats->ptc511 += IXGBE_READ_REG(hw, IXGBE_PTC511);
2900 hw_stats->ptc1023 += IXGBE_READ_REG(hw, IXGBE_PTC1023);
2901 hw_stats->ptc1522 += IXGBE_READ_REG(hw, IXGBE_PTC1522);
2902 hw_stats->bptc += IXGBE_READ_REG(hw, IXGBE_BPTC);
2903 hw_stats->xec += IXGBE_READ_REG(hw, IXGBE_XEC);
2904 hw_stats->fccrc += IXGBE_READ_REG(hw, IXGBE_FCCRC);
2905 hw_stats->fclast += IXGBE_READ_REG(hw, IXGBE_FCLAST);
2906 /* Only read FCOE on 82599 */
2907 if (hw->mac.type != ixgbe_mac_82598EB) {
2908 hw_stats->fcoerpdc += IXGBE_READ_REG(hw, IXGBE_FCOERPDC);
2909 hw_stats->fcoeprc += IXGBE_READ_REG(hw, IXGBE_FCOEPRC);
2910 hw_stats->fcoeptc += IXGBE_READ_REG(hw, IXGBE_FCOEPTC);
2911 hw_stats->fcoedwrc += IXGBE_READ_REG(hw, IXGBE_FCOEDWRC);
2912 hw_stats->fcoedwtc += IXGBE_READ_REG(hw, IXGBE_FCOEDWTC);
2915 /* Flow Director Stats registers */
2916 hw_stats->fdirmatch += IXGBE_READ_REG(hw, IXGBE_FDIRMATCH);
2917 hw_stats->fdirmiss += IXGBE_READ_REG(hw, IXGBE_FDIRMISS);
2919 /* MACsec Stats registers */
2920 macsec_stats->out_pkts_untagged += IXGBE_READ_REG(hw, IXGBE_LSECTXUT);
2921 macsec_stats->out_pkts_encrypted +=
2922 IXGBE_READ_REG(hw, IXGBE_LSECTXPKTE);
2923 macsec_stats->out_pkts_protected +=
2924 IXGBE_READ_REG(hw, IXGBE_LSECTXPKTP);
2925 macsec_stats->out_octets_encrypted +=
2926 IXGBE_READ_REG(hw, IXGBE_LSECTXOCTE);
2927 macsec_stats->out_octets_protected +=
2928 IXGBE_READ_REG(hw, IXGBE_LSECTXOCTP);
2929 macsec_stats->in_pkts_untagged += IXGBE_READ_REG(hw, IXGBE_LSECRXUT);
2930 macsec_stats->in_pkts_badtag += IXGBE_READ_REG(hw, IXGBE_LSECRXBAD);
2931 macsec_stats->in_pkts_nosci += IXGBE_READ_REG(hw, IXGBE_LSECRXNOSCI);
2932 macsec_stats->in_pkts_unknownsci +=
2933 IXGBE_READ_REG(hw, IXGBE_LSECRXUNSCI);
2934 macsec_stats->in_octets_decrypted +=
2935 IXGBE_READ_REG(hw, IXGBE_LSECRXOCTD);
2936 macsec_stats->in_octets_validated +=
2937 IXGBE_READ_REG(hw, IXGBE_LSECRXOCTV);
2938 macsec_stats->in_pkts_unchecked += IXGBE_READ_REG(hw, IXGBE_LSECRXUNCH);
2939 macsec_stats->in_pkts_delayed += IXGBE_READ_REG(hw, IXGBE_LSECRXDELAY);
2940 macsec_stats->in_pkts_late += IXGBE_READ_REG(hw, IXGBE_LSECRXLATE);
2941 for (i = 0; i < 2; i++) {
2942 macsec_stats->in_pkts_ok +=
2943 IXGBE_READ_REG(hw, IXGBE_LSECRXOK(i));
2944 macsec_stats->in_pkts_invalid +=
2945 IXGBE_READ_REG(hw, IXGBE_LSECRXINV(i));
2946 macsec_stats->in_pkts_notvalid +=
2947 IXGBE_READ_REG(hw, IXGBE_LSECRXNV(i));
2949 macsec_stats->in_pkts_unusedsa += IXGBE_READ_REG(hw, IXGBE_LSECRXUNSA);
2950 macsec_stats->in_pkts_notusingsa +=
2951 IXGBE_READ_REG(hw, IXGBE_LSECRXNUSA);
2955 * This function is based on ixgbe_update_stats_counters() in ixgbe/ixgbe.c
2958 ixgbe_dev_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats)
2960 struct ixgbe_hw *hw =
2961 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2962 struct ixgbe_hw_stats *hw_stats =
2963 IXGBE_DEV_PRIVATE_TO_STATS(dev->data->dev_private);
2964 struct ixgbe_macsec_stats *macsec_stats =
2965 IXGBE_DEV_PRIVATE_TO_MACSEC_STATS(
2966 dev->data->dev_private);
2967 uint64_t total_missed_rx, total_qbrc, total_qprc, total_qprdc;
2970 total_missed_rx = 0;
2975 ixgbe_read_stats_registers(hw, hw_stats, macsec_stats, &total_missed_rx,
2976 &total_qbrc, &total_qprc, &total_qprdc);
2981 /* Fill out the rte_eth_stats statistics structure */
2982 stats->ipackets = total_qprc;
2983 stats->ibytes = total_qbrc;
2984 stats->opackets = hw_stats->gptc;
2985 stats->obytes = hw_stats->gotc;
2987 for (i = 0; i < IXGBE_QUEUE_STAT_COUNTERS; i++) {
2988 stats->q_ipackets[i] = hw_stats->qprc[i];
2989 stats->q_opackets[i] = hw_stats->qptc[i];
2990 stats->q_ibytes[i] = hw_stats->qbrc[i];
2991 stats->q_obytes[i] = hw_stats->qbtc[i];
2992 stats->q_errors[i] = hw_stats->qprdc[i];
2996 stats->imissed = total_missed_rx;
2997 stats->ierrors = hw_stats->crcerrs +
3013 ixgbe_dev_stats_reset(struct rte_eth_dev *dev)
3015 struct ixgbe_hw_stats *stats =
3016 IXGBE_DEV_PRIVATE_TO_STATS(dev->data->dev_private);
3018 /* HW registers are cleared on read */
3019 ixgbe_dev_stats_get(dev, NULL);
3021 /* Reset software totals */
3022 memset(stats, 0, sizeof(*stats));
3025 /* This function calculates the number of xstats based on the current config */
3027 ixgbe_xstats_calc_num(void) {
3028 return IXGBE_NB_HW_STATS + IXGBE_NB_MACSEC_STATS +
3029 (IXGBE_NB_RXQ_PRIO_STATS * IXGBE_NB_RXQ_PRIO_VALUES) +
3030 (IXGBE_NB_TXQ_PRIO_STATS * IXGBE_NB_TXQ_PRIO_VALUES);
3033 static int ixgbe_dev_xstats_get_names(__rte_unused struct rte_eth_dev *dev,
3034 struct rte_eth_xstat_name *xstats_names, __rte_unused unsigned limit)
3036 const unsigned cnt_stats = ixgbe_xstats_calc_num();
3037 unsigned stat, i, count;
3039 if (xstats_names != NULL) {
3042 /* Note: limit >= cnt_stats checked upstream
3043 * in rte_eth_xstats_names()
3046 /* Extended stats from ixgbe_hw_stats */
3047 for (i = 0; i < IXGBE_NB_HW_STATS; i++) {
3048 snprintf(xstats_names[count].name,
3049 sizeof(xstats_names[count].name),
3051 rte_ixgbe_stats_strings[i].name);
3056 for (i = 0; i < IXGBE_NB_MACSEC_STATS; i++) {
3057 snprintf(xstats_names[count].name,
3058 sizeof(xstats_names[count].name),
3060 rte_ixgbe_macsec_strings[i].name);
3064 /* RX Priority Stats */
3065 for (stat = 0; stat < IXGBE_NB_RXQ_PRIO_STATS; stat++) {
3066 for (i = 0; i < IXGBE_NB_RXQ_PRIO_VALUES; i++) {
3067 snprintf(xstats_names[count].name,
3068 sizeof(xstats_names[count].name),
3069 "rx_priority%u_%s", i,
3070 rte_ixgbe_rxq_strings[stat].name);
3075 /* TX Priority Stats */
3076 for (stat = 0; stat < IXGBE_NB_TXQ_PRIO_STATS; stat++) {
3077 for (i = 0; i < IXGBE_NB_TXQ_PRIO_VALUES; i++) {
3078 snprintf(xstats_names[count].name,
3079 sizeof(xstats_names[count].name),
3080 "tx_priority%u_%s", i,
3081 rte_ixgbe_txq_strings[stat].name);
3089 static int ixgbevf_dev_xstats_get_names(__rte_unused struct rte_eth_dev *dev,
3090 struct rte_eth_xstat_name *xstats_names, unsigned limit)
3094 if (limit < IXGBEVF_NB_XSTATS && xstats_names != NULL)
3097 if (xstats_names != NULL)
3098 for (i = 0; i < IXGBEVF_NB_XSTATS; i++)
3099 snprintf(xstats_names[i].name,
3100 sizeof(xstats_names[i].name),
3101 "%s", rte_ixgbevf_stats_strings[i].name);
3102 return IXGBEVF_NB_XSTATS;
3106 ixgbe_dev_xstats_get(struct rte_eth_dev *dev, struct rte_eth_xstat *xstats,
3109 struct ixgbe_hw *hw =
3110 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3111 struct ixgbe_hw_stats *hw_stats =
3112 IXGBE_DEV_PRIVATE_TO_STATS(dev->data->dev_private);
3113 struct ixgbe_macsec_stats *macsec_stats =
3114 IXGBE_DEV_PRIVATE_TO_MACSEC_STATS(
3115 dev->data->dev_private);
3116 uint64_t total_missed_rx, total_qbrc, total_qprc, total_qprdc;
3117 unsigned i, stat, count = 0;
3119 count = ixgbe_xstats_calc_num();
3124 total_missed_rx = 0;
3129 ixgbe_read_stats_registers(hw, hw_stats, macsec_stats, &total_missed_rx,
3130 &total_qbrc, &total_qprc, &total_qprdc);
3132 /* If this is a reset xstats is NULL, and we have cleared the
3133 * registers by reading them.
3138 /* Extended stats from ixgbe_hw_stats */
3140 for (i = 0; i < IXGBE_NB_HW_STATS; i++) {
3141 xstats[count].value = *(uint64_t *)(((char *)hw_stats) +
3142 rte_ixgbe_stats_strings[i].offset);
3143 xstats[count].id = count;
3148 for (i = 0; i < IXGBE_NB_MACSEC_STATS; i++) {
3149 xstats[count].value = *(uint64_t *)(((char *)macsec_stats) +
3150 rte_ixgbe_macsec_strings[i].offset);
3151 xstats[count].id = count;
3155 /* RX Priority Stats */
3156 for (stat = 0; stat < IXGBE_NB_RXQ_PRIO_STATS; stat++) {
3157 for (i = 0; i < IXGBE_NB_RXQ_PRIO_VALUES; i++) {
3158 xstats[count].value = *(uint64_t *)(((char *)hw_stats) +
3159 rte_ixgbe_rxq_strings[stat].offset +
3160 (sizeof(uint64_t) * i));
3161 xstats[count].id = count;
3166 /* TX Priority Stats */
3167 for (stat = 0; stat < IXGBE_NB_TXQ_PRIO_STATS; stat++) {
3168 for (i = 0; i < IXGBE_NB_TXQ_PRIO_VALUES; i++) {
3169 xstats[count].value = *(uint64_t *)(((char *)hw_stats) +
3170 rte_ixgbe_txq_strings[stat].offset +
3171 (sizeof(uint64_t) * i));
3172 xstats[count].id = count;
3180 ixgbe_dev_xstats_reset(struct rte_eth_dev *dev)
3182 struct ixgbe_hw_stats *stats =
3183 IXGBE_DEV_PRIVATE_TO_STATS(dev->data->dev_private);
3184 struct ixgbe_macsec_stats *macsec_stats =
3185 IXGBE_DEV_PRIVATE_TO_MACSEC_STATS(
3186 dev->data->dev_private);
3188 unsigned count = ixgbe_xstats_calc_num();
3190 /* HW registers are cleared on read */
3191 ixgbe_dev_xstats_get(dev, NULL, count);
3193 /* Reset software totals */
3194 memset(stats, 0, sizeof(*stats));
3195 memset(macsec_stats, 0, sizeof(*macsec_stats));
3199 ixgbevf_update_stats(struct rte_eth_dev *dev)
3201 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3202 struct ixgbevf_hw_stats *hw_stats = (struct ixgbevf_hw_stats *)
3203 IXGBE_DEV_PRIVATE_TO_STATS(dev->data->dev_private);
3205 /* Good Rx packet, include VF loopback */
3206 UPDATE_VF_STAT(IXGBE_VFGPRC,
3207 hw_stats->last_vfgprc, hw_stats->vfgprc);
3209 /* Good Rx octets, include VF loopback */
3210 UPDATE_VF_STAT_36BIT(IXGBE_VFGORC_LSB, IXGBE_VFGORC_MSB,
3211 hw_stats->last_vfgorc, hw_stats->vfgorc);
3213 /* Good Tx packet, include VF loopback */
3214 UPDATE_VF_STAT(IXGBE_VFGPTC,
3215 hw_stats->last_vfgptc, hw_stats->vfgptc);
3217 /* Good Tx octets, include VF loopback */
3218 UPDATE_VF_STAT_36BIT(IXGBE_VFGOTC_LSB, IXGBE_VFGOTC_MSB,
3219 hw_stats->last_vfgotc, hw_stats->vfgotc);
3221 /* Rx Multicst Packet */
3222 UPDATE_VF_STAT(IXGBE_VFMPRC,
3223 hw_stats->last_vfmprc, hw_stats->vfmprc);
3227 ixgbevf_dev_xstats_get(struct rte_eth_dev *dev, struct rte_eth_xstat *xstats,
3230 struct ixgbevf_hw_stats *hw_stats = (struct ixgbevf_hw_stats *)
3231 IXGBE_DEV_PRIVATE_TO_STATS(dev->data->dev_private);
3234 if (n < IXGBEVF_NB_XSTATS)
3235 return IXGBEVF_NB_XSTATS;
3237 ixgbevf_update_stats(dev);
3242 /* Extended stats */
3243 for (i = 0; i < IXGBEVF_NB_XSTATS; i++) {
3244 xstats[i].value = *(uint64_t *)(((char *)hw_stats) +
3245 rte_ixgbevf_stats_strings[i].offset);
3248 return IXGBEVF_NB_XSTATS;
3252 ixgbevf_dev_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats)
3254 struct ixgbevf_hw_stats *hw_stats = (struct ixgbevf_hw_stats *)
3255 IXGBE_DEV_PRIVATE_TO_STATS(dev->data->dev_private);
3257 ixgbevf_update_stats(dev);
3262 stats->ipackets = hw_stats->vfgprc;
3263 stats->ibytes = hw_stats->vfgorc;
3264 stats->opackets = hw_stats->vfgptc;
3265 stats->obytes = hw_stats->vfgotc;
3269 ixgbevf_dev_stats_reset(struct rte_eth_dev *dev)
3271 struct ixgbevf_hw_stats *hw_stats = (struct ixgbevf_hw_stats *)
3272 IXGBE_DEV_PRIVATE_TO_STATS(dev->data->dev_private);
3274 /* Sync HW register to the last stats */
3275 ixgbevf_dev_stats_get(dev, NULL);
3277 /* reset HW current stats*/
3278 hw_stats->vfgprc = 0;
3279 hw_stats->vfgorc = 0;
3280 hw_stats->vfgptc = 0;
3281 hw_stats->vfgotc = 0;
3285 ixgbe_fw_version_get(struct rte_eth_dev *dev, char *fw_version, size_t fw_size)
3287 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3288 u16 eeprom_verh, eeprom_verl;
3292 ixgbe_read_eeprom(hw, 0x2e, &eeprom_verh);
3293 ixgbe_read_eeprom(hw, 0x2d, &eeprom_verl);
3295 etrack_id = (eeprom_verh << 16) | eeprom_verl;
3296 ret = snprintf(fw_version, fw_size, "0x%08x", etrack_id);
3298 ret += 1; /* add the size of '\0' */
3299 if (fw_size < (u32)ret)
3306 ixgbe_dev_info_get(struct rte_eth_dev *dev, struct rte_eth_dev_info *dev_info)
3308 struct rte_pci_device *pci_dev = IXGBE_DEV_TO_PCI(dev);
3309 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3310 struct rte_eth_conf *dev_conf = &dev->data->dev_conf;
3312 dev_info->pci_dev = pci_dev;
3313 dev_info->max_rx_queues = (uint16_t)hw->mac.max_rx_queues;
3314 dev_info->max_tx_queues = (uint16_t)hw->mac.max_tx_queues;
3315 if (RTE_ETH_DEV_SRIOV(dev).active == 0) {
3317 * When DCB/VT is off, maximum number of queues changes,
3318 * except for 82598EB, which remains constant.
3320 if (dev_conf->txmode.mq_mode == ETH_MQ_TX_NONE &&
3321 hw->mac.type != ixgbe_mac_82598EB)
3322 dev_info->max_tx_queues = IXGBE_NONE_MODE_TX_NB_QUEUES;
3324 dev_info->min_rx_bufsize = 1024; /* cf BSIZEPACKET in SRRCTL register */
3325 dev_info->max_rx_pktlen = 15872; /* includes CRC, cf MAXFRS register */
3326 dev_info->max_mac_addrs = hw->mac.num_rar_entries;
3327 dev_info->max_hash_mac_addrs = IXGBE_VMDQ_NUM_UC_MAC;
3328 dev_info->max_vfs = pci_dev->max_vfs;
3329 if (hw->mac.type == ixgbe_mac_82598EB)
3330 dev_info->max_vmdq_pools = ETH_16_POOLS;
3332 dev_info->max_vmdq_pools = ETH_64_POOLS;
3333 dev_info->vmdq_queue_num = dev_info->max_rx_queues;
3334 dev_info->rx_offload_capa =
3335 DEV_RX_OFFLOAD_VLAN_STRIP |
3336 DEV_RX_OFFLOAD_IPV4_CKSUM |
3337 DEV_RX_OFFLOAD_UDP_CKSUM |
3338 DEV_RX_OFFLOAD_TCP_CKSUM;
3341 * RSC is only supported by 82599 and x540 PF devices in a non-SR-IOV
3344 if ((hw->mac.type == ixgbe_mac_82599EB ||
3345 hw->mac.type == ixgbe_mac_X540) &&
3346 !RTE_ETH_DEV_SRIOV(dev).active)
3347 dev_info->rx_offload_capa |= DEV_RX_OFFLOAD_TCP_LRO;
3349 if (hw->mac.type == ixgbe_mac_82599EB ||
3350 hw->mac.type == ixgbe_mac_X540)
3351 dev_info->rx_offload_capa |= DEV_RX_OFFLOAD_MACSEC_STRIP;
3353 if (hw->mac.type == ixgbe_mac_X550 ||
3354 hw->mac.type == ixgbe_mac_X550EM_x ||
3355 hw->mac.type == ixgbe_mac_X550EM_a)
3356 dev_info->rx_offload_capa |= DEV_RX_OFFLOAD_OUTER_IPV4_CKSUM;
3358 dev_info->tx_offload_capa =
3359 DEV_TX_OFFLOAD_VLAN_INSERT |
3360 DEV_TX_OFFLOAD_IPV4_CKSUM |
3361 DEV_TX_OFFLOAD_UDP_CKSUM |
3362 DEV_TX_OFFLOAD_TCP_CKSUM |
3363 DEV_TX_OFFLOAD_SCTP_CKSUM |
3364 DEV_TX_OFFLOAD_TCP_TSO;
3366 if (hw->mac.type == ixgbe_mac_82599EB ||
3367 hw->mac.type == ixgbe_mac_X540)
3368 dev_info->tx_offload_capa |= DEV_TX_OFFLOAD_MACSEC_INSERT;
3370 if (hw->mac.type == ixgbe_mac_X550 ||
3371 hw->mac.type == ixgbe_mac_X550EM_x ||
3372 hw->mac.type == ixgbe_mac_X550EM_a)
3373 dev_info->tx_offload_capa |= DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM;
3375 dev_info->default_rxconf = (struct rte_eth_rxconf) {
3377 .pthresh = IXGBE_DEFAULT_RX_PTHRESH,
3378 .hthresh = IXGBE_DEFAULT_RX_HTHRESH,
3379 .wthresh = IXGBE_DEFAULT_RX_WTHRESH,
3381 .rx_free_thresh = IXGBE_DEFAULT_RX_FREE_THRESH,
3385 dev_info->default_txconf = (struct rte_eth_txconf) {
3387 .pthresh = IXGBE_DEFAULT_TX_PTHRESH,
3388 .hthresh = IXGBE_DEFAULT_TX_HTHRESH,
3389 .wthresh = IXGBE_DEFAULT_TX_WTHRESH,
3391 .tx_free_thresh = IXGBE_DEFAULT_TX_FREE_THRESH,
3392 .tx_rs_thresh = IXGBE_DEFAULT_TX_RSBIT_THRESH,
3393 .txq_flags = ETH_TXQ_FLAGS_NOMULTSEGS |
3394 ETH_TXQ_FLAGS_NOOFFLOADS,
3397 dev_info->rx_desc_lim = rx_desc_lim;
3398 dev_info->tx_desc_lim = tx_desc_lim;
3400 dev_info->hash_key_size = IXGBE_HKEY_MAX_INDEX * sizeof(uint32_t);
3401 dev_info->reta_size = ixgbe_reta_size_get(hw->mac.type);
3402 dev_info->flow_type_rss_offloads = IXGBE_RSS_OFFLOAD_ALL;
3404 dev_info->speed_capa = ETH_LINK_SPEED_1G | ETH_LINK_SPEED_10G;
3405 if (hw->mac.type == ixgbe_mac_X540 ||
3406 hw->mac.type == ixgbe_mac_X540_vf ||
3407 hw->mac.type == ixgbe_mac_X550 ||
3408 hw->mac.type == ixgbe_mac_X550_vf) {
3409 dev_info->speed_capa |= ETH_LINK_SPEED_100M;
3413 static const uint32_t *
3414 ixgbe_dev_supported_ptypes_get(struct rte_eth_dev *dev)
3416 static const uint32_t ptypes[] = {
3417 /* For non-vec functions,
3418 * refers to ixgbe_rxd_pkt_info_to_pkt_type();
3419 * for vec functions,
3420 * refers to _recv_raw_pkts_vec().
3424 RTE_PTYPE_L3_IPV4_EXT,
3426 RTE_PTYPE_L3_IPV6_EXT,
3430 RTE_PTYPE_TUNNEL_IP,
3431 RTE_PTYPE_INNER_L3_IPV6,
3432 RTE_PTYPE_INNER_L3_IPV6_EXT,
3433 RTE_PTYPE_INNER_L4_TCP,
3434 RTE_PTYPE_INNER_L4_UDP,
3438 if (dev->rx_pkt_burst == ixgbe_recv_pkts ||
3439 dev->rx_pkt_burst == ixgbe_recv_pkts_lro_single_alloc ||
3440 dev->rx_pkt_burst == ixgbe_recv_pkts_lro_bulk_alloc ||
3441 dev->rx_pkt_burst == ixgbe_recv_pkts_bulk_alloc)
3447 ixgbevf_dev_info_get(struct rte_eth_dev *dev,
3448 struct rte_eth_dev_info *dev_info)
3450 struct rte_pci_device *pci_dev = IXGBE_DEV_TO_PCI(dev);
3451 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3453 dev_info->pci_dev = pci_dev;
3454 dev_info->max_rx_queues = (uint16_t)hw->mac.max_rx_queues;
3455 dev_info->max_tx_queues = (uint16_t)hw->mac.max_tx_queues;
3456 dev_info->min_rx_bufsize = 1024; /* cf BSIZEPACKET in SRRCTL reg */
3457 dev_info->max_rx_pktlen = 15872; /* includes CRC, cf MAXFRS reg */
3458 dev_info->max_mac_addrs = hw->mac.num_rar_entries;
3459 dev_info->max_hash_mac_addrs = IXGBE_VMDQ_NUM_UC_MAC;
3460 dev_info->max_vfs = pci_dev->max_vfs;
3461 if (hw->mac.type == ixgbe_mac_82598EB)
3462 dev_info->max_vmdq_pools = ETH_16_POOLS;
3464 dev_info->max_vmdq_pools = ETH_64_POOLS;
3465 dev_info->rx_offload_capa = DEV_RX_OFFLOAD_VLAN_STRIP |
3466 DEV_RX_OFFLOAD_IPV4_CKSUM |
3467 DEV_RX_OFFLOAD_UDP_CKSUM |
3468 DEV_RX_OFFLOAD_TCP_CKSUM;
3469 dev_info->tx_offload_capa = DEV_TX_OFFLOAD_VLAN_INSERT |
3470 DEV_TX_OFFLOAD_IPV4_CKSUM |
3471 DEV_TX_OFFLOAD_UDP_CKSUM |
3472 DEV_TX_OFFLOAD_TCP_CKSUM |
3473 DEV_TX_OFFLOAD_SCTP_CKSUM |
3474 DEV_TX_OFFLOAD_TCP_TSO;
3476 dev_info->default_rxconf = (struct rte_eth_rxconf) {
3478 .pthresh = IXGBE_DEFAULT_RX_PTHRESH,
3479 .hthresh = IXGBE_DEFAULT_RX_HTHRESH,
3480 .wthresh = IXGBE_DEFAULT_RX_WTHRESH,
3482 .rx_free_thresh = IXGBE_DEFAULT_RX_FREE_THRESH,
3486 dev_info->default_txconf = (struct rte_eth_txconf) {
3488 .pthresh = IXGBE_DEFAULT_TX_PTHRESH,
3489 .hthresh = IXGBE_DEFAULT_TX_HTHRESH,
3490 .wthresh = IXGBE_DEFAULT_TX_WTHRESH,
3492 .tx_free_thresh = IXGBE_DEFAULT_TX_FREE_THRESH,
3493 .tx_rs_thresh = IXGBE_DEFAULT_TX_RSBIT_THRESH,
3494 .txq_flags = ETH_TXQ_FLAGS_NOMULTSEGS |
3495 ETH_TXQ_FLAGS_NOOFFLOADS,
3498 dev_info->rx_desc_lim = rx_desc_lim;
3499 dev_info->tx_desc_lim = tx_desc_lim;
3502 /* return 0 means link status changed, -1 means not changed */
3504 ixgbe_dev_link_update(struct rte_eth_dev *dev, int wait_to_complete)
3506 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3507 struct rte_eth_link link, old;
3508 ixgbe_link_speed link_speed = IXGBE_LINK_SPEED_UNKNOWN;
3512 link.link_status = ETH_LINK_DOWN;
3513 link.link_speed = 0;
3514 link.link_duplex = ETH_LINK_HALF_DUPLEX;
3515 memset(&old, 0, sizeof(old));
3516 rte_ixgbe_dev_atomic_read_link_status(dev, &old);
3518 hw->mac.get_link_status = true;
3520 /* check if it needs to wait to complete, if lsc interrupt is enabled */
3521 if (wait_to_complete == 0 || dev->data->dev_conf.intr_conf.lsc != 0)
3522 diag = ixgbe_check_link(hw, &link_speed, &link_up, 0);
3524 diag = ixgbe_check_link(hw, &link_speed, &link_up, 1);
3527 link.link_speed = ETH_SPEED_NUM_100M;
3528 link.link_duplex = ETH_LINK_FULL_DUPLEX;
3529 rte_ixgbe_dev_atomic_write_link_status(dev, &link);
3530 if (link.link_status == old.link_status)
3536 rte_ixgbe_dev_atomic_write_link_status(dev, &link);
3537 if (link.link_status == old.link_status)
3541 link.link_status = ETH_LINK_UP;
3542 link.link_duplex = ETH_LINK_FULL_DUPLEX;
3544 switch (link_speed) {
3546 case IXGBE_LINK_SPEED_UNKNOWN:
3547 link.link_duplex = ETH_LINK_FULL_DUPLEX;
3548 link.link_speed = ETH_SPEED_NUM_100M;
3551 case IXGBE_LINK_SPEED_100_FULL:
3552 link.link_speed = ETH_SPEED_NUM_100M;
3555 case IXGBE_LINK_SPEED_1GB_FULL:
3556 link.link_speed = ETH_SPEED_NUM_1G;
3559 case IXGBE_LINK_SPEED_10GB_FULL:
3560 link.link_speed = ETH_SPEED_NUM_10G;
3563 rte_ixgbe_dev_atomic_write_link_status(dev, &link);
3565 if (link.link_status == old.link_status)
3572 ixgbe_dev_promiscuous_enable(struct rte_eth_dev *dev)
3574 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3577 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
3578 fctrl |= (IXGBE_FCTRL_UPE | IXGBE_FCTRL_MPE);
3579 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
3583 ixgbe_dev_promiscuous_disable(struct rte_eth_dev *dev)
3585 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3588 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
3589 fctrl &= (~IXGBE_FCTRL_UPE);
3590 if (dev->data->all_multicast == 1)
3591 fctrl |= IXGBE_FCTRL_MPE;
3593 fctrl &= (~IXGBE_FCTRL_MPE);
3594 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
3598 ixgbe_dev_allmulticast_enable(struct rte_eth_dev *dev)
3600 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3603 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
3604 fctrl |= IXGBE_FCTRL_MPE;
3605 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
3609 ixgbe_dev_allmulticast_disable(struct rte_eth_dev *dev)
3611 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3614 if (dev->data->promiscuous == 1)
3615 return; /* must remain in all_multicast mode */
3617 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
3618 fctrl &= (~IXGBE_FCTRL_MPE);
3619 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
3623 * It clears the interrupt causes and enables the interrupt.
3624 * It will be called once only during nic initialized.
3627 * Pointer to struct rte_eth_dev.
3630 * - On success, zero.
3631 * - On failure, a negative value.
3634 ixgbe_dev_lsc_interrupt_setup(struct rte_eth_dev *dev)
3636 struct ixgbe_interrupt *intr =
3637 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
3639 ixgbe_dev_link_status_print(dev);
3640 intr->mask |= IXGBE_EICR_LSC;
3646 * It clears the interrupt causes and enables the interrupt.
3647 * It will be called once only during nic initialized.
3650 * Pointer to struct rte_eth_dev.
3653 * - On success, zero.
3654 * - On failure, a negative value.
3657 ixgbe_dev_rxq_interrupt_setup(struct rte_eth_dev *dev)
3659 struct ixgbe_interrupt *intr =
3660 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
3662 intr->mask |= IXGBE_EICR_RTX_QUEUE;
3668 * It clears the interrupt causes and enables the interrupt.
3669 * It will be called once only during nic initialized.
3672 * Pointer to struct rte_eth_dev.
3675 * - On success, zero.
3676 * - On failure, a negative value.
3679 ixgbe_dev_macsec_interrupt_setup(struct rte_eth_dev *dev)
3681 struct ixgbe_interrupt *intr =
3682 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
3684 intr->mask |= IXGBE_EICR_LINKSEC;
3690 * It reads ICR and sets flag (IXGBE_EICR_LSC) for the link_update.
3693 * Pointer to struct rte_eth_dev.
3696 * - On success, zero.
3697 * - On failure, a negative value.
3700 ixgbe_dev_interrupt_get_status(struct rte_eth_dev *dev)
3703 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3704 struct ixgbe_interrupt *intr =
3705 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
3707 /* clear all cause mask */
3708 ixgbe_disable_intr(hw);
3710 /* read-on-clear nic registers here */
3711 eicr = IXGBE_READ_REG(hw, IXGBE_EICR);
3712 PMD_DRV_LOG(DEBUG, "eicr %x", eicr);
3716 /* set flag for async link update */
3717 if (eicr & IXGBE_EICR_LSC)
3718 intr->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
3720 if (eicr & IXGBE_EICR_MAILBOX)
3721 intr->flags |= IXGBE_FLAG_MAILBOX;
3723 if (eicr & IXGBE_EICR_LINKSEC)
3724 intr->flags |= IXGBE_FLAG_MACSEC;
3726 if (hw->mac.type == ixgbe_mac_X550EM_x &&
3727 hw->phy.type == ixgbe_phy_x550em_ext_t &&
3728 (eicr & IXGBE_EICR_GPI_SDP0_X550EM_x))
3729 intr->flags |= IXGBE_FLAG_PHY_INTERRUPT;
3735 * It gets and then prints the link status.
3738 * Pointer to struct rte_eth_dev.
3741 * - On success, zero.
3742 * - On failure, a negative value.
3745 ixgbe_dev_link_status_print(struct rte_eth_dev *dev)
3747 struct rte_pci_device *pci_dev = IXGBE_DEV_TO_PCI(dev);
3748 struct rte_eth_link link;
3750 memset(&link, 0, sizeof(link));
3751 rte_ixgbe_dev_atomic_read_link_status(dev, &link);
3752 if (link.link_status) {
3753 PMD_INIT_LOG(INFO, "Port %d: Link Up - speed %u Mbps - %s",
3754 (int)(dev->data->port_id),
3755 (unsigned)link.link_speed,
3756 link.link_duplex == ETH_LINK_FULL_DUPLEX ?
3757 "full-duplex" : "half-duplex");
3759 PMD_INIT_LOG(INFO, " Port %d: Link Down",
3760 (int)(dev->data->port_id));
3762 PMD_INIT_LOG(DEBUG, "PCI Address: " PCI_PRI_FMT,
3763 pci_dev->addr.domain,
3765 pci_dev->addr.devid,
3766 pci_dev->addr.function);
3770 * It executes link_update after knowing an interrupt occurred.
3773 * Pointer to struct rte_eth_dev.
3776 * - On success, zero.
3777 * - On failure, a negative value.
3780 ixgbe_dev_interrupt_action(struct rte_eth_dev *dev,
3781 struct rte_intr_handle *intr_handle)
3783 struct ixgbe_interrupt *intr =
3784 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
3786 struct rte_eth_link link;
3787 int intr_enable_delay = false;
3788 struct ixgbe_hw *hw =
3789 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3791 PMD_DRV_LOG(DEBUG, "intr action type %d", intr->flags);
3793 if (intr->flags & IXGBE_FLAG_MAILBOX) {
3794 ixgbe_pf_mbx_process(dev);
3795 intr->flags &= ~IXGBE_FLAG_MAILBOX;
3798 if (intr->flags & IXGBE_FLAG_PHY_INTERRUPT) {
3799 ixgbe_handle_lasi(hw);
3800 intr->flags &= ~IXGBE_FLAG_PHY_INTERRUPT;
3803 if (intr->flags & IXGBE_FLAG_NEED_LINK_UPDATE) {
3804 /* get the link status before link update, for predicting later */
3805 memset(&link, 0, sizeof(link));
3806 rte_ixgbe_dev_atomic_read_link_status(dev, &link);
3808 ixgbe_dev_link_update(dev, 0);
3811 if (!link.link_status)
3812 /* handle it 1 sec later, wait it being stable */
3813 timeout = IXGBE_LINK_UP_CHECK_TIMEOUT;
3814 /* likely to down */
3816 /* handle it 4 sec later, wait it being stable */
3817 timeout = IXGBE_LINK_DOWN_CHECK_TIMEOUT;
3819 ixgbe_dev_link_status_print(dev);
3821 intr_enable_delay = true;
3824 if (intr_enable_delay) {
3825 if (rte_eal_alarm_set(timeout * 1000,
3826 ixgbe_dev_interrupt_delayed_handler, (void *)dev) < 0)
3827 PMD_DRV_LOG(ERR, "Error setting alarm");
3829 PMD_DRV_LOG(DEBUG, "enable intr immediately");
3830 ixgbe_enable_intr(dev);
3831 rte_intr_enable(intr_handle);
3839 * Interrupt handler which shall be registered for alarm callback for delayed
3840 * handling specific interrupt to wait for the stable nic state. As the
3841 * NIC interrupt state is not stable for ixgbe after link is just down,
3842 * it needs to wait 4 seconds to get the stable status.
3845 * Pointer to interrupt handle.
3847 * The address of parameter (struct rte_eth_dev *) regsitered before.
3853 ixgbe_dev_interrupt_delayed_handler(void *param)
3855 struct rte_eth_dev *dev = (struct rte_eth_dev *)param;
3856 struct rte_pci_device *pci_dev = IXGBE_DEV_TO_PCI(dev);
3857 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
3858 struct ixgbe_interrupt *intr =
3859 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
3860 struct ixgbe_hw *hw =
3861 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3864 eicr = IXGBE_READ_REG(hw, IXGBE_EICR);
3865 if (eicr & IXGBE_EICR_MAILBOX)
3866 ixgbe_pf_mbx_process(dev);
3868 if (intr->flags & IXGBE_FLAG_PHY_INTERRUPT) {
3869 ixgbe_handle_lasi(hw);
3870 intr->flags &= ~IXGBE_FLAG_PHY_INTERRUPT;
3873 if (intr->flags & IXGBE_FLAG_NEED_LINK_UPDATE) {
3874 ixgbe_dev_link_update(dev, 0);
3875 intr->flags &= ~IXGBE_FLAG_NEED_LINK_UPDATE;
3876 ixgbe_dev_link_status_print(dev);
3877 _rte_eth_dev_callback_process(dev, RTE_ETH_EVENT_INTR_LSC, NULL);
3880 if (intr->flags & IXGBE_FLAG_MACSEC) {
3881 _rte_eth_dev_callback_process(dev, RTE_ETH_EVENT_MACSEC,
3883 intr->flags &= ~IXGBE_FLAG_MACSEC;
3886 PMD_DRV_LOG(DEBUG, "enable intr in delayed handler S[%08x]", eicr);
3887 ixgbe_enable_intr(dev);
3888 rte_intr_enable(intr_handle);
3892 * Interrupt handler triggered by NIC for handling
3893 * specific interrupt.
3896 * Pointer to interrupt handle.
3898 * The address of parameter (struct rte_eth_dev *) regsitered before.
3904 ixgbe_dev_interrupt_handler(struct rte_intr_handle *handle,
3907 struct rte_eth_dev *dev = (struct rte_eth_dev *)param;
3909 ixgbe_dev_interrupt_get_status(dev);
3910 ixgbe_dev_interrupt_action(dev, handle);
3914 ixgbe_dev_led_on(struct rte_eth_dev *dev)
3916 struct ixgbe_hw *hw;
3918 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3919 return ixgbe_led_on(hw, 0) == IXGBE_SUCCESS ? 0 : -ENOTSUP;
3923 ixgbe_dev_led_off(struct rte_eth_dev *dev)
3925 struct ixgbe_hw *hw;
3927 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3928 return ixgbe_led_off(hw, 0) == IXGBE_SUCCESS ? 0 : -ENOTSUP;
3932 ixgbe_flow_ctrl_get(struct rte_eth_dev *dev, struct rte_eth_fc_conf *fc_conf)
3934 struct ixgbe_hw *hw;
3940 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3942 fc_conf->pause_time = hw->fc.pause_time;
3943 fc_conf->high_water = hw->fc.high_water[0];
3944 fc_conf->low_water = hw->fc.low_water[0];
3945 fc_conf->send_xon = hw->fc.send_xon;
3946 fc_conf->autoneg = !hw->fc.disable_fc_autoneg;
3949 * Return rx_pause status according to actual setting of
3952 mflcn_reg = IXGBE_READ_REG(hw, IXGBE_MFLCN);
3953 if (mflcn_reg & (IXGBE_MFLCN_RPFCE | IXGBE_MFLCN_RFCE))
3959 * Return tx_pause status according to actual setting of
3962 fccfg_reg = IXGBE_READ_REG(hw, IXGBE_FCCFG);
3963 if (fccfg_reg & (IXGBE_FCCFG_TFCE_802_3X | IXGBE_FCCFG_TFCE_PRIORITY))
3968 if (rx_pause && tx_pause)
3969 fc_conf->mode = RTE_FC_FULL;
3971 fc_conf->mode = RTE_FC_RX_PAUSE;
3973 fc_conf->mode = RTE_FC_TX_PAUSE;
3975 fc_conf->mode = RTE_FC_NONE;
3981 ixgbe_flow_ctrl_set(struct rte_eth_dev *dev, struct rte_eth_fc_conf *fc_conf)
3983 struct ixgbe_hw *hw;
3985 uint32_t rx_buf_size;
3986 uint32_t max_high_water;
3988 enum ixgbe_fc_mode rte_fcmode_2_ixgbe_fcmode[] = {
3995 PMD_INIT_FUNC_TRACE();
3997 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3998 rx_buf_size = IXGBE_READ_REG(hw, IXGBE_RXPBSIZE(0));
3999 PMD_INIT_LOG(DEBUG, "Rx packet buffer size = 0x%x", rx_buf_size);
4002 * At least reserve one Ethernet frame for watermark
4003 * high_water/low_water in kilo bytes for ixgbe
4005 max_high_water = (rx_buf_size - ETHER_MAX_LEN) >> IXGBE_RXPBSIZE_SHIFT;
4006 if ((fc_conf->high_water > max_high_water) ||
4007 (fc_conf->high_water < fc_conf->low_water)) {
4008 PMD_INIT_LOG(ERR, "Invalid high/low water setup value in KB");
4009 PMD_INIT_LOG(ERR, "High_water must <= 0x%x", max_high_water);
4013 hw->fc.requested_mode = rte_fcmode_2_ixgbe_fcmode[fc_conf->mode];
4014 hw->fc.pause_time = fc_conf->pause_time;
4015 hw->fc.high_water[0] = fc_conf->high_water;
4016 hw->fc.low_water[0] = fc_conf->low_water;
4017 hw->fc.send_xon = fc_conf->send_xon;
4018 hw->fc.disable_fc_autoneg = !fc_conf->autoneg;
4020 err = ixgbe_fc_enable(hw);
4022 /* Not negotiated is not an error case */
4023 if ((err == IXGBE_SUCCESS) || (err == IXGBE_ERR_FC_NOT_NEGOTIATED)) {
4025 /* check if we want to forward MAC frames - driver doesn't have native
4026 * capability to do that, so we'll write the registers ourselves */
4028 mflcn = IXGBE_READ_REG(hw, IXGBE_MFLCN);
4030 /* set or clear MFLCN.PMCF bit depending on configuration */
4031 if (fc_conf->mac_ctrl_frame_fwd != 0)
4032 mflcn |= IXGBE_MFLCN_PMCF;
4034 mflcn &= ~IXGBE_MFLCN_PMCF;
4036 IXGBE_WRITE_REG(hw, IXGBE_MFLCN, mflcn);
4037 IXGBE_WRITE_FLUSH(hw);
4042 PMD_INIT_LOG(ERR, "ixgbe_fc_enable = 0x%x", err);
4047 * ixgbe_pfc_enable_generic - Enable flow control
4048 * @hw: pointer to hardware structure
4049 * @tc_num: traffic class number
4050 * Enable flow control according to the current settings.
4053 ixgbe_dcb_pfc_enable_generic(struct ixgbe_hw *hw, uint8_t tc_num)
4056 uint32_t mflcn_reg, fccfg_reg;
4058 uint32_t fcrtl, fcrth;
4062 /* Validate the water mark configuration */
4063 if (!hw->fc.pause_time) {
4064 ret_val = IXGBE_ERR_INVALID_LINK_SETTINGS;
4068 /* Low water mark of zero causes XOFF floods */
4069 if (hw->fc.current_mode & ixgbe_fc_tx_pause) {
4070 /* High/Low water can not be 0 */
4071 if ((!hw->fc.high_water[tc_num]) || (!hw->fc.low_water[tc_num])) {
4072 PMD_INIT_LOG(ERR, "Invalid water mark configuration");
4073 ret_val = IXGBE_ERR_INVALID_LINK_SETTINGS;
4077 if (hw->fc.low_water[tc_num] >= hw->fc.high_water[tc_num]) {
4078 PMD_INIT_LOG(ERR, "Invalid water mark configuration");
4079 ret_val = IXGBE_ERR_INVALID_LINK_SETTINGS;
4083 /* Negotiate the fc mode to use */
4084 ixgbe_fc_autoneg(hw);
4086 /* Disable any previous flow control settings */
4087 mflcn_reg = IXGBE_READ_REG(hw, IXGBE_MFLCN);
4088 mflcn_reg &= ~(IXGBE_MFLCN_RPFCE_SHIFT | IXGBE_MFLCN_RFCE|IXGBE_MFLCN_RPFCE);
4090 fccfg_reg = IXGBE_READ_REG(hw, IXGBE_FCCFG);
4091 fccfg_reg &= ~(IXGBE_FCCFG_TFCE_802_3X | IXGBE_FCCFG_TFCE_PRIORITY);
4093 switch (hw->fc.current_mode) {
4096 * If the count of enabled RX Priority Flow control >1,
4097 * and the TX pause can not be disabled
4100 for (i = 0; i < IXGBE_DCB_MAX_TRAFFIC_CLASS; i++) {
4101 reg = IXGBE_READ_REG(hw, IXGBE_FCRTH_82599(i));
4102 if (reg & IXGBE_FCRTH_FCEN)
4106 fccfg_reg |= IXGBE_FCCFG_TFCE_PRIORITY;
4108 case ixgbe_fc_rx_pause:
4110 * Rx Flow control is enabled and Tx Flow control is
4111 * disabled by software override. Since there really
4112 * isn't a way to advertise that we are capable of RX
4113 * Pause ONLY, we will advertise that we support both
4114 * symmetric and asymmetric Rx PAUSE. Later, we will
4115 * disable the adapter's ability to send PAUSE frames.
4117 mflcn_reg |= IXGBE_MFLCN_RPFCE;
4119 * If the count of enabled RX Priority Flow control >1,
4120 * and the TX pause can not be disabled
4123 for (i = 0; i < IXGBE_DCB_MAX_TRAFFIC_CLASS; i++) {
4124 reg = IXGBE_READ_REG(hw, IXGBE_FCRTH_82599(i));
4125 if (reg & IXGBE_FCRTH_FCEN)
4129 fccfg_reg |= IXGBE_FCCFG_TFCE_PRIORITY;
4131 case ixgbe_fc_tx_pause:
4133 * Tx Flow control is enabled, and Rx Flow control is
4134 * disabled by software override.
4136 fccfg_reg |= IXGBE_FCCFG_TFCE_PRIORITY;
4139 /* Flow control (both Rx and Tx) is enabled by SW override. */
4140 mflcn_reg |= IXGBE_MFLCN_RPFCE;
4141 fccfg_reg |= IXGBE_FCCFG_TFCE_PRIORITY;
4144 PMD_DRV_LOG(DEBUG, "Flow control param set incorrectly");
4145 ret_val = IXGBE_ERR_CONFIG;
4149 /* Set 802.3x based flow control settings. */
4150 mflcn_reg |= IXGBE_MFLCN_DPF;
4151 IXGBE_WRITE_REG(hw, IXGBE_MFLCN, mflcn_reg);
4152 IXGBE_WRITE_REG(hw, IXGBE_FCCFG, fccfg_reg);
4154 /* Set up and enable Rx high/low water mark thresholds, enable XON. */
4155 if ((hw->fc.current_mode & ixgbe_fc_tx_pause) &&
4156 hw->fc.high_water[tc_num]) {
4157 fcrtl = (hw->fc.low_water[tc_num] << 10) | IXGBE_FCRTL_XONE;
4158 IXGBE_WRITE_REG(hw, IXGBE_FCRTL_82599(tc_num), fcrtl);
4159 fcrth = (hw->fc.high_water[tc_num] << 10) | IXGBE_FCRTH_FCEN;
4161 IXGBE_WRITE_REG(hw, IXGBE_FCRTL_82599(tc_num), 0);
4163 * In order to prevent Tx hangs when the internal Tx
4164 * switch is enabled we must set the high water mark
4165 * to the maximum FCRTH value. This allows the Tx
4166 * switch to function even under heavy Rx workloads.
4168 fcrth = IXGBE_READ_REG(hw, IXGBE_RXPBSIZE(tc_num)) - 32;
4170 IXGBE_WRITE_REG(hw, IXGBE_FCRTH_82599(tc_num), fcrth);
4172 /* Configure pause time (2 TCs per register) */
4173 reg = hw->fc.pause_time * 0x00010001;
4174 for (i = 0; i < (IXGBE_DCB_MAX_TRAFFIC_CLASS / 2); i++)
4175 IXGBE_WRITE_REG(hw, IXGBE_FCTTV(i), reg);
4177 /* Configure flow control refresh threshold value */
4178 IXGBE_WRITE_REG(hw, IXGBE_FCRTV, hw->fc.pause_time / 2);
4185 ixgbe_dcb_pfc_enable(struct rte_eth_dev *dev, uint8_t tc_num)
4187 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4188 int32_t ret_val = IXGBE_NOT_IMPLEMENTED;
4190 if (hw->mac.type != ixgbe_mac_82598EB) {
4191 ret_val = ixgbe_dcb_pfc_enable_generic(hw, tc_num);
4197 ixgbe_priority_flow_ctrl_set(struct rte_eth_dev *dev, struct rte_eth_pfc_conf *pfc_conf)
4200 uint32_t rx_buf_size;
4201 uint32_t max_high_water;
4203 uint8_t map[IXGBE_DCB_MAX_USER_PRIORITY] = { 0 };
4204 struct ixgbe_hw *hw =
4205 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4206 struct ixgbe_dcb_config *dcb_config =
4207 IXGBE_DEV_PRIVATE_TO_DCB_CFG(dev->data->dev_private);
4209 enum ixgbe_fc_mode rte_fcmode_2_ixgbe_fcmode[] = {
4216 PMD_INIT_FUNC_TRACE();
4218 ixgbe_dcb_unpack_map_cee(dcb_config, IXGBE_DCB_RX_CONFIG, map);
4219 tc_num = map[pfc_conf->priority];
4220 rx_buf_size = IXGBE_READ_REG(hw, IXGBE_RXPBSIZE(tc_num));
4221 PMD_INIT_LOG(DEBUG, "Rx packet buffer size = 0x%x", rx_buf_size);
4223 * At least reserve one Ethernet frame for watermark
4224 * high_water/low_water in kilo bytes for ixgbe
4226 max_high_water = (rx_buf_size - ETHER_MAX_LEN) >> IXGBE_RXPBSIZE_SHIFT;
4227 if ((pfc_conf->fc.high_water > max_high_water) ||
4228 (pfc_conf->fc.high_water <= pfc_conf->fc.low_water)) {
4229 PMD_INIT_LOG(ERR, "Invalid high/low water setup value in KB");
4230 PMD_INIT_LOG(ERR, "High_water must <= 0x%x", max_high_water);
4234 hw->fc.requested_mode = rte_fcmode_2_ixgbe_fcmode[pfc_conf->fc.mode];
4235 hw->fc.pause_time = pfc_conf->fc.pause_time;
4236 hw->fc.send_xon = pfc_conf->fc.send_xon;
4237 hw->fc.low_water[tc_num] = pfc_conf->fc.low_water;
4238 hw->fc.high_water[tc_num] = pfc_conf->fc.high_water;
4240 err = ixgbe_dcb_pfc_enable(dev, tc_num);
4242 /* Not negotiated is not an error case */
4243 if ((err == IXGBE_SUCCESS) || (err == IXGBE_ERR_FC_NOT_NEGOTIATED))
4246 PMD_INIT_LOG(ERR, "ixgbe_dcb_pfc_enable = 0x%x", err);
4251 ixgbe_dev_rss_reta_update(struct rte_eth_dev *dev,
4252 struct rte_eth_rss_reta_entry64 *reta_conf,
4255 uint16_t i, sp_reta_size;
4258 uint16_t idx, shift;
4259 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4262 PMD_INIT_FUNC_TRACE();
4264 if (!ixgbe_rss_update_sp(hw->mac.type)) {
4265 PMD_DRV_LOG(ERR, "RSS reta update is not supported on this "
4270 sp_reta_size = ixgbe_reta_size_get(hw->mac.type);
4271 if (reta_size != sp_reta_size) {
4272 PMD_DRV_LOG(ERR, "The size of hash lookup table configured "
4273 "(%d) doesn't match the number hardware can supported "
4274 "(%d)\n", reta_size, sp_reta_size);
4278 for (i = 0; i < reta_size; i += IXGBE_4_BIT_WIDTH) {
4279 idx = i / RTE_RETA_GROUP_SIZE;
4280 shift = i % RTE_RETA_GROUP_SIZE;
4281 mask = (uint8_t)((reta_conf[idx].mask >> shift) &
4285 reta_reg = ixgbe_reta_reg_get(hw->mac.type, i);
4286 if (mask == IXGBE_4_BIT_MASK)
4289 r = IXGBE_READ_REG(hw, reta_reg);
4290 for (j = 0, reta = 0; j < IXGBE_4_BIT_WIDTH; j++) {
4291 if (mask & (0x1 << j))
4292 reta |= reta_conf[idx].reta[shift + j] <<
4295 reta |= r & (IXGBE_8_BIT_MASK <<
4298 IXGBE_WRITE_REG(hw, reta_reg, reta);
4305 ixgbe_dev_rss_reta_query(struct rte_eth_dev *dev,
4306 struct rte_eth_rss_reta_entry64 *reta_conf,
4309 uint16_t i, sp_reta_size;
4312 uint16_t idx, shift;
4313 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4316 PMD_INIT_FUNC_TRACE();
4317 sp_reta_size = ixgbe_reta_size_get(hw->mac.type);
4318 if (reta_size != sp_reta_size) {
4319 PMD_DRV_LOG(ERR, "The size of hash lookup table configured "
4320 "(%d) doesn't match the number hardware can supported "
4321 "(%d)\n", reta_size, sp_reta_size);
4325 for (i = 0; i < reta_size; i += IXGBE_4_BIT_WIDTH) {
4326 idx = i / RTE_RETA_GROUP_SIZE;
4327 shift = i % RTE_RETA_GROUP_SIZE;
4328 mask = (uint8_t)((reta_conf[idx].mask >> shift) &
4333 reta_reg = ixgbe_reta_reg_get(hw->mac.type, i);
4334 reta = IXGBE_READ_REG(hw, reta_reg);
4335 for (j = 0; j < IXGBE_4_BIT_WIDTH; j++) {
4336 if (mask & (0x1 << j))
4337 reta_conf[idx].reta[shift + j] =
4338 ((reta >> (CHAR_BIT * j)) &
4347 ixgbe_add_rar(struct rte_eth_dev *dev, struct ether_addr *mac_addr,
4348 uint32_t index, uint32_t pool)
4350 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4351 uint32_t enable_addr = 1;
4353 ixgbe_set_rar(hw, index, mac_addr->addr_bytes, pool, enable_addr);
4357 ixgbe_remove_rar(struct rte_eth_dev *dev, uint32_t index)
4359 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4361 ixgbe_clear_rar(hw, index);
4365 ixgbe_set_default_mac_addr(struct rte_eth_dev *dev, struct ether_addr *addr)
4367 ixgbe_remove_rar(dev, 0);
4369 ixgbe_add_rar(dev, addr, 0, 0);
4373 is_ixgbe_pmd(const char *driver_name)
4375 if (!strstr(driver_name, "ixgbe"))
4378 if (strstr(driver_name, "ixgbe_vf"))
4385 rte_pmd_ixgbe_set_vf_mac_addr(uint8_t port, uint16_t vf,
4386 struct ether_addr *mac_addr)
4388 struct ixgbe_hw *hw;
4389 struct ixgbe_vf_info *vfinfo;
4391 uint8_t *new_mac = (uint8_t *)(mac_addr);
4392 struct rte_eth_dev *dev;
4393 struct rte_eth_dev_info dev_info;
4395 RTE_ETH_VALID_PORTID_OR_ERR_RET(port, -ENODEV);
4397 dev = &rte_eth_devices[port];
4398 rte_eth_dev_info_get(port, &dev_info);
4400 if (is_ixgbe_pmd(dev_info.driver_name) != 0)
4403 if (vf >= dev_info.max_vfs)
4406 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4407 vfinfo = *(IXGBE_DEV_PRIVATE_TO_P_VFDATA(dev->data->dev_private));
4408 rar_entry = hw->mac.num_rar_entries - (vf + 1);
4410 if (is_valid_assigned_ether_addr((struct ether_addr *)new_mac)) {
4411 rte_memcpy(vfinfo[vf].vf_mac_addresses, new_mac,
4413 return hw->mac.ops.set_rar(hw, rar_entry, new_mac, vf,
4420 ixgbe_dev_mtu_set(struct rte_eth_dev *dev, uint16_t mtu)
4424 struct ixgbe_hw *hw;
4425 struct rte_eth_dev_info dev_info;
4426 uint32_t frame_size = mtu + ETHER_HDR_LEN + ETHER_CRC_LEN;
4428 ixgbe_dev_info_get(dev, &dev_info);
4430 /* check that mtu is within the allowed range */
4431 if ((mtu < ETHER_MIN_MTU) || (frame_size > dev_info.max_rx_pktlen))
4434 /* refuse mtu that requires the support of scattered packets when this
4435 * feature has not been enabled before.
4437 if (!dev->data->scattered_rx &&
4438 (frame_size + 2 * IXGBE_VLAN_TAG_SIZE >
4439 dev->data->min_rx_buf_size - RTE_PKTMBUF_HEADROOM))
4442 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4443 hlreg0 = IXGBE_READ_REG(hw, IXGBE_HLREG0);
4445 /* switch to jumbo mode if needed */
4446 if (frame_size > ETHER_MAX_LEN) {
4447 dev->data->dev_conf.rxmode.jumbo_frame = 1;
4448 hlreg0 |= IXGBE_HLREG0_JUMBOEN;
4450 dev->data->dev_conf.rxmode.jumbo_frame = 0;
4451 hlreg0 &= ~IXGBE_HLREG0_JUMBOEN;
4453 IXGBE_WRITE_REG(hw, IXGBE_HLREG0, hlreg0);
4455 /* update max frame size */
4456 dev->data->dev_conf.rxmode.max_rx_pkt_len = frame_size;
4458 maxfrs = IXGBE_READ_REG(hw, IXGBE_MAXFRS);
4459 maxfrs &= 0x0000FFFF;
4460 maxfrs |= (dev->data->dev_conf.rxmode.max_rx_pkt_len << 16);
4461 IXGBE_WRITE_REG(hw, IXGBE_MAXFRS, maxfrs);
4467 * Virtual Function operations
4470 ixgbevf_intr_disable(struct ixgbe_hw *hw)
4472 PMD_INIT_FUNC_TRACE();
4474 /* Clear interrupt mask to stop from interrupts being generated */
4475 IXGBE_WRITE_REG(hw, IXGBE_VTEIMC, IXGBE_VF_IRQ_CLEAR_MASK);
4477 IXGBE_WRITE_FLUSH(hw);
4481 ixgbevf_intr_enable(struct ixgbe_hw *hw)
4483 PMD_INIT_FUNC_TRACE();
4485 /* VF enable interrupt autoclean */
4486 IXGBE_WRITE_REG(hw, IXGBE_VTEIAM, IXGBE_VF_IRQ_ENABLE_MASK);
4487 IXGBE_WRITE_REG(hw, IXGBE_VTEIAC, IXGBE_VF_IRQ_ENABLE_MASK);
4488 IXGBE_WRITE_REG(hw, IXGBE_VTEIMS, IXGBE_VF_IRQ_ENABLE_MASK);
4490 IXGBE_WRITE_FLUSH(hw);
4494 ixgbevf_dev_configure(struct rte_eth_dev *dev)
4496 struct rte_eth_conf *conf = &dev->data->dev_conf;
4497 struct ixgbe_adapter *adapter =
4498 (struct ixgbe_adapter *)dev->data->dev_private;
4500 PMD_INIT_LOG(DEBUG, "Configured Virtual Function port id: %d",
4501 dev->data->port_id);
4504 * VF has no ability to enable/disable HW CRC
4505 * Keep the persistent behavior the same as Host PF
4507 #ifndef RTE_LIBRTE_IXGBE_PF_DISABLE_STRIP_CRC
4508 if (!conf->rxmode.hw_strip_crc) {
4509 PMD_INIT_LOG(NOTICE, "VF can't disable HW CRC Strip");
4510 conf->rxmode.hw_strip_crc = 1;
4513 if (conf->rxmode.hw_strip_crc) {
4514 PMD_INIT_LOG(NOTICE, "VF can't enable HW CRC Strip");
4515 conf->rxmode.hw_strip_crc = 0;
4520 * Initialize to TRUE. If any of Rx queues doesn't meet the bulk
4521 * allocation or vector Rx preconditions we will reset it.
4523 adapter->rx_bulk_alloc_allowed = true;
4524 adapter->rx_vec_allowed = true;
4530 ixgbevf_dev_start(struct rte_eth_dev *dev)
4532 struct ixgbe_hw *hw =
4533 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4534 uint32_t intr_vector = 0;
4535 struct rte_pci_device *pci_dev = IXGBE_DEV_TO_PCI(dev);
4536 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
4540 PMD_INIT_FUNC_TRACE();
4542 hw->mac.ops.reset_hw(hw);
4543 hw->mac.get_link_status = true;
4545 /* negotiate mailbox API version to use with the PF. */
4546 ixgbevf_negotiate_api(hw);
4548 ixgbevf_dev_tx_init(dev);
4550 /* This can fail when allocating mbufs for descriptor rings */
4551 err = ixgbevf_dev_rx_init(dev);
4553 PMD_INIT_LOG(ERR, "Unable to initialize RX hardware (%d)", err);
4554 ixgbe_dev_clear_queues(dev);
4559 ixgbevf_set_vfta_all(dev, 1);
4562 mask = ETH_VLAN_STRIP_MASK | ETH_VLAN_FILTER_MASK |
4563 ETH_VLAN_EXTEND_MASK;
4564 ixgbevf_vlan_offload_set(dev, mask);
4566 ixgbevf_dev_rxtx_start(dev);
4568 /* check and configure queue intr-vector mapping */
4569 if (dev->data->dev_conf.intr_conf.rxq != 0) {
4570 intr_vector = dev->data->nb_rx_queues;
4571 if (rte_intr_efd_enable(intr_handle, intr_vector))
4575 if (rte_intr_dp_is_en(intr_handle) && !intr_handle->intr_vec) {
4576 intr_handle->intr_vec =
4577 rte_zmalloc("intr_vec",
4578 dev->data->nb_rx_queues * sizeof(int), 0);
4579 if (intr_handle->intr_vec == NULL) {
4580 PMD_INIT_LOG(ERR, "Failed to allocate %d rx_queues"
4581 " intr_vec\n", dev->data->nb_rx_queues);
4585 ixgbevf_configure_msix(dev);
4587 rte_intr_enable(intr_handle);
4589 /* Re-enable interrupt for VF */
4590 ixgbevf_intr_enable(hw);
4596 ixgbevf_dev_stop(struct rte_eth_dev *dev)
4598 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4599 struct rte_pci_device *pci_dev = IXGBE_DEV_TO_PCI(dev);
4600 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
4602 PMD_INIT_FUNC_TRACE();
4604 ixgbevf_intr_disable(hw);
4606 hw->adapter_stopped = 1;
4607 ixgbe_stop_adapter(hw);
4610 * Clear what we set, but we still keep shadow_vfta to
4611 * restore after device starts
4613 ixgbevf_set_vfta_all(dev, 0);
4615 /* Clear stored conf */
4616 dev->data->scattered_rx = 0;
4618 ixgbe_dev_clear_queues(dev);
4620 /* Clean datapath event and queue/vec mapping */
4621 rte_intr_efd_disable(intr_handle);
4622 if (intr_handle->intr_vec != NULL) {
4623 rte_free(intr_handle->intr_vec);
4624 intr_handle->intr_vec = NULL;
4629 ixgbevf_dev_close(struct rte_eth_dev *dev)
4631 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4633 PMD_INIT_FUNC_TRACE();
4637 ixgbevf_dev_stop(dev);
4639 ixgbe_dev_free_queues(dev);
4642 * Remove the VF MAC address ro ensure
4643 * that the VF traffic goes to the PF
4644 * after stop, close and detach of the VF
4646 ixgbevf_remove_mac_addr(dev, 0);
4649 static void ixgbevf_set_vfta_all(struct rte_eth_dev *dev, bool on)
4651 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4652 struct ixgbe_vfta *shadow_vfta =
4653 IXGBE_DEV_PRIVATE_TO_VFTA(dev->data->dev_private);
4654 int i = 0, j = 0, vfta = 0, mask = 1;
4656 for (i = 0; i < IXGBE_VFTA_SIZE; i++) {
4657 vfta = shadow_vfta->vfta[i];
4660 for (j = 0; j < 32; j++) {
4662 ixgbe_set_vfta(hw, (i<<5)+j, 0,
4672 ixgbevf_vlan_filter_set(struct rte_eth_dev *dev, uint16_t vlan_id, int on)
4674 struct ixgbe_hw *hw =
4675 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4676 struct ixgbe_vfta *shadow_vfta =
4677 IXGBE_DEV_PRIVATE_TO_VFTA(dev->data->dev_private);
4678 uint32_t vid_idx = 0;
4679 uint32_t vid_bit = 0;
4682 PMD_INIT_FUNC_TRACE();
4684 /* vind is not used in VF driver, set to 0, check ixgbe_set_vfta_vf */
4685 ret = ixgbe_set_vfta(hw, vlan_id, 0, !!on, false);
4687 PMD_INIT_LOG(ERR, "Unable to set VF vlan");
4690 vid_idx = (uint32_t) ((vlan_id >> 5) & 0x7F);
4691 vid_bit = (uint32_t) (1 << (vlan_id & 0x1F));
4693 /* Save what we set and retore it after device reset */
4695 shadow_vfta->vfta[vid_idx] |= vid_bit;
4697 shadow_vfta->vfta[vid_idx] &= ~vid_bit;
4703 ixgbevf_vlan_strip_queue_set(struct rte_eth_dev *dev, uint16_t queue, int on)
4705 struct ixgbe_hw *hw =
4706 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4709 PMD_INIT_FUNC_TRACE();
4711 if (queue >= hw->mac.max_rx_queues)
4714 ctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(queue));
4716 ctrl |= IXGBE_RXDCTL_VME;
4718 ctrl &= ~IXGBE_RXDCTL_VME;
4719 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(queue), ctrl);
4721 ixgbe_vlan_hw_strip_bitmap_set(dev, queue, on);
4725 ixgbevf_vlan_offload_set(struct rte_eth_dev *dev, int mask)
4727 struct ixgbe_hw *hw =
4728 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4732 /* VF function only support hw strip feature, others are not support */
4733 if (mask & ETH_VLAN_STRIP_MASK) {
4734 on = !!(dev->data->dev_conf.rxmode.hw_vlan_strip);
4736 for (i = 0; i < hw->mac.max_rx_queues; i++)
4737 ixgbevf_vlan_strip_queue_set(dev, i, on);
4742 ixgbe_vt_check(struct ixgbe_hw *hw)
4746 /* if Virtualization Technology is enabled */
4747 reg_val = IXGBE_READ_REG(hw, IXGBE_VT_CTL);
4748 if (!(reg_val & IXGBE_VT_CTL_VT_ENABLE)) {
4749 PMD_INIT_LOG(ERR, "VT must be enabled for this setting");
4757 ixgbe_uta_vector(struct ixgbe_hw *hw, struct ether_addr *uc_addr)
4759 uint32_t vector = 0;
4761 switch (hw->mac.mc_filter_type) {
4762 case 0: /* use bits [47:36] of the address */
4763 vector = ((uc_addr->addr_bytes[4] >> 4) |
4764 (((uint16_t)uc_addr->addr_bytes[5]) << 4));
4766 case 1: /* use bits [46:35] of the address */
4767 vector = ((uc_addr->addr_bytes[4] >> 3) |
4768 (((uint16_t)uc_addr->addr_bytes[5]) << 5));
4770 case 2: /* use bits [45:34] of the address */
4771 vector = ((uc_addr->addr_bytes[4] >> 2) |
4772 (((uint16_t)uc_addr->addr_bytes[5]) << 6));
4774 case 3: /* use bits [43:32] of the address */
4775 vector = ((uc_addr->addr_bytes[4]) |
4776 (((uint16_t)uc_addr->addr_bytes[5]) << 8));
4778 default: /* Invalid mc_filter_type */
4782 /* vector can only be 12-bits or boundary will be exceeded */
4788 ixgbe_uc_hash_table_set(struct rte_eth_dev *dev, struct ether_addr *mac_addr,
4796 const uint32_t ixgbe_uta_idx_mask = 0x7F;
4797 const uint32_t ixgbe_uta_bit_shift = 5;
4798 const uint32_t ixgbe_uta_bit_mask = (0x1 << ixgbe_uta_bit_shift) - 1;
4799 const uint32_t bit1 = 0x1;
4801 struct ixgbe_hw *hw =
4802 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4803 struct ixgbe_uta_info *uta_info =
4804 IXGBE_DEV_PRIVATE_TO_UTA(dev->data->dev_private);
4806 /* The UTA table only exists on 82599 hardware and newer */
4807 if (hw->mac.type < ixgbe_mac_82599EB)
4810 vector = ixgbe_uta_vector(hw, mac_addr);
4811 uta_idx = (vector >> ixgbe_uta_bit_shift) & ixgbe_uta_idx_mask;
4812 uta_shift = vector & ixgbe_uta_bit_mask;
4814 rc = ((uta_info->uta_shadow[uta_idx] >> uta_shift & bit1) != 0);
4818 reg_val = IXGBE_READ_REG(hw, IXGBE_UTA(uta_idx));
4820 uta_info->uta_in_use++;
4821 reg_val |= (bit1 << uta_shift);
4822 uta_info->uta_shadow[uta_idx] |= (bit1 << uta_shift);
4824 uta_info->uta_in_use--;
4825 reg_val &= ~(bit1 << uta_shift);
4826 uta_info->uta_shadow[uta_idx] &= ~(bit1 << uta_shift);
4829 IXGBE_WRITE_REG(hw, IXGBE_UTA(uta_idx), reg_val);
4831 if (uta_info->uta_in_use > 0)
4832 IXGBE_WRITE_REG(hw, IXGBE_MCSTCTRL,
4833 IXGBE_MCSTCTRL_MFE | hw->mac.mc_filter_type);
4835 IXGBE_WRITE_REG(hw, IXGBE_MCSTCTRL, hw->mac.mc_filter_type);
4841 ixgbe_uc_all_hash_table_set(struct rte_eth_dev *dev, uint8_t on)
4844 struct ixgbe_hw *hw =
4845 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4846 struct ixgbe_uta_info *uta_info =
4847 IXGBE_DEV_PRIVATE_TO_UTA(dev->data->dev_private);
4849 /* The UTA table only exists on 82599 hardware and newer */
4850 if (hw->mac.type < ixgbe_mac_82599EB)
4854 for (i = 0; i < ETH_VMDQ_NUM_UC_HASH_ARRAY; i++) {
4855 uta_info->uta_shadow[i] = ~0;
4856 IXGBE_WRITE_REG(hw, IXGBE_UTA(i), ~0);
4859 for (i = 0; i < ETH_VMDQ_NUM_UC_HASH_ARRAY; i++) {
4860 uta_info->uta_shadow[i] = 0;
4861 IXGBE_WRITE_REG(hw, IXGBE_UTA(i), 0);
4869 ixgbe_convert_vm_rx_mask_to_val(uint16_t rx_mask, uint32_t orig_val)
4871 uint32_t new_val = orig_val;
4873 if (rx_mask & ETH_VMDQ_ACCEPT_UNTAG)
4874 new_val |= IXGBE_VMOLR_AUPE;
4875 if (rx_mask & ETH_VMDQ_ACCEPT_HASH_MC)
4876 new_val |= IXGBE_VMOLR_ROMPE;
4877 if (rx_mask & ETH_VMDQ_ACCEPT_HASH_UC)
4878 new_val |= IXGBE_VMOLR_ROPE;
4879 if (rx_mask & ETH_VMDQ_ACCEPT_BROADCAST)
4880 new_val |= IXGBE_VMOLR_BAM;
4881 if (rx_mask & ETH_VMDQ_ACCEPT_MULTICAST)
4882 new_val |= IXGBE_VMOLR_MPE;
4889 rte_pmd_ixgbe_set_vf_vlan_anti_spoof(uint8_t port, uint16_t vf, uint8_t on)
4891 struct ixgbe_hw *hw;
4892 struct ixgbe_mac_info *mac;
4893 struct rte_eth_dev *dev;
4894 struct rte_eth_dev_info dev_info;
4896 RTE_ETH_VALID_PORTID_OR_ERR_RET(port, -ENODEV);
4898 dev = &rte_eth_devices[port];
4899 rte_eth_dev_info_get(port, &dev_info);
4901 if (is_ixgbe_pmd(dev_info.driver_name) != 0)
4904 if (vf >= dev_info.max_vfs)
4910 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4913 mac->ops.set_vlan_anti_spoofing(hw, on, vf);
4919 rte_pmd_ixgbe_set_vf_mac_anti_spoof(uint8_t port, uint16_t vf, uint8_t on)
4921 struct ixgbe_hw *hw;
4922 struct ixgbe_mac_info *mac;
4923 struct rte_eth_dev *dev;
4924 struct rte_eth_dev_info dev_info;
4926 RTE_ETH_VALID_PORTID_OR_ERR_RET(port, -ENODEV);
4928 dev = &rte_eth_devices[port];
4929 rte_eth_dev_info_get(port, &dev_info);
4931 if (is_ixgbe_pmd(dev_info.driver_name) != 0)
4934 if (vf >= dev_info.max_vfs)
4940 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4942 mac->ops.set_mac_anti_spoofing(hw, on, vf);
4948 rte_pmd_ixgbe_set_vf_vlan_insert(uint8_t port, uint16_t vf, uint16_t vlan_id)
4950 struct ixgbe_hw *hw;
4952 struct rte_eth_dev *dev;
4953 struct rte_eth_dev_info dev_info;
4955 RTE_ETH_VALID_PORTID_OR_ERR_RET(port, -ENODEV);
4957 dev = &rte_eth_devices[port];
4958 rte_eth_dev_info_get(port, &dev_info);
4960 if (is_ixgbe_pmd(dev_info.driver_name) != 0)
4963 if (vf >= dev_info.max_vfs)
4966 if (vlan_id > ETHER_MAX_VLAN_ID)
4969 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4970 ctrl = IXGBE_READ_REG(hw, IXGBE_VMVIR(vf));
4973 ctrl |= IXGBE_VMVIR_VLANA_DEFAULT;
4978 IXGBE_WRITE_REG(hw, IXGBE_VMVIR(vf), ctrl);
4984 rte_pmd_ixgbe_set_tx_loopback(uint8_t port, uint8_t on)
4986 struct ixgbe_hw *hw;
4988 struct rte_eth_dev *dev;
4989 struct rte_eth_dev_info dev_info;
4991 RTE_ETH_VALID_PORTID_OR_ERR_RET(port, -ENODEV);
4993 dev = &rte_eth_devices[port];
4994 rte_eth_dev_info_get(port, &dev_info);
4996 if (is_ixgbe_pmd(dev_info.driver_name) != 0)
5002 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5003 ctrl = IXGBE_READ_REG(hw, IXGBE_PFDTXGSWC);
5004 /* enable or disable VMDQ loopback */
5006 ctrl |= IXGBE_PFDTXGSWC_VT_LBEN;
5008 ctrl &= ~IXGBE_PFDTXGSWC_VT_LBEN;
5010 IXGBE_WRITE_REG(hw, IXGBE_PFDTXGSWC, ctrl);
5016 rte_pmd_ixgbe_set_all_queues_drop_en(uint8_t port, uint8_t on)
5018 struct ixgbe_hw *hw;
5021 int num_queues = (int)(IXGBE_QDE_IDX_MASK >> IXGBE_QDE_IDX_SHIFT);
5022 struct rte_eth_dev *dev;
5023 struct rte_eth_dev_info dev_info;
5025 RTE_ETH_VALID_PORTID_OR_ERR_RET(port, -ENODEV);
5027 dev = &rte_eth_devices[port];
5028 rte_eth_dev_info_get(port, &dev_info);
5030 if (is_ixgbe_pmd(dev_info.driver_name) != 0)
5036 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5037 for (i = 0; i <= num_queues; i++) {
5038 reg_value = IXGBE_QDE_WRITE |
5039 (i << IXGBE_QDE_IDX_SHIFT) |
5040 (on & IXGBE_QDE_ENABLE);
5041 IXGBE_WRITE_REG(hw, IXGBE_QDE, reg_value);
5048 rte_pmd_ixgbe_set_vf_split_drop_en(uint8_t port, uint16_t vf, uint8_t on)
5050 struct ixgbe_hw *hw;
5052 struct rte_eth_dev *dev;
5053 struct rte_eth_dev_info dev_info;
5055 RTE_ETH_VALID_PORTID_OR_ERR_RET(port, -ENODEV);
5057 dev = &rte_eth_devices[port];
5058 rte_eth_dev_info_get(port, &dev_info);
5060 if (is_ixgbe_pmd(dev_info.driver_name) != 0)
5063 /* only support VF's 0 to 63 */
5064 if ((vf >= dev_info.max_vfs) || (vf > 63))
5070 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5071 reg_value = IXGBE_READ_REG(hw, IXGBE_SRRCTL(vf));
5073 reg_value |= IXGBE_SRRCTL_DROP_EN;
5075 reg_value &= ~IXGBE_SRRCTL_DROP_EN;
5077 IXGBE_WRITE_REG(hw, IXGBE_SRRCTL(vf), reg_value);
5083 rte_pmd_ixgbe_set_vf_vlan_stripq(uint8_t port, uint16_t vf, uint8_t on)
5085 struct rte_eth_dev *dev;
5086 struct rte_eth_dev_info dev_info;
5087 uint16_t queues_per_pool;
5090 RTE_ETH_VALID_PORTID_OR_ERR_RET(port, -ENODEV);
5092 dev = &rte_eth_devices[port];
5093 rte_eth_dev_info_get(port, &dev_info);
5095 if (is_ixgbe_pmd(dev_info.driver_name) != 0)
5098 if (vf >= dev_info.max_vfs)
5104 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->vlan_strip_queue_set, -ENOTSUP);
5106 /* The PF has 128 queue pairs and in SRIOV configuration
5107 * those queues will be assigned to VF's, so RXDCTL
5108 * registers will be dealing with queues which will be
5110 * Let's say we have SRIOV configured with 31 VF's then the
5111 * first 124 queues 0-123 will be allocated to VF's and only
5112 * the last 4 queues 123-127 will be assigned to the PF.
5115 queues_per_pool = dev_info.vmdq_queue_num / dev_info.max_vmdq_pools;
5117 for (q = 0; q < queues_per_pool; q++)
5118 (*dev->dev_ops->vlan_strip_queue_set)(dev,
5119 q + vf * queues_per_pool, on);
5124 rte_pmd_ixgbe_set_vf_rxmode(uint8_t port, uint16_t vf, uint16_t rx_mask, uint8_t on)
5127 struct rte_eth_dev *dev;
5128 struct rte_eth_dev_info dev_info;
5129 struct ixgbe_hw *hw;
5132 RTE_ETH_VALID_PORTID_OR_ERR_RET(port, -ENODEV);
5134 dev = &rte_eth_devices[port];
5135 rte_eth_dev_info_get(port, &dev_info);
5137 if (is_ixgbe_pmd(dev_info.driver_name) != 0)
5140 if (vf >= dev_info.max_vfs)
5146 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5147 vmolr = IXGBE_READ_REG(hw, IXGBE_VMOLR(vf));
5149 if (hw->mac.type == ixgbe_mac_82598EB) {
5150 PMD_INIT_LOG(ERR, "setting VF receive mode set should be done"
5151 " on 82599 hardware and newer");
5154 if (ixgbe_vt_check(hw) < 0)
5157 val = ixgbe_convert_vm_rx_mask_to_val(rx_mask, val);
5164 IXGBE_WRITE_REG(hw, IXGBE_VMOLR(vf), vmolr);
5170 rte_pmd_ixgbe_set_vf_rx(uint8_t port, uint16_t vf, uint8_t on)
5172 struct rte_eth_dev *dev;
5173 struct rte_eth_dev_info dev_info;
5176 const uint8_t bit1 = 0x1;
5177 struct ixgbe_hw *hw;
5179 RTE_ETH_VALID_PORTID_OR_ERR_RET(port, -ENODEV);
5181 dev = &rte_eth_devices[port];
5182 rte_eth_dev_info_get(port, &dev_info);
5184 if (is_ixgbe_pmd(dev_info.driver_name) != 0)
5187 if (vf >= dev_info.max_vfs)
5193 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5195 if (ixgbe_vt_check(hw) < 0)
5198 /* for vf >= 32, set bit in PFVFRE[1], otherwise PFVFRE[0] */
5200 addr = IXGBE_VFRE(1);
5201 val = bit1 << (vf - 32);
5203 addr = IXGBE_VFRE(0);
5207 reg = IXGBE_READ_REG(hw, addr);
5214 IXGBE_WRITE_REG(hw, addr, reg);
5220 rte_pmd_ixgbe_set_vf_tx(uint8_t port, uint16_t vf, uint8_t on)
5222 struct rte_eth_dev *dev;
5223 struct rte_eth_dev_info dev_info;
5226 const uint8_t bit1 = 0x1;
5228 struct ixgbe_hw *hw;
5230 RTE_ETH_VALID_PORTID_OR_ERR_RET(port, -ENODEV);
5232 dev = &rte_eth_devices[port];
5233 rte_eth_dev_info_get(port, &dev_info);
5235 if (is_ixgbe_pmd(dev_info.driver_name) != 0)
5238 if (vf >= dev_info.max_vfs)
5244 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5245 if (ixgbe_vt_check(hw) < 0)
5248 /* for vf >= 32, set bit in PFVFTE[1], otherwise PFVFTE[0] */
5250 addr = IXGBE_VFTE(1);
5251 val = bit1 << (vf - 32);
5253 addr = IXGBE_VFTE(0);
5257 reg = IXGBE_READ_REG(hw, addr);
5264 IXGBE_WRITE_REG(hw, addr, reg);
5270 rte_pmd_ixgbe_set_vf_vlan_filter(uint8_t port, uint16_t vlan,
5271 uint64_t vf_mask, uint8_t vlan_on)
5273 struct rte_eth_dev *dev;
5274 struct rte_eth_dev_info dev_info;
5277 struct ixgbe_hw *hw;
5279 RTE_ETH_VALID_PORTID_OR_ERR_RET(port, -ENODEV);
5281 dev = &rte_eth_devices[port];
5282 rte_eth_dev_info_get(port, &dev_info);
5284 if (is_ixgbe_pmd(dev_info.driver_name) != 0)
5287 if ((vlan > ETHER_MAX_VLAN_ID) || (vf_mask == 0))
5290 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5291 if (ixgbe_vt_check(hw) < 0)
5294 for (vf_idx = 0; vf_idx < 64; vf_idx++) {
5295 if (vf_mask & ((uint64_t)(1ULL << vf_idx))) {
5296 ret = hw->mac.ops.set_vfta(hw, vlan, vf_idx,
5306 int rte_pmd_ixgbe_set_vf_rate_limit(uint8_t port, uint16_t vf,
5307 uint16_t tx_rate, uint64_t q_msk)
5309 struct rte_eth_dev *dev;
5310 struct rte_eth_dev_info dev_info;
5311 struct ixgbe_hw *hw;
5312 struct ixgbe_vf_info *vfinfo;
5313 struct rte_eth_link link;
5314 uint8_t nb_q_per_pool;
5315 uint32_t queue_stride;
5316 uint32_t queue_idx, idx = 0, vf_idx;
5318 uint16_t total_rate = 0;
5319 struct rte_pci_device *pci_dev;
5321 RTE_ETH_VALID_PORTID_OR_ERR_RET(port, -ENODEV);
5323 dev = &rte_eth_devices[port];
5324 rte_eth_dev_info_get(port, &dev_info);
5325 rte_eth_link_get_nowait(port, &link);
5327 if (is_ixgbe_pmd(dev_info.driver_name) != 0)
5330 if (vf >= dev_info.max_vfs)
5333 if (tx_rate > link.link_speed)
5339 pci_dev = IXGBE_DEV_TO_PCI(dev);
5340 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5341 vfinfo = *(IXGBE_DEV_PRIVATE_TO_P_VFDATA(dev->data->dev_private));
5342 nb_q_per_pool = RTE_ETH_DEV_SRIOV(dev).nb_q_per_pool;
5343 queue_stride = IXGBE_MAX_RX_QUEUE_NUM / RTE_ETH_DEV_SRIOV(dev).active;
5344 queue_idx = vf * queue_stride;
5345 queue_end = queue_idx + nb_q_per_pool - 1;
5346 if (queue_end >= hw->mac.max_tx_queues)
5350 for (vf_idx = 0; vf_idx < pci_dev->max_vfs; vf_idx++) {
5353 for (idx = 0; idx < RTE_DIM(vfinfo[vf_idx].tx_rate);
5355 total_rate += vfinfo[vf_idx].tx_rate[idx];
5361 /* Store tx_rate for this vf. */
5362 for (idx = 0; idx < nb_q_per_pool; idx++) {
5363 if (((uint64_t)0x1 << idx) & q_msk) {
5364 if (vfinfo[vf].tx_rate[idx] != tx_rate)
5365 vfinfo[vf].tx_rate[idx] = tx_rate;
5366 total_rate += tx_rate;
5370 if (total_rate > dev->data->dev_link.link_speed) {
5371 /* Reset stored TX rate of the VF if it causes exceed
5374 memset(vfinfo[vf].tx_rate, 0, sizeof(vfinfo[vf].tx_rate));
5378 /* Set RTTBCNRC of each queue/pool for vf X */
5379 for (; queue_idx <= queue_end; queue_idx++) {
5381 ixgbe_set_queue_rate_limit(dev, queue_idx, tx_rate);
5388 #define IXGBE_MRCTL_VPME 0x01 /* Virtual Pool Mirroring. */
5389 #define IXGBE_MRCTL_UPME 0x02 /* Uplink Port Mirroring. */
5390 #define IXGBE_MRCTL_DPME 0x04 /* Downlink Port Mirroring. */
5391 #define IXGBE_MRCTL_VLME 0x08 /* VLAN Mirroring. */
5392 #define IXGBE_INVALID_MIRROR_TYPE(mirror_type) \
5393 ((mirror_type) & ~(uint8_t)(ETH_MIRROR_VIRTUAL_POOL_UP | \
5394 ETH_MIRROR_UPLINK_PORT | ETH_MIRROR_DOWNLINK_PORT | ETH_MIRROR_VLAN))
5397 ixgbe_mirror_rule_set(struct rte_eth_dev *dev,
5398 struct rte_eth_mirror_conf *mirror_conf,
5399 uint8_t rule_id, uint8_t on)
5401 uint32_t mr_ctl, vlvf;
5402 uint32_t mp_lsb = 0;
5403 uint32_t mv_msb = 0;
5404 uint32_t mv_lsb = 0;
5405 uint32_t mp_msb = 0;
5408 uint64_t vlan_mask = 0;
5410 const uint8_t pool_mask_offset = 32;
5411 const uint8_t vlan_mask_offset = 32;
5412 const uint8_t dst_pool_offset = 8;
5413 const uint8_t rule_mr_offset = 4;
5414 const uint8_t mirror_rule_mask = 0x0F;
5416 struct ixgbe_mirror_info *mr_info =
5417 (IXGBE_DEV_PRIVATE_TO_PFDATA(dev->data->dev_private));
5418 struct ixgbe_hw *hw =
5419 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5420 uint8_t mirror_type = 0;
5422 if (ixgbe_vt_check(hw) < 0)
5425 if (rule_id >= IXGBE_MAX_MIRROR_RULES)
5428 if (IXGBE_INVALID_MIRROR_TYPE(mirror_conf->rule_type)) {
5429 PMD_DRV_LOG(ERR, "unsupported mirror type 0x%x.",
5430 mirror_conf->rule_type);
5434 if (mirror_conf->rule_type & ETH_MIRROR_VLAN) {
5435 mirror_type |= IXGBE_MRCTL_VLME;
5436 /* Check if vlan id is valid and find conresponding VLAN ID index in VLVF */
5437 for (i = 0; i < IXGBE_VLVF_ENTRIES; i++) {
5438 if (mirror_conf->vlan.vlan_mask & (1ULL << i)) {
5439 /* search vlan id related pool vlan filter index */
5440 reg_index = ixgbe_find_vlvf_slot(hw,
5441 mirror_conf->vlan.vlan_id[i],
5445 vlvf = IXGBE_READ_REG(hw, IXGBE_VLVF(reg_index));
5446 if ((vlvf & IXGBE_VLVF_VIEN) &&
5447 ((vlvf & IXGBE_VLVF_VLANID_MASK) ==
5448 mirror_conf->vlan.vlan_id[i]))
5449 vlan_mask |= (1ULL << reg_index);
5456 mv_lsb = vlan_mask & 0xFFFFFFFF;
5457 mv_msb = vlan_mask >> vlan_mask_offset;
5459 mr_info->mr_conf[rule_id].vlan.vlan_mask =
5460 mirror_conf->vlan.vlan_mask;
5461 for (i = 0; i < ETH_VMDQ_MAX_VLAN_FILTERS; i++) {
5462 if (mirror_conf->vlan.vlan_mask & (1ULL << i))
5463 mr_info->mr_conf[rule_id].vlan.vlan_id[i] =
5464 mirror_conf->vlan.vlan_id[i];
5469 mr_info->mr_conf[rule_id].vlan.vlan_mask = 0;
5470 for (i = 0; i < ETH_VMDQ_MAX_VLAN_FILTERS; i++)
5471 mr_info->mr_conf[rule_id].vlan.vlan_id[i] = 0;
5476 * if enable pool mirror, write related pool mask register,if disable
5477 * pool mirror, clear PFMRVM register
5479 if (mirror_conf->rule_type & ETH_MIRROR_VIRTUAL_POOL_UP) {
5480 mirror_type |= IXGBE_MRCTL_VPME;
5482 mp_lsb = mirror_conf->pool_mask & 0xFFFFFFFF;
5483 mp_msb = mirror_conf->pool_mask >> pool_mask_offset;
5484 mr_info->mr_conf[rule_id].pool_mask =
5485 mirror_conf->pool_mask;
5490 mr_info->mr_conf[rule_id].pool_mask = 0;
5493 if (mirror_conf->rule_type & ETH_MIRROR_UPLINK_PORT)
5494 mirror_type |= IXGBE_MRCTL_UPME;
5495 if (mirror_conf->rule_type & ETH_MIRROR_DOWNLINK_PORT)
5496 mirror_type |= IXGBE_MRCTL_DPME;
5498 /* read mirror control register and recalculate it */
5499 mr_ctl = IXGBE_READ_REG(hw, IXGBE_MRCTL(rule_id));
5502 mr_ctl |= mirror_type;
5503 mr_ctl &= mirror_rule_mask;
5504 mr_ctl |= mirror_conf->dst_pool << dst_pool_offset;
5506 mr_ctl &= ~(mirror_conf->rule_type & mirror_rule_mask);
5508 mr_info->mr_conf[rule_id].rule_type = mirror_conf->rule_type;
5509 mr_info->mr_conf[rule_id].dst_pool = mirror_conf->dst_pool;
5511 /* write mirrror control register */
5512 IXGBE_WRITE_REG(hw, IXGBE_MRCTL(rule_id), mr_ctl);
5514 /* write pool mirrror control register */
5515 if (mirror_conf->rule_type == ETH_MIRROR_VIRTUAL_POOL_UP) {
5516 IXGBE_WRITE_REG(hw, IXGBE_VMRVM(rule_id), mp_lsb);
5517 IXGBE_WRITE_REG(hw, IXGBE_VMRVM(rule_id + rule_mr_offset),
5520 /* write VLAN mirrror control register */
5521 if (mirror_conf->rule_type == ETH_MIRROR_VLAN) {
5522 IXGBE_WRITE_REG(hw, IXGBE_VMRVLAN(rule_id), mv_lsb);
5523 IXGBE_WRITE_REG(hw, IXGBE_VMRVLAN(rule_id + rule_mr_offset),
5531 ixgbe_mirror_rule_reset(struct rte_eth_dev *dev, uint8_t rule_id)
5534 uint32_t lsb_val = 0;
5535 uint32_t msb_val = 0;
5536 const uint8_t rule_mr_offset = 4;
5538 struct ixgbe_hw *hw =
5539 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5540 struct ixgbe_mirror_info *mr_info =
5541 (IXGBE_DEV_PRIVATE_TO_PFDATA(dev->data->dev_private));
5543 if (ixgbe_vt_check(hw) < 0)
5546 memset(&mr_info->mr_conf[rule_id], 0,
5547 sizeof(struct rte_eth_mirror_conf));
5549 /* clear PFVMCTL register */
5550 IXGBE_WRITE_REG(hw, IXGBE_MRCTL(rule_id), mr_ctl);
5552 /* clear pool mask register */
5553 IXGBE_WRITE_REG(hw, IXGBE_VMRVM(rule_id), lsb_val);
5554 IXGBE_WRITE_REG(hw, IXGBE_VMRVM(rule_id + rule_mr_offset), msb_val);
5556 /* clear vlan mask register */
5557 IXGBE_WRITE_REG(hw, IXGBE_VMRVLAN(rule_id), lsb_val);
5558 IXGBE_WRITE_REG(hw, IXGBE_VMRVLAN(rule_id + rule_mr_offset), msb_val);
5564 ixgbevf_dev_rx_queue_intr_enable(struct rte_eth_dev *dev, uint16_t queue_id)
5566 struct rte_pci_device *pci_dev = IXGBE_DEV_TO_PCI(dev);
5567 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
5569 struct ixgbe_hw *hw =
5570 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5572 mask = IXGBE_READ_REG(hw, IXGBE_VTEIMS);
5573 mask |= (1 << IXGBE_MISC_VEC_ID);
5574 RTE_SET_USED(queue_id);
5575 IXGBE_WRITE_REG(hw, IXGBE_VTEIMS, mask);
5577 rte_intr_enable(intr_handle);
5583 ixgbevf_dev_rx_queue_intr_disable(struct rte_eth_dev *dev, uint16_t queue_id)
5586 struct ixgbe_hw *hw =
5587 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5589 mask = IXGBE_READ_REG(hw, IXGBE_VTEIMS);
5590 mask &= ~(1 << IXGBE_MISC_VEC_ID);
5591 RTE_SET_USED(queue_id);
5592 IXGBE_WRITE_REG(hw, IXGBE_VTEIMS, mask);
5598 ixgbe_dev_rx_queue_intr_enable(struct rte_eth_dev *dev, uint16_t queue_id)
5600 struct rte_pci_device *pci_dev = IXGBE_DEV_TO_PCI(dev);
5601 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
5603 struct ixgbe_hw *hw =
5604 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5605 struct ixgbe_interrupt *intr =
5606 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
5608 if (queue_id < 16) {
5609 ixgbe_disable_intr(hw);
5610 intr->mask |= (1 << queue_id);
5611 ixgbe_enable_intr(dev);
5612 } else if (queue_id < 32) {
5613 mask = IXGBE_READ_REG(hw, IXGBE_EIMS_EX(0));
5614 mask &= (1 << queue_id);
5615 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(0), mask);
5616 } else if (queue_id < 64) {
5617 mask = IXGBE_READ_REG(hw, IXGBE_EIMS_EX(1));
5618 mask &= (1 << (queue_id - 32));
5619 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(1), mask);
5621 rte_intr_enable(intr_handle);
5627 ixgbe_dev_rx_queue_intr_disable(struct rte_eth_dev *dev, uint16_t queue_id)
5630 struct ixgbe_hw *hw =
5631 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5632 struct ixgbe_interrupt *intr =
5633 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
5635 if (queue_id < 16) {
5636 ixgbe_disable_intr(hw);
5637 intr->mask &= ~(1 << queue_id);
5638 ixgbe_enable_intr(dev);
5639 } else if (queue_id < 32) {
5640 mask = IXGBE_READ_REG(hw, IXGBE_EIMS_EX(0));
5641 mask &= ~(1 << queue_id);
5642 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(0), mask);
5643 } else if (queue_id < 64) {
5644 mask = IXGBE_READ_REG(hw, IXGBE_EIMS_EX(1));
5645 mask &= ~(1 << (queue_id - 32));
5646 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(1), mask);
5653 ixgbevf_set_ivar_map(struct ixgbe_hw *hw, int8_t direction,
5654 uint8_t queue, uint8_t msix_vector)
5658 if (direction == -1) {
5660 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
5661 tmp = IXGBE_READ_REG(hw, IXGBE_VTIVAR_MISC);
5664 IXGBE_WRITE_REG(hw, IXGBE_VTIVAR_MISC, tmp);
5666 /* rx or tx cause */
5667 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
5668 idx = ((16 * (queue & 1)) + (8 * direction));
5669 tmp = IXGBE_READ_REG(hw, IXGBE_VTIVAR(queue >> 1));
5670 tmp &= ~(0xFF << idx);
5671 tmp |= (msix_vector << idx);
5672 IXGBE_WRITE_REG(hw, IXGBE_VTIVAR(queue >> 1), tmp);
5677 * set the IVAR registers, mapping interrupt causes to vectors
5679 * pointer to ixgbe_hw struct
5681 * 0 for Rx, 1 for Tx, -1 for other causes
5683 * queue to map the corresponding interrupt to
5685 * the vector to map to the corresponding queue
5688 ixgbe_set_ivar_map(struct ixgbe_hw *hw, int8_t direction,
5689 uint8_t queue, uint8_t msix_vector)
5693 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
5694 if (hw->mac.type == ixgbe_mac_82598EB) {
5695 if (direction == -1)
5697 idx = (((direction * 64) + queue) >> 2) & 0x1F;
5698 tmp = IXGBE_READ_REG(hw, IXGBE_IVAR(idx));
5699 tmp &= ~(0xFF << (8 * (queue & 0x3)));
5700 tmp |= (msix_vector << (8 * (queue & 0x3)));
5701 IXGBE_WRITE_REG(hw, IXGBE_IVAR(idx), tmp);
5702 } else if ((hw->mac.type == ixgbe_mac_82599EB) ||
5703 (hw->mac.type == ixgbe_mac_X540)) {
5704 if (direction == -1) {
5706 idx = ((queue & 1) * 8);
5707 tmp = IXGBE_READ_REG(hw, IXGBE_IVAR_MISC);
5708 tmp &= ~(0xFF << idx);
5709 tmp |= (msix_vector << idx);
5710 IXGBE_WRITE_REG(hw, IXGBE_IVAR_MISC, tmp);
5712 /* rx or tx causes */
5713 idx = ((16 * (queue & 1)) + (8 * direction));
5714 tmp = IXGBE_READ_REG(hw, IXGBE_IVAR(queue >> 1));
5715 tmp &= ~(0xFF << idx);
5716 tmp |= (msix_vector << idx);
5717 IXGBE_WRITE_REG(hw, IXGBE_IVAR(queue >> 1), tmp);
5723 ixgbevf_configure_msix(struct rte_eth_dev *dev)
5725 struct rte_pci_device *pci_dev = IXGBE_DEV_TO_PCI(dev);
5726 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
5727 struct ixgbe_hw *hw =
5728 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5730 uint32_t vector_idx = IXGBE_MISC_VEC_ID;
5732 /* Configure VF other cause ivar */
5733 ixgbevf_set_ivar_map(hw, -1, 1, vector_idx);
5735 /* won't configure msix register if no mapping is done
5736 * between intr vector and event fd.
5738 if (!rte_intr_dp_is_en(intr_handle))
5741 /* Configure all RX queues of VF */
5742 for (q_idx = 0; q_idx < dev->data->nb_rx_queues; q_idx++) {
5743 /* Force all queue use vector 0,
5744 * as IXGBE_VF_MAXMSIVECOTR = 1
5746 ixgbevf_set_ivar_map(hw, 0, q_idx, vector_idx);
5747 intr_handle->intr_vec[q_idx] = vector_idx;
5752 * Sets up the hardware to properly generate MSI-X interrupts
5754 * board private structure
5757 ixgbe_configure_msix(struct rte_eth_dev *dev)
5759 struct rte_pci_device *pci_dev = IXGBE_DEV_TO_PCI(dev);
5760 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
5761 struct ixgbe_hw *hw =
5762 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5763 uint32_t queue_id, base = IXGBE_MISC_VEC_ID;
5764 uint32_t vec = IXGBE_MISC_VEC_ID;
5768 /* won't configure msix register if no mapping is done
5769 * between intr vector and event fd
5771 if (!rte_intr_dp_is_en(intr_handle))
5774 if (rte_intr_allow_others(intr_handle))
5775 vec = base = IXGBE_RX_VEC_START;
5777 /* setup GPIE for MSI-x mode */
5778 gpie = IXGBE_READ_REG(hw, IXGBE_GPIE);
5779 gpie |= IXGBE_GPIE_MSIX_MODE | IXGBE_GPIE_PBA_SUPPORT |
5780 IXGBE_GPIE_OCD | IXGBE_GPIE_EIAME;
5781 /* auto clearing and auto setting corresponding bits in EIMS
5782 * when MSI-X interrupt is triggered
5784 if (hw->mac.type == ixgbe_mac_82598EB) {
5785 IXGBE_WRITE_REG(hw, IXGBE_EIAM, IXGBE_EICS_RTX_QUEUE);
5787 IXGBE_WRITE_REG(hw, IXGBE_EIAM_EX(0), 0xFFFFFFFF);
5788 IXGBE_WRITE_REG(hw, IXGBE_EIAM_EX(1), 0xFFFFFFFF);
5790 IXGBE_WRITE_REG(hw, IXGBE_GPIE, gpie);
5792 /* Populate the IVAR table and set the ITR values to the
5793 * corresponding register.
5795 for (queue_id = 0; queue_id < dev->data->nb_rx_queues;
5797 /* by default, 1:1 mapping */
5798 ixgbe_set_ivar_map(hw, 0, queue_id, vec);
5799 intr_handle->intr_vec[queue_id] = vec;
5800 if (vec < base + intr_handle->nb_efd - 1)
5804 switch (hw->mac.type) {
5805 case ixgbe_mac_82598EB:
5806 ixgbe_set_ivar_map(hw, -1, IXGBE_IVAR_OTHER_CAUSES_INDEX,
5809 case ixgbe_mac_82599EB:
5810 case ixgbe_mac_X540:
5811 ixgbe_set_ivar_map(hw, -1, 1, IXGBE_MISC_VEC_ID);
5816 IXGBE_WRITE_REG(hw, IXGBE_EITR(IXGBE_MISC_VEC_ID),
5817 IXGBE_MIN_INTER_INTERRUPT_INTERVAL_DEFAULT & 0xFFF);
5819 /* set up to autoclear timer, and the vectors */
5820 mask = IXGBE_EIMS_ENABLE_MASK;
5821 mask &= ~(IXGBE_EIMS_OTHER |
5822 IXGBE_EIMS_MAILBOX |
5825 IXGBE_WRITE_REG(hw, IXGBE_EIAC, mask);
5828 static int ixgbe_set_queue_rate_limit(struct rte_eth_dev *dev,
5829 uint16_t queue_idx, uint16_t tx_rate)
5831 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5832 uint32_t rf_dec, rf_int;
5834 uint16_t link_speed = dev->data->dev_link.link_speed;
5836 if (queue_idx >= hw->mac.max_tx_queues)
5840 /* Calculate the rate factor values to set */
5841 rf_int = (uint32_t)link_speed / (uint32_t)tx_rate;
5842 rf_dec = (uint32_t)link_speed % (uint32_t)tx_rate;
5843 rf_dec = (rf_dec << IXGBE_RTTBCNRC_RF_INT_SHIFT) / tx_rate;
5845 bcnrc_val = IXGBE_RTTBCNRC_RS_ENA;
5846 bcnrc_val |= ((rf_int << IXGBE_RTTBCNRC_RF_INT_SHIFT) &
5847 IXGBE_RTTBCNRC_RF_INT_MASK_M);
5848 bcnrc_val |= (rf_dec & IXGBE_RTTBCNRC_RF_DEC_MASK);
5854 * Set global transmit compensation time to the MMW_SIZE in RTTBCNRM
5855 * register. MMW_SIZE=0x014 if 9728-byte jumbo is supported, otherwise
5858 if ((dev->data->dev_conf.rxmode.jumbo_frame == 1) &&
5859 (dev->data->dev_conf.rxmode.max_rx_pkt_len >=
5860 IXGBE_MAX_JUMBO_FRAME_SIZE))
5861 IXGBE_WRITE_REG(hw, IXGBE_RTTBCNRM,
5862 IXGBE_MMW_SIZE_JUMBO_FRAME);
5864 IXGBE_WRITE_REG(hw, IXGBE_RTTBCNRM,
5865 IXGBE_MMW_SIZE_DEFAULT);
5867 /* Set RTTBCNRC of queue X */
5868 IXGBE_WRITE_REG(hw, IXGBE_RTTDQSEL, queue_idx);
5869 IXGBE_WRITE_REG(hw, IXGBE_RTTBCNRC, bcnrc_val);
5870 IXGBE_WRITE_FLUSH(hw);
5876 ixgbevf_add_mac_addr(struct rte_eth_dev *dev, struct ether_addr *mac_addr,
5877 __attribute__((unused)) uint32_t index,
5878 __attribute__((unused)) uint32_t pool)
5880 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5884 * On a 82599 VF, adding again the same MAC addr is not an idempotent
5885 * operation. Trap this case to avoid exhausting the [very limited]
5886 * set of PF resources used to store VF MAC addresses.
5888 if (memcmp(hw->mac.perm_addr, mac_addr, sizeof(struct ether_addr)) == 0)
5890 diag = ixgbevf_set_uc_addr_vf(hw, 2, mac_addr->addr_bytes);
5893 PMD_DRV_LOG(ERR, "Unable to add MAC address - diag=%d", diag);
5897 ixgbevf_remove_mac_addr(struct rte_eth_dev *dev, uint32_t index)
5899 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5900 struct ether_addr *perm_addr = (struct ether_addr *) hw->mac.perm_addr;
5901 struct ether_addr *mac_addr;
5906 * The IXGBE_VF_SET_MACVLAN command of the ixgbe-pf driver does
5907 * not support the deletion of a given MAC address.
5908 * Instead, it imposes to delete all MAC addresses, then to add again
5909 * all MAC addresses with the exception of the one to be deleted.
5911 (void) ixgbevf_set_uc_addr_vf(hw, 0, NULL);
5914 * Add again all MAC addresses, with the exception of the deleted one
5915 * and of the permanent MAC address.
5917 for (i = 0, mac_addr = dev->data->mac_addrs;
5918 i < hw->mac.num_rar_entries; i++, mac_addr++) {
5919 /* Skip the deleted MAC address */
5922 /* Skip NULL MAC addresses */
5923 if (is_zero_ether_addr(mac_addr))
5925 /* Skip the permanent MAC address */
5926 if (memcmp(perm_addr, mac_addr, sizeof(struct ether_addr)) == 0)
5928 diag = ixgbevf_set_uc_addr_vf(hw, 2, mac_addr->addr_bytes);
5931 "Adding again MAC address "
5932 "%02x:%02x:%02x:%02x:%02x:%02x failed "
5934 mac_addr->addr_bytes[0],
5935 mac_addr->addr_bytes[1],
5936 mac_addr->addr_bytes[2],
5937 mac_addr->addr_bytes[3],
5938 mac_addr->addr_bytes[4],
5939 mac_addr->addr_bytes[5],
5945 ixgbevf_set_default_mac_addr(struct rte_eth_dev *dev, struct ether_addr *addr)
5947 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5949 hw->mac.ops.set_rar(hw, 0, (void *)addr, 0, 0);
5952 #define MAC_TYPE_FILTER_SUP(type) do {\
5953 if ((type) != ixgbe_mac_82599EB && (type) != ixgbe_mac_X540 &&\
5954 (type) != ixgbe_mac_X550 && (type) != ixgbe_mac_X550EM_x &&\
5955 (type) != ixgbe_mac_X550EM_a)\
5960 ixgbe_syn_filter_set(struct rte_eth_dev *dev,
5961 struct rte_eth_syn_filter *filter,
5964 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5965 struct ixgbe_filter_info *filter_info =
5966 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
5970 if (filter->queue >= IXGBE_MAX_RX_QUEUE_NUM)
5973 syn_info = filter_info->syn_info;
5976 if (syn_info & IXGBE_SYN_FILTER_ENABLE)
5978 synqf = (uint32_t)(((filter->queue << IXGBE_SYN_FILTER_QUEUE_SHIFT) &
5979 IXGBE_SYN_FILTER_QUEUE) | IXGBE_SYN_FILTER_ENABLE);
5981 if (filter->hig_pri)
5982 synqf |= IXGBE_SYN_FILTER_SYNQFP;
5984 synqf &= ~IXGBE_SYN_FILTER_SYNQFP;
5986 synqf = IXGBE_READ_REG(hw, IXGBE_SYNQF);
5987 if (!(syn_info & IXGBE_SYN_FILTER_ENABLE))
5989 synqf &= ~(IXGBE_SYN_FILTER_QUEUE | IXGBE_SYN_FILTER_ENABLE);
5992 filter_info->syn_info = synqf;
5993 IXGBE_WRITE_REG(hw, IXGBE_SYNQF, synqf);
5994 IXGBE_WRITE_FLUSH(hw);
5999 ixgbe_syn_filter_get(struct rte_eth_dev *dev,
6000 struct rte_eth_syn_filter *filter)
6002 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6003 uint32_t synqf = IXGBE_READ_REG(hw, IXGBE_SYNQF);
6005 if (synqf & IXGBE_SYN_FILTER_ENABLE) {
6006 filter->hig_pri = (synqf & IXGBE_SYN_FILTER_SYNQFP) ? 1 : 0;
6007 filter->queue = (uint16_t)((synqf & IXGBE_SYN_FILTER_QUEUE) >> 1);
6014 ixgbe_syn_filter_handle(struct rte_eth_dev *dev,
6015 enum rte_filter_op filter_op,
6018 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6021 MAC_TYPE_FILTER_SUP(hw->mac.type);
6023 if (filter_op == RTE_ETH_FILTER_NOP)
6027 PMD_DRV_LOG(ERR, "arg shouldn't be NULL for operation %u",
6032 switch (filter_op) {
6033 case RTE_ETH_FILTER_ADD:
6034 ret = ixgbe_syn_filter_set(dev,
6035 (struct rte_eth_syn_filter *)arg,
6038 case RTE_ETH_FILTER_DELETE:
6039 ret = ixgbe_syn_filter_set(dev,
6040 (struct rte_eth_syn_filter *)arg,
6043 case RTE_ETH_FILTER_GET:
6044 ret = ixgbe_syn_filter_get(dev,
6045 (struct rte_eth_syn_filter *)arg);
6048 PMD_DRV_LOG(ERR, "unsupported operation %u\n", filter_op);
6057 static inline enum ixgbe_5tuple_protocol
6058 convert_protocol_type(uint8_t protocol_value)
6060 if (protocol_value == IPPROTO_TCP)
6061 return IXGBE_FILTER_PROTOCOL_TCP;
6062 else if (protocol_value == IPPROTO_UDP)
6063 return IXGBE_FILTER_PROTOCOL_UDP;
6064 else if (protocol_value == IPPROTO_SCTP)
6065 return IXGBE_FILTER_PROTOCOL_SCTP;
6067 return IXGBE_FILTER_PROTOCOL_NONE;
6070 /* inject a 5-tuple filter to HW */
6072 ixgbe_inject_5tuple_filter(struct rte_eth_dev *dev,
6073 struct ixgbe_5tuple_filter *filter)
6075 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6077 uint32_t ftqf, sdpqf;
6078 uint32_t l34timir = 0;
6079 uint8_t mask = 0xff;
6083 sdpqf = (uint32_t)(filter->filter_info.dst_port <<
6084 IXGBE_SDPQF_DSTPORT_SHIFT);
6085 sdpqf = sdpqf | (filter->filter_info.src_port & IXGBE_SDPQF_SRCPORT);
6087 ftqf = (uint32_t)(filter->filter_info.proto &
6088 IXGBE_FTQF_PROTOCOL_MASK);
6089 ftqf |= (uint32_t)((filter->filter_info.priority &
6090 IXGBE_FTQF_PRIORITY_MASK) << IXGBE_FTQF_PRIORITY_SHIFT);
6091 if (filter->filter_info.src_ip_mask == 0) /* 0 means compare. */
6092 mask &= IXGBE_FTQF_SOURCE_ADDR_MASK;
6093 if (filter->filter_info.dst_ip_mask == 0)
6094 mask &= IXGBE_FTQF_DEST_ADDR_MASK;
6095 if (filter->filter_info.src_port_mask == 0)
6096 mask &= IXGBE_FTQF_SOURCE_PORT_MASK;
6097 if (filter->filter_info.dst_port_mask == 0)
6098 mask &= IXGBE_FTQF_DEST_PORT_MASK;
6099 if (filter->filter_info.proto_mask == 0)
6100 mask &= IXGBE_FTQF_PROTOCOL_COMP_MASK;
6101 ftqf |= mask << IXGBE_FTQF_5TUPLE_MASK_SHIFT;
6102 ftqf |= IXGBE_FTQF_POOL_MASK_EN;
6103 ftqf |= IXGBE_FTQF_QUEUE_ENABLE;
6105 IXGBE_WRITE_REG(hw, IXGBE_DAQF(i), filter->filter_info.dst_ip);
6106 IXGBE_WRITE_REG(hw, IXGBE_SAQF(i), filter->filter_info.src_ip);
6107 IXGBE_WRITE_REG(hw, IXGBE_SDPQF(i), sdpqf);
6108 IXGBE_WRITE_REG(hw, IXGBE_FTQF(i), ftqf);
6110 l34timir |= IXGBE_L34T_IMIR_RESERVE;
6111 l34timir |= (uint32_t)(filter->queue <<
6112 IXGBE_L34T_IMIR_QUEUE_SHIFT);
6113 IXGBE_WRITE_REG(hw, IXGBE_L34T_IMIR(i), l34timir);
6117 * add a 5tuple filter
6120 * dev: Pointer to struct rte_eth_dev.
6121 * index: the index the filter allocates.
6122 * filter: ponter to the filter that will be added.
6123 * rx_queue: the queue id the filter assigned to.
6126 * - On success, zero.
6127 * - On failure, a negative value.
6130 ixgbe_add_5tuple_filter(struct rte_eth_dev *dev,
6131 struct ixgbe_5tuple_filter *filter)
6133 struct ixgbe_filter_info *filter_info =
6134 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
6138 * look for an unused 5tuple filter index,
6139 * and insert the filter to list.
6141 for (i = 0; i < IXGBE_MAX_FTQF_FILTERS; i++) {
6142 idx = i / (sizeof(uint32_t) * NBBY);
6143 shift = i % (sizeof(uint32_t) * NBBY);
6144 if (!(filter_info->fivetuple_mask[idx] & (1 << shift))) {
6145 filter_info->fivetuple_mask[idx] |= 1 << shift;
6147 TAILQ_INSERT_TAIL(&filter_info->fivetuple_list,
6153 if (i >= IXGBE_MAX_FTQF_FILTERS) {
6154 PMD_DRV_LOG(ERR, "5tuple filters are full.");
6158 ixgbe_inject_5tuple_filter(dev, filter);
6164 * remove a 5tuple filter
6167 * dev: Pointer to struct rte_eth_dev.
6168 * filter: the pointer of the filter will be removed.
6171 ixgbe_remove_5tuple_filter(struct rte_eth_dev *dev,
6172 struct ixgbe_5tuple_filter *filter)
6174 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6175 struct ixgbe_filter_info *filter_info =
6176 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
6177 uint16_t index = filter->index;
6179 filter_info->fivetuple_mask[index / (sizeof(uint32_t) * NBBY)] &=
6180 ~(1 << (index % (sizeof(uint32_t) * NBBY)));
6181 TAILQ_REMOVE(&filter_info->fivetuple_list, filter, entries);
6184 IXGBE_WRITE_REG(hw, IXGBE_DAQF(index), 0);
6185 IXGBE_WRITE_REG(hw, IXGBE_SAQF(index), 0);
6186 IXGBE_WRITE_REG(hw, IXGBE_SDPQF(index), 0);
6187 IXGBE_WRITE_REG(hw, IXGBE_FTQF(index), 0);
6188 IXGBE_WRITE_REG(hw, IXGBE_L34T_IMIR(index), 0);
6192 ixgbevf_dev_set_mtu(struct rte_eth_dev *dev, uint16_t mtu)
6194 struct ixgbe_hw *hw;
6195 uint32_t max_frame = mtu + ETHER_HDR_LEN + ETHER_CRC_LEN;
6197 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6199 if ((mtu < ETHER_MIN_MTU) || (max_frame > ETHER_MAX_JUMBO_FRAME_LEN))
6202 /* refuse mtu that requires the support of scattered packets when this
6203 * feature has not been enabled before.
6205 if (!dev->data->scattered_rx &&
6206 (max_frame + 2 * IXGBE_VLAN_TAG_SIZE >
6207 dev->data->min_rx_buf_size - RTE_PKTMBUF_HEADROOM))
6211 * When supported by the underlying PF driver, use the IXGBE_VF_SET_MTU
6212 * request of the version 2.0 of the mailbox API.
6213 * For now, use the IXGBE_VF_SET_LPE request of the version 1.0
6214 * of the mailbox API.
6215 * This call to IXGBE_SET_LPE action won't work with ixgbe pf drivers
6216 * prior to 3.11.33 which contains the following change:
6217 * "ixgbe: Enable jumbo frames support w/ SR-IOV"
6219 ixgbevf_rlpml_set_vf(hw, max_frame);
6221 /* update max frame size */
6222 dev->data->dev_conf.rxmode.max_rx_pkt_len = max_frame;
6226 #define MAC_TYPE_FILTER_SUP_EXT(type) do {\
6227 if ((type) != ixgbe_mac_82599EB && (type) != ixgbe_mac_X540)\
6231 static inline struct ixgbe_5tuple_filter *
6232 ixgbe_5tuple_filter_lookup(struct ixgbe_5tuple_filter_list *filter_list,
6233 struct ixgbe_5tuple_filter_info *key)
6235 struct ixgbe_5tuple_filter *it;
6237 TAILQ_FOREACH(it, filter_list, entries) {
6238 if (memcmp(key, &it->filter_info,
6239 sizeof(struct ixgbe_5tuple_filter_info)) == 0) {
6246 /* translate elements in struct rte_eth_ntuple_filter to struct ixgbe_5tuple_filter_info*/
6248 ntuple_filter_to_5tuple(struct rte_eth_ntuple_filter *filter,
6249 struct ixgbe_5tuple_filter_info *filter_info)
6251 if (filter->queue >= IXGBE_MAX_RX_QUEUE_NUM ||
6252 filter->priority > IXGBE_5TUPLE_MAX_PRI ||
6253 filter->priority < IXGBE_5TUPLE_MIN_PRI)
6256 switch (filter->dst_ip_mask) {
6258 filter_info->dst_ip_mask = 0;
6259 filter_info->dst_ip = filter->dst_ip;
6262 filter_info->dst_ip_mask = 1;
6265 PMD_DRV_LOG(ERR, "invalid dst_ip mask.");
6269 switch (filter->src_ip_mask) {
6271 filter_info->src_ip_mask = 0;
6272 filter_info->src_ip = filter->src_ip;
6275 filter_info->src_ip_mask = 1;
6278 PMD_DRV_LOG(ERR, "invalid src_ip mask.");
6282 switch (filter->dst_port_mask) {
6284 filter_info->dst_port_mask = 0;
6285 filter_info->dst_port = filter->dst_port;
6288 filter_info->dst_port_mask = 1;
6291 PMD_DRV_LOG(ERR, "invalid dst_port mask.");
6295 switch (filter->src_port_mask) {
6297 filter_info->src_port_mask = 0;
6298 filter_info->src_port = filter->src_port;
6301 filter_info->src_port_mask = 1;
6304 PMD_DRV_LOG(ERR, "invalid src_port mask.");
6308 switch (filter->proto_mask) {
6310 filter_info->proto_mask = 0;
6311 filter_info->proto =
6312 convert_protocol_type(filter->proto);
6315 filter_info->proto_mask = 1;
6318 PMD_DRV_LOG(ERR, "invalid protocol mask.");
6322 filter_info->priority = (uint8_t)filter->priority;
6327 * add or delete a ntuple filter
6330 * dev: Pointer to struct rte_eth_dev.
6331 * ntuple_filter: Pointer to struct rte_eth_ntuple_filter
6332 * add: if true, add filter, if false, remove filter
6335 * - On success, zero.
6336 * - On failure, a negative value.
6339 ixgbe_add_del_ntuple_filter(struct rte_eth_dev *dev,
6340 struct rte_eth_ntuple_filter *ntuple_filter,
6343 struct ixgbe_filter_info *filter_info =
6344 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
6345 struct ixgbe_5tuple_filter_info filter_5tuple;
6346 struct ixgbe_5tuple_filter *filter;
6349 if (ntuple_filter->flags != RTE_5TUPLE_FLAGS) {
6350 PMD_DRV_LOG(ERR, "only 5tuple is supported.");
6354 memset(&filter_5tuple, 0, sizeof(struct ixgbe_5tuple_filter_info));
6355 ret = ntuple_filter_to_5tuple(ntuple_filter, &filter_5tuple);
6359 filter = ixgbe_5tuple_filter_lookup(&filter_info->fivetuple_list,
6361 if (filter != NULL && add) {
6362 PMD_DRV_LOG(ERR, "filter exists.");
6365 if (filter == NULL && !add) {
6366 PMD_DRV_LOG(ERR, "filter doesn't exist.");
6371 filter = rte_zmalloc("ixgbe_5tuple_filter",
6372 sizeof(struct ixgbe_5tuple_filter), 0);
6375 (void)rte_memcpy(&filter->filter_info,
6377 sizeof(struct ixgbe_5tuple_filter_info));
6378 filter->queue = ntuple_filter->queue;
6379 ret = ixgbe_add_5tuple_filter(dev, filter);
6385 ixgbe_remove_5tuple_filter(dev, filter);
6391 * get a ntuple filter
6394 * dev: Pointer to struct rte_eth_dev.
6395 * ntuple_filter: Pointer to struct rte_eth_ntuple_filter
6398 * - On success, zero.
6399 * - On failure, a negative value.
6402 ixgbe_get_ntuple_filter(struct rte_eth_dev *dev,
6403 struct rte_eth_ntuple_filter *ntuple_filter)
6405 struct ixgbe_filter_info *filter_info =
6406 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
6407 struct ixgbe_5tuple_filter_info filter_5tuple;
6408 struct ixgbe_5tuple_filter *filter;
6411 if (ntuple_filter->flags != RTE_5TUPLE_FLAGS) {
6412 PMD_DRV_LOG(ERR, "only 5tuple is supported.");
6416 memset(&filter_5tuple, 0, sizeof(struct ixgbe_5tuple_filter_info));
6417 ret = ntuple_filter_to_5tuple(ntuple_filter, &filter_5tuple);
6421 filter = ixgbe_5tuple_filter_lookup(&filter_info->fivetuple_list,
6423 if (filter == NULL) {
6424 PMD_DRV_LOG(ERR, "filter doesn't exist.");
6427 ntuple_filter->queue = filter->queue;
6432 * ixgbe_ntuple_filter_handle - Handle operations for ntuple filter.
6433 * @dev: pointer to rte_eth_dev structure
6434 * @filter_op:operation will be taken.
6435 * @arg: a pointer to specific structure corresponding to the filter_op
6438 * - On success, zero.
6439 * - On failure, a negative value.
6442 ixgbe_ntuple_filter_handle(struct rte_eth_dev *dev,
6443 enum rte_filter_op filter_op,
6446 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6449 MAC_TYPE_FILTER_SUP_EXT(hw->mac.type);
6451 if (filter_op == RTE_ETH_FILTER_NOP)
6455 PMD_DRV_LOG(ERR, "arg shouldn't be NULL for operation %u.",
6460 switch (filter_op) {
6461 case RTE_ETH_FILTER_ADD:
6462 ret = ixgbe_add_del_ntuple_filter(dev,
6463 (struct rte_eth_ntuple_filter *)arg,
6466 case RTE_ETH_FILTER_DELETE:
6467 ret = ixgbe_add_del_ntuple_filter(dev,
6468 (struct rte_eth_ntuple_filter *)arg,
6471 case RTE_ETH_FILTER_GET:
6472 ret = ixgbe_get_ntuple_filter(dev,
6473 (struct rte_eth_ntuple_filter *)arg);
6476 PMD_DRV_LOG(ERR, "unsupported operation %u.", filter_op);
6484 ixgbe_add_del_ethertype_filter(struct rte_eth_dev *dev,
6485 struct rte_eth_ethertype_filter *filter,
6488 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6489 struct ixgbe_filter_info *filter_info =
6490 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
6494 struct ixgbe_ethertype_filter ethertype_filter;
6496 if (filter->queue >= IXGBE_MAX_RX_QUEUE_NUM)
6499 if (filter->ether_type == ETHER_TYPE_IPv4 ||
6500 filter->ether_type == ETHER_TYPE_IPv6) {
6501 PMD_DRV_LOG(ERR, "unsupported ether_type(0x%04x) in"
6502 " ethertype filter.", filter->ether_type);
6506 if (filter->flags & RTE_ETHTYPE_FLAGS_MAC) {
6507 PMD_DRV_LOG(ERR, "mac compare is unsupported.");
6510 if (filter->flags & RTE_ETHTYPE_FLAGS_DROP) {
6511 PMD_DRV_LOG(ERR, "drop option is unsupported.");
6515 ret = ixgbe_ethertype_filter_lookup(filter_info, filter->ether_type);
6516 if (ret >= 0 && add) {
6517 PMD_DRV_LOG(ERR, "ethertype (0x%04x) filter exists.",
6518 filter->ether_type);
6521 if (ret < 0 && !add) {
6522 PMD_DRV_LOG(ERR, "ethertype (0x%04x) filter doesn't exist.",
6523 filter->ether_type);
6528 etqf = IXGBE_ETQF_FILTER_EN;
6529 etqf |= (uint32_t)filter->ether_type;
6530 etqs |= (uint32_t)((filter->queue <<
6531 IXGBE_ETQS_RX_QUEUE_SHIFT) &
6532 IXGBE_ETQS_RX_QUEUE);
6533 etqs |= IXGBE_ETQS_QUEUE_EN;
6535 ethertype_filter.ethertype = filter->ether_type;
6536 ethertype_filter.etqf = etqf;
6537 ethertype_filter.etqs = etqs;
6538 ethertype_filter.conf = FALSE;
6539 ret = ixgbe_ethertype_filter_insert(filter_info,
6542 PMD_DRV_LOG(ERR, "ethertype filters are full.");
6546 ret = ixgbe_ethertype_filter_remove(filter_info, (uint8_t)ret);
6550 IXGBE_WRITE_REG(hw, IXGBE_ETQF(ret), etqf);
6551 IXGBE_WRITE_REG(hw, IXGBE_ETQS(ret), etqs);
6552 IXGBE_WRITE_FLUSH(hw);
6558 ixgbe_get_ethertype_filter(struct rte_eth_dev *dev,
6559 struct rte_eth_ethertype_filter *filter)
6561 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6562 struct ixgbe_filter_info *filter_info =
6563 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
6564 uint32_t etqf, etqs;
6567 ret = ixgbe_ethertype_filter_lookup(filter_info, filter->ether_type);
6569 PMD_DRV_LOG(ERR, "ethertype (0x%04x) filter doesn't exist.",
6570 filter->ether_type);
6574 etqf = IXGBE_READ_REG(hw, IXGBE_ETQF(ret));
6575 if (etqf & IXGBE_ETQF_FILTER_EN) {
6576 etqs = IXGBE_READ_REG(hw, IXGBE_ETQS(ret));
6577 filter->ether_type = etqf & IXGBE_ETQF_ETHERTYPE;
6579 filter->queue = (etqs & IXGBE_ETQS_RX_QUEUE) >>
6580 IXGBE_ETQS_RX_QUEUE_SHIFT;
6587 * ixgbe_ethertype_filter_handle - Handle operations for ethertype filter.
6588 * @dev: pointer to rte_eth_dev structure
6589 * @filter_op:operation will be taken.
6590 * @arg: a pointer to specific structure corresponding to the filter_op
6593 ixgbe_ethertype_filter_handle(struct rte_eth_dev *dev,
6594 enum rte_filter_op filter_op,
6597 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6600 MAC_TYPE_FILTER_SUP(hw->mac.type);
6602 if (filter_op == RTE_ETH_FILTER_NOP)
6606 PMD_DRV_LOG(ERR, "arg shouldn't be NULL for operation %u.",
6611 switch (filter_op) {
6612 case RTE_ETH_FILTER_ADD:
6613 ret = ixgbe_add_del_ethertype_filter(dev,
6614 (struct rte_eth_ethertype_filter *)arg,
6617 case RTE_ETH_FILTER_DELETE:
6618 ret = ixgbe_add_del_ethertype_filter(dev,
6619 (struct rte_eth_ethertype_filter *)arg,
6622 case RTE_ETH_FILTER_GET:
6623 ret = ixgbe_get_ethertype_filter(dev,
6624 (struct rte_eth_ethertype_filter *)arg);
6627 PMD_DRV_LOG(ERR, "unsupported operation %u.", filter_op);
6635 ixgbe_dev_filter_ctrl(struct rte_eth_dev *dev,
6636 enum rte_filter_type filter_type,
6637 enum rte_filter_op filter_op,
6642 switch (filter_type) {
6643 case RTE_ETH_FILTER_NTUPLE:
6644 ret = ixgbe_ntuple_filter_handle(dev, filter_op, arg);
6646 case RTE_ETH_FILTER_ETHERTYPE:
6647 ret = ixgbe_ethertype_filter_handle(dev, filter_op, arg);
6649 case RTE_ETH_FILTER_SYN:
6650 ret = ixgbe_syn_filter_handle(dev, filter_op, arg);
6652 case RTE_ETH_FILTER_FDIR:
6653 ret = ixgbe_fdir_ctrl_func(dev, filter_op, arg);
6655 case RTE_ETH_FILTER_L2_TUNNEL:
6656 ret = ixgbe_dev_l2_tunnel_filter_handle(dev, filter_op, arg);
6658 case RTE_ETH_FILTER_GENERIC:
6659 if (filter_op != RTE_ETH_FILTER_GET)
6661 *(const void **)arg = &ixgbe_flow_ops;
6664 PMD_DRV_LOG(WARNING, "Filter type (%d) not supported",
6674 ixgbe_dev_addr_list_itr(__attribute__((unused)) struct ixgbe_hw *hw,
6675 u8 **mc_addr_ptr, u32 *vmdq)
6680 mc_addr = *mc_addr_ptr;
6681 *mc_addr_ptr = (mc_addr + sizeof(struct ether_addr));
6686 ixgbe_dev_set_mc_addr_list(struct rte_eth_dev *dev,
6687 struct ether_addr *mc_addr_set,
6688 uint32_t nb_mc_addr)
6690 struct ixgbe_hw *hw;
6693 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6694 mc_addr_list = (u8 *)mc_addr_set;
6695 return ixgbe_update_mc_addr_list(hw, mc_addr_list, nb_mc_addr,
6696 ixgbe_dev_addr_list_itr, TRUE);
6700 ixgbe_read_systime_cyclecounter(struct rte_eth_dev *dev)
6702 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6703 uint64_t systime_cycles;
6705 switch (hw->mac.type) {
6706 case ixgbe_mac_X550:
6707 case ixgbe_mac_X550EM_x:
6708 case ixgbe_mac_X550EM_a:
6709 /* SYSTIMEL stores ns and SYSTIMEH stores seconds. */
6710 systime_cycles = (uint64_t)IXGBE_READ_REG(hw, IXGBE_SYSTIML);
6711 systime_cycles += (uint64_t)IXGBE_READ_REG(hw, IXGBE_SYSTIMH)
6715 systime_cycles = (uint64_t)IXGBE_READ_REG(hw, IXGBE_SYSTIML);
6716 systime_cycles |= (uint64_t)IXGBE_READ_REG(hw, IXGBE_SYSTIMH)
6720 return systime_cycles;
6724 ixgbe_read_rx_tstamp_cyclecounter(struct rte_eth_dev *dev)
6726 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6727 uint64_t rx_tstamp_cycles;
6729 switch (hw->mac.type) {
6730 case ixgbe_mac_X550:
6731 case ixgbe_mac_X550EM_x:
6732 case ixgbe_mac_X550EM_a:
6733 /* RXSTMPL stores ns and RXSTMPH stores seconds. */
6734 rx_tstamp_cycles = (uint64_t)IXGBE_READ_REG(hw, IXGBE_RXSTMPL);
6735 rx_tstamp_cycles += (uint64_t)IXGBE_READ_REG(hw, IXGBE_RXSTMPH)
6739 /* RXSTMPL stores ns and RXSTMPH stores seconds. */
6740 rx_tstamp_cycles = (uint64_t)IXGBE_READ_REG(hw, IXGBE_RXSTMPL);
6741 rx_tstamp_cycles |= (uint64_t)IXGBE_READ_REG(hw, IXGBE_RXSTMPH)
6745 return rx_tstamp_cycles;
6749 ixgbe_read_tx_tstamp_cyclecounter(struct rte_eth_dev *dev)
6751 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6752 uint64_t tx_tstamp_cycles;
6754 switch (hw->mac.type) {
6755 case ixgbe_mac_X550:
6756 case ixgbe_mac_X550EM_x:
6757 case ixgbe_mac_X550EM_a:
6758 /* TXSTMPL stores ns and TXSTMPH stores seconds. */
6759 tx_tstamp_cycles = (uint64_t)IXGBE_READ_REG(hw, IXGBE_TXSTMPL);
6760 tx_tstamp_cycles += (uint64_t)IXGBE_READ_REG(hw, IXGBE_TXSTMPH)
6764 /* TXSTMPL stores ns and TXSTMPH stores seconds. */
6765 tx_tstamp_cycles = (uint64_t)IXGBE_READ_REG(hw, IXGBE_TXSTMPL);
6766 tx_tstamp_cycles |= (uint64_t)IXGBE_READ_REG(hw, IXGBE_TXSTMPH)
6770 return tx_tstamp_cycles;
6774 ixgbe_start_timecounters(struct rte_eth_dev *dev)
6776 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6777 struct ixgbe_adapter *adapter =
6778 (struct ixgbe_adapter *)dev->data->dev_private;
6779 struct rte_eth_link link;
6780 uint32_t incval = 0;
6783 /* Get current link speed. */
6784 memset(&link, 0, sizeof(link));
6785 ixgbe_dev_link_update(dev, 1);
6786 rte_ixgbe_dev_atomic_read_link_status(dev, &link);
6788 switch (link.link_speed) {
6789 case ETH_SPEED_NUM_100M:
6790 incval = IXGBE_INCVAL_100;
6791 shift = IXGBE_INCVAL_SHIFT_100;
6793 case ETH_SPEED_NUM_1G:
6794 incval = IXGBE_INCVAL_1GB;
6795 shift = IXGBE_INCVAL_SHIFT_1GB;
6797 case ETH_SPEED_NUM_10G:
6799 incval = IXGBE_INCVAL_10GB;
6800 shift = IXGBE_INCVAL_SHIFT_10GB;
6804 switch (hw->mac.type) {
6805 case ixgbe_mac_X550:
6806 case ixgbe_mac_X550EM_x:
6807 case ixgbe_mac_X550EM_a:
6808 /* Independent of link speed. */
6810 /* Cycles read will be interpreted as ns. */
6813 case ixgbe_mac_X540:
6814 IXGBE_WRITE_REG(hw, IXGBE_TIMINCA, incval);
6816 case ixgbe_mac_82599EB:
6817 incval >>= IXGBE_INCVAL_SHIFT_82599;
6818 shift -= IXGBE_INCVAL_SHIFT_82599;
6819 IXGBE_WRITE_REG(hw, IXGBE_TIMINCA,
6820 (1 << IXGBE_INCPER_SHIFT_82599) | incval);
6823 /* Not supported. */
6827 memset(&adapter->systime_tc, 0, sizeof(struct rte_timecounter));
6828 memset(&adapter->rx_tstamp_tc, 0, sizeof(struct rte_timecounter));
6829 memset(&adapter->tx_tstamp_tc, 0, sizeof(struct rte_timecounter));
6831 adapter->systime_tc.cc_mask = IXGBE_CYCLECOUNTER_MASK;
6832 adapter->systime_tc.cc_shift = shift;
6833 adapter->systime_tc.nsec_mask = (1ULL << shift) - 1;
6835 adapter->rx_tstamp_tc.cc_mask = IXGBE_CYCLECOUNTER_MASK;
6836 adapter->rx_tstamp_tc.cc_shift = shift;
6837 adapter->rx_tstamp_tc.nsec_mask = (1ULL << shift) - 1;
6839 adapter->tx_tstamp_tc.cc_mask = IXGBE_CYCLECOUNTER_MASK;
6840 adapter->tx_tstamp_tc.cc_shift = shift;
6841 adapter->tx_tstamp_tc.nsec_mask = (1ULL << shift) - 1;
6845 ixgbe_timesync_adjust_time(struct rte_eth_dev *dev, int64_t delta)
6847 struct ixgbe_adapter *adapter =
6848 (struct ixgbe_adapter *)dev->data->dev_private;
6850 adapter->systime_tc.nsec += delta;
6851 adapter->rx_tstamp_tc.nsec += delta;
6852 adapter->tx_tstamp_tc.nsec += delta;
6858 ixgbe_timesync_write_time(struct rte_eth_dev *dev, const struct timespec *ts)
6861 struct ixgbe_adapter *adapter =
6862 (struct ixgbe_adapter *)dev->data->dev_private;
6864 ns = rte_timespec_to_ns(ts);
6865 /* Set the timecounters to a new value. */
6866 adapter->systime_tc.nsec = ns;
6867 adapter->rx_tstamp_tc.nsec = ns;
6868 adapter->tx_tstamp_tc.nsec = ns;
6874 ixgbe_timesync_read_time(struct rte_eth_dev *dev, struct timespec *ts)
6876 uint64_t ns, systime_cycles;
6877 struct ixgbe_adapter *adapter =
6878 (struct ixgbe_adapter *)dev->data->dev_private;
6880 systime_cycles = ixgbe_read_systime_cyclecounter(dev);
6881 ns = rte_timecounter_update(&adapter->systime_tc, systime_cycles);
6882 *ts = rte_ns_to_timespec(ns);
6888 ixgbe_timesync_enable(struct rte_eth_dev *dev)
6890 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6894 /* Stop the timesync system time. */
6895 IXGBE_WRITE_REG(hw, IXGBE_TIMINCA, 0x0);
6896 /* Reset the timesync system time value. */
6897 IXGBE_WRITE_REG(hw, IXGBE_SYSTIML, 0x0);
6898 IXGBE_WRITE_REG(hw, IXGBE_SYSTIMH, 0x0);
6900 /* Enable system time for platforms where it isn't on by default. */
6901 tsauxc = IXGBE_READ_REG(hw, IXGBE_TSAUXC);
6902 tsauxc &= ~IXGBE_TSAUXC_DISABLE_SYSTIME;
6903 IXGBE_WRITE_REG(hw, IXGBE_TSAUXC, tsauxc);
6905 ixgbe_start_timecounters(dev);
6907 /* Enable L2 filtering of IEEE1588/802.1AS Ethernet frame types. */
6908 IXGBE_WRITE_REG(hw, IXGBE_ETQF(IXGBE_ETQF_FILTER_1588),
6910 IXGBE_ETQF_FILTER_EN |
6913 /* Enable timestamping of received PTP packets. */
6914 tsync_ctl = IXGBE_READ_REG(hw, IXGBE_TSYNCRXCTL);
6915 tsync_ctl |= IXGBE_TSYNCRXCTL_ENABLED;
6916 IXGBE_WRITE_REG(hw, IXGBE_TSYNCRXCTL, tsync_ctl);
6918 /* Enable timestamping of transmitted PTP packets. */
6919 tsync_ctl = IXGBE_READ_REG(hw, IXGBE_TSYNCTXCTL);
6920 tsync_ctl |= IXGBE_TSYNCTXCTL_ENABLED;
6921 IXGBE_WRITE_REG(hw, IXGBE_TSYNCTXCTL, tsync_ctl);
6923 IXGBE_WRITE_FLUSH(hw);
6929 ixgbe_timesync_disable(struct rte_eth_dev *dev)
6931 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6934 /* Disable timestamping of transmitted PTP packets. */
6935 tsync_ctl = IXGBE_READ_REG(hw, IXGBE_TSYNCTXCTL);
6936 tsync_ctl &= ~IXGBE_TSYNCTXCTL_ENABLED;
6937 IXGBE_WRITE_REG(hw, IXGBE_TSYNCTXCTL, tsync_ctl);
6939 /* Disable timestamping of received PTP packets. */
6940 tsync_ctl = IXGBE_READ_REG(hw, IXGBE_TSYNCRXCTL);
6941 tsync_ctl &= ~IXGBE_TSYNCRXCTL_ENABLED;
6942 IXGBE_WRITE_REG(hw, IXGBE_TSYNCRXCTL, tsync_ctl);
6944 /* Disable L2 filtering of IEEE1588/802.1AS Ethernet frame types. */
6945 IXGBE_WRITE_REG(hw, IXGBE_ETQF(IXGBE_ETQF_FILTER_1588), 0);
6947 /* Stop incrementating the System Time registers. */
6948 IXGBE_WRITE_REG(hw, IXGBE_TIMINCA, 0);
6954 ixgbe_timesync_read_rx_timestamp(struct rte_eth_dev *dev,
6955 struct timespec *timestamp,
6956 uint32_t flags __rte_unused)
6958 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6959 struct ixgbe_adapter *adapter =
6960 (struct ixgbe_adapter *)dev->data->dev_private;
6961 uint32_t tsync_rxctl;
6962 uint64_t rx_tstamp_cycles;
6965 tsync_rxctl = IXGBE_READ_REG(hw, IXGBE_TSYNCRXCTL);
6966 if ((tsync_rxctl & IXGBE_TSYNCRXCTL_VALID) == 0)
6969 rx_tstamp_cycles = ixgbe_read_rx_tstamp_cyclecounter(dev);
6970 ns = rte_timecounter_update(&adapter->rx_tstamp_tc, rx_tstamp_cycles);
6971 *timestamp = rte_ns_to_timespec(ns);
6977 ixgbe_timesync_read_tx_timestamp(struct rte_eth_dev *dev,
6978 struct timespec *timestamp)
6980 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6981 struct ixgbe_adapter *adapter =
6982 (struct ixgbe_adapter *)dev->data->dev_private;
6983 uint32_t tsync_txctl;
6984 uint64_t tx_tstamp_cycles;
6987 tsync_txctl = IXGBE_READ_REG(hw, IXGBE_TSYNCTXCTL);
6988 if ((tsync_txctl & IXGBE_TSYNCTXCTL_VALID) == 0)
6991 tx_tstamp_cycles = ixgbe_read_tx_tstamp_cyclecounter(dev);
6992 ns = rte_timecounter_update(&adapter->tx_tstamp_tc, tx_tstamp_cycles);
6993 *timestamp = rte_ns_to_timespec(ns);
6999 ixgbe_get_reg_length(struct rte_eth_dev *dev)
7001 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7004 const struct reg_info *reg_group;
7005 const struct reg_info **reg_set = (hw->mac.type == ixgbe_mac_82598EB) ?
7006 ixgbe_regs_mac_82598EB : ixgbe_regs_others;
7008 while ((reg_group = reg_set[g_ind++]))
7009 count += ixgbe_regs_group_count(reg_group);
7015 ixgbevf_get_reg_length(struct rte_eth_dev *dev __rte_unused)
7019 const struct reg_info *reg_group;
7021 while ((reg_group = ixgbevf_regs[g_ind++]))
7022 count += ixgbe_regs_group_count(reg_group);
7028 ixgbe_get_regs(struct rte_eth_dev *dev,
7029 struct rte_dev_reg_info *regs)
7031 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7032 uint32_t *data = regs->data;
7035 const struct reg_info *reg_group;
7036 const struct reg_info **reg_set = (hw->mac.type == ixgbe_mac_82598EB) ?
7037 ixgbe_regs_mac_82598EB : ixgbe_regs_others;
7040 regs->length = ixgbe_get_reg_length(dev);
7041 regs->width = sizeof(uint32_t);
7045 /* Support only full register dump */
7046 if ((regs->length == 0) ||
7047 (regs->length == (uint32_t)ixgbe_get_reg_length(dev))) {
7048 regs->version = hw->mac.type << 24 | hw->revision_id << 16 |
7050 while ((reg_group = reg_set[g_ind++]))
7051 count += ixgbe_read_regs_group(dev, &data[count],
7060 ixgbevf_get_regs(struct rte_eth_dev *dev,
7061 struct rte_dev_reg_info *regs)
7063 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7064 uint32_t *data = regs->data;
7067 const struct reg_info *reg_group;
7070 regs->length = ixgbevf_get_reg_length(dev);
7071 regs->width = sizeof(uint32_t);
7075 /* Support only full register dump */
7076 if ((regs->length == 0) ||
7077 (regs->length == (uint32_t)ixgbevf_get_reg_length(dev))) {
7078 regs->version = hw->mac.type << 24 | hw->revision_id << 16 |
7080 while ((reg_group = ixgbevf_regs[g_ind++]))
7081 count += ixgbe_read_regs_group(dev, &data[count],
7090 ixgbe_get_eeprom_length(struct rte_eth_dev *dev)
7092 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7094 /* Return unit is byte count */
7095 return hw->eeprom.word_size * 2;
7099 ixgbe_get_eeprom(struct rte_eth_dev *dev,
7100 struct rte_dev_eeprom_info *in_eeprom)
7102 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7103 struct ixgbe_eeprom_info *eeprom = &hw->eeprom;
7104 uint16_t *data = in_eeprom->data;
7107 first = in_eeprom->offset >> 1;
7108 length = in_eeprom->length >> 1;
7109 if ((first > hw->eeprom.word_size) ||
7110 ((first + length) > hw->eeprom.word_size))
7113 in_eeprom->magic = hw->vendor_id | (hw->device_id << 16);
7115 return eeprom->ops.read_buffer(hw, first, length, data);
7119 ixgbe_set_eeprom(struct rte_eth_dev *dev,
7120 struct rte_dev_eeprom_info *in_eeprom)
7122 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7123 struct ixgbe_eeprom_info *eeprom = &hw->eeprom;
7124 uint16_t *data = in_eeprom->data;
7127 first = in_eeprom->offset >> 1;
7128 length = in_eeprom->length >> 1;
7129 if ((first > hw->eeprom.word_size) ||
7130 ((first + length) > hw->eeprom.word_size))
7133 in_eeprom->magic = hw->vendor_id | (hw->device_id << 16);
7135 return eeprom->ops.write_buffer(hw, first, length, data);
7139 ixgbe_reta_size_get(enum ixgbe_mac_type mac_type) {
7141 case ixgbe_mac_X550:
7142 case ixgbe_mac_X550EM_x:
7143 case ixgbe_mac_X550EM_a:
7144 return ETH_RSS_RETA_SIZE_512;
7145 case ixgbe_mac_X550_vf:
7146 case ixgbe_mac_X550EM_x_vf:
7147 case ixgbe_mac_X550EM_a_vf:
7148 return ETH_RSS_RETA_SIZE_64;
7150 return ETH_RSS_RETA_SIZE_128;
7155 ixgbe_reta_reg_get(enum ixgbe_mac_type mac_type, uint16_t reta_idx) {
7157 case ixgbe_mac_X550:
7158 case ixgbe_mac_X550EM_x:
7159 case ixgbe_mac_X550EM_a:
7160 if (reta_idx < ETH_RSS_RETA_SIZE_128)
7161 return IXGBE_RETA(reta_idx >> 2);
7163 return IXGBE_ERETA((reta_idx - ETH_RSS_RETA_SIZE_128) >> 2);
7164 case ixgbe_mac_X550_vf:
7165 case ixgbe_mac_X550EM_x_vf:
7166 case ixgbe_mac_X550EM_a_vf:
7167 return IXGBE_VFRETA(reta_idx >> 2);
7169 return IXGBE_RETA(reta_idx >> 2);
7174 ixgbe_mrqc_reg_get(enum ixgbe_mac_type mac_type) {
7176 case ixgbe_mac_X550_vf:
7177 case ixgbe_mac_X550EM_x_vf:
7178 case ixgbe_mac_X550EM_a_vf:
7179 return IXGBE_VFMRQC;
7186 ixgbe_rssrk_reg_get(enum ixgbe_mac_type mac_type, uint8_t i) {
7188 case ixgbe_mac_X550_vf:
7189 case ixgbe_mac_X550EM_x_vf:
7190 case ixgbe_mac_X550EM_a_vf:
7191 return IXGBE_VFRSSRK(i);
7193 return IXGBE_RSSRK(i);
7198 ixgbe_rss_update_sp(enum ixgbe_mac_type mac_type) {
7200 case ixgbe_mac_82599_vf:
7201 case ixgbe_mac_X540_vf:
7209 ixgbe_dev_get_dcb_info(struct rte_eth_dev *dev,
7210 struct rte_eth_dcb_info *dcb_info)
7212 struct ixgbe_dcb_config *dcb_config =
7213 IXGBE_DEV_PRIVATE_TO_DCB_CFG(dev->data->dev_private);
7214 struct ixgbe_dcb_tc_config *tc;
7217 if (dev->data->dev_conf.rxmode.mq_mode & ETH_MQ_RX_DCB_FLAG)
7218 dcb_info->nb_tcs = dcb_config->num_tcs.pg_tcs;
7220 dcb_info->nb_tcs = 1;
7222 if (dcb_config->vt_mode) { /* vt is enabled*/
7223 struct rte_eth_vmdq_dcb_conf *vmdq_rx_conf =
7224 &dev->data->dev_conf.rx_adv_conf.vmdq_dcb_conf;
7225 for (i = 0; i < ETH_DCB_NUM_USER_PRIORITIES; i++)
7226 dcb_info->prio_tc[i] = vmdq_rx_conf->dcb_tc[i];
7227 for (i = 0; i < vmdq_rx_conf->nb_queue_pools; i++) {
7228 for (j = 0; j < dcb_info->nb_tcs; j++) {
7229 dcb_info->tc_queue.tc_rxq[i][j].base =
7230 i * dcb_info->nb_tcs + j;
7231 dcb_info->tc_queue.tc_rxq[i][j].nb_queue = 1;
7232 dcb_info->tc_queue.tc_txq[i][j].base =
7233 i * dcb_info->nb_tcs + j;
7234 dcb_info->tc_queue.tc_txq[i][j].nb_queue = 1;
7237 } else { /* vt is disabled*/
7238 struct rte_eth_dcb_rx_conf *rx_conf =
7239 &dev->data->dev_conf.rx_adv_conf.dcb_rx_conf;
7240 for (i = 0; i < ETH_DCB_NUM_USER_PRIORITIES; i++)
7241 dcb_info->prio_tc[i] = rx_conf->dcb_tc[i];
7242 if (dcb_info->nb_tcs == ETH_4_TCS) {
7243 for (i = 0; i < dcb_info->nb_tcs; i++) {
7244 dcb_info->tc_queue.tc_rxq[0][i].base = i * 32;
7245 dcb_info->tc_queue.tc_rxq[0][i].nb_queue = 16;
7247 dcb_info->tc_queue.tc_txq[0][0].base = 0;
7248 dcb_info->tc_queue.tc_txq[0][1].base = 64;
7249 dcb_info->tc_queue.tc_txq[0][2].base = 96;
7250 dcb_info->tc_queue.tc_txq[0][3].base = 112;
7251 dcb_info->tc_queue.tc_txq[0][0].nb_queue = 64;
7252 dcb_info->tc_queue.tc_txq[0][1].nb_queue = 32;
7253 dcb_info->tc_queue.tc_txq[0][2].nb_queue = 16;
7254 dcb_info->tc_queue.tc_txq[0][3].nb_queue = 16;
7255 } else if (dcb_info->nb_tcs == ETH_8_TCS) {
7256 for (i = 0; i < dcb_info->nb_tcs; i++) {
7257 dcb_info->tc_queue.tc_rxq[0][i].base = i * 16;
7258 dcb_info->tc_queue.tc_rxq[0][i].nb_queue = 16;
7260 dcb_info->tc_queue.tc_txq[0][0].base = 0;
7261 dcb_info->tc_queue.tc_txq[0][1].base = 32;
7262 dcb_info->tc_queue.tc_txq[0][2].base = 64;
7263 dcb_info->tc_queue.tc_txq[0][3].base = 80;
7264 dcb_info->tc_queue.tc_txq[0][4].base = 96;
7265 dcb_info->tc_queue.tc_txq[0][5].base = 104;
7266 dcb_info->tc_queue.tc_txq[0][6].base = 112;
7267 dcb_info->tc_queue.tc_txq[0][7].base = 120;
7268 dcb_info->tc_queue.tc_txq[0][0].nb_queue = 32;
7269 dcb_info->tc_queue.tc_txq[0][1].nb_queue = 32;
7270 dcb_info->tc_queue.tc_txq[0][2].nb_queue = 16;
7271 dcb_info->tc_queue.tc_txq[0][3].nb_queue = 16;
7272 dcb_info->tc_queue.tc_txq[0][4].nb_queue = 8;
7273 dcb_info->tc_queue.tc_txq[0][5].nb_queue = 8;
7274 dcb_info->tc_queue.tc_txq[0][6].nb_queue = 8;
7275 dcb_info->tc_queue.tc_txq[0][7].nb_queue = 8;
7278 for (i = 0; i < dcb_info->nb_tcs; i++) {
7279 tc = &dcb_config->tc_config[i];
7280 dcb_info->tc_bws[i] = tc->path[IXGBE_DCB_TX_CONFIG].bwg_percent;
7285 /* Update e-tag ether type */
7287 ixgbe_update_e_tag_eth_type(struct ixgbe_hw *hw,
7288 uint16_t ether_type)
7290 uint32_t etag_etype;
7292 if (hw->mac.type != ixgbe_mac_X550 &&
7293 hw->mac.type != ixgbe_mac_X550EM_x &&
7294 hw->mac.type != ixgbe_mac_X550EM_a) {
7298 etag_etype = IXGBE_READ_REG(hw, IXGBE_ETAG_ETYPE);
7299 etag_etype &= ~IXGBE_ETAG_ETYPE_MASK;
7300 etag_etype |= ether_type;
7301 IXGBE_WRITE_REG(hw, IXGBE_ETAG_ETYPE, etag_etype);
7302 IXGBE_WRITE_FLUSH(hw);
7307 /* Config l2 tunnel ether type */
7309 ixgbe_dev_l2_tunnel_eth_type_conf(struct rte_eth_dev *dev,
7310 struct rte_eth_l2_tunnel_conf *l2_tunnel)
7313 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7314 struct ixgbe_l2_tn_info *l2_tn_info =
7315 IXGBE_DEV_PRIVATE_TO_L2_TN_INFO(dev->data->dev_private);
7317 if (l2_tunnel == NULL)
7320 switch (l2_tunnel->l2_tunnel_type) {
7321 case RTE_L2_TUNNEL_TYPE_E_TAG:
7322 l2_tn_info->e_tag_ether_type = l2_tunnel->ether_type;
7323 ret = ixgbe_update_e_tag_eth_type(hw, l2_tunnel->ether_type);
7326 PMD_DRV_LOG(ERR, "Invalid tunnel type");
7334 /* Enable e-tag tunnel */
7336 ixgbe_e_tag_enable(struct ixgbe_hw *hw)
7338 uint32_t etag_etype;
7340 if (hw->mac.type != ixgbe_mac_X550 &&
7341 hw->mac.type != ixgbe_mac_X550EM_x &&
7342 hw->mac.type != ixgbe_mac_X550EM_a) {
7346 etag_etype = IXGBE_READ_REG(hw, IXGBE_ETAG_ETYPE);
7347 etag_etype |= IXGBE_ETAG_ETYPE_VALID;
7348 IXGBE_WRITE_REG(hw, IXGBE_ETAG_ETYPE, etag_etype);
7349 IXGBE_WRITE_FLUSH(hw);
7354 /* Enable l2 tunnel */
7356 ixgbe_dev_l2_tunnel_enable(struct rte_eth_dev *dev,
7357 enum rte_eth_tunnel_type l2_tunnel_type)
7360 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7361 struct ixgbe_l2_tn_info *l2_tn_info =
7362 IXGBE_DEV_PRIVATE_TO_L2_TN_INFO(dev->data->dev_private);
7364 switch (l2_tunnel_type) {
7365 case RTE_L2_TUNNEL_TYPE_E_TAG:
7366 l2_tn_info->e_tag_en = TRUE;
7367 ret = ixgbe_e_tag_enable(hw);
7370 PMD_DRV_LOG(ERR, "Invalid tunnel type");
7378 /* Disable e-tag tunnel */
7380 ixgbe_e_tag_disable(struct ixgbe_hw *hw)
7382 uint32_t etag_etype;
7384 if (hw->mac.type != ixgbe_mac_X550 &&
7385 hw->mac.type != ixgbe_mac_X550EM_x &&
7386 hw->mac.type != ixgbe_mac_X550EM_a) {
7390 etag_etype = IXGBE_READ_REG(hw, IXGBE_ETAG_ETYPE);
7391 etag_etype &= ~IXGBE_ETAG_ETYPE_VALID;
7392 IXGBE_WRITE_REG(hw, IXGBE_ETAG_ETYPE, etag_etype);
7393 IXGBE_WRITE_FLUSH(hw);
7398 /* Disable l2 tunnel */
7400 ixgbe_dev_l2_tunnel_disable(struct rte_eth_dev *dev,
7401 enum rte_eth_tunnel_type l2_tunnel_type)
7404 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7405 struct ixgbe_l2_tn_info *l2_tn_info =
7406 IXGBE_DEV_PRIVATE_TO_L2_TN_INFO(dev->data->dev_private);
7408 switch (l2_tunnel_type) {
7409 case RTE_L2_TUNNEL_TYPE_E_TAG:
7410 l2_tn_info->e_tag_en = FALSE;
7411 ret = ixgbe_e_tag_disable(hw);
7414 PMD_DRV_LOG(ERR, "Invalid tunnel type");
7423 ixgbe_e_tag_filter_del(struct rte_eth_dev *dev,
7424 struct rte_eth_l2_tunnel_conf *l2_tunnel)
7427 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7428 uint32_t i, rar_entries;
7429 uint32_t rar_low, rar_high;
7431 if (hw->mac.type != ixgbe_mac_X550 &&
7432 hw->mac.type != ixgbe_mac_X550EM_x &&
7433 hw->mac.type != ixgbe_mac_X550EM_a) {
7437 rar_entries = ixgbe_get_num_rx_addrs(hw);
7439 for (i = 1; i < rar_entries; i++) {
7440 rar_high = IXGBE_READ_REG(hw, IXGBE_RAH(i));
7441 rar_low = IXGBE_READ_REG(hw, IXGBE_RAL(i));
7442 if ((rar_high & IXGBE_RAH_AV) &&
7443 (rar_high & IXGBE_RAH_ADTYPE) &&
7444 ((rar_low & IXGBE_RAL_ETAG_FILTER_MASK) ==
7445 l2_tunnel->tunnel_id)) {
7446 IXGBE_WRITE_REG(hw, IXGBE_RAL(i), 0);
7447 IXGBE_WRITE_REG(hw, IXGBE_RAH(i), 0);
7449 ixgbe_clear_vmdq(hw, i, IXGBE_CLEAR_VMDQ_ALL);
7459 ixgbe_e_tag_filter_add(struct rte_eth_dev *dev,
7460 struct rte_eth_l2_tunnel_conf *l2_tunnel)
7463 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7464 uint32_t i, rar_entries;
7465 uint32_t rar_low, rar_high;
7467 if (hw->mac.type != ixgbe_mac_X550 &&
7468 hw->mac.type != ixgbe_mac_X550EM_x &&
7469 hw->mac.type != ixgbe_mac_X550EM_a) {
7473 /* One entry for one tunnel. Try to remove potential existing entry. */
7474 ixgbe_e_tag_filter_del(dev, l2_tunnel);
7476 rar_entries = ixgbe_get_num_rx_addrs(hw);
7478 for (i = 1; i < rar_entries; i++) {
7479 rar_high = IXGBE_READ_REG(hw, IXGBE_RAH(i));
7480 if (rar_high & IXGBE_RAH_AV) {
7483 ixgbe_set_vmdq(hw, i, l2_tunnel->pool);
7484 rar_high = IXGBE_RAH_AV | IXGBE_RAH_ADTYPE;
7485 rar_low = l2_tunnel->tunnel_id;
7487 IXGBE_WRITE_REG(hw, IXGBE_RAL(i), rar_low);
7488 IXGBE_WRITE_REG(hw, IXGBE_RAH(i), rar_high);
7494 PMD_INIT_LOG(NOTICE, "The table of E-tag forwarding rule is full."
7495 " Please remove a rule before adding a new one.");
7499 static inline struct ixgbe_l2_tn_filter *
7500 ixgbe_l2_tn_filter_lookup(struct ixgbe_l2_tn_info *l2_tn_info,
7501 struct ixgbe_l2_tn_key *key)
7505 ret = rte_hash_lookup(l2_tn_info->hash_handle, (const void *)key);
7509 return l2_tn_info->hash_map[ret];
7513 ixgbe_insert_l2_tn_filter(struct ixgbe_l2_tn_info *l2_tn_info,
7514 struct ixgbe_l2_tn_filter *l2_tn_filter)
7518 ret = rte_hash_add_key(l2_tn_info->hash_handle,
7519 &l2_tn_filter->key);
7523 "Failed to insert L2 tunnel filter"
7524 " to hash table %d!",
7529 l2_tn_info->hash_map[ret] = l2_tn_filter;
7531 TAILQ_INSERT_TAIL(&l2_tn_info->l2_tn_list, l2_tn_filter, entries);
7537 ixgbe_remove_l2_tn_filter(struct ixgbe_l2_tn_info *l2_tn_info,
7538 struct ixgbe_l2_tn_key *key)
7541 struct ixgbe_l2_tn_filter *l2_tn_filter;
7543 ret = rte_hash_del_key(l2_tn_info->hash_handle, key);
7547 "No such L2 tunnel filter to delete %d!",
7552 l2_tn_filter = l2_tn_info->hash_map[ret];
7553 l2_tn_info->hash_map[ret] = NULL;
7555 TAILQ_REMOVE(&l2_tn_info->l2_tn_list, l2_tn_filter, entries);
7556 rte_free(l2_tn_filter);
7561 /* Add l2 tunnel filter */
7563 ixgbe_dev_l2_tunnel_filter_add(struct rte_eth_dev *dev,
7564 struct rte_eth_l2_tunnel_conf *l2_tunnel,
7568 struct ixgbe_l2_tn_info *l2_tn_info =
7569 IXGBE_DEV_PRIVATE_TO_L2_TN_INFO(dev->data->dev_private);
7570 struct ixgbe_l2_tn_key key;
7571 struct ixgbe_l2_tn_filter *node;
7574 key.l2_tn_type = l2_tunnel->l2_tunnel_type;
7575 key.tn_id = l2_tunnel->tunnel_id;
7577 node = ixgbe_l2_tn_filter_lookup(l2_tn_info, &key);
7581 "The L2 tunnel filter already exists!");
7585 node = rte_zmalloc("ixgbe_l2_tn",
7586 sizeof(struct ixgbe_l2_tn_filter),
7591 (void)rte_memcpy(&node->key,
7593 sizeof(struct ixgbe_l2_tn_key));
7594 node->pool = l2_tunnel->pool;
7595 ret = ixgbe_insert_l2_tn_filter(l2_tn_info, node);
7602 switch (l2_tunnel->l2_tunnel_type) {
7603 case RTE_L2_TUNNEL_TYPE_E_TAG:
7604 ret = ixgbe_e_tag_filter_add(dev, l2_tunnel);
7607 PMD_DRV_LOG(ERR, "Invalid tunnel type");
7612 if ((!restore) && (ret < 0))
7613 (void)ixgbe_remove_l2_tn_filter(l2_tn_info, &key);
7618 /* Delete l2 tunnel filter */
7620 ixgbe_dev_l2_tunnel_filter_del(struct rte_eth_dev *dev,
7621 struct rte_eth_l2_tunnel_conf *l2_tunnel)
7624 struct ixgbe_l2_tn_info *l2_tn_info =
7625 IXGBE_DEV_PRIVATE_TO_L2_TN_INFO(dev->data->dev_private);
7626 struct ixgbe_l2_tn_key key;
7628 key.l2_tn_type = l2_tunnel->l2_tunnel_type;
7629 key.tn_id = l2_tunnel->tunnel_id;
7630 ret = ixgbe_remove_l2_tn_filter(l2_tn_info, &key);
7634 switch (l2_tunnel->l2_tunnel_type) {
7635 case RTE_L2_TUNNEL_TYPE_E_TAG:
7636 ret = ixgbe_e_tag_filter_del(dev, l2_tunnel);
7639 PMD_DRV_LOG(ERR, "Invalid tunnel type");
7648 * ixgbe_dev_l2_tunnel_filter_handle - Handle operations for l2 tunnel filter.
7649 * @dev: pointer to rte_eth_dev structure
7650 * @filter_op:operation will be taken.
7651 * @arg: a pointer to specific structure corresponding to the filter_op
7654 ixgbe_dev_l2_tunnel_filter_handle(struct rte_eth_dev *dev,
7655 enum rte_filter_op filter_op,
7660 if (filter_op == RTE_ETH_FILTER_NOP)
7664 PMD_DRV_LOG(ERR, "arg shouldn't be NULL for operation %u.",
7669 switch (filter_op) {
7670 case RTE_ETH_FILTER_ADD:
7671 ret = ixgbe_dev_l2_tunnel_filter_add
7673 (struct rte_eth_l2_tunnel_conf *)arg,
7676 case RTE_ETH_FILTER_DELETE:
7677 ret = ixgbe_dev_l2_tunnel_filter_del
7679 (struct rte_eth_l2_tunnel_conf *)arg);
7682 PMD_DRV_LOG(ERR, "unsupported operation %u.", filter_op);
7690 ixgbe_e_tag_forwarding_en_dis(struct rte_eth_dev *dev, bool en)
7694 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7696 if (hw->mac.type != ixgbe_mac_X550 &&
7697 hw->mac.type != ixgbe_mac_X550EM_x &&
7698 hw->mac.type != ixgbe_mac_X550EM_a) {
7702 ctrl = IXGBE_READ_REG(hw, IXGBE_VT_CTL);
7703 ctrl &= ~IXGBE_VT_CTL_POOLING_MODE_MASK;
7705 ctrl |= IXGBE_VT_CTL_POOLING_MODE_ETAG;
7706 IXGBE_WRITE_REG(hw, IXGBE_VT_CTL, ctrl);
7711 /* Enable l2 tunnel forwarding */
7713 ixgbe_dev_l2_tunnel_forwarding_enable
7714 (struct rte_eth_dev *dev,
7715 enum rte_eth_tunnel_type l2_tunnel_type)
7717 struct ixgbe_l2_tn_info *l2_tn_info =
7718 IXGBE_DEV_PRIVATE_TO_L2_TN_INFO(dev->data->dev_private);
7721 switch (l2_tunnel_type) {
7722 case RTE_L2_TUNNEL_TYPE_E_TAG:
7723 l2_tn_info->e_tag_fwd_en = TRUE;
7724 ret = ixgbe_e_tag_forwarding_en_dis(dev, 1);
7727 PMD_DRV_LOG(ERR, "Invalid tunnel type");
7735 /* Disable l2 tunnel forwarding */
7737 ixgbe_dev_l2_tunnel_forwarding_disable
7738 (struct rte_eth_dev *dev,
7739 enum rte_eth_tunnel_type l2_tunnel_type)
7741 struct ixgbe_l2_tn_info *l2_tn_info =
7742 IXGBE_DEV_PRIVATE_TO_L2_TN_INFO(dev->data->dev_private);
7745 switch (l2_tunnel_type) {
7746 case RTE_L2_TUNNEL_TYPE_E_TAG:
7747 l2_tn_info->e_tag_fwd_en = FALSE;
7748 ret = ixgbe_e_tag_forwarding_en_dis(dev, 0);
7751 PMD_DRV_LOG(ERR, "Invalid tunnel type");
7760 ixgbe_e_tag_insertion_en_dis(struct rte_eth_dev *dev,
7761 struct rte_eth_l2_tunnel_conf *l2_tunnel,
7764 struct rte_pci_device *pci_dev = IXGBE_DEV_TO_PCI(dev);
7766 uint32_t vmtir, vmvir;
7767 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7769 if (l2_tunnel->vf_id >= pci_dev->max_vfs) {
7771 "VF id %u should be less than %u",
7777 if (hw->mac.type != ixgbe_mac_X550 &&
7778 hw->mac.type != ixgbe_mac_X550EM_x &&
7779 hw->mac.type != ixgbe_mac_X550EM_a) {
7784 vmtir = l2_tunnel->tunnel_id;
7788 IXGBE_WRITE_REG(hw, IXGBE_VMTIR(l2_tunnel->vf_id), vmtir);
7790 vmvir = IXGBE_READ_REG(hw, IXGBE_VMVIR(l2_tunnel->vf_id));
7791 vmvir &= ~IXGBE_VMVIR_TAGA_MASK;
7793 vmvir |= IXGBE_VMVIR_TAGA_ETAG_INSERT;
7794 IXGBE_WRITE_REG(hw, IXGBE_VMVIR(l2_tunnel->vf_id), vmvir);
7799 /* Enable l2 tunnel tag insertion */
7801 ixgbe_dev_l2_tunnel_insertion_enable(struct rte_eth_dev *dev,
7802 struct rte_eth_l2_tunnel_conf *l2_tunnel)
7806 switch (l2_tunnel->l2_tunnel_type) {
7807 case RTE_L2_TUNNEL_TYPE_E_TAG:
7808 ret = ixgbe_e_tag_insertion_en_dis(dev, l2_tunnel, 1);
7811 PMD_DRV_LOG(ERR, "Invalid tunnel type");
7819 /* Disable l2 tunnel tag insertion */
7821 ixgbe_dev_l2_tunnel_insertion_disable
7822 (struct rte_eth_dev *dev,
7823 struct rte_eth_l2_tunnel_conf *l2_tunnel)
7827 switch (l2_tunnel->l2_tunnel_type) {
7828 case RTE_L2_TUNNEL_TYPE_E_TAG:
7829 ret = ixgbe_e_tag_insertion_en_dis(dev, l2_tunnel, 0);
7832 PMD_DRV_LOG(ERR, "Invalid tunnel type");
7841 ixgbe_e_tag_stripping_en_dis(struct rte_eth_dev *dev,
7846 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7848 if (hw->mac.type != ixgbe_mac_X550 &&
7849 hw->mac.type != ixgbe_mac_X550EM_x &&
7850 hw->mac.type != ixgbe_mac_X550EM_a) {
7854 qde = IXGBE_READ_REG(hw, IXGBE_QDE);
7856 qde |= IXGBE_QDE_STRIP_TAG;
7858 qde &= ~IXGBE_QDE_STRIP_TAG;
7859 qde &= ~IXGBE_QDE_READ;
7860 qde |= IXGBE_QDE_WRITE;
7861 IXGBE_WRITE_REG(hw, IXGBE_QDE, qde);
7866 /* Enable l2 tunnel tag stripping */
7868 ixgbe_dev_l2_tunnel_stripping_enable
7869 (struct rte_eth_dev *dev,
7870 enum rte_eth_tunnel_type l2_tunnel_type)
7874 switch (l2_tunnel_type) {
7875 case RTE_L2_TUNNEL_TYPE_E_TAG:
7876 ret = ixgbe_e_tag_stripping_en_dis(dev, 1);
7879 PMD_DRV_LOG(ERR, "Invalid tunnel type");
7887 /* Disable l2 tunnel tag stripping */
7889 ixgbe_dev_l2_tunnel_stripping_disable
7890 (struct rte_eth_dev *dev,
7891 enum rte_eth_tunnel_type l2_tunnel_type)
7895 switch (l2_tunnel_type) {
7896 case RTE_L2_TUNNEL_TYPE_E_TAG:
7897 ret = ixgbe_e_tag_stripping_en_dis(dev, 0);
7900 PMD_DRV_LOG(ERR, "Invalid tunnel type");
7908 /* Enable/disable l2 tunnel offload functions */
7910 ixgbe_dev_l2_tunnel_offload_set
7911 (struct rte_eth_dev *dev,
7912 struct rte_eth_l2_tunnel_conf *l2_tunnel,
7918 if (l2_tunnel == NULL)
7922 if (mask & ETH_L2_TUNNEL_ENABLE_MASK) {
7924 ret = ixgbe_dev_l2_tunnel_enable(
7926 l2_tunnel->l2_tunnel_type);
7928 ret = ixgbe_dev_l2_tunnel_disable(
7930 l2_tunnel->l2_tunnel_type);
7933 if (mask & ETH_L2_TUNNEL_INSERTION_MASK) {
7935 ret = ixgbe_dev_l2_tunnel_insertion_enable(
7939 ret = ixgbe_dev_l2_tunnel_insertion_disable(
7944 if (mask & ETH_L2_TUNNEL_STRIPPING_MASK) {
7946 ret = ixgbe_dev_l2_tunnel_stripping_enable(
7948 l2_tunnel->l2_tunnel_type);
7950 ret = ixgbe_dev_l2_tunnel_stripping_disable(
7952 l2_tunnel->l2_tunnel_type);
7955 if (mask & ETH_L2_TUNNEL_FORWARDING_MASK) {
7957 ret = ixgbe_dev_l2_tunnel_forwarding_enable(
7959 l2_tunnel->l2_tunnel_type);
7961 ret = ixgbe_dev_l2_tunnel_forwarding_disable(
7963 l2_tunnel->l2_tunnel_type);
7970 ixgbe_update_vxlan_port(struct ixgbe_hw *hw,
7973 IXGBE_WRITE_REG(hw, IXGBE_VXLANCTRL, port);
7974 IXGBE_WRITE_FLUSH(hw);
7979 /* There's only one register for VxLAN UDP port.
7980 * So, we cannot add several ports. Will update it.
7983 ixgbe_add_vxlan_port(struct ixgbe_hw *hw,
7987 PMD_DRV_LOG(ERR, "Add VxLAN port 0 is not allowed.");
7991 return ixgbe_update_vxlan_port(hw, port);
7994 /* We cannot delete the VxLAN port. For there's a register for VxLAN
7995 * UDP port, it must have a value.
7996 * So, will reset it to the original value 0.
7999 ixgbe_del_vxlan_port(struct ixgbe_hw *hw,
8004 cur_port = (uint16_t)IXGBE_READ_REG(hw, IXGBE_VXLANCTRL);
8006 if (cur_port != port) {
8007 PMD_DRV_LOG(ERR, "Port %u does not exist.", port);
8011 return ixgbe_update_vxlan_port(hw, 0);
8014 /* Add UDP tunneling port */
8016 ixgbe_dev_udp_tunnel_port_add(struct rte_eth_dev *dev,
8017 struct rte_eth_udp_tunnel *udp_tunnel)
8020 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8022 if (hw->mac.type != ixgbe_mac_X550 &&
8023 hw->mac.type != ixgbe_mac_X550EM_x &&
8024 hw->mac.type != ixgbe_mac_X550EM_a) {
8028 if (udp_tunnel == NULL)
8031 switch (udp_tunnel->prot_type) {
8032 case RTE_TUNNEL_TYPE_VXLAN:
8033 ret = ixgbe_add_vxlan_port(hw, udp_tunnel->udp_port);
8036 case RTE_TUNNEL_TYPE_GENEVE:
8037 case RTE_TUNNEL_TYPE_TEREDO:
8038 PMD_DRV_LOG(ERR, "Tunnel type is not supported now.");
8043 PMD_DRV_LOG(ERR, "Invalid tunnel type");
8051 /* Remove UDP tunneling port */
8053 ixgbe_dev_udp_tunnel_port_del(struct rte_eth_dev *dev,
8054 struct rte_eth_udp_tunnel *udp_tunnel)
8057 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8059 if (hw->mac.type != ixgbe_mac_X550 &&
8060 hw->mac.type != ixgbe_mac_X550EM_x &&
8061 hw->mac.type != ixgbe_mac_X550EM_a) {
8065 if (udp_tunnel == NULL)
8068 switch (udp_tunnel->prot_type) {
8069 case RTE_TUNNEL_TYPE_VXLAN:
8070 ret = ixgbe_del_vxlan_port(hw, udp_tunnel->udp_port);
8072 case RTE_TUNNEL_TYPE_GENEVE:
8073 case RTE_TUNNEL_TYPE_TEREDO:
8074 PMD_DRV_LOG(ERR, "Tunnel type is not supported now.");
8078 PMD_DRV_LOG(ERR, "Invalid tunnel type");
8087 ixgbevf_dev_allmulticast_enable(struct rte_eth_dev *dev)
8089 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8091 hw->mac.ops.update_xcast_mode(hw, IXGBEVF_XCAST_MODE_ALLMULTI);
8095 ixgbevf_dev_allmulticast_disable(struct rte_eth_dev *dev)
8097 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8099 hw->mac.ops.update_xcast_mode(hw, IXGBEVF_XCAST_MODE_NONE);
8102 static void ixgbevf_mbx_process(struct rte_eth_dev *dev)
8104 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8107 if (ixgbe_read_mbx(hw, &in_msg, 1, 0))
8110 /* PF reset VF event */
8111 if (in_msg == IXGBE_PF_CONTROL_MSG)
8112 _rte_eth_dev_callback_process(dev, RTE_ETH_EVENT_INTR_RESET, NULL);
8116 ixgbevf_dev_interrupt_get_status(struct rte_eth_dev *dev)
8119 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8120 struct ixgbe_interrupt *intr =
8121 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
8122 ixgbevf_intr_disable(hw);
8124 /* read-on-clear nic registers here */
8125 eicr = IXGBE_READ_REG(hw, IXGBE_VTEICR);
8128 /* only one misc vector supported - mailbox */
8129 eicr &= IXGBE_VTEICR_MASK;
8130 if (eicr == IXGBE_MISC_VEC_ID)
8131 intr->flags |= IXGBE_FLAG_MAILBOX;
8137 ixgbevf_dev_interrupt_action(struct rte_eth_dev *dev)
8139 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8140 struct ixgbe_interrupt *intr =
8141 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
8143 if (intr->flags & IXGBE_FLAG_MAILBOX) {
8144 ixgbevf_mbx_process(dev);
8145 intr->flags &= ~IXGBE_FLAG_MAILBOX;
8148 ixgbevf_intr_enable(hw);
8154 ixgbevf_dev_interrupt_handler(__rte_unused struct rte_intr_handle *handle,
8157 struct rte_eth_dev *dev = (struct rte_eth_dev *)param;
8159 ixgbevf_dev_interrupt_get_status(dev);
8160 ixgbevf_dev_interrupt_action(dev);
8164 * ixgbe_disable_sec_tx_path_generic - Stops the transmit data path
8165 * @hw: pointer to hardware structure
8167 * Stops the transmit data path and waits for the HW to internally empty
8168 * the Tx security block
8170 int ixgbe_disable_sec_tx_path_generic(struct ixgbe_hw *hw)
8172 #define IXGBE_MAX_SECTX_POLL 40
8177 sectxreg = IXGBE_READ_REG(hw, IXGBE_SECTXCTRL);
8178 sectxreg |= IXGBE_SECTXCTRL_TX_DIS;
8179 IXGBE_WRITE_REG(hw, IXGBE_SECTXCTRL, sectxreg);
8180 for (i = 0; i < IXGBE_MAX_SECTX_POLL; i++) {
8181 sectxreg = IXGBE_READ_REG(hw, IXGBE_SECTXSTAT);
8182 if (sectxreg & IXGBE_SECTXSTAT_SECTX_RDY)
8184 /* Use interrupt-safe sleep just in case */
8188 /* For informational purposes only */
8189 if (i >= IXGBE_MAX_SECTX_POLL)
8190 PMD_DRV_LOG(DEBUG, "Tx unit being enabled before security "
8191 "path fully disabled. Continuing with init.\n");
8193 return IXGBE_SUCCESS;
8197 * ixgbe_enable_sec_tx_path_generic - Enables the transmit data path
8198 * @hw: pointer to hardware structure
8200 * Enables the transmit data path.
8202 int ixgbe_enable_sec_tx_path_generic(struct ixgbe_hw *hw)
8206 sectxreg = IXGBE_READ_REG(hw, IXGBE_SECTXCTRL);
8207 sectxreg &= ~IXGBE_SECTXCTRL_TX_DIS;
8208 IXGBE_WRITE_REG(hw, IXGBE_SECTXCTRL, sectxreg);
8209 IXGBE_WRITE_FLUSH(hw);
8211 return IXGBE_SUCCESS;
8215 rte_pmd_ixgbe_macsec_enable(uint8_t port, uint8_t en, uint8_t rp)
8217 struct ixgbe_hw *hw;
8218 struct rte_eth_dev *dev;
8221 RTE_ETH_VALID_PORTID_OR_ERR_RET(port, -ENODEV);
8223 dev = &rte_eth_devices[port];
8224 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8226 /* Stop the data paths */
8227 if (ixgbe_disable_sec_rx_path(hw) != IXGBE_SUCCESS)
8231 * As no ixgbe_disable_sec_rx_path equivalent is
8232 * implemented for tx in the base code, and we are
8233 * not allowed to modify the base code in DPDK, so
8234 * just call the hand-written one directly for now.
8235 * The hardware support has been checked by
8236 * ixgbe_disable_sec_rx_path().
8238 ixgbe_disable_sec_tx_path_generic(hw);
8240 /* Enable Ethernet CRC (required by MACsec offload) */
8241 ctrl = IXGBE_READ_REG(hw, IXGBE_HLREG0);
8242 ctrl |= IXGBE_HLREG0_TXCRCEN | IXGBE_HLREG0_RXCRCSTRP;
8243 IXGBE_WRITE_REG(hw, IXGBE_HLREG0, ctrl);
8245 /* Enable the TX and RX crypto engines */
8246 ctrl = IXGBE_READ_REG(hw, IXGBE_SECTXCTRL);
8247 ctrl &= ~IXGBE_SECTXCTRL_SECTX_DIS;
8248 IXGBE_WRITE_REG(hw, IXGBE_SECTXCTRL, ctrl);
8250 ctrl = IXGBE_READ_REG(hw, IXGBE_SECRXCTRL);
8251 ctrl &= ~IXGBE_SECRXCTRL_SECRX_DIS;
8252 IXGBE_WRITE_REG(hw, IXGBE_SECRXCTRL, ctrl);
8254 ctrl = IXGBE_READ_REG(hw, IXGBE_SECTXMINIFG);
8255 ctrl &= ~IXGBE_SECTX_MINSECIFG_MASK;
8257 IXGBE_WRITE_REG(hw, IXGBE_SECTXMINIFG, ctrl);
8259 /* Enable SA lookup */
8260 ctrl = IXGBE_READ_REG(hw, IXGBE_LSECTXCTRL);
8261 ctrl &= ~IXGBE_LSECTXCTRL_EN_MASK;
8262 ctrl |= en ? IXGBE_LSECTXCTRL_AUTH_ENCRYPT :
8263 IXGBE_LSECTXCTRL_AUTH;
8264 ctrl |= IXGBE_LSECTXCTRL_AISCI;
8265 ctrl &= ~IXGBE_LSECTXCTRL_PNTHRSH_MASK;
8266 ctrl |= IXGBE_MACSEC_PNTHRSH & IXGBE_LSECTXCTRL_PNTHRSH_MASK;
8267 IXGBE_WRITE_REG(hw, IXGBE_LSECTXCTRL, ctrl);
8269 ctrl = IXGBE_READ_REG(hw, IXGBE_LSECRXCTRL);
8270 ctrl &= ~IXGBE_LSECRXCTRL_EN_MASK;
8271 ctrl |= IXGBE_LSECRXCTRL_STRICT << IXGBE_LSECRXCTRL_EN_SHIFT;
8272 ctrl &= ~IXGBE_LSECRXCTRL_PLSH;
8274 ctrl |= IXGBE_LSECRXCTRL_RP;
8276 ctrl &= ~IXGBE_LSECRXCTRL_RP;
8277 IXGBE_WRITE_REG(hw, IXGBE_LSECRXCTRL, ctrl);
8279 /* Start the data paths */
8280 ixgbe_enable_sec_rx_path(hw);
8283 * As no ixgbe_enable_sec_rx_path equivalent is
8284 * implemented for tx in the base code, and we are
8285 * not allowed to modify the base code in DPDK, so
8286 * just call the hand-written one directly for now.
8288 ixgbe_enable_sec_tx_path_generic(hw);
8294 rte_pmd_ixgbe_macsec_disable(uint8_t port)
8296 struct ixgbe_hw *hw;
8297 struct rte_eth_dev *dev;
8300 RTE_ETH_VALID_PORTID_OR_ERR_RET(port, -ENODEV);
8302 dev = &rte_eth_devices[port];
8303 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8305 /* Stop the data paths */
8306 if (ixgbe_disable_sec_rx_path(hw) != IXGBE_SUCCESS)
8310 * As no ixgbe_disable_sec_rx_path equivalent is
8311 * implemented for tx in the base code, and we are
8312 * not allowed to modify the base code in DPDK, so
8313 * just call the hand-written one directly for now.
8314 * The hardware support has been checked by
8315 * ixgbe_disable_sec_rx_path().
8317 ixgbe_disable_sec_tx_path_generic(hw);
8319 /* Disable the TX and RX crypto engines */
8320 ctrl = IXGBE_READ_REG(hw, IXGBE_SECTXCTRL);
8321 ctrl |= IXGBE_SECTXCTRL_SECTX_DIS;
8322 IXGBE_WRITE_REG(hw, IXGBE_SECTXCTRL, ctrl);
8324 ctrl = IXGBE_READ_REG(hw, IXGBE_SECRXCTRL);
8325 ctrl |= IXGBE_SECRXCTRL_SECRX_DIS;
8326 IXGBE_WRITE_REG(hw, IXGBE_SECRXCTRL, ctrl);
8328 /* Disable SA lookup */
8329 ctrl = IXGBE_READ_REG(hw, IXGBE_LSECTXCTRL);
8330 ctrl &= ~IXGBE_LSECTXCTRL_EN_MASK;
8331 ctrl |= IXGBE_LSECTXCTRL_DISABLE;
8332 IXGBE_WRITE_REG(hw, IXGBE_LSECTXCTRL, ctrl);
8334 ctrl = IXGBE_READ_REG(hw, IXGBE_LSECRXCTRL);
8335 ctrl &= ~IXGBE_LSECRXCTRL_EN_MASK;
8336 ctrl |= IXGBE_LSECRXCTRL_DISABLE << IXGBE_LSECRXCTRL_EN_SHIFT;
8337 IXGBE_WRITE_REG(hw, IXGBE_LSECRXCTRL, ctrl);
8339 /* Start the data paths */
8340 ixgbe_enable_sec_rx_path(hw);
8343 * As no ixgbe_enable_sec_rx_path equivalent is
8344 * implemented for tx in the base code, and we are
8345 * not allowed to modify the base code in DPDK, so
8346 * just call the hand-written one directly for now.
8348 ixgbe_enable_sec_tx_path_generic(hw);
8354 rte_pmd_ixgbe_macsec_config_txsc(uint8_t port, uint8_t *mac)
8356 struct ixgbe_hw *hw;
8357 struct rte_eth_dev *dev;
8360 RTE_ETH_VALID_PORTID_OR_ERR_RET(port, -ENODEV);
8362 dev = &rte_eth_devices[port];
8363 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8365 ctrl = mac[0] | (mac[1] << 8) | (mac[2] << 16) | (mac[3] << 24);
8366 IXGBE_WRITE_REG(hw, IXGBE_LSECTXSCL, ctrl);
8368 ctrl = mac[4] | (mac[5] << 8);
8369 IXGBE_WRITE_REG(hw, IXGBE_LSECTXSCH, ctrl);
8375 rte_pmd_ixgbe_macsec_config_rxsc(uint8_t port, uint8_t *mac, uint16_t pi)
8377 struct ixgbe_hw *hw;
8378 struct rte_eth_dev *dev;
8381 RTE_ETH_VALID_PORTID_OR_ERR_RET(port, -ENODEV);
8383 dev = &rte_eth_devices[port];
8384 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8386 ctrl = mac[0] | (mac[1] << 8) | (mac[2] << 16) | (mac[3] << 24);
8387 IXGBE_WRITE_REG(hw, IXGBE_LSECRXSCL, ctrl);
8389 pi = rte_cpu_to_be_16(pi);
8390 ctrl = mac[4] | (mac[5] << 8) | (pi << 16);
8391 IXGBE_WRITE_REG(hw, IXGBE_LSECRXSCH, ctrl);
8397 rte_pmd_ixgbe_macsec_select_txsa(uint8_t port, uint8_t idx, uint8_t an,
8398 uint32_t pn, uint8_t *key)
8400 struct ixgbe_hw *hw;
8401 struct rte_eth_dev *dev;
8404 RTE_ETH_VALID_PORTID_OR_ERR_RET(port, -ENODEV);
8406 dev = &rte_eth_devices[port];
8407 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8409 if (idx != 0 && idx != 1)
8415 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8417 /* Set the PN and key */
8418 pn = rte_cpu_to_be_32(pn);
8420 IXGBE_WRITE_REG(hw, IXGBE_LSECTXPN0, pn);
8422 for (i = 0; i < 4; i++) {
8423 ctrl = (key[i * 4 + 0] << 0) |
8424 (key[i * 4 + 1] << 8) |
8425 (key[i * 4 + 2] << 16) |
8426 (key[i * 4 + 3] << 24);
8427 IXGBE_WRITE_REG(hw, IXGBE_LSECTXKEY0(i), ctrl);
8430 IXGBE_WRITE_REG(hw, IXGBE_LSECTXPN1, pn);
8432 for (i = 0; i < 4; i++) {
8433 ctrl = (key[i * 4 + 0] << 0) |
8434 (key[i * 4 + 1] << 8) |
8435 (key[i * 4 + 2] << 16) |
8436 (key[i * 4 + 3] << 24);
8437 IXGBE_WRITE_REG(hw, IXGBE_LSECTXKEY1(i), ctrl);
8441 /* Set AN and select the SA */
8442 ctrl = (an << idx * 2) | (idx << 4);
8443 IXGBE_WRITE_REG(hw, IXGBE_LSECTXSA, ctrl);
8449 rte_pmd_ixgbe_macsec_select_rxsa(uint8_t port, uint8_t idx, uint8_t an,
8450 uint32_t pn, uint8_t *key)
8452 struct ixgbe_hw *hw;
8453 struct rte_eth_dev *dev;
8456 RTE_ETH_VALID_PORTID_OR_ERR_RET(port, -ENODEV);
8458 dev = &rte_eth_devices[port];
8459 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8461 if (idx != 0 && idx != 1)
8468 pn = rte_cpu_to_be_32(pn);
8469 IXGBE_WRITE_REG(hw, IXGBE_LSECRXPN(idx), pn);
8472 for (i = 0; i < 4; i++) {
8473 ctrl = (key[i * 4 + 0] << 0) |
8474 (key[i * 4 + 1] << 8) |
8475 (key[i * 4 + 2] << 16) |
8476 (key[i * 4 + 3] << 24);
8477 IXGBE_WRITE_REG(hw, IXGBE_LSECRXKEY(idx, i), ctrl);
8480 /* Set the AN and validate the SA */
8481 ctrl = an | (1 << 2);
8482 IXGBE_WRITE_REG(hw, IXGBE_LSECRXSA(idx), ctrl);
8487 /* restore n-tuple filter */
8489 ixgbe_ntuple_filter_restore(struct rte_eth_dev *dev)
8491 struct ixgbe_filter_info *filter_info =
8492 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
8493 struct ixgbe_5tuple_filter *node;
8495 TAILQ_FOREACH(node, &filter_info->fivetuple_list, entries) {
8496 ixgbe_inject_5tuple_filter(dev, node);
8500 /* restore ethernet type filter */
8502 ixgbe_ethertype_filter_restore(struct rte_eth_dev *dev)
8504 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8505 struct ixgbe_filter_info *filter_info =
8506 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
8509 for (i = 0; i < IXGBE_MAX_ETQF_FILTERS; i++) {
8510 if (filter_info->ethertype_mask & (1 << i)) {
8511 IXGBE_WRITE_REG(hw, IXGBE_ETQF(i),
8512 filter_info->ethertype_filters[i].etqf);
8513 IXGBE_WRITE_REG(hw, IXGBE_ETQS(i),
8514 filter_info->ethertype_filters[i].etqs);
8515 IXGBE_WRITE_FLUSH(hw);
8520 /* restore SYN filter */
8522 ixgbe_syn_filter_restore(struct rte_eth_dev *dev)
8524 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8525 struct ixgbe_filter_info *filter_info =
8526 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
8529 synqf = filter_info->syn_info;
8531 if (synqf & IXGBE_SYN_FILTER_ENABLE) {
8532 IXGBE_WRITE_REG(hw, IXGBE_SYNQF, synqf);
8533 IXGBE_WRITE_FLUSH(hw);
8537 /* restore L2 tunnel filter */
8539 ixgbe_l2_tn_filter_restore(struct rte_eth_dev *dev)
8541 struct ixgbe_l2_tn_info *l2_tn_info =
8542 IXGBE_DEV_PRIVATE_TO_L2_TN_INFO(dev->data->dev_private);
8543 struct ixgbe_l2_tn_filter *node;
8544 struct rte_eth_l2_tunnel_conf l2_tn_conf;
8546 TAILQ_FOREACH(node, &l2_tn_info->l2_tn_list, entries) {
8547 l2_tn_conf.l2_tunnel_type = node->key.l2_tn_type;
8548 l2_tn_conf.tunnel_id = node->key.tn_id;
8549 l2_tn_conf.pool = node->pool;
8550 (void)ixgbe_dev_l2_tunnel_filter_add(dev, &l2_tn_conf, TRUE);
8555 ixgbe_filter_restore(struct rte_eth_dev *dev)
8557 ixgbe_ntuple_filter_restore(dev);
8558 ixgbe_ethertype_filter_restore(dev);
8559 ixgbe_syn_filter_restore(dev);
8560 ixgbe_fdir_filter_restore(dev);
8561 ixgbe_l2_tn_filter_restore(dev);
8567 ixgbe_l2_tunnel_conf(struct rte_eth_dev *dev)
8569 struct ixgbe_l2_tn_info *l2_tn_info =
8570 IXGBE_DEV_PRIVATE_TO_L2_TN_INFO(dev->data->dev_private);
8571 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8573 if (l2_tn_info->e_tag_en)
8574 (void)ixgbe_e_tag_enable(hw);
8576 if (l2_tn_info->e_tag_fwd_en)
8577 (void)ixgbe_e_tag_forwarding_en_dis(dev, 1);
8579 (void)ixgbe_update_e_tag_eth_type(hw, l2_tn_info->e_tag_ether_type);
8582 /* remove all the n-tuple filters */
8584 ixgbe_clear_all_ntuple_filter(struct rte_eth_dev *dev)
8586 struct ixgbe_filter_info *filter_info =
8587 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
8588 struct ixgbe_5tuple_filter *p_5tuple;
8590 while ((p_5tuple = TAILQ_FIRST(&filter_info->fivetuple_list)))
8591 ixgbe_remove_5tuple_filter(dev, p_5tuple);
8594 /* remove all the ether type filters */
8596 ixgbe_clear_all_ethertype_filter(struct rte_eth_dev *dev)
8598 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8599 struct ixgbe_filter_info *filter_info =
8600 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
8603 for (i = 0; i < IXGBE_MAX_ETQF_FILTERS; i++) {
8604 if (filter_info->ethertype_mask & (1 << i) &&
8605 !filter_info->ethertype_filters[i].conf) {
8606 (void)ixgbe_ethertype_filter_remove(filter_info,
8608 IXGBE_WRITE_REG(hw, IXGBE_ETQF(i), 0);
8609 IXGBE_WRITE_REG(hw, IXGBE_ETQS(i), 0);
8610 IXGBE_WRITE_FLUSH(hw);
8615 /* remove the SYN filter */
8617 ixgbe_clear_syn_filter(struct rte_eth_dev *dev)
8619 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8620 struct ixgbe_filter_info *filter_info =
8621 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
8623 if (filter_info->syn_info & IXGBE_SYN_FILTER_ENABLE) {
8624 filter_info->syn_info = 0;
8626 IXGBE_WRITE_REG(hw, IXGBE_SYNQF, 0);
8627 IXGBE_WRITE_FLUSH(hw);
8631 /* remove all the L2 tunnel filters */
8633 ixgbe_clear_all_l2_tn_filter(struct rte_eth_dev *dev)
8635 struct ixgbe_l2_tn_info *l2_tn_info =
8636 IXGBE_DEV_PRIVATE_TO_L2_TN_INFO(dev->data->dev_private);
8637 struct ixgbe_l2_tn_filter *l2_tn_filter;
8638 struct rte_eth_l2_tunnel_conf l2_tn_conf;
8641 while ((l2_tn_filter = TAILQ_FIRST(&l2_tn_info->l2_tn_list))) {
8642 l2_tn_conf.l2_tunnel_type = l2_tn_filter->key.l2_tn_type;
8643 l2_tn_conf.tunnel_id = l2_tn_filter->key.tn_id;
8644 l2_tn_conf.pool = l2_tn_filter->pool;
8645 ret = ixgbe_dev_l2_tunnel_filter_del(dev, &l2_tn_conf);
8653 RTE_PMD_REGISTER_PCI(net_ixgbe, rte_ixgbe_pmd.pci_drv);
8654 RTE_PMD_REGISTER_PCI_TABLE(net_ixgbe, pci_id_ixgbe_map);
8655 RTE_PMD_REGISTER_KMOD_DEP(net_ixgbe, "* igb_uio | uio_pci_generic | vfio");
8656 RTE_PMD_REGISTER_PCI(net_ixgbe_vf, rte_ixgbevf_pmd.pci_drv);
8657 RTE_PMD_REGISTER_PCI_TABLE(net_ixgbe_vf, pci_id_ixgbevf_map);
8658 RTE_PMD_REGISTER_KMOD_DEP(net_ixgbe_vf, "* igb_uio | vfio");