blob: b12edbafc0e83aec08999b32cc70e5b96d6c89e6 [file] [log] [blame]
Greg Rose5eae00c2013-12-21 06:12:45 +00001/*******************************************************************************
2 *
3 * Intel Ethernet Controller XL710 Family Linux Virtual Function Driver
Catherine Sullivaneaab59e2016-01-13 16:51:44 -08004 * Copyright(c) 2013 - 2016 Intel Corporation.
Greg Rose5eae00c2013-12-21 06:12:45 +00005 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms and conditions of the GNU General Public License,
8 * version 2, as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * more details.
14 *
Jesse Brandeburgb8316072014-04-05 07:46:11 +000015 * You should have received a copy of the GNU General Public License along
16 * with this program. If not, see <http://www.gnu.org/licenses/>.
17 *
Greg Rose5eae00c2013-12-21 06:12:45 +000018 * The full GNU General Public License is included in this distribution in
19 * the file called "COPYING".
20 *
21 * Contact Information:
22 * e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
23 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
24 *
25 ******************************************************************************/
26
27#include "i40evf.h"
28#include "i40e_prototype.h"
29static int i40evf_setup_all_tx_resources(struct i40evf_adapter *adapter);
30static int i40evf_setup_all_rx_resources(struct i40evf_adapter *adapter);
31static int i40evf_close(struct net_device *netdev);
32
33char i40evf_driver_name[] = "i40evf";
34static const char i40evf_driver_string[] =
Catherine Sullivaneaab59e2016-01-13 16:51:44 -080035 "Intel(R) 40-10 Gigabit Virtual Function Network Driver";
Greg Rose5eae00c2013-12-21 06:12:45 +000036
Mitch Williams69ebe9552015-11-19 11:34:24 -080037#define DRV_KERN "-k"
38
39#define DRV_VERSION_MAJOR 1
Bimmy Pujari07061952016-05-16 10:26:45 -070040#define DRV_VERSION_MINOR 6
41#define DRV_VERSION_BUILD 4
Mitch Williams69ebe9552015-11-19 11:34:24 -080042#define DRV_VERSION __stringify(DRV_VERSION_MAJOR) "." \
43 __stringify(DRV_VERSION_MINOR) "." \
44 __stringify(DRV_VERSION_BUILD) \
45 DRV_KERN
Greg Rose5eae00c2013-12-21 06:12:45 +000046const char i40evf_driver_version[] = DRV_VERSION;
47static const char i40evf_copyright[] =
Catherine Sullivanbf418462015-07-10 19:36:10 -040048 "Copyright (c) 2013 - 2015 Intel Corporation.";
Greg Rose5eae00c2013-12-21 06:12:45 +000049
50/* i40evf_pci_tbl - PCI Device ID Table
51 *
52 * Wildcard entries (PCI_ANY_ID) should come last
53 * Last entry must be all 0s
54 *
55 * { Vendor ID, Device ID, SubVendor ID, SubDevice ID,
56 * Class, Class Mask, private data (not used) }
57 */
Benoit Taine9baa3c32014-08-08 15:56:03 +020058static const struct pci_device_id i40evf_pci_tbl[] = {
Shannon Nelsonab600852014-01-17 15:36:39 -080059 {PCI_VDEVICE(INTEL, I40E_DEV_ID_VF), 0},
Joshua Hay92871412016-06-20 09:10:37 -070060 {PCI_VDEVICE(INTEL, I40E_DEV_ID_VF_HV), 0},
Anjali Singhai Jain87e6c1d2015-06-05 12:20:25 -040061 {PCI_VDEVICE(INTEL, I40E_DEV_ID_X722_VF), 0},
Joshua Hay92871412016-06-20 09:10:37 -070062 {PCI_VDEVICE(INTEL, I40E_DEV_ID_X722_VF_HV), 0},
Greg Rose5eae00c2013-12-21 06:12:45 +000063 /* required last entry */
64 {0, }
65};
66
67MODULE_DEVICE_TABLE(pci, i40evf_pci_tbl);
68
69MODULE_AUTHOR("Intel Corporation, <linux.nics@intel.com>");
70MODULE_DESCRIPTION("Intel(R) XL710 X710 Virtual Function Network Driver");
71MODULE_LICENSE("GPL");
72MODULE_VERSION(DRV_VERSION);
73
Jesse Brandeburg2803b162015-12-22 14:25:08 -080074static struct workqueue_struct *i40evf_wq;
75
Greg Rose5eae00c2013-12-21 06:12:45 +000076/**
77 * i40evf_allocate_dma_mem_d - OS specific memory alloc for shared code
78 * @hw: pointer to the HW structure
79 * @mem: ptr to mem struct to fill out
80 * @size: size of memory requested
81 * @alignment: what to align the allocation to
82 **/
83i40e_status i40evf_allocate_dma_mem_d(struct i40e_hw *hw,
84 struct i40e_dma_mem *mem,
85 u64 size, u32 alignment)
86{
87 struct i40evf_adapter *adapter = (struct i40evf_adapter *)hw->back;
88
89 if (!mem)
90 return I40E_ERR_PARAM;
91
92 mem->size = ALIGN(size, alignment);
93 mem->va = dma_alloc_coherent(&adapter->pdev->dev, mem->size,
94 (dma_addr_t *)&mem->pa, GFP_KERNEL);
95 if (mem->va)
96 return 0;
97 else
98 return I40E_ERR_NO_MEMORY;
99}
100
101/**
102 * i40evf_free_dma_mem_d - OS specific memory free for shared code
103 * @hw: pointer to the HW structure
104 * @mem: ptr to mem struct to free
105 **/
106i40e_status i40evf_free_dma_mem_d(struct i40e_hw *hw, struct i40e_dma_mem *mem)
107{
108 struct i40evf_adapter *adapter = (struct i40evf_adapter *)hw->back;
109
110 if (!mem || !mem->va)
111 return I40E_ERR_PARAM;
112 dma_free_coherent(&adapter->pdev->dev, mem->size,
113 mem->va, (dma_addr_t)mem->pa);
114 return 0;
115}
116
117/**
118 * i40evf_allocate_virt_mem_d - OS specific memory alloc for shared code
119 * @hw: pointer to the HW structure
120 * @mem: ptr to mem struct to fill out
121 * @size: size of memory requested
122 **/
123i40e_status i40evf_allocate_virt_mem_d(struct i40e_hw *hw,
124 struct i40e_virt_mem *mem, u32 size)
125{
126 if (!mem)
127 return I40E_ERR_PARAM;
128
129 mem->size = size;
130 mem->va = kzalloc(size, GFP_KERNEL);
131
132 if (mem->va)
133 return 0;
134 else
135 return I40E_ERR_NO_MEMORY;
136}
137
138/**
139 * i40evf_free_virt_mem_d - OS specific memory free for shared code
140 * @hw: pointer to the HW structure
141 * @mem: ptr to mem struct to free
142 **/
143i40e_status i40evf_free_virt_mem_d(struct i40e_hw *hw,
144 struct i40e_virt_mem *mem)
145{
146 if (!mem)
147 return I40E_ERR_PARAM;
148
149 /* it's ok to kfree a NULL pointer */
150 kfree(mem->va);
151
152 return 0;
153}
154
155/**
156 * i40evf_debug_d - OS dependent version of debug printing
157 * @hw: pointer to the HW structure
158 * @mask: debug level mask
159 * @fmt_str: printf-type format description
160 **/
161void i40evf_debug_d(void *hw, u32 mask, char *fmt_str, ...)
162{
163 char buf[512];
164 va_list argptr;
165
166 if (!(mask & ((struct i40e_hw *)hw)->debug_mask))
167 return;
168
169 va_start(argptr, fmt_str);
170 vsnprintf(buf, sizeof(buf), fmt_str, argptr);
171 va_end(argptr);
172
173 /* the debug string is already formatted with a newline */
174 pr_info("%s", buf);
175}
176
177/**
Mitch Williams00e5ec42016-01-15 14:33:10 -0800178 * i40evf_schedule_reset - Set the flags and schedule a reset event
179 * @adapter: board private structure
180 **/
181void i40evf_schedule_reset(struct i40evf_adapter *adapter)
182{
183 if (!(adapter->flags &
184 (I40EVF_FLAG_RESET_PENDING | I40EVF_FLAG_RESET_NEEDED))) {
185 adapter->flags |= I40EVF_FLAG_RESET_NEEDED;
186 schedule_work(&adapter->reset_task);
187 }
188}
189
190/**
Greg Rose5eae00c2013-12-21 06:12:45 +0000191 * i40evf_tx_timeout - Respond to a Tx Hang
192 * @netdev: network interface device structure
193 **/
194static void i40evf_tx_timeout(struct net_device *netdev)
195{
196 struct i40evf_adapter *adapter = netdev_priv(netdev);
197
198 adapter->tx_timeout_count++;
Mitch Williams00e5ec42016-01-15 14:33:10 -0800199 i40evf_schedule_reset(adapter);
Greg Rose5eae00c2013-12-21 06:12:45 +0000200}
201
202/**
203 * i40evf_misc_irq_disable - Mask off interrupt generation on the NIC
204 * @adapter: board private structure
205 **/
206static void i40evf_misc_irq_disable(struct i40evf_adapter *adapter)
207{
208 struct i40e_hw *hw = &adapter->hw;
Mitch Williams75a64432014-11-11 20:02:42 +0000209
Greg Rose5eae00c2013-12-21 06:12:45 +0000210 wr32(hw, I40E_VFINT_DYN_CTL01, 0);
211
212 /* read flush */
213 rd32(hw, I40E_VFGEN_RSTAT);
214
215 synchronize_irq(adapter->msix_entries[0].vector);
216}
217
218/**
219 * i40evf_misc_irq_enable - Enable default interrupt generation settings
220 * @adapter: board private structure
221 **/
222static void i40evf_misc_irq_enable(struct i40evf_adapter *adapter)
223{
224 struct i40e_hw *hw = &adapter->hw;
Mitch Williams75a64432014-11-11 20:02:42 +0000225
Greg Rose5eae00c2013-12-21 06:12:45 +0000226 wr32(hw, I40E_VFINT_DYN_CTL01, I40E_VFINT_DYN_CTL01_INTENA_MASK |
227 I40E_VFINT_DYN_CTL01_ITR_INDX_MASK);
Anjali Singhai Jainb1f33662015-07-10 19:36:05 -0400228 wr32(hw, I40E_VFINT_ICR0_ENA1, I40E_VFINT_ICR0_ENA1_ADMINQ_MASK);
Greg Rose5eae00c2013-12-21 06:12:45 +0000229
230 /* read flush */
231 rd32(hw, I40E_VFGEN_RSTAT);
232}
233
234/**
235 * i40evf_irq_disable - Mask off interrupt generation on the NIC
236 * @adapter: board private structure
237 **/
238static void i40evf_irq_disable(struct i40evf_adapter *adapter)
239{
240 int i;
241 struct i40e_hw *hw = &adapter->hw;
242
Mitch Williamsdbb01c82014-02-20 19:29:07 -0800243 if (!adapter->msix_entries)
244 return;
245
Greg Rose5eae00c2013-12-21 06:12:45 +0000246 for (i = 1; i < adapter->num_msix_vectors; i++) {
247 wr32(hw, I40E_VFINT_DYN_CTLN1(i - 1), 0);
248 synchronize_irq(adapter->msix_entries[i].vector);
249 }
250 /* read flush */
251 rd32(hw, I40E_VFGEN_RSTAT);
Greg Rose5eae00c2013-12-21 06:12:45 +0000252}
253
254/**
255 * i40evf_irq_enable_queues - Enable interrupt for specified queues
256 * @adapter: board private structure
257 * @mask: bitmap of queues to enable
258 **/
259void i40evf_irq_enable_queues(struct i40evf_adapter *adapter, u32 mask)
260{
261 struct i40e_hw *hw = &adapter->hw;
262 int i;
263
264 for (i = 1; i < adapter->num_msix_vectors; i++) {
Jesse Brandeburg41a1d042015-06-04 16:24:02 -0400265 if (mask & BIT(i - 1)) {
Greg Rose5eae00c2013-12-21 06:12:45 +0000266 wr32(hw, I40E_VFINT_DYN_CTLN1(i - 1),
267 I40E_VFINT_DYN_CTLN1_INTENA_MASK |
Jesse Brandeburg97bf75f2015-02-27 09:18:32 +0000268 I40E_VFINT_DYN_CTLN1_ITR_INDX_MASK |
Anjali Singhai Jainb1f33662015-07-10 19:36:05 -0400269 I40E_VFINT_DYN_CTLN1_CLEARPBA_MASK);
Greg Rose5eae00c2013-12-21 06:12:45 +0000270 }
271 }
272}
273
274/**
275 * i40evf_fire_sw_int - Generate SW interrupt for specified vectors
276 * @adapter: board private structure
277 * @mask: bitmap of vectors to trigger
278 **/
Mitch Williams75a64432014-11-11 20:02:42 +0000279static void i40evf_fire_sw_int(struct i40evf_adapter *adapter, u32 mask)
Greg Rose5eae00c2013-12-21 06:12:45 +0000280{
281 struct i40e_hw *hw = &adapter->hw;
282 int i;
Mitch Williamsd82acb32015-11-06 15:26:06 -0800283 u32 dyn_ctl;
Greg Rose5eae00c2013-12-21 06:12:45 +0000284
Mitch Williams164ec1b2014-06-04 08:45:19 +0000285 if (mask & 1) {
286 dyn_ctl = rd32(hw, I40E_VFINT_DYN_CTL01);
Anjali Singhai Jainb1f33662015-07-10 19:36:05 -0400287 dyn_ctl |= I40E_VFINT_DYN_CTLN1_SWINT_TRIG_MASK |
Jesse Brandeburg97bf75f2015-02-27 09:18:32 +0000288 I40E_VFINT_DYN_CTLN1_ITR_INDX_MASK |
Anjali Singhai Jainb1f33662015-07-10 19:36:05 -0400289 I40E_VFINT_DYN_CTLN1_CLEARPBA_MASK;
Mitch Williams164ec1b2014-06-04 08:45:19 +0000290 wr32(hw, I40E_VFINT_DYN_CTL01, dyn_ctl);
291 }
Greg Rose5eae00c2013-12-21 06:12:45 +0000292 for (i = 1; i < adapter->num_msix_vectors; i++) {
Jesse Brandeburg41a1d042015-06-04 16:24:02 -0400293 if (mask & BIT(i)) {
Greg Rose5eae00c2013-12-21 06:12:45 +0000294 dyn_ctl = rd32(hw, I40E_VFINT_DYN_CTLN1(i - 1));
Anjali Singhai Jainb1f33662015-07-10 19:36:05 -0400295 dyn_ctl |= I40E_VFINT_DYN_CTLN1_SWINT_TRIG_MASK |
Jesse Brandeburg97bf75f2015-02-27 09:18:32 +0000296 I40E_VFINT_DYN_CTLN1_ITR_INDX_MASK |
Anjali Singhai Jainb1f33662015-07-10 19:36:05 -0400297 I40E_VFINT_DYN_CTLN1_CLEARPBA_MASK;
Greg Rose5eae00c2013-12-21 06:12:45 +0000298 wr32(hw, I40E_VFINT_DYN_CTLN1(i - 1), dyn_ctl);
299 }
300 }
301}
302
303/**
304 * i40evf_irq_enable - Enable default interrupt generation settings
305 * @adapter: board private structure
Jean Sacren69c1d702015-10-13 01:06:27 -0600306 * @flush: boolean value whether to run rd32()
Greg Rose5eae00c2013-12-21 06:12:45 +0000307 **/
308void i40evf_irq_enable(struct i40evf_adapter *adapter, bool flush)
309{
310 struct i40e_hw *hw = &adapter->hw;
311
Mitch Williams164ec1b2014-06-04 08:45:19 +0000312 i40evf_misc_irq_enable(adapter);
Greg Rose5eae00c2013-12-21 06:12:45 +0000313 i40evf_irq_enable_queues(adapter, ~0);
314
315 if (flush)
316 rd32(hw, I40E_VFGEN_RSTAT);
317}
318
319/**
320 * i40evf_msix_aq - Interrupt handler for vector 0
321 * @irq: interrupt number
322 * @data: pointer to netdev
323 **/
324static irqreturn_t i40evf_msix_aq(int irq, void *data)
325{
326 struct net_device *netdev = data;
327 struct i40evf_adapter *adapter = netdev_priv(netdev);
328 struct i40e_hw *hw = &adapter->hw;
329 u32 val;
Greg Rose5eae00c2013-12-21 06:12:45 +0000330
Jesse Brandeburgcfbe4db2015-10-04 01:09:49 -0700331 /* handle non-queue interrupts, these reads clear the registers */
332 val = rd32(hw, I40E_VFINT_ICR01);
333 val = rd32(hw, I40E_VFINT_ICR0_ENA1);
Greg Rose5eae00c2013-12-21 06:12:45 +0000334
Jean Sacrened17f7e2015-10-13 01:06:30 -0600335 val = rd32(hw, I40E_VFINT_DYN_CTL01) |
336 I40E_VFINT_DYN_CTL01_CLEARPBA_MASK;
Greg Rose5eae00c2013-12-21 06:12:45 +0000337 wr32(hw, I40E_VFINT_DYN_CTL01, val);
338
Greg Rose5eae00c2013-12-21 06:12:45 +0000339 /* schedule work on the private workqueue */
340 schedule_work(&adapter->adminq_task);
341
342 return IRQ_HANDLED;
343}
344
345/**
346 * i40evf_msix_clean_rings - MSIX mode Interrupt Handler
347 * @irq: interrupt number
348 * @data: pointer to a q_vector
349 **/
350static irqreturn_t i40evf_msix_clean_rings(int irq, void *data)
351{
352 struct i40e_q_vector *q_vector = data;
353
354 if (!q_vector->tx.ring && !q_vector->rx.ring)
355 return IRQ_HANDLED;
356
Alexander Duyck5d3465a2015-09-29 15:19:50 -0700357 napi_schedule_irqoff(&q_vector->napi);
Greg Rose5eae00c2013-12-21 06:12:45 +0000358
359 return IRQ_HANDLED;
360}
361
362/**
363 * i40evf_map_vector_to_rxq - associate irqs with rx queues
364 * @adapter: board private structure
365 * @v_idx: interrupt number
366 * @r_idx: queue number
367 **/
368static void
369i40evf_map_vector_to_rxq(struct i40evf_adapter *adapter, int v_idx, int r_idx)
370{
Mitch Williams7d96ba12015-10-26 19:44:39 -0400371 struct i40e_q_vector *q_vector = &adapter->q_vectors[v_idx];
Mitch Williams0dd438d2015-10-26 19:44:40 -0400372 struct i40e_ring *rx_ring = &adapter->rx_rings[r_idx];
Greg Rose5eae00c2013-12-21 06:12:45 +0000373
374 rx_ring->q_vector = q_vector;
375 rx_ring->next = q_vector->rx.ring;
376 rx_ring->vsi = &adapter->vsi;
377 q_vector->rx.ring = rx_ring;
378 q_vector->rx.count++;
379 q_vector->rx.latency_range = I40E_LOW_LATENCY;
Jesse Brandeburgee2319c2015-09-28 14:16:54 -0400380 q_vector->itr_countdown = ITR_COUNTDOWN_START;
Greg Rose5eae00c2013-12-21 06:12:45 +0000381}
382
383/**
384 * i40evf_map_vector_to_txq - associate irqs with tx queues
385 * @adapter: board private structure
386 * @v_idx: interrupt number
387 * @t_idx: queue number
388 **/
389static void
390i40evf_map_vector_to_txq(struct i40evf_adapter *adapter, int v_idx, int t_idx)
391{
Mitch Williams7d96ba12015-10-26 19:44:39 -0400392 struct i40e_q_vector *q_vector = &adapter->q_vectors[v_idx];
Mitch Williams0dd438d2015-10-26 19:44:40 -0400393 struct i40e_ring *tx_ring = &adapter->tx_rings[t_idx];
Greg Rose5eae00c2013-12-21 06:12:45 +0000394
395 tx_ring->q_vector = q_vector;
396 tx_ring->next = q_vector->tx.ring;
397 tx_ring->vsi = &adapter->vsi;
398 q_vector->tx.ring = tx_ring;
399 q_vector->tx.count++;
400 q_vector->tx.latency_range = I40E_LOW_LATENCY;
Jesse Brandeburgee2319c2015-09-28 14:16:54 -0400401 q_vector->itr_countdown = ITR_COUNTDOWN_START;
Greg Rose5eae00c2013-12-21 06:12:45 +0000402 q_vector->num_ringpairs++;
Jesse Brandeburg41a1d042015-06-04 16:24:02 -0400403 q_vector->ring_mask |= BIT(t_idx);
Greg Rose5eae00c2013-12-21 06:12:45 +0000404}
405
406/**
407 * i40evf_map_rings_to_vectors - Maps descriptor rings to vectors
408 * @adapter: board private structure to initialize
409 *
410 * This function maps descriptor rings to the queue-specific vectors
411 * we were allotted through the MSI-X enabling code. Ideally, we'd have
412 * one vector per ring/queue, but on a constrained vector budget, we
413 * group the rings as "efficiently" as possible. You would add new
414 * mapping configurations in here.
415 **/
416static int i40evf_map_rings_to_vectors(struct i40evf_adapter *adapter)
417{
418 int q_vectors;
419 int v_start = 0;
420 int rxr_idx = 0, txr_idx = 0;
Mitch Williamscc052922014-10-25 03:24:34 +0000421 int rxr_remaining = adapter->num_active_queues;
422 int txr_remaining = adapter->num_active_queues;
Greg Rose5eae00c2013-12-21 06:12:45 +0000423 int i, j;
424 int rqpv, tqpv;
425 int err = 0;
426
427 q_vectors = adapter->num_msix_vectors - NONQ_VECS;
428
429 /* The ideal configuration...
430 * We have enough vectors to map one per queue.
431 */
Mitch Williams973371d2015-04-27 14:57:09 -0400432 if (q_vectors >= (rxr_remaining * 2)) {
Greg Rose5eae00c2013-12-21 06:12:45 +0000433 for (; rxr_idx < rxr_remaining; v_start++, rxr_idx++)
434 i40evf_map_vector_to_rxq(adapter, v_start, rxr_idx);
435
436 for (; txr_idx < txr_remaining; v_start++, txr_idx++)
437 i40evf_map_vector_to_txq(adapter, v_start, txr_idx);
438 goto out;
439 }
440
441 /* If we don't have enough vectors for a 1-to-1
442 * mapping, we'll have to group them so there are
443 * multiple queues per vector.
444 * Re-adjusting *qpv takes care of the remainder.
445 */
446 for (i = v_start; i < q_vectors; i++) {
447 rqpv = DIV_ROUND_UP(rxr_remaining, q_vectors - i);
448 for (j = 0; j < rqpv; j++) {
449 i40evf_map_vector_to_rxq(adapter, i, rxr_idx);
450 rxr_idx++;
451 rxr_remaining--;
452 }
453 }
454 for (i = v_start; i < q_vectors; i++) {
455 tqpv = DIV_ROUND_UP(txr_remaining, q_vectors - i);
456 for (j = 0; j < tqpv; j++) {
457 i40evf_map_vector_to_txq(adapter, i, txr_idx);
458 txr_idx++;
459 txr_remaining--;
460 }
461 }
462
463out:
464 adapter->aq_required |= I40EVF_FLAG_AQ_MAP_VECTORS;
465
466 return err;
467}
468
Alexander Duyck7709b4c2015-09-24 09:04:38 -0700469#ifdef CONFIG_NET_POLL_CONTROLLER
470/**
471 * i40evf_netpoll - A Polling 'interrupt' handler
472 * @netdev: network interface device structure
473 *
474 * This is used by netconsole to send skbs without having to re-enable
475 * interrupts. It's not called while the normal interrupt routine is executing.
476 **/
477static void i40evf_netpoll(struct net_device *netdev)
478{
479 struct i40evf_adapter *adapter = netdev_priv(netdev);
480 int q_vectors = adapter->num_msix_vectors - NONQ_VECS;
481 int i;
482
483 /* if interface is down do nothing */
484 if (test_bit(__I40E_DOWN, &adapter->vsi.state))
485 return;
486
487 for (i = 0; i < q_vectors; i++)
Mitch Williams7d96ba12015-10-26 19:44:39 -0400488 i40evf_msix_clean_rings(0, &adapter->q_vectors[i]);
Alexander Duyck7709b4c2015-09-24 09:04:38 -0700489}
490
491#endif
Greg Rose5eae00c2013-12-21 06:12:45 +0000492/**
493 * i40evf_request_traffic_irqs - Initialize MSI-X interrupts
494 * @adapter: board private structure
495 *
496 * Allocates MSI-X vectors for tx and rx handling, and requests
497 * interrupts from the kernel.
498 **/
499static int
500i40evf_request_traffic_irqs(struct i40evf_adapter *adapter, char *basename)
501{
502 int vector, err, q_vectors;
503 int rx_int_idx = 0, tx_int_idx = 0;
504
505 i40evf_irq_disable(adapter);
506 /* Decrement for Other and TCP Timer vectors */
507 q_vectors = adapter->num_msix_vectors - NONQ_VECS;
508
509 for (vector = 0; vector < q_vectors; vector++) {
Mitch Williams7d96ba12015-10-26 19:44:39 -0400510 struct i40e_q_vector *q_vector = &adapter->q_vectors[vector];
Greg Rose5eae00c2013-12-21 06:12:45 +0000511
512 if (q_vector->tx.ring && q_vector->rx.ring) {
513 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
514 "i40evf-%s-%s-%d", basename,
515 "TxRx", rx_int_idx++);
516 tx_int_idx++;
517 } else if (q_vector->rx.ring) {
518 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
519 "i40evf-%s-%s-%d", basename,
520 "rx", rx_int_idx++);
521 } else if (q_vector->tx.ring) {
522 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
523 "i40evf-%s-%s-%d", basename,
524 "tx", tx_int_idx++);
525 } else {
526 /* skip this unused q_vector */
527 continue;
528 }
529 err = request_irq(
530 adapter->msix_entries[vector + NONQ_VECS].vector,
531 i40evf_msix_clean_rings,
532 0,
533 q_vector->name,
534 q_vector);
535 if (err) {
536 dev_info(&adapter->pdev->dev,
Shannon Nelsonfb43201f2015-08-26 15:14:17 -0400537 "Request_irq failed, error: %d\n", err);
Greg Rose5eae00c2013-12-21 06:12:45 +0000538 goto free_queue_irqs;
539 }
540 /* assign the mask for this irq */
541 irq_set_affinity_hint(
542 adapter->msix_entries[vector + NONQ_VECS].vector,
543 q_vector->affinity_mask);
544 }
545
546 return 0;
547
548free_queue_irqs:
549 while (vector) {
550 vector--;
551 irq_set_affinity_hint(
552 adapter->msix_entries[vector + NONQ_VECS].vector,
553 NULL);
554 free_irq(adapter->msix_entries[vector + NONQ_VECS].vector,
Mitch Williams7d96ba12015-10-26 19:44:39 -0400555 &adapter->q_vectors[vector]);
Greg Rose5eae00c2013-12-21 06:12:45 +0000556 }
557 return err;
558}
559
560/**
561 * i40evf_request_misc_irq - Initialize MSI-X interrupts
562 * @adapter: board private structure
563 *
564 * Allocates MSI-X vector 0 and requests interrupts from the kernel. This
565 * vector is only for the admin queue, and stays active even when the netdev
566 * is closed.
567 **/
568static int i40evf_request_misc_irq(struct i40evf_adapter *adapter)
569{
570 struct net_device *netdev = adapter->netdev;
571 int err;
572
Jesse Brandeburgb39c1e22014-08-01 13:27:08 -0700573 snprintf(adapter->misc_vector_name,
Carolyn Wyborny9a21a002015-02-06 08:52:20 +0000574 sizeof(adapter->misc_vector_name) - 1, "i40evf-%s:mbx",
575 dev_name(&adapter->pdev->dev));
Greg Rose5eae00c2013-12-21 06:12:45 +0000576 err = request_irq(adapter->msix_entries[0].vector,
Mitch Williamse1dfee82014-02-13 03:48:51 -0800577 &i40evf_msix_aq, 0,
578 adapter->misc_vector_name, netdev);
Greg Rose5eae00c2013-12-21 06:12:45 +0000579 if (err) {
580 dev_err(&adapter->pdev->dev,
Catherine Sullivan77fa28b2014-02-20 19:29:17 -0800581 "request_irq for %s failed: %d\n",
582 adapter->misc_vector_name, err);
Greg Rose5eae00c2013-12-21 06:12:45 +0000583 free_irq(adapter->msix_entries[0].vector, netdev);
584 }
585 return err;
586}
587
588/**
589 * i40evf_free_traffic_irqs - Free MSI-X interrupts
590 * @adapter: board private structure
591 *
592 * Frees all MSI-X vectors other than 0.
593 **/
594static void i40evf_free_traffic_irqs(struct i40evf_adapter *adapter)
595{
596 int i;
597 int q_vectors;
Mitch Williams75a64432014-11-11 20:02:42 +0000598
Greg Rose5eae00c2013-12-21 06:12:45 +0000599 q_vectors = adapter->num_msix_vectors - NONQ_VECS;
600
601 for (i = 0; i < q_vectors; i++) {
602 irq_set_affinity_hint(adapter->msix_entries[i+1].vector,
603 NULL);
604 free_irq(adapter->msix_entries[i+1].vector,
Mitch Williams7d96ba12015-10-26 19:44:39 -0400605 &adapter->q_vectors[i]);
Greg Rose5eae00c2013-12-21 06:12:45 +0000606 }
607}
608
609/**
610 * i40evf_free_misc_irq - Free MSI-X miscellaneous vector
611 * @adapter: board private structure
612 *
613 * Frees MSI-X vector 0.
614 **/
615static void i40evf_free_misc_irq(struct i40evf_adapter *adapter)
616{
617 struct net_device *netdev = adapter->netdev;
618
619 free_irq(adapter->msix_entries[0].vector, netdev);
620}
621
622/**
623 * i40evf_configure_tx - Configure Transmit Unit after Reset
624 * @adapter: board private structure
625 *
626 * Configure the Tx unit of the MAC after a reset.
627 **/
628static void i40evf_configure_tx(struct i40evf_adapter *adapter)
629{
630 struct i40e_hw *hw = &adapter->hw;
631 int i;
Mitch Williams75a64432014-11-11 20:02:42 +0000632
Mitch Williamscc052922014-10-25 03:24:34 +0000633 for (i = 0; i < adapter->num_active_queues; i++)
Mitch Williams0dd438d2015-10-26 19:44:40 -0400634 adapter->tx_rings[i].tail = hw->hw_addr + I40E_QTX_TAIL1(i);
Greg Rose5eae00c2013-12-21 06:12:45 +0000635}
636
637/**
638 * i40evf_configure_rx - Configure Receive Unit after Reset
639 * @adapter: board private structure
640 *
641 * Configure the Rx unit of the MAC after a reset.
642 **/
643static void i40evf_configure_rx(struct i40evf_adapter *adapter)
644{
645 struct i40e_hw *hw = &adapter->hw;
Greg Rose5eae00c2013-12-21 06:12:45 +0000646 int i;
Greg Rose5eae00c2013-12-21 06:12:45 +0000647
Mitch Williamscc052922014-10-25 03:24:34 +0000648 for (i = 0; i < adapter->num_active_queues; i++) {
Mitch Williams0dd438d2015-10-26 19:44:40 -0400649 adapter->rx_rings[i].tail = hw->hw_addr + I40E_QRX_TAIL1(i);
Jesse Brandeburg19b85e62016-04-18 11:33:45 -0700650 adapter->rx_rings[i].rx_buf_len = I40EVF_RXBUFFER_2048;
Greg Rose5eae00c2013-12-21 06:12:45 +0000651 }
652}
653
654/**
655 * i40evf_find_vlan - Search filter list for specific vlan filter
656 * @adapter: board private structure
657 * @vlan: vlan tag
658 *
659 * Returns ptr to the filter object or NULL
660 **/
661static struct
662i40evf_vlan_filter *i40evf_find_vlan(struct i40evf_adapter *adapter, u16 vlan)
663{
664 struct i40evf_vlan_filter *f;
665
666 list_for_each_entry(f, &adapter->vlan_filter_list, list) {
667 if (vlan == f->vlan)
668 return f;
669 }
670 return NULL;
671}
672
673/**
674 * i40evf_add_vlan - Add a vlan filter to the list
675 * @adapter: board private structure
676 * @vlan: VLAN tag
677 *
678 * Returns ptr to the filter object or NULL when no memory available.
679 **/
680static struct
681i40evf_vlan_filter *i40evf_add_vlan(struct i40evf_adapter *adapter, u16 vlan)
682{
Mitch Williams13acb542015-03-31 00:45:05 -0700683 struct i40evf_vlan_filter *f = NULL;
684 int count = 50;
685
686 while (test_and_set_bit(__I40EVF_IN_CRITICAL_TASK,
687 &adapter->crit_section)) {
688 udelay(1);
689 if (--count == 0)
690 goto out;
691 }
Greg Rose5eae00c2013-12-21 06:12:45 +0000692
693 f = i40evf_find_vlan(adapter, vlan);
Mitch Williams348d4992014-11-11 20:02:52 +0000694 if (!f) {
Greg Rose5eae00c2013-12-21 06:12:45 +0000695 f = kzalloc(sizeof(*f), GFP_ATOMIC);
Mitch Williams348d4992014-11-11 20:02:52 +0000696 if (!f)
Mitch Williams13acb542015-03-31 00:45:05 -0700697 goto clearout;
Mitch Williams249c8b82014-05-10 04:49:04 +0000698
Greg Rose5eae00c2013-12-21 06:12:45 +0000699 f->vlan = vlan;
700
701 INIT_LIST_HEAD(&f->list);
702 list_add(&f->list, &adapter->vlan_filter_list);
703 f->add = true;
704 adapter->aq_required |= I40EVF_FLAG_AQ_ADD_VLAN_FILTER;
705 }
706
Mitch Williams13acb542015-03-31 00:45:05 -0700707clearout:
708 clear_bit(__I40EVF_IN_CRITICAL_TASK, &adapter->crit_section);
709out:
Greg Rose5eae00c2013-12-21 06:12:45 +0000710 return f;
711}
712
713/**
714 * i40evf_del_vlan - Remove a vlan filter from the list
715 * @adapter: board private structure
716 * @vlan: VLAN tag
717 **/
718static void i40evf_del_vlan(struct i40evf_adapter *adapter, u16 vlan)
719{
720 struct i40evf_vlan_filter *f;
Mitch Williams13acb542015-03-31 00:45:05 -0700721 int count = 50;
722
723 while (test_and_set_bit(__I40EVF_IN_CRITICAL_TASK,
724 &adapter->crit_section)) {
725 udelay(1);
726 if (--count == 0)
727 return;
728 }
Greg Rose5eae00c2013-12-21 06:12:45 +0000729
730 f = i40evf_find_vlan(adapter, vlan);
731 if (f) {
732 f->remove = true;
733 adapter->aq_required |= I40EVF_FLAG_AQ_DEL_VLAN_FILTER;
734 }
Mitch Williams13acb542015-03-31 00:45:05 -0700735 clear_bit(__I40EVF_IN_CRITICAL_TASK, &adapter->crit_section);
Greg Rose5eae00c2013-12-21 06:12:45 +0000736}
737
738/**
739 * i40evf_vlan_rx_add_vid - Add a VLAN filter to a device
740 * @netdev: network device struct
741 * @vid: VLAN tag
742 **/
743static int i40evf_vlan_rx_add_vid(struct net_device *netdev,
Mitch Williams75a64432014-11-11 20:02:42 +0000744 __always_unused __be16 proto, u16 vid)
Greg Rose5eae00c2013-12-21 06:12:45 +0000745{
746 struct i40evf_adapter *adapter = netdev_priv(netdev);
747
Mitch Williams8ed995f2015-08-28 17:55:57 -0400748 if (!VLAN_ALLOWED(adapter))
749 return -EIO;
Greg Rose5eae00c2013-12-21 06:12:45 +0000750 if (i40evf_add_vlan(adapter, vid) == NULL)
751 return -ENOMEM;
752 return 0;
753}
754
755/**
756 * i40evf_vlan_rx_kill_vid - Remove a VLAN filter from a device
757 * @netdev: network device struct
758 * @vid: VLAN tag
759 **/
760static int i40evf_vlan_rx_kill_vid(struct net_device *netdev,
Mitch Williams75a64432014-11-11 20:02:42 +0000761 __always_unused __be16 proto, u16 vid)
Greg Rose5eae00c2013-12-21 06:12:45 +0000762{
763 struct i40evf_adapter *adapter = netdev_priv(netdev);
764
Mitch Williams8ed995f2015-08-28 17:55:57 -0400765 if (VLAN_ALLOWED(adapter)) {
766 i40evf_del_vlan(adapter, vid);
767 return 0;
768 }
769 return -EIO;
Greg Rose5eae00c2013-12-21 06:12:45 +0000770}
771
772/**
773 * i40evf_find_filter - Search filter list for specific mac filter
774 * @adapter: board private structure
775 * @macaddr: the MAC address
776 *
777 * Returns ptr to the filter object or NULL
778 **/
779static struct
780i40evf_mac_filter *i40evf_find_filter(struct i40evf_adapter *adapter,
781 u8 *macaddr)
782{
783 struct i40evf_mac_filter *f;
784
785 if (!macaddr)
786 return NULL;
787
788 list_for_each_entry(f, &adapter->mac_filter_list, list) {
789 if (ether_addr_equal(macaddr, f->macaddr))
790 return f;
791 }
792 return NULL;
793}
794
795/**
796 * i40e_add_filter - Add a mac filter to the filter list
797 * @adapter: board private structure
798 * @macaddr: the MAC address
799 *
800 * Returns ptr to the filter object or NULL when no memory available.
801 **/
802static struct
803i40evf_mac_filter *i40evf_add_filter(struct i40evf_adapter *adapter,
804 u8 *macaddr)
805{
806 struct i40evf_mac_filter *f;
Mitch Williams54e16f62015-01-29 07:17:20 +0000807 int count = 50;
Greg Rose5eae00c2013-12-21 06:12:45 +0000808
809 if (!macaddr)
810 return NULL;
811
812 while (test_and_set_bit(__I40EVF_IN_CRITICAL_TASK,
Mitch Williams54e16f62015-01-29 07:17:20 +0000813 &adapter->crit_section)) {
Mitch Williamsb65476c2014-07-09 07:46:14 +0000814 udelay(1);
Mitch Williams54e16f62015-01-29 07:17:20 +0000815 if (--count == 0)
816 return NULL;
817 }
Greg Rose5eae00c2013-12-21 06:12:45 +0000818
819 f = i40evf_find_filter(adapter, macaddr);
Mitch Williams348d4992014-11-11 20:02:52 +0000820 if (!f) {
Greg Rose5eae00c2013-12-21 06:12:45 +0000821 f = kzalloc(sizeof(*f), GFP_ATOMIC);
Mitch Williams348d4992014-11-11 20:02:52 +0000822 if (!f) {
Greg Rose5eae00c2013-12-21 06:12:45 +0000823 clear_bit(__I40EVF_IN_CRITICAL_TASK,
824 &adapter->crit_section);
825 return NULL;
826 }
827
Greg Rose9a173902014-05-22 06:32:02 +0000828 ether_addr_copy(f->macaddr, macaddr);
Greg Rose5eae00c2013-12-21 06:12:45 +0000829
Mitch Williams63590b62016-05-16 10:26:42 -0700830 list_add_tail(&f->list, &adapter->mac_filter_list);
Greg Rose5eae00c2013-12-21 06:12:45 +0000831 f->add = true;
832 adapter->aq_required |= I40EVF_FLAG_AQ_ADD_MAC_FILTER;
833 }
834
835 clear_bit(__I40EVF_IN_CRITICAL_TASK, &adapter->crit_section);
836 return f;
837}
838
839/**
840 * i40evf_set_mac - NDO callback to set port mac address
841 * @netdev: network interface device structure
842 * @p: pointer to an address structure
843 *
844 * Returns 0 on success, negative on failure
845 **/
846static int i40evf_set_mac(struct net_device *netdev, void *p)
847{
848 struct i40evf_adapter *adapter = netdev_priv(netdev);
849 struct i40e_hw *hw = &adapter->hw;
850 struct i40evf_mac_filter *f;
851 struct sockaddr *addr = p;
852
853 if (!is_valid_ether_addr(addr->sa_data))
854 return -EADDRNOTAVAIL;
855
856 if (ether_addr_equal(netdev->dev_addr, addr->sa_data))
857 return 0;
858
Mitch Williams14e52ee2015-08-31 19:54:44 -0400859 if (adapter->flags & I40EVF_FLAG_ADDR_SET_BY_PF)
860 return -EPERM;
861
862 f = i40evf_find_filter(adapter, hw->mac.addr);
863 if (f) {
864 f->remove = true;
865 adapter->aq_required |= I40EVF_FLAG_AQ_DEL_MAC_FILTER;
866 }
867
Greg Rose5eae00c2013-12-21 06:12:45 +0000868 f = i40evf_add_filter(adapter, addr->sa_data);
869 if (f) {
Greg Rose9a173902014-05-22 06:32:02 +0000870 ether_addr_copy(hw->mac.addr, addr->sa_data);
871 ether_addr_copy(netdev->dev_addr, adapter->hw.mac.addr);
Greg Rose5eae00c2013-12-21 06:12:45 +0000872 }
873
874 return (f == NULL) ? -ENOMEM : 0;
875}
876
877/**
878 * i40evf_set_rx_mode - NDO callback to set the netdev filters
879 * @netdev: network interface device structure
880 **/
881static void i40evf_set_rx_mode(struct net_device *netdev)
882{
883 struct i40evf_adapter *adapter = netdev_priv(netdev);
884 struct i40evf_mac_filter *f, *ftmp;
885 struct netdev_hw_addr *uca;
886 struct netdev_hw_addr *mca;
Shannon Nelson2f41f332015-08-26 15:14:20 -0400887 struct netdev_hw_addr *ha;
Mitch Williams54e16f62015-01-29 07:17:20 +0000888 int count = 50;
Greg Rose5eae00c2013-12-21 06:12:45 +0000889
890 /* add addr if not already in the filter list */
891 netdev_for_each_uc_addr(uca, netdev) {
892 i40evf_add_filter(adapter, uca->addr);
893 }
894 netdev_for_each_mc_addr(mca, netdev) {
895 i40evf_add_filter(adapter, mca->addr);
896 }
897
898 while (test_and_set_bit(__I40EVF_IN_CRITICAL_TASK,
Mitch Williams54e16f62015-01-29 07:17:20 +0000899 &adapter->crit_section)) {
Mitch Williamsb65476c2014-07-09 07:46:14 +0000900 udelay(1);
Mitch Williams54e16f62015-01-29 07:17:20 +0000901 if (--count == 0) {
902 dev_err(&adapter->pdev->dev,
903 "Failed to get lock in %s\n", __func__);
904 return;
905 }
906 }
Greg Rose5eae00c2013-12-21 06:12:45 +0000907 /* remove filter if not in netdev list */
908 list_for_each_entry_safe(f, ftmp, &adapter->mac_filter_list, list) {
Shannon Nelson2f41f332015-08-26 15:14:20 -0400909 netdev_for_each_mc_addr(mca, netdev)
910 if (ether_addr_equal(mca->addr, f->macaddr))
911 goto bottom_of_search_loop;
Greg Rose5eae00c2013-12-21 06:12:45 +0000912
Shannon Nelson2f41f332015-08-26 15:14:20 -0400913 netdev_for_each_uc_addr(uca, netdev)
914 if (ether_addr_equal(uca->addr, f->macaddr))
915 goto bottom_of_search_loop;
916
917 for_each_dev_addr(netdev, ha)
918 if (ether_addr_equal(ha->addr, f->macaddr))
919 goto bottom_of_search_loop;
920
921 if (ether_addr_equal(f->macaddr, adapter->hw.mac.addr))
922 goto bottom_of_search_loop;
923
924 /* f->macaddr wasn't found in uc, mc, or ha list so delete it */
925 f->remove = true;
926 adapter->aq_required |= I40EVF_FLAG_AQ_DEL_MAC_FILTER;
927
928bottom_of_search_loop:
929 continue;
Greg Rose5eae00c2013-12-21 06:12:45 +0000930 }
Anjali Singhai Jain47d34832016-04-12 08:30:52 -0700931
932 if (netdev->flags & IFF_PROMISC &&
933 !(adapter->flags & I40EVF_FLAG_PROMISC_ON))
934 adapter->aq_required |= I40EVF_FLAG_AQ_REQUEST_PROMISC;
935 else if (!(netdev->flags & IFF_PROMISC) &&
936 adapter->flags & I40EVF_FLAG_PROMISC_ON)
937 adapter->aq_required |= I40EVF_FLAG_AQ_RELEASE_PROMISC;
938
Anjali Singhai Jainf42a5c72016-05-03 15:13:10 -0700939 if (netdev->flags & IFF_ALLMULTI &&
940 !(adapter->flags & I40EVF_FLAG_ALLMULTI_ON))
941 adapter->aq_required |= I40EVF_FLAG_AQ_REQUEST_ALLMULTI;
942 else if (!(netdev->flags & IFF_ALLMULTI) &&
943 adapter->flags & I40EVF_FLAG_ALLMULTI_ON)
944 adapter->aq_required |= I40EVF_FLAG_AQ_RELEASE_ALLMULTI;
945
Greg Rose5eae00c2013-12-21 06:12:45 +0000946 clear_bit(__I40EVF_IN_CRITICAL_TASK, &adapter->crit_section);
947}
948
949/**
950 * i40evf_napi_enable_all - enable NAPI on all queue vectors
951 * @adapter: board private structure
952 **/
953static void i40evf_napi_enable_all(struct i40evf_adapter *adapter)
954{
955 int q_idx;
956 struct i40e_q_vector *q_vector;
957 int q_vectors = adapter->num_msix_vectors - NONQ_VECS;
958
959 for (q_idx = 0; q_idx < q_vectors; q_idx++) {
960 struct napi_struct *napi;
Mitch Williams75a64432014-11-11 20:02:42 +0000961
Mitch Williams7d96ba12015-10-26 19:44:39 -0400962 q_vector = &adapter->q_vectors[q_idx];
Greg Rose5eae00c2013-12-21 06:12:45 +0000963 napi = &q_vector->napi;
964 napi_enable(napi);
965 }
966}
967
968/**
969 * i40evf_napi_disable_all - disable NAPI on all queue vectors
970 * @adapter: board private structure
971 **/
972static void i40evf_napi_disable_all(struct i40evf_adapter *adapter)
973{
974 int q_idx;
975 struct i40e_q_vector *q_vector;
976 int q_vectors = adapter->num_msix_vectors - NONQ_VECS;
977
978 for (q_idx = 0; q_idx < q_vectors; q_idx++) {
Mitch Williams7d96ba12015-10-26 19:44:39 -0400979 q_vector = &adapter->q_vectors[q_idx];
Greg Rose5eae00c2013-12-21 06:12:45 +0000980 napi_disable(&q_vector->napi);
981 }
982}
983
984/**
985 * i40evf_configure - set up transmit and receive data structures
986 * @adapter: board private structure
987 **/
988static void i40evf_configure(struct i40evf_adapter *adapter)
989{
990 struct net_device *netdev = adapter->netdev;
991 int i;
992
993 i40evf_set_rx_mode(netdev);
994
995 i40evf_configure_tx(adapter);
996 i40evf_configure_rx(adapter);
997 adapter->aq_required |= I40EVF_FLAG_AQ_CONFIGURE_QUEUES;
998
Mitch Williamscc052922014-10-25 03:24:34 +0000999 for (i = 0; i < adapter->num_active_queues; i++) {
Mitch Williams0dd438d2015-10-26 19:44:40 -04001000 struct i40e_ring *ring = &adapter->rx_rings[i];
Mitch Williams75a64432014-11-11 20:02:42 +00001001
Mitch Williamsb1630982016-04-18 11:33:48 -07001002 i40evf_alloc_rx_buffers(ring, I40E_DESC_UNUSED(ring));
Greg Rose5eae00c2013-12-21 06:12:45 +00001003 }
1004}
1005
1006/**
1007 * i40evf_up_complete - Finish the last steps of bringing up a connection
1008 * @adapter: board private structure
1009 **/
1010static int i40evf_up_complete(struct i40evf_adapter *adapter)
1011{
1012 adapter->state = __I40EVF_RUNNING;
1013 clear_bit(__I40E_DOWN, &adapter->vsi.state);
1014
1015 i40evf_napi_enable_all(adapter);
1016
1017 adapter->aq_required |= I40EVF_FLAG_AQ_ENABLE_QUEUES;
1018 mod_timer_pending(&adapter->watchdog_timer, jiffies + 1);
1019 return 0;
1020}
1021
1022/**
Greg Rose5eae00c2013-12-21 06:12:45 +00001023 * i40e_down - Shutdown the connection processing
1024 * @adapter: board private structure
1025 **/
1026void i40evf_down(struct i40evf_adapter *adapter)
1027{
1028 struct net_device *netdev = adapter->netdev;
1029 struct i40evf_mac_filter *f;
1030
Mitch Williams209dc4d2015-12-09 15:50:27 -08001031 if (adapter->state <= __I40EVF_DOWN_PENDING)
Mitch Williamsddf0b3a2014-05-22 06:31:46 +00001032 return;
1033
Mitch A Williams53d0b3a2014-12-09 08:53:04 +00001034 while (test_and_set_bit(__I40EVF_IN_CRITICAL_TASK,
1035 &adapter->crit_section))
1036 usleep_range(500, 1000);
1037
Mitch Williams63e18c22015-03-27 00:12:10 -07001038 netif_carrier_off(netdev);
1039 netif_tx_disable(netdev);
Mitch Williams748c4342015-01-29 07:17:18 +00001040 i40evf_napi_disable_all(adapter);
Mitch Williams63e18c22015-03-27 00:12:10 -07001041 i40evf_irq_disable(adapter);
Mitch A Williams53d0b3a2014-12-09 08:53:04 +00001042
Mitch Williamsef8693e2014-02-13 03:48:53 -08001043 /* remove all MAC filters */
Greg Rose5eae00c2013-12-21 06:12:45 +00001044 list_for_each_entry(f, &adapter->mac_filter_list, list) {
1045 f->remove = true;
1046 }
Mitch Williamsed1f5b52014-02-20 19:29:06 -08001047 /* remove all VLAN filters */
1048 list_for_each_entry(f, &adapter->vlan_filter_list, list) {
1049 f->remove = true;
1050 }
Mitch Williamsef8693e2014-02-13 03:48:53 -08001051 if (!(adapter->flags & I40EVF_FLAG_PF_COMMS_FAILED) &&
1052 adapter->state != __I40EVF_RESETTING) {
Mitch A Williams53d0b3a2014-12-09 08:53:04 +00001053 /* cancel any current operation */
1054 adapter->current_op = I40E_VIRTCHNL_OP_UNKNOWN;
Mitch A Williams53d0b3a2014-12-09 08:53:04 +00001055 /* Schedule operations to close down the HW. Don't wait
1056 * here for this to complete. The watchdog is still running
1057 * and it will take care of this.
1058 */
1059 adapter->aq_required = I40EVF_FLAG_AQ_DEL_MAC_FILTER;
Mitch Williamsed1f5b52014-02-20 19:29:06 -08001060 adapter->aq_required |= I40EVF_FLAG_AQ_DEL_VLAN_FILTER;
Mitch Williamsef8693e2014-02-13 03:48:53 -08001061 adapter->aq_required |= I40EVF_FLAG_AQ_DISABLE_QUEUES;
Mitch Williamsef8693e2014-02-13 03:48:53 -08001062 }
Greg Rose5eae00c2013-12-21 06:12:45 +00001063
Mitch A Williams53d0b3a2014-12-09 08:53:04 +00001064 clear_bit(__I40EVF_IN_CRITICAL_TASK, &adapter->crit_section);
Greg Rose5eae00c2013-12-21 06:12:45 +00001065}
1066
1067/**
1068 * i40evf_acquire_msix_vectors - Setup the MSIX capability
1069 * @adapter: board private structure
1070 * @vectors: number of vectors to request
1071 *
1072 * Work with the OS to set up the MSIX vectors needed.
1073 *
1074 * Returns 0 on success, negative on failure
1075 **/
1076static int
1077i40evf_acquire_msix_vectors(struct i40evf_adapter *adapter, int vectors)
1078{
1079 int err, vector_threshold;
1080
1081 /* We'll want at least 3 (vector_threshold):
1082 * 0) Other (Admin Queue and link, mostly)
1083 * 1) TxQ[0] Cleanup
1084 * 2) RxQ[0] Cleanup
1085 */
1086 vector_threshold = MIN_MSIX_COUNT;
1087
1088 /* The more we get, the more we will assign to Tx/Rx Cleanup
1089 * for the separate queues...where Rx Cleanup >= Tx Cleanup.
1090 * Right now, we simply care about how many we'll get; we'll
1091 * set them up later while requesting irq's.
1092 */
Alexander Gordeevfc2f2f52014-04-28 17:53:16 +00001093 err = pci_enable_msix_range(adapter->pdev, adapter->msix_entries,
1094 vector_threshold, vectors);
1095 if (err < 0) {
Mitch Williams80e72892014-05-10 04:49:06 +00001096 dev_err(&adapter->pdev->dev, "Unable to allocate MSI-X interrupts\n");
Greg Rose5eae00c2013-12-21 06:12:45 +00001097 kfree(adapter->msix_entries);
1098 adapter->msix_entries = NULL;
Alexander Gordeevfc2f2f52014-04-28 17:53:16 +00001099 return err;
Greg Rose5eae00c2013-12-21 06:12:45 +00001100 }
Alexander Gordeevfc2f2f52014-04-28 17:53:16 +00001101
1102 /* Adjust for only the vectors we'll use, which is minimum
1103 * of max_msix_q_vectors + NONQ_VECS, or the number of
1104 * vectors we were allocated.
1105 */
1106 adapter->num_msix_vectors = err;
1107 return 0;
Greg Rose5eae00c2013-12-21 06:12:45 +00001108}
1109
1110/**
1111 * i40evf_free_queues - Free memory for all rings
1112 * @adapter: board private structure to initialize
1113 *
1114 * Free all of the memory associated with queue pairs.
1115 **/
1116static void i40evf_free_queues(struct i40evf_adapter *adapter)
1117{
Greg Rose5eae00c2013-12-21 06:12:45 +00001118 if (!adapter->vsi_res)
1119 return;
Mitch Williams0dd438d2015-10-26 19:44:40 -04001120 kfree(adapter->tx_rings);
Mitch Williams10311542015-12-09 15:50:30 -08001121 adapter->tx_rings = NULL;
Mitch Williams0dd438d2015-10-26 19:44:40 -04001122 kfree(adapter->rx_rings);
Mitch Williams10311542015-12-09 15:50:30 -08001123 adapter->rx_rings = NULL;
Greg Rose5eae00c2013-12-21 06:12:45 +00001124}
1125
1126/**
1127 * i40evf_alloc_queues - Allocate memory for all rings
1128 * @adapter: board private structure to initialize
1129 *
1130 * We allocate one ring per queue at run-time since we don't know the
1131 * number of queues at compile-time. The polling_netdev array is
1132 * intended for Multiqueue, but should work fine with a single queue.
1133 **/
1134static int i40evf_alloc_queues(struct i40evf_adapter *adapter)
1135{
1136 int i;
1137
Mitch Williams0dd438d2015-10-26 19:44:40 -04001138 adapter->tx_rings = kcalloc(adapter->num_active_queues,
1139 sizeof(struct i40e_ring), GFP_KERNEL);
1140 if (!adapter->tx_rings)
1141 goto err_out;
1142 adapter->rx_rings = kcalloc(adapter->num_active_queues,
1143 sizeof(struct i40e_ring), GFP_KERNEL);
1144 if (!adapter->rx_rings)
1145 goto err_out;
1146
Mitch Williamscc052922014-10-25 03:24:34 +00001147 for (i = 0; i < adapter->num_active_queues; i++) {
Greg Rose5eae00c2013-12-21 06:12:45 +00001148 struct i40e_ring *tx_ring;
1149 struct i40e_ring *rx_ring;
1150
Mitch Williams0dd438d2015-10-26 19:44:40 -04001151 tx_ring = &adapter->tx_rings[i];
Greg Rose5eae00c2013-12-21 06:12:45 +00001152
1153 tx_ring->queue_index = i;
1154 tx_ring->netdev = adapter->netdev;
1155 tx_ring->dev = &adapter->pdev->dev;
Mitch Williamsd732a182014-04-24 06:41:37 +00001156 tx_ring->count = adapter->tx_desc_count;
Anjali Singhai Jain1f012272015-09-03 17:18:53 -04001157 if (adapter->flags & I40E_FLAG_WB_ON_ITR_CAPABLE)
1158 tx_ring->flags |= I40E_TXR_FLAGS_WB_ON_ITR;
Greg Rose5eae00c2013-12-21 06:12:45 +00001159
Mitch Williams0dd438d2015-10-26 19:44:40 -04001160 rx_ring = &adapter->rx_rings[i];
Greg Rose5eae00c2013-12-21 06:12:45 +00001161 rx_ring->queue_index = i;
1162 rx_ring->netdev = adapter->netdev;
1163 rx_ring->dev = &adapter->pdev->dev;
Mitch Williamsd732a182014-04-24 06:41:37 +00001164 rx_ring->count = adapter->rx_desc_count;
Greg Rose5eae00c2013-12-21 06:12:45 +00001165 }
1166
1167 return 0;
1168
1169err_out:
1170 i40evf_free_queues(adapter);
1171 return -ENOMEM;
1172}
1173
1174/**
1175 * i40evf_set_interrupt_capability - set MSI-X or FAIL if not supported
1176 * @adapter: board private structure to initialize
1177 *
1178 * Attempt to configure the interrupts using the best available
1179 * capabilities of the hardware and the kernel.
1180 **/
1181static int i40evf_set_interrupt_capability(struct i40evf_adapter *adapter)
1182{
1183 int vector, v_budget;
1184 int pairs = 0;
1185 int err = 0;
1186
1187 if (!adapter->vsi_res) {
1188 err = -EIO;
1189 goto out;
1190 }
Mitch Williamscc052922014-10-25 03:24:34 +00001191 pairs = adapter->num_active_queues;
Greg Rose5eae00c2013-12-21 06:12:45 +00001192
1193 /* It's easy to be greedy for MSI-X vectors, but it really
1194 * doesn't do us much good if we have a lot more vectors
1195 * than CPU's. So let's be conservative and only ask for
1196 * (roughly) twice the number of vectors as there are CPU's.
1197 */
Mitch Williams30a500e2014-02-11 08:27:52 +00001198 v_budget = min_t(int, pairs, (int)(num_online_cpus() * 2)) + NONQ_VECS;
1199 v_budget = min_t(int, v_budget, (int)adapter->vf_res->max_vectors);
Greg Rose5eae00c2013-12-21 06:12:45 +00001200
Greg Rose5eae00c2013-12-21 06:12:45 +00001201 adapter->msix_entries = kcalloc(v_budget,
1202 sizeof(struct msix_entry), GFP_KERNEL);
1203 if (!adapter->msix_entries) {
1204 err = -ENOMEM;
1205 goto out;
1206 }
1207
1208 for (vector = 0; vector < v_budget; vector++)
1209 adapter->msix_entries[vector].entry = vector;
1210
Mitch Williams313ed2d2015-08-27 11:42:31 -04001211 err = i40evf_acquire_msix_vectors(adapter, v_budget);
Greg Rose5eae00c2013-12-21 06:12:45 +00001212
1213out:
Mitch Williamse6c4cf62015-11-06 15:26:00 -08001214 netif_set_real_num_rx_queues(adapter->netdev, pairs);
1215 netif_set_real_num_tx_queues(adapter->netdev, pairs);
Greg Rose5eae00c2013-12-21 06:12:45 +00001216 return err;
1217}
1218
1219/**
Mitch Williams43a3d9b2016-04-12 08:30:44 -07001220 * i40e_config_rss_aq - Configure RSS keys and lut by using AQ commands
1221 * @adapter: board private structure
Helin Zhang2c86ac32015-10-27 16:15:06 -04001222 *
1223 * Return 0 on success, negative on failure
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04001224 **/
Mitch Williams43a3d9b2016-04-12 08:30:44 -07001225static int i40evf_config_rss_aq(struct i40evf_adapter *adapter)
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04001226{
Mitch Williams43a3d9b2016-04-12 08:30:44 -07001227 struct i40e_aqc_get_set_rss_key_data *rss_key =
1228 (struct i40e_aqc_get_set_rss_key_data *)adapter->rss_key;
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04001229 struct i40e_hw *hw = &adapter->hw;
Helin Zhang2c86ac32015-10-27 16:15:06 -04001230 int ret = 0;
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04001231
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04001232 if (adapter->current_op != I40E_VIRTCHNL_OP_UNKNOWN) {
1233 /* bail because we already have a command pending */
Masanari Iidae3d132d2015-10-16 21:14:29 +09001234 dev_err(&adapter->pdev->dev, "Cannot configure RSS, command %d pending\n",
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04001235 adapter->current_op);
Helin Zhang2c86ac32015-10-27 16:15:06 -04001236 return -EBUSY;
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04001237 }
1238
Mitch Williams43a3d9b2016-04-12 08:30:44 -07001239 ret = i40evf_aq_set_rss_key(hw, adapter->vsi.id, rss_key);
1240 if (ret) {
1241 dev_err(&adapter->pdev->dev, "Cannot set RSS key, err %s aq_err %s\n",
1242 i40evf_stat_str(hw, ret),
1243 i40evf_aq_str(hw, hw->aq.asq_last_status));
1244 return ret;
1245
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04001246 }
1247
Mitch Williams43a3d9b2016-04-12 08:30:44 -07001248 ret = i40evf_aq_set_rss_lut(hw, adapter->vsi.id, false,
1249 adapter->rss_lut, adapter->rss_lut_size);
1250 if (ret) {
1251 dev_err(&adapter->pdev->dev, "Cannot set RSS lut, err %s aq_err %s\n",
1252 i40evf_stat_str(hw, ret),
1253 i40evf_aq_str(hw, hw->aq.asq_last_status));
Helin Zhang2c86ac32015-10-27 16:15:06 -04001254 }
1255
1256 return ret;
Mitch Williams43a3d9b2016-04-12 08:30:44 -07001257
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04001258}
1259
1260/**
Helin Zhang2c86ac32015-10-27 16:15:06 -04001261 * i40evf_config_rss_reg - Configure RSS keys and lut by writing registers
Mitch Williams43a3d9b2016-04-12 08:30:44 -07001262 * @adapter: board private structure
Helin Zhang2c86ac32015-10-27 16:15:06 -04001263 *
1264 * Returns 0 on success, negative on failure
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04001265 **/
Mitch Williams43a3d9b2016-04-12 08:30:44 -07001266static int i40evf_config_rss_reg(struct i40evf_adapter *adapter)
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04001267{
1268 struct i40e_hw *hw = &adapter->hw;
Mitch Williams43a3d9b2016-04-12 08:30:44 -07001269 u32 *dw;
Helin Zhang2c86ac32015-10-27 16:15:06 -04001270 u16 i;
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04001271
Mitch Williams43a3d9b2016-04-12 08:30:44 -07001272 dw = (u32 *)adapter->rss_key;
1273 for (i = 0; i <= adapter->rss_key_size / 4; i++)
1274 wr32(hw, I40E_VFQF_HKEY(i), dw[i]);
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04001275
Mitch Williams43a3d9b2016-04-12 08:30:44 -07001276 dw = (u32 *)adapter->rss_lut;
1277 for (i = 0; i <= adapter->rss_lut_size / 4; i++)
1278 wr32(hw, I40E_VFQF_HLUT(i), dw[i]);
Helin Zhang2c86ac32015-10-27 16:15:06 -04001279
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04001280 i40e_flush(hw);
Helin Zhang2c86ac32015-10-27 16:15:06 -04001281
1282 return 0;
1283}
1284
1285/**
1286 * i40evf_config_rss - Configure RSS keys and lut
Mitch Williams43a3d9b2016-04-12 08:30:44 -07001287 * @adapter: board private structure
Helin Zhang2c86ac32015-10-27 16:15:06 -04001288 *
1289 * Returns 0 on success, negative on failure
1290 **/
Mitch Williams43a3d9b2016-04-12 08:30:44 -07001291int i40evf_config_rss(struct i40evf_adapter *adapter)
Helin Zhang2c86ac32015-10-27 16:15:06 -04001292{
Helin Zhang2c86ac32015-10-27 16:15:06 -04001293
Mitch Williams43a3d9b2016-04-12 08:30:44 -07001294 if (RSS_PF(adapter)) {
1295 adapter->aq_required |= I40EVF_FLAG_AQ_SET_RSS_LUT |
1296 I40EVF_FLAG_AQ_SET_RSS_KEY;
1297 return 0;
1298 } else if (RSS_AQ(adapter)) {
1299 return i40evf_config_rss_aq(adapter);
1300 } else {
1301 return i40evf_config_rss_reg(adapter);
1302 }
Helin Zhang90b02b42015-10-26 19:44:33 -04001303}
1304
1305/**
Helin Zhang2c86ac32015-10-27 16:15:06 -04001306 * i40evf_fill_rss_lut - Fill the lut with default values
Mitch Williams43a3d9b2016-04-12 08:30:44 -07001307 * @adapter: board private structure
Helin Zhang2c86ac32015-10-27 16:15:06 -04001308 **/
Mitch Williams43a3d9b2016-04-12 08:30:44 -07001309static void i40evf_fill_rss_lut(struct i40evf_adapter *adapter)
Helin Zhang2c86ac32015-10-27 16:15:06 -04001310{
1311 u16 i;
1312
Mitch Williams43a3d9b2016-04-12 08:30:44 -07001313 for (i = 0; i < adapter->rss_lut_size; i++)
1314 adapter->rss_lut[i] = i % adapter->num_active_queues;
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04001315}
1316
1317/**
Helin Zhang96a81982015-10-26 19:44:31 -04001318 * i40evf_init_rss - Prepare for RSS
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04001319 * @adapter: board private structure
Helin Zhang2c86ac32015-10-27 16:15:06 -04001320 *
1321 * Return 0 on success, negative on failure
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04001322 **/
Helin Zhang2c86ac32015-10-27 16:15:06 -04001323static int i40evf_init_rss(struct i40evf_adapter *adapter)
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04001324{
1325 struct i40e_hw *hw = &adapter->hw;
Helin Zhang2c86ac32015-10-27 16:15:06 -04001326 int ret;
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04001327
Mitch Williams43a3d9b2016-04-12 08:30:44 -07001328 if (!RSS_PF(adapter)) {
1329 /* Enable PCTYPES for RSS, TCP/UDP with IPv4/IPv6 */
1330 if (adapter->vf_res->vf_offload_flags &
1331 I40E_VIRTCHNL_VF_OFFLOAD_RSS_PCTYPE_V2)
1332 adapter->hena = I40E_DEFAULT_RSS_HENA_EXPANDED;
1333 else
1334 adapter->hena = I40E_DEFAULT_RSS_HENA;
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04001335
Mitch Williams43a3d9b2016-04-12 08:30:44 -07001336 wr32(hw, I40E_VFQF_HENA(0), (u32)adapter->hena);
1337 wr32(hw, I40E_VFQF_HENA(1), (u32)(adapter->hena >> 32));
1338 }
Helin Zhang66f9af852015-10-26 19:44:34 -04001339
Mitch Williams43a3d9b2016-04-12 08:30:44 -07001340 i40evf_fill_rss_lut(adapter);
Helin Zhang66f9af852015-10-26 19:44:34 -04001341
Mitch Williams43a3d9b2016-04-12 08:30:44 -07001342 netdev_rss_key_fill((void *)adapter->rss_key, adapter->rss_key_size);
1343 ret = i40evf_config_rss(adapter);
Helin Zhang2c86ac32015-10-27 16:15:06 -04001344
1345 return ret;
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04001346}
1347
1348/**
Greg Rose5eae00c2013-12-21 06:12:45 +00001349 * i40evf_alloc_q_vectors - Allocate memory for interrupt vectors
1350 * @adapter: board private structure to initialize
1351 *
1352 * We allocate one q_vector per queue interrupt. If allocation fails we
1353 * return -ENOMEM.
1354 **/
1355static int i40evf_alloc_q_vectors(struct i40evf_adapter *adapter)
1356{
Mitch Williams7d96ba12015-10-26 19:44:39 -04001357 int q_idx = 0, num_q_vectors;
Greg Rose5eae00c2013-12-21 06:12:45 +00001358 struct i40e_q_vector *q_vector;
1359
1360 num_q_vectors = adapter->num_msix_vectors - NONQ_VECS;
Mitch Williams0dd438d2015-10-26 19:44:40 -04001361 adapter->q_vectors = kcalloc(num_q_vectors, sizeof(*q_vector),
Mitch Williams7d96ba12015-10-26 19:44:39 -04001362 GFP_KERNEL);
1363 if (!adapter->q_vectors)
Alan Cox311f23e2016-03-01 16:02:15 -08001364 return -ENOMEM;
Greg Rose5eae00c2013-12-21 06:12:45 +00001365
1366 for (q_idx = 0; q_idx < num_q_vectors; q_idx++) {
Mitch Williams7d96ba12015-10-26 19:44:39 -04001367 q_vector = &adapter->q_vectors[q_idx];
Greg Rose5eae00c2013-12-21 06:12:45 +00001368 q_vector->adapter = adapter;
1369 q_vector->vsi = &adapter->vsi;
1370 q_vector->v_idx = q_idx;
1371 netif_napi_add(adapter->netdev, &q_vector->napi,
Mitch Williams75a64432014-11-11 20:02:42 +00001372 i40evf_napi_poll, NAPI_POLL_WEIGHT);
Greg Rose5eae00c2013-12-21 06:12:45 +00001373 }
1374
1375 return 0;
Greg Rose5eae00c2013-12-21 06:12:45 +00001376}
1377
1378/**
1379 * i40evf_free_q_vectors - Free memory allocated for interrupt vectors
1380 * @adapter: board private structure to initialize
1381 *
1382 * This function frees the memory allocated to the q_vectors. In addition if
1383 * NAPI is enabled it will delete any references to the NAPI struct prior
1384 * to freeing the q_vector.
1385 **/
1386static void i40evf_free_q_vectors(struct i40evf_adapter *adapter)
1387{
1388 int q_idx, num_q_vectors;
1389 int napi_vectors;
1390
1391 num_q_vectors = adapter->num_msix_vectors - NONQ_VECS;
Mitch Williamscc052922014-10-25 03:24:34 +00001392 napi_vectors = adapter->num_active_queues;
Greg Rose5eae00c2013-12-21 06:12:45 +00001393
1394 for (q_idx = 0; q_idx < num_q_vectors; q_idx++) {
Mitch Williams7d96ba12015-10-26 19:44:39 -04001395 struct i40e_q_vector *q_vector = &adapter->q_vectors[q_idx];
Greg Rose5eae00c2013-12-21 06:12:45 +00001396 if (q_idx < napi_vectors)
1397 netif_napi_del(&q_vector->napi);
Greg Rose5eae00c2013-12-21 06:12:45 +00001398 }
Mitch Williams7d96ba12015-10-26 19:44:39 -04001399 kfree(adapter->q_vectors);
Greg Rose5eae00c2013-12-21 06:12:45 +00001400}
1401
1402/**
1403 * i40evf_reset_interrupt_capability - Reset MSIX setup
1404 * @adapter: board private structure
1405 *
1406 **/
1407void i40evf_reset_interrupt_capability(struct i40evf_adapter *adapter)
1408{
1409 pci_disable_msix(adapter->pdev);
1410 kfree(adapter->msix_entries);
1411 adapter->msix_entries = NULL;
Greg Rose5eae00c2013-12-21 06:12:45 +00001412}
1413
1414/**
1415 * i40evf_init_interrupt_scheme - Determine if MSIX is supported and init
1416 * @adapter: board private structure to initialize
1417 *
1418 **/
1419int i40evf_init_interrupt_scheme(struct i40evf_adapter *adapter)
1420{
1421 int err;
1422
1423 err = i40evf_set_interrupt_capability(adapter);
1424 if (err) {
1425 dev_err(&adapter->pdev->dev,
1426 "Unable to setup interrupt capabilities\n");
1427 goto err_set_interrupt;
1428 }
1429
1430 err = i40evf_alloc_q_vectors(adapter);
1431 if (err) {
1432 dev_err(&adapter->pdev->dev,
1433 "Unable to allocate memory for queue vectors\n");
1434 goto err_alloc_q_vectors;
1435 }
1436
1437 err = i40evf_alloc_queues(adapter);
1438 if (err) {
1439 dev_err(&adapter->pdev->dev,
1440 "Unable to allocate memory for queues\n");
1441 goto err_alloc_queues;
1442 }
1443
1444 dev_info(&adapter->pdev->dev, "Multiqueue %s: Queue pair count = %u",
Mitch Williams75a64432014-11-11 20:02:42 +00001445 (adapter->num_active_queues > 1) ? "Enabled" : "Disabled",
1446 adapter->num_active_queues);
Greg Rose5eae00c2013-12-21 06:12:45 +00001447
1448 return 0;
1449err_alloc_queues:
1450 i40evf_free_q_vectors(adapter);
1451err_alloc_q_vectors:
1452 i40evf_reset_interrupt_capability(adapter);
1453err_set_interrupt:
1454 return err;
1455}
1456
1457/**
Mitch Williams43a3d9b2016-04-12 08:30:44 -07001458 * i40evf_free_rss - Free memory used by RSS structs
1459 * @adapter: board private structure
Helin Zhang66f9af852015-10-26 19:44:34 -04001460 **/
Mitch Williams43a3d9b2016-04-12 08:30:44 -07001461static void i40evf_free_rss(struct i40evf_adapter *adapter)
Helin Zhang66f9af852015-10-26 19:44:34 -04001462{
Mitch Williams43a3d9b2016-04-12 08:30:44 -07001463 kfree(adapter->rss_key);
1464 adapter->rss_key = NULL;
Helin Zhang66f9af852015-10-26 19:44:34 -04001465
Mitch Williams43a3d9b2016-04-12 08:30:44 -07001466 kfree(adapter->rss_lut);
1467 adapter->rss_lut = NULL;
Helin Zhang66f9af852015-10-26 19:44:34 -04001468}
1469
1470/**
Greg Rose5eae00c2013-12-21 06:12:45 +00001471 * i40evf_watchdog_timer - Periodic call-back timer
1472 * @data: pointer to adapter disguised as unsigned long
1473 **/
1474static void i40evf_watchdog_timer(unsigned long data)
1475{
1476 struct i40evf_adapter *adapter = (struct i40evf_adapter *)data;
Mitch Williams75a64432014-11-11 20:02:42 +00001477
Greg Rose5eae00c2013-12-21 06:12:45 +00001478 schedule_work(&adapter->watchdog_task);
1479 /* timer will be rescheduled in watchdog task */
1480}
1481
1482/**
1483 * i40evf_watchdog_task - Periodic call-back task
1484 * @work: pointer to work_struct
1485 **/
1486static void i40evf_watchdog_task(struct work_struct *work)
1487{
1488 struct i40evf_adapter *adapter = container_of(work,
Mitch Williams75a64432014-11-11 20:02:42 +00001489 struct i40evf_adapter,
1490 watchdog_task);
Greg Rose5eae00c2013-12-21 06:12:45 +00001491 struct i40e_hw *hw = &adapter->hw;
Mitch Williamsee5c1e92015-08-28 17:55:53 -04001492 u32 reg_val;
Greg Rose5eae00c2013-12-21 06:12:45 +00001493
Greg Rose5eae00c2013-12-21 06:12:45 +00001494 if (test_and_set_bit(__I40EVF_IN_CRITICAL_TASK, &adapter->crit_section))
Mitch Williamsef8693e2014-02-13 03:48:53 -08001495 goto restart_watchdog;
1496
1497 if (adapter->flags & I40EVF_FLAG_PF_COMMS_FAILED) {
Mitch Williamsee5c1e92015-08-28 17:55:53 -04001498 reg_val = rd32(hw, I40E_VFGEN_RSTAT) &
1499 I40E_VFGEN_RSTAT_VFR_STATE_MASK;
1500 if ((reg_val == I40E_VFR_VFACTIVE) ||
1501 (reg_val == I40E_VFR_COMPLETED)) {
Mitch Williamsef8693e2014-02-13 03:48:53 -08001502 /* A chance for redemption! */
1503 dev_err(&adapter->pdev->dev, "Hardware came out of reset. Attempting reinit.\n");
1504 adapter->state = __I40EVF_STARTUP;
1505 adapter->flags &= ~I40EVF_FLAG_PF_COMMS_FAILED;
1506 schedule_delayed_work(&adapter->init_task, 10);
1507 clear_bit(__I40EVF_IN_CRITICAL_TASK,
1508 &adapter->crit_section);
1509 /* Don't reschedule the watchdog, since we've restarted
1510 * the init task. When init_task contacts the PF and
1511 * gets everything set up again, it'll restart the
1512 * watchdog for us. Down, boy. Sit. Stay. Woof.
1513 */
1514 return;
1515 }
Mitch Williamsef8693e2014-02-13 03:48:53 -08001516 adapter->aq_required = 0;
1517 adapter->current_op = I40E_VIRTCHNL_OP_UNKNOWN;
1518 goto watchdog_done;
1519 }
1520
1521 if ((adapter->state < __I40EVF_DOWN) ||
1522 (adapter->flags & I40EVF_FLAG_RESET_PENDING))
Greg Rose5eae00c2013-12-21 06:12:45 +00001523 goto watchdog_done;
1524
Mitch Williamsef8693e2014-02-13 03:48:53 -08001525 /* check for reset */
Mitch Williamsee5c1e92015-08-28 17:55:53 -04001526 reg_val = rd32(hw, I40E_VF_ARQLEN1) & I40E_VF_ARQLEN1_ARQENABLE_MASK;
1527 if (!(adapter->flags & I40EVF_FLAG_RESET_PENDING) && !reg_val) {
Greg Rose5eae00c2013-12-21 06:12:45 +00001528 adapter->state = __I40EVF_RESETTING;
Mitch Williamsef8693e2014-02-13 03:48:53 -08001529 adapter->flags |= I40EVF_FLAG_RESET_PENDING;
Mitch Williams249c8b82014-05-10 04:49:04 +00001530 dev_err(&adapter->pdev->dev, "Hardware reset detected\n");
Greg Rose5eae00c2013-12-21 06:12:45 +00001531 schedule_work(&adapter->reset_task);
Mitch Williamsef8693e2014-02-13 03:48:53 -08001532 adapter->aq_required = 0;
1533 adapter->current_op = I40E_VIRTCHNL_OP_UNKNOWN;
Greg Rose5eae00c2013-12-21 06:12:45 +00001534 goto watchdog_done;
1535 }
1536
1537 /* Process admin queue tasks. After init, everything gets done
1538 * here so we don't race on the admin queue.
1539 */
Mitch Williamsed636962015-04-07 19:45:32 -04001540 if (adapter->current_op) {
Mitch A Williams0758e7cb2014-12-09 08:53:08 +00001541 if (!i40evf_asq_done(hw)) {
1542 dev_dbg(&adapter->pdev->dev, "Admin queue timeout\n");
1543 i40evf_send_api_ver(adapter);
1544 }
Greg Rose5eae00c2013-12-21 06:12:45 +00001545 goto watchdog_done;
Mitch A Williams0758e7cb2014-12-09 08:53:08 +00001546 }
Mitch Williamse6d038d2015-06-04 16:23:58 -04001547 if (adapter->aq_required & I40EVF_FLAG_AQ_GET_CONFIG) {
1548 i40evf_send_vf_config_msg(adapter);
1549 goto watchdog_done;
1550 }
Greg Rose5eae00c2013-12-21 06:12:45 +00001551
Mitch Williamse284fc82015-03-27 00:12:09 -07001552 if (adapter->aq_required & I40EVF_FLAG_AQ_DISABLE_QUEUES) {
1553 i40evf_disable_queues(adapter);
1554 goto watchdog_done;
1555 }
1556
Greg Rose5eae00c2013-12-21 06:12:45 +00001557 if (adapter->aq_required & I40EVF_FLAG_AQ_MAP_VECTORS) {
1558 i40evf_map_queues(adapter);
1559 goto watchdog_done;
1560 }
1561
1562 if (adapter->aq_required & I40EVF_FLAG_AQ_ADD_MAC_FILTER) {
1563 i40evf_add_ether_addrs(adapter);
1564 goto watchdog_done;
1565 }
1566
1567 if (adapter->aq_required & I40EVF_FLAG_AQ_ADD_VLAN_FILTER) {
1568 i40evf_add_vlans(adapter);
1569 goto watchdog_done;
1570 }
1571
1572 if (adapter->aq_required & I40EVF_FLAG_AQ_DEL_MAC_FILTER) {
1573 i40evf_del_ether_addrs(adapter);
1574 goto watchdog_done;
1575 }
1576
1577 if (adapter->aq_required & I40EVF_FLAG_AQ_DEL_VLAN_FILTER) {
1578 i40evf_del_vlans(adapter);
1579 goto watchdog_done;
1580 }
1581
Greg Rose5eae00c2013-12-21 06:12:45 +00001582 if (adapter->aq_required & I40EVF_FLAG_AQ_CONFIGURE_QUEUES) {
1583 i40evf_configure_queues(adapter);
1584 goto watchdog_done;
1585 }
1586
1587 if (adapter->aq_required & I40EVF_FLAG_AQ_ENABLE_QUEUES) {
1588 i40evf_enable_queues(adapter);
1589 goto watchdog_done;
1590 }
1591
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04001592 if (adapter->aq_required & I40EVF_FLAG_AQ_CONFIGURE_RSS) {
1593 /* This message goes straight to the firmware, not the
1594 * PF, so we don't have to set current_op as we will
1595 * not get a response through the ARQ.
1596 */
Helin Zhang96a81982015-10-26 19:44:31 -04001597 i40evf_init_rss(adapter);
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04001598 adapter->aq_required &= ~I40EVF_FLAG_AQ_CONFIGURE_RSS;
1599 goto watchdog_done;
1600 }
Mitch Williams43a3d9b2016-04-12 08:30:44 -07001601 if (adapter->aq_required & I40EVF_FLAG_AQ_GET_HENA) {
1602 i40evf_get_hena(adapter);
1603 goto watchdog_done;
1604 }
1605 if (adapter->aq_required & I40EVF_FLAG_AQ_SET_HENA) {
1606 i40evf_set_hena(adapter);
1607 goto watchdog_done;
1608 }
1609 if (adapter->aq_required & I40EVF_FLAG_AQ_SET_RSS_KEY) {
1610 i40evf_set_rss_key(adapter);
1611 goto watchdog_done;
1612 }
1613 if (adapter->aq_required & I40EVF_FLAG_AQ_SET_RSS_LUT) {
1614 i40evf_set_rss_lut(adapter);
1615 goto watchdog_done;
1616 }
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04001617
Anjali Singhai Jain47d34832016-04-12 08:30:52 -07001618 if (adapter->aq_required & I40EVF_FLAG_AQ_REQUEST_PROMISC) {
1619 i40evf_set_promiscuous(adapter, I40E_FLAG_VF_UNICAST_PROMISC |
1620 I40E_FLAG_VF_MULTICAST_PROMISC);
1621 goto watchdog_done;
1622 }
1623
Anjali Singhai Jainf42a5c72016-05-03 15:13:10 -07001624 if (adapter->aq_required & I40EVF_FLAG_AQ_REQUEST_ALLMULTI) {
1625 i40evf_set_promiscuous(adapter, I40E_FLAG_VF_MULTICAST_PROMISC);
1626 goto watchdog_done;
1627 }
1628
1629 if ((adapter->aq_required & I40EVF_FLAG_AQ_RELEASE_PROMISC) &&
1630 (adapter->aq_required & I40EVF_FLAG_AQ_RELEASE_ALLMULTI)) {
Anjali Singhai Jain47d34832016-04-12 08:30:52 -07001631 i40evf_set_promiscuous(adapter, 0);
1632 goto watchdog_done;
1633 }
1634
Greg Rose5eae00c2013-12-21 06:12:45 +00001635 if (adapter->state == __I40EVF_RUNNING)
1636 i40evf_request_stats(adapter);
Greg Rose5eae00c2013-12-21 06:12:45 +00001637watchdog_done:
Mitch A Williams4870e172014-12-09 08:53:06 +00001638 if (adapter->state == __I40EVF_RUNNING) {
1639 i40evf_irq_enable_queues(adapter, ~0);
1640 i40evf_fire_sw_int(adapter, 0xFF);
1641 } else {
1642 i40evf_fire_sw_int(adapter, 0x1);
1643 }
1644
Mitch Williamsef8693e2014-02-13 03:48:53 -08001645 clear_bit(__I40EVF_IN_CRITICAL_TASK, &adapter->crit_section);
1646restart_watchdog:
Ashish Shahd3e2edb2014-08-01 13:27:12 -07001647 if (adapter->state == __I40EVF_REMOVE)
1648 return;
Greg Rose5eae00c2013-12-21 06:12:45 +00001649 if (adapter->aq_required)
1650 mod_timer(&adapter->watchdog_timer,
1651 jiffies + msecs_to_jiffies(20));
1652 else
1653 mod_timer(&adapter->watchdog_timer, jiffies + (HZ * 2));
Greg Rose5eae00c2013-12-21 06:12:45 +00001654 schedule_work(&adapter->adminq_task);
1655}
1656
Mitch Williams67c818a2015-06-19 08:56:30 -07001657#define I40EVF_RESET_WAIT_MS 10
1658#define I40EVF_RESET_WAIT_COUNT 500
Greg Rose5eae00c2013-12-21 06:12:45 +00001659/**
1660 * i40evf_reset_task - Call-back task to handle hardware reset
1661 * @work: pointer to work_struct
1662 *
1663 * During reset we need to shut down and reinitialize the admin queue
1664 * before we can use it to communicate with the PF again. We also clear
1665 * and reinit the rings because that context is lost as well.
1666 **/
1667static void i40evf_reset_task(struct work_struct *work)
1668{
Mitch Williamsef8693e2014-02-13 03:48:53 -08001669 struct i40evf_adapter *adapter = container_of(work,
1670 struct i40evf_adapter,
1671 reset_task);
Mitch Williamsac833bb2015-01-29 07:17:19 +00001672 struct net_device *netdev = adapter->netdev;
Greg Rose5eae00c2013-12-21 06:12:45 +00001673 struct i40e_hw *hw = &adapter->hw;
Mitch Williams40d01362015-10-01 14:37:37 -04001674 struct i40evf_vlan_filter *vlf;
Mitch Williamsac833bb2015-01-29 07:17:19 +00001675 struct i40evf_mac_filter *f;
Mitch Williamsee5c1e92015-08-28 17:55:53 -04001676 u32 reg_val;
Mitch Williamsac833bb2015-01-29 07:17:19 +00001677 int i = 0, err;
Greg Rose5eae00c2013-12-21 06:12:45 +00001678
1679 while (test_and_set_bit(__I40EVF_IN_CRITICAL_TASK,
1680 &adapter->crit_section))
Neerav Parikhf98a2002014-09-13 07:40:44 +00001681 usleep_range(500, 1000);
Mitch Williams3526d802014-03-06 08:59:56 +00001682
Mitch Williams67c818a2015-06-19 08:56:30 -07001683 i40evf_misc_irq_disable(adapter);
Mitch Williams3526d802014-03-06 08:59:56 +00001684 if (adapter->flags & I40EVF_FLAG_RESET_NEEDED) {
Mitch Williams67c818a2015-06-19 08:56:30 -07001685 adapter->flags &= ~I40EVF_FLAG_RESET_NEEDED;
1686 /* Restart the AQ here. If we have been reset but didn't
1687 * detect it, or if the PF had to reinit, our AQ will be hosed.
1688 */
1689 i40evf_shutdown_adminq(hw);
1690 i40evf_init_adminq(hw);
Mitch Williams3526d802014-03-06 08:59:56 +00001691 i40evf_request_reset(adapter);
1692 }
Mitch Williams67c818a2015-06-19 08:56:30 -07001693 adapter->flags |= I40EVF_FLAG_RESET_PENDING;
Mitch Williams3526d802014-03-06 08:59:56 +00001694
Mitch Williamsef8693e2014-02-13 03:48:53 -08001695 /* poll until we see the reset actually happen */
1696 for (i = 0; i < I40EVF_RESET_WAIT_COUNT; i++) {
Mitch Williamsee5c1e92015-08-28 17:55:53 -04001697 reg_val = rd32(hw, I40E_VF_ARQLEN1) &
1698 I40E_VF_ARQLEN1_ARQENABLE_MASK;
1699 if (!reg_val)
Greg Rose5eae00c2013-12-21 06:12:45 +00001700 break;
Mitch Williamsee5c1e92015-08-28 17:55:53 -04001701 usleep_range(5000, 10000);
Greg Rose5eae00c2013-12-21 06:12:45 +00001702 }
Mitch Williamsef8693e2014-02-13 03:48:53 -08001703 if (i == I40EVF_RESET_WAIT_COUNT) {
Mitch Williams67c818a2015-06-19 08:56:30 -07001704 dev_info(&adapter->pdev->dev, "Never saw reset\n");
Mitch Williamsef8693e2014-02-13 03:48:53 -08001705 goto continue_reset; /* act like the reset happened */
1706 }
1707
1708 /* wait until the reset is complete and the PF is responding to us */
1709 for (i = 0; i < I40EVF_RESET_WAIT_COUNT; i++) {
Mitch Williamsee5c1e92015-08-28 17:55:53 -04001710 reg_val = rd32(hw, I40E_VFGEN_RSTAT) &
1711 I40E_VFGEN_RSTAT_VFR_STATE_MASK;
1712 if (reg_val == I40E_VFR_VFACTIVE)
Mitch Williamsef8693e2014-02-13 03:48:53 -08001713 break;
Mitch Williamsc88e38c2014-11-11 20:03:13 +00001714 msleep(I40EVF_RESET_WAIT_MS);
Mitch Williamsef8693e2014-02-13 03:48:53 -08001715 }
Mitch Williams509a4472015-12-23 12:05:52 -08001716 pci_set_master(adapter->pdev);
Mitch Williams67c818a2015-06-19 08:56:30 -07001717 /* extra wait to make sure minimum wait is met */
1718 msleep(I40EVF_RESET_WAIT_MS);
Mitch Williamsef8693e2014-02-13 03:48:53 -08001719 if (i == I40EVF_RESET_WAIT_COUNT) {
Shannon Nelson874d1a12015-09-03 17:18:57 -04001720 struct i40evf_mac_filter *ftmp;
Mitch Williams6ba36a22014-08-01 13:27:14 -07001721 struct i40evf_vlan_filter *fv, *fvtmp;
1722
Greg Rose5eae00c2013-12-21 06:12:45 +00001723 /* reset never finished */
Mitch Williams80e72892014-05-10 04:49:06 +00001724 dev_err(&adapter->pdev->dev, "Reset never finished (%x)\n",
Mitch Williamsee5c1e92015-08-28 17:55:53 -04001725 reg_val);
Mitch Williamsef8693e2014-02-13 03:48:53 -08001726 adapter->flags |= I40EVF_FLAG_PF_COMMS_FAILED;
1727
Mitch Williams169f4072014-04-01 07:11:50 +00001728 if (netif_running(adapter->netdev)) {
1729 set_bit(__I40E_DOWN, &adapter->vsi.state);
Mitch Williamsac833bb2015-01-29 07:17:19 +00001730 netif_carrier_off(netdev);
Mitch Williams67c818a2015-06-19 08:56:30 -07001731 netif_tx_disable(netdev);
1732 i40evf_napi_disable_all(adapter);
1733 i40evf_irq_disable(adapter);
Mitch Williams169f4072014-04-01 07:11:50 +00001734 i40evf_free_traffic_irqs(adapter);
1735 i40evf_free_all_tx_resources(adapter);
1736 i40evf_free_all_rx_resources(adapter);
1737 }
Mitch Williams6ba36a22014-08-01 13:27:14 -07001738
1739 /* Delete all of the filters, both MAC and VLAN. */
1740 list_for_each_entry_safe(f, ftmp, &adapter->mac_filter_list,
1741 list) {
1742 list_del(&f->list);
1743 kfree(f);
1744 }
Mitch Williams67c818a2015-06-19 08:56:30 -07001745
Mitch Williams6ba36a22014-08-01 13:27:14 -07001746 list_for_each_entry_safe(fv, fvtmp, &adapter->vlan_filter_list,
1747 list) {
1748 list_del(&fv->list);
1749 kfree(fv);
1750 }
1751
Mitch Williamsef8693e2014-02-13 03:48:53 -08001752 i40evf_free_misc_irq(adapter);
1753 i40evf_reset_interrupt_capability(adapter);
1754 i40evf_free_queues(adapter);
Mitch Williamsd31944d2014-08-01 13:27:13 -07001755 i40evf_free_q_vectors(adapter);
Mitch Williamsef8693e2014-02-13 03:48:53 -08001756 kfree(adapter->vf_res);
1757 i40evf_shutdown_adminq(hw);
1758 adapter->netdev->flags &= ~IFF_UP;
1759 clear_bit(__I40EVF_IN_CRITICAL_TASK, &adapter->crit_section);
Mitch Williams67c818a2015-06-19 08:56:30 -07001760 adapter->flags &= ~I40EVF_FLAG_RESET_PENDING;
Mitch Williams9b9344f2016-01-15 14:33:19 -08001761 adapter->state = __I40EVF_DOWN;
Mitch Williams67c818a2015-06-19 08:56:30 -07001762 dev_info(&adapter->pdev->dev, "Reset task did not complete, VF disabled\n");
Mitch Williamsef8693e2014-02-13 03:48:53 -08001763 return; /* Do not attempt to reinit. It's dead, Jim. */
Greg Rose5eae00c2013-12-21 06:12:45 +00001764 }
Mitch Williamsef8693e2014-02-13 03:48:53 -08001765
1766continue_reset:
Mitch Williams67c818a2015-06-19 08:56:30 -07001767 if (netif_running(adapter->netdev)) {
1768 netif_carrier_off(netdev);
1769 netif_tx_stop_all_queues(netdev);
1770 i40evf_napi_disable_all(adapter);
1771 }
Mitch Williamsac833bb2015-01-29 07:17:19 +00001772 i40evf_irq_disable(adapter);
Mitch Williamsac833bb2015-01-29 07:17:19 +00001773
Greg Rose5eae00c2013-12-21 06:12:45 +00001774 adapter->state = __I40EVF_RESETTING;
Mitch Williams67c818a2015-06-19 08:56:30 -07001775 adapter->flags &= ~I40EVF_FLAG_RESET_PENDING;
1776
1777 /* free the Tx/Rx rings and descriptors, might be better to just
1778 * re-use them sometime in the future
1779 */
1780 i40evf_free_all_rx_resources(adapter);
1781 i40evf_free_all_tx_resources(adapter);
Greg Rose5eae00c2013-12-21 06:12:45 +00001782
1783 /* kill and reinit the admin queue */
1784 if (i40evf_shutdown_adminq(hw))
Mitch Williamsac833bb2015-01-29 07:17:19 +00001785 dev_warn(&adapter->pdev->dev, "Failed to shut down adminq\n");
1786 adapter->current_op = I40E_VIRTCHNL_OP_UNKNOWN;
Greg Rose5eae00c2013-12-21 06:12:45 +00001787 err = i40evf_init_adminq(hw);
1788 if (err)
Mitch Williamsac833bb2015-01-29 07:17:19 +00001789 dev_info(&adapter->pdev->dev, "Failed to init adminq: %d\n",
1790 err);
Greg Rose5eae00c2013-12-21 06:12:45 +00001791
Mitch Williamse6d038d2015-06-04 16:23:58 -04001792 adapter->aq_required = I40EVF_FLAG_AQ_GET_CONFIG;
1793 adapter->aq_required |= I40EVF_FLAG_AQ_MAP_VECTORS;
Mitch Williamsac833bb2015-01-29 07:17:19 +00001794
1795 /* re-add all MAC filters */
1796 list_for_each_entry(f, &adapter->mac_filter_list, list) {
1797 f->add = true;
1798 }
1799 /* re-add all VLAN filters */
Mitch Williams40d01362015-10-01 14:37:37 -04001800 list_for_each_entry(vlf, &adapter->vlan_filter_list, list) {
1801 vlf->add = true;
Mitch Williamsac833bb2015-01-29 07:17:19 +00001802 }
Mitch Williamse6d038d2015-06-04 16:23:58 -04001803 adapter->aq_required |= I40EVF_FLAG_AQ_ADD_MAC_FILTER;
Mitch Williamsac833bb2015-01-29 07:17:19 +00001804 adapter->aq_required |= I40EVF_FLAG_AQ_ADD_VLAN_FILTER;
Greg Rose5eae00c2013-12-21 06:12:45 +00001805 clear_bit(__I40EVF_IN_CRITICAL_TASK, &adapter->crit_section);
Mitch Williams67c818a2015-06-19 08:56:30 -07001806 i40evf_misc_irq_enable(adapter);
Greg Rose5eae00c2013-12-21 06:12:45 +00001807
1808 mod_timer(&adapter->watchdog_timer, jiffies + 2);
1809
1810 if (netif_running(adapter->netdev)) {
1811 /* allocate transmit descriptors */
1812 err = i40evf_setup_all_tx_resources(adapter);
1813 if (err)
1814 goto reset_err;
1815
1816 /* allocate receive descriptors */
1817 err = i40evf_setup_all_rx_resources(adapter);
1818 if (err)
1819 goto reset_err;
1820
1821 i40evf_configure(adapter);
1822
1823 err = i40evf_up_complete(adapter);
1824 if (err)
1825 goto reset_err;
1826
1827 i40evf_irq_enable(adapter, true);
Mitch Williams67c818a2015-06-19 08:56:30 -07001828 } else {
1829 adapter->state = __I40EVF_DOWN;
Greg Rose5eae00c2013-12-21 06:12:45 +00001830 }
Mitch Williams67c818a2015-06-19 08:56:30 -07001831
Greg Rose5eae00c2013-12-21 06:12:45 +00001832 return;
1833reset_err:
Mitch Williams80e72892014-05-10 04:49:06 +00001834 dev_err(&adapter->pdev->dev, "failed to allocate resources during reinit\n");
Greg Rose5eae00c2013-12-21 06:12:45 +00001835 i40evf_close(adapter->netdev);
1836}
1837
1838/**
1839 * i40evf_adminq_task - worker thread to clean the admin queue
1840 * @work: pointer to work_struct containing our data
1841 **/
1842static void i40evf_adminq_task(struct work_struct *work)
1843{
1844 struct i40evf_adapter *adapter =
1845 container_of(work, struct i40evf_adapter, adminq_task);
1846 struct i40e_hw *hw = &adapter->hw;
1847 struct i40e_arq_event_info event;
1848 struct i40e_virtchnl_msg *v_msg;
1849 i40e_status ret;
Mitch Williams912257e2014-05-22 06:32:07 +00001850 u32 val, oldval;
Greg Rose5eae00c2013-12-21 06:12:45 +00001851 u16 pending;
1852
Mitch Williamsef8693e2014-02-13 03:48:53 -08001853 if (adapter->flags & I40EVF_FLAG_PF_COMMS_FAILED)
Mitch A Williams72354482014-12-09 08:53:07 +00001854 goto out;
Mitch Williamsef8693e2014-02-13 03:48:53 -08001855
Mitch Williams1001dc32014-11-11 20:02:19 +00001856 event.buf_len = I40EVF_MAX_AQ_BUF_SIZE;
1857 event.msg_buf = kzalloc(event.buf_len, GFP_KERNEL);
Mitch Williams249c8b82014-05-10 04:49:04 +00001858 if (!event.msg_buf)
Mitch A Williams72354482014-12-09 08:53:07 +00001859 goto out;
Mitch Williams249c8b82014-05-10 04:49:04 +00001860
Greg Rose5eae00c2013-12-21 06:12:45 +00001861 v_msg = (struct i40e_virtchnl_msg *)&event.desc;
1862 do {
1863 ret = i40evf_clean_arq_element(hw, &event, &pending);
Mitch Williams8b011eb2015-01-09 11:18:17 +00001864 if (ret || !v_msg->v_opcode)
Greg Rose5eae00c2013-12-21 06:12:45 +00001865 break; /* No event to process or error cleaning ARQ */
1866
1867 i40evf_virtchnl_completion(adapter, v_msg->v_opcode,
1868 v_msg->v_retval, event.msg_buf,
Mitch Williams1001dc32014-11-11 20:02:19 +00001869 event.msg_len);
Mitch Williams75a64432014-11-11 20:02:42 +00001870 if (pending != 0)
Greg Rose5eae00c2013-12-21 06:12:45 +00001871 memset(event.msg_buf, 0, I40EVF_MAX_AQ_BUF_SIZE);
Greg Rose5eae00c2013-12-21 06:12:45 +00001872 } while (pending);
1873
Mitch Williams67c818a2015-06-19 08:56:30 -07001874 if ((adapter->flags &
1875 (I40EVF_FLAG_RESET_PENDING | I40EVF_FLAG_RESET_NEEDED)) ||
1876 adapter->state == __I40EVF_RESETTING)
1877 goto freedom;
1878
Mitch Williams912257e2014-05-22 06:32:07 +00001879 /* check for error indications */
1880 val = rd32(hw, hw->aq.arq.len);
Mitch Williams19b73d82016-03-10 14:59:49 -08001881 if (val == 0xdeadbeef) /* indicates device in reset */
1882 goto freedom;
Mitch Williams912257e2014-05-22 06:32:07 +00001883 oldval = val;
Anjali Singhai Jainb1f33662015-07-10 19:36:05 -04001884 if (val & I40E_VF_ARQLEN1_ARQVFE_MASK) {
Mitch Williams912257e2014-05-22 06:32:07 +00001885 dev_info(&adapter->pdev->dev, "ARQ VF Error detected\n");
Anjali Singhai Jainb1f33662015-07-10 19:36:05 -04001886 val &= ~I40E_VF_ARQLEN1_ARQVFE_MASK;
Mitch Williams912257e2014-05-22 06:32:07 +00001887 }
Anjali Singhai Jainb1f33662015-07-10 19:36:05 -04001888 if (val & I40E_VF_ARQLEN1_ARQOVFL_MASK) {
Mitch Williams912257e2014-05-22 06:32:07 +00001889 dev_info(&adapter->pdev->dev, "ARQ Overflow Error detected\n");
Anjali Singhai Jainb1f33662015-07-10 19:36:05 -04001890 val &= ~I40E_VF_ARQLEN1_ARQOVFL_MASK;
Mitch Williams912257e2014-05-22 06:32:07 +00001891 }
Anjali Singhai Jainb1f33662015-07-10 19:36:05 -04001892 if (val & I40E_VF_ARQLEN1_ARQCRIT_MASK) {
Mitch Williams912257e2014-05-22 06:32:07 +00001893 dev_info(&adapter->pdev->dev, "ARQ Critical Error detected\n");
Anjali Singhai Jainb1f33662015-07-10 19:36:05 -04001894 val &= ~I40E_VF_ARQLEN1_ARQCRIT_MASK;
Mitch Williams912257e2014-05-22 06:32:07 +00001895 }
1896 if (oldval != val)
1897 wr32(hw, hw->aq.arq.len, val);
1898
1899 val = rd32(hw, hw->aq.asq.len);
1900 oldval = val;
Anjali Singhai Jainb1f33662015-07-10 19:36:05 -04001901 if (val & I40E_VF_ATQLEN1_ATQVFE_MASK) {
Mitch Williams912257e2014-05-22 06:32:07 +00001902 dev_info(&adapter->pdev->dev, "ASQ VF Error detected\n");
Anjali Singhai Jainb1f33662015-07-10 19:36:05 -04001903 val &= ~I40E_VF_ATQLEN1_ATQVFE_MASK;
Mitch Williams912257e2014-05-22 06:32:07 +00001904 }
Anjali Singhai Jainb1f33662015-07-10 19:36:05 -04001905 if (val & I40E_VF_ATQLEN1_ATQOVFL_MASK) {
Mitch Williams912257e2014-05-22 06:32:07 +00001906 dev_info(&adapter->pdev->dev, "ASQ Overflow Error detected\n");
Anjali Singhai Jainb1f33662015-07-10 19:36:05 -04001907 val &= ~I40E_VF_ATQLEN1_ATQOVFL_MASK;
Mitch Williams912257e2014-05-22 06:32:07 +00001908 }
Anjali Singhai Jainb1f33662015-07-10 19:36:05 -04001909 if (val & I40E_VF_ATQLEN1_ATQCRIT_MASK) {
Mitch Williams912257e2014-05-22 06:32:07 +00001910 dev_info(&adapter->pdev->dev, "ASQ Critical Error detected\n");
Anjali Singhai Jainb1f33662015-07-10 19:36:05 -04001911 val &= ~I40E_VF_ATQLEN1_ATQCRIT_MASK;
Mitch Williams912257e2014-05-22 06:32:07 +00001912 }
1913 if (oldval != val)
1914 wr32(hw, hw->aq.asq.len, val);
1915
Mitch Williams67c818a2015-06-19 08:56:30 -07001916freedom:
Mitch A Williams72354482014-12-09 08:53:07 +00001917 kfree(event.msg_buf);
1918out:
Greg Rose5eae00c2013-12-21 06:12:45 +00001919 /* re-enable Admin queue interrupt cause */
1920 i40evf_misc_irq_enable(adapter);
Greg Rose5eae00c2013-12-21 06:12:45 +00001921}
1922
1923/**
1924 * i40evf_free_all_tx_resources - Free Tx Resources for All Queues
1925 * @adapter: board private structure
1926 *
1927 * Free all transmit software resources
1928 **/
Mitch Williamse284fc82015-03-27 00:12:09 -07001929void i40evf_free_all_tx_resources(struct i40evf_adapter *adapter)
Greg Rose5eae00c2013-12-21 06:12:45 +00001930{
1931 int i;
1932
Mitch Williamsfdb47ae2015-11-19 11:34:18 -08001933 if (!adapter->tx_rings)
1934 return;
1935
Mitch Williamscc052922014-10-25 03:24:34 +00001936 for (i = 0; i < adapter->num_active_queues; i++)
Mitch Williams0dd438d2015-10-26 19:44:40 -04001937 if (adapter->tx_rings[i].desc)
1938 i40evf_free_tx_resources(&adapter->tx_rings[i]);
Greg Rose5eae00c2013-12-21 06:12:45 +00001939}
1940
1941/**
1942 * i40evf_setup_all_tx_resources - allocate all queues Tx resources
1943 * @adapter: board private structure
1944 *
1945 * If this function returns with an error, then it's possible one or
1946 * more of the rings is populated (while the rest are not). It is the
1947 * callers duty to clean those orphaned rings.
1948 *
1949 * Return 0 on success, negative on failure
1950 **/
1951static int i40evf_setup_all_tx_resources(struct i40evf_adapter *adapter)
1952{
1953 int i, err = 0;
1954
Mitch Williamscc052922014-10-25 03:24:34 +00001955 for (i = 0; i < adapter->num_active_queues; i++) {
Mitch Williams0dd438d2015-10-26 19:44:40 -04001956 adapter->tx_rings[i].count = adapter->tx_desc_count;
1957 err = i40evf_setup_tx_descriptors(&adapter->tx_rings[i]);
Greg Rose5eae00c2013-12-21 06:12:45 +00001958 if (!err)
1959 continue;
1960 dev_err(&adapter->pdev->dev,
Shannon Nelsonfb43201f2015-08-26 15:14:17 -04001961 "Allocation for Tx Queue %u failed\n", i);
Greg Rose5eae00c2013-12-21 06:12:45 +00001962 break;
1963 }
1964
1965 return err;
1966}
1967
1968/**
1969 * i40evf_setup_all_rx_resources - allocate all queues Rx resources
1970 * @adapter: board private structure
1971 *
1972 * If this function returns with an error, then it's possible one or
1973 * more of the rings is populated (while the rest are not). It is the
1974 * callers duty to clean those orphaned rings.
1975 *
1976 * Return 0 on success, negative on failure
1977 **/
1978static int i40evf_setup_all_rx_resources(struct i40evf_adapter *adapter)
1979{
1980 int i, err = 0;
1981
Mitch Williamscc052922014-10-25 03:24:34 +00001982 for (i = 0; i < adapter->num_active_queues; i++) {
Mitch Williams0dd438d2015-10-26 19:44:40 -04001983 adapter->rx_rings[i].count = adapter->rx_desc_count;
1984 err = i40evf_setup_rx_descriptors(&adapter->rx_rings[i]);
Greg Rose5eae00c2013-12-21 06:12:45 +00001985 if (!err)
1986 continue;
1987 dev_err(&adapter->pdev->dev,
Shannon Nelsonfb43201f2015-08-26 15:14:17 -04001988 "Allocation for Rx Queue %u failed\n", i);
Greg Rose5eae00c2013-12-21 06:12:45 +00001989 break;
1990 }
1991 return err;
1992}
1993
1994/**
1995 * i40evf_free_all_rx_resources - Free Rx Resources for All Queues
1996 * @adapter: board private structure
1997 *
1998 * Free all receive software resources
1999 **/
Mitch Williamse284fc82015-03-27 00:12:09 -07002000void i40evf_free_all_rx_resources(struct i40evf_adapter *adapter)
Greg Rose5eae00c2013-12-21 06:12:45 +00002001{
2002 int i;
2003
Mitch Williamsfdb47ae2015-11-19 11:34:18 -08002004 if (!adapter->rx_rings)
2005 return;
2006
Mitch Williamscc052922014-10-25 03:24:34 +00002007 for (i = 0; i < adapter->num_active_queues; i++)
Mitch Williams0dd438d2015-10-26 19:44:40 -04002008 if (adapter->rx_rings[i].desc)
2009 i40evf_free_rx_resources(&adapter->rx_rings[i]);
Greg Rose5eae00c2013-12-21 06:12:45 +00002010}
2011
2012/**
2013 * i40evf_open - Called when a network interface is made active
2014 * @netdev: network interface device structure
2015 *
2016 * Returns 0 on success, negative value on failure
2017 *
2018 * The open entry point is called when a network interface is made
2019 * active by the system (IFF_UP). At this point all resources needed
2020 * for transmit and receive operations are allocated, the interrupt
2021 * handler is registered with the OS, the watchdog timer is started,
2022 * and the stack is notified that the interface is ready.
2023 **/
2024static int i40evf_open(struct net_device *netdev)
2025{
2026 struct i40evf_adapter *adapter = netdev_priv(netdev);
2027 int err;
2028
Mitch Williamsef8693e2014-02-13 03:48:53 -08002029 if (adapter->flags & I40EVF_FLAG_PF_COMMS_FAILED) {
2030 dev_err(&adapter->pdev->dev, "Unable to open device due to PF driver failure.\n");
2031 return -EIO;
2032 }
Mitch Williams209dc4d2015-12-09 15:50:27 -08002033
2034 if (adapter->state != __I40EVF_DOWN)
Greg Rose5eae00c2013-12-21 06:12:45 +00002035 return -EBUSY;
2036
2037 /* allocate transmit descriptors */
2038 err = i40evf_setup_all_tx_resources(adapter);
2039 if (err)
2040 goto err_setup_tx;
2041
2042 /* allocate receive descriptors */
2043 err = i40evf_setup_all_rx_resources(adapter);
2044 if (err)
2045 goto err_setup_rx;
2046
2047 /* clear any pending interrupts, may auto mask */
2048 err = i40evf_request_traffic_irqs(adapter, netdev->name);
2049 if (err)
2050 goto err_req_irq;
2051
Mitch Williams44151cd2015-04-27 14:57:17 -04002052 i40evf_add_filter(adapter, adapter->hw.mac.addr);
Greg Rose5eae00c2013-12-21 06:12:45 +00002053 i40evf_configure(adapter);
2054
2055 err = i40evf_up_complete(adapter);
2056 if (err)
2057 goto err_req_irq;
2058
2059 i40evf_irq_enable(adapter, true);
2060
2061 return 0;
2062
2063err_req_irq:
2064 i40evf_down(adapter);
2065 i40evf_free_traffic_irqs(adapter);
2066err_setup_rx:
2067 i40evf_free_all_rx_resources(adapter);
2068err_setup_tx:
2069 i40evf_free_all_tx_resources(adapter);
2070
2071 return err;
2072}
2073
2074/**
2075 * i40evf_close - Disables a network interface
2076 * @netdev: network interface device structure
2077 *
2078 * Returns 0, this is not allowed to fail
2079 *
2080 * The close entry point is called when an interface is de-activated
2081 * by the OS. The hardware is still under the drivers control, but
2082 * needs to be disabled. All IRQs except vector 0 (reserved for admin queue)
2083 * are freed, along with all transmit and receive resources.
2084 **/
2085static int i40evf_close(struct net_device *netdev)
2086{
2087 struct i40evf_adapter *adapter = netdev_priv(netdev);
2088
Mitch Williams209dc4d2015-12-09 15:50:27 -08002089 if (adapter->state <= __I40EVF_DOWN_PENDING)
Mitch Williamsef8693e2014-02-13 03:48:53 -08002090 return 0;
2091
Mitch Williamsef8693e2014-02-13 03:48:53 -08002092
Greg Rose5eae00c2013-12-21 06:12:45 +00002093 set_bit(__I40E_DOWN, &adapter->vsi.state);
2094
2095 i40evf_down(adapter);
Mitch Williams209dc4d2015-12-09 15:50:27 -08002096 adapter->state = __I40EVF_DOWN_PENDING;
Greg Rose5eae00c2013-12-21 06:12:45 +00002097 i40evf_free_traffic_irqs(adapter);
2098
Greg Rose5eae00c2013-12-21 06:12:45 +00002099 return 0;
2100}
2101
2102/**
2103 * i40evf_get_stats - Get System Network Statistics
2104 * @netdev: network interface device structure
2105 *
2106 * Returns the address of the device statistics structure.
2107 * The statistics are actually updated from the timer callback.
2108 **/
2109static struct net_device_stats *i40evf_get_stats(struct net_device *netdev)
2110{
2111 struct i40evf_adapter *adapter = netdev_priv(netdev);
2112
2113 /* only return the current stats */
2114 return &adapter->net_stats;
2115}
2116
2117/**
Greg Rose5eae00c2013-12-21 06:12:45 +00002118 * i40evf_change_mtu - Change the Maximum Transfer Unit
2119 * @netdev: network interface device structure
2120 * @new_mtu: new value for maximum frame size
2121 *
2122 * Returns 0 on success, negative on failure
2123 **/
2124static int i40evf_change_mtu(struct net_device *netdev, int new_mtu)
2125{
2126 struct i40evf_adapter *adapter = netdev_priv(netdev);
2127 int max_frame = new_mtu + ETH_HLEN + ETH_FCS_LEN;
2128
2129 if ((new_mtu < 68) || (max_frame > I40E_MAX_RXBUFFER))
2130 return -EINVAL;
2131
Greg Rose5eae00c2013-12-21 06:12:45 +00002132 netdev->mtu = new_mtu;
Mitch Williams67c818a2015-06-19 08:56:30 -07002133 adapter->flags |= I40EVF_FLAG_RESET_NEEDED;
2134 schedule_work(&adapter->reset_task);
2135
Greg Rose5eae00c2013-12-21 06:12:45 +00002136 return 0;
2137}
2138
Mitch Williamsc4445ae2016-03-18 12:18:07 -07002139#define I40EVF_VLAN_FEATURES (NETIF_F_HW_VLAN_CTAG_TX |\
2140 NETIF_F_HW_VLAN_CTAG_RX |\
2141 NETIF_F_HW_VLAN_CTAG_FILTER)
2142
2143/**
2144 * i40evf_fix_features - fix up the netdev feature bits
2145 * @netdev: our net device
2146 * @features: desired feature bits
2147 *
2148 * Returns fixed-up features bits
2149 **/
2150static netdev_features_t i40evf_fix_features(struct net_device *netdev,
2151 netdev_features_t features)
2152{
2153 struct i40evf_adapter *adapter = netdev_priv(netdev);
2154
2155 features &= ~I40EVF_VLAN_FEATURES;
2156 if (adapter->vf_res->vf_offload_flags & I40E_VIRTCHNL_VF_OFFLOAD_VLAN)
2157 features |= I40EVF_VLAN_FEATURES;
2158 return features;
2159}
2160
Greg Rose5eae00c2013-12-21 06:12:45 +00002161static const struct net_device_ops i40evf_netdev_ops = {
2162 .ndo_open = i40evf_open,
2163 .ndo_stop = i40evf_close,
2164 .ndo_start_xmit = i40evf_xmit_frame,
2165 .ndo_get_stats = i40evf_get_stats,
2166 .ndo_set_rx_mode = i40evf_set_rx_mode,
2167 .ndo_validate_addr = eth_validate_addr,
2168 .ndo_set_mac_address = i40evf_set_mac,
2169 .ndo_change_mtu = i40evf_change_mtu,
2170 .ndo_tx_timeout = i40evf_tx_timeout,
2171 .ndo_vlan_rx_add_vid = i40evf_vlan_rx_add_vid,
2172 .ndo_vlan_rx_kill_vid = i40evf_vlan_rx_kill_vid,
Mitch Williamsc4445ae2016-03-18 12:18:07 -07002173 .ndo_fix_features = i40evf_fix_features,
Alexander Duyck7709b4c2015-09-24 09:04:38 -07002174#ifdef CONFIG_NET_POLL_CONTROLLER
2175 .ndo_poll_controller = i40evf_netpoll,
2176#endif
Greg Rose5eae00c2013-12-21 06:12:45 +00002177};
2178
2179/**
2180 * i40evf_check_reset_complete - check that VF reset is complete
2181 * @hw: pointer to hw struct
2182 *
2183 * Returns 0 if device is ready to use, or -EBUSY if it's in reset.
2184 **/
2185static int i40evf_check_reset_complete(struct i40e_hw *hw)
2186{
2187 u32 rstat;
2188 int i;
2189
2190 for (i = 0; i < 100; i++) {
Ashish Shahfd358862014-08-01 13:27:11 -07002191 rstat = rd32(hw, I40E_VFGEN_RSTAT) &
2192 I40E_VFGEN_RSTAT_VFR_STATE_MASK;
2193 if ((rstat == I40E_VFR_VFACTIVE) ||
2194 (rstat == I40E_VFR_COMPLETED))
Greg Rose5eae00c2013-12-21 06:12:45 +00002195 return 0;
Neerav Parikhf98a2002014-09-13 07:40:44 +00002196 usleep_range(10, 20);
Greg Rose5eae00c2013-12-21 06:12:45 +00002197 }
2198 return -EBUSY;
2199}
2200
2201/**
Mitch Williamse6d038d2015-06-04 16:23:58 -04002202 * i40evf_process_config - Process the config information we got from the PF
2203 * @adapter: board private structure
2204 *
2205 * Verify that we have a valid config struct, and set up our netdev features
2206 * and our VSI struct.
2207 **/
2208int i40evf_process_config(struct i40evf_adapter *adapter)
2209{
Mitch Williamsba6cc7f2016-04-01 13:34:31 -07002210 struct i40e_virtchnl_vf_resource *vfres = adapter->vf_res;
Mitch Williamse6d038d2015-06-04 16:23:58 -04002211 struct net_device *netdev = adapter->netdev;
Mitch Williams43a3d9b2016-04-12 08:30:44 -07002212 struct i40e_vsi *vsi = &adapter->vsi;
Mitch Williamse6d038d2015-06-04 16:23:58 -04002213 int i;
2214
2215 /* got VF config message back from PF, now we can parse it */
Mitch Williamsba6cc7f2016-04-01 13:34:31 -07002216 for (i = 0; i < vfres->num_vsis; i++) {
2217 if (vfres->vsi_res[i].vsi_type == I40E_VSI_SRIOV)
2218 adapter->vsi_res = &vfres->vsi_res[i];
Mitch Williamse6d038d2015-06-04 16:23:58 -04002219 }
2220 if (!adapter->vsi_res) {
2221 dev_err(&adapter->pdev->dev, "No LAN VSI found\n");
2222 return -ENODEV;
2223 }
2224
Alexander Duyckb0fe3302016-04-02 00:05:14 -07002225 netdev->hw_enc_features |= NETIF_F_SG |
2226 NETIF_F_IP_CSUM |
2227 NETIF_F_IPV6_CSUM |
2228 NETIF_F_HIGHDMA |
2229 NETIF_F_SOFT_FEATURES |
2230 NETIF_F_TSO |
2231 NETIF_F_TSO_ECN |
2232 NETIF_F_TSO6 |
2233 NETIF_F_GSO_GRE |
Alexander Duyck1c7b4a22016-04-14 17:19:25 -04002234 NETIF_F_GSO_GRE_CSUM |
Tom Herbert7e133182016-05-18 09:06:10 -07002235 NETIF_F_GSO_IPXIP4 |
Alexander Duyckbf2d1df2016-05-18 10:44:53 -07002236 NETIF_F_GSO_IPXIP6 |
Alexander Duyckb0fe3302016-04-02 00:05:14 -07002237 NETIF_F_GSO_UDP_TUNNEL |
2238 NETIF_F_GSO_UDP_TUNNEL_CSUM |
Alexander Duyck1c7b4a22016-04-14 17:19:25 -04002239 NETIF_F_GSO_PARTIAL |
Alexander Duyckb0fe3302016-04-02 00:05:14 -07002240 NETIF_F_SCTP_CRC |
2241 NETIF_F_RXHASH |
2242 NETIF_F_RXCSUM |
2243 0;
Mitch Williamse6d038d2015-06-04 16:23:58 -04002244
Alexander Duyckb0fe3302016-04-02 00:05:14 -07002245 if (!(adapter->flags & I40EVF_FLAG_OUTER_UDP_CSUM_CAPABLE))
Alexander Duyck1c7b4a22016-04-14 17:19:25 -04002246 netdev->gso_partial_features |= NETIF_F_GSO_UDP_TUNNEL_CSUM;
2247
2248 netdev->gso_partial_features |= NETIF_F_GSO_GRE_CSUM;
Alexander Duyckf608e6a2016-01-24 21:17:57 -08002249
Alexander Duyckb0fe3302016-04-02 00:05:14 -07002250 /* record features VLANs can make use of */
Alexander Duyck1c7b4a22016-04-14 17:19:25 -04002251 netdev->vlan_features |= netdev->hw_enc_features |
2252 NETIF_F_TSO_MANGLEID;
Alexander Duyckf608e6a2016-01-24 21:17:57 -08002253
Alexander Duyckb0fe3302016-04-02 00:05:14 -07002254 /* Write features and hw_features separately to avoid polluting
2255 * with, or dropping, features that are set when we registgered.
2256 */
2257 netdev->hw_features |= netdev->hw_enc_features;
Mitch Williamsba6cc7f2016-04-01 13:34:31 -07002258
Alexander Duyckb0fe3302016-04-02 00:05:14 -07002259 netdev->features |= netdev->hw_enc_features | I40EVF_VLAN_FEATURES;
Alexander Duyck1c7b4a22016-04-14 17:19:25 -04002260 netdev->hw_enc_features |= NETIF_F_TSO_MANGLEID;
Alexander Duyckb0fe3302016-04-02 00:05:14 -07002261
2262 /* disable VLAN features if not supported */
2263 if (!(vfres->vf_offload_flags & I40E_VIRTCHNL_VF_OFFLOAD_VLAN))
2264 netdev->features ^= I40EVF_VLAN_FEATURES;
Mitch Williamse6d038d2015-06-04 16:23:58 -04002265
2266 adapter->vsi.id = adapter->vsi_res->vsi_id;
2267
2268 adapter->vsi.back = adapter;
2269 adapter->vsi.base_vector = 1;
2270 adapter->vsi.work_limit = I40E_DEFAULT_IRQ_WORK;
2271 adapter->vsi.rx_itr_setting = (I40E_ITR_DYNAMIC |
2272 ITR_REG_TO_USEC(I40E_ITR_RX_DEF));
2273 adapter->vsi.tx_itr_setting = (I40E_ITR_DYNAMIC |
2274 ITR_REG_TO_USEC(I40E_ITR_TX_DEF));
Mitch Williams43a3d9b2016-04-12 08:30:44 -07002275 vsi->netdev = adapter->netdev;
2276 vsi->qs_handle = adapter->vsi_res->qset_handle;
2277 if (vfres->vf_offload_flags & I40E_VIRTCHNL_VF_OFFLOAD_RSS_PF) {
2278 adapter->rss_key_size = vfres->rss_key_size;
2279 adapter->rss_lut_size = vfres->rss_lut_size;
2280 } else {
2281 adapter->rss_key_size = I40EVF_HKEY_ARRAY_SIZE;
2282 adapter->rss_lut_size = I40EVF_HLUT_ARRAY_SIZE;
2283 }
2284
Mitch Williamse6d038d2015-06-04 16:23:58 -04002285 return 0;
2286}
2287
2288/**
Greg Rose5eae00c2013-12-21 06:12:45 +00002289 * i40evf_init_task - worker thread to perform delayed initialization
2290 * @work: pointer to work_struct containing our data
2291 *
2292 * This task completes the work that was begun in probe. Due to the nature
2293 * of VF-PF communications, we may need to wait tens of milliseconds to get
Joe Perchesdbedd442015-03-06 20:49:12 -08002294 * responses back from the PF. Rather than busy-wait in probe and bog down the
Greg Rose5eae00c2013-12-21 06:12:45 +00002295 * whole system, we'll do it in a task so we can sleep.
2296 * This task only runs during driver init. Once we've established
2297 * communications with the PF driver and set up our netdev, the watchdog
2298 * takes over.
2299 **/
2300static void i40evf_init_task(struct work_struct *work)
2301{
2302 struct i40evf_adapter *adapter = container_of(work,
2303 struct i40evf_adapter,
2304 init_task.work);
2305 struct net_device *netdev = adapter->netdev;
Greg Rose5eae00c2013-12-21 06:12:45 +00002306 struct i40e_hw *hw = &adapter->hw;
2307 struct pci_dev *pdev = adapter->pdev;
Mitch Williamse6d038d2015-06-04 16:23:58 -04002308 int err, bufsz;
Greg Rose5eae00c2013-12-21 06:12:45 +00002309
2310 switch (adapter->state) {
2311 case __I40EVF_STARTUP:
2312 /* driver loaded, probe complete */
Mitch Williamsef8693e2014-02-13 03:48:53 -08002313 adapter->flags &= ~I40EVF_FLAG_PF_COMMS_FAILED;
2314 adapter->flags &= ~I40EVF_FLAG_RESET_PENDING;
Greg Rose5eae00c2013-12-21 06:12:45 +00002315 err = i40e_set_mac_type(hw);
2316 if (err) {
Mitch Williamsc2a137c2014-02-20 19:29:09 -08002317 dev_err(&pdev->dev, "Failed to set MAC type (%d)\n",
2318 err);
Mitch Williams2619ef42015-04-07 19:45:30 -04002319 goto err;
Greg Rose5eae00c2013-12-21 06:12:45 +00002320 }
2321 err = i40evf_check_reset_complete(hw);
2322 if (err) {
Mitch Williams0d9c7ea2014-04-23 04:50:00 +00002323 dev_info(&pdev->dev, "Device is still in reset (%d), retrying\n",
Mitch Williams75a64432014-11-11 20:02:42 +00002324 err);
Greg Rose5eae00c2013-12-21 06:12:45 +00002325 goto err;
2326 }
2327 hw->aq.num_arq_entries = I40EVF_AQ_LEN;
2328 hw->aq.num_asq_entries = I40EVF_AQ_LEN;
2329 hw->aq.arq_buf_size = I40EVF_MAX_AQ_BUF_SIZE;
2330 hw->aq.asq_buf_size = I40EVF_MAX_AQ_BUF_SIZE;
2331
2332 err = i40evf_init_adminq(hw);
2333 if (err) {
Mitch Williamsc2a137c2014-02-20 19:29:09 -08002334 dev_err(&pdev->dev, "Failed to init Admin Queue (%d)\n",
2335 err);
Greg Rose5eae00c2013-12-21 06:12:45 +00002336 goto err;
2337 }
2338 err = i40evf_send_api_ver(adapter);
2339 if (err) {
Mitch Williams10bdd672014-03-06 08:59:53 +00002340 dev_err(&pdev->dev, "Unable to send to PF (%d)\n", err);
Greg Rose5eae00c2013-12-21 06:12:45 +00002341 i40evf_shutdown_adminq(hw);
2342 goto err;
2343 }
2344 adapter->state = __I40EVF_INIT_VERSION_CHECK;
2345 goto restart;
Greg Rose5eae00c2013-12-21 06:12:45 +00002346 case __I40EVF_INIT_VERSION_CHECK:
Mitch Williams10bdd672014-03-06 08:59:53 +00002347 if (!i40evf_asq_done(hw)) {
Mitch Williams80e72892014-05-10 04:49:06 +00002348 dev_err(&pdev->dev, "Admin queue command never completed\n");
Mitch Williams906a6932014-11-13 03:06:12 +00002349 i40evf_shutdown_adminq(hw);
2350 adapter->state = __I40EVF_STARTUP;
Greg Rose5eae00c2013-12-21 06:12:45 +00002351 goto err;
Mitch Williams10bdd672014-03-06 08:59:53 +00002352 }
Greg Rose5eae00c2013-12-21 06:12:45 +00002353
2354 /* aq msg sent, awaiting reply */
2355 err = i40evf_verify_api_ver(adapter);
2356 if (err) {
Mitch A Williamsd4f82fd2014-12-09 08:53:03 +00002357 if (err == I40E_ERR_ADMIN_QUEUE_NO_WORK)
Mitch Williams56f99202014-06-04 04:22:41 +00002358 err = i40evf_send_api_ver(adapter);
Mitch Williamsee1693e2015-06-04 16:23:59 -04002359 else
2360 dev_err(&pdev->dev, "Unsupported PF API version %d.%d, expected %d.%d\n",
2361 adapter->pf_version.major,
2362 adapter->pf_version.minor,
2363 I40E_VIRTCHNL_VERSION_MAJOR,
2364 I40E_VIRTCHNL_VERSION_MINOR);
Greg Rose5eae00c2013-12-21 06:12:45 +00002365 goto err;
2366 }
2367 err = i40evf_send_vf_config_msg(adapter);
2368 if (err) {
Mitch Williams3f2ab172014-06-04 04:22:40 +00002369 dev_err(&pdev->dev, "Unable to send config request (%d)\n",
Greg Rose5eae00c2013-12-21 06:12:45 +00002370 err);
2371 goto err;
2372 }
2373 adapter->state = __I40EVF_INIT_GET_RESOURCES;
2374 goto restart;
Greg Rose5eae00c2013-12-21 06:12:45 +00002375 case __I40EVF_INIT_GET_RESOURCES:
2376 /* aq msg sent, awaiting reply */
2377 if (!adapter->vf_res) {
2378 bufsz = sizeof(struct i40e_virtchnl_vf_resource) +
2379 (I40E_MAX_VF_VSI *
2380 sizeof(struct i40e_virtchnl_vsi_resource));
2381 adapter->vf_res = kzalloc(bufsz, GFP_KERNEL);
Mitch Williamsc2a137c2014-02-20 19:29:09 -08002382 if (!adapter->vf_res)
Greg Rose5eae00c2013-12-21 06:12:45 +00002383 goto err;
Greg Rose5eae00c2013-12-21 06:12:45 +00002384 }
2385 err = i40evf_get_vf_config(adapter);
Mitch Williams906a6932014-11-13 03:06:12 +00002386 if (err == I40E_ERR_ADMIN_QUEUE_NO_WORK) {
Mitch Williams906a6932014-11-13 03:06:12 +00002387 err = i40evf_send_vf_config_msg(adapter);
2388 goto err;
Mitch Williamse7430722015-10-26 19:44:38 -04002389 } else if (err == I40E_ERR_PARAM) {
2390 /* We only get ERR_PARAM if the device is in a very bad
2391 * state or if we've been disabled for previous bad
2392 * behavior. Either way, we're done now.
2393 */
2394 i40evf_shutdown_adminq(hw);
2395 dev_err(&pdev->dev, "Unable to get VF config due to PF error condition, not retrying\n");
2396 return;
Mitch Williams906a6932014-11-13 03:06:12 +00002397 }
Greg Rose5eae00c2013-12-21 06:12:45 +00002398 if (err) {
Mitch Williamsc2a137c2014-02-20 19:29:09 -08002399 dev_err(&pdev->dev, "Unable to get VF config (%d)\n",
2400 err);
Greg Rose5eae00c2013-12-21 06:12:45 +00002401 goto err_alloc;
2402 }
2403 adapter->state = __I40EVF_INIT_SW;
2404 break;
2405 default:
2406 goto err_alloc;
2407 }
Alexander Duyckf608e6a2016-01-24 21:17:57 -08002408
2409 if (hw->mac.type == I40E_MAC_X722_VF)
2410 adapter->flags |= I40EVF_FLAG_OUTER_UDP_CSUM_CAPABLE;
2411
Mitch Williamse6d038d2015-06-04 16:23:58 -04002412 if (i40evf_process_config(adapter))
Greg Rose5eae00c2013-12-21 06:12:45 +00002413 goto err_alloc;
Mitch Williamse6d038d2015-06-04 16:23:58 -04002414 adapter->current_op = I40E_VIRTCHNL_OP_UNKNOWN;
Greg Rose5eae00c2013-12-21 06:12:45 +00002415
2416 adapter->flags |= I40EVF_FLAG_RX_CSUM_ENABLED;
2417
Greg Rose5eae00c2013-12-21 06:12:45 +00002418 netdev->netdev_ops = &i40evf_netdev_ops;
2419 i40evf_set_ethtool_ops(netdev);
2420 netdev->watchdog_timeo = 5 * HZ;
Greg Rose3415e8c2014-01-30 12:40:27 +00002421
Greg Rose5eae00c2013-12-21 06:12:45 +00002422 if (!is_valid_ether_addr(adapter->hw.mac.addr)) {
Mitch Williamsb34f90e2014-05-10 04:49:07 +00002423 dev_info(&pdev->dev, "Invalid MAC address %pM, using random\n",
Mitch Williamsc2a137c2014-02-20 19:29:09 -08002424 adapter->hw.mac.addr);
Mitch Williams14e52ee2015-08-31 19:54:44 -04002425 eth_hw_addr_random(netdev);
2426 ether_addr_copy(adapter->hw.mac.addr, netdev->dev_addr);
2427 } else {
2428 adapter->flags |= I40EVF_FLAG_ADDR_SET_BY_PF;
2429 ether_addr_copy(netdev->dev_addr, adapter->hw.mac.addr);
2430 ether_addr_copy(netdev->perm_addr, adapter->hw.mac.addr);
Greg Rose5eae00c2013-12-21 06:12:45 +00002431 }
Greg Rose5eae00c2013-12-21 06:12:45 +00002432
Greg Rose5eae00c2013-12-21 06:12:45 +00002433 init_timer(&adapter->watchdog_timer);
2434 adapter->watchdog_timer.function = &i40evf_watchdog_timer;
2435 adapter->watchdog_timer.data = (unsigned long)adapter;
2436 mod_timer(&adapter->watchdog_timer, jiffies + 1);
2437
Mitch Williamscc052922014-10-25 03:24:34 +00002438 adapter->num_active_queues = min_t(int,
2439 adapter->vsi_res->num_queue_pairs,
2440 (int)(num_online_cpus()));
Mitch Williamsd732a182014-04-24 06:41:37 +00002441 adapter->tx_desc_count = I40EVF_DEFAULT_TXD;
2442 adapter->rx_desc_count = I40EVF_DEFAULT_RXD;
Greg Rose5eae00c2013-12-21 06:12:45 +00002443 err = i40evf_init_interrupt_scheme(adapter);
2444 if (err)
2445 goto err_sw_init;
2446 i40evf_map_rings_to_vectors(adapter);
Anjali Singhai Jain1f012272015-09-03 17:18:53 -04002447 if (adapter->vf_res->vf_offload_flags &
Anjali Singhai Jainf6d83d12015-12-22 14:25:07 -08002448 I40E_VIRTCHNL_VF_OFFLOAD_WB_ON_ITR)
2449 adapter->flags |= I40EVF_FLAG_WB_ON_ITR_CAPABLE;
2450
Greg Rose5eae00c2013-12-21 06:12:45 +00002451 err = i40evf_request_misc_irq(adapter);
2452 if (err)
2453 goto err_sw_init;
2454
2455 netif_carrier_off(netdev);
2456
Mitch Williamsef8693e2014-02-13 03:48:53 -08002457 if (!adapter->netdev_registered) {
2458 err = register_netdev(netdev);
2459 if (err)
2460 goto err_register;
2461 }
Greg Rose5eae00c2013-12-21 06:12:45 +00002462
2463 adapter->netdev_registered = true;
2464
2465 netif_tx_stop_all_queues(netdev);
2466
Mitch Williamsb34f90e2014-05-10 04:49:07 +00002467 dev_info(&pdev->dev, "MAC address: %pM\n", adapter->hw.mac.addr);
Greg Rose5eae00c2013-12-21 06:12:45 +00002468 if (netdev->features & NETIF_F_GRO)
2469 dev_info(&pdev->dev, "GRO is enabled\n");
2470
Greg Rose5eae00c2013-12-21 06:12:45 +00002471 adapter->state = __I40EVF_DOWN;
2472 set_bit(__I40E_DOWN, &adapter->vsi.state);
2473 i40evf_misc_irq_enable(adapter);
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04002474
Mitch Williams43a3d9b2016-04-12 08:30:44 -07002475 adapter->rss_key = kzalloc(adapter->rss_key_size, GFP_KERNEL);
2476 adapter->rss_lut = kzalloc(adapter->rss_lut_size, GFP_KERNEL);
2477 if (!adapter->rss_key || !adapter->rss_lut)
2478 goto err_mem;
2479
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04002480 if (RSS_AQ(adapter)) {
2481 adapter->aq_required |= I40EVF_FLAG_AQ_CONFIGURE_RSS;
2482 mod_timer_pending(&adapter->watchdog_timer, jiffies + 1);
2483 } else {
Helin Zhang96a81982015-10-26 19:44:31 -04002484 i40evf_init_rss(adapter);
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04002485 }
Greg Rose5eae00c2013-12-21 06:12:45 +00002486 return;
2487restart:
Mitch Williams3f7e5c32015-09-28 14:12:42 -04002488 schedule_delayed_work(&adapter->init_task, msecs_to_jiffies(30));
Greg Rose5eae00c2013-12-21 06:12:45 +00002489 return;
Mitch Williams43a3d9b2016-04-12 08:30:44 -07002490err_mem:
2491 i40evf_free_rss(adapter);
Greg Rose5eae00c2013-12-21 06:12:45 +00002492err_register:
2493 i40evf_free_misc_irq(adapter);
2494err_sw_init:
2495 i40evf_reset_interrupt_capability(adapter);
Greg Rose5eae00c2013-12-21 06:12:45 +00002496err_alloc:
2497 kfree(adapter->vf_res);
2498 adapter->vf_res = NULL;
2499err:
2500 /* Things went into the weeds, so try again later */
2501 if (++adapter->aq_wait_count > I40EVF_AQ_MAX_ERR) {
Mitch Williamsb9029e92015-09-28 14:16:50 -04002502 dev_err(&pdev->dev, "Failed to communicate with PF; waiting before retry\n");
Mitch Williamsef8693e2014-02-13 03:48:53 -08002503 adapter->flags |= I40EVF_FLAG_PF_COMMS_FAILED;
Mitch Williamsb9029e92015-09-28 14:16:50 -04002504 i40evf_shutdown_adminq(hw);
2505 adapter->state = __I40EVF_STARTUP;
2506 schedule_delayed_work(&adapter->init_task, HZ * 5);
2507 return;
Greg Rose5eae00c2013-12-21 06:12:45 +00002508 }
Mitch Williams3f7e5c32015-09-28 14:12:42 -04002509 schedule_delayed_work(&adapter->init_task, HZ);
Greg Rose5eae00c2013-12-21 06:12:45 +00002510}
2511
2512/**
2513 * i40evf_shutdown - Shutdown the device in preparation for a reboot
2514 * @pdev: pci device structure
2515 **/
2516static void i40evf_shutdown(struct pci_dev *pdev)
2517{
2518 struct net_device *netdev = pci_get_drvdata(pdev);
Mitch Williams00293fd2015-01-09 11:18:18 +00002519 struct i40evf_adapter *adapter = netdev_priv(netdev);
Greg Rose5eae00c2013-12-21 06:12:45 +00002520
2521 netif_device_detach(netdev);
2522
2523 if (netif_running(netdev))
2524 i40evf_close(netdev);
2525
Mitch Williams00293fd2015-01-09 11:18:18 +00002526 /* Prevent the watchdog from running. */
2527 adapter->state = __I40EVF_REMOVE;
2528 adapter->aq_required = 0;
Mitch Williams00293fd2015-01-09 11:18:18 +00002529
Greg Rose5eae00c2013-12-21 06:12:45 +00002530#ifdef CONFIG_PM
2531 pci_save_state(pdev);
2532
2533#endif
2534 pci_disable_device(pdev);
2535}
2536
2537/**
2538 * i40evf_probe - Device Initialization Routine
2539 * @pdev: PCI device information struct
2540 * @ent: entry in i40evf_pci_tbl
2541 *
2542 * Returns 0 on success, negative on failure
2543 *
2544 * i40evf_probe initializes an adapter identified by a pci_dev structure.
2545 * The OS initialization, configuring of the adapter private structure,
2546 * and a hardware reset occur.
2547 **/
2548static int i40evf_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
2549{
2550 struct net_device *netdev;
2551 struct i40evf_adapter *adapter = NULL;
2552 struct i40e_hw *hw = NULL;
Mitch Williamsdbbd8112014-02-20 19:29:08 -08002553 int err;
Greg Rose5eae00c2013-12-21 06:12:45 +00002554
2555 err = pci_enable_device(pdev);
2556 if (err)
2557 return err;
2558
Mitch Williams64942942014-02-11 08:26:33 +00002559 err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64));
Mitch Williams64942942014-02-11 08:26:33 +00002560 if (err) {
Jean Sacrene3e3bfd2014-03-25 04:30:27 +00002561 err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
2562 if (err) {
2563 dev_err(&pdev->dev,
2564 "DMA configuration failed: 0x%x\n", err);
2565 goto err_dma;
2566 }
Greg Rose5eae00c2013-12-21 06:12:45 +00002567 }
2568
2569 err = pci_request_regions(pdev, i40evf_driver_name);
2570 if (err) {
2571 dev_err(&pdev->dev,
2572 "pci_request_regions failed 0x%x\n", err);
2573 goto err_pci_reg;
2574 }
2575
2576 pci_enable_pcie_error_reporting(pdev);
2577
2578 pci_set_master(pdev);
2579
Mitch Williams1255b7a2015-11-06 15:25:59 -08002580 netdev = alloc_etherdev_mq(sizeof(struct i40evf_adapter), MAX_QUEUES);
Greg Rose5eae00c2013-12-21 06:12:45 +00002581 if (!netdev) {
2582 err = -ENOMEM;
2583 goto err_alloc_etherdev;
2584 }
2585
2586 SET_NETDEV_DEV(netdev, &pdev->dev);
2587
2588 pci_set_drvdata(pdev, netdev);
2589 adapter = netdev_priv(netdev);
Greg Rose5eae00c2013-12-21 06:12:45 +00002590
2591 adapter->netdev = netdev;
2592 adapter->pdev = pdev;
2593
2594 hw = &adapter->hw;
2595 hw->back = adapter;
2596
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04002597 adapter->msg_enable = BIT(DEFAULT_DEBUG_LEVEL_SHIFT) - 1;
Greg Rose5eae00c2013-12-21 06:12:45 +00002598 adapter->state = __I40EVF_STARTUP;
2599
2600 /* Call save state here because it relies on the adapter struct. */
2601 pci_save_state(pdev);
2602
2603 hw->hw_addr = ioremap(pci_resource_start(pdev, 0),
2604 pci_resource_len(pdev, 0));
2605 if (!hw->hw_addr) {
2606 err = -EIO;
2607 goto err_ioremap;
2608 }
2609 hw->vendor_id = pdev->vendor;
2610 hw->device_id = pdev->device;
2611 pci_read_config_byte(pdev, PCI_REVISION_ID, &hw->revision_id);
2612 hw->subsystem_vendor_id = pdev->subsystem_vendor;
2613 hw->subsystem_device_id = pdev->subsystem_device;
2614 hw->bus.device = PCI_SLOT(pdev->devfn);
2615 hw->bus.func = PCI_FUNC(pdev->devfn);
2616
Jesse Brandeburg8ddb3322015-11-18 15:47:06 -08002617 /* set up the locks for the AQ, do this only once in probe
2618 * and destroy them only once in remove
2619 */
2620 mutex_init(&hw->aq.asq_mutex);
2621 mutex_init(&hw->aq.arq_mutex);
2622
Serey Kong8bb1a542014-08-01 13:27:15 -07002623 INIT_LIST_HEAD(&adapter->mac_filter_list);
2624 INIT_LIST_HEAD(&adapter->vlan_filter_list);
2625
Greg Rose5eae00c2013-12-21 06:12:45 +00002626 INIT_WORK(&adapter->reset_task, i40evf_reset_task);
2627 INIT_WORK(&adapter->adminq_task, i40evf_adminq_task);
2628 INIT_WORK(&adapter->watchdog_task, i40evf_watchdog_task);
2629 INIT_DELAYED_WORK(&adapter->init_task, i40evf_init_task);
Mitch Williams9b32b0b2015-08-13 15:11:32 -07002630 schedule_delayed_work(&adapter->init_task,
2631 msecs_to_jiffies(5 * (pdev->devfn & 0x07)));
Greg Rose5eae00c2013-12-21 06:12:45 +00002632
2633 return 0;
2634
2635err_ioremap:
2636 free_netdev(netdev);
2637err_alloc_etherdev:
2638 pci_release_regions(pdev);
2639err_pci_reg:
2640err_dma:
2641 pci_disable_device(pdev);
2642 return err;
2643}
2644
2645#ifdef CONFIG_PM
2646/**
2647 * i40evf_suspend - Power management suspend routine
2648 * @pdev: PCI device information struct
2649 * @state: unused
2650 *
2651 * Called when the system (VM) is entering sleep/suspend.
2652 **/
2653static int i40evf_suspend(struct pci_dev *pdev, pm_message_t state)
2654{
2655 struct net_device *netdev = pci_get_drvdata(pdev);
2656 struct i40evf_adapter *adapter = netdev_priv(netdev);
2657 int retval = 0;
2658
2659 netif_device_detach(netdev);
2660
2661 if (netif_running(netdev)) {
2662 rtnl_lock();
2663 i40evf_down(adapter);
2664 rtnl_unlock();
2665 }
2666 i40evf_free_misc_irq(adapter);
2667 i40evf_reset_interrupt_capability(adapter);
2668
2669 retval = pci_save_state(pdev);
2670 if (retval)
2671 return retval;
2672
2673 pci_disable_device(pdev);
2674
2675 return 0;
2676}
2677
2678/**
Joe Perchesdbedd442015-03-06 20:49:12 -08002679 * i40evf_resume - Power management resume routine
Greg Rose5eae00c2013-12-21 06:12:45 +00002680 * @pdev: PCI device information struct
2681 *
2682 * Called when the system (VM) is resumed from sleep/suspend.
2683 **/
2684static int i40evf_resume(struct pci_dev *pdev)
2685{
2686 struct i40evf_adapter *adapter = pci_get_drvdata(pdev);
2687 struct net_device *netdev = adapter->netdev;
2688 u32 err;
2689
2690 pci_set_power_state(pdev, PCI_D0);
2691 pci_restore_state(pdev);
2692 /* pci_restore_state clears dev->state_saved so call
2693 * pci_save_state to restore it.
2694 */
2695 pci_save_state(pdev);
2696
2697 err = pci_enable_device_mem(pdev);
2698 if (err) {
2699 dev_err(&pdev->dev, "Cannot enable PCI device from suspend.\n");
2700 return err;
2701 }
2702 pci_set_master(pdev);
2703
2704 rtnl_lock();
2705 err = i40evf_set_interrupt_capability(adapter);
2706 if (err) {
Vasily Averinf2a1c362015-07-07 18:53:38 +03002707 rtnl_unlock();
Greg Rose5eae00c2013-12-21 06:12:45 +00002708 dev_err(&pdev->dev, "Cannot enable MSI-X interrupts.\n");
2709 return err;
2710 }
2711 err = i40evf_request_misc_irq(adapter);
2712 rtnl_unlock();
2713 if (err) {
2714 dev_err(&pdev->dev, "Cannot get interrupt vector.\n");
2715 return err;
2716 }
2717
2718 schedule_work(&adapter->reset_task);
2719
2720 netif_device_attach(netdev);
2721
2722 return err;
2723}
2724
2725#endif /* CONFIG_PM */
2726/**
2727 * i40evf_remove - Device Removal Routine
2728 * @pdev: PCI device information struct
2729 *
2730 * i40evf_remove is called by the PCI subsystem to alert the driver
2731 * that it should release a PCI device. The could be caused by a
2732 * Hot-Plug event, or because the driver is going to be removed from
2733 * memory.
2734 **/
2735static void i40evf_remove(struct pci_dev *pdev)
2736{
2737 struct net_device *netdev = pci_get_drvdata(pdev);
2738 struct i40evf_adapter *adapter = netdev_priv(netdev);
Mitch Williams6ba36a22014-08-01 13:27:14 -07002739 struct i40evf_mac_filter *f, *ftmp;
Greg Rose5eae00c2013-12-21 06:12:45 +00002740 struct i40e_hw *hw = &adapter->hw;
2741
2742 cancel_delayed_work_sync(&adapter->init_task);
Mitch Williamsef8693e2014-02-13 03:48:53 -08002743 cancel_work_sync(&adapter->reset_task);
Greg Rose5eae00c2013-12-21 06:12:45 +00002744
2745 if (adapter->netdev_registered) {
2746 unregister_netdev(netdev);
2747 adapter->netdev_registered = false;
2748 }
Mitch A Williams53d0b3a2014-12-09 08:53:04 +00002749
Mitch Williamsf4a71882015-01-09 11:18:16 +00002750 /* Shut down all the garbage mashers on the detention level */
Greg Rose5eae00c2013-12-21 06:12:45 +00002751 adapter->state = __I40EVF_REMOVE;
Mitch Williamsf4a71882015-01-09 11:18:16 +00002752 adapter->aq_required = 0;
Mitch Williamsf4a71882015-01-09 11:18:16 +00002753 i40evf_request_reset(adapter);
Mitch Williams22ead372016-03-18 12:18:10 -07002754 msleep(50);
Mitch Williamsf4a71882015-01-09 11:18:16 +00002755 /* If the FW isn't responding, kick it once, but only once. */
2756 if (!i40evf_asq_done(hw)) {
2757 i40evf_request_reset(adapter);
Mitch Williams22ead372016-03-18 12:18:10 -07002758 msleep(50);
Mitch Williamsf4a71882015-01-09 11:18:16 +00002759 }
Greg Rose5eae00c2013-12-21 06:12:45 +00002760
Mitch Williamsdbb01c82014-02-20 19:29:07 -08002761 if (adapter->msix_entries) {
Greg Rose5eae00c2013-12-21 06:12:45 +00002762 i40evf_misc_irq_disable(adapter);
Greg Rose5eae00c2013-12-21 06:12:45 +00002763 i40evf_free_misc_irq(adapter);
Greg Rose5eae00c2013-12-21 06:12:45 +00002764 i40evf_reset_interrupt_capability(adapter);
Mitch Williamsd31944d2014-08-01 13:27:13 -07002765 i40evf_free_q_vectors(adapter);
Greg Rose5eae00c2013-12-21 06:12:45 +00002766 }
2767
Mitch Williamse5d17c32014-06-04 04:22:38 +00002768 if (adapter->watchdog_timer.function)
2769 del_timer_sync(&adapter->watchdog_timer);
2770
Mitch Williamsdbb01c82014-02-20 19:29:07 -08002771 flush_scheduled_work();
2772
Mitch Williams43a3d9b2016-04-12 08:30:44 -07002773 i40evf_free_rss(adapter);
Helin Zhang66f9af852015-10-26 19:44:34 -04002774
Greg Rose5eae00c2013-12-21 06:12:45 +00002775 if (hw->aq.asq.count)
2776 i40evf_shutdown_adminq(hw);
2777
Jesse Brandeburg8ddb3322015-11-18 15:47:06 -08002778 /* destroy the locks only once, here */
2779 mutex_destroy(&hw->aq.arq_mutex);
2780 mutex_destroy(&hw->aq.asq_mutex);
2781
Greg Rose5eae00c2013-12-21 06:12:45 +00002782 iounmap(hw->hw_addr);
2783 pci_release_regions(pdev);
Mitch Williamse284fc82015-03-27 00:12:09 -07002784 i40evf_free_all_tx_resources(adapter);
2785 i40evf_free_all_rx_resources(adapter);
Greg Rose5eae00c2013-12-21 06:12:45 +00002786 i40evf_free_queues(adapter);
2787 kfree(adapter->vf_res);
Mitch Williams6ba36a22014-08-01 13:27:14 -07002788 /* If we got removed before an up/down sequence, we've got a filter
2789 * hanging out there that we need to get rid of.
2790 */
2791 list_for_each_entry_safe(f, ftmp, &adapter->mac_filter_list, list) {
2792 list_del(&f->list);
2793 kfree(f);
2794 }
Mitch A Williams37dfdf32014-12-09 08:53:05 +00002795 list_for_each_entry_safe(f, ftmp, &adapter->vlan_filter_list, list) {
2796 list_del(&f->list);
2797 kfree(f);
2798 }
Greg Rose5eae00c2013-12-21 06:12:45 +00002799
2800 free_netdev(netdev);
2801
2802 pci_disable_pcie_error_reporting(pdev);
2803
2804 pci_disable_device(pdev);
2805}
2806
2807static struct pci_driver i40evf_driver = {
2808 .name = i40evf_driver_name,
2809 .id_table = i40evf_pci_tbl,
2810 .probe = i40evf_probe,
2811 .remove = i40evf_remove,
2812#ifdef CONFIG_PM
2813 .suspend = i40evf_suspend,
2814 .resume = i40evf_resume,
2815#endif
2816 .shutdown = i40evf_shutdown,
2817};
2818
2819/**
2820 * i40e_init_module - Driver Registration Routine
2821 *
2822 * i40e_init_module is the first routine called when the driver is
2823 * loaded. All it does is register with the PCI subsystem.
2824 **/
2825static int __init i40evf_init_module(void)
2826{
2827 int ret;
Mitch Williams75a64432014-11-11 20:02:42 +00002828
Greg Rose5eae00c2013-12-21 06:12:45 +00002829 pr_info("i40evf: %s - version %s\n", i40evf_driver_string,
Mitch Williams75a64432014-11-11 20:02:42 +00002830 i40evf_driver_version);
Greg Rose5eae00c2013-12-21 06:12:45 +00002831
2832 pr_info("%s\n", i40evf_copyright);
2833
Jesse Brandeburg2803b162015-12-22 14:25:08 -08002834 i40evf_wq = create_singlethread_workqueue(i40evf_driver_name);
2835 if (!i40evf_wq) {
2836 pr_err("%s: Failed to create workqueue\n", i40evf_driver_name);
2837 return -ENOMEM;
2838 }
Greg Rose5eae00c2013-12-21 06:12:45 +00002839 ret = pci_register_driver(&i40evf_driver);
2840 return ret;
2841}
2842
2843module_init(i40evf_init_module);
2844
2845/**
2846 * i40e_exit_module - Driver Exit Cleanup Routine
2847 *
2848 * i40e_exit_module is called just before the driver is removed
2849 * from memory.
2850 **/
2851static void __exit i40evf_exit_module(void)
2852{
2853 pci_unregister_driver(&i40evf_driver);
Jesse Brandeburg2803b162015-12-22 14:25:08 -08002854 destroy_workqueue(i40evf_wq);
Greg Rose5eae00c2013-12-21 06:12:45 +00002855}
2856
2857module_exit(i40evf_exit_module);
2858
2859/* i40evf_main.c */