xref: /dpdk/drivers/net/e1000/igb_ethdev.c (revision 632be327)
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2010-2016 Intel Corporation
3  */
4 
5 #include <sys/queue.h>
6 #include <stdio.h>
7 #include <errno.h>
8 #include <stdint.h>
9 #include <stdarg.h>
10 
11 #include <rte_string_fns.h>
12 #include <rte_common.h>
13 #include <rte_interrupts.h>
14 #include <rte_byteorder.h>
15 #include <rte_log.h>
16 #include <rte_debug.h>
17 #include <rte_pci.h>
18 #include <rte_bus_pci.h>
19 #include <rte_ether.h>
20 #include <ethdev_driver.h>
21 #include <ethdev_pci.h>
22 #include <rte_memory.h>
23 #include <rte_eal.h>
24 #include <rte_malloc.h>
25 #include <rte_dev.h>
26 
27 #include "e1000_logs.h"
28 #include "base/e1000_api.h"
29 #include "e1000_ethdev.h"
30 #include "igb_regs.h"
31 
32 /*
33  * Default values for port configuration
34  */
35 #define IGB_DEFAULT_RX_FREE_THRESH  32
36 
37 #define IGB_DEFAULT_RX_PTHRESH      ((hw->mac.type == e1000_i354) ? 12 : 8)
38 #define IGB_DEFAULT_RX_HTHRESH      8
39 #define IGB_DEFAULT_RX_WTHRESH      ((hw->mac.type == e1000_82576) ? 1 : 4)
40 
41 #define IGB_DEFAULT_TX_PTHRESH      ((hw->mac.type == e1000_i354) ? 20 : 8)
42 #define IGB_DEFAULT_TX_HTHRESH      1
43 #define IGB_DEFAULT_TX_WTHRESH      ((hw->mac.type == e1000_82576) ? 1 : 16)
44 
45 /* Bit shift and mask */
46 #define IGB_4_BIT_WIDTH  (CHAR_BIT / 2)
47 #define IGB_4_BIT_MASK   RTE_LEN2MASK(IGB_4_BIT_WIDTH, uint8_t)
48 #define IGB_8_BIT_WIDTH  CHAR_BIT
49 #define IGB_8_BIT_MASK   UINT8_MAX
50 
51 /* Additional timesync values. */
52 #define E1000_CYCLECOUNTER_MASK      0xffffffffffffffffULL
53 #define E1000_ETQF_FILTER_1588       3
54 #define IGB_82576_TSYNC_SHIFT        16
55 #define E1000_INCPERIOD_82576        (1 << E1000_TIMINCA_16NS_SHIFT)
56 #define E1000_INCVALUE_82576         (16 << IGB_82576_TSYNC_SHIFT)
57 #define E1000_TSAUXC_DISABLE_SYSTIME 0x80000000
58 
59 #define E1000_VTIVAR_MISC                0x01740
60 #define E1000_VTIVAR_MISC_MASK           0xFF
61 #define E1000_VTIVAR_VALID               0x80
62 #define E1000_VTIVAR_MISC_MAILBOX        0
63 #define E1000_VTIVAR_MISC_INTR_MASK      0x3
64 
65 /* External VLAN Enable bit mask */
66 #define E1000_CTRL_EXT_EXT_VLAN      (1 << 26)
67 
68 /* External VLAN Ether Type bit mask and shift */
69 #define E1000_VET_VET_EXT            0xFFFF0000
70 #define E1000_VET_VET_EXT_SHIFT      16
71 
72 /* MSI-X other interrupt vector */
73 #define IGB_MSIX_OTHER_INTR_VEC      0
74 
75 static int  eth_igb_configure(struct rte_eth_dev *dev);
76 static int  eth_igb_start(struct rte_eth_dev *dev);
77 static int  eth_igb_stop(struct rte_eth_dev *dev);
78 static int  eth_igb_dev_set_link_up(struct rte_eth_dev *dev);
79 static int  eth_igb_dev_set_link_down(struct rte_eth_dev *dev);
80 static int eth_igb_close(struct rte_eth_dev *dev);
81 static int eth_igb_reset(struct rte_eth_dev *dev);
82 static int  eth_igb_promiscuous_enable(struct rte_eth_dev *dev);
83 static int  eth_igb_promiscuous_disable(struct rte_eth_dev *dev);
84 static int  eth_igb_allmulticast_enable(struct rte_eth_dev *dev);
85 static int  eth_igb_allmulticast_disable(struct rte_eth_dev *dev);
86 static int  eth_igb_link_update(struct rte_eth_dev *dev,
87 				int wait_to_complete);
88 static int eth_igb_stats_get(struct rte_eth_dev *dev,
89 				struct rte_eth_stats *rte_stats);
90 static int eth_igb_xstats_get(struct rte_eth_dev *dev,
91 			      struct rte_eth_xstat *xstats, unsigned n);
92 static int eth_igb_xstats_get_by_id(struct rte_eth_dev *dev,
93 		const uint64_t *ids,
94 		uint64_t *values, unsigned int n);
95 static int eth_igb_xstats_get_names(struct rte_eth_dev *dev,
96 				    struct rte_eth_xstat_name *xstats_names,
97 				    unsigned int size);
98 static int eth_igb_xstats_get_names_by_id(struct rte_eth_dev *dev,
99 		const uint64_t *ids, struct rte_eth_xstat_name *xstats_names,
100 		unsigned int limit);
101 static int eth_igb_stats_reset(struct rte_eth_dev *dev);
102 static int eth_igb_xstats_reset(struct rte_eth_dev *dev);
103 static int eth_igb_fw_version_get(struct rte_eth_dev *dev,
104 				   char *fw_version, size_t fw_size);
105 static int eth_igb_infos_get(struct rte_eth_dev *dev,
106 			      struct rte_eth_dev_info *dev_info);
107 static const uint32_t *eth_igb_supported_ptypes_get(struct rte_eth_dev *dev);
108 static int eth_igbvf_infos_get(struct rte_eth_dev *dev,
109 				struct rte_eth_dev_info *dev_info);
110 static int  eth_igb_flow_ctrl_get(struct rte_eth_dev *dev,
111 				struct rte_eth_fc_conf *fc_conf);
112 static int  eth_igb_flow_ctrl_set(struct rte_eth_dev *dev,
113 				struct rte_eth_fc_conf *fc_conf);
114 static int eth_igb_lsc_interrupt_setup(struct rte_eth_dev *dev, uint8_t on);
115 static int eth_igb_rxq_interrupt_setup(struct rte_eth_dev *dev);
116 static int eth_igb_interrupt_get_status(struct rte_eth_dev *dev);
117 static int eth_igb_interrupt_action(struct rte_eth_dev *dev,
118 				    struct rte_intr_handle *handle);
119 static void eth_igb_interrupt_handler(void *param);
120 static int  igb_hardware_init(struct e1000_hw *hw);
121 static void igb_hw_control_acquire(struct e1000_hw *hw);
122 static void igb_hw_control_release(struct e1000_hw *hw);
123 static void igb_init_manageability(struct e1000_hw *hw);
124 static void igb_release_manageability(struct e1000_hw *hw);
125 
126 static int  eth_igb_mtu_set(struct rte_eth_dev *dev, uint16_t mtu);
127 
128 static int eth_igb_vlan_filter_set(struct rte_eth_dev *dev,
129 		uint16_t vlan_id, int on);
130 static int eth_igb_vlan_tpid_set(struct rte_eth_dev *dev,
131 				 enum rte_vlan_type vlan_type,
132 				 uint16_t tpid_id);
133 static int eth_igb_vlan_offload_set(struct rte_eth_dev *dev, int mask);
134 
135 static void igb_vlan_hw_filter_enable(struct rte_eth_dev *dev);
136 static void igb_vlan_hw_filter_disable(struct rte_eth_dev *dev);
137 static void igb_vlan_hw_strip_enable(struct rte_eth_dev *dev);
138 static void igb_vlan_hw_strip_disable(struct rte_eth_dev *dev);
139 static void igb_vlan_hw_extend_enable(struct rte_eth_dev *dev);
140 static void igb_vlan_hw_extend_disable(struct rte_eth_dev *dev);
141 
142 static int eth_igb_led_on(struct rte_eth_dev *dev);
143 static int eth_igb_led_off(struct rte_eth_dev *dev);
144 
145 static void igb_intr_disable(struct rte_eth_dev *dev);
146 static int  igb_get_rx_buffer_size(struct e1000_hw *hw);
147 static int eth_igb_rar_set(struct rte_eth_dev *dev,
148 			   struct rte_ether_addr *mac_addr,
149 			   uint32_t index, uint32_t pool);
150 static void eth_igb_rar_clear(struct rte_eth_dev *dev, uint32_t index);
151 static int eth_igb_default_mac_addr_set(struct rte_eth_dev *dev,
152 		struct rte_ether_addr *addr);
153 
154 static void igbvf_intr_disable(struct e1000_hw *hw);
155 static int igbvf_dev_configure(struct rte_eth_dev *dev);
156 static int igbvf_dev_start(struct rte_eth_dev *dev);
157 static int igbvf_dev_stop(struct rte_eth_dev *dev);
158 static int igbvf_dev_close(struct rte_eth_dev *dev);
159 static int igbvf_promiscuous_enable(struct rte_eth_dev *dev);
160 static int igbvf_promiscuous_disable(struct rte_eth_dev *dev);
161 static int igbvf_allmulticast_enable(struct rte_eth_dev *dev);
162 static int igbvf_allmulticast_disable(struct rte_eth_dev *dev);
163 static int eth_igbvf_link_update(struct e1000_hw *hw);
164 static int eth_igbvf_stats_get(struct rte_eth_dev *dev,
165 				struct rte_eth_stats *rte_stats);
166 static int eth_igbvf_xstats_get(struct rte_eth_dev *dev,
167 				struct rte_eth_xstat *xstats, unsigned n);
168 static int eth_igbvf_xstats_get_names(struct rte_eth_dev *dev,
169 				      struct rte_eth_xstat_name *xstats_names,
170 				      unsigned limit);
171 static int eth_igbvf_stats_reset(struct rte_eth_dev *dev);
172 static int igbvf_vlan_filter_set(struct rte_eth_dev *dev,
173 		uint16_t vlan_id, int on);
174 static int igbvf_set_vfta(struct e1000_hw *hw, uint16_t vid, bool on);
175 static void igbvf_set_vfta_all(struct rte_eth_dev *dev, bool on);
176 static int igbvf_default_mac_addr_set(struct rte_eth_dev *dev,
177 		struct rte_ether_addr *addr);
178 static int igbvf_get_reg_length(struct rte_eth_dev *dev);
179 static int igbvf_get_regs(struct rte_eth_dev *dev,
180 		struct rte_dev_reg_info *regs);
181 
182 static int eth_igb_rss_reta_update(struct rte_eth_dev *dev,
183 				   struct rte_eth_rss_reta_entry64 *reta_conf,
184 				   uint16_t reta_size);
185 static int eth_igb_rss_reta_query(struct rte_eth_dev *dev,
186 				  struct rte_eth_rss_reta_entry64 *reta_conf,
187 				  uint16_t reta_size);
188 
189 static int igb_add_2tuple_filter(struct rte_eth_dev *dev,
190 			struct rte_eth_ntuple_filter *ntuple_filter);
191 static int igb_remove_2tuple_filter(struct rte_eth_dev *dev,
192 			struct rte_eth_ntuple_filter *ntuple_filter);
193 static int igb_add_5tuple_filter_82576(struct rte_eth_dev *dev,
194 			struct rte_eth_ntuple_filter *ntuple_filter);
195 static int igb_remove_5tuple_filter_82576(struct rte_eth_dev *dev,
196 			struct rte_eth_ntuple_filter *ntuple_filter);
197 static int eth_igb_flow_ops_get(struct rte_eth_dev *dev,
198 				const struct rte_flow_ops **ops);
199 static int eth_igb_get_reg_length(struct rte_eth_dev *dev);
200 static int eth_igb_get_regs(struct rte_eth_dev *dev,
201 		struct rte_dev_reg_info *regs);
202 static int eth_igb_get_eeprom_length(struct rte_eth_dev *dev);
203 static int eth_igb_get_eeprom(struct rte_eth_dev *dev,
204 		struct rte_dev_eeprom_info *eeprom);
205 static int eth_igb_set_eeprom(struct rte_eth_dev *dev,
206 		struct rte_dev_eeprom_info *eeprom);
207 static int eth_igb_get_module_info(struct rte_eth_dev *dev,
208 				   struct rte_eth_dev_module_info *modinfo);
209 static int eth_igb_get_module_eeprom(struct rte_eth_dev *dev,
210 				     struct rte_dev_eeprom_info *info);
211 static int eth_igb_set_mc_addr_list(struct rte_eth_dev *dev,
212 				    struct rte_ether_addr *mc_addr_set,
213 				    uint32_t nb_mc_addr);
214 static int igb_timesync_enable(struct rte_eth_dev *dev);
215 static int igb_timesync_disable(struct rte_eth_dev *dev);
216 static int igb_timesync_read_rx_timestamp(struct rte_eth_dev *dev,
217 					  struct timespec *timestamp,
218 					  uint32_t flags);
219 static int igb_timesync_read_tx_timestamp(struct rte_eth_dev *dev,
220 					  struct timespec *timestamp);
221 static int igb_timesync_adjust_time(struct rte_eth_dev *dev, int64_t delta);
222 static int igb_timesync_read_time(struct rte_eth_dev *dev,
223 				  struct timespec *timestamp);
224 static int igb_timesync_write_time(struct rte_eth_dev *dev,
225 				   const struct timespec *timestamp);
226 static int eth_igb_rx_queue_intr_enable(struct rte_eth_dev *dev,
227 					uint16_t queue_id);
228 static int eth_igb_rx_queue_intr_disable(struct rte_eth_dev *dev,
229 					 uint16_t queue_id);
230 static void eth_igb_assign_msix_vector(struct e1000_hw *hw, int8_t direction,
231 				       uint8_t queue, uint8_t msix_vector);
232 static void eth_igb_write_ivar(struct e1000_hw *hw, uint8_t msix_vector,
233 			       uint8_t index, uint8_t offset);
234 static void eth_igb_configure_msix_intr(struct rte_eth_dev *dev);
235 static void eth_igbvf_interrupt_handler(void *param);
236 static void igbvf_mbx_process(struct rte_eth_dev *dev);
237 static int igb_filter_restore(struct rte_eth_dev *dev);
238 
239 /*
240  * Define VF Stats MACRO for Non "cleared on read" register
241  */
242 #define UPDATE_VF_STAT(reg, last, cur)            \
243 {                                                 \
244 	u32 latest = E1000_READ_REG(hw, reg);     \
245 	cur += (latest - last) & UINT_MAX;        \
246 	last = latest;                            \
247 }
248 
249 #define IGB_FC_PAUSE_TIME 0x0680
250 #define IGB_LINK_UPDATE_CHECK_TIMEOUT  90  /* 9s */
251 #define IGB_LINK_UPDATE_CHECK_INTERVAL 100 /* ms */
252 
253 #define IGBVF_PMD_NAME "rte_igbvf_pmd"     /* PMD name */
254 
255 static enum e1000_fc_mode igb_fc_setting = e1000_fc_full;
256 
257 /*
258  * The set of PCI devices this driver supports
259  */
260 static const struct rte_pci_id pci_id_igb_map[] = {
261 	{ RTE_PCI_DEVICE(E1000_INTEL_VENDOR_ID, E1000_DEV_ID_82576) },
262 	{ RTE_PCI_DEVICE(E1000_INTEL_VENDOR_ID, E1000_DEV_ID_82576_FIBER) },
263 	{ RTE_PCI_DEVICE(E1000_INTEL_VENDOR_ID, E1000_DEV_ID_82576_SERDES) },
264 	{ RTE_PCI_DEVICE(E1000_INTEL_VENDOR_ID, E1000_DEV_ID_82576_QUAD_COPPER) },
265 	{ RTE_PCI_DEVICE(E1000_INTEL_VENDOR_ID, E1000_DEV_ID_82576_QUAD_COPPER_ET2) },
266 	{ RTE_PCI_DEVICE(E1000_INTEL_VENDOR_ID, E1000_DEV_ID_82576_NS) },
267 	{ RTE_PCI_DEVICE(E1000_INTEL_VENDOR_ID, E1000_DEV_ID_82576_NS_SERDES) },
268 	{ RTE_PCI_DEVICE(E1000_INTEL_VENDOR_ID, E1000_DEV_ID_82576_SERDES_QUAD) },
269 
270 	{ RTE_PCI_DEVICE(E1000_INTEL_VENDOR_ID, E1000_DEV_ID_82575EB_COPPER) },
271 	{ RTE_PCI_DEVICE(E1000_INTEL_VENDOR_ID, E1000_DEV_ID_82575EB_FIBER_SERDES) },
272 	{ RTE_PCI_DEVICE(E1000_INTEL_VENDOR_ID, E1000_DEV_ID_82575GB_QUAD_COPPER) },
273 
274 	{ RTE_PCI_DEVICE(E1000_INTEL_VENDOR_ID, E1000_DEV_ID_82580_COPPER) },
275 	{ RTE_PCI_DEVICE(E1000_INTEL_VENDOR_ID, E1000_DEV_ID_82580_FIBER) },
276 	{ RTE_PCI_DEVICE(E1000_INTEL_VENDOR_ID, E1000_DEV_ID_82580_SERDES) },
277 	{ RTE_PCI_DEVICE(E1000_INTEL_VENDOR_ID, E1000_DEV_ID_82580_SGMII) },
278 	{ RTE_PCI_DEVICE(E1000_INTEL_VENDOR_ID, E1000_DEV_ID_82580_COPPER_DUAL) },
279 	{ RTE_PCI_DEVICE(E1000_INTEL_VENDOR_ID, E1000_DEV_ID_82580_QUAD_FIBER) },
280 
281 	{ RTE_PCI_DEVICE(E1000_INTEL_VENDOR_ID, E1000_DEV_ID_I350_COPPER) },
282 	{ RTE_PCI_DEVICE(E1000_INTEL_VENDOR_ID, E1000_DEV_ID_I350_FIBER) },
283 	{ RTE_PCI_DEVICE(E1000_INTEL_VENDOR_ID, E1000_DEV_ID_I350_SERDES) },
284 	{ RTE_PCI_DEVICE(E1000_INTEL_VENDOR_ID, E1000_DEV_ID_I350_SGMII) },
285 	{ RTE_PCI_DEVICE(E1000_INTEL_VENDOR_ID, E1000_DEV_ID_I350_DA4) },
286 	{ RTE_PCI_DEVICE(E1000_INTEL_VENDOR_ID, E1000_DEV_ID_I210_COPPER) },
287 	{ RTE_PCI_DEVICE(E1000_INTEL_VENDOR_ID, E1000_DEV_ID_I210_COPPER_OEM1) },
288 	{ RTE_PCI_DEVICE(E1000_INTEL_VENDOR_ID, E1000_DEV_ID_I210_COPPER_IT) },
289 	{ RTE_PCI_DEVICE(E1000_INTEL_VENDOR_ID, E1000_DEV_ID_I210_FIBER) },
290 	{ RTE_PCI_DEVICE(E1000_INTEL_VENDOR_ID, E1000_DEV_ID_I210_SERDES) },
291 	{ RTE_PCI_DEVICE(E1000_INTEL_VENDOR_ID, E1000_DEV_ID_I210_SGMII) },
292 	{ RTE_PCI_DEVICE(E1000_INTEL_VENDOR_ID, E1000_DEV_ID_I210_COPPER_FLASHLESS) },
293 	{ RTE_PCI_DEVICE(E1000_INTEL_VENDOR_ID, E1000_DEV_ID_I210_SERDES_FLASHLESS) },
294 	{ RTE_PCI_DEVICE(E1000_INTEL_VENDOR_ID, E1000_DEV_ID_I211_COPPER) },
295 	{ RTE_PCI_DEVICE(E1000_INTEL_VENDOR_ID, E1000_DEV_ID_I354_BACKPLANE_1GBPS) },
296 	{ RTE_PCI_DEVICE(E1000_INTEL_VENDOR_ID, E1000_DEV_ID_I354_SGMII) },
297 	{ RTE_PCI_DEVICE(E1000_INTEL_VENDOR_ID, E1000_DEV_ID_I354_BACKPLANE_2_5GBPS) },
298 	{ RTE_PCI_DEVICE(E1000_INTEL_VENDOR_ID, E1000_DEV_ID_DH89XXCC_SGMII) },
299 	{ RTE_PCI_DEVICE(E1000_INTEL_VENDOR_ID, E1000_DEV_ID_DH89XXCC_SERDES) },
300 	{ RTE_PCI_DEVICE(E1000_INTEL_VENDOR_ID, E1000_DEV_ID_DH89XXCC_BACKPLANE) },
301 	{ RTE_PCI_DEVICE(E1000_INTEL_VENDOR_ID, E1000_DEV_ID_DH89XXCC_SFP) },
302 	{ .vendor_id = 0, /* sentinel */ },
303 };
304 
305 /*
306  * The set of PCI devices this driver supports (for 82576&I350 VF)
307  */
308 static const struct rte_pci_id pci_id_igbvf_map[] = {
309 	{ RTE_PCI_DEVICE(E1000_INTEL_VENDOR_ID, E1000_DEV_ID_82576_VF) },
310 	{ RTE_PCI_DEVICE(E1000_INTEL_VENDOR_ID, E1000_DEV_ID_82576_VF_HV) },
311 	{ RTE_PCI_DEVICE(E1000_INTEL_VENDOR_ID, E1000_DEV_ID_I350_VF) },
312 	{ RTE_PCI_DEVICE(E1000_INTEL_VENDOR_ID, E1000_DEV_ID_I350_VF_HV) },
313 	{ .vendor_id = 0, /* sentinel */ },
314 };
315 
316 static const struct rte_eth_desc_lim rx_desc_lim = {
317 	.nb_max = E1000_MAX_RING_DESC,
318 	.nb_min = E1000_MIN_RING_DESC,
319 	.nb_align = IGB_RXD_ALIGN,
320 };
321 
322 static const struct rte_eth_desc_lim tx_desc_lim = {
323 	.nb_max = E1000_MAX_RING_DESC,
324 	.nb_min = E1000_MIN_RING_DESC,
325 	.nb_align = IGB_RXD_ALIGN,
326 	.nb_seg_max = IGB_TX_MAX_SEG,
327 	.nb_mtu_seg_max = IGB_TX_MAX_MTU_SEG,
328 };
329 
330 static const struct eth_dev_ops eth_igb_ops = {
331 	.dev_configure        = eth_igb_configure,
332 	.dev_start            = eth_igb_start,
333 	.dev_stop             = eth_igb_stop,
334 	.dev_set_link_up      = eth_igb_dev_set_link_up,
335 	.dev_set_link_down    = eth_igb_dev_set_link_down,
336 	.dev_close            = eth_igb_close,
337 	.dev_reset            = eth_igb_reset,
338 	.promiscuous_enable   = eth_igb_promiscuous_enable,
339 	.promiscuous_disable  = eth_igb_promiscuous_disable,
340 	.allmulticast_enable  = eth_igb_allmulticast_enable,
341 	.allmulticast_disable = eth_igb_allmulticast_disable,
342 	.link_update          = eth_igb_link_update,
343 	.stats_get            = eth_igb_stats_get,
344 	.xstats_get           = eth_igb_xstats_get,
345 	.xstats_get_by_id     = eth_igb_xstats_get_by_id,
346 	.xstats_get_names_by_id = eth_igb_xstats_get_names_by_id,
347 	.xstats_get_names     = eth_igb_xstats_get_names,
348 	.stats_reset          = eth_igb_stats_reset,
349 	.xstats_reset         = eth_igb_xstats_reset,
350 	.fw_version_get       = eth_igb_fw_version_get,
351 	.dev_infos_get        = eth_igb_infos_get,
352 	.dev_supported_ptypes_get = eth_igb_supported_ptypes_get,
353 	.mtu_set              = eth_igb_mtu_set,
354 	.vlan_filter_set      = eth_igb_vlan_filter_set,
355 	.vlan_tpid_set        = eth_igb_vlan_tpid_set,
356 	.vlan_offload_set     = eth_igb_vlan_offload_set,
357 	.rx_queue_setup       = eth_igb_rx_queue_setup,
358 	.rx_queue_intr_enable = eth_igb_rx_queue_intr_enable,
359 	.rx_queue_intr_disable = eth_igb_rx_queue_intr_disable,
360 	.rx_queue_release     = eth_igb_rx_queue_release,
361 	.tx_queue_setup       = eth_igb_tx_queue_setup,
362 	.tx_queue_release     = eth_igb_tx_queue_release,
363 	.tx_done_cleanup      = eth_igb_tx_done_cleanup,
364 	.dev_led_on           = eth_igb_led_on,
365 	.dev_led_off          = eth_igb_led_off,
366 	.flow_ctrl_get        = eth_igb_flow_ctrl_get,
367 	.flow_ctrl_set        = eth_igb_flow_ctrl_set,
368 	.mac_addr_add         = eth_igb_rar_set,
369 	.mac_addr_remove      = eth_igb_rar_clear,
370 	.mac_addr_set         = eth_igb_default_mac_addr_set,
371 	.reta_update          = eth_igb_rss_reta_update,
372 	.reta_query           = eth_igb_rss_reta_query,
373 	.rss_hash_update      = eth_igb_rss_hash_update,
374 	.rss_hash_conf_get    = eth_igb_rss_hash_conf_get,
375 	.flow_ops_get         = eth_igb_flow_ops_get,
376 	.set_mc_addr_list     = eth_igb_set_mc_addr_list,
377 	.rxq_info_get         = igb_rxq_info_get,
378 	.txq_info_get         = igb_txq_info_get,
379 	.timesync_enable      = igb_timesync_enable,
380 	.timesync_disable     = igb_timesync_disable,
381 	.timesync_read_rx_timestamp = igb_timesync_read_rx_timestamp,
382 	.timesync_read_tx_timestamp = igb_timesync_read_tx_timestamp,
383 	.get_reg              = eth_igb_get_regs,
384 	.get_eeprom_length    = eth_igb_get_eeprom_length,
385 	.get_eeprom           = eth_igb_get_eeprom,
386 	.set_eeprom           = eth_igb_set_eeprom,
387 	.get_module_info      = eth_igb_get_module_info,
388 	.get_module_eeprom    = eth_igb_get_module_eeprom,
389 	.timesync_adjust_time = igb_timesync_adjust_time,
390 	.timesync_read_time   = igb_timesync_read_time,
391 	.timesync_write_time  = igb_timesync_write_time,
392 };
393 
394 /*
395  * dev_ops for virtual function, bare necessities for basic vf
396  * operation have been implemented
397  */
398 static const struct eth_dev_ops igbvf_eth_dev_ops = {
399 	.dev_configure        = igbvf_dev_configure,
400 	.dev_start            = igbvf_dev_start,
401 	.dev_stop             = igbvf_dev_stop,
402 	.dev_close            = igbvf_dev_close,
403 	.promiscuous_enable   = igbvf_promiscuous_enable,
404 	.promiscuous_disable  = igbvf_promiscuous_disable,
405 	.allmulticast_enable  = igbvf_allmulticast_enable,
406 	.allmulticast_disable = igbvf_allmulticast_disable,
407 	.link_update          = eth_igb_link_update,
408 	.stats_get            = eth_igbvf_stats_get,
409 	.xstats_get           = eth_igbvf_xstats_get,
410 	.xstats_get_names     = eth_igbvf_xstats_get_names,
411 	.stats_reset          = eth_igbvf_stats_reset,
412 	.xstats_reset         = eth_igbvf_stats_reset,
413 	.vlan_filter_set      = igbvf_vlan_filter_set,
414 	.dev_infos_get        = eth_igbvf_infos_get,
415 	.dev_supported_ptypes_get = eth_igb_supported_ptypes_get,
416 	.rx_queue_setup       = eth_igb_rx_queue_setup,
417 	.rx_queue_release     = eth_igb_rx_queue_release,
418 	.tx_queue_setup       = eth_igb_tx_queue_setup,
419 	.tx_queue_release     = eth_igb_tx_queue_release,
420 	.tx_done_cleanup      = eth_igb_tx_done_cleanup,
421 	.set_mc_addr_list     = eth_igb_set_mc_addr_list,
422 	.rxq_info_get         = igb_rxq_info_get,
423 	.txq_info_get         = igb_txq_info_get,
424 	.mac_addr_set         = igbvf_default_mac_addr_set,
425 	.get_reg              = igbvf_get_regs,
426 };
427 
428 /* store statistics names and its offset in stats structure */
429 struct rte_igb_xstats_name_off {
430 	char name[RTE_ETH_XSTATS_NAME_SIZE];
431 	unsigned offset;
432 };
433 
434 static const struct rte_igb_xstats_name_off rte_igb_stats_strings[] = {
435 	{"rx_crc_errors", offsetof(struct e1000_hw_stats, crcerrs)},
436 	{"rx_align_errors", offsetof(struct e1000_hw_stats, algnerrc)},
437 	{"rx_symbol_errors", offsetof(struct e1000_hw_stats, symerrs)},
438 	{"rx_missed_packets", offsetof(struct e1000_hw_stats, mpc)},
439 	{"tx_single_collision_packets", offsetof(struct e1000_hw_stats, scc)},
440 	{"tx_multiple_collision_packets", offsetof(struct e1000_hw_stats, mcc)},
441 	{"tx_excessive_collision_packets", offsetof(struct e1000_hw_stats,
442 		ecol)},
443 	{"tx_late_collisions", offsetof(struct e1000_hw_stats, latecol)},
444 	{"tx_total_collisions", offsetof(struct e1000_hw_stats, colc)},
445 	{"tx_deferred_packets", offsetof(struct e1000_hw_stats, dc)},
446 	{"tx_no_carrier_sense_packets", offsetof(struct e1000_hw_stats, tncrs)},
447 	{"rx_carrier_ext_errors", offsetof(struct e1000_hw_stats, cexterr)},
448 	{"rx_length_errors", offsetof(struct e1000_hw_stats, rlec)},
449 	{"rx_xon_packets", offsetof(struct e1000_hw_stats, xonrxc)},
450 	{"tx_xon_packets", offsetof(struct e1000_hw_stats, xontxc)},
451 	{"rx_xoff_packets", offsetof(struct e1000_hw_stats, xoffrxc)},
452 	{"tx_xoff_packets", offsetof(struct e1000_hw_stats, xofftxc)},
453 	{"rx_flow_control_unsupported_packets", offsetof(struct e1000_hw_stats,
454 		fcruc)},
455 	{"rx_size_64_packets", offsetof(struct e1000_hw_stats, prc64)},
456 	{"rx_size_65_to_127_packets", offsetof(struct e1000_hw_stats, prc127)},
457 	{"rx_size_128_to_255_packets", offsetof(struct e1000_hw_stats, prc255)},
458 	{"rx_size_256_to_511_packets", offsetof(struct e1000_hw_stats, prc511)},
459 	{"rx_size_512_to_1023_packets", offsetof(struct e1000_hw_stats,
460 		prc1023)},
461 	{"rx_size_1024_to_max_packets", offsetof(struct e1000_hw_stats,
462 		prc1522)},
463 	{"rx_broadcast_packets", offsetof(struct e1000_hw_stats, bprc)},
464 	{"rx_multicast_packets", offsetof(struct e1000_hw_stats, mprc)},
465 	{"rx_undersize_errors", offsetof(struct e1000_hw_stats, ruc)},
466 	{"rx_fragment_errors", offsetof(struct e1000_hw_stats, rfc)},
467 	{"rx_oversize_errors", offsetof(struct e1000_hw_stats, roc)},
468 	{"rx_jabber_errors", offsetof(struct e1000_hw_stats, rjc)},
469 	{"rx_management_packets", offsetof(struct e1000_hw_stats, mgprc)},
470 	{"rx_management_dropped", offsetof(struct e1000_hw_stats, mgpdc)},
471 	{"tx_management_packets", offsetof(struct e1000_hw_stats, mgptc)},
472 	{"rx_total_packets", offsetof(struct e1000_hw_stats, tpr)},
473 	{"tx_total_packets", offsetof(struct e1000_hw_stats, tpt)},
474 	{"rx_total_bytes", offsetof(struct e1000_hw_stats, tor)},
475 	{"tx_total_bytes", offsetof(struct e1000_hw_stats, tot)},
476 	{"tx_size_64_packets", offsetof(struct e1000_hw_stats, ptc64)},
477 	{"tx_size_65_to_127_packets", offsetof(struct e1000_hw_stats, ptc127)},
478 	{"tx_size_128_to_255_packets", offsetof(struct e1000_hw_stats, ptc255)},
479 	{"tx_size_256_to_511_packets", offsetof(struct e1000_hw_stats, ptc511)},
480 	{"tx_size_512_to_1023_packets", offsetof(struct e1000_hw_stats,
481 		ptc1023)},
482 	{"tx_size_1023_to_max_packets", offsetof(struct e1000_hw_stats,
483 		ptc1522)},
484 	{"tx_multicast_packets", offsetof(struct e1000_hw_stats, mptc)},
485 	{"tx_broadcast_packets", offsetof(struct e1000_hw_stats, bptc)},
486 	{"tx_tso_packets", offsetof(struct e1000_hw_stats, tsctc)},
487 	{"tx_tso_errors", offsetof(struct e1000_hw_stats, tsctfc)},
488 	{"rx_sent_to_host_packets", offsetof(struct e1000_hw_stats, rpthc)},
489 	{"tx_sent_by_host_packets", offsetof(struct e1000_hw_stats, hgptc)},
490 	{"rx_code_violation_packets", offsetof(struct e1000_hw_stats, scvpc)},
491 
492 	{"interrupt_assert_count", offsetof(struct e1000_hw_stats, iac)},
493 };
494 
495 #define IGB_NB_XSTATS (sizeof(rte_igb_stats_strings) / \
496 		sizeof(rte_igb_stats_strings[0]))
497 
498 static const struct rte_igb_xstats_name_off rte_igbvf_stats_strings[] = {
499 	{"rx_multicast_packets", offsetof(struct e1000_vf_stats, mprc)},
500 	{"rx_good_loopback_packets", offsetof(struct e1000_vf_stats, gprlbc)},
501 	{"tx_good_loopback_packets", offsetof(struct e1000_vf_stats, gptlbc)},
502 	{"rx_good_loopback_bytes", offsetof(struct e1000_vf_stats, gorlbc)},
503 	{"tx_good_loopback_bytes", offsetof(struct e1000_vf_stats, gotlbc)},
504 };
505 
506 #define IGBVF_NB_XSTATS (sizeof(rte_igbvf_stats_strings) / \
507 		sizeof(rte_igbvf_stats_strings[0]))
508 
509 
510 static inline void
511 igb_intr_enable(struct rte_eth_dev *dev)
512 {
513 	struct e1000_interrupt *intr =
514 		E1000_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
515 	struct e1000_hw *hw =
516 		E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
517 	struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
518 	struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
519 
520 	if (rte_intr_allow_others(intr_handle) &&
521 		dev->data->dev_conf.intr_conf.lsc != 0) {
522 		E1000_WRITE_REG(hw, E1000_EIMS, 1 << IGB_MSIX_OTHER_INTR_VEC);
523 	}
524 
525 	E1000_WRITE_REG(hw, E1000_IMS, intr->mask);
526 	E1000_WRITE_FLUSH(hw);
527 }
528 
529 static void
530 igb_intr_disable(struct rte_eth_dev *dev)
531 {
532 	struct e1000_hw *hw =
533 		E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
534 	struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
535 	struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
536 
537 	if (rte_intr_allow_others(intr_handle) &&
538 		dev->data->dev_conf.intr_conf.lsc != 0) {
539 		E1000_WRITE_REG(hw, E1000_EIMC, 1 << IGB_MSIX_OTHER_INTR_VEC);
540 	}
541 
542 	E1000_WRITE_REG(hw, E1000_IMC, ~0);
543 	E1000_WRITE_FLUSH(hw);
544 }
545 
546 static inline void
547 igbvf_intr_enable(struct rte_eth_dev *dev)
548 {
549 	struct e1000_hw *hw =
550 		E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
551 
552 	/* only for mailbox */
553 	E1000_WRITE_REG(hw, E1000_EIAM, 1 << E1000_VTIVAR_MISC_MAILBOX);
554 	E1000_WRITE_REG(hw, E1000_EIAC, 1 << E1000_VTIVAR_MISC_MAILBOX);
555 	E1000_WRITE_REG(hw, E1000_EIMS, 1 << E1000_VTIVAR_MISC_MAILBOX);
556 	E1000_WRITE_FLUSH(hw);
557 }
558 
559 /* only for mailbox now. If RX/TX needed, should extend this function.  */
560 static void
561 igbvf_set_ivar_map(struct e1000_hw *hw, uint8_t msix_vector)
562 {
563 	uint32_t tmp = 0;
564 
565 	/* mailbox */
566 	tmp |= (msix_vector & E1000_VTIVAR_MISC_INTR_MASK);
567 	tmp |= E1000_VTIVAR_VALID;
568 	E1000_WRITE_REG(hw, E1000_VTIVAR_MISC, tmp);
569 }
570 
571 static void
572 eth_igbvf_configure_msix_intr(struct rte_eth_dev *dev)
573 {
574 	struct e1000_hw *hw =
575 		E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
576 
577 	/* Configure VF other cause ivar */
578 	igbvf_set_ivar_map(hw, E1000_VTIVAR_MISC_MAILBOX);
579 }
580 
581 static inline int32_t
582 igb_pf_reset_hw(struct e1000_hw *hw)
583 {
584 	uint32_t ctrl_ext;
585 	int32_t status;
586 
587 	status = e1000_reset_hw(hw);
588 
589 	ctrl_ext = E1000_READ_REG(hw, E1000_CTRL_EXT);
590 	/* Set PF Reset Done bit so PF/VF Mail Ops can work */
591 	ctrl_ext |= E1000_CTRL_EXT_PFRSTD;
592 	E1000_WRITE_REG(hw, E1000_CTRL_EXT, ctrl_ext);
593 	E1000_WRITE_FLUSH(hw);
594 
595 	return status;
596 }
597 
598 static void
599 igb_identify_hardware(struct rte_eth_dev *dev, struct rte_pci_device *pci_dev)
600 {
601 	struct e1000_hw *hw =
602 		E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
603 
604 
605 	hw->vendor_id = pci_dev->id.vendor_id;
606 	hw->device_id = pci_dev->id.device_id;
607 	hw->subsystem_vendor_id = pci_dev->id.subsystem_vendor_id;
608 	hw->subsystem_device_id = pci_dev->id.subsystem_device_id;
609 
610 	e1000_set_mac_type(hw);
611 
612 	/* need to check if it is a vf device below */
613 }
614 
615 static int
616 igb_reset_swfw_lock(struct e1000_hw *hw)
617 {
618 	int ret_val;
619 
620 	/*
621 	 * Do mac ops initialization manually here, since we will need
622 	 * some function pointers set by this call.
623 	 */
624 	ret_val = e1000_init_mac_params(hw);
625 	if (ret_val)
626 		return ret_val;
627 
628 	/*
629 	 * SMBI lock should not fail in this early stage. If this is the case,
630 	 * it is due to an improper exit of the application.
631 	 * So force the release of the faulty lock.
632 	 */
633 	if (e1000_get_hw_semaphore_generic(hw) < 0) {
634 		PMD_DRV_LOG(DEBUG, "SMBI lock released");
635 	}
636 	e1000_put_hw_semaphore_generic(hw);
637 
638 	if (hw->mac.ops.acquire_swfw_sync != NULL) {
639 		uint16_t mask;
640 
641 		/*
642 		 * Phy lock should not fail in this early stage. If this is the case,
643 		 * it is due to an improper exit of the application.
644 		 * So force the release of the faulty lock.
645 		 */
646 		mask = E1000_SWFW_PHY0_SM << hw->bus.func;
647 		if (hw->bus.func > E1000_FUNC_1)
648 			mask <<= 2;
649 		if (hw->mac.ops.acquire_swfw_sync(hw, mask) < 0) {
650 			PMD_DRV_LOG(DEBUG, "SWFW phy%d lock released",
651 				    hw->bus.func);
652 		}
653 		hw->mac.ops.release_swfw_sync(hw, mask);
654 
655 		/*
656 		 * This one is more tricky since it is common to all ports; but
657 		 * swfw_sync retries last long enough (1s) to be almost sure that if
658 		 * lock can not be taken it is due to an improper lock of the
659 		 * semaphore.
660 		 */
661 		mask = E1000_SWFW_EEP_SM;
662 		if (hw->mac.ops.acquire_swfw_sync(hw, mask) < 0) {
663 			PMD_DRV_LOG(DEBUG, "SWFW common locks released");
664 		}
665 		hw->mac.ops.release_swfw_sync(hw, mask);
666 	}
667 
668 	return E1000_SUCCESS;
669 }
670 
671 /* Remove all ntuple filters of the device */
672 static int igb_ntuple_filter_uninit(struct rte_eth_dev *eth_dev)
673 {
674 	struct e1000_filter_info *filter_info =
675 		E1000_DEV_PRIVATE_TO_FILTER_INFO(eth_dev->data->dev_private);
676 	struct e1000_5tuple_filter *p_5tuple;
677 	struct e1000_2tuple_filter *p_2tuple;
678 
679 	while ((p_5tuple = TAILQ_FIRST(&filter_info->fivetuple_list))) {
680 		TAILQ_REMOVE(&filter_info->fivetuple_list,
681 			p_5tuple, entries);
682 			rte_free(p_5tuple);
683 	}
684 	filter_info->fivetuple_mask = 0;
685 	while ((p_2tuple = TAILQ_FIRST(&filter_info->twotuple_list))) {
686 		TAILQ_REMOVE(&filter_info->twotuple_list,
687 			p_2tuple, entries);
688 			rte_free(p_2tuple);
689 	}
690 	filter_info->twotuple_mask = 0;
691 
692 	return 0;
693 }
694 
695 /* Remove all flex filters of the device */
696 static int igb_flex_filter_uninit(struct rte_eth_dev *eth_dev)
697 {
698 	struct e1000_filter_info *filter_info =
699 		E1000_DEV_PRIVATE_TO_FILTER_INFO(eth_dev->data->dev_private);
700 	struct e1000_flex_filter *p_flex;
701 
702 	while ((p_flex = TAILQ_FIRST(&filter_info->flex_list))) {
703 		TAILQ_REMOVE(&filter_info->flex_list, p_flex, entries);
704 		rte_free(p_flex);
705 	}
706 	filter_info->flex_mask = 0;
707 
708 	return 0;
709 }
710 
711 static int
712 eth_igb_dev_init(struct rte_eth_dev *eth_dev)
713 {
714 	int error = 0;
715 	struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(eth_dev);
716 	struct e1000_hw *hw =
717 		E1000_DEV_PRIVATE_TO_HW(eth_dev->data->dev_private);
718 	struct e1000_vfta * shadow_vfta =
719 		E1000_DEV_PRIVATE_TO_VFTA(eth_dev->data->dev_private);
720 	struct e1000_filter_info *filter_info =
721 		E1000_DEV_PRIVATE_TO_FILTER_INFO(eth_dev->data->dev_private);
722 	struct e1000_adapter *adapter =
723 		E1000_DEV_PRIVATE(eth_dev->data->dev_private);
724 
725 	uint32_t ctrl_ext;
726 
727 	eth_dev->dev_ops = &eth_igb_ops;
728 	eth_dev->rx_queue_count = eth_igb_rx_queue_count;
729 	eth_dev->rx_descriptor_status = eth_igb_rx_descriptor_status;
730 	eth_dev->tx_descriptor_status = eth_igb_tx_descriptor_status;
731 	eth_dev->rx_pkt_burst = &eth_igb_recv_pkts;
732 	eth_dev->tx_pkt_burst = &eth_igb_xmit_pkts;
733 	eth_dev->tx_pkt_prepare = &eth_igb_prep_pkts;
734 
735 	/* for secondary processes, we don't initialise any further as primary
736 	 * has already done this work. Only check we don't need a different
737 	 * RX function */
738 	if (rte_eal_process_type() != RTE_PROC_PRIMARY){
739 		if (eth_dev->data->scattered_rx)
740 			eth_dev->rx_pkt_burst = &eth_igb_recv_scattered_pkts;
741 		return 0;
742 	}
743 
744 	rte_eth_copy_pci_info(eth_dev, pci_dev);
745 
746 	hw->hw_addr= (void *)pci_dev->mem_resource[0].addr;
747 
748 	igb_identify_hardware(eth_dev, pci_dev);
749 	if (e1000_setup_init_funcs(hw, FALSE) != E1000_SUCCESS) {
750 		error = -EIO;
751 		goto err_late;
752 	}
753 
754 	e1000_get_bus_info(hw);
755 
756 	/* Reset any pending lock */
757 	if (igb_reset_swfw_lock(hw) != E1000_SUCCESS) {
758 		error = -EIO;
759 		goto err_late;
760 	}
761 
762 	/* Finish initialization */
763 	if (e1000_setup_init_funcs(hw, TRUE) != E1000_SUCCESS) {
764 		error = -EIO;
765 		goto err_late;
766 	}
767 
768 	hw->mac.autoneg = 1;
769 	hw->phy.autoneg_wait_to_complete = 0;
770 	hw->phy.autoneg_advertised = E1000_ALL_SPEED_DUPLEX;
771 
772 	/* Copper options */
773 	if (hw->phy.media_type == e1000_media_type_copper) {
774 		hw->phy.mdix = 0; /* AUTO_ALL_MODES */
775 		hw->phy.disable_polarity_correction = 0;
776 		hw->phy.ms_type = e1000_ms_hw_default;
777 	}
778 
779 	/*
780 	 * Start from a known state, this is important in reading the nvm
781 	 * and mac from that.
782 	 */
783 	igb_pf_reset_hw(hw);
784 
785 	/* Make sure we have a good EEPROM before we read from it */
786 	if (e1000_validate_nvm_checksum(hw) < 0) {
787 		/*
788 		 * Some PCI-E parts fail the first check due to
789 		 * the link being in sleep state, call it again,
790 		 * if it fails a second time its a real issue.
791 		 */
792 		if (e1000_validate_nvm_checksum(hw) < 0) {
793 			PMD_INIT_LOG(ERR, "EEPROM checksum invalid");
794 			error = -EIO;
795 			goto err_late;
796 		}
797 	}
798 
799 	/* Read the permanent MAC address out of the EEPROM */
800 	if (e1000_read_mac_addr(hw) != 0) {
801 		PMD_INIT_LOG(ERR, "EEPROM error while reading MAC address");
802 		error = -EIO;
803 		goto err_late;
804 	}
805 
806 	/* Allocate memory for storing MAC addresses */
807 	eth_dev->data->mac_addrs = rte_zmalloc("e1000",
808 		RTE_ETHER_ADDR_LEN * hw->mac.rar_entry_count, 0);
809 	if (eth_dev->data->mac_addrs == NULL) {
810 		PMD_INIT_LOG(ERR, "Failed to allocate %d bytes needed to "
811 						"store MAC addresses",
812 				RTE_ETHER_ADDR_LEN * hw->mac.rar_entry_count);
813 		error = -ENOMEM;
814 		goto err_late;
815 	}
816 
817 	/* Copy the permanent MAC address */
818 	rte_ether_addr_copy((struct rte_ether_addr *)hw->mac.addr,
819 			&eth_dev->data->mac_addrs[0]);
820 
821 	/* initialize the vfta */
822 	memset(shadow_vfta, 0, sizeof(*shadow_vfta));
823 
824 	/* Now initialize the hardware */
825 	if (igb_hardware_init(hw) != 0) {
826 		PMD_INIT_LOG(ERR, "Hardware initialization failed");
827 		rte_free(eth_dev->data->mac_addrs);
828 		eth_dev->data->mac_addrs = NULL;
829 		error = -ENODEV;
830 		goto err_late;
831 	}
832 	hw->mac.get_link_status = 1;
833 	adapter->stopped = 0;
834 
835 	/* Indicate SOL/IDER usage */
836 	if (e1000_check_reset_block(hw) < 0) {
837 		PMD_INIT_LOG(ERR, "PHY reset is blocked due to"
838 					"SOL/IDER session");
839 	}
840 
841 	/* initialize PF if max_vfs not zero */
842 	igb_pf_host_init(eth_dev);
843 
844 	ctrl_ext = E1000_READ_REG(hw, E1000_CTRL_EXT);
845 	/* Set PF Reset Done bit so PF/VF Mail Ops can work */
846 	ctrl_ext |= E1000_CTRL_EXT_PFRSTD;
847 	E1000_WRITE_REG(hw, E1000_CTRL_EXT, ctrl_ext);
848 	E1000_WRITE_FLUSH(hw);
849 
850 	PMD_INIT_LOG(DEBUG, "port_id %d vendorID=0x%x deviceID=0x%x",
851 		     eth_dev->data->port_id, pci_dev->id.vendor_id,
852 		     pci_dev->id.device_id);
853 
854 	rte_intr_callback_register(&pci_dev->intr_handle,
855 				   eth_igb_interrupt_handler,
856 				   (void *)eth_dev);
857 
858 	/* enable uio/vfio intr/eventfd mapping */
859 	rte_intr_enable(&pci_dev->intr_handle);
860 
861 	/* enable support intr */
862 	igb_intr_enable(eth_dev);
863 
864 	eth_igb_dev_set_link_down(eth_dev);
865 
866 	/* initialize filter info */
867 	memset(filter_info, 0,
868 	       sizeof(struct e1000_filter_info));
869 
870 	TAILQ_INIT(&filter_info->flex_list);
871 	TAILQ_INIT(&filter_info->twotuple_list);
872 	TAILQ_INIT(&filter_info->fivetuple_list);
873 
874 	TAILQ_INIT(&igb_filter_ntuple_list);
875 	TAILQ_INIT(&igb_filter_ethertype_list);
876 	TAILQ_INIT(&igb_filter_syn_list);
877 	TAILQ_INIT(&igb_filter_flex_list);
878 	TAILQ_INIT(&igb_filter_rss_list);
879 	TAILQ_INIT(&igb_flow_list);
880 
881 	return 0;
882 
883 err_late:
884 	igb_hw_control_release(hw);
885 
886 	return error;
887 }
888 
889 static int
890 eth_igb_dev_uninit(struct rte_eth_dev *eth_dev)
891 {
892 	PMD_INIT_FUNC_TRACE();
893 
894 	if (rte_eal_process_type() != RTE_PROC_PRIMARY)
895 		return 0;
896 
897 	eth_igb_close(eth_dev);
898 
899 	return 0;
900 }
901 
902 /*
903  * Virtual Function device init
904  */
905 static int
906 eth_igbvf_dev_init(struct rte_eth_dev *eth_dev)
907 {
908 	struct rte_pci_device *pci_dev;
909 	struct rte_intr_handle *intr_handle;
910 	struct e1000_adapter *adapter =
911 		E1000_DEV_PRIVATE(eth_dev->data->dev_private);
912 	struct e1000_hw *hw =
913 		E1000_DEV_PRIVATE_TO_HW(eth_dev->data->dev_private);
914 	int diag;
915 	struct rte_ether_addr *perm_addr =
916 		(struct rte_ether_addr *)hw->mac.perm_addr;
917 
918 	PMD_INIT_FUNC_TRACE();
919 
920 	eth_dev->dev_ops = &igbvf_eth_dev_ops;
921 	eth_dev->rx_descriptor_status = eth_igb_rx_descriptor_status;
922 	eth_dev->tx_descriptor_status = eth_igb_tx_descriptor_status;
923 	eth_dev->rx_pkt_burst = &eth_igb_recv_pkts;
924 	eth_dev->tx_pkt_burst = &eth_igb_xmit_pkts;
925 	eth_dev->tx_pkt_prepare = &eth_igb_prep_pkts;
926 
927 	/* for secondary processes, we don't initialise any further as primary
928 	 * has already done this work. Only check we don't need a different
929 	 * RX function */
930 	if (rte_eal_process_type() != RTE_PROC_PRIMARY){
931 		if (eth_dev->data->scattered_rx)
932 			eth_dev->rx_pkt_burst = &eth_igb_recv_scattered_pkts;
933 		return 0;
934 	}
935 
936 	pci_dev = RTE_ETH_DEV_TO_PCI(eth_dev);
937 	rte_eth_copy_pci_info(eth_dev, pci_dev);
938 
939 	hw->device_id = pci_dev->id.device_id;
940 	hw->vendor_id = pci_dev->id.vendor_id;
941 	hw->hw_addr = (void *)pci_dev->mem_resource[0].addr;
942 	adapter->stopped = 0;
943 
944 	/* Initialize the shared code (base driver) */
945 	diag = e1000_setup_init_funcs(hw, TRUE);
946 	if (diag != 0) {
947 		PMD_INIT_LOG(ERR, "Shared code init failed for igbvf: %d",
948 			diag);
949 		return -EIO;
950 	}
951 
952 	/* init_mailbox_params */
953 	hw->mbx.ops.init_params(hw);
954 
955 	/* Disable the interrupts for VF */
956 	igbvf_intr_disable(hw);
957 
958 	diag = hw->mac.ops.reset_hw(hw);
959 
960 	/* Allocate memory for storing MAC addresses */
961 	eth_dev->data->mac_addrs = rte_zmalloc("igbvf", RTE_ETHER_ADDR_LEN *
962 		hw->mac.rar_entry_count, 0);
963 	if (eth_dev->data->mac_addrs == NULL) {
964 		PMD_INIT_LOG(ERR,
965 			"Failed to allocate %d bytes needed to store MAC "
966 			"addresses",
967 			RTE_ETHER_ADDR_LEN * hw->mac.rar_entry_count);
968 		return -ENOMEM;
969 	}
970 
971 	/* Generate a random MAC address, if none was assigned by PF. */
972 	if (rte_is_zero_ether_addr(perm_addr)) {
973 		rte_eth_random_addr(perm_addr->addr_bytes);
974 		PMD_INIT_LOG(INFO, "\tVF MAC address not assigned by Host PF");
975 		PMD_INIT_LOG(INFO, "\tAssign randomly generated MAC address "
976 			     RTE_ETHER_ADDR_PRT_FMT,
977 			     RTE_ETHER_ADDR_BYTES(perm_addr));
978 	}
979 
980 	diag = e1000_rar_set(hw, perm_addr->addr_bytes, 0);
981 	if (diag) {
982 		rte_free(eth_dev->data->mac_addrs);
983 		eth_dev->data->mac_addrs = NULL;
984 		return diag;
985 	}
986 	/* Copy the permanent MAC address */
987 	rte_ether_addr_copy((struct rte_ether_addr *)hw->mac.perm_addr,
988 			&eth_dev->data->mac_addrs[0]);
989 
990 	PMD_INIT_LOG(DEBUG, "port %d vendorID=0x%x deviceID=0x%x "
991 		     "mac.type=%s",
992 		     eth_dev->data->port_id, pci_dev->id.vendor_id,
993 		     pci_dev->id.device_id, "igb_mac_82576_vf");
994 
995 	intr_handle = &pci_dev->intr_handle;
996 	rte_intr_callback_register(intr_handle,
997 				   eth_igbvf_interrupt_handler, eth_dev);
998 
999 	return 0;
1000 }
1001 
1002 static int
1003 eth_igbvf_dev_uninit(struct rte_eth_dev *eth_dev)
1004 {
1005 	PMD_INIT_FUNC_TRACE();
1006 
1007 	if (rte_eal_process_type() != RTE_PROC_PRIMARY)
1008 		return 0;
1009 
1010 	igbvf_dev_close(eth_dev);
1011 
1012 	return 0;
1013 }
1014 
1015 static int eth_igb_pci_probe(struct rte_pci_driver *pci_drv __rte_unused,
1016 	struct rte_pci_device *pci_dev)
1017 {
1018 	return rte_eth_dev_pci_generic_probe(pci_dev,
1019 		sizeof(struct e1000_adapter), eth_igb_dev_init);
1020 }
1021 
1022 static int eth_igb_pci_remove(struct rte_pci_device *pci_dev)
1023 {
1024 	return rte_eth_dev_pci_generic_remove(pci_dev, eth_igb_dev_uninit);
1025 }
1026 
1027 static struct rte_pci_driver rte_igb_pmd = {
1028 	.id_table = pci_id_igb_map,
1029 	.drv_flags = RTE_PCI_DRV_NEED_MAPPING | RTE_PCI_DRV_INTR_LSC,
1030 	.probe = eth_igb_pci_probe,
1031 	.remove = eth_igb_pci_remove,
1032 };
1033 
1034 
1035 static int eth_igbvf_pci_probe(struct rte_pci_driver *pci_drv __rte_unused,
1036 	struct rte_pci_device *pci_dev)
1037 {
1038 	return rte_eth_dev_pci_generic_probe(pci_dev,
1039 		sizeof(struct e1000_adapter), eth_igbvf_dev_init);
1040 }
1041 
1042 static int eth_igbvf_pci_remove(struct rte_pci_device *pci_dev)
1043 {
1044 	return rte_eth_dev_pci_generic_remove(pci_dev, eth_igbvf_dev_uninit);
1045 }
1046 
1047 /*
1048  * virtual function driver struct
1049  */
1050 static struct rte_pci_driver rte_igbvf_pmd = {
1051 	.id_table = pci_id_igbvf_map,
1052 	.drv_flags = RTE_PCI_DRV_NEED_MAPPING,
1053 	.probe = eth_igbvf_pci_probe,
1054 	.remove = eth_igbvf_pci_remove,
1055 };
1056 
1057 static void
1058 igb_vmdq_vlan_hw_filter_enable(struct rte_eth_dev *dev)
1059 {
1060 	struct e1000_hw *hw =
1061 		E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1062 	/* RCTL: enable VLAN filter since VMDq always use VLAN filter */
1063 	uint32_t rctl = E1000_READ_REG(hw, E1000_RCTL);
1064 	rctl |= E1000_RCTL_VFE;
1065 	E1000_WRITE_REG(hw, E1000_RCTL, rctl);
1066 }
1067 
1068 static int
1069 igb_check_mq_mode(struct rte_eth_dev *dev)
1070 {
1071 	enum rte_eth_rx_mq_mode rx_mq_mode = dev->data->dev_conf.rxmode.mq_mode;
1072 	enum rte_eth_tx_mq_mode tx_mq_mode = dev->data->dev_conf.txmode.mq_mode;
1073 	uint16_t nb_rx_q = dev->data->nb_rx_queues;
1074 	uint16_t nb_tx_q = dev->data->nb_tx_queues;
1075 
1076 	if ((rx_mq_mode & ETH_MQ_RX_DCB_FLAG) ||
1077 	    tx_mq_mode == ETH_MQ_TX_DCB ||
1078 	    tx_mq_mode == ETH_MQ_TX_VMDQ_DCB) {
1079 		PMD_INIT_LOG(ERR, "DCB mode is not supported.");
1080 		return -EINVAL;
1081 	}
1082 	if (RTE_ETH_DEV_SRIOV(dev).active != 0) {
1083 		/* Check multi-queue mode.
1084 		 * To no break software we accept ETH_MQ_RX_NONE as this might
1085 		 * be used to turn off VLAN filter.
1086 		 */
1087 
1088 		if (rx_mq_mode == ETH_MQ_RX_NONE ||
1089 		    rx_mq_mode == ETH_MQ_RX_VMDQ_ONLY) {
1090 			dev->data->dev_conf.rxmode.mq_mode = ETH_MQ_RX_VMDQ_ONLY;
1091 			RTE_ETH_DEV_SRIOV(dev).nb_q_per_pool = 1;
1092 		} else {
1093 			/* Only support one queue on VFs.
1094 			 * RSS together with SRIOV is not supported.
1095 			 */
1096 			PMD_INIT_LOG(ERR, "SRIOV is active,"
1097 					" wrong mq_mode rx %d.",
1098 					rx_mq_mode);
1099 			return -EINVAL;
1100 		}
1101 		/* TX mode is not used here, so mode might be ignored.*/
1102 		if (tx_mq_mode != ETH_MQ_TX_VMDQ_ONLY) {
1103 			/* SRIOV only works in VMDq enable mode */
1104 			PMD_INIT_LOG(WARNING, "SRIOV is active,"
1105 					" TX mode %d is not supported. "
1106 					" Driver will behave as %d mode.",
1107 					tx_mq_mode, ETH_MQ_TX_VMDQ_ONLY);
1108 		}
1109 
1110 		/* check valid queue number */
1111 		if ((nb_rx_q > 1) || (nb_tx_q > 1)) {
1112 			PMD_INIT_LOG(ERR, "SRIOV is active,"
1113 					" only support one queue on VFs.");
1114 			return -EINVAL;
1115 		}
1116 	} else {
1117 		/* To no break software that set invalid mode, only display
1118 		 * warning if invalid mode is used.
1119 		 */
1120 		if (rx_mq_mode != ETH_MQ_RX_NONE &&
1121 		    rx_mq_mode != ETH_MQ_RX_VMDQ_ONLY &&
1122 		    rx_mq_mode != ETH_MQ_RX_RSS) {
1123 			/* RSS together with VMDq not supported*/
1124 			PMD_INIT_LOG(ERR, "RX mode %d is not supported.",
1125 				     rx_mq_mode);
1126 			return -EINVAL;
1127 		}
1128 
1129 		if (tx_mq_mode != ETH_MQ_TX_NONE &&
1130 		    tx_mq_mode != ETH_MQ_TX_VMDQ_ONLY) {
1131 			PMD_INIT_LOG(WARNING, "TX mode %d is not supported."
1132 					" Due to txmode is meaningless in this"
1133 					" driver, just ignore.",
1134 					tx_mq_mode);
1135 		}
1136 	}
1137 	return 0;
1138 }
1139 
1140 static int
1141 eth_igb_configure(struct rte_eth_dev *dev)
1142 {
1143 	struct e1000_interrupt *intr =
1144 		E1000_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
1145 	int ret;
1146 
1147 	PMD_INIT_FUNC_TRACE();
1148 
1149 	if (dev->data->dev_conf.rxmode.mq_mode & ETH_MQ_RX_RSS_FLAG)
1150 		dev->data->dev_conf.rxmode.offloads |= DEV_RX_OFFLOAD_RSS_HASH;
1151 
1152 	/* multipe queue mode checking */
1153 	ret  = igb_check_mq_mode(dev);
1154 	if (ret != 0) {
1155 		PMD_DRV_LOG(ERR, "igb_check_mq_mode fails with %d.",
1156 			    ret);
1157 		return ret;
1158 	}
1159 
1160 	intr->flags |= E1000_FLAG_NEED_LINK_UPDATE;
1161 	PMD_INIT_FUNC_TRACE();
1162 
1163 	return 0;
1164 }
1165 
1166 static void
1167 eth_igb_rxtx_control(struct rte_eth_dev *dev,
1168 		     bool enable)
1169 {
1170 	struct e1000_hw *hw =
1171 		E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1172 	uint32_t tctl, rctl;
1173 
1174 	tctl = E1000_READ_REG(hw, E1000_TCTL);
1175 	rctl = E1000_READ_REG(hw, E1000_RCTL);
1176 
1177 	if (enable) {
1178 		/* enable Tx/Rx */
1179 		tctl |= E1000_TCTL_EN;
1180 		rctl |= E1000_RCTL_EN;
1181 	} else {
1182 		/* disable Tx/Rx */
1183 		tctl &= ~E1000_TCTL_EN;
1184 		rctl &= ~E1000_RCTL_EN;
1185 	}
1186 	E1000_WRITE_REG(hw, E1000_TCTL, tctl);
1187 	E1000_WRITE_REG(hw, E1000_RCTL, rctl);
1188 	E1000_WRITE_FLUSH(hw);
1189 }
1190 
1191 static int
1192 eth_igb_start(struct rte_eth_dev *dev)
1193 {
1194 	struct e1000_hw *hw =
1195 		E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1196 	struct e1000_adapter *adapter =
1197 		E1000_DEV_PRIVATE(dev->data->dev_private);
1198 	struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
1199 	struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
1200 	int ret, mask;
1201 	uint32_t intr_vector = 0;
1202 	uint32_t ctrl_ext;
1203 	uint32_t *speeds;
1204 	int num_speeds;
1205 	bool autoneg;
1206 
1207 	PMD_INIT_FUNC_TRACE();
1208 
1209 	/* disable uio/vfio intr/eventfd mapping */
1210 	rte_intr_disable(intr_handle);
1211 
1212 	/* Power up the phy. Needed to make the link go Up */
1213 	eth_igb_dev_set_link_up(dev);
1214 
1215 	/*
1216 	 * Packet Buffer Allocation (PBA)
1217 	 * Writing PBA sets the receive portion of the buffer
1218 	 * the remainder is used for the transmit buffer.
1219 	 */
1220 	if (hw->mac.type == e1000_82575) {
1221 		uint32_t pba;
1222 
1223 		pba = E1000_PBA_32K; /* 32K for Rx, 16K for Tx */
1224 		E1000_WRITE_REG(hw, E1000_PBA, pba);
1225 	}
1226 
1227 	/* Put the address into the Receive Address Array */
1228 	e1000_rar_set(hw, hw->mac.addr, 0);
1229 
1230 	/* Initialize the hardware */
1231 	if (igb_hardware_init(hw)) {
1232 		PMD_INIT_LOG(ERR, "Unable to initialize the hardware");
1233 		return -EIO;
1234 	}
1235 	adapter->stopped = 0;
1236 
1237 	E1000_WRITE_REG(hw, E1000_VET,
1238 			RTE_ETHER_TYPE_VLAN << 16 | RTE_ETHER_TYPE_VLAN);
1239 
1240 	ctrl_ext = E1000_READ_REG(hw, E1000_CTRL_EXT);
1241 	/* Set PF Reset Done bit so PF/VF Mail Ops can work */
1242 	ctrl_ext |= E1000_CTRL_EXT_PFRSTD;
1243 	E1000_WRITE_REG(hw, E1000_CTRL_EXT, ctrl_ext);
1244 	E1000_WRITE_FLUSH(hw);
1245 
1246 	/* configure PF module if SRIOV enabled */
1247 	igb_pf_host_configure(dev);
1248 
1249 	/* check and configure queue intr-vector mapping */
1250 	if ((rte_intr_cap_multiple(intr_handle) ||
1251 	     !RTE_ETH_DEV_SRIOV(dev).active) &&
1252 	    dev->data->dev_conf.intr_conf.rxq != 0) {
1253 		intr_vector = dev->data->nb_rx_queues;
1254 		if (rte_intr_efd_enable(intr_handle, intr_vector))
1255 			return -1;
1256 	}
1257 
1258 	if (rte_intr_dp_is_en(intr_handle) && !intr_handle->intr_vec) {
1259 		intr_handle->intr_vec =
1260 			rte_zmalloc("intr_vec",
1261 				    dev->data->nb_rx_queues * sizeof(int), 0);
1262 		if (intr_handle->intr_vec == NULL) {
1263 			PMD_INIT_LOG(ERR, "Failed to allocate %d rx_queues"
1264 				     " intr_vec", dev->data->nb_rx_queues);
1265 			return -ENOMEM;
1266 		}
1267 	}
1268 
1269 	/* confiugre msix for rx interrupt */
1270 	eth_igb_configure_msix_intr(dev);
1271 
1272 	/* Configure for OS presence */
1273 	igb_init_manageability(hw);
1274 
1275 	eth_igb_tx_init(dev);
1276 
1277 	/* This can fail when allocating mbufs for descriptor rings */
1278 	ret = eth_igb_rx_init(dev);
1279 	if (ret) {
1280 		PMD_INIT_LOG(ERR, "Unable to initialize RX hardware");
1281 		igb_dev_clear_queues(dev);
1282 		return ret;
1283 	}
1284 
1285 	e1000_clear_hw_cntrs_base_generic(hw);
1286 
1287 	/*
1288 	 * VLAN Offload Settings
1289 	 */
1290 	mask = ETH_VLAN_STRIP_MASK | ETH_VLAN_FILTER_MASK | \
1291 			ETH_VLAN_EXTEND_MASK;
1292 	ret = eth_igb_vlan_offload_set(dev, mask);
1293 	if (ret) {
1294 		PMD_INIT_LOG(ERR, "Unable to set vlan offload");
1295 		igb_dev_clear_queues(dev);
1296 		return ret;
1297 	}
1298 
1299 	if (dev->data->dev_conf.rxmode.mq_mode == ETH_MQ_RX_VMDQ_ONLY) {
1300 		/* Enable VLAN filter since VMDq always use VLAN filter */
1301 		igb_vmdq_vlan_hw_filter_enable(dev);
1302 	}
1303 
1304 	if ((hw->mac.type == e1000_82576) || (hw->mac.type == e1000_82580) ||
1305 		(hw->mac.type == e1000_i350) || (hw->mac.type == e1000_i210) ||
1306 		(hw->mac.type == e1000_i211)) {
1307 		/* Configure EITR with the maximum possible value (0xFFFF) */
1308 		E1000_WRITE_REG(hw, E1000_EITR(0), 0xFFFF);
1309 	}
1310 
1311 	/* Setup link speed and duplex */
1312 	speeds = &dev->data->dev_conf.link_speeds;
1313 	if (*speeds == ETH_LINK_SPEED_AUTONEG) {
1314 		hw->phy.autoneg_advertised = E1000_ALL_SPEED_DUPLEX;
1315 		hw->mac.autoneg = 1;
1316 	} else {
1317 		num_speeds = 0;
1318 		autoneg = (*speeds & ETH_LINK_SPEED_FIXED) == 0;
1319 
1320 		/* Reset */
1321 		hw->phy.autoneg_advertised = 0;
1322 
1323 		if (*speeds & ~(ETH_LINK_SPEED_10M_HD | ETH_LINK_SPEED_10M |
1324 				ETH_LINK_SPEED_100M_HD | ETH_LINK_SPEED_100M |
1325 				ETH_LINK_SPEED_1G | ETH_LINK_SPEED_FIXED)) {
1326 			num_speeds = -1;
1327 			goto error_invalid_config;
1328 		}
1329 		if (*speeds & ETH_LINK_SPEED_10M_HD) {
1330 			hw->phy.autoneg_advertised |= ADVERTISE_10_HALF;
1331 			num_speeds++;
1332 		}
1333 		if (*speeds & ETH_LINK_SPEED_10M) {
1334 			hw->phy.autoneg_advertised |= ADVERTISE_10_FULL;
1335 			num_speeds++;
1336 		}
1337 		if (*speeds & ETH_LINK_SPEED_100M_HD) {
1338 			hw->phy.autoneg_advertised |= ADVERTISE_100_HALF;
1339 			num_speeds++;
1340 		}
1341 		if (*speeds & ETH_LINK_SPEED_100M) {
1342 			hw->phy.autoneg_advertised |= ADVERTISE_100_FULL;
1343 			num_speeds++;
1344 		}
1345 		if (*speeds & ETH_LINK_SPEED_1G) {
1346 			hw->phy.autoneg_advertised |= ADVERTISE_1000_FULL;
1347 			num_speeds++;
1348 		}
1349 		if (num_speeds == 0 || (!autoneg && (num_speeds > 1)))
1350 			goto error_invalid_config;
1351 
1352 		/* Set/reset the mac.autoneg based on the link speed,
1353 		 * fixed or not
1354 		 */
1355 		if (!autoneg) {
1356 			hw->mac.autoneg = 0;
1357 			hw->mac.forced_speed_duplex =
1358 					hw->phy.autoneg_advertised;
1359 		} else {
1360 			hw->mac.autoneg = 1;
1361 		}
1362 	}
1363 
1364 	e1000_setup_link(hw);
1365 
1366 	if (rte_intr_allow_others(intr_handle)) {
1367 		/* check if lsc interrupt is enabled */
1368 		if (dev->data->dev_conf.intr_conf.lsc != 0)
1369 			eth_igb_lsc_interrupt_setup(dev, TRUE);
1370 		else
1371 			eth_igb_lsc_interrupt_setup(dev, FALSE);
1372 	} else {
1373 		rte_intr_callback_unregister(intr_handle,
1374 					     eth_igb_interrupt_handler,
1375 					     (void *)dev);
1376 		if (dev->data->dev_conf.intr_conf.lsc != 0)
1377 			PMD_INIT_LOG(INFO, "lsc won't enable because of"
1378 				     " no intr multiplex");
1379 	}
1380 
1381 	/* check if rxq interrupt is enabled */
1382 	if (dev->data->dev_conf.intr_conf.rxq != 0 &&
1383 	    rte_intr_dp_is_en(intr_handle))
1384 		eth_igb_rxq_interrupt_setup(dev);
1385 
1386 	/* enable uio/vfio intr/eventfd mapping */
1387 	rte_intr_enable(intr_handle);
1388 
1389 	/* resume enabled intr since hw reset */
1390 	igb_intr_enable(dev);
1391 
1392 	/* restore all types filter */
1393 	igb_filter_restore(dev);
1394 
1395 	eth_igb_rxtx_control(dev, true);
1396 	eth_igb_link_update(dev, 0);
1397 
1398 	PMD_INIT_LOG(DEBUG, "<<");
1399 
1400 	return 0;
1401 
1402 error_invalid_config:
1403 	PMD_INIT_LOG(ERR, "Invalid advertised speeds (%u) for port %u",
1404 		     dev->data->dev_conf.link_speeds, dev->data->port_id);
1405 	igb_dev_clear_queues(dev);
1406 	return -EINVAL;
1407 }
1408 
1409 /*********************************************************************
1410  *
1411  *  This routine disables all traffic on the adapter by issuing a
1412  *  global reset on the MAC.
1413  *
1414  **********************************************************************/
1415 static int
1416 eth_igb_stop(struct rte_eth_dev *dev)
1417 {
1418 	struct e1000_hw *hw = E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1419 	struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
1420 	struct rte_eth_link link;
1421 	struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
1422 	struct e1000_adapter *adapter =
1423 		E1000_DEV_PRIVATE(dev->data->dev_private);
1424 
1425 	if (adapter->stopped)
1426 		return 0;
1427 
1428 	eth_igb_rxtx_control(dev, false);
1429 
1430 	igb_intr_disable(dev);
1431 
1432 	/* disable intr eventfd mapping */
1433 	rte_intr_disable(intr_handle);
1434 
1435 	igb_pf_reset_hw(hw);
1436 	E1000_WRITE_REG(hw, E1000_WUC, 0);
1437 
1438 	/* Set bit for Go Link disconnect if PHY reset is not blocked */
1439 	if (hw->mac.type >= e1000_82580 &&
1440 	    (e1000_check_reset_block(hw) != E1000_BLK_PHY_RESET)) {
1441 		uint32_t phpm_reg;
1442 
1443 		phpm_reg = E1000_READ_REG(hw, E1000_82580_PHY_POWER_MGMT);
1444 		phpm_reg |= E1000_82580_PM_GO_LINKD;
1445 		E1000_WRITE_REG(hw, E1000_82580_PHY_POWER_MGMT, phpm_reg);
1446 	}
1447 
1448 	/* Power down the phy. Needed to make the link go Down */
1449 	eth_igb_dev_set_link_down(dev);
1450 
1451 	igb_dev_clear_queues(dev);
1452 
1453 	/* clear the recorded link status */
1454 	memset(&link, 0, sizeof(link));
1455 	rte_eth_linkstatus_set(dev, &link);
1456 
1457 	if (!rte_intr_allow_others(intr_handle))
1458 		/* resume to the default handler */
1459 		rte_intr_callback_register(intr_handle,
1460 					   eth_igb_interrupt_handler,
1461 					   (void *)dev);
1462 
1463 	/* Clean datapath event and queue/vec mapping */
1464 	rte_intr_efd_disable(intr_handle);
1465 	if (intr_handle->intr_vec != NULL) {
1466 		rte_free(intr_handle->intr_vec);
1467 		intr_handle->intr_vec = NULL;
1468 	}
1469 
1470 	adapter->stopped = true;
1471 	dev->data->dev_started = 0;
1472 
1473 	return 0;
1474 }
1475 
1476 static int
1477 eth_igb_dev_set_link_up(struct rte_eth_dev *dev)
1478 {
1479 	struct e1000_hw *hw = E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1480 
1481 	if (hw->phy.media_type == e1000_media_type_copper)
1482 		e1000_power_up_phy(hw);
1483 	else
1484 		e1000_power_up_fiber_serdes_link(hw);
1485 
1486 	return 0;
1487 }
1488 
1489 static int
1490 eth_igb_dev_set_link_down(struct rte_eth_dev *dev)
1491 {
1492 	struct e1000_hw *hw = E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1493 
1494 	if (hw->phy.media_type == e1000_media_type_copper)
1495 		e1000_power_down_phy(hw);
1496 	else
1497 		e1000_shutdown_fiber_serdes_link(hw);
1498 
1499 	return 0;
1500 }
1501 
1502 static int
1503 eth_igb_close(struct rte_eth_dev *dev)
1504 {
1505 	struct e1000_hw *hw = E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1506 	struct rte_eth_link link;
1507 	struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
1508 	struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
1509 	struct e1000_filter_info *filter_info =
1510 		E1000_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
1511 	int ret;
1512 
1513 	if (rte_eal_process_type() != RTE_PROC_PRIMARY)
1514 		return 0;
1515 
1516 	ret = eth_igb_stop(dev);
1517 
1518 	e1000_phy_hw_reset(hw);
1519 	igb_release_manageability(hw);
1520 	igb_hw_control_release(hw);
1521 
1522 	/* Clear bit for Go Link disconnect if PHY reset is not blocked */
1523 	if (hw->mac.type >= e1000_82580 &&
1524 	    (e1000_check_reset_block(hw) != E1000_BLK_PHY_RESET)) {
1525 		uint32_t phpm_reg;
1526 
1527 		phpm_reg = E1000_READ_REG(hw, E1000_82580_PHY_POWER_MGMT);
1528 		phpm_reg &= ~E1000_82580_PM_GO_LINKD;
1529 		E1000_WRITE_REG(hw, E1000_82580_PHY_POWER_MGMT, phpm_reg);
1530 	}
1531 
1532 	igb_dev_free_queues(dev);
1533 
1534 	if (intr_handle->intr_vec) {
1535 		rte_free(intr_handle->intr_vec);
1536 		intr_handle->intr_vec = NULL;
1537 	}
1538 
1539 	memset(&link, 0, sizeof(link));
1540 	rte_eth_linkstatus_set(dev, &link);
1541 
1542 	/* Reset any pending lock */
1543 	igb_reset_swfw_lock(hw);
1544 
1545 	/* uninitialize PF if max_vfs not zero */
1546 	igb_pf_host_uninit(dev);
1547 
1548 	rte_intr_callback_unregister(intr_handle,
1549 				     eth_igb_interrupt_handler, dev);
1550 
1551 	/* clear the SYN filter info */
1552 	filter_info->syn_info = 0;
1553 
1554 	/* clear the ethertype filters info */
1555 	filter_info->ethertype_mask = 0;
1556 	memset(filter_info->ethertype_filters, 0,
1557 		E1000_MAX_ETQF_FILTERS * sizeof(struct igb_ethertype_filter));
1558 
1559 	/* clear the rss filter info */
1560 	memset(&filter_info->rss_info, 0,
1561 		sizeof(struct igb_rte_flow_rss_conf));
1562 
1563 	/* remove all ntuple filters of the device */
1564 	igb_ntuple_filter_uninit(dev);
1565 
1566 	/* remove all flex filters of the device */
1567 	igb_flex_filter_uninit(dev);
1568 
1569 	/* clear all the filters list */
1570 	igb_filterlist_flush(dev);
1571 
1572 	return ret;
1573 }
1574 
1575 /*
1576  * Reset PF device.
1577  */
1578 static int
1579 eth_igb_reset(struct rte_eth_dev *dev)
1580 {
1581 	int ret;
1582 
1583 	/* When a DPDK PMD PF begin to reset PF port, it should notify all
1584 	 * its VF to make them align with it. The detailed notification
1585 	 * mechanism is PMD specific and is currently not implemented.
1586 	 * To avoid unexpected behavior in VF, currently reset of PF with
1587 	 * SR-IOV activation is not supported. It might be supported later.
1588 	 */
1589 	if (dev->data->sriov.active)
1590 		return -ENOTSUP;
1591 
1592 	ret = eth_igb_dev_uninit(dev);
1593 	if (ret)
1594 		return ret;
1595 
1596 	ret = eth_igb_dev_init(dev);
1597 
1598 	return ret;
1599 }
1600 
1601 
1602 static int
1603 igb_get_rx_buffer_size(struct e1000_hw *hw)
1604 {
1605 	uint32_t rx_buf_size;
1606 	if (hw->mac.type == e1000_82576) {
1607 		rx_buf_size = (E1000_READ_REG(hw, E1000_RXPBS) & 0xffff) << 10;
1608 	} else if (hw->mac.type == e1000_82580 || hw->mac.type == e1000_i350) {
1609 		/* PBS needs to be translated according to a lookup table */
1610 		rx_buf_size = (E1000_READ_REG(hw, E1000_RXPBS) & 0xf);
1611 		rx_buf_size = (uint32_t) e1000_rxpbs_adjust_82580(rx_buf_size);
1612 		rx_buf_size = (rx_buf_size << 10);
1613 	} else if (hw->mac.type == e1000_i210 || hw->mac.type == e1000_i211) {
1614 		rx_buf_size = (E1000_READ_REG(hw, E1000_RXPBS) & 0x3f) << 10;
1615 	} else {
1616 		rx_buf_size = (E1000_READ_REG(hw, E1000_PBA) & 0xffff) << 10;
1617 	}
1618 
1619 	return rx_buf_size;
1620 }
1621 
1622 /*********************************************************************
1623  *
1624  *  Initialize the hardware
1625  *
1626  **********************************************************************/
1627 static int
1628 igb_hardware_init(struct e1000_hw *hw)
1629 {
1630 	uint32_t rx_buf_size;
1631 	int diag;
1632 
1633 	/* Let the firmware know the OS is in control */
1634 	igb_hw_control_acquire(hw);
1635 
1636 	/*
1637 	 * These parameters control the automatic generation (Tx) and
1638 	 * response (Rx) to Ethernet PAUSE frames.
1639 	 * - High water mark should allow for at least two standard size (1518)
1640 	 *   frames to be received after sending an XOFF.
1641 	 * - Low water mark works best when it is very near the high water mark.
1642 	 *   This allows the receiver to restart by sending XON when it has
1643 	 *   drained a bit. Here we use an arbitrary value of 1500 which will
1644 	 *   restart after one full frame is pulled from the buffer. There
1645 	 *   could be several smaller frames in the buffer and if so they will
1646 	 *   not trigger the XON until their total number reduces the buffer
1647 	 *   by 1500.
1648 	 * - The pause time is fairly large at 1000 x 512ns = 512 usec.
1649 	 */
1650 	rx_buf_size = igb_get_rx_buffer_size(hw);
1651 
1652 	hw->fc.high_water = rx_buf_size - (RTE_ETHER_MAX_LEN * 2);
1653 	hw->fc.low_water = hw->fc.high_water - 1500;
1654 	hw->fc.pause_time = IGB_FC_PAUSE_TIME;
1655 	hw->fc.send_xon = 1;
1656 
1657 	/* Set Flow control, use the tunable location if sane */
1658 	if ((igb_fc_setting != e1000_fc_none) && (igb_fc_setting < 4))
1659 		hw->fc.requested_mode = igb_fc_setting;
1660 	else
1661 		hw->fc.requested_mode = e1000_fc_none;
1662 
1663 	/* Issue a global reset */
1664 	igb_pf_reset_hw(hw);
1665 	E1000_WRITE_REG(hw, E1000_WUC, 0);
1666 
1667 	diag = e1000_init_hw(hw);
1668 	if (diag < 0)
1669 		return diag;
1670 
1671 	E1000_WRITE_REG(hw, E1000_VET,
1672 			RTE_ETHER_TYPE_VLAN << 16 | RTE_ETHER_TYPE_VLAN);
1673 	e1000_get_phy_info(hw);
1674 	e1000_check_for_link(hw);
1675 
1676 	return 0;
1677 }
1678 
1679 /* This function is based on igb_update_stats_counters() in igb/if_igb.c */
1680 static void
1681 igb_read_stats_registers(struct e1000_hw *hw, struct e1000_hw_stats *stats)
1682 {
1683 	int pause_frames;
1684 
1685 	uint64_t old_gprc  = stats->gprc;
1686 	uint64_t old_gptc  = stats->gptc;
1687 	uint64_t old_tpr   = stats->tpr;
1688 	uint64_t old_tpt   = stats->tpt;
1689 	uint64_t old_rpthc = stats->rpthc;
1690 	uint64_t old_hgptc = stats->hgptc;
1691 
1692 	if(hw->phy.media_type == e1000_media_type_copper ||
1693 	    (E1000_READ_REG(hw, E1000_STATUS) & E1000_STATUS_LU)) {
1694 		stats->symerrs +=
1695 		    E1000_READ_REG(hw,E1000_SYMERRS);
1696 		stats->sec += E1000_READ_REG(hw, E1000_SEC);
1697 	}
1698 
1699 	stats->crcerrs += E1000_READ_REG(hw, E1000_CRCERRS);
1700 	stats->mpc += E1000_READ_REG(hw, E1000_MPC);
1701 	stats->scc += E1000_READ_REG(hw, E1000_SCC);
1702 	stats->ecol += E1000_READ_REG(hw, E1000_ECOL);
1703 
1704 	stats->mcc += E1000_READ_REG(hw, E1000_MCC);
1705 	stats->latecol += E1000_READ_REG(hw, E1000_LATECOL);
1706 	stats->colc += E1000_READ_REG(hw, E1000_COLC);
1707 	stats->dc += E1000_READ_REG(hw, E1000_DC);
1708 	stats->rlec += E1000_READ_REG(hw, E1000_RLEC);
1709 	stats->xonrxc += E1000_READ_REG(hw, E1000_XONRXC);
1710 	stats->xontxc += E1000_READ_REG(hw, E1000_XONTXC);
1711 	/*
1712 	** For watchdog management we need to know if we have been
1713 	** paused during the last interval, so capture that here.
1714 	*/
1715 	pause_frames = E1000_READ_REG(hw, E1000_XOFFRXC);
1716 	stats->xoffrxc += pause_frames;
1717 	stats->xofftxc += E1000_READ_REG(hw, E1000_XOFFTXC);
1718 	stats->fcruc += E1000_READ_REG(hw, E1000_FCRUC);
1719 	stats->prc64 += E1000_READ_REG(hw, E1000_PRC64);
1720 	stats->prc127 += E1000_READ_REG(hw, E1000_PRC127);
1721 	stats->prc255 += E1000_READ_REG(hw, E1000_PRC255);
1722 	stats->prc511 += E1000_READ_REG(hw, E1000_PRC511);
1723 	stats->prc1023 += E1000_READ_REG(hw, E1000_PRC1023);
1724 	stats->prc1522 += E1000_READ_REG(hw, E1000_PRC1522);
1725 	stats->gprc += E1000_READ_REG(hw, E1000_GPRC);
1726 	stats->bprc += E1000_READ_REG(hw, E1000_BPRC);
1727 	stats->mprc += E1000_READ_REG(hw, E1000_MPRC);
1728 	stats->gptc += E1000_READ_REG(hw, E1000_GPTC);
1729 
1730 	/* For the 64-bit byte counters the low dword must be read first. */
1731 	/* Both registers clear on the read of the high dword */
1732 
1733 	/* Workaround CRC bytes included in size, take away 4 bytes/packet */
1734 	stats->gorc += E1000_READ_REG(hw, E1000_GORCL);
1735 	stats->gorc += ((uint64_t)E1000_READ_REG(hw, E1000_GORCH) << 32);
1736 	stats->gorc -= (stats->gprc - old_gprc) * RTE_ETHER_CRC_LEN;
1737 	stats->gotc += E1000_READ_REG(hw, E1000_GOTCL);
1738 	stats->gotc += ((uint64_t)E1000_READ_REG(hw, E1000_GOTCH) << 32);
1739 	stats->gotc -= (stats->gptc - old_gptc) * RTE_ETHER_CRC_LEN;
1740 
1741 	stats->rnbc += E1000_READ_REG(hw, E1000_RNBC);
1742 	stats->ruc += E1000_READ_REG(hw, E1000_RUC);
1743 	stats->rfc += E1000_READ_REG(hw, E1000_RFC);
1744 	stats->roc += E1000_READ_REG(hw, E1000_ROC);
1745 	stats->rjc += E1000_READ_REG(hw, E1000_RJC);
1746 
1747 	stats->tpr += E1000_READ_REG(hw, E1000_TPR);
1748 	stats->tpt += E1000_READ_REG(hw, E1000_TPT);
1749 
1750 	stats->tor += E1000_READ_REG(hw, E1000_TORL);
1751 	stats->tor += ((uint64_t)E1000_READ_REG(hw, E1000_TORH) << 32);
1752 	stats->tor -= (stats->tpr - old_tpr) * RTE_ETHER_CRC_LEN;
1753 	stats->tot += E1000_READ_REG(hw, E1000_TOTL);
1754 	stats->tot += ((uint64_t)E1000_READ_REG(hw, E1000_TOTH) << 32);
1755 	stats->tot -= (stats->tpt - old_tpt) * RTE_ETHER_CRC_LEN;
1756 
1757 	stats->ptc64 += E1000_READ_REG(hw, E1000_PTC64);
1758 	stats->ptc127 += E1000_READ_REG(hw, E1000_PTC127);
1759 	stats->ptc255 += E1000_READ_REG(hw, E1000_PTC255);
1760 	stats->ptc511 += E1000_READ_REG(hw, E1000_PTC511);
1761 	stats->ptc1023 += E1000_READ_REG(hw, E1000_PTC1023);
1762 	stats->ptc1522 += E1000_READ_REG(hw, E1000_PTC1522);
1763 	stats->mptc += E1000_READ_REG(hw, E1000_MPTC);
1764 	stats->bptc += E1000_READ_REG(hw, E1000_BPTC);
1765 
1766 	/* Interrupt Counts */
1767 
1768 	stats->iac += E1000_READ_REG(hw, E1000_IAC);
1769 	stats->icrxptc += E1000_READ_REG(hw, E1000_ICRXPTC);
1770 	stats->icrxatc += E1000_READ_REG(hw, E1000_ICRXATC);
1771 	stats->ictxptc += E1000_READ_REG(hw, E1000_ICTXPTC);
1772 	stats->ictxatc += E1000_READ_REG(hw, E1000_ICTXATC);
1773 	stats->ictxqec += E1000_READ_REG(hw, E1000_ICTXQEC);
1774 	stats->ictxqmtc += E1000_READ_REG(hw, E1000_ICTXQMTC);
1775 	stats->icrxdmtc += E1000_READ_REG(hw, E1000_ICRXDMTC);
1776 	stats->icrxoc += E1000_READ_REG(hw, E1000_ICRXOC);
1777 
1778 	/* Host to Card Statistics */
1779 
1780 	stats->cbtmpc += E1000_READ_REG(hw, E1000_CBTMPC);
1781 	stats->htdpmc += E1000_READ_REG(hw, E1000_HTDPMC);
1782 	stats->cbrdpc += E1000_READ_REG(hw, E1000_CBRDPC);
1783 	stats->cbrmpc += E1000_READ_REG(hw, E1000_CBRMPC);
1784 	stats->rpthc += E1000_READ_REG(hw, E1000_RPTHC);
1785 	stats->hgptc += E1000_READ_REG(hw, E1000_HGPTC);
1786 	stats->htcbdpc += E1000_READ_REG(hw, E1000_HTCBDPC);
1787 	stats->hgorc += E1000_READ_REG(hw, E1000_HGORCL);
1788 	stats->hgorc += ((uint64_t)E1000_READ_REG(hw, E1000_HGORCH) << 32);
1789 	stats->hgorc -= (stats->rpthc - old_rpthc) * RTE_ETHER_CRC_LEN;
1790 	stats->hgotc += E1000_READ_REG(hw, E1000_HGOTCL);
1791 	stats->hgotc += ((uint64_t)E1000_READ_REG(hw, E1000_HGOTCH) << 32);
1792 	stats->hgotc -= (stats->hgptc - old_hgptc) * RTE_ETHER_CRC_LEN;
1793 	stats->lenerrs += E1000_READ_REG(hw, E1000_LENERRS);
1794 	stats->scvpc += E1000_READ_REG(hw, E1000_SCVPC);
1795 	stats->hrmpc += E1000_READ_REG(hw, E1000_HRMPC);
1796 
1797 	stats->algnerrc += E1000_READ_REG(hw, E1000_ALGNERRC);
1798 	stats->rxerrc += E1000_READ_REG(hw, E1000_RXERRC);
1799 	stats->tncrs += E1000_READ_REG(hw, E1000_TNCRS);
1800 	stats->cexterr += E1000_READ_REG(hw, E1000_CEXTERR);
1801 	stats->tsctc += E1000_READ_REG(hw, E1000_TSCTC);
1802 	stats->tsctfc += E1000_READ_REG(hw, E1000_TSCTFC);
1803 }
1804 
1805 static int
1806 eth_igb_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *rte_stats)
1807 {
1808 	struct e1000_hw *hw = E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1809 	struct e1000_hw_stats *stats =
1810 			E1000_DEV_PRIVATE_TO_STATS(dev->data->dev_private);
1811 
1812 	igb_read_stats_registers(hw, stats);
1813 
1814 	if (rte_stats == NULL)
1815 		return -EINVAL;
1816 
1817 	/* Rx Errors */
1818 	rte_stats->imissed = stats->mpc;
1819 	rte_stats->ierrors = stats->crcerrs + stats->rlec +
1820 	                     stats->rxerrc + stats->algnerrc + stats->cexterr;
1821 
1822 	/* Tx Errors */
1823 	rte_stats->oerrors = stats->ecol + stats->latecol;
1824 
1825 	rte_stats->ipackets = stats->gprc;
1826 	rte_stats->opackets = stats->gptc;
1827 	rte_stats->ibytes   = stats->gorc;
1828 	rte_stats->obytes   = stats->gotc;
1829 	return 0;
1830 }
1831 
1832 static int
1833 eth_igb_stats_reset(struct rte_eth_dev *dev)
1834 {
1835 	struct e1000_hw_stats *hw_stats =
1836 			E1000_DEV_PRIVATE_TO_STATS(dev->data->dev_private);
1837 
1838 	/* HW registers are cleared on read */
1839 	eth_igb_stats_get(dev, NULL);
1840 
1841 	/* Reset software totals */
1842 	memset(hw_stats, 0, sizeof(*hw_stats));
1843 
1844 	return 0;
1845 }
1846 
1847 static int
1848 eth_igb_xstats_reset(struct rte_eth_dev *dev)
1849 {
1850 	struct e1000_hw_stats *stats =
1851 			E1000_DEV_PRIVATE_TO_STATS(dev->data->dev_private);
1852 
1853 	/* HW registers are cleared on read */
1854 	eth_igb_xstats_get(dev, NULL, IGB_NB_XSTATS);
1855 
1856 	/* Reset software totals */
1857 	memset(stats, 0, sizeof(*stats));
1858 
1859 	return 0;
1860 }
1861 
1862 static int eth_igb_xstats_get_names(__rte_unused struct rte_eth_dev *dev,
1863 	struct rte_eth_xstat_name *xstats_names,
1864 	__rte_unused unsigned int size)
1865 {
1866 	unsigned i;
1867 
1868 	if (xstats_names == NULL)
1869 		return IGB_NB_XSTATS;
1870 
1871 	/* Note: limit checked in rte_eth_xstats_names() */
1872 
1873 	for (i = 0; i < IGB_NB_XSTATS; i++) {
1874 		strlcpy(xstats_names[i].name, rte_igb_stats_strings[i].name,
1875 			sizeof(xstats_names[i].name));
1876 	}
1877 
1878 	return IGB_NB_XSTATS;
1879 }
1880 
1881 static int eth_igb_xstats_get_names_by_id(struct rte_eth_dev *dev,
1882 		const uint64_t *ids, struct rte_eth_xstat_name *xstats_names,
1883 		unsigned int limit)
1884 {
1885 	unsigned int i;
1886 
1887 	if (!ids) {
1888 		if (xstats_names == NULL)
1889 			return IGB_NB_XSTATS;
1890 
1891 		for (i = 0; i < IGB_NB_XSTATS; i++)
1892 			strlcpy(xstats_names[i].name,
1893 				rte_igb_stats_strings[i].name,
1894 				sizeof(xstats_names[i].name));
1895 
1896 		return IGB_NB_XSTATS;
1897 
1898 	} else {
1899 		struct rte_eth_xstat_name xstats_names_copy[IGB_NB_XSTATS];
1900 
1901 		eth_igb_xstats_get_names_by_id(dev, NULL, xstats_names_copy,
1902 				IGB_NB_XSTATS);
1903 
1904 		for (i = 0; i < limit; i++) {
1905 			if (ids[i] >= IGB_NB_XSTATS) {
1906 				PMD_INIT_LOG(ERR, "id value isn't valid");
1907 				return -1;
1908 			}
1909 			strcpy(xstats_names[i].name,
1910 					xstats_names_copy[ids[i]].name);
1911 		}
1912 		return limit;
1913 	}
1914 }
1915 
1916 static int
1917 eth_igb_xstats_get(struct rte_eth_dev *dev, struct rte_eth_xstat *xstats,
1918 		   unsigned n)
1919 {
1920 	struct e1000_hw *hw = E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1921 	struct e1000_hw_stats *hw_stats =
1922 			E1000_DEV_PRIVATE_TO_STATS(dev->data->dev_private);
1923 	unsigned i;
1924 
1925 	if (n < IGB_NB_XSTATS)
1926 		return IGB_NB_XSTATS;
1927 
1928 	igb_read_stats_registers(hw, hw_stats);
1929 
1930 	/* If this is a reset xstats is NULL, and we have cleared the
1931 	 * registers by reading them.
1932 	 */
1933 	if (!xstats)
1934 		return 0;
1935 
1936 	/* Extended stats */
1937 	for (i = 0; i < IGB_NB_XSTATS; i++) {
1938 		xstats[i].id = i;
1939 		xstats[i].value = *(uint64_t *)(((char *)hw_stats) +
1940 			rte_igb_stats_strings[i].offset);
1941 	}
1942 
1943 	return IGB_NB_XSTATS;
1944 }
1945 
1946 static int
1947 eth_igb_xstats_get_by_id(struct rte_eth_dev *dev, const uint64_t *ids,
1948 		uint64_t *values, unsigned int n)
1949 {
1950 	unsigned int i;
1951 
1952 	if (!ids) {
1953 		struct e1000_hw *hw =
1954 			E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1955 		struct e1000_hw_stats *hw_stats =
1956 			E1000_DEV_PRIVATE_TO_STATS(dev->data->dev_private);
1957 
1958 		if (n < IGB_NB_XSTATS)
1959 			return IGB_NB_XSTATS;
1960 
1961 		igb_read_stats_registers(hw, hw_stats);
1962 
1963 		/* If this is a reset xstats is NULL, and we have cleared the
1964 		 * registers by reading them.
1965 		 */
1966 		if (!values)
1967 			return 0;
1968 
1969 		/* Extended stats */
1970 		for (i = 0; i < IGB_NB_XSTATS; i++)
1971 			values[i] = *(uint64_t *)(((char *)hw_stats) +
1972 					rte_igb_stats_strings[i].offset);
1973 
1974 		return IGB_NB_XSTATS;
1975 
1976 	} else {
1977 		uint64_t values_copy[IGB_NB_XSTATS];
1978 
1979 		eth_igb_xstats_get_by_id(dev, NULL, values_copy,
1980 				IGB_NB_XSTATS);
1981 
1982 		for (i = 0; i < n; i++) {
1983 			if (ids[i] >= IGB_NB_XSTATS) {
1984 				PMD_INIT_LOG(ERR, "id value isn't valid");
1985 				return -1;
1986 			}
1987 			values[i] = values_copy[ids[i]];
1988 		}
1989 		return n;
1990 	}
1991 }
1992 
1993 static void
1994 igbvf_read_stats_registers(struct e1000_hw *hw, struct e1000_vf_stats *hw_stats)
1995 {
1996 	/* Good Rx packets, include VF loopback */
1997 	UPDATE_VF_STAT(E1000_VFGPRC,
1998 	    hw_stats->last_gprc, hw_stats->gprc);
1999 
2000 	/* Good Rx octets, include VF loopback */
2001 	UPDATE_VF_STAT(E1000_VFGORC,
2002 	    hw_stats->last_gorc, hw_stats->gorc);
2003 
2004 	/* Good Tx packets, include VF loopback */
2005 	UPDATE_VF_STAT(E1000_VFGPTC,
2006 	    hw_stats->last_gptc, hw_stats->gptc);
2007 
2008 	/* Good Tx octets, include VF loopback */
2009 	UPDATE_VF_STAT(E1000_VFGOTC,
2010 	    hw_stats->last_gotc, hw_stats->gotc);
2011 
2012 	/* Rx Multicst packets */
2013 	UPDATE_VF_STAT(E1000_VFMPRC,
2014 	    hw_stats->last_mprc, hw_stats->mprc);
2015 
2016 	/* Good Rx loopback packets */
2017 	UPDATE_VF_STAT(E1000_VFGPRLBC,
2018 	    hw_stats->last_gprlbc, hw_stats->gprlbc);
2019 
2020 	/* Good Rx loopback octets */
2021 	UPDATE_VF_STAT(E1000_VFGORLBC,
2022 	    hw_stats->last_gorlbc, hw_stats->gorlbc);
2023 
2024 	/* Good Tx loopback packets */
2025 	UPDATE_VF_STAT(E1000_VFGPTLBC,
2026 	    hw_stats->last_gptlbc, hw_stats->gptlbc);
2027 
2028 	/* Good Tx loopback octets */
2029 	UPDATE_VF_STAT(E1000_VFGOTLBC,
2030 	    hw_stats->last_gotlbc, hw_stats->gotlbc);
2031 }
2032 
2033 static int eth_igbvf_xstats_get_names(__rte_unused struct rte_eth_dev *dev,
2034 				     struct rte_eth_xstat_name *xstats_names,
2035 				     __rte_unused unsigned limit)
2036 {
2037 	unsigned i;
2038 
2039 	if (xstats_names != NULL)
2040 		for (i = 0; i < IGBVF_NB_XSTATS; i++) {
2041 			strlcpy(xstats_names[i].name,
2042 				rte_igbvf_stats_strings[i].name,
2043 				sizeof(xstats_names[i].name));
2044 		}
2045 	return IGBVF_NB_XSTATS;
2046 }
2047 
2048 static int
2049 eth_igbvf_xstats_get(struct rte_eth_dev *dev, struct rte_eth_xstat *xstats,
2050 		     unsigned n)
2051 {
2052 	struct e1000_hw *hw = E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2053 	struct e1000_vf_stats *hw_stats = (struct e1000_vf_stats *)
2054 			E1000_DEV_PRIVATE_TO_STATS(dev->data->dev_private);
2055 	unsigned i;
2056 
2057 	if (n < IGBVF_NB_XSTATS)
2058 		return IGBVF_NB_XSTATS;
2059 
2060 	igbvf_read_stats_registers(hw, hw_stats);
2061 
2062 	if (!xstats)
2063 		return 0;
2064 
2065 	for (i = 0; i < IGBVF_NB_XSTATS; i++) {
2066 		xstats[i].id = i;
2067 		xstats[i].value = *(uint64_t *)(((char *)hw_stats) +
2068 			rte_igbvf_stats_strings[i].offset);
2069 	}
2070 
2071 	return IGBVF_NB_XSTATS;
2072 }
2073 
2074 static int
2075 eth_igbvf_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *rte_stats)
2076 {
2077 	struct e1000_hw *hw = E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2078 	struct e1000_vf_stats *hw_stats = (struct e1000_vf_stats *)
2079 			  E1000_DEV_PRIVATE_TO_STATS(dev->data->dev_private);
2080 
2081 	igbvf_read_stats_registers(hw, hw_stats);
2082 
2083 	if (rte_stats == NULL)
2084 		return -EINVAL;
2085 
2086 	rte_stats->ipackets = hw_stats->gprc;
2087 	rte_stats->ibytes = hw_stats->gorc;
2088 	rte_stats->opackets = hw_stats->gptc;
2089 	rte_stats->obytes = hw_stats->gotc;
2090 	return 0;
2091 }
2092 
2093 static int
2094 eth_igbvf_stats_reset(struct rte_eth_dev *dev)
2095 {
2096 	struct e1000_vf_stats *hw_stats = (struct e1000_vf_stats*)
2097 			E1000_DEV_PRIVATE_TO_STATS(dev->data->dev_private);
2098 
2099 	/* Sync HW register to the last stats */
2100 	eth_igbvf_stats_get(dev, NULL);
2101 
2102 	/* reset HW current stats*/
2103 	memset(&hw_stats->gprc, 0, sizeof(*hw_stats) -
2104 	       offsetof(struct e1000_vf_stats, gprc));
2105 
2106 	return 0;
2107 }
2108 
2109 static int
2110 eth_igb_fw_version_get(struct rte_eth_dev *dev, char *fw_version,
2111 		       size_t fw_size)
2112 {
2113 	struct e1000_hw *hw = E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2114 	struct e1000_fw_version fw;
2115 	int ret;
2116 
2117 	e1000_get_fw_version(hw, &fw);
2118 
2119 	switch (hw->mac.type) {
2120 	case e1000_i210:
2121 	case e1000_i211:
2122 		if (!(e1000_get_flash_presence_i210(hw))) {
2123 			ret = snprintf(fw_version, fw_size,
2124 				 "%2d.%2d-%d",
2125 				 fw.invm_major, fw.invm_minor,
2126 				 fw.invm_img_type);
2127 			break;
2128 		}
2129 		/* fall through */
2130 	default:
2131 		/* if option rom is valid, display its version too */
2132 		if (fw.or_valid) {
2133 			ret = snprintf(fw_version, fw_size,
2134 				 "%d.%d, 0x%08x, %d.%d.%d",
2135 				 fw.eep_major, fw.eep_minor, fw.etrack_id,
2136 				 fw.or_major, fw.or_build, fw.or_patch);
2137 		/* no option rom */
2138 		} else {
2139 			if (fw.etrack_id != 0X0000) {
2140 				ret = snprintf(fw_version, fw_size,
2141 					 "%d.%d, 0x%08x",
2142 					 fw.eep_major, fw.eep_minor,
2143 					 fw.etrack_id);
2144 			} else {
2145 				ret = snprintf(fw_version, fw_size,
2146 					 "%d.%d.%d",
2147 					 fw.eep_major, fw.eep_minor,
2148 					 fw.eep_build);
2149 			}
2150 		}
2151 		break;
2152 	}
2153 	if (ret < 0)
2154 		return -EINVAL;
2155 
2156 	ret += 1; /* add the size of '\0' */
2157 	if (fw_size < (size_t)ret)
2158 		return ret;
2159 	else
2160 		return 0;
2161 }
2162 
2163 static int
2164 eth_igb_infos_get(struct rte_eth_dev *dev, struct rte_eth_dev_info *dev_info)
2165 {
2166 	struct e1000_hw *hw = E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2167 
2168 	dev_info->min_rx_bufsize = 256; /* See BSIZE field of RCTL register. */
2169 	dev_info->max_rx_pktlen  = 0x3FFF; /* See RLPML register. */
2170 	dev_info->max_mac_addrs = hw->mac.rar_entry_count;
2171 	dev_info->rx_queue_offload_capa = igb_get_rx_queue_offloads_capa(dev);
2172 	dev_info->rx_offload_capa = igb_get_rx_port_offloads_capa(dev) |
2173 				    dev_info->rx_queue_offload_capa;
2174 	dev_info->tx_queue_offload_capa = igb_get_tx_queue_offloads_capa(dev);
2175 	dev_info->tx_offload_capa = igb_get_tx_port_offloads_capa(dev) |
2176 				    dev_info->tx_queue_offload_capa;
2177 
2178 	switch (hw->mac.type) {
2179 	case e1000_82575:
2180 		dev_info->max_rx_queues = 4;
2181 		dev_info->max_tx_queues = 4;
2182 		dev_info->max_vmdq_pools = 0;
2183 		break;
2184 
2185 	case e1000_82576:
2186 		dev_info->max_rx_queues = 16;
2187 		dev_info->max_tx_queues = 16;
2188 		dev_info->max_vmdq_pools = ETH_8_POOLS;
2189 		dev_info->vmdq_queue_num = 16;
2190 		break;
2191 
2192 	case e1000_82580:
2193 		dev_info->max_rx_queues = 8;
2194 		dev_info->max_tx_queues = 8;
2195 		dev_info->max_vmdq_pools = ETH_8_POOLS;
2196 		dev_info->vmdq_queue_num = 8;
2197 		break;
2198 
2199 	case e1000_i350:
2200 		dev_info->max_rx_queues = 8;
2201 		dev_info->max_tx_queues = 8;
2202 		dev_info->max_vmdq_pools = ETH_8_POOLS;
2203 		dev_info->vmdq_queue_num = 8;
2204 		break;
2205 
2206 	case e1000_i354:
2207 		dev_info->max_rx_queues = 8;
2208 		dev_info->max_tx_queues = 8;
2209 		break;
2210 
2211 	case e1000_i210:
2212 		dev_info->max_rx_queues = 4;
2213 		dev_info->max_tx_queues = 4;
2214 		dev_info->max_vmdq_pools = 0;
2215 		break;
2216 
2217 	case e1000_i211:
2218 		dev_info->max_rx_queues = 2;
2219 		dev_info->max_tx_queues = 2;
2220 		dev_info->max_vmdq_pools = 0;
2221 		break;
2222 
2223 	default:
2224 		/* Should not happen */
2225 		return -EINVAL;
2226 	}
2227 	dev_info->hash_key_size = IGB_HKEY_MAX_INDEX * sizeof(uint32_t);
2228 	dev_info->reta_size = ETH_RSS_RETA_SIZE_128;
2229 	dev_info->flow_type_rss_offloads = IGB_RSS_OFFLOAD_ALL;
2230 
2231 	dev_info->default_rxconf = (struct rte_eth_rxconf) {
2232 		.rx_thresh = {
2233 			.pthresh = IGB_DEFAULT_RX_PTHRESH,
2234 			.hthresh = IGB_DEFAULT_RX_HTHRESH,
2235 			.wthresh = IGB_DEFAULT_RX_WTHRESH,
2236 		},
2237 		.rx_free_thresh = IGB_DEFAULT_RX_FREE_THRESH,
2238 		.rx_drop_en = 0,
2239 		.offloads = 0,
2240 	};
2241 
2242 	dev_info->default_txconf = (struct rte_eth_txconf) {
2243 		.tx_thresh = {
2244 			.pthresh = IGB_DEFAULT_TX_PTHRESH,
2245 			.hthresh = IGB_DEFAULT_TX_HTHRESH,
2246 			.wthresh = IGB_DEFAULT_TX_WTHRESH,
2247 		},
2248 		.offloads = 0,
2249 	};
2250 
2251 	dev_info->rx_desc_lim = rx_desc_lim;
2252 	dev_info->tx_desc_lim = tx_desc_lim;
2253 
2254 	dev_info->speed_capa = ETH_LINK_SPEED_10M_HD | ETH_LINK_SPEED_10M |
2255 			ETH_LINK_SPEED_100M_HD | ETH_LINK_SPEED_100M |
2256 			ETH_LINK_SPEED_1G;
2257 
2258 	dev_info->max_mtu = dev_info->max_rx_pktlen - E1000_ETH_OVERHEAD;
2259 	dev_info->min_mtu = RTE_ETHER_MIN_MTU;
2260 
2261 	return 0;
2262 }
2263 
2264 static const uint32_t *
2265 eth_igb_supported_ptypes_get(struct rte_eth_dev *dev)
2266 {
2267 	static const uint32_t ptypes[] = {
2268 		/* refers to igb_rxd_pkt_info_to_pkt_type() */
2269 		RTE_PTYPE_L2_ETHER,
2270 		RTE_PTYPE_L3_IPV4,
2271 		RTE_PTYPE_L3_IPV4_EXT,
2272 		RTE_PTYPE_L3_IPV6,
2273 		RTE_PTYPE_L3_IPV6_EXT,
2274 		RTE_PTYPE_L4_TCP,
2275 		RTE_PTYPE_L4_UDP,
2276 		RTE_PTYPE_L4_SCTP,
2277 		RTE_PTYPE_TUNNEL_IP,
2278 		RTE_PTYPE_INNER_L3_IPV6,
2279 		RTE_PTYPE_INNER_L3_IPV6_EXT,
2280 		RTE_PTYPE_INNER_L4_TCP,
2281 		RTE_PTYPE_INNER_L4_UDP,
2282 		RTE_PTYPE_UNKNOWN
2283 	};
2284 
2285 	if (dev->rx_pkt_burst == eth_igb_recv_pkts ||
2286 	    dev->rx_pkt_burst == eth_igb_recv_scattered_pkts)
2287 		return ptypes;
2288 	return NULL;
2289 }
2290 
2291 static int
2292 eth_igbvf_infos_get(struct rte_eth_dev *dev, struct rte_eth_dev_info *dev_info)
2293 {
2294 	struct e1000_hw *hw = E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2295 
2296 	dev_info->min_rx_bufsize = 256; /* See BSIZE field of RCTL register. */
2297 	dev_info->max_rx_pktlen  = 0x3FFF; /* See RLPML register. */
2298 	dev_info->max_mac_addrs = hw->mac.rar_entry_count;
2299 	dev_info->tx_offload_capa = DEV_TX_OFFLOAD_VLAN_INSERT |
2300 				DEV_TX_OFFLOAD_IPV4_CKSUM  |
2301 				DEV_TX_OFFLOAD_UDP_CKSUM   |
2302 				DEV_TX_OFFLOAD_TCP_CKSUM   |
2303 				DEV_TX_OFFLOAD_SCTP_CKSUM  |
2304 				DEV_TX_OFFLOAD_TCP_TSO;
2305 	switch (hw->mac.type) {
2306 	case e1000_vfadapt:
2307 		dev_info->max_rx_queues = 2;
2308 		dev_info->max_tx_queues = 2;
2309 		break;
2310 	case e1000_vfadapt_i350:
2311 		dev_info->max_rx_queues = 1;
2312 		dev_info->max_tx_queues = 1;
2313 		break;
2314 	default:
2315 		/* Should not happen */
2316 		return -EINVAL;
2317 	}
2318 
2319 	dev_info->rx_queue_offload_capa = igb_get_rx_queue_offloads_capa(dev);
2320 	dev_info->rx_offload_capa = igb_get_rx_port_offloads_capa(dev) |
2321 				    dev_info->rx_queue_offload_capa;
2322 	dev_info->tx_queue_offload_capa = igb_get_tx_queue_offloads_capa(dev);
2323 	dev_info->tx_offload_capa = igb_get_tx_port_offloads_capa(dev) |
2324 				    dev_info->tx_queue_offload_capa;
2325 
2326 	dev_info->default_rxconf = (struct rte_eth_rxconf) {
2327 		.rx_thresh = {
2328 			.pthresh = IGB_DEFAULT_RX_PTHRESH,
2329 			.hthresh = IGB_DEFAULT_RX_HTHRESH,
2330 			.wthresh = IGB_DEFAULT_RX_WTHRESH,
2331 		},
2332 		.rx_free_thresh = IGB_DEFAULT_RX_FREE_THRESH,
2333 		.rx_drop_en = 0,
2334 		.offloads = 0,
2335 	};
2336 
2337 	dev_info->default_txconf = (struct rte_eth_txconf) {
2338 		.tx_thresh = {
2339 			.pthresh = IGB_DEFAULT_TX_PTHRESH,
2340 			.hthresh = IGB_DEFAULT_TX_HTHRESH,
2341 			.wthresh = IGB_DEFAULT_TX_WTHRESH,
2342 		},
2343 		.offloads = 0,
2344 	};
2345 
2346 	dev_info->rx_desc_lim = rx_desc_lim;
2347 	dev_info->tx_desc_lim = tx_desc_lim;
2348 
2349 	return 0;
2350 }
2351 
2352 /* return 0 means link status changed, -1 means not changed */
2353 static int
2354 eth_igb_link_update(struct rte_eth_dev *dev, int wait_to_complete)
2355 {
2356 	struct e1000_hw *hw =
2357 		E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2358 	struct rte_eth_link link;
2359 	int link_check, count;
2360 
2361 	link_check = 0;
2362 	hw->mac.get_link_status = 1;
2363 
2364 	/* possible wait-to-complete in up to 9 seconds */
2365 	for (count = 0; count < IGB_LINK_UPDATE_CHECK_TIMEOUT; count ++) {
2366 		/* Read the real link status */
2367 		switch (hw->phy.media_type) {
2368 		case e1000_media_type_copper:
2369 			/* Do the work to read phy */
2370 			e1000_check_for_link(hw);
2371 			link_check = !hw->mac.get_link_status;
2372 			break;
2373 
2374 		case e1000_media_type_fiber:
2375 			e1000_check_for_link(hw);
2376 			link_check = (E1000_READ_REG(hw, E1000_STATUS) &
2377 				      E1000_STATUS_LU);
2378 			break;
2379 
2380 		case e1000_media_type_internal_serdes:
2381 			e1000_check_for_link(hw);
2382 			link_check = hw->mac.serdes_has_link;
2383 			break;
2384 
2385 		/* VF device is type_unknown */
2386 		case e1000_media_type_unknown:
2387 			eth_igbvf_link_update(hw);
2388 			link_check = !hw->mac.get_link_status;
2389 			break;
2390 
2391 		default:
2392 			break;
2393 		}
2394 		if (link_check || wait_to_complete == 0)
2395 			break;
2396 		rte_delay_ms(IGB_LINK_UPDATE_CHECK_INTERVAL);
2397 	}
2398 	memset(&link, 0, sizeof(link));
2399 
2400 	/* Now we check if a transition has happened */
2401 	if (link_check) {
2402 		uint16_t duplex, speed;
2403 		hw->mac.ops.get_link_up_info(hw, &speed, &duplex);
2404 		link.link_duplex = (duplex == FULL_DUPLEX) ?
2405 				ETH_LINK_FULL_DUPLEX :
2406 				ETH_LINK_HALF_DUPLEX;
2407 		link.link_speed = speed;
2408 		link.link_status = ETH_LINK_UP;
2409 		link.link_autoneg = !(dev->data->dev_conf.link_speeds &
2410 				ETH_LINK_SPEED_FIXED);
2411 	} else if (!link_check) {
2412 		link.link_speed = 0;
2413 		link.link_duplex = ETH_LINK_HALF_DUPLEX;
2414 		link.link_status = ETH_LINK_DOWN;
2415 		link.link_autoneg = ETH_LINK_FIXED;
2416 	}
2417 
2418 	return rte_eth_linkstatus_set(dev, &link);
2419 }
2420 
2421 /*
2422  * igb_hw_control_acquire sets CTRL_EXT:DRV_LOAD bit.
2423  * For ASF and Pass Through versions of f/w this means
2424  * that the driver is loaded.
2425  */
2426 static void
2427 igb_hw_control_acquire(struct e1000_hw *hw)
2428 {
2429 	uint32_t ctrl_ext;
2430 
2431 	/* Let firmware know the driver has taken over */
2432 	ctrl_ext = E1000_READ_REG(hw, E1000_CTRL_EXT);
2433 	E1000_WRITE_REG(hw, E1000_CTRL_EXT, ctrl_ext | E1000_CTRL_EXT_DRV_LOAD);
2434 }
2435 
2436 /*
2437  * igb_hw_control_release resets CTRL_EXT:DRV_LOAD bit.
2438  * For ASF and Pass Through versions of f/w this means that the
2439  * driver is no longer loaded.
2440  */
2441 static void
2442 igb_hw_control_release(struct e1000_hw *hw)
2443 {
2444 	uint32_t ctrl_ext;
2445 
2446 	/* Let firmware taken over control of h/w */
2447 	ctrl_ext = E1000_READ_REG(hw, E1000_CTRL_EXT);
2448 	E1000_WRITE_REG(hw, E1000_CTRL_EXT,
2449 			ctrl_ext & ~E1000_CTRL_EXT_DRV_LOAD);
2450 }
2451 
2452 /*
2453  * Bit of a misnomer, what this really means is
2454  * to enable OS management of the system... aka
2455  * to disable special hardware management features.
2456  */
2457 static void
2458 igb_init_manageability(struct e1000_hw *hw)
2459 {
2460 	if (e1000_enable_mng_pass_thru(hw)) {
2461 		uint32_t manc2h = E1000_READ_REG(hw, E1000_MANC2H);
2462 		uint32_t manc = E1000_READ_REG(hw, E1000_MANC);
2463 
2464 		/* disable hardware interception of ARP */
2465 		manc &= ~(E1000_MANC_ARP_EN);
2466 
2467 		/* enable receiving management packets to the host */
2468 		manc |= E1000_MANC_EN_MNG2HOST;
2469 		manc2h |= 1 << 5;  /* Mng Port 623 */
2470 		manc2h |= 1 << 6;  /* Mng Port 664 */
2471 		E1000_WRITE_REG(hw, E1000_MANC2H, manc2h);
2472 		E1000_WRITE_REG(hw, E1000_MANC, manc);
2473 	}
2474 }
2475 
2476 static void
2477 igb_release_manageability(struct e1000_hw *hw)
2478 {
2479 	if (e1000_enable_mng_pass_thru(hw)) {
2480 		uint32_t manc = E1000_READ_REG(hw, E1000_MANC);
2481 
2482 		manc |= E1000_MANC_ARP_EN;
2483 		manc &= ~E1000_MANC_EN_MNG2HOST;
2484 
2485 		E1000_WRITE_REG(hw, E1000_MANC, manc);
2486 	}
2487 }
2488 
2489 static int
2490 eth_igb_promiscuous_enable(struct rte_eth_dev *dev)
2491 {
2492 	struct e1000_hw *hw =
2493 		E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2494 	uint32_t rctl;
2495 
2496 	rctl = E1000_READ_REG(hw, E1000_RCTL);
2497 	rctl |= (E1000_RCTL_UPE | E1000_RCTL_MPE);
2498 	E1000_WRITE_REG(hw, E1000_RCTL, rctl);
2499 
2500 	return 0;
2501 }
2502 
2503 static int
2504 eth_igb_promiscuous_disable(struct rte_eth_dev *dev)
2505 {
2506 	struct e1000_hw *hw =
2507 		E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2508 	uint32_t rctl;
2509 
2510 	rctl = E1000_READ_REG(hw, E1000_RCTL);
2511 	rctl &= (~E1000_RCTL_UPE);
2512 	if (dev->data->all_multicast == 1)
2513 		rctl |= E1000_RCTL_MPE;
2514 	else
2515 		rctl &= (~E1000_RCTL_MPE);
2516 	E1000_WRITE_REG(hw, E1000_RCTL, rctl);
2517 
2518 	return 0;
2519 }
2520 
2521 static int
2522 eth_igb_allmulticast_enable(struct rte_eth_dev *dev)
2523 {
2524 	struct e1000_hw *hw =
2525 		E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2526 	uint32_t rctl;
2527 
2528 	rctl = E1000_READ_REG(hw, E1000_RCTL);
2529 	rctl |= E1000_RCTL_MPE;
2530 	E1000_WRITE_REG(hw, E1000_RCTL, rctl);
2531 
2532 	return 0;
2533 }
2534 
2535 static int
2536 eth_igb_allmulticast_disable(struct rte_eth_dev *dev)
2537 {
2538 	struct e1000_hw *hw =
2539 		E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2540 	uint32_t rctl;
2541 
2542 	if (dev->data->promiscuous == 1)
2543 		return 0; /* must remain in all_multicast mode */
2544 	rctl = E1000_READ_REG(hw, E1000_RCTL);
2545 	rctl &= (~E1000_RCTL_MPE);
2546 	E1000_WRITE_REG(hw, E1000_RCTL, rctl);
2547 
2548 	return 0;
2549 }
2550 
2551 static int
2552 eth_igb_vlan_filter_set(struct rte_eth_dev *dev, uint16_t vlan_id, int on)
2553 {
2554 	struct e1000_hw *hw =
2555 		E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2556 	struct e1000_vfta * shadow_vfta =
2557 		E1000_DEV_PRIVATE_TO_VFTA(dev->data->dev_private);
2558 	uint32_t vfta;
2559 	uint32_t vid_idx;
2560 	uint32_t vid_bit;
2561 
2562 	vid_idx = (uint32_t) ((vlan_id >> E1000_VFTA_ENTRY_SHIFT) &
2563 			      E1000_VFTA_ENTRY_MASK);
2564 	vid_bit = (uint32_t) (1 << (vlan_id & E1000_VFTA_ENTRY_BIT_SHIFT_MASK));
2565 	vfta = E1000_READ_REG_ARRAY(hw, E1000_VFTA, vid_idx);
2566 	if (on)
2567 		vfta |= vid_bit;
2568 	else
2569 		vfta &= ~vid_bit;
2570 	E1000_WRITE_REG_ARRAY(hw, E1000_VFTA, vid_idx, vfta);
2571 
2572 	/* update local VFTA copy */
2573 	shadow_vfta->vfta[vid_idx] = vfta;
2574 
2575 	return 0;
2576 }
2577 
2578 static int
2579 eth_igb_vlan_tpid_set(struct rte_eth_dev *dev,
2580 		      enum rte_vlan_type vlan_type,
2581 		      uint16_t tpid)
2582 {
2583 	struct e1000_hw *hw =
2584 		E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2585 	uint32_t reg, qinq;
2586 
2587 	qinq = E1000_READ_REG(hw, E1000_CTRL_EXT);
2588 	qinq &= E1000_CTRL_EXT_EXT_VLAN;
2589 
2590 	/* only outer TPID of double VLAN can be configured*/
2591 	if (qinq && vlan_type == ETH_VLAN_TYPE_OUTER) {
2592 		reg = E1000_READ_REG(hw, E1000_VET);
2593 		reg = (reg & (~E1000_VET_VET_EXT)) |
2594 			((uint32_t)tpid << E1000_VET_VET_EXT_SHIFT);
2595 		E1000_WRITE_REG(hw, E1000_VET, reg);
2596 
2597 		return 0;
2598 	}
2599 
2600 	/* all other TPID values are read-only*/
2601 	PMD_DRV_LOG(ERR, "Not supported");
2602 
2603 	return -ENOTSUP;
2604 }
2605 
2606 static void
2607 igb_vlan_hw_filter_disable(struct rte_eth_dev *dev)
2608 {
2609 	struct e1000_hw *hw =
2610 		E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2611 	uint32_t reg;
2612 
2613 	/* Filter Table Disable */
2614 	reg = E1000_READ_REG(hw, E1000_RCTL);
2615 	reg &= ~E1000_RCTL_CFIEN;
2616 	reg &= ~E1000_RCTL_VFE;
2617 	E1000_WRITE_REG(hw, E1000_RCTL, reg);
2618 }
2619 
2620 static void
2621 igb_vlan_hw_filter_enable(struct rte_eth_dev *dev)
2622 {
2623 	struct e1000_hw *hw =
2624 		E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2625 	struct e1000_vfta * shadow_vfta =
2626 		E1000_DEV_PRIVATE_TO_VFTA(dev->data->dev_private);
2627 	uint32_t reg;
2628 	int i;
2629 
2630 	/* Filter Table Enable, CFI not used for packet acceptance */
2631 	reg = E1000_READ_REG(hw, E1000_RCTL);
2632 	reg &= ~E1000_RCTL_CFIEN;
2633 	reg |= E1000_RCTL_VFE;
2634 	E1000_WRITE_REG(hw, E1000_RCTL, reg);
2635 
2636 	/* restore VFTA table */
2637 	for (i = 0; i < IGB_VFTA_SIZE; i++)
2638 		E1000_WRITE_REG_ARRAY(hw, E1000_VFTA, i, shadow_vfta->vfta[i]);
2639 }
2640 
2641 static void
2642 igb_vlan_hw_strip_disable(struct rte_eth_dev *dev)
2643 {
2644 	struct e1000_hw *hw =
2645 		E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2646 	uint32_t reg;
2647 
2648 	/* VLAN Mode Disable */
2649 	reg = E1000_READ_REG(hw, E1000_CTRL);
2650 	reg &= ~E1000_CTRL_VME;
2651 	E1000_WRITE_REG(hw, E1000_CTRL, reg);
2652 }
2653 
2654 static void
2655 igb_vlan_hw_strip_enable(struct rte_eth_dev *dev)
2656 {
2657 	struct e1000_hw *hw =
2658 		E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2659 	uint32_t reg;
2660 
2661 	/* VLAN Mode Enable */
2662 	reg = E1000_READ_REG(hw, E1000_CTRL);
2663 	reg |= E1000_CTRL_VME;
2664 	E1000_WRITE_REG(hw, E1000_CTRL, reg);
2665 }
2666 
2667 static void
2668 igb_vlan_hw_extend_disable(struct rte_eth_dev *dev)
2669 {
2670 	struct e1000_hw *hw =
2671 		E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2672 	uint32_t reg;
2673 
2674 	/* CTRL_EXT: Extended VLAN */
2675 	reg = E1000_READ_REG(hw, E1000_CTRL_EXT);
2676 	reg &= ~E1000_CTRL_EXT_EXTEND_VLAN;
2677 	E1000_WRITE_REG(hw, E1000_CTRL_EXT, reg);
2678 
2679 	/* Update maximum packet length */
2680 	if (dev->data->dev_conf.rxmode.offloads & DEV_RX_OFFLOAD_JUMBO_FRAME)
2681 		E1000_WRITE_REG(hw, E1000_RLPML,
2682 				dev->data->dev_conf.rxmode.max_rx_pkt_len);
2683 }
2684 
2685 static void
2686 igb_vlan_hw_extend_enable(struct rte_eth_dev *dev)
2687 {
2688 	struct e1000_hw *hw =
2689 		E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2690 	uint32_t reg;
2691 
2692 	/* CTRL_EXT: Extended VLAN */
2693 	reg = E1000_READ_REG(hw, E1000_CTRL_EXT);
2694 	reg |= E1000_CTRL_EXT_EXTEND_VLAN;
2695 	E1000_WRITE_REG(hw, E1000_CTRL_EXT, reg);
2696 
2697 	/* Update maximum packet length */
2698 	if (dev->data->dev_conf.rxmode.offloads & DEV_RX_OFFLOAD_JUMBO_FRAME)
2699 		E1000_WRITE_REG(hw, E1000_RLPML,
2700 			dev->data->dev_conf.rxmode.max_rx_pkt_len +
2701 						VLAN_TAG_SIZE);
2702 }
2703 
2704 static int
2705 eth_igb_vlan_offload_set(struct rte_eth_dev *dev, int mask)
2706 {
2707 	struct rte_eth_rxmode *rxmode;
2708 
2709 	rxmode = &dev->data->dev_conf.rxmode;
2710 	if(mask & ETH_VLAN_STRIP_MASK){
2711 		if (rxmode->offloads & DEV_RX_OFFLOAD_VLAN_STRIP)
2712 			igb_vlan_hw_strip_enable(dev);
2713 		else
2714 			igb_vlan_hw_strip_disable(dev);
2715 	}
2716 
2717 	if(mask & ETH_VLAN_FILTER_MASK){
2718 		if (rxmode->offloads & DEV_RX_OFFLOAD_VLAN_FILTER)
2719 			igb_vlan_hw_filter_enable(dev);
2720 		else
2721 			igb_vlan_hw_filter_disable(dev);
2722 	}
2723 
2724 	if(mask & ETH_VLAN_EXTEND_MASK){
2725 		if (rxmode->offloads & DEV_RX_OFFLOAD_VLAN_EXTEND)
2726 			igb_vlan_hw_extend_enable(dev);
2727 		else
2728 			igb_vlan_hw_extend_disable(dev);
2729 	}
2730 
2731 	return 0;
2732 }
2733 
2734 
2735 /**
2736  * It enables the interrupt mask and then enable the interrupt.
2737  *
2738  * @param dev
2739  *  Pointer to struct rte_eth_dev.
2740  * @param on
2741  *  Enable or Disable
2742  *
2743  * @return
2744  *  - On success, zero.
2745  *  - On failure, a negative value.
2746  */
2747 static int
2748 eth_igb_lsc_interrupt_setup(struct rte_eth_dev *dev, uint8_t on)
2749 {
2750 	struct e1000_interrupt *intr =
2751 		E1000_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
2752 
2753 	if (on)
2754 		intr->mask |= E1000_ICR_LSC;
2755 	else
2756 		intr->mask &= ~E1000_ICR_LSC;
2757 
2758 	return 0;
2759 }
2760 
2761 /* It clears the interrupt causes and enables the interrupt.
2762  * It will be called once only during nic initialized.
2763  *
2764  * @param dev
2765  *  Pointer to struct rte_eth_dev.
2766  *
2767  * @return
2768  *  - On success, zero.
2769  *  - On failure, a negative value.
2770  */
2771 static int eth_igb_rxq_interrupt_setup(struct rte_eth_dev *dev)
2772 {
2773 	uint32_t mask, regval;
2774 	int ret;
2775 	struct e1000_hw *hw =
2776 		E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2777 	struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
2778 	struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
2779 	int misc_shift = rte_intr_allow_others(intr_handle) ? 1 : 0;
2780 	struct rte_eth_dev_info dev_info;
2781 
2782 	memset(&dev_info, 0, sizeof(dev_info));
2783 	ret = eth_igb_infos_get(dev, &dev_info);
2784 	if (ret != 0)
2785 		return ret;
2786 
2787 	mask = (0xFFFFFFFF >> (32 - dev_info.max_rx_queues)) << misc_shift;
2788 	regval = E1000_READ_REG(hw, E1000_EIMS);
2789 	E1000_WRITE_REG(hw, E1000_EIMS, regval | mask);
2790 
2791 	return 0;
2792 }
2793 
2794 /*
2795  * It reads ICR and gets interrupt causes, check it and set a bit flag
2796  * to update link status.
2797  *
2798  * @param dev
2799  *  Pointer to struct rte_eth_dev.
2800  *
2801  * @return
2802  *  - On success, zero.
2803  *  - On failure, a negative value.
2804  */
2805 static int
2806 eth_igb_interrupt_get_status(struct rte_eth_dev *dev)
2807 {
2808 	uint32_t icr;
2809 	struct e1000_hw *hw =
2810 		E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2811 	struct e1000_interrupt *intr =
2812 		E1000_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
2813 
2814 	igb_intr_disable(dev);
2815 
2816 	/* read-on-clear nic registers here */
2817 	icr = E1000_READ_REG(hw, E1000_ICR);
2818 
2819 	intr->flags = 0;
2820 	if (icr & E1000_ICR_LSC) {
2821 		intr->flags |= E1000_FLAG_NEED_LINK_UPDATE;
2822 	}
2823 
2824 	if (icr & E1000_ICR_VMMB)
2825 		intr->flags |= E1000_FLAG_MAILBOX;
2826 
2827 	return 0;
2828 }
2829 
2830 /*
2831  * It executes link_update after knowing an interrupt is prsent.
2832  *
2833  * @param dev
2834  *  Pointer to struct rte_eth_dev.
2835  *
2836  * @return
2837  *  - On success, zero.
2838  *  - On failure, a negative value.
2839  */
2840 static int
2841 eth_igb_interrupt_action(struct rte_eth_dev *dev,
2842 			 struct rte_intr_handle *intr_handle)
2843 {
2844 	struct e1000_hw *hw =
2845 		E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2846 	struct e1000_interrupt *intr =
2847 		E1000_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
2848 	struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
2849 	struct rte_eth_link link;
2850 	int ret;
2851 
2852 	if (intr->flags & E1000_FLAG_MAILBOX) {
2853 		igb_pf_mbx_process(dev);
2854 		intr->flags &= ~E1000_FLAG_MAILBOX;
2855 	}
2856 
2857 	igb_intr_enable(dev);
2858 	rte_intr_ack(intr_handle);
2859 
2860 	if (intr->flags & E1000_FLAG_NEED_LINK_UPDATE) {
2861 		intr->flags &= ~E1000_FLAG_NEED_LINK_UPDATE;
2862 
2863 		/* set get_link_status to check register later */
2864 		hw->mac.get_link_status = 1;
2865 		ret = eth_igb_link_update(dev, 0);
2866 
2867 		/* check if link has changed */
2868 		if (ret < 0)
2869 			return 0;
2870 
2871 		rte_eth_linkstatus_get(dev, &link);
2872 		if (link.link_status) {
2873 			PMD_INIT_LOG(INFO,
2874 				     " Port %d: Link Up - speed %u Mbps - %s",
2875 				     dev->data->port_id,
2876 				     (unsigned)link.link_speed,
2877 				     link.link_duplex == ETH_LINK_FULL_DUPLEX ?
2878 				     "full-duplex" : "half-duplex");
2879 		} else {
2880 			PMD_INIT_LOG(INFO, " Port %d: Link Down",
2881 				     dev->data->port_id);
2882 		}
2883 
2884 		PMD_INIT_LOG(DEBUG, "PCI Address: " PCI_PRI_FMT,
2885 			     pci_dev->addr.domain,
2886 			     pci_dev->addr.bus,
2887 			     pci_dev->addr.devid,
2888 			     pci_dev->addr.function);
2889 		rte_eth_dev_callback_process(dev, RTE_ETH_EVENT_INTR_LSC, NULL);
2890 	}
2891 
2892 	return 0;
2893 }
2894 
2895 /**
2896  * Interrupt handler which shall be registered at first.
2897  *
2898  * @param handle
2899  *  Pointer to interrupt handle.
2900  * @param param
2901  *  The address of parameter (struct rte_eth_dev *) regsitered before.
2902  *
2903  * @return
2904  *  void
2905  */
2906 static void
2907 eth_igb_interrupt_handler(void *param)
2908 {
2909 	struct rte_eth_dev *dev = (struct rte_eth_dev *)param;
2910 
2911 	eth_igb_interrupt_get_status(dev);
2912 	eth_igb_interrupt_action(dev, dev->intr_handle);
2913 }
2914 
2915 static int
2916 eth_igbvf_interrupt_get_status(struct rte_eth_dev *dev)
2917 {
2918 	uint32_t eicr;
2919 	struct e1000_hw *hw =
2920 		E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2921 	struct e1000_interrupt *intr =
2922 		E1000_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
2923 
2924 	igbvf_intr_disable(hw);
2925 
2926 	/* read-on-clear nic registers here */
2927 	eicr = E1000_READ_REG(hw, E1000_EICR);
2928 	intr->flags = 0;
2929 
2930 	if (eicr == E1000_VTIVAR_MISC_MAILBOX)
2931 		intr->flags |= E1000_FLAG_MAILBOX;
2932 
2933 	return 0;
2934 }
2935 
2936 void igbvf_mbx_process(struct rte_eth_dev *dev)
2937 {
2938 	struct e1000_hw *hw =
2939 		E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2940 	struct e1000_mbx_info *mbx = &hw->mbx;
2941 	u32 in_msg = 0;
2942 
2943 	/* peek the message first */
2944 	in_msg = E1000_READ_REG(hw, E1000_VMBMEM(0));
2945 
2946 	/* PF reset VF event */
2947 	if (in_msg == E1000_PF_CONTROL_MSG) {
2948 		/* dummy mbx read to ack pf */
2949 		if (mbx->ops.read(hw, &in_msg, 1, 0))
2950 			return;
2951 		rte_eth_dev_callback_process(dev, RTE_ETH_EVENT_INTR_RESET,
2952 					     NULL);
2953 	}
2954 }
2955 
2956 static int
2957 eth_igbvf_interrupt_action(struct rte_eth_dev *dev, struct rte_intr_handle *intr_handle)
2958 {
2959 	struct e1000_interrupt *intr =
2960 		E1000_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
2961 
2962 	if (intr->flags & E1000_FLAG_MAILBOX) {
2963 		igbvf_mbx_process(dev);
2964 		intr->flags &= ~E1000_FLAG_MAILBOX;
2965 	}
2966 
2967 	igbvf_intr_enable(dev);
2968 	rte_intr_ack(intr_handle);
2969 
2970 	return 0;
2971 }
2972 
2973 static void
2974 eth_igbvf_interrupt_handler(void *param)
2975 {
2976 	struct rte_eth_dev *dev = (struct rte_eth_dev *)param;
2977 
2978 	eth_igbvf_interrupt_get_status(dev);
2979 	eth_igbvf_interrupt_action(dev, dev->intr_handle);
2980 }
2981 
2982 static int
2983 eth_igb_led_on(struct rte_eth_dev *dev)
2984 {
2985 	struct e1000_hw *hw;
2986 
2987 	hw = E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2988 	return e1000_led_on(hw) == E1000_SUCCESS ? 0 : -ENOTSUP;
2989 }
2990 
2991 static int
2992 eth_igb_led_off(struct rte_eth_dev *dev)
2993 {
2994 	struct e1000_hw *hw;
2995 
2996 	hw = E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2997 	return e1000_led_off(hw) == E1000_SUCCESS ? 0 : -ENOTSUP;
2998 }
2999 
3000 static int
3001 eth_igb_flow_ctrl_get(struct rte_eth_dev *dev, struct rte_eth_fc_conf *fc_conf)
3002 {
3003 	struct e1000_hw *hw;
3004 	uint32_t ctrl;
3005 	int tx_pause;
3006 	int rx_pause;
3007 
3008 	hw = E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3009 	fc_conf->pause_time = hw->fc.pause_time;
3010 	fc_conf->high_water = hw->fc.high_water;
3011 	fc_conf->low_water = hw->fc.low_water;
3012 	fc_conf->send_xon = hw->fc.send_xon;
3013 	fc_conf->autoneg = hw->mac.autoneg;
3014 
3015 	/*
3016 	 * Return rx_pause and tx_pause status according to actual setting of
3017 	 * the TFCE and RFCE bits in the CTRL register.
3018 	 */
3019 	ctrl = E1000_READ_REG(hw, E1000_CTRL);
3020 	if (ctrl & E1000_CTRL_TFCE)
3021 		tx_pause = 1;
3022 	else
3023 		tx_pause = 0;
3024 
3025 	if (ctrl & E1000_CTRL_RFCE)
3026 		rx_pause = 1;
3027 	else
3028 		rx_pause = 0;
3029 
3030 	if (rx_pause && tx_pause)
3031 		fc_conf->mode = RTE_FC_FULL;
3032 	else if (rx_pause)
3033 		fc_conf->mode = RTE_FC_RX_PAUSE;
3034 	else if (tx_pause)
3035 		fc_conf->mode = RTE_FC_TX_PAUSE;
3036 	else
3037 		fc_conf->mode = RTE_FC_NONE;
3038 
3039 	return 0;
3040 }
3041 
3042 static int
3043 eth_igb_flow_ctrl_set(struct rte_eth_dev *dev, struct rte_eth_fc_conf *fc_conf)
3044 {
3045 	struct e1000_hw *hw;
3046 	int err;
3047 	enum e1000_fc_mode rte_fcmode_2_e1000_fcmode[] = {
3048 		e1000_fc_none,
3049 		e1000_fc_rx_pause,
3050 		e1000_fc_tx_pause,
3051 		e1000_fc_full
3052 	};
3053 	uint32_t rx_buf_size;
3054 	uint32_t max_high_water;
3055 	uint32_t rctl;
3056 	uint32_t ctrl;
3057 
3058 	hw = E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3059 	if (fc_conf->autoneg != hw->mac.autoneg)
3060 		return -ENOTSUP;
3061 	rx_buf_size = igb_get_rx_buffer_size(hw);
3062 	PMD_INIT_LOG(DEBUG, "Rx packet buffer size = 0x%x", rx_buf_size);
3063 
3064 	/* At least reserve one Ethernet frame for watermark */
3065 	max_high_water = rx_buf_size - RTE_ETHER_MAX_LEN;
3066 	if ((fc_conf->high_water > max_high_water) ||
3067 	    (fc_conf->high_water < fc_conf->low_water)) {
3068 		PMD_INIT_LOG(ERR, "e1000 incorrect high/low water value");
3069 		PMD_INIT_LOG(ERR, "high water must <=  0x%x", max_high_water);
3070 		return -EINVAL;
3071 	}
3072 
3073 	hw->fc.requested_mode = rte_fcmode_2_e1000_fcmode[fc_conf->mode];
3074 	hw->fc.pause_time     = fc_conf->pause_time;
3075 	hw->fc.high_water     = fc_conf->high_water;
3076 	hw->fc.low_water      = fc_conf->low_water;
3077 	hw->fc.send_xon	      = fc_conf->send_xon;
3078 
3079 	err = e1000_setup_link_generic(hw);
3080 	if (err == E1000_SUCCESS) {
3081 
3082 		/* check if we want to forward MAC frames - driver doesn't have native
3083 		 * capability to do that, so we'll write the registers ourselves */
3084 
3085 		rctl = E1000_READ_REG(hw, E1000_RCTL);
3086 
3087 		/* set or clear MFLCN.PMCF bit depending on configuration */
3088 		if (fc_conf->mac_ctrl_frame_fwd != 0)
3089 			rctl |= E1000_RCTL_PMCF;
3090 		else
3091 			rctl &= ~E1000_RCTL_PMCF;
3092 
3093 		E1000_WRITE_REG(hw, E1000_RCTL, rctl);
3094 
3095 		/*
3096 		 * check if we want to change flow control mode - driver doesn't have native
3097 		 * capability to do that, so we'll write the registers ourselves
3098 		 */
3099 		ctrl = E1000_READ_REG(hw, E1000_CTRL);
3100 
3101 		/*
3102 		 * set or clear E1000_CTRL_RFCE and E1000_CTRL_TFCE bits depending
3103 		 * on configuration
3104 		 */
3105 		switch (fc_conf->mode) {
3106 		case RTE_FC_NONE:
3107 			ctrl &= ~E1000_CTRL_RFCE & ~E1000_CTRL_TFCE;
3108 			break;
3109 		case RTE_FC_RX_PAUSE:
3110 			ctrl |= E1000_CTRL_RFCE;
3111 			ctrl &= ~E1000_CTRL_TFCE;
3112 			break;
3113 		case RTE_FC_TX_PAUSE:
3114 			ctrl |= E1000_CTRL_TFCE;
3115 			ctrl &= ~E1000_CTRL_RFCE;
3116 			break;
3117 		case RTE_FC_FULL:
3118 			ctrl |= E1000_CTRL_RFCE | E1000_CTRL_TFCE;
3119 			break;
3120 		default:
3121 			PMD_INIT_LOG(ERR, "invalid flow control mode");
3122 			return -EINVAL;
3123 		}
3124 
3125 		E1000_WRITE_REG(hw, E1000_CTRL, ctrl);
3126 
3127 		E1000_WRITE_FLUSH(hw);
3128 
3129 		return 0;
3130 	}
3131 
3132 	PMD_INIT_LOG(ERR, "e1000_setup_link_generic = 0x%x", err);
3133 	return -EIO;
3134 }
3135 
3136 #define E1000_RAH_POOLSEL_SHIFT      (18)
3137 static int
3138 eth_igb_rar_set(struct rte_eth_dev *dev, struct rte_ether_addr *mac_addr,
3139 		uint32_t index, uint32_t pool)
3140 {
3141 	struct e1000_hw *hw = E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3142 	uint32_t rah;
3143 
3144 	e1000_rar_set(hw, mac_addr->addr_bytes, index);
3145 	rah = E1000_READ_REG(hw, E1000_RAH(index));
3146 	rah |= (0x1 << (E1000_RAH_POOLSEL_SHIFT + pool));
3147 	E1000_WRITE_REG(hw, E1000_RAH(index), rah);
3148 	return 0;
3149 }
3150 
3151 static void
3152 eth_igb_rar_clear(struct rte_eth_dev *dev, uint32_t index)
3153 {
3154 	uint8_t addr[RTE_ETHER_ADDR_LEN];
3155 	struct e1000_hw *hw = E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3156 
3157 	memset(addr, 0, sizeof(addr));
3158 
3159 	e1000_rar_set(hw, addr, index);
3160 }
3161 
3162 static int
3163 eth_igb_default_mac_addr_set(struct rte_eth_dev *dev,
3164 				struct rte_ether_addr *addr)
3165 {
3166 	eth_igb_rar_clear(dev, 0);
3167 	eth_igb_rar_set(dev, (void *)addr, 0, 0);
3168 
3169 	return 0;
3170 }
3171 /*
3172  * Virtual Function operations
3173  */
3174 static void
3175 igbvf_intr_disable(struct e1000_hw *hw)
3176 {
3177 	PMD_INIT_FUNC_TRACE();
3178 
3179 	/* Clear interrupt mask to stop from interrupts being generated */
3180 	E1000_WRITE_REG(hw, E1000_EIMC, 0xFFFF);
3181 
3182 	E1000_WRITE_FLUSH(hw);
3183 }
3184 
3185 static void
3186 igbvf_stop_adapter(struct rte_eth_dev *dev)
3187 {
3188 	u32 reg_val;
3189 	u16 i;
3190 	struct rte_eth_dev_info dev_info;
3191 	struct e1000_hw *hw = E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3192 	int ret;
3193 
3194 	memset(&dev_info, 0, sizeof(dev_info));
3195 	ret = eth_igbvf_infos_get(dev, &dev_info);
3196 	if (ret != 0)
3197 		return;
3198 
3199 	/* Clear interrupt mask to stop from interrupts being generated */
3200 	igbvf_intr_disable(hw);
3201 
3202 	/* Clear any pending interrupts, flush previous writes */
3203 	E1000_READ_REG(hw, E1000_EICR);
3204 
3205 	/* Disable the transmit unit.  Each queue must be disabled. */
3206 	for (i = 0; i < dev_info.max_tx_queues; i++)
3207 		E1000_WRITE_REG(hw, E1000_TXDCTL(i), E1000_TXDCTL_SWFLSH);
3208 
3209 	/* Disable the receive unit by stopping each queue */
3210 	for (i = 0; i < dev_info.max_rx_queues; i++) {
3211 		reg_val = E1000_READ_REG(hw, E1000_RXDCTL(i));
3212 		reg_val &= ~E1000_RXDCTL_QUEUE_ENABLE;
3213 		E1000_WRITE_REG(hw, E1000_RXDCTL(i), reg_val);
3214 		while (E1000_READ_REG(hw, E1000_RXDCTL(i)) & E1000_RXDCTL_QUEUE_ENABLE)
3215 			;
3216 	}
3217 
3218 	/* flush all queues disables */
3219 	E1000_WRITE_FLUSH(hw);
3220 	msec_delay(2);
3221 }
3222 
3223 static int eth_igbvf_link_update(struct e1000_hw *hw)
3224 {
3225 	struct e1000_mbx_info *mbx = &hw->mbx;
3226 	struct e1000_mac_info *mac = &hw->mac;
3227 	int ret_val = E1000_SUCCESS;
3228 
3229 	PMD_INIT_LOG(DEBUG, "e1000_check_for_link_vf");
3230 
3231 	/*
3232 	 * We only want to run this if there has been a rst asserted.
3233 	 * in this case that could mean a link change, device reset,
3234 	 * or a virtual function reset
3235 	 */
3236 
3237 	/* If we were hit with a reset or timeout drop the link */
3238 	if (!e1000_check_for_rst(hw, 0) || !mbx->timeout)
3239 		mac->get_link_status = TRUE;
3240 
3241 	if (!mac->get_link_status)
3242 		goto out;
3243 
3244 	/* if link status is down no point in checking to see if pf is up */
3245 	if (!(E1000_READ_REG(hw, E1000_STATUS) & E1000_STATUS_LU))
3246 		goto out;
3247 
3248 	/* if we passed all the tests above then the link is up and we no
3249 	 * longer need to check for link */
3250 	mac->get_link_status = FALSE;
3251 
3252 out:
3253 	return ret_val;
3254 }
3255 
3256 
3257 static int
3258 igbvf_dev_configure(struct rte_eth_dev *dev)
3259 {
3260 	struct rte_eth_conf* conf = &dev->data->dev_conf;
3261 
3262 	PMD_INIT_LOG(DEBUG, "Configured Virtual Function port id: %d",
3263 		     dev->data->port_id);
3264 
3265 	if (dev->data->dev_conf.rxmode.mq_mode & ETH_MQ_RX_RSS_FLAG)
3266 		dev->data->dev_conf.rxmode.offloads |= DEV_RX_OFFLOAD_RSS_HASH;
3267 
3268 	/*
3269 	 * VF has no ability to enable/disable HW CRC
3270 	 * Keep the persistent behavior the same as Host PF
3271 	 */
3272 #ifndef RTE_LIBRTE_E1000_PF_DISABLE_STRIP_CRC
3273 	if (conf->rxmode.offloads & DEV_RX_OFFLOAD_KEEP_CRC) {
3274 		PMD_INIT_LOG(NOTICE, "VF can't disable HW CRC Strip");
3275 		conf->rxmode.offloads &= ~DEV_RX_OFFLOAD_KEEP_CRC;
3276 	}
3277 #else
3278 	if (!(conf->rxmode.offloads & DEV_RX_OFFLOAD_KEEP_CRC)) {
3279 		PMD_INIT_LOG(NOTICE, "VF can't enable HW CRC Strip");
3280 		conf->rxmode.offloads |= DEV_RX_OFFLOAD_KEEP_CRC;
3281 	}
3282 #endif
3283 
3284 	return 0;
3285 }
3286 
3287 static int
3288 igbvf_dev_start(struct rte_eth_dev *dev)
3289 {
3290 	struct e1000_hw *hw =
3291 		E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3292 	struct e1000_adapter *adapter =
3293 		E1000_DEV_PRIVATE(dev->data->dev_private);
3294 	struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
3295 	struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
3296 	int ret;
3297 	uint32_t intr_vector = 0;
3298 
3299 	PMD_INIT_FUNC_TRACE();
3300 
3301 	hw->mac.ops.reset_hw(hw);
3302 	adapter->stopped = 0;
3303 
3304 	/* Set all vfta */
3305 	igbvf_set_vfta_all(dev,1);
3306 
3307 	eth_igbvf_tx_init(dev);
3308 
3309 	/* This can fail when allocating mbufs for descriptor rings */
3310 	ret = eth_igbvf_rx_init(dev);
3311 	if (ret) {
3312 		PMD_INIT_LOG(ERR, "Unable to initialize RX hardware");
3313 		igb_dev_clear_queues(dev);
3314 		return ret;
3315 	}
3316 
3317 	/* check and configure queue intr-vector mapping */
3318 	if (rte_intr_cap_multiple(intr_handle) &&
3319 	    dev->data->dev_conf.intr_conf.rxq) {
3320 		intr_vector = dev->data->nb_rx_queues;
3321 		ret = rte_intr_efd_enable(intr_handle, intr_vector);
3322 		if (ret)
3323 			return ret;
3324 	}
3325 
3326 	if (rte_intr_dp_is_en(intr_handle) && !intr_handle->intr_vec) {
3327 		intr_handle->intr_vec =
3328 			rte_zmalloc("intr_vec",
3329 				    dev->data->nb_rx_queues * sizeof(int), 0);
3330 		if (!intr_handle->intr_vec) {
3331 			PMD_INIT_LOG(ERR, "Failed to allocate %d rx_queues"
3332 				     " intr_vec", dev->data->nb_rx_queues);
3333 			return -ENOMEM;
3334 		}
3335 	}
3336 
3337 	eth_igbvf_configure_msix_intr(dev);
3338 
3339 	/* enable uio/vfio intr/eventfd mapping */
3340 	rte_intr_enable(intr_handle);
3341 
3342 	/* resume enabled intr since hw reset */
3343 	igbvf_intr_enable(dev);
3344 
3345 	return 0;
3346 }
3347 
3348 static int
3349 igbvf_dev_stop(struct rte_eth_dev *dev)
3350 {
3351 	struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
3352 	struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
3353 	struct e1000_adapter *adapter =
3354 		E1000_DEV_PRIVATE(dev->data->dev_private);
3355 
3356 	if (adapter->stopped)
3357 		return 0;
3358 
3359 	PMD_INIT_FUNC_TRACE();
3360 
3361 	igbvf_stop_adapter(dev);
3362 
3363 	/*
3364 	  * Clear what we set, but we still keep shadow_vfta to
3365 	  * restore after device starts
3366 	  */
3367 	igbvf_set_vfta_all(dev,0);
3368 
3369 	igb_dev_clear_queues(dev);
3370 
3371 	/* disable intr eventfd mapping */
3372 	rte_intr_disable(intr_handle);
3373 
3374 	/* Clean datapath event and queue/vec mapping */
3375 	rte_intr_efd_disable(intr_handle);
3376 	if (intr_handle->intr_vec) {
3377 		rte_free(intr_handle->intr_vec);
3378 		intr_handle->intr_vec = NULL;
3379 	}
3380 
3381 	adapter->stopped = true;
3382 	dev->data->dev_started = 0;
3383 
3384 	return 0;
3385 }
3386 
3387 static int
3388 igbvf_dev_close(struct rte_eth_dev *dev)
3389 {
3390 	struct e1000_hw *hw = E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3391 	struct rte_ether_addr addr;
3392 	struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
3393 	int ret;
3394 
3395 	PMD_INIT_FUNC_TRACE();
3396 
3397 	if (rte_eal_process_type() != RTE_PROC_PRIMARY)
3398 		return 0;
3399 
3400 	e1000_reset_hw(hw);
3401 
3402 	ret = igbvf_dev_stop(dev);
3403 	if (ret != 0)
3404 		return ret;
3405 
3406 	igb_dev_free_queues(dev);
3407 
3408 	/**
3409 	 * reprogram the RAR with a zero mac address,
3410 	 * to ensure that the VF traffic goes to the PF
3411 	 * after stop, close and detach of the VF.
3412 	 **/
3413 
3414 	memset(&addr, 0, sizeof(addr));
3415 	igbvf_default_mac_addr_set(dev, &addr);
3416 
3417 	rte_intr_callback_unregister(&pci_dev->intr_handle,
3418 				     eth_igbvf_interrupt_handler,
3419 				     (void *)dev);
3420 
3421 	return 0;
3422 }
3423 
3424 static int
3425 igbvf_promiscuous_enable(struct rte_eth_dev *dev)
3426 {
3427 	struct e1000_hw *hw = E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3428 
3429 	/* Set both unicast and multicast promisc */
3430 	e1000_promisc_set_vf(hw, e1000_promisc_enabled);
3431 
3432 	return 0;
3433 }
3434 
3435 static int
3436 igbvf_promiscuous_disable(struct rte_eth_dev *dev)
3437 {
3438 	struct e1000_hw *hw = E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3439 
3440 	/* If in allmulticast mode leave multicast promisc */
3441 	if (dev->data->all_multicast == 1)
3442 		e1000_promisc_set_vf(hw, e1000_promisc_multicast);
3443 	else
3444 		e1000_promisc_set_vf(hw, e1000_promisc_disabled);
3445 
3446 	return 0;
3447 }
3448 
3449 static int
3450 igbvf_allmulticast_enable(struct rte_eth_dev *dev)
3451 {
3452 	struct e1000_hw *hw = E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3453 
3454 	/* In promiscuous mode multicast promisc already set */
3455 	if (dev->data->promiscuous == 0)
3456 		e1000_promisc_set_vf(hw, e1000_promisc_multicast);
3457 
3458 	return 0;
3459 }
3460 
3461 static int
3462 igbvf_allmulticast_disable(struct rte_eth_dev *dev)
3463 {
3464 	struct e1000_hw *hw = E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3465 
3466 	/* In promiscuous mode leave multicast promisc enabled */
3467 	if (dev->data->promiscuous == 0)
3468 		e1000_promisc_set_vf(hw, e1000_promisc_disabled);
3469 
3470 	return 0;
3471 }
3472 
3473 static int igbvf_set_vfta(struct e1000_hw *hw, uint16_t vid, bool on)
3474 {
3475 	struct e1000_mbx_info *mbx = &hw->mbx;
3476 	uint32_t msgbuf[2];
3477 	s32 err;
3478 
3479 	/* After set vlan, vlan strip will also be enabled in igb driver*/
3480 	msgbuf[0] = E1000_VF_SET_VLAN;
3481 	msgbuf[1] = vid;
3482 	/* Setting the 8 bit field MSG INFO to TRUE indicates "add" */
3483 	if (on)
3484 		msgbuf[0] |= E1000_VF_SET_VLAN_ADD;
3485 
3486 	err = mbx->ops.write_posted(hw, msgbuf, 2, 0);
3487 	if (err)
3488 		goto mbx_err;
3489 
3490 	err = mbx->ops.read_posted(hw, msgbuf, 2, 0);
3491 	if (err)
3492 		goto mbx_err;
3493 
3494 	msgbuf[0] &= ~E1000_VT_MSGTYPE_CTS;
3495 	if (msgbuf[0] == (E1000_VF_SET_VLAN | E1000_VT_MSGTYPE_NACK))
3496 		err = -EINVAL;
3497 
3498 mbx_err:
3499 	return err;
3500 }
3501 
3502 static void igbvf_set_vfta_all(struct rte_eth_dev *dev, bool on)
3503 {
3504 	struct e1000_hw *hw =
3505 		E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3506 	struct e1000_vfta * shadow_vfta =
3507 		E1000_DEV_PRIVATE_TO_VFTA(dev->data->dev_private);
3508 	int i = 0, j = 0, vfta = 0, mask = 1;
3509 
3510 	for (i = 0; i < IGB_VFTA_SIZE; i++){
3511 		vfta = shadow_vfta->vfta[i];
3512 		if(vfta){
3513 			mask = 1;
3514 			for (j = 0; j < 32; j++){
3515 				if(vfta & mask)
3516 					igbvf_set_vfta(hw,
3517 						(uint16_t)((i<<5)+j), on);
3518 				mask<<=1;
3519 			}
3520 		}
3521 	}
3522 
3523 }
3524 
3525 static int
3526 igbvf_vlan_filter_set(struct rte_eth_dev *dev, uint16_t vlan_id, int on)
3527 {
3528 	struct e1000_hw *hw =
3529 		E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3530 	struct e1000_vfta * shadow_vfta =
3531 		E1000_DEV_PRIVATE_TO_VFTA(dev->data->dev_private);
3532 	uint32_t vid_idx = 0;
3533 	uint32_t vid_bit = 0;
3534 	int ret = 0;
3535 
3536 	PMD_INIT_FUNC_TRACE();
3537 
3538 	/*vind is not used in VF driver, set to 0, check ixgbe_set_vfta_vf*/
3539 	ret = igbvf_set_vfta(hw, vlan_id, !!on);
3540 	if(ret){
3541 		PMD_INIT_LOG(ERR, "Unable to set VF vlan");
3542 		return ret;
3543 	}
3544 	vid_idx = (uint32_t) ((vlan_id >> 5) & 0x7F);
3545 	vid_bit = (uint32_t) (1 << (vlan_id & 0x1F));
3546 
3547 	/*Save what we set and retore it after device reset*/
3548 	if (on)
3549 		shadow_vfta->vfta[vid_idx] |= vid_bit;
3550 	else
3551 		shadow_vfta->vfta[vid_idx] &= ~vid_bit;
3552 
3553 	return 0;
3554 }
3555 
3556 static int
3557 igbvf_default_mac_addr_set(struct rte_eth_dev *dev, struct rte_ether_addr *addr)
3558 {
3559 	struct e1000_hw *hw =
3560 		E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3561 
3562 	/* index is not used by rar_set() */
3563 	hw->mac.ops.rar_set(hw, (void *)addr, 0);
3564 	return 0;
3565 }
3566 
3567 
3568 static int
3569 eth_igb_rss_reta_update(struct rte_eth_dev *dev,
3570 			struct rte_eth_rss_reta_entry64 *reta_conf,
3571 			uint16_t reta_size)
3572 {
3573 	uint8_t i, j, mask;
3574 	uint32_t reta, r;
3575 	uint16_t idx, shift;
3576 	struct e1000_hw *hw = E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3577 
3578 	if (reta_size != ETH_RSS_RETA_SIZE_128) {
3579 		PMD_DRV_LOG(ERR, "The size of hash lookup table configured "
3580 			"(%d) doesn't match the number hardware can supported "
3581 			"(%d)", reta_size, ETH_RSS_RETA_SIZE_128);
3582 		return -EINVAL;
3583 	}
3584 
3585 	for (i = 0; i < reta_size; i += IGB_4_BIT_WIDTH) {
3586 		idx = i / RTE_RETA_GROUP_SIZE;
3587 		shift = i % RTE_RETA_GROUP_SIZE;
3588 		mask = (uint8_t)((reta_conf[idx].mask >> shift) &
3589 						IGB_4_BIT_MASK);
3590 		if (!mask)
3591 			continue;
3592 		if (mask == IGB_4_BIT_MASK)
3593 			r = 0;
3594 		else
3595 			r = E1000_READ_REG(hw, E1000_RETA(i >> 2));
3596 		for (j = 0, reta = 0; j < IGB_4_BIT_WIDTH; j++) {
3597 			if (mask & (0x1 << j))
3598 				reta |= reta_conf[idx].reta[shift + j] <<
3599 							(CHAR_BIT * j);
3600 			else
3601 				reta |= r & (IGB_8_BIT_MASK << (CHAR_BIT * j));
3602 		}
3603 		E1000_WRITE_REG(hw, E1000_RETA(i >> 2), reta);
3604 	}
3605 
3606 	return 0;
3607 }
3608 
3609 static int
3610 eth_igb_rss_reta_query(struct rte_eth_dev *dev,
3611 		       struct rte_eth_rss_reta_entry64 *reta_conf,
3612 		       uint16_t reta_size)
3613 {
3614 	uint8_t i, j, mask;
3615 	uint32_t reta;
3616 	uint16_t idx, shift;
3617 	struct e1000_hw *hw = E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3618 
3619 	if (reta_size != ETH_RSS_RETA_SIZE_128) {
3620 		PMD_DRV_LOG(ERR, "The size of hash lookup table configured "
3621 			"(%d) doesn't match the number hardware can supported "
3622 			"(%d)", reta_size, ETH_RSS_RETA_SIZE_128);
3623 		return -EINVAL;
3624 	}
3625 
3626 	for (i = 0; i < reta_size; i += IGB_4_BIT_WIDTH) {
3627 		idx = i / RTE_RETA_GROUP_SIZE;
3628 		shift = i % RTE_RETA_GROUP_SIZE;
3629 		mask = (uint8_t)((reta_conf[idx].mask >> shift) &
3630 						IGB_4_BIT_MASK);
3631 		if (!mask)
3632 			continue;
3633 		reta = E1000_READ_REG(hw, E1000_RETA(i >> 2));
3634 		for (j = 0; j < IGB_4_BIT_WIDTH; j++) {
3635 			if (mask & (0x1 << j))
3636 				reta_conf[idx].reta[shift + j] =
3637 					((reta >> (CHAR_BIT * j)) &
3638 						IGB_8_BIT_MASK);
3639 		}
3640 	}
3641 
3642 	return 0;
3643 }
3644 
3645 int
3646 eth_igb_syn_filter_set(struct rte_eth_dev *dev,
3647 			struct rte_eth_syn_filter *filter,
3648 			bool add)
3649 {
3650 	struct e1000_hw *hw = E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3651 	struct e1000_filter_info *filter_info =
3652 		E1000_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
3653 	uint32_t synqf, rfctl;
3654 
3655 	if (filter->queue >= IGB_MAX_RX_QUEUE_NUM)
3656 		return -EINVAL;
3657 
3658 	synqf = E1000_READ_REG(hw, E1000_SYNQF(0));
3659 
3660 	if (add) {
3661 		if (synqf & E1000_SYN_FILTER_ENABLE)
3662 			return -EINVAL;
3663 
3664 		synqf = (uint32_t)(((filter->queue << E1000_SYN_FILTER_QUEUE_SHIFT) &
3665 			E1000_SYN_FILTER_QUEUE) | E1000_SYN_FILTER_ENABLE);
3666 
3667 		rfctl = E1000_READ_REG(hw, E1000_RFCTL);
3668 		if (filter->hig_pri)
3669 			rfctl |= E1000_RFCTL_SYNQFP;
3670 		else
3671 			rfctl &= ~E1000_RFCTL_SYNQFP;
3672 
3673 		E1000_WRITE_REG(hw, E1000_RFCTL, rfctl);
3674 	} else {
3675 		if (!(synqf & E1000_SYN_FILTER_ENABLE))
3676 			return -ENOENT;
3677 		synqf = 0;
3678 	}
3679 
3680 	filter_info->syn_info = synqf;
3681 	E1000_WRITE_REG(hw, E1000_SYNQF(0), synqf);
3682 	E1000_WRITE_FLUSH(hw);
3683 	return 0;
3684 }
3685 
3686 /* translate elements in struct rte_eth_ntuple_filter to struct e1000_2tuple_filter_info*/
3687 static inline int
3688 ntuple_filter_to_2tuple(struct rte_eth_ntuple_filter *filter,
3689 			struct e1000_2tuple_filter_info *filter_info)
3690 {
3691 	if (filter->queue >= IGB_MAX_RX_QUEUE_NUM)
3692 		return -EINVAL;
3693 	if (filter->priority > E1000_2TUPLE_MAX_PRI)
3694 		return -EINVAL;  /* filter index is out of range. */
3695 	if (filter->tcp_flags > RTE_NTUPLE_TCP_FLAGS_MASK)
3696 		return -EINVAL;  /* flags is invalid. */
3697 
3698 	switch (filter->dst_port_mask) {
3699 	case UINT16_MAX:
3700 		filter_info->dst_port_mask = 0;
3701 		filter_info->dst_port = filter->dst_port;
3702 		break;
3703 	case 0:
3704 		filter_info->dst_port_mask = 1;
3705 		break;
3706 	default:
3707 		PMD_DRV_LOG(ERR, "invalid dst_port mask.");
3708 		return -EINVAL;
3709 	}
3710 
3711 	switch (filter->proto_mask) {
3712 	case UINT8_MAX:
3713 		filter_info->proto_mask = 0;
3714 		filter_info->proto = filter->proto;
3715 		break;
3716 	case 0:
3717 		filter_info->proto_mask = 1;
3718 		break;
3719 	default:
3720 		PMD_DRV_LOG(ERR, "invalid protocol mask.");
3721 		return -EINVAL;
3722 	}
3723 
3724 	filter_info->priority = (uint8_t)filter->priority;
3725 	if (filter->flags & RTE_NTUPLE_FLAGS_TCP_FLAG)
3726 		filter_info->tcp_flags = filter->tcp_flags;
3727 	else
3728 		filter_info->tcp_flags = 0;
3729 
3730 	return 0;
3731 }
3732 
3733 static inline struct e1000_2tuple_filter *
3734 igb_2tuple_filter_lookup(struct e1000_2tuple_filter_list *filter_list,
3735 			struct e1000_2tuple_filter_info *key)
3736 {
3737 	struct e1000_2tuple_filter *it;
3738 
3739 	TAILQ_FOREACH(it, filter_list, entries) {
3740 		if (memcmp(key, &it->filter_info,
3741 			sizeof(struct e1000_2tuple_filter_info)) == 0) {
3742 			return it;
3743 		}
3744 	}
3745 	return NULL;
3746 }
3747 
3748 /* inject a igb 2tuple filter to HW */
3749 static inline void
3750 igb_inject_2uple_filter(struct rte_eth_dev *dev,
3751 			   struct e1000_2tuple_filter *filter)
3752 {
3753 	struct e1000_hw *hw = E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3754 	uint32_t ttqf = E1000_TTQF_DISABLE_MASK;
3755 	uint32_t imir, imir_ext = E1000_IMIREXT_SIZE_BP;
3756 	int i;
3757 
3758 	i = filter->index;
3759 	imir = (uint32_t)(filter->filter_info.dst_port & E1000_IMIR_DSTPORT);
3760 	if (filter->filter_info.dst_port_mask == 1) /* 1b means not compare. */
3761 		imir |= E1000_IMIR_PORT_BP;
3762 	else
3763 		imir &= ~E1000_IMIR_PORT_BP;
3764 
3765 	imir |= filter->filter_info.priority << E1000_IMIR_PRIORITY_SHIFT;
3766 
3767 	ttqf |= E1000_TTQF_QUEUE_ENABLE;
3768 	ttqf |= (uint32_t)(filter->queue << E1000_TTQF_QUEUE_SHIFT);
3769 	ttqf |= (uint32_t)(filter->filter_info.proto &
3770 						E1000_TTQF_PROTOCOL_MASK);
3771 	if (filter->filter_info.proto_mask == 0)
3772 		ttqf &= ~E1000_TTQF_MASK_ENABLE;
3773 
3774 	/* tcp flags bits setting. */
3775 	if (filter->filter_info.tcp_flags & RTE_NTUPLE_TCP_FLAGS_MASK) {
3776 		if (filter->filter_info.tcp_flags & RTE_TCP_URG_FLAG)
3777 			imir_ext |= E1000_IMIREXT_CTRL_URG;
3778 		if (filter->filter_info.tcp_flags & RTE_TCP_ACK_FLAG)
3779 			imir_ext |= E1000_IMIREXT_CTRL_ACK;
3780 		if (filter->filter_info.tcp_flags & RTE_TCP_PSH_FLAG)
3781 			imir_ext |= E1000_IMIREXT_CTRL_PSH;
3782 		if (filter->filter_info.tcp_flags & RTE_TCP_RST_FLAG)
3783 			imir_ext |= E1000_IMIREXT_CTRL_RST;
3784 		if (filter->filter_info.tcp_flags & RTE_TCP_SYN_FLAG)
3785 			imir_ext |= E1000_IMIREXT_CTRL_SYN;
3786 		if (filter->filter_info.tcp_flags & RTE_TCP_FIN_FLAG)
3787 			imir_ext |= E1000_IMIREXT_CTRL_FIN;
3788 	} else {
3789 		imir_ext |= E1000_IMIREXT_CTRL_BP;
3790 	}
3791 	E1000_WRITE_REG(hw, E1000_IMIR(i), imir);
3792 	E1000_WRITE_REG(hw, E1000_TTQF(i), ttqf);
3793 	E1000_WRITE_REG(hw, E1000_IMIREXT(i), imir_ext);
3794 }
3795 
3796 /*
3797  * igb_add_2tuple_filter - add a 2tuple filter
3798  *
3799  * @param
3800  * dev: Pointer to struct rte_eth_dev.
3801  * ntuple_filter: ponter to the filter that will be added.
3802  *
3803  * @return
3804  *    - On success, zero.
3805  *    - On failure, a negative value.
3806  */
3807 static int
3808 igb_add_2tuple_filter(struct rte_eth_dev *dev,
3809 			struct rte_eth_ntuple_filter *ntuple_filter)
3810 {
3811 	struct e1000_filter_info *filter_info =
3812 		E1000_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
3813 	struct e1000_2tuple_filter *filter;
3814 	int i, ret;
3815 
3816 	filter = rte_zmalloc("e1000_2tuple_filter",
3817 			sizeof(struct e1000_2tuple_filter), 0);
3818 	if (filter == NULL)
3819 		return -ENOMEM;
3820 
3821 	ret = ntuple_filter_to_2tuple(ntuple_filter,
3822 				      &filter->filter_info);
3823 	if (ret < 0) {
3824 		rte_free(filter);
3825 		return ret;
3826 	}
3827 	if (igb_2tuple_filter_lookup(&filter_info->twotuple_list,
3828 					 &filter->filter_info) != NULL) {
3829 		PMD_DRV_LOG(ERR, "filter exists.");
3830 		rte_free(filter);
3831 		return -EEXIST;
3832 	}
3833 	filter->queue = ntuple_filter->queue;
3834 
3835 	/*
3836 	 * look for an unused 2tuple filter index,
3837 	 * and insert the filter to list.
3838 	 */
3839 	for (i = 0; i < E1000_MAX_TTQF_FILTERS; i++) {
3840 		if (!(filter_info->twotuple_mask & (1 << i))) {
3841 			filter_info->twotuple_mask |= 1 << i;
3842 			filter->index = i;
3843 			TAILQ_INSERT_TAIL(&filter_info->twotuple_list,
3844 					  filter,
3845 					  entries);
3846 			break;
3847 		}
3848 	}
3849 	if (i >= E1000_MAX_TTQF_FILTERS) {
3850 		PMD_DRV_LOG(ERR, "2tuple filters are full.");
3851 		rte_free(filter);
3852 		return -ENOSYS;
3853 	}
3854 
3855 	igb_inject_2uple_filter(dev, filter);
3856 	return 0;
3857 }
3858 
3859 int
3860 igb_delete_2tuple_filter(struct rte_eth_dev *dev,
3861 			struct e1000_2tuple_filter *filter)
3862 {
3863 	struct e1000_hw *hw = E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3864 	struct e1000_filter_info *filter_info =
3865 		E1000_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
3866 
3867 	filter_info->twotuple_mask &= ~(1 << filter->index);
3868 	TAILQ_REMOVE(&filter_info->twotuple_list, filter, entries);
3869 	rte_free(filter);
3870 
3871 	E1000_WRITE_REG(hw, E1000_TTQF(filter->index), E1000_TTQF_DISABLE_MASK);
3872 	E1000_WRITE_REG(hw, E1000_IMIR(filter->index), 0);
3873 	E1000_WRITE_REG(hw, E1000_IMIREXT(filter->index), 0);
3874 	return 0;
3875 }
3876 
3877 /*
3878  * igb_remove_2tuple_filter - remove a 2tuple filter
3879  *
3880  * @param
3881  * dev: Pointer to struct rte_eth_dev.
3882  * ntuple_filter: ponter to the filter that will be removed.
3883  *
3884  * @return
3885  *    - On success, zero.
3886  *    - On failure, a negative value.
3887  */
3888 static int
3889 igb_remove_2tuple_filter(struct rte_eth_dev *dev,
3890 			struct rte_eth_ntuple_filter *ntuple_filter)
3891 {
3892 	struct e1000_filter_info *filter_info =
3893 		E1000_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
3894 	struct e1000_2tuple_filter_info filter_2tuple;
3895 	struct e1000_2tuple_filter *filter;
3896 	int ret;
3897 
3898 	memset(&filter_2tuple, 0, sizeof(struct e1000_2tuple_filter_info));
3899 	ret = ntuple_filter_to_2tuple(ntuple_filter,
3900 				      &filter_2tuple);
3901 	if (ret < 0)
3902 		return ret;
3903 
3904 	filter = igb_2tuple_filter_lookup(&filter_info->twotuple_list,
3905 					 &filter_2tuple);
3906 	if (filter == NULL) {
3907 		PMD_DRV_LOG(ERR, "filter doesn't exist.");
3908 		return -ENOENT;
3909 	}
3910 
3911 	igb_delete_2tuple_filter(dev, filter);
3912 
3913 	return 0;
3914 }
3915 
3916 /* inject a igb flex filter to HW */
3917 static inline void
3918 igb_inject_flex_filter(struct rte_eth_dev *dev,
3919 			   struct e1000_flex_filter *filter)
3920 {
3921 	struct e1000_hw *hw = E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3922 	uint32_t wufc, queueing;
3923 	uint32_t reg_off;
3924 	uint8_t i, j = 0;
3925 
3926 	wufc = E1000_READ_REG(hw, E1000_WUFC);
3927 	if (filter->index < E1000_MAX_FHFT)
3928 		reg_off = E1000_FHFT(filter->index);
3929 	else
3930 		reg_off = E1000_FHFT_EXT(filter->index - E1000_MAX_FHFT);
3931 
3932 	E1000_WRITE_REG(hw, E1000_WUFC, wufc | E1000_WUFC_FLEX_HQ |
3933 			(E1000_WUFC_FLX0 << filter->index));
3934 	queueing = filter->filter_info.len |
3935 		(filter->queue << E1000_FHFT_QUEUEING_QUEUE_SHIFT) |
3936 		(filter->filter_info.priority <<
3937 			E1000_FHFT_QUEUEING_PRIO_SHIFT);
3938 	E1000_WRITE_REG(hw, reg_off + E1000_FHFT_QUEUEING_OFFSET,
3939 			queueing);
3940 
3941 	for (i = 0; i < E1000_FLEX_FILTERS_MASK_SIZE; i++) {
3942 		E1000_WRITE_REG(hw, reg_off,
3943 				filter->filter_info.dwords[j]);
3944 		reg_off += sizeof(uint32_t);
3945 		E1000_WRITE_REG(hw, reg_off,
3946 				filter->filter_info.dwords[++j]);
3947 		reg_off += sizeof(uint32_t);
3948 		E1000_WRITE_REG(hw, reg_off,
3949 			(uint32_t)filter->filter_info.mask[i]);
3950 		reg_off += sizeof(uint32_t) * 2;
3951 		++j;
3952 	}
3953 }
3954 
3955 static inline struct e1000_flex_filter *
3956 eth_igb_flex_filter_lookup(struct e1000_flex_filter_list *filter_list,
3957 			struct e1000_flex_filter_info *key)
3958 {
3959 	struct e1000_flex_filter *it;
3960 
3961 	TAILQ_FOREACH(it, filter_list, entries) {
3962 		if (memcmp(key, &it->filter_info,
3963 			sizeof(struct e1000_flex_filter_info)) == 0)
3964 			return it;
3965 	}
3966 
3967 	return NULL;
3968 }
3969 
3970 /* remove a flex byte filter
3971  * @param
3972  * dev: Pointer to struct rte_eth_dev.
3973  * filter: the pointer of the filter will be removed.
3974  */
3975 void
3976 igb_remove_flex_filter(struct rte_eth_dev *dev,
3977 			struct e1000_flex_filter *filter)
3978 {
3979 	struct e1000_filter_info *filter_info =
3980 		E1000_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
3981 	struct e1000_hw *hw = E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3982 	uint32_t wufc, i;
3983 	uint32_t reg_off;
3984 
3985 	wufc = E1000_READ_REG(hw, E1000_WUFC);
3986 	if (filter->index < E1000_MAX_FHFT)
3987 		reg_off = E1000_FHFT(filter->index);
3988 	else
3989 		reg_off = E1000_FHFT_EXT(filter->index - E1000_MAX_FHFT);
3990 
3991 	for (i = 0; i < E1000_FHFT_SIZE_IN_DWD; i++)
3992 		E1000_WRITE_REG(hw, reg_off + i * sizeof(uint32_t), 0);
3993 
3994 	E1000_WRITE_REG(hw, E1000_WUFC, wufc &
3995 		(~(E1000_WUFC_FLX0 << filter->index)));
3996 
3997 	filter_info->flex_mask &= ~(1 << filter->index);
3998 	TAILQ_REMOVE(&filter_info->flex_list, filter, entries);
3999 	rte_free(filter);
4000 }
4001 
4002 int
4003 eth_igb_add_del_flex_filter(struct rte_eth_dev *dev,
4004 			struct igb_flex_filter *filter,
4005 			bool add)
4006 {
4007 	struct e1000_filter_info *filter_info =
4008 		E1000_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
4009 	struct e1000_flex_filter *flex_filter, *it;
4010 	uint32_t mask;
4011 	uint8_t shift, i;
4012 
4013 	flex_filter = rte_zmalloc("e1000_flex_filter",
4014 			sizeof(struct e1000_flex_filter), 0);
4015 	if (flex_filter == NULL)
4016 		return -ENOMEM;
4017 
4018 	flex_filter->filter_info.len = filter->len;
4019 	flex_filter->filter_info.priority = filter->priority;
4020 	memcpy(flex_filter->filter_info.dwords, filter->bytes, filter->len);
4021 	for (i = 0; i < RTE_ALIGN(filter->len, CHAR_BIT) / CHAR_BIT; i++) {
4022 		mask = 0;
4023 		/* reverse bits in flex filter's mask*/
4024 		for (shift = 0; shift < CHAR_BIT; shift++) {
4025 			if (filter->mask[i] & (0x01 << shift))
4026 				mask |= (0x80 >> shift);
4027 		}
4028 		flex_filter->filter_info.mask[i] = mask;
4029 	}
4030 
4031 	it = eth_igb_flex_filter_lookup(&filter_info->flex_list,
4032 				&flex_filter->filter_info);
4033 	if (it == NULL && !add) {
4034 		PMD_DRV_LOG(ERR, "filter doesn't exist.");
4035 		rte_free(flex_filter);
4036 		return -ENOENT;
4037 	}
4038 	if (it != NULL && add) {
4039 		PMD_DRV_LOG(ERR, "filter exists.");
4040 		rte_free(flex_filter);
4041 		return -EEXIST;
4042 	}
4043 
4044 	if (add) {
4045 		flex_filter->queue = filter->queue;
4046 		/*
4047 		 * look for an unused flex filter index
4048 		 * and insert the filter into the list.
4049 		 */
4050 		for (i = 0; i < E1000_MAX_FLEX_FILTERS; i++) {
4051 			if (!(filter_info->flex_mask & (1 << i))) {
4052 				filter_info->flex_mask |= 1 << i;
4053 				flex_filter->index = i;
4054 				TAILQ_INSERT_TAIL(&filter_info->flex_list,
4055 					flex_filter,
4056 					entries);
4057 				break;
4058 			}
4059 		}
4060 		if (i >= E1000_MAX_FLEX_FILTERS) {
4061 			PMD_DRV_LOG(ERR, "flex filters are full.");
4062 			rte_free(flex_filter);
4063 			return -ENOSYS;
4064 		}
4065 
4066 		igb_inject_flex_filter(dev, flex_filter);
4067 
4068 	} else {
4069 		igb_remove_flex_filter(dev, it);
4070 		rte_free(flex_filter);
4071 	}
4072 
4073 	return 0;
4074 }
4075 
4076 /* translate elements in struct rte_eth_ntuple_filter to struct e1000_5tuple_filter_info*/
4077 static inline int
4078 ntuple_filter_to_5tuple_82576(struct rte_eth_ntuple_filter *filter,
4079 			struct e1000_5tuple_filter_info *filter_info)
4080 {
4081 	if (filter->queue >= IGB_MAX_RX_QUEUE_NUM_82576)
4082 		return -EINVAL;
4083 	if (filter->priority > E1000_2TUPLE_MAX_PRI)
4084 		return -EINVAL;  /* filter index is out of range. */
4085 	if (filter->tcp_flags > RTE_NTUPLE_TCP_FLAGS_MASK)
4086 		return -EINVAL;  /* flags is invalid. */
4087 
4088 	switch (filter->dst_ip_mask) {
4089 	case UINT32_MAX:
4090 		filter_info->dst_ip_mask = 0;
4091 		filter_info->dst_ip = filter->dst_ip;
4092 		break;
4093 	case 0:
4094 		filter_info->dst_ip_mask = 1;
4095 		break;
4096 	default:
4097 		PMD_DRV_LOG(ERR, "invalid dst_ip mask.");
4098 		return -EINVAL;
4099 	}
4100 
4101 	switch (filter->src_ip_mask) {
4102 	case UINT32_MAX:
4103 		filter_info->src_ip_mask = 0;
4104 		filter_info->src_ip = filter->src_ip;
4105 		break;
4106 	case 0:
4107 		filter_info->src_ip_mask = 1;
4108 		break;
4109 	default:
4110 		PMD_DRV_LOG(ERR, "invalid src_ip mask.");
4111 		return -EINVAL;
4112 	}
4113 
4114 	switch (filter->dst_port_mask) {
4115 	case UINT16_MAX:
4116 		filter_info->dst_port_mask = 0;
4117 		filter_info->dst_port = filter->dst_port;
4118 		break;
4119 	case 0:
4120 		filter_info->dst_port_mask = 1;
4121 		break;
4122 	default:
4123 		PMD_DRV_LOG(ERR, "invalid dst_port mask.");
4124 		return -EINVAL;
4125 	}
4126 
4127 	switch (filter->src_port_mask) {
4128 	case UINT16_MAX:
4129 		filter_info->src_port_mask = 0;
4130 		filter_info->src_port = filter->src_port;
4131 		break;
4132 	case 0:
4133 		filter_info->src_port_mask = 1;
4134 		break;
4135 	default:
4136 		PMD_DRV_LOG(ERR, "invalid src_port mask.");
4137 		return -EINVAL;
4138 	}
4139 
4140 	switch (filter->proto_mask) {
4141 	case UINT8_MAX:
4142 		filter_info->proto_mask = 0;
4143 		filter_info->proto = filter->proto;
4144 		break;
4145 	case 0:
4146 		filter_info->proto_mask = 1;
4147 		break;
4148 	default:
4149 		PMD_DRV_LOG(ERR, "invalid protocol mask.");
4150 		return -EINVAL;
4151 	}
4152 
4153 	filter_info->priority = (uint8_t)filter->priority;
4154 	if (filter->flags & RTE_NTUPLE_FLAGS_TCP_FLAG)
4155 		filter_info->tcp_flags = filter->tcp_flags;
4156 	else
4157 		filter_info->tcp_flags = 0;
4158 
4159 	return 0;
4160 }
4161 
4162 static inline struct e1000_5tuple_filter *
4163 igb_5tuple_filter_lookup_82576(struct e1000_5tuple_filter_list *filter_list,
4164 			struct e1000_5tuple_filter_info *key)
4165 {
4166 	struct e1000_5tuple_filter *it;
4167 
4168 	TAILQ_FOREACH(it, filter_list, entries) {
4169 		if (memcmp(key, &it->filter_info,
4170 			sizeof(struct e1000_5tuple_filter_info)) == 0) {
4171 			return it;
4172 		}
4173 	}
4174 	return NULL;
4175 }
4176 
4177 /* inject a igb 5-tuple filter to HW */
4178 static inline void
4179 igb_inject_5tuple_filter_82576(struct rte_eth_dev *dev,
4180 			   struct e1000_5tuple_filter *filter)
4181 {
4182 	struct e1000_hw *hw = E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4183 	uint32_t ftqf = E1000_FTQF_VF_BP | E1000_FTQF_MASK;
4184 	uint32_t spqf, imir, imir_ext = E1000_IMIREXT_SIZE_BP;
4185 	uint8_t i;
4186 
4187 	i = filter->index;
4188 	ftqf |= filter->filter_info.proto & E1000_FTQF_PROTOCOL_MASK;
4189 	if (filter->filter_info.src_ip_mask == 0) /* 0b means compare. */
4190 		ftqf &= ~E1000_FTQF_MASK_SOURCE_ADDR_BP;
4191 	if (filter->filter_info.dst_ip_mask == 0)
4192 		ftqf &= ~E1000_FTQF_MASK_DEST_ADDR_BP;
4193 	if (filter->filter_info.src_port_mask == 0)
4194 		ftqf &= ~E1000_FTQF_MASK_SOURCE_PORT_BP;
4195 	if (filter->filter_info.proto_mask == 0)
4196 		ftqf &= ~E1000_FTQF_MASK_PROTO_BP;
4197 	ftqf |= (filter->queue << E1000_FTQF_QUEUE_SHIFT) &
4198 		E1000_FTQF_QUEUE_MASK;
4199 	ftqf |= E1000_FTQF_QUEUE_ENABLE;
4200 	E1000_WRITE_REG(hw, E1000_FTQF(i), ftqf);
4201 	E1000_WRITE_REG(hw, E1000_DAQF(i), filter->filter_info.dst_ip);
4202 	E1000_WRITE_REG(hw, E1000_SAQF(i), filter->filter_info.src_ip);
4203 
4204 	spqf = filter->filter_info.src_port & E1000_SPQF_SRCPORT;
4205 	E1000_WRITE_REG(hw, E1000_SPQF(i), spqf);
4206 
4207 	imir = (uint32_t)(filter->filter_info.dst_port & E1000_IMIR_DSTPORT);
4208 	if (filter->filter_info.dst_port_mask == 1) /* 1b means not compare. */
4209 		imir |= E1000_IMIR_PORT_BP;
4210 	else
4211 		imir &= ~E1000_IMIR_PORT_BP;
4212 	imir |= filter->filter_info.priority << E1000_IMIR_PRIORITY_SHIFT;
4213 
4214 	/* tcp flags bits setting. */
4215 	if (filter->filter_info.tcp_flags & RTE_NTUPLE_TCP_FLAGS_MASK) {
4216 		if (filter->filter_info.tcp_flags & RTE_TCP_URG_FLAG)
4217 			imir_ext |= E1000_IMIREXT_CTRL_URG;
4218 		if (filter->filter_info.tcp_flags & RTE_TCP_ACK_FLAG)
4219 			imir_ext |= E1000_IMIREXT_CTRL_ACK;
4220 		if (filter->filter_info.tcp_flags & RTE_TCP_PSH_FLAG)
4221 			imir_ext |= E1000_IMIREXT_CTRL_PSH;
4222 		if (filter->filter_info.tcp_flags & RTE_TCP_RST_FLAG)
4223 			imir_ext |= E1000_IMIREXT_CTRL_RST;
4224 		if (filter->filter_info.tcp_flags & RTE_TCP_SYN_FLAG)
4225 			imir_ext |= E1000_IMIREXT_CTRL_SYN;
4226 		if (filter->filter_info.tcp_flags & RTE_TCP_FIN_FLAG)
4227 			imir_ext |= E1000_IMIREXT_CTRL_FIN;
4228 	} else {
4229 		imir_ext |= E1000_IMIREXT_CTRL_BP;
4230 	}
4231 	E1000_WRITE_REG(hw, E1000_IMIR(i), imir);
4232 	E1000_WRITE_REG(hw, E1000_IMIREXT(i), imir_ext);
4233 }
4234 
4235 /*
4236  * igb_add_5tuple_filter_82576 - add a 5tuple filter
4237  *
4238  * @param
4239  * dev: Pointer to struct rte_eth_dev.
4240  * ntuple_filter: ponter to the filter that will be added.
4241  *
4242  * @return
4243  *    - On success, zero.
4244  *    - On failure, a negative value.
4245  */
4246 static int
4247 igb_add_5tuple_filter_82576(struct rte_eth_dev *dev,
4248 			struct rte_eth_ntuple_filter *ntuple_filter)
4249 {
4250 	struct e1000_filter_info *filter_info =
4251 		E1000_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
4252 	struct e1000_5tuple_filter *filter;
4253 	uint8_t i;
4254 	int ret;
4255 
4256 	filter = rte_zmalloc("e1000_5tuple_filter",
4257 			sizeof(struct e1000_5tuple_filter), 0);
4258 	if (filter == NULL)
4259 		return -ENOMEM;
4260 
4261 	ret = ntuple_filter_to_5tuple_82576(ntuple_filter,
4262 					    &filter->filter_info);
4263 	if (ret < 0) {
4264 		rte_free(filter);
4265 		return ret;
4266 	}
4267 
4268 	if (igb_5tuple_filter_lookup_82576(&filter_info->fivetuple_list,
4269 					 &filter->filter_info) != NULL) {
4270 		PMD_DRV_LOG(ERR, "filter exists.");
4271 		rte_free(filter);
4272 		return -EEXIST;
4273 	}
4274 	filter->queue = ntuple_filter->queue;
4275 
4276 	/*
4277 	 * look for an unused 5tuple filter index,
4278 	 * and insert the filter to list.
4279 	 */
4280 	for (i = 0; i < E1000_MAX_FTQF_FILTERS; i++) {
4281 		if (!(filter_info->fivetuple_mask & (1 << i))) {
4282 			filter_info->fivetuple_mask |= 1 << i;
4283 			filter->index = i;
4284 			TAILQ_INSERT_TAIL(&filter_info->fivetuple_list,
4285 					  filter,
4286 					  entries);
4287 			break;
4288 		}
4289 	}
4290 	if (i >= E1000_MAX_FTQF_FILTERS) {
4291 		PMD_DRV_LOG(ERR, "5tuple filters are full.");
4292 		rte_free(filter);
4293 		return -ENOSYS;
4294 	}
4295 
4296 	igb_inject_5tuple_filter_82576(dev, filter);
4297 	return 0;
4298 }
4299 
4300 int
4301 igb_delete_5tuple_filter_82576(struct rte_eth_dev *dev,
4302 				struct e1000_5tuple_filter *filter)
4303 {
4304 	struct e1000_hw *hw = E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4305 	struct e1000_filter_info *filter_info =
4306 		E1000_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
4307 
4308 	filter_info->fivetuple_mask &= ~(1 << filter->index);
4309 	TAILQ_REMOVE(&filter_info->fivetuple_list, filter, entries);
4310 	rte_free(filter);
4311 
4312 	E1000_WRITE_REG(hw, E1000_FTQF(filter->index),
4313 			E1000_FTQF_VF_BP | E1000_FTQF_MASK);
4314 	E1000_WRITE_REG(hw, E1000_DAQF(filter->index), 0);
4315 	E1000_WRITE_REG(hw, E1000_SAQF(filter->index), 0);
4316 	E1000_WRITE_REG(hw, E1000_SPQF(filter->index), 0);
4317 	E1000_WRITE_REG(hw, E1000_IMIR(filter->index), 0);
4318 	E1000_WRITE_REG(hw, E1000_IMIREXT(filter->index), 0);
4319 	return 0;
4320 }
4321 
4322 /*
4323  * igb_remove_5tuple_filter_82576 - remove a 5tuple filter
4324  *
4325  * @param
4326  * dev: Pointer to struct rte_eth_dev.
4327  * ntuple_filter: ponter to the filter that will be removed.
4328  *
4329  * @return
4330  *    - On success, zero.
4331  *    - On failure, a negative value.
4332  */
4333 static int
4334 igb_remove_5tuple_filter_82576(struct rte_eth_dev *dev,
4335 				struct rte_eth_ntuple_filter *ntuple_filter)
4336 {
4337 	struct e1000_filter_info *filter_info =
4338 		E1000_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
4339 	struct e1000_5tuple_filter_info filter_5tuple;
4340 	struct e1000_5tuple_filter *filter;
4341 	int ret;
4342 
4343 	memset(&filter_5tuple, 0, sizeof(struct e1000_5tuple_filter_info));
4344 	ret = ntuple_filter_to_5tuple_82576(ntuple_filter,
4345 					    &filter_5tuple);
4346 	if (ret < 0)
4347 		return ret;
4348 
4349 	filter = igb_5tuple_filter_lookup_82576(&filter_info->fivetuple_list,
4350 					 &filter_5tuple);
4351 	if (filter == NULL) {
4352 		PMD_DRV_LOG(ERR, "filter doesn't exist.");
4353 		return -ENOENT;
4354 	}
4355 
4356 	igb_delete_5tuple_filter_82576(dev, filter);
4357 
4358 	return 0;
4359 }
4360 
4361 static int
4362 eth_igb_mtu_set(struct rte_eth_dev *dev, uint16_t mtu)
4363 {
4364 	uint32_t rctl;
4365 	struct e1000_hw *hw;
4366 	struct rte_eth_dev_info dev_info;
4367 	uint32_t frame_size = mtu + E1000_ETH_OVERHEAD;
4368 	int ret;
4369 
4370 	hw = E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4371 
4372 #ifdef RTE_LIBRTE_82571_SUPPORT
4373 	/* XXX: not bigger than max_rx_pktlen */
4374 	if (hw->mac.type == e1000_82571)
4375 		return -ENOTSUP;
4376 #endif
4377 	ret = eth_igb_infos_get(dev, &dev_info);
4378 	if (ret != 0)
4379 		return ret;
4380 
4381 	/* check that mtu is within the allowed range */
4382 	if (mtu < RTE_ETHER_MIN_MTU ||
4383 			frame_size > dev_info.max_rx_pktlen)
4384 		return -EINVAL;
4385 
4386 	/*
4387 	 * If device is started, refuse mtu that requires the support of
4388 	 * scattered packets when this feature has not been enabled before.
4389 	 */
4390 	if (dev->data->dev_started && !dev->data->scattered_rx &&
4391 	    frame_size > dev->data->min_rx_buf_size - RTE_PKTMBUF_HEADROOM) {
4392 		PMD_INIT_LOG(ERR, "Stop port first.");
4393 		return -EINVAL;
4394 	}
4395 
4396 	rctl = E1000_READ_REG(hw, E1000_RCTL);
4397 
4398 	/* switch to jumbo mode if needed */
4399 	if (frame_size > E1000_ETH_MAX_LEN) {
4400 		dev->data->dev_conf.rxmode.offloads |=
4401 			DEV_RX_OFFLOAD_JUMBO_FRAME;
4402 		rctl |= E1000_RCTL_LPE;
4403 	} else {
4404 		dev->data->dev_conf.rxmode.offloads &=
4405 			~DEV_RX_OFFLOAD_JUMBO_FRAME;
4406 		rctl &= ~E1000_RCTL_LPE;
4407 	}
4408 	E1000_WRITE_REG(hw, E1000_RCTL, rctl);
4409 
4410 	/* update max frame size */
4411 	dev->data->dev_conf.rxmode.max_rx_pkt_len = frame_size;
4412 
4413 	E1000_WRITE_REG(hw, E1000_RLPML,
4414 			dev->data->dev_conf.rxmode.max_rx_pkt_len);
4415 
4416 	return 0;
4417 }
4418 
4419 /*
4420  * igb_add_del_ntuple_filter - add or delete a ntuple filter
4421  *
4422  * @param
4423  * dev: Pointer to struct rte_eth_dev.
4424  * ntuple_filter: Pointer to struct rte_eth_ntuple_filter
4425  * add: if true, add filter, if false, remove filter
4426  *
4427  * @return
4428  *    - On success, zero.
4429  *    - On failure, a negative value.
4430  */
4431 int
4432 igb_add_del_ntuple_filter(struct rte_eth_dev *dev,
4433 			struct rte_eth_ntuple_filter *ntuple_filter,
4434 			bool add)
4435 {
4436 	struct e1000_hw *hw = E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4437 	int ret;
4438 
4439 	switch (ntuple_filter->flags) {
4440 	case RTE_5TUPLE_FLAGS:
4441 	case (RTE_5TUPLE_FLAGS | RTE_NTUPLE_FLAGS_TCP_FLAG):
4442 		if (hw->mac.type != e1000_82576)
4443 			return -ENOTSUP;
4444 		if (add)
4445 			ret = igb_add_5tuple_filter_82576(dev,
4446 							  ntuple_filter);
4447 		else
4448 			ret = igb_remove_5tuple_filter_82576(dev,
4449 							     ntuple_filter);
4450 		break;
4451 	case RTE_2TUPLE_FLAGS:
4452 	case (RTE_2TUPLE_FLAGS | RTE_NTUPLE_FLAGS_TCP_FLAG):
4453 		if (hw->mac.type != e1000_82580 && hw->mac.type != e1000_i350 &&
4454 			hw->mac.type != e1000_i210 &&
4455 			hw->mac.type != e1000_i211)
4456 			return -ENOTSUP;
4457 		if (add)
4458 			ret = igb_add_2tuple_filter(dev, ntuple_filter);
4459 		else
4460 			ret = igb_remove_2tuple_filter(dev, ntuple_filter);
4461 		break;
4462 	default:
4463 		ret = -EINVAL;
4464 		break;
4465 	}
4466 
4467 	return ret;
4468 }
4469 
4470 static inline int
4471 igb_ethertype_filter_lookup(struct e1000_filter_info *filter_info,
4472 			uint16_t ethertype)
4473 {
4474 	int i;
4475 
4476 	for (i = 0; i < E1000_MAX_ETQF_FILTERS; i++) {
4477 		if (filter_info->ethertype_filters[i].ethertype == ethertype &&
4478 		    (filter_info->ethertype_mask & (1 << i)))
4479 			return i;
4480 	}
4481 	return -1;
4482 }
4483 
4484 static inline int
4485 igb_ethertype_filter_insert(struct e1000_filter_info *filter_info,
4486 			uint16_t ethertype, uint32_t etqf)
4487 {
4488 	int i;
4489 
4490 	for (i = 0; i < E1000_MAX_ETQF_FILTERS; i++) {
4491 		if (!(filter_info->ethertype_mask & (1 << i))) {
4492 			filter_info->ethertype_mask |= 1 << i;
4493 			filter_info->ethertype_filters[i].ethertype = ethertype;
4494 			filter_info->ethertype_filters[i].etqf = etqf;
4495 			return i;
4496 		}
4497 	}
4498 	return -1;
4499 }
4500 
4501 int
4502 igb_ethertype_filter_remove(struct e1000_filter_info *filter_info,
4503 			uint8_t idx)
4504 {
4505 	if (idx >= E1000_MAX_ETQF_FILTERS)
4506 		return -1;
4507 	filter_info->ethertype_mask &= ~(1 << idx);
4508 	filter_info->ethertype_filters[idx].ethertype = 0;
4509 	filter_info->ethertype_filters[idx].etqf = 0;
4510 	return idx;
4511 }
4512 
4513 
4514 int
4515 igb_add_del_ethertype_filter(struct rte_eth_dev *dev,
4516 			struct rte_eth_ethertype_filter *filter,
4517 			bool add)
4518 {
4519 	struct e1000_hw *hw = E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4520 	struct e1000_filter_info *filter_info =
4521 		E1000_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
4522 	uint32_t etqf = 0;
4523 	int ret;
4524 
4525 	if (filter->ether_type == RTE_ETHER_TYPE_IPV4 ||
4526 		filter->ether_type == RTE_ETHER_TYPE_IPV6) {
4527 		PMD_DRV_LOG(ERR, "unsupported ether_type(0x%04x) in"
4528 			" ethertype filter.", filter->ether_type);
4529 		return -EINVAL;
4530 	}
4531 
4532 	if (filter->flags & RTE_ETHTYPE_FLAGS_MAC) {
4533 		PMD_DRV_LOG(ERR, "mac compare is unsupported.");
4534 		return -EINVAL;
4535 	}
4536 	if (filter->flags & RTE_ETHTYPE_FLAGS_DROP) {
4537 		PMD_DRV_LOG(ERR, "drop option is unsupported.");
4538 		return -EINVAL;
4539 	}
4540 
4541 	ret = igb_ethertype_filter_lookup(filter_info, filter->ether_type);
4542 	if (ret >= 0 && add) {
4543 		PMD_DRV_LOG(ERR, "ethertype (0x%04x) filter exists.",
4544 			    filter->ether_type);
4545 		return -EEXIST;
4546 	}
4547 	if (ret < 0 && !add) {
4548 		PMD_DRV_LOG(ERR, "ethertype (0x%04x) filter doesn't exist.",
4549 			    filter->ether_type);
4550 		return -ENOENT;
4551 	}
4552 
4553 	if (add) {
4554 		etqf |= E1000_ETQF_FILTER_ENABLE | E1000_ETQF_QUEUE_ENABLE;
4555 		etqf |= (uint32_t)(filter->ether_type & E1000_ETQF_ETHERTYPE);
4556 		etqf |= filter->queue << E1000_ETQF_QUEUE_SHIFT;
4557 		ret = igb_ethertype_filter_insert(filter_info,
4558 				filter->ether_type, etqf);
4559 		if (ret < 0) {
4560 			PMD_DRV_LOG(ERR, "ethertype filters are full.");
4561 			return -ENOSYS;
4562 		}
4563 	} else {
4564 		ret = igb_ethertype_filter_remove(filter_info, (uint8_t)ret);
4565 		if (ret < 0)
4566 			return -ENOSYS;
4567 	}
4568 	E1000_WRITE_REG(hw, E1000_ETQF(ret), etqf);
4569 	E1000_WRITE_FLUSH(hw);
4570 
4571 	return 0;
4572 }
4573 
4574 static int
4575 eth_igb_flow_ops_get(struct rte_eth_dev *dev __rte_unused,
4576 		     const struct rte_flow_ops **ops)
4577 {
4578 	*ops = &igb_flow_ops;
4579 	return 0;
4580 }
4581 
4582 static int
4583 eth_igb_set_mc_addr_list(struct rte_eth_dev *dev,
4584 			 struct rte_ether_addr *mc_addr_set,
4585 			 uint32_t nb_mc_addr)
4586 {
4587 	struct e1000_hw *hw;
4588 
4589 	hw = E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4590 	e1000_update_mc_addr_list(hw, (u8 *)mc_addr_set, nb_mc_addr);
4591 	return 0;
4592 }
4593 
4594 static uint64_t
4595 igb_read_systime_cyclecounter(struct rte_eth_dev *dev)
4596 {
4597 	struct e1000_hw *hw = E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4598 	uint64_t systime_cycles;
4599 
4600 	switch (hw->mac.type) {
4601 	case e1000_i210:
4602 	case e1000_i211:
4603 		/*
4604 		 * Need to read System Time Residue Register to be able
4605 		 * to read the other two registers.
4606 		 */
4607 		E1000_READ_REG(hw, E1000_SYSTIMR);
4608 		/* SYSTIMEL stores ns and SYSTIMEH stores seconds. */
4609 		systime_cycles = (uint64_t)E1000_READ_REG(hw, E1000_SYSTIML);
4610 		systime_cycles += (uint64_t)E1000_READ_REG(hw, E1000_SYSTIMH)
4611 				* NSEC_PER_SEC;
4612 		break;
4613 	case e1000_82580:
4614 	case e1000_i350:
4615 	case e1000_i354:
4616 		/*
4617 		 * Need to read System Time Residue Register to be able
4618 		 * to read the other two registers.
4619 		 */
4620 		E1000_READ_REG(hw, E1000_SYSTIMR);
4621 		systime_cycles = (uint64_t)E1000_READ_REG(hw, E1000_SYSTIML);
4622 		/* Only the 8 LSB are valid. */
4623 		systime_cycles |= (uint64_t)(E1000_READ_REG(hw, E1000_SYSTIMH)
4624 				& 0xff) << 32;
4625 		break;
4626 	default:
4627 		systime_cycles = (uint64_t)E1000_READ_REG(hw, E1000_SYSTIML);
4628 		systime_cycles |= (uint64_t)E1000_READ_REG(hw, E1000_SYSTIMH)
4629 				<< 32;
4630 		break;
4631 	}
4632 
4633 	return systime_cycles;
4634 }
4635 
4636 static uint64_t
4637 igb_read_rx_tstamp_cyclecounter(struct rte_eth_dev *dev)
4638 {
4639 	struct e1000_hw *hw = E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4640 	uint64_t rx_tstamp_cycles;
4641 
4642 	switch (hw->mac.type) {
4643 	case e1000_i210:
4644 	case e1000_i211:
4645 		/* RXSTMPL stores ns and RXSTMPH stores seconds. */
4646 		rx_tstamp_cycles = (uint64_t)E1000_READ_REG(hw, E1000_RXSTMPL);
4647 		rx_tstamp_cycles += (uint64_t)E1000_READ_REG(hw, E1000_RXSTMPH)
4648 				* NSEC_PER_SEC;
4649 		break;
4650 	case e1000_82580:
4651 	case e1000_i350:
4652 	case e1000_i354:
4653 		rx_tstamp_cycles = (uint64_t)E1000_READ_REG(hw, E1000_RXSTMPL);
4654 		/* Only the 8 LSB are valid. */
4655 		rx_tstamp_cycles |= (uint64_t)(E1000_READ_REG(hw, E1000_RXSTMPH)
4656 				& 0xff) << 32;
4657 		break;
4658 	default:
4659 		rx_tstamp_cycles = (uint64_t)E1000_READ_REG(hw, E1000_RXSTMPL);
4660 		rx_tstamp_cycles |= (uint64_t)E1000_READ_REG(hw, E1000_RXSTMPH)
4661 				<< 32;
4662 		break;
4663 	}
4664 
4665 	return rx_tstamp_cycles;
4666 }
4667 
4668 static uint64_t
4669 igb_read_tx_tstamp_cyclecounter(struct rte_eth_dev *dev)
4670 {
4671 	struct e1000_hw *hw = E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4672 	uint64_t tx_tstamp_cycles;
4673 
4674 	switch (hw->mac.type) {
4675 	case e1000_i210:
4676 	case e1000_i211:
4677 		/* RXSTMPL stores ns and RXSTMPH stores seconds. */
4678 		tx_tstamp_cycles = (uint64_t)E1000_READ_REG(hw, E1000_TXSTMPL);
4679 		tx_tstamp_cycles += (uint64_t)E1000_READ_REG(hw, E1000_TXSTMPH)
4680 				* NSEC_PER_SEC;
4681 		break;
4682 	case e1000_82580:
4683 	case e1000_i350:
4684 	case e1000_i354:
4685 		tx_tstamp_cycles = (uint64_t)E1000_READ_REG(hw, E1000_TXSTMPL);
4686 		/* Only the 8 LSB are valid. */
4687 		tx_tstamp_cycles |= (uint64_t)(E1000_READ_REG(hw, E1000_TXSTMPH)
4688 				& 0xff) << 32;
4689 		break;
4690 	default:
4691 		tx_tstamp_cycles = (uint64_t)E1000_READ_REG(hw, E1000_TXSTMPL);
4692 		tx_tstamp_cycles |= (uint64_t)E1000_READ_REG(hw, E1000_TXSTMPH)
4693 				<< 32;
4694 		break;
4695 	}
4696 
4697 	return tx_tstamp_cycles;
4698 }
4699 
4700 static void
4701 igb_start_timecounters(struct rte_eth_dev *dev)
4702 {
4703 	struct e1000_hw *hw = E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4704 	struct e1000_adapter *adapter = dev->data->dev_private;
4705 	uint32_t incval = 1;
4706 	uint32_t shift = 0;
4707 	uint64_t mask = E1000_CYCLECOUNTER_MASK;
4708 
4709 	switch (hw->mac.type) {
4710 	case e1000_82580:
4711 	case e1000_i350:
4712 	case e1000_i354:
4713 		/* 32 LSB bits + 8 MSB bits = 40 bits */
4714 		mask = (1ULL << 40) - 1;
4715 		/* fall-through */
4716 	case e1000_i210:
4717 	case e1000_i211:
4718 		/*
4719 		 * Start incrementing the register
4720 		 * used to timestamp PTP packets.
4721 		 */
4722 		E1000_WRITE_REG(hw, E1000_TIMINCA, incval);
4723 		break;
4724 	case e1000_82576:
4725 		incval = E1000_INCVALUE_82576;
4726 		shift = IGB_82576_TSYNC_SHIFT;
4727 		E1000_WRITE_REG(hw, E1000_TIMINCA,
4728 				E1000_INCPERIOD_82576 | incval);
4729 		break;
4730 	default:
4731 		/* Not supported */
4732 		return;
4733 	}
4734 
4735 	memset(&adapter->systime_tc, 0, sizeof(struct rte_timecounter));
4736 	memset(&adapter->rx_tstamp_tc, 0, sizeof(struct rte_timecounter));
4737 	memset(&adapter->tx_tstamp_tc, 0, sizeof(struct rte_timecounter));
4738 
4739 	adapter->systime_tc.cc_mask = mask;
4740 	adapter->systime_tc.cc_shift = shift;
4741 	adapter->systime_tc.nsec_mask = (1ULL << shift) - 1;
4742 
4743 	adapter->rx_tstamp_tc.cc_mask = mask;
4744 	adapter->rx_tstamp_tc.cc_shift = shift;
4745 	adapter->rx_tstamp_tc.nsec_mask = (1ULL << shift) - 1;
4746 
4747 	adapter->tx_tstamp_tc.cc_mask = mask;
4748 	adapter->tx_tstamp_tc.cc_shift = shift;
4749 	adapter->tx_tstamp_tc.nsec_mask = (1ULL << shift) - 1;
4750 }
4751 
4752 static int
4753 igb_timesync_adjust_time(struct rte_eth_dev *dev, int64_t delta)
4754 {
4755 	struct e1000_adapter *adapter = dev->data->dev_private;
4756 
4757 	adapter->systime_tc.nsec += delta;
4758 	adapter->rx_tstamp_tc.nsec += delta;
4759 	adapter->tx_tstamp_tc.nsec += delta;
4760 
4761 	return 0;
4762 }
4763 
4764 static int
4765 igb_timesync_write_time(struct rte_eth_dev *dev, const struct timespec *ts)
4766 {
4767 	uint64_t ns;
4768 	struct e1000_adapter *adapter = dev->data->dev_private;
4769 
4770 	ns = rte_timespec_to_ns(ts);
4771 
4772 	/* Set the timecounters to a new value. */
4773 	adapter->systime_tc.nsec = ns;
4774 	adapter->rx_tstamp_tc.nsec = ns;
4775 	adapter->tx_tstamp_tc.nsec = ns;
4776 
4777 	return 0;
4778 }
4779 
4780 static int
4781 igb_timesync_read_time(struct rte_eth_dev *dev, struct timespec *ts)
4782 {
4783 	uint64_t ns, systime_cycles;
4784 	struct e1000_adapter *adapter = dev->data->dev_private;
4785 
4786 	systime_cycles = igb_read_systime_cyclecounter(dev);
4787 	ns = rte_timecounter_update(&adapter->systime_tc, systime_cycles);
4788 	*ts = rte_ns_to_timespec(ns);
4789 
4790 	return 0;
4791 }
4792 
4793 static int
4794 igb_timesync_enable(struct rte_eth_dev *dev)
4795 {
4796 	struct e1000_hw *hw = E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4797 	uint32_t tsync_ctl;
4798 	uint32_t tsauxc;
4799 
4800 	/* Stop the timesync system time. */
4801 	E1000_WRITE_REG(hw, E1000_TIMINCA, 0x0);
4802 	/* Reset the timesync system time value. */
4803 	switch (hw->mac.type) {
4804 	case e1000_82580:
4805 	case e1000_i350:
4806 	case e1000_i354:
4807 	case e1000_i210:
4808 	case e1000_i211:
4809 		E1000_WRITE_REG(hw, E1000_SYSTIMR, 0x0);
4810 		/* fall-through */
4811 	case e1000_82576:
4812 		E1000_WRITE_REG(hw, E1000_SYSTIML, 0x0);
4813 		E1000_WRITE_REG(hw, E1000_SYSTIMH, 0x0);
4814 		break;
4815 	default:
4816 		/* Not supported. */
4817 		return -ENOTSUP;
4818 	}
4819 
4820 	/* Enable system time for it isn't on by default. */
4821 	tsauxc = E1000_READ_REG(hw, E1000_TSAUXC);
4822 	tsauxc &= ~E1000_TSAUXC_DISABLE_SYSTIME;
4823 	E1000_WRITE_REG(hw, E1000_TSAUXC, tsauxc);
4824 
4825 	igb_start_timecounters(dev);
4826 
4827 	/* Enable L2 filtering of IEEE1588/802.1AS Ethernet frame types. */
4828 	E1000_WRITE_REG(hw, E1000_ETQF(E1000_ETQF_FILTER_1588),
4829 			(RTE_ETHER_TYPE_1588 |
4830 			 E1000_ETQF_FILTER_ENABLE |
4831 			 E1000_ETQF_1588));
4832 
4833 	/* Enable timestamping of received PTP packets. */
4834 	tsync_ctl = E1000_READ_REG(hw, E1000_TSYNCRXCTL);
4835 	tsync_ctl |= E1000_TSYNCRXCTL_ENABLED;
4836 	E1000_WRITE_REG(hw, E1000_TSYNCRXCTL, tsync_ctl);
4837 
4838 	/* Enable Timestamping of transmitted PTP packets. */
4839 	tsync_ctl = E1000_READ_REG(hw, E1000_TSYNCTXCTL);
4840 	tsync_ctl |= E1000_TSYNCTXCTL_ENABLED;
4841 	E1000_WRITE_REG(hw, E1000_TSYNCTXCTL, tsync_ctl);
4842 
4843 	return 0;
4844 }
4845 
4846 static int
4847 igb_timesync_disable(struct rte_eth_dev *dev)
4848 {
4849 	struct e1000_hw *hw = E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4850 	uint32_t tsync_ctl;
4851 
4852 	/* Disable timestamping of transmitted PTP packets. */
4853 	tsync_ctl = E1000_READ_REG(hw, E1000_TSYNCTXCTL);
4854 	tsync_ctl &= ~E1000_TSYNCTXCTL_ENABLED;
4855 	E1000_WRITE_REG(hw, E1000_TSYNCTXCTL, tsync_ctl);
4856 
4857 	/* Disable timestamping of received PTP packets. */
4858 	tsync_ctl = E1000_READ_REG(hw, E1000_TSYNCRXCTL);
4859 	tsync_ctl &= ~E1000_TSYNCRXCTL_ENABLED;
4860 	E1000_WRITE_REG(hw, E1000_TSYNCRXCTL, tsync_ctl);
4861 
4862 	/* Disable L2 filtering of IEEE1588/802.1AS Ethernet frame types. */
4863 	E1000_WRITE_REG(hw, E1000_ETQF(E1000_ETQF_FILTER_1588), 0);
4864 
4865 	/* Stop incrementating the System Time registers. */
4866 	E1000_WRITE_REG(hw, E1000_TIMINCA, 0);
4867 
4868 	return 0;
4869 }
4870 
4871 static int
4872 igb_timesync_read_rx_timestamp(struct rte_eth_dev *dev,
4873 			       struct timespec *timestamp,
4874 			       uint32_t flags __rte_unused)
4875 {
4876 	struct e1000_hw *hw = E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4877 	struct e1000_adapter *adapter = dev->data->dev_private;
4878 	uint32_t tsync_rxctl;
4879 	uint64_t rx_tstamp_cycles;
4880 	uint64_t ns;
4881 
4882 	tsync_rxctl = E1000_READ_REG(hw, E1000_TSYNCRXCTL);
4883 	if ((tsync_rxctl & E1000_TSYNCRXCTL_VALID) == 0)
4884 		return -EINVAL;
4885 
4886 	rx_tstamp_cycles = igb_read_rx_tstamp_cyclecounter(dev);
4887 	ns = rte_timecounter_update(&adapter->rx_tstamp_tc, rx_tstamp_cycles);
4888 	*timestamp = rte_ns_to_timespec(ns);
4889 
4890 	return  0;
4891 }
4892 
4893 static int
4894 igb_timesync_read_tx_timestamp(struct rte_eth_dev *dev,
4895 			       struct timespec *timestamp)
4896 {
4897 	struct e1000_hw *hw = E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4898 	struct e1000_adapter *adapter = dev->data->dev_private;
4899 	uint32_t tsync_txctl;
4900 	uint64_t tx_tstamp_cycles;
4901 	uint64_t ns;
4902 
4903 	tsync_txctl = E1000_READ_REG(hw, E1000_TSYNCTXCTL);
4904 	if ((tsync_txctl & E1000_TSYNCTXCTL_VALID) == 0)
4905 		return -EINVAL;
4906 
4907 	tx_tstamp_cycles = igb_read_tx_tstamp_cyclecounter(dev);
4908 	ns = rte_timecounter_update(&adapter->tx_tstamp_tc, tx_tstamp_cycles);
4909 	*timestamp = rte_ns_to_timespec(ns);
4910 
4911 	return  0;
4912 }
4913 
4914 static int
4915 eth_igb_get_reg_length(struct rte_eth_dev *dev __rte_unused)
4916 {
4917 	int count = 0;
4918 	int g_ind = 0;
4919 	const struct reg_info *reg_group;
4920 
4921 	while ((reg_group = igb_regs[g_ind++]))
4922 		count += igb_reg_group_count(reg_group);
4923 
4924 	return count;
4925 }
4926 
4927 static int
4928 igbvf_get_reg_length(struct rte_eth_dev *dev __rte_unused)
4929 {
4930 	int count = 0;
4931 	int g_ind = 0;
4932 	const struct reg_info *reg_group;
4933 
4934 	while ((reg_group = igbvf_regs[g_ind++]))
4935 		count += igb_reg_group_count(reg_group);
4936 
4937 	return count;
4938 }
4939 
4940 static int
4941 eth_igb_get_regs(struct rte_eth_dev *dev,
4942 	struct rte_dev_reg_info *regs)
4943 {
4944 	struct e1000_hw *hw = E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4945 	uint32_t *data = regs->data;
4946 	int g_ind = 0;
4947 	int count = 0;
4948 	const struct reg_info *reg_group;
4949 
4950 	if (data == NULL) {
4951 		regs->length = eth_igb_get_reg_length(dev);
4952 		regs->width = sizeof(uint32_t);
4953 		return 0;
4954 	}
4955 
4956 	/* Support only full register dump */
4957 	if ((regs->length == 0) ||
4958 	    (regs->length == (uint32_t)eth_igb_get_reg_length(dev))) {
4959 		regs->version = hw->mac.type << 24 | hw->revision_id << 16 |
4960 			hw->device_id;
4961 		while ((reg_group = igb_regs[g_ind++]))
4962 			count += igb_read_regs_group(dev, &data[count],
4963 							reg_group);
4964 		return 0;
4965 	}
4966 
4967 	return -ENOTSUP;
4968 }
4969 
4970 static int
4971 igbvf_get_regs(struct rte_eth_dev *dev,
4972 	struct rte_dev_reg_info *regs)
4973 {
4974 	struct e1000_hw *hw = E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4975 	uint32_t *data = regs->data;
4976 	int g_ind = 0;
4977 	int count = 0;
4978 	const struct reg_info *reg_group;
4979 
4980 	if (data == NULL) {
4981 		regs->length = igbvf_get_reg_length(dev);
4982 		regs->width = sizeof(uint32_t);
4983 		return 0;
4984 	}
4985 
4986 	/* Support only full register dump */
4987 	if ((regs->length == 0) ||
4988 	    (regs->length == (uint32_t)igbvf_get_reg_length(dev))) {
4989 		regs->version = hw->mac.type << 24 | hw->revision_id << 16 |
4990 			hw->device_id;
4991 		while ((reg_group = igbvf_regs[g_ind++]))
4992 			count += igb_read_regs_group(dev, &data[count],
4993 							reg_group);
4994 		return 0;
4995 	}
4996 
4997 	return -ENOTSUP;
4998 }
4999 
5000 static int
5001 eth_igb_get_eeprom_length(struct rte_eth_dev *dev)
5002 {
5003 	struct e1000_hw *hw = E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5004 
5005 	/* Return unit is byte count */
5006 	return hw->nvm.word_size * 2;
5007 }
5008 
5009 static int
5010 eth_igb_get_eeprom(struct rte_eth_dev *dev,
5011 	struct rte_dev_eeprom_info *in_eeprom)
5012 {
5013 	struct e1000_hw *hw = E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5014 	struct e1000_nvm_info *nvm = &hw->nvm;
5015 	uint16_t *data = in_eeprom->data;
5016 	int first, length;
5017 
5018 	first = in_eeprom->offset >> 1;
5019 	length = in_eeprom->length >> 1;
5020 	if ((first >= hw->nvm.word_size) ||
5021 	    ((first + length) >= hw->nvm.word_size))
5022 		return -EINVAL;
5023 
5024 	in_eeprom->magic = hw->vendor_id |
5025 		((uint32_t)hw->device_id << 16);
5026 
5027 	if ((nvm->ops.read) == NULL)
5028 		return -ENOTSUP;
5029 
5030 	return nvm->ops.read(hw, first, length, data);
5031 }
5032 
5033 static int
5034 eth_igb_set_eeprom(struct rte_eth_dev *dev,
5035 	struct rte_dev_eeprom_info *in_eeprom)
5036 {
5037 	struct e1000_hw *hw = E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5038 	struct e1000_nvm_info *nvm = &hw->nvm;
5039 	uint16_t *data = in_eeprom->data;
5040 	int first, length;
5041 
5042 	first = in_eeprom->offset >> 1;
5043 	length = in_eeprom->length >> 1;
5044 	if ((first >= hw->nvm.word_size) ||
5045 	    ((first + length) >= hw->nvm.word_size))
5046 		return -EINVAL;
5047 
5048 	in_eeprom->magic = (uint32_t)hw->vendor_id |
5049 		((uint32_t)hw->device_id << 16);
5050 
5051 	if ((nvm->ops.write) == NULL)
5052 		return -ENOTSUP;
5053 	return nvm->ops.write(hw,  first, length, data);
5054 }
5055 
5056 static int
5057 eth_igb_get_module_info(struct rte_eth_dev *dev,
5058 			struct rte_eth_dev_module_info *modinfo)
5059 {
5060 	struct e1000_hw *hw = E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5061 
5062 	uint32_t status = 0;
5063 	uint16_t sff8472_rev, addr_mode;
5064 	bool page_swap = false;
5065 
5066 	if (hw->phy.media_type == e1000_media_type_copper ||
5067 	    hw->phy.media_type == e1000_media_type_unknown)
5068 		return -EOPNOTSUPP;
5069 
5070 	/* Check whether we support SFF-8472 or not */
5071 	status = e1000_read_phy_reg_i2c(hw, IGB_SFF_8472_COMP, &sff8472_rev);
5072 	if (status)
5073 		return -EIO;
5074 
5075 	/* addressing mode is not supported */
5076 	status = e1000_read_phy_reg_i2c(hw, IGB_SFF_8472_SWAP, &addr_mode);
5077 	if (status)
5078 		return -EIO;
5079 
5080 	/* addressing mode is not supported */
5081 	if ((addr_mode & 0xFF) & IGB_SFF_ADDRESSING_MODE) {
5082 		PMD_DRV_LOG(ERR,
5083 			    "Address change required to access page 0xA2, "
5084 			    "but not supported. Please report the module "
5085 			    "type to the driver maintainers.\n");
5086 		page_swap = true;
5087 	}
5088 
5089 	if ((sff8472_rev & 0xFF) == IGB_SFF_8472_UNSUP || page_swap) {
5090 		/* We have an SFP, but it does not support SFF-8472 */
5091 		modinfo->type = RTE_ETH_MODULE_SFF_8079;
5092 		modinfo->eeprom_len = RTE_ETH_MODULE_SFF_8079_LEN;
5093 	} else {
5094 		/* We have an SFP which supports a revision of SFF-8472 */
5095 		modinfo->type = RTE_ETH_MODULE_SFF_8472;
5096 		modinfo->eeprom_len = RTE_ETH_MODULE_SFF_8472_LEN;
5097 	}
5098 
5099 	return 0;
5100 }
5101 
5102 static int
5103 eth_igb_get_module_eeprom(struct rte_eth_dev *dev,
5104 			  struct rte_dev_eeprom_info *info)
5105 {
5106 	struct e1000_hw *hw = E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5107 
5108 	uint32_t status = 0;
5109 	uint16_t dataword[RTE_ETH_MODULE_SFF_8472_LEN / 2 + 1];
5110 	u16 first_word, last_word;
5111 	int i = 0;
5112 
5113 	first_word = info->offset >> 1;
5114 	last_word = (info->offset + info->length - 1) >> 1;
5115 
5116 	/* Read EEPROM block, SFF-8079/SFF-8472, word at a time */
5117 	for (i = 0; i < last_word - first_word + 1; i++) {
5118 		status = e1000_read_phy_reg_i2c(hw, (first_word + i) * 2,
5119 						&dataword[i]);
5120 		if (status) {
5121 			/* Error occurred while reading module */
5122 			return -EIO;
5123 		}
5124 
5125 		dataword[i] = rte_be_to_cpu_16(dataword[i]);
5126 	}
5127 
5128 	memcpy(info->data, (u8 *)dataword + (info->offset & 1), info->length);
5129 
5130 	return 0;
5131 }
5132 
5133 static int
5134 eth_igb_rx_queue_intr_disable(struct rte_eth_dev *dev, uint16_t queue_id)
5135 {
5136 	struct e1000_hw *hw =
5137 		E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5138 	struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
5139 	struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
5140 	uint32_t vec = E1000_MISC_VEC_ID;
5141 
5142 	if (rte_intr_allow_others(intr_handle))
5143 		vec = E1000_RX_VEC_START;
5144 
5145 	uint32_t mask = 1 << (queue_id + vec);
5146 
5147 	E1000_WRITE_REG(hw, E1000_EIMC, mask);
5148 	E1000_WRITE_FLUSH(hw);
5149 
5150 	return 0;
5151 }
5152 
5153 static int
5154 eth_igb_rx_queue_intr_enable(struct rte_eth_dev *dev, uint16_t queue_id)
5155 {
5156 	struct e1000_hw *hw =
5157 		E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5158 	struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
5159 	struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
5160 	uint32_t vec = E1000_MISC_VEC_ID;
5161 
5162 	if (rte_intr_allow_others(intr_handle))
5163 		vec = E1000_RX_VEC_START;
5164 
5165 	uint32_t mask = 1 << (queue_id + vec);
5166 	uint32_t regval;
5167 
5168 	regval = E1000_READ_REG(hw, E1000_EIMS);
5169 	E1000_WRITE_REG(hw, E1000_EIMS, regval | mask);
5170 	E1000_WRITE_FLUSH(hw);
5171 
5172 	rte_intr_ack(intr_handle);
5173 
5174 	return 0;
5175 }
5176 
5177 static void
5178 eth_igb_write_ivar(struct e1000_hw *hw, uint8_t  msix_vector,
5179 		   uint8_t index, uint8_t offset)
5180 {
5181 	uint32_t val = E1000_READ_REG_ARRAY(hw, E1000_IVAR0, index);
5182 
5183 	/* clear bits */
5184 	val &= ~((uint32_t)0xFF << offset);
5185 
5186 	/* write vector and valid bit */
5187 	val |= (msix_vector | E1000_IVAR_VALID) << offset;
5188 
5189 	E1000_WRITE_REG_ARRAY(hw, E1000_IVAR0, index, val);
5190 }
5191 
5192 static void
5193 eth_igb_assign_msix_vector(struct e1000_hw *hw, int8_t direction,
5194 			   uint8_t queue, uint8_t msix_vector)
5195 {
5196 	uint32_t tmp = 0;
5197 
5198 	if (hw->mac.type == e1000_82575) {
5199 		if (direction == 0)
5200 			tmp = E1000_EICR_RX_QUEUE0 << queue;
5201 		else if (direction == 1)
5202 			tmp = E1000_EICR_TX_QUEUE0 << queue;
5203 		E1000_WRITE_REG(hw, E1000_MSIXBM(msix_vector), tmp);
5204 	} else if (hw->mac.type == e1000_82576) {
5205 		if ((direction == 0) || (direction == 1))
5206 			eth_igb_write_ivar(hw, msix_vector, queue & 0x7,
5207 					   ((queue & 0x8) << 1) +
5208 					   8 * direction);
5209 	} else if ((hw->mac.type == e1000_82580) ||
5210 			(hw->mac.type == e1000_i350) ||
5211 			(hw->mac.type == e1000_i354) ||
5212 			(hw->mac.type == e1000_i210) ||
5213 			(hw->mac.type == e1000_i211)) {
5214 		if ((direction == 0) || (direction == 1))
5215 			eth_igb_write_ivar(hw, msix_vector,
5216 					   queue >> 1,
5217 					   ((queue & 0x1) << 4) +
5218 					   8 * direction);
5219 	}
5220 }
5221 
5222 /* Sets up the hardware to generate MSI-X interrupts properly
5223  * @hw
5224  *  board private structure
5225  */
5226 static void
5227 eth_igb_configure_msix_intr(struct rte_eth_dev *dev)
5228 {
5229 	int queue_id;
5230 	uint32_t tmpval, regval, intr_mask;
5231 	struct e1000_hw *hw =
5232 		E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5233 	uint32_t vec = E1000_MISC_VEC_ID;
5234 	uint32_t base = E1000_MISC_VEC_ID;
5235 	uint32_t misc_shift = 0;
5236 	struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
5237 	struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
5238 
5239 	/* won't configure msix register if no mapping is done
5240 	 * between intr vector and event fd
5241 	 */
5242 	if (!rte_intr_dp_is_en(intr_handle))
5243 		return;
5244 
5245 	if (rte_intr_allow_others(intr_handle)) {
5246 		vec = base = E1000_RX_VEC_START;
5247 		misc_shift = 1;
5248 	}
5249 
5250 	/* set interrupt vector for other causes */
5251 	if (hw->mac.type == e1000_82575) {
5252 		tmpval = E1000_READ_REG(hw, E1000_CTRL_EXT);
5253 		/* enable MSI-X PBA support */
5254 		tmpval |= E1000_CTRL_EXT_PBA_CLR;
5255 
5256 		/* Auto-Mask interrupts upon ICR read */
5257 		tmpval |= E1000_CTRL_EXT_EIAME;
5258 		tmpval |= E1000_CTRL_EXT_IRCA;
5259 
5260 		E1000_WRITE_REG(hw, E1000_CTRL_EXT, tmpval);
5261 
5262 		/* enable msix_other interrupt */
5263 		E1000_WRITE_REG_ARRAY(hw, E1000_MSIXBM(0), 0, E1000_EIMS_OTHER);
5264 		regval = E1000_READ_REG(hw, E1000_EIAC);
5265 		E1000_WRITE_REG(hw, E1000_EIAC, regval | E1000_EIMS_OTHER);
5266 		regval = E1000_READ_REG(hw, E1000_EIAM);
5267 		E1000_WRITE_REG(hw, E1000_EIMS, regval | E1000_EIMS_OTHER);
5268 	} else if ((hw->mac.type == e1000_82576) ||
5269 			(hw->mac.type == e1000_82580) ||
5270 			(hw->mac.type == e1000_i350) ||
5271 			(hw->mac.type == e1000_i354) ||
5272 			(hw->mac.type == e1000_i210) ||
5273 			(hw->mac.type == e1000_i211)) {
5274 		/* turn on MSI-X capability first */
5275 		E1000_WRITE_REG(hw, E1000_GPIE, E1000_GPIE_MSIX_MODE |
5276 					E1000_GPIE_PBA | E1000_GPIE_EIAME |
5277 					E1000_GPIE_NSICR);
5278 		intr_mask = RTE_LEN2MASK(intr_handle->nb_efd, uint32_t) <<
5279 			misc_shift;
5280 
5281 		if (dev->data->dev_conf.intr_conf.lsc != 0)
5282 			intr_mask |= (1 << IGB_MSIX_OTHER_INTR_VEC);
5283 
5284 		regval = E1000_READ_REG(hw, E1000_EIAC);
5285 		E1000_WRITE_REG(hw, E1000_EIAC, regval | intr_mask);
5286 
5287 		/* enable msix_other interrupt */
5288 		regval = E1000_READ_REG(hw, E1000_EIMS);
5289 		E1000_WRITE_REG(hw, E1000_EIMS, regval | intr_mask);
5290 		tmpval = (IGB_MSIX_OTHER_INTR_VEC | E1000_IVAR_VALID) << 8;
5291 		E1000_WRITE_REG(hw, E1000_IVAR_MISC, tmpval);
5292 	}
5293 
5294 	/* use EIAM to auto-mask when MSI-X interrupt
5295 	 * is asserted, this saves a register write for every interrupt
5296 	 */
5297 	intr_mask = RTE_LEN2MASK(intr_handle->nb_efd, uint32_t) <<
5298 		misc_shift;
5299 
5300 	if (dev->data->dev_conf.intr_conf.lsc != 0)
5301 		intr_mask |= (1 << IGB_MSIX_OTHER_INTR_VEC);
5302 
5303 	regval = E1000_READ_REG(hw, E1000_EIAM);
5304 	E1000_WRITE_REG(hw, E1000_EIAM, regval | intr_mask);
5305 
5306 	for (queue_id = 0; queue_id < dev->data->nb_rx_queues; queue_id++) {
5307 		eth_igb_assign_msix_vector(hw, 0, queue_id, vec);
5308 		intr_handle->intr_vec[queue_id] = vec;
5309 		if (vec < base + intr_handle->nb_efd - 1)
5310 			vec++;
5311 	}
5312 
5313 	E1000_WRITE_FLUSH(hw);
5314 }
5315 
5316 /* restore n-tuple filter */
5317 static inline void
5318 igb_ntuple_filter_restore(struct rte_eth_dev *dev)
5319 {
5320 	struct e1000_filter_info *filter_info =
5321 		E1000_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
5322 	struct e1000_5tuple_filter *p_5tuple;
5323 	struct e1000_2tuple_filter *p_2tuple;
5324 
5325 	TAILQ_FOREACH(p_5tuple, &filter_info->fivetuple_list, entries) {
5326 		igb_inject_5tuple_filter_82576(dev, p_5tuple);
5327 	}
5328 
5329 	TAILQ_FOREACH(p_2tuple, &filter_info->twotuple_list, entries) {
5330 		igb_inject_2uple_filter(dev, p_2tuple);
5331 	}
5332 }
5333 
5334 /* restore SYN filter */
5335 static inline void
5336 igb_syn_filter_restore(struct rte_eth_dev *dev)
5337 {
5338 	struct e1000_hw *hw = E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5339 	struct e1000_filter_info *filter_info =
5340 		E1000_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
5341 	uint32_t synqf;
5342 
5343 	synqf = filter_info->syn_info;
5344 
5345 	if (synqf & E1000_SYN_FILTER_ENABLE) {
5346 		E1000_WRITE_REG(hw, E1000_SYNQF(0), synqf);
5347 		E1000_WRITE_FLUSH(hw);
5348 	}
5349 }
5350 
5351 /* restore ethernet type filter */
5352 static inline void
5353 igb_ethertype_filter_restore(struct rte_eth_dev *dev)
5354 {
5355 	struct e1000_hw *hw = E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5356 	struct e1000_filter_info *filter_info =
5357 		E1000_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
5358 	int i;
5359 
5360 	for (i = 0; i < E1000_MAX_ETQF_FILTERS; i++) {
5361 		if (filter_info->ethertype_mask & (1 << i)) {
5362 			E1000_WRITE_REG(hw, E1000_ETQF(i),
5363 				filter_info->ethertype_filters[i].etqf);
5364 			E1000_WRITE_FLUSH(hw);
5365 		}
5366 	}
5367 }
5368 
5369 /* restore flex byte filter */
5370 static inline void
5371 igb_flex_filter_restore(struct rte_eth_dev *dev)
5372 {
5373 	struct e1000_filter_info *filter_info =
5374 		E1000_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
5375 	struct e1000_flex_filter *flex_filter;
5376 
5377 	TAILQ_FOREACH(flex_filter, &filter_info->flex_list, entries) {
5378 		igb_inject_flex_filter(dev, flex_filter);
5379 	}
5380 }
5381 
5382 /* restore rss filter */
5383 static inline void
5384 igb_rss_filter_restore(struct rte_eth_dev *dev)
5385 {
5386 	struct e1000_filter_info *filter_info =
5387 		E1000_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);
5388 
5389 	if (filter_info->rss_info.conf.queue_num)
5390 		igb_config_rss_filter(dev, &filter_info->rss_info, TRUE);
5391 }
5392 
5393 /* restore all types filter */
5394 static int
5395 igb_filter_restore(struct rte_eth_dev *dev)
5396 {
5397 	igb_ntuple_filter_restore(dev);
5398 	igb_ethertype_filter_restore(dev);
5399 	igb_syn_filter_restore(dev);
5400 	igb_flex_filter_restore(dev);
5401 	igb_rss_filter_restore(dev);
5402 
5403 	return 0;
5404 }
5405 
5406 RTE_PMD_REGISTER_PCI(net_e1000_igb, rte_igb_pmd);
5407 RTE_PMD_REGISTER_PCI_TABLE(net_e1000_igb, pci_id_igb_map);
5408 RTE_PMD_REGISTER_KMOD_DEP(net_e1000_igb, "* igb_uio | uio_pci_generic | vfio-pci");
5409 RTE_PMD_REGISTER_PCI(net_e1000_igb_vf, rte_igbvf_pmd);
5410 RTE_PMD_REGISTER_PCI_TABLE(net_e1000_igb_vf, pci_id_igbvf_map);
5411 RTE_PMD_REGISTER_KMOD_DEP(net_e1000_igb_vf, "* igb_uio | vfio-pci");
5412