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