net/ixgbe: fix link up in FreeBSD
[dpdk.git] / drivers / net / ixgbe / ixgbe_ethdev.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2010-2017 Intel Corporation
3  */
4
5 #include <sys/queue.h>
6 #include <stdio.h>
7 #include <errno.h>
8 #include <stdint.h>
9 #include <string.h>
10 #include <unistd.h>
11 #include <stdarg.h>
12 #include <inttypes.h>
13 #include <netinet/in.h>
14 #include <rte_string_fns.h>
15 #include <rte_byteorder.h>
16 #include <rte_common.h>
17 #include <rte_cycles.h>
18
19 #include <rte_interrupts.h>
20 #include <rte_log.h>
21 #include <rte_debug.h>
22 #include <rte_pci.h>
23 #include <rte_bus_pci.h>
24 #include <rte_branch_prediction.h>
25 #include <rte_memory.h>
26 #include <rte_kvargs.h>
27 #include <rte_eal.h>
28 #include <rte_alarm.h>
29 #include <rte_ether.h>
30 #include <rte_ethdev_driver.h>
31 #include <rte_ethdev_pci.h>
32 #include <rte_malloc.h>
33 #include <rte_random.h>
34 #include <rte_dev.h>
35 #include <rte_hash_crc.h>
36 #ifdef RTE_LIBRTE_SECURITY
37 #include <rte_security_driver.h>
38 #endif
39
40 #include "ixgbe_logs.h"
41 #include "base/ixgbe_api.h"
42 #include "base/ixgbe_vf.h"
43 #include "base/ixgbe_common.h"
44 #include "ixgbe_ethdev.h"
45 #include "ixgbe_bypass.h"
46 #include "ixgbe_rxtx.h"
47 #include "base/ixgbe_type.h"
48 #include "base/ixgbe_phy.h"
49 #include "ixgbe_regs.h"
50
51 /*
52  * High threshold controlling when to start sending XOFF frames. Must be at
53  * least 8 bytes less than receive packet buffer size. This value is in units
54  * of 1024 bytes.
55  */
56 #define IXGBE_FC_HI    0x80
57
58 /*
59  * Low threshold controlling when to start sending XON frames. This value is
60  * in units of 1024 bytes.
61  */
62 #define IXGBE_FC_LO    0x40
63
64 /* Timer value included in XOFF frames. */
65 #define IXGBE_FC_PAUSE 0x680
66
67 /*Default value of Max Rx Queue*/
68 #define IXGBE_MAX_RX_QUEUE_NUM 128
69
70 #define IXGBE_LINK_DOWN_CHECK_TIMEOUT 4000 /* ms */
71 #define IXGBE_LINK_UP_CHECK_TIMEOUT   1000 /* ms */
72 #define IXGBE_VMDQ_NUM_UC_MAC         4096 /* Maximum nb. of UC MAC addr. */
73
74 #define IXGBE_MMW_SIZE_DEFAULT        0x4
75 #define IXGBE_MMW_SIZE_JUMBO_FRAME    0x14
76 #define IXGBE_MAX_RING_DESC           4096 /* replicate define from rxtx */
77
78 /*
79  *  Default values for RX/TX configuration
80  */
81 #define IXGBE_DEFAULT_RX_FREE_THRESH  32
82 #define IXGBE_DEFAULT_RX_PTHRESH      8
83 #define IXGBE_DEFAULT_RX_HTHRESH      8
84 #define IXGBE_DEFAULT_RX_WTHRESH      0
85
86 #define IXGBE_DEFAULT_TX_FREE_THRESH  32
87 #define IXGBE_DEFAULT_TX_PTHRESH      32
88 #define IXGBE_DEFAULT_TX_HTHRESH      0
89 #define IXGBE_DEFAULT_TX_WTHRESH      0
90 #define IXGBE_DEFAULT_TX_RSBIT_THRESH 32
91
92 /* Bit shift and mask */
93 #define IXGBE_4_BIT_WIDTH  (CHAR_BIT / 2)
94 #define IXGBE_4_BIT_MASK   RTE_LEN2MASK(IXGBE_4_BIT_WIDTH, uint8_t)
95 #define IXGBE_8_BIT_WIDTH  CHAR_BIT
96 #define IXGBE_8_BIT_MASK   UINT8_MAX
97
98 #define IXGBEVF_PMD_NAME "rte_ixgbevf_pmd" /* PMD name */
99
100 #define IXGBE_QUEUE_STAT_COUNTERS (sizeof(hw_stats->qprc) / sizeof(hw_stats->qprc[0]))
101
102 /* Additional timesync values. */
103 #define NSEC_PER_SEC             1000000000L
104 #define IXGBE_INCVAL_10GB        0x66666666
105 #define IXGBE_INCVAL_1GB         0x40000000
106 #define IXGBE_INCVAL_100         0x50000000
107 #define IXGBE_INCVAL_SHIFT_10GB  28
108 #define IXGBE_INCVAL_SHIFT_1GB   24
109 #define IXGBE_INCVAL_SHIFT_100   21
110 #define IXGBE_INCVAL_SHIFT_82599 7
111 #define IXGBE_INCPER_SHIFT_82599 24
112
113 #define IXGBE_CYCLECOUNTER_MASK   0xffffffffffffffffULL
114
115 #define IXGBE_VT_CTL_POOLING_MODE_MASK         0x00030000
116 #define IXGBE_VT_CTL_POOLING_MODE_ETAG         0x00010000
117 #define IXGBE_ETAG_ETYPE                       0x00005084
118 #define IXGBE_ETAG_ETYPE_MASK                  0x0000ffff
119 #define IXGBE_ETAG_ETYPE_VALID                 0x80000000
120 #define IXGBE_RAH_ADTYPE                       0x40000000
121 #define IXGBE_RAL_ETAG_FILTER_MASK             0x00003fff
122 #define IXGBE_VMVIR_TAGA_MASK                  0x18000000
123 #define IXGBE_VMVIR_TAGA_ETAG_INSERT           0x08000000
124 #define IXGBE_VMTIR(_i) (0x00017000 + ((_i) * 4)) /* 64 of these (0-63) */
125 #define IXGBE_QDE_STRIP_TAG                    0x00000004
126 #define IXGBE_VTEICR_MASK                      0x07
127
128 #define IXGBE_EXVET_VET_EXT_SHIFT              16
129 #define IXGBE_DMATXCTL_VT_MASK                 0xFFFF0000
130
131 #define IXGBEVF_DEVARG_PFLINK_FULLCHK           "pflink_fullchk"
132
133 static const char * const ixgbevf_valid_arguments[] = {
134         IXGBEVF_DEVARG_PFLINK_FULLCHK,
135         NULL
136 };
137
138 static int eth_ixgbe_dev_init(struct rte_eth_dev *eth_dev, void *init_params);
139 static int eth_ixgbe_dev_uninit(struct rte_eth_dev *eth_dev);
140 static int ixgbe_fdir_filter_init(struct rte_eth_dev *eth_dev);
141 static int ixgbe_fdir_filter_uninit(struct rte_eth_dev *eth_dev);
142 static int ixgbe_l2_tn_filter_init(struct rte_eth_dev *eth_dev);
143 static int ixgbe_l2_tn_filter_uninit(struct rte_eth_dev *eth_dev);
144 static int ixgbe_ntuple_filter_uninit(struct rte_eth_dev *eth_dev);
145 static int  ixgbe_dev_configure(struct rte_eth_dev *dev);
146 static int  ixgbe_dev_start(struct rte_eth_dev *dev);
147 static void ixgbe_dev_stop(struct rte_eth_dev *dev);
148 static int  ixgbe_dev_set_link_up(struct rte_eth_dev *dev);
149 static int  ixgbe_dev_set_link_down(struct rte_eth_dev *dev);
150 static void ixgbe_dev_close(struct rte_eth_dev *dev);
151 static int  ixgbe_dev_reset(struct rte_eth_dev *dev);
152 static int ixgbe_dev_promiscuous_enable(struct rte_eth_dev *dev);
153 static int ixgbe_dev_promiscuous_disable(struct rte_eth_dev *dev);
154 static int ixgbe_dev_allmulticast_enable(struct rte_eth_dev *dev);
155 static int ixgbe_dev_allmulticast_disable(struct rte_eth_dev *dev);
156 static int ixgbe_dev_link_update(struct rte_eth_dev *dev,
157                                 int wait_to_complete);
158 static int ixgbe_dev_stats_get(struct rte_eth_dev *dev,
159                                 struct rte_eth_stats *stats);
160 static int ixgbe_dev_xstats_get(struct rte_eth_dev *dev,
161                                 struct rte_eth_xstat *xstats, unsigned n);
162 static int ixgbevf_dev_xstats_get(struct rte_eth_dev *dev,
163                                   struct rte_eth_xstat *xstats, unsigned n);
164 static int
165 ixgbe_dev_xstats_get_by_id(struct rte_eth_dev *dev, const uint64_t *ids,
166                 uint64_t *values, unsigned int n);
167 static int ixgbe_dev_stats_reset(struct rte_eth_dev *dev);
168 static int ixgbe_dev_xstats_reset(struct rte_eth_dev *dev);
169 static int ixgbe_dev_xstats_get_names(struct rte_eth_dev *dev,
170         struct rte_eth_xstat_name *xstats_names,
171         unsigned int size);
172 static int ixgbevf_dev_xstats_get_names(struct rte_eth_dev *dev,
173         struct rte_eth_xstat_name *xstats_names, unsigned limit);
174 static int ixgbe_dev_xstats_get_names_by_id(
175         struct rte_eth_dev *dev,
176         struct rte_eth_xstat_name *xstats_names,
177         const uint64_t *ids,
178         unsigned int limit);
179 static int ixgbe_dev_queue_stats_mapping_set(struct rte_eth_dev *eth_dev,
180                                              uint16_t queue_id,
181                                              uint8_t stat_idx,
182                                              uint8_t is_rx);
183 static int ixgbe_fw_version_get(struct rte_eth_dev *dev, char *fw_version,
184                                  size_t fw_size);
185 static int ixgbe_dev_info_get(struct rte_eth_dev *dev,
186                               struct rte_eth_dev_info *dev_info);
187 static const uint32_t *ixgbe_dev_supported_ptypes_get(struct rte_eth_dev *dev);
188 static int ixgbevf_dev_info_get(struct rte_eth_dev *dev,
189                                 struct rte_eth_dev_info *dev_info);
190 static int ixgbe_dev_mtu_set(struct rte_eth_dev *dev, uint16_t mtu);
191
192 static int ixgbe_vlan_filter_set(struct rte_eth_dev *dev,
193                 uint16_t vlan_id, int on);
194 static int ixgbe_vlan_tpid_set(struct rte_eth_dev *dev,
195                                enum rte_vlan_type vlan_type,
196                                uint16_t tpid_id);
197 static void ixgbe_vlan_hw_strip_bitmap_set(struct rte_eth_dev *dev,
198                 uint16_t queue, bool on);
199 static void ixgbe_vlan_strip_queue_set(struct rte_eth_dev *dev, uint16_t queue,
200                 int on);
201 static void ixgbe_config_vlan_strip_on_all_queues(struct rte_eth_dev *dev,
202                                                   int mask);
203 static int ixgbe_vlan_offload_config(struct rte_eth_dev *dev, int mask);
204 static int ixgbe_vlan_offload_set(struct rte_eth_dev *dev, int mask);
205 static void ixgbe_vlan_hw_strip_enable(struct rte_eth_dev *dev, uint16_t queue);
206 static void ixgbe_vlan_hw_strip_disable(struct rte_eth_dev *dev, uint16_t queue);
207 static void ixgbe_vlan_hw_extend_enable(struct rte_eth_dev *dev);
208 static void ixgbe_vlan_hw_extend_disable(struct rte_eth_dev *dev);
209
210 static int ixgbe_dev_led_on(struct rte_eth_dev *dev);
211 static int ixgbe_dev_led_off(struct rte_eth_dev *dev);
212 static int ixgbe_flow_ctrl_get(struct rte_eth_dev *dev,
213                                struct rte_eth_fc_conf *fc_conf);
214 static int ixgbe_flow_ctrl_set(struct rte_eth_dev *dev,
215                                struct rte_eth_fc_conf *fc_conf);
216 static int ixgbe_priority_flow_ctrl_set(struct rte_eth_dev *dev,
217                 struct rte_eth_pfc_conf *pfc_conf);
218 static int ixgbe_dev_rss_reta_update(struct rte_eth_dev *dev,
219                         struct rte_eth_rss_reta_entry64 *reta_conf,
220                         uint16_t reta_size);
221 static int ixgbe_dev_rss_reta_query(struct rte_eth_dev *dev,
222                         struct rte_eth_rss_reta_entry64 *reta_conf,
223                         uint16_t reta_size);
224 static void ixgbe_dev_link_status_print(struct rte_eth_dev *dev);
225 static int ixgbe_dev_lsc_interrupt_setup(struct rte_eth_dev *dev, uint8_t on);
226 static int ixgbe_dev_macsec_interrupt_setup(struct rte_eth_dev *dev);
227 static int ixgbe_dev_rxq_interrupt_setup(struct rte_eth_dev *dev);
228 static int ixgbe_dev_interrupt_get_status(struct rte_eth_dev *dev);
229 static int ixgbe_dev_interrupt_action(struct rte_eth_dev *dev);
230 static void ixgbe_dev_interrupt_handler(void *param);
231 static void ixgbe_dev_interrupt_delayed_handler(void *param);
232 static void ixgbe_dev_setup_link_alarm_handler(void *param);
233
234 static int ixgbe_add_rar(struct rte_eth_dev *dev,
235                         struct rte_ether_addr *mac_addr,
236                         uint32_t index, uint32_t pool);
237 static void ixgbe_remove_rar(struct rte_eth_dev *dev, uint32_t index);
238 static int ixgbe_set_default_mac_addr(struct rte_eth_dev *dev,
239                                            struct rte_ether_addr *mac_addr);
240 static void ixgbe_dcb_init(struct ixgbe_hw *hw, struct ixgbe_dcb_config *dcb_config);
241 static bool is_device_supported(struct rte_eth_dev *dev,
242                                 struct rte_pci_driver *drv);
243
244 /* For Virtual Function support */
245 static int eth_ixgbevf_dev_init(struct rte_eth_dev *eth_dev);
246 static int eth_ixgbevf_dev_uninit(struct rte_eth_dev *eth_dev);
247 static int  ixgbevf_dev_configure(struct rte_eth_dev *dev);
248 static int  ixgbevf_dev_start(struct rte_eth_dev *dev);
249 static int ixgbevf_dev_link_update(struct rte_eth_dev *dev,
250                                    int wait_to_complete);
251 static void ixgbevf_dev_stop(struct rte_eth_dev *dev);
252 static void ixgbevf_dev_close(struct rte_eth_dev *dev);
253 static int  ixgbevf_dev_reset(struct rte_eth_dev *dev);
254 static void ixgbevf_intr_disable(struct rte_eth_dev *dev);
255 static void ixgbevf_intr_enable(struct rte_eth_dev *dev);
256 static int ixgbevf_dev_stats_get(struct rte_eth_dev *dev,
257                 struct rte_eth_stats *stats);
258 static int ixgbevf_dev_stats_reset(struct rte_eth_dev *dev);
259 static int ixgbevf_vlan_filter_set(struct rte_eth_dev *dev,
260                 uint16_t vlan_id, int on);
261 static void ixgbevf_vlan_strip_queue_set(struct rte_eth_dev *dev,
262                 uint16_t queue, int on);
263 static int ixgbevf_vlan_offload_config(struct rte_eth_dev *dev, int mask);
264 static int ixgbevf_vlan_offload_set(struct rte_eth_dev *dev, int mask);
265 static void ixgbevf_set_vfta_all(struct rte_eth_dev *dev, bool on);
266 static int ixgbevf_dev_rx_queue_intr_enable(struct rte_eth_dev *dev,
267                                             uint16_t queue_id);
268 static int ixgbevf_dev_rx_queue_intr_disable(struct rte_eth_dev *dev,
269                                              uint16_t queue_id);
270 static void ixgbevf_set_ivar_map(struct ixgbe_hw *hw, int8_t direction,
271                                  uint8_t queue, uint8_t msix_vector);
272 static void ixgbevf_configure_msix(struct rte_eth_dev *dev);
273 static int ixgbevf_dev_promiscuous_enable(struct rte_eth_dev *dev);
274 static int ixgbevf_dev_promiscuous_disable(struct rte_eth_dev *dev);
275 static int ixgbevf_dev_allmulticast_enable(struct rte_eth_dev *dev);
276 static int ixgbevf_dev_allmulticast_disable(struct rte_eth_dev *dev);
277
278 /* For Eth VMDQ APIs support */
279 static int ixgbe_uc_hash_table_set(struct rte_eth_dev *dev, struct
280                 rte_ether_addr * mac_addr, uint8_t on);
281 static int ixgbe_uc_all_hash_table_set(struct rte_eth_dev *dev, uint8_t on);
282 static int ixgbe_mirror_rule_set(struct rte_eth_dev *dev,
283                 struct rte_eth_mirror_conf *mirror_conf,
284                 uint8_t rule_id, uint8_t on);
285 static int ixgbe_mirror_rule_reset(struct rte_eth_dev *dev,
286                 uint8_t rule_id);
287 static int ixgbe_dev_rx_queue_intr_enable(struct rte_eth_dev *dev,
288                                           uint16_t queue_id);
289 static int ixgbe_dev_rx_queue_intr_disable(struct rte_eth_dev *dev,
290                                            uint16_t queue_id);
291 static void ixgbe_set_ivar_map(struct ixgbe_hw *hw, int8_t direction,
292                                uint8_t queue, uint8_t msix_vector);
293 static void ixgbe_configure_msix(struct rte_eth_dev *dev);
294
295 static int ixgbevf_add_mac_addr(struct rte_eth_dev *dev,
296                                 struct rte_ether_addr *mac_addr,
297                                 uint32_t index, uint32_t pool);
298 static void ixgbevf_remove_mac_addr(struct rte_eth_dev *dev, uint32_t index);
299 static int ixgbevf_set_default_mac_addr(struct rte_eth_dev *dev,
300                                              struct rte_ether_addr *mac_addr);
301 static int ixgbe_syn_filter_get(struct rte_eth_dev *dev,
302                         struct rte_eth_syn_filter *filter);
303 static int ixgbe_syn_filter_handle(struct rte_eth_dev *dev,
304                         enum rte_filter_op filter_op,
305                         void *arg);
306 static int ixgbe_add_5tuple_filter(struct rte_eth_dev *dev,
307                         struct ixgbe_5tuple_filter *filter);
308 static void ixgbe_remove_5tuple_filter(struct rte_eth_dev *dev,
309                         struct ixgbe_5tuple_filter *filter);
310 static int ixgbe_ntuple_filter_handle(struct rte_eth_dev *dev,
311                                 enum rte_filter_op filter_op,
312                                 void *arg);
313 static int ixgbe_get_ntuple_filter(struct rte_eth_dev *dev,
314                         struct rte_eth_ntuple_filter *filter);
315 static int ixgbe_ethertype_filter_handle(struct rte_eth_dev *dev,
316                                 enum rte_filter_op filter_op,
317                                 void *arg);
318 static int ixgbe_get_ethertype_filter(struct rte_eth_dev *dev,
319                         struct rte_eth_ethertype_filter *filter);
320 static int ixgbe_dev_filter_ctrl(struct rte_eth_dev *dev,
321                      enum rte_filter_type filter_type,
322                      enum rte_filter_op filter_op,
323                      void *arg);
324 static int ixgbevf_dev_set_mtu(struct rte_eth_dev *dev, uint16_t mtu);
325
326 static int ixgbe_dev_set_mc_addr_list(struct rte_eth_dev *dev,
327                                       struct rte_ether_addr *mc_addr_set,
328                                       uint32_t nb_mc_addr);
329 static int ixgbe_dev_get_dcb_info(struct rte_eth_dev *dev,
330                                    struct rte_eth_dcb_info *dcb_info);
331
332 static int ixgbe_get_reg_length(struct rte_eth_dev *dev);
333 static int ixgbe_get_regs(struct rte_eth_dev *dev,
334                             struct rte_dev_reg_info *regs);
335 static int ixgbe_get_eeprom_length(struct rte_eth_dev *dev);
336 static int ixgbe_get_eeprom(struct rte_eth_dev *dev,
337                                 struct rte_dev_eeprom_info *eeprom);
338 static int ixgbe_set_eeprom(struct rte_eth_dev *dev,
339                                 struct rte_dev_eeprom_info *eeprom);
340
341 static int ixgbe_get_module_info(struct rte_eth_dev *dev,
342                                  struct rte_eth_dev_module_info *modinfo);
343 static int ixgbe_get_module_eeprom(struct rte_eth_dev *dev,
344                                    struct rte_dev_eeprom_info *info);
345
346 static int ixgbevf_get_reg_length(struct rte_eth_dev *dev);
347 static int ixgbevf_get_regs(struct rte_eth_dev *dev,
348                                 struct rte_dev_reg_info *regs);
349
350 static int ixgbe_timesync_enable(struct rte_eth_dev *dev);
351 static int ixgbe_timesync_disable(struct rte_eth_dev *dev);
352 static int ixgbe_timesync_read_rx_timestamp(struct rte_eth_dev *dev,
353                                             struct timespec *timestamp,
354                                             uint32_t flags);
355 static int ixgbe_timesync_read_tx_timestamp(struct rte_eth_dev *dev,
356                                             struct timespec *timestamp);
357 static int ixgbe_timesync_adjust_time(struct rte_eth_dev *dev, int64_t delta);
358 static int ixgbe_timesync_read_time(struct rte_eth_dev *dev,
359                                    struct timespec *timestamp);
360 static int ixgbe_timesync_write_time(struct rte_eth_dev *dev,
361                                    const struct timespec *timestamp);
362 static void ixgbevf_dev_interrupt_handler(void *param);
363
364 static int ixgbe_dev_l2_tunnel_eth_type_conf
365         (struct rte_eth_dev *dev, struct rte_eth_l2_tunnel_conf *l2_tunnel);
366 static int ixgbe_dev_l2_tunnel_offload_set
367         (struct rte_eth_dev *dev,
368          struct rte_eth_l2_tunnel_conf *l2_tunnel,
369          uint32_t mask,
370          uint8_t en);
371 static int ixgbe_dev_l2_tunnel_filter_handle(struct rte_eth_dev *dev,
372                                              enum rte_filter_op filter_op,
373                                              void *arg);
374
375 static int ixgbe_dev_udp_tunnel_port_add(struct rte_eth_dev *dev,
376                                          struct rte_eth_udp_tunnel *udp_tunnel);
377 static int ixgbe_dev_udp_tunnel_port_del(struct rte_eth_dev *dev,
378                                          struct rte_eth_udp_tunnel *udp_tunnel);
379 static int ixgbe_filter_restore(struct rte_eth_dev *dev);
380 static void ixgbe_l2_tunnel_conf(struct rte_eth_dev *dev);
381 static int ixgbe_wait_for_link_up(struct ixgbe_hw *hw);
382
383 /*
384  * Define VF Stats MACRO for Non "cleared on read" register
385  */
386 #define UPDATE_VF_STAT(reg, last, cur)                          \
387 {                                                               \
388         uint32_t latest = IXGBE_READ_REG(hw, reg);              \
389         cur += (latest - last) & UINT_MAX;                      \
390         last = latest;                                          \
391 }
392
393 #define UPDATE_VF_STAT_36BIT(lsb, msb, last, cur)                \
394 {                                                                \
395         u64 new_lsb = IXGBE_READ_REG(hw, lsb);                   \
396         u64 new_msb = IXGBE_READ_REG(hw, msb);                   \
397         u64 latest = ((new_msb << 32) | new_lsb);                \
398         cur += (0x1000000000LL + latest - last) & 0xFFFFFFFFFLL; \
399         last = latest;                                           \
400 }
401
402 #define IXGBE_SET_HWSTRIP(h, q) do {\
403                 uint32_t idx = (q) / (sizeof((h)->bitmap[0]) * NBBY); \
404                 uint32_t bit = (q) % (sizeof((h)->bitmap[0]) * NBBY); \
405                 (h)->bitmap[idx] |= 1 << bit;\
406         } while (0)
407
408 #define IXGBE_CLEAR_HWSTRIP(h, q) do {\
409                 uint32_t idx = (q) / (sizeof((h)->bitmap[0]) * NBBY); \
410                 uint32_t bit = (q) % (sizeof((h)->bitmap[0]) * NBBY); \
411                 (h)->bitmap[idx] &= ~(1 << bit);\
412         } while (0)
413
414 #define IXGBE_GET_HWSTRIP(h, q, r) do {\
415                 uint32_t idx = (q) / (sizeof((h)->bitmap[0]) * NBBY); \
416                 uint32_t bit = (q) % (sizeof((h)->bitmap[0]) * NBBY); \
417                 (r) = (h)->bitmap[idx] >> bit & 1;\
418         } while (0)
419
420 int ixgbe_logtype_init;
421 int ixgbe_logtype_driver;
422
423 #ifdef RTE_LIBRTE_IXGBE_DEBUG_RX
424 int ixgbe_logtype_rx;
425 #endif
426 #ifdef RTE_LIBRTE_IXGBE_DEBUG_TX
427 int ixgbe_logtype_tx;
428 #endif
429 #ifdef RTE_LIBRTE_IXGBE_DEBUG_TX_FREE
430 int ixgbe_logtype_tx_free;
431 #endif
432
433 /*
434  * The set of PCI devices this driver supports
435  */
436 static const struct rte_pci_id pci_id_ixgbe_map[] = {
437         { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598) },
438         { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598_BX) },
439         { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598AF_DUAL_PORT) },
440         { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598AF_SINGLE_PORT) },
441         { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598AT) },
442         { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598AT2) },
443         { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598EB_SFP_LOM) },
444         { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598EB_CX4) },
445         { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598_CX4_DUAL_PORT) },
446         { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598_DA_DUAL_PORT) },
447         { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598_SR_DUAL_PORT_EM) },
448         { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82598EB_XF_LR) },
449         { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_KX4) },
450         { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_KX4_MEZZ) },
451         { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_KR) },
452         { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_COMBO_BACKPLANE) },
453         { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_CX4) },
454         { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_SFP) },
455         { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_BACKPLANE_FCOE) },
456         { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_SFP_FCOE) },
457         { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_SFP_EM) },
458         { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_SFP_SF2) },
459         { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_SFP_SF_QP) },
460         { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_QSFP_SF_QP) },
461         { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599EN_SFP) },
462         { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_XAUI_LOM) },
463         { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_T3_LOM) },
464         { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X540T) },
465         { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X540T1) },
466         { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_X_SFP) },
467         { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_X_10G_T) },
468         { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_X_1G_T) },
469         { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550T) },
470         { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550T1) },
471         { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_KR) },
472         { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_KR_L) },
473         { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_SFP_N) },
474         { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_SGMII) },
475         { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_SGMII_L) },
476         { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_10G_T) },
477         { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_QSFP) },
478         { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_QSFP_N) },
479         { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_SFP) },
480         { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_1G_T) },
481         { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_1G_T_L) },
482         { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_X_KX4) },
483         { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_X_KR) },
484         { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_X_XFI) },
485 #ifdef RTE_LIBRTE_IXGBE_BYPASS
486         { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_BYPASS) },
487 #endif
488         { .vendor_id = 0, /* sentinel */ },
489 };
490
491 /*
492  * The set of PCI devices this driver supports (for 82599 VF)
493  */
494 static const struct rte_pci_id pci_id_ixgbevf_map[] = {
495         { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_VF) },
496         { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_82599_VF_HV) },
497         { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X540_VF) },
498         { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X540_VF_HV) },
499         { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550_VF_HV) },
500         { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550_VF) },
501         { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_VF) },
502         { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_A_VF_HV) },
503         { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_X_VF) },
504         { RTE_PCI_DEVICE(IXGBE_INTEL_VENDOR_ID, IXGBE_DEV_ID_X550EM_X_VF_HV) },
505         { .vendor_id = 0, /* sentinel */ },
506 };
507
508 static const struct rte_eth_desc_lim rx_desc_lim = {
509         .nb_max = IXGBE_MAX_RING_DESC,
510         .nb_min = IXGBE_MIN_RING_DESC,
511         .nb_align = IXGBE_RXD_ALIGN,
512 };
513
514 static const struct rte_eth_desc_lim tx_desc_lim = {
515         .nb_max = IXGBE_MAX_RING_DESC,
516         .nb_min = IXGBE_MIN_RING_DESC,
517         .nb_align = IXGBE_TXD_ALIGN,
518         .nb_seg_max = IXGBE_TX_MAX_SEG,
519         .nb_mtu_seg_max = IXGBE_TX_MAX_SEG,
520 };
521
522 static const struct eth_dev_ops ixgbe_eth_dev_ops = {
523         .dev_configure        = ixgbe_dev_configure,
524         .dev_start            = ixgbe_dev_start,
525         .dev_stop             = ixgbe_dev_stop,
526         .dev_set_link_up    = ixgbe_dev_set_link_up,
527         .dev_set_link_down  = ixgbe_dev_set_link_down,
528         .dev_close            = ixgbe_dev_close,
529         .dev_reset            = ixgbe_dev_reset,
530         .promiscuous_enable   = ixgbe_dev_promiscuous_enable,
531         .promiscuous_disable  = ixgbe_dev_promiscuous_disable,
532         .allmulticast_enable  = ixgbe_dev_allmulticast_enable,
533         .allmulticast_disable = ixgbe_dev_allmulticast_disable,
534         .link_update          = ixgbe_dev_link_update,
535         .stats_get            = ixgbe_dev_stats_get,
536         .xstats_get           = ixgbe_dev_xstats_get,
537         .xstats_get_by_id     = ixgbe_dev_xstats_get_by_id,
538         .stats_reset          = ixgbe_dev_stats_reset,
539         .xstats_reset         = ixgbe_dev_xstats_reset,
540         .xstats_get_names     = ixgbe_dev_xstats_get_names,
541         .xstats_get_names_by_id = ixgbe_dev_xstats_get_names_by_id,
542         .queue_stats_mapping_set = ixgbe_dev_queue_stats_mapping_set,
543         .fw_version_get       = ixgbe_fw_version_get,
544         .dev_infos_get        = ixgbe_dev_info_get,
545         .dev_supported_ptypes_get = ixgbe_dev_supported_ptypes_get,
546         .mtu_set              = ixgbe_dev_mtu_set,
547         .vlan_filter_set      = ixgbe_vlan_filter_set,
548         .vlan_tpid_set        = ixgbe_vlan_tpid_set,
549         .vlan_offload_set     = ixgbe_vlan_offload_set,
550         .vlan_strip_queue_set = ixgbe_vlan_strip_queue_set,
551         .rx_queue_start       = ixgbe_dev_rx_queue_start,
552         .rx_queue_stop        = ixgbe_dev_rx_queue_stop,
553         .tx_queue_start       = ixgbe_dev_tx_queue_start,
554         .tx_queue_stop        = ixgbe_dev_tx_queue_stop,
555         .rx_queue_setup       = ixgbe_dev_rx_queue_setup,
556         .rx_queue_intr_enable = ixgbe_dev_rx_queue_intr_enable,
557         .rx_queue_intr_disable = ixgbe_dev_rx_queue_intr_disable,
558         .rx_queue_release     = ixgbe_dev_rx_queue_release,
559         .rx_queue_count       = ixgbe_dev_rx_queue_count,
560         .rx_descriptor_done   = ixgbe_dev_rx_descriptor_done,
561         .rx_descriptor_status = ixgbe_dev_rx_descriptor_status,
562         .tx_descriptor_status = ixgbe_dev_tx_descriptor_status,
563         .tx_queue_setup       = ixgbe_dev_tx_queue_setup,
564         .tx_queue_release     = ixgbe_dev_tx_queue_release,
565         .dev_led_on           = ixgbe_dev_led_on,
566         .dev_led_off          = ixgbe_dev_led_off,
567         .flow_ctrl_get        = ixgbe_flow_ctrl_get,
568         .flow_ctrl_set        = ixgbe_flow_ctrl_set,
569         .priority_flow_ctrl_set = ixgbe_priority_flow_ctrl_set,
570         .mac_addr_add         = ixgbe_add_rar,
571         .mac_addr_remove      = ixgbe_remove_rar,
572         .mac_addr_set         = ixgbe_set_default_mac_addr,
573         .uc_hash_table_set    = ixgbe_uc_hash_table_set,
574         .uc_all_hash_table_set  = ixgbe_uc_all_hash_table_set,
575         .mirror_rule_set      = ixgbe_mirror_rule_set,
576         .mirror_rule_reset    = ixgbe_mirror_rule_reset,
577         .set_queue_rate_limit = ixgbe_set_queue_rate_limit,
578         .reta_update          = ixgbe_dev_rss_reta_update,
579         .reta_query           = ixgbe_dev_rss_reta_query,
580         .rss_hash_update      = ixgbe_dev_rss_hash_update,
581         .rss_hash_conf_get    = ixgbe_dev_rss_hash_conf_get,
582         .filter_ctrl          = ixgbe_dev_filter_ctrl,
583         .set_mc_addr_list     = ixgbe_dev_set_mc_addr_list,
584         .rxq_info_get         = ixgbe_rxq_info_get,
585         .txq_info_get         = ixgbe_txq_info_get,
586         .timesync_enable      = ixgbe_timesync_enable,
587         .timesync_disable     = ixgbe_timesync_disable,
588         .timesync_read_rx_timestamp = ixgbe_timesync_read_rx_timestamp,
589         .timesync_read_tx_timestamp = ixgbe_timesync_read_tx_timestamp,
590         .get_reg              = ixgbe_get_regs,
591         .get_eeprom_length    = ixgbe_get_eeprom_length,
592         .get_eeprom           = ixgbe_get_eeprom,
593         .set_eeprom           = ixgbe_set_eeprom,
594         .get_module_info      = ixgbe_get_module_info,
595         .get_module_eeprom    = ixgbe_get_module_eeprom,
596         .get_dcb_info         = ixgbe_dev_get_dcb_info,
597         .timesync_adjust_time = ixgbe_timesync_adjust_time,
598         .timesync_read_time   = ixgbe_timesync_read_time,
599         .timesync_write_time  = ixgbe_timesync_write_time,
600         .l2_tunnel_eth_type_conf = ixgbe_dev_l2_tunnel_eth_type_conf,
601         .l2_tunnel_offload_set   = ixgbe_dev_l2_tunnel_offload_set,
602         .udp_tunnel_port_add  = ixgbe_dev_udp_tunnel_port_add,
603         .udp_tunnel_port_del  = ixgbe_dev_udp_tunnel_port_del,
604         .tm_ops_get           = ixgbe_tm_ops_get,
605 };
606
607 /*
608  * dev_ops for virtual function, bare necessities for basic vf
609  * operation have been implemented
610  */
611 static const struct eth_dev_ops ixgbevf_eth_dev_ops = {
612         .dev_configure        = ixgbevf_dev_configure,
613         .dev_start            = ixgbevf_dev_start,
614         .dev_stop             = ixgbevf_dev_stop,
615         .link_update          = ixgbevf_dev_link_update,
616         .stats_get            = ixgbevf_dev_stats_get,
617         .xstats_get           = ixgbevf_dev_xstats_get,
618         .stats_reset          = ixgbevf_dev_stats_reset,
619         .xstats_reset         = ixgbevf_dev_stats_reset,
620         .xstats_get_names     = ixgbevf_dev_xstats_get_names,
621         .dev_close            = ixgbevf_dev_close,
622         .dev_reset            = ixgbevf_dev_reset,
623         .promiscuous_enable   = ixgbevf_dev_promiscuous_enable,
624         .promiscuous_disable  = ixgbevf_dev_promiscuous_disable,
625         .allmulticast_enable  = ixgbevf_dev_allmulticast_enable,
626         .allmulticast_disable = ixgbevf_dev_allmulticast_disable,
627         .dev_infos_get        = ixgbevf_dev_info_get,
628         .dev_supported_ptypes_get = ixgbe_dev_supported_ptypes_get,
629         .mtu_set              = ixgbevf_dev_set_mtu,
630         .vlan_filter_set      = ixgbevf_vlan_filter_set,
631         .vlan_strip_queue_set = ixgbevf_vlan_strip_queue_set,
632         .vlan_offload_set     = ixgbevf_vlan_offload_set,
633         .rx_queue_setup       = ixgbe_dev_rx_queue_setup,
634         .rx_queue_release     = ixgbe_dev_rx_queue_release,
635         .rx_descriptor_done   = ixgbe_dev_rx_descriptor_done,
636         .rx_descriptor_status = ixgbe_dev_rx_descriptor_status,
637         .tx_descriptor_status = ixgbe_dev_tx_descriptor_status,
638         .tx_queue_setup       = ixgbe_dev_tx_queue_setup,
639         .tx_queue_release     = ixgbe_dev_tx_queue_release,
640         .rx_queue_intr_enable = ixgbevf_dev_rx_queue_intr_enable,
641         .rx_queue_intr_disable = ixgbevf_dev_rx_queue_intr_disable,
642         .mac_addr_add         = ixgbevf_add_mac_addr,
643         .mac_addr_remove      = ixgbevf_remove_mac_addr,
644         .set_mc_addr_list     = ixgbe_dev_set_mc_addr_list,
645         .rxq_info_get         = ixgbe_rxq_info_get,
646         .txq_info_get         = ixgbe_txq_info_get,
647         .mac_addr_set         = ixgbevf_set_default_mac_addr,
648         .get_reg              = ixgbevf_get_regs,
649         .reta_update          = ixgbe_dev_rss_reta_update,
650         .reta_query           = ixgbe_dev_rss_reta_query,
651         .rss_hash_update      = ixgbe_dev_rss_hash_update,
652         .rss_hash_conf_get    = ixgbe_dev_rss_hash_conf_get,
653 };
654
655 /* store statistics names and its offset in stats structure */
656 struct rte_ixgbe_xstats_name_off {
657         char name[RTE_ETH_XSTATS_NAME_SIZE];
658         unsigned offset;
659 };
660
661 static const struct rte_ixgbe_xstats_name_off rte_ixgbe_stats_strings[] = {
662         {"rx_crc_errors", offsetof(struct ixgbe_hw_stats, crcerrs)},
663         {"rx_illegal_byte_errors", offsetof(struct ixgbe_hw_stats, illerrc)},
664         {"rx_error_bytes", offsetof(struct ixgbe_hw_stats, errbc)},
665         {"mac_local_errors", offsetof(struct ixgbe_hw_stats, mlfc)},
666         {"mac_remote_errors", offsetof(struct ixgbe_hw_stats, mrfc)},
667         {"rx_length_errors", offsetof(struct ixgbe_hw_stats, rlec)},
668         {"tx_xon_packets", offsetof(struct ixgbe_hw_stats, lxontxc)},
669         {"rx_xon_packets", offsetof(struct ixgbe_hw_stats, lxonrxc)},
670         {"tx_xoff_packets", offsetof(struct ixgbe_hw_stats, lxofftxc)},
671         {"rx_xoff_packets", offsetof(struct ixgbe_hw_stats, lxoffrxc)},
672         {"rx_size_64_packets", offsetof(struct ixgbe_hw_stats, prc64)},
673         {"rx_size_65_to_127_packets", offsetof(struct ixgbe_hw_stats, prc127)},
674         {"rx_size_128_to_255_packets", offsetof(struct ixgbe_hw_stats, prc255)},
675         {"rx_size_256_to_511_packets", offsetof(struct ixgbe_hw_stats, prc511)},
676         {"rx_size_512_to_1023_packets", offsetof(struct ixgbe_hw_stats,
677                 prc1023)},
678         {"rx_size_1024_to_max_packets", offsetof(struct ixgbe_hw_stats,
679                 prc1522)},
680         {"rx_broadcast_packets", offsetof(struct ixgbe_hw_stats, bprc)},
681         {"rx_multicast_packets", offsetof(struct ixgbe_hw_stats, mprc)},
682         {"rx_fragment_errors", offsetof(struct ixgbe_hw_stats, rfc)},
683         {"rx_undersize_errors", offsetof(struct ixgbe_hw_stats, ruc)},
684         {"rx_oversize_errors", offsetof(struct ixgbe_hw_stats, roc)},
685         {"rx_jabber_errors", offsetof(struct ixgbe_hw_stats, rjc)},
686         {"rx_management_packets", offsetof(struct ixgbe_hw_stats, mngprc)},
687         {"rx_management_dropped", offsetof(struct ixgbe_hw_stats, mngpdc)},
688         {"tx_management_packets", offsetof(struct ixgbe_hw_stats, mngptc)},
689         {"rx_total_packets", offsetof(struct ixgbe_hw_stats, tpr)},
690         {"rx_total_bytes", offsetof(struct ixgbe_hw_stats, tor)},
691         {"tx_total_packets", offsetof(struct ixgbe_hw_stats, tpt)},
692         {"tx_size_64_packets", offsetof(struct ixgbe_hw_stats, ptc64)},
693         {"tx_size_65_to_127_packets", offsetof(struct ixgbe_hw_stats, ptc127)},
694         {"tx_size_128_to_255_packets", offsetof(struct ixgbe_hw_stats, ptc255)},
695         {"tx_size_256_to_511_packets", offsetof(struct ixgbe_hw_stats, ptc511)},
696         {"tx_size_512_to_1023_packets", offsetof(struct ixgbe_hw_stats,
697                 ptc1023)},
698         {"tx_size_1024_to_max_packets", offsetof(struct ixgbe_hw_stats,
699                 ptc1522)},
700         {"tx_multicast_packets", offsetof(struct ixgbe_hw_stats, mptc)},
701         {"tx_broadcast_packets", offsetof(struct ixgbe_hw_stats, bptc)},
702         {"rx_mac_short_packet_dropped", offsetof(struct ixgbe_hw_stats, mspdc)},
703         {"rx_l3_l4_xsum_error", offsetof(struct ixgbe_hw_stats, xec)},
704
705         {"flow_director_added_filters", offsetof(struct ixgbe_hw_stats,
706                 fdirustat_add)},
707         {"flow_director_removed_filters", offsetof(struct ixgbe_hw_stats,
708                 fdirustat_remove)},
709         {"flow_director_filter_add_errors", offsetof(struct ixgbe_hw_stats,
710                 fdirfstat_fadd)},
711         {"flow_director_filter_remove_errors", offsetof(struct ixgbe_hw_stats,
712                 fdirfstat_fremove)},
713         {"flow_director_matched_filters", offsetof(struct ixgbe_hw_stats,
714                 fdirmatch)},
715         {"flow_director_missed_filters", offsetof(struct ixgbe_hw_stats,
716                 fdirmiss)},
717
718         {"rx_fcoe_crc_errors", offsetof(struct ixgbe_hw_stats, fccrc)},
719         {"rx_fcoe_dropped", offsetof(struct ixgbe_hw_stats, fcoerpdc)},
720         {"rx_fcoe_mbuf_allocation_errors", offsetof(struct ixgbe_hw_stats,
721                 fclast)},
722         {"rx_fcoe_packets", offsetof(struct ixgbe_hw_stats, fcoeprc)},
723         {"tx_fcoe_packets", offsetof(struct ixgbe_hw_stats, fcoeptc)},
724         {"rx_fcoe_bytes", offsetof(struct ixgbe_hw_stats, fcoedwrc)},
725         {"tx_fcoe_bytes", offsetof(struct ixgbe_hw_stats, fcoedwtc)},
726         {"rx_fcoe_no_direct_data_placement", offsetof(struct ixgbe_hw_stats,
727                 fcoe_noddp)},
728         {"rx_fcoe_no_direct_data_placement_ext_buff",
729                 offsetof(struct ixgbe_hw_stats, fcoe_noddp_ext_buff)},
730
731         {"tx_flow_control_xon_packets", offsetof(struct ixgbe_hw_stats,
732                 lxontxc)},
733         {"rx_flow_control_xon_packets", offsetof(struct ixgbe_hw_stats,
734                 lxonrxc)},
735         {"tx_flow_control_xoff_packets", offsetof(struct ixgbe_hw_stats,
736                 lxofftxc)},
737         {"rx_flow_control_xoff_packets", offsetof(struct ixgbe_hw_stats,
738                 lxoffrxc)},
739         {"rx_total_missed_packets", offsetof(struct ixgbe_hw_stats, mpctotal)},
740 };
741
742 #define IXGBE_NB_HW_STATS (sizeof(rte_ixgbe_stats_strings) / \
743                            sizeof(rte_ixgbe_stats_strings[0]))
744
745 /* MACsec statistics */
746 static const struct rte_ixgbe_xstats_name_off rte_ixgbe_macsec_strings[] = {
747         {"out_pkts_untagged", offsetof(struct ixgbe_macsec_stats,
748                 out_pkts_untagged)},
749         {"out_pkts_encrypted", offsetof(struct ixgbe_macsec_stats,
750                 out_pkts_encrypted)},
751         {"out_pkts_protected", offsetof(struct ixgbe_macsec_stats,
752                 out_pkts_protected)},
753         {"out_octets_encrypted", offsetof(struct ixgbe_macsec_stats,
754                 out_octets_encrypted)},
755         {"out_octets_protected", offsetof(struct ixgbe_macsec_stats,
756                 out_octets_protected)},
757         {"in_pkts_untagged", offsetof(struct ixgbe_macsec_stats,
758                 in_pkts_untagged)},
759         {"in_pkts_badtag", offsetof(struct ixgbe_macsec_stats,
760                 in_pkts_badtag)},
761         {"in_pkts_nosci", offsetof(struct ixgbe_macsec_stats,
762                 in_pkts_nosci)},
763         {"in_pkts_unknownsci", offsetof(struct ixgbe_macsec_stats,
764                 in_pkts_unknownsci)},
765         {"in_octets_decrypted", offsetof(struct ixgbe_macsec_stats,
766                 in_octets_decrypted)},
767         {"in_octets_validated", offsetof(struct ixgbe_macsec_stats,
768                 in_octets_validated)},
769         {"in_pkts_unchecked", offsetof(struct ixgbe_macsec_stats,
770                 in_pkts_unchecked)},
771         {"in_pkts_delayed", offsetof(struct ixgbe_macsec_stats,
772                 in_pkts_delayed)},
773         {"in_pkts_late", offsetof(struct ixgbe_macsec_stats,
774                 in_pkts_late)},
775         {"in_pkts_ok", offsetof(struct ixgbe_macsec_stats,
776                 in_pkts_ok)},
777         {"in_pkts_invalid", offsetof(struct ixgbe_macsec_stats,
778                 in_pkts_invalid)},
779         {"in_pkts_notvalid", offsetof(struct ixgbe_macsec_stats,
780                 in_pkts_notvalid)},
781         {"in_pkts_unusedsa", offsetof(struct ixgbe_macsec_stats,
782                 in_pkts_unusedsa)},
783         {"in_pkts_notusingsa", offsetof(struct ixgbe_macsec_stats,
784                 in_pkts_notusingsa)},
785 };
786
787 #define IXGBE_NB_MACSEC_STATS (sizeof(rte_ixgbe_macsec_strings) / \
788                            sizeof(rte_ixgbe_macsec_strings[0]))
789
790 /* Per-queue statistics */
791 static const struct rte_ixgbe_xstats_name_off rte_ixgbe_rxq_strings[] = {
792         {"mbuf_allocation_errors", offsetof(struct ixgbe_hw_stats, rnbc)},
793         {"dropped", offsetof(struct ixgbe_hw_stats, mpc)},
794         {"xon_packets", offsetof(struct ixgbe_hw_stats, pxonrxc)},
795         {"xoff_packets", offsetof(struct ixgbe_hw_stats, pxoffrxc)},
796 };
797
798 #define IXGBE_NB_RXQ_PRIO_STATS (sizeof(rte_ixgbe_rxq_strings) / \
799                            sizeof(rte_ixgbe_rxq_strings[0]))
800 #define IXGBE_NB_RXQ_PRIO_VALUES 8
801
802 static const struct rte_ixgbe_xstats_name_off rte_ixgbe_txq_strings[] = {
803         {"xon_packets", offsetof(struct ixgbe_hw_stats, pxontxc)},
804         {"xoff_packets", offsetof(struct ixgbe_hw_stats, pxofftxc)},
805         {"xon_to_xoff_packets", offsetof(struct ixgbe_hw_stats,
806                 pxon2offc)},
807 };
808
809 #define IXGBE_NB_TXQ_PRIO_STATS (sizeof(rte_ixgbe_txq_strings) / \
810                            sizeof(rte_ixgbe_txq_strings[0]))
811 #define IXGBE_NB_TXQ_PRIO_VALUES 8
812
813 static const struct rte_ixgbe_xstats_name_off rte_ixgbevf_stats_strings[] = {
814         {"rx_multicast_packets", offsetof(struct ixgbevf_hw_stats, vfmprc)},
815 };
816
817 #define IXGBEVF_NB_XSTATS (sizeof(rte_ixgbevf_stats_strings) /  \
818                 sizeof(rte_ixgbevf_stats_strings[0]))
819
820 /*
821  * This function is the same as ixgbe_is_sfp() in base/ixgbe.h.
822  */
823 static inline int
824 ixgbe_is_sfp(struct ixgbe_hw *hw)
825 {
826         switch (hw->phy.type) {
827         case ixgbe_phy_sfp_avago:
828         case ixgbe_phy_sfp_ftl:
829         case ixgbe_phy_sfp_intel:
830         case ixgbe_phy_sfp_unknown:
831         case ixgbe_phy_sfp_passive_tyco:
832         case ixgbe_phy_sfp_passive_unknown:
833                 return 1;
834         default:
835                 return 0;
836         }
837 }
838
839 static inline int32_t
840 ixgbe_pf_reset_hw(struct ixgbe_hw *hw)
841 {
842         uint32_t ctrl_ext;
843         int32_t status;
844
845         status = ixgbe_reset_hw(hw);
846
847         ctrl_ext = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT);
848         /* Set PF Reset Done bit so PF/VF Mail Ops can work */
849         ctrl_ext |= IXGBE_CTRL_EXT_PFRSTD;
850         IXGBE_WRITE_REG(hw, IXGBE_CTRL_EXT, ctrl_ext);
851         IXGBE_WRITE_FLUSH(hw);
852
853         if (status == IXGBE_ERR_SFP_NOT_PRESENT)
854                 status = IXGBE_SUCCESS;
855         return status;
856 }
857
858 static inline void
859 ixgbe_enable_intr(struct rte_eth_dev *dev)
860 {
861         struct ixgbe_interrupt *intr =
862                 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
863         struct ixgbe_hw *hw =
864                 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
865
866         IXGBE_WRITE_REG(hw, IXGBE_EIMS, intr->mask);
867         IXGBE_WRITE_FLUSH(hw);
868 }
869
870 /*
871  * This function is based on ixgbe_disable_intr() in base/ixgbe.h.
872  */
873 static void
874 ixgbe_disable_intr(struct ixgbe_hw *hw)
875 {
876         PMD_INIT_FUNC_TRACE();
877
878         if (hw->mac.type == ixgbe_mac_82598EB) {
879                 IXGBE_WRITE_REG(hw, IXGBE_EIMC, ~0);
880         } else {
881                 IXGBE_WRITE_REG(hw, IXGBE_EIMC, 0xFFFF0000);
882                 IXGBE_WRITE_REG(hw, IXGBE_EIMC_EX(0), ~0);
883                 IXGBE_WRITE_REG(hw, IXGBE_EIMC_EX(1), ~0);
884         }
885         IXGBE_WRITE_FLUSH(hw);
886 }
887
888 /*
889  * This function resets queue statistics mapping registers.
890  * From Niantic datasheet, Initialization of Statistics section:
891  * "...if software requires the queue counters, the RQSMR and TQSM registers
892  * must be re-programmed following a device reset.
893  */
894 static void
895 ixgbe_reset_qstat_mappings(struct ixgbe_hw *hw)
896 {
897         uint32_t i;
898
899         for (i = 0; i != IXGBE_NB_STAT_MAPPING_REGS; i++) {
900                 IXGBE_WRITE_REG(hw, IXGBE_RQSMR(i), 0);
901                 IXGBE_WRITE_REG(hw, IXGBE_TQSM(i), 0);
902         }
903 }
904
905
906 static int
907 ixgbe_dev_queue_stats_mapping_set(struct rte_eth_dev *eth_dev,
908                                   uint16_t queue_id,
909                                   uint8_t stat_idx,
910                                   uint8_t is_rx)
911 {
912 #define QSM_REG_NB_BITS_PER_QMAP_FIELD 8
913 #define NB_QMAP_FIELDS_PER_QSM_REG 4
914 #define QMAP_FIELD_RESERVED_BITS_MASK 0x0f
915
916         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(eth_dev->data->dev_private);
917         struct ixgbe_stat_mapping_registers *stat_mappings =
918                 IXGBE_DEV_PRIVATE_TO_STAT_MAPPINGS(eth_dev->data->dev_private);
919         uint32_t qsmr_mask = 0;
920         uint32_t clearing_mask = QMAP_FIELD_RESERVED_BITS_MASK;
921         uint32_t q_map;
922         uint8_t n, offset;
923
924         if ((hw->mac.type != ixgbe_mac_82599EB) &&
925                 (hw->mac.type != ixgbe_mac_X540) &&
926                 (hw->mac.type != ixgbe_mac_X550) &&
927                 (hw->mac.type != ixgbe_mac_X550EM_x) &&
928                 (hw->mac.type != ixgbe_mac_X550EM_a))
929                 return -ENOSYS;
930
931         PMD_INIT_LOG(DEBUG, "Setting port %d, %s queue_id %d to stat index %d",
932                      (int)(eth_dev->data->port_id), is_rx ? "RX" : "TX",
933                      queue_id, stat_idx);
934
935         n = (uint8_t)(queue_id / NB_QMAP_FIELDS_PER_QSM_REG);
936         if (n >= IXGBE_NB_STAT_MAPPING_REGS) {
937                 PMD_INIT_LOG(ERR, "Nb of stat mapping registers exceeded");
938                 return -EIO;
939         }
940         offset = (uint8_t)(queue_id % NB_QMAP_FIELDS_PER_QSM_REG);
941
942         /* Now clear any previous stat_idx set */
943         clearing_mask <<= (QSM_REG_NB_BITS_PER_QMAP_FIELD * offset);
944         if (!is_rx)
945                 stat_mappings->tqsm[n] &= ~clearing_mask;
946         else
947                 stat_mappings->rqsmr[n] &= ~clearing_mask;
948
949         q_map = (uint32_t)stat_idx;
950         q_map &= QMAP_FIELD_RESERVED_BITS_MASK;
951         qsmr_mask = q_map << (QSM_REG_NB_BITS_PER_QMAP_FIELD * offset);
952         if (!is_rx)
953                 stat_mappings->tqsm[n] |= qsmr_mask;
954         else
955                 stat_mappings->rqsmr[n] |= qsmr_mask;
956
957         PMD_INIT_LOG(DEBUG, "Set port %d, %s queue_id %d to stat index %d",
958                      (int)(eth_dev->data->port_id), is_rx ? "RX" : "TX",
959                      queue_id, stat_idx);
960         PMD_INIT_LOG(DEBUG, "%s[%d] = 0x%08x", is_rx ? "RQSMR" : "TQSM", n,
961                      is_rx ? stat_mappings->rqsmr[n] : stat_mappings->tqsm[n]);
962
963         /* Now write the mapping in the appropriate register */
964         if (is_rx) {
965                 PMD_INIT_LOG(DEBUG, "Write 0x%x to RX IXGBE stat mapping reg:%d",
966                              stat_mappings->rqsmr[n], n);
967                 IXGBE_WRITE_REG(hw, IXGBE_RQSMR(n), stat_mappings->rqsmr[n]);
968         } else {
969                 PMD_INIT_LOG(DEBUG, "Write 0x%x to TX IXGBE stat mapping reg:%d",
970                              stat_mappings->tqsm[n], n);
971                 IXGBE_WRITE_REG(hw, IXGBE_TQSM(n), stat_mappings->tqsm[n]);
972         }
973         return 0;
974 }
975
976 static void
977 ixgbe_restore_statistics_mapping(struct rte_eth_dev *dev)
978 {
979         struct ixgbe_stat_mapping_registers *stat_mappings =
980                 IXGBE_DEV_PRIVATE_TO_STAT_MAPPINGS(dev->data->dev_private);
981         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
982         int i;
983
984         /* write whatever was in stat mapping table to the NIC */
985         for (i = 0; i < IXGBE_NB_STAT_MAPPING_REGS; i++) {
986                 /* rx */
987                 IXGBE_WRITE_REG(hw, IXGBE_RQSMR(i), stat_mappings->rqsmr[i]);
988
989                 /* tx */
990                 IXGBE_WRITE_REG(hw, IXGBE_TQSM(i), stat_mappings->tqsm[i]);
991         }
992 }
993
994 static void
995 ixgbe_dcb_init(struct ixgbe_hw *hw, struct ixgbe_dcb_config *dcb_config)
996 {
997         uint8_t i;
998         struct ixgbe_dcb_tc_config *tc;
999         uint8_t dcb_max_tc = IXGBE_DCB_MAX_TRAFFIC_CLASS;
1000
1001         dcb_config->num_tcs.pg_tcs = dcb_max_tc;
1002         dcb_config->num_tcs.pfc_tcs = dcb_max_tc;
1003         for (i = 0; i < dcb_max_tc; i++) {
1004                 tc = &dcb_config->tc_config[i];
1005                 tc->path[IXGBE_DCB_TX_CONFIG].bwg_id = i;
1006                 tc->path[IXGBE_DCB_TX_CONFIG].bwg_percent =
1007                                  (uint8_t)(100/dcb_max_tc + (i & 1));
1008                 tc->path[IXGBE_DCB_RX_CONFIG].bwg_id = i;
1009                 tc->path[IXGBE_DCB_RX_CONFIG].bwg_percent =
1010                                  (uint8_t)(100/dcb_max_tc + (i & 1));
1011                 tc->pfc = ixgbe_dcb_pfc_disabled;
1012         }
1013
1014         /* Initialize default user to priority mapping, UPx->TC0 */
1015         tc = &dcb_config->tc_config[0];
1016         tc->path[IXGBE_DCB_TX_CONFIG].up_to_tc_bitmap = 0xFF;
1017         tc->path[IXGBE_DCB_RX_CONFIG].up_to_tc_bitmap = 0xFF;
1018         for (i = 0; i < IXGBE_DCB_MAX_BW_GROUP; i++) {
1019                 dcb_config->bw_percentage[IXGBE_DCB_TX_CONFIG][i] = 100;
1020                 dcb_config->bw_percentage[IXGBE_DCB_RX_CONFIG][i] = 100;
1021         }
1022         dcb_config->rx_pba_cfg = ixgbe_dcb_pba_equal;
1023         dcb_config->pfc_mode_enable = false;
1024         dcb_config->vt_mode = true;
1025         dcb_config->round_robin_enable = false;
1026         /* support all DCB capabilities in 82599 */
1027         dcb_config->support.capabilities = 0xFF;
1028
1029         /*we only support 4 Tcs for X540, X550 */
1030         if (hw->mac.type == ixgbe_mac_X540 ||
1031                 hw->mac.type == ixgbe_mac_X550 ||
1032                 hw->mac.type == ixgbe_mac_X550EM_x ||
1033                 hw->mac.type == ixgbe_mac_X550EM_a) {
1034                 dcb_config->num_tcs.pg_tcs = 4;
1035                 dcb_config->num_tcs.pfc_tcs = 4;
1036         }
1037 }
1038
1039 /*
1040  * Ensure that all locks are released before first NVM or PHY access
1041  */
1042 static void
1043 ixgbe_swfw_lock_reset(struct ixgbe_hw *hw)
1044 {
1045         uint16_t mask;
1046
1047         /*
1048          * Phy lock should not fail in this early stage. If this is the case,
1049          * it is due to an improper exit of the application.
1050          * So force the release of the faulty lock. Release of common lock
1051          * is done automatically by swfw_sync function.
1052          */
1053         mask = IXGBE_GSSR_PHY0_SM << hw->bus.func;
1054         if (ixgbe_acquire_swfw_semaphore(hw, mask) < 0) {
1055                 PMD_DRV_LOG(DEBUG, "SWFW phy%d lock released", hw->bus.func);
1056         }
1057         ixgbe_release_swfw_semaphore(hw, mask);
1058
1059         /*
1060          * These ones are more tricky since they are common to all ports; but
1061          * swfw_sync retries last long enough (1s) to be almost sure that if
1062          * lock can not be taken it is due to an improper lock of the
1063          * semaphore.
1064          */
1065         mask = IXGBE_GSSR_EEP_SM | IXGBE_GSSR_MAC_CSR_SM | IXGBE_GSSR_SW_MNG_SM;
1066         if (ixgbe_acquire_swfw_semaphore(hw, mask) < 0) {
1067                 PMD_DRV_LOG(DEBUG, "SWFW common locks released");
1068         }
1069         ixgbe_release_swfw_semaphore(hw, mask);
1070 }
1071
1072 /*
1073  * This function is based on code in ixgbe_attach() in base/ixgbe.c.
1074  * It returns 0 on success.
1075  */
1076 static int
1077 eth_ixgbe_dev_init(struct rte_eth_dev *eth_dev, void *init_params __rte_unused)
1078 {
1079         struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(eth_dev);
1080         struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
1081         struct ixgbe_hw *hw =
1082                 IXGBE_DEV_PRIVATE_TO_HW(eth_dev->data->dev_private);
1083         struct ixgbe_vfta *shadow_vfta =
1084                 IXGBE_DEV_PRIVATE_TO_VFTA(eth_dev->data->dev_private);
1085         struct ixgbe_hwstrip *hwstrip =
1086                 IXGBE_DEV_PRIVATE_TO_HWSTRIP_BITMAP(eth_dev->data->dev_private);
1087         struct ixgbe_dcb_config *dcb_config =
1088                 IXGBE_DEV_PRIVATE_TO_DCB_CFG(eth_dev->data->dev_private);
1089         struct ixgbe_filter_info *filter_info =
1090                 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(eth_dev->data->dev_private);
1091         struct ixgbe_bw_conf *bw_conf =
1092                 IXGBE_DEV_PRIVATE_TO_BW_CONF(eth_dev->data->dev_private);
1093         uint32_t ctrl_ext;
1094         uint16_t csum;
1095         int diag, i;
1096
1097         PMD_INIT_FUNC_TRACE();
1098
1099         ixgbe_dev_macsec_setting_reset(eth_dev);
1100
1101         eth_dev->dev_ops = &ixgbe_eth_dev_ops;
1102         eth_dev->rx_pkt_burst = &ixgbe_recv_pkts;
1103         eth_dev->tx_pkt_burst = &ixgbe_xmit_pkts;
1104         eth_dev->tx_pkt_prepare = &ixgbe_prep_pkts;
1105
1106         /*
1107          * For secondary processes, we don't initialise any further as primary
1108          * has already done this work. Only check we don't need a different
1109          * RX and TX function.
1110          */
1111         if (rte_eal_process_type() != RTE_PROC_PRIMARY) {
1112                 struct ixgbe_tx_queue *txq;
1113                 /* TX queue function in primary, set by last queue initialized
1114                  * Tx queue may not initialized by primary process
1115                  */
1116                 if (eth_dev->data->tx_queues) {
1117                         txq = eth_dev->data->tx_queues[eth_dev->data->nb_tx_queues-1];
1118                         ixgbe_set_tx_function(eth_dev, txq);
1119                 } else {
1120                         /* Use default TX function if we get here */
1121                         PMD_INIT_LOG(NOTICE, "No TX queues configured yet. "
1122                                      "Using default TX function.");
1123                 }
1124
1125                 ixgbe_set_rx_function(eth_dev);
1126
1127                 return 0;
1128         }
1129
1130         rte_eth_copy_pci_info(eth_dev, pci_dev);
1131
1132         /* Vendor and Device ID need to be set before init of shared code */
1133         hw->device_id = pci_dev->id.device_id;
1134         hw->vendor_id = pci_dev->id.vendor_id;
1135         hw->hw_addr = (void *)pci_dev->mem_resource[0].addr;
1136         hw->allow_unsupported_sfp = 1;
1137
1138         /* Initialize the shared code (base driver) */
1139 #ifdef RTE_LIBRTE_IXGBE_BYPASS
1140         diag = ixgbe_bypass_init_shared_code(hw);
1141 #else
1142         diag = ixgbe_init_shared_code(hw);
1143 #endif /* RTE_LIBRTE_IXGBE_BYPASS */
1144
1145         if (diag != IXGBE_SUCCESS) {
1146                 PMD_INIT_LOG(ERR, "Shared code init failed: %d", diag);
1147                 return -EIO;
1148         }
1149
1150         if (hw->mac.ops.fw_recovery_mode && hw->mac.ops.fw_recovery_mode(hw)) {
1151                 PMD_INIT_LOG(ERR, "\nERROR: "
1152                         "Firmware recovery mode detected. Limiting functionality.\n"
1153                         "Refer to the Intel(R) Ethernet Adapters and Devices "
1154                         "User Guide for details on firmware recovery mode.");
1155                 return -EIO;
1156         }
1157
1158         /* pick up the PCI bus settings for reporting later */
1159         ixgbe_get_bus_info(hw);
1160
1161         /* Unlock any pending hardware semaphore */
1162         ixgbe_swfw_lock_reset(hw);
1163
1164 #ifdef RTE_LIBRTE_SECURITY
1165         /* Initialize security_ctx only for primary process*/
1166         if (ixgbe_ipsec_ctx_create(eth_dev))
1167                 return -ENOMEM;
1168 #endif
1169
1170         /* Initialize DCB configuration*/
1171         memset(dcb_config, 0, sizeof(struct ixgbe_dcb_config));
1172         ixgbe_dcb_init(hw, dcb_config);
1173         /* Get Hardware Flow Control setting */
1174         hw->fc.requested_mode = ixgbe_fc_full;
1175         hw->fc.current_mode = ixgbe_fc_full;
1176         hw->fc.pause_time = IXGBE_FC_PAUSE;
1177         for (i = 0; i < IXGBE_DCB_MAX_TRAFFIC_CLASS; i++) {
1178                 hw->fc.low_water[i] = IXGBE_FC_LO;
1179                 hw->fc.high_water[i] = IXGBE_FC_HI;
1180         }
1181         hw->fc.send_xon = 1;
1182
1183         /* Make sure we have a good EEPROM before we read from it */
1184         diag = ixgbe_validate_eeprom_checksum(hw, &csum);
1185         if (diag != IXGBE_SUCCESS) {
1186                 PMD_INIT_LOG(ERR, "The EEPROM checksum is not valid: %d", diag);
1187                 return -EIO;
1188         }
1189
1190 #ifdef RTE_LIBRTE_IXGBE_BYPASS
1191         diag = ixgbe_bypass_init_hw(hw);
1192 #else
1193         diag = ixgbe_init_hw(hw);
1194         hw->mac.autotry_restart = false;
1195 #endif /* RTE_LIBRTE_IXGBE_BYPASS */
1196
1197         /*
1198          * Devices with copper phys will fail to initialise if ixgbe_init_hw()
1199          * is called too soon after the kernel driver unbinding/binding occurs.
1200          * The failure occurs in ixgbe_identify_phy_generic() for all devices,
1201          * but for non-copper devies, ixgbe_identify_sfp_module_generic() is
1202          * also called. See ixgbe_identify_phy_82599(). The reason for the
1203          * failure is not known, and only occuts when virtualisation features
1204          * are disabled in the bios. A delay of 100ms  was found to be enough by
1205          * trial-and-error, and is doubled to be safe.
1206          */
1207         if (diag && (hw->mac.ops.get_media_type(hw) == ixgbe_media_type_copper)) {
1208                 rte_delay_ms(200);
1209                 diag = ixgbe_init_hw(hw);
1210         }
1211
1212         if (diag == IXGBE_ERR_SFP_NOT_PRESENT)
1213                 diag = IXGBE_SUCCESS;
1214
1215         if (diag == IXGBE_ERR_EEPROM_VERSION) {
1216                 PMD_INIT_LOG(ERR, "This device is a pre-production adapter/"
1217                              "LOM.  Please be aware there may be issues associated "
1218                              "with your hardware.");
1219                 PMD_INIT_LOG(ERR, "If you are experiencing problems "
1220                              "please contact your Intel or hardware representative "
1221                              "who provided you with this hardware.");
1222         } else if (diag == IXGBE_ERR_SFP_NOT_SUPPORTED)
1223                 PMD_INIT_LOG(ERR, "Unsupported SFP+ Module");
1224         if (diag) {
1225                 PMD_INIT_LOG(ERR, "Hardware Initialization Failure: %d", diag);
1226                 return -EIO;
1227         }
1228
1229         /* Reset the hw statistics */
1230         ixgbe_dev_stats_reset(eth_dev);
1231
1232         /* disable interrupt */
1233         ixgbe_disable_intr(hw);
1234
1235         /* reset mappings for queue statistics hw counters*/
1236         ixgbe_reset_qstat_mappings(hw);
1237
1238         /* Allocate memory for storing MAC addresses */
1239         eth_dev->data->mac_addrs = rte_zmalloc("ixgbe", RTE_ETHER_ADDR_LEN *
1240                                                hw->mac.num_rar_entries, 0);
1241         if (eth_dev->data->mac_addrs == NULL) {
1242                 PMD_INIT_LOG(ERR,
1243                              "Failed to allocate %u bytes needed to store "
1244                              "MAC addresses",
1245                              RTE_ETHER_ADDR_LEN * hw->mac.num_rar_entries);
1246                 return -ENOMEM;
1247         }
1248         /* Copy the permanent MAC address */
1249         rte_ether_addr_copy((struct rte_ether_addr *)hw->mac.perm_addr,
1250                         &eth_dev->data->mac_addrs[0]);
1251
1252         /* Allocate memory for storing hash filter MAC addresses */
1253         eth_dev->data->hash_mac_addrs = rte_zmalloc(
1254                 "ixgbe", RTE_ETHER_ADDR_LEN * IXGBE_VMDQ_NUM_UC_MAC, 0);
1255         if (eth_dev->data->hash_mac_addrs == NULL) {
1256                 PMD_INIT_LOG(ERR,
1257                              "Failed to allocate %d bytes needed to store MAC addresses",
1258                              RTE_ETHER_ADDR_LEN * IXGBE_VMDQ_NUM_UC_MAC);
1259                 return -ENOMEM;
1260         }
1261
1262         /* Pass the information to the rte_eth_dev_close() that it should also
1263          * release the private port resources.
1264          */
1265         eth_dev->data->dev_flags |= RTE_ETH_DEV_CLOSE_REMOVE;
1266
1267         /* initialize the vfta */
1268         memset(shadow_vfta, 0, sizeof(*shadow_vfta));
1269
1270         /* initialize the hw strip bitmap*/
1271         memset(hwstrip, 0, sizeof(*hwstrip));
1272
1273         /* initialize PF if max_vfs not zero */
1274         ixgbe_pf_host_init(eth_dev);
1275
1276         ctrl_ext = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT);
1277         /* let hardware know driver is loaded */
1278         ctrl_ext |= IXGBE_CTRL_EXT_DRV_LOAD;
1279         /* Set PF Reset Done bit so PF/VF Mail Ops can work */
1280         ctrl_ext |= IXGBE_CTRL_EXT_PFRSTD;
1281         IXGBE_WRITE_REG(hw, IXGBE_CTRL_EXT, ctrl_ext);
1282         IXGBE_WRITE_FLUSH(hw);
1283
1284         if (ixgbe_is_sfp(hw) && hw->phy.sfp_type != ixgbe_sfp_type_not_present)
1285                 PMD_INIT_LOG(DEBUG, "MAC: %d, PHY: %d, SFP+: %d",
1286                              (int) hw->mac.type, (int) hw->phy.type,
1287                              (int) hw->phy.sfp_type);
1288         else
1289                 PMD_INIT_LOG(DEBUG, "MAC: %d, PHY: %d",
1290                              (int) hw->mac.type, (int) hw->phy.type);
1291
1292         PMD_INIT_LOG(DEBUG, "port %d vendorID=0x%x deviceID=0x%x",
1293                      eth_dev->data->port_id, pci_dev->id.vendor_id,
1294                      pci_dev->id.device_id);
1295
1296         rte_intr_callback_register(intr_handle,
1297                                    ixgbe_dev_interrupt_handler, eth_dev);
1298
1299         /* enable uio/vfio intr/eventfd mapping */
1300         rte_intr_enable(intr_handle);
1301
1302         /* enable support intr */
1303         ixgbe_enable_intr(eth_dev);
1304
1305         ixgbe_dev_set_link_down(eth_dev);
1306
1307         /* initialize filter info */
1308         memset(filter_info, 0,
1309                sizeof(struct ixgbe_filter_info));
1310
1311         /* initialize 5tuple filter list */
1312         TAILQ_INIT(&filter_info->fivetuple_list);
1313
1314         /* initialize flow director filter list & hash */
1315         ixgbe_fdir_filter_init(eth_dev);
1316
1317         /* initialize l2 tunnel filter list & hash */
1318         ixgbe_l2_tn_filter_init(eth_dev);
1319
1320         /* initialize flow filter lists */
1321         ixgbe_filterlist_init();
1322
1323         /* initialize bandwidth configuration info */
1324         memset(bw_conf, 0, sizeof(struct ixgbe_bw_conf));
1325
1326         /* initialize Traffic Manager configuration */
1327         ixgbe_tm_conf_init(eth_dev);
1328
1329         return 0;
1330 }
1331
1332 static int
1333 eth_ixgbe_dev_uninit(struct rte_eth_dev *eth_dev)
1334 {
1335         PMD_INIT_FUNC_TRACE();
1336
1337         if (rte_eal_process_type() != RTE_PROC_PRIMARY)
1338                 return 0;
1339
1340         ixgbe_dev_close(eth_dev);
1341
1342         return 0;
1343 }
1344
1345 static int ixgbe_ntuple_filter_uninit(struct rte_eth_dev *eth_dev)
1346 {
1347         struct ixgbe_filter_info *filter_info =
1348                 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(eth_dev->data->dev_private);
1349         struct ixgbe_5tuple_filter *p_5tuple;
1350
1351         while ((p_5tuple = TAILQ_FIRST(&filter_info->fivetuple_list))) {
1352                 TAILQ_REMOVE(&filter_info->fivetuple_list,
1353                              p_5tuple,
1354                              entries);
1355                 rte_free(p_5tuple);
1356         }
1357         memset(filter_info->fivetuple_mask, 0,
1358                sizeof(uint32_t) * IXGBE_5TUPLE_ARRAY_SIZE);
1359
1360         return 0;
1361 }
1362
1363 static int ixgbe_fdir_filter_uninit(struct rte_eth_dev *eth_dev)
1364 {
1365         struct ixgbe_hw_fdir_info *fdir_info =
1366                 IXGBE_DEV_PRIVATE_TO_FDIR_INFO(eth_dev->data->dev_private);
1367         struct ixgbe_fdir_filter *fdir_filter;
1368
1369                 if (fdir_info->hash_map)
1370                 rte_free(fdir_info->hash_map);
1371         if (fdir_info->hash_handle)
1372                 rte_hash_free(fdir_info->hash_handle);
1373
1374         while ((fdir_filter = TAILQ_FIRST(&fdir_info->fdir_list))) {
1375                 TAILQ_REMOVE(&fdir_info->fdir_list,
1376                              fdir_filter,
1377                              entries);
1378                 rte_free(fdir_filter);
1379         }
1380
1381         return 0;
1382 }
1383
1384 static int ixgbe_l2_tn_filter_uninit(struct rte_eth_dev *eth_dev)
1385 {
1386         struct ixgbe_l2_tn_info *l2_tn_info =
1387                 IXGBE_DEV_PRIVATE_TO_L2_TN_INFO(eth_dev->data->dev_private);
1388         struct ixgbe_l2_tn_filter *l2_tn_filter;
1389
1390         if (l2_tn_info->hash_map)
1391                 rte_free(l2_tn_info->hash_map);
1392         if (l2_tn_info->hash_handle)
1393                 rte_hash_free(l2_tn_info->hash_handle);
1394
1395         while ((l2_tn_filter = TAILQ_FIRST(&l2_tn_info->l2_tn_list))) {
1396                 TAILQ_REMOVE(&l2_tn_info->l2_tn_list,
1397                              l2_tn_filter,
1398                              entries);
1399                 rte_free(l2_tn_filter);
1400         }
1401
1402         return 0;
1403 }
1404
1405 static int ixgbe_fdir_filter_init(struct rte_eth_dev *eth_dev)
1406 {
1407         struct ixgbe_hw_fdir_info *fdir_info =
1408                 IXGBE_DEV_PRIVATE_TO_FDIR_INFO(eth_dev->data->dev_private);
1409         char fdir_hash_name[RTE_HASH_NAMESIZE];
1410         struct rte_hash_parameters fdir_hash_params = {
1411                 .name = fdir_hash_name,
1412                 .entries = IXGBE_MAX_FDIR_FILTER_NUM,
1413                 .key_len = sizeof(union ixgbe_atr_input),
1414                 .hash_func = rte_hash_crc,
1415                 .hash_func_init_val = 0,
1416                 .socket_id = rte_socket_id(),
1417         };
1418
1419         TAILQ_INIT(&fdir_info->fdir_list);
1420         snprintf(fdir_hash_name, RTE_HASH_NAMESIZE,
1421                  "fdir_%s", eth_dev->device->name);
1422         fdir_info->hash_handle = rte_hash_create(&fdir_hash_params);
1423         if (!fdir_info->hash_handle) {
1424                 PMD_INIT_LOG(ERR, "Failed to create fdir hash table!");
1425                 return -EINVAL;
1426         }
1427         fdir_info->hash_map = rte_zmalloc("ixgbe",
1428                                           sizeof(struct ixgbe_fdir_filter *) *
1429                                           IXGBE_MAX_FDIR_FILTER_NUM,
1430                                           0);
1431         if (!fdir_info->hash_map) {
1432                 PMD_INIT_LOG(ERR,
1433                              "Failed to allocate memory for fdir hash map!");
1434                 return -ENOMEM;
1435         }
1436         fdir_info->mask_added = FALSE;
1437
1438         return 0;
1439 }
1440
1441 static int ixgbe_l2_tn_filter_init(struct rte_eth_dev *eth_dev)
1442 {
1443         struct ixgbe_l2_tn_info *l2_tn_info =
1444                 IXGBE_DEV_PRIVATE_TO_L2_TN_INFO(eth_dev->data->dev_private);
1445         char l2_tn_hash_name[RTE_HASH_NAMESIZE];
1446         struct rte_hash_parameters l2_tn_hash_params = {
1447                 .name = l2_tn_hash_name,
1448                 .entries = IXGBE_MAX_L2_TN_FILTER_NUM,
1449                 .key_len = sizeof(struct ixgbe_l2_tn_key),
1450                 .hash_func = rte_hash_crc,
1451                 .hash_func_init_val = 0,
1452                 .socket_id = rte_socket_id(),
1453         };
1454
1455         TAILQ_INIT(&l2_tn_info->l2_tn_list);
1456         snprintf(l2_tn_hash_name, RTE_HASH_NAMESIZE,
1457                  "l2_tn_%s", eth_dev->device->name);
1458         l2_tn_info->hash_handle = rte_hash_create(&l2_tn_hash_params);
1459         if (!l2_tn_info->hash_handle) {
1460                 PMD_INIT_LOG(ERR, "Failed to create L2 TN hash table!");
1461                 return -EINVAL;
1462         }
1463         l2_tn_info->hash_map = rte_zmalloc("ixgbe",
1464                                    sizeof(struct ixgbe_l2_tn_filter *) *
1465                                    IXGBE_MAX_L2_TN_FILTER_NUM,
1466                                    0);
1467         if (!l2_tn_info->hash_map) {
1468                 PMD_INIT_LOG(ERR,
1469                         "Failed to allocate memory for L2 TN hash map!");
1470                 return -ENOMEM;
1471         }
1472         l2_tn_info->e_tag_en = FALSE;
1473         l2_tn_info->e_tag_fwd_en = FALSE;
1474         l2_tn_info->e_tag_ether_type = RTE_ETHER_TYPE_ETAG;
1475
1476         return 0;
1477 }
1478 /*
1479  * Negotiate mailbox API version with the PF.
1480  * After reset API version is always set to the basic one (ixgbe_mbox_api_10).
1481  * Then we try to negotiate starting with the most recent one.
1482  * If all negotiation attempts fail, then we will proceed with
1483  * the default one (ixgbe_mbox_api_10).
1484  */
1485 static void
1486 ixgbevf_negotiate_api(struct ixgbe_hw *hw)
1487 {
1488         int32_t i;
1489
1490         /* start with highest supported, proceed down */
1491         static const enum ixgbe_pfvf_api_rev sup_ver[] = {
1492                 ixgbe_mbox_api_13,
1493                 ixgbe_mbox_api_12,
1494                 ixgbe_mbox_api_11,
1495                 ixgbe_mbox_api_10,
1496         };
1497
1498         for (i = 0;
1499                         i != RTE_DIM(sup_ver) &&
1500                         ixgbevf_negotiate_api_version(hw, sup_ver[i]) != 0;
1501                         i++)
1502                 ;
1503 }
1504
1505 static void
1506 generate_random_mac_addr(struct rte_ether_addr *mac_addr)
1507 {
1508         uint64_t random;
1509
1510         /* Set Organizationally Unique Identifier (OUI) prefix. */
1511         mac_addr->addr_bytes[0] = 0x00;
1512         mac_addr->addr_bytes[1] = 0x09;
1513         mac_addr->addr_bytes[2] = 0xC0;
1514         /* Force indication of locally assigned MAC address. */
1515         mac_addr->addr_bytes[0] |= RTE_ETHER_LOCAL_ADMIN_ADDR;
1516         /* Generate the last 3 bytes of the MAC address with a random number. */
1517         random = rte_rand();
1518         memcpy(&mac_addr->addr_bytes[3], &random, 3);
1519 }
1520
1521 static int
1522 devarg_handle_int(__rte_unused const char *key, const char *value,
1523                   void *extra_args)
1524 {
1525         uint16_t *n = extra_args;
1526
1527         if (value == NULL || extra_args == NULL)
1528                 return -EINVAL;
1529
1530         *n = (uint16_t)strtoul(value, NULL, 0);
1531         if (*n == USHRT_MAX && errno == ERANGE)
1532                 return -1;
1533
1534         return 0;
1535 }
1536
1537 static void
1538 ixgbevf_parse_devargs(struct ixgbe_adapter *adapter,
1539                       struct rte_devargs *devargs)
1540 {
1541         struct rte_kvargs *kvlist;
1542         uint16_t pflink_fullchk;
1543
1544         if (devargs == NULL)
1545                 return;
1546
1547         kvlist = rte_kvargs_parse(devargs->args, ixgbevf_valid_arguments);
1548         if (kvlist == NULL)
1549                 return;
1550
1551         if (rte_kvargs_count(kvlist, IXGBEVF_DEVARG_PFLINK_FULLCHK) == 1 &&
1552             rte_kvargs_process(kvlist, IXGBEVF_DEVARG_PFLINK_FULLCHK,
1553                                devarg_handle_int, &pflink_fullchk) == 0 &&
1554             pflink_fullchk == 1)
1555                 adapter->pflink_fullchk = 1;
1556
1557         rte_kvargs_free(kvlist);
1558 }
1559
1560 /*
1561  * Virtual Function device init
1562  */
1563 static int
1564 eth_ixgbevf_dev_init(struct rte_eth_dev *eth_dev)
1565 {
1566         int diag;
1567         uint32_t tc, tcs;
1568         struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(eth_dev);
1569         struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
1570         struct ixgbe_hw *hw =
1571                 IXGBE_DEV_PRIVATE_TO_HW(eth_dev->data->dev_private);
1572         struct ixgbe_vfta *shadow_vfta =
1573                 IXGBE_DEV_PRIVATE_TO_VFTA(eth_dev->data->dev_private);
1574         struct ixgbe_hwstrip *hwstrip =
1575                 IXGBE_DEV_PRIVATE_TO_HWSTRIP_BITMAP(eth_dev->data->dev_private);
1576         struct rte_ether_addr *perm_addr =
1577                 (struct rte_ether_addr *)hw->mac.perm_addr;
1578
1579         PMD_INIT_FUNC_TRACE();
1580
1581         eth_dev->dev_ops = &ixgbevf_eth_dev_ops;
1582         eth_dev->rx_pkt_burst = &ixgbe_recv_pkts;
1583         eth_dev->tx_pkt_burst = &ixgbe_xmit_pkts;
1584
1585         /* for secondary processes, we don't initialise any further as primary
1586          * has already done this work. Only check we don't need a different
1587          * RX function
1588          */
1589         if (rte_eal_process_type() != RTE_PROC_PRIMARY) {
1590                 struct ixgbe_tx_queue *txq;
1591                 /* TX queue function in primary, set by last queue initialized
1592                  * Tx queue may not initialized by primary process
1593                  */
1594                 if (eth_dev->data->tx_queues) {
1595                         txq = eth_dev->data->tx_queues[eth_dev->data->nb_tx_queues - 1];
1596                         ixgbe_set_tx_function(eth_dev, txq);
1597                 } else {
1598                         /* Use default TX function if we get here */
1599                         PMD_INIT_LOG(NOTICE,
1600                                      "No TX queues configured yet. Using default TX function.");
1601                 }
1602
1603                 ixgbe_set_rx_function(eth_dev);
1604
1605                 return 0;
1606         }
1607
1608         ixgbevf_parse_devargs(eth_dev->data->dev_private,
1609                               pci_dev->device.devargs);
1610
1611         rte_eth_copy_pci_info(eth_dev, pci_dev);
1612
1613         hw->device_id = pci_dev->id.device_id;
1614         hw->vendor_id = pci_dev->id.vendor_id;
1615         hw->hw_addr = (void *)pci_dev->mem_resource[0].addr;
1616
1617         /* initialize the vfta */
1618         memset(shadow_vfta, 0, sizeof(*shadow_vfta));
1619
1620         /* initialize the hw strip bitmap*/
1621         memset(hwstrip, 0, sizeof(*hwstrip));
1622
1623         /* Initialize the shared code (base driver) */
1624         diag = ixgbe_init_shared_code(hw);
1625         if (diag != IXGBE_SUCCESS) {
1626                 PMD_INIT_LOG(ERR, "Shared code init failed for ixgbevf: %d", diag);
1627                 return -EIO;
1628         }
1629
1630         /* init_mailbox_params */
1631         hw->mbx.ops.init_params(hw);
1632
1633         /* Reset the hw statistics */
1634         ixgbevf_dev_stats_reset(eth_dev);
1635
1636         /* Disable the interrupts for VF */
1637         ixgbevf_intr_disable(eth_dev);
1638
1639         hw->mac.num_rar_entries = 128; /* The MAX of the underlying PF */
1640         diag = hw->mac.ops.reset_hw(hw);
1641
1642         /*
1643          * The VF reset operation returns the IXGBE_ERR_INVALID_MAC_ADDR when
1644          * the underlying PF driver has not assigned a MAC address to the VF.
1645          * In this case, assign a random MAC address.
1646          */
1647         if ((diag != IXGBE_SUCCESS) && (diag != IXGBE_ERR_INVALID_MAC_ADDR)) {
1648                 PMD_INIT_LOG(ERR, "VF Initialization Failure: %d", diag);
1649                 /*
1650                  * This error code will be propagated to the app by
1651                  * rte_eth_dev_reset, so use a public error code rather than
1652                  * the internal-only IXGBE_ERR_RESET_FAILED
1653                  */
1654                 return -EAGAIN;
1655         }
1656
1657         /* negotiate mailbox API version to use with the PF. */
1658         ixgbevf_negotiate_api(hw);
1659
1660         /* Get Rx/Tx queue count via mailbox, which is ready after reset_hw */
1661         ixgbevf_get_queues(hw, &tcs, &tc);
1662
1663         /* Allocate memory for storing MAC addresses */
1664         eth_dev->data->mac_addrs = rte_zmalloc("ixgbevf", RTE_ETHER_ADDR_LEN *
1665                                                hw->mac.num_rar_entries, 0);
1666         if (eth_dev->data->mac_addrs == NULL) {
1667                 PMD_INIT_LOG(ERR,
1668                              "Failed to allocate %u bytes needed to store "
1669                              "MAC addresses",
1670                              RTE_ETHER_ADDR_LEN * hw->mac.num_rar_entries);
1671                 return -ENOMEM;
1672         }
1673
1674         /* Pass the information to the rte_eth_dev_close() that it should also
1675          * release the private port resources.
1676          */
1677         eth_dev->data->dev_flags |= RTE_ETH_DEV_CLOSE_REMOVE;
1678
1679         /* Generate a random MAC address, if none was assigned by PF. */
1680         if (rte_is_zero_ether_addr(perm_addr)) {
1681                 generate_random_mac_addr(perm_addr);
1682                 diag = ixgbe_set_rar_vf(hw, 1, perm_addr->addr_bytes, 0, 1);
1683                 if (diag) {
1684                         rte_free(eth_dev->data->mac_addrs);
1685                         eth_dev->data->mac_addrs = NULL;
1686                         return diag;
1687                 }
1688                 PMD_INIT_LOG(INFO, "\tVF MAC address not assigned by Host PF");
1689                 PMD_INIT_LOG(INFO, "\tAssign randomly generated MAC address "
1690                              "%02x:%02x:%02x:%02x:%02x:%02x",
1691                              perm_addr->addr_bytes[0],
1692                              perm_addr->addr_bytes[1],
1693                              perm_addr->addr_bytes[2],
1694                              perm_addr->addr_bytes[3],
1695                              perm_addr->addr_bytes[4],
1696                              perm_addr->addr_bytes[5]);
1697         }
1698
1699         /* Copy the permanent MAC address */
1700         rte_ether_addr_copy(perm_addr, &eth_dev->data->mac_addrs[0]);
1701
1702         /* reset the hardware with the new settings */
1703         diag = hw->mac.ops.start_hw(hw);
1704         switch (diag) {
1705         case  0:
1706                 break;
1707
1708         default:
1709                 PMD_INIT_LOG(ERR, "VF Initialization Failure: %d", diag);
1710                 return -EIO;
1711         }
1712
1713         rte_intr_callback_register(intr_handle,
1714                                    ixgbevf_dev_interrupt_handler, eth_dev);
1715         rte_intr_enable(intr_handle);
1716         ixgbevf_intr_enable(eth_dev);
1717
1718         PMD_INIT_LOG(DEBUG, "port %d vendorID=0x%x deviceID=0x%x mac.type=%s",
1719                      eth_dev->data->port_id, pci_dev->id.vendor_id,
1720                      pci_dev->id.device_id, "ixgbe_mac_82599_vf");
1721
1722         return 0;
1723 }
1724
1725 /* Virtual Function device uninit */
1726
1727 static int
1728 eth_ixgbevf_dev_uninit(struct rte_eth_dev *eth_dev)
1729 {
1730         PMD_INIT_FUNC_TRACE();
1731
1732         if (rte_eal_process_type() != RTE_PROC_PRIMARY)
1733                 return 0;
1734
1735         ixgbevf_dev_close(eth_dev);
1736
1737         return 0;
1738 }
1739
1740 static int
1741 eth_ixgbe_pci_probe(struct rte_pci_driver *pci_drv __rte_unused,
1742                 struct rte_pci_device *pci_dev)
1743 {
1744         char name[RTE_ETH_NAME_MAX_LEN];
1745         struct rte_eth_dev *pf_ethdev;
1746         struct rte_eth_devargs eth_da;
1747         int i, retval;
1748
1749         if (pci_dev->device.devargs) {
1750                 retval = rte_eth_devargs_parse(pci_dev->device.devargs->args,
1751                                 &eth_da);
1752                 if (retval)
1753                         return retval;
1754         } else
1755                 memset(&eth_da, 0, sizeof(eth_da));
1756
1757         retval = rte_eth_dev_create(&pci_dev->device, pci_dev->device.name,
1758                 sizeof(struct ixgbe_adapter),
1759                 eth_dev_pci_specific_init, pci_dev,
1760                 eth_ixgbe_dev_init, NULL);
1761
1762         if (retval || eth_da.nb_representor_ports < 1)
1763                 return retval;
1764
1765         pf_ethdev = rte_eth_dev_allocated(pci_dev->device.name);
1766         if (pf_ethdev == NULL)
1767                 return -ENODEV;
1768
1769         /* probe VF representor ports */
1770         for (i = 0; i < eth_da.nb_representor_ports; i++) {
1771                 struct ixgbe_vf_info *vfinfo;
1772                 struct ixgbe_vf_representor representor;
1773
1774                 vfinfo = *IXGBE_DEV_PRIVATE_TO_P_VFDATA(
1775                         pf_ethdev->data->dev_private);
1776                 if (vfinfo == NULL) {
1777                         PMD_DRV_LOG(ERR,
1778                                 "no virtual functions supported by PF");
1779                         break;
1780                 }
1781
1782                 representor.vf_id = eth_da.representor_ports[i];
1783                 representor.switch_domain_id = vfinfo->switch_domain_id;
1784                 representor.pf_ethdev = pf_ethdev;
1785
1786                 /* representor port net_bdf_port */
1787                 snprintf(name, sizeof(name), "net_%s_representor_%d",
1788                         pci_dev->device.name,
1789                         eth_da.representor_ports[i]);
1790
1791                 retval = rte_eth_dev_create(&pci_dev->device, name,
1792                         sizeof(struct ixgbe_vf_representor), NULL, NULL,
1793                         ixgbe_vf_representor_init, &representor);
1794
1795                 if (retval)
1796                         PMD_DRV_LOG(ERR, "failed to create ixgbe vf "
1797                                 "representor %s.", name);
1798         }
1799
1800         return 0;
1801 }
1802
1803 static int eth_ixgbe_pci_remove(struct rte_pci_device *pci_dev)
1804 {
1805         struct rte_eth_dev *ethdev;
1806
1807         ethdev = rte_eth_dev_allocated(pci_dev->device.name);
1808         if (!ethdev)
1809                 return 0;
1810
1811         if (ethdev->data->dev_flags & RTE_ETH_DEV_REPRESENTOR)
1812                 return rte_eth_dev_pci_generic_remove(pci_dev,
1813                                         ixgbe_vf_representor_uninit);
1814         else
1815                 return rte_eth_dev_pci_generic_remove(pci_dev,
1816                                                 eth_ixgbe_dev_uninit);
1817 }
1818
1819 static struct rte_pci_driver rte_ixgbe_pmd = {
1820         .id_table = pci_id_ixgbe_map,
1821         .drv_flags = RTE_PCI_DRV_NEED_MAPPING | RTE_PCI_DRV_INTR_LSC,
1822         .probe = eth_ixgbe_pci_probe,
1823         .remove = eth_ixgbe_pci_remove,
1824 };
1825
1826 static int eth_ixgbevf_pci_probe(struct rte_pci_driver *pci_drv __rte_unused,
1827         struct rte_pci_device *pci_dev)
1828 {
1829         return rte_eth_dev_pci_generic_probe(pci_dev,
1830                 sizeof(struct ixgbe_adapter), eth_ixgbevf_dev_init);
1831 }
1832
1833 static int eth_ixgbevf_pci_remove(struct rte_pci_device *pci_dev)
1834 {
1835         return rte_eth_dev_pci_generic_remove(pci_dev, eth_ixgbevf_dev_uninit);
1836 }
1837
1838 /*
1839  * virtual function driver struct
1840  */
1841 static struct rte_pci_driver rte_ixgbevf_pmd = {
1842         .id_table = pci_id_ixgbevf_map,
1843         .drv_flags = RTE_PCI_DRV_NEED_MAPPING,
1844         .probe = eth_ixgbevf_pci_probe,
1845         .remove = eth_ixgbevf_pci_remove,
1846 };
1847
1848 static int
1849 ixgbe_vlan_filter_set(struct rte_eth_dev *dev, uint16_t vlan_id, int on)
1850 {
1851         struct ixgbe_hw *hw =
1852                 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1853         struct ixgbe_vfta *shadow_vfta =
1854                 IXGBE_DEV_PRIVATE_TO_VFTA(dev->data->dev_private);
1855         uint32_t vfta;
1856         uint32_t vid_idx;
1857         uint32_t vid_bit;
1858
1859         vid_idx = (uint32_t) ((vlan_id >> 5) & 0x7F);
1860         vid_bit = (uint32_t) (1 << (vlan_id & 0x1F));
1861         vfta = IXGBE_READ_REG(hw, IXGBE_VFTA(vid_idx));
1862         if (on)
1863                 vfta |= vid_bit;
1864         else
1865                 vfta &= ~vid_bit;
1866         IXGBE_WRITE_REG(hw, IXGBE_VFTA(vid_idx), vfta);
1867
1868         /* update local VFTA copy */
1869         shadow_vfta->vfta[vid_idx] = vfta;
1870
1871         return 0;
1872 }
1873
1874 static void
1875 ixgbe_vlan_strip_queue_set(struct rte_eth_dev *dev, uint16_t queue, int on)
1876 {
1877         if (on)
1878                 ixgbe_vlan_hw_strip_enable(dev, queue);
1879         else
1880                 ixgbe_vlan_hw_strip_disable(dev, queue);
1881 }
1882
1883 static int
1884 ixgbe_vlan_tpid_set(struct rte_eth_dev *dev,
1885                     enum rte_vlan_type vlan_type,
1886                     uint16_t tpid)
1887 {
1888         struct ixgbe_hw *hw =
1889                 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1890         int ret = 0;
1891         uint32_t reg;
1892         uint32_t qinq;
1893
1894         qinq = IXGBE_READ_REG(hw, IXGBE_DMATXCTL);
1895         qinq &= IXGBE_DMATXCTL_GDV;
1896
1897         switch (vlan_type) {
1898         case ETH_VLAN_TYPE_INNER:
1899                 if (qinq) {
1900                         reg = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
1901                         reg = (reg & (~IXGBE_VLNCTRL_VET)) | (uint32_t)tpid;
1902                         IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, reg);
1903                         reg = IXGBE_READ_REG(hw, IXGBE_DMATXCTL);
1904                         reg = (reg & (~IXGBE_DMATXCTL_VT_MASK))
1905                                 | ((uint32_t)tpid << IXGBE_DMATXCTL_VT_SHIFT);
1906                         IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL, reg);
1907                 } else {
1908                         ret = -ENOTSUP;
1909                         PMD_DRV_LOG(ERR, "Inner type is not supported"
1910                                     " by single VLAN");
1911                 }
1912                 break;
1913         case ETH_VLAN_TYPE_OUTER:
1914                 if (qinq) {
1915                         /* Only the high 16-bits is valid */
1916                         IXGBE_WRITE_REG(hw, IXGBE_EXVET, (uint32_t)tpid <<
1917                                         IXGBE_EXVET_VET_EXT_SHIFT);
1918                 } else {
1919                         reg = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
1920                         reg = (reg & (~IXGBE_VLNCTRL_VET)) | (uint32_t)tpid;
1921                         IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, reg);
1922                         reg = IXGBE_READ_REG(hw, IXGBE_DMATXCTL);
1923                         reg = (reg & (~IXGBE_DMATXCTL_VT_MASK))
1924                                 | ((uint32_t)tpid << IXGBE_DMATXCTL_VT_SHIFT);
1925                         IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL, reg);
1926                 }
1927
1928                 break;
1929         default:
1930                 ret = -EINVAL;
1931                 PMD_DRV_LOG(ERR, "Unsupported VLAN type %d", vlan_type);
1932                 break;
1933         }
1934
1935         return ret;
1936 }
1937
1938 void
1939 ixgbe_vlan_hw_filter_disable(struct rte_eth_dev *dev)
1940 {
1941         struct ixgbe_hw *hw =
1942                 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1943         uint32_t vlnctrl;
1944
1945         PMD_INIT_FUNC_TRACE();
1946
1947         /* Filter Table Disable */
1948         vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
1949         vlnctrl &= ~IXGBE_VLNCTRL_VFE;
1950
1951         IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
1952 }
1953
1954 void
1955 ixgbe_vlan_hw_filter_enable(struct rte_eth_dev *dev)
1956 {
1957         struct ixgbe_hw *hw =
1958                 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1959         struct ixgbe_vfta *shadow_vfta =
1960                 IXGBE_DEV_PRIVATE_TO_VFTA(dev->data->dev_private);
1961         uint32_t vlnctrl;
1962         uint16_t i;
1963
1964         PMD_INIT_FUNC_TRACE();
1965
1966         /* Filter Table Enable */
1967         vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
1968         vlnctrl &= ~IXGBE_VLNCTRL_CFIEN;
1969         vlnctrl |= IXGBE_VLNCTRL_VFE;
1970
1971         IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
1972
1973         /* write whatever is in local vfta copy */
1974         for (i = 0; i < IXGBE_VFTA_SIZE; i++)
1975                 IXGBE_WRITE_REG(hw, IXGBE_VFTA(i), shadow_vfta->vfta[i]);
1976 }
1977
1978 static void
1979 ixgbe_vlan_hw_strip_bitmap_set(struct rte_eth_dev *dev, uint16_t queue, bool on)
1980 {
1981         struct ixgbe_hwstrip *hwstrip =
1982                 IXGBE_DEV_PRIVATE_TO_HWSTRIP_BITMAP(dev->data->dev_private);
1983         struct ixgbe_rx_queue *rxq;
1984
1985         if (queue >= IXGBE_MAX_RX_QUEUE_NUM)
1986                 return;
1987
1988         if (on)
1989                 IXGBE_SET_HWSTRIP(hwstrip, queue);
1990         else
1991                 IXGBE_CLEAR_HWSTRIP(hwstrip, queue);
1992
1993         if (queue >= dev->data->nb_rx_queues)
1994                 return;
1995
1996         rxq = dev->data->rx_queues[queue];
1997
1998         if (on) {
1999                 rxq->vlan_flags = PKT_RX_VLAN | PKT_RX_VLAN_STRIPPED;
2000                 rxq->offloads |= DEV_RX_OFFLOAD_VLAN_STRIP;
2001         } else {
2002                 rxq->vlan_flags = PKT_RX_VLAN;
2003                 rxq->offloads &= ~DEV_RX_OFFLOAD_VLAN_STRIP;
2004         }
2005 }
2006
2007 static void
2008 ixgbe_vlan_hw_strip_disable(struct rte_eth_dev *dev, uint16_t queue)
2009 {
2010         struct ixgbe_hw *hw =
2011                 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2012         uint32_t ctrl;
2013
2014         PMD_INIT_FUNC_TRACE();
2015
2016         if (hw->mac.type == ixgbe_mac_82598EB) {
2017                 /* No queue level support */
2018                 PMD_INIT_LOG(NOTICE, "82598EB not support queue level hw strip");
2019                 return;
2020         }
2021
2022         /* Other 10G NIC, the VLAN strip can be setup per queue in RXDCTL */
2023         ctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(queue));
2024         ctrl &= ~IXGBE_RXDCTL_VME;
2025         IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(queue), ctrl);
2026
2027         /* record those setting for HW strip per queue */
2028         ixgbe_vlan_hw_strip_bitmap_set(dev, queue, 0);
2029 }
2030
2031 static void
2032 ixgbe_vlan_hw_strip_enable(struct rte_eth_dev *dev, uint16_t queue)
2033 {
2034         struct ixgbe_hw *hw =
2035                 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2036         uint32_t ctrl;
2037
2038         PMD_INIT_FUNC_TRACE();
2039
2040         if (hw->mac.type == ixgbe_mac_82598EB) {
2041                 /* No queue level supported */
2042                 PMD_INIT_LOG(NOTICE, "82598EB not support queue level hw strip");
2043                 return;
2044         }
2045
2046         /* Other 10G NIC, the VLAN strip can be setup per queue in RXDCTL */
2047         ctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(queue));
2048         ctrl |= IXGBE_RXDCTL_VME;
2049         IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(queue), ctrl);
2050
2051         /* record those setting for HW strip per queue */
2052         ixgbe_vlan_hw_strip_bitmap_set(dev, queue, 1);
2053 }
2054
2055 static void
2056 ixgbe_vlan_hw_extend_disable(struct rte_eth_dev *dev)
2057 {
2058         struct ixgbe_hw *hw =
2059                 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2060         uint32_t ctrl;
2061
2062         PMD_INIT_FUNC_TRACE();
2063
2064         /* DMATXCTRL: Geric Double VLAN Disable */
2065         ctrl = IXGBE_READ_REG(hw, IXGBE_DMATXCTL);
2066         ctrl &= ~IXGBE_DMATXCTL_GDV;
2067         IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL, ctrl);
2068
2069         /* CTRL_EXT: Global Double VLAN Disable */
2070         ctrl = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT);
2071         ctrl &= ~IXGBE_EXTENDED_VLAN;
2072         IXGBE_WRITE_REG(hw, IXGBE_CTRL_EXT, ctrl);
2073
2074 }
2075
2076 static void
2077 ixgbe_vlan_hw_extend_enable(struct rte_eth_dev *dev)
2078 {
2079         struct ixgbe_hw *hw =
2080                 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2081         uint32_t ctrl;
2082
2083         PMD_INIT_FUNC_TRACE();
2084
2085         /* DMATXCTRL: Geric Double VLAN Enable */
2086         ctrl  = IXGBE_READ_REG(hw, IXGBE_DMATXCTL);
2087         ctrl |= IXGBE_DMATXCTL_GDV;
2088         IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL, ctrl);
2089
2090         /* CTRL_EXT: Global Double VLAN Enable */
2091         ctrl  = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT);
2092         ctrl |= IXGBE_EXTENDED_VLAN;
2093         IXGBE_WRITE_REG(hw, IXGBE_CTRL_EXT, ctrl);
2094
2095         /* Clear pooling mode of PFVTCTL. It's required by X550. */
2096         if (hw->mac.type == ixgbe_mac_X550 ||
2097             hw->mac.type == ixgbe_mac_X550EM_x ||
2098             hw->mac.type == ixgbe_mac_X550EM_a) {
2099                 ctrl = IXGBE_READ_REG(hw, IXGBE_VT_CTL);
2100                 ctrl &= ~IXGBE_VT_CTL_POOLING_MODE_MASK;
2101                 IXGBE_WRITE_REG(hw, IXGBE_VT_CTL, ctrl);
2102         }
2103
2104         /*
2105          * VET EXT field in the EXVET register = 0x8100 by default
2106          * So no need to change. Same to VT field of DMATXCTL register
2107          */
2108 }
2109
2110 void
2111 ixgbe_vlan_hw_strip_config(struct rte_eth_dev *dev)
2112 {
2113         struct ixgbe_hw *hw =
2114                 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2115         struct rte_eth_rxmode *rxmode = &dev->data->dev_conf.rxmode;
2116         uint32_t ctrl;
2117         uint16_t i;
2118         struct ixgbe_rx_queue *rxq;
2119         bool on;
2120
2121         PMD_INIT_FUNC_TRACE();
2122
2123         if (hw->mac.type == ixgbe_mac_82598EB) {
2124                 if (rxmode->offloads & DEV_RX_OFFLOAD_VLAN_STRIP) {
2125                         ctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
2126                         ctrl |= IXGBE_VLNCTRL_VME;
2127                         IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, ctrl);
2128                 } else {
2129                         ctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
2130                         ctrl &= ~IXGBE_VLNCTRL_VME;
2131                         IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, ctrl);
2132                 }
2133         } else {
2134                 /*
2135                  * Other 10G NIC, the VLAN strip can be setup
2136                  * per queue in RXDCTL
2137                  */
2138                 for (i = 0; i < dev->data->nb_rx_queues; i++) {
2139                         rxq = dev->data->rx_queues[i];
2140                         ctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(rxq->reg_idx));
2141                         if (rxq->offloads & DEV_RX_OFFLOAD_VLAN_STRIP) {
2142                                 ctrl |= IXGBE_RXDCTL_VME;
2143                                 on = TRUE;
2144                         } else {
2145                                 ctrl &= ~IXGBE_RXDCTL_VME;
2146                                 on = FALSE;
2147                         }
2148                         IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(rxq->reg_idx), ctrl);
2149
2150                         /* record those setting for HW strip per queue */
2151                         ixgbe_vlan_hw_strip_bitmap_set(dev, i, on);
2152                 }
2153         }
2154 }
2155
2156 static void
2157 ixgbe_config_vlan_strip_on_all_queues(struct rte_eth_dev *dev, int mask)
2158 {
2159         uint16_t i;
2160         struct rte_eth_rxmode *rxmode;
2161         struct ixgbe_rx_queue *rxq;
2162
2163         if (mask & ETH_VLAN_STRIP_MASK) {
2164                 rxmode = &dev->data->dev_conf.rxmode;
2165                 if (rxmode->offloads & DEV_RX_OFFLOAD_VLAN_STRIP)
2166                         for (i = 0; i < dev->data->nb_rx_queues; i++) {
2167                                 rxq = dev->data->rx_queues[i];
2168                                 rxq->offloads |= DEV_RX_OFFLOAD_VLAN_STRIP;
2169                         }
2170                 else
2171                         for (i = 0; i < dev->data->nb_rx_queues; i++) {
2172                                 rxq = dev->data->rx_queues[i];
2173                                 rxq->offloads &= ~DEV_RX_OFFLOAD_VLAN_STRIP;
2174                         }
2175         }
2176 }
2177
2178 static int
2179 ixgbe_vlan_offload_config(struct rte_eth_dev *dev, int mask)
2180 {
2181         struct rte_eth_rxmode *rxmode;
2182         rxmode = &dev->data->dev_conf.rxmode;
2183
2184         if (mask & ETH_VLAN_STRIP_MASK) {
2185                 ixgbe_vlan_hw_strip_config(dev);
2186         }
2187
2188         if (mask & ETH_VLAN_FILTER_MASK) {
2189                 if (rxmode->offloads & DEV_RX_OFFLOAD_VLAN_FILTER)
2190                         ixgbe_vlan_hw_filter_enable(dev);
2191                 else
2192                         ixgbe_vlan_hw_filter_disable(dev);
2193         }
2194
2195         if (mask & ETH_VLAN_EXTEND_MASK) {
2196                 if (rxmode->offloads & DEV_RX_OFFLOAD_VLAN_EXTEND)
2197                         ixgbe_vlan_hw_extend_enable(dev);
2198                 else
2199                         ixgbe_vlan_hw_extend_disable(dev);
2200         }
2201
2202         return 0;
2203 }
2204
2205 static int
2206 ixgbe_vlan_offload_set(struct rte_eth_dev *dev, int mask)
2207 {
2208         ixgbe_config_vlan_strip_on_all_queues(dev, mask);
2209
2210         ixgbe_vlan_offload_config(dev, mask);
2211
2212         return 0;
2213 }
2214
2215 static void
2216 ixgbe_vmdq_vlan_hw_filter_enable(struct rte_eth_dev *dev)
2217 {
2218         struct ixgbe_hw *hw =
2219                 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2220         /* VLNCTRL: enable vlan filtering and allow all vlan tags through */
2221         uint32_t vlanctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
2222
2223         vlanctrl |= IXGBE_VLNCTRL_VFE; /* enable vlan filters */
2224         IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlanctrl);
2225 }
2226
2227 static int
2228 ixgbe_check_vf_rss_rxq_num(struct rte_eth_dev *dev, uint16_t nb_rx_q)
2229 {
2230         struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
2231
2232         switch (nb_rx_q) {
2233         case 1:
2234         case 2:
2235                 RTE_ETH_DEV_SRIOV(dev).active = ETH_64_POOLS;
2236                 break;
2237         case 4:
2238                 RTE_ETH_DEV_SRIOV(dev).active = ETH_32_POOLS;
2239                 break;
2240         default:
2241                 return -EINVAL;
2242         }
2243
2244         RTE_ETH_DEV_SRIOV(dev).nb_q_per_pool =
2245                 IXGBE_MAX_RX_QUEUE_NUM / RTE_ETH_DEV_SRIOV(dev).active;
2246         RTE_ETH_DEV_SRIOV(dev).def_pool_q_idx =
2247                 pci_dev->max_vfs * RTE_ETH_DEV_SRIOV(dev).nb_q_per_pool;
2248         return 0;
2249 }
2250
2251 static int
2252 ixgbe_check_mq_mode(struct rte_eth_dev *dev)
2253 {
2254         struct rte_eth_conf *dev_conf = &dev->data->dev_conf;
2255         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2256         uint16_t nb_rx_q = dev->data->nb_rx_queues;
2257         uint16_t nb_tx_q = dev->data->nb_tx_queues;
2258
2259         if (RTE_ETH_DEV_SRIOV(dev).active != 0) {
2260                 /* check multi-queue mode */
2261                 switch (dev_conf->rxmode.mq_mode) {
2262                 case ETH_MQ_RX_VMDQ_DCB:
2263                         PMD_INIT_LOG(INFO, "ETH_MQ_RX_VMDQ_DCB mode supported in SRIOV");
2264                         break;
2265                 case ETH_MQ_RX_VMDQ_DCB_RSS:
2266                         /* DCB/RSS VMDQ in SRIOV mode, not implement yet */
2267                         PMD_INIT_LOG(ERR, "SRIOV active,"
2268                                         " unsupported mq_mode rx %d.",
2269                                         dev_conf->rxmode.mq_mode);
2270                         return -EINVAL;
2271                 case ETH_MQ_RX_RSS:
2272                 case ETH_MQ_RX_VMDQ_RSS:
2273                         dev->data->dev_conf.rxmode.mq_mode = ETH_MQ_RX_VMDQ_RSS;
2274                         if (nb_rx_q <= RTE_ETH_DEV_SRIOV(dev).nb_q_per_pool)
2275                                 if (ixgbe_check_vf_rss_rxq_num(dev, nb_rx_q)) {
2276                                         PMD_INIT_LOG(ERR, "SRIOV is active,"
2277                                                 " invalid queue number"
2278                                                 " for VMDQ RSS, allowed"
2279                                                 " value are 1, 2 or 4.");
2280                                         return -EINVAL;
2281                                 }
2282                         break;
2283                 case ETH_MQ_RX_VMDQ_ONLY:
2284                 case ETH_MQ_RX_NONE:
2285                         /* if nothing mq mode configure, use default scheme */
2286                         dev->data->dev_conf.rxmode.mq_mode = ETH_MQ_RX_VMDQ_ONLY;
2287                         break;
2288                 default: /* ETH_MQ_RX_DCB, ETH_MQ_RX_DCB_RSS or ETH_MQ_TX_DCB*/
2289                         /* SRIOV only works in VMDq enable mode */
2290                         PMD_INIT_LOG(ERR, "SRIOV is active,"
2291                                         " wrong mq_mode rx %d.",
2292                                         dev_conf->rxmode.mq_mode);
2293                         return -EINVAL;
2294                 }
2295
2296                 switch (dev_conf->txmode.mq_mode) {
2297                 case ETH_MQ_TX_VMDQ_DCB:
2298                         PMD_INIT_LOG(INFO, "ETH_MQ_TX_VMDQ_DCB mode supported in SRIOV");
2299                         dev->data->dev_conf.txmode.mq_mode = ETH_MQ_TX_VMDQ_DCB;
2300                         break;
2301                 default: /* ETH_MQ_TX_VMDQ_ONLY or ETH_MQ_TX_NONE */
2302                         dev->data->dev_conf.txmode.mq_mode = ETH_MQ_TX_VMDQ_ONLY;
2303                         break;
2304                 }
2305
2306                 /* check valid queue number */
2307                 if ((nb_rx_q > RTE_ETH_DEV_SRIOV(dev).nb_q_per_pool) ||
2308                     (nb_tx_q > RTE_ETH_DEV_SRIOV(dev).nb_q_per_pool)) {
2309                         PMD_INIT_LOG(ERR, "SRIOV is active,"
2310                                         " nb_rx_q=%d nb_tx_q=%d queue number"
2311                                         " must be less than or equal to %d.",
2312                                         nb_rx_q, nb_tx_q,
2313                                         RTE_ETH_DEV_SRIOV(dev).nb_q_per_pool);
2314                         return -EINVAL;
2315                 }
2316         } else {
2317                 if (dev_conf->rxmode.mq_mode == ETH_MQ_RX_VMDQ_DCB_RSS) {
2318                         PMD_INIT_LOG(ERR, "VMDQ+DCB+RSS mq_mode is"
2319                                           " not supported.");
2320                         return -EINVAL;
2321                 }
2322                 /* check configuration for vmdb+dcb mode */
2323                 if (dev_conf->rxmode.mq_mode == ETH_MQ_RX_VMDQ_DCB) {
2324                         const struct rte_eth_vmdq_dcb_conf *conf;
2325
2326                         if (nb_rx_q != IXGBE_VMDQ_DCB_NB_QUEUES) {
2327                                 PMD_INIT_LOG(ERR, "VMDQ+DCB, nb_rx_q != %d.",
2328                                                 IXGBE_VMDQ_DCB_NB_QUEUES);
2329                                 return -EINVAL;
2330                         }
2331                         conf = &dev_conf->rx_adv_conf.vmdq_dcb_conf;
2332                         if (!(conf->nb_queue_pools == ETH_16_POOLS ||
2333                                conf->nb_queue_pools == ETH_32_POOLS)) {
2334                                 PMD_INIT_LOG(ERR, "VMDQ+DCB selected,"
2335                                                 " nb_queue_pools must be %d or %d.",
2336                                                 ETH_16_POOLS, ETH_32_POOLS);
2337                                 return -EINVAL;
2338                         }
2339                 }
2340                 if (dev_conf->txmode.mq_mode == ETH_MQ_TX_VMDQ_DCB) {
2341                         const struct rte_eth_vmdq_dcb_tx_conf *conf;
2342
2343                         if (nb_tx_q != IXGBE_VMDQ_DCB_NB_QUEUES) {
2344                                 PMD_INIT_LOG(ERR, "VMDQ+DCB, nb_tx_q != %d",
2345                                                  IXGBE_VMDQ_DCB_NB_QUEUES);
2346                                 return -EINVAL;
2347                         }
2348                         conf = &dev_conf->tx_adv_conf.vmdq_dcb_tx_conf;
2349                         if (!(conf->nb_queue_pools == ETH_16_POOLS ||
2350                                conf->nb_queue_pools == ETH_32_POOLS)) {
2351                                 PMD_INIT_LOG(ERR, "VMDQ+DCB selected,"
2352                                                 " nb_queue_pools != %d and"
2353                                                 " nb_queue_pools != %d.",
2354                                                 ETH_16_POOLS, ETH_32_POOLS);
2355                                 return -EINVAL;
2356                         }
2357                 }
2358
2359                 /* For DCB mode check our configuration before we go further */
2360                 if (dev_conf->rxmode.mq_mode == ETH_MQ_RX_DCB) {
2361                         const struct rte_eth_dcb_rx_conf *conf;
2362
2363                         conf = &dev_conf->rx_adv_conf.dcb_rx_conf;
2364                         if (!(conf->nb_tcs == ETH_4_TCS ||
2365                                conf->nb_tcs == ETH_8_TCS)) {
2366                                 PMD_INIT_LOG(ERR, "DCB selected, nb_tcs != %d"
2367                                                 " and nb_tcs != %d.",
2368                                                 ETH_4_TCS, ETH_8_TCS);
2369                                 return -EINVAL;
2370                         }
2371                 }
2372
2373                 if (dev_conf->txmode.mq_mode == ETH_MQ_TX_DCB) {
2374                         const struct rte_eth_dcb_tx_conf *conf;
2375
2376                         conf = &dev_conf->tx_adv_conf.dcb_tx_conf;
2377                         if (!(conf->nb_tcs == ETH_4_TCS ||
2378                                conf->nb_tcs == ETH_8_TCS)) {
2379                                 PMD_INIT_LOG(ERR, "DCB selected, nb_tcs != %d"
2380                                                 " and nb_tcs != %d.",
2381                                                 ETH_4_TCS, ETH_8_TCS);
2382                                 return -EINVAL;
2383                         }
2384                 }
2385
2386                 /*
2387                  * When DCB/VT is off, maximum number of queues changes,
2388                  * except for 82598EB, which remains constant.
2389                  */
2390                 if (dev_conf->txmode.mq_mode == ETH_MQ_TX_NONE &&
2391                                 hw->mac.type != ixgbe_mac_82598EB) {
2392                         if (nb_tx_q > IXGBE_NONE_MODE_TX_NB_QUEUES) {
2393                                 PMD_INIT_LOG(ERR,
2394                                              "Neither VT nor DCB are enabled, "
2395                                              "nb_tx_q > %d.",
2396                                              IXGBE_NONE_MODE_TX_NB_QUEUES);
2397                                 return -EINVAL;
2398                         }
2399                 }
2400         }
2401         return 0;
2402 }
2403
2404 static int
2405 ixgbe_dev_configure(struct rte_eth_dev *dev)
2406 {
2407         struct ixgbe_interrupt *intr =
2408                 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
2409         struct ixgbe_adapter *adapter = dev->data->dev_private;
2410         int ret;
2411
2412         PMD_INIT_FUNC_TRACE();
2413
2414         if (dev->data->dev_conf.rxmode.mq_mode & ETH_MQ_RX_RSS_FLAG)
2415                 dev->data->dev_conf.rxmode.offloads |= DEV_RX_OFFLOAD_RSS_HASH;
2416
2417         /* multipe queue mode checking */
2418         ret  = ixgbe_check_mq_mode(dev);
2419         if (ret != 0) {
2420                 PMD_DRV_LOG(ERR, "ixgbe_check_mq_mode fails with %d.",
2421                             ret);
2422                 return ret;
2423         }
2424
2425         /* set flag to update link status after init */
2426         intr->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
2427
2428         /*
2429          * Initialize to TRUE. If any of Rx queues doesn't meet the bulk
2430          * allocation or vector Rx preconditions we will reset it.
2431          */
2432         adapter->rx_bulk_alloc_allowed = true;
2433         adapter->rx_vec_allowed = true;
2434
2435         return 0;
2436 }
2437
2438 static void
2439 ixgbe_dev_phy_intr_setup(struct rte_eth_dev *dev)
2440 {
2441         struct ixgbe_hw *hw =
2442                 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2443         struct ixgbe_interrupt *intr =
2444                 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
2445         uint32_t gpie;
2446
2447         /* only set up it on X550EM_X */
2448         if (hw->mac.type == ixgbe_mac_X550EM_x) {
2449                 gpie = IXGBE_READ_REG(hw, IXGBE_GPIE);
2450                 gpie |= IXGBE_SDP0_GPIEN_X550EM_x;
2451                 IXGBE_WRITE_REG(hw, IXGBE_GPIE, gpie);
2452                 if (hw->phy.type == ixgbe_phy_x550em_ext_t)
2453                         intr->mask |= IXGBE_EICR_GPI_SDP0_X550EM_x;
2454         }
2455 }
2456
2457 int
2458 ixgbe_set_vf_rate_limit(struct rte_eth_dev *dev, uint16_t vf,
2459                         uint16_t tx_rate, uint64_t q_msk)
2460 {
2461         struct ixgbe_hw *hw;
2462         struct ixgbe_vf_info *vfinfo;
2463         struct rte_eth_link link;
2464         uint8_t  nb_q_per_pool;
2465         uint32_t queue_stride;
2466         uint32_t queue_idx, idx = 0, vf_idx;
2467         uint32_t queue_end;
2468         uint16_t total_rate = 0;
2469         struct rte_pci_device *pci_dev;
2470         int ret;
2471
2472         pci_dev = RTE_ETH_DEV_TO_PCI(dev);
2473         ret = rte_eth_link_get_nowait(dev->data->port_id, &link);
2474         if (ret < 0)
2475                 return ret;
2476
2477         if (vf >= pci_dev->max_vfs)
2478                 return -EINVAL;
2479
2480         if (tx_rate > link.link_speed)
2481                 return -EINVAL;
2482
2483         if (q_msk == 0)
2484                 return 0;
2485
2486         hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2487         vfinfo = *(IXGBE_DEV_PRIVATE_TO_P_VFDATA(dev->data->dev_private));
2488         nb_q_per_pool = RTE_ETH_DEV_SRIOV(dev).nb_q_per_pool;
2489         queue_stride = IXGBE_MAX_RX_QUEUE_NUM / RTE_ETH_DEV_SRIOV(dev).active;
2490         queue_idx = vf * queue_stride;
2491         queue_end = queue_idx + nb_q_per_pool - 1;
2492         if (queue_end >= hw->mac.max_tx_queues)
2493                 return -EINVAL;
2494
2495         if (vfinfo) {
2496                 for (vf_idx = 0; vf_idx < pci_dev->max_vfs; vf_idx++) {
2497                         if (vf_idx == vf)
2498                                 continue;
2499                         for (idx = 0; idx < RTE_DIM(vfinfo[vf_idx].tx_rate);
2500                                 idx++)
2501                                 total_rate += vfinfo[vf_idx].tx_rate[idx];
2502                 }
2503         } else {
2504                 return -EINVAL;
2505         }
2506
2507         /* Store tx_rate for this vf. */
2508         for (idx = 0; idx < nb_q_per_pool; idx++) {
2509                 if (((uint64_t)0x1 << idx) & q_msk) {
2510                         if (vfinfo[vf].tx_rate[idx] != tx_rate)
2511                                 vfinfo[vf].tx_rate[idx] = tx_rate;
2512                         total_rate += tx_rate;
2513                 }
2514         }
2515
2516         if (total_rate > dev->data->dev_link.link_speed) {
2517                 /* Reset stored TX rate of the VF if it causes exceed
2518                  * link speed.
2519                  */
2520                 memset(vfinfo[vf].tx_rate, 0, sizeof(vfinfo[vf].tx_rate));
2521                 return -EINVAL;
2522         }
2523
2524         /* Set RTTBCNRC of each queue/pool for vf X  */
2525         for (; queue_idx <= queue_end; queue_idx++) {
2526                 if (0x1 & q_msk)
2527                         ixgbe_set_queue_rate_limit(dev, queue_idx, tx_rate);
2528                 q_msk = q_msk >> 1;
2529         }
2530
2531         return 0;
2532 }
2533
2534 /*
2535  * Configure device link speed and setup link.
2536  * It returns 0 on success.
2537  */
2538 static int
2539 ixgbe_dev_start(struct rte_eth_dev *dev)
2540 {
2541         struct ixgbe_hw *hw =
2542                 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2543         struct ixgbe_vf_info *vfinfo =
2544                 *IXGBE_DEV_PRIVATE_TO_P_VFDATA(dev->data->dev_private);
2545         struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
2546         struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
2547         uint32_t intr_vector = 0;
2548         int err, link_up = 0, negotiate = 0;
2549         uint32_t speed = 0;
2550         uint32_t allowed_speeds = 0;
2551         int mask = 0;
2552         int status;
2553         uint16_t vf, idx;
2554         uint32_t *link_speeds;
2555         struct ixgbe_tm_conf *tm_conf =
2556                 IXGBE_DEV_PRIVATE_TO_TM_CONF(dev->data->dev_private);
2557         struct ixgbe_macsec_setting *macsec_setting =
2558                 IXGBE_DEV_PRIVATE_TO_MACSEC_SETTING(dev->data->dev_private);
2559
2560         PMD_INIT_FUNC_TRACE();
2561
2562         /* IXGBE devices don't support:
2563         *    - half duplex (checked afterwards for valid speeds)
2564         *    - fixed speed: TODO implement
2565         */
2566         if (dev->data->dev_conf.link_speeds & ETH_LINK_SPEED_FIXED) {
2567                 PMD_INIT_LOG(ERR,
2568                 "Invalid link_speeds for port %u, fix speed not supported",
2569                                 dev->data->port_id);
2570                 return -EINVAL;
2571         }
2572
2573         /* Stop the link setup handler before resetting the HW. */
2574         rte_eal_alarm_cancel(ixgbe_dev_setup_link_alarm_handler, dev);
2575
2576         /* disable uio/vfio intr/eventfd mapping */
2577         rte_intr_disable(intr_handle);
2578
2579         /* stop adapter */
2580         hw->adapter_stopped = 0;
2581         ixgbe_stop_adapter(hw);
2582
2583         /* reinitialize adapter
2584          * this calls reset and start
2585          */
2586         status = ixgbe_pf_reset_hw(hw);
2587         if (status != 0)
2588                 return -1;
2589         hw->mac.ops.start_hw(hw);
2590         hw->mac.get_link_status = true;
2591
2592         /* configure PF module if SRIOV enabled */
2593         ixgbe_pf_host_configure(dev);
2594
2595         ixgbe_dev_phy_intr_setup(dev);
2596
2597         /* check and configure queue intr-vector mapping */
2598         if ((rte_intr_cap_multiple(intr_handle) ||
2599              !RTE_ETH_DEV_SRIOV(dev).active) &&
2600             dev->data->dev_conf.intr_conf.rxq != 0) {
2601                 intr_vector = dev->data->nb_rx_queues;
2602                 if (intr_vector > IXGBE_MAX_INTR_QUEUE_NUM) {
2603                         PMD_INIT_LOG(ERR, "At most %d intr queues supported",
2604                                         IXGBE_MAX_INTR_QUEUE_NUM);
2605                         return -ENOTSUP;
2606                 }
2607                 if (rte_intr_efd_enable(intr_handle, intr_vector))
2608                         return -1;
2609         }
2610
2611         if (rte_intr_dp_is_en(intr_handle) && !intr_handle->intr_vec) {
2612                 intr_handle->intr_vec =
2613                         rte_zmalloc("intr_vec",
2614                                     dev->data->nb_rx_queues * sizeof(int), 0);
2615                 if (intr_handle->intr_vec == NULL) {
2616                         PMD_INIT_LOG(ERR, "Failed to allocate %d rx_queues"
2617                                      " intr_vec", dev->data->nb_rx_queues);
2618                         return -ENOMEM;
2619                 }
2620         }
2621
2622         /* confiugre msix for sleep until rx interrupt */
2623         ixgbe_configure_msix(dev);
2624
2625         /* initialize transmission unit */
2626         ixgbe_dev_tx_init(dev);
2627
2628         /* This can fail when allocating mbufs for descriptor rings */
2629         err = ixgbe_dev_rx_init(dev);
2630         if (err) {
2631                 PMD_INIT_LOG(ERR, "Unable to initialize RX hardware");
2632                 goto error;
2633         }
2634
2635         mask = ETH_VLAN_STRIP_MASK | ETH_VLAN_FILTER_MASK |
2636                 ETH_VLAN_EXTEND_MASK;
2637         err = ixgbe_vlan_offload_config(dev, mask);
2638         if (err) {
2639                 PMD_INIT_LOG(ERR, "Unable to set VLAN offload");
2640                 goto error;
2641         }
2642
2643         if (dev->data->dev_conf.rxmode.mq_mode == ETH_MQ_RX_VMDQ_ONLY) {
2644                 /* Enable vlan filtering for VMDq */
2645                 ixgbe_vmdq_vlan_hw_filter_enable(dev);
2646         }
2647
2648         /* Configure DCB hw */
2649         ixgbe_configure_dcb(dev);
2650
2651         if (dev->data->dev_conf.fdir_conf.mode != RTE_FDIR_MODE_NONE) {
2652                 err = ixgbe_fdir_configure(dev);
2653                 if (err)
2654                         goto error;
2655         }
2656
2657         /* Restore vf rate limit */
2658         if (vfinfo != NULL) {
2659                 for (vf = 0; vf < pci_dev->max_vfs; vf++)
2660                         for (idx = 0; idx < IXGBE_MAX_QUEUE_NUM_PER_VF; idx++)
2661                                 if (vfinfo[vf].tx_rate[idx] != 0)
2662                                         ixgbe_set_vf_rate_limit(
2663                                                 dev, vf,
2664                                                 vfinfo[vf].tx_rate[idx],
2665                                                 1 << idx);
2666         }
2667
2668         ixgbe_restore_statistics_mapping(dev);
2669
2670         err = ixgbe_dev_rxtx_start(dev);
2671         if (err < 0) {
2672                 PMD_INIT_LOG(ERR, "Unable to start rxtx queues");
2673                 goto error;
2674         }
2675
2676         /* Skip link setup if loopback mode is enabled. */
2677         if (dev->data->dev_conf.lpbk_mode != 0) {
2678                 err = ixgbe_check_supported_loopback_mode(dev);
2679                 if (err < 0) {
2680                         PMD_INIT_LOG(ERR, "Unsupported loopback mode");
2681                         goto error;
2682                 } else {
2683                         goto skip_link_setup;
2684                 }
2685         }
2686
2687         if (ixgbe_is_sfp(hw) && hw->phy.multispeed_fiber) {
2688                 err = hw->mac.ops.setup_sfp(hw);
2689                 if (err)
2690                         goto error;
2691         }
2692
2693         if (hw->mac.ops.get_media_type(hw) == ixgbe_media_type_copper) {
2694                 /* Turn on the copper */
2695                 ixgbe_set_phy_power(hw, true);
2696         } else {
2697                 /* Turn on the laser */
2698                 ixgbe_enable_tx_laser(hw);
2699         }
2700
2701         err = ixgbe_check_link(hw, &speed, &link_up, 0);
2702         if (err)
2703                 goto error;
2704         dev->data->dev_link.link_status = link_up;
2705
2706         err = ixgbe_get_link_capabilities(hw, &speed, &negotiate);
2707         if (err)
2708                 goto error;
2709
2710         switch (hw->mac.type) {
2711         case ixgbe_mac_X550:
2712         case ixgbe_mac_X550EM_x:
2713         case ixgbe_mac_X550EM_a:
2714                 allowed_speeds = ETH_LINK_SPEED_100M | ETH_LINK_SPEED_1G |
2715                         ETH_LINK_SPEED_2_5G |  ETH_LINK_SPEED_5G |
2716                         ETH_LINK_SPEED_10G;
2717                 if (hw->device_id == IXGBE_DEV_ID_X550EM_A_1G_T ||
2718                                 hw->device_id == IXGBE_DEV_ID_X550EM_A_1G_T_L)
2719                         allowed_speeds = ETH_LINK_SPEED_10M |
2720                                 ETH_LINK_SPEED_100M | ETH_LINK_SPEED_1G;
2721                 break;
2722         default:
2723                 allowed_speeds = ETH_LINK_SPEED_100M | ETH_LINK_SPEED_1G |
2724                         ETH_LINK_SPEED_10G;
2725         }
2726
2727         link_speeds = &dev->data->dev_conf.link_speeds;
2728         if (*link_speeds & ~allowed_speeds) {
2729                 PMD_INIT_LOG(ERR, "Invalid link setting");
2730                 goto error;
2731         }
2732
2733         speed = 0x0;
2734         if (*link_speeds == ETH_LINK_SPEED_AUTONEG) {
2735                 switch (hw->mac.type) {
2736                 case ixgbe_mac_82598EB:
2737                         speed = IXGBE_LINK_SPEED_82598_AUTONEG;
2738                         break;
2739                 case ixgbe_mac_82599EB:
2740                 case ixgbe_mac_X540:
2741                         speed = IXGBE_LINK_SPEED_82599_AUTONEG;
2742                         break;
2743                 case ixgbe_mac_X550:
2744                 case ixgbe_mac_X550EM_x:
2745                 case ixgbe_mac_X550EM_a:
2746                         speed = IXGBE_LINK_SPEED_X550_AUTONEG;
2747                         break;
2748                 default:
2749                         speed = IXGBE_LINK_SPEED_82599_AUTONEG;
2750                 }
2751         } else {
2752                 if (*link_speeds & ETH_LINK_SPEED_10G)
2753                         speed |= IXGBE_LINK_SPEED_10GB_FULL;
2754                 if (*link_speeds & ETH_LINK_SPEED_5G)
2755                         speed |= IXGBE_LINK_SPEED_5GB_FULL;
2756                 if (*link_speeds & ETH_LINK_SPEED_2_5G)
2757                         speed |= IXGBE_LINK_SPEED_2_5GB_FULL;
2758                 if (*link_speeds & ETH_LINK_SPEED_1G)
2759                         speed |= IXGBE_LINK_SPEED_1GB_FULL;
2760                 if (*link_speeds & ETH_LINK_SPEED_100M)
2761                         speed |= IXGBE_LINK_SPEED_100_FULL;
2762                 if (*link_speeds & ETH_LINK_SPEED_10M)
2763                         speed |= IXGBE_LINK_SPEED_10_FULL;
2764         }
2765
2766         err = ixgbe_setup_link(hw, speed, link_up);
2767         if (err)
2768                 goto error;
2769
2770 skip_link_setup:
2771
2772         if (rte_intr_allow_others(intr_handle)) {
2773                 /* check if lsc interrupt is enabled */
2774                 if (dev->data->dev_conf.intr_conf.lsc != 0)
2775                         ixgbe_dev_lsc_interrupt_setup(dev, TRUE);
2776                 else
2777                         ixgbe_dev_lsc_interrupt_setup(dev, FALSE);
2778                 ixgbe_dev_macsec_interrupt_setup(dev);
2779         } else {
2780                 rte_intr_callback_unregister(intr_handle,
2781                                              ixgbe_dev_interrupt_handler, dev);
2782                 if (dev->data->dev_conf.intr_conf.lsc != 0)
2783                         PMD_INIT_LOG(INFO, "lsc won't enable because of"
2784                                      " no intr multiplex");
2785         }
2786
2787         /* check if rxq interrupt is enabled */
2788         if (dev->data->dev_conf.intr_conf.rxq != 0 &&
2789             rte_intr_dp_is_en(intr_handle))
2790                 ixgbe_dev_rxq_interrupt_setup(dev);
2791
2792         /* enable uio/vfio intr/eventfd mapping */
2793         rte_intr_enable(intr_handle);
2794
2795         /* resume enabled intr since hw reset */
2796         ixgbe_enable_intr(dev);
2797         ixgbe_l2_tunnel_conf(dev);
2798         ixgbe_filter_restore(dev);
2799
2800         if (tm_conf->root && !tm_conf->committed)
2801                 PMD_DRV_LOG(WARNING,
2802                             "please call hierarchy_commit() "
2803                             "before starting the port");
2804
2805         /* wait for the controller to acquire link */
2806         err = ixgbe_wait_for_link_up(hw);
2807         if (err)
2808                 goto error;
2809
2810         /*
2811          * Update link status right before return, because it may
2812          * start link configuration process in a separate thread.
2813          */
2814         ixgbe_dev_link_update(dev, 0);
2815
2816         /* setup the macsec setting register */
2817         if (macsec_setting->offload_en)
2818                 ixgbe_dev_macsec_register_enable(dev, macsec_setting);
2819
2820         return 0;
2821
2822 error:
2823         PMD_INIT_LOG(ERR, "failure in ixgbe_dev_start(): %d", err);
2824         ixgbe_dev_clear_queues(dev);
2825         return -EIO;
2826 }
2827
2828 /*
2829  * Stop device: disable rx and tx functions to allow for reconfiguring.
2830  */
2831 static void
2832 ixgbe_dev_stop(struct rte_eth_dev *dev)
2833 {
2834         struct rte_eth_link link;
2835         struct ixgbe_adapter *adapter = dev->data->dev_private;
2836         struct ixgbe_hw *hw =
2837                 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2838         struct ixgbe_vf_info *vfinfo =
2839                 *IXGBE_DEV_PRIVATE_TO_P_VFDATA(dev->data->dev_private);
2840         struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
2841         struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
2842         int vf;
2843         struct ixgbe_tm_conf *tm_conf =
2844                 IXGBE_DEV_PRIVATE_TO_TM_CONF(dev->data->dev_private);
2845
2846         if (hw->adapter_stopped)
2847                 return;
2848
2849         PMD_INIT_FUNC_TRACE();
2850
2851         rte_eal_alarm_cancel(ixgbe_dev_setup_link_alarm_handler, dev);
2852
2853         /* disable interrupts */
2854         ixgbe_disable_intr(hw);
2855
2856         /* reset the NIC */
2857         ixgbe_pf_reset_hw(hw);
2858         hw->adapter_stopped = 0;
2859
2860         /* stop adapter */
2861         ixgbe_stop_adapter(hw);
2862
2863         for (vf = 0; vfinfo != NULL && vf < pci_dev->max_vfs; vf++)
2864                 vfinfo[vf].clear_to_send = false;
2865
2866         if (hw->mac.ops.get_media_type(hw) == ixgbe_media_type_copper) {
2867                 /* Turn off the copper */
2868                 ixgbe_set_phy_power(hw, false);
2869         } else {
2870                 /* Turn off the laser */
2871                 ixgbe_disable_tx_laser(hw);
2872         }
2873
2874         ixgbe_dev_clear_queues(dev);
2875
2876         /* Clear stored conf */
2877         dev->data->scattered_rx = 0;
2878         dev->data->lro = 0;
2879
2880         /* Clear recorded link status */
2881         memset(&link, 0, sizeof(link));
2882         rte_eth_linkstatus_set(dev, &link);
2883
2884         if (!rte_intr_allow_others(intr_handle))
2885                 /* resume to the default handler */
2886                 rte_intr_callback_register(intr_handle,
2887                                            ixgbe_dev_interrupt_handler,
2888                                            (void *)dev);
2889
2890         /* Clean datapath event and queue/vec mapping */
2891         rte_intr_efd_disable(intr_handle);
2892         if (intr_handle->intr_vec != NULL) {
2893                 rte_free(intr_handle->intr_vec);
2894                 intr_handle->intr_vec = NULL;
2895         }
2896
2897         /* reset hierarchy commit */
2898         tm_conf->committed = false;
2899
2900         adapter->rss_reta_updated = 0;
2901
2902         hw->adapter_stopped = true;
2903 }
2904
2905 /*
2906  * Set device link up: enable tx.
2907  */
2908 static int
2909 ixgbe_dev_set_link_up(struct rte_eth_dev *dev)
2910 {
2911         struct ixgbe_hw *hw =
2912                 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2913         if (hw->mac.type == ixgbe_mac_82599EB) {
2914 #ifdef RTE_LIBRTE_IXGBE_BYPASS
2915                 if (hw->device_id == IXGBE_DEV_ID_82599_BYPASS) {
2916                         /* Not suported in bypass mode */
2917                         PMD_INIT_LOG(ERR, "Set link up is not supported "
2918                                      "by device id 0x%x", hw->device_id);
2919                         return -ENOTSUP;
2920                 }
2921 #endif
2922         }
2923
2924         if (hw->mac.ops.get_media_type(hw) == ixgbe_media_type_copper) {
2925                 /* Turn on the copper */
2926                 ixgbe_set_phy_power(hw, true);
2927         } else {
2928                 /* Turn on the laser */
2929                 ixgbe_enable_tx_laser(hw);
2930                 ixgbe_dev_link_update(dev, 0);
2931         }
2932
2933         return 0;
2934 }
2935
2936 /*
2937  * Set device link down: disable tx.
2938  */
2939 static int
2940 ixgbe_dev_set_link_down(struct rte_eth_dev *dev)
2941 {
2942         struct ixgbe_hw *hw =
2943                 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2944         if (hw->mac.type == ixgbe_mac_82599EB) {
2945 #ifdef RTE_LIBRTE_IXGBE_BYPASS
2946                 if (hw->device_id == IXGBE_DEV_ID_82599_BYPASS) {
2947                         /* Not suported in bypass mode */
2948                         PMD_INIT_LOG(ERR, "Set link down is not supported "
2949                                      "by device id 0x%x", hw->device_id);
2950                         return -ENOTSUP;
2951                 }
2952 #endif
2953         }
2954
2955         if (hw->mac.ops.get_media_type(hw) == ixgbe_media_type_copper) {
2956                 /* Turn off the copper */
2957                 ixgbe_set_phy_power(hw, false);
2958         } else {
2959                 /* Turn off the laser */
2960                 ixgbe_disable_tx_laser(hw);
2961                 ixgbe_dev_link_update(dev, 0);
2962         }
2963
2964         return 0;
2965 }
2966
2967 /*
2968  * Reset and stop device.
2969  */
2970 static void
2971 ixgbe_dev_close(struct rte_eth_dev *dev)
2972 {
2973         struct ixgbe_hw *hw =
2974                 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2975         struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
2976         struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
2977         int retries = 0;
2978         int ret;
2979
2980         PMD_INIT_FUNC_TRACE();
2981
2982         ixgbe_pf_reset_hw(hw);
2983
2984         ixgbe_dev_stop(dev);
2985
2986         ixgbe_dev_free_queues(dev);
2987
2988         ixgbe_disable_pcie_master(hw);
2989
2990         /* reprogram the RAR[0] in case user changed it. */
2991         ixgbe_set_rar(hw, 0, hw->mac.addr, 0, IXGBE_RAH_AV);
2992
2993         dev->dev_ops = NULL;
2994         dev->rx_pkt_burst = NULL;
2995         dev->tx_pkt_burst = NULL;
2996
2997         /* Unlock any pending hardware semaphore */
2998         ixgbe_swfw_lock_reset(hw);
2999
3000         /* disable uio intr before callback unregister */
3001         rte_intr_disable(intr_handle);
3002
3003         do {
3004                 ret = rte_intr_callback_unregister(intr_handle,
3005                                 ixgbe_dev_interrupt_handler, dev);
3006                 if (ret >= 0 || ret == -ENOENT) {
3007                         break;
3008                 } else if (ret != -EAGAIN) {
3009                         PMD_INIT_LOG(ERR,
3010                                 "intr callback unregister failed: %d",
3011                                 ret);
3012                 }
3013                 rte_delay_ms(100);
3014         } while (retries++ < (10 + IXGBE_LINK_UP_TIME));
3015
3016         /* cancel the delay handler before remove dev */
3017         rte_eal_alarm_cancel(ixgbe_dev_interrupt_delayed_handler, dev);
3018
3019         /* uninitialize PF if max_vfs not zero */
3020         ixgbe_pf_host_uninit(dev);
3021
3022         /* remove all the fdir filters & hash */
3023         ixgbe_fdir_filter_uninit(dev);
3024
3025         /* remove all the L2 tunnel filters & hash */
3026         ixgbe_l2_tn_filter_uninit(dev);
3027
3028         /* Remove all ntuple filters of the device */
3029         ixgbe_ntuple_filter_uninit(dev);
3030
3031         /* clear all the filters list */
3032         ixgbe_filterlist_flush();
3033
3034         /* Remove all Traffic Manager configuration */
3035         ixgbe_tm_conf_uninit(dev);
3036
3037 #ifdef RTE_LIBRTE_SECURITY
3038         rte_free(dev->security_ctx);
3039 #endif
3040
3041 }
3042
3043 /*
3044  * Reset PF device.
3045  */
3046 static int
3047 ixgbe_dev_reset(struct rte_eth_dev *dev)
3048 {
3049         int ret;
3050
3051         /* When a DPDK PMD PF begin to reset PF port, it should notify all
3052          * its VF to make them align with it. The detailed notification
3053          * mechanism is PMD specific. As to ixgbe PF, it is rather complex.
3054          * To avoid unexpected behavior in VF, currently reset of PF with
3055          * SR-IOV activation is not supported. It might be supported later.
3056          */
3057         if (dev->data->sriov.active)
3058                 return -ENOTSUP;
3059
3060         ret = eth_ixgbe_dev_uninit(dev);
3061         if (ret)
3062                 return ret;
3063
3064         ret = eth_ixgbe_dev_init(dev, NULL);
3065
3066         return ret;
3067 }
3068
3069 static void
3070 ixgbe_read_stats_registers(struct ixgbe_hw *hw,
3071                            struct ixgbe_hw_stats *hw_stats,
3072                            struct ixgbe_macsec_stats *macsec_stats,
3073                            uint64_t *total_missed_rx, uint64_t *total_qbrc,
3074                            uint64_t *total_qprc, uint64_t *total_qprdc)
3075 {
3076         uint32_t bprc, lxon, lxoff, total;
3077         uint32_t delta_gprc = 0;
3078         unsigned i;
3079         /* Workaround for RX byte count not including CRC bytes when CRC
3080          * strip is enabled. CRC bytes are removed from counters when crc_strip
3081          * is disabled.
3082          */
3083         int crc_strip = (IXGBE_READ_REG(hw, IXGBE_HLREG0) &
3084                         IXGBE_HLREG0_RXCRCSTRP);
3085
3086         hw_stats->crcerrs += IXGBE_READ_REG(hw, IXGBE_CRCERRS);
3087         hw_stats->illerrc += IXGBE_READ_REG(hw, IXGBE_ILLERRC);
3088         hw_stats->errbc += IXGBE_READ_REG(hw, IXGBE_ERRBC);
3089         hw_stats->mspdc += IXGBE_READ_REG(hw, IXGBE_MSPDC);
3090
3091         for (i = 0; i < 8; i++) {
3092                 uint32_t mp = IXGBE_READ_REG(hw, IXGBE_MPC(i));
3093
3094                 /* global total per queue */
3095                 hw_stats->mpc[i] += mp;
3096                 /* Running comprehensive total for stats display */
3097                 *total_missed_rx += hw_stats->mpc[i];
3098                 if (hw->mac.type == ixgbe_mac_82598EB) {
3099                         hw_stats->rnbc[i] +=
3100                             IXGBE_READ_REG(hw, IXGBE_RNBC(i));
3101                         hw_stats->pxonrxc[i] +=
3102                                 IXGBE_READ_REG(hw, IXGBE_PXONRXC(i));
3103                         hw_stats->pxoffrxc[i] +=
3104                                 IXGBE_READ_REG(hw, IXGBE_PXOFFRXC(i));
3105                 } else {
3106                         hw_stats->pxonrxc[i] +=
3107                                 IXGBE_READ_REG(hw, IXGBE_PXONRXCNT(i));
3108                         hw_stats->pxoffrxc[i] +=
3109                                 IXGBE_READ_REG(hw, IXGBE_PXOFFRXCNT(i));
3110                         hw_stats->pxon2offc[i] +=
3111                                 IXGBE_READ_REG(hw, IXGBE_PXON2OFFCNT(i));
3112                 }
3113                 hw_stats->pxontxc[i] +=
3114                     IXGBE_READ_REG(hw, IXGBE_PXONTXC(i));
3115                 hw_stats->pxofftxc[i] +=
3116                     IXGBE_READ_REG(hw, IXGBE_PXOFFTXC(i));
3117         }
3118         for (i = 0; i < IXGBE_QUEUE_STAT_COUNTERS; i++) {
3119                 uint32_t delta_qprc = IXGBE_READ_REG(hw, IXGBE_QPRC(i));
3120                 uint32_t delta_qptc = IXGBE_READ_REG(hw, IXGBE_QPTC(i));
3121                 uint32_t delta_qprdc = IXGBE_READ_REG(hw, IXGBE_QPRDC(i));
3122
3123                 delta_gprc += delta_qprc;
3124
3125                 hw_stats->qprc[i] += delta_qprc;
3126                 hw_stats->qptc[i] += delta_qptc;
3127
3128                 hw_stats->qbrc[i] += IXGBE_READ_REG(hw, IXGBE_QBRC_L(i));
3129                 hw_stats->qbrc[i] +=
3130                     ((uint64_t)IXGBE_READ_REG(hw, IXGBE_QBRC_H(i)) << 32);
3131                 if (crc_strip == 0)
3132                         hw_stats->qbrc[i] -= delta_qprc * RTE_ETHER_CRC_LEN;
3133
3134                 hw_stats->qbtc[i] += IXGBE_READ_REG(hw, IXGBE_QBTC_L(i));
3135                 hw_stats->qbtc[i] +=
3136                     ((uint64_t)IXGBE_READ_REG(hw, IXGBE_QBTC_H(i)) << 32);
3137
3138                 hw_stats->qprdc[i] += delta_qprdc;
3139                 *total_qprdc += hw_stats->qprdc[i];
3140
3141                 *total_qprc += hw_stats->qprc[i];
3142                 *total_qbrc += hw_stats->qbrc[i];
3143         }
3144         hw_stats->mlfc += IXGBE_READ_REG(hw, IXGBE_MLFC);
3145         hw_stats->mrfc += IXGBE_READ_REG(hw, IXGBE_MRFC);
3146         hw_stats->rlec += IXGBE_READ_REG(hw, IXGBE_RLEC);
3147
3148         /*
3149          * An errata states that gprc actually counts good + missed packets:
3150          * Workaround to set gprc to summated queue packet receives
3151          */
3152         hw_stats->gprc = *total_qprc;
3153
3154         if (hw->mac.type != ixgbe_mac_82598EB) {
3155                 hw_stats->gorc += IXGBE_READ_REG(hw, IXGBE_GORCL);
3156                 hw_stats->gorc += ((u64)IXGBE_READ_REG(hw, IXGBE_GORCH) << 32);
3157                 hw_stats->gotc += IXGBE_READ_REG(hw, IXGBE_GOTCL);
3158                 hw_stats->gotc += ((u64)IXGBE_READ_REG(hw, IXGBE_GOTCH) << 32);
3159                 hw_stats->tor += IXGBE_READ_REG(hw, IXGBE_TORL);
3160                 hw_stats->tor += ((u64)IXGBE_READ_REG(hw, IXGBE_TORH) << 32);
3161                 hw_stats->lxonrxc += IXGBE_READ_REG(hw, IXGBE_LXONRXCNT);
3162                 hw_stats->lxoffrxc += IXGBE_READ_REG(hw, IXGBE_LXOFFRXCNT);
3163         } else {
3164                 hw_stats->lxonrxc += IXGBE_READ_REG(hw, IXGBE_LXONRXC);
3165                 hw_stats->lxoffrxc += IXGBE_READ_REG(hw, IXGBE_LXOFFRXC);
3166                 /* 82598 only has a counter in the high register */
3167                 hw_stats->gorc += IXGBE_READ_REG(hw, IXGBE_GORCH);
3168                 hw_stats->gotc += IXGBE_READ_REG(hw, IXGBE_GOTCH);
3169                 hw_stats->tor += IXGBE_READ_REG(hw, IXGBE_TORH);
3170         }
3171         uint64_t old_tpr = hw_stats->tpr;
3172
3173         hw_stats->tpr += IXGBE_READ_REG(hw, IXGBE_TPR);
3174         hw_stats->tpt += IXGBE_READ_REG(hw, IXGBE_TPT);
3175
3176         if (crc_strip == 0)
3177                 hw_stats->gorc -= delta_gprc * RTE_ETHER_CRC_LEN;
3178
3179         uint64_t delta_gptc = IXGBE_READ_REG(hw, IXGBE_GPTC);
3180         hw_stats->gptc += delta_gptc;
3181         hw_stats->gotc -= delta_gptc * RTE_ETHER_CRC_LEN;
3182         hw_stats->tor -= (hw_stats->tpr - old_tpr) * RTE_ETHER_CRC_LEN;
3183
3184         /*
3185          * Workaround: mprc hardware is incorrectly counting
3186          * broadcasts, so for now we subtract those.
3187          */
3188         bprc = IXGBE_READ_REG(hw, IXGBE_BPRC);
3189         hw_stats->bprc += bprc;
3190         hw_stats->mprc += IXGBE_READ_REG(hw, IXGBE_MPRC);
3191         if (hw->mac.type == ixgbe_mac_82598EB)
3192                 hw_stats->mprc -= bprc;
3193
3194         hw_stats->prc64 += IXGBE_READ_REG(hw, IXGBE_PRC64);
3195         hw_stats->prc127 += IXGBE_READ_REG(hw, IXGBE_PRC127);
3196         hw_stats->prc255 += IXGBE_READ_REG(hw, IXGBE_PRC255);
3197         hw_stats->prc511 += IXGBE_READ_REG(hw, IXGBE_PRC511);
3198         hw_stats->prc1023 += IXGBE_READ_REG(hw, IXGBE_PRC1023);
3199         hw_stats->prc1522 += IXGBE_READ_REG(hw, IXGBE_PRC1522);
3200
3201         lxon = IXGBE_READ_REG(hw, IXGBE_LXONTXC);
3202         hw_stats->lxontxc += lxon;
3203         lxoff = IXGBE_READ_REG(hw, IXGBE_LXOFFTXC);
3204         hw_stats->lxofftxc += lxoff;
3205         total = lxon + lxoff;
3206
3207         hw_stats->mptc += IXGBE_READ_REG(hw, IXGBE_MPTC);
3208         hw_stats->ptc64 += IXGBE_READ_REG(hw, IXGBE_PTC64);
3209         hw_stats->gptc -= total;
3210         hw_stats->mptc -= total;
3211         hw_stats->ptc64 -= total;
3212         hw_stats->gotc -= total * RTE_ETHER_MIN_LEN;
3213
3214         hw_stats->ruc += IXGBE_READ_REG(hw, IXGBE_RUC);
3215         hw_stats->rfc += IXGBE_READ_REG(hw, IXGBE_RFC);
3216         hw_stats->roc += IXGBE_READ_REG(hw, IXGBE_ROC);
3217         hw_stats->rjc += IXGBE_READ_REG(hw, IXGBE_RJC);
3218         hw_stats->mngprc += IXGBE_READ_REG(hw, IXGBE_MNGPRC);
3219         hw_stats->mngpdc += IXGBE_READ_REG(hw, IXGBE_MNGPDC);
3220         hw_stats->mngptc += IXGBE_READ_REG(hw, IXGBE_MNGPTC);
3221         hw_stats->ptc127 += IXGBE_READ_REG(hw, IXGBE_PTC127);
3222         hw_stats->ptc255 += IXGBE_READ_REG(hw, IXGBE_PTC255);
3223         hw_stats->ptc511 += IXGBE_READ_REG(hw, IXGBE_PTC511);
3224         hw_stats->ptc1023 += IXGBE_READ_REG(hw, IXGBE_PTC1023);
3225         hw_stats->ptc1522 += IXGBE_READ_REG(hw, IXGBE_PTC1522);
3226         hw_stats->bptc += IXGBE_READ_REG(hw, IXGBE_BPTC);
3227         hw_stats->xec += IXGBE_READ_REG(hw, IXGBE_XEC);
3228         hw_stats->fccrc += IXGBE_READ_REG(hw, IXGBE_FCCRC);
3229         hw_stats->fclast += IXGBE_READ_REG(hw, IXGBE_FCLAST);
3230         /* Only read FCOE on 82599 */
3231         if (hw->mac.type != ixgbe_mac_82598EB) {
3232                 hw_stats->fcoerpdc += IXGBE_READ_REG(hw, IXGBE_FCOERPDC);
3233                 hw_stats->fcoeprc += IXGBE_READ_REG(hw, IXGBE_FCOEPRC);
3234                 hw_stats->fcoeptc += IXGBE_READ_REG(hw, IXGBE_FCOEPTC);
3235                 hw_stats->fcoedwrc += IXGBE_READ_REG(hw, IXGBE_FCOEDWRC);
3236                 hw_stats->fcoedwtc += IXGBE_READ_REG(hw, IXGBE_FCOEDWTC);
3237         }
3238
3239         /* Flow Director Stats registers */
3240         if (hw->mac.type != ixgbe_mac_82598EB) {
3241                 hw_stats->fdirmatch += IXGBE_READ_REG(hw, IXGBE_FDIRMATCH);
3242                 hw_stats->fdirmiss += IXGBE_READ_REG(hw, IXGBE_FDIRMISS);
3243                 hw_stats->fdirustat_add += IXGBE_READ_REG(hw,
3244                                         IXGBE_FDIRUSTAT) & 0xFFFF;
3245                 hw_stats->fdirustat_remove += (IXGBE_READ_REG(hw,
3246                                         IXGBE_FDIRUSTAT) >> 16) & 0xFFFF;
3247                 hw_stats->fdirfstat_fadd += IXGBE_READ_REG(hw,
3248                                         IXGBE_FDIRFSTAT) & 0xFFFF;
3249                 hw_stats->fdirfstat_fremove += (IXGBE_READ_REG(hw,
3250                                         IXGBE_FDIRFSTAT) >> 16) & 0xFFFF;
3251         }
3252         /* MACsec Stats registers */
3253         macsec_stats->out_pkts_untagged += IXGBE_READ_REG(hw, IXGBE_LSECTXUT);
3254         macsec_stats->out_pkts_encrypted +=
3255                 IXGBE_READ_REG(hw, IXGBE_LSECTXPKTE);
3256         macsec_stats->out_pkts_protected +=
3257                 IXGBE_READ_REG(hw, IXGBE_LSECTXPKTP);
3258         macsec_stats->out_octets_encrypted +=
3259                 IXGBE_READ_REG(hw, IXGBE_LSECTXOCTE);
3260         macsec_stats->out_octets_protected +=
3261                 IXGBE_READ_REG(hw, IXGBE_LSECTXOCTP);
3262         macsec_stats->in_pkts_untagged += IXGBE_READ_REG(hw, IXGBE_LSECRXUT);
3263         macsec_stats->in_pkts_badtag += IXGBE_READ_REG(hw, IXGBE_LSECRXBAD);
3264         macsec_stats->in_pkts_nosci += IXGBE_READ_REG(hw, IXGBE_LSECRXNOSCI);
3265         macsec_stats->in_pkts_unknownsci +=
3266                 IXGBE_READ_REG(hw, IXGBE_LSECRXUNSCI);
3267         macsec_stats->in_octets_decrypted +=
3268                 IXGBE_READ_REG(hw, IXGBE_LSECRXOCTD);
3269         macsec_stats->in_octets_validated +=
3270                 IXGBE_READ_REG(hw, IXGBE_LSECRXOCTV);
3271         macsec_stats->in_pkts_unchecked += IXGBE_READ_REG(hw, IXGBE_LSECRXUNCH);
3272         macsec_stats->in_pkts_delayed += IXGBE_READ_REG(hw, IXGBE_LSECRXDELAY);
3273         macsec_stats->in_pkts_late += IXGBE_READ_REG(hw, IXGBE_LSECRXLATE);
3274         for (i = 0; i < 2; i++) {
3275                 macsec_stats->in_pkts_ok +=
3276                         IXGBE_READ_REG(hw, IXGBE_LSECRXOK(i));
3277                 macsec_stats->in_pkts_invalid +=
3278                         IXGBE_READ_REG(hw, IXGBE_LSECRXINV(i));
3279                 macsec_stats->in_pkts_notvalid +=
3280                         IXGBE_READ_REG(hw, IXGBE_LSECRXNV(i));
3281         }
3282         macsec_stats->in_pkts_unusedsa += IXGBE_READ_REG(hw, IXGBE_LSECRXUNSA);
3283         macsec_stats->in_pkts_notusingsa +=
3284                 IXGBE_READ_REG(hw, IXGBE_LSECRXNUSA);
3285 }
3286
3287 /*
3288  * This function is based on ixgbe_update_stats_counters() in ixgbe/ixgbe.c
3289  */
3290 static int
3291 ixgbe_dev_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats)
3292 {
3293         struct ixgbe_hw *hw =
3294                         IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3295         struct ixgbe_hw_stats *hw_stats =
3296                         IXGBE_DEV_PRIVATE_TO_STATS(dev->data->dev_private);
3297         struct ixgbe_macsec_stats *macsec_stats =
3298                         IXGBE_DEV_PRIVATE_TO_MACSEC_STATS(
3299                                 dev->data->dev_private);
3300         uint64_t total_missed_rx, total_qbrc, total_qprc, total_qprdc;
3301         unsigned i;
3302
3303         total_missed_rx = 0;
3304         total_qbrc = 0;
3305         total_qprc = 0;
3306         total_qprdc = 0;
3307
3308         ixgbe_read_stats_registers(hw, hw_stats, macsec_stats, &total_missed_rx,
3309                         &total_qbrc, &total_qprc, &total_qprdc);
3310
3311         if (stats == NULL)
3312                 return -EINVAL;
3313
3314         /* Fill out the rte_eth_stats statistics structure */
3315         stats->ipackets = total_qprc;
3316         stats->ibytes = total_qbrc;
3317         stats->opackets = hw_stats->gptc;
3318         stats->obytes = hw_stats->gotc;
3319
3320         for (i = 0; i < IXGBE_QUEUE_STAT_COUNTERS; i++) {
3321                 stats->q_ipackets[i] = hw_stats->qprc[i];
3322                 stats->q_opackets[i] = hw_stats->qptc[i];
3323                 stats->q_ibytes[i] = hw_stats->qbrc[i];
3324                 stats->q_obytes[i] = hw_stats->qbtc[i];
3325                 stats->q_errors[i] = hw_stats->qprdc[i];
3326         }
3327
3328         /* Rx Errors */
3329         stats->imissed  = total_missed_rx;
3330         stats->ierrors  = hw_stats->crcerrs +
3331                           hw_stats->mspdc +
3332                           hw_stats->rlec +
3333                           hw_stats->ruc +
3334                           hw_stats->roc +
3335                           hw_stats->illerrc +
3336                           hw_stats->errbc +
3337                           hw_stats->rfc +
3338                           hw_stats->fccrc +
3339                           hw_stats->fclast;
3340
3341         /* Tx Errors */
3342         stats->oerrors  = 0;
3343         return 0;
3344 }
3345
3346 static int
3347 ixgbe_dev_stats_reset(struct rte_eth_dev *dev)
3348 {
3349         struct ixgbe_hw_stats *stats =
3350                         IXGBE_DEV_PRIVATE_TO_STATS(dev->data->dev_private);
3351
3352         /* HW registers are cleared on read */
3353         ixgbe_dev_stats_get(dev, NULL);
3354
3355         /* Reset software totals */
3356         memset(stats, 0, sizeof(*stats));
3357
3358         return 0;
3359 }
3360
3361 /* This function calculates the number of xstats based on the current config */
3362 static unsigned
3363 ixgbe_xstats_calc_num(void) {
3364         return IXGBE_NB_HW_STATS + IXGBE_NB_MACSEC_STATS +
3365                 (IXGBE_NB_RXQ_PRIO_STATS * IXGBE_NB_RXQ_PRIO_VALUES) +
3366                 (IXGBE_NB_TXQ_PRIO_STATS * IXGBE_NB_TXQ_PRIO_VALUES);
3367 }
3368
3369 static int ixgbe_dev_xstats_get_names(__rte_unused struct rte_eth_dev *dev,
3370         struct rte_eth_xstat_name *xstats_names, __rte_unused unsigned int size)
3371 {
3372         const unsigned cnt_stats = ixgbe_xstats_calc_num();
3373         unsigned stat, i, count;
3374
3375         if (xstats_names != NULL) {
3376                 count = 0;
3377
3378                 /* Note: limit >= cnt_stats checked upstream
3379                  * in rte_eth_xstats_names()
3380                  */
3381
3382                 /* Extended stats from ixgbe_hw_stats */
3383                 for (i = 0; i < IXGBE_NB_HW_STATS; i++) {
3384                         strlcpy(xstats_names[count].name,
3385                                 rte_ixgbe_stats_strings[i].name,
3386                                 sizeof(xstats_names[count].name));
3387                         count++;
3388                 }
3389
3390                 /* MACsec Stats */
3391                 for (i = 0; i < IXGBE_NB_MACSEC_STATS; i++) {
3392                         strlcpy(xstats_names[count].name,
3393                                 rte_ixgbe_macsec_strings[i].name,
3394                                 sizeof(xstats_names[count].name));
3395                         count++;
3396                 }
3397
3398                 /* RX Priority Stats */
3399                 for (stat = 0; stat < IXGBE_NB_RXQ_PRIO_STATS; stat++) {
3400                         for (i = 0; i < IXGBE_NB_RXQ_PRIO_VALUES; i++) {
3401                                 snprintf(xstats_names[count].name,
3402                                         sizeof(xstats_names[count].name),
3403                                         "rx_priority%u_%s", i,
3404                                         rte_ixgbe_rxq_strings[stat].name);
3405                                 count++;
3406                         }
3407                 }
3408
3409                 /* TX Priority Stats */
3410                 for (stat = 0; stat < IXGBE_NB_TXQ_PRIO_STATS; stat++) {
3411                         for (i = 0; i < IXGBE_NB_TXQ_PRIO_VALUES; i++) {
3412                                 snprintf(xstats_names[count].name,
3413                                         sizeof(xstats_names[count].name),
3414                                         "tx_priority%u_%s", i,
3415                                         rte_ixgbe_txq_strings[stat].name);
3416                                 count++;
3417                         }
3418                 }
3419         }
3420         return cnt_stats;
3421 }
3422
3423 static int ixgbe_dev_xstats_get_names_by_id(
3424         struct rte_eth_dev *dev,
3425         struct rte_eth_xstat_name *xstats_names,
3426         const uint64_t *ids,
3427         unsigned int limit)
3428 {
3429         if (!ids) {
3430                 const unsigned int cnt_stats = ixgbe_xstats_calc_num();
3431                 unsigned int stat, i, count;
3432
3433                 if (xstats_names != NULL) {
3434                         count = 0;
3435
3436                         /* Note: limit >= cnt_stats checked upstream
3437                          * in rte_eth_xstats_names()
3438                          */
3439
3440                         /* Extended stats from ixgbe_hw_stats */
3441                         for (i = 0; i < IXGBE_NB_HW_STATS; i++) {
3442                                 strlcpy(xstats_names[count].name,
3443                                         rte_ixgbe_stats_strings[i].name,
3444                                         sizeof(xstats_names[count].name));
3445                                 count++;
3446                         }
3447
3448                         /* MACsec Stats */
3449                         for (i = 0; i < IXGBE_NB_MACSEC_STATS; i++) {
3450                                 strlcpy(xstats_names[count].name,
3451                                         rte_ixgbe_macsec_strings[i].name,
3452                                         sizeof(xstats_names[count].name));
3453                                 count++;
3454                         }
3455
3456                         /* RX Priority Stats */
3457                         for (stat = 0; stat < IXGBE_NB_RXQ_PRIO_STATS; stat++) {
3458                                 for (i = 0; i < IXGBE_NB_RXQ_PRIO_VALUES; i++) {
3459                                         snprintf(xstats_names[count].name,
3460                                             sizeof(xstats_names[count].name),
3461                                             "rx_priority%u_%s", i,
3462                                             rte_ixgbe_rxq_strings[stat].name);
3463                                         count++;
3464                                 }
3465                         }
3466
3467                         /* TX Priority Stats */
3468                         for (stat = 0; stat < IXGBE_NB_TXQ_PRIO_STATS; stat++) {
3469                                 for (i = 0; i < IXGBE_NB_TXQ_PRIO_VALUES; i++) {
3470                                         snprintf(xstats_names[count].name,
3471                                             sizeof(xstats_names[count].name),
3472                                             "tx_priority%u_%s", i,
3473                                             rte_ixgbe_txq_strings[stat].name);
3474                                         count++;
3475                                 }
3476                         }
3477                 }
3478                 return cnt_stats;
3479         }
3480
3481         uint16_t i;
3482         uint16_t size = ixgbe_xstats_calc_num();
3483         struct rte_eth_xstat_name xstats_names_copy[size];
3484
3485         ixgbe_dev_xstats_get_names_by_id(dev, xstats_names_copy, NULL,
3486                         size);
3487
3488         for (i = 0; i < limit; i++) {
3489                 if (ids[i] >= size) {
3490                         PMD_INIT_LOG(ERR, "id value isn't valid");
3491                         return -1;
3492                 }
3493                 strcpy(xstats_names[i].name,
3494                                 xstats_names_copy[ids[i]].name);
3495         }
3496         return limit;
3497 }
3498
3499 static int ixgbevf_dev_xstats_get_names(__rte_unused struct rte_eth_dev *dev,
3500         struct rte_eth_xstat_name *xstats_names, unsigned limit)
3501 {
3502         unsigned i;
3503
3504         if (limit < IXGBEVF_NB_XSTATS && xstats_names != NULL)
3505                 return -ENOMEM;
3506
3507         if (xstats_names != NULL)
3508                 for (i = 0; i < IXGBEVF_NB_XSTATS; i++)
3509                         strlcpy(xstats_names[i].name,
3510                                 rte_ixgbevf_stats_strings[i].name,
3511                                 sizeof(xstats_names[i].name));
3512         return IXGBEVF_NB_XSTATS;
3513 }
3514
3515 static int
3516 ixgbe_dev_xstats_get(struct rte_eth_dev *dev, struct rte_eth_xstat *xstats,
3517                                          unsigned n)
3518 {
3519         struct ixgbe_hw *hw =
3520                         IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3521         struct ixgbe_hw_stats *hw_stats =
3522                         IXGBE_DEV_PRIVATE_TO_STATS(dev->data->dev_private);
3523         struct ixgbe_macsec_stats *macsec_stats =
3524                         IXGBE_DEV_PRIVATE_TO_MACSEC_STATS(
3525                                 dev->data->dev_private);
3526         uint64_t total_missed_rx, total_qbrc, total_qprc, total_qprdc;
3527         unsigned i, stat, count = 0;
3528
3529         count = ixgbe_xstats_calc_num();
3530
3531         if (n < count)
3532                 return count;
3533
3534         total_missed_rx = 0;
3535         total_qbrc = 0;
3536         total_qprc = 0;
3537         total_qprdc = 0;
3538
3539         ixgbe_read_stats_registers(hw, hw_stats, macsec_stats, &total_missed_rx,
3540                         &total_qbrc, &total_qprc, &total_qprdc);
3541
3542         /* If this is a reset xstats is NULL, and we have cleared the
3543          * registers by reading them.
3544          */
3545         if (!xstats)
3546                 return 0;
3547
3548         /* Extended stats from ixgbe_hw_stats */
3549         count = 0;
3550         for (i = 0; i < IXGBE_NB_HW_STATS; i++) {
3551                 xstats[count].value = *(uint64_t *)(((char *)hw_stats) +
3552                                 rte_ixgbe_stats_strings[i].offset);
3553                 xstats[count].id = count;
3554                 count++;
3555         }
3556
3557         /* MACsec Stats */
3558         for (i = 0; i < IXGBE_NB_MACSEC_STATS; i++) {
3559                 xstats[count].value = *(uint64_t *)(((char *)macsec_stats) +
3560                                 rte_ixgbe_macsec_strings[i].offset);
3561                 xstats[count].id = count;
3562                 count++;
3563         }
3564
3565         /* RX Priority Stats */
3566         for (stat = 0; stat < IXGBE_NB_RXQ_PRIO_STATS; stat++) {
3567                 for (i = 0; i < IXGBE_NB_RXQ_PRIO_VALUES; i++) {
3568                         xstats[count].value = *(uint64_t *)(((char *)hw_stats) +
3569                                         rte_ixgbe_rxq_strings[stat].offset +
3570                                         (sizeof(uint64_t) * i));
3571                         xstats[count].id = count;
3572                         count++;
3573                 }
3574         }
3575
3576         /* TX Priority Stats */
3577         for (stat = 0; stat < IXGBE_NB_TXQ_PRIO_STATS; stat++) {
3578                 for (i = 0; i < IXGBE_NB_TXQ_PRIO_VALUES; i++) {
3579                         xstats[count].value = *(uint64_t *)(((char *)hw_stats) +
3580                                         rte_ixgbe_txq_strings[stat].offset +
3581                                         (sizeof(uint64_t) * i));
3582                         xstats[count].id = count;
3583                         count++;
3584                 }
3585         }
3586         return count;
3587 }
3588
3589 static int
3590 ixgbe_dev_xstats_get_by_id(struct rte_eth_dev *dev, const uint64_t *ids,
3591                 uint64_t *values, unsigned int n)
3592 {
3593         if (!ids) {
3594                 struct ixgbe_hw *hw =
3595                                 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3596                 struct ixgbe_hw_stats *hw_stats =
3597                                 IXGBE_DEV_PRIVATE_TO_STATS(
3598                                                 dev->data->dev_private);
3599                 struct ixgbe_macsec_stats *macsec_stats =
3600                                 IXGBE_DEV_PRIVATE_TO_MACSEC_STATS(
3601                                         dev->data->dev_private);
3602                 uint64_t total_missed_rx, total_qbrc, total_qprc, total_qprdc;
3603                 unsigned int i, stat, count = 0;
3604
3605                 count = ixgbe_xstats_calc_num();
3606
3607                 if (!ids && n < count)
3608                         return count;
3609
3610                 total_missed_rx = 0;
3611                 total_qbrc = 0;
3612                 total_qprc = 0;
3613                 total_qprdc = 0;
3614
3615                 ixgbe_read_stats_registers(hw, hw_stats, macsec_stats,
3616                                 &total_missed_rx, &total_qbrc, &total_qprc,
3617                                 &total_qprdc);
3618
3619                 /* If this is a reset xstats is NULL, and we have cleared the
3620                  * registers by reading them.
3621                  */
3622                 if (!ids && !values)
3623                         return 0;
3624
3625                 /* Extended stats from ixgbe_hw_stats */
3626                 count = 0;
3627                 for (i = 0; i < IXGBE_NB_HW_STATS; i++) {
3628                         values[count] = *(uint64_t *)(((char *)hw_stats) +
3629                                         rte_ixgbe_stats_strings[i].offset);
3630                         count++;
3631                 }
3632
3633                 /* MACsec Stats */
3634                 for (i = 0; i < IXGBE_NB_MACSEC_STATS; i++) {
3635                         values[count] = *(uint64_t *)(((char *)macsec_stats) +
3636                                         rte_ixgbe_macsec_strings[i].offset);
3637                         count++;
3638                 }
3639
3640                 /* RX Priority Stats */
3641                 for (stat = 0; stat < IXGBE_NB_RXQ_PRIO_STATS; stat++) {
3642                         for (i = 0; i < IXGBE_NB_RXQ_PRIO_VALUES; i++) {
3643                                 values[count] =
3644                                         *(uint64_t *)(((char *)hw_stats) +
3645                                         rte_ixgbe_rxq_strings[stat].offset +
3646                                         (sizeof(uint64_t) * i));
3647                                 count++;
3648                         }
3649                 }
3650
3651                 /* TX Priority Stats */
3652                 for (stat = 0; stat < IXGBE_NB_TXQ_PRIO_STATS; stat++) {
3653                         for (i = 0; i < IXGBE_NB_TXQ_PRIO_VALUES; i++) {
3654                                 values[count] =
3655                                         *(uint64_t *)(((char *)hw_stats) +
3656                                         rte_ixgbe_txq_strings[stat].offset +
3657                                         (sizeof(uint64_t) * i));
3658                                 count++;
3659                         }
3660                 }
3661                 return count;
3662         }
3663
3664         uint16_t i;
3665         uint16_t size = ixgbe_xstats_calc_num();
3666         uint64_t values_copy[size];
3667
3668         ixgbe_dev_xstats_get_by_id(dev, NULL, values_copy, size);
3669
3670         for (i = 0; i < n; i++) {
3671                 if (ids[i] >= size) {
3672                         PMD_INIT_LOG(ERR, "id value isn't valid");
3673                         return -1;
3674                 }
3675                 values[i] = values_copy[ids[i]];
3676         }
3677         return n;
3678 }
3679
3680 static int
3681 ixgbe_dev_xstats_reset(struct rte_eth_dev *dev)
3682 {
3683         struct ixgbe_hw_stats *stats =
3684                         IXGBE_DEV_PRIVATE_TO_STATS(dev->data->dev_private);
3685         struct ixgbe_macsec_stats *macsec_stats =
3686                         IXGBE_DEV_PRIVATE_TO_MACSEC_STATS(
3687                                 dev->data->dev_private);
3688
3689         unsigned count = ixgbe_xstats_calc_num();
3690
3691         /* HW registers are cleared on read */
3692         ixgbe_dev_xstats_get(dev, NULL, count);
3693
3694         /* Reset software totals */
3695         memset(stats, 0, sizeof(*stats));
3696         memset(macsec_stats, 0, sizeof(*macsec_stats));
3697
3698         return 0;
3699 }
3700
3701 static void
3702 ixgbevf_update_stats(struct rte_eth_dev *dev)
3703 {
3704         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3705         struct ixgbevf_hw_stats *hw_stats = (struct ixgbevf_hw_stats *)
3706                           IXGBE_DEV_PRIVATE_TO_STATS(dev->data->dev_private);
3707
3708         /* Good Rx packet, include VF loopback */
3709         UPDATE_VF_STAT(IXGBE_VFGPRC,
3710             hw_stats->last_vfgprc, hw_stats->vfgprc);
3711
3712         /* Good Rx octets, include VF loopback */
3713         UPDATE_VF_STAT_36BIT(IXGBE_VFGORC_LSB, IXGBE_VFGORC_MSB,
3714             hw_stats->last_vfgorc, hw_stats->vfgorc);
3715
3716         /* Good Tx packet, include VF loopback */
3717         UPDATE_VF_STAT(IXGBE_VFGPTC,
3718             hw_stats->last_vfgptc, hw_stats->vfgptc);
3719
3720         /* Good Tx octets, include VF loopback */
3721         UPDATE_VF_STAT_36BIT(IXGBE_VFGOTC_LSB, IXGBE_VFGOTC_MSB,
3722             hw_stats->last_vfgotc, hw_stats->vfgotc);
3723
3724         /* Rx Multicst Packet */
3725         UPDATE_VF_STAT(IXGBE_VFMPRC,
3726             hw_stats->last_vfmprc, hw_stats->vfmprc);
3727 }
3728
3729 static int
3730 ixgbevf_dev_xstats_get(struct rte_eth_dev *dev, struct rte_eth_xstat *xstats,
3731                        unsigned n)
3732 {
3733         struct ixgbevf_hw_stats *hw_stats = (struct ixgbevf_hw_stats *)
3734                         IXGBE_DEV_PRIVATE_TO_STATS(dev->data->dev_private);
3735         unsigned i;
3736
3737         if (n < IXGBEVF_NB_XSTATS)
3738                 return IXGBEVF_NB_XSTATS;
3739
3740         ixgbevf_update_stats(dev);
3741
3742         if (!xstats)
3743                 return 0;
3744
3745         /* Extended stats */
3746         for (i = 0; i < IXGBEVF_NB_XSTATS; i++) {
3747                 xstats[i].id = i;
3748                 xstats[i].value = *(uint64_t *)(((char *)hw_stats) +
3749                         rte_ixgbevf_stats_strings[i].offset);
3750         }
3751
3752         return IXGBEVF_NB_XSTATS;
3753 }
3754
3755 static int
3756 ixgbevf_dev_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats)
3757 {
3758         struct ixgbevf_hw_stats *hw_stats = (struct ixgbevf_hw_stats *)
3759                           IXGBE_DEV_PRIVATE_TO_STATS(dev->data->dev_private);
3760
3761         ixgbevf_update_stats(dev);
3762
3763         if (stats == NULL)
3764                 return -EINVAL;
3765
3766         stats->ipackets = hw_stats->vfgprc;
3767         stats->ibytes = hw_stats->vfgorc;
3768         stats->opackets = hw_stats->vfgptc;
3769         stats->obytes = hw_stats->vfgotc;
3770         return 0;
3771 }
3772
3773 static int
3774 ixgbevf_dev_stats_reset(struct rte_eth_dev *dev)
3775 {
3776         struct ixgbevf_hw_stats *hw_stats = (struct ixgbevf_hw_stats *)
3777                         IXGBE_DEV_PRIVATE_TO_STATS(dev->data->dev_private);
3778
3779         /* Sync HW register to the last stats */
3780         ixgbevf_dev_stats_get(dev, NULL);
3781
3782         /* reset HW current stats*/
3783         hw_stats->vfgprc = 0;
3784         hw_stats->vfgorc = 0;
3785         hw_stats->vfgptc = 0;
3786         hw_stats->vfgotc = 0;
3787
3788         return 0;
3789 }
3790
3791 static int
3792 ixgbe_fw_version_get(struct rte_eth_dev *dev, char *fw_version, size_t fw_size)
3793 {
3794         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3795         u16 eeprom_verh, eeprom_verl;
3796         u32 etrack_id;
3797         int ret;
3798
3799         ixgbe_read_eeprom(hw, 0x2e, &eeprom_verh);
3800         ixgbe_read_eeprom(hw, 0x2d, &eeprom_verl);
3801
3802         etrack_id = (eeprom_verh << 16) | eeprom_verl;
3803         ret = snprintf(fw_version, fw_size, "0x%08x", etrack_id);
3804
3805         ret += 1; /* add the size of '\0' */
3806         if (fw_size < (u32)ret)
3807                 return ret;
3808         else
3809                 return 0;
3810 }
3811
3812 static int
3813 ixgbe_dev_info_get(struct rte_eth_dev *dev, struct rte_eth_dev_info *dev_info)
3814 {
3815         struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
3816         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3817         struct rte_eth_conf *dev_conf = &dev->data->dev_conf;
3818
3819         dev_info->max_rx_queues = (uint16_t)hw->mac.max_rx_queues;
3820         dev_info->max_tx_queues = (uint16_t)hw->mac.max_tx_queues;
3821         if (RTE_ETH_DEV_SRIOV(dev).active == 0) {
3822                 /*
3823                  * When DCB/VT is off, maximum number of queues changes,
3824                  * except for 82598EB, which remains constant.
3825                  */
3826                 if (dev_conf->txmode.mq_mode == ETH_MQ_TX_NONE &&
3827                                 hw->mac.type != ixgbe_mac_82598EB)
3828                         dev_info->max_tx_queues = IXGBE_NONE_MODE_TX_NB_QUEUES;
3829         }
3830         dev_info->min_rx_bufsize = 1024; /* cf BSIZEPACKET in SRRCTL register */
3831         dev_info->max_rx_pktlen = 15872; /* includes CRC, cf MAXFRS register */
3832         dev_info->max_mac_addrs = hw->mac.num_rar_entries;
3833         dev_info->max_hash_mac_addrs = IXGBE_VMDQ_NUM_UC_MAC;
3834         dev_info->max_vfs = pci_dev->max_vfs;
3835         if (hw->mac.type == ixgbe_mac_82598EB)
3836                 dev_info->max_vmdq_pools = ETH_16_POOLS;
3837         else
3838                 dev_info->max_vmdq_pools = ETH_64_POOLS;
3839         dev_info->max_mtu =  dev_info->max_rx_pktlen - IXGBE_ETH_OVERHEAD;
3840         dev_info->min_mtu = RTE_ETHER_MIN_MTU;
3841         dev_info->vmdq_queue_num = dev_info->max_rx_queues;
3842         dev_info->rx_queue_offload_capa = ixgbe_get_rx_queue_offloads(dev);
3843         dev_info->rx_offload_capa = (ixgbe_get_rx_port_offloads(dev) |
3844                                      dev_info->rx_queue_offload_capa);
3845         dev_info->tx_queue_offload_capa = ixgbe_get_tx_queue_offloads(dev);
3846         dev_info->tx_offload_capa = ixgbe_get_tx_port_offloads(dev);
3847
3848         dev_info->default_rxconf = (struct rte_eth_rxconf) {
3849                 .rx_thresh = {
3850                         .pthresh = IXGBE_DEFAULT_RX_PTHRESH,
3851                         .hthresh = IXGBE_DEFAULT_RX_HTHRESH,
3852                         .wthresh = IXGBE_DEFAULT_RX_WTHRESH,
3853                 },
3854                 .rx_free_thresh = IXGBE_DEFAULT_RX_FREE_THRESH,
3855                 .rx_drop_en = 0,
3856                 .offloads = 0,
3857         };
3858
3859         dev_info->default_txconf = (struct rte_eth_txconf) {
3860                 .tx_thresh = {
3861                         .pthresh = IXGBE_DEFAULT_TX_PTHRESH,
3862                         .hthresh = IXGBE_DEFAULT_TX_HTHRESH,
3863                         .wthresh = IXGBE_DEFAULT_TX_WTHRESH,
3864                 },
3865                 .tx_free_thresh = IXGBE_DEFAULT_TX_FREE_THRESH,
3866                 .tx_rs_thresh = IXGBE_DEFAULT_TX_RSBIT_THRESH,
3867                 .offloads = 0,
3868         };
3869
3870         dev_info->rx_desc_lim = rx_desc_lim;
3871         dev_info->tx_desc_lim = tx_desc_lim;
3872
3873         dev_info->hash_key_size = IXGBE_HKEY_MAX_INDEX * sizeof(uint32_t);
3874         dev_info->reta_size = ixgbe_reta_size_get(hw->mac.type);
3875         dev_info->flow_type_rss_offloads = IXGBE_RSS_OFFLOAD_ALL;
3876
3877         dev_info->speed_capa = ETH_LINK_SPEED_1G | ETH_LINK_SPEED_10G;
3878         if (hw->device_id == IXGBE_DEV_ID_X550EM_A_1G_T ||
3879                         hw->device_id == IXGBE_DEV_ID_X550EM_A_1G_T_L)
3880                 dev_info->speed_capa = ETH_LINK_SPEED_10M |
3881                         ETH_LINK_SPEED_100M | ETH_LINK_SPEED_1G;
3882
3883         if (hw->mac.type == ixgbe_mac_X540 ||
3884             hw->mac.type == ixgbe_mac_X540_vf ||
3885             hw->mac.type == ixgbe_mac_X550 ||
3886             hw->mac.type == ixgbe_mac_X550_vf) {
3887                 dev_info->speed_capa |= ETH_LINK_SPEED_100M;
3888         }
3889         if (hw->mac.type == ixgbe_mac_X550) {
3890                 dev_info->speed_capa |= ETH_LINK_SPEED_2_5G;
3891                 dev_info->speed_capa |= ETH_LINK_SPEED_5G;
3892         }
3893
3894         /* Driver-preferred Rx/Tx parameters */
3895         dev_info->default_rxportconf.burst_size = 32;
3896         dev_info->default_txportconf.burst_size = 32;
3897         dev_info->default_rxportconf.nb_queues = 1;
3898         dev_info->default_txportconf.nb_queues = 1;
3899         dev_info->default_rxportconf.ring_size = 256;
3900         dev_info->default_txportconf.ring_size = 256;
3901
3902         return 0;
3903 }
3904
3905 static const uint32_t *
3906 ixgbe_dev_supported_ptypes_get(struct rte_eth_dev *dev)
3907 {
3908         static const uint32_t ptypes[] = {
3909                 /* For non-vec functions,
3910                  * refers to ixgbe_rxd_pkt_info_to_pkt_type();
3911                  * for vec functions,
3912                  * refers to _recv_raw_pkts_vec().
3913                  */
3914                 RTE_PTYPE_L2_ETHER,
3915                 RTE_PTYPE_L3_IPV4,
3916                 RTE_PTYPE_L3_IPV4_EXT,
3917                 RTE_PTYPE_L3_IPV6,
3918                 RTE_PTYPE_L3_IPV6_EXT,
3919                 RTE_PTYPE_L4_SCTP,
3920                 RTE_PTYPE_L4_TCP,
3921                 RTE_PTYPE_L4_UDP,
3922                 RTE_PTYPE_TUNNEL_IP,
3923                 RTE_PTYPE_INNER_L3_IPV6,
3924                 RTE_PTYPE_INNER_L3_IPV6_EXT,
3925                 RTE_PTYPE_INNER_L4_TCP,
3926                 RTE_PTYPE_INNER_L4_UDP,
3927                 RTE_PTYPE_UNKNOWN
3928         };
3929
3930         if (dev->rx_pkt_burst == ixgbe_recv_pkts ||
3931             dev->rx_pkt_burst == ixgbe_recv_pkts_lro_single_alloc ||
3932             dev->rx_pkt_burst == ixgbe_recv_pkts_lro_bulk_alloc ||
3933             dev->rx_pkt_burst == ixgbe_recv_pkts_bulk_alloc)
3934                 return ptypes;
3935
3936 #if defined(RTE_ARCH_X86) || defined(RTE_MACHINE_CPUFLAG_NEON)
3937         if (dev->rx_pkt_burst == ixgbe_recv_pkts_vec ||
3938             dev->rx_pkt_burst == ixgbe_recv_scattered_pkts_vec)
3939                 return ptypes;
3940 #endif
3941         return NULL;
3942 }
3943
3944 static int
3945 ixgbevf_dev_info_get(struct rte_eth_dev *dev,
3946                      struct rte_eth_dev_info *dev_info)
3947 {
3948         struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
3949         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3950
3951         dev_info->max_rx_queues = (uint16_t)hw->mac.max_rx_queues;
3952         dev_info->max_tx_queues = (uint16_t)hw->mac.max_tx_queues;
3953         dev_info->min_rx_bufsize = 1024; /* cf BSIZEPACKET in SRRCTL reg */
3954         dev_info->max_rx_pktlen = 9728; /* includes CRC, cf MAXFRS reg */
3955         dev_info->max_mtu = dev_info->max_rx_pktlen - IXGBE_ETH_OVERHEAD;
3956         dev_info->max_mac_addrs = hw->mac.num_rar_entries;
3957         dev_info->max_hash_mac_addrs = IXGBE_VMDQ_NUM_UC_MAC;
3958         dev_info->max_vfs = pci_dev->max_vfs;
3959         if (hw->mac.type == ixgbe_mac_82598EB)
3960                 dev_info->max_vmdq_pools = ETH_16_POOLS;
3961         else
3962                 dev_info->max_vmdq_pools = ETH_64_POOLS;
3963         dev_info->rx_queue_offload_capa = ixgbe_get_rx_queue_offloads(dev);
3964         dev_info->rx_offload_capa = (ixgbe_get_rx_port_offloads(dev) |
3965                                      dev_info->rx_queue_offload_capa);
3966         dev_info->tx_queue_offload_capa = ixgbe_get_tx_queue_offloads(dev);
3967         dev_info->tx_offload_capa = ixgbe_get_tx_port_offloads(dev);
3968         dev_info->hash_key_size = IXGBE_HKEY_MAX_INDEX * sizeof(uint32_t);
3969         dev_info->reta_size = ixgbe_reta_size_get(hw->mac.type);
3970         dev_info->flow_type_rss_offloads = IXGBE_RSS_OFFLOAD_ALL;
3971
3972         dev_info->default_rxconf = (struct rte_eth_rxconf) {
3973                 .rx_thresh = {
3974                         .pthresh = IXGBE_DEFAULT_RX_PTHRESH,
3975                         .hthresh = IXGBE_DEFAULT_RX_HTHRESH,
3976                         .wthresh = IXGBE_DEFAULT_RX_WTHRESH,
3977                 },
3978                 .rx_free_thresh = IXGBE_DEFAULT_RX_FREE_THRESH,
3979                 .rx_drop_en = 0,
3980                 .offloads = 0,
3981         };
3982
3983         dev_info->default_txconf = (struct rte_eth_txconf) {
3984                 .tx_thresh = {
3985                         .pthresh = IXGBE_DEFAULT_TX_PTHRESH,
3986                         .hthresh = IXGBE_DEFAULT_TX_HTHRESH,
3987                         .wthresh = IXGBE_DEFAULT_TX_WTHRESH,
3988                 },
3989                 .tx_free_thresh = IXGBE_DEFAULT_TX_FREE_THRESH,
3990                 .tx_rs_thresh = IXGBE_DEFAULT_TX_RSBIT_THRESH,
3991                 .offloads = 0,
3992         };
3993
3994         dev_info->rx_desc_lim = rx_desc_lim;
3995         dev_info->tx_desc_lim = tx_desc_lim;
3996
3997         return 0;
3998 }
3999
4000 static int
4001 ixgbevf_check_link(struct ixgbe_hw *hw, ixgbe_link_speed *speed,
4002                    int *link_up, int wait_to_complete)
4003 {
4004         struct ixgbe_adapter *adapter = container_of(hw,
4005                                                      struct ixgbe_adapter, hw);
4006         struct ixgbe_mbx_info *mbx = &hw->mbx;
4007         struct ixgbe_mac_info *mac = &hw->mac;
4008         uint32_t links_reg, in_msg;
4009         int ret_val = 0;
4010
4011         /* If we were hit with a reset drop the link */
4012         if (!mbx->ops.check_for_rst(hw, 0) || !mbx->timeout)
4013                 mac->get_link_status = true;
4014
4015         if (!mac->get_link_status)
4016                 goto out;
4017
4018         /* if link status is down no point in checking to see if pf is up */
4019         links_reg = IXGBE_READ_REG(hw, IXGBE_VFLINKS);
4020         if (!(links_reg & IXGBE_LINKS_UP))
4021                 goto out;
4022
4023         /* for SFP+ modules and DA cables on 82599 it can take up to 500usecs
4024          * before the link status is correct
4025          */
4026         if (mac->type == ixgbe_mac_82599_vf && wait_to_complete) {
4027                 int i;
4028
4029                 for (i = 0; i < 5; i++) {
4030                         rte_delay_us(100);
4031                         links_reg = IXGBE_READ_REG(hw, IXGBE_VFLINKS);
4032
4033                         if (!(links_reg & IXGBE_LINKS_UP))
4034                                 goto out;
4035                 }
4036         }
4037
4038         switch (links_reg & IXGBE_LINKS_SPEED_82599) {
4039         case IXGBE_LINKS_SPEED_10G_82599:
4040                 *speed = IXGBE_LINK_SPEED_10GB_FULL;
4041                 if (hw->mac.type >= ixgbe_mac_X550) {
4042                         if (links_reg & IXGBE_LINKS_SPEED_NON_STD)
4043                                 *speed = IXGBE_LINK_SPEED_2_5GB_FULL;
4044                 }
4045                 break;
4046         case IXGBE_LINKS_SPEED_1G_82599:
4047                 *speed = IXGBE_LINK_SPEED_1GB_FULL;
4048                 break;
4049         case IXGBE_LINKS_SPEED_100_82599:
4050                 *speed = IXGBE_LINK_SPEED_100_FULL;
4051                 if (hw->mac.type == ixgbe_mac_X550) {
4052                         if (links_reg & IXGBE_LINKS_SPEED_NON_STD)
4053                                 *speed = IXGBE_LINK_SPEED_5GB_FULL;
4054                 }
4055                 break;
4056         case IXGBE_LINKS_SPEED_10_X550EM_A:
4057                 *speed = IXGBE_LINK_SPEED_UNKNOWN;
4058                 /* Since Reserved in older MAC's */
4059                 if (hw->mac.type >= ixgbe_mac_X550)
4060                         *speed = IXGBE_LINK_SPEED_10_FULL;
4061                 break;
4062         default:
4063                 *speed = IXGBE_LINK_SPEED_UNKNOWN;
4064         }
4065
4066         if (wait_to_complete == 0 && adapter->pflink_fullchk == 0) {
4067                 if (*speed == IXGBE_LINK_SPEED_UNKNOWN)
4068                         mac->get_link_status = true;
4069                 else
4070                         mac->get_link_status = false;
4071
4072                 goto out;
4073         }
4074
4075         /* if the read failed it could just be a mailbox collision, best wait
4076          * until we are called again and don't report an error
4077          */
4078         if (mbx->ops.read(hw, &in_msg, 1, 0))
4079                 goto out;
4080
4081         if (!(in_msg & IXGBE_VT_MSGTYPE_CTS)) {
4082                 /* msg is not CTS and is NACK we must have lost CTS status */
4083                 if (in_msg & IXGBE_VT_MSGTYPE_NACK)
4084                         mac->get_link_status = false;
4085                 goto out;
4086         }
4087
4088         /* the pf is talking, if we timed out in the past we reinit */
4089         if (!mbx->timeout) {
4090                 ret_val = -1;
4091                 goto out;
4092         }
4093
4094         /* if we passed all the tests above then the link is up and we no
4095          * longer need to check for link
4096          */
4097         mac->get_link_status = false;
4098
4099 out:
4100         *link_up = !mac->get_link_status;
4101         return ret_val;
4102 }
4103
4104 static void
4105 ixgbe_dev_setup_link_alarm_handler(void *param)
4106 {
4107         struct rte_eth_dev *dev = (struct rte_eth_dev *)param;
4108         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4109         struct ixgbe_interrupt *intr =
4110                 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
4111         u32 speed;
4112         bool autoneg = false;
4113
4114         speed = hw->phy.autoneg_advertised;
4115         if (!speed)
4116                 ixgbe_get_link_capabilities(hw, &speed, &autoneg);
4117
4118         ixgbe_setup_link(hw, speed, true);
4119
4120         intr->flags &= ~IXGBE_FLAG_NEED_LINK_CONFIG;
4121 }
4122
4123 /*
4124  * In freebsd environment, nic_uio drivers do not support interrupts,
4125  * rte_intr_callback_register() will fail to register interrupts.
4126  * We can not make link status to change from down to up by interrupt
4127  * callback. So we need to wait for the controller to acquire link
4128  * when ports start.
4129  * It returns 0 on link up.
4130  */
4131 static int
4132 ixgbe_wait_for_link_up(struct ixgbe_hw *hw)
4133 {
4134 #ifdef RTE_EXEC_ENV_FREEBSD
4135         const int nb_iter = 25;
4136 #else
4137         const int nb_iter = 0;
4138 #endif
4139         int err, i, link_up = 0;
4140         uint32_t speed = 0;
4141
4142         for (i = 0; i < nb_iter; i++) {
4143                 err = ixgbe_check_link(hw, &speed, &link_up, 0);
4144                 if (err)
4145                         return err;
4146                 if (link_up)
4147                         return 0;
4148                 msec_delay(200);
4149         }
4150         return 0;
4151 }
4152
4153 /* return 0 means link status changed, -1 means not changed */
4154 int
4155 ixgbe_dev_link_update_share(struct rte_eth_dev *dev,
4156                             int wait_to_complete, int vf)
4157 {
4158         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4159         struct rte_eth_link link;
4160         ixgbe_link_speed link_speed = IXGBE_LINK_SPEED_UNKNOWN;
4161         struct ixgbe_interrupt *intr =
4162                 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
4163         int link_up;
4164         int diag;
4165         int wait = 1;
4166         u32 esdp_reg;
4167
4168         memset(&link, 0, sizeof(link));
4169         link.link_status = ETH_LINK_DOWN;
4170         link.link_speed = ETH_SPEED_NUM_NONE;
4171         link.link_duplex = ETH_LINK_HALF_DUPLEX;
4172         link.link_autoneg = ETH_LINK_AUTONEG;
4173
4174         hw->mac.get_link_status = true;
4175
4176         if (intr->flags & IXGBE_FLAG_NEED_LINK_CONFIG)
4177                 return rte_eth_linkstatus_set(dev, &link);
4178
4179         /* check if it needs to wait to complete, if lsc interrupt is enabled */
4180         if (wait_to_complete == 0 || dev->data->dev_conf.intr_conf.lsc != 0)
4181                 wait = 0;
4182
4183         if (vf)
4184                 diag = ixgbevf_check_link(hw, &link_speed, &link_up, wait);
4185         else
4186                 diag = ixgbe_check_link(hw, &link_speed, &link_up, wait);
4187
4188         if (diag != 0) {
4189                 link.link_speed = ETH_SPEED_NUM_100M;
4190                 link.link_duplex = ETH_LINK_FULL_DUPLEX;
4191                 return rte_eth_linkstatus_set(dev, &link);
4192         }
4193
4194         if (ixgbe_get_media_type(hw) == ixgbe_media_type_fiber) {
4195                 esdp_reg = IXGBE_READ_REG(hw, IXGBE_ESDP);
4196                 if ((esdp_reg & IXGBE_ESDP_SDP3))
4197                         link_up = 0;
4198         }
4199
4200         if (link_up == 0) {
4201                 if (ixgbe_get_media_type(hw) == ixgbe_media_type_fiber) {
4202                         intr->flags |= IXGBE_FLAG_NEED_LINK_CONFIG;
4203                         rte_eal_alarm_set(10,
4204                                 ixgbe_dev_setup_link_alarm_handler, dev);
4205                 }
4206                 return rte_eth_linkstatus_set(dev, &link);
4207         }
4208
4209         link.link_status = ETH_LINK_UP;
4210         link.link_duplex = ETH_LINK_FULL_DUPLEX;
4211
4212         switch (link_speed) {
4213         default:
4214         case IXGBE_LINK_SPEED_UNKNOWN:
4215                 if (hw->device_id == IXGBE_DEV_ID_X550EM_A_1G_T ||
4216                         hw->device_id == IXGBE_DEV_ID_X550EM_A_1G_T_L)
4217                         link.link_speed = ETH_SPEED_NUM_10M;
4218                 else
4219                         link.link_speed = ETH_SPEED_NUM_100M;
4220                 break;
4221
4222         case IXGBE_LINK_SPEED_100_FULL:
4223                 link.link_speed = ETH_SPEED_NUM_100M;
4224                 break;
4225
4226         case IXGBE_LINK_SPEED_1GB_FULL:
4227                 link.link_speed = ETH_SPEED_NUM_1G;
4228                 break;
4229
4230         case IXGBE_LINK_SPEED_2_5GB_FULL:
4231                 link.link_speed = ETH_SPEED_NUM_2_5G;
4232                 break;
4233
4234         case IXGBE_LINK_SPEED_5GB_FULL:
4235                 link.link_speed = ETH_SPEED_NUM_5G;
4236                 break;
4237
4238         case IXGBE_LINK_SPEED_10GB_FULL:
4239                 link.link_speed = ETH_SPEED_NUM_10G;
4240                 break;
4241         }
4242
4243         return rte_eth_linkstatus_set(dev, &link);
4244 }
4245
4246 static int
4247 ixgbe_dev_link_update(struct rte_eth_dev *dev, int wait_to_complete)
4248 {
4249         return ixgbe_dev_link_update_share(dev, wait_to_complete, 0);
4250 }
4251
4252 static int
4253 ixgbevf_dev_link_update(struct rte_eth_dev *dev, int wait_to_complete)
4254 {
4255         return ixgbe_dev_link_update_share(dev, wait_to_complete, 1);
4256 }
4257
4258 static int
4259 ixgbe_dev_promiscuous_enable(struct rte_eth_dev *dev)
4260 {
4261         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4262         uint32_t fctrl;
4263
4264         fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
4265         fctrl |= (IXGBE_FCTRL_UPE | IXGBE_FCTRL_MPE);
4266         IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
4267
4268         return 0;
4269 }
4270
4271 static int
4272 ixgbe_dev_promiscuous_disable(struct rte_eth_dev *dev)
4273 {
4274         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4275         uint32_t fctrl;
4276
4277         fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
4278         fctrl &= (~IXGBE_FCTRL_UPE);
4279         if (dev->data->all_multicast == 1)
4280                 fctrl |= IXGBE_FCTRL_MPE;
4281         else
4282                 fctrl &= (~IXGBE_FCTRL_MPE);
4283         IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
4284
4285         return 0;
4286 }
4287
4288 static int
4289 ixgbe_dev_allmulticast_enable(struct rte_eth_dev *dev)
4290 {
4291         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4292         uint32_t fctrl;
4293
4294         fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
4295         fctrl |= IXGBE_FCTRL_MPE;
4296         IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
4297
4298         return 0;
4299 }
4300
4301 static int
4302 ixgbe_dev_allmulticast_disable(struct rte_eth_dev *dev)
4303 {
4304         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4305         uint32_t fctrl;
4306
4307         if (dev->data->promiscuous == 1)
4308                 return 0; /* must remain in all_multicast mode */
4309
4310         fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
4311         fctrl &= (~IXGBE_FCTRL_MPE);
4312         IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
4313
4314         return 0;
4315 }
4316
4317 /**
4318  * It clears the interrupt causes and enables the interrupt.
4319  * It will be called once only during nic initialized.
4320  *
4321  * @param dev
4322  *  Pointer to struct rte_eth_dev.
4323  * @param on
4324  *  Enable or Disable.
4325  *
4326  * @return
4327  *  - On success, zero.
4328  *  - On failure, a negative value.
4329  */
4330 static int
4331 ixgbe_dev_lsc_interrupt_setup(struct rte_eth_dev *dev, uint8_t on)
4332 {
4333         struct ixgbe_interrupt *intr =
4334                 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
4335
4336         ixgbe_dev_link_status_print(dev);
4337         if (on)
4338                 intr->mask |= IXGBE_EICR_LSC;
4339         else
4340                 intr->mask &= ~IXGBE_EICR_LSC;
4341
4342         return 0;
4343 }
4344
4345 /**
4346  * It clears the interrupt causes and enables the interrupt.
4347  * It will be called once only during nic initialized.
4348  *
4349  * @param dev
4350  *  Pointer to struct rte_eth_dev.
4351  *
4352  * @return
4353  *  - On success, zero.
4354  *  - On failure, a negative value.
4355  */
4356 static int
4357 ixgbe_dev_rxq_interrupt_setup(struct rte_eth_dev *dev)
4358 {
4359         struct ixgbe_interrupt *intr =
4360                 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
4361
4362         intr->mask |= IXGBE_EICR_RTX_QUEUE;
4363
4364         return 0;
4365 }
4366
4367 /**
4368  * It clears the interrupt causes and enables the interrupt.
4369  * It will be called once only during nic initialized.
4370  *
4371  * @param dev
4372  *  Pointer to struct rte_eth_dev.
4373  *
4374  * @return
4375  *  - On success, zero.
4376  *  - On failure, a negative value.
4377  */
4378 static int
4379 ixgbe_dev_macsec_interrupt_setup(struct rte_eth_dev *dev)
4380 {
4381         struct ixgbe_interrupt *intr =
4382                 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
4383
4384         intr->mask |= IXGBE_EICR_LINKSEC;
4385
4386         return 0;
4387 }
4388
4389 /*
4390  * It reads ICR and sets flag (IXGBE_EICR_LSC) for the link_update.
4391  *
4392  * @param dev
4393  *  Pointer to struct rte_eth_dev.
4394  *
4395  * @return
4396  *  - On success, zero.
4397  *  - On failure, a negative value.
4398  */
4399 static int
4400 ixgbe_dev_interrupt_get_status(struct rte_eth_dev *dev)
4401 {
4402         uint32_t eicr;
4403         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4404         struct ixgbe_interrupt *intr =
4405                 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
4406
4407         /* clear all cause mask */
4408         ixgbe_disable_intr(hw);
4409
4410         /* read-on-clear nic registers here */
4411         eicr = IXGBE_READ_REG(hw, IXGBE_EICR);
4412         PMD_DRV_LOG(DEBUG, "eicr %x", eicr);
4413
4414         intr->flags = 0;
4415
4416         /* set flag for async link update */
4417         if (eicr & IXGBE_EICR_LSC)
4418                 intr->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
4419
4420         if (eicr & IXGBE_EICR_MAILBOX)
4421                 intr->flags |= IXGBE_FLAG_MAILBOX;
4422
4423         if (eicr & IXGBE_EICR_LINKSEC)
4424                 intr->flags |= IXGBE_FLAG_MACSEC;
4425
4426         if (hw->mac.type ==  ixgbe_mac_X550EM_x &&
4427             hw->phy.type == ixgbe_phy_x550em_ext_t &&
4428             (eicr & IXGBE_EICR_GPI_SDP0_X550EM_x))
4429                 intr->flags |= IXGBE_FLAG_PHY_INTERRUPT;
4430
4431         return 0;
4432 }
4433
4434 /**
4435  * It gets and then prints the link status.
4436  *
4437  * @param dev
4438  *  Pointer to struct rte_eth_dev.
4439  *
4440  * @return
4441  *  - On success, zero.
4442  *  - On failure, a negative value.
4443  */
4444 static void
4445 ixgbe_dev_link_status_print(struct rte_eth_dev *dev)
4446 {
4447         struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
4448         struct rte_eth_link link;
4449
4450         rte_eth_linkstatus_get(dev, &link);
4451
4452         if (link.link_status) {
4453                 PMD_INIT_LOG(INFO, "Port %d: Link Up - speed %u Mbps - %s",
4454                                         (int)(dev->data->port_id),
4455                                         (unsigned)link.link_speed,
4456                         link.link_duplex == ETH_LINK_FULL_DUPLEX ?
4457                                         "full-duplex" : "half-duplex");
4458         } else {
4459                 PMD_INIT_LOG(INFO, " Port %d: Link Down",
4460                                 (int)(dev->data->port_id));
4461         }
4462         PMD_INIT_LOG(DEBUG, "PCI Address: " PCI_PRI_FMT,
4463                                 pci_dev->addr.domain,
4464                                 pci_dev->addr.bus,
4465                                 pci_dev->addr.devid,
4466                                 pci_dev->addr.function);
4467 }
4468
4469 /*
4470  * It executes link_update after knowing an interrupt occurred.
4471  *
4472  * @param dev
4473  *  Pointer to struct rte_eth_dev.
4474  *
4475  * @return
4476  *  - On success, zero.
4477  *  - On failure, a negative value.
4478  */
4479 static int
4480 ixgbe_dev_interrupt_action(struct rte_eth_dev *dev)
4481 {
4482         struct ixgbe_interrupt *intr =
4483                 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
4484         int64_t timeout;
4485         struct ixgbe_hw *hw =
4486                 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4487
4488         PMD_DRV_LOG(DEBUG, "intr action type %d", intr->flags);
4489
4490         if (intr->flags & IXGBE_FLAG_MAILBOX) {
4491                 ixgbe_pf_mbx_process(dev);
4492                 intr->flags &= ~IXGBE_FLAG_MAILBOX;
4493         }
4494
4495         if (intr->flags & IXGBE_FLAG_PHY_INTERRUPT) {
4496                 ixgbe_handle_lasi(hw);
4497                 intr->flags &= ~IXGBE_FLAG_PHY_INTERRUPT;
4498         }
4499
4500         if (intr->flags & IXGBE_FLAG_NEED_LINK_UPDATE) {
4501                 struct rte_eth_link link;
4502
4503                 /* get the link status before link update, for predicting later */
4504                 rte_eth_linkstatus_get(dev, &link);
4505
4506                 ixgbe_dev_link_update(dev, 0);
4507
4508                 /* likely to up */
4509                 if (!link.link_status)
4510                         /* handle it 1 sec later, wait it being stable */
4511                         timeout = IXGBE_LINK_UP_CHECK_TIMEOUT;
4512                 /* likely to down */
4513                 else
4514                         /* handle it 4 sec later, wait it being stable */
4515                         timeout = IXGBE_LINK_DOWN_CHECK_TIMEOUT;
4516
4517                 ixgbe_dev_link_status_print(dev);
4518                 if (rte_eal_alarm_set(timeout * 1000,
4519                                       ixgbe_dev_interrupt_delayed_handler, (void *)dev) < 0)
4520                         PMD_DRV_LOG(ERR, "Error setting alarm");
4521                 else {
4522                         /* remember original mask */
4523                         intr->mask_original = intr->mask;
4524                         /* only disable lsc interrupt */
4525                         intr->mask &= ~IXGBE_EIMS_LSC;
4526                 }
4527         }
4528
4529         PMD_DRV_LOG(DEBUG, "enable intr immediately");
4530         ixgbe_enable_intr(dev);
4531
4532         return 0;
4533 }
4534
4535 /**
4536  * Interrupt handler which shall be registered for alarm callback for delayed
4537  * handling specific interrupt to wait for the stable nic state. As the
4538  * NIC interrupt state is not stable for ixgbe after link is just down,
4539  * it needs to wait 4 seconds to get the stable status.
4540  *
4541  * @param handle
4542  *  Pointer to interrupt handle.
4543  * @param param
4544  *  The address of parameter (struct rte_eth_dev *) regsitered before.
4545  *
4546  * @return
4547  *  void
4548  */
4549 static void
4550 ixgbe_dev_interrupt_delayed_handler(void *param)
4551 {
4552         struct rte_eth_dev *dev = (struct rte_eth_dev *)param;
4553         struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
4554         struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
4555         struct ixgbe_interrupt *intr =
4556                 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
4557         struct ixgbe_hw *hw =
4558                 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4559         uint32_t eicr;
4560
4561         ixgbe_disable_intr(hw);
4562
4563         eicr = IXGBE_READ_REG(hw, IXGBE_EICR);
4564         if (eicr & IXGBE_EICR_MAILBOX)
4565                 ixgbe_pf_mbx_process(dev);
4566
4567         if (intr->flags & IXGBE_FLAG_PHY_INTERRUPT) {
4568                 ixgbe_handle_lasi(hw);
4569                 intr->flags &= ~IXGBE_FLAG_PHY_INTERRUPT;
4570         }
4571
4572         if (intr->flags & IXGBE_FLAG_NEED_LINK_UPDATE) {
4573                 ixgbe_dev_link_update(dev, 0);
4574                 intr->flags &= ~IXGBE_FLAG_NEED_LINK_UPDATE;
4575                 ixgbe_dev_link_status_print(dev);
4576                 _rte_eth_dev_callback_process(dev, RTE_ETH_EVENT_INTR_LSC,
4577                                               NULL);
4578         }
4579
4580         if (intr->flags & IXGBE_FLAG_MACSEC) {
4581                 _rte_eth_dev_callback_process(dev, RTE_ETH_EVENT_MACSEC,
4582                                               NULL);
4583                 intr->flags &= ~IXGBE_FLAG_MACSEC;
4584         }
4585
4586         /* restore original mask */
4587         intr->mask = intr->mask_original;
4588         intr->mask_original = 0;
4589
4590         PMD_DRV_LOG(DEBUG, "enable intr in delayed handler S[%08x]", eicr);
4591         ixgbe_enable_intr(dev);
4592         rte_intr_ack(intr_handle);
4593 }
4594
4595 /**
4596  * Interrupt handler triggered by NIC  for handling
4597  * specific interrupt.
4598  *
4599  * @param handle
4600  *  Pointer to interrupt handle.
4601  * @param param
4602  *  The address of parameter (struct rte_eth_dev *) regsitered before.
4603  *
4604  * @return
4605  *  void
4606  */
4607 static void
4608 ixgbe_dev_interrupt_handler(void *param)
4609 {
4610         struct rte_eth_dev *dev = (struct rte_eth_dev *)param;
4611
4612         ixgbe_dev_interrupt_get_status(dev);
4613         ixgbe_dev_interrupt_action(dev);
4614 }
4615
4616 static int
4617 ixgbe_dev_led_on(struct rte_eth_dev *dev)
4618 {
4619         struct ixgbe_hw *hw;
4620
4621         hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4622         return ixgbe_led_on(hw, 0) == IXGBE_SUCCESS ? 0 : -ENOTSUP;
4623 }
4624
4625 static int
4626 ixgbe_dev_led_off(struct rte_eth_dev *dev)
4627 {
4628         struct ixgbe_hw *hw;
4629
4630         hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4631         return ixgbe_led_off(hw, 0) == IXGBE_SUCCESS ? 0 : -ENOTSUP;
4632 }
4633
4634 static int
4635 ixgbe_flow_ctrl_get(struct rte_eth_dev *dev, struct rte_eth_fc_conf *fc_conf)
4636 {
4637         struct ixgbe_hw *hw;
4638         uint32_t mflcn_reg;
4639         uint32_t fccfg_reg;
4640         int rx_pause;
4641         int tx_pause;
4642
4643         hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4644
4645         fc_conf->pause_time = hw->fc.pause_time;
4646         fc_conf->high_water = hw->fc.high_water[0];
4647         fc_conf->low_water = hw->fc.low_water[0];
4648         fc_conf->send_xon = hw->fc.send_xon;
4649         fc_conf->autoneg = !hw->fc.disable_fc_autoneg;
4650
4651         /*
4652          * Return rx_pause status according to actual setting of
4653          * MFLCN register.
4654          */
4655         mflcn_reg = IXGBE_READ_REG(hw, IXGBE_MFLCN);
4656         if (mflcn_reg & (IXGBE_MFLCN_RPFCE | IXGBE_MFLCN_RFCE))
4657                 rx_pause = 1;
4658         else
4659                 rx_pause = 0;
4660
4661         /*
4662          * Return tx_pause status according to actual setting of
4663          * FCCFG register.
4664          */
4665         fccfg_reg = IXGBE_READ_REG(hw, IXGBE_FCCFG);
4666         if (fccfg_reg & (IXGBE_FCCFG_TFCE_802_3X | IXGBE_FCCFG_TFCE_PRIORITY))
4667                 tx_pause = 1;
4668         else
4669                 tx_pause = 0;
4670
4671         if (rx_pause && tx_pause)
4672                 fc_conf->mode = RTE_FC_FULL;
4673         else if (rx_pause)
4674                 fc_conf->mode = RTE_FC_RX_PAUSE;
4675         else if (tx_pause)
4676                 fc_conf->mode = RTE_FC_TX_PAUSE;
4677         else
4678                 fc_conf->mode = RTE_FC_NONE;
4679
4680         return 0;
4681 }
4682
4683 static int
4684 ixgbe_flow_ctrl_set(struct rte_eth_dev *dev, struct rte_eth_fc_conf *fc_conf)
4685 {
4686         struct ixgbe_hw *hw;
4687         int err;
4688         uint32_t rx_buf_size;
4689         uint32_t max_high_water;
4690         uint32_t mflcn;
4691         enum ixgbe_fc_mode rte_fcmode_2_ixgbe_fcmode[] = {
4692                 ixgbe_fc_none,
4693                 ixgbe_fc_rx_pause,
4694                 ixgbe_fc_tx_pause,
4695                 ixgbe_fc_full
4696         };
4697
4698         PMD_INIT_FUNC_TRACE();
4699
4700         hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4701         rx_buf_size = IXGBE_READ_REG(hw, IXGBE_RXPBSIZE(0));
4702         PMD_INIT_LOG(DEBUG, "Rx packet buffer size = 0x%x", rx_buf_size);
4703
4704         /*
4705          * At least reserve one Ethernet frame for watermark
4706          * high_water/low_water in kilo bytes for ixgbe
4707          */
4708         max_high_water = (rx_buf_size -
4709                         RTE_ETHER_MAX_LEN) >> IXGBE_RXPBSIZE_SHIFT;
4710         if ((fc_conf->high_water > max_high_water) ||
4711                 (fc_conf->high_water < fc_conf->low_water)) {
4712                 PMD_INIT_LOG(ERR, "Invalid high/low water setup value in KB");
4713                 PMD_INIT_LOG(ERR, "High_water must <= 0x%x", max_high_water);
4714                 return -EINVAL;
4715         }
4716
4717         hw->fc.requested_mode = rte_fcmode_2_ixgbe_fcmode[fc_conf->mode];
4718         hw->fc.pause_time     = fc_conf->pause_time;
4719         hw->fc.high_water[0]  = fc_conf->high_water;
4720         hw->fc.low_water[0]   = fc_conf->low_water;
4721         hw->fc.send_xon       = fc_conf->send_xon;
4722         hw->fc.disable_fc_autoneg = !fc_conf->autoneg;
4723
4724         err = ixgbe_fc_enable(hw);
4725
4726         /* Not negotiated is not an error case */
4727         if ((err == IXGBE_SUCCESS) || (err == IXGBE_ERR_FC_NOT_NEGOTIATED)) {
4728
4729                 /* check if we want to forward MAC frames - driver doesn't have native
4730                  * capability to do that, so we'll write the registers ourselves */
4731
4732                 mflcn = IXGBE_READ_REG(hw, IXGBE_MFLCN);
4733
4734                 /* set or clear MFLCN.PMCF bit depending on configuration */
4735                 if (fc_conf->mac_ctrl_frame_fwd != 0)
4736                         mflcn |= IXGBE_MFLCN_PMCF;
4737                 else
4738                         mflcn &= ~IXGBE_MFLCN_PMCF;
4739
4740                 IXGBE_WRITE_REG(hw, IXGBE_MFLCN, mflcn);
4741                 IXGBE_WRITE_FLUSH(hw);
4742
4743                 return 0;
4744         }
4745
4746         PMD_INIT_LOG(ERR, "ixgbe_fc_enable = 0x%x", err);
4747         return -EIO;
4748 }
4749
4750 /**
4751  *  ixgbe_pfc_enable_generic - Enable flow control
4752  *  @hw: pointer to hardware structure
4753  *  @tc_num: traffic class number
4754  *  Enable flow control according to the current settings.
4755  */
4756 static int
4757 ixgbe_dcb_pfc_enable_generic(struct ixgbe_hw *hw, uint8_t tc_num)
4758 {
4759         int ret_val = 0;
4760         uint32_t mflcn_reg, fccfg_reg;
4761         uint32_t reg;
4762         uint32_t fcrtl, fcrth;
4763         uint8_t i;
4764         uint8_t nb_rx_en;
4765
4766         /* Validate the water mark configuration */
4767         if (!hw->fc.pause_time) {
4768                 ret_val = IXGBE_ERR_INVALID_LINK_SETTINGS;
4769                 goto out;
4770         }
4771
4772         /* Low water mark of zero causes XOFF floods */
4773         if (hw->fc.current_mode & ixgbe_fc_tx_pause) {
4774                  /* High/Low water can not be 0 */
4775                 if ((!hw->fc.high_water[tc_num]) || (!hw->fc.low_water[tc_num])) {
4776                         PMD_INIT_LOG(ERR, "Invalid water mark configuration");
4777                         ret_val = IXGBE_ERR_INVALID_LINK_SETTINGS;
4778                         goto out;
4779                 }
4780
4781                 if (hw->fc.low_water[tc_num] >= hw->fc.high_water[tc_num]) {
4782                         PMD_INIT_LOG(ERR, "Invalid water mark configuration");
4783                         ret_val = IXGBE_ERR_INVALID_LINK_SETTINGS;
4784                         goto out;
4785                 }
4786         }
4787         /* Negotiate the fc mode to use */
4788         ixgbe_fc_autoneg(hw);
4789
4790         /* Disable any previous flow control settings */
4791         mflcn_reg = IXGBE_READ_REG(hw, IXGBE_MFLCN);
4792         mflcn_reg &= ~(IXGBE_MFLCN_RPFCE_SHIFT | IXGBE_MFLCN_RFCE|IXGBE_MFLCN_RPFCE);
4793
4794         fccfg_reg = IXGBE_READ_REG(hw, IXGBE_FCCFG);
4795         fccfg_reg &= ~(IXGBE_FCCFG_TFCE_802_3X | IXGBE_FCCFG_TFCE_PRIORITY);
4796
4797         switch (hw->fc.current_mode) {
4798         case ixgbe_fc_none:
4799                 /*
4800                  * If the count of enabled RX Priority Flow control >1,
4801                  * and the TX pause can not be disabled
4802                  */
4803                 nb_rx_en = 0;
4804                 for (i = 0; i < IXGBE_DCB_MAX_TRAFFIC_CLASS; i++) {
4805                         reg = IXGBE_READ_REG(hw, IXGBE_FCRTH_82599(i));
4806                         if (reg & IXGBE_FCRTH_FCEN)
4807                                 nb_rx_en++;
4808                 }
4809                 if (nb_rx_en > 1)
4810                         fccfg_reg |= IXGBE_FCCFG_TFCE_PRIORITY;
4811                 break;
4812         case ixgbe_fc_rx_pause:
4813                 /*
4814                  * Rx Flow control is enabled and Tx Flow control is
4815                  * disabled by software override. Since there really
4816                  * isn't a way to advertise that we are capable of RX
4817                  * Pause ONLY, we will advertise that we support both
4818                  * symmetric and asymmetric Rx PAUSE.  Later, we will
4819                  * disable the adapter's ability to send PAUSE frames.
4820                  */
4821                 mflcn_reg |= IXGBE_MFLCN_RPFCE;
4822                 /*
4823                  * If the count of enabled RX Priority Flow control >1,
4824                  * and the TX pause can not be disabled
4825                  */
4826                 nb_rx_en = 0;
4827                 for (i = 0; i < IXGBE_DCB_MAX_TRAFFIC_CLASS; i++) {
4828                         reg = IXGBE_READ_REG(hw, IXGBE_FCRTH_82599(i));
4829                         if (reg & IXGBE_FCRTH_FCEN)
4830                                 nb_rx_en++;
4831                 }
4832                 if (nb_rx_en > 1)
4833                         fccfg_reg |= IXGBE_FCCFG_TFCE_PRIORITY;
4834                 break;
4835         case ixgbe_fc_tx_pause:
4836                 /*
4837                  * Tx Flow control is enabled, and Rx Flow control is
4838                  * disabled by software override.
4839                  */
4840                 fccfg_reg |= IXGBE_FCCFG_TFCE_PRIORITY;
4841                 break;
4842         case ixgbe_fc_full:
4843                 /* Flow control (both Rx and Tx) is enabled by SW override. */
4844                 mflcn_reg |= IXGBE_MFLCN_RPFCE;
4845                 fccfg_reg |= IXGBE_FCCFG_TFCE_PRIORITY;
4846                 break;
4847         default:
4848                 PMD_DRV_LOG(DEBUG, "Flow control param set incorrectly");
4849                 ret_val = IXGBE_ERR_CONFIG;
4850                 goto out;
4851         }
4852
4853         /* Set 802.3x based flow control settings. */
4854         mflcn_reg |= IXGBE_MFLCN_DPF;
4855         IXGBE_WRITE_REG(hw, IXGBE_MFLCN, mflcn_reg);
4856         IXGBE_WRITE_REG(hw, IXGBE_FCCFG, fccfg_reg);
4857
4858         /* Set up and enable Rx high/low water mark thresholds, enable XON. */
4859         if ((hw->fc.current_mode & ixgbe_fc_tx_pause) &&
4860                 hw->fc.high_water[tc_num]) {
4861                 fcrtl = (hw->fc.low_water[tc_num] << 10) | IXGBE_FCRTL_XONE;
4862                 IXGBE_WRITE_REG(hw, IXGBE_FCRTL_82599(tc_num), fcrtl);
4863                 fcrth = (hw->fc.high_water[tc_num] << 10) | IXGBE_FCRTH_FCEN;
4864         } else {
4865                 IXGBE_WRITE_REG(hw, IXGBE_FCRTL_82599(tc_num), 0);
4866                 /*
4867                  * In order to prevent Tx hangs when the internal Tx
4868                  * switch is enabled we must set the high water mark
4869                  * to the maximum FCRTH value.  This allows the Tx
4870                  * switch to function even under heavy Rx workloads.
4871                  */
4872                 fcrth = IXGBE_READ_REG(hw, IXGBE_RXPBSIZE(tc_num)) - 32;
4873         }
4874         IXGBE_WRITE_REG(hw, IXGBE_FCRTH_82599(tc_num), fcrth);
4875
4876         /* Configure pause time (2 TCs per register) */
4877         reg = hw->fc.pause_time * 0x00010001;
4878         for (i = 0; i < (IXGBE_DCB_MAX_TRAFFIC_CLASS / 2); i++)
4879                 IXGBE_WRITE_REG(hw, IXGBE_FCTTV(i), reg);
4880
4881         /* Configure flow control refresh threshold value */
4882         IXGBE_WRITE_REG(hw, IXGBE_FCRTV, hw->fc.pause_time / 2);
4883
4884 out:
4885         return ret_val;
4886 }
4887
4888 static int
4889 ixgbe_dcb_pfc_enable(struct rte_eth_dev *dev, uint8_t tc_num)
4890 {
4891         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4892         int32_t ret_val = IXGBE_NOT_IMPLEMENTED;
4893
4894         if (hw->mac.type != ixgbe_mac_82598EB) {
4895                 ret_val = ixgbe_dcb_pfc_enable_generic(hw, tc_num);
4896         }
4897         return ret_val;
4898 }
4899
4900 static int
4901 ixgbe_priority_flow_ctrl_set(struct rte_eth_dev *dev, struct rte_eth_pfc_conf *pfc_conf)
4902 {
4903         int err;
4904         uint32_t rx_buf_size;
4905         uint32_t max_high_water;
4906         uint8_t tc_num;
4907         uint8_t  map[IXGBE_DCB_MAX_USER_PRIORITY] = { 0 };
4908         struct ixgbe_hw *hw =
4909                 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4910         struct ixgbe_dcb_config *dcb_config =
4911                 IXGBE_DEV_PRIVATE_TO_DCB_CFG(dev->data->dev_private);
4912
4913         enum ixgbe_fc_mode rte_fcmode_2_ixgbe_fcmode[] = {
4914                 ixgbe_fc_none,
4915                 ixgbe_fc_rx_pause,
4916                 ixgbe_fc_tx_pause,
4917                 ixgbe_fc_full
4918         };
4919
4920         PMD_INIT_FUNC_TRACE();
4921
4922         ixgbe_dcb_unpack_map_cee(dcb_config, IXGBE_DCB_RX_CONFIG, map);
4923         tc_num = map[pfc_conf->priority];
4924         rx_buf_size = IXGBE_READ_REG(hw, IXGBE_RXPBSIZE(tc_num));
4925         PMD_INIT_LOG(DEBUG, "Rx packet buffer size = 0x%x", rx_buf_size);
4926         /*
4927          * At least reserve one Ethernet frame for watermark
4928          * high_water/low_water in kilo bytes for ixgbe
4929          */
4930         max_high_water = (rx_buf_size -
4931                         RTE_ETHER_MAX_LEN) >> IXGBE_RXPBSIZE_SHIFT;
4932         if ((pfc_conf->fc.high_water > max_high_water) ||
4933             (pfc_conf->fc.high_water <= pfc_conf->fc.low_water)) {
4934                 PMD_INIT_LOG(ERR, "Invalid high/low water setup value in KB");
4935                 PMD_INIT_LOG(ERR, "High_water must <= 0x%x", max_high_water);
4936                 return -EINVAL;
4937         }
4938
4939         hw->fc.requested_mode = rte_fcmode_2_ixgbe_fcmode[pfc_conf->fc.mode];
4940         hw->fc.pause_time = pfc_conf->fc.pause_time;
4941         hw->fc.send_xon = pfc_conf->fc.send_xon;
4942         hw->fc.low_water[tc_num] =  pfc_conf->fc.low_water;
4943         hw->fc.high_water[tc_num] = pfc_conf->fc.high_water;
4944
4945         err = ixgbe_dcb_pfc_enable(dev, tc_num);
4946
4947         /* Not negotiated is not an error case */
4948         if ((err == IXGBE_SUCCESS) || (err == IXGBE_ERR_FC_NOT_NEGOTIATED))
4949                 return 0;
4950
4951         PMD_INIT_LOG(ERR, "ixgbe_dcb_pfc_enable = 0x%x", err);
4952         return -EIO;
4953 }
4954
4955 static int
4956 ixgbe_dev_rss_reta_update(struct rte_eth_dev *dev,
4957                           struct rte_eth_rss_reta_entry64 *reta_conf,
4958                           uint16_t reta_size)
4959 {
4960         uint16_t i, sp_reta_size;
4961         uint8_t j, mask;
4962         uint32_t reta, r;
4963         uint16_t idx, shift;
4964         struct ixgbe_adapter *adapter = dev->data->dev_private;
4965         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4966         uint32_t reta_reg;
4967
4968         PMD_INIT_FUNC_TRACE();
4969
4970         if (!ixgbe_rss_update_sp(hw->mac.type)) {
4971                 PMD_DRV_LOG(ERR, "RSS reta update is not supported on this "
4972                         "NIC.");
4973                 return -ENOTSUP;
4974         }
4975
4976         sp_reta_size = ixgbe_reta_size_get(hw->mac.type);
4977         if (reta_size != sp_reta_size) {
4978                 PMD_DRV_LOG(ERR, "The size of hash lookup table configured "
4979                         "(%d) doesn't match the number hardware can supported "
4980                         "(%d)", reta_size, sp_reta_size);
4981                 return -EINVAL;
4982         }
4983
4984         for (i = 0; i < reta_size; i += IXGBE_4_BIT_WIDTH) {
4985                 idx = i / RTE_RETA_GROUP_SIZE;
4986                 shift = i % RTE_RETA_GROUP_SIZE;
4987                 mask = (uint8_t)((reta_conf[idx].mask >> shift) &
4988                                                 IXGBE_4_BIT_MASK);
4989                 if (!mask)
4990                         continue;
4991                 reta_reg = ixgbe_reta_reg_get(hw->mac.type, i);
4992                 if (mask == IXGBE_4_BIT_MASK)
4993                         r = 0;
4994                 else
4995                         r = IXGBE_READ_REG(hw, reta_reg);
4996                 for (j = 0, reta = 0; j < IXGBE_4_BIT_WIDTH; j++) {
4997                         if (mask & (0x1 << j))
4998                                 reta |= reta_conf[idx].reta[shift + j] <<
4999                                                         (CHAR_BIT * j);
5000                         else
5001                                 reta |= r & (IXGBE_8_BIT_MASK <<
5002                                                 (CHAR_BIT * j));
5003                 }
5004                 IXGBE_WRITE_REG(hw, reta_reg, reta);
5005         }
5006         adapter->rss_reta_updated = 1;
5007
5008         return 0;
5009 }
5010
5011 static int
5012 ixgbe_dev_rss_reta_query(struct rte_eth_dev *dev,
5013                          struct rte_eth_rss_reta_entry64 *reta_conf,
5014                          uint16_t reta_size)
5015 {
5016         uint16_t i, sp_reta_size;
5017         uint8_t j, mask;
5018         uint32_t reta;
5019         uint16_t idx, shift;
5020         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5021         uint32_t reta_reg;
5022
5023         PMD_INIT_FUNC_TRACE();
5024         sp_reta_size = ixgbe_reta_size_get(hw->mac.type);
5025         if (reta_size != sp_reta_size) {
5026                 PMD_DRV_LOG(ERR, "The size of hash lookup table configured "
5027                         "(%d) doesn't match the number hardware can supported "
5028                         "(%d)", reta_size, sp_reta_size);
5029                 return -EINVAL;
5030         }
5031
5032         for (i = 0; i < reta_size; i += IXGBE_4_BIT_WIDTH) {
5033                 idx = i / RTE_RETA_GROUP_SIZE;
5034                 shift = i % RTE_RETA_GROUP_SIZE;
5035                 mask = (uint8_t)((reta_conf[idx].mask >> shift) &
5036                                                 IXGBE_4_BIT_MASK);
5037                 if (!mask)
5038                         continue;
5039
5040                 reta_reg = ixgbe_reta_reg_get(hw->mac.type, i);
5041                 reta = IXGBE_READ_REG(hw, reta_reg);
5042                 for (j = 0; j < IXGBE_4_BIT_WIDTH; j++) {
5043                         if (mask & (0x1 << j))
5044                                 reta_conf[idx].reta[shift + j] =
5045                                         ((reta >> (CHAR_BIT * j)) &
5046                                                 IXGBE_8_BIT_MASK);
5047                 }
5048         }
5049
5050         return 0;
5051 }
5052
5053 static int
5054 ixgbe_add_rar(struct rte_eth_dev *dev, struct rte_ether_addr *mac_addr,
5055                                 uint32_t index, uint32_t pool)
5056 {
5057         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5058         uint32_t enable_addr = 1;
5059
5060         return ixgbe_set_rar(hw, index, mac_addr->addr_bytes,
5061                              pool, enable_addr);
5062 }
5063
5064 static void
5065 ixgbe_remove_rar(struct rte_eth_dev *dev, uint32_t index)
5066 {
5067         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5068
5069         ixgbe_clear_rar(hw, index);
5070 }
5071
5072 static int
5073 ixgbe_set_default_mac_addr(struct rte_eth_dev *dev, struct rte_ether_addr *addr)
5074 {
5075         struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
5076
5077         ixgbe_remove_rar(dev, 0);
5078         ixgbe_add_rar(dev, addr, 0, pci_dev->max_vfs);
5079
5080         return 0;
5081 }
5082
5083 static bool
5084 is_device_supported(struct rte_eth_dev *dev, struct rte_pci_driver *drv)
5085 {
5086         if (strcmp(dev->device->driver->name, drv->driver.name))
5087                 return false;
5088
5089         return true;
5090 }
5091
5092 bool
5093 is_ixgbe_supported(struct rte_eth_dev *dev)
5094 {
5095         return is_device_supported(dev, &rte_ixgbe_pmd);
5096 }
5097
5098 static int
5099 ixgbe_dev_mtu_set(struct rte_eth_dev *dev, uint16_t mtu)
5100 {
5101         uint32_t hlreg0;
5102         uint32_t maxfrs;
5103         struct ixgbe_hw *hw;
5104         struct rte_eth_dev_info dev_info;
5105         uint32_t frame_size = mtu + IXGBE_ETH_OVERHEAD;
5106         struct rte_eth_dev_data *dev_data = dev->data;
5107         int ret;
5108
5109         ret = ixgbe_dev_info_get(dev, &dev_info);
5110         if (ret != 0)
5111                 return ret;
5112
5113         /* check that mtu is within the allowed range */
5114         if (mtu < RTE_ETHER_MIN_MTU || frame_size > dev_info.max_rx_pktlen)
5115                 return -EINVAL;
5116
5117         /* If device is started, refuse mtu that requires the support of
5118          * scattered packets when this feature has not been enabled before.
5119          */
5120         if (dev_data->dev_started && !dev_data->scattered_rx &&
5121             (frame_size + 2 * IXGBE_VLAN_TAG_SIZE >
5122              dev->data->min_rx_buf_size - RTE_PKTMBUF_HEADROOM)) {
5123                 PMD_INIT_LOG(ERR, "Stop port first.");
5124                 return -EINVAL;
5125         }
5126
5127         hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5128         hlreg0 = IXGBE_READ_REG(hw, IXGBE_HLREG0);
5129
5130         /* switch to jumbo mode if needed */
5131         if (frame_size > RTE_ETHER_MAX_LEN) {
5132                 dev->data->dev_conf.rxmode.offloads |=
5133                         DEV_RX_OFFLOAD_JUMBO_FRAME;
5134                 hlreg0 |= IXGBE_HLREG0_JUMBOEN;
5135         } else {
5136                 dev->data->dev_conf.rxmode.offloads &=
5137                         ~DEV_RX_OFFLOAD_JUMBO_FRAME;
5138                 hlreg0 &= ~IXGBE_HLREG0_JUMBOEN;
5139         }
5140         IXGBE_WRITE_REG(hw, IXGBE_HLREG0, hlreg0);
5141
5142         /* update max frame size */
5143         dev->data->dev_conf.rxmode.max_rx_pkt_len = frame_size;
5144
5145         maxfrs = IXGBE_READ_REG(hw, IXGBE_MAXFRS);
5146         maxfrs &= 0x0000FFFF;
5147         maxfrs |= (dev->data->dev_conf.rxmode.max_rx_pkt_len << 16);
5148         IXGBE_WRITE_REG(hw, IXGBE_MAXFRS, maxfrs);
5149
5150         return 0;
5151 }
5152
5153 /*
5154  * Virtual Function operations
5155  */
5156 static void
5157 ixgbevf_intr_disable(struct rte_eth_dev *dev)
5158 {
5159         struct ixgbe_interrupt *intr =
5160                 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
5161         struct ixgbe_hw *hw =
5162                 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5163
5164         PMD_INIT_FUNC_TRACE();
5165
5166         /* Clear interrupt mask to stop from interrupts being generated */
5167         IXGBE_WRITE_REG(hw, IXGBE_VTEIMC, IXGBE_VF_IRQ_CLEAR_MASK);
5168
5169         IXGBE_WRITE_FLUSH(hw);
5170
5171         /* Clear mask value. */
5172         intr->mask = 0;
5173 }
5174
5175 static void
5176 ixgbevf_intr_enable(struct rte_eth_dev *dev)
5177 {
5178         struct ixgbe_interrupt *intr =
5179                 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
5180         struct ixgbe_hw *hw =
5181                 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5182
5183         PMD_INIT_FUNC_TRACE();
5184
5185         /* VF enable interrupt autoclean */
5186         IXGBE_WRITE_REG(hw, IXGBE_VTEIAM, IXGBE_VF_IRQ_ENABLE_MASK);
5187         IXGBE_WRITE_REG(hw, IXGBE_VTEIAC, IXGBE_VF_IRQ_ENABLE_MASK);
5188         IXGBE_WRITE_REG(hw, IXGBE_VTEIMS, IXGBE_VF_IRQ_ENABLE_MASK);
5189
5190         IXGBE_WRITE_FLUSH(hw);
5191
5192         /* Save IXGBE_VTEIMS value to mask. */
5193         intr->mask = IXGBE_VF_IRQ_ENABLE_MASK;
5194 }
5195
5196 static int
5197 ixgbevf_dev_configure(struct rte_eth_dev *dev)
5198 {
5199         struct rte_eth_conf *conf = &dev->data->dev_conf;
5200         struct ixgbe_adapter *adapter = dev->data->dev_private;
5201
5202         PMD_INIT_LOG(DEBUG, "Configured Virtual Function port id: %d",
5203                      dev->data->port_id);
5204
5205         if (dev->data->dev_conf.rxmode.mq_mode & ETH_MQ_RX_RSS_FLAG)
5206                 dev->data->dev_conf.rxmode.offloads |= DEV_RX_OFFLOAD_RSS_HASH;
5207
5208         /*
5209          * VF has no ability to enable/disable HW CRC
5210          * Keep the persistent behavior the same as Host PF
5211          */
5212 #ifndef RTE_LIBRTE_IXGBE_PF_DISABLE_STRIP_CRC
5213         if (conf->rxmode.offloads & DEV_RX_OFFLOAD_KEEP_CRC) {
5214                 PMD_INIT_LOG(NOTICE, "VF can't disable HW CRC Strip");
5215                 conf->rxmode.offloads &= ~DEV_RX_OFFLOAD_KEEP_CRC;
5216         }
5217 #else
5218         if (!(conf->rxmode.offloads & DEV_RX_OFFLOAD_KEEP_CRC)) {
5219                 PMD_INIT_LOG(NOTICE, "VF can't enable HW CRC Strip");
5220                 conf->rxmode.offloads |= DEV_RX_OFFLOAD_KEEP_CRC;
5221         }
5222 #endif
5223
5224         /*
5225          * Initialize to TRUE. If any of Rx queues doesn't meet the bulk
5226          * allocation or vector Rx preconditions we will reset it.
5227          */
5228         adapter->rx_bulk_alloc_allowed = true;
5229         adapter->rx_vec_allowed = true;
5230
5231         return 0;
5232 }
5233
5234 static int
5235 ixgbevf_dev_start(struct rte_eth_dev *dev)
5236 {
5237         struct ixgbe_hw *hw =
5238                 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5239         uint32_t intr_vector = 0;
5240         struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
5241         struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
5242
5243         int err, mask = 0;
5244
5245         PMD_INIT_FUNC_TRACE();
5246
5247         /* Stop the link setup handler before resetting the HW. */
5248         rte_eal_alarm_cancel(ixgbe_dev_setup_link_alarm_handler, dev);
5249
5250         err = hw->mac.ops.reset_hw(hw);
5251         if (err) {
5252                 PMD_INIT_LOG(ERR, "Unable to reset vf hardware (%d)", err);
5253                 return err;
5254         }
5255         hw->mac.get_link_status = true;
5256
5257         /* negotiate mailbox API version to use with the PF. */
5258         ixgbevf_negotiate_api(hw);
5259
5260         ixgbevf_dev_tx_init(dev);
5261
5262         /* This can fail when allocating mbufs for descriptor rings */
5263         err = ixgbevf_dev_rx_init(dev);
5264         if (err) {
5265                 PMD_INIT_LOG(ERR, "Unable to initialize RX hardware (%d)", err);
5266                 ixgbe_dev_clear_queues(dev);
5267                 return err;
5268         }
5269
5270         /* Set vfta */
5271         ixgbevf_set_vfta_all(dev, 1);
5272
5273         /* Set HW strip */
5274         mask = ETH_VLAN_STRIP_MASK | ETH_VLAN_FILTER_MASK |
5275                 ETH_VLAN_EXTEND_MASK;
5276         err = ixgbevf_vlan_offload_config(dev, mask);
5277         if (err) {
5278                 PMD_INIT_LOG(ERR, "Unable to set VLAN offload (%d)", err);
5279                 ixgbe_dev_clear_queues(dev);
5280                 return err;
5281         }
5282
5283         ixgbevf_dev_rxtx_start(dev);
5284
5285         /* check and configure queue intr-vector mapping */
5286         if (rte_intr_cap_multiple(intr_handle) &&
5287             dev->data->dev_conf.intr_conf.rxq) {
5288                 /* According to datasheet, only vector 0/1/2 can be used,
5289                  * now only one vector is used for Rx queue
5290                  */
5291                 intr_vector = 1;
5292                 if (rte_intr_efd_enable(intr_handle, intr_vector))
5293                         return -1;
5294         }
5295
5296         if (rte_intr_dp_is_en(intr_handle) && !intr_handle->intr_vec) {
5297                 intr_handle->intr_vec =
5298                         rte_zmalloc("intr_vec",
5299                                     dev->data->nb_rx_queues * sizeof(int), 0);
5300                 if (intr_handle->intr_vec == NULL) {
5301                         PMD_INIT_LOG(ERR, "Failed to allocate %d rx_queues"
5302                                      " intr_vec", dev->data->nb_rx_queues);
5303                         return -ENOMEM;
5304                 }
5305         }
5306         ixgbevf_configure_msix(dev);
5307
5308         /* When a VF port is bound to VFIO-PCI, only miscellaneous interrupt
5309          * is mapped to VFIO vector 0 in eth_ixgbevf_dev_init( ).
5310          * If previous VFIO interrupt mapping setting in eth_ixgbevf_dev_init( )
5311          * is not cleared, it will fail when following rte_intr_enable( ) tries
5312          * to map Rx queue interrupt to other VFIO vectors.
5313          * So clear uio/vfio intr/evevnfd first to avoid failure.
5314          */
5315         rte_intr_disable(intr_handle);
5316
5317         rte_intr_enable(intr_handle);
5318
5319         /* Re-enable interrupt for VF */
5320         ixgbevf_intr_enable(dev);
5321
5322         /*
5323          * Update link status right before return, because it may
5324          * start link configuration process in a separate thread.
5325          */
5326         ixgbevf_dev_link_update(dev, 0);
5327
5328         hw->adapter_stopped = false;
5329
5330         return 0;
5331 }
5332
5333 static void
5334 ixgbevf_dev_stop(struct rte_eth_dev *dev)
5335 {
5336         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5337         struct ixgbe_adapter *adapter = dev->data->dev_private;
5338         struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
5339         struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
5340
5341         if (hw->adapter_stopped)
5342                 return;
5343
5344         PMD_INIT_FUNC_TRACE();
5345
5346         rte_eal_alarm_cancel(ixgbe_dev_setup_link_alarm_handler, dev);
5347
5348         ixgbevf_intr_disable(dev);
5349
5350         hw->adapter_stopped = 1;
5351         ixgbe_stop_adapter(hw);
5352
5353         /*
5354           * Clear what we set, but we still keep shadow_vfta to
5355           * restore after device starts
5356           */
5357         ixgbevf_set_vfta_all(dev, 0);
5358
5359         /* Clear stored conf */
5360         dev->data->scattered_rx = 0;
5361
5362         ixgbe_dev_clear_queues(dev);
5363
5364         /* Clean datapath event and queue/vec mapping */
5365         rte_intr_efd_disable(intr_handle);
5366         if (intr_handle->intr_vec != NULL) {
5367                 rte_free(intr_handle->intr_vec);
5368                 intr_handle->intr_vec = NULL;
5369         }
5370
5371         adapter->rss_reta_updated = 0;
5372 }
5373
5374 static void
5375 ixgbevf_dev_close(struct rte_eth_dev *dev)
5376 {
5377         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5378         struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
5379         struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
5380
5381         PMD_INIT_FUNC_TRACE();
5382
5383         ixgbe_reset_hw(hw);
5384
5385         ixgbevf_dev_stop(dev);
5386
5387         ixgbe_dev_free_queues(dev);
5388
5389         /**
5390          * Remove the VF MAC address ro ensure
5391          * that the VF traffic goes to the PF
5392          * after stop, close and detach of the VF
5393          **/
5394         ixgbevf_remove_mac_addr(dev, 0);
5395
5396         dev->dev_ops = NULL;
5397         dev->rx_pkt_burst = NULL;
5398         dev->tx_pkt_burst = NULL;
5399
5400         rte_intr_disable(intr_handle);
5401         rte_intr_callback_unregister(intr_handle,
5402                                      ixgbevf_dev_interrupt_handler, dev);
5403 }
5404
5405 /*
5406  * Reset VF device
5407  */
5408 static int
5409 ixgbevf_dev_reset(struct rte_eth_dev *dev)
5410 {
5411         int ret;
5412
5413         ret = eth_ixgbevf_dev_uninit(dev);
5414         if (ret)
5415                 return ret;
5416
5417         ret = eth_ixgbevf_dev_init(dev);
5418
5419         return ret;
5420 }
5421
5422 static void ixgbevf_set_vfta_all(struct rte_eth_dev *dev, bool on)
5423 {
5424         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5425         struct ixgbe_vfta *shadow_vfta =
5426                 IXGBE_DEV_PRIVATE_TO_VFTA(dev->data->dev_private);
5427         int i = 0, j = 0, vfta = 0, mask = 1;
5428
5429         for (i = 0; i < IXGBE_VFTA_SIZE; i++) {
5430                 vfta = shadow_vfta->vfta[i];
5431                 if (vfta) {
5432                         mask = 1;
5433                         for (j = 0; j < 32; j++) {
5434                                 if (vfta & mask)
5435                                         ixgbe_set_vfta(hw, (i<<5)+j, 0,
5436                                                        on, false);
5437                                 mask <<= 1;
5438                         }
5439                 }
5440         }
5441
5442 }
5443
5444 static int
5445 ixgbevf_vlan_filter_set(struct rte_eth_dev *dev, uint16_t vlan_id, int on)
5446 {
5447         struct ixgbe_hw *hw =
5448                 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5449         struct ixgbe_vfta *shadow_vfta =
5450                 IXGBE_DEV_PRIVATE_TO_VFTA(dev->data->dev_private);
5451         uint32_t vid_idx = 0;
5452         uint32_t vid_bit = 0;
5453         int ret = 0;
5454
5455         PMD_INIT_FUNC_TRACE();
5456
5457         /* vind is not used in VF driver, set to 0, check ixgbe_set_vfta_vf */
5458         ret = ixgbe_set_vfta(hw, vlan_id, 0, !!on, false);
5459         if (ret) {
5460                 PMD_INIT_LOG(ERR, "Unable to set VF vlan");
5461                 return ret;
5462         }
5463         vid_idx = (uint32_t) ((vlan_id >> 5) & 0x7F);
5464         vid_bit = (uint32_t) (1 << (vlan_id & 0x1F));
5465
5466         /* Save what we set and retore it after device reset */
5467         if (on)
5468                 shadow_vfta->vfta[vid_idx] |= vid_bit;
5469         else
5470                 shadow_vfta->vfta[vid_idx] &= ~vid_bit;
5471
5472         return 0;
5473 }
5474
5475 static void
5476 ixgbevf_vlan_strip_queue_set(struct rte_eth_dev *dev, uint16_t queue, int on)
5477 {
5478         struct ixgbe_hw *hw =
5479                 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5480         uint32_t ctrl;
5481
5482         PMD_INIT_FUNC_TRACE();
5483
5484         if (queue >= hw->mac.max_rx_queues)
5485                 return;
5486
5487         ctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(queue));
5488         if (on)
5489                 ctrl |= IXGBE_RXDCTL_VME;
5490         else
5491                 ctrl &= ~IXGBE_RXDCTL_VME;
5492         IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(queue), ctrl);
5493
5494         ixgbe_vlan_hw_strip_bitmap_set(dev, queue, on);
5495 }
5496
5497 static int
5498 ixgbevf_vlan_offload_config(struct rte_eth_dev *dev, int mask)
5499 {
5500         struct ixgbe_rx_queue *rxq;
5501         uint16_t i;
5502         int on = 0;
5503
5504         /* VF function only support hw strip feature, others are not support */
5505         if (mask & ETH_VLAN_STRIP_MASK) {
5506                 for (i = 0; i < dev->data->nb_rx_queues; i++) {
5507                         rxq = dev->data->rx_queues[i];
5508                         on = !!(rxq->offloads & DEV_RX_OFFLOAD_VLAN_STRIP);
5509                         ixgbevf_vlan_strip_queue_set(dev, i, on);
5510                 }
5511         }
5512
5513         return 0;
5514 }
5515
5516 static int
5517 ixgbevf_vlan_offload_set(struct rte_eth_dev *dev, int mask)
5518 {
5519         ixgbe_config_vlan_strip_on_all_queues(dev, mask);
5520
5521         ixgbevf_vlan_offload_config(dev, mask);
5522
5523         return 0;
5524 }
5525
5526 int
5527 ixgbe_vt_check(struct ixgbe_hw *hw)
5528 {
5529         uint32_t reg_val;
5530
5531         /* if Virtualization Technology is enabled */
5532         reg_val = IXGBE_READ_REG(hw, IXGBE_VT_CTL);
5533         if (!(reg_val & IXGBE_VT_CTL_VT_ENABLE)) {
5534                 PMD_INIT_LOG(ERR, "VT must be enabled for this setting");
5535                 return -1;
5536         }
5537
5538         return 0;
5539 }
5540
5541 static uint32_t
5542 ixgbe_uta_vector(struct ixgbe_hw *hw, struct rte_ether_addr *uc_addr)
5543 {
5544         uint32_t vector = 0;
5545
5546         switch (hw->mac.mc_filter_type) {
5547         case 0:   /* use bits [47:36] of the address */
5548                 vector = ((uc_addr->addr_bytes[4] >> 4) |
5549                         (((uint16_t)uc_addr->addr_bytes[5]) << 4));
5550                 break;
5551         case 1:   /* use bits [46:35] of the address */
5552                 vector = ((uc_addr->addr_bytes[4] >> 3) |
5553                         (((uint16_t)uc_addr->addr_bytes[5]) << 5));
5554                 break;
5555         case 2:   /* use bits [45:34] of the address */
5556                 vector = ((uc_addr->addr_bytes[4] >> 2) |
5557                         (((uint16_t)uc_addr->addr_bytes[5]) << 6));
5558                 break;
5559         case 3:   /* use bits [43:32] of the address */
5560                 vector = ((uc_addr->addr_bytes[4]) |
5561                         (((uint16_t)uc_addr->addr_bytes[5]) << 8));
5562                 break;
5563         default:  /* Invalid mc_filter_type */
5564                 break;
5565         }
5566
5567         /* vector can only be 12-bits or boundary will be exceeded */
5568         vector &= 0xFFF;
5569         return vector;
5570 }
5571
5572 static int
5573 ixgbe_uc_hash_table_set(struct rte_eth_dev *dev,
5574                         struct rte_ether_addr *mac_addr, uint8_t on)
5575 {
5576         uint32_t vector;
5577         uint32_t uta_idx;
5578         uint32_t reg_val;
5579         uint32_t uta_shift;
5580         uint32_t rc;
5581         const uint32_t ixgbe_uta_idx_mask = 0x7F;
5582         const uint32_t ixgbe_uta_bit_shift = 5;
5583         const uint32_t ixgbe_uta_bit_mask = (0x1 << ixgbe_uta_bit_shift) - 1;
5584         const uint32_t bit1 = 0x1;
5585
5586         struct ixgbe_hw *hw =
5587                 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5588         struct ixgbe_uta_info *uta_info =
5589                 IXGBE_DEV_PRIVATE_TO_UTA(dev->data->dev_private);
5590
5591         /* The UTA table only exists on 82599 hardware and newer */
5592         if (hw->mac.type < ixgbe_mac_82599EB)
5593                 return -ENOTSUP;
5594
5595         vector = ixgbe_uta_vector(hw, mac_addr);
5596         uta_idx = (vector >> ixgbe_uta_bit_shift) & ixgbe_uta_idx_mask;
5597         uta_shift = vector & ixgbe_uta_bit_mask;
5598
5599         rc = ((uta_info->uta_shadow[uta_idx] >> uta_shift & bit1) != 0);
5600         if (rc == on)
5601                 return 0;
5602
5603         reg_val = IXGBE_READ_REG(hw, IXGBE_UTA(uta_idx));
5604         if (on) {
5605                 uta_info->uta_in_use++;
5606                 reg_val |= (bit1 << uta_shift);
5607                 uta_info->uta_shadow[uta_idx] |= (bit1 << uta_shift);
5608         } else {
5609                 uta_info->uta_in_use--;
5610                 reg_val &= ~(bit1 << uta_shift);
5611                 uta_info->uta_shadow[uta_idx] &= ~(bit1 << uta_shift);
5612         }
5613
5614         IXGBE_WRITE_REG(hw, IXGBE_UTA(uta_idx), reg_val);
5615
5616         if (uta_info->uta_in_use > 0)
5617                 IXGBE_WRITE_REG(hw, IXGBE_MCSTCTRL,
5618                                 IXGBE_MCSTCTRL_MFE | hw->mac.mc_filter_type);
5619         else
5620                 IXGBE_WRITE_REG(hw, IXGBE_MCSTCTRL, hw->mac.mc_filter_type);
5621
5622         return 0;
5623 }
5624
5625 static int
5626 ixgbe_uc_all_hash_table_set(struct rte_eth_dev *dev, uint8_t on)
5627 {
5628         int i;
5629         struct ixgbe_hw *hw =
5630                 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5631         struct ixgbe_uta_info *uta_info =
5632                 IXGBE_DEV_PRIVATE_TO_UTA(dev->data->dev_private);
5633
5634         /* The UTA table only exists on 82599 hardware and newer */
5635         if (hw->mac.type < ixgbe_mac_82599EB)
5636                 return -ENOTSUP;
5637
5638         if (on) {
5639                 for (i = 0; i < ETH_VMDQ_NUM_UC_HASH_ARRAY; i++) {
5640                         uta_info->uta_shadow[i] = ~0;
5641                         IXGBE_WRITE_REG(hw, IXGBE_UTA(i), ~0);
5642                 }
5643         } else {
5644                 for (i = 0; i < ETH_VMDQ_NUM_UC_HASH_ARRAY; i++) {
5645                         uta_info->uta_shadow[i] = 0;
5646                         IXGBE_WRITE_REG(hw, IXGBE_UTA(i), 0);
5647                 }
5648         }
5649         return 0;
5650
5651 }
5652
5653 uint32_t
5654 ixgbe_convert_vm_rx_mask_to_val(uint16_t rx_mask, uint32_t orig_val)
5655 {
5656         uint32_t new_val = orig_val;
5657
5658         if (rx_mask & ETH_VMDQ_ACCEPT_UNTAG)
5659                 new_val |= IXGBE_VMOLR_AUPE;
5660         if (rx_mask & ETH_VMDQ_ACCEPT_HASH_MC)
5661                 new_val |= IXGBE_VMOLR_ROMPE;
5662         if (rx_mask & ETH_VMDQ_ACCEPT_HASH_UC)
5663                 new_val |= IXGBE_VMOLR_ROPE;
5664         if (rx_mask & ETH_VMDQ_ACCEPT_BROADCAST)
5665                 new_val |= IXGBE_VMOLR_BAM;
5666         if (rx_mask & ETH_VMDQ_ACCEPT_MULTICAST)
5667                 new_val |= IXGBE_VMOLR_MPE;
5668
5669         return new_val;
5670 }
5671
5672 #define IXGBE_MRCTL_VPME  0x01 /* Virtual Pool Mirroring. */
5673 #define IXGBE_MRCTL_UPME  0x02 /* Uplink Port Mirroring. */
5674 #define IXGBE_MRCTL_DPME  0x04 /* Downlink Port Mirroring. */
5675 #define IXGBE_MRCTL_VLME  0x08 /* VLAN Mirroring. */
5676 #define IXGBE_INVALID_MIRROR_TYPE(mirror_type) \
5677         ((mirror_type) & ~(uint8_t)(ETH_MIRROR_VIRTUAL_POOL_UP | \
5678         ETH_MIRROR_UPLINK_PORT | ETH_MIRROR_DOWNLINK_PORT | ETH_MIRROR_VLAN))
5679
5680 static int
5681 ixgbe_mirror_rule_set(struct rte_eth_dev *dev,
5682                       struct rte_eth_mirror_conf *mirror_conf,
5683                       uint8_t rule_id, uint8_t on)
5684 {
5685         uint32_t mr_ctl, vlvf;
5686         uint32_t mp_lsb = 0;
5687         uint32_t mv_msb = 0;
5688         uint32_t mv_lsb = 0;
5689         uint32_t mp_msb = 0;
5690         uint8_t i = 0;
5691         int reg_index = 0;
5692         uint64_t vlan_mask = 0;
5693
5694         const uint8_t pool_mask_offset = 32;
5695         const uint8_t vlan_mask_offset = 32;
5696         const uint8_t dst_pool_offset = 8;
5697         const uint8_t rule_mr_offset  = 4;
5698         const uint8_t mirror_rule_mask = 0x0F;
5699
5700         struct ixgbe_mirror_info *mr_info =
5701                         (IXGBE_DEV_PRIVATE_TO_PFDATA(dev->data->dev_private));
5702         struct ixgbe_hw *hw =
5703                 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5704         uint8_t mirror_type = 0;
5705
5706         if (ixgbe_vt_check(hw) < 0)
5707                 return -ENOTSUP;
5708
5709         if (rule_id >= IXGBE_MAX_MIRROR_RULES)
5710                 return -EINVAL;
5711
5712         if (IXGBE_INVALID_MIRROR_TYPE(mirror_conf->rule_type)) {
5713                 PMD_DRV_LOG(ERR, "unsupported mirror type 0x%x.",
5714                             mirror_conf->rule_type);
5715                 return -EINVAL;
5716         }
5717
5718         if (mirror_conf->rule_type & ETH_MIRROR_VLAN) {
5719                 mirror_type |= IXGBE_MRCTL_VLME;
5720                 /* Check if vlan id is valid and find conresponding VLAN ID
5721                  * index in VLVF
5722                  */
5723                 for (i = 0; i < IXGBE_VLVF_ENTRIES; i++) {
5724                         if (mirror_conf->vlan.vlan_mask & (1ULL << i)) {
5725                                 /* search vlan id related pool vlan filter
5726                                  * index
5727                                  */
5728                                 reg_index = ixgbe_find_vlvf_slot(
5729                                                 hw,
5730                                                 mirror_conf->vlan.vlan_id[i],
5731                                                 false);
5732                                 if (reg_index < 0)
5733                                         return -EINVAL;
5734                                 vlvf = IXGBE_READ_REG(hw,
5735                                                       IXGBE_VLVF(reg_index));
5736                                 if ((vlvf & IXGBE_VLVF_VIEN) &&
5737                                     ((vlvf & IXGBE_VLVF_VLANID_MASK) ==
5738                                       mirror_conf->vlan.vlan_id[i]))
5739                                         vlan_mask |= (1ULL << reg_index);
5740                                 else
5741                                         return -EINVAL;
5742                         }
5743                 }
5744
5745                 if (on) {
5746                         mv_lsb = vlan_mask & 0xFFFFFFFF;
5747                         mv_msb = vlan_mask >> vlan_mask_offset;
5748
5749                         mr_info->mr_conf[rule_id].vlan.vlan_mask =
5750                                                 mirror_conf->vlan.vlan_mask;
5751                         for (i = 0; i < ETH_VMDQ_MAX_VLAN_FILTERS; i++) {
5752                                 if (mirror_conf->vlan.vlan_mask & (1ULL << i))
5753                                         mr_info->mr_conf[rule_id].vlan.vlan_id[i] =
5754                                                 mirror_conf->vlan.vlan_id[i];
5755                         }
5756                 } else {
5757                         mv_lsb = 0;
5758                         mv_msb = 0;
5759                         mr_info->mr_conf[rule_id].vlan.vlan_mask = 0;
5760                         for (i = 0; i < ETH_VMDQ_MAX_VLAN_FILTERS; i++)
5761                                 mr_info->mr_conf[rule_id].vlan.vlan_id[i] = 0;
5762                 }
5763         }
5764
5765         /**
5766          * if enable pool mirror, write related pool mask register,if disable
5767          * pool mirror, clear PFMRVM register
5768          */
5769         if (mirror_conf->rule_type & ETH_MIRROR_VIRTUAL_POOL_UP) {
5770                 mirror_type |= IXGBE_MRCTL_VPME;
5771                 if (on) {
5772                         mp_lsb = mirror_conf->pool_mask & 0xFFFFFFFF;
5773                         mp_msb = mirror_conf->pool_mask >> pool_mask_offset;
5774                         mr_info->mr_conf[rule_id].pool_mask =
5775                                         mirror_conf->pool_mask;
5776
5777                 } else {
5778                         mp_lsb = 0;
5779                         mp_msb = 0;
5780                         mr_info->mr_conf[rule_id].pool_mask = 0;
5781                 }
5782         }
5783         if (mirror_conf->rule_type & ETH_MIRROR_UPLINK_PORT)
5784                 mirror_type |= IXGBE_MRCTL_UPME;
5785         if (mirror_conf->rule_type & ETH_MIRROR_DOWNLINK_PORT)
5786                 mirror_type |= IXGBE_MRCTL_DPME;
5787
5788         /* read  mirror control register and recalculate it */
5789         mr_ctl = IXGBE_READ_REG(hw, IXGBE_MRCTL(rule_id));
5790
5791         if (on) {
5792                 mr_ctl |= mirror_type;
5793                 mr_ctl &= mirror_rule_mask;
5794                 mr_ctl |= mirror_conf->dst_pool << dst_pool_offset;
5795         } else {
5796                 mr_ctl &= ~(mirror_conf->rule_type & mirror_rule_mask);
5797         }
5798
5799         mr_info->mr_conf[rule_id].rule_type = mirror_conf->rule_type;
5800         mr_info->mr_conf[rule_id].dst_pool = mirror_conf->dst_pool;
5801
5802         /* write mirrror control  register */
5803         IXGBE_WRITE_REG(hw, IXGBE_MRCTL(rule_id), mr_ctl);
5804
5805         /* write pool mirrror control  register */
5806         if (mirror_conf->rule_type & ETH_MIRROR_VIRTUAL_POOL_UP) {
5807                 IXGBE_WRITE_REG(hw, IXGBE_VMRVM(rule_id), mp_lsb);
5808                 IXGBE_WRITE_REG(hw, IXGBE_VMRVM(rule_id + rule_mr_offset),
5809                                 mp_msb);
5810         }
5811         /* write VLAN mirrror control  register */
5812         if (mirror_conf->rule_type & ETH_MIRROR_VLAN) {
5813                 IXGBE_WRITE_REG(hw, IXGBE_VMRVLAN(rule_id), mv_lsb);
5814                 IXGBE_WRITE_REG(hw, IXGBE_VMRVLAN(rule_id + rule_mr_offset),
5815                                 mv_msb);
5816         }
5817
5818         return 0;
5819 }
5820
5821 static int
5822 ixgbe_mirror_rule_reset(struct rte_eth_dev *dev, uint8_t rule_id)
5823 {
5824         int mr_ctl = 0;
5825         uint32_t lsb_val = 0;
5826         uint32_t msb_val = 0;
5827         const uint8_t rule_mr_offset = 4;
5828
5829         struct ixgbe_hw *hw =
5830                 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5831         struct ixgbe_mirror_info *mr_info =
5832                 (IXGBE_DEV_PRIVATE_TO_PFDATA(dev->data->dev_private));
5833
5834         if (ixgbe_vt_check(hw) < 0)
5835                 return -ENOTSUP;
5836
5837         if (rule_id >= IXGBE_MAX_MIRROR_RULES)
5838                 return -EINVAL;
5839
5840         memset(&mr_info->mr_conf[rule_id], 0,
5841                sizeof(struct rte_eth_mirror_conf));
5842
5843         /* clear PFVMCTL register */
5844         IXGBE_WRITE_REG(hw, IXGBE_MRCTL(rule_id), mr_ctl);
5845
5846         /* clear pool mask register */
5847         IXGBE_WRITE_REG(hw, IXGBE_VMRVM(rule_id), lsb_val);
5848         IXGBE_WRITE_REG(hw, IXGBE_VMRVM(rule_id + rule_mr_offset), msb_val);
5849
5850         /* clear vlan mask register */
5851         IXGBE_WRITE_REG(hw, IXGBE_VMRVLAN(rule_id), lsb_val);
5852         IXGBE_WRITE_REG(hw, IXGBE_VMRVLAN(rule_id + rule_mr_offset), msb_val);
5853
5854         return 0;
5855 }
5856
5857 static int
5858 ixgbevf_dev_rx_queue_intr_enable(struct rte_eth_dev *dev, uint16_t queue_id)
5859 {
5860         struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
5861         struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
5862         struct ixgbe_interrupt *intr =
5863                 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
5864         struct ixgbe_hw *hw =
5865                 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5866         uint32_t vec = IXGBE_MISC_VEC_ID;
5867
5868         if (rte_intr_allow_others(intr_handle))
5869                 vec = IXGBE_RX_VEC_START;
5870         intr->mask |= (1 << vec);
5871         RTE_SET_USED(queue_id);
5872         IXGBE_WRITE_REG(hw, IXGBE_VTEIMS, intr->mask);
5873
5874         rte_intr_ack(intr_handle);
5875
5876         return 0;
5877 }
5878
5879 static int
5880 ixgbevf_dev_rx_queue_intr_disable(struct rte_eth_dev *dev, uint16_t queue_id)
5881 {
5882         struct ixgbe_interrupt *intr =
5883                 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
5884         struct ixgbe_hw *hw =
5885                 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5886         struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
5887         struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
5888         uint32_t vec = IXGBE_MISC_VEC_ID;
5889
5890         if (rte_intr_allow_others(intr_handle))
5891                 vec = IXGBE_RX_VEC_START;
5892         intr->mask &= ~(1 << vec);
5893         RTE_SET_USED(queue_id);
5894         IXGBE_WRITE_REG(hw, IXGBE_VTEIMS, intr->mask);
5895
5896         return 0;
5897 }
5898
5899 static int
5900 ixgbe_dev_rx_queue_intr_enable(struct rte_eth_dev *dev, uint16_t queue_id)
5901 {
5902         struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
5903         struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
5904         uint32_t mask;
5905         struct ixgbe_hw *hw =
5906                 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5907         struct ixgbe_interrupt *intr =
5908                 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
5909
5910         if (queue_id < 16) {
5911                 ixgbe_disable_intr(hw);
5912                 intr->mask |= (1 << queue_id);
5913                 ixgbe_enable_intr(dev);
5914         } else if (queue_id < 32) {
5915                 mask = IXGBE_READ_REG(hw, IXGBE_EIMS_EX(0));
5916                 mask &= (1 << queue_id);
5917                 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(0), mask);
5918         } else if (queue_id < 64) {
5919                 mask = IXGBE_READ_REG(hw, IXGBE_EIMS_EX(1));
5920                 mask &= (1 << (queue_id - 32));
5921                 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(1), mask);
5922         }
5923         rte_intr_ack(intr_handle);
5924
5925         return 0;
5926 }
5927
5928 static int
5929 ixgbe_dev_rx_queue_intr_disable(struct rte_eth_dev *dev, uint16_t queue_id)
5930 {
5931         uint32_t mask;
5932         struct ixgbe_hw *hw =
5933                 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5934         struct ixgbe_interrupt *intr =
5935                 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
5936
5937         if (queue_id < 16) {
5938                 ixgbe_disable_intr(hw);
5939                 intr->mask &= ~(1 << queue_id);
5940                 ixgbe_enable_intr(dev);
5941         } else if (queue_id < 32) {
5942                 mask = IXGBE_READ_REG(hw, IXGBE_EIMS_EX(0));
5943                 mask &= ~(1 << queue_id);
5944                 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(0), mask);
5945         } else if (queue_id < 64) {
5946                 mask = IXGBE_READ_REG(hw, IXGBE_EIMS_EX(1));
5947                 mask &= ~(1 << (queue_id - 32));
5948                 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(1), mask);
5949         }
5950
5951         return 0;
5952 }
5953
5954 static void
5955 ixgbevf_set_ivar_map(struct ixgbe_hw *hw, int8_t direction,
5956                      uint8_t queue, uint8_t msix_vector)
5957 {
5958         uint32_t tmp, idx;
5959
5960         if (direction == -1) {
5961                 /* other causes */
5962                 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
5963                 tmp = IXGBE_READ_REG(hw, IXGBE_VTIVAR_MISC);
5964                 tmp &= ~0xFF;
5965                 tmp |= msix_vector;
5966                 IXGBE_WRITE_REG(hw, IXGBE_VTIVAR_MISC, tmp);
5967         } else {
5968                 /* rx or tx cause */
5969                 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
5970                 idx = ((16 * (queue & 1)) + (8 * direction));
5971                 tmp = IXGBE_READ_REG(hw, IXGBE_VTIVAR(queue >> 1));
5972                 tmp &= ~(0xFF << idx);
5973                 tmp |= (msix_vector << idx);
5974                 IXGBE_WRITE_REG(hw, IXGBE_VTIVAR(queue >> 1), tmp);
5975         }
5976 }
5977
5978 /**
5979  * set the IVAR registers, mapping interrupt causes to vectors
5980  * @param hw
5981  *  pointer to ixgbe_hw struct
5982  * @direction
5983  *  0 for Rx, 1 for Tx, -1 for other causes
5984  * @queue
5985  *  queue to map the corresponding interrupt to
5986  * @msix_vector
5987  *  the vector to map to the corresponding queue
5988  */
5989 static void
5990 ixgbe_set_ivar_map(struct ixgbe_hw *hw, int8_t direction,
5991                    uint8_t queue, uint8_t msix_vector)
5992 {
5993         uint32_t tmp, idx;
5994
5995         msix_vector |= IXGBE_IVAR_ALLOC_VAL;
5996         if (hw->mac.type == ixgbe_mac_82598EB) {
5997                 if (direction == -1)
5998                         direction = 0;
5999                 idx = (((direction * 64) + queue) >> 2) & 0x1F;
6000                 tmp = IXGBE_READ_REG(hw, IXGBE_IVAR(idx));
6001                 tmp &= ~(0xFF << (8 * (queue & 0x3)));
6002                 tmp |= (msix_vector << (8 * (queue & 0x3)));
6003                 IXGBE_WRITE_REG(hw, IXGBE_IVAR(idx), tmp);
6004         } else if ((hw->mac.type == ixgbe_mac_82599EB) ||
6005                         (hw->mac.type == ixgbe_mac_X540) ||
6006                         (hw->mac.type == ixgbe_mac_X550) ||
6007                         (hw->mac.type == ixgbe_mac_X550EM_x)) {
6008                 if (direction == -1) {
6009                         /* other causes */
6010                         idx = ((queue & 1) * 8);
6011                         tmp = IXGBE_READ_REG(hw, IXGBE_IVAR_MISC);
6012                         tmp &= ~(0xFF << idx);
6013                         tmp |= (msix_vector << idx);
6014                         IXGBE_WRITE_REG(hw, IXGBE_IVAR_MISC, tmp);
6015                 } else {
6016                         /* rx or tx causes */
6017                         idx = ((16 * (queue & 1)) + (8 * direction));
6018                         tmp = IXGBE_READ_REG(hw, IXGBE_IVAR(queue >> 1));
6019                         tmp &= ~(0xFF << idx);
6020                         tmp |= (msix_vector << idx);
6021                         IXGBE_WRITE_REG(hw, IXGBE_IVAR(queue >> 1), tmp);
6022                 }
6023         }
6024 }
6025
6026 static void
6027 ixgbevf_configure_msix(struct rte_eth_dev *dev)
6028 {
6029         struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
6030         struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
6031         struct ixgbe_hw *hw =
6032                 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6033         uint32_t q_idx;
6034         uint32_t vector_idx = IXGBE_MISC_VEC_ID;
6035         uint32_t base = IXGBE_MISC_VEC_ID;
6036
6037         /* Configure VF other cause ivar */
6038         ixgbevf_set_ivar_map(hw, -1, 1, vector_idx);
6039
6040         /* won't configure msix register if no mapping is done
6041          * between intr vector and event fd.
6042          */
6043         if (!rte_intr_dp_is_en(intr_handle))
6044                 return;
6045
6046         if (rte_intr_allow_others(intr_handle)) {
6047                 base = IXGBE_RX_VEC_START;
6048                 vector_idx = IXGBE_RX_VEC_START;
6049         }
6050
6051         /* Configure all RX queues of VF */
6052         for (q_idx = 0; q_idx < dev->data->nb_rx_queues; q_idx++) {
6053                 /* Force all queue use vector 0,
6054                  * as IXGBE_VF_MAXMSIVECOTR = 1
6055                  */
6056                 ixgbevf_set_ivar_map(hw, 0, q_idx, vector_idx);
6057                 intr_handle->intr_vec[q_idx] = vector_idx;
6058                 if (vector_idx < base + intr_handle->nb_efd - 1)
6059                         vector_idx++;
6060         }
6061
6062         /* As RX queue setting above show, all queues use the vector 0.
6063          * Set only the ITR value of IXGBE_MISC_VEC_ID.
6064          */
6065         IXGBE_WRITE_REG(hw, IXGBE_VTEITR(IXGBE_MISC_VEC_ID),
6066                         IXGBE_EITR_INTERVAL_US(IXGBE_QUEUE_ITR_INTERVAL_DEFAULT)
6067                         | IXGBE_EITR_CNT_WDIS);
6068 }
6069
6070 /**
6071  * Sets up the hardware to properly generate MSI-X interrupts
6072  * @hw
6073  *  board private structure
6074  */
6075 static void
6076 ixgbe_configure_msix(struct rte_eth_dev *dev)
6077 {
6078         struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
6079         struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
6080         struct ixgbe_hw *hw =
6081                 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6082         uint32_t queue_id, base = IXGBE_MISC_VEC_ID;
6083         uint32_t vec = IXGBE_MISC_VEC_ID;
6084         uint32_t mask;
6085         uint32_t gpie;
6086
6087         /* won't configure msix register if no mapping is done
6088          * between intr vector and event fd
6089          * but if misx has been enabled already, need to configure
6090          * auto clean, auto mask and throttling.
6091          */
6092         gpie = IXGBE_READ_REG(hw, IXGBE_GPIE);
6093         if (!rte_intr_dp_is_en(intr_handle) &&
6094             !(gpie & (IXGBE_GPIE_MSIX_MODE | IXGBE_GPIE_PBA_SUPPORT)))
6095                 return;
6096
6097         if (rte_intr_allow_others(intr_handle))
6098                 vec = base = IXGBE_RX_VEC_START;
6099
6100         /* setup GPIE for MSI-x mode */
6101         gpie = IXGBE_READ_REG(hw, IXGBE_GPIE);
6102         gpie |= IXGBE_GPIE_MSIX_MODE | IXGBE_GPIE_PBA_SUPPORT |
6103                 IXGBE_GPIE_OCD | IXGBE_GPIE_EIAME;
6104         /* auto clearing and auto setting corresponding bits in EIMS
6105          * when MSI-X interrupt is triggered
6106          */
6107         if (hw->mac.type == ixgbe_mac_82598EB) {
6108                 IXGBE_WRITE_REG(hw, IXGBE_EIAM, IXGBE_EICS_RTX_QUEUE);
6109         } else {
6110                 IXGBE_WRITE_REG(hw, IXGBE_EIAM_EX(0), 0xFFFFFFFF);
6111                 IXGBE_WRITE_REG(hw, IXGBE_EIAM_EX(1), 0xFFFFFFFF);
6112         }
6113         IXGBE_WRITE_REG(hw, IXGBE_GPIE, gpie);
6114
6115         /* Populate the IVAR table and set the ITR values to the
6116          * corresponding register.
6117          */
6118         if (rte_intr_dp_is_en(intr_handle)) {
6119                 for (queue_id = 0; queue_id < dev->data->nb_rx_queues;
6120                         queue_id++) {
6121                         /* by default, 1:1 mapping */
6122                         ixgbe_set_ivar_map(hw, 0, queue_id, vec);
6123                         intr_handle->intr_vec[queue_id] = vec;
6124                         if (vec < base + intr_handle->nb_efd - 1)
6125                                 vec++;
6126                 }
6127
6128                 switch (hw->mac.type) {
6129                 case ixgbe_mac_82598EB:
6130                         ixgbe_set_ivar_map(hw, -1,
6131                                            IXGBE_IVAR_OTHER_CAUSES_INDEX,
6132                                            IXGBE_MISC_VEC_ID);
6133                         break;
6134                 case ixgbe_mac_82599EB:
6135                 case ixgbe_mac_X540:
6136                 case ixgbe_mac_X550:
6137                 case ixgbe_mac_X550EM_x:
6138                         ixgbe_set_ivar_map(hw, -1, 1, IXGBE_MISC_VEC_ID);
6139                         break;
6140                 default:
6141                         break;
6142                 }
6143         }
6144         IXGBE_WRITE_REG(hw, IXGBE_EITR(IXGBE_MISC_VEC_ID),
6145                         IXGBE_EITR_INTERVAL_US(IXGBE_QUEUE_ITR_INTERVAL_DEFAULT)
6146                         | IXGBE_EITR_CNT_WDIS);
6147
6148         /* set up to autoclear timer, and the vectors */
6149         mask = IXGBE_EIMS_ENABLE_MASK;
6150         mask &= ~(IXGBE_EIMS_OTHER |
6151                   IXGBE_EIMS_MAILBOX |
6152                   IXGBE_EIMS_LSC);
6153
6154         IXGBE_WRITE_REG(hw, IXGBE_EIAC, mask);
6155 }
6156
6157 int
6158 ixgbe_set_queue_rate_limit(struct rte_eth_dev *dev,
6159                            uint16_t queue_idx, uint16_t tx_rate)
6160 {
6161         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6162         struct rte_eth_rxmode *rxmode;
6163         uint32_t rf_dec, rf_int;
6164         uint32_t bcnrc_val;
6165         uint16_t link_speed = dev->data->dev_link.link_speed;
6166
6167         if (queue_idx >= hw->mac.max_tx_queues)
6168                 return -EINVAL;
6169
6170         if (tx_rate != 0) {
6171                 /* Calculate the rate factor values to set */
6172                 rf_int = (uint32_t)link_speed / (uint32_t)tx_rate;
6173                 rf_dec = (uint32_t)link_speed % (uint32_t)tx_rate;
6174                 rf_dec = (rf_dec << IXGBE_RTTBCNRC_RF_INT_SHIFT) / tx_rate;
6175
6176                 bcnrc_val = IXGBE_RTTBCNRC_RS_ENA;
6177                 bcnrc_val |= ((rf_int << IXGBE_RTTBCNRC_RF_INT_SHIFT) &
6178                                 IXGBE_RTTBCNRC_RF_INT_MASK_M);
6179                 bcnrc_val |= (rf_dec & IXGBE_RTTBCNRC_RF_DEC_MASK);
6180         } else {
6181                 bcnrc_val = 0;
6182         }
6183
6184         rxmode = &dev->data->dev_conf.rxmode;
6185         /*
6186          * Set global transmit compensation time to the MMW_SIZE in RTTBCNRM
6187          * register. MMW_SIZE=0x014 if 9728-byte jumbo is supported, otherwise
6188          * set as 0x4.
6189          */
6190         if ((rxmode->offloads & DEV_RX_OFFLOAD_JUMBO_FRAME) &&
6191             (rxmode->max_rx_pkt_len >= IXGBE_MAX_JUMBO_FRAME_SIZE))
6192                 IXGBE_WRITE_REG(hw, IXGBE_RTTBCNRM,
6193                         IXGBE_MMW_SIZE_JUMBO_FRAME);
6194         else
6195                 IXGBE_WRITE_REG(hw, IXGBE_RTTBCNRM,
6196                         IXGBE_MMW_SIZE_DEFAULT);
6197
6198         /* Set RTTBCNRC of queue X */
6199         IXGBE_WRITE_REG(hw, IXGBE_RTTDQSEL, queue_idx);
6200         IXGBE_WRITE_REG(hw, IXGBE_RTTBCNRC, bcnrc_val);
6201         IXGBE_WRITE_FLUSH(hw);
6202
6203         return 0;
6204 }
6205
6206 static int
6207 ixgbevf_add_mac_addr(struct rte_eth_dev *dev, struct rte_ether_addr *mac_addr,
6208                      __attribute__((unused)) uint32_t index,
6209                      __attribute__((unused)) uint32_t pool)
6210 {
6211         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6212         int diag;
6213
6214         /*
6215          * On a 82599 VF, adding again the same MAC addr is not an idempotent
6216          * operation. Trap this case to avoid exhausting the [very limited]
6217          * set of PF resources used to store VF MAC addresses.
6218          */
6219         if (memcmp(hw->mac.perm_addr, mac_addr,
6220                         sizeof(struct rte_ether_addr)) == 0)
6221                 return -1;
6222         diag = ixgbevf_set_uc_addr_vf(hw, 2, mac_addr->addr_bytes);
6223         if (diag != 0)
6224                 PMD_DRV_LOG(ERR, "Unable to add MAC address "
6225                             "%02x:%02x:%02x:%02x:%02x:%02x - diag=%d",
6226                             mac_addr->addr_bytes[0],
6227                             mac_addr->addr_bytes[1],
6228                             mac_addr->addr_bytes[2],
6229                             mac_addr->addr_bytes[3],
6230                             mac_addr->addr_bytes[4],
6231                             mac_addr->addr_bytes[5],
6232                             diag);
6233         return diag;
6234 }
6235
6236 static void
6237 ixgbevf_remove_mac_addr(struct rte_eth_dev *dev, uint32_t index)
6238 {
6239         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6240         struct rte_ether_addr *perm_addr =
6241                 (struct rte_ether_addr *)hw->mac.perm_addr;
6242         struct rte_ether_addr *mac_addr;
6243         uint32_t i;
6244         int diag;
6245
6246         /*
6247          * The IXGBE_VF_SET_MACVLAN command of the ixgbe-pf driver does
6248          * not support the deletion of a given MAC address.
6249          * Instead, it imposes to delete all MAC addresses, then to add again
6250          * all MAC addresses with the exception of the one to be deleted.
6251          */
6252         (void) ixgbevf_set_uc_addr_vf(hw, 0, NULL);
6253
6254         /*
6255          * Add again all MAC addresses, with the exception of the deleted one
6256          * and of the permanent MAC address.
6257          */
6258         for (i = 0, mac_addr = dev->data->mac_addrs;
6259              i < hw->mac.num_rar_entries; i++, mac_addr++) {
6260                 /* Skip the deleted MAC address */
6261                 if (i == index)
6262                         continue;
6263                 /* Skip NULL MAC addresses */
6264                 if (rte_is_zero_ether_addr(mac_addr))
6265                         continue;
6266                 /* Skip the permanent MAC address */
6267                 if (memcmp(perm_addr, mac_addr,
6268                                 sizeof(struct rte_ether_addr)) == 0)
6269                         continue;
6270                 diag = ixgbevf_set_uc_addr_vf(hw, 2, mac_addr->addr_bytes);
6271                 if (diag != 0)
6272                         PMD_DRV_LOG(ERR,
6273                                     "Adding again MAC address "
6274                                     "%02x:%02x:%02x:%02x:%02x:%02x failed "
6275                                     "diag=%d",
6276                                     mac_addr->addr_bytes[0],
6277                                     mac_addr->addr_bytes[1],
6278                                     mac_addr->addr_bytes[2],
6279                                     mac_addr->addr_bytes[3],
6280                                     mac_addr->addr_bytes[4],
6281                                     mac_addr->addr_bytes[5],
6282                                     diag);
6283         }
6284 }
6285
6286 static int
6287 ixgbevf_set_default_mac_addr(struct rte_eth_dev *dev,
6288                         struct rte_ether_addr *addr)
6289 {
6290         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6291
6292         hw->mac.ops.set_rar(hw, 0, (void *)addr, 0, 0);
6293
6294         return 0;
6295 }
6296
6297 int
6298 ixgbe_syn_filter_set(struct rte_eth_dev *dev,
6299                         struct rte_eth_syn_filter *filter,
6300                         bool add)
6301 {
6302         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6303         struct ixgbe_filter_info *filter_info =
6304                 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
6305         uint32_t syn_info;
6306         uint32_t synqf;
6307
6308         if (filter->queue >= IXGBE_MAX_RX_QUEUE_NUM)
6309                 return -EINVAL;
6310
6311         syn_info = filter_info->syn_info;
6312
6313         if (add) {
6314                 if (syn_info & IXGBE_SYN_FILTER_ENABLE)
6315                         return -EINVAL;
6316                 synqf = (uint32_t)(((filter->queue << IXGBE_SYN_FILTER_QUEUE_SHIFT) &
6317                         IXGBE_SYN_FILTER_QUEUE) | IXGBE_SYN_FILTER_ENABLE);
6318
6319                 if (filter->hig_pri)
6320                         synqf |= IXGBE_SYN_FILTER_SYNQFP;
6321                 else
6322                         synqf &= ~IXGBE_SYN_FILTER_SYNQFP;
6323         } else {
6324                 synqf = IXGBE_READ_REG(hw, IXGBE_SYNQF);
6325                 if (!(syn_info & IXGBE_SYN_FILTER_ENABLE))
6326                         return -ENOENT;
6327                 synqf &= ~(IXGBE_SYN_FILTER_QUEUE | IXGBE_SYN_FILTER_ENABLE);
6328         }
6329
6330         filter_info->syn_info = synqf;
6331         IXGBE_WRITE_REG(hw, IXGBE_SYNQF, synqf);
6332         IXGBE_WRITE_FLUSH(hw);
6333         return 0;
6334 }
6335
6336 static int
6337 ixgbe_syn_filter_get(struct rte_eth_dev *dev,
6338                         struct rte_eth_syn_filter *filter)
6339 {
6340         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6341         uint32_t synqf = IXGBE_READ_REG(hw, IXGBE_SYNQF);
6342
6343         if (synqf & IXGBE_SYN_FILTER_ENABLE) {
6344                 filter->hig_pri = (synqf & IXGBE_SYN_FILTER_SYNQFP) ? 1 : 0;
6345                 filter->queue = (uint16_t)((synqf & IXGBE_SYN_FILTER_QUEUE) >> 1);
6346                 return 0;
6347         }
6348         return -ENOENT;
6349 }
6350
6351 static int
6352 ixgbe_syn_filter_handle(struct rte_eth_dev *dev,
6353                         enum rte_filter_op filter_op,
6354                         void *arg)
6355 {
6356         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6357         int ret;
6358
6359         MAC_TYPE_FILTER_SUP(hw->mac.type);
6360
6361         if (filter_op == RTE_ETH_FILTER_NOP)
6362                 return 0;
6363
6364         if (arg == NULL) {
6365                 PMD_DRV_LOG(ERR, "arg shouldn't be NULL for operation %u",
6366                             filter_op);
6367                 return -EINVAL;
6368         }
6369
6370         switch (filter_op) {
6371         case RTE_ETH_FILTER_ADD:
6372                 ret = ixgbe_syn_filter_set(dev,
6373                                 (struct rte_eth_syn_filter *)arg,
6374                                 TRUE);
6375                 break;
6376         case RTE_ETH_FILTER_DELETE:
6377                 ret = ixgbe_syn_filter_set(dev,
6378                                 (struct rte_eth_syn_filter *)arg,
6379                                 FALSE);
6380                 break;
6381         case RTE_ETH_FILTER_GET:
6382                 ret = ixgbe_syn_filter_get(dev,
6383                                 (struct rte_eth_syn_filter *)arg);
6384                 break;
6385         default:
6386                 PMD_DRV_LOG(ERR, "unsupported operation %u", filter_op);
6387                 ret = -EINVAL;
6388                 break;
6389         }
6390
6391         return ret;
6392 }
6393
6394
6395 static inline enum ixgbe_5tuple_protocol
6396 convert_protocol_type(uint8_t protocol_value)
6397 {
6398         if (protocol_value == IPPROTO_TCP)
6399                 return IXGBE_FILTER_PROTOCOL_TCP;
6400         else if (protocol_value == IPPROTO_UDP)
6401                 return IXGBE_FILTER_PROTOCOL_UDP;
6402         else if (protocol_value == IPPROTO_SCTP)
6403                 return IXGBE_FILTER_PROTOCOL_SCTP;
6404         else
6405                 return IXGBE_FILTER_PROTOCOL_NONE;
6406 }
6407
6408 /* inject a 5-tuple filter to HW */
6409 static inline void
6410 ixgbe_inject_5tuple_filter(struct rte_eth_dev *dev,
6411                            struct ixgbe_5tuple_filter *filter)
6412 {
6413         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6414         int i;
6415         uint32_t ftqf, sdpqf;
6416         uint32_t l34timir = 0;
6417         uint8_t mask = 0xff;
6418
6419         i = filter->index;
6420
6421         sdpqf = (uint32_t)(filter->filter_info.dst_port <<
6422                                 IXGBE_SDPQF_DSTPORT_SHIFT);
6423         sdpqf = sdpqf | (filter->filter_info.src_port & IXGBE_SDPQF_SRCPORT);
6424
6425         ftqf = (uint32_t)(filter->filter_info.proto &
6426                 IXGBE_FTQF_PROTOCOL_MASK);
6427         ftqf |= (uint32_t)((filter->filter_info.priority &
6428                 IXGBE_FTQF_PRIORITY_MASK) << IXGBE_FTQF_PRIORITY_SHIFT);
6429         if (filter->filter_info.src_ip_mask == 0) /* 0 means compare. */
6430                 mask &= IXGBE_FTQF_SOURCE_ADDR_MASK;
6431         if (filter->filter_info.dst_ip_mask == 0)
6432                 mask &= IXGBE_FTQF_DEST_ADDR_MASK;
6433         if (filter->filter_info.src_port_mask == 0)
6434                 mask &= IXGBE_FTQF_SOURCE_PORT_MASK;
6435         if (filter->filter_info.dst_port_mask == 0)
6436                 mask &= IXGBE_FTQF_DEST_PORT_MASK;
6437         if (filter->filter_info.proto_mask == 0)
6438                 mask &= IXGBE_FTQF_PROTOCOL_COMP_MASK;
6439         ftqf |= mask << IXGBE_FTQF_5TUPLE_MASK_SHIFT;
6440         ftqf |= IXGBE_FTQF_POOL_MASK_EN;
6441         ftqf |= IXGBE_FTQF_QUEUE_ENABLE;
6442
6443         IXGBE_WRITE_REG(hw, IXGBE_DAQF(i), filter->filter_info.dst_ip);
6444         IXGBE_WRITE_REG(hw, IXGBE_SAQF(i), filter->filter_info.src_ip);
6445         IXGBE_WRITE_REG(hw, IXGBE_SDPQF(i), sdpqf);
6446         IXGBE_WRITE_REG(hw, IXGBE_FTQF(i), ftqf);
6447
6448         l34timir |= IXGBE_L34T_IMIR_RESERVE;
6449         l34timir |= (uint32_t)(filter->queue <<
6450                                 IXGBE_L34T_IMIR_QUEUE_SHIFT);
6451         IXGBE_WRITE_REG(hw, IXGBE_L34T_IMIR(i), l34timir);
6452 }
6453
6454 /*
6455  * add a 5tuple filter
6456  *
6457  * @param
6458  * dev: Pointer to struct rte_eth_dev.
6459  * index: the index the filter allocates.
6460  * filter: ponter to the filter that will be added.
6461  * rx_queue: the queue id the filter assigned to.
6462  *
6463  * @return
6464  *    - On success, zero.
6465  *    - On failure, a negative value.
6466  */
6467 static int
6468 ixgbe_add_5tuple_filter(struct rte_eth_dev *dev,
6469                         struct ixgbe_5tuple_filter *filter)
6470 {
6471         struct ixgbe_filter_info *filter_info =
6472                 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
6473         int i, idx, shift;
6474
6475         /*
6476          * look for an unused 5tuple filter index,
6477          * and insert the filter to list.
6478          */
6479         for (i = 0; i < IXGBE_MAX_FTQF_FILTERS; i++) {
6480                 idx = i / (sizeof(uint32_t) * NBBY);
6481                 shift = i % (sizeof(uint32_t) * NBBY);
6482                 if (!(filter_info->fivetuple_mask[idx] & (1 << shift))) {
6483                         filter_info->fivetuple_mask[idx] |= 1 << shift;
6484                         filter->index = i;
6485                         TAILQ_INSERT_TAIL(&filter_info->fivetuple_list,
6486                                           filter,
6487                                           entries);
6488                         break;
6489                 }
6490         }
6491         if (i >= IXGBE_MAX_FTQF_FILTERS) {
6492                 PMD_DRV_LOG(ERR, "5tuple filters are full.");
6493                 return -ENOSYS;
6494         }
6495
6496         ixgbe_inject_5tuple_filter(dev, filter);
6497
6498         return 0;
6499 }
6500
6501 /*
6502  * remove a 5tuple filter
6503  *
6504  * @param
6505  * dev: Pointer to struct rte_eth_dev.
6506  * filter: the pointer of the filter will be removed.
6507  */
6508 static void
6509 ixgbe_remove_5tuple_filter(struct rte_eth_dev *dev,
6510                         struct ixgbe_5tuple_filter *filter)
6511 {
6512         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6513         struct ixgbe_filter_info *filter_info =
6514                 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
6515         uint16_t index = filter->index;
6516
6517         filter_info->fivetuple_mask[index / (sizeof(uint32_t) * NBBY)] &=
6518                                 ~(1 << (index % (sizeof(uint32_t) * NBBY)));
6519         TAILQ_REMOVE(&filter_info->fivetuple_list, filter, entries);
6520         rte_free(filter);
6521
6522         IXGBE_WRITE_REG(hw, IXGBE_DAQF(index), 0);
6523         IXGBE_WRITE_REG(hw, IXGBE_SAQF(index), 0);
6524         IXGBE_WRITE_REG(hw, IXGBE_SDPQF(index), 0);
6525         IXGBE_WRITE_REG(hw, IXGBE_FTQF(index), 0);
6526         IXGBE_WRITE_REG(hw, IXGBE_L34T_IMIR(index), 0);
6527 }
6528
6529 static int
6530 ixgbevf_dev_set_mtu(struct rte_eth_dev *dev, uint16_t mtu)
6531 {
6532         struct ixgbe_hw *hw;
6533         uint32_t max_frame = mtu + IXGBE_ETH_OVERHEAD;
6534         struct rte_eth_dev_data *dev_data = dev->data;
6535
6536         hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6537
6538         if (mtu < RTE_ETHER_MIN_MTU ||
6539                         max_frame > RTE_ETHER_MAX_JUMBO_FRAME_LEN)
6540                 return -EINVAL;
6541
6542         /* If device is started, refuse mtu that requires the support of
6543          * scattered packets when this feature has not been enabled before.
6544          */
6545         if (dev_data->dev_started && !dev_data->scattered_rx &&
6546             (max_frame + 2 * IXGBE_VLAN_TAG_SIZE >
6547              dev->data->min_rx_buf_size - RTE_PKTMBUF_HEADROOM)) {
6548                 PMD_INIT_LOG(ERR, "Stop port first.");
6549                 return -EINVAL;
6550         }
6551
6552         /*
6553          * When supported by the underlying PF driver, use the IXGBE_VF_SET_MTU
6554          * request of the version 2.0 of the mailbox API.
6555          * For now, use the IXGBE_VF_SET_LPE request of the version 1.0
6556          * of the mailbox API.
6557          * This call to IXGBE_SET_LPE action won't work with ixgbe pf drivers
6558          * prior to 3.11.33 which contains the following change:
6559          * "ixgbe: Enable jumbo frames support w/ SR-IOV"
6560          */
6561         ixgbevf_rlpml_set_vf(hw, max_frame);
6562
6563         /* update max frame size */
6564         dev->data->dev_conf.rxmode.max_rx_pkt_len = max_frame;
6565         return 0;
6566 }
6567
6568 static inline struct ixgbe_5tuple_filter *
6569 ixgbe_5tuple_filter_lookup(struct ixgbe_5tuple_filter_list *filter_list,
6570                         struct ixgbe_5tuple_filter_info *key)
6571 {
6572         struct ixgbe_5tuple_filter *it;
6573
6574         TAILQ_FOREACH(it, filter_list, entries) {
6575                 if (memcmp(key, &it->filter_info,
6576                         sizeof(struct ixgbe_5tuple_filter_info)) == 0) {
6577                         return it;
6578                 }
6579         }
6580         return NULL;
6581 }
6582
6583 /* translate elements in struct rte_eth_ntuple_filter to struct ixgbe_5tuple_filter_info*/
6584 static inline int
6585 ntuple_filter_to_5tuple(struct rte_eth_ntuple_filter *filter,
6586                         struct ixgbe_5tuple_filter_info *filter_info)
6587 {
6588         if (filter->queue >= IXGBE_MAX_RX_QUEUE_NUM ||
6589                 filter->priority > IXGBE_5TUPLE_MAX_PRI ||
6590                 filter->priority < IXGBE_5TUPLE_MIN_PRI)
6591                 return -EINVAL;
6592
6593         switch (filter->dst_ip_mask) {
6594         case UINT32_MAX:
6595                 filter_info->dst_ip_mask = 0;
6596                 filter_info->dst_ip = filter->dst_ip;
6597                 break;
6598         case 0:
6599                 filter_info->dst_ip_mask = 1;
6600                 break;
6601         default:
6602                 PMD_DRV_LOG(ERR, "invalid dst_ip mask.");
6603                 return -EINVAL;
6604         }
6605
6606         switch (filter->src_ip_mask) {
6607         case UINT32_MAX:
6608                 filter_info->src_ip_mask = 0;
6609                 filter_info->src_ip = filter->src_ip;
6610                 break;
6611         case 0:
6612                 filter_info->src_ip_mask = 1;
6613                 break;
6614         default:
6615                 PMD_DRV_LOG(ERR, "invalid src_ip mask.");
6616                 return -EINVAL;
6617         }
6618
6619         switch (filter->dst_port_mask) {
6620         case UINT16_MAX:
6621                 filter_info->dst_port_mask = 0;
6622                 filter_info->dst_port = filter->dst_port;
6623                 break;
6624         case 0:
6625                 filter_info->dst_port_mask = 1;
6626                 break;
6627         default:
6628                 PMD_DRV_LOG(ERR, "invalid dst_port mask.");
6629                 return -EINVAL;
6630         }
6631
6632         switch (filter->src_port_mask) {
6633         case UINT16_MAX:
6634                 filter_info->src_port_mask = 0;
6635                 filter_info->src_port = filter->src_port;
6636                 break;
6637         case 0:
6638                 filter_info->src_port_mask = 1;
6639                 break;
6640         default:
6641                 PMD_DRV_LOG(ERR, "invalid src_port mask.");
6642                 return -EINVAL;
6643         }
6644
6645         switch (filter->proto_mask) {
6646         case UINT8_MAX:
6647                 filter_info->proto_mask = 0;
6648                 filter_info->proto =
6649                         convert_protocol_type(filter->proto);
6650                 break;
6651         case 0:
6652                 filter_info->proto_mask = 1;
6653                 break;
6654         default:
6655                 PMD_DRV_LOG(ERR, "invalid protocol mask.");
6656                 return -EINVAL;
6657         }
6658
6659         filter_info->priority = (uint8_t)filter->priority;
6660         return 0;
6661 }
6662
6663 /*
6664  * add or delete a ntuple filter
6665  *
6666  * @param
6667  * dev: Pointer to struct rte_eth_dev.
6668  * ntuple_filter: Pointer to struct rte_eth_ntuple_filter
6669  * add: if true, add filter, if false, remove filter
6670  *
6671  * @return
6672  *    - On success, zero.
6673  *    - On failure, a negative value.
6674  */
6675 int
6676 ixgbe_add_del_ntuple_filter(struct rte_eth_dev *dev,
6677                         struct rte_eth_ntuple_filter *ntuple_filter,
6678                         bool add)
6679 {
6680         struct ixgbe_filter_info *filter_info =
6681                 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
6682         struct ixgbe_5tuple_filter_info filter_5tuple;
6683         struct ixgbe_5tuple_filter *filter;
6684         int ret;
6685
6686         if (ntuple_filter->flags != RTE_5TUPLE_FLAGS) {
6687                 PMD_DRV_LOG(ERR, "only 5tuple is supported.");
6688                 return -EINVAL;
6689         }
6690
6691         memset(&filter_5tuple, 0, sizeof(struct ixgbe_5tuple_filter_info));
6692         ret = ntuple_filter_to_5tuple(ntuple_filter, &filter_5tuple);
6693         if (ret < 0)
6694                 return ret;
6695
6696         filter = ixgbe_5tuple_filter_lookup(&filter_info->fivetuple_list,
6697                                          &filter_5tuple);
6698         if (filter != NULL && add) {
6699                 PMD_DRV_LOG(ERR, "filter exists.");
6700                 return -EEXIST;
6701         }
6702         if (filter == NULL && !add) {
6703                 PMD_DRV_LOG(ERR, "filter doesn't exist.");
6704                 return -ENOENT;
6705         }
6706
6707         if (add) {
6708                 filter = rte_zmalloc("ixgbe_5tuple_filter",
6709                                 sizeof(struct ixgbe_5tuple_filter), 0);
6710                 if (filter == NULL)
6711                         return -ENOMEM;
6712                 rte_memcpy(&filter->filter_info,
6713                                  &filter_5tuple,
6714                                  sizeof(struct ixgbe_5tuple_filter_info));
6715                 filter->queue = ntuple_filter->queue;
6716                 ret = ixgbe_add_5tuple_filter(dev, filter);
6717                 if (ret < 0) {
6718                         rte_free(filter);
6719                         return ret;
6720                 }
6721         } else
6722                 ixgbe_remove_5tuple_filter(dev, filter);
6723
6724         return 0;
6725 }
6726
6727 /*
6728  * get a ntuple filter
6729  *
6730  * @param
6731  * dev: Pointer to struct rte_eth_dev.
6732  * ntuple_filter: Pointer to struct rte_eth_ntuple_filter
6733  *
6734  * @return
6735  *    - On success, zero.
6736  *    - On failure, a negative value.
6737  */
6738 static int
6739 ixgbe_get_ntuple_filter(struct rte_eth_dev *dev,
6740                         struct rte_eth_ntuple_filter *ntuple_filter)
6741 {
6742         struct ixgbe_filter_info *filter_info =
6743                 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
6744         struct ixgbe_5tuple_filter_info filter_5tuple;
6745         struct ixgbe_5tuple_filter *filter;
6746         int ret;
6747
6748         if (ntuple_filter->flags != RTE_5TUPLE_FLAGS) {
6749                 PMD_DRV_LOG(ERR, "only 5tuple is supported.");
6750                 return -EINVAL;
6751         }
6752
6753         memset(&filter_5tuple, 0, sizeof(struct ixgbe_5tuple_filter_info));
6754         ret = ntuple_filter_to_5tuple(ntuple_filter, &filter_5tuple);
6755         if (ret < 0)
6756                 return ret;
6757
6758         filter = ixgbe_5tuple_filter_lookup(&filter_info->fivetuple_list,
6759                                          &filter_5tuple);
6760         if (filter == NULL) {
6761                 PMD_DRV_LOG(ERR, "filter doesn't exist.");
6762                 return -ENOENT;
6763         }
6764         ntuple_filter->queue = filter->queue;
6765         return 0;
6766 }
6767
6768 /*
6769  * ixgbe_ntuple_filter_handle - Handle operations for ntuple filter.
6770  * @dev: pointer to rte_eth_dev structure
6771  * @filter_op:operation will be taken.
6772  * @arg: a pointer to specific structure corresponding to the filter_op
6773  *
6774  * @return
6775  *    - On success, zero.
6776  *    - On failure, a negative value.
6777  */
6778 static int
6779 ixgbe_ntuple_filter_handle(struct rte_eth_dev *dev,
6780                                 enum rte_filter_op filter_op,
6781                                 void *arg)
6782 {
6783         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6784         int ret;
6785
6786         MAC_TYPE_FILTER_SUP_EXT(hw->mac.type);
6787
6788         if (filter_op == RTE_ETH_FILTER_NOP)
6789                 return 0;
6790
6791         if (arg == NULL) {
6792                 PMD_DRV_LOG(ERR, "arg shouldn't be NULL for operation %u.",
6793                             filter_op);
6794                 return -EINVAL;
6795         }
6796
6797         switch (filter_op) {
6798         case RTE_ETH_FILTER_ADD:
6799                 ret = ixgbe_add_del_ntuple_filter(dev,
6800                         (struct rte_eth_ntuple_filter *)arg,
6801                         TRUE);
6802                 break;
6803         case RTE_ETH_FILTER_DELETE:
6804                 ret = ixgbe_add_del_ntuple_filter(dev,
6805                         (struct rte_eth_ntuple_filter *)arg,
6806                         FALSE);
6807                 break;
6808         case RTE_ETH_FILTER_GET:
6809                 ret = ixgbe_get_ntuple_filter(dev,
6810                         (struct rte_eth_ntuple_filter *)arg);
6811                 break;
6812         default:
6813                 PMD_DRV_LOG(ERR, "unsupported operation %u.", filter_op);
6814                 ret = -EINVAL;
6815                 break;
6816         }
6817         return ret;
6818 }
6819
6820 int
6821 ixgbe_add_del_ethertype_filter(struct rte_eth_dev *dev,
6822                         struct rte_eth_ethertype_filter *filter,
6823                         bool add)
6824 {
6825         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6826         struct ixgbe_filter_info *filter_info =
6827                 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
6828         uint32_t etqf = 0;
6829         uint32_t etqs = 0;
6830         int ret;
6831         struct ixgbe_ethertype_filter ethertype_filter;
6832
6833         if (filter->queue >= IXGBE_MAX_RX_QUEUE_NUM)
6834                 return -EINVAL;
6835
6836         if (filter->ether_type == RTE_ETHER_TYPE_IPV4 ||
6837                 filter->ether_type == RTE_ETHER_TYPE_IPV6) {
6838                 PMD_DRV_LOG(ERR, "unsupported ether_type(0x%04x) in"
6839                         " ethertype filter.", filter->ether_type);
6840                 return -EINVAL;
6841         }
6842
6843         if (filter->flags & RTE_ETHTYPE_FLAGS_MAC) {
6844                 PMD_DRV_LOG(ERR, "mac compare is unsupported.");
6845                 return -EINVAL;
6846         }
6847         if (filter->flags & RTE_ETHTYPE_FLAGS_DROP) {
6848                 PMD_DRV_LOG(ERR, "drop option is unsupported.");
6849                 return -EINVAL;
6850         }
6851
6852         ret = ixgbe_ethertype_filter_lookup(filter_info, filter->ether_type);
6853         if (ret >= 0 && add) {
6854                 PMD_DRV_LOG(ERR, "ethertype (0x%04x) filter exists.",
6855                             filter->ether_type);
6856                 return -EEXIST;
6857         }
6858         if (ret < 0 && !add) {
6859                 PMD_DRV_LOG(ERR, "ethertype (0x%04x) filter doesn't exist.",
6860                             filter->ether_type);
6861                 return -ENOENT;
6862         }
6863
6864         if (add) {
6865                 etqf = IXGBE_ETQF_FILTER_EN;
6866                 etqf |= (uint32_t)filter->ether_type;
6867                 etqs |= (uint32_t)((filter->queue <<
6868                                     IXGBE_ETQS_RX_QUEUE_SHIFT) &
6869                                     IXGBE_ETQS_RX_QUEUE);
6870                 etqs |= IXGBE_ETQS_QUEUE_EN;
6871
6872                 ethertype_filter.ethertype = filter->ether_type;
6873                 ethertype_filter.etqf = etqf;
6874                 ethertype_filter.etqs = etqs;
6875                 ethertype_filter.conf = FALSE;
6876                 ret = ixgbe_ethertype_filter_insert(filter_info,
6877                                                     &ethertype_filter);
6878                 if (ret < 0) {
6879                         PMD_DRV_LOG(ERR, "ethertype filters are full.");
6880                         return -ENOSPC;
6881                 }
6882         } else {
6883                 ret = ixgbe_ethertype_filter_remove(filter_info, (uint8_t)ret);
6884                 if (ret < 0)
6885                         return -ENOSYS;
6886         }
6887         IXGBE_WRITE_REG(hw, IXGBE_ETQF(ret), etqf);
6888         IXGBE_WRITE_REG(hw, IXGBE_ETQS(ret), etqs);
6889         IXGBE_WRITE_FLUSH(hw);
6890
6891         return 0;
6892 }
6893
6894 static int
6895 ixgbe_get_ethertype_filter(struct rte_eth_dev *dev,
6896                         struct rte_eth_ethertype_filter *filter)
6897 {
6898         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6899         struct ixgbe_filter_info *filter_info =
6900                 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
6901         uint32_t etqf, etqs;
6902         int ret;
6903
6904         ret = ixgbe_ethertype_filter_lookup(filter_info, filter->ether_type);
6905         if (ret < 0) {
6906                 PMD_DRV_LOG(ERR, "ethertype (0x%04x) filter doesn't exist.",
6907                             filter->ether_type);
6908                 return -ENOENT;
6909         }
6910
6911         etqf = IXGBE_READ_REG(hw, IXGBE_ETQF(ret));
6912         if (etqf & IXGBE_ETQF_FILTER_EN) {
6913                 etqs = IXGBE_READ_REG(hw, IXGBE_ETQS(ret));
6914                 filter->ether_type = etqf & IXGBE_ETQF_ETHERTYPE;
6915                 filter->flags = 0;
6916                 filter->queue = (etqs & IXGBE_ETQS_RX_QUEUE) >>
6917                                IXGBE_ETQS_RX_QUEUE_SHIFT;
6918                 return 0;
6919         }
6920         return -ENOENT;
6921 }
6922
6923 /*
6924  * ixgbe_ethertype_filter_handle - Handle operations for ethertype filter.
6925  * @dev: pointer to rte_eth_dev structure
6926  * @filter_op:operation will be taken.
6927  * @arg: a pointer to specific structure corresponding to the filter_op
6928  */
6929 static int
6930 ixgbe_ethertype_filter_handle(struct rte_eth_dev *dev,
6931                                 enum rte_filter_op filter_op,
6932                                 void *arg)
6933 {
6934         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6935         int ret;
6936
6937         MAC_TYPE_FILTER_SUP(hw->mac.type);
6938
6939         if (filter_op == RTE_ETH_FILTER_NOP)
6940                 return 0;
6941
6942         if (arg == NULL) {
6943                 PMD_DRV_LOG(ERR, "arg shouldn't be NULL for operation %u.",
6944                             filter_op);
6945                 return -EINVAL;
6946         }
6947
6948         switch (filter_op) {
6949         case RTE_ETH_FILTER_ADD:
6950                 ret = ixgbe_add_del_ethertype_filter(dev,
6951                         (struct rte_eth_ethertype_filter *)arg,
6952                         TRUE);
6953                 break;
6954         case RTE_ETH_FILTER_DELETE:
6955                 ret = ixgbe_add_del_ethertype_filter(dev,
6956                         (struct rte_eth_ethertype_filter *)arg,
6957                         FALSE);
6958                 break;
6959         case RTE_ETH_FILTER_GET:
6960                 ret = ixgbe_get_ethertype_filter(dev,
6961                         (struct rte_eth_ethertype_filter *)arg);
6962                 break;
6963         default:
6964                 PMD_DRV_LOG(ERR, "unsupported operation %u.", filter_op);
6965                 ret = -EINVAL;
6966                 break;
6967         }
6968         return ret;
6969 }
6970
6971 static int
6972 ixgbe_dev_filter_ctrl(struct rte_eth_dev *dev,
6973                      enum rte_filter_type filter_type,
6974                      enum rte_filter_op filter_op,
6975                      void *arg)
6976 {
6977         int ret = 0;
6978
6979         switch (filter_type) {
6980         case RTE_ETH_FILTER_NTUPLE:
6981                 ret = ixgbe_ntuple_filter_handle(dev, filter_op, arg);
6982                 break;
6983         case RTE_ETH_FILTER_ETHERTYPE:
6984                 ret = ixgbe_ethertype_filter_handle(dev, filter_op, arg);
6985                 break;
6986         case RTE_ETH_FILTER_SYN:
6987                 ret = ixgbe_syn_filter_handle(dev, filter_op, arg);
6988                 break;
6989         case RTE_ETH_FILTER_FDIR:
6990                 ret = ixgbe_fdir_ctrl_func(dev, filter_op, arg);
6991                 break;
6992         case RTE_ETH_FILTER_L2_TUNNEL:
6993                 ret = ixgbe_dev_l2_tunnel_filter_handle(dev, filter_op, arg);
6994                 break;
6995         case RTE_ETH_FILTER_GENERIC:
6996                 if (filter_op != RTE_ETH_FILTER_GET)
6997                         return -EINVAL;
6998                 *(const void **)arg = &ixgbe_flow_ops;
6999                 break;
7000         default:
7001                 PMD_DRV_LOG(WARNING, "Filter type (%d) not supported",
7002                                                         filter_type);
7003                 ret = -EINVAL;
7004                 break;
7005         }
7006
7007         return ret;
7008 }
7009
7010 static u8 *
7011 ixgbe_dev_addr_list_itr(__attribute__((unused)) struct ixgbe_hw *hw,
7012                         u8 **mc_addr_ptr, u32 *vmdq)
7013 {
7014         u8 *mc_addr;
7015
7016         *vmdq = 0;
7017         mc_addr = *mc_addr_ptr;
7018         *mc_addr_ptr = (mc_addr + sizeof(struct rte_ether_addr));
7019         return mc_addr;
7020 }
7021
7022 static int
7023 ixgbe_dev_set_mc_addr_list(struct rte_eth_dev *dev,
7024                           struct rte_ether_addr *mc_addr_set,
7025                           uint32_t nb_mc_addr)
7026 {
7027         struct ixgbe_hw *hw;
7028         u8 *mc_addr_list;
7029
7030         hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7031         mc_addr_list = (u8 *)mc_addr_set;
7032         return ixgbe_update_mc_addr_list(hw, mc_addr_list, nb_mc_addr,
7033                                          ixgbe_dev_addr_list_itr, TRUE);
7034 }
7035
7036 static uint64_t
7037 ixgbe_read_systime_cyclecounter(struct rte_eth_dev *dev)
7038 {
7039         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7040         uint64_t systime_cycles;
7041
7042         switch (hw->mac.type) {
7043         case ixgbe_mac_X550:
7044         case ixgbe_mac_X550EM_x:
7045         case ixgbe_mac_X550EM_a:
7046                 /* SYSTIMEL stores ns and SYSTIMEH stores seconds. */
7047                 systime_cycles = (uint64_t)IXGBE_READ_REG(hw, IXGBE_SYSTIML);
7048                 systime_cycles += (uint64_t)IXGBE_READ_REG(hw, IXGBE_SYSTIMH)
7049                                 * NSEC_PER_SEC;
7050                 break;
7051         default:
7052                 systime_cycles = (uint64_t)IXGBE_READ_REG(hw, IXGBE_SYSTIML);
7053                 systime_cycles |= (uint64_t)IXGBE_READ_REG(hw, IXGBE_SYSTIMH)
7054                                 << 32;
7055         }
7056
7057         return systime_cycles;
7058 }
7059
7060 static uint64_t
7061 ixgbe_read_rx_tstamp_cyclecounter(struct rte_eth_dev *dev)
7062 {
7063         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7064         uint64_t rx_tstamp_cycles;
7065
7066         switch (hw->mac.type) {
7067         case ixgbe_mac_X550:
7068         case ixgbe_mac_X550EM_x:
7069         case ixgbe_mac_X550EM_a:
7070                 /* RXSTMPL stores ns and RXSTMPH stores seconds. */
7071                 rx_tstamp_cycles = (uint64_t)IXGBE_READ_REG(hw, IXGBE_RXSTMPL);
7072                 rx_tstamp_cycles += (uint64_t)IXGBE_READ_REG(hw, IXGBE_RXSTMPH)
7073                                 * NSEC_PER_SEC;
7074                 break;
7075         default:
7076                 /* RXSTMPL stores ns and RXSTMPH stores seconds. */
7077                 rx_tstamp_cycles = (uint64_t)IXGBE_READ_REG(hw, IXGBE_RXSTMPL);
7078                 rx_tstamp_cycles |= (uint64_t)IXGBE_READ_REG(hw, IXGBE_RXSTMPH)
7079                                 << 32;
7080         }
7081
7082         return rx_tstamp_cycles;
7083 }
7084
7085 static uint64_t
7086 ixgbe_read_tx_tstamp_cyclecounter(struct rte_eth_dev *dev)
7087 {
7088         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7089         uint64_t tx_tstamp_cycles;
7090
7091         switch (hw->mac.type) {
7092         case ixgbe_mac_X550:
7093         case ixgbe_mac_X550EM_x:
7094         case ixgbe_mac_X550EM_a:
7095                 /* TXSTMPL stores ns and TXSTMPH stores seconds. */
7096                 tx_tstamp_cycles = (uint64_t)IXGBE_READ_REG(hw, IXGBE_TXSTMPL);
7097                 tx_tstamp_cycles += (uint64_t)IXGBE_READ_REG(hw, IXGBE_TXSTMPH)
7098                                 * NSEC_PER_SEC;
7099                 break;
7100         default:
7101                 /* TXSTMPL stores ns and TXSTMPH stores seconds. */
7102                 tx_tstamp_cycles = (uint64_t)IXGBE_READ_REG(hw, IXGBE_TXSTMPL);
7103                 tx_tstamp_cycles |= (uint64_t)IXGBE_READ_REG(hw, IXGBE_TXSTMPH)
7104                                 << 32;
7105         }
7106
7107         return tx_tstamp_cycles;
7108 }
7109
7110 static void
7111 ixgbe_start_timecounters(struct rte_eth_dev *dev)
7112 {
7113         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7114         struct ixgbe_adapter *adapter = dev->data->dev_private;
7115         struct rte_eth_link link;
7116         uint32_t incval = 0;
7117         uint32_t shift = 0;
7118
7119         /* Get current link speed. */
7120         ixgbe_dev_link_update(dev, 1);
7121         rte_eth_linkstatus_get(dev, &link);
7122
7123         switch (link.link_speed) {
7124         case ETH_SPEED_NUM_100M:
7125                 incval = IXGBE_INCVAL_100;
7126                 shift = IXGBE_INCVAL_SHIFT_100;
7127                 break;
7128         case ETH_SPEED_NUM_1G:
7129                 incval = IXGBE_INCVAL_1GB;
7130                 shift = IXGBE_INCVAL_SHIFT_1GB;
7131                 break;
7132         case ETH_SPEED_NUM_10G:
7133         default:
7134                 incval = IXGBE_INCVAL_10GB;
7135                 shift = IXGBE_INCVAL_SHIFT_10GB;
7136                 break;
7137         }
7138
7139         switch (hw->mac.type) {
7140         case ixgbe_mac_X550:
7141         case ixgbe_mac_X550EM_x:
7142         case ixgbe_mac_X550EM_a:
7143                 /* Independent of link speed. */
7144                 incval = 1;
7145                 /* Cycles read will be interpreted as ns. */
7146                 shift = 0;
7147                 /* Fall-through */
7148         case ixgbe_mac_X540:
7149                 IXGBE_WRITE_REG(hw, IXGBE_TIMINCA, incval);
7150                 break;
7151         case ixgbe_mac_82599EB:
7152                 incval >>= IXGBE_INCVAL_SHIFT_82599;
7153                 shift -= IXGBE_INCVAL_SHIFT_82599;
7154                 IXGBE_WRITE_REG(hw, IXGBE_TIMINCA,
7155                                 (1 << IXGBE_INCPER_SHIFT_82599) | incval);
7156                 break;
7157         default:
7158                 /* Not supported. */
7159                 return;
7160         }
7161
7162         memset(&adapter->systime_tc, 0, sizeof(struct rte_timecounter));
7163         memset(&adapter->rx_tstamp_tc, 0, sizeof(struct rte_timecounter));
7164         memset(&adapter->tx_tstamp_tc, 0, sizeof(struct rte_timecounter));
7165
7166         adapter->systime_tc.cc_mask = IXGBE_CYCLECOUNTER_MASK;
7167         adapter->systime_tc.cc_shift = shift;
7168         adapter->systime_tc.nsec_mask = (1ULL << shift) - 1;
7169
7170         adapter->rx_tstamp_tc.cc_mask = IXGBE_CYCLECOUNTER_MASK;
7171         adapter->rx_tstamp_tc.cc_shift = shift;
7172         adapter->rx_tstamp_tc.nsec_mask = (1ULL << shift) - 1;
7173
7174         adapter->tx_tstamp_tc.cc_mask = IXGBE_CYCLECOUNTER_MASK;
7175         adapter->tx_tstamp_tc.cc_shift = shift;
7176         adapter->tx_tstamp_tc.nsec_mask = (1ULL << shift) - 1;
7177 }
7178
7179 static int
7180 ixgbe_timesync_adjust_time(struct rte_eth_dev *dev, int64_t delta)
7181 {
7182         struct ixgbe_adapter *adapter = dev->data->dev_private;
7183
7184         adapter->systime_tc.nsec += delta;
7185         adapter->rx_tstamp_tc.nsec += delta;
7186         adapter->tx_tstamp_tc.nsec += delta;
7187
7188         return 0;
7189 }
7190
7191 static int
7192 ixgbe_timesync_write_time(struct rte_eth_dev *dev, const struct timespec *ts)
7193 {
7194         uint64_t ns;
7195         struct ixgbe_adapter *adapter = dev->data->dev_private;
7196
7197         ns = rte_timespec_to_ns(ts);
7198         /* Set the timecounters to a new value. */
7199         adapter->systime_tc.nsec = ns;
7200         adapter->rx_tstamp_tc.nsec = ns;
7201         adapter->tx_tstamp_tc.nsec = ns;
7202
7203         return 0;
7204 }
7205
7206 static int
7207 ixgbe_timesync_read_time(struct rte_eth_dev *dev, struct timespec *ts)
7208 {
7209         uint64_t ns, systime_cycles;
7210         struct ixgbe_adapter *adapter = dev->data->dev_private;
7211
7212         systime_cycles = ixgbe_read_systime_cyclecounter(dev);
7213         ns = rte_timecounter_update(&adapter->systime_tc, systime_cycles);
7214         *ts = rte_ns_to_timespec(ns);
7215
7216         return 0;
7217 }
7218
7219 static int
7220 ixgbe_timesync_enable(struct rte_eth_dev *dev)
7221 {
7222         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7223         uint32_t tsync_ctl;
7224         uint32_t tsauxc;
7225
7226         /* Stop the timesync system time. */
7227         IXGBE_WRITE_REG(hw, IXGBE_TIMINCA, 0x0);
7228         /* Reset the timesync system time value. */
7229         IXGBE_WRITE_REG(hw, IXGBE_SYSTIML, 0x0);
7230         IXGBE_WRITE_REG(hw, IXGBE_SYSTIMH, 0x0);
7231
7232         /* Enable system time for platforms where it isn't on by default. */
7233         tsauxc = IXGBE_READ_REG(hw, IXGBE_TSAUXC);
7234         tsauxc &= ~IXGBE_TSAUXC_DISABLE_SYSTIME;
7235         IXGBE_WRITE_REG(hw, IXGBE_TSAUXC, tsauxc);
7236
7237         ixgbe_start_timecounters(dev);
7238
7239         /* Enable L2 filtering of IEEE1588/802.1AS Ethernet frame types. */
7240         IXGBE_WRITE_REG(hw, IXGBE_ETQF(IXGBE_ETQF_FILTER_1588),
7241                         (RTE_ETHER_TYPE_1588 |
7242                          IXGBE_ETQF_FILTER_EN |
7243                          IXGBE_ETQF_1588));
7244
7245         /* Enable timestamping of received PTP packets. */
7246         tsync_ctl = IXGBE_READ_REG(hw, IXGBE_TSYNCRXCTL);
7247         tsync_ctl |= IXGBE_TSYNCRXCTL_ENABLED;
7248         IXGBE_WRITE_REG(hw, IXGBE_TSYNCRXCTL, tsync_ctl);
7249
7250         /* Enable timestamping of transmitted PTP packets. */
7251         tsync_ctl = IXGBE_READ_REG(hw, IXGBE_TSYNCTXCTL);
7252         tsync_ctl |= IXGBE_TSYNCTXCTL_ENABLED;
7253         IXGBE_WRITE_REG(hw, IXGBE_TSYNCTXCTL, tsync_ctl);
7254
7255         IXGBE_WRITE_FLUSH(hw);
7256
7257         return 0;
7258 }
7259
7260 static int
7261 ixgbe_timesync_disable(struct rte_eth_dev *dev)
7262 {
7263         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7264         uint32_t tsync_ctl;
7265
7266         /* Disable timestamping of transmitted PTP packets. */
7267         tsync_ctl = IXGBE_READ_REG(hw, IXGBE_TSYNCTXCTL);
7268         tsync_ctl &= ~IXGBE_TSYNCTXCTL_ENABLED;
7269         IXGBE_WRITE_REG(hw, IXGBE_TSYNCTXCTL, tsync_ctl);
7270
7271         /* Disable timestamping of received PTP packets. */
7272         tsync_ctl = IXGBE_READ_REG(hw, IXGBE_TSYNCRXCTL);
7273         tsync_ctl &= ~IXGBE_TSYNCRXCTL_ENABLED;
7274         IXGBE_WRITE_REG(hw, IXGBE_TSYNCRXCTL, tsync_ctl);
7275
7276         /* Disable L2 filtering of IEEE1588/802.1AS Ethernet frame types. */
7277         IXGBE_WRITE_REG(hw, IXGBE_ETQF(IXGBE_ETQF_FILTER_1588), 0);
7278
7279         /* Stop incrementating the System Time registers. */
7280         IXGBE_WRITE_REG(hw, IXGBE_TIMINCA, 0);
7281
7282         return 0;
7283 }
7284
7285 static int
7286 ixgbe_timesync_read_rx_timestamp(struct rte_eth_dev *dev,
7287                                  struct timespec *timestamp,
7288                                  uint32_t flags __rte_unused)
7289 {
7290         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7291         struct ixgbe_adapter *adapter = dev->data->dev_private;
7292         uint32_t tsync_rxctl;
7293         uint64_t rx_tstamp_cycles;
7294         uint64_t ns;
7295
7296         tsync_rxctl = IXGBE_READ_REG(hw, IXGBE_TSYNCRXCTL);
7297         if ((tsync_rxctl & IXGBE_TSYNCRXCTL_VALID) == 0)
7298                 return -EINVAL;
7299
7300         rx_tstamp_cycles = ixgbe_read_rx_tstamp_cyclecounter(dev);
7301         ns = rte_timecounter_update(&adapter->rx_tstamp_tc, rx_tstamp_cycles);
7302         *timestamp = rte_ns_to_timespec(ns);
7303
7304         return  0;
7305 }
7306
7307 static int
7308 ixgbe_timesync_read_tx_timestamp(struct rte_eth_dev *dev,
7309                                  struct timespec *timestamp)
7310 {
7311         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7312         struct ixgbe_adapter *adapter = dev->data->dev_private;
7313         uint32_t tsync_txctl;
7314         uint64_t tx_tstamp_cycles;
7315         uint64_t ns;
7316
7317         tsync_txctl = IXGBE_READ_REG(hw, IXGBE_TSYNCTXCTL);
7318         if ((tsync_txctl & IXGBE_TSYNCTXCTL_VALID) == 0)
7319                 return -EINVAL;
7320
7321         tx_tstamp_cycles = ixgbe_read_tx_tstamp_cyclecounter(dev);
7322         ns = rte_timecounter_update(&adapter->tx_tstamp_tc, tx_tstamp_cycles);
7323         *timestamp = rte_ns_to_timespec(ns);
7324
7325         return 0;
7326 }
7327
7328 static int
7329 ixgbe_get_reg_length(struct rte_eth_dev *dev)
7330 {
7331         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7332         int count = 0;
7333         int g_ind = 0;
7334         const struct reg_info *reg_group;
7335         const struct reg_info **reg_set = (hw->mac.type == ixgbe_mac_82598EB) ?
7336                                     ixgbe_regs_mac_82598EB : ixgbe_regs_others;
7337
7338         while ((reg_group = reg_set[g_ind++]))
7339                 count += ixgbe_regs_group_count(reg_group);
7340
7341         return count;
7342 }
7343
7344 static int
7345 ixgbevf_get_reg_length(struct rte_eth_dev *dev __rte_unused)
7346 {
7347         int count = 0;
7348         int g_ind = 0;
7349         const struct reg_info *reg_group;
7350
7351         while ((reg_group = ixgbevf_regs[g_ind++]))
7352                 count += ixgbe_regs_group_count(reg_group);
7353
7354         return count;
7355 }
7356
7357 static int
7358 ixgbe_get_regs(struct rte_eth_dev *dev,
7359               struct rte_dev_reg_info *regs)
7360 {
7361         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7362         uint32_t *data = regs->data;
7363         int g_ind = 0;
7364         int count = 0;
7365         const struct reg_info *reg_group;
7366         const struct reg_info **reg_set = (hw->mac.type == ixgbe_mac_82598EB) ?
7367                                     ixgbe_regs_mac_82598EB : ixgbe_regs_others;
7368
7369         if (data == NULL) {
7370                 regs->length = ixgbe_get_reg_length(dev);
7371                 regs->width = sizeof(uint32_t);
7372                 return 0;
7373         }
7374
7375         /* Support only full register dump */
7376         if ((regs->length == 0) ||
7377             (regs->length == (uint32_t)ixgbe_get_reg_length(dev))) {
7378                 regs->version = hw->mac.type << 24 | hw->revision_id << 16 |
7379                         hw->device_id;
7380                 while ((reg_group = reg_set[g_ind++]))
7381                         count += ixgbe_read_regs_group(dev, &data[count],
7382                                 reg_group);
7383                 return 0;
7384         }
7385
7386         return -ENOTSUP;
7387 }
7388
7389 static int
7390 ixgbevf_get_regs(struct rte_eth_dev *dev,
7391                 struct rte_dev_reg_info *regs)
7392 {
7393         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7394         uint32_t *data = regs->data;
7395         int g_ind = 0;
7396         int count = 0;
7397         const struct reg_info *reg_group;
7398
7399         if (data == NULL) {
7400                 regs->length = ixgbevf_get_reg_length(dev);
7401                 regs->width = sizeof(uint32_t);
7402                 return 0;
7403         }
7404
7405         /* Support only full register dump */
7406         if ((regs->length == 0) ||
7407             (regs->length == (uint32_t)ixgbevf_get_reg_length(dev))) {
7408                 regs->version = hw->mac.type << 24 | hw->revision_id << 16 |
7409                         hw->device_id;
7410                 while ((reg_group = ixgbevf_regs[g_ind++]))
7411                         count += ixgbe_read_regs_group(dev, &data[count],
7412                                                       reg_group);
7413                 return 0;
7414         }
7415
7416         return -ENOTSUP;
7417 }
7418
7419 static int
7420 ixgbe_get_eeprom_length(struct rte_eth_dev *dev)
7421 {
7422         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7423
7424         /* Return unit is byte count */
7425         return hw->eeprom.word_size * 2;
7426 }
7427
7428 static int
7429 ixgbe_get_eeprom(struct rte_eth_dev *dev,
7430                 struct rte_dev_eeprom_info *in_eeprom)
7431 {
7432         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7433         struct ixgbe_eeprom_info *eeprom = &hw->eeprom;
7434         uint16_t *data = in_eeprom->data;
7435         int first, length;
7436
7437         first = in_eeprom->offset >> 1;
7438         length = in_eeprom->length >> 1;
7439         if ((first > hw->eeprom.word_size) ||
7440             ((first + length) > hw->eeprom.word_size))
7441                 return -EINVAL;
7442
7443         in_eeprom->magic = hw->vendor_id | (hw->device_id << 16);
7444
7445         return eeprom->ops.read_buffer(hw, first, length, data);
7446 }
7447
7448 static int
7449 ixgbe_set_eeprom(struct rte_eth_dev *dev,
7450                 struct rte_dev_eeprom_info *in_eeprom)
7451 {
7452         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7453         struct ixgbe_eeprom_info *eeprom = &hw->eeprom;
7454         uint16_t *data = in_eeprom->data;
7455         int first, length;
7456
7457         first = in_eeprom->offset >> 1;
7458         length = in_eeprom->length >> 1;
7459         if ((first > hw->eeprom.word_size) ||
7460             ((first + length) > hw->eeprom.word_size))
7461                 return -EINVAL;
7462
7463         in_eeprom->magic = hw->vendor_id | (hw->device_id << 16);
7464
7465         return eeprom->ops.write_buffer(hw,  first, length, data);
7466 }
7467
7468 static int
7469 ixgbe_get_module_info(struct rte_eth_dev *dev,
7470                       struct rte_eth_dev_module_info *modinfo)
7471 {
7472         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7473         uint32_t status;
7474         uint8_t sff8472_rev, addr_mode;
7475         bool page_swap = false;
7476
7477         /* Check whether we support SFF-8472 or not */
7478         status = hw->phy.ops.read_i2c_eeprom(hw,
7479                                              IXGBE_SFF_SFF_8472_COMP,
7480                                              &sff8472_rev);
7481         if (status != 0)
7482                 return -EIO;
7483
7484         /* addressing mode is not supported */
7485         status = hw->phy.ops.read_i2c_eeprom(hw,
7486                                              IXGBE_SFF_SFF_8472_SWAP,
7487                                              &addr_mode);
7488         if (status != 0)
7489                 return -EIO;
7490
7491         if (addr_mode & IXGBE_SFF_ADDRESSING_MODE) {
7492                 PMD_DRV_LOG(ERR,
7493                             "Address change required to access page 0xA2, "
7494                             "but not supported. Please report the module "
7495                             "type to the driver maintainers.");
7496                 page_swap = true;
7497         }
7498
7499         if (sff8472_rev == IXGBE_SFF_SFF_8472_UNSUP || page_swap) {
7500                 /* We have a SFP, but it does not support SFF-8472 */
7501                 modinfo->type = RTE_ETH_MODULE_SFF_8079;
7502                 modinfo->eeprom_len = RTE_ETH_MODULE_SFF_8079_LEN;
7503         } else {
7504                 /* We have a SFP which supports a revision of SFF-8472. */
7505                 modinfo->type = RTE_ETH_MODULE_SFF_8472;
7506                 modinfo->eeprom_len = RTE_ETH_MODULE_SFF_8472_LEN;
7507         }
7508
7509         return 0;
7510 }
7511
7512 static int
7513 ixgbe_get_module_eeprom(struct rte_eth_dev *dev,
7514                         struct rte_dev_eeprom_info *info)
7515 {
7516         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7517         uint32_t status = IXGBE_ERR_PHY_ADDR_INVALID;
7518         uint8_t databyte = 0xFF;
7519         uint8_t *data = info->data;
7520         uint32_t i = 0;
7521
7522         if (info->length == 0)
7523                 return -EINVAL;
7524
7525         for (i = info->offset; i < info->offset + info->length; i++) {
7526                 if (i < RTE_ETH_MODULE_SFF_8079_LEN)
7527                         status = hw->phy.ops.read_i2c_eeprom(hw, i, &databyte);
7528                 else
7529                         status = hw->phy.ops.read_i2c_sff8472(hw, i, &databyte);
7530
7531                 if (status != 0)
7532                         return -EIO;
7533
7534                 data[i - info->offset] = databyte;
7535         }
7536
7537         return 0;
7538 }
7539
7540 uint16_t
7541 ixgbe_reta_size_get(enum ixgbe_mac_type mac_type) {
7542         switch (mac_type) {
7543         case ixgbe_mac_X550:
7544         case ixgbe_mac_X550EM_x:
7545         case ixgbe_mac_X550EM_a:
7546                 return ETH_RSS_RETA_SIZE_512;
7547         case ixgbe_mac_X550_vf:
7548         case ixgbe_mac_X550EM_x_vf:
7549         case ixgbe_mac_X550EM_a_vf:
7550                 return ETH_RSS_RETA_SIZE_64;
7551         case ixgbe_mac_X540_vf:
7552         case ixgbe_mac_82599_vf:
7553                 return 0;
7554         default:
7555                 return ETH_RSS_RETA_SIZE_128;
7556         }
7557 }
7558
7559 uint32_t
7560 ixgbe_reta_reg_get(enum ixgbe_mac_type mac_type, uint16_t reta_idx) {
7561         switch (mac_type) {
7562         case ixgbe_mac_X550:
7563         case ixgbe_mac_X550EM_x:
7564         case ixgbe_mac_X550EM_a:
7565                 if (reta_idx < ETH_RSS_RETA_SIZE_128)
7566                         return IXGBE_RETA(reta_idx >> 2);
7567                 else
7568                         return IXGBE_ERETA((reta_idx - ETH_RSS_RETA_SIZE_128) >> 2);
7569         case ixgbe_mac_X550_vf:
7570         case ixgbe_mac_X550EM_x_vf:
7571         case ixgbe_mac_X550EM_a_vf:
7572                 return IXGBE_VFRETA(reta_idx >> 2);
7573         default:
7574                 return IXGBE_RETA(reta_idx >> 2);
7575         }
7576 }
7577
7578 uint32_t
7579 ixgbe_mrqc_reg_get(enum ixgbe_mac_type mac_type) {
7580         switch (mac_type) {
7581         case ixgbe_mac_X550_vf:
7582         case ixgbe_mac_X550EM_x_vf:
7583         case ixgbe_mac_X550EM_a_vf:
7584                 return IXGBE_VFMRQC;
7585         default:
7586                 return IXGBE_MRQC;
7587         }
7588 }
7589
7590 uint32_t
7591 ixgbe_rssrk_reg_get(enum ixgbe_mac_type mac_type, uint8_t i) {
7592         switch (mac_type) {
7593         case ixgbe_mac_X550_vf:
7594         case ixgbe_mac_X550EM_x_vf:
7595         case ixgbe_mac_X550EM_a_vf:
7596                 return IXGBE_VFRSSRK(i);
7597         default:
7598                 return IXGBE_RSSRK(i);
7599         }
7600 }
7601
7602 bool
7603 ixgbe_rss_update_sp(enum ixgbe_mac_type mac_type) {
7604         switch (mac_type) {
7605         case ixgbe_mac_82599_vf:
7606         case ixgbe_mac_X540_vf:
7607                 return 0;
7608         default:
7609                 return 1;
7610         }
7611 }
7612
7613 static int
7614 ixgbe_dev_get_dcb_info(struct rte_eth_dev *dev,
7615                         struct rte_eth_dcb_info *dcb_info)
7616 {
7617         struct ixgbe_dcb_config *dcb_config =
7618                         IXGBE_DEV_PRIVATE_TO_DCB_CFG(dev->data->dev_private);
7619         struct ixgbe_dcb_tc_config *tc;
7620         struct rte_eth_dcb_tc_queue_mapping *tc_queue;
7621         uint8_t nb_tcs;
7622         uint8_t i, j;
7623
7624         if (dev->data->dev_conf.rxmode.mq_mode & ETH_MQ_RX_DCB_FLAG)
7625                 dcb_info->nb_tcs = dcb_config->num_tcs.pg_tcs;
7626         else
7627                 dcb_info->nb_tcs = 1;
7628
7629         tc_queue = &dcb_info->tc_queue;
7630         nb_tcs = dcb_info->nb_tcs;
7631
7632         if (dcb_config->vt_mode) { /* vt is enabled*/
7633                 struct rte_eth_vmdq_dcb_conf *vmdq_rx_conf =
7634                                 &dev->data->dev_conf.rx_adv_conf.vmdq_dcb_conf;
7635                 for (i = 0; i < ETH_DCB_NUM_USER_PRIORITIES; i++)
7636                         dcb_info->prio_tc[i] = vmdq_rx_conf->dcb_tc[i];
7637                 if (RTE_ETH_DEV_SRIOV(dev).active > 0) {
7638                         for (j = 0; j < nb_tcs; j++) {
7639                                 tc_queue->tc_rxq[0][j].base = j;
7640                                 tc_queue->tc_rxq[0][j].nb_queue = 1;
7641                                 tc_queue->tc_txq[0][j].base = j;
7642                                 tc_queue->tc_txq[0][j].nb_queue = 1;
7643                         }
7644                 } else {
7645                         for (i = 0; i < vmdq_rx_conf->nb_queue_pools; i++) {
7646                                 for (j = 0; j < nb_tcs; j++) {
7647                                         tc_queue->tc_rxq[i][j].base =
7648                                                 i * nb_tcs + j;
7649                                         tc_queue->tc_rxq[i][j].nb_queue = 1;
7650                                         tc_queue->tc_txq[i][j].base =
7651                                                 i * nb_tcs + j;
7652                                         tc_queue->tc_txq[i][j].nb_queue = 1;
7653                                 }
7654                         }
7655                 }
7656         } else { /* vt is disabled*/
7657                 struct rte_eth_dcb_rx_conf *rx_conf =
7658                                 &dev->data->dev_conf.rx_adv_conf.dcb_rx_conf;
7659                 for (i = 0; i < ETH_DCB_NUM_USER_PRIORITIES; i++)
7660                         dcb_info->prio_tc[i] = rx_conf->dcb_tc[i];
7661                 if (dcb_info->nb_tcs == ETH_4_TCS) {
7662                         for (i = 0; i < dcb_info->nb_tcs; i++) {
7663                                 dcb_info->tc_queue.tc_rxq[0][i].base = i * 32;
7664                                 dcb_info->tc_queue.tc_rxq[0][i].nb_queue = 16;
7665                         }
7666                         dcb_info->tc_queue.tc_txq[0][0].base = 0;
7667                         dcb_info->tc_queue.tc_txq[0][1].base = 64;
7668                         dcb_info->tc_queue.tc_txq[0][2].base = 96;
7669                         dcb_info->tc_queue.tc_txq[0][3].base = 112;
7670                         dcb_info->tc_queue.tc_txq[0][0].nb_queue = 64;
7671                         dcb_info->tc_queue.tc_txq[0][1].nb_queue = 32;
7672                         dcb_info->tc_queue.tc_txq[0][2].nb_queue = 16;
7673                         dcb_info->tc_queue.tc_txq[0][3].nb_queue = 16;
7674                 } else if (dcb_info->nb_tcs == ETH_8_TCS) {
7675                         for (i = 0; i < dcb_info->nb_tcs; i++) {
7676                                 dcb_info->tc_queue.tc_rxq[0][i].base = i * 16;
7677                                 dcb_info->tc_queue.tc_rxq[0][i].nb_queue = 16;
7678                         }
7679                         dcb_info->tc_queue.tc_txq[0][0].base = 0;
7680                         dcb_info->tc_queue.tc_txq[0][1].base = 32;
7681                         dcb_info->tc_queue.tc_txq[0][2].base = 64;
7682                         dcb_info->tc_queue.tc_txq[0][3].base = 80;
7683                         dcb_info->tc_queue.tc_txq[0][4].base = 96;
7684                         dcb_info->tc_queue.tc_txq[0][5].base = 104;
7685                         dcb_info->tc_queue.tc_txq[0][6].base = 112;
7686                         dcb_info->tc_queue.tc_txq[0][7].base = 120;
7687                         dcb_info->tc_queue.tc_txq[0][0].nb_queue = 32;
7688                         dcb_info->tc_queue.tc_txq[0][1].nb_queue = 32;
7689                         dcb_info->tc_queue.tc_txq[0][2].nb_queue = 16;
7690                         dcb_info->tc_queue.tc_txq[0][3].nb_queue = 16;
7691                         dcb_info->tc_queue.tc_txq[0][4].nb_queue = 8;
7692                         dcb_info->tc_queue.tc_txq[0][5].nb_queue = 8;
7693                         dcb_info->tc_queue.tc_txq[0][6].nb_queue = 8;
7694                         dcb_info->tc_queue.tc_txq[0][7].nb_queue = 8;
7695                 }
7696         }
7697         for (i = 0; i < dcb_info->nb_tcs; i++) {
7698                 tc = &dcb_config->tc_config[i];
7699                 dcb_info->tc_bws[i] = tc->path[IXGBE_DCB_TX_CONFIG].bwg_percent;
7700         }
7701         return 0;
7702 }
7703
7704 /* Update e-tag ether type */
7705 static int
7706 ixgbe_update_e_tag_eth_type(struct ixgbe_hw *hw,
7707                             uint16_t ether_type)
7708 {
7709         uint32_t etag_etype;
7710
7711         if (hw->mac.type != ixgbe_mac_X550 &&
7712             hw->mac.type != ixgbe_mac_X550EM_x &&
7713             hw->mac.type != ixgbe_mac_X550EM_a) {
7714                 return -ENOTSUP;
7715         }
7716
7717         etag_etype = IXGBE_READ_REG(hw, IXGBE_ETAG_ETYPE);
7718         etag_etype &= ~IXGBE_ETAG_ETYPE_MASK;
7719         etag_etype |= ether_type;
7720         IXGBE_WRITE_REG(hw, IXGBE_ETAG_ETYPE, etag_etype);
7721         IXGBE_WRITE_FLUSH(hw);
7722
7723         return 0;
7724 }
7725
7726 /* Config l2 tunnel ether type */
7727 static int
7728 ixgbe_dev_l2_tunnel_eth_type_conf(struct rte_eth_dev *dev,
7729                                   struct rte_eth_l2_tunnel_conf *l2_tunnel)
7730 {
7731         int ret = 0;
7732         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7733         struct ixgbe_l2_tn_info *l2_tn_info =
7734                 IXGBE_DEV_PRIVATE_TO_L2_TN_INFO(dev->data->dev_private);
7735
7736         if (l2_tunnel == NULL)
7737                 return -EINVAL;
7738
7739         switch (l2_tunnel->l2_tunnel_type) {
7740         case RTE_L2_TUNNEL_TYPE_E_TAG:
7741                 l2_tn_info->e_tag_ether_type = l2_tunnel->ether_type;
7742                 ret = ixgbe_update_e_tag_eth_type(hw, l2_tunnel->ether_type);
7743                 break;
7744         default:
7745                 PMD_DRV_LOG(ERR, "Invalid tunnel type");
7746                 ret = -EINVAL;
7747                 break;
7748         }
7749
7750         return ret;
7751 }
7752
7753 /* Enable e-tag tunnel */
7754 static int
7755 ixgbe_e_tag_enable(struct ixgbe_hw *hw)
7756 {
7757         uint32_t etag_etype;
7758
7759         if (hw->mac.type != ixgbe_mac_X550 &&
7760             hw->mac.type != ixgbe_mac_X550EM_x &&
7761             hw->mac.type != ixgbe_mac_X550EM_a) {
7762                 return -ENOTSUP;
7763         }
7764
7765         etag_etype = IXGBE_READ_REG(hw, IXGBE_ETAG_ETYPE);
7766         etag_etype |= IXGBE_ETAG_ETYPE_VALID;
7767         IXGBE_WRITE_REG(hw, IXGBE_ETAG_ETYPE, etag_etype);
7768         IXGBE_WRITE_FLUSH(hw);
7769
7770         return 0;
7771 }
7772
7773 /* Enable l2 tunnel */
7774 static int
7775 ixgbe_dev_l2_tunnel_enable(struct rte_eth_dev *dev,
7776                            enum rte_eth_tunnel_type l2_tunnel_type)
7777 {
7778         int ret = 0;
7779         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7780         struct ixgbe_l2_tn_info *l2_tn_info =
7781                 IXGBE_DEV_PRIVATE_TO_L2_TN_INFO(dev->data->dev_private);
7782
7783         switch (l2_tunnel_type) {
7784         case RTE_L2_TUNNEL_TYPE_E_TAG:
7785                 l2_tn_info->e_tag_en = TRUE;
7786                 ret = ixgbe_e_tag_enable(hw);
7787                 break;
7788         default:
7789                 PMD_DRV_LOG(ERR, "Invalid tunnel type");
7790                 ret = -EINVAL;
7791                 break;
7792         }
7793
7794         return ret;
7795 }
7796
7797 /* Disable e-tag tunnel */
7798 static int
7799 ixgbe_e_tag_disable(struct ixgbe_hw *hw)
7800 {
7801         uint32_t etag_etype;
7802
7803         if (hw->mac.type != ixgbe_mac_X550 &&
7804             hw->mac.type != ixgbe_mac_X550EM_x &&
7805             hw->mac.type != ixgbe_mac_X550EM_a) {
7806                 return -ENOTSUP;
7807         }
7808
7809         etag_etype = IXGBE_READ_REG(hw, IXGBE_ETAG_ETYPE);
7810         etag_etype &= ~IXGBE_ETAG_ETYPE_VALID;
7811         IXGBE_WRITE_REG(hw, IXGBE_ETAG_ETYPE, etag_etype);
7812         IXGBE_WRITE_FLUSH(hw);
7813
7814         return 0;
7815 }
7816
7817 /* Disable l2 tunnel */
7818 static int
7819 ixgbe_dev_l2_tunnel_disable(struct rte_eth_dev *dev,
7820                             enum rte_eth_tunnel_type l2_tunnel_type)
7821 {
7822         int ret = 0;
7823         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7824         struct ixgbe_l2_tn_info *l2_tn_info =
7825                 IXGBE_DEV_PRIVATE_TO_L2_TN_INFO(dev->data->dev_private);
7826
7827         switch (l2_tunnel_type) {
7828         case RTE_L2_TUNNEL_TYPE_E_TAG:
7829                 l2_tn_info->e_tag_en = FALSE;
7830                 ret = ixgbe_e_tag_disable(hw);
7831                 break;
7832         default:
7833                 PMD_DRV_LOG(ERR, "Invalid tunnel type");
7834                 ret = -EINVAL;
7835                 break;
7836         }
7837
7838         return ret;
7839 }
7840
7841 static int
7842 ixgbe_e_tag_filter_del(struct rte_eth_dev *dev,
7843                        struct rte_eth_l2_tunnel_conf *l2_tunnel)
7844 {
7845         int ret = 0;
7846         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7847         uint32_t i, rar_entries;
7848         uint32_t rar_low, rar_high;
7849
7850         if (hw->mac.type != ixgbe_mac_X550 &&
7851             hw->mac.type != ixgbe_mac_X550EM_x &&
7852             hw->mac.type != ixgbe_mac_X550EM_a) {
7853                 return -ENOTSUP;
7854         }
7855
7856         rar_entries = ixgbe_get_num_rx_addrs(hw);
7857
7858         for (i = 1; i < rar_entries; i++) {
7859                 rar_high = IXGBE_READ_REG(hw, IXGBE_RAH(i));
7860                 rar_low  = IXGBE_READ_REG(hw, IXGBE_RAL(i));
7861                 if ((rar_high & IXGBE_RAH_AV) &&
7862                     (rar_high & IXGBE_RAH_ADTYPE) &&
7863                     ((rar_low & IXGBE_RAL_ETAG_FILTER_MASK) ==
7864                      l2_tunnel->tunnel_id)) {
7865                         IXGBE_WRITE_REG(hw, IXGBE_RAL(i), 0);
7866                         IXGBE_WRITE_REG(hw, IXGBE_RAH(i), 0);
7867
7868                         ixgbe_clear_vmdq(hw, i, IXGBE_CLEAR_VMDQ_ALL);
7869
7870                         return ret;
7871                 }
7872         }
7873
7874         return ret;
7875 }
7876
7877 static int
7878 ixgbe_e_tag_filter_add(struct rte_eth_dev *dev,
7879                        struct rte_eth_l2_tunnel_conf *l2_tunnel)
7880 {
7881         int ret = 0;
7882         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
7883         uint32_t i, rar_entries;
7884         uint32_t rar_low, rar_high;
7885
7886         if (hw->mac.type != ixgbe_mac_X550 &&
7887             hw->mac.type != ixgbe_mac_X550EM_x &&
7888             hw->mac.type != ixgbe_mac_X550EM_a) {
7889                 return -ENOTSUP;
7890         }
7891
7892         /* One entry for one tunnel. Try to remove potential existing entry. */
7893         ixgbe_e_tag_filter_del(dev, l2_tunnel);
7894
7895         rar_entries = ixgbe_get_num_rx_addrs(hw);
7896
7897         for (i = 1; i < rar_entries; i++) {
7898                 rar_high = IXGBE_READ_REG(hw, IXGBE_RAH(i));
7899                 if (rar_high & IXGBE_RAH_AV) {
7900                         continue;
7901                 } else {
7902                         ixgbe_set_vmdq(hw, i, l2_tunnel->pool);
7903                         rar_high = IXGBE_RAH_AV | IXGBE_RAH_ADTYPE;
7904                         rar_low = l2_tunnel->tunnel_id;
7905
7906                         IXGBE_WRITE_REG(hw, IXGBE_RAL(i), rar_low);
7907                         IXGBE_WRITE_REG(hw, IXGBE_RAH(i), rar_high);
7908
7909                         return ret;
7910                 }
7911         }
7912
7913         PMD_INIT_LOG(NOTICE, "The table of E-tag forwarding rule is full."
7914                      " Please remove a rule before adding a new one.");
7915         return -EINVAL;
7916 }
7917
7918 static inline struct ixgbe_l2_tn_filter *
7919 ixgbe_l2_tn_filter_lookup(struct ixgbe_l2_tn_info *l2_tn_info,
7920                           struct ixgbe_l2_tn_key *key)
7921 {
7922         int ret;
7923
7924         ret = rte_hash_lookup(l2_tn_info->hash_handle, (const void *)key);
7925         if (ret < 0)
7926                 return NULL;
7927
7928         return l2_tn_info->hash_map[ret];
7929 }
7930
7931 static inline int
7932 ixgbe_insert_l2_tn_filter(struct ixgbe_l2_tn_info *l2_tn_info,
7933                           struct ixgbe_l2_tn_filter *l2_tn_filter)
7934 {
7935         int ret;
7936
7937         ret = rte_hash_add_key(l2_tn_info->hash_handle,
7938                                &l2_tn_filter->key);
7939
7940         if (ret < 0) {
7941                 PMD_DRV_LOG(ERR,
7942                             "Failed to insert L2 tunnel filter"
7943                             " to hash table %d!",
7944                             ret);
7945                 return ret;
7946         }
7947
7948         l2_tn_info->hash_map[ret] = l2_tn_filter;
7949
7950         TAILQ_INSERT_TAIL(&l2_tn_info->l2_tn_list, l2_tn_filter, entries);
7951
7952         return 0;
7953 }
7954
7955 static inline int
7956 ixgbe_remove_l2_tn_filter(struct ixgbe_l2_tn_info *l2_tn_info,
7957                           struct ixgbe_l2_tn_key *key)
7958 {
7959         int ret;
7960         struct ixgbe_l2_tn_filter *l2_tn_filter;
7961
7962         ret = rte_hash_del_key(l2_tn_info->hash_handle, key);
7963
7964         if (ret < 0) {
7965                 PMD_DRV_LOG(ERR,
7966                             "No such L2 tunnel filter to delete %d!",
7967                             ret);
7968                 return ret;
7969         }
7970
7971         l2_tn_filter = l2_tn_info->hash_map[ret];
7972         l2_tn_info->hash_map[ret] = NULL;
7973
7974         TAILQ_REMOVE(&l2_tn_info->l2_tn_list, l2_tn_filter, entries);
7975         rte_free(l2_tn_filter);
7976
7977         return 0;
7978 }
7979
7980 /* Add l2 tunnel filter */
7981 int
7982 ixgbe_dev_l2_tunnel_filter_add(struct rte_eth_dev *dev,
7983                                struct rte_eth_l2_tunnel_conf *l2_tunnel,
7984                                bool restore)
7985 {
7986         int ret;
7987         struct ixgbe_l2_tn_info *l2_tn_info =
7988                 IXGBE_DEV_PRIVATE_TO_L2_TN_INFO(dev->data->dev_private);
7989         struct ixgbe_l2_tn_key key;
7990         struct ixgbe_l2_tn_filter *node;
7991
7992         if (!restore) {
7993                 key.l2_tn_type = l2_tunnel->l2_tunnel_type;
7994                 key.tn_id = l2_tunnel->tunnel_id;
7995
7996                 node = ixgbe_l2_tn_filter_lookup(l2_tn_info, &key);
7997
7998                 if (node) {
7999                         PMD_DRV_LOG(ERR,
8000                                     "The L2 tunnel filter already exists!");
8001                         return -EINVAL;
8002                 }
8003
8004                 node = rte_zmalloc("ixgbe_l2_tn",
8005                                    sizeof(struct ixgbe_l2_tn_filter),
8006                                    0);
8007                 if (!node)
8008                         return -ENOMEM;
8009
8010                 rte_memcpy(&node->key,
8011                                  &key,
8012                                  sizeof(struct ixgbe_l2_tn_key));
8013                 node->pool = l2_tunnel->pool;
8014                 ret = ixgbe_insert_l2_tn_filter(l2_tn_info, node);
8015                 if (ret < 0) {
8016                         rte_free(node);
8017                         return ret;
8018                 }
8019         }
8020
8021         switch (l2_tunnel->l2_tunnel_type) {
8022         case RTE_L2_TUNNEL_TYPE_E_TAG:
8023                 ret = ixgbe_e_tag_filter_add(dev, l2_tunnel);
8024                 break;
8025         default:
8026                 PMD_DRV_LOG(ERR, "Invalid tunnel type");
8027                 ret = -EINVAL;
8028                 break;
8029         }
8030
8031         if ((!restore) && (ret < 0))
8032                 (void)ixgbe_remove_l2_tn_filter(l2_tn_info, &key);
8033
8034         return ret;
8035 }
8036
8037 /* Delete l2 tunnel filter */
8038 int
8039 ixgbe_dev_l2_tunnel_filter_del(struct rte_eth_dev *dev,
8040                                struct rte_eth_l2_tunnel_conf *l2_tunnel)
8041 {
8042         int ret;
8043         struct ixgbe_l2_tn_info *l2_tn_info =
8044                 IXGBE_DEV_PRIVATE_TO_L2_TN_INFO(dev->data->dev_private);
8045         struct ixgbe_l2_tn_key key;
8046
8047         key.l2_tn_type = l2_tunnel->l2_tunnel_type;
8048         key.tn_id = l2_tunnel->tunnel_id;
8049         ret = ixgbe_remove_l2_tn_filter(l2_tn_info, &key);
8050         if (ret < 0)
8051                 return ret;
8052
8053         switch (l2_tunnel->l2_tunnel_type) {
8054         case RTE_L2_TUNNEL_TYPE_E_TAG:
8055                 ret = ixgbe_e_tag_filter_del(dev, l2_tunnel);
8056                 break;
8057         default:
8058                 PMD_DRV_LOG(ERR, "Invalid tunnel type");
8059                 ret = -EINVAL;
8060                 break;
8061         }
8062
8063         return ret;
8064 }
8065
8066 /**
8067  * ixgbe_dev_l2_tunnel_filter_handle - Handle operations for l2 tunnel filter.
8068  * @dev: pointer to rte_eth_dev structure
8069  * @filter_op:operation will be taken.
8070  * @arg: a pointer to specific structure corresponding to the filter_op
8071  */
8072 static int
8073 ixgbe_dev_l2_tunnel_filter_handle(struct rte_eth_dev *dev,
8074                                   enum rte_filter_op filter_op,
8075                                   void *arg)
8076 {
8077         int ret;
8078
8079         if (filter_op == RTE_ETH_FILTER_NOP)
8080                 return 0;
8081
8082         if (arg == NULL) {
8083                 PMD_DRV_LOG(ERR, "arg shouldn't be NULL for operation %u.",
8084                             filter_op);
8085                 return -EINVAL;
8086         }
8087
8088         switch (filter_op) {
8089         case RTE_ETH_FILTER_ADD:
8090                 ret = ixgbe_dev_l2_tunnel_filter_add
8091                         (dev,
8092                          (struct rte_eth_l2_tunnel_conf *)arg,
8093                          FALSE);
8094                 break;
8095         case RTE_ETH_FILTER_DELETE:
8096                 ret = ixgbe_dev_l2_tunnel_filter_del
8097                         (dev,
8098                          (struct rte_eth_l2_tunnel_conf *)arg);
8099                 break;
8100         default:
8101                 PMD_DRV_LOG(ERR, "unsupported operation %u.", filter_op);
8102                 ret = -EINVAL;
8103                 break;
8104         }
8105         return ret;
8106 }
8107
8108 static int
8109 ixgbe_e_tag_forwarding_en_dis(struct rte_eth_dev *dev, bool en)
8110 {
8111         int ret = 0;
8112         uint32_t ctrl;
8113         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8114
8115         if (hw->mac.type != ixgbe_mac_X550 &&
8116             hw->mac.type != ixgbe_mac_X550EM_x &&
8117             hw->mac.type != ixgbe_mac_X550EM_a) {
8118                 return -ENOTSUP;
8119         }
8120
8121         ctrl = IXGBE_READ_REG(hw, IXGBE_VT_CTL);
8122         ctrl &= ~IXGBE_VT_CTL_POOLING_MODE_MASK;
8123         if (en)
8124                 ctrl |= IXGBE_VT_CTL_POOLING_MODE_ETAG;
8125         IXGBE_WRITE_REG(hw, IXGBE_VT_CTL, ctrl);
8126
8127         return ret;
8128 }
8129
8130 /* Enable l2 tunnel forwarding */
8131 static int
8132 ixgbe_dev_l2_tunnel_forwarding_enable
8133         (struct rte_eth_dev *dev,
8134          enum rte_eth_tunnel_type l2_tunnel_type)
8135 {
8136         struct ixgbe_l2_tn_info *l2_tn_info =
8137                 IXGBE_DEV_PRIVATE_TO_L2_TN_INFO(dev->data->dev_private);
8138         int ret = 0;
8139
8140         switch (l2_tunnel_type) {
8141         case RTE_L2_TUNNEL_TYPE_E_TAG:
8142                 l2_tn_info->e_tag_fwd_en = TRUE;
8143                 ret = ixgbe_e_tag_forwarding_en_dis(dev, 1);
8144                 break;
8145         default:
8146                 PMD_DRV_LOG(ERR, "Invalid tunnel type");
8147                 ret = -EINVAL;
8148                 break;
8149         }
8150
8151         return ret;
8152 }
8153
8154 /* Disable l2 tunnel forwarding */
8155 static int
8156 ixgbe_dev_l2_tunnel_forwarding_disable
8157         (struct rte_eth_dev *dev,
8158          enum rte_eth_tunnel_type l2_tunnel_type)
8159 {
8160         struct ixgbe_l2_tn_info *l2_tn_info =
8161                 IXGBE_DEV_PRIVATE_TO_L2_TN_INFO(dev->data->dev_private);
8162         int ret = 0;
8163
8164         switch (l2_tunnel_type) {
8165         case RTE_L2_TUNNEL_TYPE_E_TAG:
8166                 l2_tn_info->e_tag_fwd_en = FALSE;
8167                 ret = ixgbe_e_tag_forwarding_en_dis(dev, 0);
8168                 break;
8169         default:
8170                 PMD_DRV_LOG(ERR, "Invalid tunnel type");
8171                 ret = -EINVAL;
8172                 break;
8173         }
8174
8175         return ret;
8176 }
8177
8178 static int
8179 ixgbe_e_tag_insertion_en_dis(struct rte_eth_dev *dev,
8180                              struct rte_eth_l2_tunnel_conf *l2_tunnel,
8181                              bool en)
8182 {
8183         struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
8184         int ret = 0;
8185         uint32_t vmtir, vmvir;
8186         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8187
8188         if (l2_tunnel->vf_id >= pci_dev->max_vfs) {
8189                 PMD_DRV_LOG(ERR,
8190                             "VF id %u should be less than %u",
8191                             l2_tunnel->vf_id,
8192                             pci_dev->max_vfs);
8193                 return -EINVAL;
8194         }
8195
8196         if (hw->mac.type != ixgbe_mac_X550 &&
8197             hw->mac.type != ixgbe_mac_X550EM_x &&
8198             hw->mac.type != ixgbe_mac_X550EM_a) {
8199                 return -ENOTSUP;
8200         }
8201
8202         if (en)
8203                 vmtir = l2_tunnel->tunnel_id;
8204         else
8205                 vmtir = 0;
8206
8207         IXGBE_WRITE_REG(hw, IXGBE_VMTIR(l2_tunnel->vf_id), vmtir);
8208
8209         vmvir = IXGBE_READ_REG(hw, IXGBE_VMVIR(l2_tunnel->vf_id));
8210         vmvir &= ~IXGBE_VMVIR_TAGA_MASK;
8211         if (en)
8212                 vmvir |= IXGBE_VMVIR_TAGA_ETAG_INSERT;
8213         IXGBE_WRITE_REG(hw, IXGBE_VMVIR(l2_tunnel->vf_id), vmvir);
8214
8215         return ret;
8216 }
8217
8218 /* Enable l2 tunnel tag insertion */
8219 static int
8220 ixgbe_dev_l2_tunnel_insertion_enable(struct rte_eth_dev *dev,
8221                                      struct rte_eth_l2_tunnel_conf *l2_tunnel)
8222 {
8223         int ret = 0;
8224
8225         switch (l2_tunnel->l2_tunnel_type) {
8226         case RTE_L2_TUNNEL_TYPE_E_TAG:
8227                 ret = ixgbe_e_tag_insertion_en_dis(dev, l2_tunnel, 1);
8228                 break;
8229         default:
8230                 PMD_DRV_LOG(ERR, "Invalid tunnel type");
8231                 ret = -EINVAL;
8232                 break;
8233         }
8234
8235         return ret;
8236 }
8237
8238 /* Disable l2 tunnel tag insertion */
8239 static int
8240 ixgbe_dev_l2_tunnel_insertion_disable
8241         (struct rte_eth_dev *dev,
8242          struct rte_eth_l2_tunnel_conf *l2_tunnel)
8243 {
8244         int ret = 0;
8245
8246         switch (l2_tunnel->l2_tunnel_type) {
8247         case RTE_L2_TUNNEL_TYPE_E_TAG:
8248                 ret = ixgbe_e_tag_insertion_en_dis(dev, l2_tunnel, 0);
8249                 break;
8250         default:
8251                 PMD_DRV_LOG(ERR, "Invalid tunnel type");
8252                 ret = -EINVAL;
8253                 break;
8254         }
8255
8256         return ret;
8257 }
8258
8259 static int
8260 ixgbe_e_tag_stripping_en_dis(struct rte_eth_dev *dev,
8261                              bool en)
8262 {
8263         int ret = 0;
8264         uint32_t qde;
8265         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8266
8267         if (hw->mac.type != ixgbe_mac_X550 &&
8268             hw->mac.type != ixgbe_mac_X550EM_x &&
8269             hw->mac.type != ixgbe_mac_X550EM_a) {
8270                 return -ENOTSUP;
8271         }
8272
8273         qde = IXGBE_READ_REG(hw, IXGBE_QDE);
8274         if (en)
8275                 qde |= IXGBE_QDE_STRIP_TAG;
8276         else
8277                 qde &= ~IXGBE_QDE_STRIP_TAG;
8278         qde &= ~IXGBE_QDE_READ;
8279         qde |= IXGBE_QDE_WRITE;
8280         IXGBE_WRITE_REG(hw, IXGBE_QDE, qde);
8281
8282         return ret;
8283 }
8284
8285 /* Enable l2 tunnel tag stripping */
8286 static int
8287 ixgbe_dev_l2_tunnel_stripping_enable
8288         (struct rte_eth_dev *dev,
8289          enum rte_eth_tunnel_type l2_tunnel_type)
8290 {
8291         int ret = 0;
8292
8293         switch (l2_tunnel_type) {
8294         case RTE_L2_TUNNEL_TYPE_E_TAG:
8295                 ret = ixgbe_e_tag_stripping_en_dis(dev, 1);
8296                 break;
8297         default:
8298                 PMD_DRV_LOG(ERR, "Invalid tunnel type");
8299                 ret = -EINVAL;
8300                 break;
8301         }
8302
8303         return ret;
8304 }
8305
8306 /* Disable l2 tunnel tag stripping */
8307 static int
8308 ixgbe_dev_l2_tunnel_stripping_disable
8309         (struct rte_eth_dev *dev,
8310          enum rte_eth_tunnel_type l2_tunnel_type)
8311 {
8312         int ret = 0;
8313
8314         switch (l2_tunnel_type) {
8315         case RTE_L2_TUNNEL_TYPE_E_TAG:
8316                 ret = ixgbe_e_tag_stripping_en_dis(dev, 0);
8317                 break;
8318         default:
8319                 PMD_DRV_LOG(ERR, "Invalid tunnel type");
8320                 ret = -EINVAL;
8321                 break;
8322         }
8323
8324         return ret;
8325 }
8326
8327 /* Enable/disable l2 tunnel offload functions */
8328 static int
8329 ixgbe_dev_l2_tunnel_offload_set
8330         (struct rte_eth_dev *dev,
8331          struct rte_eth_l2_tunnel_conf *l2_tunnel,
8332          uint32_t mask,
8333          uint8_t en)
8334 {
8335         int ret = 0;
8336
8337         if (l2_tunnel == NULL)
8338                 return -EINVAL;
8339
8340         ret = -EINVAL;
8341         if (mask & ETH_L2_TUNNEL_ENABLE_MASK) {
8342                 if (en)
8343                         ret = ixgbe_dev_l2_tunnel_enable(
8344                                 dev,
8345                                 l2_tunnel->l2_tunnel_type);
8346                 else
8347                         ret = ixgbe_dev_l2_tunnel_disable(
8348                                 dev,
8349                                 l2_tunnel->l2_tunnel_type);
8350         }
8351
8352         if (mask & ETH_L2_TUNNEL_INSERTION_MASK) {
8353                 if (en)
8354                         ret = ixgbe_dev_l2_tunnel_insertion_enable(
8355                                 dev,
8356                                 l2_tunnel);
8357                 else
8358                         ret = ixgbe_dev_l2_tunnel_insertion_disable(
8359                                 dev,
8360                                 l2_tunnel);
8361         }
8362
8363         if (mask & ETH_L2_TUNNEL_STRIPPING_MASK) {
8364                 if (en)
8365                         ret = ixgbe_dev_l2_tunnel_stripping_enable(
8366                                 dev,
8367                                 l2_tunnel->l2_tunnel_type);
8368                 else
8369                         ret = ixgbe_dev_l2_tunnel_stripping_disable(
8370                                 dev,
8371                                 l2_tunnel->l2_tunnel_type);
8372         }
8373
8374         if (mask & ETH_L2_TUNNEL_FORWARDING_MASK) {
8375                 if (en)
8376                         ret = ixgbe_dev_l2_tunnel_forwarding_enable(
8377                                 dev,
8378                                 l2_tunnel->l2_tunnel_type);
8379                 else
8380                         ret = ixgbe_dev_l2_tunnel_forwarding_disable(
8381                                 dev,
8382                                 l2_tunnel->l2_tunnel_type);
8383         }
8384
8385         return ret;
8386 }
8387
8388 static int
8389 ixgbe_update_vxlan_port(struct ixgbe_hw *hw,
8390                         uint16_t port)
8391 {
8392         IXGBE_WRITE_REG(hw, IXGBE_VXLANCTRL, port);
8393         IXGBE_WRITE_FLUSH(hw);
8394
8395         return 0;
8396 }
8397
8398 /* There's only one register for VxLAN UDP port.
8399  * So, we cannot add several ports. Will update it.
8400  */
8401 static int
8402 ixgbe_add_vxlan_port(struct ixgbe_hw *hw,
8403                      uint16_t port)
8404 {
8405         if (port == 0) {
8406                 PMD_DRV_LOG(ERR, "Add VxLAN port 0 is not allowed.");
8407                 return -EINVAL;
8408         }
8409
8410         return ixgbe_update_vxlan_port(hw, port);
8411 }
8412
8413 /* We cannot delete the VxLAN port. For there's a register for VxLAN
8414  * UDP port, it must have a value.
8415  * So, will reset it to the original value 0.
8416  */
8417 static int
8418 ixgbe_del_vxlan_port(struct ixgbe_hw *hw,
8419                      uint16_t port)
8420 {
8421         uint16_t cur_port;
8422
8423         cur_port = (uint16_t)IXGBE_READ_REG(hw, IXGBE_VXLANCTRL);
8424
8425         if (cur_port != port) {
8426                 PMD_DRV_LOG(ERR, "Port %u does not exist.", port);
8427                 return -EINVAL;
8428         }
8429
8430         return ixgbe_update_vxlan_port(hw, 0);
8431 }
8432
8433 /* Add UDP tunneling port */
8434 static int
8435 ixgbe_dev_udp_tunnel_port_add(struct rte_eth_dev *dev,
8436                               struct rte_eth_udp_tunnel *udp_tunnel)
8437 {
8438         int ret = 0;
8439         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8440
8441         if (hw->mac.type != ixgbe_mac_X550 &&
8442             hw->mac.type != ixgbe_mac_X550EM_x &&
8443             hw->mac.type != ixgbe_mac_X550EM_a) {
8444                 return -ENOTSUP;
8445         }
8446
8447         if (udp_tunnel == NULL)
8448                 return -EINVAL;
8449
8450         switch (udp_tunnel->prot_type) {
8451         case RTE_TUNNEL_TYPE_VXLAN:
8452                 ret = ixgbe_add_vxlan_port(hw, udp_tunnel->udp_port);
8453                 break;
8454
8455         case RTE_TUNNEL_TYPE_GENEVE:
8456         case RTE_TUNNEL_TYPE_TEREDO:
8457                 PMD_DRV_LOG(ERR, "Tunnel type is not supported now.");
8458                 ret = -EINVAL;
8459                 break;
8460
8461         default:
8462                 PMD_DRV_LOG(ERR, "Invalid tunnel type");
8463                 ret = -EINVAL;
8464                 break;
8465         }
8466
8467         return ret;
8468 }
8469
8470 /* Remove UDP tunneling port */
8471 static int
8472 ixgbe_dev_udp_tunnel_port_del(struct rte_eth_dev *dev,
8473                               struct rte_eth_udp_tunnel *udp_tunnel)
8474 {
8475         int ret = 0;
8476         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8477
8478         if (hw->mac.type != ixgbe_mac_X550 &&
8479             hw->mac.type != ixgbe_mac_X550EM_x &&
8480             hw->mac.type != ixgbe_mac_X550EM_a) {
8481                 return -ENOTSUP;
8482         }
8483
8484         if (udp_tunnel == NULL)
8485                 return -EINVAL;
8486
8487         switch (udp_tunnel->prot_type) {
8488         case RTE_TUNNEL_TYPE_VXLAN:
8489                 ret = ixgbe_del_vxlan_port(hw, udp_tunnel->udp_port);
8490                 break;
8491         case RTE_TUNNEL_TYPE_GENEVE:
8492         case RTE_TUNNEL_TYPE_TEREDO:
8493                 PMD_DRV_LOG(ERR, "Tunnel type is not supported now.");
8494                 ret = -EINVAL;
8495                 break;
8496         default:
8497                 PMD_DRV_LOG(ERR, "Invalid tunnel type");
8498                 ret = -EINVAL;
8499                 break;
8500         }
8501
8502         return ret;
8503 }
8504
8505 static int
8506 ixgbevf_dev_promiscuous_enable(struct rte_eth_dev *dev)
8507 {
8508         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8509         int ret;
8510
8511         switch (hw->mac.ops.update_xcast_mode(hw, IXGBEVF_XCAST_MODE_PROMISC)) {
8512         case IXGBE_SUCCESS:
8513                 ret = 0;
8514                 break;
8515         case IXGBE_ERR_FEATURE_NOT_SUPPORTED:
8516                 ret = -ENOTSUP;
8517                 break;
8518         default:
8519                 ret = -EAGAIN;
8520                 break;
8521         }
8522
8523         return ret;
8524 }
8525
8526 static int
8527 ixgbevf_dev_promiscuous_disable(struct rte_eth_dev *dev)
8528 {
8529         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8530         int ret;
8531
8532         switch (hw->mac.ops.update_xcast_mode(hw, IXGBEVF_XCAST_MODE_NONE)) {
8533         case IXGBE_SUCCESS:
8534                 ret = 0;
8535                 break;
8536         case IXGBE_ERR_FEATURE_NOT_SUPPORTED:
8537                 ret = -ENOTSUP;
8538                 break;
8539         default:
8540                 ret = -EAGAIN;
8541                 break;
8542         }
8543
8544         return ret;
8545 }
8546
8547 static int
8548 ixgbevf_dev_allmulticast_enable(struct rte_eth_dev *dev)
8549 {
8550         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8551         int ret;
8552         int mode = IXGBEVF_XCAST_MODE_ALLMULTI;
8553
8554         switch (hw->mac.ops.update_xcast_mode(hw, mode)) {
8555         case IXGBE_SUCCESS:
8556                 ret = 0;
8557                 break;
8558         case IXGBE_ERR_FEATURE_NOT_SUPPORTED:
8559                 ret = -ENOTSUP;
8560                 break;
8561         default:
8562                 ret = -EAGAIN;
8563                 break;
8564         }
8565
8566         return ret;
8567 }
8568
8569 static int
8570 ixgbevf_dev_allmulticast_disable(struct rte_eth_dev *dev)
8571 {
8572         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8573         int ret;
8574
8575         switch (hw->mac.ops.update_xcast_mode(hw, IXGBEVF_XCAST_MODE_MULTI)) {
8576         case IXGBE_SUCCESS:
8577                 ret = 0;
8578                 break;
8579         case IXGBE_ERR_FEATURE_NOT_SUPPORTED:
8580                 ret = -ENOTSUP;
8581                 break;
8582         default:
8583                 ret = -EAGAIN;
8584                 break;
8585         }
8586
8587         return ret;
8588 }
8589
8590 static void ixgbevf_mbx_process(struct rte_eth_dev *dev)
8591 {
8592         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8593         u32 in_msg = 0;
8594
8595         /* peek the message first */
8596         in_msg = IXGBE_READ_REG(hw, IXGBE_VFMBMEM);
8597
8598         /* PF reset VF event */
8599         if (in_msg == IXGBE_PF_CONTROL_MSG) {
8600                 /* dummy mbx read to ack pf */
8601                 if (ixgbe_read_mbx(hw, &in_msg, 1, 0))
8602                         return;
8603                 _rte_eth_dev_callback_process(dev, RTE_ETH_EVENT_INTR_RESET,
8604                                               NULL);
8605         }
8606 }
8607
8608 static int
8609 ixgbevf_dev_interrupt_get_status(struct rte_eth_dev *dev)
8610 {
8611         uint32_t eicr;
8612         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8613         struct ixgbe_interrupt *intr =
8614                 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
8615         ixgbevf_intr_disable(dev);
8616
8617         /* read-on-clear nic registers here */
8618         eicr = IXGBE_READ_REG(hw, IXGBE_VTEICR);
8619         intr->flags = 0;
8620
8621         /* only one misc vector supported - mailbox */
8622         eicr &= IXGBE_VTEICR_MASK;
8623         if (eicr == IXGBE_MISC_VEC_ID)
8624                 intr->flags |= IXGBE_FLAG_MAILBOX;
8625
8626         return 0;
8627 }
8628
8629 static int
8630 ixgbevf_dev_interrupt_action(struct rte_eth_dev *dev)
8631 {
8632         struct ixgbe_interrupt *intr =
8633                 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
8634
8635         if (intr->flags & IXGBE_FLAG_MAILBOX) {
8636                 ixgbevf_mbx_process(dev);
8637                 intr->flags &= ~IXGBE_FLAG_MAILBOX;
8638         }
8639
8640         ixgbevf_intr_enable(dev);
8641
8642         return 0;
8643 }
8644
8645 static void
8646 ixgbevf_dev_interrupt_handler(void *param)
8647 {
8648         struct rte_eth_dev *dev = (struct rte_eth_dev *)param;
8649
8650         ixgbevf_dev_interrupt_get_status(dev);
8651         ixgbevf_dev_interrupt_action(dev);
8652 }
8653
8654 /**
8655  *  ixgbe_disable_sec_tx_path_generic - Stops the transmit data path
8656  *  @hw: pointer to hardware structure
8657  *
8658  *  Stops the transmit data path and waits for the HW to internally empty
8659  *  the Tx security block
8660  **/
8661 int ixgbe_disable_sec_tx_path_generic(struct ixgbe_hw *hw)
8662 {
8663 #define IXGBE_MAX_SECTX_POLL 40
8664
8665         int i;
8666         int sectxreg;
8667
8668         sectxreg = IXGBE_READ_REG(hw, IXGBE_SECTXCTRL);
8669         sectxreg |= IXGBE_SECTXCTRL_TX_DIS;
8670         IXGBE_WRITE_REG(hw, IXGBE_SECTXCTRL, sectxreg);
8671         for (i = 0; i < IXGBE_MAX_SECTX_POLL; i++) {
8672                 sectxreg = IXGBE_READ_REG(hw, IXGBE_SECTXSTAT);
8673                 if (sectxreg & IXGBE_SECTXSTAT_SECTX_RDY)
8674                         break;
8675                 /* Use interrupt-safe sleep just in case */
8676                 usec_delay(1000);
8677         }
8678
8679         /* For informational purposes only */
8680         if (i >= IXGBE_MAX_SECTX_POLL)
8681                 PMD_DRV_LOG(DEBUG, "Tx unit being enabled before security "
8682                          "path fully disabled.  Continuing with init.");
8683
8684         return IXGBE_SUCCESS;
8685 }
8686
8687 /**
8688  *  ixgbe_enable_sec_tx_path_generic - Enables the transmit data path
8689  *  @hw: pointer to hardware structure
8690  *
8691  *  Enables the transmit data path.
8692  **/
8693 int ixgbe_enable_sec_tx_path_generic(struct ixgbe_hw *hw)
8694 {
8695         uint32_t sectxreg;
8696
8697         sectxreg = IXGBE_READ_REG(hw, IXGBE_SECTXCTRL);
8698         sectxreg &= ~IXGBE_SECTXCTRL_TX_DIS;
8699         IXGBE_WRITE_REG(hw, IXGBE_SECTXCTRL, sectxreg);
8700         IXGBE_WRITE_FLUSH(hw);
8701
8702         return IXGBE_SUCCESS;
8703 }
8704
8705 /* restore n-tuple filter */
8706 static inline void
8707 ixgbe_ntuple_filter_restore(struct rte_eth_dev *dev)
8708 {
8709         struct ixgbe_filter_info *filter_info =
8710                 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
8711         struct ixgbe_5tuple_filter *node;
8712
8713         TAILQ_FOREACH(node, &filter_info->fivetuple_list, entries) {
8714                 ixgbe_inject_5tuple_filter(dev, node);
8715         }
8716 }
8717
8718 /* restore ethernet type filter */
8719 static inline void
8720 ixgbe_ethertype_filter_restore(struct rte_eth_dev *dev)
8721 {
8722         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8723         struct ixgbe_filter_info *filter_info =
8724                 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
8725         int i;
8726
8727         for (i = 0; i < IXGBE_MAX_ETQF_FILTERS; i++) {
8728                 if (filter_info->ethertype_mask & (1 << i)) {
8729                         IXGBE_WRITE_REG(hw, IXGBE_ETQF(i),
8730                                         filter_info->ethertype_filters[i].etqf);
8731                         IXGBE_WRITE_REG(hw, IXGBE_ETQS(i),
8732                                         filter_info->ethertype_filters[i].etqs);
8733                         IXGBE_WRITE_FLUSH(hw);
8734                 }
8735         }
8736 }
8737
8738 /* restore SYN filter */
8739 static inline void
8740 ixgbe_syn_filter_restore(struct rte_eth_dev *dev)
8741 {
8742         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8743         struct ixgbe_filter_info *filter_info =
8744                 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
8745         uint32_t synqf;
8746
8747         synqf = filter_info->syn_info;
8748
8749         if (synqf & IXGBE_SYN_FILTER_ENABLE) {
8750                 IXGBE_WRITE_REG(hw, IXGBE_SYNQF, synqf);
8751                 IXGBE_WRITE_FLUSH(hw);
8752         }
8753 }
8754
8755 /* restore L2 tunnel filter */
8756 static inline void
8757 ixgbe_l2_tn_filter_restore(struct rte_eth_dev *dev)
8758 {
8759         struct ixgbe_l2_tn_info *l2_tn_info =
8760                 IXGBE_DEV_PRIVATE_TO_L2_TN_INFO(dev->data->dev_private);
8761         struct ixgbe_l2_tn_filter *node;
8762         struct rte_eth_l2_tunnel_conf l2_tn_conf;
8763
8764         TAILQ_FOREACH(node, &l2_tn_info->l2_tn_list, entries) {
8765                 l2_tn_conf.l2_tunnel_type = node->key.l2_tn_type;
8766                 l2_tn_conf.tunnel_id      = node->key.tn_id;
8767                 l2_tn_conf.pool           = node->pool;
8768                 (void)ixgbe_dev_l2_tunnel_filter_add(dev, &l2_tn_conf, TRUE);
8769         }
8770 }
8771
8772 /* restore rss filter */
8773 static inline void
8774 ixgbe_rss_filter_restore(struct rte_eth_dev *dev)
8775 {
8776         struct ixgbe_filter_info *filter_info =
8777                 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
8778
8779         if (filter_info->rss_info.conf.queue_num)
8780                 ixgbe_config_rss_filter(dev,
8781                         &filter_info->rss_info, TRUE);
8782 }
8783
8784 static int
8785 ixgbe_filter_restore(struct rte_eth_dev *dev)
8786 {
8787         ixgbe_ntuple_filter_restore(dev);
8788         ixgbe_ethertype_filter_restore(dev);
8789         ixgbe_syn_filter_restore(dev);
8790         ixgbe_fdir_filter_restore(dev);
8791         ixgbe_l2_tn_filter_restore(dev);
8792         ixgbe_rss_filter_restore(dev);
8793
8794         return 0;
8795 }
8796
8797 static void
8798 ixgbe_l2_tunnel_conf(struct rte_eth_dev *dev)
8799 {
8800         struct ixgbe_l2_tn_info *l2_tn_info =
8801                 IXGBE_DEV_PRIVATE_TO_L2_TN_INFO(dev->data->dev_private);
8802         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8803
8804         if (l2_tn_info->e_tag_en)
8805                 (void)ixgbe_e_tag_enable(hw);
8806
8807         if (l2_tn_info->e_tag_fwd_en)
8808                 (void)ixgbe_e_tag_forwarding_en_dis(dev, 1);
8809
8810         (void)ixgbe_update_e_tag_eth_type(hw, l2_tn_info->e_tag_ether_type);
8811 }
8812
8813 /* remove all the n-tuple filters */
8814 void
8815 ixgbe_clear_all_ntuple_filter(struct rte_eth_dev *dev)
8816 {
8817         struct ixgbe_filter_info *filter_info =
8818                 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
8819         struct ixgbe_5tuple_filter *p_5tuple;
8820
8821         while ((p_5tuple = TAILQ_FIRST(&filter_info->fivetuple_list)))
8822                 ixgbe_remove_5tuple_filter(dev, p_5tuple);
8823 }
8824
8825 /* remove all the ether type filters */
8826 void
8827 ixgbe_clear_all_ethertype_filter(struct rte_eth_dev *dev)
8828 {
8829         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8830         struct ixgbe_filter_info *filter_info =
8831                 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
8832         int i;
8833
8834         for (i = 0; i < IXGBE_MAX_ETQF_FILTERS; i++) {
8835                 if (filter_info->ethertype_mask & (1 << i) &&
8836                     !filter_info->ethertype_filters[i].conf) {
8837                         (void)ixgbe_ethertype_filter_remove(filter_info,
8838                                                             (uint8_t)i);
8839                         IXGBE_WRITE_REG(hw, IXGBE_ETQF(i), 0);
8840                         IXGBE_WRITE_REG(hw, IXGBE_ETQS(i), 0);
8841                         IXGBE_WRITE_FLUSH(hw);
8842                 }
8843         }
8844 }
8845
8846 /* remove the SYN filter */
8847 void
8848 ixgbe_clear_syn_filter(struct rte_eth_dev *dev)
8849 {
8850         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8851         struct ixgbe_filter_info *filter_info =
8852                 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
8853
8854         if (filter_info->syn_info & IXGBE_SYN_FILTER_ENABLE) {
8855                 filter_info->syn_info = 0;
8856
8857                 IXGBE_WRITE_REG(hw, IXGBE_SYNQF, 0);
8858                 IXGBE_WRITE_FLUSH(hw);
8859         }
8860 }
8861
8862 /* remove all the L2 tunnel filters */
8863 int
8864 ixgbe_clear_all_l2_tn_filter(struct rte_eth_dev *dev)
8865 {
8866         struct ixgbe_l2_tn_info *l2_tn_info =
8867                 IXGBE_DEV_PRIVATE_TO_L2_TN_INFO(dev->data->dev_private);
8868         struct ixgbe_l2_tn_filter *l2_tn_filter;
8869         struct rte_eth_l2_tunnel_conf l2_tn_conf;
8870         int ret = 0;
8871
8872         while ((l2_tn_filter = TAILQ_FIRST(&l2_tn_info->l2_tn_list))) {
8873                 l2_tn_conf.l2_tunnel_type = l2_tn_filter->key.l2_tn_type;
8874                 l2_tn_conf.tunnel_id      = l2_tn_filter->key.tn_id;
8875                 l2_tn_conf.pool           = l2_tn_filter->pool;
8876                 ret = ixgbe_dev_l2_tunnel_filter_del(dev, &l2_tn_conf);
8877                 if (ret < 0)
8878                         return ret;
8879         }
8880
8881         return 0;
8882 }
8883
8884 void
8885 ixgbe_dev_macsec_setting_save(struct rte_eth_dev *dev,
8886                                 struct ixgbe_macsec_setting *macsec_setting)
8887 {
8888         struct ixgbe_macsec_setting *macsec =
8889                 IXGBE_DEV_PRIVATE_TO_MACSEC_SETTING(dev->data->dev_private);
8890
8891         macsec->offload_en = macsec_setting->offload_en;
8892         macsec->encrypt_en = macsec_setting->encrypt_en;
8893         macsec->replayprotect_en = macsec_setting->replayprotect_en;
8894 }
8895
8896 void
8897 ixgbe_dev_macsec_setting_reset(struct rte_eth_dev *dev)
8898 {
8899         struct ixgbe_macsec_setting *macsec =
8900                 IXGBE_DEV_PRIVATE_TO_MACSEC_SETTING(dev->data->dev_private);
8901
8902         macsec->offload_en = 0;
8903         macsec->encrypt_en = 0;
8904         macsec->replayprotect_en = 0;
8905 }
8906
8907 void
8908 ixgbe_dev_macsec_register_enable(struct rte_eth_dev *dev,
8909                                 struct ixgbe_macsec_setting *macsec_setting)
8910 {
8911         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8912         uint32_t ctrl;
8913         uint8_t en = macsec_setting->encrypt_en;
8914         uint8_t rp = macsec_setting->replayprotect_en;
8915
8916         /**
8917          * Workaround:
8918          * As no ixgbe_disable_sec_rx_path equivalent is
8919          * implemented for tx in the base code, and we are
8920          * not allowed to modify the base code in DPDK, so
8921          * just call the hand-written one directly for now.
8922          * The hardware support has been checked by
8923          * ixgbe_disable_sec_rx_path().
8924          */
8925         ixgbe_disable_sec_tx_path_generic(hw);
8926
8927         /* Enable Ethernet CRC (required by MACsec offload) */
8928         ctrl = IXGBE_READ_REG(hw, IXGBE_HLREG0);
8929         ctrl |= IXGBE_HLREG0_TXCRCEN | IXGBE_HLREG0_RXCRCSTRP;
8930         IXGBE_WRITE_REG(hw, IXGBE_HLREG0, ctrl);
8931
8932         /* Enable the TX and RX crypto engines */
8933         ctrl = IXGBE_READ_REG(hw, IXGBE_SECTXCTRL);
8934         ctrl &= ~IXGBE_SECTXCTRL_SECTX_DIS;
8935         IXGBE_WRITE_REG(hw, IXGBE_SECTXCTRL, ctrl);
8936
8937         ctrl = IXGBE_READ_REG(hw, IXGBE_SECRXCTRL);
8938         ctrl &= ~IXGBE_SECRXCTRL_SECRX_DIS;
8939         IXGBE_WRITE_REG(hw, IXGBE_SECRXCTRL, ctrl);
8940
8941         ctrl = IXGBE_READ_REG(hw, IXGBE_SECTXMINIFG);
8942         ctrl &= ~IXGBE_SECTX_MINSECIFG_MASK;
8943         ctrl |= 0x3;
8944         IXGBE_WRITE_REG(hw, IXGBE_SECTXMINIFG, ctrl);
8945
8946         /* Enable SA lookup */
8947         ctrl = IXGBE_READ_REG(hw, IXGBE_LSECTXCTRL);
8948         ctrl &= ~IXGBE_LSECTXCTRL_EN_MASK;
8949         ctrl |= en ? IXGBE_LSECTXCTRL_AUTH_ENCRYPT :
8950                      IXGBE_LSECTXCTRL_AUTH;
8951         ctrl |= IXGBE_LSECTXCTRL_AISCI;
8952         ctrl &= ~IXGBE_LSECTXCTRL_PNTHRSH_MASK;
8953         ctrl |= IXGBE_MACSEC_PNTHRSH & IXGBE_LSECTXCTRL_PNTHRSH_MASK;
8954         IXGBE_WRITE_REG(hw, IXGBE_LSECTXCTRL, ctrl);
8955
8956         ctrl = IXGBE_READ_REG(hw, IXGBE_LSECRXCTRL);
8957         ctrl &= ~IXGBE_LSECRXCTRL_EN_MASK;
8958         ctrl |= IXGBE_LSECRXCTRL_STRICT << IXGBE_LSECRXCTRL_EN_SHIFT;
8959         ctrl &= ~IXGBE_LSECRXCTRL_PLSH;
8960         if (rp)
8961                 ctrl |= IXGBE_LSECRXCTRL_RP;
8962         else
8963                 ctrl &= ~IXGBE_LSECRXCTRL_RP;
8964         IXGBE_WRITE_REG(hw, IXGBE_LSECRXCTRL, ctrl);
8965
8966         /* Start the data paths */
8967         ixgbe_enable_sec_rx_path(hw);
8968         /**
8969          * Workaround:
8970          * As no ixgbe_enable_sec_rx_path equivalent is
8971          * implemented for tx in the base code, and we are
8972          * not allowed to modify the base code in DPDK, so
8973          * just call the hand-written one directly for now.
8974          */
8975         ixgbe_enable_sec_tx_path_generic(hw);
8976 }
8977
8978 void
8979 ixgbe_dev_macsec_register_disable(struct rte_eth_dev *dev)
8980 {
8981         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
8982         uint32_t ctrl;
8983
8984         /**
8985          * Workaround:
8986          * As no ixgbe_disable_sec_rx_path equivalent is
8987          * implemented for tx in the base code, and we are
8988          * not allowed to modify the base code in DPDK, so
8989          * just call the hand-written one directly for now.
8990          * The hardware support has been checked by
8991          * ixgbe_disable_sec_rx_path().
8992          */
8993         ixgbe_disable_sec_tx_path_generic(hw);
8994
8995         /* Disable the TX and RX crypto engines */
8996         ctrl = IXGBE_READ_REG(hw, IXGBE_SECTXCTRL);
8997         ctrl |= IXGBE_SECTXCTRL_SECTX_DIS;
8998         IXGBE_WRITE_REG(hw, IXGBE_SECTXCTRL, ctrl);
8999
9000         ctrl = IXGBE_READ_REG(hw, IXGBE_SECRXCTRL);
9001         ctrl |= IXGBE_SECRXCTRL_SECRX_DIS;
9002         IXGBE_WRITE_REG(hw, IXGBE_SECRXCTRL, ctrl);
9003
9004         /* Disable SA lookup */
9005         ctrl = IXGBE_READ_REG(hw, IXGBE_LSECTXCTRL);
9006         ctrl &= ~IXGBE_LSECTXCTRL_EN_MASK;
9007         ctrl |= IXGBE_LSECTXCTRL_DISABLE;
9008         IXGBE_WRITE_REG(hw, IXGBE_LSECTXCTRL, ctrl);
9009
9010         ctrl = IXGBE_READ_REG(hw, IXGBE_LSECRXCTRL);
9011         ctrl &= ~IXGBE_LSECRXCTRL_EN_MASK;
9012         ctrl |= IXGBE_LSECRXCTRL_DISABLE << IXGBE_LSECRXCTRL_EN_SHIFT;
9013         IXGBE_WRITE_REG(hw, IXGBE_LSECRXCTRL, ctrl);
9014
9015         /* Start the data paths */
9016         ixgbe_enable_sec_rx_path(hw);
9017         /**
9018          * Workaround:
9019          * As no ixgbe_enable_sec_rx_path equivalent is
9020          * implemented for tx in the base code, and we are
9021          * not allowed to modify the base code in DPDK, so
9022          * just call the hand-written one directly for now.
9023          */
9024         ixgbe_enable_sec_tx_path_generic(hw);
9025 }
9026
9027 RTE_PMD_REGISTER_PCI(net_ixgbe, rte_ixgbe_pmd);
9028 RTE_PMD_REGISTER_PCI_TABLE(net_ixgbe, pci_id_ixgbe_map);
9029 RTE_PMD_REGISTER_KMOD_DEP(net_ixgbe, "* igb_uio | uio_pci_generic | vfio-pci");
9030 RTE_PMD_REGISTER_PCI(net_ixgbe_vf, rte_ixgbevf_pmd);
9031 RTE_PMD_REGISTER_PCI_TABLE(net_ixgbe_vf, pci_id_ixgbevf_map);
9032 RTE_PMD_REGISTER_KMOD_DEP(net_ixgbe_vf, "* igb_uio | vfio-pci");
9033 RTE_PMD_REGISTER_PARAM_STRING(net_ixgbe_vf,
9034                               IXGBEVF_DEVARG_PFLINK_FULLCHK "=<0|1>");
9035
9036 RTE_INIT(ixgbe_init_log)
9037 {
9038         ixgbe_logtype_init = rte_log_register("pmd.net.ixgbe.init");
9039         if (ixgbe_logtype_init >= 0)
9040                 rte_log_set_level(ixgbe_logtype_init, RTE_LOG_NOTICE);
9041         ixgbe_logtype_driver = rte_log_register("pmd.net.ixgbe.driver");
9042         if (ixgbe_logtype_driver >= 0)
9043                 rte_log_set_level(ixgbe_logtype_driver, RTE_LOG_NOTICE);
9044 #ifdef RTE_LIBRTE_IXGBE_DEBUG_RX
9045         ixgbe_logtype_rx = rte_log_register("pmd.net.ixgbe.rx");
9046         if (ixgbe_logtype_rx >= 0)
9047                 rte_log_set_level(ixgbe_logtype_rx, RTE_LOG_DEBUG);
9048 #endif
9049
9050 #ifdef RTE_LIBRTE_IXGBE_DEBUG_TX
9051         ixgbe_logtype_tx = rte_log_register("pmd.net.ixgbe.tx");
9052         if (ixgbe_logtype_tx >= 0)
9053                 rte_log_set_level(ixgbe_logtype_tx, RTE_LOG_DEBUG);
9054 #endif
9055
9056 #ifdef RTE_LIBRTE_IXGBE_DEBUG_TX_FREE
9057         ixgbe_logtype_tx_free = rte_log_register("pmd.net.ixgbe.tx_free");
9058         if (ixgbe_logtype_tx_free >= 0)
9059                 rte_log_set_level(ixgbe_logtype_tx_free, RTE_LOG_DEBUG);
9060 #endif
9061 }