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