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 #define IXGBE_EXVET_VET_EXT_SHIFT 16
159 #define IXGBE_DMATXCTL_VT_MASK 0xFFFF0000
161 static int eth_ixgbe_dev_init(struct rte_eth_dev *eth_dev);
162 static int eth_ixgbe_dev_uninit(struct rte_eth_dev *eth_dev);
163 static int ixgbe_fdir_filter_init(struct rte_eth_dev *eth_dev);
164 static int ixgbe_fdir_filter_uninit(struct rte_eth_dev *eth_dev);
165 static int ixgbe_l2_tn_filter_init(struct rte_eth_dev *eth_dev);
166 static int ixgbe_l2_tn_filter_uninit(struct rte_eth_dev *eth_dev);
167 static int ixgbe_ntuple_filter_uninit(struct rte_eth_dev *eth_dev);
168 static int ixgbe_dev_configure(struct rte_eth_dev *dev);
169 static int ixgbe_dev_start(struct rte_eth_dev *dev);
170 static void ixgbe_dev_stop(struct rte_eth_dev *dev);
171 static int ixgbe_dev_set_link_up(struct rte_eth_dev *dev);
172 static int ixgbe_dev_set_link_down(struct rte_eth_dev *dev);
173 static void ixgbe_dev_close(struct rte_eth_dev *dev);
174 static void ixgbe_dev_promiscuous_enable(struct rte_eth_dev *dev);
175 static void ixgbe_dev_promiscuous_disable(struct rte_eth_dev *dev);
176 static void ixgbe_dev_allmulticast_enable(struct rte_eth_dev *dev);
177 static void ixgbe_dev_allmulticast_disable(struct rte_eth_dev *dev);
178 static int ixgbe_dev_link_update(struct rte_eth_dev *dev,
179 int wait_to_complete);
180 static void ixgbe_dev_stats_get(struct rte_eth_dev *dev,
181 struct rte_eth_stats *stats);
182 static int ixgbe_dev_xstats_get(struct rte_eth_dev *dev,
183 struct rte_eth_xstat *xstats, unsigned n);
184 static int ixgbevf_dev_xstats_get(struct rte_eth_dev *dev,
185 struct rte_eth_xstat *xstats, unsigned n);
186 static void ixgbe_dev_stats_reset(struct rte_eth_dev *dev);
187 static void ixgbe_dev_xstats_reset(struct rte_eth_dev *dev);
188 static int ixgbe_dev_xstats_get_names(__rte_unused struct rte_eth_dev *dev,
189 struct rte_eth_xstat_name *xstats_names, __rte_unused unsigned limit);
190 static int ixgbevf_dev_xstats_get_names(__rte_unused struct rte_eth_dev *dev,
191 struct rte_eth_xstat_name *xstats_names, __rte_unused unsigned limit);
192 static int ixgbe_dev_queue_stats_mapping_set(struct rte_eth_dev *eth_dev,
196 static int ixgbe_fw_version_get(struct rte_eth_dev *dev, char *fw_version,
198 static void ixgbe_dev_info_get(struct rte_eth_dev *dev,
199 struct rte_eth_dev_info *dev_info);
200 static const uint32_t *ixgbe_dev_supported_ptypes_get(struct rte_eth_dev *dev);
201 static void ixgbevf_dev_info_get(struct rte_eth_dev *dev,
202 struct rte_eth_dev_info *dev_info);
203 static int ixgbe_dev_mtu_set(struct rte_eth_dev *dev, uint16_t mtu);
205 static int ixgbe_vlan_filter_set(struct rte_eth_dev *dev,
206 uint16_t vlan_id, int on);
207 static int ixgbe_vlan_tpid_set(struct rte_eth_dev *dev,
208 enum rte_vlan_type vlan_type,
210 static void ixgbe_vlan_hw_strip_bitmap_set(struct rte_eth_dev *dev,
211 uint16_t queue, bool on);
212 static void ixgbe_vlan_strip_queue_set(struct rte_eth_dev *dev, uint16_t queue,
214 static void ixgbe_vlan_offload_set(struct rte_eth_dev *dev, int mask);
215 static void ixgbe_vlan_hw_strip_enable(struct rte_eth_dev *dev, uint16_t queue);
216 static void ixgbe_vlan_hw_strip_disable(struct rte_eth_dev *dev, uint16_t queue);
217 static void ixgbe_vlan_hw_extend_enable(struct rte_eth_dev *dev);
218 static void ixgbe_vlan_hw_extend_disable(struct rte_eth_dev *dev);
220 static int ixgbe_dev_led_on(struct rte_eth_dev *dev);
221 static int ixgbe_dev_led_off(struct rte_eth_dev *dev);
222 static int ixgbe_flow_ctrl_get(struct rte_eth_dev *dev,
223 struct rte_eth_fc_conf *fc_conf);
224 static int ixgbe_flow_ctrl_set(struct rte_eth_dev *dev,
225 struct rte_eth_fc_conf *fc_conf);
226 static int ixgbe_priority_flow_ctrl_set(struct rte_eth_dev *dev,
227 struct rte_eth_pfc_conf *pfc_conf);
228 static int ixgbe_dev_rss_reta_update(struct rte_eth_dev *dev,
229 struct rte_eth_rss_reta_entry64 *reta_conf,
231 static int ixgbe_dev_rss_reta_query(struct rte_eth_dev *dev,
232 struct rte_eth_rss_reta_entry64 *reta_conf,
234 static void ixgbe_dev_link_status_print(struct rte_eth_dev *dev);
235 static int ixgbe_dev_lsc_interrupt_setup(struct rte_eth_dev *dev);
236 static int ixgbe_dev_macsec_interrupt_setup(struct rte_eth_dev *dev);
237 static int ixgbe_dev_rxq_interrupt_setup(struct rte_eth_dev *dev);
238 static int ixgbe_dev_interrupt_get_status(struct rte_eth_dev *dev);
239 static int ixgbe_dev_interrupt_action(struct rte_eth_dev *dev,
240 struct rte_intr_handle *handle);
241 static void ixgbe_dev_interrupt_handler(struct rte_intr_handle *handle,
243 static void ixgbe_dev_interrupt_delayed_handler(void *param);
244 static void ixgbe_add_rar(struct rte_eth_dev *dev, struct ether_addr *mac_addr,
245 uint32_t index, uint32_t pool);
246 static void ixgbe_remove_rar(struct rte_eth_dev *dev, uint32_t index);
247 static void ixgbe_set_default_mac_addr(struct rte_eth_dev *dev,
248 struct ether_addr *mac_addr);
249 static void ixgbe_dcb_init(struct ixgbe_hw *hw, struct ixgbe_dcb_config *dcb_config);
250 static bool is_device_supported(struct rte_eth_dev *dev,
251 struct eth_driver *drv);
253 /* For Virtual Function support */
254 static int eth_ixgbevf_dev_init(struct rte_eth_dev *eth_dev);
255 static int eth_ixgbevf_dev_uninit(struct rte_eth_dev *eth_dev);
256 static int ixgbevf_dev_configure(struct rte_eth_dev *dev);
257 static int ixgbevf_dev_start(struct rte_eth_dev *dev);
258 static void ixgbevf_dev_stop(struct rte_eth_dev *dev);
259 static void ixgbevf_dev_close(struct rte_eth_dev *dev);
260 static void ixgbevf_intr_disable(struct ixgbe_hw *hw);
261 static void ixgbevf_intr_enable(struct ixgbe_hw *hw);
262 static void ixgbevf_dev_stats_get(struct rte_eth_dev *dev,
263 struct rte_eth_stats *stats);
264 static void ixgbevf_dev_stats_reset(struct rte_eth_dev *dev);
265 static int ixgbevf_vlan_filter_set(struct rte_eth_dev *dev,
266 uint16_t vlan_id, int on);
267 static void ixgbevf_vlan_strip_queue_set(struct rte_eth_dev *dev,
268 uint16_t queue, int on);
269 static void ixgbevf_vlan_offload_set(struct rte_eth_dev *dev, int mask);
270 static void ixgbevf_set_vfta_all(struct rte_eth_dev *dev, bool on);
271 static int ixgbevf_dev_rx_queue_intr_enable(struct rte_eth_dev *dev,
273 static int ixgbevf_dev_rx_queue_intr_disable(struct rte_eth_dev *dev,
275 static void ixgbevf_set_ivar_map(struct ixgbe_hw *hw, int8_t direction,
276 uint8_t queue, uint8_t msix_vector);
277 static void ixgbevf_configure_msix(struct rte_eth_dev *dev);
278 static void ixgbevf_dev_allmulticast_enable(struct rte_eth_dev *dev);
279 static void ixgbevf_dev_allmulticast_disable(struct rte_eth_dev *dev);
281 /* For Eth VMDQ APIs support */
282 static int ixgbe_uc_hash_table_set(struct rte_eth_dev *dev, struct
283 ether_addr * mac_addr, uint8_t on);
284 static int ixgbe_uc_all_hash_table_set(struct rte_eth_dev *dev, uint8_t on);
285 static int ixgbe_mirror_rule_set(struct rte_eth_dev *dev,
286 struct rte_eth_mirror_conf *mirror_conf,
287 uint8_t rule_id, uint8_t on);
288 static int ixgbe_mirror_rule_reset(struct rte_eth_dev *dev,
290 static int ixgbe_dev_rx_queue_intr_enable(struct rte_eth_dev *dev,
292 static int ixgbe_dev_rx_queue_intr_disable(struct rte_eth_dev *dev,
294 static void ixgbe_set_ivar_map(struct ixgbe_hw *hw, int8_t direction,
295 uint8_t queue, uint8_t msix_vector);
296 static void ixgbe_configure_msix(struct rte_eth_dev *dev);
298 static int ixgbe_set_queue_rate_limit(struct rte_eth_dev *dev,
299 uint16_t queue_idx, uint16_t tx_rate);
301 static void ixgbevf_add_mac_addr(struct rte_eth_dev *dev,
302 struct ether_addr *mac_addr,
303 uint32_t index, uint32_t pool);
304 static void ixgbevf_remove_mac_addr(struct rte_eth_dev *dev, uint32_t index);
305 static void ixgbevf_set_default_mac_addr(struct rte_eth_dev *dev,
306 struct ether_addr *mac_addr);
307 static int ixgbe_syn_filter_get(struct rte_eth_dev *dev,
308 struct rte_eth_syn_filter *filter);
309 static int ixgbe_syn_filter_handle(struct rte_eth_dev *dev,
310 enum rte_filter_op filter_op,
312 static int ixgbe_add_5tuple_filter(struct rte_eth_dev *dev,
313 struct ixgbe_5tuple_filter *filter);
314 static void ixgbe_remove_5tuple_filter(struct rte_eth_dev *dev,
315 struct ixgbe_5tuple_filter *filter);
316 static int ixgbe_ntuple_filter_handle(struct rte_eth_dev *dev,
317 enum rte_filter_op filter_op,
319 static int ixgbe_get_ntuple_filter(struct rte_eth_dev *dev,
320 struct rte_eth_ntuple_filter *filter);
321 static int ixgbe_ethertype_filter_handle(struct rte_eth_dev *dev,
322 enum rte_filter_op filter_op,
324 static int ixgbe_get_ethertype_filter(struct rte_eth_dev *dev,
325 struct rte_eth_ethertype_filter *filter);
326 static int ixgbe_dev_filter_ctrl(struct rte_eth_dev *dev,
327 enum rte_filter_type filter_type,
328 enum rte_filter_op filter_op,
330 static int ixgbevf_dev_set_mtu(struct rte_eth_dev *dev, uint16_t mtu);
332 static int ixgbe_dev_set_mc_addr_list(struct rte_eth_dev *dev,
333 struct ether_addr *mc_addr_set,
334 uint32_t nb_mc_addr);
335 static int ixgbe_dev_get_dcb_info(struct rte_eth_dev *dev,
336 struct rte_eth_dcb_info *dcb_info);
338 static int ixgbe_get_reg_length(struct rte_eth_dev *dev);
339 static int ixgbe_get_regs(struct rte_eth_dev *dev,
340 struct rte_dev_reg_info *regs);
341 static int ixgbe_get_eeprom_length(struct rte_eth_dev *dev);
342 static int ixgbe_get_eeprom(struct rte_eth_dev *dev,
343 struct rte_dev_eeprom_info *eeprom);
344 static int ixgbe_set_eeprom(struct rte_eth_dev *dev,
345 struct rte_dev_eeprom_info *eeprom);
347 static int ixgbevf_get_reg_length(struct rte_eth_dev *dev);
348 static int ixgbevf_get_regs(struct rte_eth_dev *dev,
349 struct rte_dev_reg_info *regs);
351 static int ixgbe_timesync_enable(struct rte_eth_dev *dev);
352 static int ixgbe_timesync_disable(struct rte_eth_dev *dev);
353 static int ixgbe_timesync_read_rx_timestamp(struct rte_eth_dev *dev,
354 struct timespec *timestamp,
356 static int ixgbe_timesync_read_tx_timestamp(struct rte_eth_dev *dev,
357 struct timespec *timestamp);
358 static int ixgbe_timesync_adjust_time(struct rte_eth_dev *dev, int64_t delta);
359 static int ixgbe_timesync_read_time(struct rte_eth_dev *dev,
360 struct timespec *timestamp);
361 static int ixgbe_timesync_write_time(struct rte_eth_dev *dev,
362 const struct timespec *timestamp);
363 static void ixgbevf_dev_interrupt_handler(struct rte_intr_handle *handle,
366 static int ixgbe_dev_l2_tunnel_eth_type_conf
367 (struct rte_eth_dev *dev, struct rte_eth_l2_tunnel_conf *l2_tunnel);
368 static int ixgbe_dev_l2_tunnel_offload_set
369 (struct rte_eth_dev *dev,
370 struct rte_eth_l2_tunnel_conf *l2_tunnel,
373 static int ixgbe_dev_l2_tunnel_filter_handle(struct rte_eth_dev *dev,
374 enum rte_filter_op filter_op,
377 static int ixgbe_dev_udp_tunnel_port_add(struct rte_eth_dev *dev,
378 struct rte_eth_udp_tunnel *udp_tunnel);
379 static int ixgbe_dev_udp_tunnel_port_del(struct rte_eth_dev *dev,
380 struct rte_eth_udp_tunnel *udp_tunnel);
381 static int ixgbe_filter_restore(struct rte_eth_dev *dev);
382 static void ixgbe_l2_tunnel_conf(struct rte_eth_dev *dev);
385 * Define VF Stats MACRO for Non "cleared on read" register
387 #define UPDATE_VF_STAT(reg, last, cur) \
389 uint32_t latest = IXGBE_READ_REG(hw, reg); \
390 cur += (latest - last) & UINT_MAX; \
394 #define UPDATE_VF_STAT_36BIT(lsb, msb, last, cur) \
396 u64 new_lsb = IXGBE_READ_REG(hw, lsb); \
397 u64 new_msb = IXGBE_READ_REG(hw, msb); \
398 u64 latest = ((new_msb << 32) | new_lsb); \
399 cur += (0x1000000000LL + latest - last) & 0xFFFFFFFFFLL; \
403 #define IXGBE_SET_HWSTRIP(h, q) do {\
404 uint32_t idx = (q) / (sizeof((h)->bitmap[0]) * NBBY); \
405 uint32_t bit = (q) % (sizeof((h)->bitmap[0]) * NBBY); \
406 (h)->bitmap[idx] |= 1 << bit;\
409 #define IXGBE_CLEAR_HWSTRIP(h, q) do {\
410 uint32_t idx = (q) / (sizeof((h)->bitmap[0]) * NBBY); \
411 uint32_t bit = (q) % (sizeof((h)->bitmap[0]) * NBBY); \
412 (h)->bitmap[idx] &= ~(1 << bit);\
415 #define IXGBE_GET_HWSTRIP(h, q, r) do {\
416 uint32_t idx = (q) / (sizeof((h)->bitmap[0]) * NBBY); \
417 uint32_t bit = (q) % (sizeof((h)->bitmap[0]) * NBBY); \
418 (r) = (h)->bitmap[idx] >> bit & 1;\
422 * The set of PCI devices this driver supports
424 static const struct rte_pci_id pci_id_ixgbe_map[] = {
425 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598) },
426 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598_BX) },
427 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598AF_DUAL_PORT) },
428 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598AF_SINGLE_PORT) },
429 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598AT) },
430 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598AT2) },
431 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598EB_SFP_LOM) },
432 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598EB_CX4) },
433 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598_CX4_DUAL_PORT) },
434 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598_DA_DUAL_PORT) },
435 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598_SR_DUAL_PORT_EM) },
436 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598EB_XF_LR) },
437 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_KX4) },
438 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_KX4_MEZZ) },
439 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_KR) },
440 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_COMBO_BACKPLANE) },
441 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_SUBDEV_ID_82599_KX4_KR_MEZZ) },
442 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_CX4) },
443 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_SFP) },
444 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_SUBDEV_ID_82599_SFP) },
445 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_SUBDEV_ID_82599_RNDC) },
446 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_SUBDEV_ID_82599_560FLR) },
447 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_SUBDEV_ID_82599_ECNA_DP) },
448 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_BACKPLANE_FCOE) },
449 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_SFP_FCOE) },
450 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_SFP_EM) },
451 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_SFP_SF2) },
452 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_SFP_SF_QP) },
453 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_QSFP_SF_QP) },
454 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599EN_SFP) },
455 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_XAUI_LOM) },
456 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_T3_LOM) },
457 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_LS) },
458 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X540T) },
459 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X540T1) },
460 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_X_SFP) },
461 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_X_10G_T) },
462 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_X_1G_T) },
463 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550T) },
464 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550T1) },
465 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_KR) },
466 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_KR_L) },
467 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_SFP_N) },
468 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_SGMII) },
469 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_SGMII_L) },
470 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_10G_T) },
471 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_QSFP) },
472 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_QSFP_N) },
473 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_SFP) },
474 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_1G_T) },
475 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_1G_T_L) },
476 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_X_KX4) },
477 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_X_KR) },
478 #ifdef RTE_NIC_BYPASS
479 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_BYPASS) },
481 { .vendor_id = 0, /* sentinel */ },
485 * The set of PCI devices this driver supports (for 82599 VF)
487 static const struct rte_pci_id pci_id_ixgbevf_map[] = {
488 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_VF) },
489 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_VF_HV) },
490 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X540_VF) },
491 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X540_VF_HV) },
492 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550_VF_HV) },
493 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550_VF) },
494 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_VF) },
495 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_VF_HV) },
496 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_X_VF) },
497 { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_X_VF_HV) },
498 { .vendor_id = 0, /* sentinel */ },
501 static const struct rte_eth_desc_lim rx_desc_lim = {
502 .nb_max = IXGBE_MAX_RING_DESC,
503 .nb_min = IXGBE_MIN_RING_DESC,
504 .nb_align = IXGBE_RXD_ALIGN,
507 static const struct rte_eth_desc_lim tx_desc_lim = {
508 .nb_max = IXGBE_MAX_RING_DESC,
509 .nb_min = IXGBE_MIN_RING_DESC,
510 .nb_align = IXGBE_TXD_ALIGN,
511 .nb_seg_max = IXGBE_TX_MAX_SEG,
512 .nb_mtu_seg_max = IXGBE_TX_MAX_SEG,
515 static const struct eth_dev_ops ixgbe_eth_dev_ops = {
516 .dev_configure = ixgbe_dev_configure,
517 .dev_start = ixgbe_dev_start,
518 .dev_stop = ixgbe_dev_stop,
519 .dev_set_link_up = ixgbe_dev_set_link_up,
520 .dev_set_link_down = ixgbe_dev_set_link_down,
521 .dev_close = ixgbe_dev_close,
522 .promiscuous_enable = ixgbe_dev_promiscuous_enable,
523 .promiscuous_disable = ixgbe_dev_promiscuous_disable,
524 .allmulticast_enable = ixgbe_dev_allmulticast_enable,
525 .allmulticast_disable = ixgbe_dev_allmulticast_disable,
526 .link_update = ixgbe_dev_link_update,
527 .stats_get = ixgbe_dev_stats_get,
528 .xstats_get = ixgbe_dev_xstats_get,
529 .stats_reset = ixgbe_dev_stats_reset,
530 .xstats_reset = ixgbe_dev_xstats_reset,
531 .xstats_get_names = ixgbe_dev_xstats_get_names,
532 .queue_stats_mapping_set = ixgbe_dev_queue_stats_mapping_set,
533 .fw_version_get = ixgbe_fw_version_get,
534 .dev_infos_get = ixgbe_dev_info_get,
535 .dev_supported_ptypes_get = ixgbe_dev_supported_ptypes_get,
536 .mtu_set = ixgbe_dev_mtu_set,
537 .vlan_filter_set = ixgbe_vlan_filter_set,
538 .vlan_tpid_set = ixgbe_vlan_tpid_set,
539 .vlan_offload_set = ixgbe_vlan_offload_set,
540 .vlan_strip_queue_set = ixgbe_vlan_strip_queue_set,
541 .rx_queue_start = ixgbe_dev_rx_queue_start,
542 .rx_queue_stop = ixgbe_dev_rx_queue_stop,
543 .tx_queue_start = ixgbe_dev_tx_queue_start,
544 .tx_queue_stop = ixgbe_dev_tx_queue_stop,
545 .rx_queue_setup = ixgbe_dev_rx_queue_setup,
546 .rx_queue_intr_enable = ixgbe_dev_rx_queue_intr_enable,
547 .rx_queue_intr_disable = ixgbe_dev_rx_queue_intr_disable,
548 .rx_queue_release = ixgbe_dev_rx_queue_release,
549 .rx_queue_count = ixgbe_dev_rx_queue_count,
550 .rx_descriptor_done = ixgbe_dev_rx_descriptor_done,
551 .rx_descriptor_status = ixgbe_dev_rx_descriptor_status,
552 .tx_descriptor_status = ixgbe_dev_tx_descriptor_status,
553 .tx_queue_setup = ixgbe_dev_tx_queue_setup,
554 .tx_queue_release = ixgbe_dev_tx_queue_release,
555 .dev_led_on = ixgbe_dev_led_on,
556 .dev_led_off = ixgbe_dev_led_off,
557 .flow_ctrl_get = ixgbe_flow_ctrl_get,
558 .flow_ctrl_set = ixgbe_flow_ctrl_set,
559 .priority_flow_ctrl_set = ixgbe_priority_flow_ctrl_set,
560 .mac_addr_add = ixgbe_add_rar,
561 .mac_addr_remove = ixgbe_remove_rar,
562 .mac_addr_set = ixgbe_set_default_mac_addr,
563 .uc_hash_table_set = ixgbe_uc_hash_table_set,
564 .uc_all_hash_table_set = ixgbe_uc_all_hash_table_set,
565 .mirror_rule_set = ixgbe_mirror_rule_set,
566 .mirror_rule_reset = ixgbe_mirror_rule_reset,
567 .set_queue_rate_limit = ixgbe_set_queue_rate_limit,
568 .reta_update = ixgbe_dev_rss_reta_update,
569 .reta_query = ixgbe_dev_rss_reta_query,
570 #ifdef RTE_NIC_BYPASS
571 .bypass_init = ixgbe_bypass_init,
572 .bypass_state_set = ixgbe_bypass_state_store,
573 .bypass_state_show = ixgbe_bypass_state_show,
574 .bypass_event_set = ixgbe_bypass_event_store,
575 .bypass_event_show = ixgbe_bypass_event_show,
576 .bypass_wd_timeout_set = ixgbe_bypass_wd_timeout_store,
577 .bypass_wd_timeout_show = ixgbe_bypass_wd_timeout_show,
578 .bypass_ver_show = ixgbe_bypass_ver_show,
579 .bypass_wd_reset = ixgbe_bypass_wd_reset,
580 #endif /* RTE_NIC_BYPASS */
581 .rss_hash_update = ixgbe_dev_rss_hash_update,
582 .rss_hash_conf_get = ixgbe_dev_rss_hash_conf_get,
583 .filter_ctrl = ixgbe_dev_filter_ctrl,
584 .set_mc_addr_list = ixgbe_dev_set_mc_addr_list,
585 .rxq_info_get = ixgbe_rxq_info_get,
586 .txq_info_get = ixgbe_txq_info_get,
587 .timesync_enable = ixgbe_timesync_enable,
588 .timesync_disable = ixgbe_timesync_disable,
589 .timesync_read_rx_timestamp = ixgbe_timesync_read_rx_timestamp,
590 .timesync_read_tx_timestamp = ixgbe_timesync_read_tx_timestamp,
591 .get_reg = ixgbe_get_regs,
592 .get_eeprom_length = ixgbe_get_eeprom_length,
593 .get_eeprom = ixgbe_get_eeprom,
594 .set_eeprom = ixgbe_set_eeprom,
595 .get_dcb_info = ixgbe_dev_get_dcb_info,
596 .timesync_adjust_time = ixgbe_timesync_adjust_time,
597 .timesync_read_time = ixgbe_timesync_read_time,
598 .timesync_write_time = ixgbe_timesync_write_time,
599 .l2_tunnel_eth_type_conf = ixgbe_dev_l2_tunnel_eth_type_conf,
600 .l2_tunnel_offload_set = ixgbe_dev_l2_tunnel_offload_set,
601 .udp_tunnel_port_add = ixgbe_dev_udp_tunnel_port_add,
602 .udp_tunnel_port_del = ixgbe_dev_udp_tunnel_port_del,
606 * dev_ops for virtual function, bare necessities for basic vf
607 * operation have been implemented
609 static const struct eth_dev_ops ixgbevf_eth_dev_ops = {
610 .dev_configure = ixgbevf_dev_configure,
611 .dev_start = ixgbevf_dev_start,
612 .dev_stop = ixgbevf_dev_stop,
613 .link_update = ixgbe_dev_link_update,
614 .stats_get = ixgbevf_dev_stats_get,
615 .xstats_get = ixgbevf_dev_xstats_get,
616 .stats_reset = ixgbevf_dev_stats_reset,
617 .xstats_reset = ixgbevf_dev_stats_reset,
618 .xstats_get_names = ixgbevf_dev_xstats_get_names,
619 .dev_close = ixgbevf_dev_close,
620 .allmulticast_enable = ixgbevf_dev_allmulticast_enable,
621 .allmulticast_disable = ixgbevf_dev_allmulticast_disable,
622 .dev_infos_get = ixgbevf_dev_info_get,
623 .dev_supported_ptypes_get = ixgbe_dev_supported_ptypes_get,
624 .mtu_set = ixgbevf_dev_set_mtu,
625 .vlan_filter_set = ixgbevf_vlan_filter_set,
626 .vlan_strip_queue_set = ixgbevf_vlan_strip_queue_set,
627 .vlan_offload_set = ixgbevf_vlan_offload_set,
628 .rx_queue_setup = ixgbe_dev_rx_queue_setup,
629 .rx_queue_release = ixgbe_dev_rx_queue_release,
630 .rx_descriptor_done = ixgbe_dev_rx_descriptor_done,
631 .rx_descriptor_status = ixgbe_dev_rx_descriptor_status,
632 .tx_descriptor_status = ixgbe_dev_tx_descriptor_status,
633 .tx_queue_setup = ixgbe_dev_tx_queue_setup,
634 .tx_queue_release = ixgbe_dev_tx_queue_release,
635 .rx_queue_intr_enable = ixgbevf_dev_rx_queue_intr_enable,
636 .rx_queue_intr_disable = ixgbevf_dev_rx_queue_intr_disable,
637 .mac_addr_add = ixgbevf_add_mac_addr,
638 .mac_addr_remove = ixgbevf_remove_mac_addr,
639 .set_mc_addr_list = ixgbe_dev_set_mc_addr_list,
640 .rxq_info_get = ixgbe_rxq_info_get,
641 .txq_info_get = ixgbe_txq_info_get,
642 .mac_addr_set = ixgbevf_set_default_mac_addr,
643 .get_reg = ixgbevf_get_regs,
644 .reta_update = ixgbe_dev_rss_reta_update,
645 .reta_query = ixgbe_dev_rss_reta_query,
646 .rss_hash_update = ixgbe_dev_rss_hash_update,
647 .rss_hash_conf_get = ixgbe_dev_rss_hash_conf_get,
650 /* store statistics names and its offset in stats structure */
651 struct rte_ixgbe_xstats_name_off {
652 char name[RTE_ETH_XSTATS_NAME_SIZE];
656 static const struct rte_ixgbe_xstats_name_off rte_ixgbe_stats_strings[] = {
657 {"rx_crc_errors", offsetof(struct ixgbe_hw_stats, crcerrs)},
658 {"rx_illegal_byte_errors", offsetof(struct ixgbe_hw_stats, illerrc)},
659 {"rx_error_bytes", offsetof(struct ixgbe_hw_stats, errbc)},
660 {"mac_local_errors", offsetof(struct ixgbe_hw_stats, mlfc)},
661 {"mac_remote_errors", offsetof(struct ixgbe_hw_stats, mrfc)},
662 {"rx_length_errors", offsetof(struct ixgbe_hw_stats, rlec)},
663 {"tx_xon_packets", offsetof(struct ixgbe_hw_stats, lxontxc)},
664 {"rx_xon_packets", offsetof(struct ixgbe_hw_stats, lxonrxc)},
665 {"tx_xoff_packets", offsetof(struct ixgbe_hw_stats, lxofftxc)},
666 {"rx_xoff_packets", offsetof(struct ixgbe_hw_stats, lxoffrxc)},
667 {"rx_size_64_packets", offsetof(struct ixgbe_hw_stats, prc64)},
668 {"rx_size_65_to_127_packets", offsetof(struct ixgbe_hw_stats, prc127)},
669 {"rx_size_128_to_255_packets", offsetof(struct ixgbe_hw_stats, prc255)},
670 {"rx_size_256_to_511_packets", offsetof(struct ixgbe_hw_stats, prc511)},
671 {"rx_size_512_to_1023_packets", offsetof(struct ixgbe_hw_stats,
673 {"rx_size_1024_to_max_packets", offsetof(struct ixgbe_hw_stats,
675 {"rx_broadcast_packets", offsetof(struct ixgbe_hw_stats, bprc)},
676 {"rx_multicast_packets", offsetof(struct ixgbe_hw_stats, mprc)},
677 {"rx_fragment_errors", offsetof(struct ixgbe_hw_stats, rfc)},
678 {"rx_undersize_errors", offsetof(struct ixgbe_hw_stats, ruc)},
679 {"rx_oversize_errors", offsetof(struct ixgbe_hw_stats, roc)},
680 {"rx_jabber_errors", offsetof(struct ixgbe_hw_stats, rjc)},
681 {"rx_management_packets", offsetof(struct ixgbe_hw_stats, mngprc)},
682 {"rx_management_dropped", offsetof(struct ixgbe_hw_stats, mngpdc)},
683 {"tx_management_packets", offsetof(struct ixgbe_hw_stats, mngptc)},
684 {"rx_total_packets", offsetof(struct ixgbe_hw_stats, tpr)},
685 {"rx_total_bytes", offsetof(struct ixgbe_hw_stats, tor)},
686 {"tx_total_packets", offsetof(struct ixgbe_hw_stats, tpt)},
687 {"tx_size_64_packets", offsetof(struct ixgbe_hw_stats, ptc64)},
688 {"tx_size_65_to_127_packets", offsetof(struct ixgbe_hw_stats, ptc127)},
689 {"tx_size_128_to_255_packets", offsetof(struct ixgbe_hw_stats, ptc255)},
690 {"tx_size_256_to_511_packets", offsetof(struct ixgbe_hw_stats, ptc511)},
691 {"tx_size_512_to_1023_packets", offsetof(struct ixgbe_hw_stats,
693 {"tx_size_1024_to_max_packets", offsetof(struct ixgbe_hw_stats,
695 {"tx_multicast_packets", offsetof(struct ixgbe_hw_stats, mptc)},
696 {"tx_broadcast_packets", offsetof(struct ixgbe_hw_stats, bptc)},
697 {"rx_mac_short_packet_dropped", offsetof(struct ixgbe_hw_stats, mspdc)},
698 {"rx_l3_l4_xsum_error", offsetof(struct ixgbe_hw_stats, xec)},
700 {"flow_director_added_filters", offsetof(struct ixgbe_hw_stats,
702 {"flow_director_removed_filters", offsetof(struct ixgbe_hw_stats,
704 {"flow_director_filter_add_errors", offsetof(struct ixgbe_hw_stats,
706 {"flow_director_filter_remove_errors", offsetof(struct ixgbe_hw_stats,
708 {"flow_director_matched_filters", offsetof(struct ixgbe_hw_stats,
710 {"flow_director_missed_filters", offsetof(struct ixgbe_hw_stats,
713 {"rx_fcoe_crc_errors", offsetof(struct ixgbe_hw_stats, fccrc)},
714 {"rx_fcoe_dropped", offsetof(struct ixgbe_hw_stats, fcoerpdc)},
715 {"rx_fcoe_mbuf_allocation_errors", offsetof(struct ixgbe_hw_stats,
717 {"rx_fcoe_packets", offsetof(struct ixgbe_hw_stats, fcoeprc)},
718 {"tx_fcoe_packets", offsetof(struct ixgbe_hw_stats, fcoeptc)},
719 {"rx_fcoe_bytes", offsetof(struct ixgbe_hw_stats, fcoedwrc)},
720 {"tx_fcoe_bytes", offsetof(struct ixgbe_hw_stats, fcoedwtc)},
721 {"rx_fcoe_no_direct_data_placement", offsetof(struct ixgbe_hw_stats,
723 {"rx_fcoe_no_direct_data_placement_ext_buff",
724 offsetof(struct ixgbe_hw_stats, fcoe_noddp_ext_buff)},
726 {"tx_flow_control_xon_packets", offsetof(struct ixgbe_hw_stats,
728 {"rx_flow_control_xon_packets", offsetof(struct ixgbe_hw_stats,
730 {"tx_flow_control_xoff_packets", offsetof(struct ixgbe_hw_stats,
732 {"rx_flow_control_xoff_packets", offsetof(struct ixgbe_hw_stats,
734 {"rx_total_missed_packets", offsetof(struct ixgbe_hw_stats, mpctotal)},
737 #define IXGBE_NB_HW_STATS (sizeof(rte_ixgbe_stats_strings) / \
738 sizeof(rte_ixgbe_stats_strings[0]))
740 /* MACsec statistics */
741 static const struct rte_ixgbe_xstats_name_off rte_ixgbe_macsec_strings[] = {
742 {"out_pkts_untagged", offsetof(struct ixgbe_macsec_stats,
744 {"out_pkts_encrypted", offsetof(struct ixgbe_macsec_stats,
745 out_pkts_encrypted)},
746 {"out_pkts_protected", offsetof(struct ixgbe_macsec_stats,
747 out_pkts_protected)},
748 {"out_octets_encrypted", offsetof(struct ixgbe_macsec_stats,
749 out_octets_encrypted)},
750 {"out_octets_protected", offsetof(struct ixgbe_macsec_stats,
751 out_octets_protected)},
752 {"in_pkts_untagged", offsetof(struct ixgbe_macsec_stats,
754 {"in_pkts_badtag", offsetof(struct ixgbe_macsec_stats,
756 {"in_pkts_nosci", offsetof(struct ixgbe_macsec_stats,
758 {"in_pkts_unknownsci", offsetof(struct ixgbe_macsec_stats,
759 in_pkts_unknownsci)},
760 {"in_octets_decrypted", offsetof(struct ixgbe_macsec_stats,
761 in_octets_decrypted)},
762 {"in_octets_validated", offsetof(struct ixgbe_macsec_stats,
763 in_octets_validated)},
764 {"in_pkts_unchecked", offsetof(struct ixgbe_macsec_stats,
766 {"in_pkts_delayed", offsetof(struct ixgbe_macsec_stats,
768 {"in_pkts_late", offsetof(struct ixgbe_macsec_stats,
770 {"in_pkts_ok", offsetof(struct ixgbe_macsec_stats,
772 {"in_pkts_invalid", offsetof(struct ixgbe_macsec_stats,
774 {"in_pkts_notvalid", offsetof(struct ixgbe_macsec_stats,
776 {"in_pkts_unusedsa", offsetof(struct ixgbe_macsec_stats,
778 {"in_pkts_notusingsa", offsetof(struct ixgbe_macsec_stats,
779 in_pkts_notusingsa)},
782 #define IXGBE_NB_MACSEC_STATS (sizeof(rte_ixgbe_macsec_strings) / \
783 sizeof(rte_ixgbe_macsec_strings[0]))
785 /* Per-queue statistics */
786 static const struct rte_ixgbe_xstats_name_off rte_ixgbe_rxq_strings[] = {
787 {"mbuf_allocation_errors", offsetof(struct ixgbe_hw_stats, rnbc)},
788 {"dropped", offsetof(struct ixgbe_hw_stats, mpc)},
789 {"xon_packets", offsetof(struct ixgbe_hw_stats, pxonrxc)},
790 {"xoff_packets", offsetof(struct ixgbe_hw_stats, pxoffrxc)},
793 #define IXGBE_NB_RXQ_PRIO_STATS (sizeof(rte_ixgbe_rxq_strings) / \
794 sizeof(rte_ixgbe_rxq_strings[0]))
795 #define IXGBE_NB_RXQ_PRIO_VALUES 8
797 static const struct rte_ixgbe_xstats_name_off rte_ixgbe_txq_strings[] = {
798 {"xon_packets", offsetof(struct ixgbe_hw_stats, pxontxc)},
799 {"xoff_packets", offsetof(struct ixgbe_hw_stats, pxofftxc)},
800 {"xon_to_xoff_packets", offsetof(struct ixgbe_hw_stats,
804 #define IXGBE_NB_TXQ_PRIO_STATS (sizeof(rte_ixgbe_txq_strings) / \
805 sizeof(rte_ixgbe_txq_strings[0]))
806 #define IXGBE_NB_TXQ_PRIO_VALUES 8
808 static const struct rte_ixgbe_xstats_name_off rte_ixgbevf_stats_strings[] = {
809 {"rx_multicast_packets", offsetof(struct ixgbevf_hw_stats, vfmprc)},
812 #define IXGBEVF_NB_XSTATS (sizeof(rte_ixgbevf_stats_strings) / \
813 sizeof(rte_ixgbevf_stats_strings[0]))
816 * Atomically reads the link status information from global
817 * structure rte_eth_dev.
820 * - Pointer to the structure rte_eth_dev to read from.
821 * - Pointer to the buffer to be saved with the link status.
824 * - On success, zero.
825 * - On failure, negative value.
828 rte_ixgbe_dev_atomic_read_link_status(struct rte_eth_dev *dev,
829 struct rte_eth_link *link)
831 struct rte_eth_link *dst = link;
832 struct rte_eth_link *src = &(dev->data->dev_link);
834 if (rte_atomic64_cmpset((uint64_t *)dst, *(uint64_t *)dst,
835 *(uint64_t *)src) == 0)
842 * Atomically writes the link status information into global
843 * structure rte_eth_dev.
846 * - Pointer to the structure rte_eth_dev to read from.
847 * - Pointer to the buffer to be saved with the link status.
850 * - On success, zero.
851 * - On failure, negative value.
854 rte_ixgbe_dev_atomic_write_link_status(struct rte_eth_dev *dev,
855 struct rte_eth_link *link)
857 struct rte_eth_link *dst = &(dev->data->dev_link);
858 struct rte_eth_link *src = link;
860 if (rte_atomic64_cmpset((uint64_t *)dst, *(uint64_t *)dst,
861 *(uint64_t *)src) == 0)
868 * This function is the same as ixgbe_is_sfp() in base/ixgbe.h.
871 ixgbe_is_sfp(struct ixgbe_hw *hw)
873 switch (hw->phy.type) {
874 case ixgbe_phy_sfp_avago:
875 case ixgbe_phy_sfp_ftl:
876 case ixgbe_phy_sfp_intel:
877 case ixgbe_phy_sfp_unknown:
878 case ixgbe_phy_sfp_passive_tyco:
879 case ixgbe_phy_sfp_passive_unknown:
886 static inline int32_t
887 ixgbe_pf_reset_hw(struct ixgbe_hw *hw)
892 status = ixgbe_reset_hw(hw);
894 ctrl_ext = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT);
895 /* Set PF Reset Done bit so PF/VF Mail Ops can work */
896 ctrl_ext |= IXGBE_CTRL_EXT_PFRSTD;
897 IXGBE_WRITE_REG(hw, IXGBE_CTRL_EXT, ctrl_ext);
898 IXGBE_WRITE_FLUSH(hw);
900 if (status == IXGBE_ERR_SFP_NOT_PRESENT)
901 status = IXGBE_SUCCESS;
906 ixgbe_enable_intr(struct rte_eth_dev *dev)
908 struct ixgbe_interrupt *intr =
909 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
910 struct ixgbe_hw *hw =
911 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
913 IXGBE_WRITE_REG(hw, IXGBE_EIMS, intr->mask);
914 IXGBE_WRITE_FLUSH(hw);
918 * This function is based on ixgbe_disable_intr() in base/ixgbe.h.
921 ixgbe_disable_intr(struct ixgbe_hw *hw)
923 PMD_INIT_FUNC_TRACE();
925 if (hw->mac.type == ixgbe_mac_82598EB) {
926 IXGBE_WRITE_REG(hw, IXGBE_EIMC, ~0);
928 IXGBE_WRITE_REG(hw, IXGBE_EIMC, 0xFFFF0000);
929 IXGBE_WRITE_REG(hw, IXGBE_EIMC_EX(0), ~0);
930 IXGBE_WRITE_REG(hw, IXGBE_EIMC_EX(1), ~0);
932 IXGBE_WRITE_FLUSH(hw);
936 * This function resets queue statistics mapping registers.
937 * From Niantic datasheet, Initialization of Statistics section:
938 * "...if software requires the queue counters, the RQSMR and TQSM registers
939 * must be re-programmed following a device reset.
942 ixgbe_reset_qstat_mappings(struct ixgbe_hw *hw)
946 for (i = 0; i != IXGBE_NB_STAT_MAPPING_REGS; i++) {
947 IXGBE_WRITE_REG(hw, IXGBE_RQSMR(i), 0);
948 IXGBE_WRITE_REG(hw, IXGBE_TQSM(i), 0);
954 ixgbe_dev_queue_stats_mapping_set(struct rte_eth_dev *eth_dev,
959 #define QSM_REG_NB_BITS_PER_QMAP_FIELD 8
960 #define NB_QMAP_FIELDS_PER_QSM_REG 4
961 #define QMAP_FIELD_RESERVED_BITS_MASK 0x0f
963 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(eth_dev->data->dev_private);
964 struct ixgbe_stat_mapping_registers *stat_mappings =
965 IXGBE_DEV_PRIVATE_TO_STAT_MAPPINGS(eth_dev->data->dev_private);
966 uint32_t qsmr_mask = 0;
967 uint32_t clearing_mask = QMAP_FIELD_RESERVED_BITS_MASK;
971 if ((hw->mac.type != ixgbe_mac_82599EB) &&
972 (hw->mac.type != ixgbe_mac_X540) &&
973 (hw->mac.type != ixgbe_mac_X550) &&
974 (hw->mac.type != ixgbe_mac_X550EM_x) &&
975 (hw->mac.type != ixgbe_mac_X550EM_a))
978 PMD_INIT_LOG(DEBUG, "Setting port %d, %s queue_id %d to stat index %d",
979 (int)(eth_dev->data->port_id), is_rx ? "RX" : "TX",
982 n = (uint8_t)(queue_id / NB_QMAP_FIELDS_PER_QSM_REG);
983 if (n >= IXGBE_NB_STAT_MAPPING_REGS) {
984 PMD_INIT_LOG(ERR, "Nb of stat mapping registers exceeded");
987 offset = (uint8_t)(queue_id % NB_QMAP_FIELDS_PER_QSM_REG);
989 /* Now clear any previous stat_idx set */
990 clearing_mask <<= (QSM_REG_NB_BITS_PER_QMAP_FIELD * offset);
992 stat_mappings->tqsm[n] &= ~clearing_mask;
994 stat_mappings->rqsmr[n] &= ~clearing_mask;
996 q_map = (uint32_t)stat_idx;
997 q_map &= QMAP_FIELD_RESERVED_BITS_MASK;
998 qsmr_mask = q_map << (QSM_REG_NB_BITS_PER_QMAP_FIELD * offset);
1000 stat_mappings->tqsm[n] |= qsmr_mask;
1002 stat_mappings->rqsmr[n] |= qsmr_mask;
1004 PMD_INIT_LOG(DEBUG, "Set port %d, %s queue_id %d to stat index %d",
1005 (int)(eth_dev->data->port_id), is_rx ? "RX" : "TX",
1006 queue_id, stat_idx);
1007 PMD_INIT_LOG(DEBUG, "%s[%d] = 0x%08x", is_rx ? "RQSMR" : "TQSM", n,
1008 is_rx ? stat_mappings->rqsmr[n] : stat_mappings->tqsm[n]);
1010 /* Now write the mapping in the appropriate register */
1012 PMD_INIT_LOG(DEBUG, "Write 0x%x to RX IXGBE stat mapping reg:%d",
1013 stat_mappings->rqsmr[n], n);
1014 IXGBE_WRITE_REG(hw, IXGBE_RQSMR(n), stat_mappings->rqsmr[n]);
1016 PMD_INIT_LOG(DEBUG, "Write 0x%x to TX IXGBE stat mapping reg:%d",
1017 stat_mappings->tqsm[n], n);
1018 IXGBE_WRITE_REG(hw, IXGBE_TQSM(n), stat_mappings->tqsm[n]);
1024 ixgbe_restore_statistics_mapping(struct rte_eth_dev *dev)
1026 struct ixgbe_stat_mapping_registers *stat_mappings =
1027 IXGBE_DEV_PRIVATE_TO_STAT_MAPPINGS(dev->data->dev_private);
1028 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1031 /* write whatever was in stat mapping table to the NIC */
1032 for (i = 0; i < IXGBE_NB_STAT_MAPPING_REGS; i++) {
1034 IXGBE_WRITE_REG(hw, IXGBE_RQSMR(i), stat_mappings->rqsmr[i]);
1037 IXGBE_WRITE_REG(hw, IXGBE_TQSM(i), stat_mappings->tqsm[i]);
1042 ixgbe_dcb_init(struct ixgbe_hw *hw, struct ixgbe_dcb_config *dcb_config)
1045 struct ixgbe_dcb_tc_config *tc;
1046 uint8_t dcb_max_tc = IXGBE_DCB_MAX_TRAFFIC_CLASS;
1048 dcb_config->num_tcs.pg_tcs = dcb_max_tc;
1049 dcb_config->num_tcs.pfc_tcs = dcb_max_tc;
1050 for (i = 0; i < dcb_max_tc; i++) {
1051 tc = &dcb_config->tc_config[i];
1052 tc->path[IXGBE_DCB_TX_CONFIG].bwg_id = i;
1053 tc->path[IXGBE_DCB_TX_CONFIG].bwg_percent =
1054 (uint8_t)(100/dcb_max_tc + (i & 1));
1055 tc->path[IXGBE_DCB_RX_CONFIG].bwg_id = i;
1056 tc->path[IXGBE_DCB_RX_CONFIG].bwg_percent =
1057 (uint8_t)(100/dcb_max_tc + (i & 1));
1058 tc->pfc = ixgbe_dcb_pfc_disabled;
1061 /* Initialize default user to priority mapping, UPx->TC0 */
1062 tc = &dcb_config->tc_config[0];
1063 tc->path[IXGBE_DCB_TX_CONFIG].up_to_tc_bitmap = 0xFF;
1064 tc->path[IXGBE_DCB_RX_CONFIG].up_to_tc_bitmap = 0xFF;
1065 for (i = 0; i < IXGBE_DCB_MAX_BW_GROUP; i++) {
1066 dcb_config->bw_percentage[IXGBE_DCB_TX_CONFIG][i] = 100;
1067 dcb_config->bw_percentage[IXGBE_DCB_RX_CONFIG][i] = 100;
1069 dcb_config->rx_pba_cfg = ixgbe_dcb_pba_equal;
1070 dcb_config->pfc_mode_enable = false;
1071 dcb_config->vt_mode = true;
1072 dcb_config->round_robin_enable = false;
1073 /* support all DCB capabilities in 82599 */
1074 dcb_config->support.capabilities = 0xFF;
1076 /*we only support 4 Tcs for X540, X550 */
1077 if (hw->mac.type == ixgbe_mac_X540 ||
1078 hw->mac.type == ixgbe_mac_X550 ||
1079 hw->mac.type == ixgbe_mac_X550EM_x ||
1080 hw->mac.type == ixgbe_mac_X550EM_a) {
1081 dcb_config->num_tcs.pg_tcs = 4;
1082 dcb_config->num_tcs.pfc_tcs = 4;
1087 * Ensure that all locks are released before first NVM or PHY access
1090 ixgbe_swfw_lock_reset(struct ixgbe_hw *hw)
1095 * Phy lock should not fail in this early stage. If this is the case,
1096 * it is due to an improper exit of the application.
1097 * So force the release of the faulty lock. Release of common lock
1098 * is done automatically by swfw_sync function.
1100 mask = IXGBE_GSSR_PHY0_SM << hw->bus.func;
1101 if (ixgbe_acquire_swfw_semaphore(hw, mask) < 0) {
1102 PMD_DRV_LOG(DEBUG, "SWFW phy%d lock released", hw->bus.func);
1104 ixgbe_release_swfw_semaphore(hw, mask);
1107 * These ones are more tricky since they are common to all ports; but
1108 * swfw_sync retries last long enough (1s) to be almost sure that if
1109 * lock can not be taken it is due to an improper lock of the
1112 mask = IXGBE_GSSR_EEP_SM | IXGBE_GSSR_MAC_CSR_SM | IXGBE_GSSR_SW_MNG_SM;
1113 if (ixgbe_acquire_swfw_semaphore(hw, mask) < 0) {
1114 PMD_DRV_LOG(DEBUG, "SWFW common locks released");
1116 ixgbe_release_swfw_semaphore(hw, mask);
1120 * This function is based on code in ixgbe_attach() in base/ixgbe.c.
1121 * It returns 0 on success.
1124 eth_ixgbe_dev_init(struct rte_eth_dev *eth_dev)
1126 struct rte_pci_device *pci_dev = IXGBE_DEV_TO_PCI(eth_dev);
1127 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
1128 struct ixgbe_hw *hw =
1129 IXGBE_DEV_PRIVATE_TO_HW(eth_dev->data->dev_private);
1130 struct ixgbe_vfta *shadow_vfta =
1131 IXGBE_DEV_PRIVATE_TO_VFTA(eth_dev->data->dev_private);
1132 struct ixgbe_hwstrip *hwstrip =
1133 IXGBE_DEV_PRIVATE_TO_HWSTRIP_BITMAP(eth_dev->data->dev_private);
1134 struct ixgbe_dcb_config *dcb_config =
1135 IXGBE_DEV_PRIVATE_TO_DCB_CFG(eth_dev->data->dev_private);
1136 struct ixgbe_filter_info *filter_info =
1137 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(eth_dev->data->dev_private);
1138 struct ixgbe_bw_conf *bw_conf =
1139 IXGBE_DEV_PRIVATE_TO_BW_CONF(eth_dev->data->dev_private);
1144 PMD_INIT_FUNC_TRACE();
1146 eth_dev->dev_ops = &ixgbe_eth_dev_ops;
1147 eth_dev->rx_pkt_burst = &ixgbe_recv_pkts;
1148 eth_dev->tx_pkt_burst = &ixgbe_xmit_pkts;
1149 eth_dev->tx_pkt_prepare = &ixgbe_prep_pkts;
1152 * For secondary processes, we don't initialise any further as primary
1153 * has already done this work. Only check we don't need a different
1154 * RX and TX function.
1156 if (rte_eal_process_type() != RTE_PROC_PRIMARY) {
1157 struct ixgbe_tx_queue *txq;
1158 /* TX queue function in primary, set by last queue initialized
1159 * Tx queue may not initialized by primary process
1161 if (eth_dev->data->tx_queues) {
1162 txq = eth_dev->data->tx_queues[eth_dev->data->nb_tx_queues-1];
1163 ixgbe_set_tx_function(eth_dev, txq);
1165 /* Use default TX function if we get here */
1166 PMD_INIT_LOG(NOTICE, "No TX queues configured yet. "
1167 "Using default TX function.");
1170 ixgbe_set_rx_function(eth_dev);
1175 rte_eth_copy_pci_info(eth_dev, pci_dev);
1176 eth_dev->data->dev_flags |= RTE_ETH_DEV_DETACHABLE;
1178 /* Vendor and Device ID need to be set before init of shared code */
1179 hw->device_id = pci_dev->id.device_id;
1180 hw->vendor_id = pci_dev->id.vendor_id;
1181 hw->hw_addr = (void *)pci_dev->mem_resource[0].addr;
1182 hw->allow_unsupported_sfp = 1;
1184 /* Initialize the shared code (base driver) */
1185 #ifdef RTE_NIC_BYPASS
1186 diag = ixgbe_bypass_init_shared_code(hw);
1188 diag = ixgbe_init_shared_code(hw);
1189 #endif /* RTE_NIC_BYPASS */
1191 if (diag != IXGBE_SUCCESS) {
1192 PMD_INIT_LOG(ERR, "Shared code init failed: %d", diag);
1196 /* pick up the PCI bus settings for reporting later */
1197 ixgbe_get_bus_info(hw);
1199 /* Unlock any pending hardware semaphore */
1200 ixgbe_swfw_lock_reset(hw);
1202 /* Initialize DCB configuration*/
1203 memset(dcb_config, 0, sizeof(struct ixgbe_dcb_config));
1204 ixgbe_dcb_init(hw, dcb_config);
1205 /* Get Hardware Flow Control setting */
1206 hw->fc.requested_mode = ixgbe_fc_full;
1207 hw->fc.current_mode = ixgbe_fc_full;
1208 hw->fc.pause_time = IXGBE_FC_PAUSE;
1209 for (i = 0; i < IXGBE_DCB_MAX_TRAFFIC_CLASS; i++) {
1210 hw->fc.low_water[i] = IXGBE_FC_LO;
1211 hw->fc.high_water[i] = IXGBE_FC_HI;
1213 hw->fc.send_xon = 1;
1215 /* Make sure we have a good EEPROM before we read from it */
1216 diag = ixgbe_validate_eeprom_checksum(hw, &csum);
1217 if (diag != IXGBE_SUCCESS) {
1218 PMD_INIT_LOG(ERR, "The EEPROM checksum is not valid: %d", diag);
1222 #ifdef RTE_NIC_BYPASS
1223 diag = ixgbe_bypass_init_hw(hw);
1225 diag = ixgbe_init_hw(hw);
1226 #endif /* RTE_NIC_BYPASS */
1229 * Devices with copper phys will fail to initialise if ixgbe_init_hw()
1230 * is called too soon after the kernel driver unbinding/binding occurs.
1231 * The failure occurs in ixgbe_identify_phy_generic() for all devices,
1232 * but for non-copper devies, ixgbe_identify_sfp_module_generic() is
1233 * also called. See ixgbe_identify_phy_82599(). The reason for the
1234 * failure is not known, and only occuts when virtualisation features
1235 * are disabled in the bios. A delay of 100ms was found to be enough by
1236 * trial-and-error, and is doubled to be safe.
1238 if (diag && (hw->mac.ops.get_media_type(hw) == ixgbe_media_type_copper)) {
1240 diag = ixgbe_init_hw(hw);
1243 if (diag == IXGBE_ERR_SFP_NOT_PRESENT)
1244 diag = IXGBE_SUCCESS;
1246 if (diag == IXGBE_ERR_EEPROM_VERSION) {
1247 PMD_INIT_LOG(ERR, "This device is a pre-production adapter/"
1248 "LOM. Please be aware there may be issues associated "
1249 "with your hardware.");
1250 PMD_INIT_LOG(ERR, "If you are experiencing problems "
1251 "please contact your Intel or hardware representative "
1252 "who provided you with this hardware.");
1253 } else if (diag == IXGBE_ERR_SFP_NOT_SUPPORTED)
1254 PMD_INIT_LOG(ERR, "Unsupported SFP+ Module");
1256 PMD_INIT_LOG(ERR, "Hardware Initialization Failure: %d", diag);
1260 /* Reset the hw statistics */
1261 ixgbe_dev_stats_reset(eth_dev);
1263 /* disable interrupt */
1264 ixgbe_disable_intr(hw);
1266 /* reset mappings for queue statistics hw counters*/
1267 ixgbe_reset_qstat_mappings(hw);
1269 /* Allocate memory for storing MAC addresses */
1270 eth_dev->data->mac_addrs = rte_zmalloc("ixgbe", ETHER_ADDR_LEN *
1271 hw->mac.num_rar_entries, 0);
1272 if (eth_dev->data->mac_addrs == NULL) {
1274 "Failed to allocate %u bytes needed to store "
1276 ETHER_ADDR_LEN * hw->mac.num_rar_entries);
1279 /* Copy the permanent MAC address */
1280 ether_addr_copy((struct ether_addr *) hw->mac.perm_addr,
1281 ð_dev->data->mac_addrs[0]);
1283 /* Allocate memory for storing hash filter MAC addresses */
1284 eth_dev->data->hash_mac_addrs = rte_zmalloc("ixgbe", ETHER_ADDR_LEN *
1285 IXGBE_VMDQ_NUM_UC_MAC, 0);
1286 if (eth_dev->data->hash_mac_addrs == NULL) {
1288 "Failed to allocate %d bytes needed to store MAC addresses",
1289 ETHER_ADDR_LEN * IXGBE_VMDQ_NUM_UC_MAC);
1293 /* initialize the vfta */
1294 memset(shadow_vfta, 0, sizeof(*shadow_vfta));
1296 /* initialize the hw strip bitmap*/
1297 memset(hwstrip, 0, sizeof(*hwstrip));
1299 /* initialize PF if max_vfs not zero */
1300 ixgbe_pf_host_init(eth_dev);
1302 ctrl_ext = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT);
1303 /* let hardware know driver is loaded */
1304 ctrl_ext |= IXGBE_CTRL_EXT_DRV_LOAD;
1305 /* Set PF Reset Done bit so PF/VF Mail Ops can work */
1306 ctrl_ext |= IXGBE_CTRL_EXT_PFRSTD;
1307 IXGBE_WRITE_REG(hw, IXGBE_CTRL_EXT, ctrl_ext);
1308 IXGBE_WRITE_FLUSH(hw);
1310 if (ixgbe_is_sfp(hw) && hw->phy.sfp_type != ixgbe_sfp_type_not_present)
1311 PMD_INIT_LOG(DEBUG, "MAC: %d, PHY: %d, SFP+: %d",
1312 (int) hw->mac.type, (int) hw->phy.type,
1313 (int) hw->phy.sfp_type);
1315 PMD_INIT_LOG(DEBUG, "MAC: %d, PHY: %d",
1316 (int) hw->mac.type, (int) hw->phy.type);
1318 PMD_INIT_LOG(DEBUG, "port %d vendorID=0x%x deviceID=0x%x",
1319 eth_dev->data->port_id, pci_dev->id.vendor_id,
1320 pci_dev->id.device_id);
1322 rte_intr_callback_register(intr_handle,
1323 ixgbe_dev_interrupt_handler, eth_dev);
1325 /* enable uio/vfio intr/eventfd mapping */
1326 rte_intr_enable(intr_handle);
1328 /* enable support intr */
1329 ixgbe_enable_intr(eth_dev);
1331 /* initialize filter info */
1332 memset(filter_info, 0,
1333 sizeof(struct ixgbe_filter_info));
1335 /* initialize 5tuple filter list */
1336 TAILQ_INIT(&filter_info->fivetuple_list);
1338 /* initialize flow director filter list & hash */
1339 ixgbe_fdir_filter_init(eth_dev);
1341 /* initialize l2 tunnel filter list & hash */
1342 ixgbe_l2_tn_filter_init(eth_dev);
1344 TAILQ_INIT(&filter_ntuple_list);
1345 TAILQ_INIT(&filter_ethertype_list);
1346 TAILQ_INIT(&filter_syn_list);
1347 TAILQ_INIT(&filter_fdir_list);
1348 TAILQ_INIT(&filter_l2_tunnel_list);
1349 TAILQ_INIT(&ixgbe_flow_list);
1351 /* initialize bandwidth configuration info */
1352 memset(bw_conf, 0, sizeof(struct ixgbe_bw_conf));
1358 eth_ixgbe_dev_uninit(struct rte_eth_dev *eth_dev)
1360 struct rte_pci_device *pci_dev = IXGBE_DEV_TO_PCI(eth_dev);
1361 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
1362 struct ixgbe_hw *hw;
1364 PMD_INIT_FUNC_TRACE();
1366 if (rte_eal_process_type() != RTE_PROC_PRIMARY)
1369 hw = IXGBE_DEV_PRIVATE_TO_HW(eth_dev->data->dev_private);
1371 if (hw->adapter_stopped == 0)
1372 ixgbe_dev_close(eth_dev);
1374 eth_dev->dev_ops = NULL;
1375 eth_dev->rx_pkt_burst = NULL;
1376 eth_dev->tx_pkt_burst = NULL;
1378 /* Unlock any pending hardware semaphore */
1379 ixgbe_swfw_lock_reset(hw);
1381 /* disable uio intr before callback unregister */
1382 rte_intr_disable(intr_handle);
1383 rte_intr_callback_unregister(intr_handle,
1384 ixgbe_dev_interrupt_handler, eth_dev);
1386 /* uninitialize PF if max_vfs not zero */
1387 ixgbe_pf_host_uninit(eth_dev);
1389 rte_free(eth_dev->data->mac_addrs);
1390 eth_dev->data->mac_addrs = NULL;
1392 rte_free(eth_dev->data->hash_mac_addrs);
1393 eth_dev->data->hash_mac_addrs = NULL;
1395 /* remove all the fdir filters & hash */
1396 ixgbe_fdir_filter_uninit(eth_dev);
1398 /* remove all the L2 tunnel filters & hash */
1399 ixgbe_l2_tn_filter_uninit(eth_dev);
1401 /* Remove all ntuple filters of the device */
1402 ixgbe_ntuple_filter_uninit(eth_dev);
1404 /* clear all the filters list */
1405 ixgbe_filterlist_flush();
1410 static int ixgbe_ntuple_filter_uninit(struct rte_eth_dev *eth_dev)
1412 struct ixgbe_filter_info *filter_info =
1413 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(eth_dev->data->dev_private);
1414 struct ixgbe_5tuple_filter *p_5tuple;
1416 while ((p_5tuple = TAILQ_FIRST(&filter_info->fivetuple_list))) {
1417 TAILQ_REMOVE(&filter_info->fivetuple_list,
1422 memset(filter_info->fivetuple_mask, 0,
1423 sizeof(uint32_t) * IXGBE_5TUPLE_ARRAY_SIZE);
1428 static int ixgbe_fdir_filter_uninit(struct rte_eth_dev *eth_dev)
1430 struct ixgbe_hw_fdir_info *fdir_info =
1431 IXGBE_DEV_PRIVATE_TO_FDIR_INFO(eth_dev->data->dev_private);
1432 struct ixgbe_fdir_filter *fdir_filter;
1434 if (fdir_info->hash_map)
1435 rte_free(fdir_info->hash_map);
1436 if (fdir_info->hash_handle)
1437 rte_hash_free(fdir_info->hash_handle);
1439 while ((fdir_filter = TAILQ_FIRST(&fdir_info->fdir_list))) {
1440 TAILQ_REMOVE(&fdir_info->fdir_list,
1443 rte_free(fdir_filter);
1449 static int ixgbe_l2_tn_filter_uninit(struct rte_eth_dev *eth_dev)
1451 struct ixgbe_l2_tn_info *l2_tn_info =
1452 IXGBE_DEV_PRIVATE_TO_L2_TN_INFO(eth_dev->data->dev_private);
1453 struct ixgbe_l2_tn_filter *l2_tn_filter;
1455 if (l2_tn_info->hash_map)
1456 rte_free(l2_tn_info->hash_map);
1457 if (l2_tn_info->hash_handle)
1458 rte_hash_free(l2_tn_info->hash_handle);
1460 while ((l2_tn_filter = TAILQ_FIRST(&l2_tn_info->l2_tn_list))) {
1461 TAILQ_REMOVE(&l2_tn_info->l2_tn_list,
1464 rte_free(l2_tn_filter);
1470 static int ixgbe_fdir_filter_init(struct rte_eth_dev *eth_dev)
1472 struct ixgbe_hw_fdir_info *fdir_info =
1473 IXGBE_DEV_PRIVATE_TO_FDIR_INFO(eth_dev->data->dev_private);
1474 char fdir_hash_name[RTE_HASH_NAMESIZE];
1475 struct rte_hash_parameters fdir_hash_params = {
1476 .name = fdir_hash_name,
1477 .entries = IXGBE_MAX_FDIR_FILTER_NUM,
1478 .key_len = sizeof(union ixgbe_atr_input),
1479 .hash_func = rte_hash_crc,
1480 .hash_func_init_val = 0,
1481 .socket_id = rte_socket_id(),
1484 TAILQ_INIT(&fdir_info->fdir_list);
1485 snprintf(fdir_hash_name, RTE_HASH_NAMESIZE,
1486 "fdir_%s", eth_dev->data->name);
1487 fdir_info->hash_handle = rte_hash_create(&fdir_hash_params);
1488 if (!fdir_info->hash_handle) {
1489 PMD_INIT_LOG(ERR, "Failed to create fdir hash table!");
1492 fdir_info->hash_map = rte_zmalloc("ixgbe",
1493 sizeof(struct ixgbe_fdir_filter *) *
1494 IXGBE_MAX_FDIR_FILTER_NUM,
1496 if (!fdir_info->hash_map) {
1498 "Failed to allocate memory for fdir hash map!");
1501 fdir_info->mask_added = FALSE;
1506 static int ixgbe_l2_tn_filter_init(struct rte_eth_dev *eth_dev)
1508 struct ixgbe_l2_tn_info *l2_tn_info =
1509 IXGBE_DEV_PRIVATE_TO_L2_TN_INFO(eth_dev->data->dev_private);
1510 char l2_tn_hash_name[RTE_HASH_NAMESIZE];
1511 struct rte_hash_parameters l2_tn_hash_params = {
1512 .name = l2_tn_hash_name,
1513 .entries = IXGBE_MAX_L2_TN_FILTER_NUM,
1514 .key_len = sizeof(struct ixgbe_l2_tn_key),
1515 .hash_func = rte_hash_crc,
1516 .hash_func_init_val = 0,
1517 .socket_id = rte_socket_id(),
1520 TAILQ_INIT(&l2_tn_info->l2_tn_list);
1521 snprintf(l2_tn_hash_name, RTE_HASH_NAMESIZE,
1522 "l2_tn_%s", eth_dev->data->name);
1523 l2_tn_info->hash_handle = rte_hash_create(&l2_tn_hash_params);
1524 if (!l2_tn_info->hash_handle) {
1525 PMD_INIT_LOG(ERR, "Failed to create L2 TN hash table!");
1528 l2_tn_info->hash_map = rte_zmalloc("ixgbe",
1529 sizeof(struct ixgbe_l2_tn_filter *) *
1530 IXGBE_MAX_L2_TN_FILTER_NUM,
1532 if (!l2_tn_info->hash_map) {
1534 "Failed to allocate memory for L2 TN hash map!");
1537 l2_tn_info->e_tag_en = FALSE;
1538 l2_tn_info->e_tag_fwd_en = FALSE;
1539 l2_tn_info->e_tag_ether_type = DEFAULT_ETAG_ETYPE;
1544 * Negotiate mailbox API version with the PF.
1545 * After reset API version is always set to the basic one (ixgbe_mbox_api_10).
1546 * Then we try to negotiate starting with the most recent one.
1547 * If all negotiation attempts fail, then we will proceed with
1548 * the default one (ixgbe_mbox_api_10).
1551 ixgbevf_negotiate_api(struct ixgbe_hw *hw)
1555 /* start with highest supported, proceed down */
1556 static const enum ixgbe_pfvf_api_rev sup_ver[] = {
1563 i != RTE_DIM(sup_ver) &&
1564 ixgbevf_negotiate_api_version(hw, sup_ver[i]) != 0;
1570 generate_random_mac_addr(struct ether_addr *mac_addr)
1574 /* Set Organizationally Unique Identifier (OUI) prefix. */
1575 mac_addr->addr_bytes[0] = 0x00;
1576 mac_addr->addr_bytes[1] = 0x09;
1577 mac_addr->addr_bytes[2] = 0xC0;
1578 /* Force indication of locally assigned MAC address. */
1579 mac_addr->addr_bytes[0] |= ETHER_LOCAL_ADMIN_ADDR;
1580 /* Generate the last 3 bytes of the MAC address with a random number. */
1581 random = rte_rand();
1582 memcpy(&mac_addr->addr_bytes[3], &random, 3);
1586 * Virtual Function device init
1589 eth_ixgbevf_dev_init(struct rte_eth_dev *eth_dev)
1593 struct rte_pci_device *pci_dev = IXGBE_DEV_TO_PCI(eth_dev);
1594 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
1595 struct ixgbe_hw *hw =
1596 IXGBE_DEV_PRIVATE_TO_HW(eth_dev->data->dev_private);
1597 struct ixgbe_vfta *shadow_vfta =
1598 IXGBE_DEV_PRIVATE_TO_VFTA(eth_dev->data->dev_private);
1599 struct ixgbe_hwstrip *hwstrip =
1600 IXGBE_DEV_PRIVATE_TO_HWSTRIP_BITMAP(eth_dev->data->dev_private);
1601 struct ether_addr *perm_addr = (struct ether_addr *) hw->mac.perm_addr;
1603 PMD_INIT_FUNC_TRACE();
1605 eth_dev->dev_ops = &ixgbevf_eth_dev_ops;
1606 eth_dev->rx_pkt_burst = &ixgbe_recv_pkts;
1607 eth_dev->tx_pkt_burst = &ixgbe_xmit_pkts;
1609 /* for secondary processes, we don't initialise any further as primary
1610 * has already done this work. Only check we don't need a different
1613 if (rte_eal_process_type() != RTE_PROC_PRIMARY) {
1614 struct ixgbe_tx_queue *txq;
1615 /* TX queue function in primary, set by last queue initialized
1616 * Tx queue may not initialized by primary process
1618 if (eth_dev->data->tx_queues) {
1619 txq = eth_dev->data->tx_queues[eth_dev->data->nb_tx_queues - 1];
1620 ixgbe_set_tx_function(eth_dev, txq);
1622 /* Use default TX function if we get here */
1623 PMD_INIT_LOG(NOTICE,
1624 "No TX queues configured yet. Using default TX function.");
1627 ixgbe_set_rx_function(eth_dev);
1632 rte_eth_copy_pci_info(eth_dev, pci_dev);
1633 eth_dev->data->dev_flags |= RTE_ETH_DEV_DETACHABLE;
1635 hw->device_id = pci_dev->id.device_id;
1636 hw->vendor_id = pci_dev->id.vendor_id;
1637 hw->hw_addr = (void *)pci_dev->mem_resource[0].addr;
1639 /* initialize the vfta */
1640 memset(shadow_vfta, 0, sizeof(*shadow_vfta));
1642 /* initialize the hw strip bitmap*/
1643 memset(hwstrip, 0, sizeof(*hwstrip));
1645 /* Initialize the shared code (base driver) */
1646 diag = ixgbe_init_shared_code(hw);
1647 if (diag != IXGBE_SUCCESS) {
1648 PMD_INIT_LOG(ERR, "Shared code init failed for ixgbevf: %d", diag);
1652 /* init_mailbox_params */
1653 hw->mbx.ops.init_params(hw);
1655 /* Reset the hw statistics */
1656 ixgbevf_dev_stats_reset(eth_dev);
1658 /* Disable the interrupts for VF */
1659 ixgbevf_intr_disable(hw);
1661 hw->mac.num_rar_entries = 128; /* The MAX of the underlying PF */
1662 diag = hw->mac.ops.reset_hw(hw);
1665 * The VF reset operation returns the IXGBE_ERR_INVALID_MAC_ADDR when
1666 * the underlying PF driver has not assigned a MAC address to the VF.
1667 * In this case, assign a random MAC address.
1669 if ((diag != IXGBE_SUCCESS) && (diag != IXGBE_ERR_INVALID_MAC_ADDR)) {
1670 PMD_INIT_LOG(ERR, "VF Initialization Failure: %d", diag);
1674 /* negotiate mailbox API version to use with the PF. */
1675 ixgbevf_negotiate_api(hw);
1677 /* Get Rx/Tx queue count via mailbox, which is ready after reset_hw */
1678 ixgbevf_get_queues(hw, &tcs, &tc);
1680 /* Allocate memory for storing MAC addresses */
1681 eth_dev->data->mac_addrs = rte_zmalloc("ixgbevf", ETHER_ADDR_LEN *
1682 hw->mac.num_rar_entries, 0);
1683 if (eth_dev->data->mac_addrs == NULL) {
1685 "Failed to allocate %u bytes needed to store "
1687 ETHER_ADDR_LEN * hw->mac.num_rar_entries);
1691 /* Generate a random MAC address, if none was assigned by PF. */
1692 if (is_zero_ether_addr(perm_addr)) {
1693 generate_random_mac_addr(perm_addr);
1694 diag = ixgbe_set_rar_vf(hw, 1, perm_addr->addr_bytes, 0, 1);
1696 rte_free(eth_dev->data->mac_addrs);
1697 eth_dev->data->mac_addrs = NULL;
1700 PMD_INIT_LOG(INFO, "\tVF MAC address not assigned by Host PF");
1701 PMD_INIT_LOG(INFO, "\tAssign randomly generated MAC address "
1702 "%02x:%02x:%02x:%02x:%02x:%02x",
1703 perm_addr->addr_bytes[0],
1704 perm_addr->addr_bytes[1],
1705 perm_addr->addr_bytes[2],
1706 perm_addr->addr_bytes[3],
1707 perm_addr->addr_bytes[4],
1708 perm_addr->addr_bytes[5]);
1711 /* Copy the permanent MAC address */
1712 ether_addr_copy(perm_addr, ð_dev->data->mac_addrs[0]);
1714 /* reset the hardware with the new settings */
1715 diag = hw->mac.ops.start_hw(hw);
1721 PMD_INIT_LOG(ERR, "VF Initialization Failure: %d", diag);
1725 rte_intr_callback_register(intr_handle,
1726 ixgbevf_dev_interrupt_handler, eth_dev);
1727 rte_intr_enable(intr_handle);
1728 ixgbevf_intr_enable(hw);
1730 PMD_INIT_LOG(DEBUG, "port %d vendorID=0x%x deviceID=0x%x mac.type=%s",
1731 eth_dev->data->port_id, pci_dev->id.vendor_id,
1732 pci_dev->id.device_id, "ixgbe_mac_82599_vf");
1737 /* Virtual Function device uninit */
1740 eth_ixgbevf_dev_uninit(struct rte_eth_dev *eth_dev)
1742 struct rte_pci_device *pci_dev = IXGBE_DEV_TO_PCI(eth_dev);
1743 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
1744 struct ixgbe_hw *hw;
1746 PMD_INIT_FUNC_TRACE();
1748 if (rte_eal_process_type() != RTE_PROC_PRIMARY)
1751 hw = IXGBE_DEV_PRIVATE_TO_HW(eth_dev->data->dev_private);
1753 if (hw->adapter_stopped == 0)
1754 ixgbevf_dev_close(eth_dev);
1756 eth_dev->dev_ops = NULL;
1757 eth_dev->rx_pkt_burst = NULL;
1758 eth_dev->tx_pkt_burst = NULL;
1760 /* Disable the interrupts for VF */
1761 ixgbevf_intr_disable(hw);
1763 rte_free(eth_dev->data->mac_addrs);
1764 eth_dev->data->mac_addrs = NULL;
1766 rte_intr_disable(intr_handle);
1767 rte_intr_callback_unregister(intr_handle,
1768 ixgbevf_dev_interrupt_handler, eth_dev);
1773 static struct eth_driver rte_ixgbe_pmd = {
1775 .id_table = pci_id_ixgbe_map,
1776 .drv_flags = RTE_PCI_DRV_NEED_MAPPING | RTE_PCI_DRV_INTR_LSC,
1777 .probe = rte_eth_dev_pci_probe,
1778 .remove = rte_eth_dev_pci_remove,
1780 .eth_dev_init = eth_ixgbe_dev_init,
1781 .eth_dev_uninit = eth_ixgbe_dev_uninit,
1782 .dev_private_size = sizeof(struct ixgbe_adapter),
1786 * virtual function driver struct
1788 static struct eth_driver rte_ixgbevf_pmd = {
1790 .id_table = pci_id_ixgbevf_map,
1791 .drv_flags = RTE_PCI_DRV_NEED_MAPPING,
1792 .probe = rte_eth_dev_pci_probe,
1793 .remove = rte_eth_dev_pci_remove,
1795 .eth_dev_init = eth_ixgbevf_dev_init,
1796 .eth_dev_uninit = eth_ixgbevf_dev_uninit,
1797 .dev_private_size = sizeof(struct ixgbe_adapter),
1801 ixgbe_vlan_filter_set(struct rte_eth_dev *dev, uint16_t vlan_id, int on)
1803 struct ixgbe_hw *hw =
1804 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1805 struct ixgbe_vfta *shadow_vfta =
1806 IXGBE_DEV_PRIVATE_TO_VFTA(dev->data->dev_private);
1811 vid_idx = (uint32_t) ((vlan_id >> 5) & 0x7F);
1812 vid_bit = (uint32_t) (1 << (vlan_id & 0x1F));
1813 vfta = IXGBE_READ_REG(hw, IXGBE_VFTA(vid_idx));
1818 IXGBE_WRITE_REG(hw, IXGBE_VFTA(vid_idx), vfta);
1820 /* update local VFTA copy */
1821 shadow_vfta->vfta[vid_idx] = vfta;
1827 ixgbe_vlan_strip_queue_set(struct rte_eth_dev *dev, uint16_t queue, int on)
1830 ixgbe_vlan_hw_strip_enable(dev, queue);
1832 ixgbe_vlan_hw_strip_disable(dev, queue);
1836 ixgbe_vlan_tpid_set(struct rte_eth_dev *dev,
1837 enum rte_vlan_type vlan_type,
1840 struct ixgbe_hw *hw =
1841 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1846 qinq = IXGBE_READ_REG(hw, IXGBE_DMATXCTL);
1847 qinq &= IXGBE_DMATXCTL_GDV;
1849 switch (vlan_type) {
1850 case ETH_VLAN_TYPE_INNER:
1852 reg = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
1853 reg = (reg & (~IXGBE_VLNCTRL_VET)) | (uint32_t)tpid;
1854 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, reg);
1855 reg = IXGBE_READ_REG(hw, IXGBE_DMATXCTL);
1856 reg = (reg & (~IXGBE_DMATXCTL_VT_MASK))
1857 | ((uint32_t)tpid << IXGBE_DMATXCTL_VT_SHIFT);
1858 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL, reg);
1861 PMD_DRV_LOG(ERR, "Inner type is not supported"
1865 case ETH_VLAN_TYPE_OUTER:
1867 /* Only the high 16-bits is valid */
1868 IXGBE_WRITE_REG(hw, IXGBE_EXVET, (uint32_t)tpid <<
1869 IXGBE_EXVET_VET_EXT_SHIFT);
1871 reg = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
1872 reg = (reg & (~IXGBE_VLNCTRL_VET)) | (uint32_t)tpid;
1873 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, reg);
1874 reg = IXGBE_READ_REG(hw, IXGBE_DMATXCTL);
1875 reg = (reg & (~IXGBE_DMATXCTL_VT_MASK))
1876 | ((uint32_t)tpid << IXGBE_DMATXCTL_VT_SHIFT);
1877 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL, reg);
1883 PMD_DRV_LOG(ERR, "Unsupported VLAN type %d", vlan_type);
1891 ixgbe_vlan_hw_filter_disable(struct rte_eth_dev *dev)
1893 struct ixgbe_hw *hw =
1894 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1897 PMD_INIT_FUNC_TRACE();
1899 /* Filter Table Disable */
1900 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
1901 vlnctrl &= ~IXGBE_VLNCTRL_VFE;
1903 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
1907 ixgbe_vlan_hw_filter_enable(struct rte_eth_dev *dev)
1909 struct ixgbe_hw *hw =
1910 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1911 struct ixgbe_vfta *shadow_vfta =
1912 IXGBE_DEV_PRIVATE_TO_VFTA(dev->data->dev_private);
1916 PMD_INIT_FUNC_TRACE();
1918 /* Filter Table Enable */
1919 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
1920 vlnctrl &= ~IXGBE_VLNCTRL_CFIEN;
1921 vlnctrl |= IXGBE_VLNCTRL_VFE;
1923 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
1925 /* write whatever is in local vfta copy */
1926 for (i = 0; i < IXGBE_VFTA_SIZE; i++)
1927 IXGBE_WRITE_REG(hw, IXGBE_VFTA(i), shadow_vfta->vfta[i]);
1931 ixgbe_vlan_hw_strip_bitmap_set(struct rte_eth_dev *dev, uint16_t queue, bool on)
1933 struct ixgbe_hwstrip *hwstrip =
1934 IXGBE_DEV_PRIVATE_TO_HWSTRIP_BITMAP(dev->data->dev_private);
1935 struct ixgbe_rx_queue *rxq;
1937 if (queue >= IXGBE_MAX_RX_QUEUE_NUM)
1941 IXGBE_SET_HWSTRIP(hwstrip, queue);
1943 IXGBE_CLEAR_HWSTRIP(hwstrip, queue);
1945 if (queue >= dev->data->nb_rx_queues)
1948 rxq = dev->data->rx_queues[queue];
1951 rxq->vlan_flags = PKT_RX_VLAN_PKT | PKT_RX_VLAN_STRIPPED;
1953 rxq->vlan_flags = PKT_RX_VLAN_PKT;
1957 ixgbe_vlan_hw_strip_disable(struct rte_eth_dev *dev, uint16_t queue)
1959 struct ixgbe_hw *hw =
1960 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1963 PMD_INIT_FUNC_TRACE();
1965 if (hw->mac.type == ixgbe_mac_82598EB) {
1966 /* No queue level support */
1967 PMD_INIT_LOG(NOTICE, "82598EB not support queue level hw strip");
1971 /* Other 10G NIC, the VLAN strip can be setup per queue in RXDCTL */
1972 ctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(queue));
1973 ctrl &= ~IXGBE_RXDCTL_VME;
1974 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(queue), ctrl);
1976 /* record those setting for HW strip per queue */
1977 ixgbe_vlan_hw_strip_bitmap_set(dev, queue, 0);
1981 ixgbe_vlan_hw_strip_enable(struct rte_eth_dev *dev, uint16_t queue)
1983 struct ixgbe_hw *hw =
1984 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1987 PMD_INIT_FUNC_TRACE();
1989 if (hw->mac.type == ixgbe_mac_82598EB) {
1990 /* No queue level supported */
1991 PMD_INIT_LOG(NOTICE, "82598EB not support queue level hw strip");
1995 /* Other 10G NIC, the VLAN strip can be setup per queue in RXDCTL */
1996 ctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(queue));
1997 ctrl |= IXGBE_RXDCTL_VME;
1998 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(queue), ctrl);
2000 /* record those setting for HW strip per queue */
2001 ixgbe_vlan_hw_strip_bitmap_set(dev, queue, 1);
2005 ixgbe_vlan_hw_strip_disable_all(struct rte_eth_dev *dev)
2007 struct ixgbe_hw *hw =
2008 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2011 struct ixgbe_rx_queue *rxq;
2013 PMD_INIT_FUNC_TRACE();
2015 if (hw->mac.type == ixgbe_mac_82598EB) {
2016 ctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
2017 ctrl &= ~IXGBE_VLNCTRL_VME;
2018 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, ctrl);
2020 /* Other 10G NIC, the VLAN strip can be setup per queue in RXDCTL */
2021 for (i = 0; i < dev->data->nb_rx_queues; i++) {
2022 rxq = dev->data->rx_queues[i];
2023 ctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(rxq->reg_idx));
2024 ctrl &= ~IXGBE_RXDCTL_VME;
2025 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(rxq->reg_idx), ctrl);
2027 /* record those setting for HW strip per queue */
2028 ixgbe_vlan_hw_strip_bitmap_set(dev, i, 0);
2034 ixgbe_vlan_hw_strip_enable_all(struct rte_eth_dev *dev)
2036 struct ixgbe_hw *hw =
2037 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2040 struct ixgbe_rx_queue *rxq;
2042 PMD_INIT_FUNC_TRACE();
2044 if (hw->mac.type == ixgbe_mac_82598EB) {
2045 ctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
2046 ctrl |= IXGBE_VLNCTRL_VME;
2047 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, ctrl);
2049 /* Other 10G NIC, the VLAN strip can be setup per queue in RXDCTL */
2050 for (i = 0; i < dev->data->nb_rx_queues; i++) {
2051 rxq = dev->data->rx_queues[i];
2052 ctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(rxq->reg_idx));
2053 ctrl |= IXGBE_RXDCTL_VME;
2054 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(rxq->reg_idx), ctrl);
2056 /* record those setting for HW strip per queue */
2057 ixgbe_vlan_hw_strip_bitmap_set(dev, i, 1);
2063 ixgbe_vlan_hw_extend_disable(struct rte_eth_dev *dev)
2065 struct ixgbe_hw *hw =
2066 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2069 PMD_INIT_FUNC_TRACE();
2071 /* DMATXCTRL: Geric Double VLAN Disable */
2072 ctrl = IXGBE_READ_REG(hw, IXGBE_DMATXCTL);
2073 ctrl &= ~IXGBE_DMATXCTL_GDV;
2074 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL, ctrl);
2076 /* CTRL_EXT: Global Double VLAN Disable */
2077 ctrl = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT);
2078 ctrl &= ~IXGBE_EXTENDED_VLAN;
2079 IXGBE_WRITE_REG(hw, IXGBE_CTRL_EXT, ctrl);
2084 ixgbe_vlan_hw_extend_enable(struct rte_eth_dev *dev)
2086 struct ixgbe_hw *hw =
2087 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2090 PMD_INIT_FUNC_TRACE();
2092 /* DMATXCTRL: Geric Double VLAN Enable */
2093 ctrl = IXGBE_READ_REG(hw, IXGBE_DMATXCTL);
2094 ctrl |= IXGBE_DMATXCTL_GDV;
2095 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL, ctrl);
2097 /* CTRL_EXT: Global Double VLAN Enable */
2098 ctrl = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT);
2099 ctrl |= IXGBE_EXTENDED_VLAN;
2100 IXGBE_WRITE_REG(hw, IXGBE_CTRL_EXT, ctrl);
2102 /* Clear pooling mode of PFVTCTL. It's required by X550. */
2103 if (hw->mac.type == ixgbe_mac_X550 ||
2104 hw->mac.type == ixgbe_mac_X550EM_x ||
2105 hw->mac.type == ixgbe_mac_X550EM_a) {
2106 ctrl = IXGBE_READ_REG(hw, IXGBE_VT_CTL);
2107 ctrl &= ~IXGBE_VT_CTL_POOLING_MODE_MASK;
2108 IXGBE_WRITE_REG(hw, IXGBE_VT_CTL, ctrl);
2112 * VET EXT field in the EXVET register = 0x8100 by default
2113 * So no need to change. Same to VT field of DMATXCTL register
2118 ixgbe_vlan_offload_set(struct rte_eth_dev *dev, int mask)
2120 if (mask & ETH_VLAN_STRIP_MASK) {
2121 if (dev->data->dev_conf.rxmode.hw_vlan_strip)
2122 ixgbe_vlan_hw_strip_enable_all(dev);
2124 ixgbe_vlan_hw_strip_disable_all(dev);
2127 if (mask & ETH_VLAN_FILTER_MASK) {
2128 if (dev->data->dev_conf.rxmode.hw_vlan_filter)
2129 ixgbe_vlan_hw_filter_enable(dev);
2131 ixgbe_vlan_hw_filter_disable(dev);
2134 if (mask & ETH_VLAN_EXTEND_MASK) {
2135 if (dev->data->dev_conf.rxmode.hw_vlan_extend)
2136 ixgbe_vlan_hw_extend_enable(dev);
2138 ixgbe_vlan_hw_extend_disable(dev);
2143 ixgbe_vmdq_vlan_hw_filter_enable(struct rte_eth_dev *dev)
2145 struct ixgbe_hw *hw =
2146 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2147 /* VLNCTRL: enable vlan filtering and allow all vlan tags through */
2148 uint32_t vlanctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
2150 vlanctrl |= IXGBE_VLNCTRL_VFE; /* enable vlan filters */
2151 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlanctrl);
2155 ixgbe_check_vf_rss_rxq_num(struct rte_eth_dev *dev, uint16_t nb_rx_q)
2157 struct rte_pci_device *pci_dev = IXGBE_DEV_TO_PCI(dev);
2162 RTE_ETH_DEV_SRIOV(dev).active = ETH_64_POOLS;
2165 RTE_ETH_DEV_SRIOV(dev).active = ETH_32_POOLS;
2171 RTE_ETH_DEV_SRIOV(dev).nb_q_per_pool = nb_rx_q;
2172 RTE_ETH_DEV_SRIOV(dev).def_pool_q_idx = pci_dev->max_vfs * nb_rx_q;
2178 ixgbe_check_mq_mode(struct rte_eth_dev *dev)
2180 struct rte_eth_conf *dev_conf = &dev->data->dev_conf;
2181 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2182 uint16_t nb_rx_q = dev->data->nb_rx_queues;
2183 uint16_t nb_tx_q = dev->data->nb_tx_queues;
2185 if (RTE_ETH_DEV_SRIOV(dev).active != 0) {
2186 /* check multi-queue mode */
2187 switch (dev_conf->rxmode.mq_mode) {
2188 case ETH_MQ_RX_VMDQ_DCB:
2189 PMD_INIT_LOG(INFO, "ETH_MQ_RX_VMDQ_DCB mode supported in SRIOV");
2191 case ETH_MQ_RX_VMDQ_DCB_RSS:
2192 /* DCB/RSS VMDQ in SRIOV mode, not implement yet */
2193 PMD_INIT_LOG(ERR, "SRIOV active,"
2194 " unsupported mq_mode rx %d.",
2195 dev_conf->rxmode.mq_mode);
2198 case ETH_MQ_RX_VMDQ_RSS:
2199 dev->data->dev_conf.rxmode.mq_mode = ETH_MQ_RX_VMDQ_RSS;
2200 if (nb_rx_q <= RTE_ETH_DEV_SRIOV(dev).nb_q_per_pool)
2201 if (ixgbe_check_vf_rss_rxq_num(dev, nb_rx_q)) {
2202 PMD_INIT_LOG(ERR, "SRIOV is active,"
2203 " invalid queue number"
2204 " for VMDQ RSS, allowed"
2205 " value are 1, 2 or 4.");
2209 case ETH_MQ_RX_VMDQ_ONLY:
2210 case ETH_MQ_RX_NONE:
2211 /* if nothing mq mode configure, use default scheme */
2212 dev->data->dev_conf.rxmode.mq_mode = ETH_MQ_RX_VMDQ_ONLY;
2213 if (RTE_ETH_DEV_SRIOV(dev).nb_q_per_pool > 1)
2214 RTE_ETH_DEV_SRIOV(dev).nb_q_per_pool = 1;
2216 default: /* ETH_MQ_RX_DCB, ETH_MQ_RX_DCB_RSS or ETH_MQ_TX_DCB*/
2217 /* SRIOV only works in VMDq enable mode */
2218 PMD_INIT_LOG(ERR, "SRIOV is active,"
2219 " wrong mq_mode rx %d.",
2220 dev_conf->rxmode.mq_mode);
2224 switch (dev_conf->txmode.mq_mode) {
2225 case ETH_MQ_TX_VMDQ_DCB:
2226 PMD_INIT_LOG(INFO, "ETH_MQ_TX_VMDQ_DCB mode supported in SRIOV");
2227 dev->data->dev_conf.txmode.mq_mode = ETH_MQ_TX_VMDQ_DCB;
2229 default: /* ETH_MQ_TX_VMDQ_ONLY or ETH_MQ_TX_NONE */
2230 dev->data->dev_conf.txmode.mq_mode = ETH_MQ_TX_VMDQ_ONLY;
2234 /* check valid queue number */
2235 if ((nb_rx_q > RTE_ETH_DEV_SRIOV(dev).nb_q_per_pool) ||
2236 (nb_tx_q > RTE_ETH_DEV_SRIOV(dev).nb_q_per_pool)) {
2237 PMD_INIT_LOG(ERR, "SRIOV is active,"
2238 " nb_rx_q=%d nb_tx_q=%d queue number"
2239 " must be less than or equal to %d.",
2241 RTE_ETH_DEV_SRIOV(dev).nb_q_per_pool);
2245 if (dev_conf->rxmode.mq_mode == ETH_MQ_RX_VMDQ_DCB_RSS) {
2246 PMD_INIT_LOG(ERR, "VMDQ+DCB+RSS mq_mode is"
2250 /* check configuration for vmdb+dcb mode */
2251 if (dev_conf->rxmode.mq_mode == ETH_MQ_RX_VMDQ_DCB) {
2252 const struct rte_eth_vmdq_dcb_conf *conf;
2254 if (nb_rx_q != IXGBE_VMDQ_DCB_NB_QUEUES) {
2255 PMD_INIT_LOG(ERR, "VMDQ+DCB, nb_rx_q != %d.",
2256 IXGBE_VMDQ_DCB_NB_QUEUES);
2259 conf = &dev_conf->rx_adv_conf.vmdq_dcb_conf;
2260 if (!(conf->nb_queue_pools == ETH_16_POOLS ||
2261 conf->nb_queue_pools == ETH_32_POOLS)) {
2262 PMD_INIT_LOG(ERR, "VMDQ+DCB selected,"
2263 " nb_queue_pools must be %d or %d.",
2264 ETH_16_POOLS, ETH_32_POOLS);
2268 if (dev_conf->txmode.mq_mode == ETH_MQ_TX_VMDQ_DCB) {
2269 const struct rte_eth_vmdq_dcb_tx_conf *conf;
2271 if (nb_tx_q != IXGBE_VMDQ_DCB_NB_QUEUES) {
2272 PMD_INIT_LOG(ERR, "VMDQ+DCB, nb_tx_q != %d",
2273 IXGBE_VMDQ_DCB_NB_QUEUES);
2276 conf = &dev_conf->tx_adv_conf.vmdq_dcb_tx_conf;
2277 if (!(conf->nb_queue_pools == ETH_16_POOLS ||
2278 conf->nb_queue_pools == ETH_32_POOLS)) {
2279 PMD_INIT_LOG(ERR, "VMDQ+DCB selected,"
2280 " nb_queue_pools != %d and"
2281 " nb_queue_pools != %d.",
2282 ETH_16_POOLS, ETH_32_POOLS);
2287 /* For DCB mode check our configuration before we go further */
2288 if (dev_conf->rxmode.mq_mode == ETH_MQ_RX_DCB) {
2289 const struct rte_eth_dcb_rx_conf *conf;
2291 if (nb_rx_q != IXGBE_DCB_NB_QUEUES) {
2292 PMD_INIT_LOG(ERR, "DCB selected, nb_rx_q != %d.",
2293 IXGBE_DCB_NB_QUEUES);
2296 conf = &dev_conf->rx_adv_conf.dcb_rx_conf;
2297 if (!(conf->nb_tcs == ETH_4_TCS ||
2298 conf->nb_tcs == ETH_8_TCS)) {
2299 PMD_INIT_LOG(ERR, "DCB selected, nb_tcs != %d"
2300 " and nb_tcs != %d.",
2301 ETH_4_TCS, ETH_8_TCS);
2306 if (dev_conf->txmode.mq_mode == ETH_MQ_TX_DCB) {
2307 const struct rte_eth_dcb_tx_conf *conf;
2309 if (nb_tx_q != IXGBE_DCB_NB_QUEUES) {
2310 PMD_INIT_LOG(ERR, "DCB, nb_tx_q != %d.",
2311 IXGBE_DCB_NB_QUEUES);
2314 conf = &dev_conf->tx_adv_conf.dcb_tx_conf;
2315 if (!(conf->nb_tcs == ETH_4_TCS ||
2316 conf->nb_tcs == ETH_8_TCS)) {
2317 PMD_INIT_LOG(ERR, "DCB selected, nb_tcs != %d"
2318 " and nb_tcs != %d.",
2319 ETH_4_TCS, ETH_8_TCS);
2325 * When DCB/VT is off, maximum number of queues changes,
2326 * except for 82598EB, which remains constant.
2328 if (dev_conf->txmode.mq_mode == ETH_MQ_TX_NONE &&
2329 hw->mac.type != ixgbe_mac_82598EB) {
2330 if (nb_tx_q > IXGBE_NONE_MODE_TX_NB_QUEUES) {
2332 "Neither VT nor DCB are enabled, "
2334 IXGBE_NONE_MODE_TX_NB_QUEUES);
2343 ixgbe_dev_configure(struct rte_eth_dev *dev)
2345 struct ixgbe_interrupt *intr =
2346 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
2347 struct ixgbe_adapter *adapter =
2348 (struct ixgbe_adapter *)dev->data->dev_private;
2351 PMD_INIT_FUNC_TRACE();
2352 /* multipe queue mode checking */
2353 ret = ixgbe_check_mq_mode(dev);
2355 PMD_DRV_LOG(ERR, "ixgbe_check_mq_mode fails with %d.",
2360 /* set flag to update link status after init */
2361 intr->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
2364 * Initialize to TRUE. If any of Rx queues doesn't meet the bulk
2365 * allocation or vector Rx preconditions we will reset it.
2367 adapter->rx_bulk_alloc_allowed = true;
2368 adapter->rx_vec_allowed = true;
2374 ixgbe_dev_phy_intr_setup(struct rte_eth_dev *dev)
2376 struct ixgbe_hw *hw =
2377 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2378 struct ixgbe_interrupt *intr =
2379 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
2382 /* only set up it on X550EM_X */
2383 if (hw->mac.type == ixgbe_mac_X550EM_x) {
2384 gpie = IXGBE_READ_REG(hw, IXGBE_GPIE);
2385 gpie |= IXGBE_SDP0_GPIEN_X550EM_x;
2386 IXGBE_WRITE_REG(hw, IXGBE_GPIE, gpie);
2387 if (hw->phy.type == ixgbe_phy_x550em_ext_t)
2388 intr->mask |= IXGBE_EICR_GPI_SDP0_X550EM_x;
2393 * Configure device link speed and setup link.
2394 * It returns 0 on success.
2397 ixgbe_dev_start(struct rte_eth_dev *dev)
2399 struct ixgbe_hw *hw =
2400 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2401 struct ixgbe_vf_info *vfinfo =
2402 *IXGBE_DEV_PRIVATE_TO_P_VFDATA(dev->data->dev_private);
2403 struct rte_pci_device *pci_dev = IXGBE_DEV_TO_PCI(dev);
2404 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
2405 uint32_t intr_vector = 0;
2406 int err, link_up = 0, negotiate = 0;
2411 uint32_t *link_speeds;
2413 PMD_INIT_FUNC_TRACE();
2415 /* IXGBE devices don't support:
2416 * - half duplex (checked afterwards for valid speeds)
2417 * - fixed speed: TODO implement
2419 if (dev->data->dev_conf.link_speeds & ETH_LINK_SPEED_FIXED) {
2420 PMD_INIT_LOG(ERR, "Invalid link_speeds for port %hhu; fix speed not supported",
2421 dev->data->port_id);
2425 /* disable uio/vfio intr/eventfd mapping */
2426 rte_intr_disable(intr_handle);
2429 hw->adapter_stopped = 0;
2430 ixgbe_stop_adapter(hw);
2432 /* reinitialize adapter
2433 * this calls reset and start
2435 status = ixgbe_pf_reset_hw(hw);
2438 hw->mac.ops.start_hw(hw);
2439 hw->mac.get_link_status = true;
2441 /* configure PF module if SRIOV enabled */
2442 ixgbe_pf_host_configure(dev);
2444 ixgbe_dev_phy_intr_setup(dev);
2446 /* check and configure queue intr-vector mapping */
2447 if ((rte_intr_cap_multiple(intr_handle) ||
2448 !RTE_ETH_DEV_SRIOV(dev).active) &&
2449 dev->data->dev_conf.intr_conf.rxq != 0) {
2450 intr_vector = dev->data->nb_rx_queues;
2451 if (intr_vector > IXGBE_MAX_INTR_QUEUE_NUM) {
2452 PMD_INIT_LOG(ERR, "At most %d intr queues supported",
2453 IXGBE_MAX_INTR_QUEUE_NUM);
2456 if (rte_intr_efd_enable(intr_handle, intr_vector))
2460 if (rte_intr_dp_is_en(intr_handle) && !intr_handle->intr_vec) {
2461 intr_handle->intr_vec =
2462 rte_zmalloc("intr_vec",
2463 dev->data->nb_rx_queues * sizeof(int), 0);
2464 if (intr_handle->intr_vec == NULL) {
2465 PMD_INIT_LOG(ERR, "Failed to allocate %d rx_queues"
2466 " intr_vec", dev->data->nb_rx_queues);
2471 /* confiugre msix for sleep until rx interrupt */
2472 ixgbe_configure_msix(dev);
2474 /* initialize transmission unit */
2475 ixgbe_dev_tx_init(dev);
2477 /* This can fail when allocating mbufs for descriptor rings */
2478 err = ixgbe_dev_rx_init(dev);
2480 PMD_INIT_LOG(ERR, "Unable to initialize RX hardware");
2484 mask = ETH_VLAN_STRIP_MASK | ETH_VLAN_FILTER_MASK |
2485 ETH_VLAN_EXTEND_MASK;
2486 ixgbe_vlan_offload_set(dev, mask);
2488 if (dev->data->dev_conf.rxmode.mq_mode == ETH_MQ_RX_VMDQ_ONLY) {
2489 /* Enable vlan filtering for VMDq */
2490 ixgbe_vmdq_vlan_hw_filter_enable(dev);
2493 /* Configure DCB hw */
2494 ixgbe_configure_dcb(dev);
2496 if (dev->data->dev_conf.fdir_conf.mode != RTE_FDIR_MODE_NONE) {
2497 err = ixgbe_fdir_configure(dev);
2502 /* Restore vf rate limit */
2503 if (vfinfo != NULL) {
2504 for (vf = 0; vf < pci_dev->max_vfs; vf++)
2505 for (idx = 0; idx < IXGBE_MAX_QUEUE_NUM_PER_VF; idx++)
2506 if (vfinfo[vf].tx_rate[idx] != 0)
2507 rte_pmd_ixgbe_set_vf_rate_limit(
2508 dev->data->port_id, vf,
2509 vfinfo[vf].tx_rate[idx],
2513 ixgbe_restore_statistics_mapping(dev);
2515 err = ixgbe_dev_rxtx_start(dev);
2517 PMD_INIT_LOG(ERR, "Unable to start rxtx queues");
2521 /* Skip link setup if loopback mode is enabled for 82599. */
2522 if (hw->mac.type == ixgbe_mac_82599EB &&
2523 dev->data->dev_conf.lpbk_mode == IXGBE_LPBK_82599_TX_RX)
2524 goto skip_link_setup;
2526 if (ixgbe_is_sfp(hw) && hw->phy.multispeed_fiber) {
2527 err = hw->mac.ops.setup_sfp(hw);
2532 if (hw->mac.ops.get_media_type(hw) == ixgbe_media_type_copper) {
2533 /* Turn on the copper */
2534 ixgbe_set_phy_power(hw, true);
2536 /* Turn on the laser */
2537 ixgbe_enable_tx_laser(hw);
2540 err = ixgbe_check_link(hw, &speed, &link_up, 0);
2543 dev->data->dev_link.link_status = link_up;
2545 err = ixgbe_get_link_capabilities(hw, &speed, &negotiate);
2549 link_speeds = &dev->data->dev_conf.link_speeds;
2550 if (*link_speeds & ~(ETH_LINK_SPEED_100M | ETH_LINK_SPEED_1G |
2551 ETH_LINK_SPEED_10G)) {
2552 PMD_INIT_LOG(ERR, "Invalid link setting");
2557 if (*link_speeds == ETH_LINK_SPEED_AUTONEG) {
2558 speed = (hw->mac.type != ixgbe_mac_82598EB) ?
2559 IXGBE_LINK_SPEED_82599_AUTONEG :
2560 IXGBE_LINK_SPEED_82598_AUTONEG;
2562 if (*link_speeds & ETH_LINK_SPEED_10G)
2563 speed |= IXGBE_LINK_SPEED_10GB_FULL;
2564 if (*link_speeds & ETH_LINK_SPEED_1G)
2565 speed |= IXGBE_LINK_SPEED_1GB_FULL;
2566 if (*link_speeds & ETH_LINK_SPEED_100M)
2567 speed |= IXGBE_LINK_SPEED_100_FULL;
2570 err = ixgbe_setup_link(hw, speed, link_up);
2576 if (rte_intr_allow_others(intr_handle)) {
2577 /* check if lsc interrupt is enabled */
2578 if (dev->data->dev_conf.intr_conf.lsc != 0)
2579 ixgbe_dev_lsc_interrupt_setup(dev);
2580 ixgbe_dev_macsec_interrupt_setup(dev);
2582 rte_intr_callback_unregister(intr_handle,
2583 ixgbe_dev_interrupt_handler, dev);
2584 if (dev->data->dev_conf.intr_conf.lsc != 0)
2585 PMD_INIT_LOG(INFO, "lsc won't enable because of"
2586 " no intr multiplex");
2589 /* check if rxq interrupt is enabled */
2590 if (dev->data->dev_conf.intr_conf.rxq != 0 &&
2591 rte_intr_dp_is_en(intr_handle))
2592 ixgbe_dev_rxq_interrupt_setup(dev);
2594 /* enable uio/vfio intr/eventfd mapping */
2595 rte_intr_enable(intr_handle);
2597 /* resume enabled intr since hw reset */
2598 ixgbe_enable_intr(dev);
2599 ixgbe_l2_tunnel_conf(dev);
2600 ixgbe_filter_restore(dev);
2605 PMD_INIT_LOG(ERR, "failure in ixgbe_dev_start(): %d", err);
2606 ixgbe_dev_clear_queues(dev);
2611 * Stop device: disable rx and tx functions to allow for reconfiguring.
2614 ixgbe_dev_stop(struct rte_eth_dev *dev)
2616 struct rte_eth_link link;
2617 struct ixgbe_hw *hw =
2618 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2619 struct ixgbe_vf_info *vfinfo =
2620 *IXGBE_DEV_PRIVATE_TO_P_VFDATA(dev->data->dev_private);
2621 struct rte_pci_device *pci_dev = IXGBE_DEV_TO_PCI(dev);
2622 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
2625 PMD_INIT_FUNC_TRACE();
2627 /* disable interrupts */
2628 ixgbe_disable_intr(hw);
2631 ixgbe_pf_reset_hw(hw);
2632 hw->adapter_stopped = 0;
2635 ixgbe_stop_adapter(hw);
2637 for (vf = 0; vfinfo != NULL && vf < pci_dev->max_vfs; vf++)
2638 vfinfo[vf].clear_to_send = false;
2640 if (hw->mac.ops.get_media_type(hw) == ixgbe_media_type_copper) {
2641 /* Turn off the copper */
2642 ixgbe_set_phy_power(hw, false);
2644 /* Turn off the laser */
2645 ixgbe_disable_tx_laser(hw);
2648 ixgbe_dev_clear_queues(dev);
2650 /* Clear stored conf */
2651 dev->data->scattered_rx = 0;
2654 /* Clear recorded link status */
2655 memset(&link, 0, sizeof(link));
2656 rte_ixgbe_dev_atomic_write_link_status(dev, &link);
2658 if (!rte_intr_allow_others(intr_handle))
2659 /* resume to the default handler */
2660 rte_intr_callback_register(intr_handle,
2661 ixgbe_dev_interrupt_handler,
2664 /* Clean datapath event and queue/vec mapping */
2665 rte_intr_efd_disable(intr_handle);
2666 if (intr_handle->intr_vec != NULL) {
2667 rte_free(intr_handle->intr_vec);
2668 intr_handle->intr_vec = NULL;
2673 * Set device link up: enable tx.
2676 ixgbe_dev_set_link_up(struct rte_eth_dev *dev)
2678 struct ixgbe_hw *hw =
2679 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2680 if (hw->mac.type == ixgbe_mac_82599EB) {
2681 #ifdef RTE_NIC_BYPASS
2682 if (hw->device_id == IXGBE_DEV_ID_82599_BYPASS) {
2683 /* Not suported in bypass mode */
2684 PMD_INIT_LOG(ERR, "Set link up is not supported "
2685 "by device id 0x%x", hw->device_id);
2691 if (hw->mac.ops.get_media_type(hw) == ixgbe_media_type_copper) {
2692 /* Turn on the copper */
2693 ixgbe_set_phy_power(hw, true);
2695 /* Turn on the laser */
2696 ixgbe_enable_tx_laser(hw);
2703 * Set device link down: disable tx.
2706 ixgbe_dev_set_link_down(struct rte_eth_dev *dev)
2708 struct ixgbe_hw *hw =
2709 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2710 if (hw->mac.type == ixgbe_mac_82599EB) {
2711 #ifdef RTE_NIC_BYPASS
2712 if (hw->device_id == IXGBE_DEV_ID_82599_BYPASS) {
2713 /* Not suported in bypass mode */
2714 PMD_INIT_LOG(ERR, "Set link down is not supported "
2715 "by device id 0x%x", hw->device_id);
2721 if (hw->mac.ops.get_media_type(hw) == ixgbe_media_type_copper) {
2722 /* Turn off the copper */
2723 ixgbe_set_phy_power(hw, false);
2725 /* Turn off the laser */
2726 ixgbe_disable_tx_laser(hw);
2733 * Reest and stop device.
2736 ixgbe_dev_close(struct rte_eth_dev *dev)
2738 struct ixgbe_hw *hw =
2739 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2741 PMD_INIT_FUNC_TRACE();
2743 ixgbe_pf_reset_hw(hw);
2745 ixgbe_dev_stop(dev);
2746 hw->adapter_stopped = 1;
2748 ixgbe_dev_free_queues(dev);
2750 ixgbe_disable_pcie_master(hw);
2752 /* reprogram the RAR[0] in case user changed it. */
2753 ixgbe_set_rar(hw, 0, hw->mac.addr, 0, IXGBE_RAH_AV);
2757 ixgbe_read_stats_registers(struct ixgbe_hw *hw,
2758 struct ixgbe_hw_stats *hw_stats,
2759 struct ixgbe_macsec_stats *macsec_stats,
2760 uint64_t *total_missed_rx, uint64_t *total_qbrc,
2761 uint64_t *total_qprc, uint64_t *total_qprdc)
2763 uint32_t bprc, lxon, lxoff, total;
2764 uint32_t delta_gprc = 0;
2766 /* Workaround for RX byte count not including CRC bytes when CRC
2767 * strip is enabled. CRC bytes are removed from counters when crc_strip
2770 int crc_strip = (IXGBE_READ_REG(hw, IXGBE_HLREG0) &
2771 IXGBE_HLREG0_RXCRCSTRP);
2773 hw_stats->crcerrs += IXGBE_READ_REG(hw, IXGBE_CRCERRS);
2774 hw_stats->illerrc += IXGBE_READ_REG(hw, IXGBE_ILLERRC);
2775 hw_stats->errbc += IXGBE_READ_REG(hw, IXGBE_ERRBC);
2776 hw_stats->mspdc += IXGBE_READ_REG(hw, IXGBE_MSPDC);
2778 for (i = 0; i < 8; i++) {
2779 uint32_t mp = IXGBE_READ_REG(hw, IXGBE_MPC(i));
2781 /* global total per queue */
2782 hw_stats->mpc[i] += mp;
2783 /* Running comprehensive total for stats display */
2784 *total_missed_rx += hw_stats->mpc[i];
2785 if (hw->mac.type == ixgbe_mac_82598EB) {
2786 hw_stats->rnbc[i] +=
2787 IXGBE_READ_REG(hw, IXGBE_RNBC(i));
2788 hw_stats->pxonrxc[i] +=
2789 IXGBE_READ_REG(hw, IXGBE_PXONRXC(i));
2790 hw_stats->pxoffrxc[i] +=
2791 IXGBE_READ_REG(hw, IXGBE_PXOFFRXC(i));
2793 hw_stats->pxonrxc[i] +=
2794 IXGBE_READ_REG(hw, IXGBE_PXONRXCNT(i));
2795 hw_stats->pxoffrxc[i] +=
2796 IXGBE_READ_REG(hw, IXGBE_PXOFFRXCNT(i));
2797 hw_stats->pxon2offc[i] +=
2798 IXGBE_READ_REG(hw, IXGBE_PXON2OFFCNT(i));
2800 hw_stats->pxontxc[i] +=
2801 IXGBE_READ_REG(hw, IXGBE_PXONTXC(i));
2802 hw_stats->pxofftxc[i] +=
2803 IXGBE_READ_REG(hw, IXGBE_PXOFFTXC(i));
2805 for (i = 0; i < IXGBE_QUEUE_STAT_COUNTERS; i++) {
2806 uint32_t delta_qprc = IXGBE_READ_REG(hw, IXGBE_QPRC(i));
2807 uint32_t delta_qptc = IXGBE_READ_REG(hw, IXGBE_QPTC(i));
2808 uint32_t delta_qprdc = IXGBE_READ_REG(hw, IXGBE_QPRDC(i));
2810 delta_gprc += delta_qprc;
2812 hw_stats->qprc[i] += delta_qprc;
2813 hw_stats->qptc[i] += delta_qptc;
2815 hw_stats->qbrc[i] += IXGBE_READ_REG(hw, IXGBE_QBRC_L(i));
2816 hw_stats->qbrc[i] +=
2817 ((uint64_t)IXGBE_READ_REG(hw, IXGBE_QBRC_H(i)) << 32);
2819 hw_stats->qbrc[i] -= delta_qprc * ETHER_CRC_LEN;
2821 hw_stats->qbtc[i] += IXGBE_READ_REG(hw, IXGBE_QBTC_L(i));
2822 hw_stats->qbtc[i] +=
2823 ((uint64_t)IXGBE_READ_REG(hw, IXGBE_QBTC_H(i)) << 32);
2825 hw_stats->qprdc[i] += delta_qprdc;
2826 *total_qprdc += hw_stats->qprdc[i];
2828 *total_qprc += hw_stats->qprc[i];
2829 *total_qbrc += hw_stats->qbrc[i];
2831 hw_stats->mlfc += IXGBE_READ_REG(hw, IXGBE_MLFC);
2832 hw_stats->mrfc += IXGBE_READ_REG(hw, IXGBE_MRFC);
2833 hw_stats->rlec += IXGBE_READ_REG(hw, IXGBE_RLEC);
2836 * An errata states that gprc actually counts good + missed packets:
2837 * Workaround to set gprc to summated queue packet receives
2839 hw_stats->gprc = *total_qprc;
2841 if (hw->mac.type != ixgbe_mac_82598EB) {
2842 hw_stats->gorc += IXGBE_READ_REG(hw, IXGBE_GORCL);
2843 hw_stats->gorc += ((u64)IXGBE_READ_REG(hw, IXGBE_GORCH) << 32);
2844 hw_stats->gotc += IXGBE_READ_REG(hw, IXGBE_GOTCL);
2845 hw_stats->gotc += ((u64)IXGBE_READ_REG(hw, IXGBE_GOTCH) << 32);
2846 hw_stats->tor += IXGBE_READ_REG(hw, IXGBE_TORL);
2847 hw_stats->tor += ((u64)IXGBE_READ_REG(hw, IXGBE_TORH) << 32);
2848 hw_stats->lxonrxc += IXGBE_READ_REG(hw, IXGBE_LXONRXCNT);
2849 hw_stats->lxoffrxc += IXGBE_READ_REG(hw, IXGBE_LXOFFRXCNT);
2851 hw_stats->lxonrxc += IXGBE_READ_REG(hw, IXGBE_LXONRXC);
2852 hw_stats->lxoffrxc += IXGBE_READ_REG(hw, IXGBE_LXOFFRXC);
2853 /* 82598 only has a counter in the high register */
2854 hw_stats->gorc += IXGBE_READ_REG(hw, IXGBE_GORCH);
2855 hw_stats->gotc += IXGBE_READ_REG(hw, IXGBE_GOTCH);
2856 hw_stats->tor += IXGBE_READ_REG(hw, IXGBE_TORH);
2858 uint64_t old_tpr = hw_stats->tpr;
2860 hw_stats->tpr += IXGBE_READ_REG(hw, IXGBE_TPR);
2861 hw_stats->tpt += IXGBE_READ_REG(hw, IXGBE_TPT);
2864 hw_stats->gorc -= delta_gprc * ETHER_CRC_LEN;
2866 uint64_t delta_gptc = IXGBE_READ_REG(hw, IXGBE_GPTC);
2867 hw_stats->gptc += delta_gptc;
2868 hw_stats->gotc -= delta_gptc * ETHER_CRC_LEN;
2869 hw_stats->tor -= (hw_stats->tpr - old_tpr) * ETHER_CRC_LEN;
2872 * Workaround: mprc hardware is incorrectly counting
2873 * broadcasts, so for now we subtract those.
2875 bprc = IXGBE_READ_REG(hw, IXGBE_BPRC);
2876 hw_stats->bprc += bprc;
2877 hw_stats->mprc += IXGBE_READ_REG(hw, IXGBE_MPRC);
2878 if (hw->mac.type == ixgbe_mac_82598EB)
2879 hw_stats->mprc -= bprc;
2881 hw_stats->prc64 += IXGBE_READ_REG(hw, IXGBE_PRC64);
2882 hw_stats->prc127 += IXGBE_READ_REG(hw, IXGBE_PRC127);
2883 hw_stats->prc255 += IXGBE_READ_REG(hw, IXGBE_PRC255);
2884 hw_stats->prc511 += IXGBE_READ_REG(hw, IXGBE_PRC511);
2885 hw_stats->prc1023 += IXGBE_READ_REG(hw, IXGBE_PRC1023);
2886 hw_stats->prc1522 += IXGBE_READ_REG(hw, IXGBE_PRC1522);
2888 lxon = IXGBE_READ_REG(hw, IXGBE_LXONTXC);
2889 hw_stats->lxontxc += lxon;
2890 lxoff = IXGBE_READ_REG(hw, IXGBE_LXOFFTXC);
2891 hw_stats->lxofftxc += lxoff;
2892 total = lxon + lxoff;
2894 hw_stats->mptc += IXGBE_READ_REG(hw, IXGBE_MPTC);
2895 hw_stats->ptc64 += IXGBE_READ_REG(hw, IXGBE_PTC64);
2896 hw_stats->gptc -= total;
2897 hw_stats->mptc -= total;
2898 hw_stats->ptc64 -= total;
2899 hw_stats->gotc -= total * ETHER_MIN_LEN;
2901 hw_stats->ruc += IXGBE_READ_REG(hw, IXGBE_RUC);
2902 hw_stats->rfc += IXGBE_READ_REG(hw, IXGBE_RFC);
2903 hw_stats->roc += IXGBE_READ_REG(hw, IXGBE_ROC);
2904 hw_stats->rjc += IXGBE_READ_REG(hw, IXGBE_RJC);
2905 hw_stats->mngprc += IXGBE_READ_REG(hw, IXGBE_MNGPRC);
2906 hw_stats->mngpdc += IXGBE_READ_REG(hw, IXGBE_MNGPDC);
2907 hw_stats->mngptc += IXGBE_READ_REG(hw, IXGBE_MNGPTC);
2908 hw_stats->ptc127 += IXGBE_READ_REG(hw, IXGBE_PTC127);
2909 hw_stats->ptc255 += IXGBE_READ_REG(hw, IXGBE_PTC255);
2910 hw_stats->ptc511 += IXGBE_READ_REG(hw, IXGBE_PTC511);
2911 hw_stats->ptc1023 += IXGBE_READ_REG(hw, IXGBE_PTC1023);
2912 hw_stats->ptc1522 += IXGBE_READ_REG(hw, IXGBE_PTC1522);
2913 hw_stats->bptc += IXGBE_READ_REG(hw, IXGBE_BPTC);
2914 hw_stats->xec += IXGBE_READ_REG(hw, IXGBE_XEC);
2915 hw_stats->fccrc += IXGBE_READ_REG(hw, IXGBE_FCCRC);
2916 hw_stats->fclast += IXGBE_READ_REG(hw, IXGBE_FCLAST);
2917 /* Only read FCOE on 82599 */
2918 if (hw->mac.type != ixgbe_mac_82598EB) {
2919 hw_stats->fcoerpdc += IXGBE_READ_REG(hw, IXGBE_FCOERPDC);
2920 hw_stats->fcoeprc += IXGBE_READ_REG(hw, IXGBE_FCOEPRC);
2921 hw_stats->fcoeptc += IXGBE_READ_REG(hw, IXGBE_FCOEPTC);
2922 hw_stats->fcoedwrc += IXGBE_READ_REG(hw, IXGBE_FCOEDWRC);
2923 hw_stats->fcoedwtc += IXGBE_READ_REG(hw, IXGBE_FCOEDWTC);
2926 /* Flow Director Stats registers */
2927 hw_stats->fdirmatch += IXGBE_READ_REG(hw, IXGBE_FDIRMATCH);
2928 hw_stats->fdirmiss += IXGBE_READ_REG(hw, IXGBE_FDIRMISS);
2930 /* MACsec Stats registers */
2931 macsec_stats->out_pkts_untagged += IXGBE_READ_REG(hw, IXGBE_LSECTXUT);
2932 macsec_stats->out_pkts_encrypted +=
2933 IXGBE_READ_REG(hw, IXGBE_LSECTXPKTE);
2934 macsec_stats->out_pkts_protected +=
2935 IXGBE_READ_REG(hw, IXGBE_LSECTXPKTP);
2936 macsec_stats->out_octets_encrypted +=
2937 IXGBE_READ_REG(hw, IXGBE_LSECTXOCTE);
2938 macsec_stats->out_octets_protected +=
2939 IXGBE_READ_REG(hw, IXGBE_LSECTXOCTP);
2940 macsec_stats->in_pkts_untagged += IXGBE_READ_REG(hw, IXGBE_LSECRXUT);
2941 macsec_stats->in_pkts_badtag += IXGBE_READ_REG(hw, IXGBE_LSECRXBAD);
2942 macsec_stats->in_pkts_nosci += IXGBE_READ_REG(hw, IXGBE_LSECRXNOSCI);
2943 macsec_stats->in_pkts_unknownsci +=
2944 IXGBE_READ_REG(hw, IXGBE_LSECRXUNSCI);
2945 macsec_stats->in_octets_decrypted +=
2946 IXGBE_READ_REG(hw, IXGBE_LSECRXOCTD);
2947 macsec_stats->in_octets_validated +=
2948 IXGBE_READ_REG(hw, IXGBE_LSECRXOCTV);
2949 macsec_stats->in_pkts_unchecked += IXGBE_READ_REG(hw, IXGBE_LSECRXUNCH);
2950 macsec_stats->in_pkts_delayed += IXGBE_READ_REG(hw, IXGBE_LSECRXDELAY);
2951 macsec_stats->in_pkts_late += IXGBE_READ_REG(hw, IXGBE_LSECRXLATE);
2952 for (i = 0; i < 2; i++) {
2953 macsec_stats->in_pkts_ok +=
2954 IXGBE_READ_REG(hw, IXGBE_LSECRXOK(i));
2955 macsec_stats->in_pkts_invalid +=
2956 IXGBE_READ_REG(hw, IXGBE_LSECRXINV(i));
2957 macsec_stats->in_pkts_notvalid +=
2958 IXGBE_READ_REG(hw, IXGBE_LSECRXNV(i));
2960 macsec_stats->in_pkts_unusedsa += IXGBE_READ_REG(hw, IXGBE_LSECRXUNSA);
2961 macsec_stats->in_pkts_notusingsa +=
2962 IXGBE_READ_REG(hw, IXGBE_LSECRXNUSA);
2966 * This function is based on ixgbe_update_stats_counters() in ixgbe/ixgbe.c
2969 ixgbe_dev_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats)
2971 struct ixgbe_hw *hw =
2972 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2973 struct ixgbe_hw_stats *hw_stats =
2974 IXGBE_DEV_PRIVATE_TO_STATS(dev->data->dev_private);
2975 struct ixgbe_macsec_stats *macsec_stats =
2976 IXGBE_DEV_PRIVATE_TO_MACSEC_STATS(
2977 dev->data->dev_private);
2978 uint64_t total_missed_rx, total_qbrc, total_qprc, total_qprdc;
2981 total_missed_rx = 0;
2986 ixgbe_read_stats_registers(hw, hw_stats, macsec_stats, &total_missed_rx,
2987 &total_qbrc, &total_qprc, &total_qprdc);
2992 /* Fill out the rte_eth_stats statistics structure */
2993 stats->ipackets = total_qprc;
2994 stats->ibytes = total_qbrc;
2995 stats->opackets = hw_stats->gptc;
2996 stats->obytes = hw_stats->gotc;
2998 for (i = 0; i < IXGBE_QUEUE_STAT_COUNTERS; i++) {
2999 stats->q_ipackets[i] = hw_stats->qprc[i];
3000 stats->q_opackets[i] = hw_stats->qptc[i];
3001 stats->q_ibytes[i] = hw_stats->qbrc[i];
3002 stats->q_obytes[i] = hw_stats->qbtc[i];
3003 stats->q_errors[i] = hw_stats->qprdc[i];
3007 stats->imissed = total_missed_rx;
3008 stats->ierrors = hw_stats->crcerrs +
3024 ixgbe_dev_stats_reset(struct rte_eth_dev *dev)
3026 struct ixgbe_hw_stats *stats =
3027 IXGBE_DEV_PRIVATE_TO_STATS(dev->data->dev_private);
3029 /* HW registers are cleared on read */
3030 ixgbe_dev_stats_get(dev, NULL);
3032 /* Reset software totals */
3033 memset(stats, 0, sizeof(*stats));
3036 /* This function calculates the number of xstats based on the current config */
3038 ixgbe_xstats_calc_num(void) {
3039 return IXGBE_NB_HW_STATS + IXGBE_NB_MACSEC_STATS +
3040 (IXGBE_NB_RXQ_PRIO_STATS * IXGBE_NB_RXQ_PRIO_VALUES) +
3041 (IXGBE_NB_TXQ_PRIO_STATS * IXGBE_NB_TXQ_PRIO_VALUES);
3044 static int ixgbe_dev_xstats_get_names(__rte_unused struct rte_eth_dev *dev,
3045 struct rte_eth_xstat_name *xstats_names, __rte_unused unsigned limit)
3047 const unsigned cnt_stats = ixgbe_xstats_calc_num();
3048 unsigned stat, i, count;
3050 if (xstats_names != NULL) {
3053 /* Note: limit >= cnt_stats checked upstream
3054 * in rte_eth_xstats_names()
3057 /* Extended stats from ixgbe_hw_stats */
3058 for (i = 0; i < IXGBE_NB_HW_STATS; i++) {
3059 snprintf(xstats_names[count].name,
3060 sizeof(xstats_names[count].name),
3062 rte_ixgbe_stats_strings[i].name);
3067 for (i = 0; i < IXGBE_NB_MACSEC_STATS; i++) {
3068 snprintf(xstats_names[count].name,
3069 sizeof(xstats_names[count].name),
3071 rte_ixgbe_macsec_strings[i].name);
3075 /* RX Priority Stats */
3076 for (stat = 0; stat < IXGBE_NB_RXQ_PRIO_STATS; stat++) {
3077 for (i = 0; i < IXGBE_NB_RXQ_PRIO_VALUES; i++) {
3078 snprintf(xstats_names[count].name,
3079 sizeof(xstats_names[count].name),
3080 "rx_priority%u_%s", i,
3081 rte_ixgbe_rxq_strings[stat].name);
3086 /* TX Priority Stats */
3087 for (stat = 0; stat < IXGBE_NB_TXQ_PRIO_STATS; stat++) {
3088 for (i = 0; i < IXGBE_NB_TXQ_PRIO_VALUES; i++) {
3089 snprintf(xstats_names[count].name,
3090 sizeof(xstats_names[count].name),
3091 "tx_priority%u_%s", i,
3092 rte_ixgbe_txq_strings[stat].name);
3100 static int ixgbevf_dev_xstats_get_names(__rte_unused struct rte_eth_dev *dev,
3101 struct rte_eth_xstat_name *xstats_names, unsigned limit)
3105 if (limit < IXGBEVF_NB_XSTATS && xstats_names != NULL)
3108 if (xstats_names != NULL)
3109 for (i = 0; i < IXGBEVF_NB_XSTATS; i++)
3110 snprintf(xstats_names[i].name,
3111 sizeof(xstats_names[i].name),
3112 "%s", rte_ixgbevf_stats_strings[i].name);
3113 return IXGBEVF_NB_XSTATS;
3117 ixgbe_dev_xstats_get(struct rte_eth_dev *dev, struct rte_eth_xstat *xstats,
3120 struct ixgbe_hw *hw =
3121 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3122 struct ixgbe_hw_stats *hw_stats =
3123 IXGBE_DEV_PRIVATE_TO_STATS(dev->data->dev_private);
3124 struct ixgbe_macsec_stats *macsec_stats =
3125 IXGBE_DEV_PRIVATE_TO_MACSEC_STATS(
3126 dev->data->dev_private);
3127 uint64_t total_missed_rx, total_qbrc, total_qprc, total_qprdc;
3128 unsigned i, stat, count = 0;
3130 count = ixgbe_xstats_calc_num();
3135 total_missed_rx = 0;
3140 ixgbe_read_stats_registers(hw, hw_stats, macsec_stats, &total_missed_rx,
3141 &total_qbrc, &total_qprc, &total_qprdc);
3143 /* If this is a reset xstats is NULL, and we have cleared the
3144 * registers by reading them.
3149 /* Extended stats from ixgbe_hw_stats */
3151 for (i = 0; i < IXGBE_NB_HW_STATS; i++) {
3152 xstats[count].value = *(uint64_t *)(((char *)hw_stats) +
3153 rte_ixgbe_stats_strings[i].offset);
3154 xstats[count].id = count;
3159 for (i = 0; i < IXGBE_NB_MACSEC_STATS; i++) {
3160 xstats[count].value = *(uint64_t *)(((char *)macsec_stats) +
3161 rte_ixgbe_macsec_strings[i].offset);
3162 xstats[count].id = count;
3166 /* RX Priority Stats */
3167 for (stat = 0; stat < IXGBE_NB_RXQ_PRIO_STATS; stat++) {
3168 for (i = 0; i < IXGBE_NB_RXQ_PRIO_VALUES; i++) {
3169 xstats[count].value = *(uint64_t *)(((char *)hw_stats) +
3170 rte_ixgbe_rxq_strings[stat].offset +
3171 (sizeof(uint64_t) * i));
3172 xstats[count].id = count;
3177 /* TX Priority Stats */
3178 for (stat = 0; stat < IXGBE_NB_TXQ_PRIO_STATS; stat++) {
3179 for (i = 0; i < IXGBE_NB_TXQ_PRIO_VALUES; i++) {
3180 xstats[count].value = *(uint64_t *)(((char *)hw_stats) +
3181 rte_ixgbe_txq_strings[stat].offset +
3182 (sizeof(uint64_t) * i));
3183 xstats[count].id = count;
3191 ixgbe_dev_xstats_reset(struct rte_eth_dev *dev)
3193 struct ixgbe_hw_stats *stats =
3194 IXGBE_DEV_PRIVATE_TO_STATS(dev->data->dev_private);
3195 struct ixgbe_macsec_stats *macsec_stats =
3196 IXGBE_DEV_PRIVATE_TO_MACSEC_STATS(
3197 dev->data->dev_private);
3199 unsigned count = ixgbe_xstats_calc_num();
3201 /* HW registers are cleared on read */
3202 ixgbe_dev_xstats_get(dev, NULL, count);
3204 /* Reset software totals */
3205 memset(stats, 0, sizeof(*stats));
3206 memset(macsec_stats, 0, sizeof(*macsec_stats));
3210 ixgbevf_update_stats(struct rte_eth_dev *dev)
3212 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3213 struct ixgbevf_hw_stats *hw_stats = (struct ixgbevf_hw_stats *)
3214 IXGBE_DEV_PRIVATE_TO_STATS(dev->data->dev_private);
3216 /* Good Rx packet, include VF loopback */
3217 UPDATE_VF_STAT(IXGBE_VFGPRC,
3218 hw_stats->last_vfgprc, hw_stats->vfgprc);
3220 /* Good Rx octets, include VF loopback */
3221 UPDATE_VF_STAT_36BIT(IXGBE_VFGORC_LSB, IXGBE_VFGORC_MSB,
3222 hw_stats->last_vfgorc, hw_stats->vfgorc);
3224 /* Good Tx packet, include VF loopback */
3225 UPDATE_VF_STAT(IXGBE_VFGPTC,
3226 hw_stats->last_vfgptc, hw_stats->vfgptc);
3228 /* Good Tx octets, include VF loopback */
3229 UPDATE_VF_STAT_36BIT(IXGBE_VFGOTC_LSB, IXGBE_VFGOTC_MSB,
3230 hw_stats->last_vfgotc, hw_stats->vfgotc);
3232 /* Rx Multicst Packet */
3233 UPDATE_VF_STAT(IXGBE_VFMPRC,
3234 hw_stats->last_vfmprc, hw_stats->vfmprc);
3238 ixgbevf_dev_xstats_get(struct rte_eth_dev *dev, struct rte_eth_xstat *xstats,
3241 struct ixgbevf_hw_stats *hw_stats = (struct ixgbevf_hw_stats *)
3242 IXGBE_DEV_PRIVATE_TO_STATS(dev->data->dev_private);
3245 if (n < IXGBEVF_NB_XSTATS)
3246 return IXGBEVF_NB_XSTATS;
3248 ixgbevf_update_stats(dev);
3253 /* Extended stats */
3254 for (i = 0; i < IXGBEVF_NB_XSTATS; i++) {
3256 xstats[i].value = *(uint64_t *)(((char *)hw_stats) +
3257 rte_ixgbevf_stats_strings[i].offset);
3260 return IXGBEVF_NB_XSTATS;
3264 ixgbevf_dev_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats)
3266 struct ixgbevf_hw_stats *hw_stats = (struct ixgbevf_hw_stats *)
3267 IXGBE_DEV_PRIVATE_TO_STATS(dev->data->dev_private);
3269 ixgbevf_update_stats(dev);
3274 stats->ipackets = hw_stats->vfgprc;
3275 stats->ibytes = hw_stats->vfgorc;
3276 stats->opackets = hw_stats->vfgptc;
3277 stats->obytes = hw_stats->vfgotc;
3281 ixgbevf_dev_stats_reset(struct rte_eth_dev *dev)
3283 struct ixgbevf_hw_stats *hw_stats = (struct ixgbevf_hw_stats *)
3284 IXGBE_DEV_PRIVATE_TO_STATS(dev->data->dev_private);
3286 /* Sync HW register to the last stats */
3287 ixgbevf_dev_stats_get(dev, NULL);
3289 /* reset HW current stats*/
3290 hw_stats->vfgprc = 0;
3291 hw_stats->vfgorc = 0;
3292 hw_stats->vfgptc = 0;
3293 hw_stats->vfgotc = 0;
3297 ixgbe_fw_version_get(struct rte_eth_dev *dev, char *fw_version, size_t fw_size)
3299 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3300 u16 eeprom_verh, eeprom_verl;
3304 ixgbe_read_eeprom(hw, 0x2e, &eeprom_verh);
3305 ixgbe_read_eeprom(hw, 0x2d, &eeprom_verl);
3307 etrack_id = (eeprom_verh << 16) | eeprom_verl;
3308 ret = snprintf(fw_version, fw_size, "0x%08x", etrack_id);
3310 ret += 1; /* add the size of '\0' */
3311 if (fw_size < (u32)ret)
3318 ixgbe_dev_info_get(struct rte_eth_dev *dev, struct rte_eth_dev_info *dev_info)
3320 struct rte_pci_device *pci_dev = IXGBE_DEV_TO_PCI(dev);
3321 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3322 struct rte_eth_conf *dev_conf = &dev->data->dev_conf;
3324 dev_info->pci_dev = pci_dev;
3325 dev_info->max_rx_queues = (uint16_t)hw->mac.max_rx_queues;
3326 dev_info->max_tx_queues = (uint16_t)hw->mac.max_tx_queues;
3327 if (RTE_ETH_DEV_SRIOV(dev).active == 0) {
3329 * When DCB/VT is off, maximum number of queues changes,
3330 * except for 82598EB, which remains constant.
3332 if (dev_conf->txmode.mq_mode == ETH_MQ_TX_NONE &&
3333 hw->mac.type != ixgbe_mac_82598EB)
3334 dev_info->max_tx_queues = IXGBE_NONE_MODE_TX_NB_QUEUES;
3336 dev_info->min_rx_bufsize = 1024; /* cf BSIZEPACKET in SRRCTL register */
3337 dev_info->max_rx_pktlen = 15872; /* includes CRC, cf MAXFRS register */
3338 dev_info->max_mac_addrs = hw->mac.num_rar_entries;
3339 dev_info->max_hash_mac_addrs = IXGBE_VMDQ_NUM_UC_MAC;
3340 dev_info->max_vfs = pci_dev->max_vfs;
3341 if (hw->mac.type == ixgbe_mac_82598EB)
3342 dev_info->max_vmdq_pools = ETH_16_POOLS;
3344 dev_info->max_vmdq_pools = ETH_64_POOLS;
3345 dev_info->vmdq_queue_num = dev_info->max_rx_queues;
3346 dev_info->rx_offload_capa =
3347 DEV_RX_OFFLOAD_VLAN_STRIP |
3348 DEV_RX_OFFLOAD_IPV4_CKSUM |
3349 DEV_RX_OFFLOAD_UDP_CKSUM |
3350 DEV_RX_OFFLOAD_TCP_CKSUM;
3353 * RSC is only supported by 82599 and x540 PF devices in a non-SR-IOV
3356 if ((hw->mac.type == ixgbe_mac_82599EB ||
3357 hw->mac.type == ixgbe_mac_X540) &&
3358 !RTE_ETH_DEV_SRIOV(dev).active)
3359 dev_info->rx_offload_capa |= DEV_RX_OFFLOAD_TCP_LRO;
3361 if (hw->mac.type == ixgbe_mac_82599EB ||
3362 hw->mac.type == ixgbe_mac_X540)
3363 dev_info->rx_offload_capa |= DEV_RX_OFFLOAD_MACSEC_STRIP;
3365 if (hw->mac.type == ixgbe_mac_X550 ||
3366 hw->mac.type == ixgbe_mac_X550EM_x ||
3367 hw->mac.type == ixgbe_mac_X550EM_a)
3368 dev_info->rx_offload_capa |= DEV_RX_OFFLOAD_OUTER_IPV4_CKSUM;
3370 dev_info->tx_offload_capa =
3371 DEV_TX_OFFLOAD_VLAN_INSERT |
3372 DEV_TX_OFFLOAD_IPV4_CKSUM |
3373 DEV_TX_OFFLOAD_UDP_CKSUM |
3374 DEV_TX_OFFLOAD_TCP_CKSUM |
3375 DEV_TX_OFFLOAD_SCTP_CKSUM |
3376 DEV_TX_OFFLOAD_TCP_TSO;
3378 if (hw->mac.type == ixgbe_mac_82599EB ||
3379 hw->mac.type == ixgbe_mac_X540)
3380 dev_info->tx_offload_capa |= DEV_TX_OFFLOAD_MACSEC_INSERT;
3382 if (hw->mac.type == ixgbe_mac_X550 ||
3383 hw->mac.type == ixgbe_mac_X550EM_x ||
3384 hw->mac.type == ixgbe_mac_X550EM_a)
3385 dev_info->tx_offload_capa |= DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM;
3387 dev_info->default_rxconf = (struct rte_eth_rxconf) {
3389 .pthresh = IXGBE_DEFAULT_RX_PTHRESH,
3390 .hthresh = IXGBE_DEFAULT_RX_HTHRESH,
3391 .wthresh = IXGBE_DEFAULT_RX_WTHRESH,
3393 .rx_free_thresh = IXGBE_DEFAULT_RX_FREE_THRESH,
3397 dev_info->default_txconf = (struct rte_eth_txconf) {
3399 .pthresh = IXGBE_DEFAULT_TX_PTHRESH,
3400 .hthresh = IXGBE_DEFAULT_TX_HTHRESH,
3401 .wthresh = IXGBE_DEFAULT_TX_WTHRESH,
3403 .tx_free_thresh = IXGBE_DEFAULT_TX_FREE_THRESH,
3404 .tx_rs_thresh = IXGBE_DEFAULT_TX_RSBIT_THRESH,
3405 .txq_flags = ETH_TXQ_FLAGS_NOMULTSEGS |
3406 ETH_TXQ_FLAGS_NOOFFLOADS,
3409 dev_info->rx_desc_lim = rx_desc_lim;
3410 dev_info->tx_desc_lim = tx_desc_lim;
3412 dev_info->hash_key_size = IXGBE_HKEY_MAX_INDEX * sizeof(uint32_t);
3413 dev_info->reta_size = ixgbe_reta_size_get(hw->mac.type);
3414 dev_info->flow_type_rss_offloads = IXGBE_RSS_OFFLOAD_ALL;
3416 dev_info->speed_capa = ETH_LINK_SPEED_1G | ETH_LINK_SPEED_10G;
3417 if (hw->mac.type == ixgbe_mac_X540 ||
3418 hw->mac.type == ixgbe_mac_X540_vf ||
3419 hw->mac.type == ixgbe_mac_X550 ||
3420 hw->mac.type == ixgbe_mac_X550_vf) {
3421 dev_info->speed_capa |= ETH_LINK_SPEED_100M;
3425 static const uint32_t *
3426 ixgbe_dev_supported_ptypes_get(struct rte_eth_dev *dev)
3428 static const uint32_t ptypes[] = {
3429 /* For non-vec functions,
3430 * refers to ixgbe_rxd_pkt_info_to_pkt_type();
3431 * for vec functions,
3432 * refers to _recv_raw_pkts_vec().
3436 RTE_PTYPE_L3_IPV4_EXT,
3438 RTE_PTYPE_L3_IPV6_EXT,
3442 RTE_PTYPE_TUNNEL_IP,
3443 RTE_PTYPE_INNER_L3_IPV6,
3444 RTE_PTYPE_INNER_L3_IPV6_EXT,
3445 RTE_PTYPE_INNER_L4_TCP,
3446 RTE_PTYPE_INNER_L4_UDP,
3450 if (dev->rx_pkt_burst == ixgbe_recv_pkts ||
3451 dev->rx_pkt_burst == ixgbe_recv_pkts_lro_single_alloc ||
3452 dev->rx_pkt_burst == ixgbe_recv_pkts_lro_bulk_alloc ||
3453 dev->rx_pkt_burst == ixgbe_recv_pkts_bulk_alloc)
3459 ixgbevf_dev_info_get(struct rte_eth_dev *dev,
3460 struct rte_eth_dev_info *dev_info)
3462 struct rte_pci_device *pci_dev = IXGBE_DEV_TO_PCI(dev);
3463 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3465 dev_info->pci_dev = pci_dev;
3466 dev_info->max_rx_queues = (uint16_t)hw->mac.max_rx_queues;
3467 dev_info->max_tx_queues = (uint16_t)hw->mac.max_tx_queues;
3468 dev_info->min_rx_bufsize = 1024; /* cf BSIZEPACKET in SRRCTL reg */
3469 dev_info->max_rx_pktlen = 9728; /* includes CRC, cf MAXFRS reg */
3470 dev_info->max_mac_addrs = hw->mac.num_rar_entries;
3471 dev_info->max_hash_mac_addrs = IXGBE_VMDQ_NUM_UC_MAC;
3472 dev_info->max_vfs = pci_dev->max_vfs;
3473 if (hw->mac.type == ixgbe_mac_82598EB)
3474 dev_info->max_vmdq_pools = ETH_16_POOLS;
3476 dev_info->max_vmdq_pools = ETH_64_POOLS;
3477 dev_info->rx_offload_capa = DEV_RX_OFFLOAD_VLAN_STRIP |
3478 DEV_RX_OFFLOAD_IPV4_CKSUM |
3479 DEV_RX_OFFLOAD_UDP_CKSUM |
3480 DEV_RX_OFFLOAD_TCP_CKSUM;
3481 dev_info->tx_offload_capa = DEV_TX_OFFLOAD_VLAN_INSERT |
3482 DEV_TX_OFFLOAD_IPV4_CKSUM |
3483 DEV_TX_OFFLOAD_UDP_CKSUM |
3484 DEV_TX_OFFLOAD_TCP_CKSUM |
3485 DEV_TX_OFFLOAD_SCTP_CKSUM |
3486 DEV_TX_OFFLOAD_TCP_TSO;
3488 dev_info->default_rxconf = (struct rte_eth_rxconf) {
3490 .pthresh = IXGBE_DEFAULT_RX_PTHRESH,
3491 .hthresh = IXGBE_DEFAULT_RX_HTHRESH,
3492 .wthresh = IXGBE_DEFAULT_RX_WTHRESH,
3494 .rx_free_thresh = IXGBE_DEFAULT_RX_FREE_THRESH,
3498 dev_info->default_txconf = (struct rte_eth_txconf) {
3500 .pthresh = IXGBE_DEFAULT_TX_PTHRESH,
3501 .hthresh = IXGBE_DEFAULT_TX_HTHRESH,
3502 .wthresh = IXGBE_DEFAULT_TX_WTHRESH,
3504 .tx_free_thresh = IXGBE_DEFAULT_TX_FREE_THRESH,
3505 .tx_rs_thresh = IXGBE_DEFAULT_TX_RSBIT_THRESH,
3506 .txq_flags = ETH_TXQ_FLAGS_NOMULTSEGS |
3507 ETH_TXQ_FLAGS_NOOFFLOADS,
3510 dev_info->rx_desc_lim = rx_desc_lim;
3511 dev_info->tx_desc_lim = tx_desc_lim;
3514 /* return 0 means link status changed, -1 means not changed */
3516 ixgbe_dev_link_update(struct rte_eth_dev *dev, int wait_to_complete)
3518 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3519 struct rte_eth_link link, old;
3520 ixgbe_link_speed link_speed = IXGBE_LINK_SPEED_UNKNOWN;
3524 link.link_status = ETH_LINK_DOWN;
3525 link.link_speed = 0;
3526 link.link_duplex = ETH_LINK_HALF_DUPLEX;
3527 memset(&old, 0, sizeof(old));
3528 rte_ixgbe_dev_atomic_read_link_status(dev, &old);
3530 hw->mac.get_link_status = true;
3532 /* check if it needs to wait to complete, if lsc interrupt is enabled */
3533 if (wait_to_complete == 0 || dev->data->dev_conf.intr_conf.lsc != 0)
3534 diag = ixgbe_check_link(hw, &link_speed, &link_up, 0);
3536 diag = ixgbe_check_link(hw, &link_speed, &link_up, 1);
3539 link.link_speed = ETH_SPEED_NUM_100M;
3540 link.link_duplex = ETH_LINK_FULL_DUPLEX;
3541 rte_ixgbe_dev_atomic_write_link_status(dev, &link);
3542 if (link.link_status == old.link_status)
3548 rte_ixgbe_dev_atomic_write_link_status(dev, &link);
3549 if (link.link_status == old.link_status)
3553 link.link_status = ETH_LINK_UP;
3554 link.link_duplex = ETH_LINK_FULL_DUPLEX;
3556 switch (link_speed) {
3558 case IXGBE_LINK_SPEED_UNKNOWN:
3559 link.link_duplex = ETH_LINK_FULL_DUPLEX;
3560 link.link_speed = ETH_SPEED_NUM_100M;
3563 case IXGBE_LINK_SPEED_100_FULL:
3564 link.link_speed = ETH_SPEED_NUM_100M;
3567 case IXGBE_LINK_SPEED_1GB_FULL:
3568 link.link_speed = ETH_SPEED_NUM_1G;
3571 case IXGBE_LINK_SPEED_10GB_FULL:
3572 link.link_speed = ETH_SPEED_NUM_10G;
3575 rte_ixgbe_dev_atomic_write_link_status(dev, &link);
3577 if (link.link_status == old.link_status)
3584 ixgbe_dev_promiscuous_enable(struct rte_eth_dev *dev)
3586 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3589 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
3590 fctrl |= (IXGBE_FCTRL_UPE | IXGBE_FCTRL_MPE);
3591 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
3595 ixgbe_dev_promiscuous_disable(struct rte_eth_dev *dev)
3597 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3600 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
3601 fctrl &= (~IXGBE_FCTRL_UPE);
3602 if (dev->data->all_multicast == 1)
3603 fctrl |= IXGBE_FCTRL_MPE;
3605 fctrl &= (~IXGBE_FCTRL_MPE);
3606 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
3610 ixgbe_dev_allmulticast_enable(struct rte_eth_dev *dev)
3612 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3615 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
3616 fctrl |= IXGBE_FCTRL_MPE;
3617 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
3621 ixgbe_dev_allmulticast_disable(struct rte_eth_dev *dev)
3623 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3626 if (dev->data->promiscuous == 1)
3627 return; /* must remain in all_multicast mode */
3629 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
3630 fctrl &= (~IXGBE_FCTRL_MPE);
3631 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
3635 * It clears the interrupt causes and enables the interrupt.
3636 * It will be called once only during nic initialized.
3639 * Pointer to struct rte_eth_dev.
3642 * - On success, zero.
3643 * - On failure, a negative value.
3646 ixgbe_dev_lsc_interrupt_setup(struct rte_eth_dev *dev)
3648 struct ixgbe_interrupt *intr =
3649 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
3651 ixgbe_dev_link_status_print(dev);
3652 intr->mask |= IXGBE_EICR_LSC;
3658 * It clears the interrupt causes and enables the interrupt.
3659 * It will be called once only during nic initialized.
3662 * Pointer to struct rte_eth_dev.
3665 * - On success, zero.
3666 * - On failure, a negative value.
3669 ixgbe_dev_rxq_interrupt_setup(struct rte_eth_dev *dev)
3671 struct ixgbe_interrupt *intr =
3672 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
3674 intr->mask |= IXGBE_EICR_RTX_QUEUE;
3680 * It clears the interrupt causes and enables the interrupt.
3681 * It will be called once only during nic initialized.
3684 * Pointer to struct rte_eth_dev.
3687 * - On success, zero.
3688 * - On failure, a negative value.
3691 ixgbe_dev_macsec_interrupt_setup(struct rte_eth_dev *dev)
3693 struct ixgbe_interrupt *intr =
3694 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
3696 intr->mask |= IXGBE_EICR_LINKSEC;
3702 * It reads ICR and sets flag (IXGBE_EICR_LSC) for the link_update.
3705 * Pointer to struct rte_eth_dev.
3708 * - On success, zero.
3709 * - On failure, a negative value.
3712 ixgbe_dev_interrupt_get_status(struct rte_eth_dev *dev)
3715 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3716 struct ixgbe_interrupt *intr =
3717 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
3719 /* clear all cause mask */
3720 ixgbe_disable_intr(hw);
3722 /* read-on-clear nic registers here */
3723 eicr = IXGBE_READ_REG(hw, IXGBE_EICR);
3724 PMD_DRV_LOG(DEBUG, "eicr %x", eicr);
3728 /* set flag for async link update */
3729 if (eicr & IXGBE_EICR_LSC)
3730 intr->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
3732 if (eicr & IXGBE_EICR_MAILBOX)
3733 intr->flags |= IXGBE_FLAG_MAILBOX;
3735 if (eicr & IXGBE_EICR_LINKSEC)
3736 intr->flags |= IXGBE_FLAG_MACSEC;
3738 if (hw->mac.type == ixgbe_mac_X550EM_x &&
3739 hw->phy.type == ixgbe_phy_x550em_ext_t &&
3740 (eicr & IXGBE_EICR_GPI_SDP0_X550EM_x))
3741 intr->flags |= IXGBE_FLAG_PHY_INTERRUPT;
3747 * It gets and then prints the link status.
3750 * Pointer to struct rte_eth_dev.
3753 * - On success, zero.
3754 * - On failure, a negative value.
3757 ixgbe_dev_link_status_print(struct rte_eth_dev *dev)
3759 struct rte_pci_device *pci_dev = IXGBE_DEV_TO_PCI(dev);
3760 struct rte_eth_link link;
3762 memset(&link, 0, sizeof(link));
3763 rte_ixgbe_dev_atomic_read_link_status(dev, &link);
3764 if (link.link_status) {
3765 PMD_INIT_LOG(INFO, "Port %d: Link Up - speed %u Mbps - %s",
3766 (int)(dev->data->port_id),
3767 (unsigned)link.link_speed,
3768 link.link_duplex == ETH_LINK_FULL_DUPLEX ?
3769 "full-duplex" : "half-duplex");
3771 PMD_INIT_LOG(INFO, " Port %d: Link Down",
3772 (int)(dev->data->port_id));
3774 PMD_INIT_LOG(DEBUG, "PCI Address: " PCI_PRI_FMT,
3775 pci_dev->addr.domain,
3777 pci_dev->addr.devid,
3778 pci_dev->addr.function);
3782 * It executes link_update after knowing an interrupt occurred.
3785 * Pointer to struct rte_eth_dev.
3788 * - On success, zero.
3789 * - On failure, a negative value.
3792 ixgbe_dev_interrupt_action(struct rte_eth_dev *dev,
3793 struct rte_intr_handle *intr_handle)
3795 struct ixgbe_interrupt *intr =
3796 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
3798 struct rte_eth_link link;
3799 struct ixgbe_hw *hw =
3800 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3802 PMD_DRV_LOG(DEBUG, "intr action type %d", intr->flags);
3804 if (intr->flags & IXGBE_FLAG_MAILBOX) {
3805 ixgbe_pf_mbx_process(dev);
3806 intr->flags &= ~IXGBE_FLAG_MAILBOX;
3809 if (intr->flags & IXGBE_FLAG_PHY_INTERRUPT) {
3810 ixgbe_handle_lasi(hw);
3811 intr->flags &= ~IXGBE_FLAG_PHY_INTERRUPT;
3814 if (intr->flags & IXGBE_FLAG_NEED_LINK_UPDATE) {
3815 /* get the link status before link update, for predicting later */
3816 memset(&link, 0, sizeof(link));
3817 rte_ixgbe_dev_atomic_read_link_status(dev, &link);
3819 ixgbe_dev_link_update(dev, 0);
3822 if (!link.link_status)
3823 /* handle it 1 sec later, wait it being stable */
3824 timeout = IXGBE_LINK_UP_CHECK_TIMEOUT;
3825 /* likely to down */
3827 /* handle it 4 sec later, wait it being stable */
3828 timeout = IXGBE_LINK_DOWN_CHECK_TIMEOUT;
3830 ixgbe_dev_link_status_print(dev);
3831 intr->mask_original = intr->mask;
3832 /* only disable lsc interrupt */
3833 intr->mask &= ~IXGBE_EIMS_LSC;
3834 if (rte_eal_alarm_set(timeout * 1000,
3835 ixgbe_dev_interrupt_delayed_handler, (void *)dev) < 0)
3836 PMD_DRV_LOG(ERR, "Error setting alarm");
3838 intr->mask = intr->mask_original;
3841 PMD_DRV_LOG(DEBUG, "enable intr immediately");
3842 ixgbe_enable_intr(dev);
3843 rte_intr_enable(intr_handle);
3849 * Interrupt handler which shall be registered for alarm callback for delayed
3850 * handling specific interrupt to wait for the stable nic state. As the
3851 * NIC interrupt state is not stable for ixgbe after link is just down,
3852 * it needs to wait 4 seconds to get the stable status.
3855 * Pointer to interrupt handle.
3857 * The address of parameter (struct rte_eth_dev *) regsitered before.
3863 ixgbe_dev_interrupt_delayed_handler(void *param)
3865 struct rte_eth_dev *dev = (struct rte_eth_dev *)param;
3866 struct rte_pci_device *pci_dev = IXGBE_DEV_TO_PCI(dev);
3867 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
3868 struct ixgbe_interrupt *intr =
3869 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
3870 struct ixgbe_hw *hw =
3871 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3874 ixgbe_disable_intr(hw);
3876 eicr = IXGBE_READ_REG(hw, IXGBE_EICR);
3877 if (eicr & IXGBE_EICR_MAILBOX)
3878 ixgbe_pf_mbx_process(dev);
3880 if (intr->flags & IXGBE_FLAG_PHY_INTERRUPT) {
3881 ixgbe_handle_lasi(hw);
3882 intr->flags &= ~IXGBE_FLAG_PHY_INTERRUPT;
3885 if (intr->flags & IXGBE_FLAG_NEED_LINK_UPDATE) {
3886 ixgbe_dev_link_update(dev, 0);
3887 intr->flags &= ~IXGBE_FLAG_NEED_LINK_UPDATE;
3888 ixgbe_dev_link_status_print(dev);
3889 _rte_eth_dev_callback_process(dev, RTE_ETH_EVENT_INTR_LSC, NULL);
3892 if (intr->flags & IXGBE_FLAG_MACSEC) {
3893 _rte_eth_dev_callback_process(dev, RTE_ETH_EVENT_MACSEC,
3895 intr->flags &= ~IXGBE_FLAG_MACSEC;
3898 /* restore original mask */
3899 intr->mask = intr->mask_original;
3900 intr->mask_original = 0;
3902 PMD_DRV_LOG(DEBUG, "enable intr in delayed handler S[%08x]", eicr);
3903 ixgbe_enable_intr(dev);
3904 rte_intr_enable(intr_handle);
3908 * Interrupt handler triggered by NIC for handling
3909 * specific interrupt.
3912 * Pointer to interrupt handle.
3914 * The address of parameter (struct rte_eth_dev *) regsitered before.
3920 ixgbe_dev_interrupt_handler(struct rte_intr_handle *handle,
3923 struct rte_eth_dev *dev = (struct rte_eth_dev *)param;
3925 ixgbe_dev_interrupt_get_status(dev);
3926 ixgbe_dev_interrupt_action(dev, handle);
3930 ixgbe_dev_led_on(struct rte_eth_dev *dev)
3932 struct ixgbe_hw *hw;
3934 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3935 return ixgbe_led_on(hw, 0) == IXGBE_SUCCESS ? 0 : -ENOTSUP;
3939 ixgbe_dev_led_off(struct rte_eth_dev *dev)
3941 struct ixgbe_hw *hw;
3943 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3944 return ixgbe_led_off(hw, 0) == IXGBE_SUCCESS ? 0 : -ENOTSUP;
3948 ixgbe_flow_ctrl_get(struct rte_eth_dev *dev, struct rte_eth_fc_conf *fc_conf)
3950 struct ixgbe_hw *hw;
3956 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3958 fc_conf->pause_time = hw->fc.pause_time;
3959 fc_conf->high_water = hw->fc.high_water[0];
3960 fc_conf->low_water = hw->fc.low_water[0];
3961 fc_conf->send_xon = hw->fc.send_xon;
3962 fc_conf->autoneg = !hw->fc.disable_fc_autoneg;
3965 * Return rx_pause status according to actual setting of
3968 mflcn_reg = IXGBE_READ_REG(hw, IXGBE_MFLCN);
3969 if (mflcn_reg & (IXGBE_MFLCN_RPFCE | IXGBE_MFLCN_RFCE))
3975 * Return tx_pause status according to actual setting of
3978 fccfg_reg = IXGBE_READ_REG(hw, IXGBE_FCCFG);
3979 if (fccfg_reg & (IXGBE_FCCFG_TFCE_802_3X | IXGBE_FCCFG_TFCE_PRIORITY))
3984 if (rx_pause && tx_pause)
3985 fc_conf->mode = RTE_FC_FULL;
3987 fc_conf->mode = RTE_FC_RX_PAUSE;
3989 fc_conf->mode = RTE_FC_TX_PAUSE;
3991 fc_conf->mode = RTE_FC_NONE;
3997 ixgbe_flow_ctrl_set(struct rte_eth_dev *dev, struct rte_eth_fc_conf *fc_conf)
3999 struct ixgbe_hw *hw;
4001 uint32_t rx_buf_size;
4002 uint32_t max_high_water;
4004 enum ixgbe_fc_mode rte_fcmode_2_ixgbe_fcmode[] = {
4011 PMD_INIT_FUNC_TRACE();
4013 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4014 rx_buf_size = IXGBE_READ_REG(hw, IXGBE_RXPBSIZE(0));
4015 PMD_INIT_LOG(DEBUG, "Rx packet buffer size = 0x%x", rx_buf_size);
4018 * At least reserve one Ethernet frame for watermark
4019 * high_water/low_water in kilo bytes for ixgbe
4021 max_high_water = (rx_buf_size - ETHER_MAX_LEN) >> IXGBE_RXPBSIZE_SHIFT;
4022 if ((fc_conf->high_water > max_high_water) ||
4023 (fc_conf->high_water < fc_conf->low_water)) {
4024 PMD_INIT_LOG(ERR, "Invalid high/low water setup value in KB");
4025 PMD_INIT_LOG(ERR, "High_water must <= 0x%x", max_high_water);
4029 hw->fc.requested_mode = rte_fcmode_2_ixgbe_fcmode[fc_conf->mode];
4030 hw->fc.pause_time = fc_conf->pause_time;
4031 hw->fc.high_water[0] = fc_conf->high_water;
4032 hw->fc.low_water[0] = fc_conf->low_water;
4033 hw->fc.send_xon = fc_conf->send_xon;
4034 hw->fc.disable_fc_autoneg = !fc_conf->autoneg;
4036 err = ixgbe_fc_enable(hw);
4038 /* Not negotiated is not an error case */
4039 if ((err == IXGBE_SUCCESS) || (err == IXGBE_ERR_FC_NOT_NEGOTIATED)) {
4041 /* check if we want to forward MAC frames - driver doesn't have native
4042 * capability to do that, so we'll write the registers ourselves */
4044 mflcn = IXGBE_READ_REG(hw, IXGBE_MFLCN);
4046 /* set or clear MFLCN.PMCF bit depending on configuration */
4047 if (fc_conf->mac_ctrl_frame_fwd != 0)
4048 mflcn |= IXGBE_MFLCN_PMCF;
4050 mflcn &= ~IXGBE_MFLCN_PMCF;
4052 IXGBE_WRITE_REG(hw, IXGBE_MFLCN, mflcn);
4053 IXGBE_WRITE_FLUSH(hw);
4058 PMD_INIT_LOG(ERR, "ixgbe_fc_enable = 0x%x", err);
4063 * ixgbe_pfc_enable_generic - Enable flow control
4064 * @hw: pointer to hardware structure
4065 * @tc_num: traffic class number
4066 * Enable flow control according to the current settings.
4069 ixgbe_dcb_pfc_enable_generic(struct ixgbe_hw *hw, uint8_t tc_num)
4072 uint32_t mflcn_reg, fccfg_reg;
4074 uint32_t fcrtl, fcrth;
4078 /* Validate the water mark configuration */
4079 if (!hw->fc.pause_time) {
4080 ret_val = IXGBE_ERR_INVALID_LINK_SETTINGS;
4084 /* Low water mark of zero causes XOFF floods */
4085 if (hw->fc.current_mode & ixgbe_fc_tx_pause) {
4086 /* High/Low water can not be 0 */
4087 if ((!hw->fc.high_water[tc_num]) || (!hw->fc.low_water[tc_num])) {
4088 PMD_INIT_LOG(ERR, "Invalid water mark configuration");
4089 ret_val = IXGBE_ERR_INVALID_LINK_SETTINGS;
4093 if (hw->fc.low_water[tc_num] >= hw->fc.high_water[tc_num]) {
4094 PMD_INIT_LOG(ERR, "Invalid water mark configuration");
4095 ret_val = IXGBE_ERR_INVALID_LINK_SETTINGS;
4099 /* Negotiate the fc mode to use */
4100 ixgbe_fc_autoneg(hw);
4102 /* Disable any previous flow control settings */
4103 mflcn_reg = IXGBE_READ_REG(hw, IXGBE_MFLCN);
4104 mflcn_reg &= ~(IXGBE_MFLCN_RPFCE_SHIFT | IXGBE_MFLCN_RFCE|IXGBE_MFLCN_RPFCE);
4106 fccfg_reg = IXGBE_READ_REG(hw, IXGBE_FCCFG);
4107 fccfg_reg &= ~(IXGBE_FCCFG_TFCE_802_3X | IXGBE_FCCFG_TFCE_PRIORITY);
4109 switch (hw->fc.current_mode) {
4112 * If the count of enabled RX Priority Flow control >1,
4113 * and the TX pause can not be disabled
4116 for (i = 0; i < IXGBE_DCB_MAX_TRAFFIC_CLASS; i++) {
4117 reg = IXGBE_READ_REG(hw, IXGBE_FCRTH_82599(i));
4118 if (reg & IXGBE_FCRTH_FCEN)
4122 fccfg_reg |= IXGBE_FCCFG_TFCE_PRIORITY;
4124 case ixgbe_fc_rx_pause:
4126 * Rx Flow control is enabled and Tx Flow control is
4127 * disabled by software override. Since there really
4128 * isn't a way to advertise that we are capable of RX
4129 * Pause ONLY, we will advertise that we support both
4130 * symmetric and asymmetric Rx PAUSE. Later, we will
4131 * disable the adapter's ability to send PAUSE frames.
4133 mflcn_reg |= IXGBE_MFLCN_RPFCE;
4135 * If the count of enabled RX Priority Flow control >1,
4136 * and the TX pause can not be disabled
4139 for (i = 0; i < IXGBE_DCB_MAX_TRAFFIC_CLASS; i++) {
4140 reg = IXGBE_READ_REG(hw, IXGBE_FCRTH_82599(i));
4141 if (reg & IXGBE_FCRTH_FCEN)
4145 fccfg_reg |= IXGBE_FCCFG_TFCE_PRIORITY;
4147 case ixgbe_fc_tx_pause:
4149 * Tx Flow control is enabled, and Rx Flow control is
4150 * disabled by software override.
4152 fccfg_reg |= IXGBE_FCCFG_TFCE_PRIORITY;
4155 /* Flow control (both Rx and Tx) is enabled by SW override. */
4156 mflcn_reg |= IXGBE_MFLCN_RPFCE;
4157 fccfg_reg |= IXGBE_FCCFG_TFCE_PRIORITY;
4160 PMD_DRV_LOG(DEBUG, "Flow control param set incorrectly");
4161 ret_val = IXGBE_ERR_CONFIG;
4165 /* Set 802.3x based flow control settings. */
4166 mflcn_reg |= IXGBE_MFLCN_DPF;
4167 IXGBE_WRITE_REG(hw, IXGBE_MFLCN, mflcn_reg);
4168 IXGBE_WRITE_REG(hw, IXGBE_FCCFG, fccfg_reg);
4170 /* Set up and enable Rx high/low water mark thresholds, enable XON. */
4171 if ((hw->fc.current_mode & ixgbe_fc_tx_pause) &&
4172 hw->fc.high_water[tc_num]) {
4173 fcrtl = (hw->fc.low_water[tc_num] << 10) | IXGBE_FCRTL_XONE;
4174 IXGBE_WRITE_REG(hw, IXGBE_FCRTL_82599(tc_num), fcrtl);
4175 fcrth = (hw->fc.high_water[tc_num] << 10) | IXGBE_FCRTH_FCEN;
4177 IXGBE_WRITE_REG(hw, IXGBE_FCRTL_82599(tc_num), 0);
4179 * In order to prevent Tx hangs when the internal Tx
4180 * switch is enabled we must set the high water mark
4181 * to the maximum FCRTH value. This allows the Tx
4182 * switch to function even under heavy Rx workloads.
4184 fcrth = IXGBE_READ_REG(hw, IXGBE_RXPBSIZE(tc_num)) - 32;
4186 IXGBE_WRITE_REG(hw, IXGBE_FCRTH_82599(tc_num), fcrth);
4188 /* Configure pause time (2 TCs per register) */
4189 reg = hw->fc.pause_time * 0x00010001;
4190 for (i = 0; i < (IXGBE_DCB_MAX_TRAFFIC_CLASS / 2); i++)
4191 IXGBE_WRITE_REG(hw, IXGBE_FCTTV(i), reg);
4193 /* Configure flow control refresh threshold value */
4194 IXGBE_WRITE_REG(hw, IXGBE_FCRTV, hw->fc.pause_time / 2);
4201 ixgbe_dcb_pfc_enable(struct rte_eth_dev *dev, uint8_t tc_num)
4203 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4204 int32_t ret_val = IXGBE_NOT_IMPLEMENTED;
4206 if (hw->mac.type != ixgbe_mac_82598EB) {
4207 ret_val = ixgbe_dcb_pfc_enable_generic(hw, tc_num);
4213 ixgbe_priority_flow_ctrl_set(struct rte_eth_dev *dev, struct rte_eth_pfc_conf *pfc_conf)
4216 uint32_t rx_buf_size;
4217 uint32_t max_high_water;
4219 uint8_t map[IXGBE_DCB_MAX_USER_PRIORITY] = { 0 };
4220 struct ixgbe_hw *hw =
4221 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4222 struct ixgbe_dcb_config *dcb_config =
4223 IXGBE_DEV_PRIVATE_TO_DCB_CFG(dev->data->dev_private);
4225 enum ixgbe_fc_mode rte_fcmode_2_ixgbe_fcmode[] = {
4232 PMD_INIT_FUNC_TRACE();
4234 ixgbe_dcb_unpack_map_cee(dcb_config, IXGBE_DCB_RX_CONFIG, map);
4235 tc_num = map[pfc_conf->priority];
4236 rx_buf_size = IXGBE_READ_REG(hw, IXGBE_RXPBSIZE(tc_num));
4237 PMD_INIT_LOG(DEBUG, "Rx packet buffer size = 0x%x", rx_buf_size);
4239 * At least reserve one Ethernet frame for watermark
4240 * high_water/low_water in kilo bytes for ixgbe
4242 max_high_water = (rx_buf_size - ETHER_MAX_LEN) >> IXGBE_RXPBSIZE_SHIFT;
4243 if ((pfc_conf->fc.high_water > max_high_water) ||
4244 (pfc_conf->fc.high_water <= pfc_conf->fc.low_water)) {
4245 PMD_INIT_LOG(ERR, "Invalid high/low water setup value in KB");
4246 PMD_INIT_LOG(ERR, "High_water must <= 0x%x", max_high_water);
4250 hw->fc.requested_mode = rte_fcmode_2_ixgbe_fcmode[pfc_conf->fc.mode];
4251 hw->fc.pause_time = pfc_conf->fc.pause_time;
4252 hw->fc.send_xon = pfc_conf->fc.send_xon;
4253 hw->fc.low_water[tc_num] = pfc_conf->fc.low_water;
4254 hw->fc.high_water[tc_num] = pfc_conf->fc.high_water;
4256 err = ixgbe_dcb_pfc_enable(dev, tc_num);
4258 /* Not negotiated is not an error case */
4259 if ((err == IXGBE_SUCCESS) || (err == IXGBE_ERR_FC_NOT_NEGOTIATED))
4262 PMD_INIT_LOG(ERR, "ixgbe_dcb_pfc_enable = 0x%x", err);
4267 ixgbe_dev_rss_reta_update(struct rte_eth_dev *dev,
4268 struct rte_eth_rss_reta_entry64 *reta_conf,
4271 uint16_t i, sp_reta_size;
4274 uint16_t idx, shift;
4275 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4278 PMD_INIT_FUNC_TRACE();
4280 if (!ixgbe_rss_update_sp(hw->mac.type)) {
4281 PMD_DRV_LOG(ERR, "RSS reta update is not supported on this "
4286 sp_reta_size = ixgbe_reta_size_get(hw->mac.type);
4287 if (reta_size != sp_reta_size) {
4288 PMD_DRV_LOG(ERR, "The size of hash lookup table configured "
4289 "(%d) doesn't match the number hardware can supported "
4290 "(%d)", reta_size, sp_reta_size);
4294 for (i = 0; i < reta_size; i += IXGBE_4_BIT_WIDTH) {
4295 idx = i / RTE_RETA_GROUP_SIZE;
4296 shift = i % RTE_RETA_GROUP_SIZE;
4297 mask = (uint8_t)((reta_conf[idx].mask >> shift) &
4301 reta_reg = ixgbe_reta_reg_get(hw->mac.type, i);
4302 if (mask == IXGBE_4_BIT_MASK)
4305 r = IXGBE_READ_REG(hw, reta_reg);
4306 for (j = 0, reta = 0; j < IXGBE_4_BIT_WIDTH; j++) {
4307 if (mask & (0x1 << j))
4308 reta |= reta_conf[idx].reta[shift + j] <<
4311 reta |= r & (IXGBE_8_BIT_MASK <<
4314 IXGBE_WRITE_REG(hw, reta_reg, reta);
4321 ixgbe_dev_rss_reta_query(struct rte_eth_dev *dev,
4322 struct rte_eth_rss_reta_entry64 *reta_conf,
4325 uint16_t i, sp_reta_size;
4328 uint16_t idx, shift;
4329 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4332 PMD_INIT_FUNC_TRACE();
4333 sp_reta_size = ixgbe_reta_size_get(hw->mac.type);
4334 if (reta_size != sp_reta_size) {
4335 PMD_DRV_LOG(ERR, "The size of hash lookup table configured "
4336 "(%d) doesn't match the number hardware can supported "
4337 "(%d)", reta_size, sp_reta_size);
4341 for (i = 0; i < reta_size; i += IXGBE_4_BIT_WIDTH) {
4342 idx = i / RTE_RETA_GROUP_SIZE;
4343 shift = i % RTE_RETA_GROUP_SIZE;
4344 mask = (uint8_t)((reta_conf[idx].mask >> shift) &
4349 reta_reg = ixgbe_reta_reg_get(hw->mac.type, i);
4350 reta = IXGBE_READ_REG(hw, reta_reg);
4351 for (j = 0; j < IXGBE_4_BIT_WIDTH; j++) {
4352 if (mask & (0x1 << j))
4353 reta_conf[idx].reta[shift + j] =
4354 ((reta >> (CHAR_BIT * j)) &
4363 ixgbe_add_rar(struct rte_eth_dev *dev, struct ether_addr *mac_addr,
4364 uint32_t index, uint32_t pool)
4366 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4367 uint32_t enable_addr = 1;
4369 ixgbe_set_rar(hw, index, mac_addr->addr_bytes, pool, enable_addr);
4373 ixgbe_remove_rar(struct rte_eth_dev *dev, uint32_t index)
4375 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4377 ixgbe_clear_rar(hw, index);
4381 ixgbe_set_default_mac_addr(struct rte_eth_dev *dev, struct ether_addr *addr)
4383 ixgbe_remove_rar(dev, 0);
4385 ixgbe_add_rar(dev, addr, 0, 0);
4389 is_device_supported(struct rte_eth_dev *dev, struct eth_driver *drv)
4391 if (strcmp(dev->driver->pci_drv.driver.name,
4392 drv->pci_drv.driver.name))
4399 rte_pmd_ixgbe_set_vf_mac_addr(uint8_t port, uint16_t vf,
4400 struct ether_addr *mac_addr)
4402 struct ixgbe_hw *hw;
4403 struct ixgbe_vf_info *vfinfo;
4405 uint8_t *new_mac = (uint8_t *)(mac_addr);
4406 struct rte_eth_dev *dev;
4407 struct rte_pci_device *pci_dev;
4409 RTE_ETH_VALID_PORTID_OR_ERR_RET(port, -ENODEV);
4411 dev = &rte_eth_devices[port];
4412 pci_dev = IXGBE_DEV_TO_PCI(dev);
4414 if (!is_device_supported(dev, &rte_ixgbe_pmd))
4417 if (vf >= pci_dev->max_vfs)
4420 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4421 vfinfo = *(IXGBE_DEV_PRIVATE_TO_P_VFDATA(dev->data->dev_private));
4422 rar_entry = hw->mac.num_rar_entries - (vf + 1);
4424 if (is_valid_assigned_ether_addr((struct ether_addr *)new_mac)) {
4425 rte_memcpy(vfinfo[vf].vf_mac_addresses, new_mac,
4427 return hw->mac.ops.set_rar(hw, rar_entry, new_mac, vf,
4434 ixgbe_dev_mtu_set(struct rte_eth_dev *dev, uint16_t mtu)
4438 struct ixgbe_hw *hw;
4439 struct rte_eth_dev_info dev_info;
4440 uint32_t frame_size = mtu + ETHER_HDR_LEN + ETHER_CRC_LEN;
4442 ixgbe_dev_info_get(dev, &dev_info);
4444 /* check that mtu is within the allowed range */
4445 if ((mtu < ETHER_MIN_MTU) || (frame_size > dev_info.max_rx_pktlen))
4448 /* refuse mtu that requires the support of scattered packets when this
4449 * feature has not been enabled before.
4451 if (!dev->data->scattered_rx &&
4452 (frame_size + 2 * IXGBE_VLAN_TAG_SIZE >
4453 dev->data->min_rx_buf_size - RTE_PKTMBUF_HEADROOM))
4456 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4457 hlreg0 = IXGBE_READ_REG(hw, IXGBE_HLREG0);
4459 /* switch to jumbo mode if needed */
4460 if (frame_size > ETHER_MAX_LEN) {
4461 dev->data->dev_conf.rxmode.jumbo_frame = 1;
4462 hlreg0 |= IXGBE_HLREG0_JUMBOEN;
4464 dev->data->dev_conf.rxmode.jumbo_frame = 0;
4465 hlreg0 &= ~IXGBE_HLREG0_JUMBOEN;
4467 IXGBE_WRITE_REG(hw, IXGBE_HLREG0, hlreg0);
4469 /* update max frame size */
4470 dev->data->dev_conf.rxmode.max_rx_pkt_len = frame_size;
4472 maxfrs = IXGBE_READ_REG(hw, IXGBE_MAXFRS);
4473 maxfrs &= 0x0000FFFF;
4474 maxfrs |= (dev->data->dev_conf.rxmode.max_rx_pkt_len << 16);
4475 IXGBE_WRITE_REG(hw, IXGBE_MAXFRS, maxfrs);
4481 * Virtual Function operations
4484 ixgbevf_intr_disable(struct ixgbe_hw *hw)
4486 PMD_INIT_FUNC_TRACE();
4488 /* Clear interrupt mask to stop from interrupts being generated */
4489 IXGBE_WRITE_REG(hw, IXGBE_VTEIMC, IXGBE_VF_IRQ_CLEAR_MASK);
4491 IXGBE_WRITE_FLUSH(hw);
4495 ixgbevf_intr_enable(struct ixgbe_hw *hw)
4497 PMD_INIT_FUNC_TRACE();
4499 /* VF enable interrupt autoclean */
4500 IXGBE_WRITE_REG(hw, IXGBE_VTEIAM, IXGBE_VF_IRQ_ENABLE_MASK);
4501 IXGBE_WRITE_REG(hw, IXGBE_VTEIAC, IXGBE_VF_IRQ_ENABLE_MASK);
4502 IXGBE_WRITE_REG(hw, IXGBE_VTEIMS, IXGBE_VF_IRQ_ENABLE_MASK);
4504 IXGBE_WRITE_FLUSH(hw);
4508 ixgbevf_dev_configure(struct rte_eth_dev *dev)
4510 struct rte_eth_conf *conf = &dev->data->dev_conf;
4511 struct ixgbe_adapter *adapter =
4512 (struct ixgbe_adapter *)dev->data->dev_private;
4514 PMD_INIT_LOG(DEBUG, "Configured Virtual Function port id: %d",
4515 dev->data->port_id);
4518 * VF has no ability to enable/disable HW CRC
4519 * Keep the persistent behavior the same as Host PF
4521 #ifndef RTE_LIBRTE_IXGBE_PF_DISABLE_STRIP_CRC
4522 if (!conf->rxmode.hw_strip_crc) {
4523 PMD_INIT_LOG(NOTICE, "VF can't disable HW CRC Strip");
4524 conf->rxmode.hw_strip_crc = 1;
4527 if (conf->rxmode.hw_strip_crc) {
4528 PMD_INIT_LOG(NOTICE, "VF can't enable HW CRC Strip");
4529 conf->rxmode.hw_strip_crc = 0;
4534 * Initialize to TRUE. If any of Rx queues doesn't meet the bulk
4535 * allocation or vector Rx preconditions we will reset it.
4537 adapter->rx_bulk_alloc_allowed = true;
4538 adapter->rx_vec_allowed = true;
4544 ixgbevf_dev_start(struct rte_eth_dev *dev)
4546 struct ixgbe_hw *hw =
4547 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4548 uint32_t intr_vector = 0;
4549 struct rte_pci_device *pci_dev = IXGBE_DEV_TO_PCI(dev);
4550 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
4554 PMD_INIT_FUNC_TRACE();
4556 hw->mac.ops.reset_hw(hw);
4557 hw->mac.get_link_status = true;
4559 /* negotiate mailbox API version to use with the PF. */
4560 ixgbevf_negotiate_api(hw);
4562 ixgbevf_dev_tx_init(dev);
4564 /* This can fail when allocating mbufs for descriptor rings */
4565 err = ixgbevf_dev_rx_init(dev);
4567 PMD_INIT_LOG(ERR, "Unable to initialize RX hardware (%d)", err);
4568 ixgbe_dev_clear_queues(dev);
4573 ixgbevf_set_vfta_all(dev, 1);
4576 mask = ETH_VLAN_STRIP_MASK | ETH_VLAN_FILTER_MASK |
4577 ETH_VLAN_EXTEND_MASK;
4578 ixgbevf_vlan_offload_set(dev, mask);
4580 ixgbevf_dev_rxtx_start(dev);
4582 /* check and configure queue intr-vector mapping */
4583 if (dev->data->dev_conf.intr_conf.rxq != 0) {
4584 intr_vector = dev->data->nb_rx_queues;
4585 if (rte_intr_efd_enable(intr_handle, intr_vector))
4589 if (rte_intr_dp_is_en(intr_handle) && !intr_handle->intr_vec) {
4590 intr_handle->intr_vec =
4591 rte_zmalloc("intr_vec",
4592 dev->data->nb_rx_queues * sizeof(int), 0);
4593 if (intr_handle->intr_vec == NULL) {
4594 PMD_INIT_LOG(ERR, "Failed to allocate %d rx_queues"
4595 " intr_vec", dev->data->nb_rx_queues);
4599 ixgbevf_configure_msix(dev);
4601 rte_intr_enable(intr_handle);
4603 /* Re-enable interrupt for VF */
4604 ixgbevf_intr_enable(hw);
4610 ixgbevf_dev_stop(struct rte_eth_dev *dev)
4612 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4613 struct rte_pci_device *pci_dev = IXGBE_DEV_TO_PCI(dev);
4614 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
4616 PMD_INIT_FUNC_TRACE();
4618 ixgbevf_intr_disable(hw);
4620 hw->adapter_stopped = 1;
4621 ixgbe_stop_adapter(hw);
4624 * Clear what we set, but we still keep shadow_vfta to
4625 * restore after device starts
4627 ixgbevf_set_vfta_all(dev, 0);
4629 /* Clear stored conf */
4630 dev->data->scattered_rx = 0;
4632 ixgbe_dev_clear_queues(dev);
4634 /* Clean datapath event and queue/vec mapping */
4635 rte_intr_efd_disable(intr_handle);
4636 if (intr_handle->intr_vec != NULL) {
4637 rte_free(intr_handle->intr_vec);
4638 intr_handle->intr_vec = NULL;
4643 ixgbevf_dev_close(struct rte_eth_dev *dev)
4645 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4647 PMD_INIT_FUNC_TRACE();
4651 ixgbevf_dev_stop(dev);
4653 ixgbe_dev_free_queues(dev);
4656 * Remove the VF MAC address ro ensure
4657 * that the VF traffic goes to the PF
4658 * after stop, close and detach of the VF
4660 ixgbevf_remove_mac_addr(dev, 0);
4663 static void ixgbevf_set_vfta_all(struct rte_eth_dev *dev, bool on)
4665 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4666 struct ixgbe_vfta *shadow_vfta =
4667 IXGBE_DEV_PRIVATE_TO_VFTA(dev->data->dev_private);
4668 int i = 0, j = 0, vfta = 0, mask = 1;
4670 for (i = 0; i < IXGBE_VFTA_SIZE; i++) {
4671 vfta = shadow_vfta->vfta[i];
4674 for (j = 0; j < 32; j++) {
4676 ixgbe_set_vfta(hw, (i<<5)+j, 0,
4686 ixgbevf_vlan_filter_set(struct rte_eth_dev *dev, uint16_t vlan_id, int on)
4688 struct ixgbe_hw *hw =
4689 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4690 struct ixgbe_vfta *shadow_vfta =
4691 IXGBE_DEV_PRIVATE_TO_VFTA(dev->data->dev_private);
4692 uint32_t vid_idx = 0;
4693 uint32_t vid_bit = 0;
4696 PMD_INIT_FUNC_TRACE();
4698 /* vind is not used in VF driver, set to 0, check ixgbe_set_vfta_vf */
4699 ret = ixgbe_set_vfta(hw, vlan_id, 0, !!on, false);
4701 PMD_INIT_LOG(ERR, "Unable to set VF vlan");
4704 vid_idx = (uint32_t) ((vlan_id >> 5) & 0x7F);
4705 vid_bit = (uint32_t) (1 << (vlan_id & 0x1F));
4707 /* Save what we set and retore it after device reset */
4709 shadow_vfta->vfta[vid_idx] |= vid_bit;
4711 shadow_vfta->vfta[vid_idx] &= ~vid_bit;
4717 ixgbevf_vlan_strip_queue_set(struct rte_eth_dev *dev, uint16_t queue, int on)
4719 struct ixgbe_hw *hw =
4720 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4723 PMD_INIT_FUNC_TRACE();
4725 if (queue >= hw->mac.max_rx_queues)
4728 ctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(queue));
4730 ctrl |= IXGBE_RXDCTL_VME;
4732 ctrl &= ~IXGBE_RXDCTL_VME;
4733 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(queue), ctrl);
4735 ixgbe_vlan_hw_strip_bitmap_set(dev, queue, on);
4739 ixgbevf_vlan_offload_set(struct rte_eth_dev *dev, int mask)
4741 struct ixgbe_hw *hw =
4742 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4746 /* VF function only support hw strip feature, others are not support */
4747 if (mask & ETH_VLAN_STRIP_MASK) {
4748 on = !!(dev->data->dev_conf.rxmode.hw_vlan_strip);
4750 for (i = 0; i < hw->mac.max_rx_queues; i++)
4751 ixgbevf_vlan_strip_queue_set(dev, i, on);
4756 ixgbe_vt_check(struct ixgbe_hw *hw)
4760 /* if Virtualization Technology is enabled */
4761 reg_val = IXGBE_READ_REG(hw, IXGBE_VT_CTL);
4762 if (!(reg_val & IXGBE_VT_CTL_VT_ENABLE)) {
4763 PMD_INIT_LOG(ERR, "VT must be enabled for this setting");
4771 ixgbe_uta_vector(struct ixgbe_hw *hw, struct ether_addr *uc_addr)
4773 uint32_t vector = 0;
4775 switch (hw->mac.mc_filter_type) {
4776 case 0: /* use bits [47:36] of the address */
4777 vector = ((uc_addr->addr_bytes[4] >> 4) |
4778 (((uint16_t)uc_addr->addr_bytes[5]) << 4));
4780 case 1: /* use bits [46:35] of the address */
4781 vector = ((uc_addr->addr_bytes[4] >> 3) |
4782 (((uint16_t)uc_addr->addr_bytes[5]) << 5));
4784 case 2: /* use bits [45:34] of the address */
4785 vector = ((uc_addr->addr_bytes[4] >> 2) |
4786 (((uint16_t)uc_addr->addr_bytes[5]) << 6));
4788 case 3: /* use bits [43:32] of the address */
4789 vector = ((uc_addr->addr_bytes[4]) |
4790 (((uint16_t)uc_addr->addr_bytes[5]) << 8));
4792 default: /* Invalid mc_filter_type */
4796 /* vector can only be 12-bits or boundary will be exceeded */
4802 ixgbe_uc_hash_table_set(struct rte_eth_dev *dev, struct ether_addr *mac_addr,
4810 const uint32_t ixgbe_uta_idx_mask = 0x7F;
4811 const uint32_t ixgbe_uta_bit_shift = 5;
4812 const uint32_t ixgbe_uta_bit_mask = (0x1 << ixgbe_uta_bit_shift) - 1;
4813 const uint32_t bit1 = 0x1;
4815 struct ixgbe_hw *hw =
4816 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4817 struct ixgbe_uta_info *uta_info =
4818 IXGBE_DEV_PRIVATE_TO_UTA(dev->data->dev_private);
4820 /* The UTA table only exists on 82599 hardware and newer */
4821 if (hw->mac.type < ixgbe_mac_82599EB)
4824 vector = ixgbe_uta_vector(hw, mac_addr);
4825 uta_idx = (vector >> ixgbe_uta_bit_shift) & ixgbe_uta_idx_mask;
4826 uta_shift = vector & ixgbe_uta_bit_mask;
4828 rc = ((uta_info->uta_shadow[uta_idx] >> uta_shift & bit1) != 0);
4832 reg_val = IXGBE_READ_REG(hw, IXGBE_UTA(uta_idx));
4834 uta_info->uta_in_use++;
4835 reg_val |= (bit1 << uta_shift);
4836 uta_info->uta_shadow[uta_idx] |= (bit1 << uta_shift);
4838 uta_info->uta_in_use--;
4839 reg_val &= ~(bit1 << uta_shift);
4840 uta_info->uta_shadow[uta_idx] &= ~(bit1 << uta_shift);
4843 IXGBE_WRITE_REG(hw, IXGBE_UTA(uta_idx), reg_val);
4845 if (uta_info->uta_in_use > 0)
4846 IXGBE_WRITE_REG(hw, IXGBE_MCSTCTRL,
4847 IXGBE_MCSTCTRL_MFE | hw->mac.mc_filter_type);
4849 IXGBE_WRITE_REG(hw, IXGBE_MCSTCTRL, hw->mac.mc_filter_type);
4855 ixgbe_uc_all_hash_table_set(struct rte_eth_dev *dev, uint8_t on)
4858 struct ixgbe_hw *hw =
4859 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4860 struct ixgbe_uta_info *uta_info =
4861 IXGBE_DEV_PRIVATE_TO_UTA(dev->data->dev_private);
4863 /* The UTA table only exists on 82599 hardware and newer */
4864 if (hw->mac.type < ixgbe_mac_82599EB)
4868 for (i = 0; i < ETH_VMDQ_NUM_UC_HASH_ARRAY; i++) {
4869 uta_info->uta_shadow[i] = ~0;
4870 IXGBE_WRITE_REG(hw, IXGBE_UTA(i), ~0);
4873 for (i = 0; i < ETH_VMDQ_NUM_UC_HASH_ARRAY; i++) {
4874 uta_info->uta_shadow[i] = 0;
4875 IXGBE_WRITE_REG(hw, IXGBE_UTA(i), 0);
4883 ixgbe_convert_vm_rx_mask_to_val(uint16_t rx_mask, uint32_t orig_val)
4885 uint32_t new_val = orig_val;
4887 if (rx_mask & ETH_VMDQ_ACCEPT_UNTAG)
4888 new_val |= IXGBE_VMOLR_AUPE;
4889 if (rx_mask & ETH_VMDQ_ACCEPT_HASH_MC)
4890 new_val |= IXGBE_VMOLR_ROMPE;
4891 if (rx_mask & ETH_VMDQ_ACCEPT_HASH_UC)
4892 new_val |= IXGBE_VMOLR_ROPE;
4893 if (rx_mask & ETH_VMDQ_ACCEPT_BROADCAST)
4894 new_val |= IXGBE_VMOLR_BAM;
4895 if (rx_mask & ETH_VMDQ_ACCEPT_MULTICAST)
4896 new_val |= IXGBE_VMOLR_MPE;
4902 rte_pmd_ixgbe_ping_vf(uint8_t port, uint16_t vf)
4904 struct ixgbe_hw *hw;
4905 struct ixgbe_vf_info *vfinfo;
4906 struct rte_eth_dev *dev;
4907 struct rte_pci_device *pci_dev;
4910 RTE_ETH_VALID_PORTID_OR_ERR_RET(port, -ENODEV);
4912 dev = &rte_eth_devices[port];
4913 pci_dev = IXGBE_DEV_TO_PCI(dev);
4915 if (!is_device_supported(dev, &rte_ixgbe_pmd))
4918 if (vf >= pci_dev->max_vfs)
4921 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4922 vfinfo = *(IXGBE_DEV_PRIVATE_TO_P_VFDATA(dev->data->dev_private));
4924 ctrl = IXGBE_PF_CONTROL_MSG;
4925 if (vfinfo[vf].clear_to_send)
4926 ctrl |= IXGBE_VT_MSGTYPE_CTS;
4928 ixgbe_write_mbx(hw, &ctrl, 1, vf);
4934 rte_pmd_ixgbe_set_vf_vlan_anti_spoof(uint8_t port, uint16_t vf, uint8_t on)
4936 struct ixgbe_hw *hw;
4937 struct ixgbe_mac_info *mac;
4938 struct rte_eth_dev *dev;
4939 struct rte_pci_device *pci_dev;
4941 RTE_ETH_VALID_PORTID_OR_ERR_RET(port, -ENODEV);
4943 dev = &rte_eth_devices[port];
4944 pci_dev = IXGBE_DEV_TO_PCI(dev);
4946 if (!is_device_supported(dev, &rte_ixgbe_pmd))
4949 if (vf >= pci_dev->max_vfs)
4955 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4958 mac->ops.set_vlan_anti_spoofing(hw, on, vf);
4964 rte_pmd_ixgbe_set_vf_mac_anti_spoof(uint8_t port, uint16_t vf, uint8_t on)
4966 struct ixgbe_hw *hw;
4967 struct ixgbe_mac_info *mac;
4968 struct rte_eth_dev *dev;
4969 struct rte_pci_device *pci_dev;
4971 RTE_ETH_VALID_PORTID_OR_ERR_RET(port, -ENODEV);
4973 dev = &rte_eth_devices[port];
4974 pci_dev = IXGBE_DEV_TO_PCI(dev);
4976 if (!is_device_supported(dev, &rte_ixgbe_pmd))
4979 if (vf >= pci_dev->max_vfs)
4985 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4987 mac->ops.set_mac_anti_spoofing(hw, on, vf);
4993 rte_pmd_ixgbe_set_vf_vlan_insert(uint8_t port, uint16_t vf, uint16_t vlan_id)
4995 struct ixgbe_hw *hw;
4997 struct rte_eth_dev *dev;
4998 struct rte_pci_device *pci_dev;
5000 RTE_ETH_VALID_PORTID_OR_ERR_RET(port, -ENODEV);
5002 dev = &rte_eth_devices[port];
5003 pci_dev = IXGBE_DEV_TO_PCI(dev);
5005 if (!is_device_supported(dev, &rte_ixgbe_pmd))
5008 if (vf >= pci_dev->max_vfs)
5011 if (vlan_id > ETHER_MAX_VLAN_ID)
5014 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5015 ctrl = IXGBE_READ_REG(hw, IXGBE_VMVIR(vf));
5018 ctrl |= IXGBE_VMVIR_VLANA_DEFAULT;
5023 IXGBE_WRITE_REG(hw, IXGBE_VMVIR(vf), ctrl);
5029 rte_pmd_ixgbe_set_tx_loopback(uint8_t port, uint8_t on)
5031 struct ixgbe_hw *hw;
5033 struct rte_eth_dev *dev;
5035 RTE_ETH_VALID_PORTID_OR_ERR_RET(port, -ENODEV);
5037 dev = &rte_eth_devices[port];
5039 if (!is_device_supported(dev, &rte_ixgbe_pmd))
5045 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5046 ctrl = IXGBE_READ_REG(hw, IXGBE_PFDTXGSWC);
5047 /* enable or disable VMDQ loopback */
5049 ctrl |= IXGBE_PFDTXGSWC_VT_LBEN;
5051 ctrl &= ~IXGBE_PFDTXGSWC_VT_LBEN;
5053 IXGBE_WRITE_REG(hw, IXGBE_PFDTXGSWC, ctrl);
5059 rte_pmd_ixgbe_set_all_queues_drop_en(uint8_t port, uint8_t on)
5061 struct ixgbe_hw *hw;
5064 int num_queues = (int)(IXGBE_QDE_IDX_MASK >> IXGBE_QDE_IDX_SHIFT);
5065 struct rte_eth_dev *dev;
5067 RTE_ETH_VALID_PORTID_OR_ERR_RET(port, -ENODEV);
5069 dev = &rte_eth_devices[port];
5071 if (!is_device_supported(dev, &rte_ixgbe_pmd))
5077 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5078 for (i = 0; i <= num_queues; i++) {
5079 reg_value = IXGBE_QDE_WRITE |
5080 (i << IXGBE_QDE_IDX_SHIFT) |
5081 (on & IXGBE_QDE_ENABLE);
5082 IXGBE_WRITE_REG(hw, IXGBE_QDE, reg_value);
5089 rte_pmd_ixgbe_set_vf_split_drop_en(uint8_t port, uint16_t vf, uint8_t on)
5091 struct ixgbe_hw *hw;
5093 struct rte_eth_dev *dev;
5094 struct rte_pci_device *pci_dev;
5096 RTE_ETH_VALID_PORTID_OR_ERR_RET(port, -ENODEV);
5098 dev = &rte_eth_devices[port];
5099 pci_dev = IXGBE_DEV_TO_PCI(dev);
5101 if (!is_device_supported(dev, &rte_ixgbe_pmd))
5104 /* only support VF's 0 to 63 */
5105 if ((vf >= pci_dev->max_vfs) || (vf > 63))
5111 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5112 reg_value = IXGBE_READ_REG(hw, IXGBE_SRRCTL(vf));
5114 reg_value |= IXGBE_SRRCTL_DROP_EN;
5116 reg_value &= ~IXGBE_SRRCTL_DROP_EN;
5118 IXGBE_WRITE_REG(hw, IXGBE_SRRCTL(vf), reg_value);
5124 rte_pmd_ixgbe_set_vf_vlan_stripq(uint8_t port, uint16_t vf, uint8_t on)
5126 struct rte_eth_dev *dev;
5127 struct rte_pci_device *pci_dev;
5128 struct ixgbe_hw *hw;
5129 uint16_t queues_per_pool;
5132 RTE_ETH_VALID_PORTID_OR_ERR_RET(port, -ENODEV);
5134 dev = &rte_eth_devices[port];
5135 pci_dev = IXGBE_DEV_TO_PCI(dev);
5136 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5138 if (!is_device_supported(dev, &rte_ixgbe_pmd))
5141 if (vf >= pci_dev->max_vfs)
5147 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->vlan_strip_queue_set, -ENOTSUP);
5149 /* The PF has 128 queue pairs and in SRIOV configuration
5150 * those queues will be assigned to VF's, so RXDCTL
5151 * registers will be dealing with queues which will be
5153 * Let's say we have SRIOV configured with 31 VF's then the
5154 * first 124 queues 0-123 will be allocated to VF's and only
5155 * the last 4 queues 123-127 will be assigned to the PF.
5157 if (hw->mac.type == ixgbe_mac_82598EB)
5158 queues_per_pool = (uint16_t)hw->mac.max_rx_queues /
5161 queues_per_pool = (uint16_t)hw->mac.max_rx_queues /
5164 for (q = 0; q < queues_per_pool; q++)
5165 (*dev->dev_ops->vlan_strip_queue_set)(dev,
5166 q + vf * queues_per_pool, on);
5171 rte_pmd_ixgbe_set_vf_rxmode(uint8_t port, uint16_t vf, uint16_t rx_mask, uint8_t on)
5174 struct rte_eth_dev *dev;
5175 struct rte_pci_device *pci_dev;
5176 struct ixgbe_hw *hw;
5179 RTE_ETH_VALID_PORTID_OR_ERR_RET(port, -ENODEV);
5181 dev = &rte_eth_devices[port];
5182 pci_dev = IXGBE_DEV_TO_PCI(dev);
5184 if (!is_device_supported(dev, &rte_ixgbe_pmd))
5187 if (vf >= pci_dev->max_vfs)
5193 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5194 vmolr = IXGBE_READ_REG(hw, IXGBE_VMOLR(vf));
5196 if (hw->mac.type == ixgbe_mac_82598EB) {
5197 PMD_INIT_LOG(ERR, "setting VF receive mode set should be done"
5198 " on 82599 hardware and newer");
5201 if (ixgbe_vt_check(hw) < 0)
5204 val = ixgbe_convert_vm_rx_mask_to_val(rx_mask, val);
5211 IXGBE_WRITE_REG(hw, IXGBE_VMOLR(vf), vmolr);
5217 rte_pmd_ixgbe_set_vf_rx(uint8_t port, uint16_t vf, uint8_t on)
5219 struct rte_eth_dev *dev;
5220 struct rte_pci_device *pci_dev;
5223 const uint8_t bit1 = 0x1;
5224 struct ixgbe_hw *hw;
5226 RTE_ETH_VALID_PORTID_OR_ERR_RET(port, -ENODEV);
5228 dev = &rte_eth_devices[port];
5229 pci_dev = IXGBE_DEV_TO_PCI(dev);
5231 if (!is_device_supported(dev, &rte_ixgbe_pmd))
5234 if (vf >= pci_dev->max_vfs)
5240 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5242 if (ixgbe_vt_check(hw) < 0)
5245 /* for vf >= 32, set bit in PFVFRE[1], otherwise PFVFRE[0] */
5247 addr = IXGBE_VFRE(1);
5248 val = bit1 << (vf - 32);
5250 addr = IXGBE_VFRE(0);
5254 reg = IXGBE_READ_REG(hw, addr);
5261 IXGBE_WRITE_REG(hw, addr, reg);
5267 rte_pmd_ixgbe_set_vf_tx(uint8_t port, uint16_t vf, uint8_t on)
5269 struct rte_eth_dev *dev;
5270 struct rte_pci_device *pci_dev;
5273 const uint8_t bit1 = 0x1;
5275 struct ixgbe_hw *hw;
5277 RTE_ETH_VALID_PORTID_OR_ERR_RET(port, -ENODEV);
5279 dev = &rte_eth_devices[port];
5280 pci_dev = IXGBE_DEV_TO_PCI(dev);
5282 if (!is_device_supported(dev, &rte_ixgbe_pmd))
5285 if (vf >= pci_dev->max_vfs)
5291 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5292 if (ixgbe_vt_check(hw) < 0)
5295 /* for vf >= 32, set bit in PFVFTE[1], otherwise PFVFTE[0] */
5297 addr = IXGBE_VFTE(1);
5298 val = bit1 << (vf - 32);
5300 addr = IXGBE_VFTE(0);
5304 reg = IXGBE_READ_REG(hw, addr);
5311 IXGBE_WRITE_REG(hw, addr, reg);
5317 rte_pmd_ixgbe_set_vf_vlan_filter(uint8_t port, uint16_t vlan,
5318 uint64_t vf_mask, uint8_t vlan_on)
5320 struct rte_eth_dev *dev;
5323 struct ixgbe_hw *hw;
5325 RTE_ETH_VALID_PORTID_OR_ERR_RET(port, -ENODEV);
5327 dev = &rte_eth_devices[port];
5329 if (!is_device_supported(dev, &rte_ixgbe_pmd))
5332 if ((vlan > ETHER_MAX_VLAN_ID) || (vf_mask == 0))
5335 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5336 if (ixgbe_vt_check(hw) < 0)
5339 for (vf_idx = 0; vf_idx < 64; vf_idx++) {
5340 if (vf_mask & ((uint64_t)(1ULL << vf_idx))) {
5341 ret = hw->mac.ops.set_vfta(hw, vlan, vf_idx,
5351 int rte_pmd_ixgbe_set_vf_rate_limit(uint8_t port, uint16_t vf,
5352 uint16_t tx_rate, uint64_t q_msk)
5354 struct rte_eth_dev *dev;
5355 struct ixgbe_hw *hw;
5356 struct ixgbe_vf_info *vfinfo;
5357 struct rte_eth_link link;
5358 uint8_t nb_q_per_pool;
5359 uint32_t queue_stride;
5360 uint32_t queue_idx, idx = 0, vf_idx;
5362 uint16_t total_rate = 0;
5363 struct rte_pci_device *pci_dev;
5365 RTE_ETH_VALID_PORTID_OR_ERR_RET(port, -ENODEV);
5367 dev = &rte_eth_devices[port];
5368 pci_dev = IXGBE_DEV_TO_PCI(dev);
5369 rte_eth_link_get_nowait(port, &link);
5371 if (!is_device_supported(dev, &rte_ixgbe_pmd))
5374 if (vf >= pci_dev->max_vfs)
5377 if (tx_rate > link.link_speed)
5383 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5384 vfinfo = *(IXGBE_DEV_PRIVATE_TO_P_VFDATA(dev->data->dev_private));
5385 nb_q_per_pool = RTE_ETH_DEV_SRIOV(dev).nb_q_per_pool;
5386 queue_stride = IXGBE_MAX_RX_QUEUE_NUM / RTE_ETH_DEV_SRIOV(dev).active;
5387 queue_idx = vf * queue_stride;
5388 queue_end = queue_idx + nb_q_per_pool - 1;
5389 if (queue_end >= hw->mac.max_tx_queues)
5393 for (vf_idx = 0; vf_idx < pci_dev->max_vfs; vf_idx++) {
5396 for (idx = 0; idx < RTE_DIM(vfinfo[vf_idx].tx_rate);
5398 total_rate += vfinfo[vf_idx].tx_rate[idx];
5404 /* Store tx_rate for this vf. */
5405 for (idx = 0; idx < nb_q_per_pool; idx++) {
5406 if (((uint64_t)0x1 << idx) & q_msk) {
5407 if (vfinfo[vf].tx_rate[idx] != tx_rate)
5408 vfinfo[vf].tx_rate[idx] = tx_rate;
5409 total_rate += tx_rate;
5413 if (total_rate > dev->data->dev_link.link_speed) {
5414 /* Reset stored TX rate of the VF if it causes exceed
5417 memset(vfinfo[vf].tx_rate, 0, sizeof(vfinfo[vf].tx_rate));
5421 /* Set RTTBCNRC of each queue/pool for vf X */
5422 for (; queue_idx <= queue_end; queue_idx++) {
5424 ixgbe_set_queue_rate_limit(dev, queue_idx, tx_rate);
5431 #define IXGBE_MRCTL_VPME 0x01 /* Virtual Pool Mirroring. */
5432 #define IXGBE_MRCTL_UPME 0x02 /* Uplink Port Mirroring. */
5433 #define IXGBE_MRCTL_DPME 0x04 /* Downlink Port Mirroring. */
5434 #define IXGBE_MRCTL_VLME 0x08 /* VLAN Mirroring. */
5435 #define IXGBE_INVALID_MIRROR_TYPE(mirror_type) \
5436 ((mirror_type) & ~(uint8_t)(ETH_MIRROR_VIRTUAL_POOL_UP | \
5437 ETH_MIRROR_UPLINK_PORT | ETH_MIRROR_DOWNLINK_PORT | ETH_MIRROR_VLAN))
5440 ixgbe_mirror_rule_set(struct rte_eth_dev *dev,
5441 struct rte_eth_mirror_conf *mirror_conf,
5442 uint8_t rule_id, uint8_t on)
5444 uint32_t mr_ctl, vlvf;
5445 uint32_t mp_lsb = 0;
5446 uint32_t mv_msb = 0;
5447 uint32_t mv_lsb = 0;
5448 uint32_t mp_msb = 0;
5451 uint64_t vlan_mask = 0;
5453 const uint8_t pool_mask_offset = 32;
5454 const uint8_t vlan_mask_offset = 32;
5455 const uint8_t dst_pool_offset = 8;
5456 const uint8_t rule_mr_offset = 4;
5457 const uint8_t mirror_rule_mask = 0x0F;
5459 struct ixgbe_mirror_info *mr_info =
5460 (IXGBE_DEV_PRIVATE_TO_PFDATA(dev->data->dev_private));
5461 struct ixgbe_hw *hw =
5462 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5463 uint8_t mirror_type = 0;
5465 if (ixgbe_vt_check(hw) < 0)
5468 if (rule_id >= IXGBE_MAX_MIRROR_RULES)
5471 if (IXGBE_INVALID_MIRROR_TYPE(mirror_conf->rule_type)) {
5472 PMD_DRV_LOG(ERR, "unsupported mirror type 0x%x.",
5473 mirror_conf->rule_type);
5477 if (mirror_conf->rule_type & ETH_MIRROR_VLAN) {
5478 mirror_type |= IXGBE_MRCTL_VLME;
5479 /* Check if vlan id is valid and find conresponding VLAN ID index in VLVF */
5480 for (i = 0; i < IXGBE_VLVF_ENTRIES; i++) {
5481 if (mirror_conf->vlan.vlan_mask & (1ULL << i)) {
5482 /* search vlan id related pool vlan filter index */
5483 reg_index = ixgbe_find_vlvf_slot(hw,
5484 mirror_conf->vlan.vlan_id[i],
5488 vlvf = IXGBE_READ_REG(hw, IXGBE_VLVF(reg_index));
5489 if ((vlvf & IXGBE_VLVF_VIEN) &&
5490 ((vlvf & IXGBE_VLVF_VLANID_MASK) ==
5491 mirror_conf->vlan.vlan_id[i]))
5492 vlan_mask |= (1ULL << reg_index);
5499 mv_lsb = vlan_mask & 0xFFFFFFFF;
5500 mv_msb = vlan_mask >> vlan_mask_offset;
5502 mr_info->mr_conf[rule_id].vlan.vlan_mask =
5503 mirror_conf->vlan.vlan_mask;
5504 for (i = 0; i < ETH_VMDQ_MAX_VLAN_FILTERS; i++) {
5505 if (mirror_conf->vlan.vlan_mask & (1ULL << i))
5506 mr_info->mr_conf[rule_id].vlan.vlan_id[i] =
5507 mirror_conf->vlan.vlan_id[i];
5512 mr_info->mr_conf[rule_id].vlan.vlan_mask = 0;
5513 for (i = 0; i < ETH_VMDQ_MAX_VLAN_FILTERS; i++)
5514 mr_info->mr_conf[rule_id].vlan.vlan_id[i] = 0;
5519 * if enable pool mirror, write related pool mask register,if disable
5520 * pool mirror, clear PFMRVM register
5522 if (mirror_conf->rule_type & ETH_MIRROR_VIRTUAL_POOL_UP) {
5523 mirror_type |= IXGBE_MRCTL_VPME;
5525 mp_lsb = mirror_conf->pool_mask & 0xFFFFFFFF;
5526 mp_msb = mirror_conf->pool_mask >> pool_mask_offset;
5527 mr_info->mr_conf[rule_id].pool_mask =
5528 mirror_conf->pool_mask;
5533 mr_info->mr_conf[rule_id].pool_mask = 0;
5536 if (mirror_conf->rule_type & ETH_MIRROR_UPLINK_PORT)
5537 mirror_type |= IXGBE_MRCTL_UPME;
5538 if (mirror_conf->rule_type & ETH_MIRROR_DOWNLINK_PORT)
5539 mirror_type |= IXGBE_MRCTL_DPME;
5541 /* read mirror control register and recalculate it */
5542 mr_ctl = IXGBE_READ_REG(hw, IXGBE_MRCTL(rule_id));
5545 mr_ctl |= mirror_type;
5546 mr_ctl &= mirror_rule_mask;
5547 mr_ctl |= mirror_conf->dst_pool << dst_pool_offset;
5549 mr_ctl &= ~(mirror_conf->rule_type & mirror_rule_mask);
5551 mr_info->mr_conf[rule_id].rule_type = mirror_conf->rule_type;
5552 mr_info->mr_conf[rule_id].dst_pool = mirror_conf->dst_pool;
5554 /* write mirrror control register */
5555 IXGBE_WRITE_REG(hw, IXGBE_MRCTL(rule_id), mr_ctl);
5557 /* write pool mirrror control register */
5558 if (mirror_conf->rule_type == ETH_MIRROR_VIRTUAL_POOL_UP) {
5559 IXGBE_WRITE_REG(hw, IXGBE_VMRVM(rule_id), mp_lsb);
5560 IXGBE_WRITE_REG(hw, IXGBE_VMRVM(rule_id + rule_mr_offset),
5563 /* write VLAN mirrror control register */
5564 if (mirror_conf->rule_type == ETH_MIRROR_VLAN) {
5565 IXGBE_WRITE_REG(hw, IXGBE_VMRVLAN(rule_id), mv_lsb);
5566 IXGBE_WRITE_REG(hw, IXGBE_VMRVLAN(rule_id + rule_mr_offset),
5574 ixgbe_mirror_rule_reset(struct rte_eth_dev *dev, uint8_t rule_id)
5577 uint32_t lsb_val = 0;
5578 uint32_t msb_val = 0;
5579 const uint8_t rule_mr_offset = 4;
5581 struct ixgbe_hw *hw =
5582 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5583 struct ixgbe_mirror_info *mr_info =
5584 (IXGBE_DEV_PRIVATE_TO_PFDATA(dev->data->dev_private));
5586 if (ixgbe_vt_check(hw) < 0)
5589 memset(&mr_info->mr_conf[rule_id], 0,
5590 sizeof(struct rte_eth_mirror_conf));
5592 /* clear PFVMCTL register */
5593 IXGBE_WRITE_REG(hw, IXGBE_MRCTL(rule_id), mr_ctl);
5595 /* clear pool mask register */
5596 IXGBE_WRITE_REG(hw, IXGBE_VMRVM(rule_id), lsb_val);
5597 IXGBE_WRITE_REG(hw, IXGBE_VMRVM(rule_id + rule_mr_offset), msb_val);
5599 /* clear vlan mask register */
5600 IXGBE_WRITE_REG(hw, IXGBE_VMRVLAN(rule_id), lsb_val);
5601 IXGBE_WRITE_REG(hw, IXGBE_VMRVLAN(rule_id + rule_mr_offset), msb_val);
5607 ixgbevf_dev_rx_queue_intr_enable(struct rte_eth_dev *dev, uint16_t queue_id)
5609 struct rte_pci_device *pci_dev = IXGBE_DEV_TO_PCI(dev);
5610 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
5612 struct ixgbe_hw *hw =
5613 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5615 mask = IXGBE_READ_REG(hw, IXGBE_VTEIMS);
5616 mask |= (1 << IXGBE_MISC_VEC_ID);
5617 RTE_SET_USED(queue_id);
5618 IXGBE_WRITE_REG(hw, IXGBE_VTEIMS, mask);
5620 rte_intr_enable(intr_handle);
5626 ixgbevf_dev_rx_queue_intr_disable(struct rte_eth_dev *dev, uint16_t queue_id)
5629 struct ixgbe_hw *hw =
5630 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5632 mask = IXGBE_READ_REG(hw, IXGBE_VTEIMS);
5633 mask &= ~(1 << IXGBE_MISC_VEC_ID);
5634 RTE_SET_USED(queue_id);
5635 IXGBE_WRITE_REG(hw, IXGBE_VTEIMS, mask);
5641 ixgbe_dev_rx_queue_intr_enable(struct rte_eth_dev *dev, uint16_t queue_id)
5643 struct rte_pci_device *pci_dev = IXGBE_DEV_TO_PCI(dev);
5644 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
5646 struct ixgbe_hw *hw =
5647 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5648 struct ixgbe_interrupt *intr =
5649 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
5651 if (queue_id < 16) {
5652 ixgbe_disable_intr(hw);
5653 intr->mask |= (1 << queue_id);
5654 ixgbe_enable_intr(dev);
5655 } else if (queue_id < 32) {
5656 mask = IXGBE_READ_REG(hw, IXGBE_EIMS_EX(0));
5657 mask &= (1 << queue_id);
5658 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(0), mask);
5659 } else if (queue_id < 64) {
5660 mask = IXGBE_READ_REG(hw, IXGBE_EIMS_EX(1));
5661 mask &= (1 << (queue_id - 32));
5662 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(1), mask);
5664 rte_intr_enable(intr_handle);
5670 ixgbe_dev_rx_queue_intr_disable(struct rte_eth_dev *dev, uint16_t queue_id)
5673 struct ixgbe_hw *hw =
5674 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5675 struct ixgbe_interrupt *intr =
5676 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
5678 if (queue_id < 16) {
5679 ixgbe_disable_intr(hw);
5680 intr->mask &= ~(1 << queue_id);
5681 ixgbe_enable_intr(dev);
5682 } else if (queue_id < 32) {
5683 mask = IXGBE_READ_REG(hw, IXGBE_EIMS_EX(0));
5684 mask &= ~(1 << queue_id);
5685 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(0), mask);
5686 } else if (queue_id < 64) {
5687 mask = IXGBE_READ_REG(hw, IXGBE_EIMS_EX(1));
5688 mask &= ~(1 << (queue_id - 32));
5689 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(1), mask);
5696 ixgbevf_set_ivar_map(struct ixgbe_hw *hw, int8_t direction,
5697 uint8_t queue, uint8_t msix_vector)
5701 if (direction == -1) {
5703 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
5704 tmp = IXGBE_READ_REG(hw, IXGBE_VTIVAR_MISC);
5707 IXGBE_WRITE_REG(hw, IXGBE_VTIVAR_MISC, tmp);
5709 /* rx or tx cause */
5710 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
5711 idx = ((16 * (queue & 1)) + (8 * direction));
5712 tmp = IXGBE_READ_REG(hw, IXGBE_VTIVAR(queue >> 1));
5713 tmp &= ~(0xFF << idx);
5714 tmp |= (msix_vector << idx);
5715 IXGBE_WRITE_REG(hw, IXGBE_VTIVAR(queue >> 1), tmp);
5720 * set the IVAR registers, mapping interrupt causes to vectors
5722 * pointer to ixgbe_hw struct
5724 * 0 for Rx, 1 for Tx, -1 for other causes
5726 * queue to map the corresponding interrupt to
5728 * the vector to map to the corresponding queue
5731 ixgbe_set_ivar_map(struct ixgbe_hw *hw, int8_t direction,
5732 uint8_t queue, uint8_t msix_vector)
5736 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
5737 if (hw->mac.type == ixgbe_mac_82598EB) {
5738 if (direction == -1)
5740 idx = (((direction * 64) + queue) >> 2) & 0x1F;
5741 tmp = IXGBE_READ_REG(hw, IXGBE_IVAR(idx));
5742 tmp &= ~(0xFF << (8 * (queue & 0x3)));
5743 tmp |= (msix_vector << (8 * (queue & 0x3)));
5744 IXGBE_WRITE_REG(hw, IXGBE_IVAR(idx), tmp);
5745 } else if ((hw->mac.type == ixgbe_mac_82599EB) ||
5746 (hw->mac.type == ixgbe_mac_X540)) {
5747 if (direction == -1) {
5749 idx = ((queue & 1) * 8);
5750 tmp = IXGBE_READ_REG(hw, IXGBE_IVAR_MISC);
5751 tmp &= ~(0xFF << idx);
5752 tmp |= (msix_vector << idx);
5753 IXGBE_WRITE_REG(hw, IXGBE_IVAR_MISC, tmp);
5755 /* rx or tx causes */
5756 idx = ((16 * (queue & 1)) + (8 * direction));
5757 tmp = IXGBE_READ_REG(hw, IXGBE_IVAR(queue >> 1));
5758 tmp &= ~(0xFF << idx);
5759 tmp |= (msix_vector << idx);
5760 IXGBE_WRITE_REG(hw, IXGBE_IVAR(queue >> 1), tmp);
5766 ixgbevf_configure_msix(struct rte_eth_dev *dev)
5768 struct rte_pci_device *pci_dev = IXGBE_DEV_TO_PCI(dev);
5769 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
5770 struct ixgbe_hw *hw =
5771 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5773 uint32_t vector_idx = IXGBE_MISC_VEC_ID;
5775 /* Configure VF other cause ivar */
5776 ixgbevf_set_ivar_map(hw, -1, 1, vector_idx);
5778 /* won't configure msix register if no mapping is done
5779 * between intr vector and event fd.
5781 if (!rte_intr_dp_is_en(intr_handle))
5784 /* Configure all RX queues of VF */
5785 for (q_idx = 0; q_idx < dev->data->nb_rx_queues; q_idx++) {
5786 /* Force all queue use vector 0,
5787 * as IXGBE_VF_MAXMSIVECOTR = 1
5789 ixgbevf_set_ivar_map(hw, 0, q_idx, vector_idx);
5790 intr_handle->intr_vec[q_idx] = vector_idx;
5795 * Sets up the hardware to properly generate MSI-X interrupts
5797 * board private structure
5800 ixgbe_configure_msix(struct rte_eth_dev *dev)
5802 struct rte_pci_device *pci_dev = IXGBE_DEV_TO_PCI(dev);
5803 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
5804 struct ixgbe_hw *hw =
5805 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5806 uint32_t queue_id, base = IXGBE_MISC_VEC_ID;
5807 uint32_t vec = IXGBE_MISC_VEC_ID;
5811 /* won't configure msix register if no mapping is done
5812 * between intr vector and event fd
5814 if (!rte_intr_dp_is_en(intr_handle))
5817 if (rte_intr_allow_others(intr_handle))
5818 vec = base = IXGBE_RX_VEC_START;
5820 /* setup GPIE for MSI-x mode */
5821 gpie = IXGBE_READ_REG(hw, IXGBE_GPIE);
5822 gpie |= IXGBE_GPIE_MSIX_MODE | IXGBE_GPIE_PBA_SUPPORT |
5823 IXGBE_GPIE_OCD | IXGBE_GPIE_EIAME;
5824 /* auto clearing and auto setting corresponding bits in EIMS
5825 * when MSI-X interrupt is triggered
5827 if (hw->mac.type == ixgbe_mac_82598EB) {
5828 IXGBE_WRITE_REG(hw, IXGBE_EIAM, IXGBE_EICS_RTX_QUEUE);
5830 IXGBE_WRITE_REG(hw, IXGBE_EIAM_EX(0), 0xFFFFFFFF);
5831 IXGBE_WRITE_REG(hw, IXGBE_EIAM_EX(1), 0xFFFFFFFF);
5833 IXGBE_WRITE_REG(hw, IXGBE_GPIE, gpie);
5835 /* Populate the IVAR table and set the ITR values to the
5836 * corresponding register.
5838 for (queue_id = 0; queue_id < dev->data->nb_rx_queues;
5840 /* by default, 1:1 mapping */
5841 ixgbe_set_ivar_map(hw, 0, queue_id, vec);
5842 intr_handle->intr_vec[queue_id] = vec;
5843 if (vec < base + intr_handle->nb_efd - 1)
5847 switch (hw->mac.type) {
5848 case ixgbe_mac_82598EB:
5849 ixgbe_set_ivar_map(hw, -1, IXGBE_IVAR_OTHER_CAUSES_INDEX,
5852 case ixgbe_mac_82599EB:
5853 case ixgbe_mac_X540:
5854 ixgbe_set_ivar_map(hw, -1, 1, IXGBE_MISC_VEC_ID);
5859 IXGBE_WRITE_REG(hw, IXGBE_EITR(IXGBE_MISC_VEC_ID),
5860 IXGBE_MIN_INTER_INTERRUPT_INTERVAL_DEFAULT & 0xFFF);
5862 /* set up to autoclear timer, and the vectors */
5863 mask = IXGBE_EIMS_ENABLE_MASK;
5864 mask &= ~(IXGBE_EIMS_OTHER |
5865 IXGBE_EIMS_MAILBOX |
5868 IXGBE_WRITE_REG(hw, IXGBE_EIAC, mask);
5871 static int ixgbe_set_queue_rate_limit(struct rte_eth_dev *dev,
5872 uint16_t queue_idx, uint16_t tx_rate)
5874 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5875 uint32_t rf_dec, rf_int;
5877 uint16_t link_speed = dev->data->dev_link.link_speed;
5879 if (queue_idx >= hw->mac.max_tx_queues)
5883 /* Calculate the rate factor values to set */
5884 rf_int = (uint32_t)link_speed / (uint32_t)tx_rate;
5885 rf_dec = (uint32_t)link_speed % (uint32_t)tx_rate;
5886 rf_dec = (rf_dec << IXGBE_RTTBCNRC_RF_INT_SHIFT) / tx_rate;
5888 bcnrc_val = IXGBE_RTTBCNRC_RS_ENA;
5889 bcnrc_val |= ((rf_int << IXGBE_RTTBCNRC_RF_INT_SHIFT) &
5890 IXGBE_RTTBCNRC_RF_INT_MASK_M);
5891 bcnrc_val |= (rf_dec & IXGBE_RTTBCNRC_RF_DEC_MASK);
5897 * Set global transmit compensation time to the MMW_SIZE in RTTBCNRM
5898 * register. MMW_SIZE=0x014 if 9728-byte jumbo is supported, otherwise
5901 if ((dev->data->dev_conf.rxmode.jumbo_frame == 1) &&
5902 (dev->data->dev_conf.rxmode.max_rx_pkt_len >=
5903 IXGBE_MAX_JUMBO_FRAME_SIZE))
5904 IXGBE_WRITE_REG(hw, IXGBE_RTTBCNRM,
5905 IXGBE_MMW_SIZE_JUMBO_FRAME);
5907 IXGBE_WRITE_REG(hw, IXGBE_RTTBCNRM,
5908 IXGBE_MMW_SIZE_DEFAULT);
5910 /* Set RTTBCNRC of queue X */
5911 IXGBE_WRITE_REG(hw, IXGBE_RTTDQSEL, queue_idx);
5912 IXGBE_WRITE_REG(hw, IXGBE_RTTBCNRC, bcnrc_val);
5913 IXGBE_WRITE_FLUSH(hw);
5919 ixgbevf_add_mac_addr(struct rte_eth_dev *dev, struct ether_addr *mac_addr,
5920 __attribute__((unused)) uint32_t index,
5921 __attribute__((unused)) uint32_t pool)
5923 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5927 * On a 82599 VF, adding again the same MAC addr is not an idempotent
5928 * operation. Trap this case to avoid exhausting the [very limited]
5929 * set of PF resources used to store VF MAC addresses.
5931 if (memcmp(hw->mac.perm_addr, mac_addr, sizeof(struct ether_addr)) == 0)
5933 diag = ixgbevf_set_uc_addr_vf(hw, 2, mac_addr->addr_bytes);
5936 PMD_DRV_LOG(ERR, "Unable to add MAC address - diag=%d", diag);
5940 ixgbevf_remove_mac_addr(struct rte_eth_dev *dev, uint32_t index)
5942 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5943 struct ether_addr *perm_addr = (struct ether_addr *) hw->mac.perm_addr;
5944 struct ether_addr *mac_addr;
5949 * The IXGBE_VF_SET_MACVLAN command of the ixgbe-pf driver does
5950 * not support the deletion of a given MAC address.
5951 * Instead, it imposes to delete all MAC addresses, then to add again
5952 * all MAC addresses with the exception of the one to be deleted.
5954 (void) ixgbevf_set_uc_addr_vf(hw, 0, NULL);
5957 * Add again all MAC addresses, with the exception of the deleted one
5958 * and of the permanent MAC address.
5960 for (i = 0, mac_addr = dev->data->mac_addrs;
5961 i < hw->mac.num_rar_entries; i++, mac_addr++) {
5962 /* Skip the deleted MAC address */
5965 /* Skip NULL MAC addresses */
5966 if (is_zero_ether_addr(mac_addr))
5968 /* Skip the permanent MAC address */
5969 if (memcmp(perm_addr, mac_addr, sizeof(struct ether_addr)) == 0)
5971 diag = ixgbevf_set_uc_addr_vf(hw, 2, mac_addr->addr_bytes);
5974 "Adding again MAC address "
5975 "%02x:%02x:%02x:%02x:%02x:%02x failed "
5977 mac_addr->addr_bytes[0],
5978 mac_addr->addr_bytes[1],
5979 mac_addr->addr_bytes[2],
5980 mac_addr->addr_bytes[3],
5981 mac_addr->addr_bytes[4],
5982 mac_addr->addr_bytes[5],
5988 ixgbevf_set_default_mac_addr(struct rte_eth_dev *dev, struct ether_addr *addr)
5990 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5992 hw->mac.ops.set_rar(hw, 0, (void *)addr, 0, 0);
5996 ixgbe_syn_filter_set(struct rte_eth_dev *dev,
5997 struct rte_eth_syn_filter *filter,
6000 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6001 struct ixgbe_filter_info *filter_info =
6002 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
6006 if (filter->queue >= IXGBE_MAX_RX_QUEUE_NUM)
6009 syn_info = filter_info->syn_info;
6012 if (syn_info & IXGBE_SYN_FILTER_ENABLE)
6014 synqf = (uint32_t)(((filter->queue << IXGBE_SYN_FILTER_QUEUE_SHIFT) &
6015 IXGBE_SYN_FILTER_QUEUE) | IXGBE_SYN_FILTER_ENABLE);
6017 if (filter->hig_pri)
6018 synqf |= IXGBE_SYN_FILTER_SYNQFP;
6020 synqf &= ~IXGBE_SYN_FILTER_SYNQFP;
6022 synqf = IXGBE_READ_REG(hw, IXGBE_SYNQF);
6023 if (!(syn_info & IXGBE_SYN_FILTER_ENABLE))
6025 synqf &= ~(IXGBE_SYN_FILTER_QUEUE | IXGBE_SYN_FILTER_ENABLE);
6028 filter_info->syn_info = synqf;
6029 IXGBE_WRITE_REG(hw, IXGBE_SYNQF, synqf);
6030 IXGBE_WRITE_FLUSH(hw);
6035 ixgbe_syn_filter_get(struct rte_eth_dev *dev,
6036 struct rte_eth_syn_filter *filter)
6038 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6039 uint32_t synqf = IXGBE_READ_REG(hw, IXGBE_SYNQF);
6041 if (synqf & IXGBE_SYN_FILTER_ENABLE) {
6042 filter->hig_pri = (synqf & IXGBE_SYN_FILTER_SYNQFP) ? 1 : 0;
6043 filter->queue = (uint16_t)((synqf & IXGBE_SYN_FILTER_QUEUE) >> 1);
6050 ixgbe_syn_filter_handle(struct rte_eth_dev *dev,
6051 enum rte_filter_op filter_op,
6054 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6057 MAC_TYPE_FILTER_SUP(hw->mac.type);
6059 if (filter_op == RTE_ETH_FILTER_NOP)
6063 PMD_DRV_LOG(ERR, "arg shouldn't be NULL for operation %u",
6068 switch (filter_op) {
6069 case RTE_ETH_FILTER_ADD:
6070 ret = ixgbe_syn_filter_set(dev,
6071 (struct rte_eth_syn_filter *)arg,
6074 case RTE_ETH_FILTER_DELETE:
6075 ret = ixgbe_syn_filter_set(dev,
6076 (struct rte_eth_syn_filter *)arg,
6079 case RTE_ETH_FILTER_GET:
6080 ret = ixgbe_syn_filter_get(dev,
6081 (struct rte_eth_syn_filter *)arg);
6084 PMD_DRV_LOG(ERR, "unsupported operation %u", filter_op);
6093 static inline enum ixgbe_5tuple_protocol
6094 convert_protocol_type(uint8_t protocol_value)
6096 if (protocol_value == IPPROTO_TCP)
6097 return IXGBE_FILTER_PROTOCOL_TCP;
6098 else if (protocol_value == IPPROTO_UDP)
6099 return IXGBE_FILTER_PROTOCOL_UDP;
6100 else if (protocol_value == IPPROTO_SCTP)
6101 return IXGBE_FILTER_PROTOCOL_SCTP;
6103 return IXGBE_FILTER_PROTOCOL_NONE;
6106 /* inject a 5-tuple filter to HW */
6108 ixgbe_inject_5tuple_filter(struct rte_eth_dev *dev,
6109 struct ixgbe_5tuple_filter *filter)
6111 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6113 uint32_t ftqf, sdpqf;
6114 uint32_t l34timir = 0;
6115 uint8_t mask = 0xff;
6119 sdpqf = (uint32_t)(filter->filter_info.dst_port <<
6120 IXGBE_SDPQF_DSTPORT_SHIFT);
6121 sdpqf = sdpqf | (filter->filter_info.src_port & IXGBE_SDPQF_SRCPORT);
6123 ftqf = (uint32_t)(filter->filter_info.proto &
6124 IXGBE_FTQF_PROTOCOL_MASK);
6125 ftqf |= (uint32_t)((filter->filter_info.priority &
6126 IXGBE_FTQF_PRIORITY_MASK) << IXGBE_FTQF_PRIORITY_SHIFT);
6127 if (filter->filter_info.src_ip_mask == 0) /* 0 means compare. */
6128 mask &= IXGBE_FTQF_SOURCE_ADDR_MASK;
6129 if (filter->filter_info.dst_ip_mask == 0)
6130 mask &= IXGBE_FTQF_DEST_ADDR_MASK;
6131 if (filter->filter_info.src_port_mask == 0)
6132 mask &= IXGBE_FTQF_SOURCE_PORT_MASK;
6133 if (filter->filter_info.dst_port_mask == 0)
6134 mask &= IXGBE_FTQF_DEST_PORT_MASK;
6135 if (filter->filter_info.proto_mask == 0)
6136 mask &= IXGBE_FTQF_PROTOCOL_COMP_MASK;
6137 ftqf |= mask << IXGBE_FTQF_5TUPLE_MASK_SHIFT;
6138 ftqf |= IXGBE_FTQF_POOL_MASK_EN;
6139 ftqf |= IXGBE_FTQF_QUEUE_ENABLE;
6141 IXGBE_WRITE_REG(hw, IXGBE_DAQF(i), filter->filter_info.dst_ip);
6142 IXGBE_WRITE_REG(hw, IXGBE_SAQF(i), filter->filter_info.src_ip);
6143 IXGBE_WRITE_REG(hw, IXGBE_SDPQF(i), sdpqf);
6144 IXGBE_WRITE_REG(hw, IXGBE_FTQF(i), ftqf);
6146 l34timir |= IXGBE_L34T_IMIR_RESERVE;
6147 l34timir |= (uint32_t)(filter->queue <<
6148 IXGBE_L34T_IMIR_QUEUE_SHIFT);
6149 IXGBE_WRITE_REG(hw, IXGBE_L34T_IMIR(i), l34timir);
6153 * add a 5tuple filter
6156 * dev: Pointer to struct rte_eth_dev.
6157 * index: the index the filter allocates.
6158 * filter: ponter to the filter that will be added.
6159 * rx_queue: the queue id the filter assigned to.
6162 * - On success, zero.
6163 * - On failure, a negative value.
6166 ixgbe_add_5tuple_filter(struct rte_eth_dev *dev,
6167 struct ixgbe_5tuple_filter *filter)
6169 struct ixgbe_filter_info *filter_info =
6170 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
6174 * look for an unused 5tuple filter index,
6175 * and insert the filter to list.
6177 for (i = 0; i < IXGBE_MAX_FTQF_FILTERS; i++) {
6178 idx = i / (sizeof(uint32_t) * NBBY);
6179 shift = i % (sizeof(uint32_t) * NBBY);
6180 if (!(filter_info->fivetuple_mask[idx] & (1 << shift))) {
6181 filter_info->fivetuple_mask[idx] |= 1 << shift;
6183 TAILQ_INSERT_TAIL(&filter_info->fivetuple_list,
6189 if (i >= IXGBE_MAX_FTQF_FILTERS) {
6190 PMD_DRV_LOG(ERR, "5tuple filters are full.");
6194 ixgbe_inject_5tuple_filter(dev, filter);
6200 * remove a 5tuple filter
6203 * dev: Pointer to struct rte_eth_dev.
6204 * filter: the pointer of the filter will be removed.
6207 ixgbe_remove_5tuple_filter(struct rte_eth_dev *dev,
6208 struct ixgbe_5tuple_filter *filter)
6210 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6211 struct ixgbe_filter_info *filter_info =
6212 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
6213 uint16_t index = filter->index;
6215 filter_info->fivetuple_mask[index / (sizeof(uint32_t) * NBBY)] &=
6216 ~(1 << (index % (sizeof(uint32_t) * NBBY)));
6217 TAILQ_REMOVE(&filter_info->fivetuple_list, filter, entries);
6220 IXGBE_WRITE_REG(hw, IXGBE_DAQF(index), 0);
6221 IXGBE_WRITE_REG(hw, IXGBE_SAQF(index), 0);
6222 IXGBE_WRITE_REG(hw, IXGBE_SDPQF(index), 0);
6223 IXGBE_WRITE_REG(hw, IXGBE_FTQF(index), 0);
6224 IXGBE_WRITE_REG(hw, IXGBE_L34T_IMIR(index), 0);
6228 ixgbevf_dev_set_mtu(struct rte_eth_dev *dev, uint16_t mtu)
6230 struct ixgbe_hw *hw;
6231 uint32_t max_frame = mtu + ETHER_HDR_LEN + ETHER_CRC_LEN;
6233 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6235 if ((mtu < ETHER_MIN_MTU) || (max_frame > ETHER_MAX_JUMBO_FRAME_LEN))
6238 /* refuse mtu that requires the support of scattered packets when this
6239 * feature has not been enabled before.
6241 if (!dev->data->scattered_rx &&
6242 (max_frame + 2 * IXGBE_VLAN_TAG_SIZE >
6243 dev->data->min_rx_buf_size - RTE_PKTMBUF_HEADROOM))
6247 * When supported by the underlying PF driver, use the IXGBE_VF_SET_MTU
6248 * request of the version 2.0 of the mailbox API.
6249 * For now, use the IXGBE_VF_SET_LPE request of the version 1.0
6250 * of the mailbox API.
6251 * This call to IXGBE_SET_LPE action won't work with ixgbe pf drivers
6252 * prior to 3.11.33 which contains the following change:
6253 * "ixgbe: Enable jumbo frames support w/ SR-IOV"
6255 ixgbevf_rlpml_set_vf(hw, max_frame);
6257 /* update max frame size */
6258 dev->data->dev_conf.rxmode.max_rx_pkt_len = max_frame;
6262 static inline struct ixgbe_5tuple_filter *
6263 ixgbe_5tuple_filter_lookup(struct ixgbe_5tuple_filter_list *filter_list,
6264 struct ixgbe_5tuple_filter_info *key)
6266 struct ixgbe_5tuple_filter *it;
6268 TAILQ_FOREACH(it, filter_list, entries) {
6269 if (memcmp(key, &it->filter_info,
6270 sizeof(struct ixgbe_5tuple_filter_info)) == 0) {
6277 /* translate elements in struct rte_eth_ntuple_filter to struct ixgbe_5tuple_filter_info*/
6279 ntuple_filter_to_5tuple(struct rte_eth_ntuple_filter *filter,
6280 struct ixgbe_5tuple_filter_info *filter_info)
6282 if (filter->queue >= IXGBE_MAX_RX_QUEUE_NUM ||
6283 filter->priority > IXGBE_5TUPLE_MAX_PRI ||
6284 filter->priority < IXGBE_5TUPLE_MIN_PRI)
6287 switch (filter->dst_ip_mask) {
6289 filter_info->dst_ip_mask = 0;
6290 filter_info->dst_ip = filter->dst_ip;
6293 filter_info->dst_ip_mask = 1;
6296 PMD_DRV_LOG(ERR, "invalid dst_ip mask.");
6300 switch (filter->src_ip_mask) {
6302 filter_info->src_ip_mask = 0;
6303 filter_info->src_ip = filter->src_ip;
6306 filter_info->src_ip_mask = 1;
6309 PMD_DRV_LOG(ERR, "invalid src_ip mask.");
6313 switch (filter->dst_port_mask) {
6315 filter_info->dst_port_mask = 0;
6316 filter_info->dst_port = filter->dst_port;
6319 filter_info->dst_port_mask = 1;
6322 PMD_DRV_LOG(ERR, "invalid dst_port mask.");
6326 switch (filter->src_port_mask) {
6328 filter_info->src_port_mask = 0;
6329 filter_info->src_port = filter->src_port;
6332 filter_info->src_port_mask = 1;
6335 PMD_DRV_LOG(ERR, "invalid src_port mask.");
6339 switch (filter->proto_mask) {
6341 filter_info->proto_mask = 0;
6342 filter_info->proto =
6343 convert_protocol_type(filter->proto);
6346 filter_info->proto_mask = 1;
6349 PMD_DRV_LOG(ERR, "invalid protocol mask.");
6353 filter_info->priority = (uint8_t)filter->priority;
6358 * add or delete a ntuple filter
6361 * dev: Pointer to struct rte_eth_dev.
6362 * ntuple_filter: Pointer to struct rte_eth_ntuple_filter
6363 * add: if true, add filter, if false, remove filter
6366 * - On success, zero.
6367 * - On failure, a negative value.
6370 ixgbe_add_del_ntuple_filter(struct rte_eth_dev *dev,
6371 struct rte_eth_ntuple_filter *ntuple_filter,
6374 struct ixgbe_filter_info *filter_info =
6375 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
6376 struct ixgbe_5tuple_filter_info filter_5tuple;
6377 struct ixgbe_5tuple_filter *filter;
6380 if (ntuple_filter->flags != RTE_5TUPLE_FLAGS) {
6381 PMD_DRV_LOG(ERR, "only 5tuple is supported.");
6385 memset(&filter_5tuple, 0, sizeof(struct ixgbe_5tuple_filter_info));
6386 ret = ntuple_filter_to_5tuple(ntuple_filter, &filter_5tuple);
6390 filter = ixgbe_5tuple_filter_lookup(&filter_info->fivetuple_list,
6392 if (filter != NULL && add) {
6393 PMD_DRV_LOG(ERR, "filter exists.");
6396 if (filter == NULL && !add) {
6397 PMD_DRV_LOG(ERR, "filter doesn't exist.");
6402 filter = rte_zmalloc("ixgbe_5tuple_filter",
6403 sizeof(struct ixgbe_5tuple_filter), 0);
6406 (void)rte_memcpy(&filter->filter_info,
6408 sizeof(struct ixgbe_5tuple_filter_info));
6409 filter->queue = ntuple_filter->queue;
6410 ret = ixgbe_add_5tuple_filter(dev, filter);
6416 ixgbe_remove_5tuple_filter(dev, filter);
6422 * get a ntuple filter
6425 * dev: Pointer to struct rte_eth_dev.
6426 * ntuple_filter: Pointer to struct rte_eth_ntuple_filter
6429 * - On success, zero.
6430 * - On failure, a negative value.
6433 ixgbe_get_ntuple_filter(struct rte_eth_dev *dev,
6434 struct rte_eth_ntuple_filter *ntuple_filter)
6436 struct ixgbe_filter_info *filter_info =
6437 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
6438 struct ixgbe_5tuple_filter_info filter_5tuple;
6439 struct ixgbe_5tuple_filter *filter;
6442 if (ntuple_filter->flags != RTE_5TUPLE_FLAGS) {
6443 PMD_DRV_LOG(ERR, "only 5tuple is supported.");
6447 memset(&filter_5tuple, 0, sizeof(struct ixgbe_5tuple_filter_info));
6448 ret = ntuple_filter_to_5tuple(ntuple_filter, &filter_5tuple);
6452 filter = ixgbe_5tuple_filter_lookup(&filter_info->fivetuple_list,
6454 if (filter == NULL) {
6455 PMD_DRV_LOG(ERR, "filter doesn't exist.");
6458 ntuple_filter->queue = filter->queue;
6463 * ixgbe_ntuple_filter_handle - Handle operations for ntuple filter.
6464 * @dev: pointer to rte_eth_dev structure
6465 * @filter_op:operation will be taken.
6466 * @arg: a pointer to specific structure corresponding to the filter_op
6469 * - On success, zero.
6470 * - On failure, a negative value.
6473 ixgbe_ntuple_filter_handle(struct rte_eth_dev *dev,
6474 enum rte_filter_op filter_op,
6477 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6480 MAC_TYPE_FILTER_SUP_EXT(hw->mac.type);
6482 if (filter_op == RTE_ETH_FILTER_NOP)
6486 PMD_DRV_LOG(ERR, "arg shouldn't be NULL for operation %u.",
6491 switch (filter_op) {
6492 case RTE_ETH_FILTER_ADD:
6493 ret = ixgbe_add_del_ntuple_filter(dev,
6494 (struct rte_eth_ntuple_filter *)arg,
6497 case RTE_ETH_FILTER_DELETE:
6498 ret = ixgbe_add_del_ntuple_filter(dev,
6499 (struct rte_eth_ntuple_filter *)arg,
6502 case RTE_ETH_FILTER_GET:
6503 ret = ixgbe_get_ntuple_filter(dev,
6504 (struct rte_eth_ntuple_filter *)arg);
6507 PMD_DRV_LOG(ERR, "unsupported operation %u.", filter_op);
6515 ixgbe_add_del_ethertype_filter(struct rte_eth_dev *dev,
6516 struct rte_eth_ethertype_filter *filter,
6519 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6520 struct ixgbe_filter_info *filter_info =
6521 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
6525 struct ixgbe_ethertype_filter ethertype_filter;
6527 if (filter->queue >= IXGBE_MAX_RX_QUEUE_NUM)
6530 if (filter->ether_type == ETHER_TYPE_IPv4 ||
6531 filter->ether_type == ETHER_TYPE_IPv6) {
6532 PMD_DRV_LOG(ERR, "unsupported ether_type(0x%04x) in"
6533 " ethertype filter.", filter->ether_type);
6537 if (filter->flags & RTE_ETHTYPE_FLAGS_MAC) {
6538 PMD_DRV_LOG(ERR, "mac compare is unsupported.");
6541 if (filter->flags & RTE_ETHTYPE_FLAGS_DROP) {
6542 PMD_DRV_LOG(ERR, "drop option is unsupported.");
6546 ret = ixgbe_ethertype_filter_lookup(filter_info, filter->ether_type);
6547 if (ret >= 0 && add) {
6548 PMD_DRV_LOG(ERR, "ethertype (0x%04x) filter exists.",
6549 filter->ether_type);
6552 if (ret < 0 && !add) {
6553 PMD_DRV_LOG(ERR, "ethertype (0x%04x) filter doesn't exist.",
6554 filter->ether_type);
6559 etqf = IXGBE_ETQF_FILTER_EN;
6560 etqf |= (uint32_t)filter->ether_type;
6561 etqs |= (uint32_t)((filter->queue <<
6562 IXGBE_ETQS_RX_QUEUE_SHIFT) &
6563 IXGBE_ETQS_RX_QUEUE);
6564 etqs |= IXGBE_ETQS_QUEUE_EN;
6566 ethertype_filter.ethertype = filter->ether_type;
6567 ethertype_filter.etqf = etqf;
6568 ethertype_filter.etqs = etqs;
6569 ethertype_filter.conf = FALSE;
6570 ret = ixgbe_ethertype_filter_insert(filter_info,
6573 PMD_DRV_LOG(ERR, "ethertype filters are full.");
6577 ret = ixgbe_ethertype_filter_remove(filter_info, (uint8_t)ret);
6581 IXGBE_WRITE_REG(hw, IXGBE_ETQF(ret), etqf);
6582 IXGBE_WRITE_REG(hw, IXGBE_ETQS(ret), etqs);
6583 IXGBE_WRITE_FLUSH(hw);
6589 ixgbe_get_ethertype_filter(struct rte_eth_dev *dev,
6590 struct rte_eth_ethertype_filter *filter)
6592 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6593 struct ixgbe_filter_info *filter_info =
6594 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
6595 uint32_t etqf, etqs;
6598 ret = ixgbe_ethertype_filter_lookup(filter_info, filter->ether_type);
6600 PMD_DRV_LOG(ERR, "ethertype (0x%04x) filter doesn't exist.",
6601 filter->ether_type);
6605 etqf = IXGBE_READ_REG(hw, IXGBE_ETQF(ret));
6606 if (etqf & IXGBE_ETQF_FILTER_EN) {
6607 etqs = IXGBE_READ_REG(hw, IXGBE_ETQS(ret));
6608 filter->ether_type = etqf & IXGBE_ETQF_ETHERTYPE;
6610 filter->queue = (etqs & IXGBE_ETQS_RX_QUEUE) >>
6611 IXGBE_ETQS_RX_QUEUE_SHIFT;
6618 * ixgbe_ethertype_filter_handle - Handle operations for ethertype filter.
6619 * @dev: pointer to rte_eth_dev structure
6620 * @filter_op:operation will be taken.
6621 * @arg: a pointer to specific structure corresponding to the filter_op
6624 ixgbe_ethertype_filter_handle(struct rte_eth_dev *dev,
6625 enum rte_filter_op filter_op,
6628 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6631 MAC_TYPE_FILTER_SUP(hw->mac.type);
6633 if (filter_op == RTE_ETH_FILTER_NOP)
6637 PMD_DRV_LOG(ERR, "arg shouldn't be NULL for operation %u.",
6642 switch (filter_op) {
6643 case RTE_ETH_FILTER_ADD:
6644 ret = ixgbe_add_del_ethertype_filter(dev,
6645 (struct rte_eth_ethertype_filter *)arg,
6648 case RTE_ETH_FILTER_DELETE:
6649 ret = ixgbe_add_del_ethertype_filter(dev,
6650 (struct rte_eth_ethertype_filter *)arg,
6653 case RTE_ETH_FILTER_GET:
6654 ret = ixgbe_get_ethertype_filter(dev,
6655 (struct rte_eth_ethertype_filter *)arg);
6658 PMD_DRV_LOG(ERR, "unsupported operation %u.", filter_op);
6666 ixgbe_dev_filter_ctrl(struct rte_eth_dev *dev,
6667 enum rte_filter_type filter_type,
6668 enum rte_filter_op filter_op,
6673 switch (filter_type) {
6674 case RTE_ETH_FILTER_NTUPLE:
6675 ret = ixgbe_ntuple_filter_handle(dev, filter_op, arg);
6677 case RTE_ETH_FILTER_ETHERTYPE:
6678 ret = ixgbe_ethertype_filter_handle(dev, filter_op, arg);
6680 case RTE_ETH_FILTER_SYN:
6681 ret = ixgbe_syn_filter_handle(dev, filter_op, arg);
6683 case RTE_ETH_FILTER_FDIR:
6684 ret = ixgbe_fdir_ctrl_func(dev, filter_op, arg);
6686 case RTE_ETH_FILTER_L2_TUNNEL:
6687 ret = ixgbe_dev_l2_tunnel_filter_handle(dev, filter_op, arg);
6689 case RTE_ETH_FILTER_GENERIC:
6690 if (filter_op != RTE_ETH_FILTER_GET)
6692 *(const void **)arg = &ixgbe_flow_ops;
6695 PMD_DRV_LOG(WARNING, "Filter type (%d) not supported",
6705 ixgbe_dev_addr_list_itr(__attribute__((unused)) struct ixgbe_hw *hw,
6706 u8 **mc_addr_ptr, u32 *vmdq)
6711 mc_addr = *mc_addr_ptr;
6712 *mc_addr_ptr = (mc_addr + sizeof(struct ether_addr));
6717 ixgbe_dev_set_mc_addr_list(struct rte_eth_dev *dev,
6718 struct ether_addr *mc_addr_set,
6719 uint32_t nb_mc_addr)
6721 struct ixgbe_hw *hw;
6724 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6725 mc_addr_list = (u8 *)mc_addr_set;
6726 return ixgbe_update_mc_addr_list(hw, mc_addr_list, nb_mc_addr,
6727 ixgbe_dev_addr_list_itr, TRUE);
6731 ixgbe_read_systime_cyclecounter(struct rte_eth_dev *dev)
6733 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6734 uint64_t systime_cycles;
6736 switch (hw->mac.type) {
6737 case ixgbe_mac_X550:
6738 case ixgbe_mac_X550EM_x:
6739 case ixgbe_mac_X550EM_a:
6740 /* SYSTIMEL stores ns and SYSTIMEH stores seconds. */
6741 systime_cycles = (uint64_t)IXGBE_READ_REG(hw, IXGBE_SYSTIML);
6742 systime_cycles += (uint64_t)IXGBE_READ_REG(hw, IXGBE_SYSTIMH)
6746 systime_cycles = (uint64_t)IXGBE_READ_REG(hw, IXGBE_SYSTIML);
6747 systime_cycles |= (uint64_t)IXGBE_READ_REG(hw, IXGBE_SYSTIMH)
6751 return systime_cycles;
6755 ixgbe_read_rx_tstamp_cyclecounter(struct rte_eth_dev *dev)
6757 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6758 uint64_t rx_tstamp_cycles;
6760 switch (hw->mac.type) {
6761 case ixgbe_mac_X550:
6762 case ixgbe_mac_X550EM_x:
6763 case ixgbe_mac_X550EM_a:
6764 /* RXSTMPL stores ns and RXSTMPH stores seconds. */
6765 rx_tstamp_cycles = (uint64_t)IXGBE_READ_REG(hw, IXGBE_RXSTMPL);
6766 rx_tstamp_cycles += (uint64_t)IXGBE_READ_REG(hw, IXGBE_RXSTMPH)
6770 /* RXSTMPL stores ns and RXSTMPH stores seconds. */
6771 rx_tstamp_cycles = (uint64_t)IXGBE_READ_REG(hw, IXGBE_RXSTMPL);
6772 rx_tstamp_cycles |= (uint64_t)IXGBE_READ_REG(hw, IXGBE_RXSTMPH)
6776 return rx_tstamp_cycles;
6780 ixgbe_read_tx_tstamp_cyclecounter(struct rte_eth_dev *dev)
6782 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6783 uint64_t tx_tstamp_cycles;
6785 switch (hw->mac.type) {
6786 case ixgbe_mac_X550:
6787 case ixgbe_mac_X550EM_x:
6788 case ixgbe_mac_X550EM_a:
6789 /* TXSTMPL stores ns and TXSTMPH stores seconds. */
6790 tx_tstamp_cycles = (uint64_t)IXGBE_READ_REG(hw, IXGBE_TXSTMPL);
6791 tx_tstamp_cycles += (uint64_t)IXGBE_READ_REG(hw, IXGBE_TXSTMPH)
6795 /* TXSTMPL stores ns and TXSTMPH stores seconds. */
6796 tx_tstamp_cycles = (uint64_t)IXGBE_READ_REG(hw, IXGBE_TXSTMPL);
6797 tx_tstamp_cycles |= (uint64_t)IXGBE_READ_REG(hw, IXGBE_TXSTMPH)
6801 return tx_tstamp_cycles;
6805 ixgbe_start_timecounters(struct rte_eth_dev *dev)
6807 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6808 struct ixgbe_adapter *adapter =
6809 (struct ixgbe_adapter *)dev->data->dev_private;
6810 struct rte_eth_link link;
6811 uint32_t incval = 0;
6814 /* Get current link speed. */
6815 memset(&link, 0, sizeof(link));
6816 ixgbe_dev_link_update(dev, 1);
6817 rte_ixgbe_dev_atomic_read_link_status(dev, &link);
6819 switch (link.link_speed) {
6820 case ETH_SPEED_NUM_100M:
6821 incval = IXGBE_INCVAL_100;
6822 shift = IXGBE_INCVAL_SHIFT_100;
6824 case ETH_SPEED_NUM_1G:
6825 incval = IXGBE_INCVAL_1GB;
6826 shift = IXGBE_INCVAL_SHIFT_1GB;
6828 case ETH_SPEED_NUM_10G:
6830 incval = IXGBE_INCVAL_10GB;
6831 shift = IXGBE_INCVAL_SHIFT_10GB;
6835 switch (hw->mac.type) {
6836 case ixgbe_mac_X550:
6837 case ixgbe_mac_X550EM_x:
6838 case ixgbe_mac_X550EM_a:
6839 /* Independent of link speed. */
6841 /* Cycles read will be interpreted as ns. */
6844 case ixgbe_mac_X540:
6845 IXGBE_WRITE_REG(hw, IXGBE_TIMINCA, incval);
6847 case ixgbe_mac_82599EB:
6848 incval >>= IXGBE_INCVAL_SHIFT_82599;
6849 shift -= IXGBE_INCVAL_SHIFT_82599;
6850 IXGBE_WRITE_REG(hw, IXGBE_TIMINCA,
6851 (1 << IXGBE_INCPER_SHIFT_82599) | incval);
6854 /* Not supported. */
6858 memset(&adapter->systime_tc, 0, sizeof(struct rte_timecounter));
6859 memset(&adapter->rx_tstamp_tc, 0, sizeof(struct rte_timecounter));
6860 memset(&adapter->tx_tstamp_tc, 0, sizeof(struct rte_timecounter));
6862 adapter->systime_tc.cc_mask = IXGBE_CYCLECOUNTER_MASK;
6863 adapter->systime_tc.cc_shift = shift;
6864 adapter->systime_tc.nsec_mask = (1ULL << shift) - 1;
6866 adapter->rx_tstamp_tc.cc_mask = IXGBE_CYCLECOUNTER_MASK;
6867 adapter->rx_tstamp_tc.cc_shift = shift;
6868 adapter->rx_tstamp_tc.nsec_mask = (1ULL << shift) - 1;
6870 adapter->tx_tstamp_tc.cc_mask = IXGBE_CYCLECOUNTER_MASK;
6871 adapter->tx_tstamp_tc.cc_shift = shift;
6872 adapter->tx_tstamp_tc.nsec_mask = (1ULL << shift) - 1;
6876 ixgbe_timesync_adjust_time(struct rte_eth_dev *dev, int64_t delta)
6878 struct ixgbe_adapter *adapter =
6879 (struct ixgbe_adapter *)dev->data->dev_private;
6881 adapter->systime_tc.nsec += delta;
6882 adapter->rx_tstamp_tc.nsec += delta;
6883 adapter->tx_tstamp_tc.nsec += delta;
6889 ixgbe_timesync_write_time(struct rte_eth_dev *dev, const struct timespec *ts)
6892 struct ixgbe_adapter *adapter =
6893 (struct ixgbe_adapter *)dev->data->dev_private;
6895 ns = rte_timespec_to_ns(ts);
6896 /* Set the timecounters to a new value. */
6897 adapter->systime_tc.nsec = ns;
6898 adapter->rx_tstamp_tc.nsec = ns;
6899 adapter->tx_tstamp_tc.nsec = ns;
6905 ixgbe_timesync_read_time(struct rte_eth_dev *dev, struct timespec *ts)
6907 uint64_t ns, systime_cycles;
6908 struct ixgbe_adapter *adapter =
6909 (struct ixgbe_adapter *)dev->data->dev_private;
6911 systime_cycles = ixgbe_read_systime_cyclecounter(dev);
6912 ns = rte_timecounter_update(&adapter->systime_tc, systime_cycles);
6913 *ts = rte_ns_to_timespec(ns);
6919 ixgbe_timesync_enable(struct rte_eth_dev *dev)
6921 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6925 /* Stop the timesync system time. */
6926 IXGBE_WRITE_REG(hw, IXGBE_TIMINCA, 0x0);
6927 /* Reset the timesync system time value. */
6928 IXGBE_WRITE_REG(hw, IXGBE_SYSTIML, 0x0);
6929 IXGBE_WRITE_REG(hw, IXGBE_SYSTIMH, 0x0);
6931 /* Enable system time for platforms where it isn't on by default. */
6932 tsauxc = IXGBE_READ_REG(hw, IXGBE_TSAUXC);
6933 tsauxc &= ~IXGBE_TSAUXC_DISABLE_SYSTIME;
6934 IXGBE_WRITE_REG(hw, IXGBE_TSAUXC, tsauxc);
6936 ixgbe_start_timecounters(dev);
6938 /* Enable L2 filtering of IEEE1588/802.1AS Ethernet frame types. */
6939 IXGBE_WRITE_REG(hw, IXGBE_ETQF(IXGBE_ETQF_FILTER_1588),
6941 IXGBE_ETQF_FILTER_EN |
6944 /* Enable timestamping of received PTP packets. */
6945 tsync_ctl = IXGBE_READ_REG(hw, IXGBE_TSYNCRXCTL);
6946 tsync_ctl |= IXGBE_TSYNCRXCTL_ENABLED;
6947 IXGBE_WRITE_REG(hw, IXGBE_TSYNCRXCTL, tsync_ctl);
6949 /* Enable timestamping of transmitted PTP packets. */
6950 tsync_ctl = IXGBE_READ_REG(hw, IXGBE_TSYNCTXCTL);
6951 tsync_ctl |= IXGBE_TSYNCTXCTL_ENABLED;
6952 IXGBE_WRITE_REG(hw, IXGBE_TSYNCTXCTL, tsync_ctl);
6954 IXGBE_WRITE_FLUSH(hw);
6960 ixgbe_timesync_disable(struct rte_eth_dev *dev)
6962 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6965 /* Disable timestamping of transmitted PTP packets. */
6966 tsync_ctl = IXGBE_READ_REG(hw, IXGBE_TSYNCTXCTL);
6967 tsync_ctl &= ~IXGBE_TSYNCTXCTL_ENABLED;
6968 IXGBE_WRITE_REG(hw, IXGBE_TSYNCTXCTL, tsync_ctl);
6970 /* Disable timestamping of received PTP packets. */
6971 tsync_ctl = IXGBE_READ_REG(hw, IXGBE_TSYNCRXCTL);
6972 tsync_ctl &= ~IXGBE_TSYNCRXCTL_ENABLED;
6973 IXGBE_WRITE_REG(hw, IXGBE_TSYNCRXCTL, tsync_ctl);
6975 /* Disable L2 filtering of IEEE1588/802.1AS Ethernet frame types. */
6976 IXGBE_WRITE_REG(hw, IXGBE_ETQF(IXGBE_ETQF_FILTER_1588), 0);
6978 /* Stop incrementating the System Time registers. */
6979 IXGBE_WRITE_REG(hw, IXGBE_TIMINCA, 0);
6985 ixgbe_timesync_read_rx_timestamp(struct rte_eth_dev *dev,
6986 struct timespec *timestamp,
6987 uint32_t flags __rte_unused)
6989 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6990 struct ixgbe_adapter *adapter =
6991 (struct ixgbe_adapter *)dev->data->dev_private;
6992 uint32_t tsync_rxctl;
6993 uint64_t rx_tstamp_cycles;
6996 tsync_rxctl = IXGBE_READ_REG(hw, IXGBE_TSYNCRXCTL);
6997 if ((tsync_rxctl & IXGBE_TSYNCRXCTL_VALID) == 0)
7000 rx_tstamp_cycles = ixgbe_read_rx_tstamp_cyclecounter(dev);
7001 ns = rte_timecounter_update(&adapter->rx_tstamp_tc, rx_tstamp_cycles);
7002 *timestamp = rte_ns_to_timespec(ns);
7008 ixgbe_timesync_read_tx_timestamp(struct rte_eth_dev *dev,
7009 struct timespec *timestamp)
7011 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7012 struct ixgbe_adapter *adapter =
7013 (struct ixgbe_adapter *)dev->data->dev_private;
7014 uint32_t tsync_txctl;
7015 uint64_t tx_tstamp_cycles;
7018 tsync_txctl = IXGBE_READ_REG(hw, IXGBE_TSYNCTXCTL);
7019 if ((tsync_txctl & IXGBE_TSYNCTXCTL_VALID) == 0)
7022 tx_tstamp_cycles = ixgbe_read_tx_tstamp_cyclecounter(dev);
7023 ns = rte_timecounter_update(&adapter->tx_tstamp_tc, tx_tstamp_cycles);
7024 *timestamp = rte_ns_to_timespec(ns);
7030 ixgbe_get_reg_length(struct rte_eth_dev *dev)
7032 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
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;
7039 while ((reg_group = reg_set[g_ind++]))
7040 count += ixgbe_regs_group_count(reg_group);
7046 ixgbevf_get_reg_length(struct rte_eth_dev *dev __rte_unused)
7050 const struct reg_info *reg_group;
7052 while ((reg_group = ixgbevf_regs[g_ind++]))
7053 count += ixgbe_regs_group_count(reg_group);
7059 ixgbe_get_regs(struct rte_eth_dev *dev,
7060 struct rte_dev_reg_info *regs)
7062 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7063 uint32_t *data = regs->data;
7066 const struct reg_info *reg_group;
7067 const struct reg_info **reg_set = (hw->mac.type == ixgbe_mac_82598EB) ?
7068 ixgbe_regs_mac_82598EB : ixgbe_regs_others;
7071 regs->length = ixgbe_get_reg_length(dev);
7072 regs->width = sizeof(uint32_t);
7076 /* Support only full register dump */
7077 if ((regs->length == 0) ||
7078 (regs->length == (uint32_t)ixgbe_get_reg_length(dev))) {
7079 regs->version = hw->mac.type << 24 | hw->revision_id << 16 |
7081 while ((reg_group = reg_set[g_ind++]))
7082 count += ixgbe_read_regs_group(dev, &data[count],
7091 ixgbevf_get_regs(struct rte_eth_dev *dev,
7092 struct rte_dev_reg_info *regs)
7094 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7095 uint32_t *data = regs->data;
7098 const struct reg_info *reg_group;
7101 regs->length = ixgbevf_get_reg_length(dev);
7102 regs->width = sizeof(uint32_t);
7106 /* Support only full register dump */
7107 if ((regs->length == 0) ||
7108 (regs->length == (uint32_t)ixgbevf_get_reg_length(dev))) {
7109 regs->version = hw->mac.type << 24 | hw->revision_id << 16 |
7111 while ((reg_group = ixgbevf_regs[g_ind++]))
7112 count += ixgbe_read_regs_group(dev, &data[count],
7121 ixgbe_get_eeprom_length(struct rte_eth_dev *dev)
7123 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7125 /* Return unit is byte count */
7126 return hw->eeprom.word_size * 2;
7130 ixgbe_get_eeprom(struct rte_eth_dev *dev,
7131 struct rte_dev_eeprom_info *in_eeprom)
7133 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7134 struct ixgbe_eeprom_info *eeprom = &hw->eeprom;
7135 uint16_t *data = in_eeprom->data;
7138 first = in_eeprom->offset >> 1;
7139 length = in_eeprom->length >> 1;
7140 if ((first > hw->eeprom.word_size) ||
7141 ((first + length) > hw->eeprom.word_size))
7144 in_eeprom->magic = hw->vendor_id | (hw->device_id << 16);
7146 return eeprom->ops.read_buffer(hw, first, length, data);
7150 ixgbe_set_eeprom(struct rte_eth_dev *dev,
7151 struct rte_dev_eeprom_info *in_eeprom)
7153 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7154 struct ixgbe_eeprom_info *eeprom = &hw->eeprom;
7155 uint16_t *data = in_eeprom->data;
7158 first = in_eeprom->offset >> 1;
7159 length = in_eeprom->length >> 1;
7160 if ((first > hw->eeprom.word_size) ||
7161 ((first + length) > hw->eeprom.word_size))
7164 in_eeprom->magic = hw->vendor_id | (hw->device_id << 16);
7166 return eeprom->ops.write_buffer(hw, first, length, data);
7170 ixgbe_reta_size_get(enum ixgbe_mac_type mac_type) {
7172 case ixgbe_mac_X550:
7173 case ixgbe_mac_X550EM_x:
7174 case ixgbe_mac_X550EM_a:
7175 return ETH_RSS_RETA_SIZE_512;
7176 case ixgbe_mac_X550_vf:
7177 case ixgbe_mac_X550EM_x_vf:
7178 case ixgbe_mac_X550EM_a_vf:
7179 return ETH_RSS_RETA_SIZE_64;
7181 return ETH_RSS_RETA_SIZE_128;
7186 ixgbe_reta_reg_get(enum ixgbe_mac_type mac_type, uint16_t reta_idx) {
7188 case ixgbe_mac_X550:
7189 case ixgbe_mac_X550EM_x:
7190 case ixgbe_mac_X550EM_a:
7191 if (reta_idx < ETH_RSS_RETA_SIZE_128)
7192 return IXGBE_RETA(reta_idx >> 2);
7194 return IXGBE_ERETA((reta_idx - ETH_RSS_RETA_SIZE_128) >> 2);
7195 case ixgbe_mac_X550_vf:
7196 case ixgbe_mac_X550EM_x_vf:
7197 case ixgbe_mac_X550EM_a_vf:
7198 return IXGBE_VFRETA(reta_idx >> 2);
7200 return IXGBE_RETA(reta_idx >> 2);
7205 ixgbe_mrqc_reg_get(enum ixgbe_mac_type mac_type) {
7207 case ixgbe_mac_X550_vf:
7208 case ixgbe_mac_X550EM_x_vf:
7209 case ixgbe_mac_X550EM_a_vf:
7210 return IXGBE_VFMRQC;
7217 ixgbe_rssrk_reg_get(enum ixgbe_mac_type mac_type, uint8_t i) {
7219 case ixgbe_mac_X550_vf:
7220 case ixgbe_mac_X550EM_x_vf:
7221 case ixgbe_mac_X550EM_a_vf:
7222 return IXGBE_VFRSSRK(i);
7224 return IXGBE_RSSRK(i);
7229 ixgbe_rss_update_sp(enum ixgbe_mac_type mac_type) {
7231 case ixgbe_mac_82599_vf:
7232 case ixgbe_mac_X540_vf:
7240 ixgbe_dev_get_dcb_info(struct rte_eth_dev *dev,
7241 struct rte_eth_dcb_info *dcb_info)
7243 struct ixgbe_dcb_config *dcb_config =
7244 IXGBE_DEV_PRIVATE_TO_DCB_CFG(dev->data->dev_private);
7245 struct ixgbe_dcb_tc_config *tc;
7248 if (dev->data->dev_conf.rxmode.mq_mode & ETH_MQ_RX_DCB_FLAG)
7249 dcb_info->nb_tcs = dcb_config->num_tcs.pg_tcs;
7251 dcb_info->nb_tcs = 1;
7253 if (dcb_config->vt_mode) { /* vt is enabled*/
7254 struct rte_eth_vmdq_dcb_conf *vmdq_rx_conf =
7255 &dev->data->dev_conf.rx_adv_conf.vmdq_dcb_conf;
7256 for (i = 0; i < ETH_DCB_NUM_USER_PRIORITIES; i++)
7257 dcb_info->prio_tc[i] = vmdq_rx_conf->dcb_tc[i];
7258 for (i = 0; i < vmdq_rx_conf->nb_queue_pools; i++) {
7259 for (j = 0; j < dcb_info->nb_tcs; j++) {
7260 dcb_info->tc_queue.tc_rxq[i][j].base =
7261 i * dcb_info->nb_tcs + j;
7262 dcb_info->tc_queue.tc_rxq[i][j].nb_queue = 1;
7263 dcb_info->tc_queue.tc_txq[i][j].base =
7264 i * dcb_info->nb_tcs + j;
7265 dcb_info->tc_queue.tc_txq[i][j].nb_queue = 1;
7268 } else { /* vt is disabled*/
7269 struct rte_eth_dcb_rx_conf *rx_conf =
7270 &dev->data->dev_conf.rx_adv_conf.dcb_rx_conf;
7271 for (i = 0; i < ETH_DCB_NUM_USER_PRIORITIES; i++)
7272 dcb_info->prio_tc[i] = rx_conf->dcb_tc[i];
7273 if (dcb_info->nb_tcs == ETH_4_TCS) {
7274 for (i = 0; i < dcb_info->nb_tcs; i++) {
7275 dcb_info->tc_queue.tc_rxq[0][i].base = i * 32;
7276 dcb_info->tc_queue.tc_rxq[0][i].nb_queue = 16;
7278 dcb_info->tc_queue.tc_txq[0][0].base = 0;
7279 dcb_info->tc_queue.tc_txq[0][1].base = 64;
7280 dcb_info->tc_queue.tc_txq[0][2].base = 96;
7281 dcb_info->tc_queue.tc_txq[0][3].base = 112;
7282 dcb_info->tc_queue.tc_txq[0][0].nb_queue = 64;
7283 dcb_info->tc_queue.tc_txq[0][1].nb_queue = 32;
7284 dcb_info->tc_queue.tc_txq[0][2].nb_queue = 16;
7285 dcb_info->tc_queue.tc_txq[0][3].nb_queue = 16;
7286 } else if (dcb_info->nb_tcs == ETH_8_TCS) {
7287 for (i = 0; i < dcb_info->nb_tcs; i++) {
7288 dcb_info->tc_queue.tc_rxq[0][i].base = i * 16;
7289 dcb_info->tc_queue.tc_rxq[0][i].nb_queue = 16;
7291 dcb_info->tc_queue.tc_txq[0][0].base = 0;
7292 dcb_info->tc_queue.tc_txq[0][1].base = 32;
7293 dcb_info->tc_queue.tc_txq[0][2].base = 64;
7294 dcb_info->tc_queue.tc_txq[0][3].base = 80;
7295 dcb_info->tc_queue.tc_txq[0][4].base = 96;
7296 dcb_info->tc_queue.tc_txq[0][5].base = 104;
7297 dcb_info->tc_queue.tc_txq[0][6].base = 112;
7298 dcb_info->tc_queue.tc_txq[0][7].base = 120;
7299 dcb_info->tc_queue.tc_txq[0][0].nb_queue = 32;
7300 dcb_info->tc_queue.tc_txq[0][1].nb_queue = 32;
7301 dcb_info->tc_queue.tc_txq[0][2].nb_queue = 16;
7302 dcb_info->tc_queue.tc_txq[0][3].nb_queue = 16;
7303 dcb_info->tc_queue.tc_txq[0][4].nb_queue = 8;
7304 dcb_info->tc_queue.tc_txq[0][5].nb_queue = 8;
7305 dcb_info->tc_queue.tc_txq[0][6].nb_queue = 8;
7306 dcb_info->tc_queue.tc_txq[0][7].nb_queue = 8;
7309 for (i = 0; i < dcb_info->nb_tcs; i++) {
7310 tc = &dcb_config->tc_config[i];
7311 dcb_info->tc_bws[i] = tc->path[IXGBE_DCB_TX_CONFIG].bwg_percent;
7316 /* Update e-tag ether type */
7318 ixgbe_update_e_tag_eth_type(struct ixgbe_hw *hw,
7319 uint16_t ether_type)
7321 uint32_t etag_etype;
7323 if (hw->mac.type != ixgbe_mac_X550 &&
7324 hw->mac.type != ixgbe_mac_X550EM_x &&
7325 hw->mac.type != ixgbe_mac_X550EM_a) {
7329 etag_etype = IXGBE_READ_REG(hw, IXGBE_ETAG_ETYPE);
7330 etag_etype &= ~IXGBE_ETAG_ETYPE_MASK;
7331 etag_etype |= ether_type;
7332 IXGBE_WRITE_REG(hw, IXGBE_ETAG_ETYPE, etag_etype);
7333 IXGBE_WRITE_FLUSH(hw);
7338 /* Config l2 tunnel ether type */
7340 ixgbe_dev_l2_tunnel_eth_type_conf(struct rte_eth_dev *dev,
7341 struct rte_eth_l2_tunnel_conf *l2_tunnel)
7344 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7345 struct ixgbe_l2_tn_info *l2_tn_info =
7346 IXGBE_DEV_PRIVATE_TO_L2_TN_INFO(dev->data->dev_private);
7348 if (l2_tunnel == NULL)
7351 switch (l2_tunnel->l2_tunnel_type) {
7352 case RTE_L2_TUNNEL_TYPE_E_TAG:
7353 l2_tn_info->e_tag_ether_type = l2_tunnel->ether_type;
7354 ret = ixgbe_update_e_tag_eth_type(hw, l2_tunnel->ether_type);
7357 PMD_DRV_LOG(ERR, "Invalid tunnel type");
7365 /* Enable e-tag tunnel */
7367 ixgbe_e_tag_enable(struct ixgbe_hw *hw)
7369 uint32_t etag_etype;
7371 if (hw->mac.type != ixgbe_mac_X550 &&
7372 hw->mac.type != ixgbe_mac_X550EM_x &&
7373 hw->mac.type != ixgbe_mac_X550EM_a) {
7377 etag_etype = IXGBE_READ_REG(hw, IXGBE_ETAG_ETYPE);
7378 etag_etype |= IXGBE_ETAG_ETYPE_VALID;
7379 IXGBE_WRITE_REG(hw, IXGBE_ETAG_ETYPE, etag_etype);
7380 IXGBE_WRITE_FLUSH(hw);
7385 /* Enable l2 tunnel */
7387 ixgbe_dev_l2_tunnel_enable(struct rte_eth_dev *dev,
7388 enum rte_eth_tunnel_type l2_tunnel_type)
7391 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7392 struct ixgbe_l2_tn_info *l2_tn_info =
7393 IXGBE_DEV_PRIVATE_TO_L2_TN_INFO(dev->data->dev_private);
7395 switch (l2_tunnel_type) {
7396 case RTE_L2_TUNNEL_TYPE_E_TAG:
7397 l2_tn_info->e_tag_en = TRUE;
7398 ret = ixgbe_e_tag_enable(hw);
7401 PMD_DRV_LOG(ERR, "Invalid tunnel type");
7409 /* Disable e-tag tunnel */
7411 ixgbe_e_tag_disable(struct ixgbe_hw *hw)
7413 uint32_t etag_etype;
7415 if (hw->mac.type != ixgbe_mac_X550 &&
7416 hw->mac.type != ixgbe_mac_X550EM_x &&
7417 hw->mac.type != ixgbe_mac_X550EM_a) {
7421 etag_etype = IXGBE_READ_REG(hw, IXGBE_ETAG_ETYPE);
7422 etag_etype &= ~IXGBE_ETAG_ETYPE_VALID;
7423 IXGBE_WRITE_REG(hw, IXGBE_ETAG_ETYPE, etag_etype);
7424 IXGBE_WRITE_FLUSH(hw);
7429 /* Disable l2 tunnel */
7431 ixgbe_dev_l2_tunnel_disable(struct rte_eth_dev *dev,
7432 enum rte_eth_tunnel_type l2_tunnel_type)
7435 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7436 struct ixgbe_l2_tn_info *l2_tn_info =
7437 IXGBE_DEV_PRIVATE_TO_L2_TN_INFO(dev->data->dev_private);
7439 switch (l2_tunnel_type) {
7440 case RTE_L2_TUNNEL_TYPE_E_TAG:
7441 l2_tn_info->e_tag_en = FALSE;
7442 ret = ixgbe_e_tag_disable(hw);
7445 PMD_DRV_LOG(ERR, "Invalid tunnel type");
7454 ixgbe_e_tag_filter_del(struct rte_eth_dev *dev,
7455 struct rte_eth_l2_tunnel_conf *l2_tunnel)
7458 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7459 uint32_t i, rar_entries;
7460 uint32_t rar_low, rar_high;
7462 if (hw->mac.type != ixgbe_mac_X550 &&
7463 hw->mac.type != ixgbe_mac_X550EM_x &&
7464 hw->mac.type != ixgbe_mac_X550EM_a) {
7468 rar_entries = ixgbe_get_num_rx_addrs(hw);
7470 for (i = 1; i < rar_entries; i++) {
7471 rar_high = IXGBE_READ_REG(hw, IXGBE_RAH(i));
7472 rar_low = IXGBE_READ_REG(hw, IXGBE_RAL(i));
7473 if ((rar_high & IXGBE_RAH_AV) &&
7474 (rar_high & IXGBE_RAH_ADTYPE) &&
7475 ((rar_low & IXGBE_RAL_ETAG_FILTER_MASK) ==
7476 l2_tunnel->tunnel_id)) {
7477 IXGBE_WRITE_REG(hw, IXGBE_RAL(i), 0);
7478 IXGBE_WRITE_REG(hw, IXGBE_RAH(i), 0);
7480 ixgbe_clear_vmdq(hw, i, IXGBE_CLEAR_VMDQ_ALL);
7490 ixgbe_e_tag_filter_add(struct rte_eth_dev *dev,
7491 struct rte_eth_l2_tunnel_conf *l2_tunnel)
7494 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7495 uint32_t i, rar_entries;
7496 uint32_t rar_low, rar_high;
7498 if (hw->mac.type != ixgbe_mac_X550 &&
7499 hw->mac.type != ixgbe_mac_X550EM_x &&
7500 hw->mac.type != ixgbe_mac_X550EM_a) {
7504 /* One entry for one tunnel. Try to remove potential existing entry. */
7505 ixgbe_e_tag_filter_del(dev, l2_tunnel);
7507 rar_entries = ixgbe_get_num_rx_addrs(hw);
7509 for (i = 1; i < rar_entries; i++) {
7510 rar_high = IXGBE_READ_REG(hw, IXGBE_RAH(i));
7511 if (rar_high & IXGBE_RAH_AV) {
7514 ixgbe_set_vmdq(hw, i, l2_tunnel->pool);
7515 rar_high = IXGBE_RAH_AV | IXGBE_RAH_ADTYPE;
7516 rar_low = l2_tunnel->tunnel_id;
7518 IXGBE_WRITE_REG(hw, IXGBE_RAL(i), rar_low);
7519 IXGBE_WRITE_REG(hw, IXGBE_RAH(i), rar_high);
7525 PMD_INIT_LOG(NOTICE, "The table of E-tag forwarding rule is full."
7526 " Please remove a rule before adding a new one.");
7530 static inline struct ixgbe_l2_tn_filter *
7531 ixgbe_l2_tn_filter_lookup(struct ixgbe_l2_tn_info *l2_tn_info,
7532 struct ixgbe_l2_tn_key *key)
7536 ret = rte_hash_lookup(l2_tn_info->hash_handle, (const void *)key);
7540 return l2_tn_info->hash_map[ret];
7544 ixgbe_insert_l2_tn_filter(struct ixgbe_l2_tn_info *l2_tn_info,
7545 struct ixgbe_l2_tn_filter *l2_tn_filter)
7549 ret = rte_hash_add_key(l2_tn_info->hash_handle,
7550 &l2_tn_filter->key);
7554 "Failed to insert L2 tunnel filter"
7555 " to hash table %d!",
7560 l2_tn_info->hash_map[ret] = l2_tn_filter;
7562 TAILQ_INSERT_TAIL(&l2_tn_info->l2_tn_list, l2_tn_filter, entries);
7568 ixgbe_remove_l2_tn_filter(struct ixgbe_l2_tn_info *l2_tn_info,
7569 struct ixgbe_l2_tn_key *key)
7572 struct ixgbe_l2_tn_filter *l2_tn_filter;
7574 ret = rte_hash_del_key(l2_tn_info->hash_handle, key);
7578 "No such L2 tunnel filter to delete %d!",
7583 l2_tn_filter = l2_tn_info->hash_map[ret];
7584 l2_tn_info->hash_map[ret] = NULL;
7586 TAILQ_REMOVE(&l2_tn_info->l2_tn_list, l2_tn_filter, entries);
7587 rte_free(l2_tn_filter);
7592 /* Add l2 tunnel filter */
7594 ixgbe_dev_l2_tunnel_filter_add(struct rte_eth_dev *dev,
7595 struct rte_eth_l2_tunnel_conf *l2_tunnel,
7599 struct ixgbe_l2_tn_info *l2_tn_info =
7600 IXGBE_DEV_PRIVATE_TO_L2_TN_INFO(dev->data->dev_private);
7601 struct ixgbe_l2_tn_key key;
7602 struct ixgbe_l2_tn_filter *node;
7605 key.l2_tn_type = l2_tunnel->l2_tunnel_type;
7606 key.tn_id = l2_tunnel->tunnel_id;
7608 node = ixgbe_l2_tn_filter_lookup(l2_tn_info, &key);
7612 "The L2 tunnel filter already exists!");
7616 node = rte_zmalloc("ixgbe_l2_tn",
7617 sizeof(struct ixgbe_l2_tn_filter),
7622 (void)rte_memcpy(&node->key,
7624 sizeof(struct ixgbe_l2_tn_key));
7625 node->pool = l2_tunnel->pool;
7626 ret = ixgbe_insert_l2_tn_filter(l2_tn_info, node);
7633 switch (l2_tunnel->l2_tunnel_type) {
7634 case RTE_L2_TUNNEL_TYPE_E_TAG:
7635 ret = ixgbe_e_tag_filter_add(dev, l2_tunnel);
7638 PMD_DRV_LOG(ERR, "Invalid tunnel type");
7643 if ((!restore) && (ret < 0))
7644 (void)ixgbe_remove_l2_tn_filter(l2_tn_info, &key);
7649 /* Delete l2 tunnel filter */
7651 ixgbe_dev_l2_tunnel_filter_del(struct rte_eth_dev *dev,
7652 struct rte_eth_l2_tunnel_conf *l2_tunnel)
7655 struct ixgbe_l2_tn_info *l2_tn_info =
7656 IXGBE_DEV_PRIVATE_TO_L2_TN_INFO(dev->data->dev_private);
7657 struct ixgbe_l2_tn_key key;
7659 key.l2_tn_type = l2_tunnel->l2_tunnel_type;
7660 key.tn_id = l2_tunnel->tunnel_id;
7661 ret = ixgbe_remove_l2_tn_filter(l2_tn_info, &key);
7665 switch (l2_tunnel->l2_tunnel_type) {
7666 case RTE_L2_TUNNEL_TYPE_E_TAG:
7667 ret = ixgbe_e_tag_filter_del(dev, l2_tunnel);
7670 PMD_DRV_LOG(ERR, "Invalid tunnel type");
7679 * ixgbe_dev_l2_tunnel_filter_handle - Handle operations for l2 tunnel filter.
7680 * @dev: pointer to rte_eth_dev structure
7681 * @filter_op:operation will be taken.
7682 * @arg: a pointer to specific structure corresponding to the filter_op
7685 ixgbe_dev_l2_tunnel_filter_handle(struct rte_eth_dev *dev,
7686 enum rte_filter_op filter_op,
7691 if (filter_op == RTE_ETH_FILTER_NOP)
7695 PMD_DRV_LOG(ERR, "arg shouldn't be NULL for operation %u.",
7700 switch (filter_op) {
7701 case RTE_ETH_FILTER_ADD:
7702 ret = ixgbe_dev_l2_tunnel_filter_add
7704 (struct rte_eth_l2_tunnel_conf *)arg,
7707 case RTE_ETH_FILTER_DELETE:
7708 ret = ixgbe_dev_l2_tunnel_filter_del
7710 (struct rte_eth_l2_tunnel_conf *)arg);
7713 PMD_DRV_LOG(ERR, "unsupported operation %u.", filter_op);
7721 ixgbe_e_tag_forwarding_en_dis(struct rte_eth_dev *dev, bool en)
7725 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7727 if (hw->mac.type != ixgbe_mac_X550 &&
7728 hw->mac.type != ixgbe_mac_X550EM_x &&
7729 hw->mac.type != ixgbe_mac_X550EM_a) {
7733 ctrl = IXGBE_READ_REG(hw, IXGBE_VT_CTL);
7734 ctrl &= ~IXGBE_VT_CTL_POOLING_MODE_MASK;
7736 ctrl |= IXGBE_VT_CTL_POOLING_MODE_ETAG;
7737 IXGBE_WRITE_REG(hw, IXGBE_VT_CTL, ctrl);
7742 /* Enable l2 tunnel forwarding */
7744 ixgbe_dev_l2_tunnel_forwarding_enable
7745 (struct rte_eth_dev *dev,
7746 enum rte_eth_tunnel_type l2_tunnel_type)
7748 struct ixgbe_l2_tn_info *l2_tn_info =
7749 IXGBE_DEV_PRIVATE_TO_L2_TN_INFO(dev->data->dev_private);
7752 switch (l2_tunnel_type) {
7753 case RTE_L2_TUNNEL_TYPE_E_TAG:
7754 l2_tn_info->e_tag_fwd_en = TRUE;
7755 ret = ixgbe_e_tag_forwarding_en_dis(dev, 1);
7758 PMD_DRV_LOG(ERR, "Invalid tunnel type");
7766 /* Disable l2 tunnel forwarding */
7768 ixgbe_dev_l2_tunnel_forwarding_disable
7769 (struct rte_eth_dev *dev,
7770 enum rte_eth_tunnel_type l2_tunnel_type)
7772 struct ixgbe_l2_tn_info *l2_tn_info =
7773 IXGBE_DEV_PRIVATE_TO_L2_TN_INFO(dev->data->dev_private);
7776 switch (l2_tunnel_type) {
7777 case RTE_L2_TUNNEL_TYPE_E_TAG:
7778 l2_tn_info->e_tag_fwd_en = FALSE;
7779 ret = ixgbe_e_tag_forwarding_en_dis(dev, 0);
7782 PMD_DRV_LOG(ERR, "Invalid tunnel type");
7791 ixgbe_e_tag_insertion_en_dis(struct rte_eth_dev *dev,
7792 struct rte_eth_l2_tunnel_conf *l2_tunnel,
7795 struct rte_pci_device *pci_dev = IXGBE_DEV_TO_PCI(dev);
7797 uint32_t vmtir, vmvir;
7798 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7800 if (l2_tunnel->vf_id >= pci_dev->max_vfs) {
7802 "VF id %u should be less than %u",
7808 if (hw->mac.type != ixgbe_mac_X550 &&
7809 hw->mac.type != ixgbe_mac_X550EM_x &&
7810 hw->mac.type != ixgbe_mac_X550EM_a) {
7815 vmtir = l2_tunnel->tunnel_id;
7819 IXGBE_WRITE_REG(hw, IXGBE_VMTIR(l2_tunnel->vf_id), vmtir);
7821 vmvir = IXGBE_READ_REG(hw, IXGBE_VMVIR(l2_tunnel->vf_id));
7822 vmvir &= ~IXGBE_VMVIR_TAGA_MASK;
7824 vmvir |= IXGBE_VMVIR_TAGA_ETAG_INSERT;
7825 IXGBE_WRITE_REG(hw, IXGBE_VMVIR(l2_tunnel->vf_id), vmvir);
7830 /* Enable l2 tunnel tag insertion */
7832 ixgbe_dev_l2_tunnel_insertion_enable(struct rte_eth_dev *dev,
7833 struct rte_eth_l2_tunnel_conf *l2_tunnel)
7837 switch (l2_tunnel->l2_tunnel_type) {
7838 case RTE_L2_TUNNEL_TYPE_E_TAG:
7839 ret = ixgbe_e_tag_insertion_en_dis(dev, l2_tunnel, 1);
7842 PMD_DRV_LOG(ERR, "Invalid tunnel type");
7850 /* Disable l2 tunnel tag insertion */
7852 ixgbe_dev_l2_tunnel_insertion_disable
7853 (struct rte_eth_dev *dev,
7854 struct rte_eth_l2_tunnel_conf *l2_tunnel)
7858 switch (l2_tunnel->l2_tunnel_type) {
7859 case RTE_L2_TUNNEL_TYPE_E_TAG:
7860 ret = ixgbe_e_tag_insertion_en_dis(dev, l2_tunnel, 0);
7863 PMD_DRV_LOG(ERR, "Invalid tunnel type");
7872 ixgbe_e_tag_stripping_en_dis(struct rte_eth_dev *dev,
7877 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7879 if (hw->mac.type != ixgbe_mac_X550 &&
7880 hw->mac.type != ixgbe_mac_X550EM_x &&
7881 hw->mac.type != ixgbe_mac_X550EM_a) {
7885 qde = IXGBE_READ_REG(hw, IXGBE_QDE);
7887 qde |= IXGBE_QDE_STRIP_TAG;
7889 qde &= ~IXGBE_QDE_STRIP_TAG;
7890 qde &= ~IXGBE_QDE_READ;
7891 qde |= IXGBE_QDE_WRITE;
7892 IXGBE_WRITE_REG(hw, IXGBE_QDE, qde);
7897 /* Enable l2 tunnel tag stripping */
7899 ixgbe_dev_l2_tunnel_stripping_enable
7900 (struct rte_eth_dev *dev,
7901 enum rte_eth_tunnel_type l2_tunnel_type)
7905 switch (l2_tunnel_type) {
7906 case RTE_L2_TUNNEL_TYPE_E_TAG:
7907 ret = ixgbe_e_tag_stripping_en_dis(dev, 1);
7910 PMD_DRV_LOG(ERR, "Invalid tunnel type");
7918 /* Disable l2 tunnel tag stripping */
7920 ixgbe_dev_l2_tunnel_stripping_disable
7921 (struct rte_eth_dev *dev,
7922 enum rte_eth_tunnel_type l2_tunnel_type)
7926 switch (l2_tunnel_type) {
7927 case RTE_L2_TUNNEL_TYPE_E_TAG:
7928 ret = ixgbe_e_tag_stripping_en_dis(dev, 0);
7931 PMD_DRV_LOG(ERR, "Invalid tunnel type");
7939 /* Enable/disable l2 tunnel offload functions */
7941 ixgbe_dev_l2_tunnel_offload_set
7942 (struct rte_eth_dev *dev,
7943 struct rte_eth_l2_tunnel_conf *l2_tunnel,
7949 if (l2_tunnel == NULL)
7953 if (mask & ETH_L2_TUNNEL_ENABLE_MASK) {
7955 ret = ixgbe_dev_l2_tunnel_enable(
7957 l2_tunnel->l2_tunnel_type);
7959 ret = ixgbe_dev_l2_tunnel_disable(
7961 l2_tunnel->l2_tunnel_type);
7964 if (mask & ETH_L2_TUNNEL_INSERTION_MASK) {
7966 ret = ixgbe_dev_l2_tunnel_insertion_enable(
7970 ret = ixgbe_dev_l2_tunnel_insertion_disable(
7975 if (mask & ETH_L2_TUNNEL_STRIPPING_MASK) {
7977 ret = ixgbe_dev_l2_tunnel_stripping_enable(
7979 l2_tunnel->l2_tunnel_type);
7981 ret = ixgbe_dev_l2_tunnel_stripping_disable(
7983 l2_tunnel->l2_tunnel_type);
7986 if (mask & ETH_L2_TUNNEL_FORWARDING_MASK) {
7988 ret = ixgbe_dev_l2_tunnel_forwarding_enable(
7990 l2_tunnel->l2_tunnel_type);
7992 ret = ixgbe_dev_l2_tunnel_forwarding_disable(
7994 l2_tunnel->l2_tunnel_type);
8001 ixgbe_update_vxlan_port(struct ixgbe_hw *hw,
8004 IXGBE_WRITE_REG(hw, IXGBE_VXLANCTRL, port);
8005 IXGBE_WRITE_FLUSH(hw);
8010 /* There's only one register for VxLAN UDP port.
8011 * So, we cannot add several ports. Will update it.
8014 ixgbe_add_vxlan_port(struct ixgbe_hw *hw,
8018 PMD_DRV_LOG(ERR, "Add VxLAN port 0 is not allowed.");
8022 return ixgbe_update_vxlan_port(hw, port);
8025 /* We cannot delete the VxLAN port. For there's a register for VxLAN
8026 * UDP port, it must have a value.
8027 * So, will reset it to the original value 0.
8030 ixgbe_del_vxlan_port(struct ixgbe_hw *hw,
8035 cur_port = (uint16_t)IXGBE_READ_REG(hw, IXGBE_VXLANCTRL);
8037 if (cur_port != port) {
8038 PMD_DRV_LOG(ERR, "Port %u does not exist.", port);
8042 return ixgbe_update_vxlan_port(hw, 0);
8045 /* Add UDP tunneling port */
8047 ixgbe_dev_udp_tunnel_port_add(struct rte_eth_dev *dev,
8048 struct rte_eth_udp_tunnel *udp_tunnel)
8051 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8053 if (hw->mac.type != ixgbe_mac_X550 &&
8054 hw->mac.type != ixgbe_mac_X550EM_x &&
8055 hw->mac.type != ixgbe_mac_X550EM_a) {
8059 if (udp_tunnel == NULL)
8062 switch (udp_tunnel->prot_type) {
8063 case RTE_TUNNEL_TYPE_VXLAN:
8064 ret = ixgbe_add_vxlan_port(hw, udp_tunnel->udp_port);
8067 case RTE_TUNNEL_TYPE_GENEVE:
8068 case RTE_TUNNEL_TYPE_TEREDO:
8069 PMD_DRV_LOG(ERR, "Tunnel type is not supported now.");
8074 PMD_DRV_LOG(ERR, "Invalid tunnel type");
8082 /* Remove UDP tunneling port */
8084 ixgbe_dev_udp_tunnel_port_del(struct rte_eth_dev *dev,
8085 struct rte_eth_udp_tunnel *udp_tunnel)
8088 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8090 if (hw->mac.type != ixgbe_mac_X550 &&
8091 hw->mac.type != ixgbe_mac_X550EM_x &&
8092 hw->mac.type != ixgbe_mac_X550EM_a) {
8096 if (udp_tunnel == NULL)
8099 switch (udp_tunnel->prot_type) {
8100 case RTE_TUNNEL_TYPE_VXLAN:
8101 ret = ixgbe_del_vxlan_port(hw, udp_tunnel->udp_port);
8103 case RTE_TUNNEL_TYPE_GENEVE:
8104 case RTE_TUNNEL_TYPE_TEREDO:
8105 PMD_DRV_LOG(ERR, "Tunnel type is not supported now.");
8109 PMD_DRV_LOG(ERR, "Invalid tunnel type");
8118 ixgbevf_dev_allmulticast_enable(struct rte_eth_dev *dev)
8120 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8122 hw->mac.ops.update_xcast_mode(hw, IXGBEVF_XCAST_MODE_ALLMULTI);
8126 ixgbevf_dev_allmulticast_disable(struct rte_eth_dev *dev)
8128 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8130 hw->mac.ops.update_xcast_mode(hw, IXGBEVF_XCAST_MODE_NONE);
8133 static void ixgbevf_mbx_process(struct rte_eth_dev *dev)
8135 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8138 if (ixgbe_read_mbx(hw, &in_msg, 1, 0))
8141 /* PF reset VF event */
8142 if (in_msg == IXGBE_PF_CONTROL_MSG)
8143 _rte_eth_dev_callback_process(dev, RTE_ETH_EVENT_INTR_RESET, NULL);
8147 ixgbevf_dev_interrupt_get_status(struct rte_eth_dev *dev)
8150 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8151 struct ixgbe_interrupt *intr =
8152 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
8153 ixgbevf_intr_disable(hw);
8155 /* read-on-clear nic registers here */
8156 eicr = IXGBE_READ_REG(hw, IXGBE_VTEICR);
8159 /* only one misc vector supported - mailbox */
8160 eicr &= IXGBE_VTEICR_MASK;
8161 if (eicr == IXGBE_MISC_VEC_ID)
8162 intr->flags |= IXGBE_FLAG_MAILBOX;
8168 ixgbevf_dev_interrupt_action(struct rte_eth_dev *dev)
8170 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8171 struct ixgbe_interrupt *intr =
8172 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
8174 if (intr->flags & IXGBE_FLAG_MAILBOX) {
8175 ixgbevf_mbx_process(dev);
8176 intr->flags &= ~IXGBE_FLAG_MAILBOX;
8179 ixgbevf_intr_enable(hw);
8185 ixgbevf_dev_interrupt_handler(__rte_unused struct rte_intr_handle *handle,
8188 struct rte_eth_dev *dev = (struct rte_eth_dev *)param;
8190 ixgbevf_dev_interrupt_get_status(dev);
8191 ixgbevf_dev_interrupt_action(dev);
8195 * ixgbe_disable_sec_tx_path_generic - Stops the transmit data path
8196 * @hw: pointer to hardware structure
8198 * Stops the transmit data path and waits for the HW to internally empty
8199 * the Tx security block
8201 int ixgbe_disable_sec_tx_path_generic(struct ixgbe_hw *hw)
8203 #define IXGBE_MAX_SECTX_POLL 40
8208 sectxreg = IXGBE_READ_REG(hw, IXGBE_SECTXCTRL);
8209 sectxreg |= IXGBE_SECTXCTRL_TX_DIS;
8210 IXGBE_WRITE_REG(hw, IXGBE_SECTXCTRL, sectxreg);
8211 for (i = 0; i < IXGBE_MAX_SECTX_POLL; i++) {
8212 sectxreg = IXGBE_READ_REG(hw, IXGBE_SECTXSTAT);
8213 if (sectxreg & IXGBE_SECTXSTAT_SECTX_RDY)
8215 /* Use interrupt-safe sleep just in case */
8219 /* For informational purposes only */
8220 if (i >= IXGBE_MAX_SECTX_POLL)
8221 PMD_DRV_LOG(DEBUG, "Tx unit being enabled before security "
8222 "path fully disabled. Continuing with init.");
8224 return IXGBE_SUCCESS;
8228 * ixgbe_enable_sec_tx_path_generic - Enables the transmit data path
8229 * @hw: pointer to hardware structure
8231 * Enables the transmit data path.
8233 int ixgbe_enable_sec_tx_path_generic(struct ixgbe_hw *hw)
8237 sectxreg = IXGBE_READ_REG(hw, IXGBE_SECTXCTRL);
8238 sectxreg &= ~IXGBE_SECTXCTRL_TX_DIS;
8239 IXGBE_WRITE_REG(hw, IXGBE_SECTXCTRL, sectxreg);
8240 IXGBE_WRITE_FLUSH(hw);
8242 return IXGBE_SUCCESS;
8246 rte_pmd_ixgbe_macsec_enable(uint8_t port, uint8_t en, uint8_t rp)
8248 struct ixgbe_hw *hw;
8249 struct rte_eth_dev *dev;
8252 RTE_ETH_VALID_PORTID_OR_ERR_RET(port, -ENODEV);
8254 dev = &rte_eth_devices[port];
8256 if (!is_device_supported(dev, &rte_ixgbe_pmd))
8259 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8261 /* Stop the data paths */
8262 if (ixgbe_disable_sec_rx_path(hw) != IXGBE_SUCCESS)
8266 * As no ixgbe_disable_sec_rx_path equivalent is
8267 * implemented for tx in the base code, and we are
8268 * not allowed to modify the base code in DPDK, so
8269 * just call the hand-written one directly for now.
8270 * The hardware support has been checked by
8271 * ixgbe_disable_sec_rx_path().
8273 ixgbe_disable_sec_tx_path_generic(hw);
8275 /* Enable Ethernet CRC (required by MACsec offload) */
8276 ctrl = IXGBE_READ_REG(hw, IXGBE_HLREG0);
8277 ctrl |= IXGBE_HLREG0_TXCRCEN | IXGBE_HLREG0_RXCRCSTRP;
8278 IXGBE_WRITE_REG(hw, IXGBE_HLREG0, ctrl);
8280 /* Enable the TX and RX crypto engines */
8281 ctrl = IXGBE_READ_REG(hw, IXGBE_SECTXCTRL);
8282 ctrl &= ~IXGBE_SECTXCTRL_SECTX_DIS;
8283 IXGBE_WRITE_REG(hw, IXGBE_SECTXCTRL, ctrl);
8285 ctrl = IXGBE_READ_REG(hw, IXGBE_SECRXCTRL);
8286 ctrl &= ~IXGBE_SECRXCTRL_SECRX_DIS;
8287 IXGBE_WRITE_REG(hw, IXGBE_SECRXCTRL, ctrl);
8289 ctrl = IXGBE_READ_REG(hw, IXGBE_SECTXMINIFG);
8290 ctrl &= ~IXGBE_SECTX_MINSECIFG_MASK;
8292 IXGBE_WRITE_REG(hw, IXGBE_SECTXMINIFG, ctrl);
8294 /* Enable SA lookup */
8295 ctrl = IXGBE_READ_REG(hw, IXGBE_LSECTXCTRL);
8296 ctrl &= ~IXGBE_LSECTXCTRL_EN_MASK;
8297 ctrl |= en ? IXGBE_LSECTXCTRL_AUTH_ENCRYPT :
8298 IXGBE_LSECTXCTRL_AUTH;
8299 ctrl |= IXGBE_LSECTXCTRL_AISCI;
8300 ctrl &= ~IXGBE_LSECTXCTRL_PNTHRSH_MASK;
8301 ctrl |= IXGBE_MACSEC_PNTHRSH & IXGBE_LSECTXCTRL_PNTHRSH_MASK;
8302 IXGBE_WRITE_REG(hw, IXGBE_LSECTXCTRL, ctrl);
8304 ctrl = IXGBE_READ_REG(hw, IXGBE_LSECRXCTRL);
8305 ctrl &= ~IXGBE_LSECRXCTRL_EN_MASK;
8306 ctrl |= IXGBE_LSECRXCTRL_STRICT << IXGBE_LSECRXCTRL_EN_SHIFT;
8307 ctrl &= ~IXGBE_LSECRXCTRL_PLSH;
8309 ctrl |= IXGBE_LSECRXCTRL_RP;
8311 ctrl &= ~IXGBE_LSECRXCTRL_RP;
8312 IXGBE_WRITE_REG(hw, IXGBE_LSECRXCTRL, ctrl);
8314 /* Start the data paths */
8315 ixgbe_enable_sec_rx_path(hw);
8318 * As no ixgbe_enable_sec_rx_path equivalent is
8319 * implemented for tx in the base code, and we are
8320 * not allowed to modify the base code in DPDK, so
8321 * just call the hand-written one directly for now.
8323 ixgbe_enable_sec_tx_path_generic(hw);
8329 rte_pmd_ixgbe_macsec_disable(uint8_t port)
8331 struct ixgbe_hw *hw;
8332 struct rte_eth_dev *dev;
8335 RTE_ETH_VALID_PORTID_OR_ERR_RET(port, -ENODEV);
8337 dev = &rte_eth_devices[port];
8339 if (!is_device_supported(dev, &rte_ixgbe_pmd))
8342 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8344 /* Stop the data paths */
8345 if (ixgbe_disable_sec_rx_path(hw) != IXGBE_SUCCESS)
8349 * As no ixgbe_disable_sec_rx_path equivalent is
8350 * implemented for tx in the base code, and we are
8351 * not allowed to modify the base code in DPDK, so
8352 * just call the hand-written one directly for now.
8353 * The hardware support has been checked by
8354 * ixgbe_disable_sec_rx_path().
8356 ixgbe_disable_sec_tx_path_generic(hw);
8358 /* Disable the TX and RX crypto engines */
8359 ctrl = IXGBE_READ_REG(hw, IXGBE_SECTXCTRL);
8360 ctrl |= IXGBE_SECTXCTRL_SECTX_DIS;
8361 IXGBE_WRITE_REG(hw, IXGBE_SECTXCTRL, ctrl);
8363 ctrl = IXGBE_READ_REG(hw, IXGBE_SECRXCTRL);
8364 ctrl |= IXGBE_SECRXCTRL_SECRX_DIS;
8365 IXGBE_WRITE_REG(hw, IXGBE_SECRXCTRL, ctrl);
8367 /* Disable SA lookup */
8368 ctrl = IXGBE_READ_REG(hw, IXGBE_LSECTXCTRL);
8369 ctrl &= ~IXGBE_LSECTXCTRL_EN_MASK;
8370 ctrl |= IXGBE_LSECTXCTRL_DISABLE;
8371 IXGBE_WRITE_REG(hw, IXGBE_LSECTXCTRL, ctrl);
8373 ctrl = IXGBE_READ_REG(hw, IXGBE_LSECRXCTRL);
8374 ctrl &= ~IXGBE_LSECRXCTRL_EN_MASK;
8375 ctrl |= IXGBE_LSECRXCTRL_DISABLE << IXGBE_LSECRXCTRL_EN_SHIFT;
8376 IXGBE_WRITE_REG(hw, IXGBE_LSECRXCTRL, ctrl);
8378 /* Start the data paths */
8379 ixgbe_enable_sec_rx_path(hw);
8382 * As no ixgbe_enable_sec_rx_path equivalent is
8383 * implemented for tx in the base code, and we are
8384 * not allowed to modify the base code in DPDK, so
8385 * just call the hand-written one directly for now.
8387 ixgbe_enable_sec_tx_path_generic(hw);
8393 rte_pmd_ixgbe_macsec_config_txsc(uint8_t port, uint8_t *mac)
8395 struct ixgbe_hw *hw;
8396 struct rte_eth_dev *dev;
8399 RTE_ETH_VALID_PORTID_OR_ERR_RET(port, -ENODEV);
8401 dev = &rte_eth_devices[port];
8403 if (!is_device_supported(dev, &rte_ixgbe_pmd))
8406 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8408 ctrl = mac[0] | (mac[1] << 8) | (mac[2] << 16) | (mac[3] << 24);
8409 IXGBE_WRITE_REG(hw, IXGBE_LSECTXSCL, ctrl);
8411 ctrl = mac[4] | (mac[5] << 8);
8412 IXGBE_WRITE_REG(hw, IXGBE_LSECTXSCH, ctrl);
8418 rte_pmd_ixgbe_macsec_config_rxsc(uint8_t port, uint8_t *mac, uint16_t pi)
8420 struct ixgbe_hw *hw;
8421 struct rte_eth_dev *dev;
8424 RTE_ETH_VALID_PORTID_OR_ERR_RET(port, -ENODEV);
8426 dev = &rte_eth_devices[port];
8428 if (!is_device_supported(dev, &rte_ixgbe_pmd))
8431 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8433 ctrl = mac[0] | (mac[1] << 8) | (mac[2] << 16) | (mac[3] << 24);
8434 IXGBE_WRITE_REG(hw, IXGBE_LSECRXSCL, ctrl);
8436 pi = rte_cpu_to_be_16(pi);
8437 ctrl = mac[4] | (mac[5] << 8) | (pi << 16);
8438 IXGBE_WRITE_REG(hw, IXGBE_LSECRXSCH, ctrl);
8444 rte_pmd_ixgbe_macsec_select_txsa(uint8_t port, uint8_t idx, uint8_t an,
8445 uint32_t pn, uint8_t *key)
8447 struct ixgbe_hw *hw;
8448 struct rte_eth_dev *dev;
8451 RTE_ETH_VALID_PORTID_OR_ERR_RET(port, -ENODEV);
8453 dev = &rte_eth_devices[port];
8455 if (!is_device_supported(dev, &rte_ixgbe_pmd))
8458 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8460 if (idx != 0 && idx != 1)
8466 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8468 /* Set the PN and key */
8469 pn = rte_cpu_to_be_32(pn);
8471 IXGBE_WRITE_REG(hw, IXGBE_LSECTXPN0, pn);
8473 for (i = 0; i < 4; i++) {
8474 ctrl = (key[i * 4 + 0] << 0) |
8475 (key[i * 4 + 1] << 8) |
8476 (key[i * 4 + 2] << 16) |
8477 (key[i * 4 + 3] << 24);
8478 IXGBE_WRITE_REG(hw, IXGBE_LSECTXKEY0(i), ctrl);
8481 IXGBE_WRITE_REG(hw, IXGBE_LSECTXPN1, pn);
8483 for (i = 0; i < 4; i++) {
8484 ctrl = (key[i * 4 + 0] << 0) |
8485 (key[i * 4 + 1] << 8) |
8486 (key[i * 4 + 2] << 16) |
8487 (key[i * 4 + 3] << 24);
8488 IXGBE_WRITE_REG(hw, IXGBE_LSECTXKEY1(i), ctrl);
8492 /* Set AN and select the SA */
8493 ctrl = (an << idx * 2) | (idx << 4);
8494 IXGBE_WRITE_REG(hw, IXGBE_LSECTXSA, ctrl);
8500 rte_pmd_ixgbe_macsec_select_rxsa(uint8_t port, uint8_t idx, uint8_t an,
8501 uint32_t pn, uint8_t *key)
8503 struct ixgbe_hw *hw;
8504 struct rte_eth_dev *dev;
8507 RTE_ETH_VALID_PORTID_OR_ERR_RET(port, -ENODEV);
8509 dev = &rte_eth_devices[port];
8511 if (!is_device_supported(dev, &rte_ixgbe_pmd))
8514 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8516 if (idx != 0 && idx != 1)
8523 pn = rte_cpu_to_be_32(pn);
8524 IXGBE_WRITE_REG(hw, IXGBE_LSECRXPN(idx), pn);
8527 for (i = 0; i < 4; i++) {
8528 ctrl = (key[i * 4 + 0] << 0) |
8529 (key[i * 4 + 1] << 8) |
8530 (key[i * 4 + 2] << 16) |
8531 (key[i * 4 + 3] << 24);
8532 IXGBE_WRITE_REG(hw, IXGBE_LSECRXKEY(idx, i), ctrl);
8535 /* Set the AN and validate the SA */
8536 ctrl = an | (1 << 2);
8537 IXGBE_WRITE_REG(hw, IXGBE_LSECRXSA(idx), ctrl);
8542 /* restore n-tuple filter */
8544 ixgbe_ntuple_filter_restore(struct rte_eth_dev *dev)
8546 struct ixgbe_filter_info *filter_info =
8547 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
8548 struct ixgbe_5tuple_filter *node;
8550 TAILQ_FOREACH(node, &filter_info->fivetuple_list, entries) {
8551 ixgbe_inject_5tuple_filter(dev, node);
8555 /* restore ethernet type filter */
8557 ixgbe_ethertype_filter_restore(struct rte_eth_dev *dev)
8559 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8560 struct ixgbe_filter_info *filter_info =
8561 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
8564 for (i = 0; i < IXGBE_MAX_ETQF_FILTERS; i++) {
8565 if (filter_info->ethertype_mask & (1 << i)) {
8566 IXGBE_WRITE_REG(hw, IXGBE_ETQF(i),
8567 filter_info->ethertype_filters[i].etqf);
8568 IXGBE_WRITE_REG(hw, IXGBE_ETQS(i),
8569 filter_info->ethertype_filters[i].etqs);
8570 IXGBE_WRITE_FLUSH(hw);
8575 /* restore SYN filter */
8577 ixgbe_syn_filter_restore(struct rte_eth_dev *dev)
8579 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8580 struct ixgbe_filter_info *filter_info =
8581 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
8584 synqf = filter_info->syn_info;
8586 if (synqf & IXGBE_SYN_FILTER_ENABLE) {
8587 IXGBE_WRITE_REG(hw, IXGBE_SYNQF, synqf);
8588 IXGBE_WRITE_FLUSH(hw);
8592 /* restore L2 tunnel filter */
8594 ixgbe_l2_tn_filter_restore(struct rte_eth_dev *dev)
8596 struct ixgbe_l2_tn_info *l2_tn_info =
8597 IXGBE_DEV_PRIVATE_TO_L2_TN_INFO(dev->data->dev_private);
8598 struct ixgbe_l2_tn_filter *node;
8599 struct rte_eth_l2_tunnel_conf l2_tn_conf;
8601 TAILQ_FOREACH(node, &l2_tn_info->l2_tn_list, entries) {
8602 l2_tn_conf.l2_tunnel_type = node->key.l2_tn_type;
8603 l2_tn_conf.tunnel_id = node->key.tn_id;
8604 l2_tn_conf.pool = node->pool;
8605 (void)ixgbe_dev_l2_tunnel_filter_add(dev, &l2_tn_conf, TRUE);
8610 ixgbe_filter_restore(struct rte_eth_dev *dev)
8612 ixgbe_ntuple_filter_restore(dev);
8613 ixgbe_ethertype_filter_restore(dev);
8614 ixgbe_syn_filter_restore(dev);
8615 ixgbe_fdir_filter_restore(dev);
8616 ixgbe_l2_tn_filter_restore(dev);
8622 ixgbe_l2_tunnel_conf(struct rte_eth_dev *dev)
8624 struct ixgbe_l2_tn_info *l2_tn_info =
8625 IXGBE_DEV_PRIVATE_TO_L2_TN_INFO(dev->data->dev_private);
8626 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8628 if (l2_tn_info->e_tag_en)
8629 (void)ixgbe_e_tag_enable(hw);
8631 if (l2_tn_info->e_tag_fwd_en)
8632 (void)ixgbe_e_tag_forwarding_en_dis(dev, 1);
8634 (void)ixgbe_update_e_tag_eth_type(hw, l2_tn_info->e_tag_ether_type);
8637 /* remove all the n-tuple filters */
8639 ixgbe_clear_all_ntuple_filter(struct rte_eth_dev *dev)
8641 struct ixgbe_filter_info *filter_info =
8642 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
8643 struct ixgbe_5tuple_filter *p_5tuple;
8645 while ((p_5tuple = TAILQ_FIRST(&filter_info->fivetuple_list)))
8646 ixgbe_remove_5tuple_filter(dev, p_5tuple);
8649 /* remove all the ether type filters */
8651 ixgbe_clear_all_ethertype_filter(struct rte_eth_dev *dev)
8653 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8654 struct ixgbe_filter_info *filter_info =
8655 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
8658 for (i = 0; i < IXGBE_MAX_ETQF_FILTERS; i++) {
8659 if (filter_info->ethertype_mask & (1 << i) &&
8660 !filter_info->ethertype_filters[i].conf) {
8661 (void)ixgbe_ethertype_filter_remove(filter_info,
8663 IXGBE_WRITE_REG(hw, IXGBE_ETQF(i), 0);
8664 IXGBE_WRITE_REG(hw, IXGBE_ETQS(i), 0);
8665 IXGBE_WRITE_FLUSH(hw);
8670 /* remove the SYN filter */
8672 ixgbe_clear_syn_filter(struct rte_eth_dev *dev)
8674 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8675 struct ixgbe_filter_info *filter_info =
8676 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
8678 if (filter_info->syn_info & IXGBE_SYN_FILTER_ENABLE) {
8679 filter_info->syn_info = 0;
8681 IXGBE_WRITE_REG(hw, IXGBE_SYNQF, 0);
8682 IXGBE_WRITE_FLUSH(hw);
8686 /* remove all the L2 tunnel filters */
8688 ixgbe_clear_all_l2_tn_filter(struct rte_eth_dev *dev)
8690 struct ixgbe_l2_tn_info *l2_tn_info =
8691 IXGBE_DEV_PRIVATE_TO_L2_TN_INFO(dev->data->dev_private);
8692 struct ixgbe_l2_tn_filter *l2_tn_filter;
8693 struct rte_eth_l2_tunnel_conf l2_tn_conf;
8696 while ((l2_tn_filter = TAILQ_FIRST(&l2_tn_info->l2_tn_list))) {
8697 l2_tn_conf.l2_tunnel_type = l2_tn_filter->key.l2_tn_type;
8698 l2_tn_conf.tunnel_id = l2_tn_filter->key.tn_id;
8699 l2_tn_conf.pool = l2_tn_filter->pool;
8700 ret = ixgbe_dev_l2_tunnel_filter_del(dev, &l2_tn_conf);
8709 rte_pmd_ixgbe_set_tc_bw_alloc(uint8_t port,
8713 struct rte_eth_dev *dev;
8714 struct ixgbe_dcb_config *dcb_config;
8715 struct ixgbe_dcb_tc_config *tc;
8716 struct rte_eth_conf *eth_conf;
8717 struct ixgbe_bw_conf *bw_conf;
8722 RTE_ETH_VALID_PORTID_OR_ERR_RET(port, -ENODEV);
8724 dev = &rte_eth_devices[port];
8726 if (!is_device_supported(dev, &rte_ixgbe_pmd))
8729 if (tc_num > IXGBE_DCB_MAX_TRAFFIC_CLASS) {
8730 PMD_DRV_LOG(ERR, "TCs should be no more than %d.",
8731 IXGBE_DCB_MAX_TRAFFIC_CLASS);
8735 dcb_config = IXGBE_DEV_PRIVATE_TO_DCB_CFG(dev->data->dev_private);
8736 bw_conf = IXGBE_DEV_PRIVATE_TO_BW_CONF(dev->data->dev_private);
8737 eth_conf = &dev->data->dev_conf;
8739 if (eth_conf->txmode.mq_mode == ETH_MQ_TX_DCB) {
8740 nb_tcs = eth_conf->tx_adv_conf.dcb_tx_conf.nb_tcs;
8741 } else if (eth_conf->txmode.mq_mode == ETH_MQ_TX_VMDQ_DCB) {
8742 if (eth_conf->tx_adv_conf.vmdq_dcb_tx_conf.nb_queue_pools ==
8751 if (nb_tcs != tc_num) {
8753 "Weight should be set for all %d enabled TCs.",
8759 for (i = 0; i < nb_tcs; i++)
8760 sum += bw_weight[i];
8763 "The summary of the TC weight should be 100.");
8767 for (i = 0; i < nb_tcs; i++) {
8768 tc = &dcb_config->tc_config[i];
8769 tc->path[IXGBE_DCB_TX_CONFIG].bwg_percent = bw_weight[i];
8771 for (; i < IXGBE_DCB_MAX_TRAFFIC_CLASS; i++) {
8772 tc = &dcb_config->tc_config[i];
8773 tc->path[IXGBE_DCB_TX_CONFIG].bwg_percent = 0;
8776 bw_conf->tc_num = nb_tcs;
8781 RTE_PMD_REGISTER_PCI(net_ixgbe, rte_ixgbe_pmd.pci_drv);
8782 RTE_PMD_REGISTER_PCI_TABLE(net_ixgbe, pci_id_ixgbe_map);
8783 RTE_PMD_REGISTER_KMOD_DEP(net_ixgbe, "* igb_uio | uio_pci_generic | vfio");
8784 RTE_PMD_REGISTER_PCI(net_ixgbe_vf, rte_ixgbevf_pmd.pci_drv);
8785 RTE_PMD_REGISTER_PCI_TABLE(net_ixgbe_vf, pci_id_ixgbevf_map);
8786 RTE_PMD_REGISTER_KMOD_DEP(net_ixgbe_vf, "* igb_uio | vfio");