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