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