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 IXGBE_TIMINCA_16NS_SHIFT 24
130 #define IXGBE_TIMINCA_INCVALUE 16000000
131 #define IXGBE_TIMINCA_INIT ((0x02 << IXGBE_TIMINCA_16NS_SHIFT) \
132 | IXGBE_TIMINCA_INCVALUE)
134 static int eth_ixgbe_dev_init(struct rte_eth_dev *eth_dev);
135 static int eth_ixgbe_dev_uninit(struct rte_eth_dev *eth_dev);
136 static int ixgbe_dev_configure(struct rte_eth_dev *dev);
137 static int ixgbe_dev_start(struct rte_eth_dev *dev);
138 static void ixgbe_dev_stop(struct rte_eth_dev *dev);
139 static int ixgbe_dev_set_link_up(struct rte_eth_dev *dev);
140 static int ixgbe_dev_set_link_down(struct rte_eth_dev *dev);
141 static void ixgbe_dev_close(struct rte_eth_dev *dev);
142 static void ixgbe_dev_promiscuous_enable(struct rte_eth_dev *dev);
143 static void ixgbe_dev_promiscuous_disable(struct rte_eth_dev *dev);
144 static void ixgbe_dev_allmulticast_enable(struct rte_eth_dev *dev);
145 static void ixgbe_dev_allmulticast_disable(struct rte_eth_dev *dev);
146 static int ixgbe_dev_link_update(struct rte_eth_dev *dev,
147 int wait_to_complete);
148 static void ixgbe_dev_stats_get(struct rte_eth_dev *dev,
149 struct rte_eth_stats *stats);
150 static int ixgbe_dev_xstats_get(struct rte_eth_dev *dev,
151 struct rte_eth_xstats *xstats, unsigned n);
152 static void ixgbe_dev_stats_reset(struct rte_eth_dev *dev);
153 static void ixgbe_dev_xstats_reset(struct rte_eth_dev *dev);
154 static int ixgbe_dev_queue_stats_mapping_set(struct rte_eth_dev *eth_dev,
158 static void ixgbe_dev_info_get(struct rte_eth_dev *dev,
159 struct rte_eth_dev_info *dev_info);
160 static void ixgbevf_dev_info_get(struct rte_eth_dev *dev,
161 struct rte_eth_dev_info *dev_info);
162 static int ixgbe_dev_mtu_set(struct rte_eth_dev *dev, uint16_t mtu);
164 static int ixgbe_vlan_filter_set(struct rte_eth_dev *dev,
165 uint16_t vlan_id, int on);
166 static void ixgbe_vlan_tpid_set(struct rte_eth_dev *dev, uint16_t tpid_id);
167 static void ixgbe_vlan_hw_strip_bitmap_set(struct rte_eth_dev *dev,
168 uint16_t queue, bool on);
169 static void ixgbe_vlan_strip_queue_set(struct rte_eth_dev *dev, uint16_t queue,
171 static void ixgbe_vlan_offload_set(struct rte_eth_dev *dev, int mask);
172 static void ixgbe_vlan_hw_strip_enable(struct rte_eth_dev *dev, uint16_t queue);
173 static void ixgbe_vlan_hw_strip_disable(struct rte_eth_dev *dev, uint16_t queue);
174 static void ixgbe_vlan_hw_extend_enable(struct rte_eth_dev *dev);
175 static void ixgbe_vlan_hw_extend_disable(struct rte_eth_dev *dev);
177 static int ixgbe_dev_led_on(struct rte_eth_dev *dev);
178 static int ixgbe_dev_led_off(struct rte_eth_dev *dev);
179 static int ixgbe_flow_ctrl_get(struct rte_eth_dev *dev,
180 struct rte_eth_fc_conf *fc_conf);
181 static int ixgbe_flow_ctrl_set(struct rte_eth_dev *dev,
182 struct rte_eth_fc_conf *fc_conf);
183 static int ixgbe_priority_flow_ctrl_set(struct rte_eth_dev *dev,
184 struct rte_eth_pfc_conf *pfc_conf);
185 static int ixgbe_dev_rss_reta_update(struct rte_eth_dev *dev,
186 struct rte_eth_rss_reta_entry64 *reta_conf,
188 static int ixgbe_dev_rss_reta_query(struct rte_eth_dev *dev,
189 struct rte_eth_rss_reta_entry64 *reta_conf,
191 static void ixgbe_dev_link_status_print(struct rte_eth_dev *dev);
192 static int ixgbe_dev_lsc_interrupt_setup(struct rte_eth_dev *dev);
193 static int ixgbe_dev_rxq_interrupt_setup(struct rte_eth_dev *dev);
194 static int ixgbe_dev_interrupt_get_status(struct rte_eth_dev *dev);
195 static int ixgbe_dev_interrupt_action(struct rte_eth_dev *dev);
196 static void ixgbe_dev_interrupt_handler(struct rte_intr_handle *handle,
198 static void ixgbe_dev_interrupt_delayed_handler(void *param);
199 static void ixgbe_add_rar(struct rte_eth_dev *dev, struct ether_addr *mac_addr,
200 uint32_t index, uint32_t pool);
201 static void ixgbe_remove_rar(struct rte_eth_dev *dev, uint32_t index);
202 static void ixgbe_set_default_mac_addr(struct rte_eth_dev *dev,
203 struct ether_addr *mac_addr);
204 static void ixgbe_dcb_init(struct ixgbe_hw *hw,struct ixgbe_dcb_config *dcb_config);
206 /* For Virtual Function support */
207 static int eth_ixgbevf_dev_init(struct rte_eth_dev *eth_dev);
208 static int eth_ixgbevf_dev_uninit(struct rte_eth_dev *eth_dev);
209 static int ixgbevf_dev_interrupt_get_status(struct rte_eth_dev *dev);
210 static int ixgbevf_dev_interrupt_action(struct rte_eth_dev *dev);
211 static int ixgbevf_dev_configure(struct rte_eth_dev *dev);
212 static int ixgbevf_dev_start(struct rte_eth_dev *dev);
213 static void ixgbevf_dev_stop(struct rte_eth_dev *dev);
214 static void ixgbevf_dev_close(struct rte_eth_dev *dev);
215 static void ixgbevf_intr_disable(struct ixgbe_hw *hw);
216 static void ixgbevf_intr_enable(struct ixgbe_hw *hw);
217 static void ixgbevf_dev_stats_get(struct rte_eth_dev *dev,
218 struct rte_eth_stats *stats);
219 static void ixgbevf_dev_stats_reset(struct rte_eth_dev *dev);
220 static int ixgbevf_vlan_filter_set(struct rte_eth_dev *dev,
221 uint16_t vlan_id, int on);
222 static void ixgbevf_vlan_strip_queue_set(struct rte_eth_dev *dev,
223 uint16_t queue, int on);
224 static void ixgbevf_vlan_offload_set(struct rte_eth_dev *dev, int mask);
225 static void ixgbevf_set_vfta_all(struct rte_eth_dev *dev, bool on);
226 static void ixgbevf_dev_interrupt_handler(struct rte_intr_handle *handle,
228 static int ixgbevf_dev_rx_queue_intr_enable(struct rte_eth_dev *dev,
230 static int ixgbevf_dev_rx_queue_intr_disable(struct rte_eth_dev *dev,
232 static void ixgbevf_set_ivar_map(struct ixgbe_hw *hw, int8_t direction,
233 uint8_t queue, uint8_t msix_vector);
234 static void ixgbevf_configure_msix(struct rte_eth_dev *dev);
236 /* For Eth VMDQ APIs support */
237 static int ixgbe_uc_hash_table_set(struct rte_eth_dev *dev, struct
238 ether_addr* mac_addr,uint8_t on);
239 static int ixgbe_uc_all_hash_table_set(struct rte_eth_dev *dev,uint8_t on);
240 static int ixgbe_set_pool_rx_mode(struct rte_eth_dev *dev, uint16_t pool,
241 uint16_t rx_mask, uint8_t on);
242 static int ixgbe_set_pool_rx(struct rte_eth_dev *dev,uint16_t pool,uint8_t on);
243 static int ixgbe_set_pool_tx(struct rte_eth_dev *dev,uint16_t pool,uint8_t on);
244 static int ixgbe_set_pool_vlan_filter(struct rte_eth_dev *dev, uint16_t vlan,
245 uint64_t pool_mask,uint8_t vlan_on);
246 static int ixgbe_mirror_rule_set(struct rte_eth_dev *dev,
247 struct rte_eth_mirror_conf *mirror_conf,
248 uint8_t rule_id, uint8_t on);
249 static int ixgbe_mirror_rule_reset(struct rte_eth_dev *dev,
251 static int ixgbe_dev_rx_queue_intr_enable(struct rte_eth_dev *dev,
253 static int ixgbe_dev_rx_queue_intr_disable(struct rte_eth_dev *dev,
255 static void ixgbe_set_ivar_map(struct ixgbe_hw *hw, int8_t direction,
256 uint8_t queue, uint8_t msix_vector);
257 static void ixgbe_configure_msix(struct rte_eth_dev *dev);
259 static int ixgbe_set_queue_rate_limit(struct rte_eth_dev *dev,
260 uint16_t queue_idx, uint16_t tx_rate);
261 static int ixgbe_set_vf_rate_limit(struct rte_eth_dev *dev, uint16_t vf,
262 uint16_t tx_rate, uint64_t q_msk);
264 static void ixgbevf_add_mac_addr(struct rte_eth_dev *dev,
265 struct ether_addr *mac_addr,
266 uint32_t index, uint32_t pool);
267 static void ixgbevf_remove_mac_addr(struct rte_eth_dev *dev, uint32_t index);
268 static void ixgbevf_set_default_mac_addr(struct rte_eth_dev *dev,
269 struct ether_addr *mac_addr);
270 static int ixgbe_syn_filter_set(struct rte_eth_dev *dev,
271 struct rte_eth_syn_filter *filter,
273 static int ixgbe_syn_filter_get(struct rte_eth_dev *dev,
274 struct rte_eth_syn_filter *filter);
275 static int ixgbe_syn_filter_handle(struct rte_eth_dev *dev,
276 enum rte_filter_op filter_op,
278 static int ixgbe_add_5tuple_filter(struct rte_eth_dev *dev,
279 struct ixgbe_5tuple_filter *filter);
280 static void ixgbe_remove_5tuple_filter(struct rte_eth_dev *dev,
281 struct ixgbe_5tuple_filter *filter);
282 static int ixgbe_add_del_ntuple_filter(struct rte_eth_dev *dev,
283 struct rte_eth_ntuple_filter *filter,
285 static int ixgbe_ntuple_filter_handle(struct rte_eth_dev *dev,
286 enum rte_filter_op filter_op,
288 static int ixgbe_get_ntuple_filter(struct rte_eth_dev *dev,
289 struct rte_eth_ntuple_filter *filter);
290 static int ixgbe_add_del_ethertype_filter(struct rte_eth_dev *dev,
291 struct rte_eth_ethertype_filter *filter,
293 static int ixgbe_ethertype_filter_handle(struct rte_eth_dev *dev,
294 enum rte_filter_op filter_op,
296 static int ixgbe_get_ethertype_filter(struct rte_eth_dev *dev,
297 struct rte_eth_ethertype_filter *filter);
298 static int ixgbe_dev_filter_ctrl(struct rte_eth_dev *dev,
299 enum rte_filter_type filter_type,
300 enum rte_filter_op filter_op,
302 static int ixgbevf_dev_set_mtu(struct rte_eth_dev *dev, uint16_t mtu);
304 static int ixgbe_dev_set_mc_addr_list(struct rte_eth_dev *dev,
305 struct ether_addr *mc_addr_set,
306 uint32_t nb_mc_addr);
308 static int ixgbe_get_reg_length(struct rte_eth_dev *dev);
309 static int ixgbe_get_regs(struct rte_eth_dev *dev,
310 struct rte_dev_reg_info *regs);
311 static int ixgbe_get_eeprom_length(struct rte_eth_dev *dev);
312 static int ixgbe_get_eeprom(struct rte_eth_dev *dev,
313 struct rte_dev_eeprom_info *eeprom);
314 static int ixgbe_set_eeprom(struct rte_eth_dev *dev,
315 struct rte_dev_eeprom_info *eeprom);
317 static int ixgbevf_get_reg_length(struct rte_eth_dev *dev);
318 static int ixgbevf_get_regs(struct rte_eth_dev *dev,
319 struct rte_dev_reg_info *regs);
321 static int ixgbe_timesync_enable(struct rte_eth_dev *dev);
322 static int ixgbe_timesync_disable(struct rte_eth_dev *dev);
323 static int ixgbe_timesync_read_rx_timestamp(struct rte_eth_dev *dev,
324 struct timespec *timestamp,
326 static int ixgbe_timesync_read_tx_timestamp(struct rte_eth_dev *dev,
327 struct timespec *timestamp);
330 * Define VF Stats MACRO for Non "cleared on read" register
332 #define UPDATE_VF_STAT(reg, last, cur) \
334 uint32_t latest = IXGBE_READ_REG(hw, reg); \
335 cur += (latest - last) & UINT_MAX; \
339 #define UPDATE_VF_STAT_36BIT(lsb, msb, last, cur) \
341 u64 new_lsb = IXGBE_READ_REG(hw, lsb); \
342 u64 new_msb = IXGBE_READ_REG(hw, msb); \
343 u64 latest = ((new_msb << 32) | new_lsb); \
344 cur += (0x1000000000LL + latest - last) & 0xFFFFFFFFFLL; \
348 #define IXGBE_SET_HWSTRIP(h, q) do{\
349 uint32_t idx = (q) / (sizeof ((h)->bitmap[0]) * NBBY); \
350 uint32_t bit = (q) % (sizeof ((h)->bitmap[0]) * NBBY); \
351 (h)->bitmap[idx] |= 1 << bit;\
354 #define IXGBE_CLEAR_HWSTRIP(h, q) do{\
355 uint32_t idx = (q) / (sizeof ((h)->bitmap[0]) * NBBY); \
356 uint32_t bit = (q) % (sizeof ((h)->bitmap[0]) * NBBY); \
357 (h)->bitmap[idx] &= ~(1 << bit);\
360 #define IXGBE_GET_HWSTRIP(h, q, r) do{\
361 uint32_t idx = (q) / (sizeof ((h)->bitmap[0]) * NBBY); \
362 uint32_t bit = (q) % (sizeof ((h)->bitmap[0]) * NBBY); \
363 (r) = (h)->bitmap[idx] >> bit & 1;\
367 * The set of PCI devices this driver supports
369 static const struct rte_pci_id pci_id_ixgbe_map[] = {
371 #define RTE_PCI_DEV_ID_DECL_IXGBE(vend, dev) {RTE_PCI_DEVICE(vend, dev)},
372 #include "rte_pci_dev_ids.h"
374 { .vendor_id = 0, /* sentinel */ },
379 * The set of PCI devices this driver supports (for 82599 VF)
381 static const struct rte_pci_id pci_id_ixgbevf_map[] = {
383 #define RTE_PCI_DEV_ID_DECL_IXGBEVF(vend, dev) {RTE_PCI_DEVICE(vend, dev)},
384 #include "rte_pci_dev_ids.h"
385 { .vendor_id = 0, /* sentinel */ },
389 static const struct eth_dev_ops ixgbe_eth_dev_ops = {
390 .dev_configure = ixgbe_dev_configure,
391 .dev_start = ixgbe_dev_start,
392 .dev_stop = ixgbe_dev_stop,
393 .dev_set_link_up = ixgbe_dev_set_link_up,
394 .dev_set_link_down = ixgbe_dev_set_link_down,
395 .dev_close = ixgbe_dev_close,
396 .promiscuous_enable = ixgbe_dev_promiscuous_enable,
397 .promiscuous_disable = ixgbe_dev_promiscuous_disable,
398 .allmulticast_enable = ixgbe_dev_allmulticast_enable,
399 .allmulticast_disable = ixgbe_dev_allmulticast_disable,
400 .link_update = ixgbe_dev_link_update,
401 .stats_get = ixgbe_dev_stats_get,
402 .xstats_get = ixgbe_dev_xstats_get,
403 .stats_reset = ixgbe_dev_stats_reset,
404 .xstats_reset = ixgbe_dev_xstats_reset,
405 .queue_stats_mapping_set = ixgbe_dev_queue_stats_mapping_set,
406 .dev_infos_get = ixgbe_dev_info_get,
407 .mtu_set = ixgbe_dev_mtu_set,
408 .vlan_filter_set = ixgbe_vlan_filter_set,
409 .vlan_tpid_set = ixgbe_vlan_tpid_set,
410 .vlan_offload_set = ixgbe_vlan_offload_set,
411 .vlan_strip_queue_set = ixgbe_vlan_strip_queue_set,
412 .rx_queue_start = ixgbe_dev_rx_queue_start,
413 .rx_queue_stop = ixgbe_dev_rx_queue_stop,
414 .tx_queue_start = ixgbe_dev_tx_queue_start,
415 .tx_queue_stop = ixgbe_dev_tx_queue_stop,
416 .rx_queue_setup = ixgbe_dev_rx_queue_setup,
417 .rx_queue_intr_enable = ixgbe_dev_rx_queue_intr_enable,
418 .rx_queue_intr_disable = ixgbe_dev_rx_queue_intr_disable,
419 .rx_queue_release = ixgbe_dev_rx_queue_release,
420 .rx_queue_count = ixgbe_dev_rx_queue_count,
421 .rx_descriptor_done = ixgbe_dev_rx_descriptor_done,
422 .tx_queue_setup = ixgbe_dev_tx_queue_setup,
423 .tx_queue_release = ixgbe_dev_tx_queue_release,
424 .dev_led_on = ixgbe_dev_led_on,
425 .dev_led_off = ixgbe_dev_led_off,
426 .flow_ctrl_get = ixgbe_flow_ctrl_get,
427 .flow_ctrl_set = ixgbe_flow_ctrl_set,
428 .priority_flow_ctrl_set = ixgbe_priority_flow_ctrl_set,
429 .mac_addr_add = ixgbe_add_rar,
430 .mac_addr_remove = ixgbe_remove_rar,
431 .mac_addr_set = ixgbe_set_default_mac_addr,
432 .uc_hash_table_set = ixgbe_uc_hash_table_set,
433 .uc_all_hash_table_set = ixgbe_uc_all_hash_table_set,
434 .mirror_rule_set = ixgbe_mirror_rule_set,
435 .mirror_rule_reset = ixgbe_mirror_rule_reset,
436 .set_vf_rx_mode = ixgbe_set_pool_rx_mode,
437 .set_vf_rx = ixgbe_set_pool_rx,
438 .set_vf_tx = ixgbe_set_pool_tx,
439 .set_vf_vlan_filter = ixgbe_set_pool_vlan_filter,
440 .set_queue_rate_limit = ixgbe_set_queue_rate_limit,
441 .set_vf_rate_limit = ixgbe_set_vf_rate_limit,
442 .reta_update = ixgbe_dev_rss_reta_update,
443 .reta_query = ixgbe_dev_rss_reta_query,
444 #ifdef RTE_NIC_BYPASS
445 .bypass_init = ixgbe_bypass_init,
446 .bypass_state_set = ixgbe_bypass_state_store,
447 .bypass_state_show = ixgbe_bypass_state_show,
448 .bypass_event_set = ixgbe_bypass_event_store,
449 .bypass_event_show = ixgbe_bypass_event_show,
450 .bypass_wd_timeout_set = ixgbe_bypass_wd_timeout_store,
451 .bypass_wd_timeout_show = ixgbe_bypass_wd_timeout_show,
452 .bypass_ver_show = ixgbe_bypass_ver_show,
453 .bypass_wd_reset = ixgbe_bypass_wd_reset,
454 #endif /* RTE_NIC_BYPASS */
455 .rss_hash_update = ixgbe_dev_rss_hash_update,
456 .rss_hash_conf_get = ixgbe_dev_rss_hash_conf_get,
457 .filter_ctrl = ixgbe_dev_filter_ctrl,
458 .set_mc_addr_list = ixgbe_dev_set_mc_addr_list,
459 .timesync_enable = ixgbe_timesync_enable,
460 .timesync_disable = ixgbe_timesync_disable,
461 .timesync_read_rx_timestamp = ixgbe_timesync_read_rx_timestamp,
462 .timesync_read_tx_timestamp = ixgbe_timesync_read_tx_timestamp,
463 .get_reg_length = ixgbe_get_reg_length,
464 .get_reg = ixgbe_get_regs,
465 .get_eeprom_length = ixgbe_get_eeprom_length,
466 .get_eeprom = ixgbe_get_eeprom,
467 .set_eeprom = ixgbe_set_eeprom,
471 * dev_ops for virtual function, bare necessities for basic vf
472 * operation have been implemented
474 static const struct eth_dev_ops ixgbevf_eth_dev_ops = {
475 .dev_configure = ixgbevf_dev_configure,
476 .dev_start = ixgbevf_dev_start,
477 .dev_stop = ixgbevf_dev_stop,
478 .link_update = ixgbe_dev_link_update,
479 .stats_get = ixgbevf_dev_stats_get,
480 .stats_reset = ixgbevf_dev_stats_reset,
481 .dev_close = ixgbevf_dev_close,
482 .dev_infos_get = ixgbevf_dev_info_get,
483 .mtu_set = ixgbevf_dev_set_mtu,
484 .vlan_filter_set = ixgbevf_vlan_filter_set,
485 .vlan_strip_queue_set = ixgbevf_vlan_strip_queue_set,
486 .vlan_offload_set = ixgbevf_vlan_offload_set,
487 .rx_queue_setup = ixgbe_dev_rx_queue_setup,
488 .rx_queue_release = ixgbe_dev_rx_queue_release,
489 .rx_descriptor_done = ixgbe_dev_rx_descriptor_done,
490 .tx_queue_setup = ixgbe_dev_tx_queue_setup,
491 .tx_queue_release = ixgbe_dev_tx_queue_release,
492 .rx_queue_intr_enable = ixgbevf_dev_rx_queue_intr_enable,
493 .rx_queue_intr_disable = ixgbevf_dev_rx_queue_intr_disable,
494 .mac_addr_add = ixgbevf_add_mac_addr,
495 .mac_addr_remove = ixgbevf_remove_mac_addr,
496 .set_mc_addr_list = ixgbe_dev_set_mc_addr_list,
497 .mac_addr_set = ixgbevf_set_default_mac_addr,
498 .get_reg_length = ixgbevf_get_reg_length,
499 .get_reg = ixgbevf_get_regs,
502 /* store statistics names and its offset in stats structure */
503 struct rte_ixgbe_xstats_name_off {
504 char name[RTE_ETH_XSTATS_NAME_SIZE];
508 static const struct rte_ixgbe_xstats_name_off rte_ixgbe_stats_strings[] = {
509 {"rx_illegal_byte_err", offsetof(struct ixgbe_hw_stats, errbc)},
510 {"rx_len_err", offsetof(struct ixgbe_hw_stats, rlec)},
511 {"rx_undersize_count", offsetof(struct ixgbe_hw_stats, ruc)},
512 {"rx_oversize_count", offsetof(struct ixgbe_hw_stats, roc)},
513 {"rx_fragment_count", offsetof(struct ixgbe_hw_stats, rfc)},
514 {"rx_jabber_count", offsetof(struct ixgbe_hw_stats, rjc)},
515 {"l3_l4_xsum_error", offsetof(struct ixgbe_hw_stats, xec)},
516 {"mac_local_fault", offsetof(struct ixgbe_hw_stats, mlfc)},
517 {"mac_remote_fault", offsetof(struct ixgbe_hw_stats, mrfc)},
518 {"mac_short_pkt_discard", offsetof(struct ixgbe_hw_stats, mspdc)},
519 {"fccrc_error", offsetof(struct ixgbe_hw_stats, fccrc)},
520 {"fcoe_drop", offsetof(struct ixgbe_hw_stats, fcoerpdc)},
521 {"fc_last_error", offsetof(struct ixgbe_hw_stats, fclast)},
522 {"rx_broadcast_packets", offsetof(struct ixgbe_hw_stats, bprc)},
523 {"rx_phy_multicast_packets", offsetof(struct ixgbe_hw_stats, mprc)},
524 {"mgmt_pkts_dropped", offsetof(struct ixgbe_hw_stats, mngpdc)},
525 {"rx_crc_errors", offsetof(struct ixgbe_hw_stats, crcerrs)},
526 {"fdir_match", offsetof(struct ixgbe_hw_stats, fdirmatch)},
527 {"fdir_miss", offsetof(struct ixgbe_hw_stats, fdirmiss)},
528 {"tx_flow_control_xon", offsetof(struct ixgbe_hw_stats, lxontxc)},
529 {"rx_flow_control_xon", offsetof(struct ixgbe_hw_stats, lxonrxc)},
530 {"tx_flow_control_xoff", offsetof(struct ixgbe_hw_stats, lxofftxc)},
531 {"rx_flow_control_xoff", offsetof(struct ixgbe_hw_stats, lxoffrxc)},
534 #define IXGBE_NB_XSTATS (sizeof(rte_ixgbe_stats_strings) / \
535 sizeof(rte_ixgbe_stats_strings[0]))
538 * Atomically reads the link status information from global
539 * structure rte_eth_dev.
542 * - Pointer to the structure rte_eth_dev to read from.
543 * - Pointer to the buffer to be saved with the link status.
546 * - On success, zero.
547 * - On failure, negative value.
550 rte_ixgbe_dev_atomic_read_link_status(struct rte_eth_dev *dev,
551 struct rte_eth_link *link)
553 struct rte_eth_link *dst = link;
554 struct rte_eth_link *src = &(dev->data->dev_link);
556 if (rte_atomic64_cmpset((uint64_t *)dst, *(uint64_t *)dst,
557 *(uint64_t *)src) == 0)
564 * Atomically writes the link status information into global
565 * structure rte_eth_dev.
568 * - Pointer to the structure rte_eth_dev to read from.
569 * - Pointer to the buffer to be saved with the link status.
572 * - On success, zero.
573 * - On failure, negative value.
576 rte_ixgbe_dev_atomic_write_link_status(struct rte_eth_dev *dev,
577 struct rte_eth_link *link)
579 struct rte_eth_link *dst = &(dev->data->dev_link);
580 struct rte_eth_link *src = link;
582 if (rte_atomic64_cmpset((uint64_t *)dst, *(uint64_t *)dst,
583 *(uint64_t *)src) == 0)
590 * This function is the same as ixgbe_is_sfp() in base/ixgbe.h.
593 ixgbe_is_sfp(struct ixgbe_hw *hw)
595 switch (hw->phy.type) {
596 case ixgbe_phy_sfp_avago:
597 case ixgbe_phy_sfp_ftl:
598 case ixgbe_phy_sfp_intel:
599 case ixgbe_phy_sfp_unknown:
600 case ixgbe_phy_sfp_passive_tyco:
601 case ixgbe_phy_sfp_passive_unknown:
608 static inline int32_t
609 ixgbe_pf_reset_hw(struct ixgbe_hw *hw)
614 status = ixgbe_reset_hw(hw);
616 ctrl_ext = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT);
617 /* Set PF Reset Done bit so PF/VF Mail Ops can work */
618 ctrl_ext |= IXGBE_CTRL_EXT_PFRSTD;
619 IXGBE_WRITE_REG(hw, IXGBE_CTRL_EXT, ctrl_ext);
620 IXGBE_WRITE_FLUSH(hw);
626 ixgbe_enable_intr(struct rte_eth_dev *dev)
628 struct ixgbe_interrupt *intr =
629 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
630 struct ixgbe_hw *hw =
631 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
633 IXGBE_WRITE_REG(hw, IXGBE_EIMS, intr->mask);
634 IXGBE_WRITE_FLUSH(hw);
638 * This function is based on ixgbe_disable_intr() in base/ixgbe.h.
641 ixgbe_disable_intr(struct ixgbe_hw *hw)
643 PMD_INIT_FUNC_TRACE();
645 if (hw->mac.type == ixgbe_mac_82598EB) {
646 IXGBE_WRITE_REG(hw, IXGBE_EIMC, ~0);
648 IXGBE_WRITE_REG(hw, IXGBE_EIMC, 0xFFFF0000);
649 IXGBE_WRITE_REG(hw, IXGBE_EIMC_EX(0), ~0);
650 IXGBE_WRITE_REG(hw, IXGBE_EIMC_EX(1), ~0);
652 IXGBE_WRITE_FLUSH(hw);
656 * This function resets queue statistics mapping registers.
657 * From Niantic datasheet, Initialization of Statistics section:
658 * "...if software requires the queue counters, the RQSMR and TQSM registers
659 * must be re-programmed following a device reset.
662 ixgbe_reset_qstat_mappings(struct ixgbe_hw *hw)
666 for(i = 0; i != IXGBE_NB_STAT_MAPPING_REGS; i++) {
667 IXGBE_WRITE_REG(hw, IXGBE_RQSMR(i), 0);
668 IXGBE_WRITE_REG(hw, IXGBE_TQSM(i), 0);
674 ixgbe_dev_queue_stats_mapping_set(struct rte_eth_dev *eth_dev,
679 #define QSM_REG_NB_BITS_PER_QMAP_FIELD 8
680 #define NB_QMAP_FIELDS_PER_QSM_REG 4
681 #define QMAP_FIELD_RESERVED_BITS_MASK 0x0f
683 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(eth_dev->data->dev_private);
684 struct ixgbe_stat_mapping_registers *stat_mappings =
685 IXGBE_DEV_PRIVATE_TO_STAT_MAPPINGS(eth_dev->data->dev_private);
686 uint32_t qsmr_mask = 0;
687 uint32_t clearing_mask = QMAP_FIELD_RESERVED_BITS_MASK;
691 if ((hw->mac.type != ixgbe_mac_82599EB) &&
692 (hw->mac.type != ixgbe_mac_X540) &&
693 (hw->mac.type != ixgbe_mac_X550) &&
694 (hw->mac.type != ixgbe_mac_X550EM_x))
697 PMD_INIT_LOG(DEBUG, "Setting port %d, %s queue_id %d to stat index %d",
698 (int)(eth_dev->data->port_id), is_rx ? "RX" : "TX",
701 n = (uint8_t)(queue_id / NB_QMAP_FIELDS_PER_QSM_REG);
702 if (n >= IXGBE_NB_STAT_MAPPING_REGS) {
703 PMD_INIT_LOG(ERR, "Nb of stat mapping registers exceeded");
706 offset = (uint8_t)(queue_id % NB_QMAP_FIELDS_PER_QSM_REG);
708 /* Now clear any previous stat_idx set */
709 clearing_mask <<= (QSM_REG_NB_BITS_PER_QMAP_FIELD * offset);
711 stat_mappings->tqsm[n] &= ~clearing_mask;
713 stat_mappings->rqsmr[n] &= ~clearing_mask;
715 q_map = (uint32_t)stat_idx;
716 q_map &= QMAP_FIELD_RESERVED_BITS_MASK;
717 qsmr_mask = q_map << (QSM_REG_NB_BITS_PER_QMAP_FIELD * offset);
719 stat_mappings->tqsm[n] |= qsmr_mask;
721 stat_mappings->rqsmr[n] |= qsmr_mask;
723 PMD_INIT_LOG(DEBUG, "Set port %d, %s queue_id %d to stat index %d",
724 (int)(eth_dev->data->port_id), is_rx ? "RX" : "TX",
726 PMD_INIT_LOG(DEBUG, "%s[%d] = 0x%08x", is_rx ? "RQSMR" : "TQSM", n,
727 is_rx ? stat_mappings->rqsmr[n] : stat_mappings->tqsm[n]);
729 /* Now write the mapping in the appropriate register */
731 PMD_INIT_LOG(DEBUG, "Write 0x%x to RX IXGBE stat mapping reg:%d",
732 stat_mappings->rqsmr[n], n);
733 IXGBE_WRITE_REG(hw, IXGBE_RQSMR(n), stat_mappings->rqsmr[n]);
736 PMD_INIT_LOG(DEBUG, "Write 0x%x to TX IXGBE stat mapping reg:%d",
737 stat_mappings->tqsm[n], n);
738 IXGBE_WRITE_REG(hw, IXGBE_TQSM(n), stat_mappings->tqsm[n]);
744 ixgbe_restore_statistics_mapping(struct rte_eth_dev * dev)
746 struct ixgbe_stat_mapping_registers *stat_mappings =
747 IXGBE_DEV_PRIVATE_TO_STAT_MAPPINGS(dev->data->dev_private);
748 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
751 /* write whatever was in stat mapping table to the NIC */
752 for (i = 0; i < IXGBE_NB_STAT_MAPPING_REGS; i++) {
754 IXGBE_WRITE_REG(hw, IXGBE_RQSMR(i), stat_mappings->rqsmr[i]);
757 IXGBE_WRITE_REG(hw, IXGBE_TQSM(i), stat_mappings->tqsm[i]);
762 ixgbe_dcb_init(struct ixgbe_hw *hw,struct ixgbe_dcb_config *dcb_config)
765 struct ixgbe_dcb_tc_config *tc;
766 uint8_t dcb_max_tc = IXGBE_DCB_MAX_TRAFFIC_CLASS;
768 dcb_config->num_tcs.pg_tcs = dcb_max_tc;
769 dcb_config->num_tcs.pfc_tcs = dcb_max_tc;
770 for (i = 0; i < dcb_max_tc; i++) {
771 tc = &dcb_config->tc_config[i];
772 tc->path[IXGBE_DCB_TX_CONFIG].bwg_id = i;
773 tc->path[IXGBE_DCB_TX_CONFIG].bwg_percent =
774 (uint8_t)(100/dcb_max_tc + (i & 1));
775 tc->path[IXGBE_DCB_RX_CONFIG].bwg_id = i;
776 tc->path[IXGBE_DCB_RX_CONFIG].bwg_percent =
777 (uint8_t)(100/dcb_max_tc + (i & 1));
778 tc->pfc = ixgbe_dcb_pfc_disabled;
781 /* Initialize default user to priority mapping, UPx->TC0 */
782 tc = &dcb_config->tc_config[0];
783 tc->path[IXGBE_DCB_TX_CONFIG].up_to_tc_bitmap = 0xFF;
784 tc->path[IXGBE_DCB_RX_CONFIG].up_to_tc_bitmap = 0xFF;
785 for (i = 0; i< IXGBE_DCB_MAX_BW_GROUP; i++) {
786 dcb_config->bw_percentage[IXGBE_DCB_TX_CONFIG][i] = 100;
787 dcb_config->bw_percentage[IXGBE_DCB_RX_CONFIG][i] = 100;
789 dcb_config->rx_pba_cfg = ixgbe_dcb_pba_equal;
790 dcb_config->pfc_mode_enable = false;
791 dcb_config->vt_mode = true;
792 dcb_config->round_robin_enable = false;
793 /* support all DCB capabilities in 82599 */
794 dcb_config->support.capabilities = 0xFF;
796 /*we only support 4 Tcs for X540, X550 */
797 if (hw->mac.type == ixgbe_mac_X540 ||
798 hw->mac.type == ixgbe_mac_X550 ||
799 hw->mac.type == ixgbe_mac_X550EM_x) {
800 dcb_config->num_tcs.pg_tcs = 4;
801 dcb_config->num_tcs.pfc_tcs = 4;
806 * Ensure that all locks are released before first NVM or PHY access
809 ixgbe_swfw_lock_reset(struct ixgbe_hw *hw)
814 * Phy lock should not fail in this early stage. If this is the case,
815 * it is due to an improper exit of the application.
816 * So force the release of the faulty lock. Release of common lock
817 * is done automatically by swfw_sync function.
819 mask = IXGBE_GSSR_PHY0_SM << hw->bus.func;
820 if (ixgbe_acquire_swfw_semaphore(hw, mask) < 0) {
821 PMD_DRV_LOG(DEBUG, "SWFW phy%d lock released", hw->bus.func);
823 ixgbe_release_swfw_semaphore(hw, mask);
826 * These ones are more tricky since they are common to all ports; but
827 * swfw_sync retries last long enough (1s) to be almost sure that if
828 * lock can not be taken it is due to an improper lock of the
831 mask = IXGBE_GSSR_EEP_SM | IXGBE_GSSR_MAC_CSR_SM | IXGBE_GSSR_SW_MNG_SM;
832 if (ixgbe_acquire_swfw_semaphore(hw, mask) < 0) {
833 PMD_DRV_LOG(DEBUG, "SWFW common locks released");
835 ixgbe_release_swfw_semaphore(hw, mask);
839 * This function is based on code in ixgbe_attach() in base/ixgbe.c.
840 * It returns 0 on success.
843 eth_ixgbe_dev_init(struct rte_eth_dev *eth_dev)
845 struct rte_pci_device *pci_dev;
846 struct ixgbe_hw *hw =
847 IXGBE_DEV_PRIVATE_TO_HW(eth_dev->data->dev_private);
848 struct ixgbe_vfta * shadow_vfta =
849 IXGBE_DEV_PRIVATE_TO_VFTA(eth_dev->data->dev_private);
850 struct ixgbe_hwstrip *hwstrip =
851 IXGBE_DEV_PRIVATE_TO_HWSTRIP_BITMAP(eth_dev->data->dev_private);
852 struct ixgbe_dcb_config *dcb_config =
853 IXGBE_DEV_PRIVATE_TO_DCB_CFG(eth_dev->data->dev_private);
854 struct ixgbe_filter_info *filter_info =
855 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(eth_dev->data->dev_private);
860 PMD_INIT_FUNC_TRACE();
862 eth_dev->dev_ops = &ixgbe_eth_dev_ops;
863 eth_dev->rx_pkt_burst = &ixgbe_recv_pkts;
864 eth_dev->tx_pkt_burst = &ixgbe_xmit_pkts;
867 * For secondary processes, we don't initialise any further as primary
868 * has already done this work. Only check we don't need a different
869 * RX and TX function.
871 if (rte_eal_process_type() != RTE_PROC_PRIMARY){
872 struct ixgbe_tx_queue *txq;
873 /* TX queue function in primary, set by last queue initialized
874 * Tx queue may not initialized by primary process */
875 if (eth_dev->data->tx_queues) {
876 txq = eth_dev->data->tx_queues[eth_dev->data->nb_tx_queues-1];
877 ixgbe_set_tx_function(eth_dev, txq);
879 /* Use default TX function if we get here */
880 PMD_INIT_LOG(NOTICE, "No TX queues configured yet. "
881 "Using default TX function.");
884 ixgbe_set_rx_function(eth_dev);
888 pci_dev = eth_dev->pci_dev;
890 /* Vendor and Device ID need to be set before init of shared code */
891 hw->device_id = pci_dev->id.device_id;
892 hw->vendor_id = pci_dev->id.vendor_id;
893 hw->hw_addr = (void *)pci_dev->mem_resource[0].addr;
894 hw->allow_unsupported_sfp = 1;
896 /* Initialize the shared code (base driver) */
897 #ifdef RTE_NIC_BYPASS
898 diag = ixgbe_bypass_init_shared_code(hw);
900 diag = ixgbe_init_shared_code(hw);
901 #endif /* RTE_NIC_BYPASS */
903 if (diag != IXGBE_SUCCESS) {
904 PMD_INIT_LOG(ERR, "Shared code init failed: %d", diag);
908 /* pick up the PCI bus settings for reporting later */
909 ixgbe_get_bus_info(hw);
911 /* Unlock any pending hardware semaphore */
912 ixgbe_swfw_lock_reset(hw);
914 /* Initialize DCB configuration*/
915 memset(dcb_config, 0, sizeof(struct ixgbe_dcb_config));
916 ixgbe_dcb_init(hw,dcb_config);
917 /* Get Hardware Flow Control setting */
918 hw->fc.requested_mode = ixgbe_fc_full;
919 hw->fc.current_mode = ixgbe_fc_full;
920 hw->fc.pause_time = IXGBE_FC_PAUSE;
921 for (i = 0; i < IXGBE_DCB_MAX_TRAFFIC_CLASS; i++) {
922 hw->fc.low_water[i] = IXGBE_FC_LO;
923 hw->fc.high_water[i] = IXGBE_FC_HI;
927 /* Make sure we have a good EEPROM before we read from it */
928 diag = ixgbe_validate_eeprom_checksum(hw, &csum);
929 if (diag != IXGBE_SUCCESS) {
930 PMD_INIT_LOG(ERR, "The EEPROM checksum is not valid: %d", diag);
934 #ifdef RTE_NIC_BYPASS
935 diag = ixgbe_bypass_init_hw(hw);
937 diag = ixgbe_init_hw(hw);
938 #endif /* RTE_NIC_BYPASS */
941 * Devices with copper phys will fail to initialise if ixgbe_init_hw()
942 * is called too soon after the kernel driver unbinding/binding occurs.
943 * The failure occurs in ixgbe_identify_phy_generic() for all devices,
944 * but for non-copper devies, ixgbe_identify_sfp_module_generic() is
945 * also called. See ixgbe_identify_phy_82599(). The reason for the
946 * failure is not known, and only occuts when virtualisation features
947 * are disabled in the bios. A delay of 100ms was found to be enough by
948 * trial-and-error, and is doubled to be safe.
950 if (diag && (hw->mac.ops.get_media_type(hw) == ixgbe_media_type_copper)) {
952 diag = ixgbe_init_hw(hw);
955 if (diag == IXGBE_ERR_EEPROM_VERSION) {
956 PMD_INIT_LOG(ERR, "This device is a pre-production adapter/"
957 "LOM. Please be aware there may be issues associated "
958 "with your hardware.");
959 PMD_INIT_LOG(ERR, "If you are experiencing problems "
960 "please contact your Intel or hardware representative "
961 "who provided you with this hardware.");
962 } else if (diag == IXGBE_ERR_SFP_NOT_SUPPORTED)
963 PMD_INIT_LOG(ERR, "Unsupported SFP+ Module");
965 PMD_INIT_LOG(ERR, "Hardware Initialization Failure: %d", diag);
969 /* Reset the hw statistics */
970 ixgbe_dev_stats_reset(eth_dev);
972 /* disable interrupt */
973 ixgbe_disable_intr(hw);
975 /* reset mappings for queue statistics hw counters*/
976 ixgbe_reset_qstat_mappings(hw);
978 /* Allocate memory for storing MAC addresses */
979 eth_dev->data->mac_addrs = rte_zmalloc("ixgbe", ETHER_ADDR_LEN *
980 hw->mac.num_rar_entries, 0);
981 if (eth_dev->data->mac_addrs == NULL) {
983 "Failed to allocate %u bytes needed to store "
985 ETHER_ADDR_LEN * hw->mac.num_rar_entries);
988 /* Copy the permanent MAC address */
989 ether_addr_copy((struct ether_addr *) hw->mac.perm_addr,
990 ð_dev->data->mac_addrs[0]);
992 /* Allocate memory for storing hash filter MAC addresses */
993 eth_dev->data->hash_mac_addrs = rte_zmalloc("ixgbe", ETHER_ADDR_LEN *
994 IXGBE_VMDQ_NUM_UC_MAC, 0);
995 if (eth_dev->data->hash_mac_addrs == NULL) {
997 "Failed to allocate %d bytes needed to store MAC addresses",
998 ETHER_ADDR_LEN * IXGBE_VMDQ_NUM_UC_MAC);
1002 /* initialize the vfta */
1003 memset(shadow_vfta, 0, sizeof(*shadow_vfta));
1005 /* initialize the hw strip bitmap*/
1006 memset(hwstrip, 0, sizeof(*hwstrip));
1008 /* initialize PF if max_vfs not zero */
1009 ixgbe_pf_host_init(eth_dev);
1011 ctrl_ext = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT);
1012 /* let hardware know driver is loaded */
1013 ctrl_ext |= IXGBE_CTRL_EXT_DRV_LOAD;
1014 /* Set PF Reset Done bit so PF/VF Mail Ops can work */
1015 ctrl_ext |= IXGBE_CTRL_EXT_PFRSTD;
1016 IXGBE_WRITE_REG(hw, IXGBE_CTRL_EXT, ctrl_ext);
1017 IXGBE_WRITE_FLUSH(hw);
1019 if (ixgbe_is_sfp(hw) && hw->phy.sfp_type != ixgbe_sfp_type_not_present)
1020 PMD_INIT_LOG(DEBUG, "MAC: %d, PHY: %d, SFP+: %d",
1021 (int) hw->mac.type, (int) hw->phy.type,
1022 (int) hw->phy.sfp_type);
1024 PMD_INIT_LOG(DEBUG, "MAC: %d, PHY: %d",
1025 (int) hw->mac.type, (int) hw->phy.type);
1027 PMD_INIT_LOG(DEBUG, "port %d vendorID=0x%x deviceID=0x%x",
1028 eth_dev->data->port_id, pci_dev->id.vendor_id,
1029 pci_dev->id.device_id);
1031 /* enable support intr */
1032 ixgbe_enable_intr(eth_dev);
1034 /* initialize 5tuple filter list */
1035 TAILQ_INIT(&filter_info->fivetuple_list);
1036 memset(filter_info->fivetuple_mask, 0,
1037 sizeof(uint32_t) * IXGBE_5TUPLE_ARRAY_SIZE);
1043 eth_ixgbe_dev_uninit(struct rte_eth_dev *eth_dev)
1045 struct rte_pci_device *pci_dev;
1046 struct ixgbe_hw *hw;
1048 PMD_INIT_FUNC_TRACE();
1050 if (rte_eal_process_type() != RTE_PROC_PRIMARY)
1053 hw = IXGBE_DEV_PRIVATE_TO_HW(eth_dev->data->dev_private);
1054 pci_dev = eth_dev->pci_dev;
1056 if (hw->adapter_stopped == 0)
1057 ixgbe_dev_close(eth_dev);
1059 eth_dev->dev_ops = NULL;
1060 eth_dev->rx_pkt_burst = NULL;
1061 eth_dev->tx_pkt_burst = NULL;
1063 /* Unlock any pending hardware semaphore */
1064 ixgbe_swfw_lock_reset(hw);
1066 /* disable uio intr before callback unregister */
1067 rte_intr_disable(&(pci_dev->intr_handle));
1068 rte_intr_callback_unregister(&(pci_dev->intr_handle),
1069 ixgbe_dev_interrupt_handler, (void *)eth_dev);
1071 /* uninitialize PF if max_vfs not zero */
1072 ixgbe_pf_host_uninit(eth_dev);
1074 rte_free(eth_dev->data->mac_addrs);
1075 eth_dev->data->mac_addrs = NULL;
1077 rte_free(eth_dev->data->hash_mac_addrs);
1078 eth_dev->data->hash_mac_addrs = NULL;
1084 * Negotiate mailbox API version with the PF.
1085 * After reset API version is always set to the basic one (ixgbe_mbox_api_10).
1086 * Then we try to negotiate starting with the most recent one.
1087 * If all negotiation attempts fail, then we will proceed with
1088 * the default one (ixgbe_mbox_api_10).
1091 ixgbevf_negotiate_api(struct ixgbe_hw *hw)
1095 /* start with highest supported, proceed down */
1096 static const enum ixgbe_pfvf_api_rev sup_ver[] = {
1102 i != RTE_DIM(sup_ver) &&
1103 ixgbevf_negotiate_api_version(hw, sup_ver[i]) != 0;
1109 generate_random_mac_addr(struct ether_addr *mac_addr)
1113 /* Set Organizationally Unique Identifier (OUI) prefix. */
1114 mac_addr->addr_bytes[0] = 0x00;
1115 mac_addr->addr_bytes[1] = 0x09;
1116 mac_addr->addr_bytes[2] = 0xC0;
1117 /* Force indication of locally assigned MAC address. */
1118 mac_addr->addr_bytes[0] |= ETHER_LOCAL_ADMIN_ADDR;
1119 /* Generate the last 3 bytes of the MAC address with a random number. */
1120 random = rte_rand();
1121 memcpy(&mac_addr->addr_bytes[3], &random, 3);
1125 * Virtual Function device init
1128 eth_ixgbevf_dev_init(struct rte_eth_dev *eth_dev)
1132 struct rte_pci_device *pci_dev;
1133 struct ixgbe_hw *hw =
1134 IXGBE_DEV_PRIVATE_TO_HW(eth_dev->data->dev_private);
1135 struct ixgbe_vfta * shadow_vfta =
1136 IXGBE_DEV_PRIVATE_TO_VFTA(eth_dev->data->dev_private);
1137 struct ixgbe_hwstrip *hwstrip =
1138 IXGBE_DEV_PRIVATE_TO_HWSTRIP_BITMAP(eth_dev->data->dev_private);
1139 struct ether_addr *perm_addr = (struct ether_addr *) hw->mac.perm_addr;
1141 PMD_INIT_FUNC_TRACE();
1143 eth_dev->dev_ops = &ixgbevf_eth_dev_ops;
1144 eth_dev->rx_pkt_burst = &ixgbe_recv_pkts;
1145 eth_dev->tx_pkt_burst = &ixgbe_xmit_pkts;
1147 /* for secondary processes, we don't initialise any further as primary
1148 * has already done this work. Only check we don't need a different
1150 if (rte_eal_process_type() != RTE_PROC_PRIMARY){
1151 if (eth_dev->data->scattered_rx)
1152 eth_dev->rx_pkt_burst = ixgbe_recv_pkts_lro_single_alloc;
1156 pci_dev = eth_dev->pci_dev;
1158 hw->device_id = pci_dev->id.device_id;
1159 hw->vendor_id = pci_dev->id.vendor_id;
1160 hw->hw_addr = (void *)pci_dev->mem_resource[0].addr;
1162 /* initialize the vfta */
1163 memset(shadow_vfta, 0, sizeof(*shadow_vfta));
1165 /* initialize the hw strip bitmap*/
1166 memset(hwstrip, 0, sizeof(*hwstrip));
1168 /* Initialize the shared code (base driver) */
1169 diag = ixgbe_init_shared_code(hw);
1170 if (diag != IXGBE_SUCCESS) {
1171 PMD_INIT_LOG(ERR, "Shared code init failed for ixgbevf: %d", diag);
1175 /* init_mailbox_params */
1176 hw->mbx.ops.init_params(hw);
1178 /* Reset the hw statistics */
1179 ixgbevf_dev_stats_reset(eth_dev);
1181 /* Disable the interrupts for VF */
1182 ixgbevf_intr_disable(hw);
1184 hw->mac.num_rar_entries = 128; /* The MAX of the underlying PF */
1185 diag = hw->mac.ops.reset_hw(hw);
1188 * The VF reset operation returns the IXGBE_ERR_INVALID_MAC_ADDR when
1189 * the underlying PF driver has not assigned a MAC address to the VF.
1190 * In this case, assign a random MAC address.
1192 if ((diag != IXGBE_SUCCESS) && (diag != IXGBE_ERR_INVALID_MAC_ADDR)) {
1193 PMD_INIT_LOG(ERR, "VF Initialization Failure: %d", diag);
1197 /* negotiate mailbox API version to use with the PF. */
1198 ixgbevf_negotiate_api(hw);
1200 /* Get Rx/Tx queue count via mailbox, which is ready after reset_hw */
1201 ixgbevf_get_queues(hw, &tcs, &tc);
1203 /* Allocate memory for storing MAC addresses */
1204 eth_dev->data->mac_addrs = rte_zmalloc("ixgbevf", ETHER_ADDR_LEN *
1205 hw->mac.num_rar_entries, 0);
1206 if (eth_dev->data->mac_addrs == NULL) {
1208 "Failed to allocate %u bytes needed to store "
1210 ETHER_ADDR_LEN * hw->mac.num_rar_entries);
1214 /* Generate a random MAC address, if none was assigned by PF. */
1215 if (is_zero_ether_addr(perm_addr)) {
1216 generate_random_mac_addr(perm_addr);
1217 diag = ixgbe_set_rar_vf(hw, 1, perm_addr->addr_bytes, 0, 1);
1219 rte_free(eth_dev->data->mac_addrs);
1220 eth_dev->data->mac_addrs = NULL;
1223 PMD_INIT_LOG(INFO, "\tVF MAC address not assigned by Host PF");
1224 PMD_INIT_LOG(INFO, "\tAssign randomly generated MAC address "
1225 "%02x:%02x:%02x:%02x:%02x:%02x",
1226 perm_addr->addr_bytes[0],
1227 perm_addr->addr_bytes[1],
1228 perm_addr->addr_bytes[2],
1229 perm_addr->addr_bytes[3],
1230 perm_addr->addr_bytes[4],
1231 perm_addr->addr_bytes[5]);
1234 /* Copy the permanent MAC address */
1235 ether_addr_copy(perm_addr, ð_dev->data->mac_addrs[0]);
1237 /* reset the hardware with the new settings */
1238 diag = hw->mac.ops.start_hw(hw);
1244 PMD_INIT_LOG(ERR, "VF Initialization Failure: %d", diag);
1248 PMD_INIT_LOG(DEBUG, "port %d vendorID=0x%x deviceID=0x%x mac.type=%s",
1249 eth_dev->data->port_id, pci_dev->id.vendor_id,
1250 pci_dev->id.device_id, "ixgbe_mac_82599_vf");
1255 /* Virtual Function device uninit */
1258 eth_ixgbevf_dev_uninit(struct rte_eth_dev *eth_dev)
1260 struct ixgbe_hw *hw;
1263 PMD_INIT_FUNC_TRACE();
1265 if (rte_eal_process_type() != RTE_PROC_PRIMARY)
1268 hw = IXGBE_DEV_PRIVATE_TO_HW(eth_dev->data->dev_private);
1270 if (hw->adapter_stopped == 0)
1271 ixgbevf_dev_close(eth_dev);
1273 eth_dev->dev_ops = NULL;
1274 eth_dev->rx_pkt_burst = NULL;
1275 eth_dev->tx_pkt_burst = NULL;
1277 /* Disable the interrupts for VF */
1278 ixgbevf_intr_disable(hw);
1280 for (i = 0; i < eth_dev->data->nb_rx_queues; i++) {
1281 ixgbe_dev_rx_queue_release(eth_dev->data->rx_queues[i]);
1282 eth_dev->data->rx_queues[i] = NULL;
1284 eth_dev->data->nb_rx_queues = 0;
1286 for (i = 0; i < eth_dev->data->nb_tx_queues; i++) {
1287 ixgbe_dev_tx_queue_release(eth_dev->data->tx_queues[i]);
1288 eth_dev->data->tx_queues[i] = NULL;
1290 eth_dev->data->nb_tx_queues = 0;
1292 rte_free(eth_dev->data->mac_addrs);
1293 eth_dev->data->mac_addrs = NULL;
1298 static struct eth_driver rte_ixgbe_pmd = {
1300 .name = "rte_ixgbe_pmd",
1301 .id_table = pci_id_ixgbe_map,
1302 .drv_flags = RTE_PCI_DRV_NEED_MAPPING | RTE_PCI_DRV_INTR_LSC |
1303 RTE_PCI_DRV_DETACHABLE,
1305 .eth_dev_init = eth_ixgbe_dev_init,
1306 .eth_dev_uninit = eth_ixgbe_dev_uninit,
1307 .dev_private_size = sizeof(struct ixgbe_adapter),
1311 * virtual function driver struct
1313 static struct eth_driver rte_ixgbevf_pmd = {
1315 .name = "rte_ixgbevf_pmd",
1316 .id_table = pci_id_ixgbevf_map,
1317 .drv_flags = RTE_PCI_DRV_NEED_MAPPING | RTE_PCI_DRV_DETACHABLE,
1319 .eth_dev_init = eth_ixgbevf_dev_init,
1320 .eth_dev_uninit = eth_ixgbevf_dev_uninit,
1321 .dev_private_size = sizeof(struct ixgbe_adapter),
1325 * Driver initialization routine.
1326 * Invoked once at EAL init time.
1327 * Register itself as the [Poll Mode] Driver of PCI IXGBE devices.
1330 rte_ixgbe_pmd_init(const char *name __rte_unused, const char *params __rte_unused)
1332 PMD_INIT_FUNC_TRACE();
1334 rte_eth_driver_register(&rte_ixgbe_pmd);
1339 * VF Driver initialization routine.
1340 * Invoked one at EAL init time.
1341 * Register itself as the [Virtual Poll Mode] Driver of PCI niantic devices.
1344 rte_ixgbevf_pmd_init(const char *name __rte_unused, const char *param __rte_unused)
1346 PMD_INIT_FUNC_TRACE();
1348 rte_eth_driver_register(&rte_ixgbevf_pmd);
1353 ixgbe_vlan_filter_set(struct rte_eth_dev *dev, uint16_t vlan_id, int on)
1355 struct ixgbe_hw *hw =
1356 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1357 struct ixgbe_vfta * shadow_vfta =
1358 IXGBE_DEV_PRIVATE_TO_VFTA(dev->data->dev_private);
1363 vid_idx = (uint32_t) ((vlan_id >> 5) & 0x7F);
1364 vid_bit = (uint32_t) (1 << (vlan_id & 0x1F));
1365 vfta = IXGBE_READ_REG(hw, IXGBE_VFTA(vid_idx));
1370 IXGBE_WRITE_REG(hw, IXGBE_VFTA(vid_idx), vfta);
1372 /* update local VFTA copy */
1373 shadow_vfta->vfta[vid_idx] = vfta;
1379 ixgbe_vlan_strip_queue_set(struct rte_eth_dev *dev, uint16_t queue, int on)
1382 ixgbe_vlan_hw_strip_enable(dev, queue);
1384 ixgbe_vlan_hw_strip_disable(dev, queue);
1388 ixgbe_vlan_tpid_set(struct rte_eth_dev *dev, uint16_t tpid)
1390 struct ixgbe_hw *hw =
1391 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1393 /* Only the high 16-bits is valid */
1394 IXGBE_WRITE_REG(hw, IXGBE_EXVET, tpid << 16);
1398 ixgbe_vlan_hw_filter_disable(struct rte_eth_dev *dev)
1400 struct ixgbe_hw *hw =
1401 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1404 PMD_INIT_FUNC_TRACE();
1406 /* Filter Table Disable */
1407 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
1408 vlnctrl &= ~IXGBE_VLNCTRL_VFE;
1410 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
1414 ixgbe_vlan_hw_filter_enable(struct rte_eth_dev *dev)
1416 struct ixgbe_hw *hw =
1417 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1418 struct ixgbe_vfta * shadow_vfta =
1419 IXGBE_DEV_PRIVATE_TO_VFTA(dev->data->dev_private);
1423 PMD_INIT_FUNC_TRACE();
1425 /* Filter Table Enable */
1426 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
1427 vlnctrl &= ~IXGBE_VLNCTRL_CFIEN;
1428 vlnctrl |= IXGBE_VLNCTRL_VFE;
1430 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
1432 /* write whatever is in local vfta copy */
1433 for (i = 0; i < IXGBE_VFTA_SIZE; i++)
1434 IXGBE_WRITE_REG(hw, IXGBE_VFTA(i), shadow_vfta->vfta[i]);
1438 ixgbe_vlan_hw_strip_bitmap_set(struct rte_eth_dev *dev, uint16_t queue, bool on)
1440 struct ixgbe_hwstrip *hwstrip =
1441 IXGBE_DEV_PRIVATE_TO_HWSTRIP_BITMAP(dev->data->dev_private);
1443 if(queue >= IXGBE_MAX_RX_QUEUE_NUM)
1447 IXGBE_SET_HWSTRIP(hwstrip, queue);
1449 IXGBE_CLEAR_HWSTRIP(hwstrip, queue);
1453 ixgbe_vlan_hw_strip_disable(struct rte_eth_dev *dev, uint16_t queue)
1455 struct ixgbe_hw *hw =
1456 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1459 PMD_INIT_FUNC_TRACE();
1461 if (hw->mac.type == ixgbe_mac_82598EB) {
1462 /* No queue level support */
1463 PMD_INIT_LOG(NOTICE, "82598EB not support queue level hw strip");
1467 /* Other 10G NIC, the VLAN strip can be setup per queue in RXDCTL */
1468 ctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(queue));
1469 ctrl &= ~IXGBE_RXDCTL_VME;
1470 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(queue), ctrl);
1472 /* record those setting for HW strip per queue */
1473 ixgbe_vlan_hw_strip_bitmap_set(dev, queue, 0);
1477 ixgbe_vlan_hw_strip_enable(struct rte_eth_dev *dev, uint16_t queue)
1479 struct ixgbe_hw *hw =
1480 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1483 PMD_INIT_FUNC_TRACE();
1485 if (hw->mac.type == ixgbe_mac_82598EB) {
1486 /* No queue level supported */
1487 PMD_INIT_LOG(NOTICE, "82598EB not support queue level hw strip");
1491 /* Other 10G NIC, the VLAN strip can be setup per queue in RXDCTL */
1492 ctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(queue));
1493 ctrl |= IXGBE_RXDCTL_VME;
1494 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(queue), ctrl);
1496 /* record those setting for HW strip per queue */
1497 ixgbe_vlan_hw_strip_bitmap_set(dev, queue, 1);
1501 ixgbe_vlan_hw_strip_disable_all(struct rte_eth_dev *dev)
1503 struct ixgbe_hw *hw =
1504 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1508 PMD_INIT_FUNC_TRACE();
1510 if (hw->mac.type == ixgbe_mac_82598EB) {
1511 ctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
1512 ctrl &= ~IXGBE_VLNCTRL_VME;
1513 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, ctrl);
1516 /* Other 10G NIC, the VLAN strip can be setup per queue in RXDCTL */
1517 for (i = 0; i < dev->data->nb_rx_queues; i++) {
1518 ctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(i));
1519 ctrl &= ~IXGBE_RXDCTL_VME;
1520 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(i), ctrl);
1522 /* record those setting for HW strip per queue */
1523 ixgbe_vlan_hw_strip_bitmap_set(dev, i, 0);
1529 ixgbe_vlan_hw_strip_enable_all(struct rte_eth_dev *dev)
1531 struct ixgbe_hw *hw =
1532 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1536 PMD_INIT_FUNC_TRACE();
1538 if (hw->mac.type == ixgbe_mac_82598EB) {
1539 ctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
1540 ctrl |= IXGBE_VLNCTRL_VME;
1541 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, ctrl);
1544 /* Other 10G NIC, the VLAN strip can be setup per queue in RXDCTL */
1545 for (i = 0; i < dev->data->nb_rx_queues; i++) {
1546 ctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(i));
1547 ctrl |= IXGBE_RXDCTL_VME;
1548 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(i), ctrl);
1550 /* record those setting for HW strip per queue */
1551 ixgbe_vlan_hw_strip_bitmap_set(dev, i, 1);
1557 ixgbe_vlan_hw_extend_disable(struct rte_eth_dev *dev)
1559 struct ixgbe_hw *hw =
1560 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1563 PMD_INIT_FUNC_TRACE();
1565 /* DMATXCTRL: Geric Double VLAN Disable */
1566 ctrl = IXGBE_READ_REG(hw, IXGBE_DMATXCTL);
1567 ctrl &= ~IXGBE_DMATXCTL_GDV;
1568 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL, ctrl);
1570 /* CTRL_EXT: Global Double VLAN Disable */
1571 ctrl = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT);
1572 ctrl &= ~IXGBE_EXTENDED_VLAN;
1573 IXGBE_WRITE_REG(hw, IXGBE_CTRL_EXT, ctrl);
1578 ixgbe_vlan_hw_extend_enable(struct rte_eth_dev *dev)
1580 struct ixgbe_hw *hw =
1581 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1584 PMD_INIT_FUNC_TRACE();
1586 /* DMATXCTRL: Geric Double VLAN Enable */
1587 ctrl = IXGBE_READ_REG(hw, IXGBE_DMATXCTL);
1588 ctrl |= IXGBE_DMATXCTL_GDV;
1589 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL, ctrl);
1591 /* CTRL_EXT: Global Double VLAN Enable */
1592 ctrl = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT);
1593 ctrl |= IXGBE_EXTENDED_VLAN;
1594 IXGBE_WRITE_REG(hw, IXGBE_CTRL_EXT, ctrl);
1597 * VET EXT field in the EXVET register = 0x8100 by default
1598 * So no need to change. Same to VT field of DMATXCTL register
1603 ixgbe_vlan_offload_set(struct rte_eth_dev *dev, int mask)
1605 if(mask & ETH_VLAN_STRIP_MASK){
1606 if (dev->data->dev_conf.rxmode.hw_vlan_strip)
1607 ixgbe_vlan_hw_strip_enable_all(dev);
1609 ixgbe_vlan_hw_strip_disable_all(dev);
1612 if(mask & ETH_VLAN_FILTER_MASK){
1613 if (dev->data->dev_conf.rxmode.hw_vlan_filter)
1614 ixgbe_vlan_hw_filter_enable(dev);
1616 ixgbe_vlan_hw_filter_disable(dev);
1619 if(mask & ETH_VLAN_EXTEND_MASK){
1620 if (dev->data->dev_conf.rxmode.hw_vlan_extend)
1621 ixgbe_vlan_hw_extend_enable(dev);
1623 ixgbe_vlan_hw_extend_disable(dev);
1628 ixgbe_vmdq_vlan_hw_filter_enable(struct rte_eth_dev *dev)
1630 struct ixgbe_hw *hw =
1631 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1632 /* VLNCTRL: enable vlan filtering and allow all vlan tags through */
1633 uint32_t vlanctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
1634 vlanctrl |= IXGBE_VLNCTRL_VFE ; /* enable vlan filters */
1635 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlanctrl);
1639 ixgbe_dev_configure(struct rte_eth_dev *dev)
1641 struct ixgbe_interrupt *intr =
1642 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
1643 struct ixgbe_adapter *adapter =
1644 (struct ixgbe_adapter *)dev->data->dev_private;
1646 PMD_INIT_FUNC_TRACE();
1648 /* set flag to update link status after init */
1649 intr->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
1652 * Initialize to TRUE. If any of Rx queues doesn't meet the bulk
1653 * allocation or vector Rx preconditions we will reset it.
1655 adapter->rx_bulk_alloc_allowed = true;
1656 adapter->rx_vec_allowed = true;
1662 * Configure device link speed and setup link.
1663 * It returns 0 on success.
1666 ixgbe_dev_start(struct rte_eth_dev *dev)
1668 struct ixgbe_hw *hw =
1669 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1670 struct ixgbe_vf_info *vfinfo =
1671 *IXGBE_DEV_PRIVATE_TO_P_VFDATA(dev->data->dev_private);
1672 struct rte_intr_handle *intr_handle = &dev->pci_dev->intr_handle;
1673 uint32_t intr_vector = 0;
1674 int err, link_up = 0, negotiate = 0;
1680 PMD_INIT_FUNC_TRACE();
1682 /* IXGBE devices don't support half duplex */
1683 if ((dev->data->dev_conf.link_duplex != ETH_LINK_AUTONEG_DUPLEX) &&
1684 (dev->data->dev_conf.link_duplex != ETH_LINK_FULL_DUPLEX)) {
1685 PMD_INIT_LOG(ERR, "Invalid link_duplex (%hu) for port %hhu",
1686 dev->data->dev_conf.link_duplex,
1687 dev->data->port_id);
1692 hw->adapter_stopped = 0;
1693 ixgbe_stop_adapter(hw);
1695 /* reinitialize adapter
1696 * this calls reset and start */
1697 status = ixgbe_pf_reset_hw(hw);
1700 hw->mac.ops.start_hw(hw);
1701 hw->mac.get_link_status = true;
1703 /* configure PF module if SRIOV enabled */
1704 ixgbe_pf_host_configure(dev);
1706 /* check and configure queue intr-vector mapping */
1707 if (dev->data->dev_conf.intr_conf.rxq != 0)
1708 intr_vector = dev->data->nb_rx_queues;
1710 if (rte_intr_efd_enable(intr_handle, intr_vector))
1713 if (rte_intr_dp_is_en(intr_handle) && !intr_handle->intr_vec) {
1714 intr_handle->intr_vec =
1715 rte_zmalloc("intr_vec",
1716 dev->data->nb_rx_queues * sizeof(int),
1718 if (intr_handle->intr_vec == NULL) {
1719 PMD_INIT_LOG(ERR, "Failed to allocate %d rx_queues"
1720 " intr_vec\n", dev->data->nb_rx_queues);
1725 /* confiugre msix for sleep until rx interrupt */
1726 ixgbe_configure_msix(dev);
1728 /* initialize transmission unit */
1729 ixgbe_dev_tx_init(dev);
1731 /* This can fail when allocating mbufs for descriptor rings */
1732 err = ixgbe_dev_rx_init(dev);
1734 PMD_INIT_LOG(ERR, "Unable to initialize RX hardware");
1738 err = ixgbe_dev_rxtx_start(dev);
1740 PMD_INIT_LOG(ERR, "Unable to start rxtx queues");
1744 /* Skip link setup if loopback mode is enabled for 82599. */
1745 if (hw->mac.type == ixgbe_mac_82599EB &&
1746 dev->data->dev_conf.lpbk_mode == IXGBE_LPBK_82599_TX_RX)
1747 goto skip_link_setup;
1749 if (ixgbe_is_sfp(hw) && hw->phy.multispeed_fiber) {
1750 err = hw->mac.ops.setup_sfp(hw);
1755 if (hw->mac.ops.get_media_type(hw) == ixgbe_media_type_copper) {
1756 /* Turn on the copper */
1757 ixgbe_set_phy_power(hw, true);
1759 /* Turn on the laser */
1760 ixgbe_enable_tx_laser(hw);
1763 err = ixgbe_check_link(hw, &speed, &link_up, 0);
1766 dev->data->dev_link.link_status = link_up;
1768 err = ixgbe_get_link_capabilities(hw, &speed, &negotiate);
1772 switch(dev->data->dev_conf.link_speed) {
1773 case ETH_LINK_SPEED_AUTONEG:
1774 speed = (hw->mac.type != ixgbe_mac_82598EB) ?
1775 IXGBE_LINK_SPEED_82599_AUTONEG :
1776 IXGBE_LINK_SPEED_82598_AUTONEG;
1778 case ETH_LINK_SPEED_100:
1780 * Invalid for 82598 but error will be detected by
1781 * ixgbe_setup_link()
1783 speed = IXGBE_LINK_SPEED_100_FULL;
1785 case ETH_LINK_SPEED_1000:
1786 speed = IXGBE_LINK_SPEED_1GB_FULL;
1788 case ETH_LINK_SPEED_10000:
1789 speed = IXGBE_LINK_SPEED_10GB_FULL;
1792 PMD_INIT_LOG(ERR, "Invalid link_speed (%hu) for port %hhu",
1793 dev->data->dev_conf.link_speed,
1794 dev->data->port_id);
1798 err = ixgbe_setup_link(hw, speed, link_up);
1804 /* check if lsc interrupt is enabled */
1805 if (dev->data->dev_conf.intr_conf.lsc != 0) {
1806 if (rte_intr_allow_others(intr_handle)) {
1807 rte_intr_callback_register(intr_handle,
1808 ixgbe_dev_interrupt_handler,
1810 ixgbe_dev_lsc_interrupt_setup(dev);
1812 PMD_INIT_LOG(INFO, "lsc won't enable because of"
1813 " no intr multiplex\n");
1816 /* check if rxq interrupt is enabled */
1817 if (dev->data->dev_conf.intr_conf.rxq != 0)
1818 ixgbe_dev_rxq_interrupt_setup(dev);
1820 /* enable uio/vfio intr/eventfd mapping */
1821 rte_intr_enable(intr_handle);
1823 /* resume enabled intr since hw reset */
1824 ixgbe_enable_intr(dev);
1826 mask = ETH_VLAN_STRIP_MASK | ETH_VLAN_FILTER_MASK | \
1827 ETH_VLAN_EXTEND_MASK;
1828 ixgbe_vlan_offload_set(dev, mask);
1830 if (dev->data->dev_conf.rxmode.mq_mode == ETH_MQ_RX_VMDQ_ONLY) {
1831 /* Enable vlan filtering for VMDq */
1832 ixgbe_vmdq_vlan_hw_filter_enable(dev);
1835 /* Configure DCB hw */
1836 ixgbe_configure_dcb(dev);
1838 if (dev->data->dev_conf.fdir_conf.mode != RTE_FDIR_MODE_NONE) {
1839 err = ixgbe_fdir_configure(dev);
1844 /* Restore vf rate limit */
1845 if (vfinfo != NULL) {
1846 for (vf = 0; vf < dev->pci_dev->max_vfs; vf++)
1847 for (idx = 0; idx < IXGBE_MAX_QUEUE_NUM_PER_VF; idx++)
1848 if (vfinfo[vf].tx_rate[idx] != 0)
1849 ixgbe_set_vf_rate_limit(dev, vf,
1850 vfinfo[vf].tx_rate[idx],
1854 ixgbe_restore_statistics_mapping(dev);
1859 PMD_INIT_LOG(ERR, "failure in ixgbe_dev_start(): %d", err);
1860 ixgbe_dev_clear_queues(dev);
1865 * Stop device: disable rx and tx functions to allow for reconfiguring.
1868 ixgbe_dev_stop(struct rte_eth_dev *dev)
1870 struct rte_eth_link link;
1871 struct ixgbe_hw *hw =
1872 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1873 struct ixgbe_vf_info *vfinfo =
1874 *IXGBE_DEV_PRIVATE_TO_P_VFDATA(dev->data->dev_private);
1875 struct ixgbe_filter_info *filter_info =
1876 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
1877 struct ixgbe_5tuple_filter *p_5tuple, *p_5tuple_next;
1878 struct rte_intr_handle *intr_handle = &dev->pci_dev->intr_handle;
1881 PMD_INIT_FUNC_TRACE();
1883 /* disable interrupts */
1884 ixgbe_disable_intr(hw);
1886 /* disable intr eventfd mapping */
1887 rte_intr_disable(intr_handle);
1890 ixgbe_pf_reset_hw(hw);
1891 hw->adapter_stopped = 0;
1894 ixgbe_stop_adapter(hw);
1896 for (vf = 0; vfinfo != NULL &&
1897 vf < dev->pci_dev->max_vfs; vf++)
1898 vfinfo[vf].clear_to_send = false;
1900 if (hw->mac.ops.get_media_type(hw) == ixgbe_media_type_copper) {
1901 /* Turn off the copper */
1902 ixgbe_set_phy_power(hw, false);
1904 /* Turn off the laser */
1905 ixgbe_disable_tx_laser(hw);
1908 ixgbe_dev_clear_queues(dev);
1910 /* Clear stored conf */
1911 dev->data->scattered_rx = 0;
1914 /* Clear recorded link status */
1915 memset(&link, 0, sizeof(link));
1916 rte_ixgbe_dev_atomic_write_link_status(dev, &link);
1918 /* Remove all ntuple filters of the device */
1919 for (p_5tuple = TAILQ_FIRST(&filter_info->fivetuple_list);
1920 p_5tuple != NULL; p_5tuple = p_5tuple_next) {
1921 p_5tuple_next = TAILQ_NEXT(p_5tuple, entries);
1922 TAILQ_REMOVE(&filter_info->fivetuple_list,
1926 memset(filter_info->fivetuple_mask, 0,
1927 sizeof(uint32_t) * IXGBE_5TUPLE_ARRAY_SIZE);
1929 /* Clean datapath event and queue/vec mapping */
1930 rte_intr_efd_disable(intr_handle);
1931 if (intr_handle->intr_vec != NULL) {
1932 rte_free(intr_handle->intr_vec);
1933 intr_handle->intr_vec = NULL;
1938 * Set device link up: enable tx.
1941 ixgbe_dev_set_link_up(struct rte_eth_dev *dev)
1943 struct ixgbe_hw *hw =
1944 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1945 if (hw->mac.type == ixgbe_mac_82599EB) {
1946 #ifdef RTE_NIC_BYPASS
1947 if (hw->device_id == IXGBE_DEV_ID_82599_BYPASS) {
1948 /* Not suported in bypass mode */
1949 PMD_INIT_LOG(ERR, "Set link up is not supported "
1950 "by device id 0x%x", hw->device_id);
1956 if (hw->mac.ops.get_media_type(hw) == ixgbe_media_type_copper) {
1957 /* Turn on the copper */
1958 ixgbe_set_phy_power(hw, true);
1960 /* Turn on the laser */
1961 ixgbe_enable_tx_laser(hw);
1968 * Set device link down: disable tx.
1971 ixgbe_dev_set_link_down(struct rte_eth_dev *dev)
1973 struct ixgbe_hw *hw =
1974 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1975 if (hw->mac.type == ixgbe_mac_82599EB) {
1976 #ifdef RTE_NIC_BYPASS
1977 if (hw->device_id == IXGBE_DEV_ID_82599_BYPASS) {
1978 /* Not suported in bypass mode */
1979 PMD_INIT_LOG(ERR, "Set link down is not supported "
1980 "by device id 0x%x", hw->device_id);
1986 if (hw->mac.ops.get_media_type(hw) == ixgbe_media_type_copper) {
1987 /* Turn off the copper */
1988 ixgbe_set_phy_power(hw, false);
1990 /* Turn off the laser */
1991 ixgbe_disable_tx_laser(hw);
1998 * Reest and stop device.
2001 ixgbe_dev_close(struct rte_eth_dev *dev)
2003 struct ixgbe_hw *hw =
2004 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2006 PMD_INIT_FUNC_TRACE();
2008 ixgbe_pf_reset_hw(hw);
2010 ixgbe_dev_stop(dev);
2011 hw->adapter_stopped = 1;
2013 ixgbe_dev_free_queues(dev);
2015 ixgbe_disable_pcie_master(hw);
2017 /* reprogram the RAR[0] in case user changed it. */
2018 ixgbe_set_rar(hw, 0, hw->mac.addr, 0, IXGBE_RAH_AV);
2022 ixgbe_read_stats_registers(struct ixgbe_hw *hw, struct ixgbe_hw_stats
2023 *hw_stats, uint64_t *total_missed_rx,
2024 uint64_t *total_qbrc, uint64_t *total_qprc,
2025 uint64_t *total_qprdc)
2027 uint32_t bprc, lxon, lxoff, total;
2030 hw_stats->crcerrs += IXGBE_READ_REG(hw, IXGBE_CRCERRS);
2031 hw_stats->illerrc += IXGBE_READ_REG(hw, IXGBE_ILLERRC);
2032 hw_stats->errbc += IXGBE_READ_REG(hw, IXGBE_ERRBC);
2033 hw_stats->mspdc += IXGBE_READ_REG(hw, IXGBE_MSPDC);
2035 for (i = 0; i < 8; i++) {
2037 mp = IXGBE_READ_REG(hw, IXGBE_MPC(i));
2038 /* global total per queue */
2039 hw_stats->mpc[i] += mp;
2040 /* Running comprehensive total for stats display */
2041 *total_missed_rx += hw_stats->mpc[i];
2042 if (hw->mac.type == ixgbe_mac_82598EB)
2043 hw_stats->rnbc[i] +=
2044 IXGBE_READ_REG(hw, IXGBE_RNBC(i));
2045 hw_stats->pxontxc[i] +=
2046 IXGBE_READ_REG(hw, IXGBE_PXONTXC(i));
2047 hw_stats->pxonrxc[i] +=
2048 IXGBE_READ_REG(hw, IXGBE_PXONRXC(i));
2049 hw_stats->pxofftxc[i] +=
2050 IXGBE_READ_REG(hw, IXGBE_PXOFFTXC(i));
2051 hw_stats->pxoffrxc[i] +=
2052 IXGBE_READ_REG(hw, IXGBE_PXOFFRXC(i));
2053 hw_stats->pxon2offc[i] +=
2054 IXGBE_READ_REG(hw, IXGBE_PXON2OFFCNT(i));
2056 for (i = 0; i < IXGBE_QUEUE_STAT_COUNTERS; i++) {
2057 hw_stats->qprc[i] += IXGBE_READ_REG(hw, IXGBE_QPRC(i));
2058 hw_stats->qptc[i] += IXGBE_READ_REG(hw, IXGBE_QPTC(i));
2059 hw_stats->qbrc[i] += IXGBE_READ_REG(hw, IXGBE_QBRC_L(i));
2060 hw_stats->qbrc[i] +=
2061 ((uint64_t)IXGBE_READ_REG(hw, IXGBE_QBRC_H(i)) << 32);
2062 hw_stats->qbtc[i] += IXGBE_READ_REG(hw, IXGBE_QBTC_L(i));
2063 hw_stats->qbtc[i] +=
2064 ((uint64_t)IXGBE_READ_REG(hw, IXGBE_QBTC_H(i)) << 32);
2065 *total_qprdc += hw_stats->qprdc[i] +=
2066 IXGBE_READ_REG(hw, IXGBE_QPRDC(i));
2068 *total_qprc += hw_stats->qprc[i];
2069 *total_qbrc += hw_stats->qbrc[i];
2071 hw_stats->mlfc += IXGBE_READ_REG(hw, IXGBE_MLFC);
2072 hw_stats->mrfc += IXGBE_READ_REG(hw, IXGBE_MRFC);
2073 hw_stats->rlec += IXGBE_READ_REG(hw, IXGBE_RLEC);
2075 /* Note that gprc counts missed packets */
2076 hw_stats->gprc += IXGBE_READ_REG(hw, IXGBE_GPRC);
2078 if (hw->mac.type != ixgbe_mac_82598EB) {
2079 hw_stats->gorc += IXGBE_READ_REG(hw, IXGBE_GORCL);
2080 hw_stats->gorc += ((u64)IXGBE_READ_REG(hw, IXGBE_GORCH) << 32);
2081 hw_stats->gotc += IXGBE_READ_REG(hw, IXGBE_GOTCL);
2082 hw_stats->gotc += ((u64)IXGBE_READ_REG(hw, IXGBE_GOTCH) << 32);
2083 hw_stats->tor += IXGBE_READ_REG(hw, IXGBE_TORL);
2084 hw_stats->tor += ((u64)IXGBE_READ_REG(hw, IXGBE_TORH) << 32);
2085 hw_stats->lxonrxc += IXGBE_READ_REG(hw, IXGBE_LXONRXCNT);
2086 hw_stats->lxoffrxc += IXGBE_READ_REG(hw, IXGBE_LXOFFRXCNT);
2088 hw_stats->lxonrxc += IXGBE_READ_REG(hw, IXGBE_LXONRXC);
2089 hw_stats->lxoffrxc += IXGBE_READ_REG(hw, IXGBE_LXOFFRXC);
2090 /* 82598 only has a counter in the high register */
2091 hw_stats->gorc += IXGBE_READ_REG(hw, IXGBE_GORCH);
2092 hw_stats->gotc += IXGBE_READ_REG(hw, IXGBE_GOTCH);
2093 hw_stats->tor += IXGBE_READ_REG(hw, IXGBE_TORH);
2097 * Workaround: mprc hardware is incorrectly counting
2098 * broadcasts, so for now we subtract those.
2100 bprc = IXGBE_READ_REG(hw, IXGBE_BPRC);
2101 hw_stats->bprc += bprc;
2102 hw_stats->mprc += IXGBE_READ_REG(hw, IXGBE_MPRC);
2103 if (hw->mac.type == ixgbe_mac_82598EB)
2104 hw_stats->mprc -= bprc;
2106 hw_stats->prc64 += IXGBE_READ_REG(hw, IXGBE_PRC64);
2107 hw_stats->prc127 += IXGBE_READ_REG(hw, IXGBE_PRC127);
2108 hw_stats->prc255 += IXGBE_READ_REG(hw, IXGBE_PRC255);
2109 hw_stats->prc511 += IXGBE_READ_REG(hw, IXGBE_PRC511);
2110 hw_stats->prc1023 += IXGBE_READ_REG(hw, IXGBE_PRC1023);
2111 hw_stats->prc1522 += IXGBE_READ_REG(hw, IXGBE_PRC1522);
2113 lxon = IXGBE_READ_REG(hw, IXGBE_LXONTXC);
2114 hw_stats->lxontxc += lxon;
2115 lxoff = IXGBE_READ_REG(hw, IXGBE_LXOFFTXC);
2116 hw_stats->lxofftxc += lxoff;
2117 total = lxon + lxoff;
2119 hw_stats->gptc += IXGBE_READ_REG(hw, IXGBE_GPTC);
2120 hw_stats->mptc += IXGBE_READ_REG(hw, IXGBE_MPTC);
2121 hw_stats->ptc64 += IXGBE_READ_REG(hw, IXGBE_PTC64);
2122 hw_stats->gptc -= total;
2123 hw_stats->mptc -= total;
2124 hw_stats->ptc64 -= total;
2125 hw_stats->gotc -= total * ETHER_MIN_LEN;
2127 hw_stats->ruc += IXGBE_READ_REG(hw, IXGBE_RUC);
2128 hw_stats->rfc += IXGBE_READ_REG(hw, IXGBE_RFC);
2129 hw_stats->roc += IXGBE_READ_REG(hw, IXGBE_ROC);
2130 hw_stats->rjc += IXGBE_READ_REG(hw, IXGBE_RJC);
2131 hw_stats->mngprc += IXGBE_READ_REG(hw, IXGBE_MNGPRC);
2132 hw_stats->mngpdc += IXGBE_READ_REG(hw, IXGBE_MNGPDC);
2133 hw_stats->mngptc += IXGBE_READ_REG(hw, IXGBE_MNGPTC);
2134 hw_stats->tpr += IXGBE_READ_REG(hw, IXGBE_TPR);
2135 hw_stats->tpt += IXGBE_READ_REG(hw, IXGBE_TPT);
2136 hw_stats->ptc127 += IXGBE_READ_REG(hw, IXGBE_PTC127);
2137 hw_stats->ptc255 += IXGBE_READ_REG(hw, IXGBE_PTC255);
2138 hw_stats->ptc511 += IXGBE_READ_REG(hw, IXGBE_PTC511);
2139 hw_stats->ptc1023 += IXGBE_READ_REG(hw, IXGBE_PTC1023);
2140 hw_stats->ptc1522 += IXGBE_READ_REG(hw, IXGBE_PTC1522);
2141 hw_stats->bptc += IXGBE_READ_REG(hw, IXGBE_BPTC);
2142 hw_stats->xec += IXGBE_READ_REG(hw, IXGBE_XEC);
2143 hw_stats->fccrc += IXGBE_READ_REG(hw, IXGBE_FCCRC);
2144 hw_stats->fclast += IXGBE_READ_REG(hw, IXGBE_FCLAST);
2145 /* Only read FCOE on 82599 */
2146 if (hw->mac.type != ixgbe_mac_82598EB) {
2147 hw_stats->fcoerpdc += IXGBE_READ_REG(hw, IXGBE_FCOERPDC);
2148 hw_stats->fcoeprc += IXGBE_READ_REG(hw, IXGBE_FCOEPRC);
2149 hw_stats->fcoeptc += IXGBE_READ_REG(hw, IXGBE_FCOEPTC);
2150 hw_stats->fcoedwrc += IXGBE_READ_REG(hw, IXGBE_FCOEDWRC);
2151 hw_stats->fcoedwtc += IXGBE_READ_REG(hw, IXGBE_FCOEDWTC);
2154 /* Flow Director Stats registers */
2155 hw_stats->fdirmatch += IXGBE_READ_REG(hw, IXGBE_FDIRMATCH);
2156 hw_stats->fdirmiss += IXGBE_READ_REG(hw, IXGBE_FDIRMISS);
2160 * This function is based on ixgbe_update_stats_counters() in ixgbe/ixgbe.c
2163 ixgbe_dev_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats)
2165 struct ixgbe_hw *hw =
2166 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2167 struct ixgbe_hw_stats *hw_stats =
2168 IXGBE_DEV_PRIVATE_TO_STATS(dev->data->dev_private);
2169 uint64_t total_missed_rx, total_qbrc, total_qprc, total_qprdc;
2172 total_missed_rx = 0;
2177 ixgbe_read_stats_registers(hw, hw_stats, &total_missed_rx, &total_qbrc,
2178 &total_qprc, &total_qprdc);
2183 /* Fill out the rte_eth_stats statistics structure */
2184 stats->ipackets = total_qprc;
2185 stats->ibytes = total_qbrc;
2186 stats->opackets = hw_stats->gptc;
2187 stats->obytes = hw_stats->gotc;
2189 for (i = 0; i < IXGBE_QUEUE_STAT_COUNTERS; i++) {
2190 stats->q_ipackets[i] = hw_stats->qprc[i];
2191 stats->q_opackets[i] = hw_stats->qptc[i];
2192 stats->q_ibytes[i] = hw_stats->qbrc[i];
2193 stats->q_obytes[i] = hw_stats->qbtc[i];
2194 stats->q_errors[i] = hw_stats->qprdc[i];
2198 stats->ierrors = hw_stats->crcerrs +
2218 ixgbe_dev_stats_reset(struct rte_eth_dev *dev)
2220 struct ixgbe_hw_stats *stats =
2221 IXGBE_DEV_PRIVATE_TO_STATS(dev->data->dev_private);
2223 /* HW registers are cleared on read */
2224 ixgbe_dev_stats_get(dev, NULL);
2226 /* Reset software totals */
2227 memset(stats, 0, sizeof(*stats));
2231 ixgbe_dev_xstats_get(struct rte_eth_dev *dev, struct rte_eth_xstats *xstats,
2234 struct ixgbe_hw *hw =
2235 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2236 struct ixgbe_hw_stats *hw_stats =
2237 IXGBE_DEV_PRIVATE_TO_STATS(dev->data->dev_private);
2238 uint64_t total_missed_rx, total_qbrc, total_qprc, total_qprdc;
2239 unsigned i, count = IXGBE_NB_XSTATS;
2244 total_missed_rx = 0;
2249 ixgbe_read_stats_registers(hw, hw_stats, &total_missed_rx, &total_qbrc,
2250 &total_qprc, &total_qprdc);
2252 /* If this is a reset xstats is NULL, and we have cleared the
2253 * registers by reading them.
2258 /* Extended stats */
2259 for (i = 0; i < IXGBE_NB_XSTATS; i++) {
2260 snprintf(xstats[i].name, sizeof(xstats[i].name),
2261 "%s", rte_ixgbe_stats_strings[i].name);
2262 xstats[i].value = *(uint64_t *)(((char *)hw_stats) +
2263 rte_ixgbe_stats_strings[i].offset);
2270 ixgbe_dev_xstats_reset(struct rte_eth_dev *dev)
2272 struct ixgbe_hw_stats *stats =
2273 IXGBE_DEV_PRIVATE_TO_STATS(dev->data->dev_private);
2275 /* HW registers are cleared on read */
2276 ixgbe_dev_xstats_get(dev, NULL, IXGBE_NB_XSTATS);
2278 /* Reset software totals */
2279 memset(stats, 0, sizeof(*stats));
2283 ixgbevf_dev_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats)
2285 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2286 struct ixgbevf_hw_stats *hw_stats = (struct ixgbevf_hw_stats*)
2287 IXGBE_DEV_PRIVATE_TO_STATS(dev->data->dev_private);
2289 /* Good Rx packet, include VF loopback */
2290 UPDATE_VF_STAT(IXGBE_VFGPRC,
2291 hw_stats->last_vfgprc, hw_stats->vfgprc);
2293 /* Good Rx octets, include VF loopback */
2294 UPDATE_VF_STAT_36BIT(IXGBE_VFGORC_LSB, IXGBE_VFGORC_MSB,
2295 hw_stats->last_vfgorc, hw_stats->vfgorc);
2297 /* Good Tx packet, include VF loopback */
2298 UPDATE_VF_STAT(IXGBE_VFGPTC,
2299 hw_stats->last_vfgptc, hw_stats->vfgptc);
2301 /* Good Tx octets, include VF loopback */
2302 UPDATE_VF_STAT_36BIT(IXGBE_VFGOTC_LSB, IXGBE_VFGOTC_MSB,
2303 hw_stats->last_vfgotc, hw_stats->vfgotc);
2305 /* Rx Multicst Packet */
2306 UPDATE_VF_STAT(IXGBE_VFMPRC,
2307 hw_stats->last_vfmprc, hw_stats->vfmprc);
2312 stats->ipackets = hw_stats->vfgprc;
2313 stats->ibytes = hw_stats->vfgorc;
2314 stats->opackets = hw_stats->vfgptc;
2315 stats->obytes = hw_stats->vfgotc;
2316 stats->imcasts = hw_stats->vfmprc;
2317 /* stats->imcasts should be removed as imcasts is deprecated */
2321 ixgbevf_dev_stats_reset(struct rte_eth_dev *dev)
2323 struct ixgbevf_hw_stats *hw_stats = (struct ixgbevf_hw_stats*)
2324 IXGBE_DEV_PRIVATE_TO_STATS(dev->data->dev_private);
2326 /* Sync HW register to the last stats */
2327 ixgbevf_dev_stats_get(dev, NULL);
2329 /* reset HW current stats*/
2330 hw_stats->vfgprc = 0;
2331 hw_stats->vfgorc = 0;
2332 hw_stats->vfgptc = 0;
2333 hw_stats->vfgotc = 0;
2334 hw_stats->vfmprc = 0;
2339 ixgbe_dev_info_get(struct rte_eth_dev *dev, struct rte_eth_dev_info *dev_info)
2341 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2343 dev_info->max_rx_queues = (uint16_t)hw->mac.max_rx_queues;
2344 dev_info->max_tx_queues = (uint16_t)hw->mac.max_tx_queues;
2345 dev_info->min_rx_bufsize = 1024; /* cf BSIZEPACKET in SRRCTL register */
2346 dev_info->max_rx_pktlen = 15872; /* includes CRC, cf MAXFRS register */
2347 dev_info->max_mac_addrs = hw->mac.num_rar_entries;
2348 dev_info->max_hash_mac_addrs = IXGBE_VMDQ_NUM_UC_MAC;
2349 dev_info->max_vfs = dev->pci_dev->max_vfs;
2350 if (hw->mac.type == ixgbe_mac_82598EB)
2351 dev_info->max_vmdq_pools = ETH_16_POOLS;
2353 dev_info->max_vmdq_pools = ETH_64_POOLS;
2354 dev_info->vmdq_queue_num = dev_info->max_rx_queues;
2355 dev_info->rx_offload_capa =
2356 DEV_RX_OFFLOAD_VLAN_STRIP |
2357 DEV_RX_OFFLOAD_IPV4_CKSUM |
2358 DEV_RX_OFFLOAD_UDP_CKSUM |
2359 DEV_RX_OFFLOAD_TCP_CKSUM;
2362 * RSC is only supported by 82599 and x540 PF devices in a non-SR-IOV
2365 if ((hw->mac.type == ixgbe_mac_82599EB ||
2366 hw->mac.type == ixgbe_mac_X540) &&
2367 !RTE_ETH_DEV_SRIOV(dev).active)
2368 dev_info->rx_offload_capa |= DEV_RX_OFFLOAD_TCP_LRO;
2370 dev_info->tx_offload_capa =
2371 DEV_TX_OFFLOAD_VLAN_INSERT |
2372 DEV_TX_OFFLOAD_IPV4_CKSUM |
2373 DEV_TX_OFFLOAD_UDP_CKSUM |
2374 DEV_TX_OFFLOAD_TCP_CKSUM |
2375 DEV_TX_OFFLOAD_SCTP_CKSUM |
2376 DEV_TX_OFFLOAD_TCP_TSO;
2378 dev_info->default_rxconf = (struct rte_eth_rxconf) {
2380 .pthresh = IXGBE_DEFAULT_RX_PTHRESH,
2381 .hthresh = IXGBE_DEFAULT_RX_HTHRESH,
2382 .wthresh = IXGBE_DEFAULT_RX_WTHRESH,
2384 .rx_free_thresh = IXGBE_DEFAULT_RX_FREE_THRESH,
2388 dev_info->default_txconf = (struct rte_eth_txconf) {
2390 .pthresh = IXGBE_DEFAULT_TX_PTHRESH,
2391 .hthresh = IXGBE_DEFAULT_TX_HTHRESH,
2392 .wthresh = IXGBE_DEFAULT_TX_WTHRESH,
2394 .tx_free_thresh = IXGBE_DEFAULT_TX_FREE_THRESH,
2395 .tx_rs_thresh = IXGBE_DEFAULT_TX_RSBIT_THRESH,
2396 .txq_flags = ETH_TXQ_FLAGS_NOMULTSEGS |
2397 ETH_TXQ_FLAGS_NOOFFLOADS,
2399 dev_info->hash_key_size = IXGBE_HKEY_MAX_INDEX * sizeof(uint32_t);
2400 dev_info->reta_size = ETH_RSS_RETA_SIZE_128;
2401 dev_info->flow_type_rss_offloads = IXGBE_RSS_OFFLOAD_ALL;
2405 ixgbevf_dev_info_get(struct rte_eth_dev *dev,
2406 struct rte_eth_dev_info *dev_info)
2408 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2410 dev_info->max_rx_queues = (uint16_t)hw->mac.max_rx_queues;
2411 dev_info->max_tx_queues = (uint16_t)hw->mac.max_tx_queues;
2412 dev_info->min_rx_bufsize = 1024; /* cf BSIZEPACKET in SRRCTL reg */
2413 dev_info->max_rx_pktlen = 15872; /* includes CRC, cf MAXFRS reg */
2414 dev_info->max_mac_addrs = hw->mac.num_rar_entries;
2415 dev_info->max_hash_mac_addrs = IXGBE_VMDQ_NUM_UC_MAC;
2416 dev_info->max_vfs = dev->pci_dev->max_vfs;
2417 if (hw->mac.type == ixgbe_mac_82598EB)
2418 dev_info->max_vmdq_pools = ETH_16_POOLS;
2420 dev_info->max_vmdq_pools = ETH_64_POOLS;
2421 dev_info->rx_offload_capa = DEV_RX_OFFLOAD_VLAN_STRIP |
2422 DEV_RX_OFFLOAD_IPV4_CKSUM |
2423 DEV_RX_OFFLOAD_UDP_CKSUM |
2424 DEV_RX_OFFLOAD_TCP_CKSUM;
2425 dev_info->tx_offload_capa = DEV_TX_OFFLOAD_VLAN_INSERT |
2426 DEV_TX_OFFLOAD_IPV4_CKSUM |
2427 DEV_TX_OFFLOAD_UDP_CKSUM |
2428 DEV_TX_OFFLOAD_TCP_CKSUM |
2429 DEV_TX_OFFLOAD_SCTP_CKSUM;
2431 dev_info->default_rxconf = (struct rte_eth_rxconf) {
2433 .pthresh = IXGBE_DEFAULT_RX_PTHRESH,
2434 .hthresh = IXGBE_DEFAULT_RX_HTHRESH,
2435 .wthresh = IXGBE_DEFAULT_RX_WTHRESH,
2437 .rx_free_thresh = IXGBE_DEFAULT_RX_FREE_THRESH,
2441 dev_info->default_txconf = (struct rte_eth_txconf) {
2443 .pthresh = IXGBE_DEFAULT_TX_PTHRESH,
2444 .hthresh = IXGBE_DEFAULT_TX_HTHRESH,
2445 .wthresh = IXGBE_DEFAULT_TX_WTHRESH,
2447 .tx_free_thresh = IXGBE_DEFAULT_TX_FREE_THRESH,
2448 .tx_rs_thresh = IXGBE_DEFAULT_TX_RSBIT_THRESH,
2449 .txq_flags = ETH_TXQ_FLAGS_NOMULTSEGS |
2450 ETH_TXQ_FLAGS_NOOFFLOADS,
2454 /* return 0 means link status changed, -1 means not changed */
2456 ixgbe_dev_link_update(struct rte_eth_dev *dev, int wait_to_complete)
2458 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2459 struct rte_eth_link link, old;
2460 ixgbe_link_speed link_speed = IXGBE_LINK_SPEED_UNKNOWN;
2464 link.link_status = 0;
2465 link.link_speed = 0;
2466 link.link_duplex = 0;
2467 memset(&old, 0, sizeof(old));
2468 rte_ixgbe_dev_atomic_read_link_status(dev, &old);
2470 hw->mac.get_link_status = true;
2472 /* check if it needs to wait to complete, if lsc interrupt is enabled */
2473 if (wait_to_complete == 0 || dev->data->dev_conf.intr_conf.lsc != 0)
2474 diag = ixgbe_check_link(hw, &link_speed, &link_up, 0);
2476 diag = ixgbe_check_link(hw, &link_speed, &link_up, 1);
2479 link.link_speed = ETH_LINK_SPEED_100;
2480 link.link_duplex = ETH_LINK_HALF_DUPLEX;
2481 rte_ixgbe_dev_atomic_write_link_status(dev, &link);
2482 if (link.link_status == old.link_status)
2488 rte_ixgbe_dev_atomic_write_link_status(dev, &link);
2489 if (link.link_status == old.link_status)
2493 link.link_status = 1;
2494 link.link_duplex = ETH_LINK_FULL_DUPLEX;
2496 switch (link_speed) {
2498 case IXGBE_LINK_SPEED_UNKNOWN:
2499 link.link_duplex = ETH_LINK_HALF_DUPLEX;
2500 link.link_speed = ETH_LINK_SPEED_100;
2503 case IXGBE_LINK_SPEED_100_FULL:
2504 link.link_speed = ETH_LINK_SPEED_100;
2507 case IXGBE_LINK_SPEED_1GB_FULL:
2508 link.link_speed = ETH_LINK_SPEED_1000;
2511 case IXGBE_LINK_SPEED_10GB_FULL:
2512 link.link_speed = ETH_LINK_SPEED_10000;
2515 rte_ixgbe_dev_atomic_write_link_status(dev, &link);
2517 if (link.link_status == old.link_status)
2524 ixgbe_dev_promiscuous_enable(struct rte_eth_dev *dev)
2526 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2529 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
2530 fctrl |= (IXGBE_FCTRL_UPE | IXGBE_FCTRL_MPE);
2531 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
2535 ixgbe_dev_promiscuous_disable(struct rte_eth_dev *dev)
2537 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2540 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
2541 fctrl &= (~IXGBE_FCTRL_UPE);
2542 if (dev->data->all_multicast == 1)
2543 fctrl |= IXGBE_FCTRL_MPE;
2545 fctrl &= (~IXGBE_FCTRL_MPE);
2546 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
2550 ixgbe_dev_allmulticast_enable(struct rte_eth_dev *dev)
2552 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2555 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
2556 fctrl |= IXGBE_FCTRL_MPE;
2557 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
2561 ixgbe_dev_allmulticast_disable(struct rte_eth_dev *dev)
2563 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2566 if (dev->data->promiscuous == 1)
2567 return; /* must remain in all_multicast mode */
2569 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
2570 fctrl &= (~IXGBE_FCTRL_MPE);
2571 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
2575 * It clears the interrupt causes and enables the interrupt.
2576 * It will be called once only during nic initialized.
2579 * Pointer to struct rte_eth_dev.
2582 * - On success, zero.
2583 * - On failure, a negative value.
2586 ixgbe_dev_lsc_interrupt_setup(struct rte_eth_dev *dev)
2588 struct ixgbe_interrupt *intr =
2589 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
2591 ixgbe_dev_link_status_print(dev);
2592 intr->mask |= IXGBE_EICR_LSC;
2598 * It clears the interrupt causes and enables the interrupt.
2599 * It will be called once only during nic initialized.
2602 * Pointer to struct rte_eth_dev.
2605 * - On success, zero.
2606 * - On failure, a negative value.
2609 ixgbe_dev_rxq_interrupt_setup(struct rte_eth_dev *dev)
2611 struct ixgbe_interrupt *intr =
2612 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
2614 intr->mask |= IXGBE_EICR_RTX_QUEUE;
2620 * It reads ICR and sets flag (IXGBE_EICR_LSC) for the link_update.
2623 * Pointer to struct rte_eth_dev.
2626 * - On success, zero.
2627 * - On failure, a negative value.
2630 ixgbe_dev_interrupt_get_status(struct rte_eth_dev *dev)
2633 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2634 struct ixgbe_interrupt *intr =
2635 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
2637 /* clear all cause mask */
2638 ixgbe_disable_intr(hw);
2640 /* read-on-clear nic registers here */
2641 eicr = IXGBE_READ_REG(hw, IXGBE_EICR);
2642 PMD_DRV_LOG(DEBUG, "eicr %x", eicr);
2646 /* set flag for async link update */
2647 if (eicr & IXGBE_EICR_LSC)
2648 intr->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
2650 if (eicr & IXGBE_EICR_MAILBOX)
2651 intr->flags |= IXGBE_FLAG_MAILBOX;
2657 ixgbevf_dev_interrupt_get_status(struct rte_eth_dev *dev)
2660 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2661 struct ixgbe_interrupt *intr =
2662 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
2664 /* clear all cause mask */
2665 ixgbevf_intr_disable(hw);
2667 /* read-on-clear nic registers here */
2668 eicr = IXGBE_READ_REG(hw, IXGBE_VTEICR);
2669 PMD_DRV_LOG(INFO, "eicr %x", eicr);
2673 /* set flag for async link update */
2674 if (eicr & IXGBE_EICR_LSC)
2675 intr->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
2681 * It gets and then prints the link status.
2684 * Pointer to struct rte_eth_dev.
2687 * - On success, zero.
2688 * - On failure, a negative value.
2691 ixgbe_dev_link_status_print(struct rte_eth_dev *dev)
2693 struct rte_eth_link link;
2695 memset(&link, 0, sizeof(link));
2696 rte_ixgbe_dev_atomic_read_link_status(dev, &link);
2697 if (link.link_status) {
2698 PMD_INIT_LOG(INFO, "Port %d: Link Up - speed %u Mbps - %s",
2699 (int)(dev->data->port_id),
2700 (unsigned)link.link_speed,
2701 link.link_duplex == ETH_LINK_FULL_DUPLEX ?
2702 "full-duplex" : "half-duplex");
2704 PMD_INIT_LOG(INFO, " Port %d: Link Down",
2705 (int)(dev->data->port_id));
2707 PMD_INIT_LOG(DEBUG, "PCI Address: %04d:%02d:%02d:%d",
2708 dev->pci_dev->addr.domain,
2709 dev->pci_dev->addr.bus,
2710 dev->pci_dev->addr.devid,
2711 dev->pci_dev->addr.function);
2715 * It executes link_update after knowing an interrupt occurred.
2718 * Pointer to struct rte_eth_dev.
2721 * - On success, zero.
2722 * - On failure, a negative value.
2725 ixgbe_dev_interrupt_action(struct rte_eth_dev *dev)
2727 struct ixgbe_interrupt *intr =
2728 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
2730 struct rte_eth_link link;
2731 int intr_enable_delay = false;
2733 PMD_DRV_LOG(DEBUG, "intr action type %d", intr->flags);
2735 if (intr->flags & IXGBE_FLAG_MAILBOX) {
2736 ixgbe_pf_mbx_process(dev);
2737 intr->flags &= ~IXGBE_FLAG_MAILBOX;
2740 if (intr->flags & IXGBE_FLAG_NEED_LINK_UPDATE) {
2741 /* get the link status before link update, for predicting later */
2742 memset(&link, 0, sizeof(link));
2743 rte_ixgbe_dev_atomic_read_link_status(dev, &link);
2745 ixgbe_dev_link_update(dev, 0);
2748 if (!link.link_status)
2749 /* handle it 1 sec later, wait it being stable */
2750 timeout = IXGBE_LINK_UP_CHECK_TIMEOUT;
2751 /* likely to down */
2753 /* handle it 4 sec later, wait it being stable */
2754 timeout = IXGBE_LINK_DOWN_CHECK_TIMEOUT;
2756 ixgbe_dev_link_status_print(dev);
2758 intr_enable_delay = true;
2761 if (intr_enable_delay) {
2762 if (rte_eal_alarm_set(timeout * 1000,
2763 ixgbe_dev_interrupt_delayed_handler, (void*)dev) < 0)
2764 PMD_DRV_LOG(ERR, "Error setting alarm");
2766 PMD_DRV_LOG(DEBUG, "enable intr immediately");
2767 ixgbe_enable_intr(dev);
2768 rte_intr_enable(&(dev->pci_dev->intr_handle));
2776 ixgbevf_dev_interrupt_action(struct rte_eth_dev *dev)
2778 struct ixgbe_hw *hw =
2779 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2781 PMD_DRV_LOG(DEBUG, "enable intr immediately");
2782 ixgbevf_intr_enable(hw);
2783 rte_intr_enable(&dev->pci_dev->intr_handle);
2788 * Interrupt handler which shall be registered for alarm callback for delayed
2789 * handling specific interrupt to wait for the stable nic state. As the
2790 * NIC interrupt state is not stable for ixgbe after link is just down,
2791 * it needs to wait 4 seconds to get the stable status.
2794 * Pointer to interrupt handle.
2796 * The address of parameter (struct rte_eth_dev *) regsitered before.
2802 ixgbe_dev_interrupt_delayed_handler(void *param)
2804 struct rte_eth_dev *dev = (struct rte_eth_dev *)param;
2805 struct ixgbe_interrupt *intr =
2806 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
2807 struct ixgbe_hw *hw =
2808 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2811 eicr = IXGBE_READ_REG(hw, IXGBE_EICR);
2812 if (eicr & IXGBE_EICR_MAILBOX)
2813 ixgbe_pf_mbx_process(dev);
2815 if (intr->flags & IXGBE_FLAG_NEED_LINK_UPDATE) {
2816 ixgbe_dev_link_update(dev, 0);
2817 intr->flags &= ~IXGBE_FLAG_NEED_LINK_UPDATE;
2818 ixgbe_dev_link_status_print(dev);
2819 _rte_eth_dev_callback_process(dev, RTE_ETH_EVENT_INTR_LSC);
2822 PMD_DRV_LOG(DEBUG, "enable intr in delayed handler S[%08x]", eicr);
2823 ixgbe_enable_intr(dev);
2824 rte_intr_enable(&(dev->pci_dev->intr_handle));
2828 * Interrupt handler triggered by NIC for handling
2829 * specific interrupt.
2832 * Pointer to interrupt handle.
2834 * The address of parameter (struct rte_eth_dev *) regsitered before.
2840 ixgbe_dev_interrupt_handler(__rte_unused struct rte_intr_handle *handle,
2843 struct rte_eth_dev *dev = (struct rte_eth_dev *)param;
2845 ixgbe_dev_interrupt_get_status(dev);
2846 ixgbe_dev_interrupt_action(dev);
2850 ixgbevf_dev_interrupt_handler(__rte_unused struct rte_intr_handle *handle,
2853 struct rte_eth_dev *dev = (struct rte_eth_dev *)param;
2855 ixgbevf_dev_interrupt_get_status(dev);
2856 ixgbevf_dev_interrupt_action(dev);
2860 ixgbe_dev_led_on(struct rte_eth_dev *dev)
2862 struct ixgbe_hw *hw;
2864 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2865 return (ixgbe_led_on(hw, 0) == IXGBE_SUCCESS ? 0 : -ENOTSUP);
2869 ixgbe_dev_led_off(struct rte_eth_dev *dev)
2871 struct ixgbe_hw *hw;
2873 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2874 return (ixgbe_led_off(hw, 0) == IXGBE_SUCCESS ? 0 : -ENOTSUP);
2878 ixgbe_flow_ctrl_get(struct rte_eth_dev *dev, struct rte_eth_fc_conf *fc_conf)
2880 struct ixgbe_hw *hw;
2886 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2888 fc_conf->pause_time = hw->fc.pause_time;
2889 fc_conf->high_water = hw->fc.high_water[0];
2890 fc_conf->low_water = hw->fc.low_water[0];
2891 fc_conf->send_xon = hw->fc.send_xon;
2892 fc_conf->autoneg = !hw->fc.disable_fc_autoneg;
2895 * Return rx_pause status according to actual setting of
2898 mflcn_reg = IXGBE_READ_REG(hw, IXGBE_MFLCN);
2899 if (mflcn_reg & (IXGBE_MFLCN_RPFCE | IXGBE_MFLCN_RFCE))
2905 * Return tx_pause status according to actual setting of
2908 fccfg_reg = IXGBE_READ_REG(hw, IXGBE_FCCFG);
2909 if (fccfg_reg & (IXGBE_FCCFG_TFCE_802_3X | IXGBE_FCCFG_TFCE_PRIORITY))
2914 if (rx_pause && tx_pause)
2915 fc_conf->mode = RTE_FC_FULL;
2917 fc_conf->mode = RTE_FC_RX_PAUSE;
2919 fc_conf->mode = RTE_FC_TX_PAUSE;
2921 fc_conf->mode = RTE_FC_NONE;
2927 ixgbe_flow_ctrl_set(struct rte_eth_dev *dev, struct rte_eth_fc_conf *fc_conf)
2929 struct ixgbe_hw *hw;
2931 uint32_t rx_buf_size;
2932 uint32_t max_high_water;
2934 enum ixgbe_fc_mode rte_fcmode_2_ixgbe_fcmode[] = {
2941 PMD_INIT_FUNC_TRACE();
2943 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2944 rx_buf_size = IXGBE_READ_REG(hw, IXGBE_RXPBSIZE(0));
2945 PMD_INIT_LOG(DEBUG, "Rx packet buffer size = 0x%x", rx_buf_size);
2948 * At least reserve one Ethernet frame for watermark
2949 * high_water/low_water in kilo bytes for ixgbe
2951 max_high_water = (rx_buf_size - ETHER_MAX_LEN) >> IXGBE_RXPBSIZE_SHIFT;
2952 if ((fc_conf->high_water > max_high_water) ||
2953 (fc_conf->high_water < fc_conf->low_water)) {
2954 PMD_INIT_LOG(ERR, "Invalid high/low water setup value in KB");
2955 PMD_INIT_LOG(ERR, "High_water must <= 0x%x", max_high_water);
2959 hw->fc.requested_mode = rte_fcmode_2_ixgbe_fcmode[fc_conf->mode];
2960 hw->fc.pause_time = fc_conf->pause_time;
2961 hw->fc.high_water[0] = fc_conf->high_water;
2962 hw->fc.low_water[0] = fc_conf->low_water;
2963 hw->fc.send_xon = fc_conf->send_xon;
2964 hw->fc.disable_fc_autoneg = !fc_conf->autoneg;
2966 err = ixgbe_fc_enable(hw);
2968 /* Not negotiated is not an error case */
2969 if ((err == IXGBE_SUCCESS) || (err == IXGBE_ERR_FC_NOT_NEGOTIATED)) {
2971 /* check if we want to forward MAC frames - driver doesn't have native
2972 * capability to do that, so we'll write the registers ourselves */
2974 mflcn = IXGBE_READ_REG(hw, IXGBE_MFLCN);
2976 /* set or clear MFLCN.PMCF bit depending on configuration */
2977 if (fc_conf->mac_ctrl_frame_fwd != 0)
2978 mflcn |= IXGBE_MFLCN_PMCF;
2980 mflcn &= ~IXGBE_MFLCN_PMCF;
2982 IXGBE_WRITE_REG(hw, IXGBE_MFLCN, mflcn);
2983 IXGBE_WRITE_FLUSH(hw);
2988 PMD_INIT_LOG(ERR, "ixgbe_fc_enable = 0x%x", err);
2993 * ixgbe_pfc_enable_generic - Enable flow control
2994 * @hw: pointer to hardware structure
2995 * @tc_num: traffic class number
2996 * Enable flow control according to the current settings.
2999 ixgbe_dcb_pfc_enable_generic(struct ixgbe_hw *hw,uint8_t tc_num)
3002 uint32_t mflcn_reg, fccfg_reg;
3004 uint32_t fcrtl, fcrth;
3008 /* Validate the water mark configuration */
3009 if (!hw->fc.pause_time) {
3010 ret_val = IXGBE_ERR_INVALID_LINK_SETTINGS;
3014 /* Low water mark of zero causes XOFF floods */
3015 if (hw->fc.current_mode & ixgbe_fc_tx_pause) {
3016 /* High/Low water can not be 0 */
3017 if( (!hw->fc.high_water[tc_num])|| (!hw->fc.low_water[tc_num])) {
3018 PMD_INIT_LOG(ERR, "Invalid water mark configuration");
3019 ret_val = IXGBE_ERR_INVALID_LINK_SETTINGS;
3023 if(hw->fc.low_water[tc_num] >= hw->fc.high_water[tc_num]) {
3024 PMD_INIT_LOG(ERR, "Invalid water mark configuration");
3025 ret_val = IXGBE_ERR_INVALID_LINK_SETTINGS;
3029 /* Negotiate the fc mode to use */
3030 ixgbe_fc_autoneg(hw);
3032 /* Disable any previous flow control settings */
3033 mflcn_reg = IXGBE_READ_REG(hw, IXGBE_MFLCN);
3034 mflcn_reg &= ~(IXGBE_MFLCN_RPFCE_SHIFT | IXGBE_MFLCN_RFCE|IXGBE_MFLCN_RPFCE);
3036 fccfg_reg = IXGBE_READ_REG(hw, IXGBE_FCCFG);
3037 fccfg_reg &= ~(IXGBE_FCCFG_TFCE_802_3X | IXGBE_FCCFG_TFCE_PRIORITY);
3039 switch (hw->fc.current_mode) {
3042 * If the count of enabled RX Priority Flow control >1,
3043 * and the TX pause can not be disabled
3046 for (i =0; i < IXGBE_DCB_MAX_TRAFFIC_CLASS; i++) {
3047 reg = IXGBE_READ_REG(hw, IXGBE_FCRTH_82599(i));
3048 if (reg & IXGBE_FCRTH_FCEN)
3052 fccfg_reg |=IXGBE_FCCFG_TFCE_PRIORITY;
3054 case ixgbe_fc_rx_pause:
3056 * Rx Flow control is enabled and Tx Flow control is
3057 * disabled by software override. Since there really
3058 * isn't a way to advertise that we are capable of RX
3059 * Pause ONLY, we will advertise that we support both
3060 * symmetric and asymmetric Rx PAUSE. Later, we will
3061 * disable the adapter's ability to send PAUSE frames.
3063 mflcn_reg |= IXGBE_MFLCN_RPFCE;
3065 * If the count of enabled RX Priority Flow control >1,
3066 * and the TX pause can not be disabled
3069 for (i =0; i < IXGBE_DCB_MAX_TRAFFIC_CLASS; i++) {
3070 reg = IXGBE_READ_REG(hw, IXGBE_FCRTH_82599(i));
3071 if (reg & IXGBE_FCRTH_FCEN)
3075 fccfg_reg |=IXGBE_FCCFG_TFCE_PRIORITY;
3077 case ixgbe_fc_tx_pause:
3079 * Tx Flow control is enabled, and Rx Flow control is
3080 * disabled by software override.
3082 fccfg_reg |=IXGBE_FCCFG_TFCE_PRIORITY;
3085 /* Flow control (both Rx and Tx) is enabled by SW override. */
3086 mflcn_reg |= IXGBE_MFLCN_RPFCE;
3087 fccfg_reg |= IXGBE_FCCFG_TFCE_PRIORITY;
3090 PMD_DRV_LOG(DEBUG, "Flow control param set incorrectly");
3091 ret_val = IXGBE_ERR_CONFIG;
3096 /* Set 802.3x based flow control settings. */
3097 mflcn_reg |= IXGBE_MFLCN_DPF;
3098 IXGBE_WRITE_REG(hw, IXGBE_MFLCN, mflcn_reg);
3099 IXGBE_WRITE_REG(hw, IXGBE_FCCFG, fccfg_reg);
3101 /* Set up and enable Rx high/low water mark thresholds, enable XON. */
3102 if ((hw->fc.current_mode & ixgbe_fc_tx_pause) &&
3103 hw->fc.high_water[tc_num]) {
3104 fcrtl = (hw->fc.low_water[tc_num] << 10) | IXGBE_FCRTL_XONE;
3105 IXGBE_WRITE_REG(hw, IXGBE_FCRTL_82599(tc_num), fcrtl);
3106 fcrth = (hw->fc.high_water[tc_num] << 10) | IXGBE_FCRTH_FCEN;
3108 IXGBE_WRITE_REG(hw, IXGBE_FCRTL_82599(tc_num), 0);
3110 * In order to prevent Tx hangs when the internal Tx
3111 * switch is enabled we must set the high water mark
3112 * to the maximum FCRTH value. This allows the Tx
3113 * switch to function even under heavy Rx workloads.
3115 fcrth = IXGBE_READ_REG(hw, IXGBE_RXPBSIZE(tc_num)) - 32;
3117 IXGBE_WRITE_REG(hw, IXGBE_FCRTH_82599(tc_num), fcrth);
3119 /* Configure pause time (2 TCs per register) */
3120 reg = hw->fc.pause_time * 0x00010001;
3121 for (i = 0; i < (IXGBE_DCB_MAX_TRAFFIC_CLASS / 2); i++)
3122 IXGBE_WRITE_REG(hw, IXGBE_FCTTV(i), reg);
3124 /* Configure flow control refresh threshold value */
3125 IXGBE_WRITE_REG(hw, IXGBE_FCRTV, hw->fc.pause_time / 2);
3132 ixgbe_dcb_pfc_enable(struct rte_eth_dev *dev,uint8_t tc_num)
3134 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3135 int32_t ret_val = IXGBE_NOT_IMPLEMENTED;
3137 if(hw->mac.type != ixgbe_mac_82598EB) {
3138 ret_val = ixgbe_dcb_pfc_enable_generic(hw,tc_num);
3144 ixgbe_priority_flow_ctrl_set(struct rte_eth_dev *dev, struct rte_eth_pfc_conf *pfc_conf)
3147 uint32_t rx_buf_size;
3148 uint32_t max_high_water;
3150 uint8_t map[IXGBE_DCB_MAX_USER_PRIORITY] = { 0 };
3151 struct ixgbe_hw *hw =
3152 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3153 struct ixgbe_dcb_config *dcb_config =
3154 IXGBE_DEV_PRIVATE_TO_DCB_CFG(dev->data->dev_private);
3156 enum ixgbe_fc_mode rte_fcmode_2_ixgbe_fcmode[] = {
3163 PMD_INIT_FUNC_TRACE();
3165 ixgbe_dcb_unpack_map_cee(dcb_config, IXGBE_DCB_RX_CONFIG, map);
3166 tc_num = map[pfc_conf->priority];
3167 rx_buf_size = IXGBE_READ_REG(hw, IXGBE_RXPBSIZE(tc_num));
3168 PMD_INIT_LOG(DEBUG, "Rx packet buffer size = 0x%x", rx_buf_size);
3170 * At least reserve one Ethernet frame for watermark
3171 * high_water/low_water in kilo bytes for ixgbe
3173 max_high_water = (rx_buf_size - ETHER_MAX_LEN) >> IXGBE_RXPBSIZE_SHIFT;
3174 if ((pfc_conf->fc.high_water > max_high_water) ||
3175 (pfc_conf->fc.high_water <= pfc_conf->fc.low_water)) {
3176 PMD_INIT_LOG(ERR, "Invalid high/low water setup value in KB");
3177 PMD_INIT_LOG(ERR, "High_water must <= 0x%x", max_high_water);
3181 hw->fc.requested_mode = rte_fcmode_2_ixgbe_fcmode[pfc_conf->fc.mode];
3182 hw->fc.pause_time = pfc_conf->fc.pause_time;
3183 hw->fc.send_xon = pfc_conf->fc.send_xon;
3184 hw->fc.low_water[tc_num] = pfc_conf->fc.low_water;
3185 hw->fc.high_water[tc_num] = pfc_conf->fc.high_water;
3187 err = ixgbe_dcb_pfc_enable(dev,tc_num);
3189 /* Not negotiated is not an error case */
3190 if ((err == IXGBE_SUCCESS) || (err == IXGBE_ERR_FC_NOT_NEGOTIATED))
3193 PMD_INIT_LOG(ERR, "ixgbe_dcb_pfc_enable = 0x%x", err);
3198 ixgbe_dev_rss_reta_update(struct rte_eth_dev *dev,
3199 struct rte_eth_rss_reta_entry64 *reta_conf,
3204 uint16_t idx, shift;
3205 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3207 PMD_INIT_FUNC_TRACE();
3208 if (reta_size != ETH_RSS_RETA_SIZE_128) {
3209 PMD_DRV_LOG(ERR, "The size of hash lookup table configured "
3210 "(%d) doesn't match the number hardware can supported "
3211 "(%d)\n", reta_size, ETH_RSS_RETA_SIZE_128);
3215 for (i = 0; i < reta_size; i += IXGBE_4_BIT_WIDTH) {
3216 idx = i / RTE_RETA_GROUP_SIZE;
3217 shift = i % RTE_RETA_GROUP_SIZE;
3218 mask = (uint8_t)((reta_conf[idx].mask >> shift) &
3222 if (mask == IXGBE_4_BIT_MASK)
3225 r = IXGBE_READ_REG(hw, IXGBE_RETA(i >> 2));
3226 for (j = 0, reta = 0; j < IXGBE_4_BIT_WIDTH; j++) {
3227 if (mask & (0x1 << j))
3228 reta |= reta_conf[idx].reta[shift + j] <<
3231 reta |= r & (IXGBE_8_BIT_MASK <<
3234 IXGBE_WRITE_REG(hw, IXGBE_RETA(i >> 2), reta);
3241 ixgbe_dev_rss_reta_query(struct rte_eth_dev *dev,
3242 struct rte_eth_rss_reta_entry64 *reta_conf,
3247 uint16_t idx, shift;
3248 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3250 PMD_INIT_FUNC_TRACE();
3251 if (reta_size != ETH_RSS_RETA_SIZE_128) {
3252 PMD_DRV_LOG(ERR, "The size of hash lookup table configured "
3253 "(%d) doesn't match the number hardware can supported "
3254 "(%d)\n", reta_size, ETH_RSS_RETA_SIZE_128);
3258 for (i = 0; i < ETH_RSS_RETA_SIZE_128; i += IXGBE_4_BIT_WIDTH) {
3259 idx = i / RTE_RETA_GROUP_SIZE;
3260 shift = i % RTE_RETA_GROUP_SIZE;
3261 mask = (uint8_t)((reta_conf[idx].mask >> shift) &
3266 reta = IXGBE_READ_REG(hw, IXGBE_RETA(i >> 2));
3267 for (j = 0; j < IXGBE_4_BIT_WIDTH; j++) {
3268 if (mask & (0x1 << j))
3269 reta_conf[idx].reta[shift + j] =
3270 ((reta >> (CHAR_BIT * j)) &
3279 ixgbe_add_rar(struct rte_eth_dev *dev, struct ether_addr *mac_addr,
3280 uint32_t index, uint32_t pool)
3282 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3283 uint32_t enable_addr = 1;
3285 ixgbe_set_rar(hw, index, mac_addr->addr_bytes, pool, enable_addr);
3289 ixgbe_remove_rar(struct rte_eth_dev *dev, uint32_t index)
3291 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3293 ixgbe_clear_rar(hw, index);
3297 ixgbe_set_default_mac_addr(struct rte_eth_dev *dev, struct ether_addr *addr)
3299 ixgbe_remove_rar(dev, 0);
3301 ixgbe_add_rar(dev, addr, 0, 0);
3305 ixgbe_dev_mtu_set(struct rte_eth_dev *dev, uint16_t mtu)
3309 struct ixgbe_hw *hw;
3310 struct rte_eth_dev_info dev_info;
3311 uint32_t frame_size = mtu + ETHER_HDR_LEN + ETHER_CRC_LEN;
3313 ixgbe_dev_info_get(dev, &dev_info);
3315 /* check that mtu is within the allowed range */
3316 if ((mtu < ETHER_MIN_MTU) || (frame_size > dev_info.max_rx_pktlen))
3319 /* refuse mtu that requires the support of scattered packets when this
3320 * feature has not been enabled before. */
3321 if (!dev->data->scattered_rx &&
3322 (frame_size + 2 * IXGBE_VLAN_TAG_SIZE >
3323 dev->data->min_rx_buf_size - RTE_PKTMBUF_HEADROOM))
3326 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3327 hlreg0 = IXGBE_READ_REG(hw, IXGBE_HLREG0);
3329 /* switch to jumbo mode if needed */
3330 if (frame_size > ETHER_MAX_LEN) {
3331 dev->data->dev_conf.rxmode.jumbo_frame = 1;
3332 hlreg0 |= IXGBE_HLREG0_JUMBOEN;
3334 dev->data->dev_conf.rxmode.jumbo_frame = 0;
3335 hlreg0 &= ~IXGBE_HLREG0_JUMBOEN;
3337 IXGBE_WRITE_REG(hw, IXGBE_HLREG0, hlreg0);
3339 /* update max frame size */
3340 dev->data->dev_conf.rxmode.max_rx_pkt_len = frame_size;
3342 maxfrs = IXGBE_READ_REG(hw, IXGBE_MAXFRS);
3343 maxfrs &= 0x0000FFFF;
3344 maxfrs |= (dev->data->dev_conf.rxmode.max_rx_pkt_len << 16);
3345 IXGBE_WRITE_REG(hw, IXGBE_MAXFRS, maxfrs);
3351 * Virtual Function operations
3354 ixgbevf_intr_disable(struct ixgbe_hw *hw)
3356 PMD_INIT_FUNC_TRACE();
3358 /* Clear interrupt mask to stop from interrupts being generated */
3359 IXGBE_WRITE_REG(hw, IXGBE_VTEIMC, IXGBE_VF_IRQ_CLEAR_MASK);
3361 IXGBE_WRITE_FLUSH(hw);
3365 ixgbevf_intr_enable(struct ixgbe_hw *hw)
3367 PMD_INIT_FUNC_TRACE();
3369 /* VF enable interrupt autoclean */
3370 IXGBE_WRITE_REG(hw, IXGBE_VTEIAM, IXGBE_VF_IRQ_ENABLE_MASK);
3371 IXGBE_WRITE_REG(hw, IXGBE_VTEIAC, IXGBE_VF_IRQ_ENABLE_MASK);
3372 IXGBE_WRITE_REG(hw, IXGBE_VTEIMS, IXGBE_VF_IRQ_ENABLE_MASK);
3374 IXGBE_WRITE_FLUSH(hw);
3378 ixgbevf_dev_configure(struct rte_eth_dev *dev)
3380 struct rte_eth_conf* conf = &dev->data->dev_conf;
3381 struct ixgbe_adapter *adapter =
3382 (struct ixgbe_adapter *)dev->data->dev_private;
3384 PMD_INIT_LOG(DEBUG, "Configured Virtual Function port id: %d",
3385 dev->data->port_id);
3388 * VF has no ability to enable/disable HW CRC
3389 * Keep the persistent behavior the same as Host PF
3391 #ifndef RTE_LIBRTE_IXGBE_PF_DISABLE_STRIP_CRC
3392 if (!conf->rxmode.hw_strip_crc) {
3393 PMD_INIT_LOG(NOTICE, "VF can't disable HW CRC Strip");
3394 conf->rxmode.hw_strip_crc = 1;
3397 if (conf->rxmode.hw_strip_crc) {
3398 PMD_INIT_LOG(NOTICE, "VF can't enable HW CRC Strip");
3399 conf->rxmode.hw_strip_crc = 0;
3404 * Initialize to TRUE. If any of Rx queues doesn't meet the bulk
3405 * allocation or vector Rx preconditions we will reset it.
3407 adapter->rx_bulk_alloc_allowed = true;
3408 adapter->rx_vec_allowed = true;
3414 ixgbevf_dev_start(struct rte_eth_dev *dev)
3416 struct ixgbe_hw *hw =
3417 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3418 uint32_t intr_vector = 0;
3419 struct rte_intr_handle *intr_handle = &dev->pci_dev->intr_handle;
3423 PMD_INIT_FUNC_TRACE();
3425 hw->mac.ops.reset_hw(hw);
3426 hw->mac.get_link_status = true;
3428 /* negotiate mailbox API version to use with the PF. */
3429 ixgbevf_negotiate_api(hw);
3431 ixgbevf_dev_tx_init(dev);
3433 /* This can fail when allocating mbufs for descriptor rings */
3434 err = ixgbevf_dev_rx_init(dev);
3436 PMD_INIT_LOG(ERR, "Unable to initialize RX hardware (%d)", err);
3437 ixgbe_dev_clear_queues(dev);
3442 ixgbevf_set_vfta_all(dev,1);
3445 mask = ETH_VLAN_STRIP_MASK | ETH_VLAN_FILTER_MASK | \
3446 ETH_VLAN_EXTEND_MASK;
3447 ixgbevf_vlan_offload_set(dev, mask);
3449 ixgbevf_dev_rxtx_start(dev);
3451 /* check and configure queue intr-vector mapping */
3452 if (dev->data->dev_conf.intr_conf.rxq != 0)
3453 intr_vector = dev->data->nb_rx_queues;
3455 if (rte_intr_efd_enable(intr_handle, intr_vector))
3458 if (rte_intr_dp_is_en(intr_handle) && !intr_handle->intr_vec) {
3459 intr_handle->intr_vec =
3460 rte_zmalloc("intr_vec",
3461 dev->data->nb_rx_queues * sizeof(int), 0);
3462 if (intr_handle->intr_vec == NULL) {
3463 PMD_INIT_LOG(ERR, "Failed to allocate %d rx_queues"
3464 " intr_vec\n", dev->data->nb_rx_queues);
3468 ixgbevf_configure_msix(dev);
3470 if (dev->data->dev_conf.intr_conf.lsc != 0) {
3471 if (rte_intr_allow_others(intr_handle))
3472 rte_intr_callback_register(intr_handle,
3473 ixgbevf_dev_interrupt_handler,
3476 PMD_INIT_LOG(INFO, "lsc won't enable because of"
3477 " no intr multiplex\n");
3480 rte_intr_enable(intr_handle);
3482 /* Re-enable interrupt for VF */
3483 ixgbevf_intr_enable(hw);
3489 ixgbevf_dev_stop(struct rte_eth_dev *dev)
3491 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3492 struct rte_intr_handle *intr_handle = &dev->pci_dev->intr_handle;
3494 PMD_INIT_FUNC_TRACE();
3496 hw->adapter_stopped = 1;
3497 ixgbe_stop_adapter(hw);
3500 * Clear what we set, but we still keep shadow_vfta to
3501 * restore after device starts
3503 ixgbevf_set_vfta_all(dev,0);
3505 /* Clear stored conf */
3506 dev->data->scattered_rx = 0;
3508 ixgbe_dev_clear_queues(dev);
3510 /* disable intr eventfd mapping */
3511 rte_intr_disable(intr_handle);
3513 /* Clean datapath event and queue/vec mapping */
3514 rte_intr_efd_disable(intr_handle);
3515 if (intr_handle->intr_vec != NULL) {
3516 rte_free(intr_handle->intr_vec);
3517 intr_handle->intr_vec = NULL;
3522 ixgbevf_dev_close(struct rte_eth_dev *dev)
3524 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3525 struct rte_pci_device *pci_dev;
3527 PMD_INIT_FUNC_TRACE();
3531 ixgbevf_dev_stop(dev);
3533 ixgbe_dev_free_queues(dev);
3535 /* reprogram the RAR[0] in case user changed it. */
3536 ixgbe_set_rar(hw, 0, hw->mac.addr, 0, IXGBE_RAH_AV);
3538 pci_dev = dev->pci_dev;
3539 if (pci_dev->intr_handle.intr_vec) {
3540 rte_free(pci_dev->intr_handle.intr_vec);
3541 pci_dev->intr_handle.intr_vec = NULL;
3545 static void ixgbevf_set_vfta_all(struct rte_eth_dev *dev, bool on)
3547 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3548 struct ixgbe_vfta * shadow_vfta =
3549 IXGBE_DEV_PRIVATE_TO_VFTA(dev->data->dev_private);
3550 int i = 0, j = 0, vfta = 0, mask = 1;
3552 for (i = 0; i < IXGBE_VFTA_SIZE; i++){
3553 vfta = shadow_vfta->vfta[i];
3556 for (j = 0; j < 32; j++){
3558 ixgbe_set_vfta(hw, (i<<5)+j, 0, on);
3567 ixgbevf_vlan_filter_set(struct rte_eth_dev *dev, uint16_t vlan_id, int on)
3569 struct ixgbe_hw *hw =
3570 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3571 struct ixgbe_vfta * shadow_vfta =
3572 IXGBE_DEV_PRIVATE_TO_VFTA(dev->data->dev_private);
3573 uint32_t vid_idx = 0;
3574 uint32_t vid_bit = 0;
3577 PMD_INIT_FUNC_TRACE();
3579 /* vind is not used in VF driver, set to 0, check ixgbe_set_vfta_vf */
3580 ret = ixgbe_set_vfta(hw, vlan_id, 0, !!on);
3582 PMD_INIT_LOG(ERR, "Unable to set VF vlan");
3585 vid_idx = (uint32_t) ((vlan_id >> 5) & 0x7F);
3586 vid_bit = (uint32_t) (1 << (vlan_id & 0x1F));
3588 /* Save what we set and retore it after device reset */
3590 shadow_vfta->vfta[vid_idx] |= vid_bit;
3592 shadow_vfta->vfta[vid_idx] &= ~vid_bit;
3598 ixgbevf_vlan_strip_queue_set(struct rte_eth_dev *dev, uint16_t queue, int on)
3600 struct ixgbe_hw *hw =
3601 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3604 PMD_INIT_FUNC_TRACE();
3606 if(queue >= hw->mac.max_rx_queues)
3609 ctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(queue));
3611 ctrl |= IXGBE_RXDCTL_VME;
3613 ctrl &= ~IXGBE_RXDCTL_VME;
3614 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(queue), ctrl);
3616 ixgbe_vlan_hw_strip_bitmap_set( dev, queue, on);
3620 ixgbevf_vlan_offload_set(struct rte_eth_dev *dev, int mask)
3622 struct ixgbe_hw *hw =
3623 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3627 /* VF function only support hw strip feature, others are not support */
3628 if(mask & ETH_VLAN_STRIP_MASK){
3629 on = !!(dev->data->dev_conf.rxmode.hw_vlan_strip);
3631 for(i=0; i < hw->mac.max_rx_queues; i++)
3632 ixgbevf_vlan_strip_queue_set(dev,i,on);
3637 ixgbe_vmdq_mode_check(struct ixgbe_hw *hw)
3641 /* we only need to do this if VMDq is enabled */
3642 reg_val = IXGBE_READ_REG(hw, IXGBE_VT_CTL);
3643 if (!(reg_val & IXGBE_VT_CTL_VT_ENABLE)) {
3644 PMD_INIT_LOG(ERR, "VMDq must be enabled for this setting");
3652 ixgbe_uta_vector(struct ixgbe_hw *hw, struct ether_addr* uc_addr)
3654 uint32_t vector = 0;
3655 switch (hw->mac.mc_filter_type) {
3656 case 0: /* use bits [47:36] of the address */
3657 vector = ((uc_addr->addr_bytes[4] >> 4) |
3658 (((uint16_t)uc_addr->addr_bytes[5]) << 4));
3660 case 1: /* use bits [46:35] of the address */
3661 vector = ((uc_addr->addr_bytes[4] >> 3) |
3662 (((uint16_t)uc_addr->addr_bytes[5]) << 5));
3664 case 2: /* use bits [45:34] of the address */
3665 vector = ((uc_addr->addr_bytes[4] >> 2) |
3666 (((uint16_t)uc_addr->addr_bytes[5]) << 6));
3668 case 3: /* use bits [43:32] of the address */
3669 vector = ((uc_addr->addr_bytes[4]) |
3670 (((uint16_t)uc_addr->addr_bytes[5]) << 8));
3672 default: /* Invalid mc_filter_type */
3676 /* vector can only be 12-bits or boundary will be exceeded */
3682 ixgbe_uc_hash_table_set(struct rte_eth_dev *dev,struct ether_addr* mac_addr,
3690 const uint32_t ixgbe_uta_idx_mask = 0x7F;
3691 const uint32_t ixgbe_uta_bit_shift = 5;
3692 const uint32_t ixgbe_uta_bit_mask = (0x1 << ixgbe_uta_bit_shift) - 1;
3693 const uint32_t bit1 = 0x1;
3695 struct ixgbe_hw *hw =
3696 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3697 struct ixgbe_uta_info *uta_info =
3698 IXGBE_DEV_PRIVATE_TO_UTA(dev->data->dev_private);
3700 /* The UTA table only exists on 82599 hardware and newer */
3701 if (hw->mac.type < ixgbe_mac_82599EB)
3704 vector = ixgbe_uta_vector(hw,mac_addr);
3705 uta_idx = (vector >> ixgbe_uta_bit_shift) & ixgbe_uta_idx_mask;
3706 uta_shift = vector & ixgbe_uta_bit_mask;
3708 rc = ((uta_info->uta_shadow[uta_idx] >> uta_shift & bit1) != 0);
3712 reg_val = IXGBE_READ_REG(hw, IXGBE_UTA(uta_idx));
3714 uta_info->uta_in_use++;
3715 reg_val |= (bit1 << uta_shift);
3716 uta_info->uta_shadow[uta_idx] |= (bit1 << uta_shift);
3718 uta_info->uta_in_use--;
3719 reg_val &= ~(bit1 << uta_shift);
3720 uta_info->uta_shadow[uta_idx] &= ~(bit1 << uta_shift);
3723 IXGBE_WRITE_REG(hw, IXGBE_UTA(uta_idx), reg_val);
3725 if (uta_info->uta_in_use > 0)
3726 IXGBE_WRITE_REG(hw, IXGBE_MCSTCTRL,
3727 IXGBE_MCSTCTRL_MFE | hw->mac.mc_filter_type);
3729 IXGBE_WRITE_REG(hw, IXGBE_MCSTCTRL,hw->mac.mc_filter_type);
3735 ixgbe_uc_all_hash_table_set(struct rte_eth_dev *dev, uint8_t on)
3738 struct ixgbe_hw *hw =
3739 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3740 struct ixgbe_uta_info *uta_info =
3741 IXGBE_DEV_PRIVATE_TO_UTA(dev->data->dev_private);
3743 /* The UTA table only exists on 82599 hardware and newer */
3744 if (hw->mac.type < ixgbe_mac_82599EB)
3748 for (i = 0; i < ETH_VMDQ_NUM_UC_HASH_ARRAY; i++) {
3749 uta_info->uta_shadow[i] = ~0;
3750 IXGBE_WRITE_REG(hw, IXGBE_UTA(i), ~0);
3753 for (i = 0; i < ETH_VMDQ_NUM_UC_HASH_ARRAY; i++) {
3754 uta_info->uta_shadow[i] = 0;
3755 IXGBE_WRITE_REG(hw, IXGBE_UTA(i), 0);
3763 ixgbe_convert_vm_rx_mask_to_val(uint16_t rx_mask, uint32_t orig_val)
3765 uint32_t new_val = orig_val;
3767 if (rx_mask & ETH_VMDQ_ACCEPT_UNTAG)
3768 new_val |= IXGBE_VMOLR_AUPE;
3769 if (rx_mask & ETH_VMDQ_ACCEPT_HASH_MC)
3770 new_val |= IXGBE_VMOLR_ROMPE;
3771 if (rx_mask & ETH_VMDQ_ACCEPT_HASH_UC)
3772 new_val |= IXGBE_VMOLR_ROPE;
3773 if (rx_mask & ETH_VMDQ_ACCEPT_BROADCAST)
3774 new_val |= IXGBE_VMOLR_BAM;
3775 if (rx_mask & ETH_VMDQ_ACCEPT_MULTICAST)
3776 new_val |= IXGBE_VMOLR_MPE;
3782 ixgbe_set_pool_rx_mode(struct rte_eth_dev *dev, uint16_t pool,
3783 uint16_t rx_mask, uint8_t on)
3787 struct ixgbe_hw *hw =
3788 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3789 uint32_t vmolr = IXGBE_READ_REG(hw, IXGBE_VMOLR(pool));
3791 if (hw->mac.type == ixgbe_mac_82598EB) {
3792 PMD_INIT_LOG(ERR, "setting VF receive mode set should be done"
3793 " on 82599 hardware and newer");
3796 if (ixgbe_vmdq_mode_check(hw) < 0)
3799 val = ixgbe_convert_vm_rx_mask_to_val(rx_mask, val);
3806 IXGBE_WRITE_REG(hw, IXGBE_VMOLR(pool), vmolr);
3812 ixgbe_set_pool_rx(struct rte_eth_dev *dev, uint16_t pool, uint8_t on)
3816 const uint8_t bit1 = 0x1;
3818 struct ixgbe_hw *hw =
3819 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3821 if (ixgbe_vmdq_mode_check(hw) < 0)
3824 addr = IXGBE_VFRE(pool >= ETH_64_POOLS/2);
3825 reg = IXGBE_READ_REG(hw, addr);
3833 IXGBE_WRITE_REG(hw, addr,reg);
3839 ixgbe_set_pool_tx(struct rte_eth_dev *dev, uint16_t pool, uint8_t on)
3843 const uint8_t bit1 = 0x1;
3845 struct ixgbe_hw *hw =
3846 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3848 if (ixgbe_vmdq_mode_check(hw) < 0)
3851 addr = IXGBE_VFTE(pool >= ETH_64_POOLS/2);
3852 reg = IXGBE_READ_REG(hw, addr);
3860 IXGBE_WRITE_REG(hw, addr,reg);
3866 ixgbe_set_pool_vlan_filter(struct rte_eth_dev *dev, uint16_t vlan,
3867 uint64_t pool_mask, uint8_t vlan_on)
3871 struct ixgbe_hw *hw =
3872 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3874 if (ixgbe_vmdq_mode_check(hw) < 0)
3876 for (pool_idx = 0; pool_idx < ETH_64_POOLS; pool_idx++) {
3877 if (pool_mask & ((uint64_t)(1ULL << pool_idx)))
3878 ret = hw->mac.ops.set_vfta(hw,vlan,pool_idx,vlan_on);
3886 #define IXGBE_MRCTL_VPME 0x01 /* Virtual Pool Mirroring. */
3887 #define IXGBE_MRCTL_UPME 0x02 /* Uplink Port Mirroring. */
3888 #define IXGBE_MRCTL_DPME 0x04 /* Downlink Port Mirroring. */
3889 #define IXGBE_MRCTL_VLME 0x08 /* VLAN Mirroring. */
3890 #define IXGBE_INVALID_MIRROR_TYPE(mirror_type) \
3891 ((mirror_type) & ~(uint8_t)(ETH_MIRROR_VIRTUAL_POOL_UP | \
3892 ETH_MIRROR_UPLINK_PORT | ETH_MIRROR_DOWNLINK_PORT | ETH_MIRROR_VLAN))
3895 ixgbe_mirror_rule_set(struct rte_eth_dev *dev,
3896 struct rte_eth_mirror_conf *mirror_conf,
3897 uint8_t rule_id, uint8_t on)
3899 uint32_t mr_ctl,vlvf;
3900 uint32_t mp_lsb = 0;
3901 uint32_t mv_msb = 0;
3902 uint32_t mv_lsb = 0;
3903 uint32_t mp_msb = 0;
3906 uint64_t vlan_mask = 0;
3908 const uint8_t pool_mask_offset = 32;
3909 const uint8_t vlan_mask_offset = 32;
3910 const uint8_t dst_pool_offset = 8;
3911 const uint8_t rule_mr_offset = 4;
3912 const uint8_t mirror_rule_mask= 0x0F;
3914 struct ixgbe_mirror_info *mr_info =
3915 (IXGBE_DEV_PRIVATE_TO_PFDATA(dev->data->dev_private));
3916 struct ixgbe_hw *hw =
3917 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3918 uint8_t mirror_type = 0;
3920 if (ixgbe_vmdq_mode_check(hw) < 0)
3923 if (rule_id >= IXGBE_MAX_MIRROR_RULES)
3926 if (IXGBE_INVALID_MIRROR_TYPE(mirror_conf->rule_type)) {
3927 PMD_DRV_LOG(ERR, "unsupported mirror type 0x%x.",
3928 mirror_conf->rule_type);
3932 if (mirror_conf->rule_type & ETH_MIRROR_VLAN) {
3933 mirror_type |= IXGBE_MRCTL_VLME;
3934 /* Check if vlan id is valid and find conresponding VLAN ID index in VLVF */
3935 for (i = 0;i < IXGBE_VLVF_ENTRIES; i++) {
3936 if (mirror_conf->vlan.vlan_mask & (1ULL << i)) {
3937 /* search vlan id related pool vlan filter index */
3938 reg_index = ixgbe_find_vlvf_slot(hw,
3939 mirror_conf->vlan.vlan_id[i]);
3942 vlvf = IXGBE_READ_REG(hw, IXGBE_VLVF(reg_index));
3943 if ((vlvf & IXGBE_VLVF_VIEN) &&
3944 ((vlvf & IXGBE_VLVF_VLANID_MASK) ==
3945 mirror_conf->vlan.vlan_id[i]))
3946 vlan_mask |= (1ULL << reg_index);
3953 mv_lsb = vlan_mask & 0xFFFFFFFF;
3954 mv_msb = vlan_mask >> vlan_mask_offset;
3956 mr_info->mr_conf[rule_id].vlan.vlan_mask =
3957 mirror_conf->vlan.vlan_mask;
3958 for(i = 0 ;i < ETH_VMDQ_MAX_VLAN_FILTERS; i++) {
3959 if(mirror_conf->vlan.vlan_mask & (1ULL << i))
3960 mr_info->mr_conf[rule_id].vlan.vlan_id[i] =
3961 mirror_conf->vlan.vlan_id[i];
3966 mr_info->mr_conf[rule_id].vlan.vlan_mask = 0;
3967 for(i = 0 ;i < ETH_VMDQ_MAX_VLAN_FILTERS; i++)
3968 mr_info->mr_conf[rule_id].vlan.vlan_id[i] = 0;
3973 * if enable pool mirror, write related pool mask register,if disable
3974 * pool mirror, clear PFMRVM register
3976 if (mirror_conf->rule_type & ETH_MIRROR_VIRTUAL_POOL_UP) {
3977 mirror_type |= IXGBE_MRCTL_VPME;
3979 mp_lsb = mirror_conf->pool_mask & 0xFFFFFFFF;
3980 mp_msb = mirror_conf->pool_mask >> pool_mask_offset;
3981 mr_info->mr_conf[rule_id].pool_mask =
3982 mirror_conf->pool_mask;
3987 mr_info->mr_conf[rule_id].pool_mask = 0;
3990 if (mirror_conf->rule_type & ETH_MIRROR_UPLINK_PORT)
3991 mirror_type |= IXGBE_MRCTL_UPME;
3992 if (mirror_conf->rule_type & ETH_MIRROR_DOWNLINK_PORT)
3993 mirror_type |= IXGBE_MRCTL_DPME;
3995 /* read mirror control register and recalculate it */
3996 mr_ctl = IXGBE_READ_REG(hw, IXGBE_MRCTL(rule_id));
3999 mr_ctl |= mirror_type;
4000 mr_ctl &= mirror_rule_mask;
4001 mr_ctl |= mirror_conf->dst_pool << dst_pool_offset;
4003 mr_ctl &= ~(mirror_conf->rule_type & mirror_rule_mask);
4005 mr_info->mr_conf[rule_id].rule_type = mirror_conf->rule_type;
4006 mr_info->mr_conf[rule_id].dst_pool = mirror_conf->dst_pool;
4008 /* write mirrror control register */
4009 IXGBE_WRITE_REG(hw, IXGBE_MRCTL(rule_id), mr_ctl);
4011 /* write pool mirrror control register */
4012 if (mirror_conf->rule_type == ETH_MIRROR_VIRTUAL_POOL_UP) {
4013 IXGBE_WRITE_REG(hw, IXGBE_VMRVM(rule_id), mp_lsb);
4014 IXGBE_WRITE_REG(hw, IXGBE_VMRVM(rule_id + rule_mr_offset),
4017 /* write VLAN mirrror control register */
4018 if (mirror_conf->rule_type == ETH_MIRROR_VLAN) {
4019 IXGBE_WRITE_REG(hw, IXGBE_VMRVLAN(rule_id), mv_lsb);
4020 IXGBE_WRITE_REG(hw, IXGBE_VMRVLAN(rule_id + rule_mr_offset),
4028 ixgbe_mirror_rule_reset(struct rte_eth_dev *dev, uint8_t rule_id)
4031 uint32_t lsb_val = 0;
4032 uint32_t msb_val = 0;
4033 const uint8_t rule_mr_offset = 4;
4035 struct ixgbe_hw *hw =
4036 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4037 struct ixgbe_mirror_info *mr_info =
4038 (IXGBE_DEV_PRIVATE_TO_PFDATA(dev->data->dev_private));
4040 if (ixgbe_vmdq_mode_check(hw) < 0)
4043 memset(&mr_info->mr_conf[rule_id], 0,
4044 sizeof(struct rte_eth_mirror_conf));
4046 /* clear PFVMCTL register */
4047 IXGBE_WRITE_REG(hw, IXGBE_MRCTL(rule_id), mr_ctl);
4049 /* clear pool mask register */
4050 IXGBE_WRITE_REG(hw, IXGBE_VMRVM(rule_id), lsb_val);
4051 IXGBE_WRITE_REG(hw, IXGBE_VMRVM(rule_id + rule_mr_offset), msb_val);
4053 /* clear vlan mask register */
4054 IXGBE_WRITE_REG(hw, IXGBE_VMRVLAN(rule_id), lsb_val);
4055 IXGBE_WRITE_REG(hw, IXGBE_VMRVLAN(rule_id + rule_mr_offset), msb_val);
4061 ixgbevf_dev_rx_queue_intr_enable(struct rte_eth_dev *dev, uint16_t queue_id)
4064 struct ixgbe_hw *hw =
4065 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4067 mask = IXGBE_READ_REG(hw, IXGBE_VTEIMS);
4068 mask |= (1 << queue_id);
4069 IXGBE_WRITE_REG(hw, IXGBE_VTEIMS, mask);
4071 rte_intr_enable(&dev->pci_dev->intr_handle);
4077 ixgbevf_dev_rx_queue_intr_disable(struct rte_eth_dev *dev, uint16_t queue_id)
4080 struct ixgbe_hw *hw =
4081 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4083 mask = IXGBE_READ_REG(hw, IXGBE_VTEIMS);
4084 mask &= ~(1 << queue_id);
4085 IXGBE_WRITE_REG(hw, IXGBE_VTEIMS, mask);
4091 ixgbe_dev_rx_queue_intr_enable(struct rte_eth_dev *dev, uint16_t queue_id)
4094 struct ixgbe_hw *hw =
4095 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4096 struct ixgbe_interrupt *intr =
4097 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
4099 if (queue_id < 16) {
4100 ixgbe_disable_intr(hw);
4101 intr->mask |= (1 << queue_id);
4102 ixgbe_enable_intr(dev);
4103 } else if (queue_id < 32) {
4104 mask = IXGBE_READ_REG(hw, IXGBE_EIMS_EX(0));
4105 mask &= (1 << queue_id);
4106 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(0), mask);
4107 } else if (queue_id < 64) {
4108 mask = IXGBE_READ_REG(hw, IXGBE_EIMS_EX(1));
4109 mask &= (1 << (queue_id - 32));
4110 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(1), mask);
4112 rte_intr_enable(&dev->pci_dev->intr_handle);
4118 ixgbe_dev_rx_queue_intr_disable(struct rte_eth_dev *dev, uint16_t queue_id)
4121 struct ixgbe_hw *hw =
4122 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4123 struct ixgbe_interrupt *intr =
4124 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
4126 if (queue_id < 16) {
4127 ixgbe_disable_intr(hw);
4128 intr->mask &= ~(1 << queue_id);
4129 ixgbe_enable_intr(dev);
4130 } else if (queue_id < 32) {
4131 mask = IXGBE_READ_REG(hw, IXGBE_EIMS_EX(0));
4132 mask &= ~(1 << queue_id);
4133 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(0), mask);
4134 } else if (queue_id < 64) {
4135 mask = IXGBE_READ_REG(hw, IXGBE_EIMS_EX(1));
4136 mask &= ~(1 << (queue_id - 32));
4137 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(1), mask);
4144 ixgbevf_set_ivar_map(struct ixgbe_hw *hw, int8_t direction,
4145 uint8_t queue, uint8_t msix_vector)
4149 if (direction == -1) {
4151 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
4152 tmp = IXGBE_READ_REG(hw, IXGBE_VTIVAR_MISC);
4155 IXGBE_WRITE_REG(hw, IXGBE_VTIVAR_MISC, tmp);
4157 /* rx or tx cause */
4158 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
4159 idx = ((16 * (queue & 1)) + (8 * direction));
4160 tmp = IXGBE_READ_REG(hw, IXGBE_VTIVAR(queue >> 1));
4161 tmp &= ~(0xFF << idx);
4162 tmp |= (msix_vector << idx);
4163 IXGBE_WRITE_REG(hw, IXGBE_VTIVAR(queue >> 1), tmp);
4168 * set the IVAR registers, mapping interrupt causes to vectors
4170 * pointer to ixgbe_hw struct
4172 * 0 for Rx, 1 for Tx, -1 for other causes
4174 * queue to map the corresponding interrupt to
4176 * the vector to map to the corresponding queue
4179 ixgbe_set_ivar_map(struct ixgbe_hw *hw, int8_t direction,
4180 uint8_t queue, uint8_t msix_vector)
4184 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
4185 if (hw->mac.type == ixgbe_mac_82598EB) {
4186 if (direction == -1)
4188 idx = (((direction * 64) + queue) >> 2) & 0x1F;
4189 tmp = IXGBE_READ_REG(hw, IXGBE_IVAR(idx));
4190 tmp &= ~(0xFF << (8 * (queue & 0x3)));
4191 tmp |= (msix_vector << (8 * (queue & 0x3)));
4192 IXGBE_WRITE_REG(hw, IXGBE_IVAR(idx), tmp);
4193 } else if ((hw->mac.type == ixgbe_mac_82599EB) ||
4194 (hw->mac.type == ixgbe_mac_X540)) {
4195 if (direction == -1) {
4197 idx = ((queue & 1) * 8);
4198 tmp = IXGBE_READ_REG(hw, IXGBE_IVAR_MISC);
4199 tmp &= ~(0xFF << idx);
4200 tmp |= (msix_vector << idx);
4201 IXGBE_WRITE_REG(hw, IXGBE_IVAR_MISC, tmp);
4203 /* rx or tx causes */
4204 idx = ((16 * (queue & 1)) + (8 * direction));
4205 tmp = IXGBE_READ_REG(hw, IXGBE_IVAR(queue >> 1));
4206 tmp &= ~(0xFF << idx);
4207 tmp |= (msix_vector << idx);
4208 IXGBE_WRITE_REG(hw, IXGBE_IVAR(queue >> 1), tmp);
4214 ixgbevf_configure_msix(struct rte_eth_dev *dev)
4216 struct rte_intr_handle *intr_handle = &dev->pci_dev->intr_handle;
4217 struct ixgbe_hw *hw =
4218 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4220 uint32_t vector_idx = 0;
4222 /* won't configure msix register if no mapping is done
4223 * between intr vector and event fd.
4225 if (!rte_intr_dp_is_en(intr_handle))
4228 /* Configure all RX queues of VF */
4229 for (q_idx = 0; q_idx < dev->data->nb_rx_queues; q_idx++) {
4230 /* Force all queue use vector 0,
4231 * as IXGBE_VF_MAXMSIVECOTR = 1
4233 ixgbevf_set_ivar_map(hw, 0, q_idx, vector_idx);
4234 intr_handle->intr_vec[q_idx] = vector_idx;
4237 /* Configure VF Rx queue ivar */
4238 ixgbevf_set_ivar_map(hw, -1, 1, vector_idx);
4242 * Sets up the hardware to properly generate MSI-X interrupts
4244 * board private structure
4247 ixgbe_configure_msix(struct rte_eth_dev *dev)
4249 struct rte_intr_handle *intr_handle = &dev->pci_dev->intr_handle;
4250 struct ixgbe_hw *hw =
4251 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4252 uint32_t queue_id, vec = 0;
4256 /* won't configure msix register if no mapping is done
4257 * between intr vector and event fd
4259 if (!rte_intr_dp_is_en(intr_handle))
4262 /* setup GPIE for MSI-x mode */
4263 gpie = IXGBE_READ_REG(hw, IXGBE_GPIE);
4264 gpie |= IXGBE_GPIE_MSIX_MODE | IXGBE_GPIE_PBA_SUPPORT |
4265 IXGBE_GPIE_OCD | IXGBE_GPIE_EIAME;
4266 /* auto clearing and auto setting corresponding bits in EIMS
4267 * when MSI-X interrupt is triggered
4269 if (hw->mac.type == ixgbe_mac_82598EB) {
4270 IXGBE_WRITE_REG(hw, IXGBE_EIAM, IXGBE_EICS_RTX_QUEUE);
4272 IXGBE_WRITE_REG(hw, IXGBE_EIAM_EX(0), 0xFFFFFFFF);
4273 IXGBE_WRITE_REG(hw, IXGBE_EIAM_EX(1), 0xFFFFFFFF);
4275 IXGBE_WRITE_REG(hw, IXGBE_GPIE, gpie);
4277 /* Populate the IVAR table and set the ITR values to the
4278 * corresponding register.
4280 for (queue_id = 0; queue_id < dev->data->nb_rx_queues;
4282 /* by default, 1:1 mapping */
4283 ixgbe_set_ivar_map(hw, 0, queue_id, vec);
4284 intr_handle->intr_vec[queue_id] = vec;
4285 if (vec < intr_handle->nb_efd - 1)
4289 switch (hw->mac.type) {
4290 case ixgbe_mac_82598EB:
4291 ixgbe_set_ivar_map(hw, -1, IXGBE_IVAR_OTHER_CAUSES_INDEX,
4292 intr_handle->max_intr - 1);
4294 case ixgbe_mac_82599EB:
4295 case ixgbe_mac_X540:
4296 ixgbe_set_ivar_map(hw, -1, 1, intr_handle->max_intr - 1);
4301 IXGBE_WRITE_REG(hw, IXGBE_EITR(queue_id),
4302 IXGBE_MIN_INTER_INTERRUPT_INTERVAL_DEFAULT & 0xFFF);
4304 /* set up to autoclear timer, and the vectors */
4305 mask = IXGBE_EIMS_ENABLE_MASK;
4306 mask &= ~(IXGBE_EIMS_OTHER |
4307 IXGBE_EIMS_MAILBOX |
4310 IXGBE_WRITE_REG(hw, IXGBE_EIAC, mask);
4313 static int ixgbe_set_queue_rate_limit(struct rte_eth_dev *dev,
4314 uint16_t queue_idx, uint16_t tx_rate)
4316 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4317 uint32_t rf_dec, rf_int;
4319 uint16_t link_speed = dev->data->dev_link.link_speed;
4321 if (queue_idx >= hw->mac.max_tx_queues)
4325 /* Calculate the rate factor values to set */
4326 rf_int = (uint32_t)link_speed / (uint32_t)tx_rate;
4327 rf_dec = (uint32_t)link_speed % (uint32_t)tx_rate;
4328 rf_dec = (rf_dec << IXGBE_RTTBCNRC_RF_INT_SHIFT) / tx_rate;
4330 bcnrc_val = IXGBE_RTTBCNRC_RS_ENA;
4331 bcnrc_val |= ((rf_int << IXGBE_RTTBCNRC_RF_INT_SHIFT) &
4332 IXGBE_RTTBCNRC_RF_INT_MASK_M);
4333 bcnrc_val |= (rf_dec & IXGBE_RTTBCNRC_RF_DEC_MASK);
4339 * Set global transmit compensation time to the MMW_SIZE in RTTBCNRM
4340 * register. MMW_SIZE=0x014 if 9728-byte jumbo is supported, otherwise
4343 if ((dev->data->dev_conf.rxmode.jumbo_frame == 1) &&
4344 (dev->data->dev_conf.rxmode.max_rx_pkt_len >=
4345 IXGBE_MAX_JUMBO_FRAME_SIZE))
4346 IXGBE_WRITE_REG(hw, IXGBE_RTTBCNRM,
4347 IXGBE_MMW_SIZE_JUMBO_FRAME);
4349 IXGBE_WRITE_REG(hw, IXGBE_RTTBCNRM,
4350 IXGBE_MMW_SIZE_DEFAULT);
4352 /* Set RTTBCNRC of queue X */
4353 IXGBE_WRITE_REG(hw, IXGBE_RTTDQSEL, queue_idx);
4354 IXGBE_WRITE_REG(hw, IXGBE_RTTBCNRC, bcnrc_val);
4355 IXGBE_WRITE_FLUSH(hw);
4360 static int ixgbe_set_vf_rate_limit(struct rte_eth_dev *dev, uint16_t vf,
4361 uint16_t tx_rate, uint64_t q_msk)
4363 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4364 struct ixgbe_vf_info *vfinfo =
4365 *(IXGBE_DEV_PRIVATE_TO_P_VFDATA(dev->data->dev_private));
4366 uint8_t nb_q_per_pool = RTE_ETH_DEV_SRIOV(dev).nb_q_per_pool;
4367 uint32_t queue_stride =
4368 IXGBE_MAX_RX_QUEUE_NUM / RTE_ETH_DEV_SRIOV(dev).active;
4369 uint32_t queue_idx = vf * queue_stride, idx = 0, vf_idx;
4370 uint32_t queue_end = queue_idx + nb_q_per_pool - 1;
4371 uint16_t total_rate = 0;
4373 if (queue_end >= hw->mac.max_tx_queues)
4376 if (vfinfo != NULL) {
4377 for (vf_idx = 0; vf_idx < dev->pci_dev->max_vfs; vf_idx++) {
4380 for (idx = 0; idx < RTE_DIM(vfinfo[vf_idx].tx_rate);
4382 total_rate += vfinfo[vf_idx].tx_rate[idx];
4387 /* Store tx_rate for this vf. */
4388 for (idx = 0; idx < nb_q_per_pool; idx++) {
4389 if (((uint64_t)0x1 << idx) & q_msk) {
4390 if (vfinfo[vf].tx_rate[idx] != tx_rate)
4391 vfinfo[vf].tx_rate[idx] = tx_rate;
4392 total_rate += tx_rate;
4396 if (total_rate > dev->data->dev_link.link_speed) {
4398 * Reset stored TX rate of the VF if it causes exceed
4401 memset(vfinfo[vf].tx_rate, 0, sizeof(vfinfo[vf].tx_rate));
4405 /* Set RTTBCNRC of each queue/pool for vf X */
4406 for (; queue_idx <= queue_end; queue_idx++) {
4408 ixgbe_set_queue_rate_limit(dev, queue_idx, tx_rate);
4416 ixgbevf_add_mac_addr(struct rte_eth_dev *dev, struct ether_addr *mac_addr,
4417 __attribute__((unused)) uint32_t index,
4418 __attribute__((unused)) uint32_t pool)
4420 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4424 * On a 82599 VF, adding again the same MAC addr is not an idempotent
4425 * operation. Trap this case to avoid exhausting the [very limited]
4426 * set of PF resources used to store VF MAC addresses.
4428 if (memcmp(hw->mac.perm_addr, mac_addr, sizeof(struct ether_addr)) == 0)
4430 diag = ixgbevf_set_uc_addr_vf(hw, 2, mac_addr->addr_bytes);
4433 PMD_DRV_LOG(ERR, "Unable to add MAC address - diag=%d", diag);
4437 ixgbevf_remove_mac_addr(struct rte_eth_dev *dev, uint32_t index)
4439 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4440 struct ether_addr *perm_addr = (struct ether_addr *) hw->mac.perm_addr;
4441 struct ether_addr *mac_addr;
4446 * The IXGBE_VF_SET_MACVLAN command of the ixgbe-pf driver does
4447 * not support the deletion of a given MAC address.
4448 * Instead, it imposes to delete all MAC addresses, then to add again
4449 * all MAC addresses with the exception of the one to be deleted.
4451 (void) ixgbevf_set_uc_addr_vf(hw, 0, NULL);
4454 * Add again all MAC addresses, with the exception of the deleted one
4455 * and of the permanent MAC address.
4457 for (i = 0, mac_addr = dev->data->mac_addrs;
4458 i < hw->mac.num_rar_entries; i++, mac_addr++) {
4459 /* Skip the deleted MAC address */
4462 /* Skip NULL MAC addresses */
4463 if (is_zero_ether_addr(mac_addr))
4465 /* Skip the permanent MAC address */
4466 if (memcmp(perm_addr, mac_addr, sizeof(struct ether_addr)) == 0)
4468 diag = ixgbevf_set_uc_addr_vf(hw, 2, mac_addr->addr_bytes);
4471 "Adding again MAC address "
4472 "%02x:%02x:%02x:%02x:%02x:%02x failed "
4474 mac_addr->addr_bytes[0],
4475 mac_addr->addr_bytes[1],
4476 mac_addr->addr_bytes[2],
4477 mac_addr->addr_bytes[3],
4478 mac_addr->addr_bytes[4],
4479 mac_addr->addr_bytes[5],
4485 ixgbevf_set_default_mac_addr(struct rte_eth_dev *dev, struct ether_addr *addr)
4487 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4489 hw->mac.ops.set_rar(hw, 0, (void *)addr, 0, 0);
4492 #define MAC_TYPE_FILTER_SUP(type) do {\
4493 if ((type) != ixgbe_mac_82599EB && (type) != ixgbe_mac_X540 &&\
4494 (type) != ixgbe_mac_X550)\
4499 ixgbe_syn_filter_set(struct rte_eth_dev *dev,
4500 struct rte_eth_syn_filter *filter,
4503 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4506 if (filter->queue >= IXGBE_MAX_RX_QUEUE_NUM)
4509 synqf = IXGBE_READ_REG(hw, IXGBE_SYNQF);
4512 if (synqf & IXGBE_SYN_FILTER_ENABLE)
4514 synqf = (uint32_t)(((filter->queue << IXGBE_SYN_FILTER_QUEUE_SHIFT) &
4515 IXGBE_SYN_FILTER_QUEUE) | IXGBE_SYN_FILTER_ENABLE);
4517 if (filter->hig_pri)
4518 synqf |= IXGBE_SYN_FILTER_SYNQFP;
4520 synqf &= ~IXGBE_SYN_FILTER_SYNQFP;
4522 if (!(synqf & IXGBE_SYN_FILTER_ENABLE))
4524 synqf &= ~(IXGBE_SYN_FILTER_QUEUE | IXGBE_SYN_FILTER_ENABLE);
4526 IXGBE_WRITE_REG(hw, IXGBE_SYNQF, synqf);
4527 IXGBE_WRITE_FLUSH(hw);
4532 ixgbe_syn_filter_get(struct rte_eth_dev *dev,
4533 struct rte_eth_syn_filter *filter)
4535 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4536 uint32_t synqf = IXGBE_READ_REG(hw, IXGBE_SYNQF);
4538 if (synqf & IXGBE_SYN_FILTER_ENABLE) {
4539 filter->hig_pri = (synqf & IXGBE_SYN_FILTER_SYNQFP) ? 1 : 0;
4540 filter->queue = (uint16_t)((synqf & IXGBE_SYN_FILTER_QUEUE) >> 1);
4547 ixgbe_syn_filter_handle(struct rte_eth_dev *dev,
4548 enum rte_filter_op filter_op,
4551 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4554 MAC_TYPE_FILTER_SUP(hw->mac.type);
4556 if (filter_op == RTE_ETH_FILTER_NOP)
4560 PMD_DRV_LOG(ERR, "arg shouldn't be NULL for operation %u",
4565 switch (filter_op) {
4566 case RTE_ETH_FILTER_ADD:
4567 ret = ixgbe_syn_filter_set(dev,
4568 (struct rte_eth_syn_filter *)arg,
4571 case RTE_ETH_FILTER_DELETE:
4572 ret = ixgbe_syn_filter_set(dev,
4573 (struct rte_eth_syn_filter *)arg,
4576 case RTE_ETH_FILTER_GET:
4577 ret = ixgbe_syn_filter_get(dev,
4578 (struct rte_eth_syn_filter *)arg);
4581 PMD_DRV_LOG(ERR, "unsupported operation %u\n", filter_op);
4590 static inline enum ixgbe_5tuple_protocol
4591 convert_protocol_type(uint8_t protocol_value)
4593 if (protocol_value == IPPROTO_TCP)
4594 return IXGBE_FILTER_PROTOCOL_TCP;
4595 else if (protocol_value == IPPROTO_UDP)
4596 return IXGBE_FILTER_PROTOCOL_UDP;
4597 else if (protocol_value == IPPROTO_SCTP)
4598 return IXGBE_FILTER_PROTOCOL_SCTP;
4600 return IXGBE_FILTER_PROTOCOL_NONE;
4604 * add a 5tuple filter
4607 * dev: Pointer to struct rte_eth_dev.
4608 * index: the index the filter allocates.
4609 * filter: ponter to the filter that will be added.
4610 * rx_queue: the queue id the filter assigned to.
4613 * - On success, zero.
4614 * - On failure, a negative value.
4617 ixgbe_add_5tuple_filter(struct rte_eth_dev *dev,
4618 struct ixgbe_5tuple_filter *filter)
4620 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4621 struct ixgbe_filter_info *filter_info =
4622 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
4624 uint32_t ftqf, sdpqf;
4625 uint32_t l34timir = 0;
4626 uint8_t mask = 0xff;
4629 * look for an unused 5tuple filter index,
4630 * and insert the filter to list.
4632 for (i = 0; i < IXGBE_MAX_FTQF_FILTERS; i++) {
4633 idx = i / (sizeof(uint32_t) * NBBY);
4634 shift = i % (sizeof(uint32_t) * NBBY);
4635 if (!(filter_info->fivetuple_mask[idx] & (1 << shift))) {
4636 filter_info->fivetuple_mask[idx] |= 1 << shift;
4638 TAILQ_INSERT_TAIL(&filter_info->fivetuple_list,
4644 if (i >= IXGBE_MAX_FTQF_FILTERS) {
4645 PMD_DRV_LOG(ERR, "5tuple filters are full.");
4649 sdpqf = (uint32_t)(filter->filter_info.dst_port <<
4650 IXGBE_SDPQF_DSTPORT_SHIFT);
4651 sdpqf = sdpqf | (filter->filter_info.src_port & IXGBE_SDPQF_SRCPORT);
4653 ftqf = (uint32_t)(filter->filter_info.proto &
4654 IXGBE_FTQF_PROTOCOL_MASK);
4655 ftqf |= (uint32_t)((filter->filter_info.priority &
4656 IXGBE_FTQF_PRIORITY_MASK) << IXGBE_FTQF_PRIORITY_SHIFT);
4657 if (filter->filter_info.src_ip_mask == 0) /* 0 means compare. */
4658 mask &= IXGBE_FTQF_SOURCE_ADDR_MASK;
4659 if (filter->filter_info.dst_ip_mask == 0)
4660 mask &= IXGBE_FTQF_DEST_ADDR_MASK;
4661 if (filter->filter_info.src_port_mask == 0)
4662 mask &= IXGBE_FTQF_SOURCE_PORT_MASK;
4663 if (filter->filter_info.dst_port_mask == 0)
4664 mask &= IXGBE_FTQF_DEST_PORT_MASK;
4665 if (filter->filter_info.proto_mask == 0)
4666 mask &= IXGBE_FTQF_PROTOCOL_COMP_MASK;
4667 ftqf |= mask << IXGBE_FTQF_5TUPLE_MASK_SHIFT;
4668 ftqf |= IXGBE_FTQF_POOL_MASK_EN;
4669 ftqf |= IXGBE_FTQF_QUEUE_ENABLE;
4671 IXGBE_WRITE_REG(hw, IXGBE_DAQF(i), filter->filter_info.dst_ip);
4672 IXGBE_WRITE_REG(hw, IXGBE_SAQF(i), filter->filter_info.src_ip);
4673 IXGBE_WRITE_REG(hw, IXGBE_SDPQF(i), sdpqf);
4674 IXGBE_WRITE_REG(hw, IXGBE_FTQF(i), ftqf);
4676 l34timir |= IXGBE_L34T_IMIR_RESERVE;
4677 l34timir |= (uint32_t)(filter->queue <<
4678 IXGBE_L34T_IMIR_QUEUE_SHIFT);
4679 IXGBE_WRITE_REG(hw, IXGBE_L34T_IMIR(i), l34timir);
4684 * remove a 5tuple filter
4687 * dev: Pointer to struct rte_eth_dev.
4688 * filter: the pointer of the filter will be removed.
4691 ixgbe_remove_5tuple_filter(struct rte_eth_dev *dev,
4692 struct ixgbe_5tuple_filter *filter)
4694 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4695 struct ixgbe_filter_info *filter_info =
4696 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
4697 uint16_t index = filter->index;
4699 filter_info->fivetuple_mask[index / (sizeof(uint32_t) * NBBY)] &=
4700 ~(1 << (index % (sizeof(uint32_t) * NBBY)));
4701 TAILQ_REMOVE(&filter_info->fivetuple_list, filter, entries);
4704 IXGBE_WRITE_REG(hw, IXGBE_DAQF(index), 0);
4705 IXGBE_WRITE_REG(hw, IXGBE_SAQF(index), 0);
4706 IXGBE_WRITE_REG(hw, IXGBE_SDPQF(index), 0);
4707 IXGBE_WRITE_REG(hw, IXGBE_FTQF(index), 0);
4708 IXGBE_WRITE_REG(hw, IXGBE_L34T_IMIR(index), 0);
4712 ixgbevf_dev_set_mtu(struct rte_eth_dev *dev, uint16_t mtu)
4714 struct ixgbe_hw *hw;
4715 uint32_t max_frame = mtu + ETHER_HDR_LEN + ETHER_CRC_LEN;
4717 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4719 if ((mtu < ETHER_MIN_MTU) || (max_frame > ETHER_MAX_JUMBO_FRAME_LEN))
4722 /* refuse mtu that requires the support of scattered packets when this
4723 * feature has not been enabled before. */
4724 if (!dev->data->scattered_rx &&
4725 (max_frame + 2 * IXGBE_VLAN_TAG_SIZE >
4726 dev->data->min_rx_buf_size - RTE_PKTMBUF_HEADROOM))
4730 * When supported by the underlying PF driver, use the IXGBE_VF_SET_MTU
4731 * request of the version 2.0 of the mailbox API.
4732 * For now, use the IXGBE_VF_SET_LPE request of the version 1.0
4733 * of the mailbox API.
4734 * This call to IXGBE_SET_LPE action won't work with ixgbe pf drivers
4735 * prior to 3.11.33 which contains the following change:
4736 * "ixgbe: Enable jumbo frames support w/ SR-IOV"
4738 ixgbevf_rlpml_set_vf(hw, max_frame);
4740 /* update max frame size */
4741 dev->data->dev_conf.rxmode.max_rx_pkt_len = max_frame;
4745 #define MAC_TYPE_FILTER_SUP_EXT(type) do {\
4746 if ((type) != ixgbe_mac_82599EB && (type) != ixgbe_mac_X540)\
4750 static inline struct ixgbe_5tuple_filter *
4751 ixgbe_5tuple_filter_lookup(struct ixgbe_5tuple_filter_list *filter_list,
4752 struct ixgbe_5tuple_filter_info *key)
4754 struct ixgbe_5tuple_filter *it;
4756 TAILQ_FOREACH(it, filter_list, entries) {
4757 if (memcmp(key, &it->filter_info,
4758 sizeof(struct ixgbe_5tuple_filter_info)) == 0) {
4765 /* translate elements in struct rte_eth_ntuple_filter to struct ixgbe_5tuple_filter_info*/
4767 ntuple_filter_to_5tuple(struct rte_eth_ntuple_filter *filter,
4768 struct ixgbe_5tuple_filter_info *filter_info)
4770 if (filter->queue >= IXGBE_MAX_RX_QUEUE_NUM ||
4771 filter->priority > IXGBE_5TUPLE_MAX_PRI ||
4772 filter->priority < IXGBE_5TUPLE_MIN_PRI)
4775 switch (filter->dst_ip_mask) {
4777 filter_info->dst_ip_mask = 0;
4778 filter_info->dst_ip = filter->dst_ip;
4781 filter_info->dst_ip_mask = 1;
4784 PMD_DRV_LOG(ERR, "invalid dst_ip mask.");
4788 switch (filter->src_ip_mask) {
4790 filter_info->src_ip_mask = 0;
4791 filter_info->src_ip = filter->src_ip;
4794 filter_info->src_ip_mask = 1;
4797 PMD_DRV_LOG(ERR, "invalid src_ip mask.");
4801 switch (filter->dst_port_mask) {
4803 filter_info->dst_port_mask = 0;
4804 filter_info->dst_port = filter->dst_port;
4807 filter_info->dst_port_mask = 1;
4810 PMD_DRV_LOG(ERR, "invalid dst_port mask.");
4814 switch (filter->src_port_mask) {
4816 filter_info->src_port_mask = 0;
4817 filter_info->src_port = filter->src_port;
4820 filter_info->src_port_mask = 1;
4823 PMD_DRV_LOG(ERR, "invalid src_port mask.");
4827 switch (filter->proto_mask) {
4829 filter_info->proto_mask = 0;
4830 filter_info->proto =
4831 convert_protocol_type(filter->proto);
4834 filter_info->proto_mask = 1;
4837 PMD_DRV_LOG(ERR, "invalid protocol mask.");
4841 filter_info->priority = (uint8_t)filter->priority;
4846 * add or delete a ntuple filter
4849 * dev: Pointer to struct rte_eth_dev.
4850 * ntuple_filter: Pointer to struct rte_eth_ntuple_filter
4851 * add: if true, add filter, if false, remove filter
4854 * - On success, zero.
4855 * - On failure, a negative value.
4858 ixgbe_add_del_ntuple_filter(struct rte_eth_dev *dev,
4859 struct rte_eth_ntuple_filter *ntuple_filter,
4862 struct ixgbe_filter_info *filter_info =
4863 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
4864 struct ixgbe_5tuple_filter_info filter_5tuple;
4865 struct ixgbe_5tuple_filter *filter;
4868 if (ntuple_filter->flags != RTE_5TUPLE_FLAGS) {
4869 PMD_DRV_LOG(ERR, "only 5tuple is supported.");
4873 memset(&filter_5tuple, 0, sizeof(struct ixgbe_5tuple_filter_info));
4874 ret = ntuple_filter_to_5tuple(ntuple_filter, &filter_5tuple);
4878 filter = ixgbe_5tuple_filter_lookup(&filter_info->fivetuple_list,
4880 if (filter != NULL && add) {
4881 PMD_DRV_LOG(ERR, "filter exists.");
4884 if (filter == NULL && !add) {
4885 PMD_DRV_LOG(ERR, "filter doesn't exist.");
4890 filter = rte_zmalloc("ixgbe_5tuple_filter",
4891 sizeof(struct ixgbe_5tuple_filter), 0);
4894 (void)rte_memcpy(&filter->filter_info,
4896 sizeof(struct ixgbe_5tuple_filter_info));
4897 filter->queue = ntuple_filter->queue;
4898 ret = ixgbe_add_5tuple_filter(dev, filter);
4904 ixgbe_remove_5tuple_filter(dev, filter);
4910 * get a ntuple filter
4913 * dev: Pointer to struct rte_eth_dev.
4914 * ntuple_filter: Pointer to struct rte_eth_ntuple_filter
4917 * - On success, zero.
4918 * - On failure, a negative value.
4921 ixgbe_get_ntuple_filter(struct rte_eth_dev *dev,
4922 struct rte_eth_ntuple_filter *ntuple_filter)
4924 struct ixgbe_filter_info *filter_info =
4925 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
4926 struct ixgbe_5tuple_filter_info filter_5tuple;
4927 struct ixgbe_5tuple_filter *filter;
4930 if (ntuple_filter->flags != RTE_5TUPLE_FLAGS) {
4931 PMD_DRV_LOG(ERR, "only 5tuple is supported.");
4935 memset(&filter_5tuple, 0, sizeof(struct ixgbe_5tuple_filter_info));
4936 ret = ntuple_filter_to_5tuple(ntuple_filter, &filter_5tuple);
4940 filter = ixgbe_5tuple_filter_lookup(&filter_info->fivetuple_list,
4942 if (filter == NULL) {
4943 PMD_DRV_LOG(ERR, "filter doesn't exist.");
4946 ntuple_filter->queue = filter->queue;
4951 * ixgbe_ntuple_filter_handle - Handle operations for ntuple filter.
4952 * @dev: pointer to rte_eth_dev structure
4953 * @filter_op:operation will be taken.
4954 * @arg: a pointer to specific structure corresponding to the filter_op
4957 * - On success, zero.
4958 * - On failure, a negative value.
4961 ixgbe_ntuple_filter_handle(struct rte_eth_dev *dev,
4962 enum rte_filter_op filter_op,
4965 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4968 MAC_TYPE_FILTER_SUP_EXT(hw->mac.type);
4970 if (filter_op == RTE_ETH_FILTER_NOP)
4974 PMD_DRV_LOG(ERR, "arg shouldn't be NULL for operation %u.",
4979 switch (filter_op) {
4980 case RTE_ETH_FILTER_ADD:
4981 ret = ixgbe_add_del_ntuple_filter(dev,
4982 (struct rte_eth_ntuple_filter *)arg,
4985 case RTE_ETH_FILTER_DELETE:
4986 ret = ixgbe_add_del_ntuple_filter(dev,
4987 (struct rte_eth_ntuple_filter *)arg,
4990 case RTE_ETH_FILTER_GET:
4991 ret = ixgbe_get_ntuple_filter(dev,
4992 (struct rte_eth_ntuple_filter *)arg);
4995 PMD_DRV_LOG(ERR, "unsupported operation %u.", filter_op);
5003 ixgbe_ethertype_filter_lookup(struct ixgbe_filter_info *filter_info,
5008 for (i = 0; i < IXGBE_MAX_ETQF_FILTERS; i++) {
5009 if (filter_info->ethertype_filters[i] == ethertype &&
5010 (filter_info->ethertype_mask & (1 << i)))
5017 ixgbe_ethertype_filter_insert(struct ixgbe_filter_info *filter_info,
5022 for (i = 0; i < IXGBE_MAX_ETQF_FILTERS; i++) {
5023 if (!(filter_info->ethertype_mask & (1 << i))) {
5024 filter_info->ethertype_mask |= 1 << i;
5025 filter_info->ethertype_filters[i] = ethertype;
5033 ixgbe_ethertype_filter_remove(struct ixgbe_filter_info *filter_info,
5036 if (idx >= IXGBE_MAX_ETQF_FILTERS)
5038 filter_info->ethertype_mask &= ~(1 << idx);
5039 filter_info->ethertype_filters[idx] = 0;
5044 ixgbe_add_del_ethertype_filter(struct rte_eth_dev *dev,
5045 struct rte_eth_ethertype_filter *filter,
5048 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5049 struct ixgbe_filter_info *filter_info =
5050 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
5055 if (filter->queue >= IXGBE_MAX_RX_QUEUE_NUM)
5058 if (filter->ether_type == ETHER_TYPE_IPv4 ||
5059 filter->ether_type == ETHER_TYPE_IPv6) {
5060 PMD_DRV_LOG(ERR, "unsupported ether_type(0x%04x) in"
5061 " ethertype filter.", filter->ether_type);
5065 if (filter->flags & RTE_ETHTYPE_FLAGS_MAC) {
5066 PMD_DRV_LOG(ERR, "mac compare is unsupported.");
5069 if (filter->flags & RTE_ETHTYPE_FLAGS_DROP) {
5070 PMD_DRV_LOG(ERR, "drop option is unsupported.");
5074 ret = ixgbe_ethertype_filter_lookup(filter_info, filter->ether_type);
5075 if (ret >= 0 && add) {
5076 PMD_DRV_LOG(ERR, "ethertype (0x%04x) filter exists.",
5077 filter->ether_type);
5080 if (ret < 0 && !add) {
5081 PMD_DRV_LOG(ERR, "ethertype (0x%04x) filter doesn't exist.",
5082 filter->ether_type);
5087 ret = ixgbe_ethertype_filter_insert(filter_info,
5088 filter->ether_type);
5090 PMD_DRV_LOG(ERR, "ethertype filters are full.");
5093 etqf = IXGBE_ETQF_FILTER_EN;
5094 etqf |= (uint32_t)filter->ether_type;
5095 etqs |= (uint32_t)((filter->queue <<
5096 IXGBE_ETQS_RX_QUEUE_SHIFT) &
5097 IXGBE_ETQS_RX_QUEUE);
5098 etqs |= IXGBE_ETQS_QUEUE_EN;
5100 ret = ixgbe_ethertype_filter_remove(filter_info, (uint8_t)ret);
5104 IXGBE_WRITE_REG(hw, IXGBE_ETQF(ret), etqf);
5105 IXGBE_WRITE_REG(hw, IXGBE_ETQS(ret), etqs);
5106 IXGBE_WRITE_FLUSH(hw);
5112 ixgbe_get_ethertype_filter(struct rte_eth_dev *dev,
5113 struct rte_eth_ethertype_filter *filter)
5115 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5116 struct ixgbe_filter_info *filter_info =
5117 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
5118 uint32_t etqf, etqs;
5121 ret = ixgbe_ethertype_filter_lookup(filter_info, filter->ether_type);
5123 PMD_DRV_LOG(ERR, "ethertype (0x%04x) filter doesn't exist.",
5124 filter->ether_type);
5128 etqf = IXGBE_READ_REG(hw, IXGBE_ETQF(ret));
5129 if (etqf & IXGBE_ETQF_FILTER_EN) {
5130 etqs = IXGBE_READ_REG(hw, IXGBE_ETQS(ret));
5131 filter->ether_type = etqf & IXGBE_ETQF_ETHERTYPE;
5133 filter->queue = (etqs & IXGBE_ETQS_RX_QUEUE) >>
5134 IXGBE_ETQS_RX_QUEUE_SHIFT;
5141 * ixgbe_ethertype_filter_handle - Handle operations for ethertype filter.
5142 * @dev: pointer to rte_eth_dev structure
5143 * @filter_op:operation will be taken.
5144 * @arg: a pointer to specific structure corresponding to the filter_op
5147 ixgbe_ethertype_filter_handle(struct rte_eth_dev *dev,
5148 enum rte_filter_op filter_op,
5151 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5154 MAC_TYPE_FILTER_SUP(hw->mac.type);
5156 if (filter_op == RTE_ETH_FILTER_NOP)
5160 PMD_DRV_LOG(ERR, "arg shouldn't be NULL for operation %u.",
5165 switch (filter_op) {
5166 case RTE_ETH_FILTER_ADD:
5167 ret = ixgbe_add_del_ethertype_filter(dev,
5168 (struct rte_eth_ethertype_filter *)arg,
5171 case RTE_ETH_FILTER_DELETE:
5172 ret = ixgbe_add_del_ethertype_filter(dev,
5173 (struct rte_eth_ethertype_filter *)arg,
5176 case RTE_ETH_FILTER_GET:
5177 ret = ixgbe_get_ethertype_filter(dev,
5178 (struct rte_eth_ethertype_filter *)arg);
5181 PMD_DRV_LOG(ERR, "unsupported operation %u.", filter_op);
5189 ixgbe_dev_filter_ctrl(struct rte_eth_dev *dev,
5190 enum rte_filter_type filter_type,
5191 enum rte_filter_op filter_op,
5196 switch (filter_type) {
5197 case RTE_ETH_FILTER_NTUPLE:
5198 ret = ixgbe_ntuple_filter_handle(dev, filter_op, arg);
5200 case RTE_ETH_FILTER_ETHERTYPE:
5201 ret = ixgbe_ethertype_filter_handle(dev, filter_op, arg);
5203 case RTE_ETH_FILTER_SYN:
5204 ret = ixgbe_syn_filter_handle(dev, filter_op, arg);
5206 case RTE_ETH_FILTER_FDIR:
5207 ret = ixgbe_fdir_ctrl_func(dev, filter_op, arg);
5210 PMD_DRV_LOG(WARNING, "Filter type (%d) not supported",
5219 ixgbe_dev_addr_list_itr(__attribute__((unused)) struct ixgbe_hw *hw,
5220 u8 **mc_addr_ptr, u32 *vmdq)
5225 mc_addr = *mc_addr_ptr;
5226 *mc_addr_ptr = (mc_addr + sizeof(struct ether_addr));
5231 ixgbe_dev_set_mc_addr_list(struct rte_eth_dev *dev,
5232 struct ether_addr *mc_addr_set,
5233 uint32_t nb_mc_addr)
5235 struct ixgbe_hw *hw;
5238 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5239 mc_addr_list = (u8 *)mc_addr_set;
5240 return ixgbe_update_mc_addr_list(hw, mc_addr_list, nb_mc_addr,
5241 ixgbe_dev_addr_list_itr, TRUE);
5245 ixgbe_timesync_enable(struct rte_eth_dev *dev)
5247 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5251 /* Enable system time for platforms where it isn't on by default. */
5252 tsauxc = IXGBE_READ_REG(hw, IXGBE_TSAUXC);
5253 tsauxc &= ~IXGBE_TSAUXC_DISABLE_SYSTIME;
5254 IXGBE_WRITE_REG(hw, IXGBE_TSAUXC, tsauxc);
5256 /* Start incrementing the register used to timestamp PTP packets. */
5257 IXGBE_WRITE_REG(hw, IXGBE_TIMINCA, IXGBE_TIMINCA_INIT);
5259 /* Enable L2 filtering of IEEE1588/802.1AS Ethernet frame types. */
5260 IXGBE_WRITE_REG(hw, IXGBE_ETQF(IXGBE_ETQF_FILTER_1588),
5262 IXGBE_ETQF_FILTER_EN |
5265 /* Enable timestamping of received PTP packets. */
5266 tsync_ctl = IXGBE_READ_REG(hw, IXGBE_TSYNCRXCTL);
5267 tsync_ctl |= IXGBE_TSYNCRXCTL_ENABLED;
5268 IXGBE_WRITE_REG(hw, IXGBE_TSYNCRXCTL, tsync_ctl);
5270 /* Enable timestamping of transmitted PTP packets. */
5271 tsync_ctl = IXGBE_READ_REG(hw, IXGBE_TSYNCTXCTL);
5272 tsync_ctl |= IXGBE_TSYNCTXCTL_ENABLED;
5273 IXGBE_WRITE_REG(hw, IXGBE_TSYNCTXCTL, tsync_ctl);
5279 ixgbe_timesync_disable(struct rte_eth_dev *dev)
5281 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5284 /* Disable timestamping of transmitted PTP packets. */
5285 tsync_ctl = IXGBE_READ_REG(hw, IXGBE_TSYNCTXCTL);
5286 tsync_ctl &= ~IXGBE_TSYNCTXCTL_ENABLED;
5287 IXGBE_WRITE_REG(hw, IXGBE_TSYNCTXCTL, tsync_ctl);
5289 /* Disable timestamping of received PTP packets. */
5290 tsync_ctl = IXGBE_READ_REG(hw, IXGBE_TSYNCRXCTL);
5291 tsync_ctl &= ~IXGBE_TSYNCRXCTL_ENABLED;
5292 IXGBE_WRITE_REG(hw, IXGBE_TSYNCRXCTL, tsync_ctl);
5294 /* Disable L2 filtering of IEEE1588/802.1AS Ethernet frame types. */
5295 IXGBE_WRITE_REG(hw, IXGBE_ETQF(IXGBE_ETQF_FILTER_1588), 0);
5297 /* Stop incrementating the System Time registers. */
5298 IXGBE_WRITE_REG(hw, IXGBE_TIMINCA, 0);
5304 ixgbe_timesync_read_rx_timestamp(struct rte_eth_dev *dev,
5305 struct timespec *timestamp,
5306 uint32_t flags __rte_unused)
5308 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5309 uint32_t tsync_rxctl;
5313 tsync_rxctl = IXGBE_READ_REG(hw, IXGBE_TSYNCRXCTL);
5314 if ((tsync_rxctl & IXGBE_TSYNCRXCTL_VALID) == 0)
5317 rx_stmpl = IXGBE_READ_REG(hw, IXGBE_RXSTMPL);
5318 rx_stmph = IXGBE_READ_REG(hw, IXGBE_RXSTMPH);
5320 timestamp->tv_sec = (uint64_t)(((uint64_t)rx_stmph << 32) | rx_stmpl);
5321 timestamp->tv_nsec = 0;
5327 ixgbe_timesync_read_tx_timestamp(struct rte_eth_dev *dev,
5328 struct timespec *timestamp)
5330 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5331 uint32_t tsync_txctl;
5335 tsync_txctl = IXGBE_READ_REG(hw, IXGBE_TSYNCTXCTL);
5336 if ((tsync_txctl & IXGBE_TSYNCTXCTL_VALID) == 0)
5339 tx_stmpl = IXGBE_READ_REG(hw, IXGBE_TXSTMPL);
5340 tx_stmph = IXGBE_READ_REG(hw, IXGBE_TXSTMPH);
5342 timestamp->tv_sec = (uint64_t)(((uint64_t)tx_stmph << 32) | tx_stmpl);
5343 timestamp->tv_nsec = 0;
5349 ixgbe_get_reg_length(struct rte_eth_dev *dev)
5351 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5354 const struct reg_info *reg_group;
5355 const struct reg_info **reg_set = (hw->mac.type == ixgbe_mac_82598EB) ?
5356 ixgbe_regs_mac_82598EB : ixgbe_regs_others;
5358 while ((reg_group = reg_set[g_ind++]))
5359 count += ixgbe_regs_group_count(reg_group);
5365 ixgbevf_get_reg_length(struct rte_eth_dev *dev __rte_unused)
5369 const struct reg_info *reg_group;
5371 while ((reg_group = ixgbevf_regs[g_ind++]))
5372 count += ixgbe_regs_group_count(reg_group);
5378 ixgbe_get_regs(struct rte_eth_dev *dev,
5379 struct rte_dev_reg_info *regs)
5381 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5382 uint32_t *data = regs->data;
5385 const struct reg_info *reg_group;
5386 const struct reg_info **reg_set = (hw->mac.type == ixgbe_mac_82598EB) ?
5387 ixgbe_regs_mac_82598EB : ixgbe_regs_others;
5389 /* Support only full register dump */
5390 if ((regs->length == 0) ||
5391 (regs->length == (uint32_t)ixgbe_get_reg_length(dev))) {
5392 regs->version = hw->mac.type << 24 | hw->revision_id << 16 |
5394 while ((reg_group = reg_set[g_ind++]))
5395 count += ixgbe_read_regs_group(dev, &data[count],
5404 ixgbevf_get_regs(struct rte_eth_dev *dev,
5405 struct rte_dev_reg_info *regs)
5407 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5408 uint32_t *data = regs->data;
5411 const struct reg_info *reg_group;
5413 /* Support only full register dump */
5414 if ((regs->length == 0) ||
5415 (regs->length == (uint32_t)ixgbevf_get_reg_length(dev))) {
5416 regs->version = hw->mac.type << 24 | hw->revision_id << 16 |
5418 while ((reg_group = ixgbevf_regs[g_ind++]))
5419 count += ixgbe_read_regs_group(dev, &data[count],
5428 ixgbe_get_eeprom_length(struct rte_eth_dev *dev)
5430 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5432 /* Return unit is byte count */
5433 return hw->eeprom.word_size * 2;
5437 ixgbe_get_eeprom(struct rte_eth_dev *dev,
5438 struct rte_dev_eeprom_info *in_eeprom)
5440 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5441 struct ixgbe_eeprom_info *eeprom = &hw->eeprom;
5442 uint16_t *data = in_eeprom->data;
5445 first = in_eeprom->offset >> 1;
5446 length = in_eeprom->length >> 1;
5447 if ((first >= hw->eeprom.word_size) ||
5448 ((first + length) >= hw->eeprom.word_size))
5451 in_eeprom->magic = hw->vendor_id | (hw->device_id << 16);
5453 return eeprom->ops.read_buffer(hw, first, length, data);
5457 ixgbe_set_eeprom(struct rte_eth_dev *dev,
5458 struct rte_dev_eeprom_info *in_eeprom)
5460 struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5461 struct ixgbe_eeprom_info *eeprom = &hw->eeprom;
5462 uint16_t *data = in_eeprom->data;
5465 first = in_eeprom->offset >> 1;
5466 length = in_eeprom->length >> 1;
5467 if ((first >= hw->eeprom.word_size) ||
5468 ((first + length) >= hw->eeprom.word_size))
5471 in_eeprom->magic = hw->vendor_id | (hw->device_id << 16);
5473 return eeprom->ops.write_buffer(hw, first, length, data);
5476 static struct rte_driver rte_ixgbe_driver = {
5478 .init = rte_ixgbe_pmd_init,
5481 static struct rte_driver rte_ixgbevf_driver = {
5483 .init = rte_ixgbevf_pmd_init,
5486 PMD_REGISTER_DRIVER(rte_ixgbe_driver);
5487 PMD_REGISTER_DRIVER(rte_ixgbevf_driver);