4 * Copyright(c) 2010-2015 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>
64 #include "ixgbe_logs.h"
65 #include "base/ixgbe_api.h"
66 #include "base/ixgbe_vf.h"
67 #include "base/ixgbe_common.h"
68 #include "ixgbe_ethdev.h"
69 #include "ixgbe_bypass.h"
70 #include "ixgbe_rxtx.h"
71 #include "base/ixgbe_type.h"
72 #include "base/ixgbe_phy.h"
73 #include "ixgbe_regs.h"
76 * High threshold controlling when to start sending XOFF frames. Must be at
77 * least 8 bytes less than receive packet buffer size. This value is in units
80 #define IXGBE_FC_HI 0x80
83 * Low threshold controlling when to start sending XON frames. This value is
84 * in units of 1024 bytes.
86 #define IXGBE_FC_LO 0x40
88 /* Default minimum inter-interrupt interval for EITR configuration */
89 #define IXGBE_MIN_INTER_INTERRUPT_INTERVAL_DEFAULT 0x79E
91 /* Timer value included in XOFF frames. */
92 #define IXGBE_FC_PAUSE 0x680
94 #define IXGBE_LINK_DOWN_CHECK_TIMEOUT 4000 /* ms */
95 #define IXGBE_LINK_UP_CHECK_TIMEOUT 1000 /* ms */
96 #define IXGBE_VMDQ_NUM_UC_MAC 4096 /* Maximum nb. of UC MAC addr. */
98 #define IXGBE_MMW_SIZE_DEFAULT 0x4
99 #define IXGBE_MMW_SIZE_JUMBO_FRAME 0x14
100 #define IXGBE_MAX_RING_DESC 4096 /* replicate define from rxtx */
103 * Default values for RX/TX configuration
105 #define IXGBE_DEFAULT_RX_FREE_THRESH 32
106 #define IXGBE_DEFAULT_RX_PTHRESH 8
107 #define IXGBE_DEFAULT_RX_HTHRESH 8
108 #define IXGBE_DEFAULT_RX_WTHRESH 0
110 #define IXGBE_DEFAULT_TX_FREE_THRESH 32
111 #define IXGBE_DEFAULT_TX_PTHRESH 32
112 #define IXGBE_DEFAULT_TX_HTHRESH 0
113 #define IXGBE_DEFAULT_TX_WTHRESH 0
114 #define IXGBE_DEFAULT_TX_RSBIT_THRESH 32
116 /* Bit shift and mask */
117 #define IXGBE_4_BIT_WIDTH (CHAR_BIT / 2)
118 #define IXGBE_4_BIT_MASK RTE_LEN2MASK(IXGBE_4_BIT_WIDTH, uint8_t)
119 #define IXGBE_8_BIT_WIDTH CHAR_BIT
120 #define IXGBE_8_BIT_MASK UINT8_MAX
122 #define IXGBEVF_PMD_NAME "rte_ixgbevf_pmd" /* PMD name */
124 #define IXGBE_QUEUE_STAT_COUNTERS (sizeof(hw_stats->qprc) / sizeof(hw_stats->qprc[0]))
126 #define IXGBE_HKEY_MAX_INDEX 10
128 /* Additional timesync values. */
129 #define NSEC_PER_SEC 1000000000L
130 #define IXGBE_INCVAL_10GB 0x66666666
131 #define IXGBE_INCVAL_1GB 0x40000000
132 #define IXGBE_INCVAL_100 0x50000000
133 #define IXGBE_INCVAL_SHIFT_10GB 28
134 #define IXGBE_INCVAL_SHIFT_1GB 24
135 #define IXGBE_INCVAL_SHIFT_100 21
136 #define IXGBE_INCVAL_SHIFT_82599 7
137 #define IXGBE_INCPER_SHIFT_82599 24
139 #define IXGBE_CYCLECOUNTER_MASK 0xffffffffffffffffULL
141 static int eth_ixgbe_dev_init(struct rte_eth_dev *eth_dev);
142 static int eth_ixgbe_dev_uninit(struct rte_eth_dev *eth_dev);
143 static int ixgbe_dev_configure(struct rte_eth_dev *dev);
144 static int ixgbe_dev_start(struct rte_eth_dev *dev);
145 static void ixgbe_dev_stop(struct rte_eth_dev *dev);
146 static int ixgbe_dev_set_link_up(struct rte_eth_dev *dev);
147 static int ixgbe_dev_set_link_down(struct rte_eth_dev *dev);
148 static void ixgbe_dev_close(struct rte_eth_dev *dev);
149 static void ixgbe_dev_promiscuous_enable(struct rte_eth_dev *dev);
150 static void ixgbe_dev_promiscuous_disable(struct rte_eth_dev *dev);
151 static void ixgbe_dev_allmulticast_enable(struct rte_eth_dev *dev);
152 static void ixgbe_dev_allmulticast_disable(struct rte_eth_dev *dev);
153 static int ixgbe_dev_link_update(struct rte_eth_dev *dev,
154 int wait_to_complete);
155 static void ixgbe_dev_stats_get(struct rte_eth_dev *dev,
156 struct rte_eth_stats *stats);
157 static int ixgbe_dev_xstats_get(struct rte_eth_dev *dev,
158 struct rte_eth_xstats *xstats, unsigned n);
159 static int ixgbevf_dev_xstats_get(struct rte_eth_dev *dev,
160 struct rte_eth_xstats *xstats, unsigned n);
161 static void ixgbe_dev_stats_reset(struct rte_eth_dev *dev);
162 static void ixgbe_dev_xstats_reset(struct rte_eth_dev *dev);
163 static int ixgbe_dev_queue_stats_mapping_set(struct rte_eth_dev *eth_dev,
167 static void ixgbe_dev_info_get(struct rte_eth_dev *dev,
168 struct rte_eth_dev_info *dev_info);
169 static void ixgbevf_dev_info_get(struct rte_eth_dev *dev,
170 struct rte_eth_dev_info *dev_info);
171 static int ixgbe_dev_mtu_set(struct rte_eth_dev *dev, uint16_t mtu);
173 static int ixgbe_vlan_filter_set(struct rte_eth_dev *dev,
174 uint16_t vlan_id, int on);
175 static void ixgbe_vlan_tpid_set(struct rte_eth_dev *dev, uint16_t tpid_id);
176 static void ixgbe_vlan_hw_strip_bitmap_set(struct rte_eth_dev *dev,
177 uint16_t queue, bool on);
178 static void ixgbe_vlan_strip_queue_set(struct rte_eth_dev *dev, uint16_t queue,
180 static void ixgbe_vlan_offload_set(struct rte_eth_dev *dev, int mask);
181 static void ixgbe_vlan_hw_strip_enable(struct rte_eth_dev *dev, uint16_t queue);
182 static void ixgbe_vlan_hw_strip_disable(struct rte_eth_dev *dev, uint16_t queue);
183 static void ixgbe_vlan_hw_extend_enable(struct rte_eth_dev *dev);
184 static void ixgbe_vlan_hw_extend_disable(struct rte_eth_dev *dev);
186 static int ixgbe_dev_led_on(struct rte_eth_dev *dev);
187 static int ixgbe_dev_led_off(struct rte_eth_dev *dev);
188 static int ixgbe_flow_ctrl_get(struct rte_eth_dev *dev,
189 struct rte_eth_fc_conf *fc_conf);
190 static int ixgbe_flow_ctrl_set(struct rte_eth_dev *dev,
191 struct rte_eth_fc_conf *fc_conf);
192 static int ixgbe_priority_flow_ctrl_set(struct rte_eth_dev *dev,
193 struct rte_eth_pfc_conf *pfc_conf);
194 static int ixgbe_dev_rss_reta_update(struct rte_eth_dev *dev,
195 struct rte_eth_rss_reta_entry64 *reta_conf,
197 static int ixgbe_dev_rss_reta_query(struct rte_eth_dev *dev,
198 struct rte_eth_rss_reta_entry64 *reta_conf,
200 static void ixgbe_dev_link_status_print(struct rte_eth_dev *dev);
201 static int ixgbe_dev_lsc_interrupt_setup(struct rte_eth_dev *dev);
202 static int ixgbe_dev_rxq_interrupt_setup(struct rte_eth_dev *dev);
203 static int ixgbe_dev_interrupt_get_status(struct rte_eth_dev *dev);
204 static int ixgbe_dev_interrupt_action(struct rte_eth_dev *dev);
205 static void ixgbe_dev_interrupt_handler(struct rte_intr_handle *handle,
207 static void ixgbe_dev_interrupt_delayed_handler(void *param);
208 static void ixgbe_add_rar(struct rte_eth_dev *dev, struct ether_addr *mac_addr,
209 uint32_t index, uint32_t pool);
210 static void ixgbe_remove_rar(struct rte_eth_dev *dev, uint32_t index);
211 static void ixgbe_set_default_mac_addr(struct rte_eth_dev *dev,
212 struct ether_addr *mac_addr);
213 static void ixgbe_dcb_init(struct ixgbe_hw *hw,struct ixgbe_dcb_config *dcb_config);
215 /* For Virtual Function support */
216 static int eth_ixgbevf_dev_init(struct rte_eth_dev *eth_dev);
217 static int eth_ixgbevf_dev_uninit(struct rte_eth_dev *eth_dev);
218 static int ixgbevf_dev_configure(struct rte_eth_dev *dev);
219 static int ixgbevf_dev_start(struct rte_eth_dev *dev);
220 static void ixgbevf_dev_stop(struct rte_eth_dev *dev);
221 static void ixgbevf_dev_close(struct rte_eth_dev *dev);
222 static void ixgbevf_intr_disable(struct ixgbe_hw *hw);
223 static void ixgbevf_intr_enable(struct ixgbe_hw *hw);
224 static void ixgbevf_dev_stats_get(struct rte_eth_dev *dev,
225 struct rte_eth_stats *stats);
226 static void ixgbevf_dev_stats_reset(struct rte_eth_dev *dev);
227 static int ixgbevf_vlan_filter_set(struct rte_eth_dev *dev,
228 uint16_t vlan_id, int on);
229 static void ixgbevf_vlan_strip_queue_set(struct rte_eth_dev *dev,
230 uint16_t queue, int on);
231 static void ixgbevf_vlan_offload_set(struct rte_eth_dev *dev, int mask);
232 static void ixgbevf_set_vfta_all(struct rte_eth_dev *dev, bool on);
233 static int ixgbevf_dev_rx_queue_intr_enable(struct rte_eth_dev *dev,
235 static int ixgbevf_dev_rx_queue_intr_disable(struct rte_eth_dev *dev,
237 static void ixgbevf_set_ivar_map(struct ixgbe_hw *hw, int8_t direction,
238 uint8_t queue, uint8_t msix_vector);
239 static void ixgbevf_configure_msix(struct rte_eth_dev *dev);
241 /* For Eth VMDQ APIs support */
242 static int ixgbe_uc_hash_table_set(struct rte_eth_dev *dev, struct
243 ether_addr* mac_addr,uint8_t on);
244 static int ixgbe_uc_all_hash_table_set(struct rte_eth_dev *dev,uint8_t on);
245 static int ixgbe_set_pool_rx_mode(struct rte_eth_dev *dev, uint16_t pool,
246 uint16_t rx_mask, uint8_t on);
247 static int ixgbe_set_pool_rx(struct rte_eth_dev *dev,uint16_t pool,uint8_t on);
248 static int ixgbe_set_pool_tx(struct rte_eth_dev *dev,uint16_t pool,uint8_t on);
249 static int ixgbe_set_pool_vlan_filter(struct rte_eth_dev *dev, uint16_t vlan,
250 uint64_t pool_mask,uint8_t vlan_on);
251 static int ixgbe_mirror_rule_set(struct rte_eth_dev *dev,
252 struct rte_eth_mirror_conf *mirror_conf,
253 uint8_t rule_id, uint8_t on);
254 static int ixgbe_mirror_rule_reset(struct rte_eth_dev *dev,
256 static int ixgbe_dev_rx_queue_intr_enable(struct rte_eth_dev *dev,
258 static int ixgbe_dev_rx_queue_intr_disable(struct rte_eth_dev *dev,
260 static void ixgbe_set_ivar_map(struct ixgbe_hw *hw, int8_t direction,
261 uint8_t queue, uint8_t msix_vector);
262 static void ixgbe_configure_msix(struct rte_eth_dev *dev);
264 static int ixgbe_set_queue_rate_limit(struct rte_eth_dev *dev,
265 uint16_t queue_idx, uint16_t tx_rate);
266 static int ixgbe_set_vf_rate_limit(struct rte_eth_dev *dev, uint16_t vf,
267 uint16_t tx_rate, uint64_t q_msk);
269 static void ixgbevf_add_mac_addr(struct rte_eth_dev *dev,
270 struct ether_addr *mac_addr,
271 uint32_t index, uint32_t pool);
272 static void ixgbevf_remove_mac_addr(struct rte_eth_dev *dev, uint32_t index);
273 static void ixgbevf_set_default_mac_addr(struct rte_eth_dev *dev,
274 struct ether_addr *mac_addr);
275 static int ixgbe_syn_filter_set(struct rte_eth_dev *dev,
276 struct rte_eth_syn_filter *filter,
278 static int ixgbe_syn_filter_get(struct rte_eth_dev *dev,
279 struct rte_eth_syn_filter *filter);
280 static int ixgbe_syn_filter_handle(struct rte_eth_dev *dev,
281 enum rte_filter_op filter_op,
283 static int ixgbe_add_5tuple_filter(struct rte_eth_dev *dev,
284 struct ixgbe_5tuple_filter *filter);
285 static void ixgbe_remove_5tuple_filter(struct rte_eth_dev *dev,
286 struct ixgbe_5tuple_filter *filter);
287 static int ixgbe_add_del_ntuple_filter(struct rte_eth_dev *dev,
288 struct rte_eth_ntuple_filter *filter,
290 static int ixgbe_ntuple_filter_handle(struct rte_eth_dev *dev,
291 enum rte_filter_op filter_op,
293 static int ixgbe_get_ntuple_filter(struct rte_eth_dev *dev,
294 struct rte_eth_ntuple_filter *filter);
295 static int ixgbe_add_del_ethertype_filter(struct rte_eth_dev *dev,
296 struct rte_eth_ethertype_filter *filter,
298 static int ixgbe_ethertype_filter_handle(struct rte_eth_dev *dev,
299 enum rte_filter_op filter_op,
301 static int ixgbe_get_ethertype_filter(struct rte_eth_dev *dev,
302 struct rte_eth_ethertype_filter *filter);
303 static int ixgbe_dev_filter_ctrl(struct rte_eth_dev *dev,
304 enum rte_filter_type filter_type,
305 enum rte_filter_op filter_op,
307 static int ixgbevf_dev_set_mtu(struct rte_eth_dev *dev, uint16_t mtu);
309 static int ixgbe_dev_set_mc_addr_list(struct rte_eth_dev *dev,
310 struct ether_addr *mc_addr_set,
311 uint32_t nb_mc_addr);
312 static int ixgbe_dev_get_dcb_info(struct rte_eth_dev *dev,
313 struct rte_eth_dcb_info *dcb_info);
315 static int ixgbe_get_reg_length(struct rte_eth_dev *dev);
316 static int ixgbe_get_regs(struct rte_eth_dev *dev,
317 struct rte_dev_reg_info *regs);
318 static int ixgbe_get_eeprom_length(struct rte_eth_dev *dev);
319 static int ixgbe_get_eeprom(struct rte_eth_dev *dev,
320 struct rte_dev_eeprom_info *eeprom);
321 static int ixgbe_set_eeprom(struct rte_eth_dev *dev,
322 struct rte_dev_eeprom_info *eeprom);
324 static int ixgbevf_get_reg_length(struct rte_eth_dev *dev);
325 static int ixgbevf_get_regs(struct rte_eth_dev *dev,
326 struct rte_dev_reg_info *regs);
328 static int ixgbe_timesync_enable(struct rte_eth_dev *dev);
329 static int ixgbe_timesync_disable(struct rte_eth_dev *dev);
330 static int ixgbe_timesync_read_rx_timestamp(struct rte_eth_dev *dev,
331 struct timespec *timestamp,
333 static int ixgbe_timesync_read_tx_timestamp(struct rte_eth_dev *dev,
334 struct timespec *timestamp);
335 static int ixgbe_timesync_adjust_time(struct rte_eth_dev *dev, int64_t delta);
336 static int ixgbe_timesync_read_time(struct rte_eth_dev *dev,
337 struct timespec *timestamp);
338 static int ixgbe_timesync_write_time(struct rte_eth_dev *dev,
339 const struct timespec *timestamp);
342 * Define VF Stats MACRO for Non "cleared on read" register
344 #define UPDATE_VF_STAT(reg, last, cur) \
346 uint32_t latest = IXGBE_READ_REG(hw, reg); \
347 cur += (latest - last) & UINT_MAX; \
351 #define UPDATE_VF_STAT_36BIT(lsb, msb, last, cur) \
353 u64 new_lsb = IXGBE_READ_REG(hw, lsb); \
354 u64 new_msb = IXGBE_READ_REG(hw, msb); \
355 u64 latest = ((new_msb << 32) | new_lsb); \
356 cur += (0x1000000000LL + latest - last) & 0xFFFFFFFFFLL; \
360 #define IXGBE_SET_HWSTRIP(h, q) do{\
361 uint32_t idx = (q) / (sizeof ((h)->bitmap[0]) * NBBY); \
362 uint32_t bit = (q) % (sizeof ((h)->bitmap[0]) * NBBY); \
363 (h)->bitmap[idx] |= 1 << bit;\
366 #define IXGBE_CLEAR_HWSTRIP(h, q) do{\
367 uint32_t idx = (q) / (sizeof ((h)->bitmap[0]) * NBBY); \
368 uint32_t bit = (q) % (sizeof ((h)->bitmap[0]) * NBBY); \
369 (h)->bitmap[idx] &= ~(1 << bit);\
372 #define IXGBE_GET_HWSTRIP(h, q, r) do{\
373 uint32_t idx = (q) / (sizeof ((h)->bitmap[0]) * NBBY); \
374 uint32_t bit = (q) % (sizeof ((h)->bitmap[0]) * NBBY); \
375 (r) = (h)->bitmap[idx] >> bit & 1;\
379 * The set of PCI devices this driver supports
381 static const struct rte_pci_id pci_id_ixgbe_map[] = {
383 #define RTE_PCI_DEV_ID_DECL_IXGBE(vend, dev) {RTE_PCI_DEVICE(vend, dev)},
384 #include "rte_pci_dev_ids.h"
386 { .vendor_id = 0, /* sentinel */ },
391 * The set of PCI devices this driver supports (for 82599 VF)
393 static const struct rte_pci_id pci_id_ixgbevf_map[] = {
395 #define RTE_PCI_DEV_ID_DECL_IXGBEVF(vend, dev) {RTE_PCI_DEVICE(vend, dev)},
396 #include "rte_pci_dev_ids.h"
397 { .vendor_id = 0, /* sentinel */ },
401 static const struct rte_eth_desc_lim rx_desc_lim = {
402 .nb_max = IXGBE_MAX_RING_DESC,
403 .nb_min = IXGBE_MIN_RING_DESC,
404 .nb_align = IXGBE_RXD_ALIGN,
407 static const struct rte_eth_desc_lim tx_desc_lim = {
408 .nb_max = IXGBE_MAX_RING_DESC,
409 .nb_min = IXGBE_MIN_RING_DESC,
410 .nb_align = IXGBE_TXD_ALIGN,
413 static const struct eth_dev_ops ixgbe_eth_dev_ops = {
414 .dev_configure = ixgbe_dev_configure,
415 .dev_start = ixgbe_dev_start,
416 .dev_stop = ixgbe_dev_stop,
417 .dev_set_link_up = ixgbe_dev_set_link_up,
418 .dev_set_link_down = ixgbe_dev_set_link_down,
419 .dev_close = ixgbe_dev_close,
420 .promiscuous_enable = ixgbe_dev_promiscuous_enable,
421 .promiscuous_disable = ixgbe_dev_promiscuous_disable,
422 .allmulticast_enable = ixgbe_dev_allmulticast_enable,
423 .allmulticast_disable = ixgbe_dev_allmulticast_disable,
424 .link_update = ixgbe_dev_link_update,
425 .stats_get = ixgbe_dev_stats_get,
426 .xstats_get = ixgbe_dev_xstats_get,
427 .stats_reset = ixgbe_dev_stats_reset,
428 .xstats_reset = ixgbe_dev_xstats_reset,
429 .queue_stats_mapping_set = ixgbe_dev_queue_stats_mapping_set,
430 .dev_infos_get = ixgbe_dev_info_get,
431 .mtu_set = ixgbe_dev_mtu_set,
432 .vlan_filter_set = ixgbe_vlan_filter_set,
433 .vlan_tpid_set = ixgbe_vlan_tpid_set,
434 .vlan_offload_set = ixgbe_vlan_offload_set,
435 .vlan_strip_queue_set = ixgbe_vlan_strip_queue_set,
436 .rx_queue_start = ixgbe_dev_rx_queue_start,
437 .rx_queue_stop = ixgbe_dev_rx_queue_stop,
438 .tx_queue_start = ixgbe_dev_tx_queue_start,
439 .tx_queue_stop = ixgbe_dev_tx_queue_stop,
440 .rx_queue_setup = ixgbe_dev_rx_queue_setup,
441 .rx_queue_intr_enable = ixgbe_dev_rx_queue_intr_enable,
442 .rx_queue_intr_disable = ixgbe_dev_rx_queue_intr_disable,
443 .rx_queue_release = ixgbe_dev_rx_queue_release,
444 .rx_queue_count = ixgbe_dev_rx_queue_count,
445 .rx_descriptor_done = ixgbe_dev_rx_descriptor_done,
446 .tx_queue_setup = ixgbe_dev_tx_queue_setup,
447 .tx_queue_release = ixgbe_dev_tx_queue_release,
448 .dev_led_on = ixgbe_dev_led_on,
449 .dev_led_off = ixgbe_dev_led_off,
450 .flow_ctrl_get = ixgbe_flow_ctrl_get,
451 .flow_ctrl_set = ixgbe_flow_ctrl_set,
452 .priority_flow_ctrl_set = ixgbe_priority_flow_ctrl_set,
453 .mac_addr_add = ixgbe_add_rar,
454 .mac_addr_remove = ixgbe_remove_rar,
455 .mac_addr_set = ixgbe_set_default_mac_addr,
456 .uc_hash_table_set = ixgbe_uc_hash_table_set,
457 .uc_all_hash_table_set = ixgbe_uc_all_hash_table_set,
458 .mirror_rule_set = ixgbe_mirror_rule_set,
459 .mirror_rule_reset = ixgbe_mirror_rule_reset,
460 .set_vf_rx_mode = ixgbe_set_pool_rx_mode,
461 .set_vf_rx = ixgbe_set_pool_rx,
462 .set_vf_tx = ixgbe_set_pool_tx,
463 .set_vf_vlan_filter = ixgbe_set_pool_vlan_filter,
464 .set_queue_rate_limit = ixgbe_set_queue_rate_limit,
465 .set_vf_rate_limit = ixgbe_set_vf_rate_limit,
466 .reta_update = ixgbe_dev_rss_reta_update,
467 .reta_query = ixgbe_dev_rss_reta_query,
468 #ifdef RTE_NIC_BYPASS
469 .bypass_init = ixgbe_bypass_init,
470 .bypass_state_set = ixgbe_bypass_state_store,
471 .bypass_state_show = ixgbe_bypass_state_show,
472 .bypass_event_set = ixgbe_bypass_event_store,
473 .bypass_event_show = ixgbe_bypass_event_show,
474 .bypass_wd_timeout_set = ixgbe_bypass_wd_timeout_store,
475 .bypass_wd_timeout_show = ixgbe_bypass_wd_timeout_show,
476 .bypass_ver_show = ixgbe_bypass_ver_show,
477 .bypass_wd_reset = ixgbe_bypass_wd_reset,
478 #endif /* RTE_NIC_BYPASS */
479 .rss_hash_update = ixgbe_dev_rss_hash_update,
480 .rss_hash_conf_get = ixgbe_dev_rss_hash_conf_get,
481 .filter_ctrl = ixgbe_dev_filter_ctrl,
482 .set_mc_addr_list = ixgbe_dev_set_mc_addr_list,
483 .rxq_info_get = ixgbe_rxq_info_get,
484 .txq_info_get = ixgbe_txq_info_get,
485 .timesync_enable = ixgbe_timesync_enable,
486 .timesync_disable = ixgbe_timesync_disable,
487 .timesync_read_rx_timestamp = ixgbe_timesync_read_rx_timestamp,
488 .timesync_read_tx_timestamp = ixgbe_timesync_read_tx_timestamp,
489 .get_reg_length = ixgbe_get_reg_length,
490 .get_reg = ixgbe_get_regs,
491 .get_eeprom_length = ixgbe_get_eeprom_length,
492 .get_eeprom = ixgbe_get_eeprom,
493 .set_eeprom = ixgbe_set_eeprom,
494 .get_dcb_info = ixgbe_dev_get_dcb_info,
495 .timesync_adjust_time = ixgbe_timesync_adjust_time,
496 .timesync_read_time = ixgbe_timesync_read_time,
497 .timesync_write_time = ixgbe_timesync_write_time,
501 * dev_ops for virtual function, bare necessities for basic vf
502 * operation have been implemented
504 static const struct eth_dev_ops ixgbevf_eth_dev_ops = {
505 .dev_configure = ixgbevf_dev_configure,
506 .dev_start = ixgbevf_dev_start,
507 .dev_stop = ixgbevf_dev_stop,
508 .link_update = ixgbe_dev_link_update,
509 .stats_get = ixgbevf_dev_stats_get,
510 .xstats_get = ixgbevf_dev_xstats_get,
511 .stats_reset = ixgbevf_dev_stats_reset,
512 .xstats_reset = ixgbevf_dev_stats_reset,
513 .dev_close = ixgbevf_dev_close,
514 .dev_infos_get = ixgbevf_dev_info_get,
515 .mtu_set = ixgbevf_dev_set_mtu,
516 .vlan_filter_set = ixgbevf_vlan_filter_set,
517 .vlan_strip_queue_set = ixgbevf_vlan_strip_queue_set,
518 .vlan_offload_set = ixgbevf_vlan_offload_set,
519 .rx_queue_setup = ixgbe_dev_rx_queue_setup,
520 .rx_queue_release = ixgbe_dev_rx_queue_release,
521 .rx_descriptor_done = ixgbe_dev_rx_descriptor_done,
522 .tx_queue_setup = ixgbe_dev_tx_queue_setup,
523 .tx_queue_release = ixgbe_dev_tx_queue_release,
524 .rx_queue_intr_enable = ixgbevf_dev_rx_queue_intr_enable,
525 .rx_queue_intr_disable = ixgbevf_dev_rx_queue_intr_disable,
526 .mac_addr_add = ixgbevf_add_mac_addr,
527 .mac_addr_remove = ixgbevf_remove_mac_addr,
528 .set_mc_addr_list = ixgbe_dev_set_mc_addr_list,
529 .rxq_info_get = ixgbe_rxq_info_get,
530 .txq_info_get = ixgbe_txq_info_get,
531 .mac_addr_set = ixgbevf_set_default_mac_addr,
532 .get_reg_length = ixgbevf_get_reg_length,
533 .get_reg = ixgbevf_get_regs,
534 .reta_update = ixgbe_dev_rss_reta_update,
535 .reta_query = ixgbe_dev_rss_reta_query,
536 .rss_hash_update = ixgbe_dev_rss_hash_update,
537 .rss_hash_conf_get = ixgbe_dev_rss_hash_conf_get,
540 /* store statistics names and its offset in stats structure */
541 struct rte_ixgbe_xstats_name_off {
542 char name[RTE_ETH_XSTATS_NAME_SIZE];
546 static const struct rte_ixgbe_xstats_name_off rte_ixgbe_stats_strings[] = {
547 {"rx_crc_errors", offsetof(struct ixgbe_hw_stats, crcerrs)},
548 {"rx_illegal_byte_errors", offsetof(struct ixgbe_hw_stats, illerrc)},
549 {"rx_error_bytes", offsetof(struct ixgbe_hw_stats, errbc)},
550 {"mac_local_errors", offsetof(struct ixgbe_hw_stats, mlfc)},
551 {"mac_remote_errors", offsetof(struct ixgbe_hw_stats, mrfc)},
552 {"rx_length_errors", offsetof(struct ixgbe_hw_stats, rlec)},
553 {"tx_xon_packets", offsetof(struct ixgbe_hw_stats, lxontxc)},
554 {"rx_xon_packets", offsetof(struct ixgbe_hw_stats, lxonrxc)},
555 {"tx_xoff_packets", offsetof(struct ixgbe_hw_stats, lxofftxc)},
556 {"rx_xoff_packets", offsetof(struct ixgbe_hw_stats, lxoffrxc)},
557 {"rx_size_64_packets", offsetof(struct ixgbe_hw_stats, prc64)},
558 {"rx_size_65_to_127_packets", offsetof(struct ixgbe_hw_stats, prc127)},
559 {"rx_size_128_to_255_packets", offsetof(struct ixgbe_hw_stats, prc255)},
560 {"rx_size_256_to_511_packets", offsetof(struct ixgbe_hw_stats, prc511)},
561 {"rx_size_512_to_1023_packets", offsetof(struct ixgbe_hw_stats,
563 {"rx_size_1024_to_max_packets", offsetof(struct ixgbe_hw_stats,
565 {"rx_broadcast_packets", offsetof(struct ixgbe_hw_stats, bprc)},
566 {"rx_multicast_packets", offsetof(struct ixgbe_hw_stats, mprc)},
567 {"rx_fragment_errors", offsetof(struct ixgbe_hw_stats, rfc)},
568 {"rx_undersize_errors", offsetof(struct ixgbe_hw_stats, ruc)},
569 {"rx_oversize_errors", offsetof(struct ixgbe_hw_stats, roc)},
570 {"rx_jabber_errors", offsetof(struct ixgbe_hw_stats, rjc)},
571 {"rx_management_packets", offsetof(struct ixgbe_hw_stats, mngprc)},
572 {"rx_management_dropped", offsetof(struct ixgbe_hw_stats, mngpdc)},
573 {"tx_management_packets", offsetof(struct ixgbe_hw_stats, mngptc)},
574 {"rx_total_packets", offsetof(struct ixgbe_hw_stats, tpr)},
575 {"rx_total_bytes", offsetof(struct ixgbe_hw_stats, tor)},
576 {"tx_total_packets", offsetof(struct ixgbe_hw_stats, tpt)},
577 {"tx_size_64_packets", offsetof(struct ixgbe_hw_stats, ptc64)},
578 {"tx_size_65_to_127_packets", offsetof(struct ixgbe_hw_stats, ptc127)},
579 {"tx_size_128_to_255_packets", offsetof(struct ixgbe_hw_stats, ptc255)},
580 {"tx_size_256_to_511_packets", offsetof(struct ixgbe_hw_stats, ptc511)},
581 {"tx_size_512_to_1023_packets", offsetof(struct ixgbe_hw_stats,
583 {"tx_size_1024_to_max_packets", offsetof(struct ixgbe_hw_stats,
585 {"tx_multicast_packets", offsetof(struct ixgbe_hw_stats, mptc)},
586 {"tx_broadcast_packets", offsetof(struct ixgbe_hw_stats, bptc)},
587 {"rx_mac_short_packet_dropped", offsetof(struct ixgbe_hw_stats, mspdc)},
588 {"rx_l3_l4_xsum_error", offsetof(struct ixgbe_hw_stats, xec)},
590 {"flow_director_added_filters", offsetof(struct ixgbe_hw_stats,
592 {"flow_director_removed_filters", offsetof(struct ixgbe_hw_stats,
594 {"flow_director_filter_add_errors", offsetof(struct ixgbe_hw_stats,
596 {"flow_director_filter_remove_errors", offsetof(struct ixgbe_hw_stats,
598 {"flow_director_matched_filters", offsetof(struct ixgbe_hw_stats,
600 {"flow_director_missed_filters", offsetof(struct ixgbe_hw_stats,
603 {"rx_fcoe_crc_errors", offsetof(struct ixgbe_hw_stats, fccrc)},
604 {"rx_fcoe_dropped", offsetof(struct ixgbe_hw_stats, fcoerpdc)},
605 {"rx_fcoe_mbuf_allocation_errors", offsetof(struct ixgbe_hw_stats,
607 {"rx_fcoe_packets", offsetof(struct ixgbe_hw_stats, fcoeprc)},
608 {"tx_fcoe_packets", offsetof(struct ixgbe_hw_stats, fcoeptc)},
609 {"rx_fcoe_bytes", offsetof(struct ixgbe_hw_stats, fcoedwrc)},
610 {"tx_fcoe_bytes", offsetof(struct ixgbe_hw_stats, fcoedwtc)},
611 {"rx_fcoe_no_direct_data_placement", offsetof(struct ixgbe_hw_stats,
613 {"rx_fcoe_no_direct_data_placement_ext_buff",
614 offsetof(struct ixgbe_hw_stats, fcoe_noddp_ext_buff)},
616 {"tx_flow_control_xon_packets", offsetof(struct ixgbe_hw_stats,
618 {"rx_flow_control_xon_packets", offsetof(struct ixgbe_hw_stats,
620 {"tx_flow_control_xoff_packets", offsetof(struct ixgbe_hw_stats,
622 {"rx_flow_control_xoff_packets", offsetof(struct ixgbe_hw_stats,
624 {"rx_total_missed_packets", offsetof(struct ixgbe_hw_stats, mpctotal)},
627 #define IXGBE_NB_HW_STATS (sizeof(rte_ixgbe_stats_strings) / \
628 sizeof(rte_ixgbe_stats_strings[0]))
630 /* Per-queue statistics */
631 static const struct rte_ixgbe_xstats_name_off rte_ixgbe_rxq_strings[] = {
632 {"mbuf_allocation_errors", offsetof(struct ixgbe_hw_stats, rnbc)},
633 {"dropped", offsetof(struct ixgbe_hw_stats, mpc)},
634 {"xon_packets", offsetof(struct ixgbe_hw_stats, pxonrxc)},
635 {"xoff_packets", offsetof(struct ixgbe_hw_stats, pxoffrxc)},
638 #define IXGBE_NB_RXQ_PRIO_STATS (sizeof(rte_ixgbe_rxq_strings) / \
639 sizeof(rte_ixgbe_rxq_strings[0]))
641 static const struct rte_ixgbe_xstats_name_off rte_ixgbe_txq_strings[] = {
642 {"xon_packets", offsetof(struct ixgbe_hw_stats, pxontxc)},
643 {"xoff_packets", offsetof(struct ixgbe_hw_stats, pxofftxc)},
644 {"xon_to_xoff_packets", offsetof(struct ixgbe_hw_stats,
648 #define IXGBE_NB_TXQ_PRIO_STATS (sizeof(rte_ixgbe_txq_strings) / \
649 sizeof(rte_ixgbe_txq_strings[0]))
651 static const struct rte_ixgbe_xstats_name_off rte_ixgbevf_stats_strings[] = {
652 {"rx_multicast_packets", offsetof(struct ixgbevf_hw_stats, vfmprc)},
655 #define IXGBEVF_NB_XSTATS (sizeof(rte_ixgbevf_stats_strings) / \
656 sizeof(rte_ixgbevf_stats_strings[0]))
659 * Atomically reads the link status information from global
660 * structure rte_eth_dev.
663 * - Pointer to the structure rte_eth_dev to read from.
664 * - Pointer to the buffer to be saved with the link status.
667 * - On success, zero.
668 * - On failure, negative value.
671 rte_ixgbe_dev_atomic_read_link_status(struct rte_eth_dev *dev,
672 struct rte_eth_link *link)
674 struct rte_eth_link *dst = link;
675 struct rte_eth_link *src = &(dev->data->dev_link);
677 if (rte_atomic64_cmpset((uint64_t *)dst, *(uint64_t *)dst,
678 *(uint64_t *)src) == 0)
685 * Atomically writes the link status information into global
686 * structure rte_eth_dev.
689 * - Pointer to the structure rte_eth_dev to read from.
690 * - Pointer to the buffer to be saved with the link status.
693 * - On success, zero.
694 * - On failure, negative value.
697 rte_ixgbe_dev_atomic_write_link_status(struct rte_eth_dev *dev,
698 struct rte_eth_link *link)
700 struct rte_eth_link *dst = &(dev->data->dev_link);
701 struct rte_eth_link *src = link;
703 if (rte_atomic64_cmpset((uint64_t *)dst, *(uint64_t *)dst,
704 *(uint64_t *)src) == 0)
711 * This function is the same as ixgbe_is_sfp() in base/ixgbe.h.
714 ixgbe_is_sfp(struct ixgbe_hw *hw)
716 switch (hw->phy.type) {
717 case ixgbe_phy_sfp_avago:
718 case ixgbe_phy_sfp_ftl:
719 case ixgbe_phy_sfp_intel:
720 case ixgbe_phy_sfp_unknown:
721 case ixgbe_phy_sfp_passive_tyco:
722 case ixgbe_phy_sfp_passive_unknown:
729 static inline int32_t
730 ixgbe_pf_reset_hw(struct ixgbe_hw *hw)
735 status = ixgbe_reset_hw(hw);
737 ctrl_ext = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT);
738 /* Set PF Reset Done bit so PF/VF Mail Ops can work */
739 ctrl_ext |= IXGBE_CTRL_EXT_PFRSTD;
740 IXGBE_WRITE_REG(hw, IXGBE_CTRL_EXT, ctrl_ext);
741 IXGBE_WRITE_FLUSH(hw);
747 ixgbe_enable_intr(struct rte_eth_dev *dev)
749 struct ixgbe_interrupt *intr =
750 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
751 struct ixgbe_hw *hw =
752 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
754 IXGBE_WRITE_REG(hw, IXGBE_EIMS, intr->mask);
755 IXGBE_WRITE_FLUSH(hw);
759 * This function is based on ixgbe_disable_intr() in base/ixgbe.h.
762 ixgbe_disable_intr(struct ixgbe_hw *hw)
764 PMD_INIT_FUNC_TRACE();
766 if (hw->mac.type == ixgbe_mac_82598EB) {
767 IXGBE_WRITE_REG(hw, IXGBE_EIMC, ~0);
769 IXGBE_WRITE_REG(hw, IXGBE_EIMC, 0xFFFF0000);
770 IXGBE_WRITE_REG(hw, IXGBE_EIMC_EX(0), ~0);
771 IXGBE_WRITE_REG(hw, IXGBE_EIMC_EX(1), ~0);
773 IXGBE_WRITE_FLUSH(hw);
777 * This function resets queue statistics mapping registers.
778 * From Niantic datasheet, Initialization of Statistics section:
779 * "...if software requires the queue counters, the RQSMR and TQSM registers
780 * must be re-programmed following a device reset.
783 ixgbe_reset_qstat_mappings(struct ixgbe_hw *hw)
787 for(i = 0; i != IXGBE_NB_STAT_MAPPING_REGS; i++) {
788 IXGBE_WRITE_REG(hw, IXGBE_RQSMR(i), 0);
789 IXGBE_WRITE_REG(hw, IXGBE_TQSM(i), 0);
795 ixgbe_dev_queue_stats_mapping_set(struct rte_eth_dev *eth_dev,
800 #define QSM_REG_NB_BITS_PER_QMAP_FIELD 8
801 #define NB_QMAP_FIELDS_PER_QSM_REG 4
802 #define QMAP_FIELD_RESERVED_BITS_MASK 0x0f
804 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(eth_dev->data->dev_private);
805 struct ixgbe_stat_mapping_registers *stat_mappings =
806 IXGBE_DEV_PRIVATE_TO_STAT_MAPPINGS(eth_dev->data->dev_private);
807 uint32_t qsmr_mask = 0;
808 uint32_t clearing_mask = QMAP_FIELD_RESERVED_BITS_MASK;
812 if ((hw->mac.type != ixgbe_mac_82599EB) &&
813 (hw->mac.type != ixgbe_mac_X540) &&
814 (hw->mac.type != ixgbe_mac_X550) &&
815 (hw->mac.type != ixgbe_mac_X550EM_x))
818 PMD_INIT_LOG(DEBUG, "Setting port %d, %s queue_id %d to stat index %d",
819 (int)(eth_dev->data->port_id), is_rx ? "RX" : "TX",
822 n = (uint8_t)(queue_id / NB_QMAP_FIELDS_PER_QSM_REG);
823 if (n >= IXGBE_NB_STAT_MAPPING_REGS) {
824 PMD_INIT_LOG(ERR, "Nb of stat mapping registers exceeded");
827 offset = (uint8_t)(queue_id % NB_QMAP_FIELDS_PER_QSM_REG);
829 /* Now clear any previous stat_idx set */
830 clearing_mask <<= (QSM_REG_NB_BITS_PER_QMAP_FIELD * offset);
832 stat_mappings->tqsm[n] &= ~clearing_mask;
834 stat_mappings->rqsmr[n] &= ~clearing_mask;
836 q_map = (uint32_t)stat_idx;
837 q_map &= QMAP_FIELD_RESERVED_BITS_MASK;
838 qsmr_mask = q_map << (QSM_REG_NB_BITS_PER_QMAP_FIELD * offset);
840 stat_mappings->tqsm[n] |= qsmr_mask;
842 stat_mappings->rqsmr[n] |= qsmr_mask;
844 PMD_INIT_LOG(DEBUG, "Set port %d, %s queue_id %d to stat index %d",
845 (int)(eth_dev->data->port_id), is_rx ? "RX" : "TX",
847 PMD_INIT_LOG(DEBUG, "%s[%d] = 0x%08x", is_rx ? "RQSMR" : "TQSM", n,
848 is_rx ? stat_mappings->rqsmr[n] : stat_mappings->tqsm[n]);
850 /* Now write the mapping in the appropriate register */
852 PMD_INIT_LOG(DEBUG, "Write 0x%x to RX IXGBE stat mapping reg:%d",
853 stat_mappings->rqsmr[n], n);
854 IXGBE_WRITE_REG(hw, IXGBE_RQSMR(n), stat_mappings->rqsmr[n]);
857 PMD_INIT_LOG(DEBUG, "Write 0x%x to TX IXGBE stat mapping reg:%d",
858 stat_mappings->tqsm[n], n);
859 IXGBE_WRITE_REG(hw, IXGBE_TQSM(n), stat_mappings->tqsm[n]);
865 ixgbe_restore_statistics_mapping(struct rte_eth_dev * dev)
867 struct ixgbe_stat_mapping_registers *stat_mappings =
868 IXGBE_DEV_PRIVATE_TO_STAT_MAPPINGS(dev->data->dev_private);
869 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
872 /* write whatever was in stat mapping table to the NIC */
873 for (i = 0; i < IXGBE_NB_STAT_MAPPING_REGS; i++) {
875 IXGBE_WRITE_REG(hw, IXGBE_RQSMR(i), stat_mappings->rqsmr[i]);
878 IXGBE_WRITE_REG(hw, IXGBE_TQSM(i), stat_mappings->tqsm[i]);
883 ixgbe_dcb_init(struct ixgbe_hw *hw,struct ixgbe_dcb_config *dcb_config)
886 struct ixgbe_dcb_tc_config *tc;
887 uint8_t dcb_max_tc = IXGBE_DCB_MAX_TRAFFIC_CLASS;
889 dcb_config->num_tcs.pg_tcs = dcb_max_tc;
890 dcb_config->num_tcs.pfc_tcs = dcb_max_tc;
891 for (i = 0; i < dcb_max_tc; i++) {
892 tc = &dcb_config->tc_config[i];
893 tc->path[IXGBE_DCB_TX_CONFIG].bwg_id = i;
894 tc->path[IXGBE_DCB_TX_CONFIG].bwg_percent =
895 (uint8_t)(100/dcb_max_tc + (i & 1));
896 tc->path[IXGBE_DCB_RX_CONFIG].bwg_id = i;
897 tc->path[IXGBE_DCB_RX_CONFIG].bwg_percent =
898 (uint8_t)(100/dcb_max_tc + (i & 1));
899 tc->pfc = ixgbe_dcb_pfc_disabled;
902 /* Initialize default user to priority mapping, UPx->TC0 */
903 tc = &dcb_config->tc_config[0];
904 tc->path[IXGBE_DCB_TX_CONFIG].up_to_tc_bitmap = 0xFF;
905 tc->path[IXGBE_DCB_RX_CONFIG].up_to_tc_bitmap = 0xFF;
906 for (i = 0; i< IXGBE_DCB_MAX_BW_GROUP; i++) {
907 dcb_config->bw_percentage[IXGBE_DCB_TX_CONFIG][i] = 100;
908 dcb_config->bw_percentage[IXGBE_DCB_RX_CONFIG][i] = 100;
910 dcb_config->rx_pba_cfg = ixgbe_dcb_pba_equal;
911 dcb_config->pfc_mode_enable = false;
912 dcb_config->vt_mode = true;
913 dcb_config->round_robin_enable = false;
914 /* support all DCB capabilities in 82599 */
915 dcb_config->support.capabilities = 0xFF;
917 /*we only support 4 Tcs for X540, X550 */
918 if (hw->mac.type == ixgbe_mac_X540 ||
919 hw->mac.type == ixgbe_mac_X550 ||
920 hw->mac.type == ixgbe_mac_X550EM_x) {
921 dcb_config->num_tcs.pg_tcs = 4;
922 dcb_config->num_tcs.pfc_tcs = 4;
927 * Ensure that all locks are released before first NVM or PHY access
930 ixgbe_swfw_lock_reset(struct ixgbe_hw *hw)
935 * Phy lock should not fail in this early stage. If this is the case,
936 * it is due to an improper exit of the application.
937 * So force the release of the faulty lock. Release of common lock
938 * is done automatically by swfw_sync function.
940 mask = IXGBE_GSSR_PHY0_SM << hw->bus.func;
941 if (ixgbe_acquire_swfw_semaphore(hw, mask) < 0) {
942 PMD_DRV_LOG(DEBUG, "SWFW phy%d lock released", hw->bus.func);
944 ixgbe_release_swfw_semaphore(hw, mask);
947 * These ones are more tricky since they are common to all ports; but
948 * swfw_sync retries last long enough (1s) to be almost sure that if
949 * lock can not be taken it is due to an improper lock of the
952 mask = IXGBE_GSSR_EEP_SM | IXGBE_GSSR_MAC_CSR_SM | IXGBE_GSSR_SW_MNG_SM;
953 if (ixgbe_acquire_swfw_semaphore(hw, mask) < 0) {
954 PMD_DRV_LOG(DEBUG, "SWFW common locks released");
956 ixgbe_release_swfw_semaphore(hw, mask);
960 * This function is based on code in ixgbe_attach() in base/ixgbe.c.
961 * It returns 0 on success.
964 eth_ixgbe_dev_init(struct rte_eth_dev *eth_dev)
966 struct rte_pci_device *pci_dev;
967 struct ixgbe_hw *hw =
968 IXGBE_DEV_PRIVATE_TO_HW(eth_dev->data->dev_private);
969 struct ixgbe_vfta * shadow_vfta =
970 IXGBE_DEV_PRIVATE_TO_VFTA(eth_dev->data->dev_private);
971 struct ixgbe_hwstrip *hwstrip =
972 IXGBE_DEV_PRIVATE_TO_HWSTRIP_BITMAP(eth_dev->data->dev_private);
973 struct ixgbe_dcb_config *dcb_config =
974 IXGBE_DEV_PRIVATE_TO_DCB_CFG(eth_dev->data->dev_private);
975 struct ixgbe_filter_info *filter_info =
976 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(eth_dev->data->dev_private);
981 PMD_INIT_FUNC_TRACE();
983 eth_dev->dev_ops = &ixgbe_eth_dev_ops;
984 eth_dev->rx_pkt_burst = &ixgbe_recv_pkts;
985 eth_dev->tx_pkt_burst = &ixgbe_xmit_pkts;
988 * For secondary processes, we don't initialise any further as primary
989 * has already done this work. Only check we don't need a different
990 * RX and TX function.
992 if (rte_eal_process_type() != RTE_PROC_PRIMARY){
993 struct ixgbe_tx_queue *txq;
994 /* TX queue function in primary, set by last queue initialized
995 * Tx queue may not initialized by primary process */
996 if (eth_dev->data->tx_queues) {
997 txq = eth_dev->data->tx_queues[eth_dev->data->nb_tx_queues-1];
998 ixgbe_set_tx_function(eth_dev, txq);
1000 /* Use default TX function if we get here */
1001 PMD_INIT_LOG(NOTICE, "No TX queues configured yet. "
1002 "Using default TX function.");
1005 ixgbe_set_rx_function(eth_dev);
1009 pci_dev = eth_dev->pci_dev;
1011 rte_eth_copy_pci_info(eth_dev, pci_dev);
1013 /* Vendor and Device ID need to be set before init of shared code */
1014 hw->device_id = pci_dev->id.device_id;
1015 hw->vendor_id = pci_dev->id.vendor_id;
1016 hw->hw_addr = (void *)pci_dev->mem_resource[0].addr;
1017 hw->allow_unsupported_sfp = 1;
1019 /* Initialize the shared code (base driver) */
1020 #ifdef RTE_NIC_BYPASS
1021 diag = ixgbe_bypass_init_shared_code(hw);
1023 diag = ixgbe_init_shared_code(hw);
1024 #endif /* RTE_NIC_BYPASS */
1026 if (diag != IXGBE_SUCCESS) {
1027 PMD_INIT_LOG(ERR, "Shared code init failed: %d", diag);
1031 /* pick up the PCI bus settings for reporting later */
1032 ixgbe_get_bus_info(hw);
1034 /* Unlock any pending hardware semaphore */
1035 ixgbe_swfw_lock_reset(hw);
1037 /* Initialize DCB configuration*/
1038 memset(dcb_config, 0, sizeof(struct ixgbe_dcb_config));
1039 ixgbe_dcb_init(hw,dcb_config);
1040 /* Get Hardware Flow Control setting */
1041 hw->fc.requested_mode = ixgbe_fc_full;
1042 hw->fc.current_mode = ixgbe_fc_full;
1043 hw->fc.pause_time = IXGBE_FC_PAUSE;
1044 for (i = 0; i < IXGBE_DCB_MAX_TRAFFIC_CLASS; i++) {
1045 hw->fc.low_water[i] = IXGBE_FC_LO;
1046 hw->fc.high_water[i] = IXGBE_FC_HI;
1048 hw->fc.send_xon = 1;
1050 /* Make sure we have a good EEPROM before we read from it */
1051 diag = ixgbe_validate_eeprom_checksum(hw, &csum);
1052 if (diag != IXGBE_SUCCESS) {
1053 PMD_INIT_LOG(ERR, "The EEPROM checksum is not valid: %d", diag);
1057 #ifdef RTE_NIC_BYPASS
1058 diag = ixgbe_bypass_init_hw(hw);
1060 diag = ixgbe_init_hw(hw);
1061 #endif /* RTE_NIC_BYPASS */
1064 * Devices with copper phys will fail to initialise if ixgbe_init_hw()
1065 * is called too soon after the kernel driver unbinding/binding occurs.
1066 * The failure occurs in ixgbe_identify_phy_generic() for all devices,
1067 * but for non-copper devies, ixgbe_identify_sfp_module_generic() is
1068 * also called. See ixgbe_identify_phy_82599(). The reason for the
1069 * failure is not known, and only occuts when virtualisation features
1070 * are disabled in the bios. A delay of 100ms was found to be enough by
1071 * trial-and-error, and is doubled to be safe.
1073 if (diag && (hw->mac.ops.get_media_type(hw) == ixgbe_media_type_copper)) {
1075 diag = ixgbe_init_hw(hw);
1078 if (diag == IXGBE_ERR_EEPROM_VERSION) {
1079 PMD_INIT_LOG(ERR, "This device is a pre-production adapter/"
1080 "LOM. Please be aware there may be issues associated "
1081 "with your hardware.");
1082 PMD_INIT_LOG(ERR, "If you are experiencing problems "
1083 "please contact your Intel or hardware representative "
1084 "who provided you with this hardware.");
1085 } else if (diag == IXGBE_ERR_SFP_NOT_SUPPORTED)
1086 PMD_INIT_LOG(ERR, "Unsupported SFP+ Module");
1088 PMD_INIT_LOG(ERR, "Hardware Initialization Failure: %d", diag);
1092 /* Reset the hw statistics */
1093 ixgbe_dev_stats_reset(eth_dev);
1095 /* disable interrupt */
1096 ixgbe_disable_intr(hw);
1098 /* reset mappings for queue statistics hw counters*/
1099 ixgbe_reset_qstat_mappings(hw);
1101 /* Allocate memory for storing MAC addresses */
1102 eth_dev->data->mac_addrs = rte_zmalloc("ixgbe", ETHER_ADDR_LEN *
1103 hw->mac.num_rar_entries, 0);
1104 if (eth_dev->data->mac_addrs == NULL) {
1106 "Failed to allocate %u bytes needed to store "
1108 ETHER_ADDR_LEN * hw->mac.num_rar_entries);
1111 /* Copy the permanent MAC address */
1112 ether_addr_copy((struct ether_addr *) hw->mac.perm_addr,
1113 ð_dev->data->mac_addrs[0]);
1115 /* Allocate memory for storing hash filter MAC addresses */
1116 eth_dev->data->hash_mac_addrs = rte_zmalloc("ixgbe", ETHER_ADDR_LEN *
1117 IXGBE_VMDQ_NUM_UC_MAC, 0);
1118 if (eth_dev->data->hash_mac_addrs == NULL) {
1120 "Failed to allocate %d bytes needed to store MAC addresses",
1121 ETHER_ADDR_LEN * IXGBE_VMDQ_NUM_UC_MAC);
1125 /* initialize the vfta */
1126 memset(shadow_vfta, 0, sizeof(*shadow_vfta));
1128 /* initialize the hw strip bitmap*/
1129 memset(hwstrip, 0, sizeof(*hwstrip));
1131 /* initialize PF if max_vfs not zero */
1132 ixgbe_pf_host_init(eth_dev);
1134 ctrl_ext = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT);
1135 /* let hardware know driver is loaded */
1136 ctrl_ext |= IXGBE_CTRL_EXT_DRV_LOAD;
1137 /* Set PF Reset Done bit so PF/VF Mail Ops can work */
1138 ctrl_ext |= IXGBE_CTRL_EXT_PFRSTD;
1139 IXGBE_WRITE_REG(hw, IXGBE_CTRL_EXT, ctrl_ext);
1140 IXGBE_WRITE_FLUSH(hw);
1142 if (ixgbe_is_sfp(hw) && hw->phy.sfp_type != ixgbe_sfp_type_not_present)
1143 PMD_INIT_LOG(DEBUG, "MAC: %d, PHY: %d, SFP+: %d",
1144 (int) hw->mac.type, (int) hw->phy.type,
1145 (int) hw->phy.sfp_type);
1147 PMD_INIT_LOG(DEBUG, "MAC: %d, PHY: %d",
1148 (int) hw->mac.type, (int) hw->phy.type);
1150 PMD_INIT_LOG(DEBUG, "port %d vendorID=0x%x deviceID=0x%x",
1151 eth_dev->data->port_id, pci_dev->id.vendor_id,
1152 pci_dev->id.device_id);
1154 rte_intr_callback_register(&pci_dev->intr_handle,
1155 ixgbe_dev_interrupt_handler,
1158 /* enable uio/vfio intr/eventfd mapping */
1159 rte_intr_enable(&pci_dev->intr_handle);
1161 /* enable support intr */
1162 ixgbe_enable_intr(eth_dev);
1164 /* initialize 5tuple filter list */
1165 TAILQ_INIT(&filter_info->fivetuple_list);
1166 memset(filter_info->fivetuple_mask, 0,
1167 sizeof(uint32_t) * IXGBE_5TUPLE_ARRAY_SIZE);
1173 eth_ixgbe_dev_uninit(struct rte_eth_dev *eth_dev)
1175 struct rte_pci_device *pci_dev;
1176 struct ixgbe_hw *hw;
1178 PMD_INIT_FUNC_TRACE();
1180 if (rte_eal_process_type() != RTE_PROC_PRIMARY)
1183 hw = IXGBE_DEV_PRIVATE_TO_HW(eth_dev->data->dev_private);
1184 pci_dev = eth_dev->pci_dev;
1186 if (hw->adapter_stopped == 0)
1187 ixgbe_dev_close(eth_dev);
1189 eth_dev->dev_ops = NULL;
1190 eth_dev->rx_pkt_burst = NULL;
1191 eth_dev->tx_pkt_burst = NULL;
1193 /* Unlock any pending hardware semaphore */
1194 ixgbe_swfw_lock_reset(hw);
1196 /* disable uio intr before callback unregister */
1197 rte_intr_disable(&(pci_dev->intr_handle));
1198 rte_intr_callback_unregister(&(pci_dev->intr_handle),
1199 ixgbe_dev_interrupt_handler, (void *)eth_dev);
1201 /* uninitialize PF if max_vfs not zero */
1202 ixgbe_pf_host_uninit(eth_dev);
1204 rte_free(eth_dev->data->mac_addrs);
1205 eth_dev->data->mac_addrs = NULL;
1207 rte_free(eth_dev->data->hash_mac_addrs);
1208 eth_dev->data->hash_mac_addrs = NULL;
1214 * Negotiate mailbox API version with the PF.
1215 * After reset API version is always set to the basic one (ixgbe_mbox_api_10).
1216 * Then we try to negotiate starting with the most recent one.
1217 * If all negotiation attempts fail, then we will proceed with
1218 * the default one (ixgbe_mbox_api_10).
1221 ixgbevf_negotiate_api(struct ixgbe_hw *hw)
1225 /* start with highest supported, proceed down */
1226 static const enum ixgbe_pfvf_api_rev sup_ver[] = {
1232 i != RTE_DIM(sup_ver) &&
1233 ixgbevf_negotiate_api_version(hw, sup_ver[i]) != 0;
1239 generate_random_mac_addr(struct ether_addr *mac_addr)
1243 /* Set Organizationally Unique Identifier (OUI) prefix. */
1244 mac_addr->addr_bytes[0] = 0x00;
1245 mac_addr->addr_bytes[1] = 0x09;
1246 mac_addr->addr_bytes[2] = 0xC0;
1247 /* Force indication of locally assigned MAC address. */
1248 mac_addr->addr_bytes[0] |= ETHER_LOCAL_ADMIN_ADDR;
1249 /* Generate the last 3 bytes of the MAC address with a random number. */
1250 random = rte_rand();
1251 memcpy(&mac_addr->addr_bytes[3], &random, 3);
1255 * Virtual Function device init
1258 eth_ixgbevf_dev_init(struct rte_eth_dev *eth_dev)
1262 struct rte_pci_device *pci_dev;
1263 struct ixgbe_hw *hw =
1264 IXGBE_DEV_PRIVATE_TO_HW(eth_dev->data->dev_private);
1265 struct ixgbe_vfta * shadow_vfta =
1266 IXGBE_DEV_PRIVATE_TO_VFTA(eth_dev->data->dev_private);
1267 struct ixgbe_hwstrip *hwstrip =
1268 IXGBE_DEV_PRIVATE_TO_HWSTRIP_BITMAP(eth_dev->data->dev_private);
1269 struct ether_addr *perm_addr = (struct ether_addr *) hw->mac.perm_addr;
1271 PMD_INIT_FUNC_TRACE();
1273 eth_dev->dev_ops = &ixgbevf_eth_dev_ops;
1274 eth_dev->rx_pkt_burst = &ixgbe_recv_pkts;
1275 eth_dev->tx_pkt_burst = &ixgbe_xmit_pkts;
1277 /* for secondary processes, we don't initialise any further as primary
1278 * has already done this work. Only check we don't need a different
1280 if (rte_eal_process_type() != RTE_PROC_PRIMARY){
1281 if (eth_dev->data->scattered_rx)
1282 eth_dev->rx_pkt_burst = ixgbe_recv_pkts_lro_single_alloc;
1286 pci_dev = eth_dev->pci_dev;
1288 rte_eth_copy_pci_info(eth_dev, pci_dev);
1290 hw->device_id = pci_dev->id.device_id;
1291 hw->vendor_id = pci_dev->id.vendor_id;
1292 hw->hw_addr = (void *)pci_dev->mem_resource[0].addr;
1294 /* initialize the vfta */
1295 memset(shadow_vfta, 0, sizeof(*shadow_vfta));
1297 /* initialize the hw strip bitmap*/
1298 memset(hwstrip, 0, sizeof(*hwstrip));
1300 /* Initialize the shared code (base driver) */
1301 diag = ixgbe_init_shared_code(hw);
1302 if (diag != IXGBE_SUCCESS) {
1303 PMD_INIT_LOG(ERR, "Shared code init failed for ixgbevf: %d", diag);
1307 /* init_mailbox_params */
1308 hw->mbx.ops.init_params(hw);
1310 /* Reset the hw statistics */
1311 ixgbevf_dev_stats_reset(eth_dev);
1313 /* Disable the interrupts for VF */
1314 ixgbevf_intr_disable(hw);
1316 hw->mac.num_rar_entries = 128; /* The MAX of the underlying PF */
1317 diag = hw->mac.ops.reset_hw(hw);
1320 * The VF reset operation returns the IXGBE_ERR_INVALID_MAC_ADDR when
1321 * the underlying PF driver has not assigned a MAC address to the VF.
1322 * In this case, assign a random MAC address.
1324 if ((diag != IXGBE_SUCCESS) && (diag != IXGBE_ERR_INVALID_MAC_ADDR)) {
1325 PMD_INIT_LOG(ERR, "VF Initialization Failure: %d", diag);
1329 /* negotiate mailbox API version to use with the PF. */
1330 ixgbevf_negotiate_api(hw);
1332 /* Get Rx/Tx queue count via mailbox, which is ready after reset_hw */
1333 ixgbevf_get_queues(hw, &tcs, &tc);
1335 /* Allocate memory for storing MAC addresses */
1336 eth_dev->data->mac_addrs = rte_zmalloc("ixgbevf", ETHER_ADDR_LEN *
1337 hw->mac.num_rar_entries, 0);
1338 if (eth_dev->data->mac_addrs == NULL) {
1340 "Failed to allocate %u bytes needed to store "
1342 ETHER_ADDR_LEN * hw->mac.num_rar_entries);
1346 /* Generate a random MAC address, if none was assigned by PF. */
1347 if (is_zero_ether_addr(perm_addr)) {
1348 generate_random_mac_addr(perm_addr);
1349 diag = ixgbe_set_rar_vf(hw, 1, perm_addr->addr_bytes, 0, 1);
1351 rte_free(eth_dev->data->mac_addrs);
1352 eth_dev->data->mac_addrs = NULL;
1355 PMD_INIT_LOG(INFO, "\tVF MAC address not assigned by Host PF");
1356 PMD_INIT_LOG(INFO, "\tAssign randomly generated MAC address "
1357 "%02x:%02x:%02x:%02x:%02x:%02x",
1358 perm_addr->addr_bytes[0],
1359 perm_addr->addr_bytes[1],
1360 perm_addr->addr_bytes[2],
1361 perm_addr->addr_bytes[3],
1362 perm_addr->addr_bytes[4],
1363 perm_addr->addr_bytes[5]);
1366 /* Copy the permanent MAC address */
1367 ether_addr_copy(perm_addr, ð_dev->data->mac_addrs[0]);
1369 /* reset the hardware with the new settings */
1370 diag = hw->mac.ops.start_hw(hw);
1376 PMD_INIT_LOG(ERR, "VF Initialization Failure: %d", diag);
1380 PMD_INIT_LOG(DEBUG, "port %d vendorID=0x%x deviceID=0x%x mac.type=%s",
1381 eth_dev->data->port_id, pci_dev->id.vendor_id,
1382 pci_dev->id.device_id, "ixgbe_mac_82599_vf");
1387 /* Virtual Function device uninit */
1390 eth_ixgbevf_dev_uninit(struct rte_eth_dev *eth_dev)
1392 struct ixgbe_hw *hw;
1395 PMD_INIT_FUNC_TRACE();
1397 if (rte_eal_process_type() != RTE_PROC_PRIMARY)
1400 hw = IXGBE_DEV_PRIVATE_TO_HW(eth_dev->data->dev_private);
1402 if (hw->adapter_stopped == 0)
1403 ixgbevf_dev_close(eth_dev);
1405 eth_dev->dev_ops = NULL;
1406 eth_dev->rx_pkt_burst = NULL;
1407 eth_dev->tx_pkt_burst = NULL;
1409 /* Disable the interrupts for VF */
1410 ixgbevf_intr_disable(hw);
1412 for (i = 0; i < eth_dev->data->nb_rx_queues; i++) {
1413 ixgbe_dev_rx_queue_release(eth_dev->data->rx_queues[i]);
1414 eth_dev->data->rx_queues[i] = NULL;
1416 eth_dev->data->nb_rx_queues = 0;
1418 for (i = 0; i < eth_dev->data->nb_tx_queues; i++) {
1419 ixgbe_dev_tx_queue_release(eth_dev->data->tx_queues[i]);
1420 eth_dev->data->tx_queues[i] = NULL;
1422 eth_dev->data->nb_tx_queues = 0;
1424 rte_free(eth_dev->data->mac_addrs);
1425 eth_dev->data->mac_addrs = NULL;
1430 static struct eth_driver rte_ixgbe_pmd = {
1432 .name = "rte_ixgbe_pmd",
1433 .id_table = pci_id_ixgbe_map,
1434 .drv_flags = RTE_PCI_DRV_NEED_MAPPING | RTE_PCI_DRV_INTR_LSC |
1435 RTE_PCI_DRV_DETACHABLE,
1437 .eth_dev_init = eth_ixgbe_dev_init,
1438 .eth_dev_uninit = eth_ixgbe_dev_uninit,
1439 .dev_private_size = sizeof(struct ixgbe_adapter),
1443 * virtual function driver struct
1445 static struct eth_driver rte_ixgbevf_pmd = {
1447 .name = "rte_ixgbevf_pmd",
1448 .id_table = pci_id_ixgbevf_map,
1449 .drv_flags = RTE_PCI_DRV_NEED_MAPPING | RTE_PCI_DRV_DETACHABLE,
1451 .eth_dev_init = eth_ixgbevf_dev_init,
1452 .eth_dev_uninit = eth_ixgbevf_dev_uninit,
1453 .dev_private_size = sizeof(struct ixgbe_adapter),
1457 * Driver initialization routine.
1458 * Invoked once at EAL init time.
1459 * Register itself as the [Poll Mode] Driver of PCI IXGBE devices.
1462 rte_ixgbe_pmd_init(const char *name __rte_unused, const char *params __rte_unused)
1464 PMD_INIT_FUNC_TRACE();
1466 rte_eth_driver_register(&rte_ixgbe_pmd);
1471 * VF Driver initialization routine.
1472 * Invoked one at EAL init time.
1473 * Register itself as the [Virtual Poll Mode] Driver of PCI niantic devices.
1476 rte_ixgbevf_pmd_init(const char *name __rte_unused, const char *param __rte_unused)
1478 PMD_INIT_FUNC_TRACE();
1480 rte_eth_driver_register(&rte_ixgbevf_pmd);
1485 ixgbe_vlan_filter_set(struct rte_eth_dev *dev, uint16_t vlan_id, int on)
1487 struct ixgbe_hw *hw =
1488 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1489 struct ixgbe_vfta * shadow_vfta =
1490 IXGBE_DEV_PRIVATE_TO_VFTA(dev->data->dev_private);
1495 vid_idx = (uint32_t) ((vlan_id >> 5) & 0x7F);
1496 vid_bit = (uint32_t) (1 << (vlan_id & 0x1F));
1497 vfta = IXGBE_READ_REG(hw, IXGBE_VFTA(vid_idx));
1502 IXGBE_WRITE_REG(hw, IXGBE_VFTA(vid_idx), vfta);
1504 /* update local VFTA copy */
1505 shadow_vfta->vfta[vid_idx] = vfta;
1511 ixgbe_vlan_strip_queue_set(struct rte_eth_dev *dev, uint16_t queue, int on)
1514 ixgbe_vlan_hw_strip_enable(dev, queue);
1516 ixgbe_vlan_hw_strip_disable(dev, queue);
1520 ixgbe_vlan_tpid_set(struct rte_eth_dev *dev, uint16_t tpid)
1522 struct ixgbe_hw *hw =
1523 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1525 /* Only the high 16-bits is valid */
1526 IXGBE_WRITE_REG(hw, IXGBE_EXVET, tpid << 16);
1530 ixgbe_vlan_hw_filter_disable(struct rte_eth_dev *dev)
1532 struct ixgbe_hw *hw =
1533 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1536 PMD_INIT_FUNC_TRACE();
1538 /* Filter Table Disable */
1539 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
1540 vlnctrl &= ~IXGBE_VLNCTRL_VFE;
1542 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
1546 ixgbe_vlan_hw_filter_enable(struct rte_eth_dev *dev)
1548 struct ixgbe_hw *hw =
1549 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1550 struct ixgbe_vfta * shadow_vfta =
1551 IXGBE_DEV_PRIVATE_TO_VFTA(dev->data->dev_private);
1555 PMD_INIT_FUNC_TRACE();
1557 /* Filter Table Enable */
1558 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
1559 vlnctrl &= ~IXGBE_VLNCTRL_CFIEN;
1560 vlnctrl |= IXGBE_VLNCTRL_VFE;
1562 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
1564 /* write whatever is in local vfta copy */
1565 for (i = 0; i < IXGBE_VFTA_SIZE; i++)
1566 IXGBE_WRITE_REG(hw, IXGBE_VFTA(i), shadow_vfta->vfta[i]);
1570 ixgbe_vlan_hw_strip_bitmap_set(struct rte_eth_dev *dev, uint16_t queue, bool on)
1572 struct ixgbe_hwstrip *hwstrip =
1573 IXGBE_DEV_PRIVATE_TO_HWSTRIP_BITMAP(dev->data->dev_private);
1575 if(queue >= IXGBE_MAX_RX_QUEUE_NUM)
1579 IXGBE_SET_HWSTRIP(hwstrip, queue);
1581 IXGBE_CLEAR_HWSTRIP(hwstrip, queue);
1585 ixgbe_vlan_hw_strip_disable(struct rte_eth_dev *dev, uint16_t queue)
1587 struct ixgbe_hw *hw =
1588 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1591 PMD_INIT_FUNC_TRACE();
1593 if (hw->mac.type == ixgbe_mac_82598EB) {
1594 /* No queue level support */
1595 PMD_INIT_LOG(NOTICE, "82598EB not support queue level hw strip");
1599 /* Other 10G NIC, the VLAN strip can be setup per queue in RXDCTL */
1600 ctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(queue));
1601 ctrl &= ~IXGBE_RXDCTL_VME;
1602 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(queue), ctrl);
1604 /* record those setting for HW strip per queue */
1605 ixgbe_vlan_hw_strip_bitmap_set(dev, queue, 0);
1609 ixgbe_vlan_hw_strip_enable(struct rte_eth_dev *dev, uint16_t queue)
1611 struct ixgbe_hw *hw =
1612 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1615 PMD_INIT_FUNC_TRACE();
1617 if (hw->mac.type == ixgbe_mac_82598EB) {
1618 /* No queue level supported */
1619 PMD_INIT_LOG(NOTICE, "82598EB not support queue level hw strip");
1623 /* Other 10G NIC, the VLAN strip can be setup per queue in RXDCTL */
1624 ctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(queue));
1625 ctrl |= IXGBE_RXDCTL_VME;
1626 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(queue), ctrl);
1628 /* record those setting for HW strip per queue */
1629 ixgbe_vlan_hw_strip_bitmap_set(dev, queue, 1);
1633 ixgbe_vlan_hw_strip_disable_all(struct rte_eth_dev *dev)
1635 struct ixgbe_hw *hw =
1636 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1640 PMD_INIT_FUNC_TRACE();
1642 if (hw->mac.type == ixgbe_mac_82598EB) {
1643 ctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
1644 ctrl &= ~IXGBE_VLNCTRL_VME;
1645 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, ctrl);
1648 /* Other 10G NIC, the VLAN strip can be setup per queue in RXDCTL */
1649 for (i = 0; i < dev->data->nb_rx_queues; i++) {
1650 ctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(i));
1651 ctrl &= ~IXGBE_RXDCTL_VME;
1652 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(i), ctrl);
1654 /* record those setting for HW strip per queue */
1655 ixgbe_vlan_hw_strip_bitmap_set(dev, i, 0);
1661 ixgbe_vlan_hw_strip_enable_all(struct rte_eth_dev *dev)
1663 struct ixgbe_hw *hw =
1664 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1668 PMD_INIT_FUNC_TRACE();
1670 if (hw->mac.type == ixgbe_mac_82598EB) {
1671 ctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
1672 ctrl |= IXGBE_VLNCTRL_VME;
1673 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, ctrl);
1676 /* Other 10G NIC, the VLAN strip can be setup per queue in RXDCTL */
1677 for (i = 0; i < dev->data->nb_rx_queues; i++) {
1678 ctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(i));
1679 ctrl |= IXGBE_RXDCTL_VME;
1680 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(i), ctrl);
1682 /* record those setting for HW strip per queue */
1683 ixgbe_vlan_hw_strip_bitmap_set(dev, i, 1);
1689 ixgbe_vlan_hw_extend_disable(struct rte_eth_dev *dev)
1691 struct ixgbe_hw *hw =
1692 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1695 PMD_INIT_FUNC_TRACE();
1697 /* DMATXCTRL: Geric Double VLAN Disable */
1698 ctrl = IXGBE_READ_REG(hw, IXGBE_DMATXCTL);
1699 ctrl &= ~IXGBE_DMATXCTL_GDV;
1700 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL, ctrl);
1702 /* CTRL_EXT: Global Double VLAN Disable */
1703 ctrl = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT);
1704 ctrl &= ~IXGBE_EXTENDED_VLAN;
1705 IXGBE_WRITE_REG(hw, IXGBE_CTRL_EXT, ctrl);
1710 ixgbe_vlan_hw_extend_enable(struct rte_eth_dev *dev)
1712 struct ixgbe_hw *hw =
1713 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1716 PMD_INIT_FUNC_TRACE();
1718 /* DMATXCTRL: Geric Double VLAN Enable */
1719 ctrl = IXGBE_READ_REG(hw, IXGBE_DMATXCTL);
1720 ctrl |= IXGBE_DMATXCTL_GDV;
1721 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL, ctrl);
1723 /* CTRL_EXT: Global Double VLAN Enable */
1724 ctrl = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT);
1725 ctrl |= IXGBE_EXTENDED_VLAN;
1726 IXGBE_WRITE_REG(hw, IXGBE_CTRL_EXT, ctrl);
1729 * VET EXT field in the EXVET register = 0x8100 by default
1730 * So no need to change. Same to VT field of DMATXCTL register
1735 ixgbe_vlan_offload_set(struct rte_eth_dev *dev, int mask)
1737 if(mask & ETH_VLAN_STRIP_MASK){
1738 if (dev->data->dev_conf.rxmode.hw_vlan_strip)
1739 ixgbe_vlan_hw_strip_enable_all(dev);
1741 ixgbe_vlan_hw_strip_disable_all(dev);
1744 if(mask & ETH_VLAN_FILTER_MASK){
1745 if (dev->data->dev_conf.rxmode.hw_vlan_filter)
1746 ixgbe_vlan_hw_filter_enable(dev);
1748 ixgbe_vlan_hw_filter_disable(dev);
1751 if(mask & ETH_VLAN_EXTEND_MASK){
1752 if (dev->data->dev_conf.rxmode.hw_vlan_extend)
1753 ixgbe_vlan_hw_extend_enable(dev);
1755 ixgbe_vlan_hw_extend_disable(dev);
1760 ixgbe_vmdq_vlan_hw_filter_enable(struct rte_eth_dev *dev)
1762 struct ixgbe_hw *hw =
1763 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1764 /* VLNCTRL: enable vlan filtering and allow all vlan tags through */
1765 uint32_t vlanctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
1766 vlanctrl |= IXGBE_VLNCTRL_VFE ; /* enable vlan filters */
1767 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlanctrl);
1771 ixgbe_check_vf_rss_rxq_num(struct rte_eth_dev *dev, uint16_t nb_rx_q)
1776 RTE_ETH_DEV_SRIOV(dev).active = ETH_64_POOLS;
1779 RTE_ETH_DEV_SRIOV(dev).active = ETH_32_POOLS;
1785 RTE_ETH_DEV_SRIOV(dev).nb_q_per_pool = nb_rx_q;
1786 RTE_ETH_DEV_SRIOV(dev).def_pool_q_idx = dev->pci_dev->max_vfs * nb_rx_q;
1792 ixgbe_check_mq_mode(struct rte_eth_dev *dev)
1794 struct rte_eth_conf *dev_conf = &dev->data->dev_conf;
1795 uint16_t nb_rx_q = dev->data->nb_rx_queues;
1796 uint16_t nb_tx_q = dev->data->nb_rx_queues;
1798 if (RTE_ETH_DEV_SRIOV(dev).active != 0) {
1799 /* check multi-queue mode */
1800 switch (dev_conf->rxmode.mq_mode) {
1801 case ETH_MQ_RX_VMDQ_DCB:
1802 case ETH_MQ_RX_VMDQ_DCB_RSS:
1803 /* DCB/RSS VMDQ in SRIOV mode, not implement yet */
1804 PMD_INIT_LOG(ERR, "SRIOV active,"
1805 " unsupported mq_mode rx %d.",
1806 dev_conf->rxmode.mq_mode);
1809 case ETH_MQ_RX_VMDQ_RSS:
1810 dev->data->dev_conf.rxmode.mq_mode = ETH_MQ_RX_VMDQ_RSS;
1811 if (nb_rx_q <= RTE_ETH_DEV_SRIOV(dev).nb_q_per_pool)
1812 if (ixgbe_check_vf_rss_rxq_num(dev, nb_rx_q)) {
1813 PMD_INIT_LOG(ERR, "SRIOV is active,"
1814 " invalid queue number"
1815 " for VMDQ RSS, allowed"
1816 " value are 1, 2 or 4.");
1820 case ETH_MQ_RX_VMDQ_ONLY:
1821 case ETH_MQ_RX_NONE:
1822 /* if nothing mq mode configure, use default scheme */
1823 dev->data->dev_conf.rxmode.mq_mode = ETH_MQ_RX_VMDQ_ONLY;
1824 if (RTE_ETH_DEV_SRIOV(dev).nb_q_per_pool > 1)
1825 RTE_ETH_DEV_SRIOV(dev).nb_q_per_pool = 1;
1827 default: /* ETH_MQ_RX_DCB, ETH_MQ_RX_DCB_RSS or ETH_MQ_TX_DCB*/
1828 /* SRIOV only works in VMDq enable mode */
1829 PMD_INIT_LOG(ERR, "SRIOV is active,"
1830 " wrong mq_mode rx %d.",
1831 dev_conf->rxmode.mq_mode);
1835 switch (dev_conf->txmode.mq_mode) {
1836 case ETH_MQ_TX_VMDQ_DCB:
1837 /* DCB VMDQ in SRIOV mode, not implement yet */
1838 PMD_INIT_LOG(ERR, "SRIOV is active,"
1839 " unsupported VMDQ mq_mode tx %d.",
1840 dev_conf->txmode.mq_mode);
1842 default: /* ETH_MQ_TX_VMDQ_ONLY or ETH_MQ_TX_NONE */
1843 dev->data->dev_conf.txmode.mq_mode = ETH_MQ_TX_VMDQ_ONLY;
1847 /* check valid queue number */
1848 if ((nb_rx_q > RTE_ETH_DEV_SRIOV(dev).nb_q_per_pool) ||
1849 (nb_tx_q > RTE_ETH_DEV_SRIOV(dev).nb_q_per_pool)) {
1850 PMD_INIT_LOG(ERR, "SRIOV is active,"
1851 " queue number must less equal to %d.",
1852 RTE_ETH_DEV_SRIOV(dev).nb_q_per_pool);
1856 /* check configuration for vmdb+dcb mode */
1857 if (dev_conf->rxmode.mq_mode == ETH_MQ_RX_VMDQ_DCB) {
1858 const struct rte_eth_vmdq_dcb_conf *conf;
1860 if (nb_rx_q != IXGBE_VMDQ_DCB_NB_QUEUES) {
1861 PMD_INIT_LOG(ERR, "VMDQ+DCB, nb_rx_q != %d.",
1862 IXGBE_VMDQ_DCB_NB_QUEUES);
1865 conf = &dev_conf->rx_adv_conf.vmdq_dcb_conf;
1866 if (!(conf->nb_queue_pools == ETH_16_POOLS ||
1867 conf->nb_queue_pools == ETH_32_POOLS)) {
1868 PMD_INIT_LOG(ERR, "VMDQ+DCB selected,"
1869 " nb_queue_pools must be %d or %d.",
1870 ETH_16_POOLS, ETH_32_POOLS);
1874 if (dev_conf->txmode.mq_mode == ETH_MQ_TX_VMDQ_DCB) {
1875 const struct rte_eth_vmdq_dcb_tx_conf *conf;
1877 if (nb_tx_q != IXGBE_VMDQ_DCB_NB_QUEUES) {
1878 PMD_INIT_LOG(ERR, "VMDQ+DCB, nb_tx_q != %d",
1879 IXGBE_VMDQ_DCB_NB_QUEUES);
1882 conf = &dev_conf->tx_adv_conf.vmdq_dcb_tx_conf;
1883 if (!(conf->nb_queue_pools == ETH_16_POOLS ||
1884 conf->nb_queue_pools == ETH_32_POOLS)) {
1885 PMD_INIT_LOG(ERR, "VMDQ+DCB selected,"
1886 " nb_queue_pools != %d and"
1887 " nb_queue_pools != %d.",
1888 ETH_16_POOLS, ETH_32_POOLS);
1893 /* For DCB mode check our configuration before we go further */
1894 if (dev_conf->rxmode.mq_mode == ETH_MQ_RX_DCB) {
1895 const struct rte_eth_dcb_rx_conf *conf;
1897 if (nb_rx_q != IXGBE_DCB_NB_QUEUES) {
1898 PMD_INIT_LOG(ERR, "DCB selected, nb_rx_q != %d.",
1899 IXGBE_DCB_NB_QUEUES);
1902 conf = &dev_conf->rx_adv_conf.dcb_rx_conf;
1903 if (!(conf->nb_tcs == ETH_4_TCS ||
1904 conf->nb_tcs == ETH_8_TCS)) {
1905 PMD_INIT_LOG(ERR, "DCB selected, nb_tcs != %d"
1906 " and nb_tcs != %d.",
1907 ETH_4_TCS, ETH_8_TCS);
1912 if (dev_conf->txmode.mq_mode == ETH_MQ_TX_DCB) {
1913 const struct rte_eth_dcb_tx_conf *conf;
1915 if (nb_tx_q != IXGBE_DCB_NB_QUEUES) {
1916 PMD_INIT_LOG(ERR, "DCB, nb_tx_q != %d.",
1917 IXGBE_DCB_NB_QUEUES);
1920 conf = &dev_conf->tx_adv_conf.dcb_tx_conf;
1921 if (!(conf->nb_tcs == ETH_4_TCS ||
1922 conf->nb_tcs == ETH_8_TCS)) {
1923 PMD_INIT_LOG(ERR, "DCB selected, nb_tcs != %d"
1924 " and nb_tcs != %d.",
1925 ETH_4_TCS, ETH_8_TCS);
1934 ixgbe_dev_configure(struct rte_eth_dev *dev)
1936 struct ixgbe_interrupt *intr =
1937 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
1938 struct ixgbe_adapter *adapter =
1939 (struct ixgbe_adapter *)dev->data->dev_private;
1942 PMD_INIT_FUNC_TRACE();
1943 /* multipe queue mode checking */
1944 ret = ixgbe_check_mq_mode(dev);
1946 PMD_DRV_LOG(ERR, "ixgbe_check_mq_mode fails with %d.",
1951 /* set flag to update link status after init */
1952 intr->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
1955 * Initialize to TRUE. If any of Rx queues doesn't meet the bulk
1956 * allocation or vector Rx preconditions we will reset it.
1958 adapter->rx_bulk_alloc_allowed = true;
1959 adapter->rx_vec_allowed = true;
1965 * Configure device link speed and setup link.
1966 * It returns 0 on success.
1969 ixgbe_dev_start(struct rte_eth_dev *dev)
1971 struct ixgbe_hw *hw =
1972 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1973 struct ixgbe_vf_info *vfinfo =
1974 *IXGBE_DEV_PRIVATE_TO_P_VFDATA(dev->data->dev_private);
1975 struct rte_intr_handle *intr_handle = &dev->pci_dev->intr_handle;
1976 uint32_t intr_vector = 0;
1977 int err, link_up = 0, negotiate = 0;
1983 PMD_INIT_FUNC_TRACE();
1985 /* IXGBE devices don't support half duplex */
1986 if ((dev->data->dev_conf.link_duplex != ETH_LINK_AUTONEG_DUPLEX) &&
1987 (dev->data->dev_conf.link_duplex != ETH_LINK_FULL_DUPLEX)) {
1988 PMD_INIT_LOG(ERR, "Invalid link_duplex (%hu) for port %hhu",
1989 dev->data->dev_conf.link_duplex,
1990 dev->data->port_id);
1994 /* disable uio/vfio intr/eventfd mapping */
1995 rte_intr_disable(intr_handle);
1998 hw->adapter_stopped = 0;
1999 ixgbe_stop_adapter(hw);
2001 /* reinitialize adapter
2002 * this calls reset and start */
2003 status = ixgbe_pf_reset_hw(hw);
2006 hw->mac.ops.start_hw(hw);
2007 hw->mac.get_link_status = true;
2009 /* configure PF module if SRIOV enabled */
2010 ixgbe_pf_host_configure(dev);
2012 /* check and configure queue intr-vector mapping */
2013 if ((rte_intr_cap_multiple(intr_handle) ||
2014 !RTE_ETH_DEV_SRIOV(dev).active) &&
2015 dev->data->dev_conf.intr_conf.rxq != 0) {
2016 intr_vector = dev->data->nb_rx_queues;
2017 if (rte_intr_efd_enable(intr_handle, intr_vector))
2021 if (rte_intr_dp_is_en(intr_handle) && !intr_handle->intr_vec) {
2022 intr_handle->intr_vec =
2023 rte_zmalloc("intr_vec",
2024 dev->data->nb_rx_queues * sizeof(int), 0);
2025 if (intr_handle->intr_vec == NULL) {
2026 PMD_INIT_LOG(ERR, "Failed to allocate %d rx_queues"
2027 " intr_vec\n", dev->data->nb_rx_queues);
2032 /* confiugre msix for sleep until rx interrupt */
2033 ixgbe_configure_msix(dev);
2035 /* initialize transmission unit */
2036 ixgbe_dev_tx_init(dev);
2038 /* This can fail when allocating mbufs for descriptor rings */
2039 err = ixgbe_dev_rx_init(dev);
2041 PMD_INIT_LOG(ERR, "Unable to initialize RX hardware");
2045 err = ixgbe_dev_rxtx_start(dev);
2047 PMD_INIT_LOG(ERR, "Unable to start rxtx queues");
2051 /* Skip link setup if loopback mode is enabled for 82599. */
2052 if (hw->mac.type == ixgbe_mac_82599EB &&
2053 dev->data->dev_conf.lpbk_mode == IXGBE_LPBK_82599_TX_RX)
2054 goto skip_link_setup;
2056 if (ixgbe_is_sfp(hw) && hw->phy.multispeed_fiber) {
2057 err = hw->mac.ops.setup_sfp(hw);
2062 if (hw->mac.ops.get_media_type(hw) == ixgbe_media_type_copper) {
2063 /* Turn on the copper */
2064 ixgbe_set_phy_power(hw, true);
2066 /* Turn on the laser */
2067 ixgbe_enable_tx_laser(hw);
2070 err = ixgbe_check_link(hw, &speed, &link_up, 0);
2073 dev->data->dev_link.link_status = link_up;
2075 err = ixgbe_get_link_capabilities(hw, &speed, &negotiate);
2079 switch(dev->data->dev_conf.link_speed) {
2080 case ETH_LINK_SPEED_AUTONEG:
2081 speed = (hw->mac.type != ixgbe_mac_82598EB) ?
2082 IXGBE_LINK_SPEED_82599_AUTONEG :
2083 IXGBE_LINK_SPEED_82598_AUTONEG;
2085 case ETH_LINK_SPEED_100:
2087 * Invalid for 82598 but error will be detected by
2088 * ixgbe_setup_link()
2090 speed = IXGBE_LINK_SPEED_100_FULL;
2092 case ETH_LINK_SPEED_1000:
2093 speed = IXGBE_LINK_SPEED_1GB_FULL;
2095 case ETH_LINK_SPEED_10000:
2096 speed = IXGBE_LINK_SPEED_10GB_FULL;
2099 PMD_INIT_LOG(ERR, "Invalid link_speed (%hu) for port %hhu",
2100 dev->data->dev_conf.link_speed,
2101 dev->data->port_id);
2105 err = ixgbe_setup_link(hw, speed, link_up);
2111 if (rte_intr_allow_others(intr_handle)) {
2112 /* check if lsc interrupt is enabled */
2113 if (dev->data->dev_conf.intr_conf.lsc != 0)
2114 ixgbe_dev_lsc_interrupt_setup(dev);
2116 rte_intr_callback_unregister(intr_handle,
2117 ixgbe_dev_interrupt_handler,
2119 if (dev->data->dev_conf.intr_conf.lsc != 0)
2120 PMD_INIT_LOG(INFO, "lsc won't enable because of"
2121 " no intr multiplex\n");
2124 /* check if rxq interrupt is enabled */
2125 if (dev->data->dev_conf.intr_conf.rxq != 0 &&
2126 rte_intr_dp_is_en(intr_handle))
2127 ixgbe_dev_rxq_interrupt_setup(dev);
2129 /* enable uio/vfio intr/eventfd mapping */
2130 rte_intr_enable(intr_handle);
2132 /* resume enabled intr since hw reset */
2133 ixgbe_enable_intr(dev);
2135 mask = ETH_VLAN_STRIP_MASK | ETH_VLAN_FILTER_MASK | \
2136 ETH_VLAN_EXTEND_MASK;
2137 ixgbe_vlan_offload_set(dev, mask);
2139 if (dev->data->dev_conf.rxmode.mq_mode == ETH_MQ_RX_VMDQ_ONLY) {
2140 /* Enable vlan filtering for VMDq */
2141 ixgbe_vmdq_vlan_hw_filter_enable(dev);
2144 /* Configure DCB hw */
2145 ixgbe_configure_dcb(dev);
2147 if (dev->data->dev_conf.fdir_conf.mode != RTE_FDIR_MODE_NONE) {
2148 err = ixgbe_fdir_configure(dev);
2153 /* Restore vf rate limit */
2154 if (vfinfo != NULL) {
2155 for (vf = 0; vf < dev->pci_dev->max_vfs; vf++)
2156 for (idx = 0; idx < IXGBE_MAX_QUEUE_NUM_PER_VF; idx++)
2157 if (vfinfo[vf].tx_rate[idx] != 0)
2158 ixgbe_set_vf_rate_limit(dev, vf,
2159 vfinfo[vf].tx_rate[idx],
2163 ixgbe_restore_statistics_mapping(dev);
2168 PMD_INIT_LOG(ERR, "failure in ixgbe_dev_start(): %d", err);
2169 ixgbe_dev_clear_queues(dev);
2174 * Stop device: disable rx and tx functions to allow for reconfiguring.
2177 ixgbe_dev_stop(struct rte_eth_dev *dev)
2179 struct rte_eth_link link;
2180 struct ixgbe_hw *hw =
2181 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2182 struct ixgbe_vf_info *vfinfo =
2183 *IXGBE_DEV_PRIVATE_TO_P_VFDATA(dev->data->dev_private);
2184 struct ixgbe_filter_info *filter_info =
2185 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
2186 struct ixgbe_5tuple_filter *p_5tuple, *p_5tuple_next;
2187 struct rte_intr_handle *intr_handle = &dev->pci_dev->intr_handle;
2190 PMD_INIT_FUNC_TRACE();
2192 /* disable interrupts */
2193 ixgbe_disable_intr(hw);
2195 /* disable intr eventfd mapping */
2196 rte_intr_disable(intr_handle);
2199 ixgbe_pf_reset_hw(hw);
2200 hw->adapter_stopped = 0;
2203 ixgbe_stop_adapter(hw);
2205 for (vf = 0; vfinfo != NULL &&
2206 vf < dev->pci_dev->max_vfs; vf++)
2207 vfinfo[vf].clear_to_send = false;
2209 if (hw->mac.ops.get_media_type(hw) == ixgbe_media_type_copper) {
2210 /* Turn off the copper */
2211 ixgbe_set_phy_power(hw, false);
2213 /* Turn off the laser */
2214 ixgbe_disable_tx_laser(hw);
2217 ixgbe_dev_clear_queues(dev);
2219 /* Clear stored conf */
2220 dev->data->scattered_rx = 0;
2223 /* Clear recorded link status */
2224 memset(&link, 0, sizeof(link));
2225 rte_ixgbe_dev_atomic_write_link_status(dev, &link);
2227 /* Remove all ntuple filters of the device */
2228 for (p_5tuple = TAILQ_FIRST(&filter_info->fivetuple_list);
2229 p_5tuple != NULL; p_5tuple = p_5tuple_next) {
2230 p_5tuple_next = TAILQ_NEXT(p_5tuple, entries);
2231 TAILQ_REMOVE(&filter_info->fivetuple_list,
2235 memset(filter_info->fivetuple_mask, 0,
2236 sizeof(uint32_t) * IXGBE_5TUPLE_ARRAY_SIZE);
2238 if (!rte_intr_allow_others(intr_handle))
2239 /* resume to the default handler */
2240 rte_intr_callback_register(intr_handle,
2241 ixgbe_dev_interrupt_handler,
2244 /* Clean datapath event and queue/vec mapping */
2245 rte_intr_efd_disable(intr_handle);
2246 if (intr_handle->intr_vec != NULL) {
2247 rte_free(intr_handle->intr_vec);
2248 intr_handle->intr_vec = NULL;
2253 * Set device link up: enable tx.
2256 ixgbe_dev_set_link_up(struct rte_eth_dev *dev)
2258 struct ixgbe_hw *hw =
2259 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2260 if (hw->mac.type == ixgbe_mac_82599EB) {
2261 #ifdef RTE_NIC_BYPASS
2262 if (hw->device_id == IXGBE_DEV_ID_82599_BYPASS) {
2263 /* Not suported in bypass mode */
2264 PMD_INIT_LOG(ERR, "Set link up is not supported "
2265 "by device id 0x%x", hw->device_id);
2271 if (hw->mac.ops.get_media_type(hw) == ixgbe_media_type_copper) {
2272 /* Turn on the copper */
2273 ixgbe_set_phy_power(hw, true);
2275 /* Turn on the laser */
2276 ixgbe_enable_tx_laser(hw);
2283 * Set device link down: disable tx.
2286 ixgbe_dev_set_link_down(struct rte_eth_dev *dev)
2288 struct ixgbe_hw *hw =
2289 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2290 if (hw->mac.type == ixgbe_mac_82599EB) {
2291 #ifdef RTE_NIC_BYPASS
2292 if (hw->device_id == IXGBE_DEV_ID_82599_BYPASS) {
2293 /* Not suported in bypass mode */
2294 PMD_INIT_LOG(ERR, "Set link down is not supported "
2295 "by device id 0x%x", hw->device_id);
2301 if (hw->mac.ops.get_media_type(hw) == ixgbe_media_type_copper) {
2302 /* Turn off the copper */
2303 ixgbe_set_phy_power(hw, false);
2305 /* Turn off the laser */
2306 ixgbe_disable_tx_laser(hw);
2313 * Reest and stop device.
2316 ixgbe_dev_close(struct rte_eth_dev *dev)
2318 struct ixgbe_hw *hw =
2319 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2321 PMD_INIT_FUNC_TRACE();
2323 ixgbe_pf_reset_hw(hw);
2325 ixgbe_dev_stop(dev);
2326 hw->adapter_stopped = 1;
2328 ixgbe_dev_free_queues(dev);
2330 ixgbe_disable_pcie_master(hw);
2332 /* reprogram the RAR[0] in case user changed it. */
2333 ixgbe_set_rar(hw, 0, hw->mac.addr, 0, IXGBE_RAH_AV);
2337 ixgbe_read_stats_registers(struct ixgbe_hw *hw,
2338 struct ixgbe_hw_stats *hw_stats,
2339 uint64_t *total_missed_rx, uint64_t *total_qbrc,
2340 uint64_t *total_qprc, uint64_t *total_qprdc)
2342 uint32_t bprc, lxon, lxoff, total;
2343 uint32_t delta_gprc = 0;
2345 /* Workaround for RX byte count not including CRC bytes when CRC
2346 + * strip is enabled. CRC bytes are removed from counters when crc_strip
2349 int crc_strip = (IXGBE_READ_REG(hw, IXGBE_HLREG0) &
2350 IXGBE_HLREG0_RXCRCSTRP);
2352 hw_stats->crcerrs += IXGBE_READ_REG(hw, IXGBE_CRCERRS);
2353 hw_stats->illerrc += IXGBE_READ_REG(hw, IXGBE_ILLERRC);
2354 hw_stats->errbc += IXGBE_READ_REG(hw, IXGBE_ERRBC);
2355 hw_stats->mspdc += IXGBE_READ_REG(hw, IXGBE_MSPDC);
2357 for (i = 0; i < 8; i++) {
2359 mp = IXGBE_READ_REG(hw, IXGBE_MPC(i));
2360 /* global total per queue */
2361 hw_stats->mpc[i] += mp;
2362 /* Running comprehensive total for stats display */
2363 *total_missed_rx += hw_stats->mpc[i];
2364 if (hw->mac.type == ixgbe_mac_82598EB) {
2365 hw_stats->rnbc[i] +=
2366 IXGBE_READ_REG(hw, IXGBE_RNBC(i));
2367 hw_stats->pxonrxc[i] +=
2368 IXGBE_READ_REG(hw, IXGBE_PXONRXC(i));
2369 hw_stats->pxoffrxc[i] +=
2370 IXGBE_READ_REG(hw, IXGBE_PXOFFRXC(i));
2372 hw_stats->pxonrxc[i] +=
2373 IXGBE_READ_REG(hw, IXGBE_PXONRXCNT(i));
2374 hw_stats->pxoffrxc[i] +=
2375 IXGBE_READ_REG(hw, IXGBE_PXOFFRXCNT(i));
2376 hw_stats->pxon2offc[i] +=
2377 IXGBE_READ_REG(hw, IXGBE_PXON2OFFCNT(i));
2379 hw_stats->pxontxc[i] +=
2380 IXGBE_READ_REG(hw, IXGBE_PXONTXC(i));
2381 hw_stats->pxofftxc[i] +=
2382 IXGBE_READ_REG(hw, IXGBE_PXOFFTXC(i));
2384 for (i = 0; i < IXGBE_QUEUE_STAT_COUNTERS; i++) {
2385 uint32_t delta_qprc = IXGBE_READ_REG(hw, IXGBE_QPRC(i));
2386 uint32_t delta_qptc = IXGBE_READ_REG(hw, IXGBE_QPTC(i));
2387 uint32_t delta_qprdc = IXGBE_READ_REG(hw, IXGBE_QPRDC(i));
2389 delta_gprc += delta_qprc;
2391 hw_stats->qprc[i] += delta_qprc;
2392 hw_stats->qptc[i] += delta_qptc;
2394 hw_stats->qbrc[i] += IXGBE_READ_REG(hw, IXGBE_QBRC_L(i));
2395 hw_stats->qbrc[i] +=
2396 ((uint64_t)IXGBE_READ_REG(hw, IXGBE_QBRC_H(i)) << 32);
2398 hw_stats->qbrc[i] -= delta_qprc * ETHER_CRC_LEN;
2400 hw_stats->qbtc[i] += IXGBE_READ_REG(hw, IXGBE_QBTC_L(i));
2401 hw_stats->qbtc[i] +=
2402 ((uint64_t)IXGBE_READ_REG(hw, IXGBE_QBTC_H(i)) << 32);
2404 hw_stats->qprdc[i] += delta_qprdc;
2405 *total_qprdc += hw_stats->qprdc[i];
2407 *total_qprc += hw_stats->qprc[i];
2408 *total_qbrc += hw_stats->qbrc[i];
2410 hw_stats->mlfc += IXGBE_READ_REG(hw, IXGBE_MLFC);
2411 hw_stats->mrfc += IXGBE_READ_REG(hw, IXGBE_MRFC);
2412 hw_stats->rlec += IXGBE_READ_REG(hw, IXGBE_RLEC);
2415 * An errata states that gprc actually counts good + missed packets:
2416 * Workaround to set gprc to summated queue packet receives
2418 hw_stats->gprc = *total_qprc;
2420 if (hw->mac.type != ixgbe_mac_82598EB) {
2421 hw_stats->gorc += IXGBE_READ_REG(hw, IXGBE_GORCL);
2422 hw_stats->gorc += ((u64)IXGBE_READ_REG(hw, IXGBE_GORCH) << 32);
2423 hw_stats->gotc += IXGBE_READ_REG(hw, IXGBE_GOTCL);
2424 hw_stats->gotc += ((u64)IXGBE_READ_REG(hw, IXGBE_GOTCH) << 32);
2425 hw_stats->tor += IXGBE_READ_REG(hw, IXGBE_TORL);
2426 hw_stats->tor += ((u64)IXGBE_READ_REG(hw, IXGBE_TORH) << 32);
2427 hw_stats->lxonrxc += IXGBE_READ_REG(hw, IXGBE_LXONRXCNT);
2428 hw_stats->lxoffrxc += IXGBE_READ_REG(hw, IXGBE_LXOFFRXCNT);
2430 hw_stats->lxonrxc += IXGBE_READ_REG(hw, IXGBE_LXONRXC);
2431 hw_stats->lxoffrxc += IXGBE_READ_REG(hw, IXGBE_LXOFFRXC);
2432 /* 82598 only has a counter in the high register */
2433 hw_stats->gorc += IXGBE_READ_REG(hw, IXGBE_GORCH);
2434 hw_stats->gotc += IXGBE_READ_REG(hw, IXGBE_GOTCH);
2435 hw_stats->tor += IXGBE_READ_REG(hw, IXGBE_TORH);
2437 uint64_t old_tpr = hw_stats->tpr;
2439 hw_stats->tpr += IXGBE_READ_REG(hw, IXGBE_TPR);
2440 hw_stats->tpt += IXGBE_READ_REG(hw, IXGBE_TPT);
2443 hw_stats->gorc -= delta_gprc * ETHER_CRC_LEN;
2445 uint64_t delta_gptc = IXGBE_READ_REG(hw, IXGBE_GPTC);
2446 hw_stats->gptc += delta_gptc;
2447 hw_stats->gotc -= delta_gptc * ETHER_CRC_LEN;
2448 hw_stats->tor -= (hw_stats->tpr - old_tpr) * ETHER_CRC_LEN;
2451 * Workaround: mprc hardware is incorrectly counting
2452 * broadcasts, so for now we subtract those.
2454 bprc = IXGBE_READ_REG(hw, IXGBE_BPRC);
2455 hw_stats->bprc += bprc;
2456 hw_stats->mprc += IXGBE_READ_REG(hw, IXGBE_MPRC);
2457 if (hw->mac.type == ixgbe_mac_82598EB)
2458 hw_stats->mprc -= bprc;
2460 hw_stats->prc64 += IXGBE_READ_REG(hw, IXGBE_PRC64);
2461 hw_stats->prc127 += IXGBE_READ_REG(hw, IXGBE_PRC127);
2462 hw_stats->prc255 += IXGBE_READ_REG(hw, IXGBE_PRC255);
2463 hw_stats->prc511 += IXGBE_READ_REG(hw, IXGBE_PRC511);
2464 hw_stats->prc1023 += IXGBE_READ_REG(hw, IXGBE_PRC1023);
2465 hw_stats->prc1522 += IXGBE_READ_REG(hw, IXGBE_PRC1522);
2467 lxon = IXGBE_READ_REG(hw, IXGBE_LXONTXC);
2468 hw_stats->lxontxc += lxon;
2469 lxoff = IXGBE_READ_REG(hw, IXGBE_LXOFFTXC);
2470 hw_stats->lxofftxc += lxoff;
2471 total = lxon + lxoff;
2473 hw_stats->mptc += IXGBE_READ_REG(hw, IXGBE_MPTC);
2474 hw_stats->ptc64 += IXGBE_READ_REG(hw, IXGBE_PTC64);
2475 hw_stats->gptc -= total;
2476 hw_stats->mptc -= total;
2477 hw_stats->ptc64 -= total;
2478 hw_stats->gotc -= total * ETHER_MIN_LEN;
2480 hw_stats->ruc += IXGBE_READ_REG(hw, IXGBE_RUC);
2481 hw_stats->rfc += IXGBE_READ_REG(hw, IXGBE_RFC);
2482 hw_stats->roc += IXGBE_READ_REG(hw, IXGBE_ROC);
2483 hw_stats->rjc += IXGBE_READ_REG(hw, IXGBE_RJC);
2484 hw_stats->mngprc += IXGBE_READ_REG(hw, IXGBE_MNGPRC);
2485 hw_stats->mngpdc += IXGBE_READ_REG(hw, IXGBE_MNGPDC);
2486 hw_stats->mngptc += IXGBE_READ_REG(hw, IXGBE_MNGPTC);
2487 hw_stats->ptc127 += IXGBE_READ_REG(hw, IXGBE_PTC127);
2488 hw_stats->ptc255 += IXGBE_READ_REG(hw, IXGBE_PTC255);
2489 hw_stats->ptc511 += IXGBE_READ_REG(hw, IXGBE_PTC511);
2490 hw_stats->ptc1023 += IXGBE_READ_REG(hw, IXGBE_PTC1023);
2491 hw_stats->ptc1522 += IXGBE_READ_REG(hw, IXGBE_PTC1522);
2492 hw_stats->bptc += IXGBE_READ_REG(hw, IXGBE_BPTC);
2493 hw_stats->xec += IXGBE_READ_REG(hw, IXGBE_XEC);
2494 hw_stats->fccrc += IXGBE_READ_REG(hw, IXGBE_FCCRC);
2495 hw_stats->fclast += IXGBE_READ_REG(hw, IXGBE_FCLAST);
2496 /* Only read FCOE on 82599 */
2497 if (hw->mac.type != ixgbe_mac_82598EB) {
2498 hw_stats->fcoerpdc += IXGBE_READ_REG(hw, IXGBE_FCOERPDC);
2499 hw_stats->fcoeprc += IXGBE_READ_REG(hw, IXGBE_FCOEPRC);
2500 hw_stats->fcoeptc += IXGBE_READ_REG(hw, IXGBE_FCOEPTC);
2501 hw_stats->fcoedwrc += IXGBE_READ_REG(hw, IXGBE_FCOEDWRC);
2502 hw_stats->fcoedwtc += IXGBE_READ_REG(hw, IXGBE_FCOEDWTC);
2505 /* Flow Director Stats registers */
2506 hw_stats->fdirmatch += IXGBE_READ_REG(hw, IXGBE_FDIRMATCH);
2507 hw_stats->fdirmiss += IXGBE_READ_REG(hw, IXGBE_FDIRMISS);
2511 * This function is based on ixgbe_update_stats_counters() in ixgbe/ixgbe.c
2514 ixgbe_dev_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats)
2516 struct ixgbe_hw *hw =
2517 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2518 struct ixgbe_hw_stats *hw_stats =
2519 IXGBE_DEV_PRIVATE_TO_STATS(dev->data->dev_private);
2520 uint64_t total_missed_rx, total_qbrc, total_qprc, total_qprdc;
2523 total_missed_rx = 0;
2528 ixgbe_read_stats_registers(hw, hw_stats, &total_missed_rx, &total_qbrc,
2529 &total_qprc, &total_qprdc);
2534 /* Fill out the rte_eth_stats statistics structure */
2535 stats->ipackets = total_qprc;
2536 stats->ibytes = total_qbrc;
2537 stats->opackets = hw_stats->gptc;
2538 stats->obytes = hw_stats->gotc;
2540 for (i = 0; i < IXGBE_QUEUE_STAT_COUNTERS; i++) {
2541 stats->q_ipackets[i] = hw_stats->qprc[i];
2542 stats->q_opackets[i] = hw_stats->qptc[i];
2543 stats->q_ibytes[i] = hw_stats->qbrc[i];
2544 stats->q_obytes[i] = hw_stats->qbtc[i];
2545 stats->q_errors[i] = hw_stats->qprdc[i];
2549 stats->imissed = total_missed_rx;
2550 stats->ierrors = hw_stats->crcerrs +
2567 ixgbe_dev_stats_reset(struct rte_eth_dev *dev)
2569 struct ixgbe_hw_stats *stats =
2570 IXGBE_DEV_PRIVATE_TO_STATS(dev->data->dev_private);
2572 /* HW registers are cleared on read */
2573 ixgbe_dev_stats_get(dev, NULL);
2575 /* Reset software totals */
2576 memset(stats, 0, sizeof(*stats));
2579 /* This function calculates the number of xstats based on the current config */
2581 ixgbe_xstats_calc_num(void) {
2582 return IXGBE_NB_HW_STATS + (IXGBE_NB_RXQ_PRIO_STATS * 8) +
2583 (IXGBE_NB_TXQ_PRIO_STATS * 8);
2587 ixgbe_dev_xstats_get(struct rte_eth_dev *dev, struct rte_eth_xstats *xstats,
2590 struct ixgbe_hw *hw =
2591 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2592 struct ixgbe_hw_stats *hw_stats =
2593 IXGBE_DEV_PRIVATE_TO_STATS(dev->data->dev_private);
2594 uint64_t total_missed_rx, total_qbrc, total_qprc, total_qprdc;
2595 unsigned i, stat, count = 0;
2597 count = ixgbe_xstats_calc_num();
2602 total_missed_rx = 0;
2607 ixgbe_read_stats_registers(hw, hw_stats, &total_missed_rx, &total_qbrc,
2608 &total_qprc, &total_qprdc);
2610 /* If this is a reset xstats is NULL, and we have cleared the
2611 * registers by reading them.
2616 /* Extended stats from ixgbe_hw_stats */
2618 for (i = 0; i < IXGBE_NB_HW_STATS; i++) {
2619 snprintf(xstats[count].name, sizeof(xstats[count].name), "%s",
2620 rte_ixgbe_stats_strings[i].name);
2621 xstats[count].value = *(uint64_t *)(((char *)hw_stats) +
2622 rte_ixgbe_stats_strings[i].offset);
2626 /* RX Priority Stats */
2627 for (stat = 0; stat < IXGBE_NB_RXQ_PRIO_STATS; stat++) {
2628 for (i = 0; i < 8; i++) {
2629 snprintf(xstats[count].name, sizeof(xstats[count].name),
2630 "rx_priority%u_%s", i,
2631 rte_ixgbe_rxq_strings[stat].name);
2632 xstats[count].value = *(uint64_t *)(((char *)hw_stats) +
2633 rte_ixgbe_rxq_strings[stat].offset +
2634 (sizeof(uint64_t) * i));
2639 /* TX Priority Stats */
2640 for (stat = 0; stat < IXGBE_NB_TXQ_PRIO_STATS; stat++) {
2641 for (i = 0; i < 8; i++) {
2642 snprintf(xstats[count].name, sizeof(xstats[count].name),
2643 "tx_priority%u_%s", i,
2644 rte_ixgbe_txq_strings[stat].name);
2645 xstats[count].value = *(uint64_t *)(((char *)hw_stats) +
2646 rte_ixgbe_txq_strings[stat].offset +
2647 (sizeof(uint64_t) * i));
2656 ixgbe_dev_xstats_reset(struct rte_eth_dev *dev)
2658 struct ixgbe_hw_stats *stats =
2659 IXGBE_DEV_PRIVATE_TO_STATS(dev->data->dev_private);
2661 unsigned count = ixgbe_xstats_calc_num();
2663 /* HW registers are cleared on read */
2664 ixgbe_dev_xstats_get(dev, NULL, count);
2666 /* Reset software totals */
2667 memset(stats, 0, sizeof(*stats));
2671 ixgbevf_update_stats(struct rte_eth_dev *dev)
2673 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2674 struct ixgbevf_hw_stats *hw_stats = (struct ixgbevf_hw_stats*)
2675 IXGBE_DEV_PRIVATE_TO_STATS(dev->data->dev_private);
2677 /* Good Rx packet, include VF loopback */
2678 UPDATE_VF_STAT(IXGBE_VFGPRC,
2679 hw_stats->last_vfgprc, hw_stats->vfgprc);
2681 /* Good Rx octets, include VF loopback */
2682 UPDATE_VF_STAT_36BIT(IXGBE_VFGORC_LSB, IXGBE_VFGORC_MSB,
2683 hw_stats->last_vfgorc, hw_stats->vfgorc);
2685 /* Good Tx packet, include VF loopback */
2686 UPDATE_VF_STAT(IXGBE_VFGPTC,
2687 hw_stats->last_vfgptc, hw_stats->vfgptc);
2689 /* Good Tx octets, include VF loopback */
2690 UPDATE_VF_STAT_36BIT(IXGBE_VFGOTC_LSB, IXGBE_VFGOTC_MSB,
2691 hw_stats->last_vfgotc, hw_stats->vfgotc);
2693 /* Rx Multicst Packet */
2694 UPDATE_VF_STAT(IXGBE_VFMPRC,
2695 hw_stats->last_vfmprc, hw_stats->vfmprc);
2699 ixgbevf_dev_xstats_get(struct rte_eth_dev *dev, struct rte_eth_xstats *xstats,
2702 struct ixgbevf_hw_stats *hw_stats = (struct ixgbevf_hw_stats *)
2703 IXGBE_DEV_PRIVATE_TO_STATS(dev->data->dev_private);
2706 if (n < IXGBEVF_NB_XSTATS)
2707 return IXGBEVF_NB_XSTATS;
2709 ixgbevf_update_stats(dev);
2714 /* Extended stats */
2715 for (i = 0; i < IXGBEVF_NB_XSTATS; i++) {
2716 snprintf(xstats[i].name, sizeof(xstats[i].name),
2717 "%s", rte_ixgbevf_stats_strings[i].name);
2718 xstats[i].value = *(uint64_t *)(((char *)hw_stats) +
2719 rte_ixgbevf_stats_strings[i].offset);
2722 return IXGBEVF_NB_XSTATS;
2726 ixgbevf_dev_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats)
2728 struct ixgbevf_hw_stats *hw_stats = (struct ixgbevf_hw_stats *)
2729 IXGBE_DEV_PRIVATE_TO_STATS(dev->data->dev_private);
2731 ixgbevf_update_stats(dev);
2736 stats->ipackets = hw_stats->vfgprc;
2737 stats->ibytes = hw_stats->vfgorc;
2738 stats->opackets = hw_stats->vfgptc;
2739 stats->obytes = hw_stats->vfgotc;
2740 stats->imcasts = hw_stats->vfmprc;
2741 /* stats->imcasts should be removed as imcasts is deprecated */
2745 ixgbevf_dev_stats_reset(struct rte_eth_dev *dev)
2747 struct ixgbevf_hw_stats *hw_stats = (struct ixgbevf_hw_stats*)
2748 IXGBE_DEV_PRIVATE_TO_STATS(dev->data->dev_private);
2750 /* Sync HW register to the last stats */
2751 ixgbevf_dev_stats_get(dev, NULL);
2753 /* reset HW current stats*/
2754 hw_stats->vfgprc = 0;
2755 hw_stats->vfgorc = 0;
2756 hw_stats->vfgptc = 0;
2757 hw_stats->vfgotc = 0;
2758 hw_stats->vfmprc = 0;
2763 ixgbe_dev_info_get(struct rte_eth_dev *dev, struct rte_eth_dev_info *dev_info)
2765 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2767 dev_info->max_rx_queues = (uint16_t)hw->mac.max_rx_queues;
2768 dev_info->max_tx_queues = (uint16_t)hw->mac.max_tx_queues;
2769 dev_info->min_rx_bufsize = 1024; /* cf BSIZEPACKET in SRRCTL register */
2770 dev_info->max_rx_pktlen = 15872; /* includes CRC, cf MAXFRS register */
2771 dev_info->max_mac_addrs = hw->mac.num_rar_entries;
2772 dev_info->max_hash_mac_addrs = IXGBE_VMDQ_NUM_UC_MAC;
2773 dev_info->max_vfs = dev->pci_dev->max_vfs;
2774 if (hw->mac.type == ixgbe_mac_82598EB)
2775 dev_info->max_vmdq_pools = ETH_16_POOLS;
2777 dev_info->max_vmdq_pools = ETH_64_POOLS;
2778 dev_info->vmdq_queue_num = dev_info->max_rx_queues;
2779 dev_info->rx_offload_capa =
2780 DEV_RX_OFFLOAD_VLAN_STRIP |
2781 DEV_RX_OFFLOAD_IPV4_CKSUM |
2782 DEV_RX_OFFLOAD_UDP_CKSUM |
2783 DEV_RX_OFFLOAD_TCP_CKSUM;
2786 * RSC is only supported by 82599 and x540 PF devices in a non-SR-IOV
2789 if ((hw->mac.type == ixgbe_mac_82599EB ||
2790 hw->mac.type == ixgbe_mac_X540) &&
2791 !RTE_ETH_DEV_SRIOV(dev).active)
2792 dev_info->rx_offload_capa |= DEV_RX_OFFLOAD_TCP_LRO;
2794 dev_info->tx_offload_capa =
2795 DEV_TX_OFFLOAD_VLAN_INSERT |
2796 DEV_TX_OFFLOAD_IPV4_CKSUM |
2797 DEV_TX_OFFLOAD_UDP_CKSUM |
2798 DEV_TX_OFFLOAD_TCP_CKSUM |
2799 DEV_TX_OFFLOAD_SCTP_CKSUM |
2800 DEV_TX_OFFLOAD_TCP_TSO;
2802 dev_info->default_rxconf = (struct rte_eth_rxconf) {
2804 .pthresh = IXGBE_DEFAULT_RX_PTHRESH,
2805 .hthresh = IXGBE_DEFAULT_RX_HTHRESH,
2806 .wthresh = IXGBE_DEFAULT_RX_WTHRESH,
2808 .rx_free_thresh = IXGBE_DEFAULT_RX_FREE_THRESH,
2812 dev_info->default_txconf = (struct rte_eth_txconf) {
2814 .pthresh = IXGBE_DEFAULT_TX_PTHRESH,
2815 .hthresh = IXGBE_DEFAULT_TX_HTHRESH,
2816 .wthresh = IXGBE_DEFAULT_TX_WTHRESH,
2818 .tx_free_thresh = IXGBE_DEFAULT_TX_FREE_THRESH,
2819 .tx_rs_thresh = IXGBE_DEFAULT_TX_RSBIT_THRESH,
2820 .txq_flags = ETH_TXQ_FLAGS_NOMULTSEGS |
2821 ETH_TXQ_FLAGS_NOOFFLOADS,
2824 dev_info->rx_desc_lim = rx_desc_lim;
2825 dev_info->tx_desc_lim = tx_desc_lim;
2827 dev_info->hash_key_size = IXGBE_HKEY_MAX_INDEX * sizeof(uint32_t);
2828 dev_info->reta_size = ixgbe_reta_size_get(hw->mac.type);
2829 dev_info->flow_type_rss_offloads = IXGBE_RSS_OFFLOAD_ALL;
2833 ixgbevf_dev_info_get(struct rte_eth_dev *dev,
2834 struct rte_eth_dev_info *dev_info)
2836 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2838 dev_info->max_rx_queues = (uint16_t)hw->mac.max_rx_queues;
2839 dev_info->max_tx_queues = (uint16_t)hw->mac.max_tx_queues;
2840 dev_info->min_rx_bufsize = 1024; /* cf BSIZEPACKET in SRRCTL reg */
2841 dev_info->max_rx_pktlen = 15872; /* includes CRC, cf MAXFRS reg */
2842 dev_info->max_mac_addrs = hw->mac.num_rar_entries;
2843 dev_info->max_hash_mac_addrs = IXGBE_VMDQ_NUM_UC_MAC;
2844 dev_info->max_vfs = dev->pci_dev->max_vfs;
2845 if (hw->mac.type == ixgbe_mac_82598EB)
2846 dev_info->max_vmdq_pools = ETH_16_POOLS;
2848 dev_info->max_vmdq_pools = ETH_64_POOLS;
2849 dev_info->rx_offload_capa = DEV_RX_OFFLOAD_VLAN_STRIP |
2850 DEV_RX_OFFLOAD_IPV4_CKSUM |
2851 DEV_RX_OFFLOAD_UDP_CKSUM |
2852 DEV_RX_OFFLOAD_TCP_CKSUM;
2853 dev_info->tx_offload_capa = DEV_TX_OFFLOAD_VLAN_INSERT |
2854 DEV_TX_OFFLOAD_IPV4_CKSUM |
2855 DEV_TX_OFFLOAD_UDP_CKSUM |
2856 DEV_TX_OFFLOAD_TCP_CKSUM |
2857 DEV_TX_OFFLOAD_SCTP_CKSUM |
2858 DEV_TX_OFFLOAD_TCP_TSO;
2860 dev_info->default_rxconf = (struct rte_eth_rxconf) {
2862 .pthresh = IXGBE_DEFAULT_RX_PTHRESH,
2863 .hthresh = IXGBE_DEFAULT_RX_HTHRESH,
2864 .wthresh = IXGBE_DEFAULT_RX_WTHRESH,
2866 .rx_free_thresh = IXGBE_DEFAULT_RX_FREE_THRESH,
2870 dev_info->default_txconf = (struct rte_eth_txconf) {
2872 .pthresh = IXGBE_DEFAULT_TX_PTHRESH,
2873 .hthresh = IXGBE_DEFAULT_TX_HTHRESH,
2874 .wthresh = IXGBE_DEFAULT_TX_WTHRESH,
2876 .tx_free_thresh = IXGBE_DEFAULT_TX_FREE_THRESH,
2877 .tx_rs_thresh = IXGBE_DEFAULT_TX_RSBIT_THRESH,
2878 .txq_flags = ETH_TXQ_FLAGS_NOMULTSEGS |
2879 ETH_TXQ_FLAGS_NOOFFLOADS,
2882 dev_info->rx_desc_lim = rx_desc_lim;
2883 dev_info->tx_desc_lim = tx_desc_lim;
2886 /* return 0 means link status changed, -1 means not changed */
2888 ixgbe_dev_link_update(struct rte_eth_dev *dev, int wait_to_complete)
2890 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2891 struct rte_eth_link link, old;
2892 ixgbe_link_speed link_speed = IXGBE_LINK_SPEED_UNKNOWN;
2896 link.link_status = 0;
2897 link.link_speed = 0;
2898 link.link_duplex = 0;
2899 memset(&old, 0, sizeof(old));
2900 rte_ixgbe_dev_atomic_read_link_status(dev, &old);
2902 hw->mac.get_link_status = true;
2904 /* check if it needs to wait to complete, if lsc interrupt is enabled */
2905 if (wait_to_complete == 0 || dev->data->dev_conf.intr_conf.lsc != 0)
2906 diag = ixgbe_check_link(hw, &link_speed, &link_up, 0);
2908 diag = ixgbe_check_link(hw, &link_speed, &link_up, 1);
2911 link.link_speed = ETH_LINK_SPEED_100;
2912 link.link_duplex = ETH_LINK_HALF_DUPLEX;
2913 rte_ixgbe_dev_atomic_write_link_status(dev, &link);
2914 if (link.link_status == old.link_status)
2920 rte_ixgbe_dev_atomic_write_link_status(dev, &link);
2921 if (link.link_status == old.link_status)
2925 link.link_status = 1;
2926 link.link_duplex = ETH_LINK_FULL_DUPLEX;
2928 switch (link_speed) {
2930 case IXGBE_LINK_SPEED_UNKNOWN:
2931 link.link_duplex = ETH_LINK_HALF_DUPLEX;
2932 link.link_speed = ETH_LINK_SPEED_100;
2935 case IXGBE_LINK_SPEED_100_FULL:
2936 link.link_speed = ETH_LINK_SPEED_100;
2939 case IXGBE_LINK_SPEED_1GB_FULL:
2940 link.link_speed = ETH_LINK_SPEED_1000;
2943 case IXGBE_LINK_SPEED_10GB_FULL:
2944 link.link_speed = ETH_LINK_SPEED_10000;
2947 rte_ixgbe_dev_atomic_write_link_status(dev, &link);
2949 if (link.link_status == old.link_status)
2956 ixgbe_dev_promiscuous_enable(struct rte_eth_dev *dev)
2958 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2961 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
2962 fctrl |= (IXGBE_FCTRL_UPE | IXGBE_FCTRL_MPE);
2963 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
2967 ixgbe_dev_promiscuous_disable(struct rte_eth_dev *dev)
2969 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2972 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
2973 fctrl &= (~IXGBE_FCTRL_UPE);
2974 if (dev->data->all_multicast == 1)
2975 fctrl |= IXGBE_FCTRL_MPE;
2977 fctrl &= (~IXGBE_FCTRL_MPE);
2978 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
2982 ixgbe_dev_allmulticast_enable(struct rte_eth_dev *dev)
2984 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2987 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
2988 fctrl |= IXGBE_FCTRL_MPE;
2989 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
2993 ixgbe_dev_allmulticast_disable(struct rte_eth_dev *dev)
2995 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2998 if (dev->data->promiscuous == 1)
2999 return; /* must remain in all_multicast mode */
3001 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
3002 fctrl &= (~IXGBE_FCTRL_MPE);
3003 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
3007 * It clears the interrupt causes and enables the interrupt.
3008 * It will be called once only during nic initialized.
3011 * Pointer to struct rte_eth_dev.
3014 * - On success, zero.
3015 * - On failure, a negative value.
3018 ixgbe_dev_lsc_interrupt_setup(struct rte_eth_dev *dev)
3020 struct ixgbe_interrupt *intr =
3021 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
3023 ixgbe_dev_link_status_print(dev);
3024 intr->mask |= IXGBE_EICR_LSC;
3030 * It clears the interrupt causes and enables the interrupt.
3031 * It will be called once only during nic initialized.
3034 * Pointer to struct rte_eth_dev.
3037 * - On success, zero.
3038 * - On failure, a negative value.
3041 ixgbe_dev_rxq_interrupt_setup(struct rte_eth_dev *dev)
3043 struct ixgbe_interrupt *intr =
3044 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
3046 intr->mask |= IXGBE_EICR_RTX_QUEUE;
3052 * It reads ICR and sets flag (IXGBE_EICR_LSC) for the link_update.
3055 * Pointer to struct rte_eth_dev.
3058 * - On success, zero.
3059 * - On failure, a negative value.
3062 ixgbe_dev_interrupt_get_status(struct rte_eth_dev *dev)
3065 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3066 struct ixgbe_interrupt *intr =
3067 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
3069 /* clear all cause mask */
3070 ixgbe_disable_intr(hw);
3072 /* read-on-clear nic registers here */
3073 eicr = IXGBE_READ_REG(hw, IXGBE_EICR);
3074 PMD_DRV_LOG(DEBUG, "eicr %x", eicr);
3078 /* set flag for async link update */
3079 if (eicr & IXGBE_EICR_LSC)
3080 intr->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
3082 if (eicr & IXGBE_EICR_MAILBOX)
3083 intr->flags |= IXGBE_FLAG_MAILBOX;
3089 * It gets and then prints the link status.
3092 * Pointer to struct rte_eth_dev.
3095 * - On success, zero.
3096 * - On failure, a negative value.
3099 ixgbe_dev_link_status_print(struct rte_eth_dev *dev)
3101 struct rte_eth_link link;
3103 memset(&link, 0, sizeof(link));
3104 rte_ixgbe_dev_atomic_read_link_status(dev, &link);
3105 if (link.link_status) {
3106 PMD_INIT_LOG(INFO, "Port %d: Link Up - speed %u Mbps - %s",
3107 (int)(dev->data->port_id),
3108 (unsigned)link.link_speed,
3109 link.link_duplex == ETH_LINK_FULL_DUPLEX ?
3110 "full-duplex" : "half-duplex");
3112 PMD_INIT_LOG(INFO, " Port %d: Link Down",
3113 (int)(dev->data->port_id));
3115 PMD_INIT_LOG(DEBUG, "PCI Address: %04d:%02d:%02d:%d",
3116 dev->pci_dev->addr.domain,
3117 dev->pci_dev->addr.bus,
3118 dev->pci_dev->addr.devid,
3119 dev->pci_dev->addr.function);
3123 * It executes link_update after knowing an interrupt occurred.
3126 * Pointer to struct rte_eth_dev.
3129 * - On success, zero.
3130 * - On failure, a negative value.
3133 ixgbe_dev_interrupt_action(struct rte_eth_dev *dev)
3135 struct ixgbe_interrupt *intr =
3136 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
3138 struct rte_eth_link link;
3139 int intr_enable_delay = false;
3141 PMD_DRV_LOG(DEBUG, "intr action type %d", intr->flags);
3143 if (intr->flags & IXGBE_FLAG_MAILBOX) {
3144 ixgbe_pf_mbx_process(dev);
3145 intr->flags &= ~IXGBE_FLAG_MAILBOX;
3148 if (intr->flags & IXGBE_FLAG_NEED_LINK_UPDATE) {
3149 /* get the link status before link update, for predicting later */
3150 memset(&link, 0, sizeof(link));
3151 rte_ixgbe_dev_atomic_read_link_status(dev, &link);
3153 ixgbe_dev_link_update(dev, 0);
3156 if (!link.link_status)
3157 /* handle it 1 sec later, wait it being stable */
3158 timeout = IXGBE_LINK_UP_CHECK_TIMEOUT;
3159 /* likely to down */
3161 /* handle it 4 sec later, wait it being stable */
3162 timeout = IXGBE_LINK_DOWN_CHECK_TIMEOUT;
3164 ixgbe_dev_link_status_print(dev);
3166 intr_enable_delay = true;
3169 if (intr_enable_delay) {
3170 if (rte_eal_alarm_set(timeout * 1000,
3171 ixgbe_dev_interrupt_delayed_handler, (void*)dev) < 0)
3172 PMD_DRV_LOG(ERR, "Error setting alarm");
3174 PMD_DRV_LOG(DEBUG, "enable intr immediately");
3175 ixgbe_enable_intr(dev);
3176 rte_intr_enable(&(dev->pci_dev->intr_handle));
3184 * Interrupt handler which shall be registered for alarm callback for delayed
3185 * handling specific interrupt to wait for the stable nic state. As the
3186 * NIC interrupt state is not stable for ixgbe after link is just down,
3187 * it needs to wait 4 seconds to get the stable status.
3190 * Pointer to interrupt handle.
3192 * The address of parameter (struct rte_eth_dev *) regsitered before.
3198 ixgbe_dev_interrupt_delayed_handler(void *param)
3200 struct rte_eth_dev *dev = (struct rte_eth_dev *)param;
3201 struct ixgbe_interrupt *intr =
3202 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
3203 struct ixgbe_hw *hw =
3204 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3207 eicr = IXGBE_READ_REG(hw, IXGBE_EICR);
3208 if (eicr & IXGBE_EICR_MAILBOX)
3209 ixgbe_pf_mbx_process(dev);
3211 if (intr->flags & IXGBE_FLAG_NEED_LINK_UPDATE) {
3212 ixgbe_dev_link_update(dev, 0);
3213 intr->flags &= ~IXGBE_FLAG_NEED_LINK_UPDATE;
3214 ixgbe_dev_link_status_print(dev);
3215 _rte_eth_dev_callback_process(dev, RTE_ETH_EVENT_INTR_LSC);
3218 PMD_DRV_LOG(DEBUG, "enable intr in delayed handler S[%08x]", eicr);
3219 ixgbe_enable_intr(dev);
3220 rte_intr_enable(&(dev->pci_dev->intr_handle));
3224 * Interrupt handler triggered by NIC for handling
3225 * specific interrupt.
3228 * Pointer to interrupt handle.
3230 * The address of parameter (struct rte_eth_dev *) regsitered before.
3236 ixgbe_dev_interrupt_handler(__rte_unused struct rte_intr_handle *handle,
3239 struct rte_eth_dev *dev = (struct rte_eth_dev *)param;
3241 ixgbe_dev_interrupt_get_status(dev);
3242 ixgbe_dev_interrupt_action(dev);
3246 ixgbe_dev_led_on(struct rte_eth_dev *dev)
3248 struct ixgbe_hw *hw;
3250 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3251 return (ixgbe_led_on(hw, 0) == IXGBE_SUCCESS ? 0 : -ENOTSUP);
3255 ixgbe_dev_led_off(struct rte_eth_dev *dev)
3257 struct ixgbe_hw *hw;
3259 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3260 return (ixgbe_led_off(hw, 0) == IXGBE_SUCCESS ? 0 : -ENOTSUP);
3264 ixgbe_flow_ctrl_get(struct rte_eth_dev *dev, struct rte_eth_fc_conf *fc_conf)
3266 struct ixgbe_hw *hw;
3272 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3274 fc_conf->pause_time = hw->fc.pause_time;
3275 fc_conf->high_water = hw->fc.high_water[0];
3276 fc_conf->low_water = hw->fc.low_water[0];
3277 fc_conf->send_xon = hw->fc.send_xon;
3278 fc_conf->autoneg = !hw->fc.disable_fc_autoneg;
3281 * Return rx_pause status according to actual setting of
3284 mflcn_reg = IXGBE_READ_REG(hw, IXGBE_MFLCN);
3285 if (mflcn_reg & (IXGBE_MFLCN_RPFCE | IXGBE_MFLCN_RFCE))
3291 * Return tx_pause status according to actual setting of
3294 fccfg_reg = IXGBE_READ_REG(hw, IXGBE_FCCFG);
3295 if (fccfg_reg & (IXGBE_FCCFG_TFCE_802_3X | IXGBE_FCCFG_TFCE_PRIORITY))
3300 if (rx_pause && tx_pause)
3301 fc_conf->mode = RTE_FC_FULL;
3303 fc_conf->mode = RTE_FC_RX_PAUSE;
3305 fc_conf->mode = RTE_FC_TX_PAUSE;
3307 fc_conf->mode = RTE_FC_NONE;
3313 ixgbe_flow_ctrl_set(struct rte_eth_dev *dev, struct rte_eth_fc_conf *fc_conf)
3315 struct ixgbe_hw *hw;
3317 uint32_t rx_buf_size;
3318 uint32_t max_high_water;
3320 enum ixgbe_fc_mode rte_fcmode_2_ixgbe_fcmode[] = {
3327 PMD_INIT_FUNC_TRACE();
3329 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3330 rx_buf_size = IXGBE_READ_REG(hw, IXGBE_RXPBSIZE(0));
3331 PMD_INIT_LOG(DEBUG, "Rx packet buffer size = 0x%x", rx_buf_size);
3334 * At least reserve one Ethernet frame for watermark
3335 * high_water/low_water in kilo bytes for ixgbe
3337 max_high_water = (rx_buf_size - ETHER_MAX_LEN) >> IXGBE_RXPBSIZE_SHIFT;
3338 if ((fc_conf->high_water > max_high_water) ||
3339 (fc_conf->high_water < fc_conf->low_water)) {
3340 PMD_INIT_LOG(ERR, "Invalid high/low water setup value in KB");
3341 PMD_INIT_LOG(ERR, "High_water must <= 0x%x", max_high_water);
3345 hw->fc.requested_mode = rte_fcmode_2_ixgbe_fcmode[fc_conf->mode];
3346 hw->fc.pause_time = fc_conf->pause_time;
3347 hw->fc.high_water[0] = fc_conf->high_water;
3348 hw->fc.low_water[0] = fc_conf->low_water;
3349 hw->fc.send_xon = fc_conf->send_xon;
3350 hw->fc.disable_fc_autoneg = !fc_conf->autoneg;
3352 err = ixgbe_fc_enable(hw);
3354 /* Not negotiated is not an error case */
3355 if ((err == IXGBE_SUCCESS) || (err == IXGBE_ERR_FC_NOT_NEGOTIATED)) {
3357 /* check if we want to forward MAC frames - driver doesn't have native
3358 * capability to do that, so we'll write the registers ourselves */
3360 mflcn = IXGBE_READ_REG(hw, IXGBE_MFLCN);
3362 /* set or clear MFLCN.PMCF bit depending on configuration */
3363 if (fc_conf->mac_ctrl_frame_fwd != 0)
3364 mflcn |= IXGBE_MFLCN_PMCF;
3366 mflcn &= ~IXGBE_MFLCN_PMCF;
3368 IXGBE_WRITE_REG(hw, IXGBE_MFLCN, mflcn);
3369 IXGBE_WRITE_FLUSH(hw);
3374 PMD_INIT_LOG(ERR, "ixgbe_fc_enable = 0x%x", err);
3379 * ixgbe_pfc_enable_generic - Enable flow control
3380 * @hw: pointer to hardware structure
3381 * @tc_num: traffic class number
3382 * Enable flow control according to the current settings.
3385 ixgbe_dcb_pfc_enable_generic(struct ixgbe_hw *hw,uint8_t tc_num)
3388 uint32_t mflcn_reg, fccfg_reg;
3390 uint32_t fcrtl, fcrth;
3394 /* Validate the water mark configuration */
3395 if (!hw->fc.pause_time) {
3396 ret_val = IXGBE_ERR_INVALID_LINK_SETTINGS;
3400 /* Low water mark of zero causes XOFF floods */
3401 if (hw->fc.current_mode & ixgbe_fc_tx_pause) {
3402 /* High/Low water can not be 0 */
3403 if( (!hw->fc.high_water[tc_num])|| (!hw->fc.low_water[tc_num])) {
3404 PMD_INIT_LOG(ERR, "Invalid water mark configuration");
3405 ret_val = IXGBE_ERR_INVALID_LINK_SETTINGS;
3409 if(hw->fc.low_water[tc_num] >= hw->fc.high_water[tc_num]) {
3410 PMD_INIT_LOG(ERR, "Invalid water mark configuration");
3411 ret_val = IXGBE_ERR_INVALID_LINK_SETTINGS;
3415 /* Negotiate the fc mode to use */
3416 ixgbe_fc_autoneg(hw);
3418 /* Disable any previous flow control settings */
3419 mflcn_reg = IXGBE_READ_REG(hw, IXGBE_MFLCN);
3420 mflcn_reg &= ~(IXGBE_MFLCN_RPFCE_SHIFT | IXGBE_MFLCN_RFCE|IXGBE_MFLCN_RPFCE);
3422 fccfg_reg = IXGBE_READ_REG(hw, IXGBE_FCCFG);
3423 fccfg_reg &= ~(IXGBE_FCCFG_TFCE_802_3X | IXGBE_FCCFG_TFCE_PRIORITY);
3425 switch (hw->fc.current_mode) {
3428 * If the count of enabled RX Priority Flow control >1,
3429 * and the TX pause can not be disabled
3432 for (i =0; i < IXGBE_DCB_MAX_TRAFFIC_CLASS; i++) {
3433 reg = IXGBE_READ_REG(hw, IXGBE_FCRTH_82599(i));
3434 if (reg & IXGBE_FCRTH_FCEN)
3438 fccfg_reg |=IXGBE_FCCFG_TFCE_PRIORITY;
3440 case ixgbe_fc_rx_pause:
3442 * Rx Flow control is enabled and Tx Flow control is
3443 * disabled by software override. Since there really
3444 * isn't a way to advertise that we are capable of RX
3445 * Pause ONLY, we will advertise that we support both
3446 * symmetric and asymmetric Rx PAUSE. Later, we will
3447 * disable the adapter's ability to send PAUSE frames.
3449 mflcn_reg |= IXGBE_MFLCN_RPFCE;
3451 * If the count of enabled RX Priority Flow control >1,
3452 * and the TX pause can not be disabled
3455 for (i =0; i < IXGBE_DCB_MAX_TRAFFIC_CLASS; i++) {
3456 reg = IXGBE_READ_REG(hw, IXGBE_FCRTH_82599(i));
3457 if (reg & IXGBE_FCRTH_FCEN)
3461 fccfg_reg |=IXGBE_FCCFG_TFCE_PRIORITY;
3463 case ixgbe_fc_tx_pause:
3465 * Tx Flow control is enabled, and Rx Flow control is
3466 * disabled by software override.
3468 fccfg_reg |=IXGBE_FCCFG_TFCE_PRIORITY;
3471 /* Flow control (both Rx and Tx) is enabled by SW override. */
3472 mflcn_reg |= IXGBE_MFLCN_RPFCE;
3473 fccfg_reg |= IXGBE_FCCFG_TFCE_PRIORITY;
3476 PMD_DRV_LOG(DEBUG, "Flow control param set incorrectly");
3477 ret_val = IXGBE_ERR_CONFIG;
3482 /* Set 802.3x based flow control settings. */
3483 mflcn_reg |= IXGBE_MFLCN_DPF;
3484 IXGBE_WRITE_REG(hw, IXGBE_MFLCN, mflcn_reg);
3485 IXGBE_WRITE_REG(hw, IXGBE_FCCFG, fccfg_reg);
3487 /* Set up and enable Rx high/low water mark thresholds, enable XON. */
3488 if ((hw->fc.current_mode & ixgbe_fc_tx_pause) &&
3489 hw->fc.high_water[tc_num]) {
3490 fcrtl = (hw->fc.low_water[tc_num] << 10) | IXGBE_FCRTL_XONE;
3491 IXGBE_WRITE_REG(hw, IXGBE_FCRTL_82599(tc_num), fcrtl);
3492 fcrth = (hw->fc.high_water[tc_num] << 10) | IXGBE_FCRTH_FCEN;
3494 IXGBE_WRITE_REG(hw, IXGBE_FCRTL_82599(tc_num), 0);
3496 * In order to prevent Tx hangs when the internal Tx
3497 * switch is enabled we must set the high water mark
3498 * to the maximum FCRTH value. This allows the Tx
3499 * switch to function even under heavy Rx workloads.
3501 fcrth = IXGBE_READ_REG(hw, IXGBE_RXPBSIZE(tc_num)) - 32;
3503 IXGBE_WRITE_REG(hw, IXGBE_FCRTH_82599(tc_num), fcrth);
3505 /* Configure pause time (2 TCs per register) */
3506 reg = hw->fc.pause_time * 0x00010001;
3507 for (i = 0; i < (IXGBE_DCB_MAX_TRAFFIC_CLASS / 2); i++)
3508 IXGBE_WRITE_REG(hw, IXGBE_FCTTV(i), reg);
3510 /* Configure flow control refresh threshold value */
3511 IXGBE_WRITE_REG(hw, IXGBE_FCRTV, hw->fc.pause_time / 2);
3518 ixgbe_dcb_pfc_enable(struct rte_eth_dev *dev,uint8_t tc_num)
3520 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3521 int32_t ret_val = IXGBE_NOT_IMPLEMENTED;
3523 if(hw->mac.type != ixgbe_mac_82598EB) {
3524 ret_val = ixgbe_dcb_pfc_enable_generic(hw,tc_num);
3530 ixgbe_priority_flow_ctrl_set(struct rte_eth_dev *dev, struct rte_eth_pfc_conf *pfc_conf)
3533 uint32_t rx_buf_size;
3534 uint32_t max_high_water;
3536 uint8_t map[IXGBE_DCB_MAX_USER_PRIORITY] = { 0 };
3537 struct ixgbe_hw *hw =
3538 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3539 struct ixgbe_dcb_config *dcb_config =
3540 IXGBE_DEV_PRIVATE_TO_DCB_CFG(dev->data->dev_private);
3542 enum ixgbe_fc_mode rte_fcmode_2_ixgbe_fcmode[] = {
3549 PMD_INIT_FUNC_TRACE();
3551 ixgbe_dcb_unpack_map_cee(dcb_config, IXGBE_DCB_RX_CONFIG, map);
3552 tc_num = map[pfc_conf->priority];
3553 rx_buf_size = IXGBE_READ_REG(hw, IXGBE_RXPBSIZE(tc_num));
3554 PMD_INIT_LOG(DEBUG, "Rx packet buffer size = 0x%x", rx_buf_size);
3556 * At least reserve one Ethernet frame for watermark
3557 * high_water/low_water in kilo bytes for ixgbe
3559 max_high_water = (rx_buf_size - ETHER_MAX_LEN) >> IXGBE_RXPBSIZE_SHIFT;
3560 if ((pfc_conf->fc.high_water > max_high_water) ||
3561 (pfc_conf->fc.high_water <= pfc_conf->fc.low_water)) {
3562 PMD_INIT_LOG(ERR, "Invalid high/low water setup value in KB");
3563 PMD_INIT_LOG(ERR, "High_water must <= 0x%x", max_high_water);
3567 hw->fc.requested_mode = rte_fcmode_2_ixgbe_fcmode[pfc_conf->fc.mode];
3568 hw->fc.pause_time = pfc_conf->fc.pause_time;
3569 hw->fc.send_xon = pfc_conf->fc.send_xon;
3570 hw->fc.low_water[tc_num] = pfc_conf->fc.low_water;
3571 hw->fc.high_water[tc_num] = pfc_conf->fc.high_water;
3573 err = ixgbe_dcb_pfc_enable(dev,tc_num);
3575 /* Not negotiated is not an error case */
3576 if ((err == IXGBE_SUCCESS) || (err == IXGBE_ERR_FC_NOT_NEGOTIATED))
3579 PMD_INIT_LOG(ERR, "ixgbe_dcb_pfc_enable = 0x%x", err);
3584 ixgbe_dev_rss_reta_update(struct rte_eth_dev *dev,
3585 struct rte_eth_rss_reta_entry64 *reta_conf,
3590 uint16_t idx, shift;
3591 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3592 uint16_t sp_reta_size;
3595 PMD_INIT_FUNC_TRACE();
3597 if (!ixgbe_rss_update_sp(hw->mac.type)) {
3598 PMD_DRV_LOG(ERR, "RSS reta update is not supported on this "
3603 sp_reta_size = ixgbe_reta_size_get(hw->mac.type);
3604 if (reta_size != sp_reta_size) {
3605 PMD_DRV_LOG(ERR, "The size of hash lookup table configured "
3606 "(%d) doesn't match the number hardware can supported "
3607 "(%d)\n", reta_size, sp_reta_size);
3611 for (i = 0; i < reta_size; i += IXGBE_4_BIT_WIDTH) {
3612 idx = i / RTE_RETA_GROUP_SIZE;
3613 shift = i % RTE_RETA_GROUP_SIZE;
3614 mask = (uint8_t)((reta_conf[idx].mask >> shift) &
3618 reta_reg = ixgbe_reta_reg_get(hw->mac.type, i);
3619 if (mask == IXGBE_4_BIT_MASK)
3622 r = IXGBE_READ_REG(hw, reta_reg);
3623 for (j = 0, reta = 0; j < IXGBE_4_BIT_WIDTH; j++) {
3624 if (mask & (0x1 << j))
3625 reta |= reta_conf[idx].reta[shift + j] <<
3628 reta |= r & (IXGBE_8_BIT_MASK <<
3631 IXGBE_WRITE_REG(hw, reta_reg, reta);
3638 ixgbe_dev_rss_reta_query(struct rte_eth_dev *dev,
3639 struct rte_eth_rss_reta_entry64 *reta_conf,
3644 uint16_t idx, shift;
3645 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3646 uint16_t sp_reta_size;
3649 PMD_INIT_FUNC_TRACE();
3650 sp_reta_size = ixgbe_reta_size_get(hw->mac.type);
3651 if (reta_size != sp_reta_size) {
3652 PMD_DRV_LOG(ERR, "The size of hash lookup table configured "
3653 "(%d) doesn't match the number hardware can supported "
3654 "(%d)\n", reta_size, sp_reta_size);
3658 for (i = 0; i < reta_size; i += IXGBE_4_BIT_WIDTH) {
3659 idx = i / RTE_RETA_GROUP_SIZE;
3660 shift = i % RTE_RETA_GROUP_SIZE;
3661 mask = (uint8_t)((reta_conf[idx].mask >> shift) &
3666 reta_reg = ixgbe_reta_reg_get(hw->mac.type, i);
3667 reta = IXGBE_READ_REG(hw, reta_reg);
3668 for (j = 0; j < IXGBE_4_BIT_WIDTH; j++) {
3669 if (mask & (0x1 << j))
3670 reta_conf[idx].reta[shift + j] =
3671 ((reta >> (CHAR_BIT * j)) &
3680 ixgbe_add_rar(struct rte_eth_dev *dev, struct ether_addr *mac_addr,
3681 uint32_t index, uint32_t pool)
3683 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3684 uint32_t enable_addr = 1;
3686 ixgbe_set_rar(hw, index, mac_addr->addr_bytes, pool, enable_addr);
3690 ixgbe_remove_rar(struct rte_eth_dev *dev, uint32_t index)
3692 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3694 ixgbe_clear_rar(hw, index);
3698 ixgbe_set_default_mac_addr(struct rte_eth_dev *dev, struct ether_addr *addr)
3700 ixgbe_remove_rar(dev, 0);
3702 ixgbe_add_rar(dev, addr, 0, 0);
3706 ixgbe_dev_mtu_set(struct rte_eth_dev *dev, uint16_t mtu)
3710 struct ixgbe_hw *hw;
3711 struct rte_eth_dev_info dev_info;
3712 uint32_t frame_size = mtu + ETHER_HDR_LEN + ETHER_CRC_LEN;
3714 ixgbe_dev_info_get(dev, &dev_info);
3716 /* check that mtu is within the allowed range */
3717 if ((mtu < ETHER_MIN_MTU) || (frame_size > dev_info.max_rx_pktlen))
3720 /* refuse mtu that requires the support of scattered packets when this
3721 * feature has not been enabled before. */
3722 if (!dev->data->scattered_rx &&
3723 (frame_size + 2 * IXGBE_VLAN_TAG_SIZE >
3724 dev->data->min_rx_buf_size - RTE_PKTMBUF_HEADROOM))
3727 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3728 hlreg0 = IXGBE_READ_REG(hw, IXGBE_HLREG0);
3730 /* switch to jumbo mode if needed */
3731 if (frame_size > ETHER_MAX_LEN) {
3732 dev->data->dev_conf.rxmode.jumbo_frame = 1;
3733 hlreg0 |= IXGBE_HLREG0_JUMBOEN;
3735 dev->data->dev_conf.rxmode.jumbo_frame = 0;
3736 hlreg0 &= ~IXGBE_HLREG0_JUMBOEN;
3738 IXGBE_WRITE_REG(hw, IXGBE_HLREG0, hlreg0);
3740 /* update max frame size */
3741 dev->data->dev_conf.rxmode.max_rx_pkt_len = frame_size;
3743 maxfrs = IXGBE_READ_REG(hw, IXGBE_MAXFRS);
3744 maxfrs &= 0x0000FFFF;
3745 maxfrs |= (dev->data->dev_conf.rxmode.max_rx_pkt_len << 16);
3746 IXGBE_WRITE_REG(hw, IXGBE_MAXFRS, maxfrs);
3752 * Virtual Function operations
3755 ixgbevf_intr_disable(struct ixgbe_hw *hw)
3757 PMD_INIT_FUNC_TRACE();
3759 /* Clear interrupt mask to stop from interrupts being generated */
3760 IXGBE_WRITE_REG(hw, IXGBE_VTEIMC, IXGBE_VF_IRQ_CLEAR_MASK);
3762 IXGBE_WRITE_FLUSH(hw);
3766 ixgbevf_intr_enable(struct ixgbe_hw *hw)
3768 PMD_INIT_FUNC_TRACE();
3770 /* VF enable interrupt autoclean */
3771 IXGBE_WRITE_REG(hw, IXGBE_VTEIAM, IXGBE_VF_IRQ_ENABLE_MASK);
3772 IXGBE_WRITE_REG(hw, IXGBE_VTEIAC, IXGBE_VF_IRQ_ENABLE_MASK);
3773 IXGBE_WRITE_REG(hw, IXGBE_VTEIMS, IXGBE_VF_IRQ_ENABLE_MASK);
3775 IXGBE_WRITE_FLUSH(hw);
3779 ixgbevf_dev_configure(struct rte_eth_dev *dev)
3781 struct rte_eth_conf* conf = &dev->data->dev_conf;
3782 struct ixgbe_adapter *adapter =
3783 (struct ixgbe_adapter *)dev->data->dev_private;
3785 PMD_INIT_LOG(DEBUG, "Configured Virtual Function port id: %d",
3786 dev->data->port_id);
3789 * VF has no ability to enable/disable HW CRC
3790 * Keep the persistent behavior the same as Host PF
3792 #ifndef RTE_LIBRTE_IXGBE_PF_DISABLE_STRIP_CRC
3793 if (!conf->rxmode.hw_strip_crc) {
3794 PMD_INIT_LOG(NOTICE, "VF can't disable HW CRC Strip");
3795 conf->rxmode.hw_strip_crc = 1;
3798 if (conf->rxmode.hw_strip_crc) {
3799 PMD_INIT_LOG(NOTICE, "VF can't enable HW CRC Strip");
3800 conf->rxmode.hw_strip_crc = 0;
3805 * Initialize to TRUE. If any of Rx queues doesn't meet the bulk
3806 * allocation or vector Rx preconditions we will reset it.
3808 adapter->rx_bulk_alloc_allowed = true;
3809 adapter->rx_vec_allowed = true;
3815 ixgbevf_dev_start(struct rte_eth_dev *dev)
3817 struct ixgbe_hw *hw =
3818 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3819 uint32_t intr_vector = 0;
3820 struct rte_intr_handle *intr_handle = &dev->pci_dev->intr_handle;
3824 PMD_INIT_FUNC_TRACE();
3826 hw->mac.ops.reset_hw(hw);
3827 hw->mac.get_link_status = true;
3829 /* negotiate mailbox API version to use with the PF. */
3830 ixgbevf_negotiate_api(hw);
3832 ixgbevf_dev_tx_init(dev);
3834 /* This can fail when allocating mbufs for descriptor rings */
3835 err = ixgbevf_dev_rx_init(dev);
3837 PMD_INIT_LOG(ERR, "Unable to initialize RX hardware (%d)", err);
3838 ixgbe_dev_clear_queues(dev);
3843 ixgbevf_set_vfta_all(dev,1);
3846 mask = ETH_VLAN_STRIP_MASK | ETH_VLAN_FILTER_MASK | \
3847 ETH_VLAN_EXTEND_MASK;
3848 ixgbevf_vlan_offload_set(dev, mask);
3850 ixgbevf_dev_rxtx_start(dev);
3852 /* check and configure queue intr-vector mapping */
3853 if (dev->data->dev_conf.intr_conf.rxq != 0) {
3854 intr_vector = dev->data->nb_rx_queues;
3855 if (rte_intr_efd_enable(intr_handle, intr_vector))
3859 if (rte_intr_dp_is_en(intr_handle) && !intr_handle->intr_vec) {
3860 intr_handle->intr_vec =
3861 rte_zmalloc("intr_vec",
3862 dev->data->nb_rx_queues * sizeof(int), 0);
3863 if (intr_handle->intr_vec == NULL) {
3864 PMD_INIT_LOG(ERR, "Failed to allocate %d rx_queues"
3865 " intr_vec\n", dev->data->nb_rx_queues);
3869 ixgbevf_configure_msix(dev);
3871 rte_intr_enable(intr_handle);
3873 /* Re-enable interrupt for VF */
3874 ixgbevf_intr_enable(hw);
3880 ixgbevf_dev_stop(struct rte_eth_dev *dev)
3882 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3883 struct rte_intr_handle *intr_handle = &dev->pci_dev->intr_handle;
3885 PMD_INIT_FUNC_TRACE();
3887 hw->adapter_stopped = 1;
3888 ixgbe_stop_adapter(hw);
3891 * Clear what we set, but we still keep shadow_vfta to
3892 * restore after device starts
3894 ixgbevf_set_vfta_all(dev,0);
3896 /* Clear stored conf */
3897 dev->data->scattered_rx = 0;
3899 ixgbe_dev_clear_queues(dev);
3901 /* disable intr eventfd mapping */
3902 rte_intr_disable(intr_handle);
3904 /* Clean datapath event and queue/vec mapping */
3905 rte_intr_efd_disable(intr_handle);
3906 if (intr_handle->intr_vec != NULL) {
3907 rte_free(intr_handle->intr_vec);
3908 intr_handle->intr_vec = NULL;
3913 ixgbevf_dev_close(struct rte_eth_dev *dev)
3915 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3917 PMD_INIT_FUNC_TRACE();
3921 ixgbevf_dev_stop(dev);
3923 ixgbe_dev_free_queues(dev);
3925 /* reprogram the RAR[0] in case user changed it. */
3926 ixgbe_set_rar(hw, 0, hw->mac.addr, 0, IXGBE_RAH_AV);
3929 static void ixgbevf_set_vfta_all(struct rte_eth_dev *dev, bool on)
3931 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3932 struct ixgbe_vfta * shadow_vfta =
3933 IXGBE_DEV_PRIVATE_TO_VFTA(dev->data->dev_private);
3934 int i = 0, j = 0, vfta = 0, mask = 1;
3936 for (i = 0; i < IXGBE_VFTA_SIZE; i++){
3937 vfta = shadow_vfta->vfta[i];
3940 for (j = 0; j < 32; j++){
3942 ixgbe_set_vfta(hw, (i<<5)+j, 0, on);
3951 ixgbevf_vlan_filter_set(struct rte_eth_dev *dev, uint16_t vlan_id, int on)
3953 struct ixgbe_hw *hw =
3954 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3955 struct ixgbe_vfta * shadow_vfta =
3956 IXGBE_DEV_PRIVATE_TO_VFTA(dev->data->dev_private);
3957 uint32_t vid_idx = 0;
3958 uint32_t vid_bit = 0;
3961 PMD_INIT_FUNC_TRACE();
3963 /* vind is not used in VF driver, set to 0, check ixgbe_set_vfta_vf */
3964 ret = ixgbe_set_vfta(hw, vlan_id, 0, !!on);
3966 PMD_INIT_LOG(ERR, "Unable to set VF vlan");
3969 vid_idx = (uint32_t) ((vlan_id >> 5) & 0x7F);
3970 vid_bit = (uint32_t) (1 << (vlan_id & 0x1F));
3972 /* Save what we set and retore it after device reset */
3974 shadow_vfta->vfta[vid_idx] |= vid_bit;
3976 shadow_vfta->vfta[vid_idx] &= ~vid_bit;
3982 ixgbevf_vlan_strip_queue_set(struct rte_eth_dev *dev, uint16_t queue, int on)
3984 struct ixgbe_hw *hw =
3985 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3988 PMD_INIT_FUNC_TRACE();
3990 if(queue >= hw->mac.max_rx_queues)
3993 ctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(queue));
3995 ctrl |= IXGBE_RXDCTL_VME;
3997 ctrl &= ~IXGBE_RXDCTL_VME;
3998 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(queue), ctrl);
4000 ixgbe_vlan_hw_strip_bitmap_set( dev, queue, on);
4004 ixgbevf_vlan_offload_set(struct rte_eth_dev *dev, int mask)
4006 struct ixgbe_hw *hw =
4007 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4011 /* VF function only support hw strip feature, others are not support */
4012 if(mask & ETH_VLAN_STRIP_MASK){
4013 on = !!(dev->data->dev_conf.rxmode.hw_vlan_strip);
4015 for(i=0; i < hw->mac.max_rx_queues; i++)
4016 ixgbevf_vlan_strip_queue_set(dev,i,on);
4021 ixgbe_vmdq_mode_check(struct ixgbe_hw *hw)
4025 /* we only need to do this if VMDq is enabled */
4026 reg_val = IXGBE_READ_REG(hw, IXGBE_VT_CTL);
4027 if (!(reg_val & IXGBE_VT_CTL_VT_ENABLE)) {
4028 PMD_INIT_LOG(ERR, "VMDq must be enabled for this setting");
4036 ixgbe_uta_vector(struct ixgbe_hw *hw, struct ether_addr* uc_addr)
4038 uint32_t vector = 0;
4039 switch (hw->mac.mc_filter_type) {
4040 case 0: /* use bits [47:36] of the address */
4041 vector = ((uc_addr->addr_bytes[4] >> 4) |
4042 (((uint16_t)uc_addr->addr_bytes[5]) << 4));
4044 case 1: /* use bits [46:35] of the address */
4045 vector = ((uc_addr->addr_bytes[4] >> 3) |
4046 (((uint16_t)uc_addr->addr_bytes[5]) << 5));
4048 case 2: /* use bits [45:34] of the address */
4049 vector = ((uc_addr->addr_bytes[4] >> 2) |
4050 (((uint16_t)uc_addr->addr_bytes[5]) << 6));
4052 case 3: /* use bits [43:32] of the address */
4053 vector = ((uc_addr->addr_bytes[4]) |
4054 (((uint16_t)uc_addr->addr_bytes[5]) << 8));
4056 default: /* Invalid mc_filter_type */
4060 /* vector can only be 12-bits or boundary will be exceeded */
4066 ixgbe_uc_hash_table_set(struct rte_eth_dev *dev,struct ether_addr* mac_addr,
4074 const uint32_t ixgbe_uta_idx_mask = 0x7F;
4075 const uint32_t ixgbe_uta_bit_shift = 5;
4076 const uint32_t ixgbe_uta_bit_mask = (0x1 << ixgbe_uta_bit_shift) - 1;
4077 const uint32_t bit1 = 0x1;
4079 struct ixgbe_hw *hw =
4080 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4081 struct ixgbe_uta_info *uta_info =
4082 IXGBE_DEV_PRIVATE_TO_UTA(dev->data->dev_private);
4084 /* The UTA table only exists on 82599 hardware and newer */
4085 if (hw->mac.type < ixgbe_mac_82599EB)
4088 vector = ixgbe_uta_vector(hw,mac_addr);
4089 uta_idx = (vector >> ixgbe_uta_bit_shift) & ixgbe_uta_idx_mask;
4090 uta_shift = vector & ixgbe_uta_bit_mask;
4092 rc = ((uta_info->uta_shadow[uta_idx] >> uta_shift & bit1) != 0);
4096 reg_val = IXGBE_READ_REG(hw, IXGBE_UTA(uta_idx));
4098 uta_info->uta_in_use++;
4099 reg_val |= (bit1 << uta_shift);
4100 uta_info->uta_shadow[uta_idx] |= (bit1 << uta_shift);
4102 uta_info->uta_in_use--;
4103 reg_val &= ~(bit1 << uta_shift);
4104 uta_info->uta_shadow[uta_idx] &= ~(bit1 << uta_shift);
4107 IXGBE_WRITE_REG(hw, IXGBE_UTA(uta_idx), reg_val);
4109 if (uta_info->uta_in_use > 0)
4110 IXGBE_WRITE_REG(hw, IXGBE_MCSTCTRL,
4111 IXGBE_MCSTCTRL_MFE | hw->mac.mc_filter_type);
4113 IXGBE_WRITE_REG(hw, IXGBE_MCSTCTRL,hw->mac.mc_filter_type);
4119 ixgbe_uc_all_hash_table_set(struct rte_eth_dev *dev, uint8_t on)
4122 struct ixgbe_hw *hw =
4123 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4124 struct ixgbe_uta_info *uta_info =
4125 IXGBE_DEV_PRIVATE_TO_UTA(dev->data->dev_private);
4127 /* The UTA table only exists on 82599 hardware and newer */
4128 if (hw->mac.type < ixgbe_mac_82599EB)
4132 for (i = 0; i < ETH_VMDQ_NUM_UC_HASH_ARRAY; i++) {
4133 uta_info->uta_shadow[i] = ~0;
4134 IXGBE_WRITE_REG(hw, IXGBE_UTA(i), ~0);
4137 for (i = 0; i < ETH_VMDQ_NUM_UC_HASH_ARRAY; i++) {
4138 uta_info->uta_shadow[i] = 0;
4139 IXGBE_WRITE_REG(hw, IXGBE_UTA(i), 0);
4147 ixgbe_convert_vm_rx_mask_to_val(uint16_t rx_mask, uint32_t orig_val)
4149 uint32_t new_val = orig_val;
4151 if (rx_mask & ETH_VMDQ_ACCEPT_UNTAG)
4152 new_val |= IXGBE_VMOLR_AUPE;
4153 if (rx_mask & ETH_VMDQ_ACCEPT_HASH_MC)
4154 new_val |= IXGBE_VMOLR_ROMPE;
4155 if (rx_mask & ETH_VMDQ_ACCEPT_HASH_UC)
4156 new_val |= IXGBE_VMOLR_ROPE;
4157 if (rx_mask & ETH_VMDQ_ACCEPT_BROADCAST)
4158 new_val |= IXGBE_VMOLR_BAM;
4159 if (rx_mask & ETH_VMDQ_ACCEPT_MULTICAST)
4160 new_val |= IXGBE_VMOLR_MPE;
4166 ixgbe_set_pool_rx_mode(struct rte_eth_dev *dev, uint16_t pool,
4167 uint16_t rx_mask, uint8_t on)
4171 struct ixgbe_hw *hw =
4172 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4173 uint32_t vmolr = IXGBE_READ_REG(hw, IXGBE_VMOLR(pool));
4175 if (hw->mac.type == ixgbe_mac_82598EB) {
4176 PMD_INIT_LOG(ERR, "setting VF receive mode set should be done"
4177 " on 82599 hardware and newer");
4180 if (ixgbe_vmdq_mode_check(hw) < 0)
4183 val = ixgbe_convert_vm_rx_mask_to_val(rx_mask, val);
4190 IXGBE_WRITE_REG(hw, IXGBE_VMOLR(pool), vmolr);
4196 ixgbe_set_pool_rx(struct rte_eth_dev *dev, uint16_t pool, uint8_t on)
4200 const uint8_t bit1 = 0x1;
4202 struct ixgbe_hw *hw =
4203 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4205 if (ixgbe_vmdq_mode_check(hw) < 0)
4208 addr = IXGBE_VFRE(pool >= ETH_64_POOLS/2);
4209 reg = IXGBE_READ_REG(hw, addr);
4217 IXGBE_WRITE_REG(hw, addr,reg);
4223 ixgbe_set_pool_tx(struct rte_eth_dev *dev, uint16_t pool, uint8_t on)
4227 const uint8_t bit1 = 0x1;
4229 struct ixgbe_hw *hw =
4230 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4232 if (ixgbe_vmdq_mode_check(hw) < 0)
4235 addr = IXGBE_VFTE(pool >= ETH_64_POOLS/2);
4236 reg = IXGBE_READ_REG(hw, addr);
4244 IXGBE_WRITE_REG(hw, addr,reg);
4250 ixgbe_set_pool_vlan_filter(struct rte_eth_dev *dev, uint16_t vlan,
4251 uint64_t pool_mask, uint8_t vlan_on)
4255 struct ixgbe_hw *hw =
4256 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4258 if (ixgbe_vmdq_mode_check(hw) < 0)
4260 for (pool_idx = 0; pool_idx < ETH_64_POOLS; pool_idx++) {
4261 if (pool_mask & ((uint64_t)(1ULL << pool_idx)))
4262 ret = hw->mac.ops.set_vfta(hw,vlan,pool_idx,vlan_on);
4270 #define IXGBE_MRCTL_VPME 0x01 /* Virtual Pool Mirroring. */
4271 #define IXGBE_MRCTL_UPME 0x02 /* Uplink Port Mirroring. */
4272 #define IXGBE_MRCTL_DPME 0x04 /* Downlink Port Mirroring. */
4273 #define IXGBE_MRCTL_VLME 0x08 /* VLAN Mirroring. */
4274 #define IXGBE_INVALID_MIRROR_TYPE(mirror_type) \
4275 ((mirror_type) & ~(uint8_t)(ETH_MIRROR_VIRTUAL_POOL_UP | \
4276 ETH_MIRROR_UPLINK_PORT | ETH_MIRROR_DOWNLINK_PORT | ETH_MIRROR_VLAN))
4279 ixgbe_mirror_rule_set(struct rte_eth_dev *dev,
4280 struct rte_eth_mirror_conf *mirror_conf,
4281 uint8_t rule_id, uint8_t on)
4283 uint32_t mr_ctl,vlvf;
4284 uint32_t mp_lsb = 0;
4285 uint32_t mv_msb = 0;
4286 uint32_t mv_lsb = 0;
4287 uint32_t mp_msb = 0;
4290 uint64_t vlan_mask = 0;
4292 const uint8_t pool_mask_offset = 32;
4293 const uint8_t vlan_mask_offset = 32;
4294 const uint8_t dst_pool_offset = 8;
4295 const uint8_t rule_mr_offset = 4;
4296 const uint8_t mirror_rule_mask= 0x0F;
4298 struct ixgbe_mirror_info *mr_info =
4299 (IXGBE_DEV_PRIVATE_TO_PFDATA(dev->data->dev_private));
4300 struct ixgbe_hw *hw =
4301 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4302 uint8_t mirror_type = 0;
4304 if (ixgbe_vmdq_mode_check(hw) < 0)
4307 if (rule_id >= IXGBE_MAX_MIRROR_RULES)
4310 if (IXGBE_INVALID_MIRROR_TYPE(mirror_conf->rule_type)) {
4311 PMD_DRV_LOG(ERR, "unsupported mirror type 0x%x.",
4312 mirror_conf->rule_type);
4316 if (mirror_conf->rule_type & ETH_MIRROR_VLAN) {
4317 mirror_type |= IXGBE_MRCTL_VLME;
4318 /* Check if vlan id is valid and find conresponding VLAN ID index in VLVF */
4319 for (i = 0;i < IXGBE_VLVF_ENTRIES; i++) {
4320 if (mirror_conf->vlan.vlan_mask & (1ULL << i)) {
4321 /* search vlan id related pool vlan filter index */
4322 reg_index = ixgbe_find_vlvf_slot(hw,
4323 mirror_conf->vlan.vlan_id[i]);
4326 vlvf = IXGBE_READ_REG(hw, IXGBE_VLVF(reg_index));
4327 if ((vlvf & IXGBE_VLVF_VIEN) &&
4328 ((vlvf & IXGBE_VLVF_VLANID_MASK) ==
4329 mirror_conf->vlan.vlan_id[i]))
4330 vlan_mask |= (1ULL << reg_index);
4337 mv_lsb = vlan_mask & 0xFFFFFFFF;
4338 mv_msb = vlan_mask >> vlan_mask_offset;
4340 mr_info->mr_conf[rule_id].vlan.vlan_mask =
4341 mirror_conf->vlan.vlan_mask;
4342 for(i = 0 ;i < ETH_VMDQ_MAX_VLAN_FILTERS; i++) {
4343 if(mirror_conf->vlan.vlan_mask & (1ULL << i))
4344 mr_info->mr_conf[rule_id].vlan.vlan_id[i] =
4345 mirror_conf->vlan.vlan_id[i];
4350 mr_info->mr_conf[rule_id].vlan.vlan_mask = 0;
4351 for(i = 0 ;i < ETH_VMDQ_MAX_VLAN_FILTERS; i++)
4352 mr_info->mr_conf[rule_id].vlan.vlan_id[i] = 0;
4357 * if enable pool mirror, write related pool mask register,if disable
4358 * pool mirror, clear PFMRVM register
4360 if (mirror_conf->rule_type & ETH_MIRROR_VIRTUAL_POOL_UP) {
4361 mirror_type |= IXGBE_MRCTL_VPME;
4363 mp_lsb = mirror_conf->pool_mask & 0xFFFFFFFF;
4364 mp_msb = mirror_conf->pool_mask >> pool_mask_offset;
4365 mr_info->mr_conf[rule_id].pool_mask =
4366 mirror_conf->pool_mask;
4371 mr_info->mr_conf[rule_id].pool_mask = 0;
4374 if (mirror_conf->rule_type & ETH_MIRROR_UPLINK_PORT)
4375 mirror_type |= IXGBE_MRCTL_UPME;
4376 if (mirror_conf->rule_type & ETH_MIRROR_DOWNLINK_PORT)
4377 mirror_type |= IXGBE_MRCTL_DPME;
4379 /* read mirror control register and recalculate it */
4380 mr_ctl = IXGBE_READ_REG(hw, IXGBE_MRCTL(rule_id));
4383 mr_ctl |= mirror_type;
4384 mr_ctl &= mirror_rule_mask;
4385 mr_ctl |= mirror_conf->dst_pool << dst_pool_offset;
4387 mr_ctl &= ~(mirror_conf->rule_type & mirror_rule_mask);
4389 mr_info->mr_conf[rule_id].rule_type = mirror_conf->rule_type;
4390 mr_info->mr_conf[rule_id].dst_pool = mirror_conf->dst_pool;
4392 /* write mirrror control register */
4393 IXGBE_WRITE_REG(hw, IXGBE_MRCTL(rule_id), mr_ctl);
4395 /* write pool mirrror control register */
4396 if (mirror_conf->rule_type == ETH_MIRROR_VIRTUAL_POOL_UP) {
4397 IXGBE_WRITE_REG(hw, IXGBE_VMRVM(rule_id), mp_lsb);
4398 IXGBE_WRITE_REG(hw, IXGBE_VMRVM(rule_id + rule_mr_offset),
4401 /* write VLAN mirrror control register */
4402 if (mirror_conf->rule_type == ETH_MIRROR_VLAN) {
4403 IXGBE_WRITE_REG(hw, IXGBE_VMRVLAN(rule_id), mv_lsb);
4404 IXGBE_WRITE_REG(hw, IXGBE_VMRVLAN(rule_id + rule_mr_offset),
4412 ixgbe_mirror_rule_reset(struct rte_eth_dev *dev, uint8_t rule_id)
4415 uint32_t lsb_val = 0;
4416 uint32_t msb_val = 0;
4417 const uint8_t rule_mr_offset = 4;
4419 struct ixgbe_hw *hw =
4420 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4421 struct ixgbe_mirror_info *mr_info =
4422 (IXGBE_DEV_PRIVATE_TO_PFDATA(dev->data->dev_private));
4424 if (ixgbe_vmdq_mode_check(hw) < 0)
4427 memset(&mr_info->mr_conf[rule_id], 0,
4428 sizeof(struct rte_eth_mirror_conf));
4430 /* clear PFVMCTL register */
4431 IXGBE_WRITE_REG(hw, IXGBE_MRCTL(rule_id), mr_ctl);
4433 /* clear pool mask register */
4434 IXGBE_WRITE_REG(hw, IXGBE_VMRVM(rule_id), lsb_val);
4435 IXGBE_WRITE_REG(hw, IXGBE_VMRVM(rule_id + rule_mr_offset), msb_val);
4437 /* clear vlan mask register */
4438 IXGBE_WRITE_REG(hw, IXGBE_VMRVLAN(rule_id), lsb_val);
4439 IXGBE_WRITE_REG(hw, IXGBE_VMRVLAN(rule_id + rule_mr_offset), msb_val);
4445 ixgbevf_dev_rx_queue_intr_enable(struct rte_eth_dev *dev, uint16_t queue_id)
4448 struct ixgbe_hw *hw =
4449 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4451 mask = IXGBE_READ_REG(hw, IXGBE_VTEIMS);
4452 mask |= (1 << IXGBE_MISC_VEC_ID);
4453 RTE_SET_USED(queue_id);
4454 IXGBE_WRITE_REG(hw, IXGBE_VTEIMS, mask);
4456 rte_intr_enable(&dev->pci_dev->intr_handle);
4462 ixgbevf_dev_rx_queue_intr_disable(struct rte_eth_dev *dev, uint16_t queue_id)
4465 struct ixgbe_hw *hw =
4466 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4468 mask = IXGBE_READ_REG(hw, IXGBE_VTEIMS);
4469 mask &= ~(1 << IXGBE_MISC_VEC_ID);
4470 RTE_SET_USED(queue_id);
4471 IXGBE_WRITE_REG(hw, IXGBE_VTEIMS, mask);
4477 ixgbe_dev_rx_queue_intr_enable(struct rte_eth_dev *dev, uint16_t queue_id)
4480 struct ixgbe_hw *hw =
4481 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4482 struct ixgbe_interrupt *intr =
4483 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
4485 if (queue_id < 16) {
4486 ixgbe_disable_intr(hw);
4487 intr->mask |= (1 << queue_id);
4488 ixgbe_enable_intr(dev);
4489 } else if (queue_id < 32) {
4490 mask = IXGBE_READ_REG(hw, IXGBE_EIMS_EX(0));
4491 mask &= (1 << queue_id);
4492 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(0), mask);
4493 } else if (queue_id < 64) {
4494 mask = IXGBE_READ_REG(hw, IXGBE_EIMS_EX(1));
4495 mask &= (1 << (queue_id - 32));
4496 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(1), mask);
4498 rte_intr_enable(&dev->pci_dev->intr_handle);
4504 ixgbe_dev_rx_queue_intr_disable(struct rte_eth_dev *dev, uint16_t queue_id)
4507 struct ixgbe_hw *hw =
4508 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4509 struct ixgbe_interrupt *intr =
4510 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
4512 if (queue_id < 16) {
4513 ixgbe_disable_intr(hw);
4514 intr->mask &= ~(1 << queue_id);
4515 ixgbe_enable_intr(dev);
4516 } else if (queue_id < 32) {
4517 mask = IXGBE_READ_REG(hw, IXGBE_EIMS_EX(0));
4518 mask &= ~(1 << queue_id);
4519 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(0), mask);
4520 } else if (queue_id < 64) {
4521 mask = IXGBE_READ_REG(hw, IXGBE_EIMS_EX(1));
4522 mask &= ~(1 << (queue_id - 32));
4523 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(1), mask);
4530 ixgbevf_set_ivar_map(struct ixgbe_hw *hw, int8_t direction,
4531 uint8_t queue, uint8_t msix_vector)
4535 if (direction == -1) {
4537 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
4538 tmp = IXGBE_READ_REG(hw, IXGBE_VTIVAR_MISC);
4541 IXGBE_WRITE_REG(hw, IXGBE_VTIVAR_MISC, tmp);
4543 /* rx or tx cause */
4544 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
4545 idx = ((16 * (queue & 1)) + (8 * direction));
4546 tmp = IXGBE_READ_REG(hw, IXGBE_VTIVAR(queue >> 1));
4547 tmp &= ~(0xFF << idx);
4548 tmp |= (msix_vector << idx);
4549 IXGBE_WRITE_REG(hw, IXGBE_VTIVAR(queue >> 1), tmp);
4554 * set the IVAR registers, mapping interrupt causes to vectors
4556 * pointer to ixgbe_hw struct
4558 * 0 for Rx, 1 for Tx, -1 for other causes
4560 * queue to map the corresponding interrupt to
4562 * the vector to map to the corresponding queue
4565 ixgbe_set_ivar_map(struct ixgbe_hw *hw, int8_t direction,
4566 uint8_t queue, uint8_t msix_vector)
4570 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
4571 if (hw->mac.type == ixgbe_mac_82598EB) {
4572 if (direction == -1)
4574 idx = (((direction * 64) + queue) >> 2) & 0x1F;
4575 tmp = IXGBE_READ_REG(hw, IXGBE_IVAR(idx));
4576 tmp &= ~(0xFF << (8 * (queue & 0x3)));
4577 tmp |= (msix_vector << (8 * (queue & 0x3)));
4578 IXGBE_WRITE_REG(hw, IXGBE_IVAR(idx), tmp);
4579 } else if ((hw->mac.type == ixgbe_mac_82599EB) ||
4580 (hw->mac.type == ixgbe_mac_X540)) {
4581 if (direction == -1) {
4583 idx = ((queue & 1) * 8);
4584 tmp = IXGBE_READ_REG(hw, IXGBE_IVAR_MISC);
4585 tmp &= ~(0xFF << idx);
4586 tmp |= (msix_vector << idx);
4587 IXGBE_WRITE_REG(hw, IXGBE_IVAR_MISC, tmp);
4589 /* rx or tx causes */
4590 idx = ((16 * (queue & 1)) + (8 * direction));
4591 tmp = IXGBE_READ_REG(hw, IXGBE_IVAR(queue >> 1));
4592 tmp &= ~(0xFF << idx);
4593 tmp |= (msix_vector << idx);
4594 IXGBE_WRITE_REG(hw, IXGBE_IVAR(queue >> 1), tmp);
4600 ixgbevf_configure_msix(struct rte_eth_dev *dev)
4602 struct rte_intr_handle *intr_handle = &dev->pci_dev->intr_handle;
4603 struct ixgbe_hw *hw =
4604 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4606 uint32_t vector_idx = IXGBE_MISC_VEC_ID;
4608 /* won't configure msix register if no mapping is done
4609 * between intr vector and event fd.
4611 if (!rte_intr_dp_is_en(intr_handle))
4614 /* Configure all RX queues of VF */
4615 for (q_idx = 0; q_idx < dev->data->nb_rx_queues; q_idx++) {
4616 /* Force all queue use vector 0,
4617 * as IXGBE_VF_MAXMSIVECOTR = 1
4619 ixgbevf_set_ivar_map(hw, 0, q_idx, vector_idx);
4620 intr_handle->intr_vec[q_idx] = vector_idx;
4623 /* Configure VF other cause ivar */
4624 ixgbevf_set_ivar_map(hw, -1, 1, vector_idx);
4628 * Sets up the hardware to properly generate MSI-X interrupts
4630 * board private structure
4633 ixgbe_configure_msix(struct rte_eth_dev *dev)
4635 struct rte_intr_handle *intr_handle = &dev->pci_dev->intr_handle;
4636 struct ixgbe_hw *hw =
4637 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4638 uint32_t queue_id, base = IXGBE_MISC_VEC_ID;
4639 uint32_t vec = IXGBE_MISC_VEC_ID;
4643 /* won't configure msix register if no mapping is done
4644 * between intr vector and event fd
4646 if (!rte_intr_dp_is_en(intr_handle))
4649 if (rte_intr_allow_others(intr_handle))
4650 vec = base = IXGBE_RX_VEC_START;
4652 /* setup GPIE for MSI-x mode */
4653 gpie = IXGBE_READ_REG(hw, IXGBE_GPIE);
4654 gpie |= IXGBE_GPIE_MSIX_MODE | IXGBE_GPIE_PBA_SUPPORT |
4655 IXGBE_GPIE_OCD | IXGBE_GPIE_EIAME;
4656 /* auto clearing and auto setting corresponding bits in EIMS
4657 * when MSI-X interrupt is triggered
4659 if (hw->mac.type == ixgbe_mac_82598EB) {
4660 IXGBE_WRITE_REG(hw, IXGBE_EIAM, IXGBE_EICS_RTX_QUEUE);
4662 IXGBE_WRITE_REG(hw, IXGBE_EIAM_EX(0), 0xFFFFFFFF);
4663 IXGBE_WRITE_REG(hw, IXGBE_EIAM_EX(1), 0xFFFFFFFF);
4665 IXGBE_WRITE_REG(hw, IXGBE_GPIE, gpie);
4667 /* Populate the IVAR table and set the ITR values to the
4668 * corresponding register.
4670 for (queue_id = 0; queue_id < dev->data->nb_rx_queues;
4672 /* by default, 1:1 mapping */
4673 ixgbe_set_ivar_map(hw, 0, queue_id, vec);
4674 intr_handle->intr_vec[queue_id] = vec;
4675 if (vec < base + intr_handle->nb_efd - 1)
4679 switch (hw->mac.type) {
4680 case ixgbe_mac_82598EB:
4681 ixgbe_set_ivar_map(hw, -1, IXGBE_IVAR_OTHER_CAUSES_INDEX,
4684 case ixgbe_mac_82599EB:
4685 case ixgbe_mac_X540:
4686 ixgbe_set_ivar_map(hw, -1, 1, IXGBE_MISC_VEC_ID);
4691 IXGBE_WRITE_REG(hw, IXGBE_EITR(IXGBE_MISC_VEC_ID),
4692 IXGBE_MIN_INTER_INTERRUPT_INTERVAL_DEFAULT & 0xFFF);
4694 /* set up to autoclear timer, and the vectors */
4695 mask = IXGBE_EIMS_ENABLE_MASK;
4696 mask &= ~(IXGBE_EIMS_OTHER |
4697 IXGBE_EIMS_MAILBOX |
4700 IXGBE_WRITE_REG(hw, IXGBE_EIAC, mask);
4703 static int ixgbe_set_queue_rate_limit(struct rte_eth_dev *dev,
4704 uint16_t queue_idx, uint16_t tx_rate)
4706 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4707 uint32_t rf_dec, rf_int;
4709 uint16_t link_speed = dev->data->dev_link.link_speed;
4711 if (queue_idx >= hw->mac.max_tx_queues)
4715 /* Calculate the rate factor values to set */
4716 rf_int = (uint32_t)link_speed / (uint32_t)tx_rate;
4717 rf_dec = (uint32_t)link_speed % (uint32_t)tx_rate;
4718 rf_dec = (rf_dec << IXGBE_RTTBCNRC_RF_INT_SHIFT) / tx_rate;
4720 bcnrc_val = IXGBE_RTTBCNRC_RS_ENA;
4721 bcnrc_val |= ((rf_int << IXGBE_RTTBCNRC_RF_INT_SHIFT) &
4722 IXGBE_RTTBCNRC_RF_INT_MASK_M);
4723 bcnrc_val |= (rf_dec & IXGBE_RTTBCNRC_RF_DEC_MASK);
4729 * Set global transmit compensation time to the MMW_SIZE in RTTBCNRM
4730 * register. MMW_SIZE=0x014 if 9728-byte jumbo is supported, otherwise
4733 if ((dev->data->dev_conf.rxmode.jumbo_frame == 1) &&
4734 (dev->data->dev_conf.rxmode.max_rx_pkt_len >=
4735 IXGBE_MAX_JUMBO_FRAME_SIZE))
4736 IXGBE_WRITE_REG(hw, IXGBE_RTTBCNRM,
4737 IXGBE_MMW_SIZE_JUMBO_FRAME);
4739 IXGBE_WRITE_REG(hw, IXGBE_RTTBCNRM,
4740 IXGBE_MMW_SIZE_DEFAULT);
4742 /* Set RTTBCNRC of queue X */
4743 IXGBE_WRITE_REG(hw, IXGBE_RTTDQSEL, queue_idx);
4744 IXGBE_WRITE_REG(hw, IXGBE_RTTBCNRC, bcnrc_val);
4745 IXGBE_WRITE_FLUSH(hw);
4750 static int ixgbe_set_vf_rate_limit(struct rte_eth_dev *dev, uint16_t vf,
4751 uint16_t tx_rate, uint64_t q_msk)
4753 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4754 struct ixgbe_vf_info *vfinfo =
4755 *(IXGBE_DEV_PRIVATE_TO_P_VFDATA(dev->data->dev_private));
4756 uint8_t nb_q_per_pool = RTE_ETH_DEV_SRIOV(dev).nb_q_per_pool;
4757 uint32_t queue_stride =
4758 IXGBE_MAX_RX_QUEUE_NUM / RTE_ETH_DEV_SRIOV(dev).active;
4759 uint32_t queue_idx = vf * queue_stride, idx = 0, vf_idx;
4760 uint32_t queue_end = queue_idx + nb_q_per_pool - 1;
4761 uint16_t total_rate = 0;
4763 if (queue_end >= hw->mac.max_tx_queues)
4766 if (vfinfo != NULL) {
4767 for (vf_idx = 0; vf_idx < dev->pci_dev->max_vfs; vf_idx++) {
4770 for (idx = 0; idx < RTE_DIM(vfinfo[vf_idx].tx_rate);
4772 total_rate += vfinfo[vf_idx].tx_rate[idx];
4777 /* Store tx_rate for this vf. */
4778 for (idx = 0; idx < nb_q_per_pool; idx++) {
4779 if (((uint64_t)0x1 << idx) & q_msk) {
4780 if (vfinfo[vf].tx_rate[idx] != tx_rate)
4781 vfinfo[vf].tx_rate[idx] = tx_rate;
4782 total_rate += tx_rate;
4786 if (total_rate > dev->data->dev_link.link_speed) {
4788 * Reset stored TX rate of the VF if it causes exceed
4791 memset(vfinfo[vf].tx_rate, 0, sizeof(vfinfo[vf].tx_rate));
4795 /* Set RTTBCNRC of each queue/pool for vf X */
4796 for (; queue_idx <= queue_end; queue_idx++) {
4798 ixgbe_set_queue_rate_limit(dev, queue_idx, tx_rate);
4806 ixgbevf_add_mac_addr(struct rte_eth_dev *dev, struct ether_addr *mac_addr,
4807 __attribute__((unused)) uint32_t index,
4808 __attribute__((unused)) uint32_t pool)
4810 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4814 * On a 82599 VF, adding again the same MAC addr is not an idempotent
4815 * operation. Trap this case to avoid exhausting the [very limited]
4816 * set of PF resources used to store VF MAC addresses.
4818 if (memcmp(hw->mac.perm_addr, mac_addr, sizeof(struct ether_addr)) == 0)
4820 diag = ixgbevf_set_uc_addr_vf(hw, 2, mac_addr->addr_bytes);
4823 PMD_DRV_LOG(ERR, "Unable to add MAC address - diag=%d", diag);
4827 ixgbevf_remove_mac_addr(struct rte_eth_dev *dev, uint32_t index)
4829 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4830 struct ether_addr *perm_addr = (struct ether_addr *) hw->mac.perm_addr;
4831 struct ether_addr *mac_addr;
4836 * The IXGBE_VF_SET_MACVLAN command of the ixgbe-pf driver does
4837 * not support the deletion of a given MAC address.
4838 * Instead, it imposes to delete all MAC addresses, then to add again
4839 * all MAC addresses with the exception of the one to be deleted.
4841 (void) ixgbevf_set_uc_addr_vf(hw, 0, NULL);
4844 * Add again all MAC addresses, with the exception of the deleted one
4845 * and of the permanent MAC address.
4847 for (i = 0, mac_addr = dev->data->mac_addrs;
4848 i < hw->mac.num_rar_entries; i++, mac_addr++) {
4849 /* Skip the deleted MAC address */
4852 /* Skip NULL MAC addresses */
4853 if (is_zero_ether_addr(mac_addr))
4855 /* Skip the permanent MAC address */
4856 if (memcmp(perm_addr, mac_addr, sizeof(struct ether_addr)) == 0)
4858 diag = ixgbevf_set_uc_addr_vf(hw, 2, mac_addr->addr_bytes);
4861 "Adding again MAC address "
4862 "%02x:%02x:%02x:%02x:%02x:%02x failed "
4864 mac_addr->addr_bytes[0],
4865 mac_addr->addr_bytes[1],
4866 mac_addr->addr_bytes[2],
4867 mac_addr->addr_bytes[3],
4868 mac_addr->addr_bytes[4],
4869 mac_addr->addr_bytes[5],
4875 ixgbevf_set_default_mac_addr(struct rte_eth_dev *dev, struct ether_addr *addr)
4877 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4879 hw->mac.ops.set_rar(hw, 0, (void *)addr, 0, 0);
4882 #define MAC_TYPE_FILTER_SUP(type) do {\
4883 if ((type) != ixgbe_mac_82599EB && (type) != ixgbe_mac_X540 &&\
4884 (type) != ixgbe_mac_X550)\
4889 ixgbe_syn_filter_set(struct rte_eth_dev *dev,
4890 struct rte_eth_syn_filter *filter,
4893 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4896 if (filter->queue >= IXGBE_MAX_RX_QUEUE_NUM)
4899 synqf = IXGBE_READ_REG(hw, IXGBE_SYNQF);
4902 if (synqf & IXGBE_SYN_FILTER_ENABLE)
4904 synqf = (uint32_t)(((filter->queue << IXGBE_SYN_FILTER_QUEUE_SHIFT) &
4905 IXGBE_SYN_FILTER_QUEUE) | IXGBE_SYN_FILTER_ENABLE);
4907 if (filter->hig_pri)
4908 synqf |= IXGBE_SYN_FILTER_SYNQFP;
4910 synqf &= ~IXGBE_SYN_FILTER_SYNQFP;
4912 if (!(synqf & IXGBE_SYN_FILTER_ENABLE))
4914 synqf &= ~(IXGBE_SYN_FILTER_QUEUE | IXGBE_SYN_FILTER_ENABLE);
4916 IXGBE_WRITE_REG(hw, IXGBE_SYNQF, synqf);
4917 IXGBE_WRITE_FLUSH(hw);
4922 ixgbe_syn_filter_get(struct rte_eth_dev *dev,
4923 struct rte_eth_syn_filter *filter)
4925 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4926 uint32_t synqf = IXGBE_READ_REG(hw, IXGBE_SYNQF);
4928 if (synqf & IXGBE_SYN_FILTER_ENABLE) {
4929 filter->hig_pri = (synqf & IXGBE_SYN_FILTER_SYNQFP) ? 1 : 0;
4930 filter->queue = (uint16_t)((synqf & IXGBE_SYN_FILTER_QUEUE) >> 1);
4937 ixgbe_syn_filter_handle(struct rte_eth_dev *dev,
4938 enum rte_filter_op filter_op,
4941 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4944 MAC_TYPE_FILTER_SUP(hw->mac.type);
4946 if (filter_op == RTE_ETH_FILTER_NOP)
4950 PMD_DRV_LOG(ERR, "arg shouldn't be NULL for operation %u",
4955 switch (filter_op) {
4956 case RTE_ETH_FILTER_ADD:
4957 ret = ixgbe_syn_filter_set(dev,
4958 (struct rte_eth_syn_filter *)arg,
4961 case RTE_ETH_FILTER_DELETE:
4962 ret = ixgbe_syn_filter_set(dev,
4963 (struct rte_eth_syn_filter *)arg,
4966 case RTE_ETH_FILTER_GET:
4967 ret = ixgbe_syn_filter_get(dev,
4968 (struct rte_eth_syn_filter *)arg);
4971 PMD_DRV_LOG(ERR, "unsupported operation %u\n", filter_op);
4980 static inline enum ixgbe_5tuple_protocol
4981 convert_protocol_type(uint8_t protocol_value)
4983 if (protocol_value == IPPROTO_TCP)
4984 return IXGBE_FILTER_PROTOCOL_TCP;
4985 else if (protocol_value == IPPROTO_UDP)
4986 return IXGBE_FILTER_PROTOCOL_UDP;
4987 else if (protocol_value == IPPROTO_SCTP)
4988 return IXGBE_FILTER_PROTOCOL_SCTP;
4990 return IXGBE_FILTER_PROTOCOL_NONE;
4994 * add a 5tuple filter
4997 * dev: Pointer to struct rte_eth_dev.
4998 * index: the index the filter allocates.
4999 * filter: ponter to the filter that will be added.
5000 * rx_queue: the queue id the filter assigned to.
5003 * - On success, zero.
5004 * - On failure, a negative value.
5007 ixgbe_add_5tuple_filter(struct rte_eth_dev *dev,
5008 struct ixgbe_5tuple_filter *filter)
5010 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5011 struct ixgbe_filter_info *filter_info =
5012 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
5014 uint32_t ftqf, sdpqf;
5015 uint32_t l34timir = 0;
5016 uint8_t mask = 0xff;
5019 * look for an unused 5tuple filter index,
5020 * and insert the filter to list.
5022 for (i = 0; i < IXGBE_MAX_FTQF_FILTERS; i++) {
5023 idx = i / (sizeof(uint32_t) * NBBY);
5024 shift = i % (sizeof(uint32_t) * NBBY);
5025 if (!(filter_info->fivetuple_mask[idx] & (1 << shift))) {
5026 filter_info->fivetuple_mask[idx] |= 1 << shift;
5028 TAILQ_INSERT_TAIL(&filter_info->fivetuple_list,
5034 if (i >= IXGBE_MAX_FTQF_FILTERS) {
5035 PMD_DRV_LOG(ERR, "5tuple filters are full.");
5039 sdpqf = (uint32_t)(filter->filter_info.dst_port <<
5040 IXGBE_SDPQF_DSTPORT_SHIFT);
5041 sdpqf = sdpqf | (filter->filter_info.src_port & IXGBE_SDPQF_SRCPORT);
5043 ftqf = (uint32_t)(filter->filter_info.proto &
5044 IXGBE_FTQF_PROTOCOL_MASK);
5045 ftqf |= (uint32_t)((filter->filter_info.priority &
5046 IXGBE_FTQF_PRIORITY_MASK) << IXGBE_FTQF_PRIORITY_SHIFT);
5047 if (filter->filter_info.src_ip_mask == 0) /* 0 means compare. */
5048 mask &= IXGBE_FTQF_SOURCE_ADDR_MASK;
5049 if (filter->filter_info.dst_ip_mask == 0)
5050 mask &= IXGBE_FTQF_DEST_ADDR_MASK;
5051 if (filter->filter_info.src_port_mask == 0)
5052 mask &= IXGBE_FTQF_SOURCE_PORT_MASK;
5053 if (filter->filter_info.dst_port_mask == 0)
5054 mask &= IXGBE_FTQF_DEST_PORT_MASK;
5055 if (filter->filter_info.proto_mask == 0)
5056 mask &= IXGBE_FTQF_PROTOCOL_COMP_MASK;
5057 ftqf |= mask << IXGBE_FTQF_5TUPLE_MASK_SHIFT;
5058 ftqf |= IXGBE_FTQF_POOL_MASK_EN;
5059 ftqf |= IXGBE_FTQF_QUEUE_ENABLE;
5061 IXGBE_WRITE_REG(hw, IXGBE_DAQF(i), filter->filter_info.dst_ip);
5062 IXGBE_WRITE_REG(hw, IXGBE_SAQF(i), filter->filter_info.src_ip);
5063 IXGBE_WRITE_REG(hw, IXGBE_SDPQF(i), sdpqf);
5064 IXGBE_WRITE_REG(hw, IXGBE_FTQF(i), ftqf);
5066 l34timir |= IXGBE_L34T_IMIR_RESERVE;
5067 l34timir |= (uint32_t)(filter->queue <<
5068 IXGBE_L34T_IMIR_QUEUE_SHIFT);
5069 IXGBE_WRITE_REG(hw, IXGBE_L34T_IMIR(i), l34timir);
5074 * remove a 5tuple filter
5077 * dev: Pointer to struct rte_eth_dev.
5078 * filter: the pointer of the filter will be removed.
5081 ixgbe_remove_5tuple_filter(struct rte_eth_dev *dev,
5082 struct ixgbe_5tuple_filter *filter)
5084 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5085 struct ixgbe_filter_info *filter_info =
5086 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
5087 uint16_t index = filter->index;
5089 filter_info->fivetuple_mask[index / (sizeof(uint32_t) * NBBY)] &=
5090 ~(1 << (index % (sizeof(uint32_t) * NBBY)));
5091 TAILQ_REMOVE(&filter_info->fivetuple_list, filter, entries);
5094 IXGBE_WRITE_REG(hw, IXGBE_DAQF(index), 0);
5095 IXGBE_WRITE_REG(hw, IXGBE_SAQF(index), 0);
5096 IXGBE_WRITE_REG(hw, IXGBE_SDPQF(index), 0);
5097 IXGBE_WRITE_REG(hw, IXGBE_FTQF(index), 0);
5098 IXGBE_WRITE_REG(hw, IXGBE_L34T_IMIR(index), 0);
5102 ixgbevf_dev_set_mtu(struct rte_eth_dev *dev, uint16_t mtu)
5104 struct ixgbe_hw *hw;
5105 uint32_t max_frame = mtu + ETHER_HDR_LEN + ETHER_CRC_LEN;
5107 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5109 if ((mtu < ETHER_MIN_MTU) || (max_frame > ETHER_MAX_JUMBO_FRAME_LEN))
5112 /* refuse mtu that requires the support of scattered packets when this
5113 * feature has not been enabled before. */
5114 if (!dev->data->scattered_rx &&
5115 (max_frame + 2 * IXGBE_VLAN_TAG_SIZE >
5116 dev->data->min_rx_buf_size - RTE_PKTMBUF_HEADROOM))
5120 * When supported by the underlying PF driver, use the IXGBE_VF_SET_MTU
5121 * request of the version 2.0 of the mailbox API.
5122 * For now, use the IXGBE_VF_SET_LPE request of the version 1.0
5123 * of the mailbox API.
5124 * This call to IXGBE_SET_LPE action won't work with ixgbe pf drivers
5125 * prior to 3.11.33 which contains the following change:
5126 * "ixgbe: Enable jumbo frames support w/ SR-IOV"
5128 ixgbevf_rlpml_set_vf(hw, max_frame);
5130 /* update max frame size */
5131 dev->data->dev_conf.rxmode.max_rx_pkt_len = max_frame;
5135 #define MAC_TYPE_FILTER_SUP_EXT(type) do {\
5136 if ((type) != ixgbe_mac_82599EB && (type) != ixgbe_mac_X540)\
5140 static inline struct ixgbe_5tuple_filter *
5141 ixgbe_5tuple_filter_lookup(struct ixgbe_5tuple_filter_list *filter_list,
5142 struct ixgbe_5tuple_filter_info *key)
5144 struct ixgbe_5tuple_filter *it;
5146 TAILQ_FOREACH(it, filter_list, entries) {
5147 if (memcmp(key, &it->filter_info,
5148 sizeof(struct ixgbe_5tuple_filter_info)) == 0) {
5155 /* translate elements in struct rte_eth_ntuple_filter to struct ixgbe_5tuple_filter_info*/
5157 ntuple_filter_to_5tuple(struct rte_eth_ntuple_filter *filter,
5158 struct ixgbe_5tuple_filter_info *filter_info)
5160 if (filter->queue >= IXGBE_MAX_RX_QUEUE_NUM ||
5161 filter->priority > IXGBE_5TUPLE_MAX_PRI ||
5162 filter->priority < IXGBE_5TUPLE_MIN_PRI)
5165 switch (filter->dst_ip_mask) {
5167 filter_info->dst_ip_mask = 0;
5168 filter_info->dst_ip = filter->dst_ip;
5171 filter_info->dst_ip_mask = 1;
5174 PMD_DRV_LOG(ERR, "invalid dst_ip mask.");
5178 switch (filter->src_ip_mask) {
5180 filter_info->src_ip_mask = 0;
5181 filter_info->src_ip = filter->src_ip;
5184 filter_info->src_ip_mask = 1;
5187 PMD_DRV_LOG(ERR, "invalid src_ip mask.");
5191 switch (filter->dst_port_mask) {
5193 filter_info->dst_port_mask = 0;
5194 filter_info->dst_port = filter->dst_port;
5197 filter_info->dst_port_mask = 1;
5200 PMD_DRV_LOG(ERR, "invalid dst_port mask.");
5204 switch (filter->src_port_mask) {
5206 filter_info->src_port_mask = 0;
5207 filter_info->src_port = filter->src_port;
5210 filter_info->src_port_mask = 1;
5213 PMD_DRV_LOG(ERR, "invalid src_port mask.");
5217 switch (filter->proto_mask) {
5219 filter_info->proto_mask = 0;
5220 filter_info->proto =
5221 convert_protocol_type(filter->proto);
5224 filter_info->proto_mask = 1;
5227 PMD_DRV_LOG(ERR, "invalid protocol mask.");
5231 filter_info->priority = (uint8_t)filter->priority;
5236 * add or delete a ntuple filter
5239 * dev: Pointer to struct rte_eth_dev.
5240 * ntuple_filter: Pointer to struct rte_eth_ntuple_filter
5241 * add: if true, add filter, if false, remove filter
5244 * - On success, zero.
5245 * - On failure, a negative value.
5248 ixgbe_add_del_ntuple_filter(struct rte_eth_dev *dev,
5249 struct rte_eth_ntuple_filter *ntuple_filter,
5252 struct ixgbe_filter_info *filter_info =
5253 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
5254 struct ixgbe_5tuple_filter_info filter_5tuple;
5255 struct ixgbe_5tuple_filter *filter;
5258 if (ntuple_filter->flags != RTE_5TUPLE_FLAGS) {
5259 PMD_DRV_LOG(ERR, "only 5tuple is supported.");
5263 memset(&filter_5tuple, 0, sizeof(struct ixgbe_5tuple_filter_info));
5264 ret = ntuple_filter_to_5tuple(ntuple_filter, &filter_5tuple);
5268 filter = ixgbe_5tuple_filter_lookup(&filter_info->fivetuple_list,
5270 if (filter != NULL && add) {
5271 PMD_DRV_LOG(ERR, "filter exists.");
5274 if (filter == NULL && !add) {
5275 PMD_DRV_LOG(ERR, "filter doesn't exist.");
5280 filter = rte_zmalloc("ixgbe_5tuple_filter",
5281 sizeof(struct ixgbe_5tuple_filter), 0);
5284 (void)rte_memcpy(&filter->filter_info,
5286 sizeof(struct ixgbe_5tuple_filter_info));
5287 filter->queue = ntuple_filter->queue;
5288 ret = ixgbe_add_5tuple_filter(dev, filter);
5294 ixgbe_remove_5tuple_filter(dev, filter);
5300 * get a ntuple filter
5303 * dev: Pointer to struct rte_eth_dev.
5304 * ntuple_filter: Pointer to struct rte_eth_ntuple_filter
5307 * - On success, zero.
5308 * - On failure, a negative value.
5311 ixgbe_get_ntuple_filter(struct rte_eth_dev *dev,
5312 struct rte_eth_ntuple_filter *ntuple_filter)
5314 struct ixgbe_filter_info *filter_info =
5315 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
5316 struct ixgbe_5tuple_filter_info filter_5tuple;
5317 struct ixgbe_5tuple_filter *filter;
5320 if (ntuple_filter->flags != RTE_5TUPLE_FLAGS) {
5321 PMD_DRV_LOG(ERR, "only 5tuple is supported.");
5325 memset(&filter_5tuple, 0, sizeof(struct ixgbe_5tuple_filter_info));
5326 ret = ntuple_filter_to_5tuple(ntuple_filter, &filter_5tuple);
5330 filter = ixgbe_5tuple_filter_lookup(&filter_info->fivetuple_list,
5332 if (filter == NULL) {
5333 PMD_DRV_LOG(ERR, "filter doesn't exist.");
5336 ntuple_filter->queue = filter->queue;
5341 * ixgbe_ntuple_filter_handle - Handle operations for ntuple filter.
5342 * @dev: pointer to rte_eth_dev structure
5343 * @filter_op:operation will be taken.
5344 * @arg: a pointer to specific structure corresponding to the filter_op
5347 * - On success, zero.
5348 * - On failure, a negative value.
5351 ixgbe_ntuple_filter_handle(struct rte_eth_dev *dev,
5352 enum rte_filter_op filter_op,
5355 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5358 MAC_TYPE_FILTER_SUP_EXT(hw->mac.type);
5360 if (filter_op == RTE_ETH_FILTER_NOP)
5364 PMD_DRV_LOG(ERR, "arg shouldn't be NULL for operation %u.",
5369 switch (filter_op) {
5370 case RTE_ETH_FILTER_ADD:
5371 ret = ixgbe_add_del_ntuple_filter(dev,
5372 (struct rte_eth_ntuple_filter *)arg,
5375 case RTE_ETH_FILTER_DELETE:
5376 ret = ixgbe_add_del_ntuple_filter(dev,
5377 (struct rte_eth_ntuple_filter *)arg,
5380 case RTE_ETH_FILTER_GET:
5381 ret = ixgbe_get_ntuple_filter(dev,
5382 (struct rte_eth_ntuple_filter *)arg);
5385 PMD_DRV_LOG(ERR, "unsupported operation %u.", filter_op);
5393 ixgbe_ethertype_filter_lookup(struct ixgbe_filter_info *filter_info,
5398 for (i = 0; i < IXGBE_MAX_ETQF_FILTERS; i++) {
5399 if (filter_info->ethertype_filters[i] == ethertype &&
5400 (filter_info->ethertype_mask & (1 << i)))
5407 ixgbe_ethertype_filter_insert(struct ixgbe_filter_info *filter_info,
5412 for (i = 0; i < IXGBE_MAX_ETQF_FILTERS; i++) {
5413 if (!(filter_info->ethertype_mask & (1 << i))) {
5414 filter_info->ethertype_mask |= 1 << i;
5415 filter_info->ethertype_filters[i] = ethertype;
5423 ixgbe_ethertype_filter_remove(struct ixgbe_filter_info *filter_info,
5426 if (idx >= IXGBE_MAX_ETQF_FILTERS)
5428 filter_info->ethertype_mask &= ~(1 << idx);
5429 filter_info->ethertype_filters[idx] = 0;
5434 ixgbe_add_del_ethertype_filter(struct rte_eth_dev *dev,
5435 struct rte_eth_ethertype_filter *filter,
5438 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5439 struct ixgbe_filter_info *filter_info =
5440 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
5445 if (filter->queue >= IXGBE_MAX_RX_QUEUE_NUM)
5448 if (filter->ether_type == ETHER_TYPE_IPv4 ||
5449 filter->ether_type == ETHER_TYPE_IPv6) {
5450 PMD_DRV_LOG(ERR, "unsupported ether_type(0x%04x) in"
5451 " ethertype filter.", filter->ether_type);
5455 if (filter->flags & RTE_ETHTYPE_FLAGS_MAC) {
5456 PMD_DRV_LOG(ERR, "mac compare is unsupported.");
5459 if (filter->flags & RTE_ETHTYPE_FLAGS_DROP) {
5460 PMD_DRV_LOG(ERR, "drop option is unsupported.");
5464 ret = ixgbe_ethertype_filter_lookup(filter_info, filter->ether_type);
5465 if (ret >= 0 && add) {
5466 PMD_DRV_LOG(ERR, "ethertype (0x%04x) filter exists.",
5467 filter->ether_type);
5470 if (ret < 0 && !add) {
5471 PMD_DRV_LOG(ERR, "ethertype (0x%04x) filter doesn't exist.",
5472 filter->ether_type);
5477 ret = ixgbe_ethertype_filter_insert(filter_info,
5478 filter->ether_type);
5480 PMD_DRV_LOG(ERR, "ethertype filters are full.");
5483 etqf = IXGBE_ETQF_FILTER_EN;
5484 etqf |= (uint32_t)filter->ether_type;
5485 etqs |= (uint32_t)((filter->queue <<
5486 IXGBE_ETQS_RX_QUEUE_SHIFT) &
5487 IXGBE_ETQS_RX_QUEUE);
5488 etqs |= IXGBE_ETQS_QUEUE_EN;
5490 ret = ixgbe_ethertype_filter_remove(filter_info, (uint8_t)ret);
5494 IXGBE_WRITE_REG(hw, IXGBE_ETQF(ret), etqf);
5495 IXGBE_WRITE_REG(hw, IXGBE_ETQS(ret), etqs);
5496 IXGBE_WRITE_FLUSH(hw);
5502 ixgbe_get_ethertype_filter(struct rte_eth_dev *dev,
5503 struct rte_eth_ethertype_filter *filter)
5505 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5506 struct ixgbe_filter_info *filter_info =
5507 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
5508 uint32_t etqf, etqs;
5511 ret = ixgbe_ethertype_filter_lookup(filter_info, filter->ether_type);
5513 PMD_DRV_LOG(ERR, "ethertype (0x%04x) filter doesn't exist.",
5514 filter->ether_type);
5518 etqf = IXGBE_READ_REG(hw, IXGBE_ETQF(ret));
5519 if (etqf & IXGBE_ETQF_FILTER_EN) {
5520 etqs = IXGBE_READ_REG(hw, IXGBE_ETQS(ret));
5521 filter->ether_type = etqf & IXGBE_ETQF_ETHERTYPE;
5523 filter->queue = (etqs & IXGBE_ETQS_RX_QUEUE) >>
5524 IXGBE_ETQS_RX_QUEUE_SHIFT;
5531 * ixgbe_ethertype_filter_handle - Handle operations for ethertype filter.
5532 * @dev: pointer to rte_eth_dev structure
5533 * @filter_op:operation will be taken.
5534 * @arg: a pointer to specific structure corresponding to the filter_op
5537 ixgbe_ethertype_filter_handle(struct rte_eth_dev *dev,
5538 enum rte_filter_op filter_op,
5541 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5544 MAC_TYPE_FILTER_SUP(hw->mac.type);
5546 if (filter_op == RTE_ETH_FILTER_NOP)
5550 PMD_DRV_LOG(ERR, "arg shouldn't be NULL for operation %u.",
5555 switch (filter_op) {
5556 case RTE_ETH_FILTER_ADD:
5557 ret = ixgbe_add_del_ethertype_filter(dev,
5558 (struct rte_eth_ethertype_filter *)arg,
5561 case RTE_ETH_FILTER_DELETE:
5562 ret = ixgbe_add_del_ethertype_filter(dev,
5563 (struct rte_eth_ethertype_filter *)arg,
5566 case RTE_ETH_FILTER_GET:
5567 ret = ixgbe_get_ethertype_filter(dev,
5568 (struct rte_eth_ethertype_filter *)arg);
5571 PMD_DRV_LOG(ERR, "unsupported operation %u.", filter_op);
5579 ixgbe_dev_filter_ctrl(struct rte_eth_dev *dev,
5580 enum rte_filter_type filter_type,
5581 enum rte_filter_op filter_op,
5586 switch (filter_type) {
5587 case RTE_ETH_FILTER_NTUPLE:
5588 ret = ixgbe_ntuple_filter_handle(dev, filter_op, arg);
5590 case RTE_ETH_FILTER_ETHERTYPE:
5591 ret = ixgbe_ethertype_filter_handle(dev, filter_op, arg);
5593 case RTE_ETH_FILTER_SYN:
5594 ret = ixgbe_syn_filter_handle(dev, filter_op, arg);
5596 case RTE_ETH_FILTER_FDIR:
5597 ret = ixgbe_fdir_ctrl_func(dev, filter_op, arg);
5600 PMD_DRV_LOG(WARNING, "Filter type (%d) not supported",
5609 ixgbe_dev_addr_list_itr(__attribute__((unused)) struct ixgbe_hw *hw,
5610 u8 **mc_addr_ptr, u32 *vmdq)
5615 mc_addr = *mc_addr_ptr;
5616 *mc_addr_ptr = (mc_addr + sizeof(struct ether_addr));
5621 ixgbe_dev_set_mc_addr_list(struct rte_eth_dev *dev,
5622 struct ether_addr *mc_addr_set,
5623 uint32_t nb_mc_addr)
5625 struct ixgbe_hw *hw;
5628 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5629 mc_addr_list = (u8 *)mc_addr_set;
5630 return ixgbe_update_mc_addr_list(hw, mc_addr_list, nb_mc_addr,
5631 ixgbe_dev_addr_list_itr, TRUE);
5635 ixgbe_read_systime_cyclecounter(struct rte_eth_dev *dev)
5637 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5638 uint64_t systime_cycles;
5640 switch (hw->mac.type) {
5641 case ixgbe_mac_X550:
5642 /* SYSTIMEL stores ns and SYSTIMEH stores seconds. */
5643 systime_cycles = (uint64_t)IXGBE_READ_REG(hw, IXGBE_SYSTIML);
5644 systime_cycles += (uint64_t)IXGBE_READ_REG(hw, IXGBE_SYSTIMH)
5648 systime_cycles = (uint64_t)IXGBE_READ_REG(hw, IXGBE_SYSTIML);
5649 systime_cycles |= (uint64_t)IXGBE_READ_REG(hw, IXGBE_SYSTIMH)
5653 return systime_cycles;
5657 ixgbe_read_rx_tstamp_cyclecounter(struct rte_eth_dev *dev)
5659 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5660 uint64_t rx_tstamp_cycles;
5662 switch (hw->mac.type) {
5663 case ixgbe_mac_X550:
5664 /* RXSTMPL stores ns and RXSTMPH stores seconds. */
5665 rx_tstamp_cycles = (uint64_t)IXGBE_READ_REG(hw, IXGBE_RXSTMPL);
5666 rx_tstamp_cycles += (uint64_t)IXGBE_READ_REG(hw, IXGBE_RXSTMPH)
5670 /* RXSTMPL stores ns and RXSTMPH stores seconds. */
5671 rx_tstamp_cycles = (uint64_t)IXGBE_READ_REG(hw, IXGBE_RXSTMPL);
5672 rx_tstamp_cycles |= (uint64_t)IXGBE_READ_REG(hw, IXGBE_RXSTMPH)
5676 return rx_tstamp_cycles;
5680 ixgbe_read_tx_tstamp_cyclecounter(struct rte_eth_dev *dev)
5682 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5683 uint64_t tx_tstamp_cycles;
5685 switch (hw->mac.type) {
5686 case ixgbe_mac_X550:
5687 /* TXSTMPL stores ns and TXSTMPH stores seconds. */
5688 tx_tstamp_cycles = (uint64_t)IXGBE_READ_REG(hw, IXGBE_TXSTMPL);
5689 tx_tstamp_cycles += (uint64_t)IXGBE_READ_REG(hw, IXGBE_TXSTMPH)
5693 /* TXSTMPL stores ns and TXSTMPH stores seconds. */
5694 tx_tstamp_cycles = (uint64_t)IXGBE_READ_REG(hw, IXGBE_TXSTMPL);
5695 tx_tstamp_cycles |= (uint64_t)IXGBE_READ_REG(hw, IXGBE_TXSTMPH)
5699 return tx_tstamp_cycles;
5703 ixgbe_start_timecounters(struct rte_eth_dev *dev)
5705 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5706 struct ixgbe_adapter *adapter =
5707 (struct ixgbe_adapter *)dev->data->dev_private;
5708 struct rte_eth_link link;
5709 uint32_t incval = 0;
5712 /* Get current link speed. */
5713 memset(&link, 0, sizeof(link));
5714 ixgbe_dev_link_update(dev, 1);
5715 rte_ixgbe_dev_atomic_read_link_status(dev, &link);
5717 switch (link.link_speed) {
5718 case ETH_LINK_SPEED_100:
5719 incval = IXGBE_INCVAL_100;
5720 shift = IXGBE_INCVAL_SHIFT_100;
5722 case ETH_LINK_SPEED_1000:
5723 incval = IXGBE_INCVAL_1GB;
5724 shift = IXGBE_INCVAL_SHIFT_1GB;
5726 case ETH_LINK_SPEED_10000:
5728 incval = IXGBE_INCVAL_10GB;
5729 shift = IXGBE_INCVAL_SHIFT_10GB;
5733 switch (hw->mac.type) {
5734 case ixgbe_mac_X550:
5735 /* Independent of link speed. */
5737 /* Cycles read will be interpreted as ns. */
5740 case ixgbe_mac_X540:
5741 IXGBE_WRITE_REG(hw, IXGBE_TIMINCA, incval);
5743 case ixgbe_mac_82599EB:
5744 incval >>= IXGBE_INCVAL_SHIFT_82599;
5745 shift -= IXGBE_INCVAL_SHIFT_82599;
5746 IXGBE_WRITE_REG(hw, IXGBE_TIMINCA,
5747 (1 << IXGBE_INCPER_SHIFT_82599) | incval);
5750 /* Not supported. */
5754 memset(&adapter->systime_tc, 0, sizeof(struct rte_timecounter));
5755 memset(&adapter->rx_tstamp_tc, 0, sizeof(struct rte_timecounter));
5756 memset(&adapter->tx_tstamp_tc, 0, sizeof(struct rte_timecounter));
5758 adapter->systime_tc.cc_mask = IXGBE_CYCLECOUNTER_MASK;
5759 adapter->systime_tc.cc_shift = shift;
5760 adapter->systime_tc.nsec_mask = (1ULL << shift) - 1;
5762 adapter->rx_tstamp_tc.cc_mask = IXGBE_CYCLECOUNTER_MASK;
5763 adapter->rx_tstamp_tc.cc_shift = shift;
5764 adapter->rx_tstamp_tc.nsec_mask = (1ULL << shift) - 1;
5766 adapter->tx_tstamp_tc.cc_mask = IXGBE_CYCLECOUNTER_MASK;
5767 adapter->tx_tstamp_tc.cc_shift = shift;
5768 adapter->tx_tstamp_tc.nsec_mask = (1ULL << shift) - 1;
5772 ixgbe_timesync_adjust_time(struct rte_eth_dev *dev, int64_t delta)
5774 struct ixgbe_adapter *adapter =
5775 (struct ixgbe_adapter *)dev->data->dev_private;
5777 adapter->systime_tc.nsec += delta;
5778 adapter->rx_tstamp_tc.nsec += delta;
5779 adapter->tx_tstamp_tc.nsec += delta;
5785 ixgbe_timesync_write_time(struct rte_eth_dev *dev, const struct timespec *ts)
5788 struct ixgbe_adapter *adapter =
5789 (struct ixgbe_adapter *)dev->data->dev_private;
5791 ns = rte_timespec_to_ns(ts);
5792 /* Set the timecounters to a new value. */
5793 adapter->systime_tc.nsec = ns;
5794 adapter->rx_tstamp_tc.nsec = ns;
5795 adapter->tx_tstamp_tc.nsec = ns;
5801 ixgbe_timesync_read_time(struct rte_eth_dev *dev, struct timespec *ts)
5803 uint64_t ns, systime_cycles;
5804 struct ixgbe_adapter *adapter =
5805 (struct ixgbe_adapter *)dev->data->dev_private;
5807 systime_cycles = ixgbe_read_systime_cyclecounter(dev);
5808 ns = rte_timecounter_update(&adapter->systime_tc, systime_cycles);
5809 *ts = rte_ns_to_timespec(ns);
5815 ixgbe_timesync_enable(struct rte_eth_dev *dev)
5817 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5821 /* Stop the timesync system time. */
5822 IXGBE_WRITE_REG(hw, IXGBE_TIMINCA, 0x0);
5823 /* Reset the timesync system time value. */
5824 IXGBE_WRITE_REG(hw, IXGBE_SYSTIML, 0x0);
5825 IXGBE_WRITE_REG(hw, IXGBE_SYSTIMH, 0x0);
5827 /* Enable system time for platforms where it isn't on by default. */
5828 tsauxc = IXGBE_READ_REG(hw, IXGBE_TSAUXC);
5829 tsauxc &= ~IXGBE_TSAUXC_DISABLE_SYSTIME;
5830 IXGBE_WRITE_REG(hw, IXGBE_TSAUXC, tsauxc);
5832 ixgbe_start_timecounters(dev);
5834 /* Enable L2 filtering of IEEE1588/802.1AS Ethernet frame types. */
5835 IXGBE_WRITE_REG(hw, IXGBE_ETQF(IXGBE_ETQF_FILTER_1588),
5837 IXGBE_ETQF_FILTER_EN |
5840 /* Enable timestamping of received PTP packets. */
5841 tsync_ctl = IXGBE_READ_REG(hw, IXGBE_TSYNCRXCTL);
5842 tsync_ctl |= IXGBE_TSYNCRXCTL_ENABLED;
5843 IXGBE_WRITE_REG(hw, IXGBE_TSYNCRXCTL, tsync_ctl);
5845 /* Enable timestamping of transmitted PTP packets. */
5846 tsync_ctl = IXGBE_READ_REG(hw, IXGBE_TSYNCTXCTL);
5847 tsync_ctl |= IXGBE_TSYNCTXCTL_ENABLED;
5848 IXGBE_WRITE_REG(hw, IXGBE_TSYNCTXCTL, tsync_ctl);
5850 IXGBE_WRITE_FLUSH(hw);
5856 ixgbe_timesync_disable(struct rte_eth_dev *dev)
5858 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5861 /* Disable timestamping of transmitted PTP packets. */
5862 tsync_ctl = IXGBE_READ_REG(hw, IXGBE_TSYNCTXCTL);
5863 tsync_ctl &= ~IXGBE_TSYNCTXCTL_ENABLED;
5864 IXGBE_WRITE_REG(hw, IXGBE_TSYNCTXCTL, tsync_ctl);
5866 /* Disable timestamping of received PTP packets. */
5867 tsync_ctl = IXGBE_READ_REG(hw, IXGBE_TSYNCRXCTL);
5868 tsync_ctl &= ~IXGBE_TSYNCRXCTL_ENABLED;
5869 IXGBE_WRITE_REG(hw, IXGBE_TSYNCRXCTL, tsync_ctl);
5871 /* Disable L2 filtering of IEEE1588/802.1AS Ethernet frame types. */
5872 IXGBE_WRITE_REG(hw, IXGBE_ETQF(IXGBE_ETQF_FILTER_1588), 0);
5874 /* Stop incrementating the System Time registers. */
5875 IXGBE_WRITE_REG(hw, IXGBE_TIMINCA, 0);
5881 ixgbe_timesync_read_rx_timestamp(struct rte_eth_dev *dev,
5882 struct timespec *timestamp,
5883 uint32_t flags __rte_unused)
5885 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5886 struct ixgbe_adapter *adapter =
5887 (struct ixgbe_adapter *)dev->data->dev_private;
5888 uint32_t tsync_rxctl;
5889 uint64_t rx_tstamp_cycles;
5892 tsync_rxctl = IXGBE_READ_REG(hw, IXGBE_TSYNCRXCTL);
5893 if ((tsync_rxctl & IXGBE_TSYNCRXCTL_VALID) == 0)
5896 rx_tstamp_cycles = ixgbe_read_rx_tstamp_cyclecounter(dev);
5897 ns = rte_timecounter_update(&adapter->rx_tstamp_tc, rx_tstamp_cycles);
5898 *timestamp = rte_ns_to_timespec(ns);
5904 ixgbe_timesync_read_tx_timestamp(struct rte_eth_dev *dev,
5905 struct timespec *timestamp)
5907 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5908 struct ixgbe_adapter *adapter =
5909 (struct ixgbe_adapter *)dev->data->dev_private;
5910 uint32_t tsync_txctl;
5911 uint64_t tx_tstamp_cycles;
5914 tsync_txctl = IXGBE_READ_REG(hw, IXGBE_TSYNCTXCTL);
5915 if ((tsync_txctl & IXGBE_TSYNCTXCTL_VALID) == 0)
5918 tx_tstamp_cycles = ixgbe_read_tx_tstamp_cyclecounter(dev);
5919 ns = rte_timecounter_update(&adapter->tx_tstamp_tc, tx_tstamp_cycles);
5920 *timestamp = rte_ns_to_timespec(ns);
5926 ixgbe_get_reg_length(struct rte_eth_dev *dev)
5928 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5931 const struct reg_info *reg_group;
5932 const struct reg_info **reg_set = (hw->mac.type == ixgbe_mac_82598EB) ?
5933 ixgbe_regs_mac_82598EB : ixgbe_regs_others;
5935 while ((reg_group = reg_set[g_ind++]))
5936 count += ixgbe_regs_group_count(reg_group);
5942 ixgbevf_get_reg_length(struct rte_eth_dev *dev __rte_unused)
5946 const struct reg_info *reg_group;
5948 while ((reg_group = ixgbevf_regs[g_ind++]))
5949 count += ixgbe_regs_group_count(reg_group);
5955 ixgbe_get_regs(struct rte_eth_dev *dev,
5956 struct rte_dev_reg_info *regs)
5958 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5959 uint32_t *data = regs->data;
5962 const struct reg_info *reg_group;
5963 const struct reg_info **reg_set = (hw->mac.type == ixgbe_mac_82598EB) ?
5964 ixgbe_regs_mac_82598EB : ixgbe_regs_others;
5966 /* Support only full register dump */
5967 if ((regs->length == 0) ||
5968 (regs->length == (uint32_t)ixgbe_get_reg_length(dev))) {
5969 regs->version = hw->mac.type << 24 | hw->revision_id << 16 |
5971 while ((reg_group = reg_set[g_ind++]))
5972 count += ixgbe_read_regs_group(dev, &data[count],
5981 ixgbevf_get_regs(struct rte_eth_dev *dev,
5982 struct rte_dev_reg_info *regs)
5984 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5985 uint32_t *data = regs->data;
5988 const struct reg_info *reg_group;
5990 /* Support only full register dump */
5991 if ((regs->length == 0) ||
5992 (regs->length == (uint32_t)ixgbevf_get_reg_length(dev))) {
5993 regs->version = hw->mac.type << 24 | hw->revision_id << 16 |
5995 while ((reg_group = ixgbevf_regs[g_ind++]))
5996 count += ixgbe_read_regs_group(dev, &data[count],
6005 ixgbe_get_eeprom_length(struct rte_eth_dev *dev)
6007 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6009 /* Return unit is byte count */
6010 return hw->eeprom.word_size * 2;
6014 ixgbe_get_eeprom(struct rte_eth_dev *dev,
6015 struct rte_dev_eeprom_info *in_eeprom)
6017 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6018 struct ixgbe_eeprom_info *eeprom = &hw->eeprom;
6019 uint16_t *data = in_eeprom->data;
6022 first = in_eeprom->offset >> 1;
6023 length = in_eeprom->length >> 1;
6024 if ((first > hw->eeprom.word_size) ||
6025 ((first + length) > hw->eeprom.word_size))
6028 in_eeprom->magic = hw->vendor_id | (hw->device_id << 16);
6030 return eeprom->ops.read_buffer(hw, first, length, data);
6034 ixgbe_set_eeprom(struct rte_eth_dev *dev,
6035 struct rte_dev_eeprom_info *in_eeprom)
6037 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6038 struct ixgbe_eeprom_info *eeprom = &hw->eeprom;
6039 uint16_t *data = in_eeprom->data;
6042 first = in_eeprom->offset >> 1;
6043 length = in_eeprom->length >> 1;
6044 if ((first > hw->eeprom.word_size) ||
6045 ((first + length) > hw->eeprom.word_size))
6048 in_eeprom->magic = hw->vendor_id | (hw->device_id << 16);
6050 return eeprom->ops.write_buffer(hw, first, length, data);
6054 ixgbe_reta_size_get(enum ixgbe_mac_type mac_type) {
6056 case ixgbe_mac_X550:
6057 case ixgbe_mac_X550EM_x:
6058 return ETH_RSS_RETA_SIZE_512;
6059 case ixgbe_mac_X550_vf:
6060 case ixgbe_mac_X550EM_x_vf:
6061 return ETH_RSS_RETA_SIZE_64;
6063 return ETH_RSS_RETA_SIZE_128;
6068 ixgbe_reta_reg_get(enum ixgbe_mac_type mac_type, uint16_t reta_idx) {
6070 case ixgbe_mac_X550:
6071 case ixgbe_mac_X550EM_x:
6072 if (reta_idx < ETH_RSS_RETA_SIZE_128)
6073 return IXGBE_RETA(reta_idx >> 2);
6075 return IXGBE_ERETA((reta_idx - ETH_RSS_RETA_SIZE_128) >> 2);
6076 case ixgbe_mac_X550_vf:
6077 case ixgbe_mac_X550EM_x_vf:
6078 return IXGBE_VFRETA(reta_idx >> 2);
6080 return IXGBE_RETA(reta_idx >> 2);
6085 ixgbe_mrqc_reg_get(enum ixgbe_mac_type mac_type) {
6087 case ixgbe_mac_X550_vf:
6088 case ixgbe_mac_X550EM_x_vf:
6089 return IXGBE_VFMRQC;
6096 ixgbe_rssrk_reg_get(enum ixgbe_mac_type mac_type, uint8_t i) {
6098 case ixgbe_mac_X550_vf:
6099 case ixgbe_mac_X550EM_x_vf:
6100 return IXGBE_VFRSSRK(i);
6102 return IXGBE_RSSRK(i);
6107 ixgbe_rss_update_sp(enum ixgbe_mac_type mac_type) {
6109 case ixgbe_mac_82599_vf:
6110 case ixgbe_mac_X540_vf:
6118 ixgbe_dev_get_dcb_info(struct rte_eth_dev *dev,
6119 struct rte_eth_dcb_info *dcb_info)
6121 struct ixgbe_dcb_config *dcb_config =
6122 IXGBE_DEV_PRIVATE_TO_DCB_CFG(dev->data->dev_private);
6123 struct ixgbe_dcb_tc_config *tc;
6126 if (dev->data->dev_conf.rxmode.mq_mode & ETH_MQ_RX_DCB_FLAG)
6127 dcb_info->nb_tcs = dcb_config->num_tcs.pg_tcs;
6129 dcb_info->nb_tcs = 1;
6131 if (dcb_config->vt_mode) { /* vt is enabled*/
6132 struct rte_eth_vmdq_dcb_conf *vmdq_rx_conf =
6133 &dev->data->dev_conf.rx_adv_conf.vmdq_dcb_conf;
6134 for (i = 0; i < ETH_DCB_NUM_USER_PRIORITIES; i++)
6135 dcb_info->prio_tc[i] = vmdq_rx_conf->dcb_tc[i];
6136 for (i = 0; i < vmdq_rx_conf->nb_queue_pools; i++) {
6137 for (j = 0; j < dcb_info->nb_tcs; j++) {
6138 dcb_info->tc_queue.tc_rxq[i][j].base =
6139 i * dcb_info->nb_tcs + j;
6140 dcb_info->tc_queue.tc_rxq[i][j].nb_queue = 1;
6141 dcb_info->tc_queue.tc_txq[i][j].base =
6142 i * dcb_info->nb_tcs + j;
6143 dcb_info->tc_queue.tc_txq[i][j].nb_queue = 1;
6146 } else { /* vt is disabled*/
6147 struct rte_eth_dcb_rx_conf *rx_conf =
6148 &dev->data->dev_conf.rx_adv_conf.dcb_rx_conf;
6149 for (i = 0; i < ETH_DCB_NUM_USER_PRIORITIES; i++)
6150 dcb_info->prio_tc[i] = rx_conf->dcb_tc[i];
6151 if (dcb_info->nb_tcs == ETH_4_TCS) {
6152 for (i = 0; i < dcb_info->nb_tcs; i++) {
6153 dcb_info->tc_queue.tc_rxq[0][i].base = i * 32;
6154 dcb_info->tc_queue.tc_rxq[0][i].nb_queue = 16;
6156 dcb_info->tc_queue.tc_txq[0][0].base = 0;
6157 dcb_info->tc_queue.tc_txq[0][1].base = 64;
6158 dcb_info->tc_queue.tc_txq[0][2].base = 96;
6159 dcb_info->tc_queue.tc_txq[0][3].base = 112;
6160 dcb_info->tc_queue.tc_txq[0][0].nb_queue = 64;
6161 dcb_info->tc_queue.tc_txq[0][1].nb_queue = 32;
6162 dcb_info->tc_queue.tc_txq[0][2].nb_queue = 16;
6163 dcb_info->tc_queue.tc_txq[0][3].nb_queue = 16;
6164 } else if (dcb_info->nb_tcs == ETH_8_TCS) {
6165 for (i = 0; i < dcb_info->nb_tcs; i++) {
6166 dcb_info->tc_queue.tc_rxq[0][i].base = i * 16;
6167 dcb_info->tc_queue.tc_rxq[0][i].nb_queue = 16;
6169 dcb_info->tc_queue.tc_txq[0][0].base = 0;
6170 dcb_info->tc_queue.tc_txq[0][1].base = 32;
6171 dcb_info->tc_queue.tc_txq[0][2].base = 64;
6172 dcb_info->tc_queue.tc_txq[0][3].base = 80;
6173 dcb_info->tc_queue.tc_txq[0][4].base = 96;
6174 dcb_info->tc_queue.tc_txq[0][5].base = 104;
6175 dcb_info->tc_queue.tc_txq[0][6].base = 112;
6176 dcb_info->tc_queue.tc_txq[0][7].base = 120;
6177 dcb_info->tc_queue.tc_txq[0][0].nb_queue = 32;
6178 dcb_info->tc_queue.tc_txq[0][1].nb_queue = 32;
6179 dcb_info->tc_queue.tc_txq[0][2].nb_queue = 16;
6180 dcb_info->tc_queue.tc_txq[0][3].nb_queue = 16;
6181 dcb_info->tc_queue.tc_txq[0][4].nb_queue = 8;
6182 dcb_info->tc_queue.tc_txq[0][5].nb_queue = 8;
6183 dcb_info->tc_queue.tc_txq[0][6].nb_queue = 8;
6184 dcb_info->tc_queue.tc_txq[0][7].nb_queue = 8;
6187 for (i = 0; i < dcb_info->nb_tcs; i++) {
6188 tc = &dcb_config->tc_config[i];
6189 dcb_info->tc_bws[i] = tc->path[IXGBE_DCB_TX_CONFIG].bwg_percent;
6194 static struct rte_driver rte_ixgbe_driver = {
6196 .init = rte_ixgbe_pmd_init,
6199 static struct rte_driver rte_ixgbevf_driver = {
6201 .init = rte_ixgbevf_pmd_init,
6204 PMD_REGISTER_DRIVER(rte_ixgbe_driver);
6205 PMD_REGISTER_DRIVER(rte_ixgbevf_driver);