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