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