blob: f7464e87d5218080862348492e804dcf2ca936c6 [file] [log] [blame]
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001/*******************************************************************************
2 *
3 * Intel Ethernet Controller XL710 Family Linux Driver
Greg Rosedc641b72013-12-18 13:45:51 +00004 * Copyright(c) 2013 - 2014 Intel Corporation.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +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 *
Greg Rosedc641b72013-12-18 13:45:51 +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/>.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000017 *
18 * 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/* Local includes */
28#include "i40e.h"
Shannon Nelson4eb3f762014-03-06 08:59:58 +000029#include "i40e_diag.h"
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +000030#ifdef CONFIG_I40E_VXLAN
31#include <net/vxlan.h>
32#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000033
34const char i40e_driver_name[] = "i40e";
35static const char i40e_driver_string[] =
36 "Intel(R) Ethernet Connection XL710 Network Driver";
37
38#define DRV_KERN "-k"
39
Catherine Sullivane8e724d2014-07-10 07:58:26 +000040#define DRV_VERSION_MAJOR 1
41#define DRV_VERSION_MINOR 0
Catherine Sullivane966d5c2014-07-12 07:28:26 +000042#define DRV_VERSION_BUILD 11
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000043#define DRV_VERSION __stringify(DRV_VERSION_MAJOR) "." \
44 __stringify(DRV_VERSION_MINOR) "." \
45 __stringify(DRV_VERSION_BUILD) DRV_KERN
46const char i40e_driver_version_str[] = DRV_VERSION;
Jesse Brandeburg8fb905b2014-01-17 15:36:33 -080047static const char i40e_copyright[] = "Copyright (c) 2013 - 2014 Intel Corporation.";
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000048
49/* a bit of forward declarations */
50static void i40e_vsi_reinit_locked(struct i40e_vsi *vsi);
51static void i40e_handle_reset_warning(struct i40e_pf *pf);
52static int i40e_add_vsi(struct i40e_vsi *vsi);
53static int i40e_add_veb(struct i40e_veb *veb, struct i40e_vsi *vsi);
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +000054static int i40e_setup_pf_switch(struct i40e_pf *pf, bool reinit);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000055static int i40e_setup_misc_vector(struct i40e_pf *pf);
56static void i40e_determine_queue_usage(struct i40e_pf *pf);
57static int i40e_setup_pf_filter_control(struct i40e_pf *pf);
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080058static void i40e_fdir_sb_setup(struct i40e_pf *pf);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -080059static int i40e_veb_get_bw_info(struct i40e_veb *veb);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000060
61/* i40e_pci_tbl - PCI Device ID Table
62 *
63 * Last entry must be all 0s
64 *
65 * { Vendor ID, Device ID, SubVendor ID, SubDevice ID,
66 * Class, Class Mask, private data (not used) }
67 */
Benoit Taine9baa3c32014-08-08 15:56:03 +020068static const struct pci_device_id i40e_pci_tbl[] = {
Shannon Nelsonab600852014-01-17 15:36:39 -080069 {PCI_VDEVICE(INTEL, I40E_DEV_ID_SFP_XL710), 0},
Shannon Nelsonab600852014-01-17 15:36:39 -080070 {PCI_VDEVICE(INTEL, I40E_DEV_ID_QEMU), 0},
71 {PCI_VDEVICE(INTEL, I40E_DEV_ID_KX_A), 0},
72 {PCI_VDEVICE(INTEL, I40E_DEV_ID_KX_B), 0},
73 {PCI_VDEVICE(INTEL, I40E_DEV_ID_KX_C), 0},
Shannon Nelsonab600852014-01-17 15:36:39 -080074 {PCI_VDEVICE(INTEL, I40E_DEV_ID_QSFP_A), 0},
75 {PCI_VDEVICE(INTEL, I40E_DEV_ID_QSFP_B), 0},
76 {PCI_VDEVICE(INTEL, I40E_DEV_ID_QSFP_C), 0},
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000077 /* required last entry */
78 {0, }
79};
80MODULE_DEVICE_TABLE(pci, i40e_pci_tbl);
81
82#define I40E_MAX_VF_COUNT 128
83static int debug = -1;
84module_param(debug, int, 0);
85MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all)");
86
87MODULE_AUTHOR("Intel Corporation, <e1000-devel@lists.sourceforge.net>");
88MODULE_DESCRIPTION("Intel(R) Ethernet Connection XL710 Network Driver");
89MODULE_LICENSE("GPL");
90MODULE_VERSION(DRV_VERSION);
91
92/**
93 * i40e_allocate_dma_mem_d - OS specific memory alloc for shared code
94 * @hw: pointer to the HW structure
95 * @mem: ptr to mem struct to fill out
96 * @size: size of memory requested
97 * @alignment: what to align the allocation to
98 **/
99int i40e_allocate_dma_mem_d(struct i40e_hw *hw, struct i40e_dma_mem *mem,
100 u64 size, u32 alignment)
101{
102 struct i40e_pf *pf = (struct i40e_pf *)hw->back;
103
104 mem->size = ALIGN(size, alignment);
105 mem->va = dma_zalloc_coherent(&pf->pdev->dev, mem->size,
106 &mem->pa, GFP_KERNEL);
Jesse Brandeburg93bc73b2013-09-13 08:23:18 +0000107 if (!mem->va)
108 return -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000109
Jesse Brandeburg93bc73b2013-09-13 08:23:18 +0000110 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000111}
112
113/**
114 * i40e_free_dma_mem_d - OS specific memory free for shared code
115 * @hw: pointer to the HW structure
116 * @mem: ptr to mem struct to free
117 **/
118int i40e_free_dma_mem_d(struct i40e_hw *hw, struct i40e_dma_mem *mem)
119{
120 struct i40e_pf *pf = (struct i40e_pf *)hw->back;
121
122 dma_free_coherent(&pf->pdev->dev, mem->size, mem->va, mem->pa);
123 mem->va = NULL;
124 mem->pa = 0;
125 mem->size = 0;
126
127 return 0;
128}
129
130/**
131 * i40e_allocate_virt_mem_d - OS specific memory alloc for shared code
132 * @hw: pointer to the HW structure
133 * @mem: ptr to mem struct to fill out
134 * @size: size of memory requested
135 **/
136int i40e_allocate_virt_mem_d(struct i40e_hw *hw, struct i40e_virt_mem *mem,
137 u32 size)
138{
139 mem->size = size;
140 mem->va = kzalloc(size, GFP_KERNEL);
141
Jesse Brandeburg93bc73b2013-09-13 08:23:18 +0000142 if (!mem->va)
143 return -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000144
Jesse Brandeburg93bc73b2013-09-13 08:23:18 +0000145 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000146}
147
148/**
149 * i40e_free_virt_mem_d - OS specific memory free for shared code
150 * @hw: pointer to the HW structure
151 * @mem: ptr to mem struct to free
152 **/
153int i40e_free_virt_mem_d(struct i40e_hw *hw, struct i40e_virt_mem *mem)
154{
155 /* it's ok to kfree a NULL pointer */
156 kfree(mem->va);
157 mem->va = NULL;
158 mem->size = 0;
159
160 return 0;
161}
162
163/**
164 * i40e_get_lump - find a lump of free generic resource
165 * @pf: board private structure
166 * @pile: the pile of resource to search
167 * @needed: the number of items needed
168 * @id: an owner id to stick on the items assigned
169 *
170 * Returns the base item index of the lump, or negative for error
171 *
172 * The search_hint trick and lack of advanced fit-finding only work
173 * because we're highly likely to have all the same size lump requests.
174 * Linear search time and any fragmentation should be minimal.
175 **/
176static int i40e_get_lump(struct i40e_pf *pf, struct i40e_lump_tracking *pile,
177 u16 needed, u16 id)
178{
179 int ret = -ENOMEM;
Jesse Brandeburgddf434a2013-09-13 08:23:19 +0000180 int i, j;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000181
182 if (!pile || needed == 0 || id >= I40E_PILE_VALID_BIT) {
183 dev_info(&pf->pdev->dev,
184 "param err: pile=%p needed=%d id=0x%04x\n",
185 pile, needed, id);
186 return -EINVAL;
187 }
188
189 /* start the linear search with an imperfect hint */
190 i = pile->search_hint;
Jesse Brandeburgddf434a2013-09-13 08:23:19 +0000191 while (i < pile->num_entries) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000192 /* skip already allocated entries */
193 if (pile->list[i] & I40E_PILE_VALID_BIT) {
194 i++;
195 continue;
196 }
197
198 /* do we have enough in this lump? */
199 for (j = 0; (j < needed) && ((i+j) < pile->num_entries); j++) {
200 if (pile->list[i+j] & I40E_PILE_VALID_BIT)
201 break;
202 }
203
204 if (j == needed) {
205 /* there was enough, so assign it to the requestor */
206 for (j = 0; j < needed; j++)
207 pile->list[i+j] = id | I40E_PILE_VALID_BIT;
208 ret = i;
209 pile->search_hint = i + j;
Jesse Brandeburgddf434a2013-09-13 08:23:19 +0000210 break;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000211 } else {
212 /* not enough, so skip over it and continue looking */
213 i += j;
214 }
215 }
216
217 return ret;
218}
219
220/**
221 * i40e_put_lump - return a lump of generic resource
222 * @pile: the pile of resource to search
223 * @index: the base item index
224 * @id: the owner id of the items assigned
225 *
226 * Returns the count of items in the lump
227 **/
228static int i40e_put_lump(struct i40e_lump_tracking *pile, u16 index, u16 id)
229{
230 int valid_id = (id | I40E_PILE_VALID_BIT);
231 int count = 0;
232 int i;
233
234 if (!pile || index >= pile->num_entries)
235 return -EINVAL;
236
237 for (i = index;
238 i < pile->num_entries && pile->list[i] == valid_id;
239 i++) {
240 pile->list[i] = 0;
241 count++;
242 }
243
244 if (count && index < pile->search_hint)
245 pile->search_hint = index;
246
247 return count;
248}
249
250/**
251 * i40e_service_event_schedule - Schedule the service task to wake up
252 * @pf: board private structure
253 *
254 * If not already scheduled, this puts the task into the work queue
255 **/
256static void i40e_service_event_schedule(struct i40e_pf *pf)
257{
258 if (!test_bit(__I40E_DOWN, &pf->state) &&
259 !test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state) &&
260 !test_and_set_bit(__I40E_SERVICE_SCHED, &pf->state))
261 schedule_work(&pf->service_task);
262}
263
264/**
265 * i40e_tx_timeout - Respond to a Tx Hang
266 * @netdev: network interface device structure
267 *
268 * If any port has noticed a Tx timeout, it is likely that the whole
269 * device is munged, not just the one netdev port, so go for the full
270 * reset.
271 **/
Vasu Dev38e00432014-08-01 13:27:03 -0700272#ifdef I40E_FCOE
273void i40e_tx_timeout(struct net_device *netdev)
274#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000275static void i40e_tx_timeout(struct net_device *netdev)
Vasu Dev38e00432014-08-01 13:27:03 -0700276#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000277{
278 struct i40e_netdev_priv *np = netdev_priv(netdev);
279 struct i40e_vsi *vsi = np->vsi;
280 struct i40e_pf *pf = vsi->back;
281
282 pf->tx_timeout_count++;
283
284 if (time_after(jiffies, (pf->tx_timeout_last_recovery + HZ*20)))
Anjali Singhai Jain327fe042014-06-04 01:23:26 +0000285 pf->tx_timeout_recovery_level = 1;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000286 pf->tx_timeout_last_recovery = jiffies;
287 netdev_info(netdev, "tx_timeout recovery level %d\n",
288 pf->tx_timeout_recovery_level);
289
290 switch (pf->tx_timeout_recovery_level) {
291 case 0:
292 /* disable and re-enable queues for the VSI */
293 if (in_interrupt()) {
294 set_bit(__I40E_REINIT_REQUESTED, &pf->state);
295 set_bit(__I40E_REINIT_REQUESTED, &vsi->state);
296 } else {
297 i40e_vsi_reinit_locked(vsi);
298 }
299 break;
300 case 1:
301 set_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
302 break;
303 case 2:
304 set_bit(__I40E_CORE_RESET_REQUESTED, &pf->state);
305 break;
306 case 3:
307 set_bit(__I40E_GLOBAL_RESET_REQUESTED, &pf->state);
308 break;
309 default:
310 netdev_err(netdev, "tx_timeout recovery unsuccessful\n");
Neerav Parikhb5d06f02014-06-03 23:50:17 +0000311 set_bit(__I40E_DOWN_REQUESTED, &pf->state);
312 set_bit(__I40E_DOWN_REQUESTED, &vsi->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000313 break;
314 }
315 i40e_service_event_schedule(pf);
316 pf->tx_timeout_recovery_level++;
317}
318
319/**
320 * i40e_release_rx_desc - Store the new tail and head values
321 * @rx_ring: ring to bump
322 * @val: new head index
323 **/
324static inline void i40e_release_rx_desc(struct i40e_ring *rx_ring, u32 val)
325{
326 rx_ring->next_to_use = val;
327
328 /* Force memory writes to complete before letting h/w
329 * know there are new descriptors to fetch. (Only
330 * applicable for weak-ordered memory model archs,
331 * such as IA-64).
332 */
333 wmb();
334 writel(val, rx_ring->tail);
335}
336
337/**
338 * i40e_get_vsi_stats_struct - Get System Network Statistics
339 * @vsi: the VSI we care about
340 *
341 * Returns the address of the device statistics structure.
342 * The statistics are actually updated from the service task.
343 **/
344struct rtnl_link_stats64 *i40e_get_vsi_stats_struct(struct i40e_vsi *vsi)
345{
346 return &vsi->net_stats;
347}
348
349/**
350 * i40e_get_netdev_stats_struct - Get statistics for netdev interface
351 * @netdev: network interface device structure
352 *
353 * Returns the address of the device statistics structure.
354 * The statistics are actually updated from the service task.
355 **/
Vasu Dev38e00432014-08-01 13:27:03 -0700356#ifdef I40E_FCOE
357struct rtnl_link_stats64 *i40e_get_netdev_stats_struct(
358 struct net_device *netdev,
359 struct rtnl_link_stats64 *stats)
360#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000361static struct rtnl_link_stats64 *i40e_get_netdev_stats_struct(
362 struct net_device *netdev,
Alexander Duyck980e9b12013-09-28 06:01:03 +0000363 struct rtnl_link_stats64 *stats)
Vasu Dev38e00432014-08-01 13:27:03 -0700364#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000365{
366 struct i40e_netdev_priv *np = netdev_priv(netdev);
Akeem G Abodunrine7046ee2014-04-09 05:58:58 +0000367 struct i40e_ring *tx_ring, *rx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000368 struct i40e_vsi *vsi = np->vsi;
Alexander Duyck980e9b12013-09-28 06:01:03 +0000369 struct rtnl_link_stats64 *vsi_stats = i40e_get_vsi_stats_struct(vsi);
370 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000371
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +0000372 if (test_bit(__I40E_DOWN, &vsi->state))
373 return stats;
374
Jesse Brandeburg3c325ce2013-12-14 03:26:45 -0800375 if (!vsi->tx_rings)
376 return stats;
377
Alexander Duyck980e9b12013-09-28 06:01:03 +0000378 rcu_read_lock();
379 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck980e9b12013-09-28 06:01:03 +0000380 u64 bytes, packets;
381 unsigned int start;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000382
Alexander Duyck980e9b12013-09-28 06:01:03 +0000383 tx_ring = ACCESS_ONCE(vsi->tx_rings[i]);
384 if (!tx_ring)
385 continue;
386
387 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -0700388 start = u64_stats_fetch_begin_irq(&tx_ring->syncp);
Alexander Duyck980e9b12013-09-28 06:01:03 +0000389 packets = tx_ring->stats.packets;
390 bytes = tx_ring->stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -0700391 } while (u64_stats_fetch_retry_irq(&tx_ring->syncp, start));
Alexander Duyck980e9b12013-09-28 06:01:03 +0000392
393 stats->tx_packets += packets;
394 stats->tx_bytes += bytes;
395 rx_ring = &tx_ring[1];
396
397 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -0700398 start = u64_stats_fetch_begin_irq(&rx_ring->syncp);
Alexander Duyck980e9b12013-09-28 06:01:03 +0000399 packets = rx_ring->stats.packets;
400 bytes = rx_ring->stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -0700401 } while (u64_stats_fetch_retry_irq(&rx_ring->syncp, start));
Alexander Duyck980e9b12013-09-28 06:01:03 +0000402
403 stats->rx_packets += packets;
404 stats->rx_bytes += bytes;
405 }
406 rcu_read_unlock();
407
Akeem G Abodunrina5282f42014-05-10 04:49:03 +0000408 /* following stats updated by i40e_watchdog_subtask() */
Alexander Duyck980e9b12013-09-28 06:01:03 +0000409 stats->multicast = vsi_stats->multicast;
410 stats->tx_errors = vsi_stats->tx_errors;
411 stats->tx_dropped = vsi_stats->tx_dropped;
412 stats->rx_errors = vsi_stats->rx_errors;
413 stats->rx_crc_errors = vsi_stats->rx_crc_errors;
414 stats->rx_length_errors = vsi_stats->rx_length_errors;
415
416 return stats;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000417}
418
419/**
420 * i40e_vsi_reset_stats - Resets all stats of the given vsi
421 * @vsi: the VSI to have its stats reset
422 **/
423void i40e_vsi_reset_stats(struct i40e_vsi *vsi)
424{
425 struct rtnl_link_stats64 *ns;
426 int i;
427
428 if (!vsi)
429 return;
430
431 ns = i40e_get_vsi_stats_struct(vsi);
432 memset(ns, 0, sizeof(*ns));
433 memset(&vsi->net_stats_offsets, 0, sizeof(vsi->net_stats_offsets));
434 memset(&vsi->eth_stats, 0, sizeof(vsi->eth_stats));
435 memset(&vsi->eth_stats_offsets, 0, sizeof(vsi->eth_stats_offsets));
Greg Rose8e9dca52013-12-18 13:45:53 +0000436 if (vsi->rx_rings && vsi->rx_rings[0]) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000437 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e15b2013-09-28 06:00:58 +0000438 memset(&vsi->rx_rings[i]->stats, 0 ,
439 sizeof(vsi->rx_rings[i]->stats));
440 memset(&vsi->rx_rings[i]->rx_stats, 0 ,
441 sizeof(vsi->rx_rings[i]->rx_stats));
442 memset(&vsi->tx_rings[i]->stats, 0 ,
443 sizeof(vsi->tx_rings[i]->stats));
444 memset(&vsi->tx_rings[i]->tx_stats, 0,
445 sizeof(vsi->tx_rings[i]->tx_stats));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000446 }
Greg Rose8e9dca52013-12-18 13:45:53 +0000447 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000448 vsi->stat_offsets_loaded = false;
449}
450
451/**
452 * i40e_pf_reset_stats - Reset all of the stats for the given pf
453 * @pf: the PF to be reset
454 **/
455void i40e_pf_reset_stats(struct i40e_pf *pf)
456{
Shannon Nelsone91fdf72014-06-03 23:50:18 +0000457 int i;
458
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000459 memset(&pf->stats, 0, sizeof(pf->stats));
460 memset(&pf->stats_offsets, 0, sizeof(pf->stats_offsets));
461 pf->stat_offsets_loaded = false;
Shannon Nelsone91fdf72014-06-03 23:50:18 +0000462
463 for (i = 0; i < I40E_MAX_VEB; i++) {
464 if (pf->veb[i]) {
465 memset(&pf->veb[i]->stats, 0,
466 sizeof(pf->veb[i]->stats));
467 memset(&pf->veb[i]->stats_offsets, 0,
468 sizeof(pf->veb[i]->stats_offsets));
469 pf->veb[i]->stat_offsets_loaded = false;
470 }
471 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000472}
473
474/**
475 * i40e_stat_update48 - read and update a 48 bit stat from the chip
476 * @hw: ptr to the hardware info
477 * @hireg: the high 32 bit reg to read
478 * @loreg: the low 32 bit reg to read
479 * @offset_loaded: has the initial offset been loaded yet
480 * @offset: ptr to current offset value
481 * @stat: ptr to the stat
482 *
483 * Since the device stats are not reset at PFReset, they likely will not
484 * be zeroed when the driver starts. We'll save the first values read
485 * and use them as offsets to be subtracted from the raw values in order
486 * to report stats that count from zero. In the process, we also manage
487 * the potential roll-over.
488 **/
489static void i40e_stat_update48(struct i40e_hw *hw, u32 hireg, u32 loreg,
490 bool offset_loaded, u64 *offset, u64 *stat)
491{
492 u64 new_data;
493
Shannon Nelsonab600852014-01-17 15:36:39 -0800494 if (hw->device_id == I40E_DEV_ID_QEMU) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000495 new_data = rd32(hw, loreg);
496 new_data |= ((u64)(rd32(hw, hireg) & 0xFFFF)) << 32;
497 } else {
498 new_data = rd64(hw, loreg);
499 }
500 if (!offset_loaded)
501 *offset = new_data;
502 if (likely(new_data >= *offset))
503 *stat = new_data - *offset;
504 else
505 *stat = (new_data + ((u64)1 << 48)) - *offset;
506 *stat &= 0xFFFFFFFFFFFFULL;
507}
508
509/**
510 * i40e_stat_update32 - read and update a 32 bit stat from the chip
511 * @hw: ptr to the hardware info
512 * @reg: the hw reg to read
513 * @offset_loaded: has the initial offset been loaded yet
514 * @offset: ptr to current offset value
515 * @stat: ptr to the stat
516 **/
517static void i40e_stat_update32(struct i40e_hw *hw, u32 reg,
518 bool offset_loaded, u64 *offset, u64 *stat)
519{
520 u32 new_data;
521
522 new_data = rd32(hw, reg);
523 if (!offset_loaded)
524 *offset = new_data;
525 if (likely(new_data >= *offset))
526 *stat = (u32)(new_data - *offset);
527 else
528 *stat = (u32)((new_data + ((u64)1 << 32)) - *offset);
529}
530
531/**
532 * i40e_update_eth_stats - Update VSI-specific ethernet statistics counters.
533 * @vsi: the VSI to be updated
534 **/
535void i40e_update_eth_stats(struct i40e_vsi *vsi)
536{
537 int stat_idx = le16_to_cpu(vsi->info.stat_counter_idx);
538 struct i40e_pf *pf = vsi->back;
539 struct i40e_hw *hw = &pf->hw;
540 struct i40e_eth_stats *oes;
541 struct i40e_eth_stats *es; /* device's eth stats */
542
543 es = &vsi->eth_stats;
544 oes = &vsi->eth_stats_offsets;
545
546 /* Gather up the stats that the hw collects */
547 i40e_stat_update32(hw, I40E_GLV_TEPC(stat_idx),
548 vsi->stat_offsets_loaded,
549 &oes->tx_errors, &es->tx_errors);
550 i40e_stat_update32(hw, I40E_GLV_RDPC(stat_idx),
551 vsi->stat_offsets_loaded,
552 &oes->rx_discards, &es->rx_discards);
Shannon Nelson41a9e552014-04-23 04:50:20 +0000553 i40e_stat_update32(hw, I40E_GLV_RUPP(stat_idx),
554 vsi->stat_offsets_loaded,
555 &oes->rx_unknown_protocol, &es->rx_unknown_protocol);
556 i40e_stat_update32(hw, I40E_GLV_TEPC(stat_idx),
557 vsi->stat_offsets_loaded,
558 &oes->tx_errors, &es->tx_errors);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000559
560 i40e_stat_update48(hw, I40E_GLV_GORCH(stat_idx),
561 I40E_GLV_GORCL(stat_idx),
562 vsi->stat_offsets_loaded,
563 &oes->rx_bytes, &es->rx_bytes);
564 i40e_stat_update48(hw, I40E_GLV_UPRCH(stat_idx),
565 I40E_GLV_UPRCL(stat_idx),
566 vsi->stat_offsets_loaded,
567 &oes->rx_unicast, &es->rx_unicast);
568 i40e_stat_update48(hw, I40E_GLV_MPRCH(stat_idx),
569 I40E_GLV_MPRCL(stat_idx),
570 vsi->stat_offsets_loaded,
571 &oes->rx_multicast, &es->rx_multicast);
572 i40e_stat_update48(hw, I40E_GLV_BPRCH(stat_idx),
573 I40E_GLV_BPRCL(stat_idx),
574 vsi->stat_offsets_loaded,
575 &oes->rx_broadcast, &es->rx_broadcast);
576
577 i40e_stat_update48(hw, I40E_GLV_GOTCH(stat_idx),
578 I40E_GLV_GOTCL(stat_idx),
579 vsi->stat_offsets_loaded,
580 &oes->tx_bytes, &es->tx_bytes);
581 i40e_stat_update48(hw, I40E_GLV_UPTCH(stat_idx),
582 I40E_GLV_UPTCL(stat_idx),
583 vsi->stat_offsets_loaded,
584 &oes->tx_unicast, &es->tx_unicast);
585 i40e_stat_update48(hw, I40E_GLV_MPTCH(stat_idx),
586 I40E_GLV_MPTCL(stat_idx),
587 vsi->stat_offsets_loaded,
588 &oes->tx_multicast, &es->tx_multicast);
589 i40e_stat_update48(hw, I40E_GLV_BPTCH(stat_idx),
590 I40E_GLV_BPTCL(stat_idx),
591 vsi->stat_offsets_loaded,
592 &oes->tx_broadcast, &es->tx_broadcast);
593 vsi->stat_offsets_loaded = true;
594}
595
596/**
597 * i40e_update_veb_stats - Update Switch component statistics
598 * @veb: the VEB being updated
599 **/
600static void i40e_update_veb_stats(struct i40e_veb *veb)
601{
602 struct i40e_pf *pf = veb->pf;
603 struct i40e_hw *hw = &pf->hw;
604 struct i40e_eth_stats *oes;
605 struct i40e_eth_stats *es; /* device's eth stats */
606 int idx = 0;
607
608 idx = veb->stats_idx;
609 es = &veb->stats;
610 oes = &veb->stats_offsets;
611
612 /* Gather up the stats that the hw collects */
613 i40e_stat_update32(hw, I40E_GLSW_TDPC(idx),
614 veb->stat_offsets_loaded,
615 &oes->tx_discards, &es->tx_discards);
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +0000616 if (hw->revision_id > 0)
617 i40e_stat_update32(hw, I40E_GLSW_RUPP(idx),
618 veb->stat_offsets_loaded,
619 &oes->rx_unknown_protocol,
620 &es->rx_unknown_protocol);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000621 i40e_stat_update48(hw, I40E_GLSW_GORCH(idx), I40E_GLSW_GORCL(idx),
622 veb->stat_offsets_loaded,
623 &oes->rx_bytes, &es->rx_bytes);
624 i40e_stat_update48(hw, I40E_GLSW_UPRCH(idx), I40E_GLSW_UPRCL(idx),
625 veb->stat_offsets_loaded,
626 &oes->rx_unicast, &es->rx_unicast);
627 i40e_stat_update48(hw, I40E_GLSW_MPRCH(idx), I40E_GLSW_MPRCL(idx),
628 veb->stat_offsets_loaded,
629 &oes->rx_multicast, &es->rx_multicast);
630 i40e_stat_update48(hw, I40E_GLSW_BPRCH(idx), I40E_GLSW_BPRCL(idx),
631 veb->stat_offsets_loaded,
632 &oes->rx_broadcast, &es->rx_broadcast);
633
634 i40e_stat_update48(hw, I40E_GLSW_GOTCH(idx), I40E_GLSW_GOTCL(idx),
635 veb->stat_offsets_loaded,
636 &oes->tx_bytes, &es->tx_bytes);
637 i40e_stat_update48(hw, I40E_GLSW_UPTCH(idx), I40E_GLSW_UPTCL(idx),
638 veb->stat_offsets_loaded,
639 &oes->tx_unicast, &es->tx_unicast);
640 i40e_stat_update48(hw, I40E_GLSW_MPTCH(idx), I40E_GLSW_MPTCL(idx),
641 veb->stat_offsets_loaded,
642 &oes->tx_multicast, &es->tx_multicast);
643 i40e_stat_update48(hw, I40E_GLSW_BPTCH(idx), I40E_GLSW_BPTCL(idx),
644 veb->stat_offsets_loaded,
645 &oes->tx_broadcast, &es->tx_broadcast);
646 veb->stat_offsets_loaded = true;
647}
648
Vasu Dev38e00432014-08-01 13:27:03 -0700649#ifdef I40E_FCOE
650/**
651 * i40e_update_fcoe_stats - Update FCoE-specific ethernet statistics counters.
652 * @vsi: the VSI that is capable of doing FCoE
653 **/
654static void i40e_update_fcoe_stats(struct i40e_vsi *vsi)
655{
656 struct i40e_pf *pf = vsi->back;
657 struct i40e_hw *hw = &pf->hw;
658 struct i40e_fcoe_stats *ofs;
659 struct i40e_fcoe_stats *fs; /* device's eth stats */
660 int idx;
661
662 if (vsi->type != I40E_VSI_FCOE)
663 return;
664
665 idx = (pf->pf_seid - I40E_BASE_PF_SEID) + I40E_FCOE_PF_STAT_OFFSET;
666 fs = &vsi->fcoe_stats;
667 ofs = &vsi->fcoe_stats_offsets;
668
669 i40e_stat_update32(hw, I40E_GL_FCOEPRC(idx),
670 vsi->fcoe_stat_offsets_loaded,
671 &ofs->rx_fcoe_packets, &fs->rx_fcoe_packets);
672 i40e_stat_update48(hw, I40E_GL_FCOEDWRCH(idx), I40E_GL_FCOEDWRCL(idx),
673 vsi->fcoe_stat_offsets_loaded,
674 &ofs->rx_fcoe_dwords, &fs->rx_fcoe_dwords);
675 i40e_stat_update32(hw, I40E_GL_FCOERPDC(idx),
676 vsi->fcoe_stat_offsets_loaded,
677 &ofs->rx_fcoe_dropped, &fs->rx_fcoe_dropped);
678 i40e_stat_update32(hw, I40E_GL_FCOEPTC(idx),
679 vsi->fcoe_stat_offsets_loaded,
680 &ofs->tx_fcoe_packets, &fs->tx_fcoe_packets);
681 i40e_stat_update48(hw, I40E_GL_FCOEDWTCH(idx), I40E_GL_FCOEDWTCL(idx),
682 vsi->fcoe_stat_offsets_loaded,
683 &ofs->tx_fcoe_dwords, &fs->tx_fcoe_dwords);
684 i40e_stat_update32(hw, I40E_GL_FCOECRC(idx),
685 vsi->fcoe_stat_offsets_loaded,
686 &ofs->fcoe_bad_fccrc, &fs->fcoe_bad_fccrc);
687 i40e_stat_update32(hw, I40E_GL_FCOELAST(idx),
688 vsi->fcoe_stat_offsets_loaded,
689 &ofs->fcoe_last_error, &fs->fcoe_last_error);
690 i40e_stat_update32(hw, I40E_GL_FCOEDDPC(idx),
691 vsi->fcoe_stat_offsets_loaded,
692 &ofs->fcoe_ddp_count, &fs->fcoe_ddp_count);
693
694 vsi->fcoe_stat_offsets_loaded = true;
695}
696
697#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000698/**
699 * i40e_update_link_xoff_rx - Update XOFF received in link flow control mode
700 * @pf: the corresponding PF
701 *
702 * Update the Rx XOFF counter (PAUSE frames) in link flow control mode
703 **/
704static void i40e_update_link_xoff_rx(struct i40e_pf *pf)
705{
706 struct i40e_hw_port_stats *osd = &pf->stats_offsets;
707 struct i40e_hw_port_stats *nsd = &pf->stats;
708 struct i40e_hw *hw = &pf->hw;
709 u64 xoff = 0;
710 u16 i, v;
711
712 if ((hw->fc.current_mode != I40E_FC_FULL) &&
713 (hw->fc.current_mode != I40E_FC_RX_PAUSE))
714 return;
715
716 xoff = nsd->link_xoff_rx;
717 i40e_stat_update32(hw, I40E_GLPRT_LXOFFRXC(hw->port),
718 pf->stat_offsets_loaded,
719 &osd->link_xoff_rx, &nsd->link_xoff_rx);
720
721 /* No new LFC xoff rx */
722 if (!(nsd->link_xoff_rx - xoff))
723 return;
724
725 /* Clear the __I40E_HANG_CHECK_ARMED bit for all Tx rings */
Mitch Williams505682c2014-05-20 08:01:37 +0000726 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000727 struct i40e_vsi *vsi = pf->vsi[v];
728
Mitch Williamsddfda802014-05-10 04:49:10 +0000729 if (!vsi || !vsi->tx_rings[0])
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000730 continue;
731
732 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e15b2013-09-28 06:00:58 +0000733 struct i40e_ring *ring = vsi->tx_rings[i];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000734 clear_bit(__I40E_HANG_CHECK_ARMED, &ring->state);
735 }
736 }
737}
738
739/**
740 * i40e_update_prio_xoff_rx - Update XOFF received in PFC mode
741 * @pf: the corresponding PF
742 *
743 * Update the Rx XOFF counter (PAUSE frames) in PFC mode
744 **/
745static void i40e_update_prio_xoff_rx(struct i40e_pf *pf)
746{
747 struct i40e_hw_port_stats *osd = &pf->stats_offsets;
748 struct i40e_hw_port_stats *nsd = &pf->stats;
749 bool xoff[I40E_MAX_TRAFFIC_CLASS] = {false};
750 struct i40e_dcbx_config *dcb_cfg;
751 struct i40e_hw *hw = &pf->hw;
752 u16 i, v;
753 u8 tc;
754
755 dcb_cfg = &hw->local_dcbx_config;
756
757 /* See if DCB enabled with PFC TC */
758 if (!(pf->flags & I40E_FLAG_DCB_ENABLED) ||
759 !(dcb_cfg->pfc.pfcenable)) {
760 i40e_update_link_xoff_rx(pf);
761 return;
762 }
763
764 for (i = 0; i < I40E_MAX_USER_PRIORITY; i++) {
765 u64 prio_xoff = nsd->priority_xoff_rx[i];
766 i40e_stat_update32(hw, I40E_GLPRT_PXOFFRXC(hw->port, i),
767 pf->stat_offsets_loaded,
768 &osd->priority_xoff_rx[i],
769 &nsd->priority_xoff_rx[i]);
770
771 /* No new PFC xoff rx */
772 if (!(nsd->priority_xoff_rx[i] - prio_xoff))
773 continue;
774 /* Get the TC for given priority */
775 tc = dcb_cfg->etscfg.prioritytable[i];
776 xoff[tc] = true;
777 }
778
779 /* Clear the __I40E_HANG_CHECK_ARMED bit for Tx rings */
Mitch Williams505682c2014-05-20 08:01:37 +0000780 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000781 struct i40e_vsi *vsi = pf->vsi[v];
782
Mitch Williamsddfda802014-05-10 04:49:10 +0000783 if (!vsi || !vsi->tx_rings[0])
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000784 continue;
785
786 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e15b2013-09-28 06:00:58 +0000787 struct i40e_ring *ring = vsi->tx_rings[i];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000788
789 tc = ring->dcb_tc;
790 if (xoff[tc])
791 clear_bit(__I40E_HANG_CHECK_ARMED,
792 &ring->state);
793 }
794 }
795}
796
797/**
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000798 * i40e_update_vsi_stats - Update the vsi statistics counters.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000799 * @vsi: the VSI to be updated
800 *
801 * There are a few instances where we store the same stat in a
802 * couple of different structs. This is partly because we have
803 * the netdev stats that need to be filled out, which is slightly
804 * different from the "eth_stats" defined by the chip and used in
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000805 * VF communications. We sort it out here.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000806 **/
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000807static void i40e_update_vsi_stats(struct i40e_vsi *vsi)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000808{
809 struct i40e_pf *pf = vsi->back;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000810 struct rtnl_link_stats64 *ons;
811 struct rtnl_link_stats64 *ns; /* netdev stats */
812 struct i40e_eth_stats *oes;
813 struct i40e_eth_stats *es; /* device's eth stats */
814 u32 tx_restart, tx_busy;
815 u32 rx_page, rx_buf;
816 u64 rx_p, rx_b;
817 u64 tx_p, tx_b;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000818 u16 q;
819
820 if (test_bit(__I40E_DOWN, &vsi->state) ||
821 test_bit(__I40E_CONFIG_BUSY, &pf->state))
822 return;
823
824 ns = i40e_get_vsi_stats_struct(vsi);
825 ons = &vsi->net_stats_offsets;
826 es = &vsi->eth_stats;
827 oes = &vsi->eth_stats_offsets;
828
829 /* Gather up the netdev and vsi stats that the driver collects
830 * on the fly during packet processing
831 */
832 rx_b = rx_p = 0;
833 tx_b = tx_p = 0;
834 tx_restart = tx_busy = 0;
835 rx_page = 0;
836 rx_buf = 0;
Alexander Duyck980e9b12013-09-28 06:01:03 +0000837 rcu_read_lock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000838 for (q = 0; q < vsi->num_queue_pairs; q++) {
839 struct i40e_ring *p;
Alexander Duyck980e9b12013-09-28 06:01:03 +0000840 u64 bytes, packets;
841 unsigned int start;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000842
Alexander Duyck980e9b12013-09-28 06:01:03 +0000843 /* locate Tx ring */
844 p = ACCESS_ONCE(vsi->tx_rings[q]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000845
Alexander Duyck980e9b12013-09-28 06:01:03 +0000846 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -0700847 start = u64_stats_fetch_begin_irq(&p->syncp);
Alexander Duyck980e9b12013-09-28 06:01:03 +0000848 packets = p->stats.packets;
849 bytes = p->stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -0700850 } while (u64_stats_fetch_retry_irq(&p->syncp, start));
Alexander Duyck980e9b12013-09-28 06:01:03 +0000851 tx_b += bytes;
852 tx_p += packets;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000853 tx_restart += p->tx_stats.restart_queue;
854 tx_busy += p->tx_stats.tx_busy;
Alexander Duyck980e9b12013-09-28 06:01:03 +0000855
856 /* Rx queue is part of the same block as Tx queue */
857 p = &p[1];
858 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -0700859 start = u64_stats_fetch_begin_irq(&p->syncp);
Alexander Duyck980e9b12013-09-28 06:01:03 +0000860 packets = p->stats.packets;
861 bytes = p->stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -0700862 } while (u64_stats_fetch_retry_irq(&p->syncp, start));
Alexander Duyck980e9b12013-09-28 06:01:03 +0000863 rx_b += bytes;
864 rx_p += packets;
Mitch Williams420136c2013-12-18 13:45:59 +0000865 rx_buf += p->rx_stats.alloc_buff_failed;
866 rx_page += p->rx_stats.alloc_page_failed;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000867 }
Alexander Duyck980e9b12013-09-28 06:01:03 +0000868 rcu_read_unlock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000869 vsi->tx_restart = tx_restart;
870 vsi->tx_busy = tx_busy;
871 vsi->rx_page_failed = rx_page;
872 vsi->rx_buf_failed = rx_buf;
873
874 ns->rx_packets = rx_p;
875 ns->rx_bytes = rx_b;
876 ns->tx_packets = tx_p;
877 ns->tx_bytes = tx_b;
878
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000879 /* update netdev stats from eth stats */
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000880 i40e_update_eth_stats(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000881 ons->tx_errors = oes->tx_errors;
882 ns->tx_errors = es->tx_errors;
883 ons->multicast = oes->rx_multicast;
884 ns->multicast = es->rx_multicast;
Shannon Nelson41a9e552014-04-23 04:50:20 +0000885 ons->rx_dropped = oes->rx_discards;
886 ns->rx_dropped = es->rx_discards;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000887 ons->tx_dropped = oes->tx_discards;
888 ns->tx_dropped = es->tx_discards;
889
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000890 /* pull in a couple PF stats if this is the main vsi */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000891 if (vsi == pf->vsi[pf->lan_vsi]) {
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000892 ns->rx_crc_errors = pf->stats.crc_errors;
893 ns->rx_errors = pf->stats.crc_errors + pf->stats.illegal_bytes;
894 ns->rx_length_errors = pf->stats.rx_length_errors;
895 }
896}
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000897
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000898/**
899 * i40e_update_pf_stats - Update the pf statistics counters.
900 * @pf: the PF to be updated
901 **/
902static void i40e_update_pf_stats(struct i40e_pf *pf)
903{
904 struct i40e_hw_port_stats *osd = &pf->stats_offsets;
905 struct i40e_hw_port_stats *nsd = &pf->stats;
906 struct i40e_hw *hw = &pf->hw;
907 u32 val;
908 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000909
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000910 i40e_stat_update48(hw, I40E_GLPRT_GORCH(hw->port),
911 I40E_GLPRT_GORCL(hw->port),
912 pf->stat_offsets_loaded,
913 &osd->eth.rx_bytes, &nsd->eth.rx_bytes);
914 i40e_stat_update48(hw, I40E_GLPRT_GOTCH(hw->port),
915 I40E_GLPRT_GOTCL(hw->port),
916 pf->stat_offsets_loaded,
917 &osd->eth.tx_bytes, &nsd->eth.tx_bytes);
918 i40e_stat_update32(hw, I40E_GLPRT_RDPC(hw->port),
919 pf->stat_offsets_loaded,
920 &osd->eth.rx_discards,
921 &nsd->eth.rx_discards);
922 i40e_stat_update32(hw, I40E_GLPRT_TDPC(hw->port),
923 pf->stat_offsets_loaded,
924 &osd->eth.tx_discards,
925 &nsd->eth.tx_discards);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000926
Shannon Nelson532d2832014-04-23 04:50:09 +0000927 i40e_stat_update48(hw, I40E_GLPRT_UPRCH(hw->port),
928 I40E_GLPRT_UPRCL(hw->port),
929 pf->stat_offsets_loaded,
930 &osd->eth.rx_unicast,
931 &nsd->eth.rx_unicast);
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000932 i40e_stat_update48(hw, I40E_GLPRT_MPRCH(hw->port),
933 I40E_GLPRT_MPRCL(hw->port),
934 pf->stat_offsets_loaded,
935 &osd->eth.rx_multicast,
936 &nsd->eth.rx_multicast);
Shannon Nelson532d2832014-04-23 04:50:09 +0000937 i40e_stat_update48(hw, I40E_GLPRT_BPRCH(hw->port),
938 I40E_GLPRT_BPRCL(hw->port),
939 pf->stat_offsets_loaded,
940 &osd->eth.rx_broadcast,
941 &nsd->eth.rx_broadcast);
942 i40e_stat_update48(hw, I40E_GLPRT_UPTCH(hw->port),
943 I40E_GLPRT_UPTCL(hw->port),
944 pf->stat_offsets_loaded,
945 &osd->eth.tx_unicast,
946 &nsd->eth.tx_unicast);
947 i40e_stat_update48(hw, I40E_GLPRT_MPTCH(hw->port),
948 I40E_GLPRT_MPTCL(hw->port),
949 pf->stat_offsets_loaded,
950 &osd->eth.tx_multicast,
951 &nsd->eth.tx_multicast);
952 i40e_stat_update48(hw, I40E_GLPRT_BPTCH(hw->port),
953 I40E_GLPRT_BPTCL(hw->port),
954 pf->stat_offsets_loaded,
955 &osd->eth.tx_broadcast,
956 &nsd->eth.tx_broadcast);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000957
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000958 i40e_stat_update32(hw, I40E_GLPRT_TDOLD(hw->port),
959 pf->stat_offsets_loaded,
960 &osd->tx_dropped_link_down,
961 &nsd->tx_dropped_link_down);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000962
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000963 i40e_stat_update32(hw, I40E_GLPRT_CRCERRS(hw->port),
964 pf->stat_offsets_loaded,
965 &osd->crc_errors, &nsd->crc_errors);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000966
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000967 i40e_stat_update32(hw, I40E_GLPRT_ILLERRC(hw->port),
968 pf->stat_offsets_loaded,
969 &osd->illegal_bytes, &nsd->illegal_bytes);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000970
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000971 i40e_stat_update32(hw, I40E_GLPRT_MLFC(hw->port),
972 pf->stat_offsets_loaded,
973 &osd->mac_local_faults,
974 &nsd->mac_local_faults);
975 i40e_stat_update32(hw, I40E_GLPRT_MRFC(hw->port),
976 pf->stat_offsets_loaded,
977 &osd->mac_remote_faults,
978 &nsd->mac_remote_faults);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000979
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000980 i40e_stat_update32(hw, I40E_GLPRT_RLEC(hw->port),
981 pf->stat_offsets_loaded,
982 &osd->rx_length_errors,
983 &nsd->rx_length_errors);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000984
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000985 i40e_stat_update32(hw, I40E_GLPRT_LXONRXC(hw->port),
986 pf->stat_offsets_loaded,
987 &osd->link_xon_rx, &nsd->link_xon_rx);
988 i40e_stat_update32(hw, I40E_GLPRT_LXONTXC(hw->port),
989 pf->stat_offsets_loaded,
990 &osd->link_xon_tx, &nsd->link_xon_tx);
991 i40e_update_prio_xoff_rx(pf); /* handles I40E_GLPRT_LXOFFRXC */
992 i40e_stat_update32(hw, I40E_GLPRT_LXOFFTXC(hw->port),
993 pf->stat_offsets_loaded,
994 &osd->link_xoff_tx, &nsd->link_xoff_tx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000995
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000996 for (i = 0; i < 8; i++) {
997 i40e_stat_update32(hw, I40E_GLPRT_PXONRXC(hw->port, i),
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000998 pf->stat_offsets_loaded,
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000999 &osd->priority_xon_rx[i],
1000 &nsd->priority_xon_rx[i]);
1001 i40e_stat_update32(hw, I40E_GLPRT_PXONTXC(hw->port, i),
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001002 pf->stat_offsets_loaded,
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001003 &osd->priority_xon_tx[i],
1004 &nsd->priority_xon_tx[i]);
1005 i40e_stat_update32(hw, I40E_GLPRT_PXOFFTXC(hw->port, i),
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001006 pf->stat_offsets_loaded,
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001007 &osd->priority_xoff_tx[i],
1008 &nsd->priority_xoff_tx[i]);
1009 i40e_stat_update32(hw,
1010 I40E_GLPRT_RXON2OFFCNT(hw->port, i),
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001011 pf->stat_offsets_loaded,
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001012 &osd->priority_xon_2_xoff[i],
1013 &nsd->priority_xon_2_xoff[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001014 }
1015
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001016 i40e_stat_update48(hw, I40E_GLPRT_PRC64H(hw->port),
1017 I40E_GLPRT_PRC64L(hw->port),
1018 pf->stat_offsets_loaded,
1019 &osd->rx_size_64, &nsd->rx_size_64);
1020 i40e_stat_update48(hw, I40E_GLPRT_PRC127H(hw->port),
1021 I40E_GLPRT_PRC127L(hw->port),
1022 pf->stat_offsets_loaded,
1023 &osd->rx_size_127, &nsd->rx_size_127);
1024 i40e_stat_update48(hw, I40E_GLPRT_PRC255H(hw->port),
1025 I40E_GLPRT_PRC255L(hw->port),
1026 pf->stat_offsets_loaded,
1027 &osd->rx_size_255, &nsd->rx_size_255);
1028 i40e_stat_update48(hw, I40E_GLPRT_PRC511H(hw->port),
1029 I40E_GLPRT_PRC511L(hw->port),
1030 pf->stat_offsets_loaded,
1031 &osd->rx_size_511, &nsd->rx_size_511);
1032 i40e_stat_update48(hw, I40E_GLPRT_PRC1023H(hw->port),
1033 I40E_GLPRT_PRC1023L(hw->port),
1034 pf->stat_offsets_loaded,
1035 &osd->rx_size_1023, &nsd->rx_size_1023);
1036 i40e_stat_update48(hw, I40E_GLPRT_PRC1522H(hw->port),
1037 I40E_GLPRT_PRC1522L(hw->port),
1038 pf->stat_offsets_loaded,
1039 &osd->rx_size_1522, &nsd->rx_size_1522);
1040 i40e_stat_update48(hw, I40E_GLPRT_PRC9522H(hw->port),
1041 I40E_GLPRT_PRC9522L(hw->port),
1042 pf->stat_offsets_loaded,
1043 &osd->rx_size_big, &nsd->rx_size_big);
1044
1045 i40e_stat_update48(hw, I40E_GLPRT_PTC64H(hw->port),
1046 I40E_GLPRT_PTC64L(hw->port),
1047 pf->stat_offsets_loaded,
1048 &osd->tx_size_64, &nsd->tx_size_64);
1049 i40e_stat_update48(hw, I40E_GLPRT_PTC127H(hw->port),
1050 I40E_GLPRT_PTC127L(hw->port),
1051 pf->stat_offsets_loaded,
1052 &osd->tx_size_127, &nsd->tx_size_127);
1053 i40e_stat_update48(hw, I40E_GLPRT_PTC255H(hw->port),
1054 I40E_GLPRT_PTC255L(hw->port),
1055 pf->stat_offsets_loaded,
1056 &osd->tx_size_255, &nsd->tx_size_255);
1057 i40e_stat_update48(hw, I40E_GLPRT_PTC511H(hw->port),
1058 I40E_GLPRT_PTC511L(hw->port),
1059 pf->stat_offsets_loaded,
1060 &osd->tx_size_511, &nsd->tx_size_511);
1061 i40e_stat_update48(hw, I40E_GLPRT_PTC1023H(hw->port),
1062 I40E_GLPRT_PTC1023L(hw->port),
1063 pf->stat_offsets_loaded,
1064 &osd->tx_size_1023, &nsd->tx_size_1023);
1065 i40e_stat_update48(hw, I40E_GLPRT_PTC1522H(hw->port),
1066 I40E_GLPRT_PTC1522L(hw->port),
1067 pf->stat_offsets_loaded,
1068 &osd->tx_size_1522, &nsd->tx_size_1522);
1069 i40e_stat_update48(hw, I40E_GLPRT_PTC9522H(hw->port),
1070 I40E_GLPRT_PTC9522L(hw->port),
1071 pf->stat_offsets_loaded,
1072 &osd->tx_size_big, &nsd->tx_size_big);
1073
1074 i40e_stat_update32(hw, I40E_GLPRT_RUC(hw->port),
1075 pf->stat_offsets_loaded,
1076 &osd->rx_undersize, &nsd->rx_undersize);
1077 i40e_stat_update32(hw, I40E_GLPRT_RFC(hw->port),
1078 pf->stat_offsets_loaded,
1079 &osd->rx_fragments, &nsd->rx_fragments);
1080 i40e_stat_update32(hw, I40E_GLPRT_ROC(hw->port),
1081 pf->stat_offsets_loaded,
1082 &osd->rx_oversize, &nsd->rx_oversize);
1083 i40e_stat_update32(hw, I40E_GLPRT_RJC(hw->port),
1084 pf->stat_offsets_loaded,
1085 &osd->rx_jabber, &nsd->rx_jabber);
1086
Anjali Singhai Jain433c47d2014-05-22 06:32:17 +00001087 /* FDIR stats */
1088 i40e_stat_update32(hw, I40E_GLQF_PCNT(pf->fd_atr_cnt_idx),
1089 pf->stat_offsets_loaded,
1090 &osd->fd_atr_match, &nsd->fd_atr_match);
1091 i40e_stat_update32(hw, I40E_GLQF_PCNT(pf->fd_sb_cnt_idx),
1092 pf->stat_offsets_loaded,
1093 &osd->fd_sb_match, &nsd->fd_sb_match);
1094
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001095 val = rd32(hw, I40E_PRTPM_EEE_STAT);
1096 nsd->tx_lpi_status =
1097 (val & I40E_PRTPM_EEE_STAT_TX_LPI_STATUS_MASK) >>
1098 I40E_PRTPM_EEE_STAT_TX_LPI_STATUS_SHIFT;
1099 nsd->rx_lpi_status =
1100 (val & I40E_PRTPM_EEE_STAT_RX_LPI_STATUS_MASK) >>
1101 I40E_PRTPM_EEE_STAT_RX_LPI_STATUS_SHIFT;
1102 i40e_stat_update32(hw, I40E_PRTPM_TLPIC,
1103 pf->stat_offsets_loaded,
1104 &osd->tx_lpi_count, &nsd->tx_lpi_count);
1105 i40e_stat_update32(hw, I40E_PRTPM_RLPIC,
1106 pf->stat_offsets_loaded,
1107 &osd->rx_lpi_count, &nsd->rx_lpi_count);
1108
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001109 pf->stat_offsets_loaded = true;
1110}
1111
1112/**
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001113 * i40e_update_stats - Update the various statistics counters.
1114 * @vsi: the VSI to be updated
1115 *
1116 * Update the various stats for this VSI and its related entities.
1117 **/
1118void i40e_update_stats(struct i40e_vsi *vsi)
1119{
1120 struct i40e_pf *pf = vsi->back;
1121
1122 if (vsi == pf->vsi[pf->lan_vsi])
1123 i40e_update_pf_stats(pf);
1124
1125 i40e_update_vsi_stats(vsi);
Vasu Dev38e00432014-08-01 13:27:03 -07001126#ifdef I40E_FCOE
1127 i40e_update_fcoe_stats(vsi);
1128#endif
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001129}
1130
1131/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001132 * i40e_find_filter - Search VSI filter list for specific mac/vlan filter
1133 * @vsi: the VSI to be searched
1134 * @macaddr: the MAC address
1135 * @vlan: the vlan
1136 * @is_vf: make sure its a vf filter, else doesn't matter
1137 * @is_netdev: make sure its a netdev filter, else doesn't matter
1138 *
1139 * Returns ptr to the filter object or NULL
1140 **/
1141static struct i40e_mac_filter *i40e_find_filter(struct i40e_vsi *vsi,
1142 u8 *macaddr, s16 vlan,
1143 bool is_vf, bool is_netdev)
1144{
1145 struct i40e_mac_filter *f;
1146
1147 if (!vsi || !macaddr)
1148 return NULL;
1149
1150 list_for_each_entry(f, &vsi->mac_filter_list, list) {
1151 if ((ether_addr_equal(macaddr, f->macaddr)) &&
1152 (vlan == f->vlan) &&
1153 (!is_vf || f->is_vf) &&
1154 (!is_netdev || f->is_netdev))
1155 return f;
1156 }
1157 return NULL;
1158}
1159
1160/**
1161 * i40e_find_mac - Find a mac addr in the macvlan filters list
1162 * @vsi: the VSI to be searched
1163 * @macaddr: the MAC address we are searching for
1164 * @is_vf: make sure its a vf filter, else doesn't matter
1165 * @is_netdev: make sure its a netdev filter, else doesn't matter
1166 *
1167 * Returns the first filter with the provided MAC address or NULL if
1168 * MAC address was not found
1169 **/
1170struct i40e_mac_filter *i40e_find_mac(struct i40e_vsi *vsi, u8 *macaddr,
1171 bool is_vf, bool is_netdev)
1172{
1173 struct i40e_mac_filter *f;
1174
1175 if (!vsi || !macaddr)
1176 return NULL;
1177
1178 list_for_each_entry(f, &vsi->mac_filter_list, list) {
1179 if ((ether_addr_equal(macaddr, f->macaddr)) &&
1180 (!is_vf || f->is_vf) &&
1181 (!is_netdev || f->is_netdev))
1182 return f;
1183 }
1184 return NULL;
1185}
1186
1187/**
1188 * i40e_is_vsi_in_vlan - Check if VSI is in vlan mode
1189 * @vsi: the VSI to be searched
1190 *
1191 * Returns true if VSI is in vlan mode or false otherwise
1192 **/
1193bool i40e_is_vsi_in_vlan(struct i40e_vsi *vsi)
1194{
1195 struct i40e_mac_filter *f;
1196
1197 /* Only -1 for all the filters denotes not in vlan mode
1198 * so we have to go through all the list in order to make sure
1199 */
1200 list_for_each_entry(f, &vsi->mac_filter_list, list) {
1201 if (f->vlan >= 0)
1202 return true;
1203 }
1204
1205 return false;
1206}
1207
1208/**
1209 * i40e_put_mac_in_vlan - Make macvlan filters from macaddrs and vlans
1210 * @vsi: the VSI to be searched
1211 * @macaddr: the mac address to be filtered
1212 * @is_vf: true if it is a vf
1213 * @is_netdev: true if it is a netdev
1214 *
1215 * Goes through all the macvlan filters and adds a
1216 * macvlan filter for each unique vlan that already exists
1217 *
1218 * Returns first filter found on success, else NULL
1219 **/
1220struct i40e_mac_filter *i40e_put_mac_in_vlan(struct i40e_vsi *vsi, u8 *macaddr,
1221 bool is_vf, bool is_netdev)
1222{
1223 struct i40e_mac_filter *f;
1224
1225 list_for_each_entry(f, &vsi->mac_filter_list, list) {
1226 if (!i40e_find_filter(vsi, macaddr, f->vlan,
1227 is_vf, is_netdev)) {
1228 if (!i40e_add_filter(vsi, macaddr, f->vlan,
Jesse Brandeburg8fb905b2014-01-17 15:36:33 -08001229 is_vf, is_netdev))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001230 return NULL;
1231 }
1232 }
1233
1234 return list_first_entry_or_null(&vsi->mac_filter_list,
1235 struct i40e_mac_filter, list);
1236}
1237
1238/**
Greg Rose8c27d422014-05-22 06:31:56 +00001239 * i40e_rm_default_mac_filter - Remove the default MAC filter set by NVM
1240 * @vsi: the PF Main VSI - inappropriate for any other VSI
1241 * @macaddr: the MAC address
Shannon Nelson30650cc2014-07-29 04:01:50 +00001242 *
1243 * Some older firmware configurations set up a default promiscuous VLAN
1244 * filter that needs to be removed.
Greg Rose8c27d422014-05-22 06:31:56 +00001245 **/
Shannon Nelson30650cc2014-07-29 04:01:50 +00001246static int i40e_rm_default_mac_filter(struct i40e_vsi *vsi, u8 *macaddr)
Greg Rose8c27d422014-05-22 06:31:56 +00001247{
1248 struct i40e_aqc_remove_macvlan_element_data element;
1249 struct i40e_pf *pf = vsi->back;
1250 i40e_status aq_ret;
1251
1252 /* Only appropriate for the PF main VSI */
1253 if (vsi->type != I40E_VSI_MAIN)
Shannon Nelson30650cc2014-07-29 04:01:50 +00001254 return -EINVAL;
Greg Rose8c27d422014-05-22 06:31:56 +00001255
Shannon Nelson30650cc2014-07-29 04:01:50 +00001256 memset(&element, 0, sizeof(element));
Greg Rose8c27d422014-05-22 06:31:56 +00001257 ether_addr_copy(element.mac_addr, macaddr);
1258 element.vlan_tag = 0;
1259 element.flags = I40E_AQC_MACVLAN_DEL_PERFECT_MATCH |
1260 I40E_AQC_MACVLAN_DEL_IGNORE_VLAN;
1261 aq_ret = i40e_aq_remove_macvlan(&pf->hw, vsi->seid, &element, 1, NULL);
1262 if (aq_ret)
Shannon Nelson30650cc2014-07-29 04:01:50 +00001263 return -ENOENT;
1264
1265 return 0;
Greg Rose8c27d422014-05-22 06:31:56 +00001266}
1267
1268/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001269 * i40e_add_filter - Add a mac/vlan filter to the VSI
1270 * @vsi: the VSI to be searched
1271 * @macaddr: the MAC address
1272 * @vlan: the vlan
1273 * @is_vf: make sure its a vf filter, else doesn't matter
1274 * @is_netdev: make sure its a netdev filter, else doesn't matter
1275 *
1276 * Returns ptr to the filter object or NULL when no memory available.
1277 **/
1278struct i40e_mac_filter *i40e_add_filter(struct i40e_vsi *vsi,
1279 u8 *macaddr, s16 vlan,
1280 bool is_vf, bool is_netdev)
1281{
1282 struct i40e_mac_filter *f;
1283
1284 if (!vsi || !macaddr)
1285 return NULL;
1286
1287 f = i40e_find_filter(vsi, macaddr, vlan, is_vf, is_netdev);
1288 if (!f) {
1289 f = kzalloc(sizeof(*f), GFP_ATOMIC);
1290 if (!f)
1291 goto add_filter_out;
1292
Greg Rose9a173902014-05-22 06:32:02 +00001293 ether_addr_copy(f->macaddr, macaddr);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001294 f->vlan = vlan;
1295 f->changed = true;
1296
1297 INIT_LIST_HEAD(&f->list);
1298 list_add(&f->list, &vsi->mac_filter_list);
1299 }
1300
1301 /* increment counter and add a new flag if needed */
1302 if (is_vf) {
1303 if (!f->is_vf) {
1304 f->is_vf = true;
1305 f->counter++;
1306 }
1307 } else if (is_netdev) {
1308 if (!f->is_netdev) {
1309 f->is_netdev = true;
1310 f->counter++;
1311 }
1312 } else {
1313 f->counter++;
1314 }
1315
1316 /* changed tells sync_filters_subtask to
1317 * push the filter down to the firmware
1318 */
1319 if (f->changed) {
1320 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
1321 vsi->back->flags |= I40E_FLAG_FILTER_SYNC;
1322 }
1323
1324add_filter_out:
1325 return f;
1326}
1327
1328/**
1329 * i40e_del_filter - Remove a mac/vlan filter from the VSI
1330 * @vsi: the VSI to be searched
1331 * @macaddr: the MAC address
1332 * @vlan: the vlan
1333 * @is_vf: make sure it's a vf filter, else doesn't matter
1334 * @is_netdev: make sure it's a netdev filter, else doesn't matter
1335 **/
1336void i40e_del_filter(struct i40e_vsi *vsi,
1337 u8 *macaddr, s16 vlan,
1338 bool is_vf, bool is_netdev)
1339{
1340 struct i40e_mac_filter *f;
1341
1342 if (!vsi || !macaddr)
1343 return;
1344
1345 f = i40e_find_filter(vsi, macaddr, vlan, is_vf, is_netdev);
1346 if (!f || f->counter == 0)
1347 return;
1348
1349 if (is_vf) {
1350 if (f->is_vf) {
1351 f->is_vf = false;
1352 f->counter--;
1353 }
1354 } else if (is_netdev) {
1355 if (f->is_netdev) {
1356 f->is_netdev = false;
1357 f->counter--;
1358 }
1359 } else {
1360 /* make sure we don't remove a filter in use by vf or netdev */
1361 int min_f = 0;
1362 min_f += (f->is_vf ? 1 : 0);
1363 min_f += (f->is_netdev ? 1 : 0);
1364
1365 if (f->counter > min_f)
1366 f->counter--;
1367 }
1368
1369 /* counter == 0 tells sync_filters_subtask to
1370 * remove the filter from the firmware's list
1371 */
1372 if (f->counter == 0) {
1373 f->changed = true;
1374 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
1375 vsi->back->flags |= I40E_FLAG_FILTER_SYNC;
1376 }
1377}
1378
1379/**
1380 * i40e_set_mac - NDO callback to set mac address
1381 * @netdev: network interface device structure
1382 * @p: pointer to an address structure
1383 *
1384 * Returns 0 on success, negative on failure
1385 **/
Vasu Dev38e00432014-08-01 13:27:03 -07001386#ifdef I40E_FCOE
1387int i40e_set_mac(struct net_device *netdev, void *p)
1388#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001389static int i40e_set_mac(struct net_device *netdev, void *p)
Vasu Dev38e00432014-08-01 13:27:03 -07001390#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001391{
1392 struct i40e_netdev_priv *np = netdev_priv(netdev);
1393 struct i40e_vsi *vsi = np->vsi;
Shannon Nelson30650cc2014-07-29 04:01:50 +00001394 struct i40e_pf *pf = vsi->back;
1395 struct i40e_hw *hw = &pf->hw;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001396 struct sockaddr *addr = p;
1397 struct i40e_mac_filter *f;
1398
1399 if (!is_valid_ether_addr(addr->sa_data))
1400 return -EADDRNOTAVAIL;
1401
Shannon Nelson30650cc2014-07-29 04:01:50 +00001402 if (ether_addr_equal(netdev->dev_addr, addr->sa_data)) {
1403 netdev_info(netdev, "already using mac address %pM\n",
1404 addr->sa_data);
1405 return 0;
1406 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001407
Anjali Singhai Jain80f64282013-11-28 06:39:47 +00001408 if (test_bit(__I40E_DOWN, &vsi->back->state) ||
1409 test_bit(__I40E_RESET_RECOVERY_PENDING, &vsi->back->state))
1410 return -EADDRNOTAVAIL;
1411
Shannon Nelson30650cc2014-07-29 04:01:50 +00001412 if (ether_addr_equal(hw->mac.addr, addr->sa_data))
1413 netdev_info(netdev, "returning to hw mac address %pM\n",
1414 hw->mac.addr);
1415 else
1416 netdev_info(netdev, "set new mac address %pM\n", addr->sa_data);
1417
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001418 if (vsi->type == I40E_VSI_MAIN) {
1419 i40e_status ret;
1420 ret = i40e_aq_mac_address_write(&vsi->back->hw,
Shannon Nelsoncc412222014-06-04 01:23:21 +00001421 I40E_AQC_WRITE_TYPE_LAA_WOL,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001422 addr->sa_data, NULL);
1423 if (ret) {
1424 netdev_info(netdev,
1425 "Addr change for Main VSI failed: %d\n",
1426 ret);
1427 return -EADDRNOTAVAIL;
1428 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001429 }
1430
Shannon Nelson30650cc2014-07-29 04:01:50 +00001431 if (ether_addr_equal(netdev->dev_addr, hw->mac.addr)) {
1432 struct i40e_aqc_remove_macvlan_element_data element;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001433
Shannon Nelson30650cc2014-07-29 04:01:50 +00001434 memset(&element, 0, sizeof(element));
1435 ether_addr_copy(element.mac_addr, netdev->dev_addr);
1436 element.flags = I40E_AQC_MACVLAN_DEL_PERFECT_MATCH;
1437 i40e_aq_remove_macvlan(&pf->hw, vsi->seid, &element, 1, NULL);
1438 } else {
Shannon Nelson6c8ad1b2014-06-04 01:23:22 +00001439 i40e_del_filter(vsi, netdev->dev_addr, I40E_VLAN_ANY,
1440 false, false);
Shannon Nelson6c8ad1b2014-06-04 01:23:22 +00001441 }
1442
Shannon Nelson30650cc2014-07-29 04:01:50 +00001443 if (ether_addr_equal(addr->sa_data, hw->mac.addr)) {
1444 struct i40e_aqc_add_macvlan_element_data element;
1445
1446 memset(&element, 0, sizeof(element));
1447 ether_addr_copy(element.mac_addr, hw->mac.addr);
1448 element.flags = cpu_to_le16(I40E_AQC_MACVLAN_ADD_PERFECT_MATCH);
1449 i40e_aq_add_macvlan(&pf->hw, vsi->seid, &element, 1, NULL);
1450 } else {
1451 f = i40e_add_filter(vsi, addr->sa_data, I40E_VLAN_ANY,
1452 false, false);
1453 if (f)
1454 f->is_laa = true;
1455 }
1456
1457 i40e_sync_vsi_filters(vsi);
1458 ether_addr_copy(netdev->dev_addr, addr->sa_data);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001459
1460 return 0;
1461}
1462
1463/**
1464 * i40e_vsi_setup_queue_map - Setup a VSI queue map based on enabled_tc
1465 * @vsi: the VSI being setup
1466 * @ctxt: VSI context structure
1467 * @enabled_tc: Enabled TCs bitmap
1468 * @is_add: True if called before Add VSI
1469 *
1470 * Setup VSI queue mapping for enabled traffic classes.
1471 **/
Vasu Dev38e00432014-08-01 13:27:03 -07001472#ifdef I40E_FCOE
1473void i40e_vsi_setup_queue_map(struct i40e_vsi *vsi,
1474 struct i40e_vsi_context *ctxt,
1475 u8 enabled_tc,
1476 bool is_add)
1477#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001478static void i40e_vsi_setup_queue_map(struct i40e_vsi *vsi,
1479 struct i40e_vsi_context *ctxt,
1480 u8 enabled_tc,
1481 bool is_add)
Vasu Dev38e00432014-08-01 13:27:03 -07001482#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001483{
1484 struct i40e_pf *pf = vsi->back;
1485 u16 sections = 0;
1486 u8 netdev_tc = 0;
1487 u16 numtc = 0;
1488 u16 qcount;
1489 u8 offset;
1490 u16 qmap;
1491 int i;
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001492 u16 num_tc_qps = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001493
1494 sections = I40E_AQ_VSI_PROP_QUEUE_MAP_VALID;
1495 offset = 0;
1496
1497 if (enabled_tc && (vsi->back->flags & I40E_FLAG_DCB_ENABLED)) {
1498 /* Find numtc from enabled TC bitmap */
1499 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
1500 if (enabled_tc & (1 << i)) /* TC is enabled */
1501 numtc++;
1502 }
1503 if (!numtc) {
1504 dev_warn(&pf->pdev->dev, "DCB is enabled but no TC enabled, forcing TC0\n");
1505 numtc = 1;
1506 }
1507 } else {
1508 /* At least TC0 is enabled in case of non-DCB case */
1509 numtc = 1;
1510 }
1511
1512 vsi->tc_config.numtc = numtc;
1513 vsi->tc_config.enabled_tc = enabled_tc ? enabled_tc : 1;
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001514 /* Number of queues per enabled TC */
Anjali Singhai Jaineb051af2014-05-20 08:01:46 +00001515 num_tc_qps = vsi->alloc_queue_pairs/numtc;
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001516 num_tc_qps = min_t(int, num_tc_qps, I40E_MAX_QUEUES_PER_TC);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001517
1518 /* Setup queue offset/count for all TCs for given VSI */
1519 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
1520 /* See if the given TC is enabled for the given VSI */
1521 if (vsi->tc_config.enabled_tc & (1 << i)) { /* TC is enabled */
1522 int pow, num_qps;
1523
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001524 switch (vsi->type) {
1525 case I40E_VSI_MAIN:
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001526 qcount = min_t(int, pf->rss_size, num_tc_qps);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001527 break;
Vasu Dev38e00432014-08-01 13:27:03 -07001528#ifdef I40E_FCOE
1529 case I40E_VSI_FCOE:
1530 qcount = num_tc_qps;
1531 break;
1532#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001533 case I40E_VSI_FDIR:
1534 case I40E_VSI_SRIOV:
1535 case I40E_VSI_VMDQ2:
1536 default:
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001537 qcount = num_tc_qps;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001538 WARN_ON(i != 0);
1539 break;
1540 }
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001541 vsi->tc_config.tc_info[i].qoffset = offset;
1542 vsi->tc_config.tc_info[i].qcount = qcount;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001543
1544 /* find the power-of-2 of the number of queue pairs */
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001545 num_qps = qcount;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001546 pow = 0;
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001547 while (num_qps && ((1 << pow) < qcount)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001548 pow++;
1549 num_qps >>= 1;
1550 }
1551
1552 vsi->tc_config.tc_info[i].netdev_tc = netdev_tc++;
1553 qmap =
1554 (offset << I40E_AQ_VSI_TC_QUE_OFFSET_SHIFT) |
1555 (pow << I40E_AQ_VSI_TC_QUE_NUMBER_SHIFT);
1556
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001557 offset += qcount;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001558 } else {
1559 /* TC is not enabled so set the offset to
1560 * default queue and allocate one queue
1561 * for the given TC.
1562 */
1563 vsi->tc_config.tc_info[i].qoffset = 0;
1564 vsi->tc_config.tc_info[i].qcount = 1;
1565 vsi->tc_config.tc_info[i].netdev_tc = 0;
1566
1567 qmap = 0;
1568 }
1569 ctxt->info.tc_mapping[i] = cpu_to_le16(qmap);
1570 }
1571
1572 /* Set actual Tx/Rx queue pairs */
1573 vsi->num_queue_pairs = offset;
1574
1575 /* Scheduler section valid can only be set for ADD VSI */
1576 if (is_add) {
1577 sections |= I40E_AQ_VSI_PROP_SCHED_VALID;
1578
1579 ctxt->info.up_enable_bits = enabled_tc;
1580 }
1581 if (vsi->type == I40E_VSI_SRIOV) {
1582 ctxt->info.mapping_flags |=
1583 cpu_to_le16(I40E_AQ_VSI_QUE_MAP_NONCONTIG);
1584 for (i = 0; i < vsi->num_queue_pairs; i++)
1585 ctxt->info.queue_mapping[i] =
1586 cpu_to_le16(vsi->base_queue + i);
1587 } else {
1588 ctxt->info.mapping_flags |=
1589 cpu_to_le16(I40E_AQ_VSI_QUE_MAP_CONTIG);
1590 ctxt->info.queue_mapping[0] = cpu_to_le16(vsi->base_queue);
1591 }
1592 ctxt->info.valid_sections |= cpu_to_le16(sections);
1593}
1594
1595/**
1596 * i40e_set_rx_mode - NDO callback to set the netdev filters
1597 * @netdev: network interface device structure
1598 **/
Vasu Dev38e00432014-08-01 13:27:03 -07001599#ifdef I40E_FCOE
1600void i40e_set_rx_mode(struct net_device *netdev)
1601#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001602static void i40e_set_rx_mode(struct net_device *netdev)
Vasu Dev38e00432014-08-01 13:27:03 -07001603#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001604{
1605 struct i40e_netdev_priv *np = netdev_priv(netdev);
1606 struct i40e_mac_filter *f, *ftmp;
1607 struct i40e_vsi *vsi = np->vsi;
1608 struct netdev_hw_addr *uca;
1609 struct netdev_hw_addr *mca;
1610 struct netdev_hw_addr *ha;
1611
1612 /* add addr if not already in the filter list */
1613 netdev_for_each_uc_addr(uca, netdev) {
1614 if (!i40e_find_mac(vsi, uca->addr, false, true)) {
1615 if (i40e_is_vsi_in_vlan(vsi))
1616 i40e_put_mac_in_vlan(vsi, uca->addr,
1617 false, true);
1618 else
1619 i40e_add_filter(vsi, uca->addr, I40E_VLAN_ANY,
1620 false, true);
1621 }
1622 }
1623
1624 netdev_for_each_mc_addr(mca, netdev) {
1625 if (!i40e_find_mac(vsi, mca->addr, false, true)) {
1626 if (i40e_is_vsi_in_vlan(vsi))
1627 i40e_put_mac_in_vlan(vsi, mca->addr,
1628 false, true);
1629 else
1630 i40e_add_filter(vsi, mca->addr, I40E_VLAN_ANY,
1631 false, true);
1632 }
1633 }
1634
1635 /* remove filter if not in netdev list */
1636 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
1637 bool found = false;
1638
1639 if (!f->is_netdev)
1640 continue;
1641
1642 if (is_multicast_ether_addr(f->macaddr)) {
1643 netdev_for_each_mc_addr(mca, netdev) {
1644 if (ether_addr_equal(mca->addr, f->macaddr)) {
1645 found = true;
1646 break;
1647 }
1648 }
1649 } else {
1650 netdev_for_each_uc_addr(uca, netdev) {
1651 if (ether_addr_equal(uca->addr, f->macaddr)) {
1652 found = true;
1653 break;
1654 }
1655 }
1656
1657 for_each_dev_addr(netdev, ha) {
1658 if (ether_addr_equal(ha->addr, f->macaddr)) {
1659 found = true;
1660 break;
1661 }
1662 }
1663 }
1664 if (!found)
1665 i40e_del_filter(
1666 vsi, f->macaddr, I40E_VLAN_ANY, false, true);
1667 }
1668
1669 /* check for other flag changes */
1670 if (vsi->current_netdev_flags != vsi->netdev->flags) {
1671 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
1672 vsi->back->flags |= I40E_FLAG_FILTER_SYNC;
1673 }
1674}
1675
1676/**
1677 * i40e_sync_vsi_filters - Update the VSI filter list to the HW
1678 * @vsi: ptr to the VSI
1679 *
1680 * Push any outstanding VSI filter changes through the AdminQ.
1681 *
1682 * Returns 0 or error value
1683 **/
1684int i40e_sync_vsi_filters(struct i40e_vsi *vsi)
1685{
1686 struct i40e_mac_filter *f, *ftmp;
1687 bool promisc_forced_on = false;
1688 bool add_happened = false;
1689 int filter_list_len = 0;
1690 u32 changed_flags = 0;
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001691 i40e_status aq_ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001692 struct i40e_pf *pf;
1693 int num_add = 0;
1694 int num_del = 0;
1695 u16 cmd_flags;
1696
1697 /* empty array typed pointers, kcalloc later */
1698 struct i40e_aqc_add_macvlan_element_data *add_list;
1699 struct i40e_aqc_remove_macvlan_element_data *del_list;
1700
1701 while (test_and_set_bit(__I40E_CONFIG_BUSY, &vsi->state))
1702 usleep_range(1000, 2000);
1703 pf = vsi->back;
1704
1705 if (vsi->netdev) {
1706 changed_flags = vsi->current_netdev_flags ^ vsi->netdev->flags;
1707 vsi->current_netdev_flags = vsi->netdev->flags;
1708 }
1709
1710 if (vsi->flags & I40E_VSI_FLAG_FILTER_CHANGED) {
1711 vsi->flags &= ~I40E_VSI_FLAG_FILTER_CHANGED;
1712
1713 filter_list_len = pf->hw.aq.asq_buf_size /
1714 sizeof(struct i40e_aqc_remove_macvlan_element_data);
1715 del_list = kcalloc(filter_list_len,
1716 sizeof(struct i40e_aqc_remove_macvlan_element_data),
1717 GFP_KERNEL);
1718 if (!del_list)
1719 return -ENOMEM;
1720
1721 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
1722 if (!f->changed)
1723 continue;
1724
1725 if (f->counter != 0)
1726 continue;
1727 f->changed = false;
1728 cmd_flags = 0;
1729
1730 /* add to delete list */
Greg Rose9a173902014-05-22 06:32:02 +00001731 ether_addr_copy(del_list[num_del].mac_addr, f->macaddr);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001732 del_list[num_del].vlan_tag =
1733 cpu_to_le16((u16)(f->vlan ==
1734 I40E_VLAN_ANY ? 0 : f->vlan));
1735
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001736 cmd_flags |= I40E_AQC_MACVLAN_DEL_PERFECT_MATCH;
1737 del_list[num_del].flags = cmd_flags;
1738 num_del++;
1739
1740 /* unlink from filter list */
1741 list_del(&f->list);
1742 kfree(f);
1743
1744 /* flush a full buffer */
1745 if (num_del == filter_list_len) {
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001746 aq_ret = i40e_aq_remove_macvlan(&pf->hw,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001747 vsi->seid, del_list, num_del,
1748 NULL);
1749 num_del = 0;
1750 memset(del_list, 0, sizeof(*del_list));
1751
Shannon Nelsonfdfe9cb2014-05-20 08:01:39 +00001752 if (aq_ret &&
1753 pf->hw.aq.asq_last_status !=
1754 I40E_AQ_RC_ENOENT)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001755 dev_info(&pf->pdev->dev,
1756 "ignoring delete macvlan error, err %d, aq_err %d while flushing a full buffer\n",
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001757 aq_ret,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001758 pf->hw.aq.asq_last_status);
1759 }
1760 }
1761 if (num_del) {
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001762 aq_ret = i40e_aq_remove_macvlan(&pf->hw, vsi->seid,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001763 del_list, num_del, NULL);
1764 num_del = 0;
1765
Shannon Nelsonfdfe9cb2014-05-20 08:01:39 +00001766 if (aq_ret &&
1767 pf->hw.aq.asq_last_status != I40E_AQ_RC_ENOENT)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001768 dev_info(&pf->pdev->dev,
1769 "ignoring delete macvlan error, err %d, aq_err %d\n",
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001770 aq_ret, pf->hw.aq.asq_last_status);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001771 }
1772
1773 kfree(del_list);
1774 del_list = NULL;
1775
1776 /* do all the adds now */
1777 filter_list_len = pf->hw.aq.asq_buf_size /
1778 sizeof(struct i40e_aqc_add_macvlan_element_data),
1779 add_list = kcalloc(filter_list_len,
1780 sizeof(struct i40e_aqc_add_macvlan_element_data),
1781 GFP_KERNEL);
1782 if (!add_list)
1783 return -ENOMEM;
1784
1785 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
1786 if (!f->changed)
1787 continue;
1788
1789 if (f->counter == 0)
1790 continue;
1791 f->changed = false;
1792 add_happened = true;
1793 cmd_flags = 0;
1794
1795 /* add to add array */
Greg Rose9a173902014-05-22 06:32:02 +00001796 ether_addr_copy(add_list[num_add].mac_addr, f->macaddr);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001797 add_list[num_add].vlan_tag =
1798 cpu_to_le16(
1799 (u16)(f->vlan == I40E_VLAN_ANY ? 0 : f->vlan));
1800 add_list[num_add].queue_number = 0;
1801
1802 cmd_flags |= I40E_AQC_MACVLAN_ADD_PERFECT_MATCH;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001803 add_list[num_add].flags = cpu_to_le16(cmd_flags);
1804 num_add++;
1805
1806 /* flush a full buffer */
1807 if (num_add == filter_list_len) {
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001808 aq_ret = i40e_aq_add_macvlan(&pf->hw, vsi->seid,
1809 add_list, num_add,
1810 NULL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001811 num_add = 0;
1812
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001813 if (aq_ret)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001814 break;
1815 memset(add_list, 0, sizeof(*add_list));
1816 }
1817 }
1818 if (num_add) {
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001819 aq_ret = i40e_aq_add_macvlan(&pf->hw, vsi->seid,
1820 add_list, num_add, NULL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001821 num_add = 0;
1822 }
1823 kfree(add_list);
1824 add_list = NULL;
1825
Shannon Nelson30650cc2014-07-29 04:01:50 +00001826 if (add_happened && aq_ret &&
1827 pf->hw.aq.asq_last_status != I40E_AQ_RC_EINVAL) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001828 dev_info(&pf->pdev->dev,
1829 "add filter failed, err %d, aq_err %d\n",
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001830 aq_ret, pf->hw.aq.asq_last_status);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001831 if ((pf->hw.aq.asq_last_status == I40E_AQ_RC_ENOSPC) &&
1832 !test_bit(__I40E_FILTER_OVERFLOW_PROMISC,
1833 &vsi->state)) {
1834 promisc_forced_on = true;
1835 set_bit(__I40E_FILTER_OVERFLOW_PROMISC,
1836 &vsi->state);
1837 dev_info(&pf->pdev->dev, "promiscuous mode forced on\n");
1838 }
1839 }
1840 }
1841
1842 /* check for changes in promiscuous modes */
1843 if (changed_flags & IFF_ALLMULTI) {
1844 bool cur_multipromisc;
1845 cur_multipromisc = !!(vsi->current_netdev_flags & IFF_ALLMULTI);
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001846 aq_ret = i40e_aq_set_vsi_multicast_promiscuous(&vsi->back->hw,
1847 vsi->seid,
1848 cur_multipromisc,
1849 NULL);
1850 if (aq_ret)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001851 dev_info(&pf->pdev->dev,
1852 "set multi promisc failed, err %d, aq_err %d\n",
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001853 aq_ret, pf->hw.aq.asq_last_status);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001854 }
1855 if ((changed_flags & IFF_PROMISC) || promisc_forced_on) {
1856 bool cur_promisc;
1857 cur_promisc = (!!(vsi->current_netdev_flags & IFF_PROMISC) ||
1858 test_bit(__I40E_FILTER_OVERFLOW_PROMISC,
1859 &vsi->state));
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001860 aq_ret = i40e_aq_set_vsi_unicast_promiscuous(&vsi->back->hw,
1861 vsi->seid,
1862 cur_promisc, NULL);
1863 if (aq_ret)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001864 dev_info(&pf->pdev->dev,
1865 "set uni promisc failed, err %d, aq_err %d\n",
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001866 aq_ret, pf->hw.aq.asq_last_status);
Greg Rose1a103702013-11-28 06:42:39 +00001867 aq_ret = i40e_aq_set_vsi_broadcast(&vsi->back->hw,
1868 vsi->seid,
1869 cur_promisc, NULL);
1870 if (aq_ret)
1871 dev_info(&pf->pdev->dev,
1872 "set brdcast promisc failed, err %d, aq_err %d\n",
1873 aq_ret, pf->hw.aq.asq_last_status);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001874 }
1875
1876 clear_bit(__I40E_CONFIG_BUSY, &vsi->state);
1877 return 0;
1878}
1879
1880/**
1881 * i40e_sync_filters_subtask - Sync the VSI filter list with HW
1882 * @pf: board private structure
1883 **/
1884static void i40e_sync_filters_subtask(struct i40e_pf *pf)
1885{
1886 int v;
1887
1888 if (!pf || !(pf->flags & I40E_FLAG_FILTER_SYNC))
1889 return;
1890 pf->flags &= ~I40E_FLAG_FILTER_SYNC;
1891
Mitch Williams505682c2014-05-20 08:01:37 +00001892 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001893 if (pf->vsi[v] &&
1894 (pf->vsi[v]->flags & I40E_VSI_FLAG_FILTER_CHANGED))
1895 i40e_sync_vsi_filters(pf->vsi[v]);
1896 }
1897}
1898
1899/**
1900 * i40e_change_mtu - NDO callback to change the Maximum Transfer Unit
1901 * @netdev: network interface device structure
1902 * @new_mtu: new value for maximum frame size
1903 *
1904 * Returns 0 on success, negative on failure
1905 **/
1906static int i40e_change_mtu(struct net_device *netdev, int new_mtu)
1907{
1908 struct i40e_netdev_priv *np = netdev_priv(netdev);
Jesse Brandeburg61a46a42014-04-23 04:50:05 +00001909 int max_frame = new_mtu + ETH_HLEN + ETH_FCS_LEN + VLAN_HLEN;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001910 struct i40e_vsi *vsi = np->vsi;
1911
1912 /* MTU < 68 is an error and causes problems on some kernels */
1913 if ((new_mtu < 68) || (max_frame > I40E_MAX_RXBUFFER))
1914 return -EINVAL;
1915
1916 netdev_info(netdev, "changing MTU from %d to %d\n",
1917 netdev->mtu, new_mtu);
1918 netdev->mtu = new_mtu;
1919 if (netif_running(netdev))
1920 i40e_vsi_reinit_locked(vsi);
1921
1922 return 0;
1923}
1924
1925/**
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00001926 * i40e_ioctl - Access the hwtstamp interface
1927 * @netdev: network interface device structure
1928 * @ifr: interface request data
1929 * @cmd: ioctl command
1930 **/
1931int i40e_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd)
1932{
1933 struct i40e_netdev_priv *np = netdev_priv(netdev);
1934 struct i40e_pf *pf = np->vsi->back;
1935
1936 switch (cmd) {
1937 case SIOCGHWTSTAMP:
1938 return i40e_ptp_get_ts_config(pf, ifr);
1939 case SIOCSHWTSTAMP:
1940 return i40e_ptp_set_ts_config(pf, ifr);
1941 default:
1942 return -EOPNOTSUPP;
1943 }
1944}
1945
1946/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001947 * i40e_vlan_stripping_enable - Turn on vlan stripping for the VSI
1948 * @vsi: the vsi being adjusted
1949 **/
1950void i40e_vlan_stripping_enable(struct i40e_vsi *vsi)
1951{
1952 struct i40e_vsi_context ctxt;
1953 i40e_status ret;
1954
1955 if ((vsi->info.valid_sections &
1956 cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID)) &&
1957 ((vsi->info.port_vlan_flags & I40E_AQ_VSI_PVLAN_MODE_MASK) == 0))
1958 return; /* already enabled */
1959
1960 vsi->info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
1961 vsi->info.port_vlan_flags = I40E_AQ_VSI_PVLAN_MODE_ALL |
1962 I40E_AQ_VSI_PVLAN_EMOD_STR_BOTH;
1963
1964 ctxt.seid = vsi->seid;
1965 memcpy(&ctxt.info, &vsi->info, sizeof(vsi->info));
1966 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
1967 if (ret) {
1968 dev_info(&vsi->back->pdev->dev,
1969 "%s: update vsi failed, aq_err=%d\n",
1970 __func__, vsi->back->hw.aq.asq_last_status);
1971 }
1972}
1973
1974/**
1975 * i40e_vlan_stripping_disable - Turn off vlan stripping for the VSI
1976 * @vsi: the vsi being adjusted
1977 **/
1978void i40e_vlan_stripping_disable(struct i40e_vsi *vsi)
1979{
1980 struct i40e_vsi_context ctxt;
1981 i40e_status ret;
1982
1983 if ((vsi->info.valid_sections &
1984 cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID)) &&
1985 ((vsi->info.port_vlan_flags & I40E_AQ_VSI_PVLAN_EMOD_MASK) ==
1986 I40E_AQ_VSI_PVLAN_EMOD_MASK))
1987 return; /* already disabled */
1988
1989 vsi->info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
1990 vsi->info.port_vlan_flags = I40E_AQ_VSI_PVLAN_MODE_ALL |
1991 I40E_AQ_VSI_PVLAN_EMOD_NOTHING;
1992
1993 ctxt.seid = vsi->seid;
1994 memcpy(&ctxt.info, &vsi->info, sizeof(vsi->info));
1995 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
1996 if (ret) {
1997 dev_info(&vsi->back->pdev->dev,
1998 "%s: update vsi failed, aq_err=%d\n",
1999 __func__, vsi->back->hw.aq.asq_last_status);
2000 }
2001}
2002
2003/**
2004 * i40e_vlan_rx_register - Setup or shutdown vlan offload
2005 * @netdev: network interface to be adjusted
2006 * @features: netdev features to test if VLAN offload is enabled or not
2007 **/
2008static void i40e_vlan_rx_register(struct net_device *netdev, u32 features)
2009{
2010 struct i40e_netdev_priv *np = netdev_priv(netdev);
2011 struct i40e_vsi *vsi = np->vsi;
2012
2013 if (features & NETIF_F_HW_VLAN_CTAG_RX)
2014 i40e_vlan_stripping_enable(vsi);
2015 else
2016 i40e_vlan_stripping_disable(vsi);
2017}
2018
2019/**
2020 * i40e_vsi_add_vlan - Add vsi membership for given vlan
2021 * @vsi: the vsi being configured
2022 * @vid: vlan id to be added (0 = untagged only , -1 = any)
2023 **/
2024int i40e_vsi_add_vlan(struct i40e_vsi *vsi, s16 vid)
2025{
2026 struct i40e_mac_filter *f, *add_f;
2027 bool is_netdev, is_vf;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002028
2029 is_vf = (vsi->type == I40E_VSI_SRIOV);
2030 is_netdev = !!(vsi->netdev);
2031
2032 if (is_netdev) {
2033 add_f = i40e_add_filter(vsi, vsi->netdev->dev_addr, vid,
2034 is_vf, is_netdev);
2035 if (!add_f) {
2036 dev_info(&vsi->back->pdev->dev,
2037 "Could not add vlan filter %d for %pM\n",
2038 vid, vsi->netdev->dev_addr);
2039 return -ENOMEM;
2040 }
2041 }
2042
2043 list_for_each_entry(f, &vsi->mac_filter_list, list) {
2044 add_f = i40e_add_filter(vsi, f->macaddr, vid, is_vf, is_netdev);
2045 if (!add_f) {
2046 dev_info(&vsi->back->pdev->dev,
2047 "Could not add vlan filter %d for %pM\n",
2048 vid, f->macaddr);
2049 return -ENOMEM;
2050 }
2051 }
2052
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002053 /* Now if we add a vlan tag, make sure to check if it is the first
2054 * tag (i.e. a "tag" -1 does exist) and if so replace the -1 "tag"
2055 * with 0, so we now accept untagged and specified tagged traffic
2056 * (and not any taged and untagged)
2057 */
2058 if (vid > 0) {
2059 if (is_netdev && i40e_find_filter(vsi, vsi->netdev->dev_addr,
2060 I40E_VLAN_ANY,
2061 is_vf, is_netdev)) {
2062 i40e_del_filter(vsi, vsi->netdev->dev_addr,
2063 I40E_VLAN_ANY, is_vf, is_netdev);
2064 add_f = i40e_add_filter(vsi, vsi->netdev->dev_addr, 0,
2065 is_vf, is_netdev);
2066 if (!add_f) {
2067 dev_info(&vsi->back->pdev->dev,
2068 "Could not add filter 0 for %pM\n",
2069 vsi->netdev->dev_addr);
2070 return -ENOMEM;
2071 }
2072 }
Greg Rose8d82a7c2014-01-13 16:13:04 -08002073 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002074
Greg Rose8d82a7c2014-01-13 16:13:04 -08002075 /* Do not assume that I40E_VLAN_ANY should be reset to VLAN 0 */
2076 if (vid > 0 && !vsi->info.pvid) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002077 list_for_each_entry(f, &vsi->mac_filter_list, list) {
2078 if (i40e_find_filter(vsi, f->macaddr, I40E_VLAN_ANY,
2079 is_vf, is_netdev)) {
2080 i40e_del_filter(vsi, f->macaddr, I40E_VLAN_ANY,
2081 is_vf, is_netdev);
2082 add_f = i40e_add_filter(vsi, f->macaddr,
2083 0, is_vf, is_netdev);
2084 if (!add_f) {
2085 dev_info(&vsi->back->pdev->dev,
2086 "Could not add filter 0 for %pM\n",
2087 f->macaddr);
2088 return -ENOMEM;
2089 }
2090 }
2091 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002092 }
2093
Anjali Singhai Jain80f64282013-11-28 06:39:47 +00002094 if (test_bit(__I40E_DOWN, &vsi->back->state) ||
2095 test_bit(__I40E_RESET_RECOVERY_PENDING, &vsi->back->state))
2096 return 0;
2097
2098 return i40e_sync_vsi_filters(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002099}
2100
2101/**
2102 * i40e_vsi_kill_vlan - Remove vsi membership for given vlan
2103 * @vsi: the vsi being configured
2104 * @vid: vlan id to be removed (0 = untagged only , -1 = any)
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002105 *
2106 * Return: 0 on success or negative otherwise
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002107 **/
2108int i40e_vsi_kill_vlan(struct i40e_vsi *vsi, s16 vid)
2109{
2110 struct net_device *netdev = vsi->netdev;
2111 struct i40e_mac_filter *f, *add_f;
2112 bool is_vf, is_netdev;
2113 int filter_count = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002114
2115 is_vf = (vsi->type == I40E_VSI_SRIOV);
2116 is_netdev = !!(netdev);
2117
2118 if (is_netdev)
2119 i40e_del_filter(vsi, netdev->dev_addr, vid, is_vf, is_netdev);
2120
2121 list_for_each_entry(f, &vsi->mac_filter_list, list)
2122 i40e_del_filter(vsi, f->macaddr, vid, is_vf, is_netdev);
2123
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002124 /* go through all the filters for this VSI and if there is only
2125 * vid == 0 it means there are no other filters, so vid 0 must
2126 * be replaced with -1. This signifies that we should from now
2127 * on accept any traffic (with any tag present, or untagged)
2128 */
2129 list_for_each_entry(f, &vsi->mac_filter_list, list) {
2130 if (is_netdev) {
2131 if (f->vlan &&
2132 ether_addr_equal(netdev->dev_addr, f->macaddr))
2133 filter_count++;
2134 }
2135
2136 if (f->vlan)
2137 filter_count++;
2138 }
2139
2140 if (!filter_count && is_netdev) {
2141 i40e_del_filter(vsi, netdev->dev_addr, 0, is_vf, is_netdev);
2142 f = i40e_add_filter(vsi, netdev->dev_addr, I40E_VLAN_ANY,
2143 is_vf, is_netdev);
2144 if (!f) {
2145 dev_info(&vsi->back->pdev->dev,
2146 "Could not add filter %d for %pM\n",
2147 I40E_VLAN_ANY, netdev->dev_addr);
2148 return -ENOMEM;
2149 }
2150 }
2151
2152 if (!filter_count) {
2153 list_for_each_entry(f, &vsi->mac_filter_list, list) {
2154 i40e_del_filter(vsi, f->macaddr, 0, is_vf, is_netdev);
2155 add_f = i40e_add_filter(vsi, f->macaddr, I40E_VLAN_ANY,
2156 is_vf, is_netdev);
2157 if (!add_f) {
2158 dev_info(&vsi->back->pdev->dev,
2159 "Could not add filter %d for %pM\n",
2160 I40E_VLAN_ANY, f->macaddr);
2161 return -ENOMEM;
2162 }
2163 }
2164 }
2165
Anjali Singhai Jain80f64282013-11-28 06:39:47 +00002166 if (test_bit(__I40E_DOWN, &vsi->back->state) ||
2167 test_bit(__I40E_RESET_RECOVERY_PENDING, &vsi->back->state))
2168 return 0;
2169
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002170 return i40e_sync_vsi_filters(vsi);
2171}
2172
2173/**
2174 * i40e_vlan_rx_add_vid - Add a vlan id filter to HW offload
2175 * @netdev: network interface to be adjusted
2176 * @vid: vlan id to be added
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002177 *
2178 * net_device_ops implementation for adding vlan ids
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002179 **/
Vasu Dev38e00432014-08-01 13:27:03 -07002180#ifdef I40E_FCOE
2181int i40e_vlan_rx_add_vid(struct net_device *netdev,
2182 __always_unused __be16 proto, u16 vid)
2183#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002184static int i40e_vlan_rx_add_vid(struct net_device *netdev,
2185 __always_unused __be16 proto, u16 vid)
Vasu Dev38e00432014-08-01 13:27:03 -07002186#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002187{
2188 struct i40e_netdev_priv *np = netdev_priv(netdev);
2189 struct i40e_vsi *vsi = np->vsi;
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002190 int ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002191
2192 if (vid > 4095)
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002193 return -EINVAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002194
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002195 netdev_info(netdev, "adding %pM vid=%d\n", netdev->dev_addr, vid);
2196
Anjali Singhai Jain6982d422014-02-06 05:51:10 +00002197 /* If the network stack called us with vid = 0 then
2198 * it is asking to receive priority tagged packets with
2199 * vlan id 0. Our HW receives them by default when configured
2200 * to receive untagged packets so there is no need to add an
2201 * extra filter for vlan 0 tagged packets.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002202 */
Anjali Singhai Jain6982d422014-02-06 05:51:10 +00002203 if (vid)
2204 ret = i40e_vsi_add_vlan(vsi, vid);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002205
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002206 if (!ret && (vid < VLAN_N_VID))
2207 set_bit(vid, vsi->active_vlans);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002208
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002209 return ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002210}
2211
2212/**
2213 * i40e_vlan_rx_kill_vid - Remove a vlan id filter from HW offload
2214 * @netdev: network interface to be adjusted
2215 * @vid: vlan id to be removed
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002216 *
Akeem G Abodunrinfdfd9432014-02-11 08:24:15 +00002217 * net_device_ops implementation for removing vlan ids
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002218 **/
Vasu Dev38e00432014-08-01 13:27:03 -07002219#ifdef I40E_FCOE
2220int i40e_vlan_rx_kill_vid(struct net_device *netdev,
2221 __always_unused __be16 proto, u16 vid)
2222#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002223static int i40e_vlan_rx_kill_vid(struct net_device *netdev,
2224 __always_unused __be16 proto, u16 vid)
Vasu Dev38e00432014-08-01 13:27:03 -07002225#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002226{
2227 struct i40e_netdev_priv *np = netdev_priv(netdev);
2228 struct i40e_vsi *vsi = np->vsi;
2229
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002230 netdev_info(netdev, "removing %pM vid=%d\n", netdev->dev_addr, vid);
2231
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002232 /* return code is ignored as there is nothing a user
2233 * can do about failure to remove and a log message was
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002234 * already printed from the other function
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002235 */
2236 i40e_vsi_kill_vlan(vsi, vid);
2237
2238 clear_bit(vid, vsi->active_vlans);
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002239
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002240 return 0;
2241}
2242
2243/**
2244 * i40e_restore_vlan - Reinstate vlans when vsi/netdev comes back up
2245 * @vsi: the vsi being brought back up
2246 **/
2247static void i40e_restore_vlan(struct i40e_vsi *vsi)
2248{
2249 u16 vid;
2250
2251 if (!vsi->netdev)
2252 return;
2253
2254 i40e_vlan_rx_register(vsi->netdev, vsi->netdev->features);
2255
2256 for_each_set_bit(vid, vsi->active_vlans, VLAN_N_VID)
2257 i40e_vlan_rx_add_vid(vsi->netdev, htons(ETH_P_8021Q),
2258 vid);
2259}
2260
2261/**
2262 * i40e_vsi_add_pvid - Add pvid for the VSI
2263 * @vsi: the vsi being adjusted
2264 * @vid: the vlan id to set as a PVID
2265 **/
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00002266int i40e_vsi_add_pvid(struct i40e_vsi *vsi, u16 vid)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002267{
2268 struct i40e_vsi_context ctxt;
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00002269 i40e_status aq_ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002270
2271 vsi->info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
2272 vsi->info.pvid = cpu_to_le16(vid);
Greg Rose6c12fcb2013-11-28 06:39:34 +00002273 vsi->info.port_vlan_flags = I40E_AQ_VSI_PVLAN_MODE_TAGGED |
2274 I40E_AQ_VSI_PVLAN_INSERT_PVID |
Greg Roseb774c7d2013-11-28 06:39:44 +00002275 I40E_AQ_VSI_PVLAN_EMOD_STR;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002276
2277 ctxt.seid = vsi->seid;
2278 memcpy(&ctxt.info, &vsi->info, sizeof(vsi->info));
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00002279 aq_ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
2280 if (aq_ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002281 dev_info(&vsi->back->pdev->dev,
2282 "%s: update vsi failed, aq_err=%d\n",
2283 __func__, vsi->back->hw.aq.asq_last_status);
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00002284 return -ENOENT;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002285 }
2286
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00002287 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002288}
2289
2290/**
2291 * i40e_vsi_remove_pvid - Remove the pvid from the VSI
2292 * @vsi: the vsi being adjusted
2293 *
2294 * Just use the vlan_rx_register() service to put it back to normal
2295 **/
2296void i40e_vsi_remove_pvid(struct i40e_vsi *vsi)
2297{
Greg Rose6c12fcb2013-11-28 06:39:34 +00002298 i40e_vlan_stripping_disable(vsi);
2299
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002300 vsi->info.pvid = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002301}
2302
2303/**
2304 * i40e_vsi_setup_tx_resources - Allocate VSI Tx queue resources
2305 * @vsi: ptr to the VSI
2306 *
2307 * If this function returns with an error, then it's possible one or
2308 * more of the rings is populated (while the rest are not). It is the
2309 * callers duty to clean those orphaned rings.
2310 *
2311 * Return 0 on success, negative on failure
2312 **/
2313static int i40e_vsi_setup_tx_resources(struct i40e_vsi *vsi)
2314{
2315 int i, err = 0;
2316
2317 for (i = 0; i < vsi->num_queue_pairs && !err; i++)
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00002318 err = i40e_setup_tx_descriptors(vsi->tx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002319
2320 return err;
2321}
2322
2323/**
2324 * i40e_vsi_free_tx_resources - Free Tx resources for VSI queues
2325 * @vsi: ptr to the VSI
2326 *
2327 * Free VSI's transmit software resources
2328 **/
2329static void i40e_vsi_free_tx_resources(struct i40e_vsi *vsi)
2330{
2331 int i;
2332
Greg Rose8e9dca52013-12-18 13:45:53 +00002333 if (!vsi->tx_rings)
2334 return;
2335
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002336 for (i = 0; i < vsi->num_queue_pairs; i++)
Greg Rose8e9dca52013-12-18 13:45:53 +00002337 if (vsi->tx_rings[i] && vsi->tx_rings[i]->desc)
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00002338 i40e_free_tx_resources(vsi->tx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002339}
2340
2341/**
2342 * i40e_vsi_setup_rx_resources - Allocate VSI queues Rx resources
2343 * @vsi: ptr to the VSI
2344 *
2345 * If this function returns with an error, then it's possible one or
2346 * more of the rings is populated (while the rest are not). It is the
2347 * callers duty to clean those orphaned rings.
2348 *
2349 * Return 0 on success, negative on failure
2350 **/
2351static int i40e_vsi_setup_rx_resources(struct i40e_vsi *vsi)
2352{
2353 int i, err = 0;
2354
2355 for (i = 0; i < vsi->num_queue_pairs && !err; i++)
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00002356 err = i40e_setup_rx_descriptors(vsi->rx_rings[i]);
Vasu Dev38e00432014-08-01 13:27:03 -07002357#ifdef I40E_FCOE
2358 i40e_fcoe_setup_ddp_resources(vsi);
2359#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002360 return err;
2361}
2362
2363/**
2364 * i40e_vsi_free_rx_resources - Free Rx Resources for VSI queues
2365 * @vsi: ptr to the VSI
2366 *
2367 * Free all receive software resources
2368 **/
2369static void i40e_vsi_free_rx_resources(struct i40e_vsi *vsi)
2370{
2371 int i;
2372
Greg Rose8e9dca52013-12-18 13:45:53 +00002373 if (!vsi->rx_rings)
2374 return;
2375
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002376 for (i = 0; i < vsi->num_queue_pairs; i++)
Greg Rose8e9dca52013-12-18 13:45:53 +00002377 if (vsi->rx_rings[i] && vsi->rx_rings[i]->desc)
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00002378 i40e_free_rx_resources(vsi->rx_rings[i]);
Vasu Dev38e00432014-08-01 13:27:03 -07002379#ifdef I40E_FCOE
2380 i40e_fcoe_free_ddp_resources(vsi);
2381#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002382}
2383
2384/**
2385 * i40e_configure_tx_ring - Configure a transmit ring context and rest
2386 * @ring: The Tx ring to configure
2387 *
2388 * Configure the Tx descriptor ring in the HMC context.
2389 **/
2390static int i40e_configure_tx_ring(struct i40e_ring *ring)
2391{
2392 struct i40e_vsi *vsi = ring->vsi;
2393 u16 pf_q = vsi->base_queue + ring->queue_index;
2394 struct i40e_hw *hw = &vsi->back->hw;
2395 struct i40e_hmc_obj_txq tx_ctx;
2396 i40e_status err = 0;
2397 u32 qtx_ctl = 0;
2398
2399 /* some ATR related tx ring init */
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08002400 if (vsi->back->flags & I40E_FLAG_FD_ATR_ENABLED) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002401 ring->atr_sample_rate = vsi->back->atr_sample_rate;
2402 ring->atr_count = 0;
2403 } else {
2404 ring->atr_sample_rate = 0;
2405 }
2406
2407 /* initialize XPS */
2408 if (ring->q_vector && ring->netdev &&
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08002409 vsi->tc_config.numtc <= 1 &&
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002410 !test_and_set_bit(__I40E_TX_XPS_INIT_DONE, &ring->state))
2411 netif_set_xps_queue(ring->netdev,
2412 &ring->q_vector->affinity_mask,
2413 ring->queue_index);
2414
2415 /* clear the context structure first */
2416 memset(&tx_ctx, 0, sizeof(tx_ctx));
2417
2418 tx_ctx.new_context = 1;
2419 tx_ctx.base = (ring->dma / 128);
2420 tx_ctx.qlen = ring->count;
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08002421 tx_ctx.fd_ena = !!(vsi->back->flags & (I40E_FLAG_FD_SB_ENABLED |
2422 I40E_FLAG_FD_ATR_ENABLED));
Vasu Dev38e00432014-08-01 13:27:03 -07002423#ifdef I40E_FCOE
2424 tx_ctx.fc_ena = (vsi->type == I40E_VSI_FCOE);
2425#endif
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00002426 tx_ctx.timesync_ena = !!(vsi->back->flags & I40E_FLAG_PTP);
Jesse Brandeburg1943d8b2014-02-14 02:14:40 +00002427 /* FDIR VSI tx ring can still use RS bit and writebacks */
2428 if (vsi->type != I40E_VSI_FDIR)
2429 tx_ctx.head_wb_ena = 1;
2430 tx_ctx.head_wb_addr = ring->dma +
2431 (ring->count * sizeof(struct i40e_tx_desc));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002432
2433 /* As part of VSI creation/update, FW allocates certain
2434 * Tx arbitration queue sets for each TC enabled for
2435 * the VSI. The FW returns the handles to these queue
2436 * sets as part of the response buffer to Add VSI,
2437 * Update VSI, etc. AQ commands. It is expected that
2438 * these queue set handles be associated with the Tx
2439 * queues by the driver as part of the TX queue context
2440 * initialization. This has to be done regardless of
2441 * DCB as by default everything is mapped to TC0.
2442 */
2443 tx_ctx.rdylist = le16_to_cpu(vsi->info.qs_handle[ring->dcb_tc]);
2444 tx_ctx.rdylist_act = 0;
2445
2446 /* clear the context in the HMC */
2447 err = i40e_clear_lan_tx_queue_context(hw, pf_q);
2448 if (err) {
2449 dev_info(&vsi->back->pdev->dev,
2450 "Failed to clear LAN Tx queue context on Tx ring %d (pf_q %d), error: %d\n",
2451 ring->queue_index, pf_q, err);
2452 return -ENOMEM;
2453 }
2454
2455 /* set the context in the HMC */
2456 err = i40e_set_lan_tx_queue_context(hw, pf_q, &tx_ctx);
2457 if (err) {
2458 dev_info(&vsi->back->pdev->dev,
2459 "Failed to set LAN Tx queue context on Tx ring %d (pf_q %d, error: %d\n",
2460 ring->queue_index, pf_q, err);
2461 return -ENOMEM;
2462 }
2463
2464 /* Now associate this queue with this PCI function */
Shannon Nelson9d8bf542014-01-14 00:49:50 -08002465 if (vsi->type == I40E_VSI_VMDQ2)
2466 qtx_ctl = I40E_QTX_CTL_VM_QUEUE;
2467 else
2468 qtx_ctl = I40E_QTX_CTL_PF_QUEUE;
Shannon Nelson13fd9772013-09-28 07:14:19 +00002469 qtx_ctl |= ((hw->pf_id << I40E_QTX_CTL_PF_INDX_SHIFT) &
2470 I40E_QTX_CTL_PF_INDX_MASK);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002471 wr32(hw, I40E_QTX_CTL(pf_q), qtx_ctl);
2472 i40e_flush(hw);
2473
2474 clear_bit(__I40E_HANG_CHECK_ARMED, &ring->state);
2475
2476 /* cache tail off for easier writes later */
2477 ring->tail = hw->hw_addr + I40E_QTX_TAIL(pf_q);
2478
2479 return 0;
2480}
2481
2482/**
2483 * i40e_configure_rx_ring - Configure a receive ring context
2484 * @ring: The Rx ring to configure
2485 *
2486 * Configure the Rx descriptor ring in the HMC context.
2487 **/
2488static int i40e_configure_rx_ring(struct i40e_ring *ring)
2489{
2490 struct i40e_vsi *vsi = ring->vsi;
2491 u32 chain_len = vsi->back->hw.func_caps.rx_buf_chain_len;
2492 u16 pf_q = vsi->base_queue + ring->queue_index;
2493 struct i40e_hw *hw = &vsi->back->hw;
2494 struct i40e_hmc_obj_rxq rx_ctx;
2495 i40e_status err = 0;
2496
2497 ring->state = 0;
2498
2499 /* clear the context structure first */
2500 memset(&rx_ctx, 0, sizeof(rx_ctx));
2501
2502 ring->rx_buf_len = vsi->rx_buf_len;
2503 ring->rx_hdr_len = vsi->rx_hdr_len;
2504
2505 rx_ctx.dbuff = ring->rx_buf_len >> I40E_RXQ_CTX_DBUFF_SHIFT;
2506 rx_ctx.hbuff = ring->rx_hdr_len >> I40E_RXQ_CTX_HBUFF_SHIFT;
2507
2508 rx_ctx.base = (ring->dma / 128);
2509 rx_ctx.qlen = ring->count;
2510
2511 if (vsi->back->flags & I40E_FLAG_16BYTE_RX_DESC_ENABLED) {
2512 set_ring_16byte_desc_enabled(ring);
2513 rx_ctx.dsize = 0;
2514 } else {
2515 rx_ctx.dsize = 1;
2516 }
2517
2518 rx_ctx.dtype = vsi->dtype;
2519 if (vsi->dtype) {
2520 set_ring_ps_enabled(ring);
2521 rx_ctx.hsplit_0 = I40E_RX_SPLIT_L2 |
2522 I40E_RX_SPLIT_IP |
2523 I40E_RX_SPLIT_TCP_UDP |
2524 I40E_RX_SPLIT_SCTP;
2525 } else {
2526 rx_ctx.hsplit_0 = 0;
2527 }
2528
2529 rx_ctx.rxmax = min_t(u16, vsi->max_frame,
2530 (chain_len * ring->rx_buf_len));
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00002531 if (hw->revision_id == 0)
2532 rx_ctx.lrxqthresh = 0;
2533 else
2534 rx_ctx.lrxqthresh = 2;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002535 rx_ctx.crcstrip = 1;
2536 rx_ctx.l2tsel = 1;
2537 rx_ctx.showiv = 1;
Vasu Dev38e00432014-08-01 13:27:03 -07002538#ifdef I40E_FCOE
2539 rx_ctx.fc_ena = (vsi->type == I40E_VSI_FCOE);
2540#endif
Catherine Sullivanacb36762014-03-06 09:02:30 +00002541 /* set the prefena field to 1 because the manual says to */
2542 rx_ctx.prefena = 1;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002543
2544 /* clear the context in the HMC */
2545 err = i40e_clear_lan_rx_queue_context(hw, pf_q);
2546 if (err) {
2547 dev_info(&vsi->back->pdev->dev,
2548 "Failed to clear LAN Rx queue context on Rx ring %d (pf_q %d), error: %d\n",
2549 ring->queue_index, pf_q, err);
2550 return -ENOMEM;
2551 }
2552
2553 /* set the context in the HMC */
2554 err = i40e_set_lan_rx_queue_context(hw, pf_q, &rx_ctx);
2555 if (err) {
2556 dev_info(&vsi->back->pdev->dev,
2557 "Failed to set LAN Rx queue context on Rx ring %d (pf_q %d), error: %d\n",
2558 ring->queue_index, pf_q, err);
2559 return -ENOMEM;
2560 }
2561
2562 /* cache tail for quicker writes, and clear the reg before use */
2563 ring->tail = hw->hw_addr + I40E_QRX_TAIL(pf_q);
2564 writel(0, ring->tail);
2565
2566 i40e_alloc_rx_buffers(ring, I40E_DESC_UNUSED(ring));
2567
2568 return 0;
2569}
2570
2571/**
2572 * i40e_vsi_configure_tx - Configure the VSI for Tx
2573 * @vsi: VSI structure describing this set of rings and resources
2574 *
2575 * Configure the Tx VSI for operation.
2576 **/
2577static int i40e_vsi_configure_tx(struct i40e_vsi *vsi)
2578{
2579 int err = 0;
2580 u16 i;
2581
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00002582 for (i = 0; (i < vsi->num_queue_pairs) && !err; i++)
2583 err = i40e_configure_tx_ring(vsi->tx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002584
2585 return err;
2586}
2587
2588/**
2589 * i40e_vsi_configure_rx - Configure the VSI for Rx
2590 * @vsi: the VSI being configured
2591 *
2592 * Configure the Rx VSI for operation.
2593 **/
2594static int i40e_vsi_configure_rx(struct i40e_vsi *vsi)
2595{
2596 int err = 0;
2597 u16 i;
2598
2599 if (vsi->netdev && (vsi->netdev->mtu > ETH_DATA_LEN))
2600 vsi->max_frame = vsi->netdev->mtu + ETH_HLEN
2601 + ETH_FCS_LEN + VLAN_HLEN;
2602 else
2603 vsi->max_frame = I40E_RXBUFFER_2048;
2604
2605 /* figure out correct receive buffer length */
2606 switch (vsi->back->flags & (I40E_FLAG_RX_1BUF_ENABLED |
2607 I40E_FLAG_RX_PS_ENABLED)) {
2608 case I40E_FLAG_RX_1BUF_ENABLED:
2609 vsi->rx_hdr_len = 0;
2610 vsi->rx_buf_len = vsi->max_frame;
2611 vsi->dtype = I40E_RX_DTYPE_NO_SPLIT;
2612 break;
2613 case I40E_FLAG_RX_PS_ENABLED:
2614 vsi->rx_hdr_len = I40E_RX_HDR_SIZE;
2615 vsi->rx_buf_len = I40E_RXBUFFER_2048;
2616 vsi->dtype = I40E_RX_DTYPE_HEADER_SPLIT;
2617 break;
2618 default:
2619 vsi->rx_hdr_len = I40E_RX_HDR_SIZE;
2620 vsi->rx_buf_len = I40E_RXBUFFER_2048;
2621 vsi->dtype = I40E_RX_DTYPE_SPLIT_ALWAYS;
2622 break;
2623 }
2624
Vasu Dev38e00432014-08-01 13:27:03 -07002625#ifdef I40E_FCOE
2626 /* setup rx buffer for FCoE */
2627 if ((vsi->type == I40E_VSI_FCOE) &&
2628 (vsi->back->flags & I40E_FLAG_FCOE_ENABLED)) {
2629 vsi->rx_hdr_len = 0;
2630 vsi->rx_buf_len = I40E_RXBUFFER_3072;
2631 vsi->max_frame = I40E_RXBUFFER_3072;
2632 vsi->dtype = I40E_RX_DTYPE_NO_SPLIT;
2633 }
2634
2635#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002636 /* round up for the chip's needs */
2637 vsi->rx_hdr_len = ALIGN(vsi->rx_hdr_len,
2638 (1 << I40E_RXQ_CTX_HBUFF_SHIFT));
2639 vsi->rx_buf_len = ALIGN(vsi->rx_buf_len,
2640 (1 << I40E_RXQ_CTX_DBUFF_SHIFT));
2641
2642 /* set up individual rings */
2643 for (i = 0; i < vsi->num_queue_pairs && !err; i++)
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00002644 err = i40e_configure_rx_ring(vsi->rx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002645
2646 return err;
2647}
2648
2649/**
2650 * i40e_vsi_config_dcb_rings - Update rings to reflect DCB TC
2651 * @vsi: ptr to the VSI
2652 **/
2653static void i40e_vsi_config_dcb_rings(struct i40e_vsi *vsi)
2654{
Akeem G Abodunrine7046ee2014-04-09 05:58:58 +00002655 struct i40e_ring *tx_ring, *rx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002656 u16 qoffset, qcount;
2657 int i, n;
2658
2659 if (!(vsi->back->flags & I40E_FLAG_DCB_ENABLED))
2660 return;
2661
2662 for (n = 0; n < I40E_MAX_TRAFFIC_CLASS; n++) {
2663 if (!(vsi->tc_config.enabled_tc & (1 << n)))
2664 continue;
2665
2666 qoffset = vsi->tc_config.tc_info[n].qoffset;
2667 qcount = vsi->tc_config.tc_info[n].qcount;
2668 for (i = qoffset; i < (qoffset + qcount); i++) {
Akeem G Abodunrine7046ee2014-04-09 05:58:58 +00002669 rx_ring = vsi->rx_rings[i];
2670 tx_ring = vsi->tx_rings[i];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002671 rx_ring->dcb_tc = n;
2672 tx_ring->dcb_tc = n;
2673 }
2674 }
2675}
2676
2677/**
2678 * i40e_set_vsi_rx_mode - Call set_rx_mode on a VSI
2679 * @vsi: ptr to the VSI
2680 **/
2681static void i40e_set_vsi_rx_mode(struct i40e_vsi *vsi)
2682{
2683 if (vsi->netdev)
2684 i40e_set_rx_mode(vsi->netdev);
2685}
2686
2687/**
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002688 * i40e_fdir_filter_restore - Restore the Sideband Flow Director filters
2689 * @vsi: Pointer to the targeted VSI
2690 *
2691 * This function replays the hlist on the hw where all the SB Flow Director
2692 * filters were saved.
2693 **/
2694static void i40e_fdir_filter_restore(struct i40e_vsi *vsi)
2695{
2696 struct i40e_fdir_filter *filter;
2697 struct i40e_pf *pf = vsi->back;
2698 struct hlist_node *node;
2699
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00002700 if (!(pf->flags & I40E_FLAG_FD_SB_ENABLED))
2701 return;
2702
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002703 hlist_for_each_entry_safe(filter, node,
2704 &pf->fdir_filter_list, fdir_node) {
2705 i40e_add_del_fdir(vsi, filter, true);
2706 }
2707}
2708
2709/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002710 * i40e_vsi_configure - Set up the VSI for action
2711 * @vsi: the VSI being configured
2712 **/
2713static int i40e_vsi_configure(struct i40e_vsi *vsi)
2714{
2715 int err;
2716
2717 i40e_set_vsi_rx_mode(vsi);
2718 i40e_restore_vlan(vsi);
2719 i40e_vsi_config_dcb_rings(vsi);
2720 err = i40e_vsi_configure_tx(vsi);
2721 if (!err)
2722 err = i40e_vsi_configure_rx(vsi);
2723
2724 return err;
2725}
2726
2727/**
2728 * i40e_vsi_configure_msix - MSIX mode Interrupt Config in the HW
2729 * @vsi: the VSI being configured
2730 **/
2731static void i40e_vsi_configure_msix(struct i40e_vsi *vsi)
2732{
2733 struct i40e_pf *pf = vsi->back;
2734 struct i40e_q_vector *q_vector;
2735 struct i40e_hw *hw = &pf->hw;
2736 u16 vector;
2737 int i, q;
2738 u32 val;
2739 u32 qp;
2740
2741 /* The interrupt indexing is offset by 1 in the PFINT_ITRn
2742 * and PFINT_LNKLSTn registers, e.g.:
2743 * PFINT_ITRn[0..n-1] gets msix-1..msix-n (qpair interrupts)
2744 */
2745 qp = vsi->base_queue;
2746 vector = vsi->base_vector;
Alexander Duyck493fb302013-09-28 07:01:44 +00002747 for (i = 0; i < vsi->num_q_vectors; i++, vector++) {
2748 q_vector = vsi->q_vectors[i];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002749 q_vector->rx.itr = ITR_TO_REG(vsi->rx_itr_setting);
2750 q_vector->rx.latency_range = I40E_LOW_LATENCY;
2751 wr32(hw, I40E_PFINT_ITRN(I40E_RX_ITR, vector - 1),
2752 q_vector->rx.itr);
2753 q_vector->tx.itr = ITR_TO_REG(vsi->tx_itr_setting);
2754 q_vector->tx.latency_range = I40E_LOW_LATENCY;
2755 wr32(hw, I40E_PFINT_ITRN(I40E_TX_ITR, vector - 1),
2756 q_vector->tx.itr);
2757
2758 /* Linked list for the queuepairs assigned to this vector */
2759 wr32(hw, I40E_PFINT_LNKLSTN(vector - 1), qp);
2760 for (q = 0; q < q_vector->num_ringpairs; q++) {
2761 val = I40E_QINT_RQCTL_CAUSE_ENA_MASK |
2762 (I40E_RX_ITR << I40E_QINT_RQCTL_ITR_INDX_SHIFT) |
2763 (vector << I40E_QINT_RQCTL_MSIX_INDX_SHIFT) |
2764 (qp << I40E_QINT_RQCTL_NEXTQ_INDX_SHIFT)|
2765 (I40E_QUEUE_TYPE_TX
2766 << I40E_QINT_RQCTL_NEXTQ_TYPE_SHIFT);
2767
2768 wr32(hw, I40E_QINT_RQCTL(qp), val);
2769
2770 val = I40E_QINT_TQCTL_CAUSE_ENA_MASK |
2771 (I40E_TX_ITR << I40E_QINT_TQCTL_ITR_INDX_SHIFT) |
2772 (vector << I40E_QINT_TQCTL_MSIX_INDX_SHIFT) |
2773 ((qp+1) << I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT)|
2774 (I40E_QUEUE_TYPE_RX
2775 << I40E_QINT_TQCTL_NEXTQ_TYPE_SHIFT);
2776
2777 /* Terminate the linked list */
2778 if (q == (q_vector->num_ringpairs - 1))
2779 val |= (I40E_QUEUE_END_OF_LIST
2780 << I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT);
2781
2782 wr32(hw, I40E_QINT_TQCTL(qp), val);
2783 qp++;
2784 }
2785 }
2786
2787 i40e_flush(hw);
2788}
2789
2790/**
2791 * i40e_enable_misc_int_causes - enable the non-queue interrupts
2792 * @hw: ptr to the hardware info
2793 **/
2794static void i40e_enable_misc_int_causes(struct i40e_hw *hw)
2795{
2796 u32 val;
2797
2798 /* clear things first */
2799 wr32(hw, I40E_PFINT_ICR0_ENA, 0); /* disable all */
2800 rd32(hw, I40E_PFINT_ICR0); /* read to clear */
2801
2802 val = I40E_PFINT_ICR0_ENA_ECC_ERR_MASK |
2803 I40E_PFINT_ICR0_ENA_MAL_DETECT_MASK |
2804 I40E_PFINT_ICR0_ENA_GRST_MASK |
2805 I40E_PFINT_ICR0_ENA_PCI_EXCEPTION_MASK |
2806 I40E_PFINT_ICR0_ENA_GPIO_MASK |
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00002807 I40E_PFINT_ICR0_ENA_TIMESYNC_MASK |
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002808 I40E_PFINT_ICR0_ENA_HMC_ERR_MASK |
2809 I40E_PFINT_ICR0_ENA_VFLR_MASK |
2810 I40E_PFINT_ICR0_ENA_ADMINQ_MASK;
2811
2812 wr32(hw, I40E_PFINT_ICR0_ENA, val);
2813
2814 /* SW_ITR_IDX = 0, but don't change INTENA */
Anjali Singhai Jain84ed40e2013-11-26 10:49:32 +00002815 wr32(hw, I40E_PFINT_DYN_CTL0, I40E_PFINT_DYN_CTL0_SW_ITR_INDX_MASK |
2816 I40E_PFINT_DYN_CTL0_INTENA_MSK_MASK);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002817
2818 /* OTHER_ITR_IDX = 0 */
2819 wr32(hw, I40E_PFINT_STAT_CTL0, 0);
2820}
2821
2822/**
2823 * i40e_configure_msi_and_legacy - Legacy mode interrupt config in the HW
2824 * @vsi: the VSI being configured
2825 **/
2826static void i40e_configure_msi_and_legacy(struct i40e_vsi *vsi)
2827{
Alexander Duyck493fb302013-09-28 07:01:44 +00002828 struct i40e_q_vector *q_vector = vsi->q_vectors[0];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002829 struct i40e_pf *pf = vsi->back;
2830 struct i40e_hw *hw = &pf->hw;
2831 u32 val;
2832
2833 /* set the ITR configuration */
2834 q_vector->rx.itr = ITR_TO_REG(vsi->rx_itr_setting);
2835 q_vector->rx.latency_range = I40E_LOW_LATENCY;
2836 wr32(hw, I40E_PFINT_ITR0(I40E_RX_ITR), q_vector->rx.itr);
2837 q_vector->tx.itr = ITR_TO_REG(vsi->tx_itr_setting);
2838 q_vector->tx.latency_range = I40E_LOW_LATENCY;
2839 wr32(hw, I40E_PFINT_ITR0(I40E_TX_ITR), q_vector->tx.itr);
2840
2841 i40e_enable_misc_int_causes(hw);
2842
2843 /* FIRSTQ_INDX = 0, FIRSTQ_TYPE = 0 (rx) */
2844 wr32(hw, I40E_PFINT_LNKLST0, 0);
2845
Jesse Brandeburgf29eaa32014-02-11 08:24:12 +00002846 /* Associate the queue pair to the vector and enable the queue int */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002847 val = I40E_QINT_RQCTL_CAUSE_ENA_MASK |
2848 (I40E_RX_ITR << I40E_QINT_RQCTL_ITR_INDX_SHIFT) |
2849 (I40E_QUEUE_TYPE_TX << I40E_QINT_TQCTL_NEXTQ_TYPE_SHIFT);
2850
2851 wr32(hw, I40E_QINT_RQCTL(0), val);
2852
2853 val = I40E_QINT_TQCTL_CAUSE_ENA_MASK |
2854 (I40E_TX_ITR << I40E_QINT_TQCTL_ITR_INDX_SHIFT) |
2855 (I40E_QUEUE_END_OF_LIST << I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT);
2856
2857 wr32(hw, I40E_QINT_TQCTL(0), val);
2858 i40e_flush(hw);
2859}
2860
2861/**
Mitch Williams2ef28cf2013-11-28 06:39:32 +00002862 * i40e_irq_dynamic_disable_icr0 - Disable default interrupt generation for icr0
2863 * @pf: board private structure
2864 **/
2865void i40e_irq_dynamic_disable_icr0(struct i40e_pf *pf)
2866{
2867 struct i40e_hw *hw = &pf->hw;
2868
2869 wr32(hw, I40E_PFINT_DYN_CTL0,
2870 I40E_ITR_NONE << I40E_PFINT_DYN_CTLN_ITR_INDX_SHIFT);
2871 i40e_flush(hw);
2872}
2873
2874/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002875 * i40e_irq_dynamic_enable_icr0 - Enable default interrupt generation for icr0
2876 * @pf: board private structure
2877 **/
Shannon Nelson116a57d2013-09-28 07:13:59 +00002878void i40e_irq_dynamic_enable_icr0(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002879{
2880 struct i40e_hw *hw = &pf->hw;
2881 u32 val;
2882
2883 val = I40E_PFINT_DYN_CTL0_INTENA_MASK |
2884 I40E_PFINT_DYN_CTL0_CLEARPBA_MASK |
2885 (I40E_ITR_NONE << I40E_PFINT_DYN_CTL0_ITR_INDX_SHIFT);
2886
2887 wr32(hw, I40E_PFINT_DYN_CTL0, val);
2888 i40e_flush(hw);
2889}
2890
2891/**
2892 * i40e_irq_dynamic_enable - Enable default interrupt generation settings
2893 * @vsi: pointer to a vsi
2894 * @vector: enable a particular Hw Interrupt vector
2895 **/
2896void i40e_irq_dynamic_enable(struct i40e_vsi *vsi, int vector)
2897{
2898 struct i40e_pf *pf = vsi->back;
2899 struct i40e_hw *hw = &pf->hw;
2900 u32 val;
2901
2902 val = I40E_PFINT_DYN_CTLN_INTENA_MASK |
2903 I40E_PFINT_DYN_CTLN_CLEARPBA_MASK |
2904 (I40E_ITR_NONE << I40E_PFINT_DYN_CTLN_ITR_INDX_SHIFT);
2905 wr32(hw, I40E_PFINT_DYN_CTLN(vector - 1), val);
Jesse Brandeburg1022cb62013-09-28 07:13:08 +00002906 /* skip the flush */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002907}
2908
2909/**
Carolyn Wyborny5c2cebd2014-06-04 01:23:18 +00002910 * i40e_irq_dynamic_disable - Disable default interrupt generation settings
2911 * @vsi: pointer to a vsi
2912 * @vector: enable a particular Hw Interrupt vector
2913 **/
2914void i40e_irq_dynamic_disable(struct i40e_vsi *vsi, int vector)
2915{
2916 struct i40e_pf *pf = vsi->back;
2917 struct i40e_hw *hw = &pf->hw;
2918 u32 val;
2919
2920 val = I40E_ITR_NONE << I40E_PFINT_DYN_CTLN_ITR_INDX_SHIFT;
2921 wr32(hw, I40E_PFINT_DYN_CTLN(vector - 1), val);
2922 i40e_flush(hw);
2923}
2924
2925/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002926 * i40e_msix_clean_rings - MSIX mode Interrupt Handler
2927 * @irq: interrupt number
2928 * @data: pointer to a q_vector
2929 **/
2930static irqreturn_t i40e_msix_clean_rings(int irq, void *data)
2931{
2932 struct i40e_q_vector *q_vector = data;
2933
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00002934 if (!q_vector->tx.ring && !q_vector->rx.ring)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002935 return IRQ_HANDLED;
2936
2937 napi_schedule(&q_vector->napi);
2938
2939 return IRQ_HANDLED;
2940}
2941
2942/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002943 * i40e_vsi_request_irq_msix - Initialize MSI-X interrupts
2944 * @vsi: the VSI being configured
2945 * @basename: name for the vector
2946 *
2947 * Allocates MSI-X vectors and requests interrupts from the kernel.
2948 **/
2949static int i40e_vsi_request_irq_msix(struct i40e_vsi *vsi, char *basename)
2950{
2951 int q_vectors = vsi->num_q_vectors;
2952 struct i40e_pf *pf = vsi->back;
2953 int base = vsi->base_vector;
2954 int rx_int_idx = 0;
2955 int tx_int_idx = 0;
2956 int vector, err;
2957
2958 for (vector = 0; vector < q_vectors; vector++) {
Alexander Duyck493fb302013-09-28 07:01:44 +00002959 struct i40e_q_vector *q_vector = vsi->q_vectors[vector];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002960
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00002961 if (q_vector->tx.ring && q_vector->rx.ring) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002962 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
2963 "%s-%s-%d", basename, "TxRx", rx_int_idx++);
2964 tx_int_idx++;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00002965 } else if (q_vector->rx.ring) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002966 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
2967 "%s-%s-%d", basename, "rx", rx_int_idx++);
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00002968 } else if (q_vector->tx.ring) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002969 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
2970 "%s-%s-%d", basename, "tx", tx_int_idx++);
2971 } else {
2972 /* skip this unused q_vector */
2973 continue;
2974 }
2975 err = request_irq(pf->msix_entries[base + vector].vector,
2976 vsi->irq_handler,
2977 0,
2978 q_vector->name,
2979 q_vector);
2980 if (err) {
2981 dev_info(&pf->pdev->dev,
2982 "%s: request_irq failed, error: %d\n",
2983 __func__, err);
2984 goto free_queue_irqs;
2985 }
2986 /* assign the mask for this irq */
2987 irq_set_affinity_hint(pf->msix_entries[base + vector].vector,
2988 &q_vector->affinity_mask);
2989 }
2990
Shannon Nelson63741842014-04-23 04:50:16 +00002991 vsi->irqs_ready = true;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002992 return 0;
2993
2994free_queue_irqs:
2995 while (vector) {
2996 vector--;
2997 irq_set_affinity_hint(pf->msix_entries[base + vector].vector,
2998 NULL);
2999 free_irq(pf->msix_entries[base + vector].vector,
3000 &(vsi->q_vectors[vector]));
3001 }
3002 return err;
3003}
3004
3005/**
3006 * i40e_vsi_disable_irq - Mask off queue interrupt generation on the VSI
3007 * @vsi: the VSI being un-configured
3008 **/
3009static void i40e_vsi_disable_irq(struct i40e_vsi *vsi)
3010{
3011 struct i40e_pf *pf = vsi->back;
3012 struct i40e_hw *hw = &pf->hw;
3013 int base = vsi->base_vector;
3014 int i;
3015
3016 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00003017 wr32(hw, I40E_QINT_TQCTL(vsi->tx_rings[i]->reg_idx), 0);
3018 wr32(hw, I40E_QINT_RQCTL(vsi->rx_rings[i]->reg_idx), 0);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003019 }
3020
3021 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
3022 for (i = vsi->base_vector;
3023 i < (vsi->num_q_vectors + vsi->base_vector); i++)
3024 wr32(hw, I40E_PFINT_DYN_CTLN(i - 1), 0);
3025
3026 i40e_flush(hw);
3027 for (i = 0; i < vsi->num_q_vectors; i++)
3028 synchronize_irq(pf->msix_entries[i + base].vector);
3029 } else {
3030 /* Legacy and MSI mode - this stops all interrupt handling */
3031 wr32(hw, I40E_PFINT_ICR0_ENA, 0);
3032 wr32(hw, I40E_PFINT_DYN_CTL0, 0);
3033 i40e_flush(hw);
3034 synchronize_irq(pf->pdev->irq);
3035 }
3036}
3037
3038/**
3039 * i40e_vsi_enable_irq - Enable IRQ for the given VSI
3040 * @vsi: the VSI being configured
3041 **/
3042static int i40e_vsi_enable_irq(struct i40e_vsi *vsi)
3043{
3044 struct i40e_pf *pf = vsi->back;
3045 int i;
3046
3047 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
3048 for (i = vsi->base_vector;
3049 i < (vsi->num_q_vectors + vsi->base_vector); i++)
3050 i40e_irq_dynamic_enable(vsi, i);
3051 } else {
3052 i40e_irq_dynamic_enable_icr0(pf);
3053 }
3054
Jesse Brandeburg1022cb62013-09-28 07:13:08 +00003055 i40e_flush(&pf->hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003056 return 0;
3057}
3058
3059/**
3060 * i40e_stop_misc_vector - Stop the vector that handles non-queue events
3061 * @pf: board private structure
3062 **/
3063static void i40e_stop_misc_vector(struct i40e_pf *pf)
3064{
3065 /* Disable ICR 0 */
3066 wr32(&pf->hw, I40E_PFINT_ICR0_ENA, 0);
3067 i40e_flush(&pf->hw);
3068}
3069
3070/**
3071 * i40e_intr - MSI/Legacy and non-queue interrupt handler
3072 * @irq: interrupt number
3073 * @data: pointer to a q_vector
3074 *
3075 * This is the handler used for all MSI/Legacy interrupts, and deals
3076 * with both queue and non-queue interrupts. This is also used in
3077 * MSIX mode to handle the non-queue interrupts.
3078 **/
3079static irqreturn_t i40e_intr(int irq, void *data)
3080{
3081 struct i40e_pf *pf = (struct i40e_pf *)data;
3082 struct i40e_hw *hw = &pf->hw;
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003083 irqreturn_t ret = IRQ_NONE;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003084 u32 icr0, icr0_remaining;
3085 u32 val, ena_mask;
3086
3087 icr0 = rd32(hw, I40E_PFINT_ICR0);
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003088 ena_mask = rd32(hw, I40E_PFINT_ICR0_ENA);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003089
Shannon Nelson116a57d2013-09-28 07:13:59 +00003090 /* if sharing a legacy IRQ, we might get called w/o an intr pending */
3091 if ((icr0 & I40E_PFINT_ICR0_INTEVENT_MASK) == 0)
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003092 goto enable_intr;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003093
Shannon Nelsoncd92e722013-11-16 10:00:44 +00003094 /* if interrupt but no bits showing, must be SWINT */
3095 if (((icr0 & ~I40E_PFINT_ICR0_INTEVENT_MASK) == 0) ||
3096 (icr0 & I40E_PFINT_ICR0_SWINT_MASK))
3097 pf->sw_int_count++;
3098
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003099 /* only q0 is used in MSI/Legacy mode, and none are used in MSIX */
3100 if (icr0 & I40E_PFINT_ICR0_QUEUE_0_MASK) {
3101
3102 /* temporarily disable queue cause for NAPI processing */
3103 u32 qval = rd32(hw, I40E_QINT_RQCTL(0));
3104 qval &= ~I40E_QINT_RQCTL_CAUSE_ENA_MASK;
3105 wr32(hw, I40E_QINT_RQCTL(0), qval);
3106
3107 qval = rd32(hw, I40E_QINT_TQCTL(0));
3108 qval &= ~I40E_QINT_TQCTL_CAUSE_ENA_MASK;
3109 wr32(hw, I40E_QINT_TQCTL(0), qval);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003110
3111 if (!test_bit(__I40E_DOWN, &pf->state))
Alexander Duyck493fb302013-09-28 07:01:44 +00003112 napi_schedule(&pf->vsi[pf->lan_vsi]->q_vectors[0]->napi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003113 }
3114
3115 if (icr0 & I40E_PFINT_ICR0_ADMINQ_MASK) {
3116 ena_mask &= ~I40E_PFINT_ICR0_ENA_ADMINQ_MASK;
3117 set_bit(__I40E_ADMINQ_EVENT_PENDING, &pf->state);
3118 }
3119
3120 if (icr0 & I40E_PFINT_ICR0_MAL_DETECT_MASK) {
3121 ena_mask &= ~I40E_PFINT_ICR0_ENA_MAL_DETECT_MASK;
3122 set_bit(__I40E_MDD_EVENT_PENDING, &pf->state);
3123 }
3124
3125 if (icr0 & I40E_PFINT_ICR0_VFLR_MASK) {
3126 ena_mask &= ~I40E_PFINT_ICR0_ENA_VFLR_MASK;
3127 set_bit(__I40E_VFLR_EVENT_PENDING, &pf->state);
3128 }
3129
3130 if (icr0 & I40E_PFINT_ICR0_GRST_MASK) {
3131 if (!test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state))
3132 set_bit(__I40E_RESET_INTR_RECEIVED, &pf->state);
3133 ena_mask &= ~I40E_PFINT_ICR0_ENA_GRST_MASK;
3134 val = rd32(hw, I40E_GLGEN_RSTAT);
3135 val = (val & I40E_GLGEN_RSTAT_RESET_TYPE_MASK)
3136 >> I40E_GLGEN_RSTAT_RESET_TYPE_SHIFT;
Shannon Nelson4eb3f762014-03-06 08:59:58 +00003137 if (val == I40E_RESET_CORER) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003138 pf->corer_count++;
Shannon Nelson4eb3f762014-03-06 08:59:58 +00003139 } else if (val == I40E_RESET_GLOBR) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003140 pf->globr_count++;
Shannon Nelson4eb3f762014-03-06 08:59:58 +00003141 } else if (val == I40E_RESET_EMPR) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003142 pf->empr_count++;
Shannon Nelson4eb3f762014-03-06 08:59:58 +00003143 set_bit(__I40E_EMP_RESET_REQUESTED, &pf->state);
3144 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003145 }
3146
Anjali Singhai Jain9c010ee2013-11-28 06:39:20 +00003147 if (icr0 & I40E_PFINT_ICR0_HMC_ERR_MASK) {
3148 icr0 &= ~I40E_PFINT_ICR0_HMC_ERR_MASK;
3149 dev_info(&pf->pdev->dev, "HMC error interrupt\n");
3150 }
3151
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00003152 if (icr0 & I40E_PFINT_ICR0_TIMESYNC_MASK) {
3153 u32 prttsyn_stat = rd32(hw, I40E_PRTTSYN_STAT_0);
3154
3155 if (prttsyn_stat & I40E_PRTTSYN_STAT_0_TXTIME_MASK) {
Jacob Kellercafa1fc2014-04-24 18:05:03 -07003156 icr0 &= ~I40E_PFINT_ICR0_ENA_TIMESYNC_MASK;
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00003157 i40e_ptp_tx_hwtstamp(pf);
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00003158 }
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00003159 }
3160
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003161 /* If a critical error is pending we have no choice but to reset the
3162 * device.
3163 * Report and mask out any remaining unexpected interrupts.
3164 */
3165 icr0_remaining = icr0 & ena_mask;
3166 if (icr0_remaining) {
3167 dev_info(&pf->pdev->dev, "unhandled interrupt icr0=0x%08x\n",
3168 icr0_remaining);
Anjali Singhai Jain9c010ee2013-11-28 06:39:20 +00003169 if ((icr0_remaining & I40E_PFINT_ICR0_PE_CRITERR_MASK) ||
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003170 (icr0_remaining & I40E_PFINT_ICR0_PCI_EXCEPTION_MASK) ||
Anjali Singhai Jainc0c28972014-02-12 01:45:34 +00003171 (icr0_remaining & I40E_PFINT_ICR0_ECC_ERR_MASK)) {
Anjali Singhai Jain9c010ee2013-11-28 06:39:20 +00003172 dev_info(&pf->pdev->dev, "device will be reset\n");
3173 set_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
3174 i40e_service_event_schedule(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003175 }
3176 ena_mask &= ~icr0_remaining;
3177 }
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003178 ret = IRQ_HANDLED;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003179
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003180enable_intr:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003181 /* re-enable interrupt causes */
3182 wr32(hw, I40E_PFINT_ICR0_ENA, ena_mask);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003183 if (!test_bit(__I40E_DOWN, &pf->state)) {
3184 i40e_service_event_schedule(pf);
3185 i40e_irq_dynamic_enable_icr0(pf);
3186 }
3187
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003188 return ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003189}
3190
3191/**
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003192 * i40e_clean_fdir_tx_irq - Reclaim resources after transmit completes
3193 * @tx_ring: tx ring to clean
3194 * @budget: how many cleans we're allowed
3195 *
3196 * Returns true if there's any budget left (e.g. the clean is finished)
3197 **/
3198static bool i40e_clean_fdir_tx_irq(struct i40e_ring *tx_ring, int budget)
3199{
3200 struct i40e_vsi *vsi = tx_ring->vsi;
3201 u16 i = tx_ring->next_to_clean;
3202 struct i40e_tx_buffer *tx_buf;
3203 struct i40e_tx_desc *tx_desc;
3204
3205 tx_buf = &tx_ring->tx_bi[i];
3206 tx_desc = I40E_TX_DESC(tx_ring, i);
3207 i -= tx_ring->count;
3208
3209 do {
3210 struct i40e_tx_desc *eop_desc = tx_buf->next_to_watch;
3211
3212 /* if next_to_watch is not set then there is no work pending */
3213 if (!eop_desc)
3214 break;
3215
3216 /* prevent any other reads prior to eop_desc */
3217 read_barrier_depends();
3218
3219 /* if the descriptor isn't done, no work yet to do */
3220 if (!(eop_desc->cmd_type_offset_bsz &
3221 cpu_to_le64(I40E_TX_DESC_DTYPE_DESC_DONE)))
3222 break;
3223
3224 /* clear next_to_watch to prevent false hangs */
3225 tx_buf->next_to_watch = NULL;
3226
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003227 tx_desc->buffer_addr = 0;
3228 tx_desc->cmd_type_offset_bsz = 0;
3229 /* move past filter desc */
3230 tx_buf++;
3231 tx_desc++;
3232 i++;
3233 if (unlikely(!i)) {
3234 i -= tx_ring->count;
3235 tx_buf = tx_ring->tx_bi;
3236 tx_desc = I40E_TX_DESC(tx_ring, 0);
3237 }
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003238 /* unmap skb header data */
3239 dma_unmap_single(tx_ring->dev,
3240 dma_unmap_addr(tx_buf, dma),
3241 dma_unmap_len(tx_buf, len),
3242 DMA_TO_DEVICE);
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003243 if (tx_buf->tx_flags & I40E_TX_FLAGS_FD_SB)
3244 kfree(tx_buf->raw_buf);
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003245
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003246 tx_buf->raw_buf = NULL;
3247 tx_buf->tx_flags = 0;
3248 tx_buf->next_to_watch = NULL;
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003249 dma_unmap_len_set(tx_buf, len, 0);
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003250 tx_desc->buffer_addr = 0;
3251 tx_desc->cmd_type_offset_bsz = 0;
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003252
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003253 /* move us past the eop_desc for start of next FD desc */
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003254 tx_buf++;
3255 tx_desc++;
3256 i++;
3257 if (unlikely(!i)) {
3258 i -= tx_ring->count;
3259 tx_buf = tx_ring->tx_bi;
3260 tx_desc = I40E_TX_DESC(tx_ring, 0);
3261 }
3262
3263 /* update budget accounting */
3264 budget--;
3265 } while (likely(budget));
3266
3267 i += tx_ring->count;
3268 tx_ring->next_to_clean = i;
3269
3270 if (vsi->back->flags & I40E_FLAG_MSIX_ENABLED) {
3271 i40e_irq_dynamic_enable(vsi,
3272 tx_ring->q_vector->v_idx + vsi->base_vector);
3273 }
3274 return budget > 0;
3275}
3276
3277/**
3278 * i40e_fdir_clean_ring - Interrupt Handler for FDIR SB ring
3279 * @irq: interrupt number
3280 * @data: pointer to a q_vector
3281 **/
3282static irqreturn_t i40e_fdir_clean_ring(int irq, void *data)
3283{
3284 struct i40e_q_vector *q_vector = data;
3285 struct i40e_vsi *vsi;
3286
3287 if (!q_vector->tx.ring)
3288 return IRQ_HANDLED;
3289
3290 vsi = q_vector->tx.ring->vsi;
3291 i40e_clean_fdir_tx_irq(q_vector->tx.ring, vsi->work_limit);
3292
3293 return IRQ_HANDLED;
3294}
3295
3296/**
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003297 * i40e_map_vector_to_qp - Assigns the queue pair to the vector
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003298 * @vsi: the VSI being configured
3299 * @v_idx: vector index
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003300 * @qp_idx: queue pair index
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003301 **/
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003302static void map_vector_to_qp(struct i40e_vsi *vsi, int v_idx, int qp_idx)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003303{
Alexander Duyck493fb302013-09-28 07:01:44 +00003304 struct i40e_q_vector *q_vector = vsi->q_vectors[v_idx];
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00003305 struct i40e_ring *tx_ring = vsi->tx_rings[qp_idx];
3306 struct i40e_ring *rx_ring = vsi->rx_rings[qp_idx];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003307
3308 tx_ring->q_vector = q_vector;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003309 tx_ring->next = q_vector->tx.ring;
3310 q_vector->tx.ring = tx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003311 q_vector->tx.count++;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003312
3313 rx_ring->q_vector = q_vector;
3314 rx_ring->next = q_vector->rx.ring;
3315 q_vector->rx.ring = rx_ring;
3316 q_vector->rx.count++;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003317}
3318
3319/**
3320 * i40e_vsi_map_rings_to_vectors - Maps descriptor rings to vectors
3321 * @vsi: the VSI being configured
3322 *
3323 * This function maps descriptor rings to the queue-specific vectors
3324 * we were allotted through the MSI-X enabling code. Ideally, we'd have
3325 * one vector per queue pair, but on a constrained vector budget, we
3326 * group the queue pairs as "efficiently" as possible.
3327 **/
3328static void i40e_vsi_map_rings_to_vectors(struct i40e_vsi *vsi)
3329{
3330 int qp_remaining = vsi->num_queue_pairs;
3331 int q_vectors = vsi->num_q_vectors;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003332 int num_ringpairs;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003333 int v_start = 0;
3334 int qp_idx = 0;
3335
3336 /* If we don't have enough vectors for a 1-to-1 mapping, we'll have to
3337 * group them so there are multiple queues per vector.
Anjali Singhai Jain70114ec2014-06-03 23:50:14 +00003338 * It is also important to go through all the vectors available to be
3339 * sure that if we don't use all the vectors, that the remaining vectors
3340 * are cleared. This is especially important when decreasing the
3341 * number of queues in use.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003342 */
Anjali Singhai Jain70114ec2014-06-03 23:50:14 +00003343 for (; v_start < q_vectors; v_start++) {
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003344 struct i40e_q_vector *q_vector = vsi->q_vectors[v_start];
3345
3346 num_ringpairs = DIV_ROUND_UP(qp_remaining, q_vectors - v_start);
3347
3348 q_vector->num_ringpairs = num_ringpairs;
3349
3350 q_vector->rx.count = 0;
3351 q_vector->tx.count = 0;
3352 q_vector->rx.ring = NULL;
3353 q_vector->tx.ring = NULL;
3354
3355 while (num_ringpairs--) {
3356 map_vector_to_qp(vsi, v_start, qp_idx);
3357 qp_idx++;
3358 qp_remaining--;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003359 }
3360 }
3361}
3362
3363/**
3364 * i40e_vsi_request_irq - Request IRQ from the OS
3365 * @vsi: the VSI being configured
3366 * @basename: name for the vector
3367 **/
3368static int i40e_vsi_request_irq(struct i40e_vsi *vsi, char *basename)
3369{
3370 struct i40e_pf *pf = vsi->back;
3371 int err;
3372
3373 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
3374 err = i40e_vsi_request_irq_msix(vsi, basename);
3375 else if (pf->flags & I40E_FLAG_MSI_ENABLED)
3376 err = request_irq(pf->pdev->irq, i40e_intr, 0,
3377 pf->misc_int_name, pf);
3378 else
3379 err = request_irq(pf->pdev->irq, i40e_intr, IRQF_SHARED,
3380 pf->misc_int_name, pf);
3381
3382 if (err)
3383 dev_info(&pf->pdev->dev, "request_irq failed, Error %d\n", err);
3384
3385 return err;
3386}
3387
3388#ifdef CONFIG_NET_POLL_CONTROLLER
3389/**
3390 * i40e_netpoll - A Polling 'interrupt'handler
3391 * @netdev: network interface device structure
3392 *
3393 * This is used by netconsole to send skbs without having to re-enable
3394 * interrupts. It's not called while the normal interrupt routine is executing.
3395 **/
Vasu Dev38e00432014-08-01 13:27:03 -07003396#ifdef I40E_FCOE
3397void i40e_netpoll(struct net_device *netdev)
3398#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003399static void i40e_netpoll(struct net_device *netdev)
Vasu Dev38e00432014-08-01 13:27:03 -07003400#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003401{
3402 struct i40e_netdev_priv *np = netdev_priv(netdev);
3403 struct i40e_vsi *vsi = np->vsi;
3404 struct i40e_pf *pf = vsi->back;
3405 int i;
3406
3407 /* if interface is down do nothing */
3408 if (test_bit(__I40E_DOWN, &vsi->state))
3409 return;
3410
3411 pf->flags |= I40E_FLAG_IN_NETPOLL;
3412 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
3413 for (i = 0; i < vsi->num_q_vectors; i++)
Alexander Duyck493fb302013-09-28 07:01:44 +00003414 i40e_msix_clean_rings(0, vsi->q_vectors[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003415 } else {
3416 i40e_intr(pf->pdev->irq, netdev);
3417 }
3418 pf->flags &= ~I40E_FLAG_IN_NETPOLL;
3419}
3420#endif
3421
3422/**
Neerav Parikh23527302014-06-03 23:50:15 +00003423 * i40e_pf_txq_wait - Wait for a PF's Tx queue to be enabled or disabled
3424 * @pf: the PF being configured
3425 * @pf_q: the PF queue
3426 * @enable: enable or disable state of the queue
3427 *
3428 * This routine will wait for the given Tx queue of the PF to reach the
3429 * enabled or disabled state.
3430 * Returns -ETIMEDOUT in case of failing to reach the requested state after
3431 * multiple retries; else will return 0 in case of success.
3432 **/
3433static int i40e_pf_txq_wait(struct i40e_pf *pf, int pf_q, bool enable)
3434{
3435 int i;
3436 u32 tx_reg;
3437
3438 for (i = 0; i < I40E_QUEUE_WAIT_RETRY_LIMIT; i++) {
3439 tx_reg = rd32(&pf->hw, I40E_QTX_ENA(pf_q));
3440 if (enable == !!(tx_reg & I40E_QTX_ENA_QENA_STAT_MASK))
3441 break;
3442
Neerav Parikhf98a2002014-09-13 07:40:44 +00003443 usleep_range(10, 20);
Neerav Parikh23527302014-06-03 23:50:15 +00003444 }
3445 if (i >= I40E_QUEUE_WAIT_RETRY_LIMIT)
3446 return -ETIMEDOUT;
3447
3448 return 0;
3449}
3450
3451/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003452 * i40e_vsi_control_tx - Start or stop a VSI's rings
3453 * @vsi: the VSI being configured
3454 * @enable: start or stop the rings
3455 **/
3456static int i40e_vsi_control_tx(struct i40e_vsi *vsi, bool enable)
3457{
3458 struct i40e_pf *pf = vsi->back;
3459 struct i40e_hw *hw = &pf->hw;
Neerav Parikh23527302014-06-03 23:50:15 +00003460 int i, j, pf_q, ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003461 u32 tx_reg;
3462
3463 pf_q = vsi->base_queue;
3464 for (i = 0; i < vsi->num_queue_pairs; i++, pf_q++) {
Matt Jared351499a2014-04-23 04:50:03 +00003465
3466 /* warn the TX unit of coming changes */
3467 i40e_pre_tx_queue_cfg(&pf->hw, pf_q, enable);
3468 if (!enable)
Neerav Parikhf98a2002014-09-13 07:40:44 +00003469 usleep_range(10, 20);
Matt Jared351499a2014-04-23 04:50:03 +00003470
Mitch Williams6c5ef622014-02-20 19:29:16 -08003471 for (j = 0; j < 50; j++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003472 tx_reg = rd32(hw, I40E_QTX_ENA(pf_q));
Mitch Williams6c5ef622014-02-20 19:29:16 -08003473 if (((tx_reg >> I40E_QTX_ENA_QENA_REQ_SHIFT) & 1) ==
3474 ((tx_reg >> I40E_QTX_ENA_QENA_STAT_SHIFT) & 1))
3475 break;
3476 usleep_range(1000, 2000);
3477 }
Mitch Williamsfda972f2013-11-28 06:39:29 +00003478 /* Skip if the queue is already in the requested state */
Catherine Sullivan7c122002014-03-14 07:32:29 +00003479 if (enable == !!(tx_reg & I40E_QTX_ENA_QENA_STAT_MASK))
Mitch Williamsfda972f2013-11-28 06:39:29 +00003480 continue;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003481
3482 /* turn on/off the queue */
Shannon Nelsonc5c9eb92013-12-21 05:44:48 +00003483 if (enable) {
3484 wr32(hw, I40E_QTX_HEAD(pf_q), 0);
Mitch Williams6c5ef622014-02-20 19:29:16 -08003485 tx_reg |= I40E_QTX_ENA_QENA_REQ_MASK;
Shannon Nelsonc5c9eb92013-12-21 05:44:48 +00003486 } else {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003487 tx_reg &= ~I40E_QTX_ENA_QENA_REQ_MASK;
Shannon Nelsonc5c9eb92013-12-21 05:44:48 +00003488 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003489
3490 wr32(hw, I40E_QTX_ENA(pf_q), tx_reg);
3491
3492 /* wait for the change to finish */
Neerav Parikh23527302014-06-03 23:50:15 +00003493 ret = i40e_pf_txq_wait(pf, pf_q, enable);
3494 if (ret) {
3495 dev_info(&pf->pdev->dev,
3496 "%s: VSI seid %d Tx ring %d %sable timeout\n",
3497 __func__, vsi->seid, pf_q,
3498 (enable ? "en" : "dis"));
3499 break;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003500 }
3501 }
3502
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00003503 if (hw->revision_id == 0)
3504 mdelay(50);
Neerav Parikh23527302014-06-03 23:50:15 +00003505 return ret;
3506}
3507
3508/**
3509 * i40e_pf_rxq_wait - Wait for a PF's Rx queue to be enabled or disabled
3510 * @pf: the PF being configured
3511 * @pf_q: the PF queue
3512 * @enable: enable or disable state of the queue
3513 *
3514 * This routine will wait for the given Rx queue of the PF to reach the
3515 * enabled or disabled state.
3516 * Returns -ETIMEDOUT in case of failing to reach the requested state after
3517 * multiple retries; else will return 0 in case of success.
3518 **/
3519static int i40e_pf_rxq_wait(struct i40e_pf *pf, int pf_q, bool enable)
3520{
3521 int i;
3522 u32 rx_reg;
3523
3524 for (i = 0; i < I40E_QUEUE_WAIT_RETRY_LIMIT; i++) {
3525 rx_reg = rd32(&pf->hw, I40E_QRX_ENA(pf_q));
3526 if (enable == !!(rx_reg & I40E_QRX_ENA_QENA_STAT_MASK))
3527 break;
3528
Neerav Parikhf98a2002014-09-13 07:40:44 +00003529 usleep_range(10, 20);
Neerav Parikh23527302014-06-03 23:50:15 +00003530 }
3531 if (i >= I40E_QUEUE_WAIT_RETRY_LIMIT)
3532 return -ETIMEDOUT;
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00003533
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003534 return 0;
3535}
3536
3537/**
3538 * i40e_vsi_control_rx - Start or stop a VSI's rings
3539 * @vsi: the VSI being configured
3540 * @enable: start or stop the rings
3541 **/
3542static int i40e_vsi_control_rx(struct i40e_vsi *vsi, bool enable)
3543{
3544 struct i40e_pf *pf = vsi->back;
3545 struct i40e_hw *hw = &pf->hw;
Neerav Parikh23527302014-06-03 23:50:15 +00003546 int i, j, pf_q, ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003547 u32 rx_reg;
3548
3549 pf_q = vsi->base_queue;
3550 for (i = 0; i < vsi->num_queue_pairs; i++, pf_q++) {
Mitch Williams6c5ef622014-02-20 19:29:16 -08003551 for (j = 0; j < 50; j++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003552 rx_reg = rd32(hw, I40E_QRX_ENA(pf_q));
Mitch Williams6c5ef622014-02-20 19:29:16 -08003553 if (((rx_reg >> I40E_QRX_ENA_QENA_REQ_SHIFT) & 1) ==
3554 ((rx_reg >> I40E_QRX_ENA_QENA_STAT_SHIFT) & 1))
3555 break;
3556 usleep_range(1000, 2000);
3557 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003558
Catherine Sullivan7c122002014-03-14 07:32:29 +00003559 /* Skip if the queue is already in the requested state */
3560 if (enable == !!(rx_reg & I40E_QRX_ENA_QENA_STAT_MASK))
3561 continue;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003562
3563 /* turn on/off the queue */
3564 if (enable)
Mitch Williams6c5ef622014-02-20 19:29:16 -08003565 rx_reg |= I40E_QRX_ENA_QENA_REQ_MASK;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003566 else
Mitch Williams6c5ef622014-02-20 19:29:16 -08003567 rx_reg &= ~I40E_QRX_ENA_QENA_REQ_MASK;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003568 wr32(hw, I40E_QRX_ENA(pf_q), rx_reg);
3569
3570 /* wait for the change to finish */
Neerav Parikh23527302014-06-03 23:50:15 +00003571 ret = i40e_pf_rxq_wait(pf, pf_q, enable);
3572 if (ret) {
3573 dev_info(&pf->pdev->dev,
3574 "%s: VSI seid %d Rx ring %d %sable timeout\n",
3575 __func__, vsi->seid, pf_q,
3576 (enable ? "en" : "dis"));
3577 break;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003578 }
3579 }
3580
Neerav Parikh23527302014-06-03 23:50:15 +00003581 return ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003582}
3583
3584/**
3585 * i40e_vsi_control_rings - Start or stop a VSI's rings
3586 * @vsi: the VSI being configured
3587 * @enable: start or stop the rings
3588 **/
Mitch Williamsfc18eaa2013-11-28 06:39:27 +00003589int i40e_vsi_control_rings(struct i40e_vsi *vsi, bool request)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003590{
Anjali Singhai Jain3b867b22013-12-21 05:44:44 +00003591 int ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003592
3593 /* do rx first for enable and last for disable */
3594 if (request) {
3595 ret = i40e_vsi_control_rx(vsi, request);
3596 if (ret)
3597 return ret;
3598 ret = i40e_vsi_control_tx(vsi, request);
3599 } else {
Anjali Singhai Jain3b867b22013-12-21 05:44:44 +00003600 /* Ignore return value, we need to shutdown whatever we can */
3601 i40e_vsi_control_tx(vsi, request);
3602 i40e_vsi_control_rx(vsi, request);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003603 }
3604
3605 return ret;
3606}
3607
3608/**
3609 * i40e_vsi_free_irq - Free the irq association with the OS
3610 * @vsi: the VSI being configured
3611 **/
3612static void i40e_vsi_free_irq(struct i40e_vsi *vsi)
3613{
3614 struct i40e_pf *pf = vsi->back;
3615 struct i40e_hw *hw = &pf->hw;
3616 int base = vsi->base_vector;
3617 u32 val, qp;
3618 int i;
3619
3620 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
3621 if (!vsi->q_vectors)
3622 return;
3623
Shannon Nelson63741842014-04-23 04:50:16 +00003624 if (!vsi->irqs_ready)
3625 return;
3626
3627 vsi->irqs_ready = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003628 for (i = 0; i < vsi->num_q_vectors; i++) {
3629 u16 vector = i + base;
3630
3631 /* free only the irqs that were actually requested */
Shannon Nelson78681b12013-11-28 06:39:36 +00003632 if (!vsi->q_vectors[i] ||
3633 !vsi->q_vectors[i]->num_ringpairs)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003634 continue;
3635
3636 /* clear the affinity_mask in the IRQ descriptor */
3637 irq_set_affinity_hint(pf->msix_entries[vector].vector,
3638 NULL);
3639 free_irq(pf->msix_entries[vector].vector,
Alexander Duyck493fb302013-09-28 07:01:44 +00003640 vsi->q_vectors[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003641
3642 /* Tear down the interrupt queue link list
3643 *
3644 * We know that they come in pairs and always
3645 * the Rx first, then the Tx. To clear the
3646 * link list, stick the EOL value into the
3647 * next_q field of the registers.
3648 */
3649 val = rd32(hw, I40E_PFINT_LNKLSTN(vector - 1));
3650 qp = (val & I40E_PFINT_LNKLSTN_FIRSTQ_INDX_MASK)
3651 >> I40E_PFINT_LNKLSTN_FIRSTQ_INDX_SHIFT;
3652 val |= I40E_QUEUE_END_OF_LIST
3653 << I40E_PFINT_LNKLSTN_FIRSTQ_INDX_SHIFT;
3654 wr32(hw, I40E_PFINT_LNKLSTN(vector - 1), val);
3655
3656 while (qp != I40E_QUEUE_END_OF_LIST) {
3657 u32 next;
3658
3659 val = rd32(hw, I40E_QINT_RQCTL(qp));
3660
3661 val &= ~(I40E_QINT_RQCTL_MSIX_INDX_MASK |
3662 I40E_QINT_RQCTL_MSIX0_INDX_MASK |
3663 I40E_QINT_RQCTL_CAUSE_ENA_MASK |
3664 I40E_QINT_RQCTL_INTEVENT_MASK);
3665
3666 val |= (I40E_QINT_RQCTL_ITR_INDX_MASK |
3667 I40E_QINT_RQCTL_NEXTQ_INDX_MASK);
3668
3669 wr32(hw, I40E_QINT_RQCTL(qp), val);
3670
3671 val = rd32(hw, I40E_QINT_TQCTL(qp));
3672
3673 next = (val & I40E_QINT_TQCTL_NEXTQ_INDX_MASK)
3674 >> I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT;
3675
3676 val &= ~(I40E_QINT_TQCTL_MSIX_INDX_MASK |
3677 I40E_QINT_TQCTL_MSIX0_INDX_MASK |
3678 I40E_QINT_TQCTL_CAUSE_ENA_MASK |
3679 I40E_QINT_TQCTL_INTEVENT_MASK);
3680
3681 val |= (I40E_QINT_TQCTL_ITR_INDX_MASK |
3682 I40E_QINT_TQCTL_NEXTQ_INDX_MASK);
3683
3684 wr32(hw, I40E_QINT_TQCTL(qp), val);
3685 qp = next;
3686 }
3687 }
3688 } else {
3689 free_irq(pf->pdev->irq, pf);
3690
3691 val = rd32(hw, I40E_PFINT_LNKLST0);
3692 qp = (val & I40E_PFINT_LNKLSTN_FIRSTQ_INDX_MASK)
3693 >> I40E_PFINT_LNKLSTN_FIRSTQ_INDX_SHIFT;
3694 val |= I40E_QUEUE_END_OF_LIST
3695 << I40E_PFINT_LNKLST0_FIRSTQ_INDX_SHIFT;
3696 wr32(hw, I40E_PFINT_LNKLST0, val);
3697
3698 val = rd32(hw, I40E_QINT_RQCTL(qp));
3699 val &= ~(I40E_QINT_RQCTL_MSIX_INDX_MASK |
3700 I40E_QINT_RQCTL_MSIX0_INDX_MASK |
3701 I40E_QINT_RQCTL_CAUSE_ENA_MASK |
3702 I40E_QINT_RQCTL_INTEVENT_MASK);
3703
3704 val |= (I40E_QINT_RQCTL_ITR_INDX_MASK |
3705 I40E_QINT_RQCTL_NEXTQ_INDX_MASK);
3706
3707 wr32(hw, I40E_QINT_RQCTL(qp), val);
3708
3709 val = rd32(hw, I40E_QINT_TQCTL(qp));
3710
3711 val &= ~(I40E_QINT_TQCTL_MSIX_INDX_MASK |
3712 I40E_QINT_TQCTL_MSIX0_INDX_MASK |
3713 I40E_QINT_TQCTL_CAUSE_ENA_MASK |
3714 I40E_QINT_TQCTL_INTEVENT_MASK);
3715
3716 val |= (I40E_QINT_TQCTL_ITR_INDX_MASK |
3717 I40E_QINT_TQCTL_NEXTQ_INDX_MASK);
3718
3719 wr32(hw, I40E_QINT_TQCTL(qp), val);
3720 }
3721}
3722
3723/**
Alexander Duyck493fb302013-09-28 07:01:44 +00003724 * i40e_free_q_vector - Free memory allocated for specific interrupt vector
3725 * @vsi: the VSI being configured
3726 * @v_idx: Index of vector to be freed
3727 *
3728 * This function frees the memory allocated to the q_vector. In addition if
3729 * NAPI is enabled it will delete any references to the NAPI struct prior
3730 * to freeing the q_vector.
3731 **/
3732static void i40e_free_q_vector(struct i40e_vsi *vsi, int v_idx)
3733{
3734 struct i40e_q_vector *q_vector = vsi->q_vectors[v_idx];
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003735 struct i40e_ring *ring;
Alexander Duyck493fb302013-09-28 07:01:44 +00003736
3737 if (!q_vector)
3738 return;
3739
3740 /* disassociate q_vector from rings */
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003741 i40e_for_each_ring(ring, q_vector->tx)
3742 ring->q_vector = NULL;
3743
3744 i40e_for_each_ring(ring, q_vector->rx)
3745 ring->q_vector = NULL;
Alexander Duyck493fb302013-09-28 07:01:44 +00003746
3747 /* only VSI w/ an associated netdev is set up w/ NAPI */
3748 if (vsi->netdev)
3749 netif_napi_del(&q_vector->napi);
3750
3751 vsi->q_vectors[v_idx] = NULL;
3752
3753 kfree_rcu(q_vector, rcu);
3754}
3755
3756/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003757 * i40e_vsi_free_q_vectors - Free memory allocated for interrupt vectors
3758 * @vsi: the VSI being un-configured
3759 *
3760 * This frees the memory allocated to the q_vectors and
3761 * deletes references to the NAPI struct.
3762 **/
3763static void i40e_vsi_free_q_vectors(struct i40e_vsi *vsi)
3764{
3765 int v_idx;
3766
Alexander Duyck493fb302013-09-28 07:01:44 +00003767 for (v_idx = 0; v_idx < vsi->num_q_vectors; v_idx++)
3768 i40e_free_q_vector(vsi, v_idx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003769}
3770
3771/**
3772 * i40e_reset_interrupt_capability - Disable interrupt setup in OS
3773 * @pf: board private structure
3774 **/
3775static void i40e_reset_interrupt_capability(struct i40e_pf *pf)
3776{
3777 /* If we're in Legacy mode, the interrupt was cleaned in vsi_close */
3778 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
3779 pci_disable_msix(pf->pdev);
3780 kfree(pf->msix_entries);
3781 pf->msix_entries = NULL;
3782 } else if (pf->flags & I40E_FLAG_MSI_ENABLED) {
3783 pci_disable_msi(pf->pdev);
3784 }
3785 pf->flags &= ~(I40E_FLAG_MSIX_ENABLED | I40E_FLAG_MSI_ENABLED);
3786}
3787
3788/**
3789 * i40e_clear_interrupt_scheme - Clear the current interrupt scheme settings
3790 * @pf: board private structure
3791 *
3792 * We go through and clear interrupt specific resources and reset the structure
3793 * to pre-load conditions
3794 **/
3795static void i40e_clear_interrupt_scheme(struct i40e_pf *pf)
3796{
3797 int i;
3798
3799 i40e_put_lump(pf->irq_pile, 0, I40E_PILE_VALID_BIT-1);
Mitch Williams505682c2014-05-20 08:01:37 +00003800 for (i = 0; i < pf->num_alloc_vsi; i++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003801 if (pf->vsi[i])
3802 i40e_vsi_free_q_vectors(pf->vsi[i]);
3803 i40e_reset_interrupt_capability(pf);
3804}
3805
3806/**
3807 * i40e_napi_enable_all - Enable NAPI for all q_vectors in the VSI
3808 * @vsi: the VSI being configured
3809 **/
3810static void i40e_napi_enable_all(struct i40e_vsi *vsi)
3811{
3812 int q_idx;
3813
3814 if (!vsi->netdev)
3815 return;
3816
3817 for (q_idx = 0; q_idx < vsi->num_q_vectors; q_idx++)
Alexander Duyck493fb302013-09-28 07:01:44 +00003818 napi_enable(&vsi->q_vectors[q_idx]->napi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003819}
3820
3821/**
3822 * i40e_napi_disable_all - Disable NAPI for all q_vectors in the VSI
3823 * @vsi: the VSI being configured
3824 **/
3825static void i40e_napi_disable_all(struct i40e_vsi *vsi)
3826{
3827 int q_idx;
3828
3829 if (!vsi->netdev)
3830 return;
3831
3832 for (q_idx = 0; q_idx < vsi->num_q_vectors; q_idx++)
Alexander Duyck493fb302013-09-28 07:01:44 +00003833 napi_disable(&vsi->q_vectors[q_idx]->napi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003834}
3835
3836/**
Shannon Nelson90ef8d42014-03-14 07:32:26 +00003837 * i40e_vsi_close - Shut down a VSI
3838 * @vsi: the vsi to be quelled
3839 **/
3840static void i40e_vsi_close(struct i40e_vsi *vsi)
3841{
3842 if (!test_and_set_bit(__I40E_DOWN, &vsi->state))
3843 i40e_down(vsi);
3844 i40e_vsi_free_irq(vsi);
3845 i40e_vsi_free_tx_resources(vsi);
3846 i40e_vsi_free_rx_resources(vsi);
3847}
3848
3849/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003850 * i40e_quiesce_vsi - Pause a given VSI
3851 * @vsi: the VSI being paused
3852 **/
3853static void i40e_quiesce_vsi(struct i40e_vsi *vsi)
3854{
3855 if (test_bit(__I40E_DOWN, &vsi->state))
3856 return;
3857
3858 set_bit(__I40E_NEEDS_RESTART, &vsi->state);
3859 if (vsi->netdev && netif_running(vsi->netdev)) {
3860 vsi->netdev->netdev_ops->ndo_stop(vsi->netdev);
3861 } else {
Shannon Nelson90ef8d42014-03-14 07:32:26 +00003862 i40e_vsi_close(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003863 }
3864}
3865
3866/**
3867 * i40e_unquiesce_vsi - Resume a given VSI
3868 * @vsi: the VSI being resumed
3869 **/
3870static void i40e_unquiesce_vsi(struct i40e_vsi *vsi)
3871{
3872 if (!test_bit(__I40E_NEEDS_RESTART, &vsi->state))
3873 return;
3874
3875 clear_bit(__I40E_NEEDS_RESTART, &vsi->state);
3876 if (vsi->netdev && netif_running(vsi->netdev))
3877 vsi->netdev->netdev_ops->ndo_open(vsi->netdev);
3878 else
Shannon Nelson8276f752014-03-14 07:32:27 +00003879 i40e_vsi_open(vsi); /* this clears the DOWN bit */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003880}
3881
3882/**
3883 * i40e_pf_quiesce_all_vsi - Pause all VSIs on a PF
3884 * @pf: the PF
3885 **/
3886static void i40e_pf_quiesce_all_vsi(struct i40e_pf *pf)
3887{
3888 int v;
3889
Mitch Williams505682c2014-05-20 08:01:37 +00003890 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003891 if (pf->vsi[v])
3892 i40e_quiesce_vsi(pf->vsi[v]);
3893 }
3894}
3895
3896/**
3897 * i40e_pf_unquiesce_all_vsi - Resume all VSIs on a PF
3898 * @pf: the PF
3899 **/
3900static void i40e_pf_unquiesce_all_vsi(struct i40e_pf *pf)
3901{
3902 int v;
3903
Mitch Williams505682c2014-05-20 08:01:37 +00003904 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003905 if (pf->vsi[v])
3906 i40e_unquiesce_vsi(pf->vsi[v]);
3907 }
3908}
3909
3910/**
3911 * i40e_dcb_get_num_tc - Get the number of TCs from DCBx config
3912 * @dcbcfg: the corresponding DCBx configuration structure
3913 *
3914 * Return the number of TCs from given DCBx configuration
3915 **/
3916static u8 i40e_dcb_get_num_tc(struct i40e_dcbx_config *dcbcfg)
3917{
Jesse Brandeburg078b5872013-09-25 23:41:14 +00003918 u8 num_tc = 0;
3919 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003920
3921 /* Scan the ETS Config Priority Table to find
3922 * traffic class enabled for a given priority
3923 * and use the traffic class index to get the
3924 * number of traffic classes enabled
3925 */
3926 for (i = 0; i < I40E_MAX_USER_PRIORITY; i++) {
3927 if (dcbcfg->etscfg.prioritytable[i] > num_tc)
3928 num_tc = dcbcfg->etscfg.prioritytable[i];
3929 }
3930
3931 /* Traffic class index starts from zero so
3932 * increment to return the actual count
3933 */
Jesse Brandeburg078b5872013-09-25 23:41:14 +00003934 return num_tc + 1;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003935}
3936
3937/**
3938 * i40e_dcb_get_enabled_tc - Get enabled traffic classes
3939 * @dcbcfg: the corresponding DCBx configuration structure
3940 *
3941 * Query the current DCB configuration and return the number of
3942 * traffic classes enabled from the given DCBX config
3943 **/
3944static u8 i40e_dcb_get_enabled_tc(struct i40e_dcbx_config *dcbcfg)
3945{
3946 u8 num_tc = i40e_dcb_get_num_tc(dcbcfg);
3947 u8 enabled_tc = 1;
3948 u8 i;
3949
3950 for (i = 0; i < num_tc; i++)
3951 enabled_tc |= 1 << i;
3952
3953 return enabled_tc;
3954}
3955
3956/**
3957 * i40e_pf_get_num_tc - Get enabled traffic classes for PF
3958 * @pf: PF being queried
3959 *
3960 * Return number of traffic classes enabled for the given PF
3961 **/
3962static u8 i40e_pf_get_num_tc(struct i40e_pf *pf)
3963{
3964 struct i40e_hw *hw = &pf->hw;
3965 u8 i, enabled_tc;
3966 u8 num_tc = 0;
3967 struct i40e_dcbx_config *dcbcfg = &hw->local_dcbx_config;
3968
3969 /* If DCB is not enabled then always in single TC */
3970 if (!(pf->flags & I40E_FLAG_DCB_ENABLED))
3971 return 1;
3972
3973 /* MFP mode return count of enabled TCs for this PF */
3974 if (pf->flags & I40E_FLAG_MFP_ENABLED) {
3975 enabled_tc = pf->hw.func_caps.enabled_tcmap;
3976 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
3977 if (enabled_tc & (1 << i))
3978 num_tc++;
3979 }
3980 return num_tc;
3981 }
3982
3983 /* SFP mode will be enabled for all TCs on port */
3984 return i40e_dcb_get_num_tc(dcbcfg);
3985}
3986
3987/**
3988 * i40e_pf_get_default_tc - Get bitmap for first enabled TC
3989 * @pf: PF being queried
3990 *
3991 * Return a bitmap for first enabled traffic class for this PF.
3992 **/
3993static u8 i40e_pf_get_default_tc(struct i40e_pf *pf)
3994{
3995 u8 enabled_tc = pf->hw.func_caps.enabled_tcmap;
3996 u8 i = 0;
3997
3998 if (!enabled_tc)
3999 return 0x1; /* TC0 */
4000
4001 /* Find the first enabled TC */
4002 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
4003 if (enabled_tc & (1 << i))
4004 break;
4005 }
4006
4007 return 1 << i;
4008}
4009
4010/**
4011 * i40e_pf_get_pf_tc_map - Get bitmap for enabled traffic classes
4012 * @pf: PF being queried
4013 *
4014 * Return a bitmap for enabled traffic classes for this PF.
4015 **/
4016static u8 i40e_pf_get_tc_map(struct i40e_pf *pf)
4017{
4018 /* If DCB is not enabled for this PF then just return default TC */
4019 if (!(pf->flags & I40E_FLAG_DCB_ENABLED))
4020 return i40e_pf_get_default_tc(pf);
4021
4022 /* MFP mode will have enabled TCs set by FW */
4023 if (pf->flags & I40E_FLAG_MFP_ENABLED)
4024 return pf->hw.func_caps.enabled_tcmap;
4025
4026 /* SFP mode we want PF to be enabled for all TCs */
4027 return i40e_dcb_get_enabled_tc(&pf->hw.local_dcbx_config);
4028}
4029
4030/**
4031 * i40e_vsi_get_bw_info - Query VSI BW Information
4032 * @vsi: the VSI being queried
4033 *
4034 * Returns 0 on success, negative value on failure
4035 **/
4036static int i40e_vsi_get_bw_info(struct i40e_vsi *vsi)
4037{
4038 struct i40e_aqc_query_vsi_ets_sla_config_resp bw_ets_config = {0};
4039 struct i40e_aqc_query_vsi_bw_config_resp bw_config = {0};
4040 struct i40e_pf *pf = vsi->back;
4041 struct i40e_hw *hw = &pf->hw;
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004042 i40e_status aq_ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004043 u32 tc_bw_max;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004044 int i;
4045
4046 /* Get the VSI level BW configuration */
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004047 aq_ret = i40e_aq_query_vsi_bw_config(hw, vsi->seid, &bw_config, NULL);
4048 if (aq_ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004049 dev_info(&pf->pdev->dev,
4050 "couldn't get pf vsi bw config, err %d, aq_err %d\n",
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004051 aq_ret, pf->hw.aq.asq_last_status);
4052 return -EINVAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004053 }
4054
4055 /* Get the VSI level BW configuration per TC */
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004056 aq_ret = i40e_aq_query_vsi_ets_sla_config(hw, vsi->seid, &bw_ets_config,
Jesse Brandeburg6838b532014-01-14 00:49:52 -08004057 NULL);
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004058 if (aq_ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004059 dev_info(&pf->pdev->dev,
4060 "couldn't get pf vsi ets bw config, err %d, aq_err %d\n",
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004061 aq_ret, pf->hw.aq.asq_last_status);
4062 return -EINVAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004063 }
4064
4065 if (bw_config.tc_valid_bits != bw_ets_config.tc_valid_bits) {
4066 dev_info(&pf->pdev->dev,
4067 "Enabled TCs mismatch from querying VSI BW info 0x%08x 0x%08x\n",
4068 bw_config.tc_valid_bits,
4069 bw_ets_config.tc_valid_bits);
4070 /* Still continuing */
4071 }
4072
4073 vsi->bw_limit = le16_to_cpu(bw_config.port_bw_limit);
4074 vsi->bw_max_quanta = bw_config.max_bw;
4075 tc_bw_max = le16_to_cpu(bw_ets_config.tc_bw_max[0]) |
4076 (le16_to_cpu(bw_ets_config.tc_bw_max[1]) << 16);
4077 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
4078 vsi->bw_ets_share_credits[i] = bw_ets_config.share_credits[i];
4079 vsi->bw_ets_limit_credits[i] =
4080 le16_to_cpu(bw_ets_config.credits[i]);
4081 /* 3 bits out of 4 for each TC */
4082 vsi->bw_ets_max_quanta[i] = (u8)((tc_bw_max >> (i*4)) & 0x7);
4083 }
Jesse Brandeburg078b5872013-09-25 23:41:14 +00004084
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004085 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004086}
4087
4088/**
4089 * i40e_vsi_configure_bw_alloc - Configure VSI BW allocation per TC
4090 * @vsi: the VSI being configured
4091 * @enabled_tc: TC bitmap
4092 * @bw_credits: BW shared credits per TC
4093 *
4094 * Returns 0 on success, negative value on failure
4095 **/
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004096static int i40e_vsi_configure_bw_alloc(struct i40e_vsi *vsi, u8 enabled_tc,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004097 u8 *bw_share)
4098{
4099 struct i40e_aqc_configure_vsi_tc_bw_data bw_data;
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004100 i40e_status aq_ret;
4101 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004102
4103 bw_data.tc_valid_bits = enabled_tc;
4104 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++)
4105 bw_data.tc_bw_credits[i] = bw_share[i];
4106
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004107 aq_ret = i40e_aq_config_vsi_tc_bw(&vsi->back->hw, vsi->seid, &bw_data,
4108 NULL);
4109 if (aq_ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004110 dev_info(&vsi->back->pdev->dev,
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00004111 "AQ command Config VSI BW allocation per TC failed = %d\n",
4112 vsi->back->hw.aq.asq_last_status);
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004113 return -EINVAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004114 }
4115
4116 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++)
4117 vsi->info.qs_handle[i] = bw_data.qs_handles[i];
4118
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004119 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004120}
4121
4122/**
4123 * i40e_vsi_config_netdev_tc - Setup the netdev TC configuration
4124 * @vsi: the VSI being configured
4125 * @enabled_tc: TC map to be enabled
4126 *
4127 **/
4128static void i40e_vsi_config_netdev_tc(struct i40e_vsi *vsi, u8 enabled_tc)
4129{
4130 struct net_device *netdev = vsi->netdev;
4131 struct i40e_pf *pf = vsi->back;
4132 struct i40e_hw *hw = &pf->hw;
4133 u8 netdev_tc = 0;
4134 int i;
4135 struct i40e_dcbx_config *dcbcfg = &hw->local_dcbx_config;
4136
4137 if (!netdev)
4138 return;
4139
4140 if (!enabled_tc) {
4141 netdev_reset_tc(netdev);
4142 return;
4143 }
4144
4145 /* Set up actual enabled TCs on the VSI */
4146 if (netdev_set_num_tc(netdev, vsi->tc_config.numtc))
4147 return;
4148
4149 /* set per TC queues for the VSI */
4150 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
4151 /* Only set TC queues for enabled tcs
4152 *
4153 * e.g. For a VSI that has TC0 and TC3 enabled the
4154 * enabled_tc bitmap would be 0x00001001; the driver
4155 * will set the numtc for netdev as 2 that will be
4156 * referenced by the netdev layer as TC 0 and 1.
4157 */
4158 if (vsi->tc_config.enabled_tc & (1 << i))
4159 netdev_set_tc_queue(netdev,
4160 vsi->tc_config.tc_info[i].netdev_tc,
4161 vsi->tc_config.tc_info[i].qcount,
4162 vsi->tc_config.tc_info[i].qoffset);
4163 }
4164
4165 /* Assign UP2TC map for the VSI */
4166 for (i = 0; i < I40E_MAX_USER_PRIORITY; i++) {
4167 /* Get the actual TC# for the UP */
4168 u8 ets_tc = dcbcfg->etscfg.prioritytable[i];
4169 /* Get the mapped netdev TC# for the UP */
4170 netdev_tc = vsi->tc_config.tc_info[ets_tc].netdev_tc;
4171 netdev_set_prio_tc_map(netdev, i, netdev_tc);
4172 }
4173}
4174
4175/**
4176 * i40e_vsi_update_queue_map - Update our copy of VSi info with new queue map
4177 * @vsi: the VSI being configured
4178 * @ctxt: the ctxt buffer returned from AQ VSI update param command
4179 **/
4180static void i40e_vsi_update_queue_map(struct i40e_vsi *vsi,
4181 struct i40e_vsi_context *ctxt)
4182{
4183 /* copy just the sections touched not the entire info
4184 * since not all sections are valid as returned by
4185 * update vsi params
4186 */
4187 vsi->info.mapping_flags = ctxt->info.mapping_flags;
4188 memcpy(&vsi->info.queue_mapping,
4189 &ctxt->info.queue_mapping, sizeof(vsi->info.queue_mapping));
4190 memcpy(&vsi->info.tc_mapping, ctxt->info.tc_mapping,
4191 sizeof(vsi->info.tc_mapping));
4192}
4193
4194/**
4195 * i40e_vsi_config_tc - Configure VSI Tx Scheduler for given TC map
4196 * @vsi: VSI to be configured
4197 * @enabled_tc: TC bitmap
4198 *
4199 * This configures a particular VSI for TCs that are mapped to the
4200 * given TC bitmap. It uses default bandwidth share for TCs across
4201 * VSIs to configure TC for a particular VSI.
4202 *
4203 * NOTE:
4204 * It is expected that the VSI queues have been quisced before calling
4205 * this function.
4206 **/
4207static int i40e_vsi_config_tc(struct i40e_vsi *vsi, u8 enabled_tc)
4208{
4209 u8 bw_share[I40E_MAX_TRAFFIC_CLASS] = {0};
4210 struct i40e_vsi_context ctxt;
4211 int ret = 0;
4212 int i;
4213
4214 /* Check if enabled_tc is same as existing or new TCs */
4215 if (vsi->tc_config.enabled_tc == enabled_tc)
4216 return ret;
4217
4218 /* Enable ETS TCs with equal BW Share for now across all VSIs */
4219 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
4220 if (enabled_tc & (1 << i))
4221 bw_share[i] = 1;
4222 }
4223
4224 ret = i40e_vsi_configure_bw_alloc(vsi, enabled_tc, bw_share);
4225 if (ret) {
4226 dev_info(&vsi->back->pdev->dev,
4227 "Failed configuring TC map %d for VSI %d\n",
4228 enabled_tc, vsi->seid);
4229 goto out;
4230 }
4231
4232 /* Update Queue Pairs Mapping for currently enabled UPs */
4233 ctxt.seid = vsi->seid;
4234 ctxt.pf_num = vsi->back->hw.pf_id;
4235 ctxt.vf_num = 0;
4236 ctxt.uplink_seid = vsi->uplink_seid;
4237 memcpy(&ctxt.info, &vsi->info, sizeof(vsi->info));
4238 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, false);
4239
4240 /* Update the VSI after updating the VSI queue-mapping information */
4241 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
4242 if (ret) {
4243 dev_info(&vsi->back->pdev->dev,
4244 "update vsi failed, aq_err=%d\n",
4245 vsi->back->hw.aq.asq_last_status);
4246 goto out;
4247 }
4248 /* update the local VSI info with updated queue map */
4249 i40e_vsi_update_queue_map(vsi, &ctxt);
4250 vsi->info.valid_sections = 0;
4251
4252 /* Update current VSI BW information */
4253 ret = i40e_vsi_get_bw_info(vsi);
4254 if (ret) {
4255 dev_info(&vsi->back->pdev->dev,
4256 "Failed updating vsi bw info, aq_err=%d\n",
4257 vsi->back->hw.aq.asq_last_status);
4258 goto out;
4259 }
4260
4261 /* Update the netdev TC setup */
4262 i40e_vsi_config_netdev_tc(vsi, enabled_tc);
4263out:
4264 return ret;
4265}
4266
4267/**
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004268 * i40e_veb_config_tc - Configure TCs for given VEB
4269 * @veb: given VEB
4270 * @enabled_tc: TC bitmap
4271 *
4272 * Configures given TC bitmap for VEB (switching) element
4273 **/
4274int i40e_veb_config_tc(struct i40e_veb *veb, u8 enabled_tc)
4275{
4276 struct i40e_aqc_configure_switching_comp_bw_config_data bw_data = {0};
4277 struct i40e_pf *pf = veb->pf;
4278 int ret = 0;
4279 int i;
4280
4281 /* No TCs or already enabled TCs just return */
4282 if (!enabled_tc || veb->enabled_tc == enabled_tc)
4283 return ret;
4284
4285 bw_data.tc_valid_bits = enabled_tc;
4286 /* bw_data.absolute_credits is not set (relative) */
4287
4288 /* Enable ETS TCs with equal BW Share for now */
4289 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
4290 if (enabled_tc & (1 << i))
4291 bw_data.tc_bw_share_credits[i] = 1;
4292 }
4293
4294 ret = i40e_aq_config_switch_comp_bw_config(&pf->hw, veb->seid,
4295 &bw_data, NULL);
4296 if (ret) {
4297 dev_info(&pf->pdev->dev,
4298 "veb bw config failed, aq_err=%d\n",
4299 pf->hw.aq.asq_last_status);
4300 goto out;
4301 }
4302
4303 /* Update the BW information */
4304 ret = i40e_veb_get_bw_info(veb);
4305 if (ret) {
4306 dev_info(&pf->pdev->dev,
4307 "Failed getting veb bw config, aq_err=%d\n",
4308 pf->hw.aq.asq_last_status);
4309 }
4310
4311out:
4312 return ret;
4313}
4314
4315#ifdef CONFIG_I40E_DCB
4316/**
4317 * i40e_dcb_reconfigure - Reconfigure all VEBs and VSIs
4318 * @pf: PF struct
4319 *
4320 * Reconfigure VEB/VSIs on a given PF; it is assumed that
4321 * the caller would've quiesce all the VSIs before calling
4322 * this function
4323 **/
4324static void i40e_dcb_reconfigure(struct i40e_pf *pf)
4325{
4326 u8 tc_map = 0;
4327 int ret;
4328 u8 v;
4329
4330 /* Enable the TCs available on PF to all VEBs */
4331 tc_map = i40e_pf_get_tc_map(pf);
4332 for (v = 0; v < I40E_MAX_VEB; v++) {
4333 if (!pf->veb[v])
4334 continue;
4335 ret = i40e_veb_config_tc(pf->veb[v], tc_map);
4336 if (ret) {
4337 dev_info(&pf->pdev->dev,
4338 "Failed configuring TC for VEB seid=%d\n",
4339 pf->veb[v]->seid);
4340 /* Will try to configure as many components */
4341 }
4342 }
4343
4344 /* Update each VSI */
Mitch Williams505682c2014-05-20 08:01:37 +00004345 for (v = 0; v < pf->num_alloc_vsi; v++) {
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004346 if (!pf->vsi[v])
4347 continue;
4348
4349 /* - Enable all TCs for the LAN VSI
Vasu Dev38e00432014-08-01 13:27:03 -07004350#ifdef I40E_FCOE
4351 * - For FCoE VSI only enable the TC configured
4352 * as per the APP TLV
4353#endif
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004354 * - For all others keep them at TC0 for now
4355 */
4356 if (v == pf->lan_vsi)
4357 tc_map = i40e_pf_get_tc_map(pf);
4358 else
4359 tc_map = i40e_pf_get_default_tc(pf);
Vasu Dev38e00432014-08-01 13:27:03 -07004360#ifdef I40E_FCOE
4361 if (pf->vsi[v]->type == I40E_VSI_FCOE)
4362 tc_map = i40e_get_fcoe_tc_map(pf);
4363#endif /* #ifdef I40E_FCOE */
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004364
4365 ret = i40e_vsi_config_tc(pf->vsi[v], tc_map);
4366 if (ret) {
4367 dev_info(&pf->pdev->dev,
4368 "Failed configuring TC for VSI seid=%d\n",
4369 pf->vsi[v]->seid);
4370 /* Will try to configure as many components */
4371 } else {
Neerav Parikh0672a092014-04-01 07:11:47 +00004372 /* Re-configure VSI vectors based on updated TC map */
4373 i40e_vsi_map_rings_to_vectors(pf->vsi[v]);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004374 if (pf->vsi[v]->netdev)
4375 i40e_dcbnl_set_all(pf->vsi[v]);
4376 }
4377 }
4378}
4379
4380/**
4381 * i40e_init_pf_dcb - Initialize DCB configuration
4382 * @pf: PF being configured
4383 *
4384 * Query the current DCB configuration and cache it
4385 * in the hardware structure
4386 **/
4387static int i40e_init_pf_dcb(struct i40e_pf *pf)
4388{
4389 struct i40e_hw *hw = &pf->hw;
4390 int err = 0;
4391
4392 if (pf->hw.func_caps.npar_enable)
4393 goto out;
4394
4395 /* Get the initial DCB configuration */
4396 err = i40e_init_dcb(hw);
4397 if (!err) {
4398 /* Device/Function is not DCBX capable */
4399 if ((!hw->func_caps.dcb) ||
4400 (hw->dcbx_status == I40E_DCBX_STATUS_DISABLED)) {
4401 dev_info(&pf->pdev->dev,
4402 "DCBX offload is not supported or is disabled for this PF.\n");
4403
4404 if (pf->flags & I40E_FLAG_MFP_ENABLED)
4405 goto out;
4406
4407 } else {
4408 /* When status is not DISABLED then DCBX in FW */
4409 pf->dcbx_cap = DCB_CAP_DCBX_LLD_MANAGED |
4410 DCB_CAP_DCBX_VER_IEEE;
Neerav Parikh4d9b6042014-05-22 06:31:51 +00004411
4412 pf->flags |= I40E_FLAG_DCB_CAPABLE;
4413 /* Enable DCB tagging only when more than one TC */
4414 if (i40e_dcb_get_num_tc(&hw->local_dcbx_config) > 1)
4415 pf->flags |= I40E_FLAG_DCB_ENABLED;
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004416 }
Neerav Parikh014269f2014-04-01 07:11:48 +00004417 } else {
4418 dev_info(&pf->pdev->dev, "AQ Querying DCB configuration failed: %d\n",
4419 pf->hw.aq.asq_last_status);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004420 }
4421
4422out:
4423 return err;
4424}
4425#endif /* CONFIG_I40E_DCB */
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004426#define SPEED_SIZE 14
4427#define FC_SIZE 8
4428/**
4429 * i40e_print_link_message - print link up or down
4430 * @vsi: the VSI for which link needs a message
4431 */
4432static void i40e_print_link_message(struct i40e_vsi *vsi, bool isup)
4433{
4434 char speed[SPEED_SIZE] = "Unknown";
4435 char fc[FC_SIZE] = "RX/TX";
4436
4437 if (!isup) {
4438 netdev_info(vsi->netdev, "NIC Link is Down\n");
4439 return;
4440 }
4441
4442 switch (vsi->back->hw.phy.link_info.link_speed) {
4443 case I40E_LINK_SPEED_40GB:
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00004444 strlcpy(speed, "40 Gbps", SPEED_SIZE);
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004445 break;
4446 case I40E_LINK_SPEED_10GB:
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00004447 strlcpy(speed, "10 Gbps", SPEED_SIZE);
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004448 break;
4449 case I40E_LINK_SPEED_1GB:
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00004450 strlcpy(speed, "1000 Mbps", SPEED_SIZE);
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004451 break;
4452 default:
4453 break;
4454 }
4455
4456 switch (vsi->back->hw.fc.current_mode) {
4457 case I40E_FC_FULL:
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00004458 strlcpy(fc, "RX/TX", FC_SIZE);
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004459 break;
4460 case I40E_FC_TX_PAUSE:
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00004461 strlcpy(fc, "TX", FC_SIZE);
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004462 break;
4463 case I40E_FC_RX_PAUSE:
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00004464 strlcpy(fc, "RX", FC_SIZE);
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004465 break;
4466 default:
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00004467 strlcpy(fc, "None", FC_SIZE);
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004468 break;
4469 }
4470
4471 netdev_info(vsi->netdev, "NIC Link is Up %s Full Duplex, Flow Control: %s\n",
4472 speed, fc);
4473}
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004474
4475/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004476 * i40e_up_complete - Finish the last steps of bringing up a connection
4477 * @vsi: the VSI being configured
4478 **/
4479static int i40e_up_complete(struct i40e_vsi *vsi)
4480{
4481 struct i40e_pf *pf = vsi->back;
Catherine Sullivanc56999f2014-06-04 08:45:26 +00004482 u8 set_fc_aq_fail = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004483 int err;
4484
Catherine Sullivanc56999f2014-06-04 08:45:26 +00004485 /* force flow control off */
4486 i40e_set_fc(&pf->hw, &set_fc_aq_fail, true);
4487
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004488 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
4489 i40e_vsi_configure_msix(vsi);
4490 else
4491 i40e_configure_msi_and_legacy(vsi);
4492
4493 /* start rings */
4494 err = i40e_vsi_control_rings(vsi, true);
4495 if (err)
4496 return err;
4497
4498 clear_bit(__I40E_DOWN, &vsi->state);
4499 i40e_napi_enable_all(vsi);
4500 i40e_vsi_enable_irq(vsi);
4501
4502 if ((pf->hw.phy.link_info.link_info & I40E_AQ_LINK_UP) &&
4503 (vsi->netdev)) {
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004504 i40e_print_link_message(vsi, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004505 netif_tx_start_all_queues(vsi->netdev);
4506 netif_carrier_on(vsi->netdev);
Anjali Singhai6d779b42013-09-28 06:00:02 +00004507 } else if (vsi->netdev) {
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004508 i40e_print_link_message(vsi, false);
Carolyn Wyborny7b592f62014-07-10 07:58:19 +00004509 /* need to check for qualified module here*/
4510 if ((pf->hw.phy.link_info.link_info &
4511 I40E_AQ_MEDIA_AVAILABLE) &&
4512 (!(pf->hw.phy.link_info.an_info &
4513 I40E_AQ_QUALIFIED_MODULE)))
4514 netdev_err(vsi->netdev,
4515 "the driver failed to link because an unqualified module was detected.");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004516 }
Anjali Singhai Jainca64fa42014-02-11 08:26:30 +00004517
4518 /* replay FDIR SB filters */
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00004519 if (vsi->type == I40E_VSI_FDIR) {
4520 /* reset fd counters */
4521 pf->fd_add_err = pf->fd_atr_cnt = 0;
4522 if (pf->fd_tcp_rule > 0) {
4523 pf->flags &= ~I40E_FLAG_FD_ATR_ENABLED;
4524 dev_info(&pf->pdev->dev, "Forcing ATR off, sideband rules for TCP/IPv4 exist\n");
4525 pf->fd_tcp_rule = 0;
4526 }
Anjali Singhai Jainca64fa42014-02-11 08:26:30 +00004527 i40e_fdir_filter_restore(vsi);
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00004528 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004529 i40e_service_event_schedule(pf);
4530
4531 return 0;
4532}
4533
4534/**
4535 * i40e_vsi_reinit_locked - Reset the VSI
4536 * @vsi: the VSI being configured
4537 *
4538 * Rebuild the ring structs after some configuration
4539 * has changed, e.g. MTU size.
4540 **/
4541static void i40e_vsi_reinit_locked(struct i40e_vsi *vsi)
4542{
4543 struct i40e_pf *pf = vsi->back;
4544
4545 WARN_ON(in_interrupt());
4546 while (test_and_set_bit(__I40E_CONFIG_BUSY, &pf->state))
4547 usleep_range(1000, 2000);
4548 i40e_down(vsi);
4549
4550 /* Give a VF some time to respond to the reset. The
4551 * two second wait is based upon the watchdog cycle in
4552 * the VF driver.
4553 */
4554 if (vsi->type == I40E_VSI_SRIOV)
4555 msleep(2000);
4556 i40e_up(vsi);
4557 clear_bit(__I40E_CONFIG_BUSY, &pf->state);
4558}
4559
4560/**
4561 * i40e_up - Bring the connection back up after being down
4562 * @vsi: the VSI being configured
4563 **/
4564int i40e_up(struct i40e_vsi *vsi)
4565{
4566 int err;
4567
4568 err = i40e_vsi_configure(vsi);
4569 if (!err)
4570 err = i40e_up_complete(vsi);
4571
4572 return err;
4573}
4574
4575/**
4576 * i40e_down - Shutdown the connection processing
4577 * @vsi: the VSI being stopped
4578 **/
4579void i40e_down(struct i40e_vsi *vsi)
4580{
4581 int i;
4582
4583 /* It is assumed that the caller of this function
4584 * sets the vsi->state __I40E_DOWN bit.
4585 */
4586 if (vsi->netdev) {
4587 netif_carrier_off(vsi->netdev);
4588 netif_tx_disable(vsi->netdev);
4589 }
4590 i40e_vsi_disable_irq(vsi);
4591 i40e_vsi_control_rings(vsi, false);
4592 i40e_napi_disable_all(vsi);
4593
4594 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00004595 i40e_clean_tx_ring(vsi->tx_rings[i]);
4596 i40e_clean_rx_ring(vsi->rx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004597 }
4598}
4599
4600/**
4601 * i40e_setup_tc - configure multiple traffic classes
4602 * @netdev: net device to configure
4603 * @tc: number of traffic classes to enable
4604 **/
Vasu Dev38e00432014-08-01 13:27:03 -07004605#ifdef I40E_FCOE
4606int i40e_setup_tc(struct net_device *netdev, u8 tc)
4607#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004608static int i40e_setup_tc(struct net_device *netdev, u8 tc)
Vasu Dev38e00432014-08-01 13:27:03 -07004609#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004610{
4611 struct i40e_netdev_priv *np = netdev_priv(netdev);
4612 struct i40e_vsi *vsi = np->vsi;
4613 struct i40e_pf *pf = vsi->back;
4614 u8 enabled_tc = 0;
4615 int ret = -EINVAL;
4616 int i;
4617
4618 /* Check if DCB enabled to continue */
4619 if (!(pf->flags & I40E_FLAG_DCB_ENABLED)) {
4620 netdev_info(netdev, "DCB is not enabled for adapter\n");
4621 goto exit;
4622 }
4623
4624 /* Check if MFP enabled */
4625 if (pf->flags & I40E_FLAG_MFP_ENABLED) {
4626 netdev_info(netdev, "Configuring TC not supported in MFP mode\n");
4627 goto exit;
4628 }
4629
4630 /* Check whether tc count is within enabled limit */
4631 if (tc > i40e_pf_get_num_tc(pf)) {
4632 netdev_info(netdev, "TC count greater than enabled on link for adapter\n");
4633 goto exit;
4634 }
4635
4636 /* Generate TC map for number of tc requested */
4637 for (i = 0; i < tc; i++)
4638 enabled_tc |= (1 << i);
4639
4640 /* Requesting same TC configuration as already enabled */
4641 if (enabled_tc == vsi->tc_config.enabled_tc)
4642 return 0;
4643
4644 /* Quiesce VSI queues */
4645 i40e_quiesce_vsi(vsi);
4646
4647 /* Configure VSI for enabled TCs */
4648 ret = i40e_vsi_config_tc(vsi, enabled_tc);
4649 if (ret) {
4650 netdev_info(netdev, "Failed configuring TC for VSI seid=%d\n",
4651 vsi->seid);
4652 goto exit;
4653 }
4654
4655 /* Unquiesce VSI */
4656 i40e_unquiesce_vsi(vsi);
4657
4658exit:
4659 return ret;
4660}
4661
4662/**
4663 * i40e_open - Called when a network interface is made active
4664 * @netdev: network interface device structure
4665 *
4666 * The open entry point is called when a network interface is made
4667 * active by the system (IFF_UP). At this point all resources needed
4668 * for transmit and receive operations are allocated, the interrupt
4669 * handler is registered with the OS, the netdev watchdog subtask is
4670 * enabled, and the stack is notified that the interface is ready.
4671 *
4672 * Returns 0 on success, negative value on failure
4673 **/
Vasu Dev38e00432014-08-01 13:27:03 -07004674#ifdef I40E_FCOE
4675int i40e_open(struct net_device *netdev)
4676#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004677static int i40e_open(struct net_device *netdev)
Vasu Dev38e00432014-08-01 13:27:03 -07004678#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004679{
4680 struct i40e_netdev_priv *np = netdev_priv(netdev);
4681 struct i40e_vsi *vsi = np->vsi;
4682 struct i40e_pf *pf = vsi->back;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004683 int err;
4684
Shannon Nelson4eb3f762014-03-06 08:59:58 +00004685 /* disallow open during test or if eeprom is broken */
4686 if (test_bit(__I40E_TESTING, &pf->state) ||
4687 test_bit(__I40E_BAD_EEPROM, &pf->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004688 return -EBUSY;
4689
4690 netif_carrier_off(netdev);
4691
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00004692 err = i40e_vsi_open(vsi);
4693 if (err)
4694 return err;
4695
Jesse Brandeburg059dab62014-04-01 09:07:20 +00004696 /* configure global TSO hardware offload settings */
4697 wr32(&pf->hw, I40E_GLLAN_TSOMSK_F, be32_to_cpu(TCP_FLAG_PSH |
4698 TCP_FLAG_FIN) >> 16);
4699 wr32(&pf->hw, I40E_GLLAN_TSOMSK_M, be32_to_cpu(TCP_FLAG_PSH |
4700 TCP_FLAG_FIN |
4701 TCP_FLAG_CWR) >> 16);
4702 wr32(&pf->hw, I40E_GLLAN_TSOMSK_L, be32_to_cpu(TCP_FLAG_CWR) >> 16);
4703
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00004704#ifdef CONFIG_I40E_VXLAN
4705 vxlan_get_rx_port(netdev);
4706#endif
4707
4708 return 0;
4709}
4710
4711/**
4712 * i40e_vsi_open -
4713 * @vsi: the VSI to open
4714 *
4715 * Finish initialization of the VSI.
4716 *
4717 * Returns 0 on success, negative value on failure
4718 **/
4719int i40e_vsi_open(struct i40e_vsi *vsi)
4720{
4721 struct i40e_pf *pf = vsi->back;
4722 char int_name[IFNAMSIZ];
4723 int err;
4724
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004725 /* allocate descriptors */
4726 err = i40e_vsi_setup_tx_resources(vsi);
4727 if (err)
4728 goto err_setup_tx;
4729 err = i40e_vsi_setup_rx_resources(vsi);
4730 if (err)
4731 goto err_setup_rx;
4732
4733 err = i40e_vsi_configure(vsi);
4734 if (err)
4735 goto err_setup_rx;
4736
Shannon Nelsonc22e3c62014-03-14 07:32:25 +00004737 if (vsi->netdev) {
4738 snprintf(int_name, sizeof(int_name) - 1, "%s-%s",
4739 dev_driver_string(&pf->pdev->dev), vsi->netdev->name);
4740 err = i40e_vsi_request_irq(vsi, int_name);
4741 if (err)
4742 goto err_setup_rx;
4743
4744 /* Notify the stack of the actual queue counts. */
4745 err = netif_set_real_num_tx_queues(vsi->netdev,
4746 vsi->num_queue_pairs);
4747 if (err)
4748 goto err_set_queues;
4749
4750 err = netif_set_real_num_rx_queues(vsi->netdev,
4751 vsi->num_queue_pairs);
4752 if (err)
4753 goto err_set_queues;
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00004754
4755 } else if (vsi->type == I40E_VSI_FDIR) {
4756 snprintf(int_name, sizeof(int_name) - 1, "%s-fdir",
4757 dev_driver_string(&pf->pdev->dev));
4758 err = i40e_vsi_request_irq(vsi, int_name);
Shannon Nelsonc22e3c62014-03-14 07:32:25 +00004759 } else {
Jean Sacrence9ccb12014-05-01 14:31:18 +00004760 err = -EINVAL;
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00004761 goto err_setup_rx;
4762 }
Anjali Singhai Jain25946dd2013-11-26 10:49:14 +00004763
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004764 err = i40e_up_complete(vsi);
4765 if (err)
4766 goto err_up_complete;
4767
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004768 return 0;
4769
4770err_up_complete:
4771 i40e_down(vsi);
Anjali Singhai Jain25946dd2013-11-26 10:49:14 +00004772err_set_queues:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004773 i40e_vsi_free_irq(vsi);
4774err_setup_rx:
4775 i40e_vsi_free_rx_resources(vsi);
4776err_setup_tx:
4777 i40e_vsi_free_tx_resources(vsi);
4778 if (vsi == pf->vsi[pf->lan_vsi])
4779 i40e_do_reset(pf, (1 << __I40E_PF_RESET_REQUESTED));
4780
4781 return err;
4782}
4783
4784/**
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00004785 * i40e_fdir_filter_exit - Cleans up the Flow Director accounting
4786 * @pf: Pointer to pf
4787 *
4788 * This function destroys the hlist where all the Flow Director
4789 * filters were saved.
4790 **/
4791static void i40e_fdir_filter_exit(struct i40e_pf *pf)
4792{
4793 struct i40e_fdir_filter *filter;
4794 struct hlist_node *node2;
4795
4796 hlist_for_each_entry_safe(filter, node2,
4797 &pf->fdir_filter_list, fdir_node) {
4798 hlist_del(&filter->fdir_node);
4799 kfree(filter);
4800 }
4801 pf->fdir_pf_active_filters = 0;
4802}
4803
4804/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004805 * i40e_close - Disables a network interface
4806 * @netdev: network interface device structure
4807 *
4808 * The close entry point is called when an interface is de-activated
4809 * by the OS. The hardware is still under the driver's control, but
4810 * this netdev interface is disabled.
4811 *
4812 * Returns 0, this is not allowed to fail
4813 **/
Vasu Dev38e00432014-08-01 13:27:03 -07004814#ifdef I40E_FCOE
4815int i40e_close(struct net_device *netdev)
4816#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004817static int i40e_close(struct net_device *netdev)
Vasu Dev38e00432014-08-01 13:27:03 -07004818#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004819{
4820 struct i40e_netdev_priv *np = netdev_priv(netdev);
4821 struct i40e_vsi *vsi = np->vsi;
4822
Shannon Nelson90ef8d42014-03-14 07:32:26 +00004823 i40e_vsi_close(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004824
4825 return 0;
4826}
4827
4828/**
4829 * i40e_do_reset - Start a PF or Core Reset sequence
4830 * @pf: board private structure
4831 * @reset_flags: which reset is requested
4832 *
4833 * The essential difference in resets is that the PF Reset
4834 * doesn't clear the packet buffers, doesn't reset the PE
4835 * firmware, and doesn't bother the other PFs on the chip.
4836 **/
4837void i40e_do_reset(struct i40e_pf *pf, u32 reset_flags)
4838{
4839 u32 val;
4840
4841 WARN_ON(in_interrupt());
4842
Mitch Williams263fc482014-04-23 04:50:11 +00004843 if (i40e_check_asq_alive(&pf->hw))
4844 i40e_vc_notify_reset(pf);
4845
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004846 /* do the biggest reset indicated */
4847 if (reset_flags & (1 << __I40E_GLOBAL_RESET_REQUESTED)) {
4848
4849 /* Request a Global Reset
4850 *
4851 * This will start the chip's countdown to the actual full
4852 * chip reset event, and a warning interrupt to be sent
4853 * to all PFs, including the requestor. Our handler
4854 * for the warning interrupt will deal with the shutdown
4855 * and recovery of the switch setup.
4856 */
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00004857 dev_dbg(&pf->pdev->dev, "GlobalR requested\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004858 val = rd32(&pf->hw, I40E_GLGEN_RTRIG);
4859 val |= I40E_GLGEN_RTRIG_GLOBR_MASK;
4860 wr32(&pf->hw, I40E_GLGEN_RTRIG, val);
4861
4862 } else if (reset_flags & (1 << __I40E_CORE_RESET_REQUESTED)) {
4863
4864 /* Request a Core Reset
4865 *
4866 * Same as Global Reset, except does *not* include the MAC/PHY
4867 */
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00004868 dev_dbg(&pf->pdev->dev, "CoreR requested\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004869 val = rd32(&pf->hw, I40E_GLGEN_RTRIG);
4870 val |= I40E_GLGEN_RTRIG_CORER_MASK;
4871 wr32(&pf->hw, I40E_GLGEN_RTRIG, val);
4872 i40e_flush(&pf->hw);
4873
Shannon Nelson7823fe32013-11-16 10:00:45 +00004874 } else if (reset_flags & (1 << __I40E_EMP_RESET_REQUESTED)) {
4875
4876 /* Request a Firmware Reset
4877 *
4878 * Same as Global reset, plus restarting the
4879 * embedded firmware engine.
4880 */
4881 /* enable EMP Reset */
4882 val = rd32(&pf->hw, I40E_GLGEN_RSTENA_EMP);
4883 val |= I40E_GLGEN_RSTENA_EMP_EMP_RST_ENA_MASK;
4884 wr32(&pf->hw, I40E_GLGEN_RSTENA_EMP, val);
4885
4886 /* force the reset */
4887 val = rd32(&pf->hw, I40E_GLGEN_RTRIG);
4888 val |= I40E_GLGEN_RTRIG_EMPFWR_MASK;
4889 wr32(&pf->hw, I40E_GLGEN_RTRIG, val);
4890 i40e_flush(&pf->hw);
4891
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004892 } else if (reset_flags & (1 << __I40E_PF_RESET_REQUESTED)) {
4893
4894 /* Request a PF Reset
4895 *
4896 * Resets only the PF-specific registers
4897 *
4898 * This goes directly to the tear-down and rebuild of
4899 * the switch, since we need to do all the recovery as
4900 * for the Core Reset.
4901 */
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00004902 dev_dbg(&pf->pdev->dev, "PFR requested\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004903 i40e_handle_reset_warning(pf);
4904
4905 } else if (reset_flags & (1 << __I40E_REINIT_REQUESTED)) {
4906 int v;
4907
4908 /* Find the VSI(s) that requested a re-init */
4909 dev_info(&pf->pdev->dev,
4910 "VSI reinit requested\n");
Mitch Williams505682c2014-05-20 08:01:37 +00004911 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004912 struct i40e_vsi *vsi = pf->vsi[v];
4913 if (vsi != NULL &&
4914 test_bit(__I40E_REINIT_REQUESTED, &vsi->state)) {
4915 i40e_vsi_reinit_locked(pf->vsi[v]);
4916 clear_bit(__I40E_REINIT_REQUESTED, &vsi->state);
4917 }
4918 }
4919
4920 /* no further action needed, so return now */
4921 return;
Neerav Parikhb5d06f02014-06-03 23:50:17 +00004922 } else if (reset_flags & (1 << __I40E_DOWN_REQUESTED)) {
4923 int v;
4924
4925 /* Find the VSI(s) that needs to be brought down */
4926 dev_info(&pf->pdev->dev, "VSI down requested\n");
4927 for (v = 0; v < pf->num_alloc_vsi; v++) {
4928 struct i40e_vsi *vsi = pf->vsi[v];
4929 if (vsi != NULL &&
4930 test_bit(__I40E_DOWN_REQUESTED, &vsi->state)) {
4931 set_bit(__I40E_DOWN, &vsi->state);
4932 i40e_down(vsi);
4933 clear_bit(__I40E_DOWN_REQUESTED, &vsi->state);
4934 }
4935 }
4936
4937 /* no further action needed, so return now */
4938 return;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004939 } else {
4940 dev_info(&pf->pdev->dev,
4941 "bad reset request 0x%08x\n", reset_flags);
4942 return;
4943 }
4944}
4945
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004946#ifdef CONFIG_I40E_DCB
4947/**
4948 * i40e_dcb_need_reconfig - Check if DCB needs reconfig
4949 * @pf: board private structure
4950 * @old_cfg: current DCB config
4951 * @new_cfg: new DCB config
4952 **/
4953bool i40e_dcb_need_reconfig(struct i40e_pf *pf,
4954 struct i40e_dcbx_config *old_cfg,
4955 struct i40e_dcbx_config *new_cfg)
4956{
4957 bool need_reconfig = false;
4958
4959 /* Check if ETS configuration has changed */
4960 if (memcmp(&new_cfg->etscfg,
4961 &old_cfg->etscfg,
4962 sizeof(new_cfg->etscfg))) {
4963 /* If Priority Table has changed reconfig is needed */
4964 if (memcmp(&new_cfg->etscfg.prioritytable,
4965 &old_cfg->etscfg.prioritytable,
4966 sizeof(new_cfg->etscfg.prioritytable))) {
4967 need_reconfig = true;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00004968 dev_dbg(&pf->pdev->dev, "ETS UP2TC changed.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004969 }
4970
4971 if (memcmp(&new_cfg->etscfg.tcbwtable,
4972 &old_cfg->etscfg.tcbwtable,
4973 sizeof(new_cfg->etscfg.tcbwtable)))
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00004974 dev_dbg(&pf->pdev->dev, "ETS TC BW Table changed.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004975
4976 if (memcmp(&new_cfg->etscfg.tsatable,
4977 &old_cfg->etscfg.tsatable,
4978 sizeof(new_cfg->etscfg.tsatable)))
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00004979 dev_dbg(&pf->pdev->dev, "ETS TSA Table changed.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004980 }
4981
4982 /* Check if PFC configuration has changed */
4983 if (memcmp(&new_cfg->pfc,
4984 &old_cfg->pfc,
4985 sizeof(new_cfg->pfc))) {
4986 need_reconfig = true;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00004987 dev_dbg(&pf->pdev->dev, "PFC config change detected.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004988 }
4989
4990 /* Check if APP Table has changed */
4991 if (memcmp(&new_cfg->app,
4992 &old_cfg->app,
Dave Jones3d9667a2014-01-27 23:11:09 -05004993 sizeof(new_cfg->app))) {
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004994 need_reconfig = true;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00004995 dev_dbg(&pf->pdev->dev, "APP Table change detected.\n");
Dave Jones3d9667a2014-01-27 23:11:09 -05004996 }
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004997
4998 return need_reconfig;
4999}
5000
5001/**
5002 * i40e_handle_lldp_event - Handle LLDP Change MIB event
5003 * @pf: board private structure
5004 * @e: event info posted on ARQ
5005 **/
5006static int i40e_handle_lldp_event(struct i40e_pf *pf,
5007 struct i40e_arq_event_info *e)
5008{
5009 struct i40e_aqc_lldp_get_mib *mib =
5010 (struct i40e_aqc_lldp_get_mib *)&e->desc.params.raw;
5011 struct i40e_hw *hw = &pf->hw;
5012 struct i40e_dcbx_config *dcbx_cfg = &hw->local_dcbx_config;
5013 struct i40e_dcbx_config tmp_dcbx_cfg;
5014 bool need_reconfig = false;
5015 int ret = 0;
5016 u8 type;
5017
Neerav Parikh4d9b6042014-05-22 06:31:51 +00005018 /* Not DCB capable or capability disabled */
5019 if (!(pf->flags & I40E_FLAG_DCB_CAPABLE))
5020 return ret;
5021
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005022 /* Ignore if event is not for Nearest Bridge */
5023 type = ((mib->type >> I40E_AQ_LLDP_BRIDGE_TYPE_SHIFT)
5024 & I40E_AQ_LLDP_BRIDGE_TYPE_MASK);
5025 if (type != I40E_AQ_LLDP_BRIDGE_TYPE_NEAREST_BRIDGE)
5026 return ret;
5027
5028 /* Check MIB Type and return if event for Remote MIB update */
5029 type = mib->type & I40E_AQ_LLDP_MIB_TYPE_MASK;
5030 if (type == I40E_AQ_LLDP_MIB_REMOTE) {
5031 /* Update the remote cached instance and return */
5032 ret = i40e_aq_get_dcb_config(hw, I40E_AQ_LLDP_MIB_REMOTE,
5033 I40E_AQ_LLDP_BRIDGE_TYPE_NEAREST_BRIDGE,
5034 &hw->remote_dcbx_config);
5035 goto exit;
5036 }
5037
5038 /* Convert/store the DCBX data from LLDPDU temporarily */
5039 memset(&tmp_dcbx_cfg, 0, sizeof(tmp_dcbx_cfg));
5040 ret = i40e_lldp_to_dcb_config(e->msg_buf, &tmp_dcbx_cfg);
5041 if (ret) {
5042 /* Error in LLDPDU parsing return */
5043 dev_info(&pf->pdev->dev, "Failed parsing LLDPDU from event buffer\n");
5044 goto exit;
5045 }
5046
5047 /* No change detected in DCBX configs */
5048 if (!memcmp(&tmp_dcbx_cfg, dcbx_cfg, sizeof(tmp_dcbx_cfg))) {
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005049 dev_dbg(&pf->pdev->dev, "No change detected in DCBX configuration.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005050 goto exit;
5051 }
5052
5053 need_reconfig = i40e_dcb_need_reconfig(pf, dcbx_cfg, &tmp_dcbx_cfg);
5054
5055 i40e_dcbnl_flush_apps(pf, &tmp_dcbx_cfg);
5056
5057 /* Overwrite the new configuration */
5058 *dcbx_cfg = tmp_dcbx_cfg;
5059
5060 if (!need_reconfig)
5061 goto exit;
5062
Neerav Parikh4d9b6042014-05-22 06:31:51 +00005063 /* Enable DCB tagging only when more than one TC */
5064 if (i40e_dcb_get_num_tc(dcbx_cfg) > 1)
5065 pf->flags |= I40E_FLAG_DCB_ENABLED;
5066 else
5067 pf->flags &= ~I40E_FLAG_DCB_ENABLED;
5068
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005069 /* Reconfiguration needed quiesce all VSIs */
5070 i40e_pf_quiesce_all_vsi(pf);
5071
5072 /* Changes in configuration update VEB/VSI */
5073 i40e_dcb_reconfigure(pf);
5074
5075 i40e_pf_unquiesce_all_vsi(pf);
5076exit:
5077 return ret;
5078}
5079#endif /* CONFIG_I40E_DCB */
5080
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005081/**
Anjali Singhai Jain23326182013-11-26 10:49:22 +00005082 * i40e_do_reset_safe - Protected reset path for userland calls.
5083 * @pf: board private structure
5084 * @reset_flags: which reset is requested
5085 *
5086 **/
5087void i40e_do_reset_safe(struct i40e_pf *pf, u32 reset_flags)
5088{
5089 rtnl_lock();
5090 i40e_do_reset(pf, reset_flags);
5091 rtnl_unlock();
5092}
5093
5094/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005095 * i40e_handle_lan_overflow_event - Handler for LAN queue overflow event
5096 * @pf: board private structure
5097 * @e: event info posted on ARQ
5098 *
5099 * Handler for LAN Queue Overflow Event generated by the firmware for PF
5100 * and VF queues
5101 **/
5102static void i40e_handle_lan_overflow_event(struct i40e_pf *pf,
5103 struct i40e_arq_event_info *e)
5104{
5105 struct i40e_aqc_lan_overflow *data =
5106 (struct i40e_aqc_lan_overflow *)&e->desc.params.raw;
5107 u32 queue = le32_to_cpu(data->prtdcb_rupto);
5108 u32 qtx_ctl = le32_to_cpu(data->otx_ctl);
5109 struct i40e_hw *hw = &pf->hw;
5110 struct i40e_vf *vf;
5111 u16 vf_id;
5112
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005113 dev_dbg(&pf->pdev->dev, "overflow Rx Queue Number = %d QTX_CTL=0x%08x\n",
5114 queue, qtx_ctl);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005115
5116 /* Queue belongs to VF, find the VF and issue VF reset */
5117 if (((qtx_ctl & I40E_QTX_CTL_PFVF_Q_MASK)
5118 >> I40E_QTX_CTL_PFVF_Q_SHIFT) == I40E_QTX_CTL_VF_QUEUE) {
5119 vf_id = (u16)((qtx_ctl & I40E_QTX_CTL_VFVM_INDX_MASK)
5120 >> I40E_QTX_CTL_VFVM_INDX_SHIFT);
5121 vf_id -= hw->func_caps.vf_base_id;
5122 vf = &pf->vf[vf_id];
5123 i40e_vc_notify_vf_reset(vf);
5124 /* Allow VF to process pending reset notification */
5125 msleep(20);
5126 i40e_reset_vf(vf, false);
5127 }
5128}
5129
5130/**
5131 * i40e_service_event_complete - Finish up the service event
5132 * @pf: board private structure
5133 **/
5134static void i40e_service_event_complete(struct i40e_pf *pf)
5135{
5136 BUG_ON(!test_bit(__I40E_SERVICE_SCHED, &pf->state));
5137
5138 /* flush memory to make sure state is correct before next watchog */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01005139 smp_mb__before_atomic();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005140 clear_bit(__I40E_SERVICE_SCHED, &pf->state);
5141}
5142
5143/**
Anjali Singhai Jain12957382014-06-04 04:22:47 +00005144 * i40e_get_cur_guaranteed_fd_count - Get the consumed guaranteed FD filters
5145 * @pf: board private structure
5146 **/
5147int i40e_get_cur_guaranteed_fd_count(struct i40e_pf *pf)
5148{
5149 int val, fcnt_prog;
5150
5151 val = rd32(&pf->hw, I40E_PFQF_FDSTAT);
5152 fcnt_prog = (val & I40E_PFQF_FDSTAT_GUARANT_CNT_MASK);
5153 return fcnt_prog;
5154}
5155
5156/**
5157 * i40e_get_current_fd_count - Get the count of total FD filters programmed
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005158 * @pf: board private structure
5159 **/
5160int i40e_get_current_fd_count(struct i40e_pf *pf)
5161{
5162 int val, fcnt_prog;
5163 val = rd32(&pf->hw, I40E_PFQF_FDSTAT);
5164 fcnt_prog = (val & I40E_PFQF_FDSTAT_GUARANT_CNT_MASK) +
5165 ((val & I40E_PFQF_FDSTAT_BEST_CNT_MASK) >>
5166 I40E_PFQF_FDSTAT_BEST_CNT_SHIFT);
5167 return fcnt_prog;
5168}
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005169
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005170/**
5171 * i40e_fdir_check_and_reenable - Function to reenabe FD ATR or SB if disabled
5172 * @pf: board private structure
5173 **/
5174void i40e_fdir_check_and_reenable(struct i40e_pf *pf)
5175{
5176 u32 fcnt_prog, fcnt_avail;
5177
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005178 if (test_bit(__I40E_FD_FLUSH_REQUESTED, &pf->state))
5179 return;
5180
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005181 /* Check if, FD SB or ATR was auto disabled and if there is enough room
5182 * to re-enable
5183 */
Anjali Singhai Jain12957382014-06-04 04:22:47 +00005184 fcnt_prog = i40e_get_cur_guaranteed_fd_count(pf);
5185 fcnt_avail = pf->fdir_pf_filter_count;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005186 if ((fcnt_prog < (fcnt_avail - I40E_FDIR_BUFFER_HEAD_ROOM)) ||
5187 (pf->fd_add_err == 0) ||
5188 (i40e_get_current_atr_cnt(pf) < pf->fd_atr_cnt)) {
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005189 if ((pf->flags & I40E_FLAG_FD_SB_ENABLED) &&
5190 (pf->auto_disable_flags & I40E_FLAG_FD_SB_ENABLED)) {
5191 pf->auto_disable_flags &= ~I40E_FLAG_FD_SB_ENABLED;
5192 dev_info(&pf->pdev->dev, "FD Sideband/ntuple is being enabled since we have space in the table now\n");
5193 }
5194 }
5195 /* Wait for some more space to be available to turn on ATR */
5196 if (fcnt_prog < (fcnt_avail - I40E_FDIR_BUFFER_HEAD_ROOM * 2)) {
5197 if ((pf->flags & I40E_FLAG_FD_ATR_ENABLED) &&
5198 (pf->auto_disable_flags & I40E_FLAG_FD_ATR_ENABLED)) {
5199 pf->auto_disable_flags &= ~I40E_FLAG_FD_ATR_ENABLED;
5200 dev_info(&pf->pdev->dev, "ATR is being enabled since we have space in the table now\n");
5201 }
5202 }
5203}
5204
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005205#define I40E_MIN_FD_FLUSH_INTERVAL 10
5206/**
5207 * i40e_fdir_flush_and_replay - Function to flush all FD filters and replay SB
5208 * @pf: board private structure
5209 **/
5210static void i40e_fdir_flush_and_replay(struct i40e_pf *pf)
5211{
5212 int flush_wait_retry = 50;
5213 int reg;
5214
5215 if (time_after(jiffies, pf->fd_flush_timestamp +
5216 (I40E_MIN_FD_FLUSH_INTERVAL * HZ))) {
5217 set_bit(__I40E_FD_FLUSH_REQUESTED, &pf->state);
5218 pf->fd_flush_timestamp = jiffies;
5219 pf->auto_disable_flags |= I40E_FLAG_FD_SB_ENABLED;
5220 pf->flags &= ~I40E_FLAG_FD_ATR_ENABLED;
5221 /* flush all filters */
5222 wr32(&pf->hw, I40E_PFQF_CTL_1,
5223 I40E_PFQF_CTL_1_CLEARFDTABLE_MASK);
5224 i40e_flush(&pf->hw);
Anjali Singhai Jain60793f42014-07-09 07:46:23 +00005225 pf->fd_flush_cnt++;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005226 pf->fd_add_err = 0;
5227 do {
5228 /* Check FD flush status every 5-6msec */
5229 usleep_range(5000, 6000);
5230 reg = rd32(&pf->hw, I40E_PFQF_CTL_1);
5231 if (!(reg & I40E_PFQF_CTL_1_CLEARFDTABLE_MASK))
5232 break;
5233 } while (flush_wait_retry--);
5234 if (reg & I40E_PFQF_CTL_1_CLEARFDTABLE_MASK) {
5235 dev_warn(&pf->pdev->dev, "FD table did not flush, needs more time\n");
5236 } else {
5237 /* replay sideband filters */
5238 i40e_fdir_filter_restore(pf->vsi[pf->lan_vsi]);
5239
5240 pf->flags |= I40E_FLAG_FD_ATR_ENABLED;
5241 pf->auto_disable_flags &= ~I40E_FLAG_FD_ATR_ENABLED;
5242 pf->auto_disable_flags &= ~I40E_FLAG_FD_SB_ENABLED;
5243 clear_bit(__I40E_FD_FLUSH_REQUESTED, &pf->state);
5244 dev_info(&pf->pdev->dev, "FD Filter table flushed and FD-SB replayed.\n");
5245 }
5246 }
5247}
5248
5249/**
5250 * i40e_get_current_atr_count - Get the count of total FD ATR filters programmed
5251 * @pf: board private structure
5252 **/
5253int i40e_get_current_atr_cnt(struct i40e_pf *pf)
5254{
5255 return i40e_get_current_fd_count(pf) - pf->fdir_pf_active_filters;
5256}
5257
5258/* We can see up to 256 filter programming desc in transit if the filters are
5259 * being applied really fast; before we see the first
5260 * filter miss error on Rx queue 0. Accumulating enough error messages before
5261 * reacting will make sure we don't cause flush too often.
5262 */
5263#define I40E_MAX_FD_PROGRAM_ERROR 256
5264
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005265/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005266 * i40e_fdir_reinit_subtask - Worker thread to reinit FDIR filter table
5267 * @pf: board private structure
5268 **/
5269static void i40e_fdir_reinit_subtask(struct i40e_pf *pf)
5270{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005271
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005272 /* if interface is down do nothing */
5273 if (test_bit(__I40E_DOWN, &pf->state))
5274 return;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005275
5276 if ((pf->fd_add_err >= I40E_MAX_FD_PROGRAM_ERROR) &&
5277 (i40e_get_current_atr_cnt(pf) >= pf->fd_atr_cnt) &&
5278 (i40e_get_current_atr_cnt(pf) > pf->fdir_pf_filter_count))
5279 i40e_fdir_flush_and_replay(pf);
5280
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005281 i40e_fdir_check_and_reenable(pf);
5282
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005283}
5284
5285/**
5286 * i40e_vsi_link_event - notify VSI of a link event
5287 * @vsi: vsi to be notified
5288 * @link_up: link up or down
5289 **/
5290static void i40e_vsi_link_event(struct i40e_vsi *vsi, bool link_up)
5291{
Jesse Brandeburg32b5b812014-08-12 06:33:14 +00005292 if (!vsi || test_bit(__I40E_DOWN, &vsi->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005293 return;
5294
5295 switch (vsi->type) {
5296 case I40E_VSI_MAIN:
Vasu Dev38e00432014-08-01 13:27:03 -07005297#ifdef I40E_FCOE
5298 case I40E_VSI_FCOE:
5299#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005300 if (!vsi->netdev || !vsi->netdev_registered)
5301 break;
5302
5303 if (link_up) {
5304 netif_carrier_on(vsi->netdev);
5305 netif_tx_wake_all_queues(vsi->netdev);
5306 } else {
5307 netif_carrier_off(vsi->netdev);
5308 netif_tx_stop_all_queues(vsi->netdev);
5309 }
5310 break;
5311
5312 case I40E_VSI_SRIOV:
5313 break;
5314
5315 case I40E_VSI_VMDQ2:
5316 case I40E_VSI_CTRL:
5317 case I40E_VSI_MIRROR:
5318 default:
5319 /* there is no notification for other VSIs */
5320 break;
5321 }
5322}
5323
5324/**
5325 * i40e_veb_link_event - notify elements on the veb of a link event
5326 * @veb: veb to be notified
5327 * @link_up: link up or down
5328 **/
5329static void i40e_veb_link_event(struct i40e_veb *veb, bool link_up)
5330{
5331 struct i40e_pf *pf;
5332 int i;
5333
5334 if (!veb || !veb->pf)
5335 return;
5336 pf = veb->pf;
5337
5338 /* depth first... */
5339 for (i = 0; i < I40E_MAX_VEB; i++)
5340 if (pf->veb[i] && (pf->veb[i]->uplink_seid == veb->seid))
5341 i40e_veb_link_event(pf->veb[i], link_up);
5342
5343 /* ... now the local VSIs */
Mitch Williams505682c2014-05-20 08:01:37 +00005344 for (i = 0; i < pf->num_alloc_vsi; i++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005345 if (pf->vsi[i] && (pf->vsi[i]->uplink_seid == veb->seid))
5346 i40e_vsi_link_event(pf->vsi[i], link_up);
5347}
5348
5349/**
5350 * i40e_link_event - Update netif_carrier status
5351 * @pf: board private structure
5352 **/
5353static void i40e_link_event(struct i40e_pf *pf)
5354{
5355 bool new_link, old_link;
5356
Jesse Brandeburg1e701e02014-09-13 07:40:42 +00005357 /* set this to force the get_link_status call to refresh state */
5358 pf->hw.phy.get_link_info = true;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005359
Jesse Brandeburg1e701e02014-09-13 07:40:42 +00005360 old_link = (pf->hw.phy.link_info_old.link_info & I40E_AQ_LINK_UP);
5361 new_link = i40e_get_link_status(&pf->hw);
5362
5363 if (new_link == old_link &&
5364 new_link == netif_carrier_ok(pf->vsi[pf->lan_vsi]->netdev))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005365 return;
Anjali Singhai6d779b42013-09-28 06:00:02 +00005366 if (!test_bit(__I40E_DOWN, &pf->vsi[pf->lan_vsi]->state))
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005367 i40e_print_link_message(pf->vsi[pf->lan_vsi], new_link);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005368
5369 /* Notify the base of the switch tree connected to
5370 * the link. Floating VEBs are not notified.
5371 */
5372 if (pf->lan_veb != I40E_NO_VEB && pf->veb[pf->lan_veb])
5373 i40e_veb_link_event(pf->veb[pf->lan_veb], new_link);
5374 else
5375 i40e_vsi_link_event(pf->vsi[pf->lan_vsi], new_link);
5376
5377 if (pf->vf)
5378 i40e_vc_notify_link_state(pf);
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00005379
5380 if (pf->flags & I40E_FLAG_PTP)
5381 i40e_ptp_set_increment(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005382}
5383
5384/**
5385 * i40e_check_hang_subtask - Check for hung queues and dropped interrupts
5386 * @pf: board private structure
5387 *
5388 * Set the per-queue flags to request a check for stuck queues in the irq
5389 * clean functions, then force interrupts to be sure the irq clean is called.
5390 **/
5391static void i40e_check_hang_subtask(struct i40e_pf *pf)
5392{
5393 int i, v;
5394
5395 /* If we're down or resetting, just bail */
5396 if (test_bit(__I40E_CONFIG_BUSY, &pf->state))
5397 return;
5398
5399 /* for each VSI/netdev
5400 * for each Tx queue
5401 * set the check flag
5402 * for each q_vector
5403 * force an interrupt
5404 */
Mitch Williams505682c2014-05-20 08:01:37 +00005405 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005406 struct i40e_vsi *vsi = pf->vsi[v];
5407 int armed = 0;
5408
5409 if (!pf->vsi[v] ||
5410 test_bit(__I40E_DOWN, &vsi->state) ||
5411 (vsi->netdev && !netif_carrier_ok(vsi->netdev)))
5412 continue;
5413
5414 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00005415 set_check_for_tx_hang(vsi->tx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005416 if (test_bit(__I40E_HANG_CHECK_ARMED,
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00005417 &vsi->tx_rings[i]->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005418 armed++;
5419 }
5420
5421 if (armed) {
5422 if (!(pf->flags & I40E_FLAG_MSIX_ENABLED)) {
5423 wr32(&vsi->back->hw, I40E_PFINT_DYN_CTL0,
5424 (I40E_PFINT_DYN_CTL0_INTENA_MASK |
5425 I40E_PFINT_DYN_CTL0_SWINT_TRIG_MASK));
5426 } else {
5427 u16 vec = vsi->base_vector - 1;
5428 u32 val = (I40E_PFINT_DYN_CTLN_INTENA_MASK |
5429 I40E_PFINT_DYN_CTLN_SWINT_TRIG_MASK);
5430 for (i = 0; i < vsi->num_q_vectors; i++, vec++)
5431 wr32(&vsi->back->hw,
5432 I40E_PFINT_DYN_CTLN(vec), val);
5433 }
5434 i40e_flush(&vsi->back->hw);
5435 }
5436 }
5437}
5438
5439/**
5440 * i40e_watchdog_subtask - Check and bring link up
5441 * @pf: board private structure
5442 **/
5443static void i40e_watchdog_subtask(struct i40e_pf *pf)
5444{
5445 int i;
5446
5447 /* if interface is down do nothing */
5448 if (test_bit(__I40E_DOWN, &pf->state) ||
5449 test_bit(__I40E_CONFIG_BUSY, &pf->state))
5450 return;
5451
5452 /* Update the stats for active netdevs so the network stack
5453 * can look at updated numbers whenever it cares to
5454 */
Mitch Williams505682c2014-05-20 08:01:37 +00005455 for (i = 0; i < pf->num_alloc_vsi; i++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005456 if (pf->vsi[i] && pf->vsi[i]->netdev)
5457 i40e_update_stats(pf->vsi[i]);
5458
5459 /* Update the stats for the active switching components */
5460 for (i = 0; i < I40E_MAX_VEB; i++)
5461 if (pf->veb[i])
5462 i40e_update_veb_stats(pf->veb[i]);
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00005463
5464 i40e_ptp_rx_hang(pf->vsi[pf->lan_vsi]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005465}
5466
5467/**
5468 * i40e_reset_subtask - Set up for resetting the device and driver
5469 * @pf: board private structure
5470 **/
5471static void i40e_reset_subtask(struct i40e_pf *pf)
5472{
5473 u32 reset_flags = 0;
5474
Anjali Singhai Jain23326182013-11-26 10:49:22 +00005475 rtnl_lock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005476 if (test_bit(__I40E_REINIT_REQUESTED, &pf->state)) {
5477 reset_flags |= (1 << __I40E_REINIT_REQUESTED);
5478 clear_bit(__I40E_REINIT_REQUESTED, &pf->state);
5479 }
5480 if (test_bit(__I40E_PF_RESET_REQUESTED, &pf->state)) {
5481 reset_flags |= (1 << __I40E_PF_RESET_REQUESTED);
5482 clear_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
5483 }
5484 if (test_bit(__I40E_CORE_RESET_REQUESTED, &pf->state)) {
5485 reset_flags |= (1 << __I40E_CORE_RESET_REQUESTED);
5486 clear_bit(__I40E_CORE_RESET_REQUESTED, &pf->state);
5487 }
5488 if (test_bit(__I40E_GLOBAL_RESET_REQUESTED, &pf->state)) {
5489 reset_flags |= (1 << __I40E_GLOBAL_RESET_REQUESTED);
5490 clear_bit(__I40E_GLOBAL_RESET_REQUESTED, &pf->state);
5491 }
Neerav Parikhb5d06f02014-06-03 23:50:17 +00005492 if (test_bit(__I40E_DOWN_REQUESTED, &pf->state)) {
5493 reset_flags |= (1 << __I40E_DOWN_REQUESTED);
5494 clear_bit(__I40E_DOWN_REQUESTED, &pf->state);
5495 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005496
5497 /* If there's a recovery already waiting, it takes
5498 * precedence before starting a new reset sequence.
5499 */
5500 if (test_bit(__I40E_RESET_INTR_RECEIVED, &pf->state)) {
5501 i40e_handle_reset_warning(pf);
Anjali Singhai Jain23326182013-11-26 10:49:22 +00005502 goto unlock;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005503 }
5504
5505 /* If we're already down or resetting, just bail */
5506 if (reset_flags &&
5507 !test_bit(__I40E_DOWN, &pf->state) &&
5508 !test_bit(__I40E_CONFIG_BUSY, &pf->state))
5509 i40e_do_reset(pf, reset_flags);
Anjali Singhai Jain23326182013-11-26 10:49:22 +00005510
5511unlock:
5512 rtnl_unlock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005513}
5514
5515/**
5516 * i40e_handle_link_event - Handle link event
5517 * @pf: board private structure
5518 * @e: event info posted on ARQ
5519 **/
5520static void i40e_handle_link_event(struct i40e_pf *pf,
5521 struct i40e_arq_event_info *e)
5522{
5523 struct i40e_hw *hw = &pf->hw;
5524 struct i40e_aqc_get_link_status *status =
5525 (struct i40e_aqc_get_link_status *)&e->desc.params.raw;
5526 struct i40e_link_status *hw_link_info = &hw->phy.link_info;
5527
5528 /* save off old link status information */
5529 memcpy(&pf->hw.phy.link_info_old, hw_link_info,
5530 sizeof(pf->hw.phy.link_info_old));
5531
Jesse Brandeburg1e701e02014-09-13 07:40:42 +00005532 /* Do a new status request to re-enable LSE reporting
5533 * and load new status information into the hw struct
5534 * This completely ignores any state information
5535 * in the ARQ event info, instead choosing to always
5536 * issue the AQ update link status command.
5537 */
5538 i40e_link_event(pf);
5539
Carolyn Wyborny7b592f62014-07-10 07:58:19 +00005540 /* check for unqualified module, if link is down */
5541 if ((status->link_info & I40E_AQ_MEDIA_AVAILABLE) &&
5542 (!(status->an_info & I40E_AQ_QUALIFIED_MODULE)) &&
5543 (!(status->link_info & I40E_AQ_LINK_UP)))
5544 dev_err(&pf->pdev->dev,
5545 "The driver failed to link because an unqualified module was detected.\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005546}
5547
5548/**
5549 * i40e_clean_adminq_subtask - Clean the AdminQ rings
5550 * @pf: board private structure
5551 **/
5552static void i40e_clean_adminq_subtask(struct i40e_pf *pf)
5553{
5554 struct i40e_arq_event_info event;
5555 struct i40e_hw *hw = &pf->hw;
5556 u16 pending, i = 0;
5557 i40e_status ret;
5558 u16 opcode;
Shannon Nelson86df2422014-05-20 08:01:35 +00005559 u32 oldval;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005560 u32 val;
5561
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00005562 /* Do not run clean AQ when PF reset fails */
5563 if (test_bit(__I40E_RESET_FAILED, &pf->state))
5564 return;
5565
Shannon Nelson86df2422014-05-20 08:01:35 +00005566 /* check for error indications */
5567 val = rd32(&pf->hw, pf->hw.aq.arq.len);
5568 oldval = val;
5569 if (val & I40E_PF_ARQLEN_ARQVFE_MASK) {
5570 dev_info(&pf->pdev->dev, "ARQ VF Error detected\n");
5571 val &= ~I40E_PF_ARQLEN_ARQVFE_MASK;
5572 }
5573 if (val & I40E_PF_ARQLEN_ARQOVFL_MASK) {
5574 dev_info(&pf->pdev->dev, "ARQ Overflow Error detected\n");
5575 val &= ~I40E_PF_ARQLEN_ARQOVFL_MASK;
5576 }
5577 if (val & I40E_PF_ARQLEN_ARQCRIT_MASK) {
5578 dev_info(&pf->pdev->dev, "ARQ Critical Error detected\n");
5579 val &= ~I40E_PF_ARQLEN_ARQCRIT_MASK;
5580 }
5581 if (oldval != val)
5582 wr32(&pf->hw, pf->hw.aq.arq.len, val);
5583
5584 val = rd32(&pf->hw, pf->hw.aq.asq.len);
5585 oldval = val;
5586 if (val & I40E_PF_ATQLEN_ATQVFE_MASK) {
5587 dev_info(&pf->pdev->dev, "ASQ VF Error detected\n");
5588 val &= ~I40E_PF_ATQLEN_ATQVFE_MASK;
5589 }
5590 if (val & I40E_PF_ATQLEN_ATQOVFL_MASK) {
5591 dev_info(&pf->pdev->dev, "ASQ Overflow Error detected\n");
5592 val &= ~I40E_PF_ATQLEN_ATQOVFL_MASK;
5593 }
5594 if (val & I40E_PF_ATQLEN_ATQCRIT_MASK) {
5595 dev_info(&pf->pdev->dev, "ASQ Critical Error detected\n");
5596 val &= ~I40E_PF_ATQLEN_ATQCRIT_MASK;
5597 }
5598 if (oldval != val)
5599 wr32(&pf->hw, pf->hw.aq.asq.len, val);
5600
Mitch Williams3197ce22013-11-28 06:39:39 +00005601 event.msg_size = I40E_MAX_AQ_BUF_SIZE;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005602 event.msg_buf = kzalloc(event.msg_size, GFP_KERNEL);
5603 if (!event.msg_buf)
5604 return;
5605
5606 do {
Mitch Williams2f019122013-11-28 06:39:33 +00005607 event.msg_size = I40E_MAX_AQ_BUF_SIZE; /* reinit each time */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005608 ret = i40e_clean_arq_element(hw, &event, &pending);
Mitch Williams56497972014-06-04 08:45:18 +00005609 if (ret == I40E_ERR_ADMIN_QUEUE_NO_WORK)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005610 break;
Mitch Williams56497972014-06-04 08:45:18 +00005611 else if (ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005612 dev_info(&pf->pdev->dev, "ARQ event error %d\n", ret);
5613 break;
5614 }
5615
5616 opcode = le16_to_cpu(event.desc.opcode);
5617 switch (opcode) {
5618
5619 case i40e_aqc_opc_get_link_status:
5620 i40e_handle_link_event(pf, &event);
5621 break;
5622 case i40e_aqc_opc_send_msg_to_pf:
5623 ret = i40e_vc_process_vf_msg(pf,
5624 le16_to_cpu(event.desc.retval),
5625 le32_to_cpu(event.desc.cookie_high),
5626 le32_to_cpu(event.desc.cookie_low),
5627 event.msg_buf,
5628 event.msg_size);
5629 break;
5630 case i40e_aqc_opc_lldp_update_mib:
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005631 dev_dbg(&pf->pdev->dev, "ARQ: Update LLDP MIB event received\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005632#ifdef CONFIG_I40E_DCB
5633 rtnl_lock();
5634 ret = i40e_handle_lldp_event(pf, &event);
5635 rtnl_unlock();
5636#endif /* CONFIG_I40E_DCB */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005637 break;
5638 case i40e_aqc_opc_event_lan_overflow:
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005639 dev_dbg(&pf->pdev->dev, "ARQ LAN queue overflow event received\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005640 i40e_handle_lan_overflow_event(pf, &event);
5641 break;
Shannon Nelson0467bc92013-12-18 13:45:58 +00005642 case i40e_aqc_opc_send_msg_to_peer:
5643 dev_info(&pf->pdev->dev, "ARQ: Msg from other pf\n");
5644 break;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005645 default:
5646 dev_info(&pf->pdev->dev,
Shannon Nelson0467bc92013-12-18 13:45:58 +00005647 "ARQ Error: Unknown event 0x%04x received\n",
5648 opcode);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005649 break;
5650 }
5651 } while (pending && (i++ < pf->adminq_work_limit));
5652
5653 clear_bit(__I40E_ADMINQ_EVENT_PENDING, &pf->state);
5654 /* re-enable Admin queue interrupt cause */
5655 val = rd32(hw, I40E_PFINT_ICR0_ENA);
5656 val |= I40E_PFINT_ICR0_ENA_ADMINQ_MASK;
5657 wr32(hw, I40E_PFINT_ICR0_ENA, val);
5658 i40e_flush(hw);
5659
5660 kfree(event.msg_buf);
5661}
5662
5663/**
Shannon Nelson4eb3f762014-03-06 08:59:58 +00005664 * i40e_verify_eeprom - make sure eeprom is good to use
5665 * @pf: board private structure
5666 **/
5667static void i40e_verify_eeprom(struct i40e_pf *pf)
5668{
5669 int err;
5670
5671 err = i40e_diag_eeprom_test(&pf->hw);
5672 if (err) {
5673 /* retry in case of garbage read */
5674 err = i40e_diag_eeprom_test(&pf->hw);
5675 if (err) {
5676 dev_info(&pf->pdev->dev, "eeprom check failed (%d), Tx/Rx traffic disabled\n",
5677 err);
5678 set_bit(__I40E_BAD_EEPROM, &pf->state);
5679 }
5680 }
5681
5682 if (!err && test_bit(__I40E_BAD_EEPROM, &pf->state)) {
5683 dev_info(&pf->pdev->dev, "eeprom check passed, Tx/Rx traffic enabled\n");
5684 clear_bit(__I40E_BAD_EEPROM, &pf->state);
5685 }
5686}
5687
5688/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005689 * i40e_reconstitute_veb - rebuild the VEB and anything connected to it
5690 * @veb: pointer to the VEB instance
5691 *
5692 * This is a recursive function that first builds the attached VSIs then
5693 * recurses in to build the next layer of VEB. We track the connections
5694 * through our own index numbers because the seid's from the HW could
5695 * change across the reset.
5696 **/
5697static int i40e_reconstitute_veb(struct i40e_veb *veb)
5698{
5699 struct i40e_vsi *ctl_vsi = NULL;
5700 struct i40e_pf *pf = veb->pf;
5701 int v, veb_idx;
5702 int ret;
5703
5704 /* build VSI that owns this VEB, temporarily attached to base VEB */
Mitch Williams505682c2014-05-20 08:01:37 +00005705 for (v = 0; v < pf->num_alloc_vsi && !ctl_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005706 if (pf->vsi[v] &&
5707 pf->vsi[v]->veb_idx == veb->idx &&
5708 pf->vsi[v]->flags & I40E_VSI_FLAG_VEB_OWNER) {
5709 ctl_vsi = pf->vsi[v];
5710 break;
5711 }
5712 }
5713 if (!ctl_vsi) {
5714 dev_info(&pf->pdev->dev,
5715 "missing owner VSI for veb_idx %d\n", veb->idx);
5716 ret = -ENOENT;
5717 goto end_reconstitute;
5718 }
5719 if (ctl_vsi != pf->vsi[pf->lan_vsi])
5720 ctl_vsi->uplink_seid = pf->vsi[pf->lan_vsi]->uplink_seid;
5721 ret = i40e_add_vsi(ctl_vsi);
5722 if (ret) {
5723 dev_info(&pf->pdev->dev,
5724 "rebuild of owner VSI failed: %d\n", ret);
5725 goto end_reconstitute;
5726 }
5727 i40e_vsi_reset_stats(ctl_vsi);
5728
5729 /* create the VEB in the switch and move the VSI onto the VEB */
5730 ret = i40e_add_veb(veb, ctl_vsi);
5731 if (ret)
5732 goto end_reconstitute;
5733
5734 /* create the remaining VSIs attached to this VEB */
Mitch Williams505682c2014-05-20 08:01:37 +00005735 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005736 if (!pf->vsi[v] || pf->vsi[v] == ctl_vsi)
5737 continue;
5738
5739 if (pf->vsi[v]->veb_idx == veb->idx) {
5740 struct i40e_vsi *vsi = pf->vsi[v];
5741 vsi->uplink_seid = veb->seid;
5742 ret = i40e_add_vsi(vsi);
5743 if (ret) {
5744 dev_info(&pf->pdev->dev,
5745 "rebuild of vsi_idx %d failed: %d\n",
5746 v, ret);
5747 goto end_reconstitute;
5748 }
5749 i40e_vsi_reset_stats(vsi);
5750 }
5751 }
5752
5753 /* create any VEBs attached to this VEB - RECURSION */
5754 for (veb_idx = 0; veb_idx < I40E_MAX_VEB; veb_idx++) {
5755 if (pf->veb[veb_idx] && pf->veb[veb_idx]->veb_idx == veb->idx) {
5756 pf->veb[veb_idx]->uplink_seid = veb->seid;
5757 ret = i40e_reconstitute_veb(pf->veb[veb_idx]);
5758 if (ret)
5759 break;
5760 }
5761 }
5762
5763end_reconstitute:
5764 return ret;
5765}
5766
5767/**
5768 * i40e_get_capabilities - get info about the HW
5769 * @pf: the PF struct
5770 **/
5771static int i40e_get_capabilities(struct i40e_pf *pf)
5772{
5773 struct i40e_aqc_list_capabilities_element_resp *cap_buf;
5774 u16 data_size;
5775 int buf_len;
5776 int err;
5777
5778 buf_len = 40 * sizeof(struct i40e_aqc_list_capabilities_element_resp);
5779 do {
5780 cap_buf = kzalloc(buf_len, GFP_KERNEL);
5781 if (!cap_buf)
5782 return -ENOMEM;
5783
5784 /* this loads the data into the hw struct for us */
5785 err = i40e_aq_discover_capabilities(&pf->hw, cap_buf, buf_len,
5786 &data_size,
5787 i40e_aqc_opc_list_func_capabilities,
5788 NULL);
5789 /* data loaded, buffer no longer needed */
5790 kfree(cap_buf);
5791
5792 if (pf->hw.aq.asq_last_status == I40E_AQ_RC_ENOMEM) {
5793 /* retry with a larger buffer */
5794 buf_len = data_size;
5795 } else if (pf->hw.aq.asq_last_status != I40E_AQ_RC_OK) {
5796 dev_info(&pf->pdev->dev,
5797 "capability discovery failed: aq=%d\n",
5798 pf->hw.aq.asq_last_status);
5799 return -ENODEV;
5800 }
5801 } while (err);
5802
Anjali Singhai Jainac71b7b2014-02-06 05:51:08 +00005803 if (((pf->hw.aq.fw_maj_ver == 2) && (pf->hw.aq.fw_min_ver < 22)) ||
5804 (pf->hw.aq.fw_maj_ver < 2)) {
5805 pf->hw.func_caps.num_msix_vectors++;
5806 pf->hw.func_caps.num_msix_vectors_vf++;
5807 }
5808
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005809 if (pf->hw.debug_mask & I40E_DEBUG_USER)
5810 dev_info(&pf->pdev->dev,
5811 "pf=%d, num_vfs=%d, msix_pf=%d, msix_vf=%d, fd_g=%d, fd_b=%d, pf_max_q=%d num_vsi=%d\n",
5812 pf->hw.pf_id, pf->hw.func_caps.num_vfs,
5813 pf->hw.func_caps.num_msix_vectors,
5814 pf->hw.func_caps.num_msix_vectors_vf,
5815 pf->hw.func_caps.fd_filters_guaranteed,
5816 pf->hw.func_caps.fd_filters_best_effort,
5817 pf->hw.func_caps.num_tx_qp,
5818 pf->hw.func_caps.num_vsis);
5819
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00005820#define DEF_NUM_VSI (1 + (pf->hw.func_caps.fcoe ? 1 : 0) \
5821 + pf->hw.func_caps.num_vfs)
5822 if (pf->hw.revision_id == 0 && (DEF_NUM_VSI > pf->hw.func_caps.num_vsis)) {
5823 dev_info(&pf->pdev->dev,
5824 "got num_vsis %d, setting num_vsis to %d\n",
5825 pf->hw.func_caps.num_vsis, DEF_NUM_VSI);
5826 pf->hw.func_caps.num_vsis = DEF_NUM_VSI;
5827 }
5828
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005829 return 0;
5830}
5831
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08005832static int i40e_vsi_clear(struct i40e_vsi *vsi);
5833
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005834/**
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08005835 * i40e_fdir_sb_setup - initialize the Flow Director resources for Sideband
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005836 * @pf: board private structure
5837 **/
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08005838static void i40e_fdir_sb_setup(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005839{
5840 struct i40e_vsi *vsi;
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00005841 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005842
Jesse Brandeburg407e0632014-06-03 23:50:12 +00005843 /* quick workaround for an NVM issue that leaves a critical register
5844 * uninitialized
5845 */
5846 if (!rd32(&pf->hw, I40E_GLQF_HKEY(0))) {
5847 static const u32 hkey[] = {
5848 0xe640d33f, 0xcdfe98ab, 0x73fa7161, 0x0d7a7d36,
5849 0xeacb7d61, 0xaa4f05b6, 0x9c5c89ed, 0xfc425ddb,
5850 0xa4654832, 0xfc7461d4, 0x8f827619, 0xf5c63c21,
5851 0x95b3a76d};
5852
5853 for (i = 0; i <= I40E_GLQF_HKEY_MAX_INDEX; i++)
5854 wr32(&pf->hw, I40E_GLQF_HKEY(i), hkey[i]);
5855 }
5856
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08005857 if (!(pf->flags & I40E_FLAG_FD_SB_ENABLED))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005858 return;
5859
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08005860 /* find existing VSI and see if it needs configuring */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005861 vsi = NULL;
Mitch Williams505682c2014-05-20 08:01:37 +00005862 for (i = 0; i < pf->num_alloc_vsi; i++) {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08005863 if (pf->vsi[i] && pf->vsi[i]->type == I40E_VSI_FDIR) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005864 vsi = pf->vsi[i];
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08005865 break;
5866 }
5867 }
5868
5869 /* create a new VSI if none exists */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005870 if (!vsi) {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08005871 vsi = i40e_vsi_setup(pf, I40E_VSI_FDIR,
5872 pf->vsi[pf->lan_vsi]->seid, 0);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005873 if (!vsi) {
5874 dev_info(&pf->pdev->dev, "Couldn't create FDir VSI\n");
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00005875 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
5876 return;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005877 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005878 }
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00005879
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08005880 i40e_vsi_setup_irqhandler(vsi, i40e_fdir_clean_ring);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005881}
5882
5883/**
5884 * i40e_fdir_teardown - release the Flow Director resources
5885 * @pf: board private structure
5886 **/
5887static void i40e_fdir_teardown(struct i40e_pf *pf)
5888{
5889 int i;
5890
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00005891 i40e_fdir_filter_exit(pf);
Mitch Williams505682c2014-05-20 08:01:37 +00005892 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005893 if (pf->vsi[i] && pf->vsi[i]->type == I40E_VSI_FDIR) {
5894 i40e_vsi_release(pf->vsi[i]);
5895 break;
5896 }
5897 }
5898}
5899
5900/**
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00005901 * i40e_prep_for_reset - prep for the core to reset
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005902 * @pf: board private structure
5903 *
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00005904 * Close up the VFs and other things in prep for pf Reset.
5905 **/
Shannon Nelson23cfbe02014-06-04 01:23:14 +00005906static void i40e_prep_for_reset(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005907{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005908 struct i40e_hw *hw = &pf->hw;
Shannon Nelson60442de2014-04-23 04:50:13 +00005909 i40e_status ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005910 u32 v;
5911
5912 clear_bit(__I40E_RESET_INTR_RECEIVED, &pf->state);
5913 if (test_and_set_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state))
Shannon Nelson23cfbe02014-06-04 01:23:14 +00005914 return;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005915
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005916 dev_dbg(&pf->pdev->dev, "Tearing down internal switch for reset\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005917
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005918 /* quiesce the VSIs and their queues that are not already DOWN */
5919 i40e_pf_quiesce_all_vsi(pf);
5920
Mitch Williams505682c2014-05-20 08:01:37 +00005921 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005922 if (pf->vsi[v])
5923 pf->vsi[v]->seid = 0;
5924 }
5925
5926 i40e_shutdown_adminq(&pf->hw);
5927
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00005928 /* call shutdown HMC */
Shannon Nelson60442de2014-04-23 04:50:13 +00005929 if (hw->hmc.hmc_obj) {
5930 ret = i40e_shutdown_lan_hmc(hw);
Shannon Nelson23cfbe02014-06-04 01:23:14 +00005931 if (ret)
Shannon Nelson60442de2014-04-23 04:50:13 +00005932 dev_warn(&pf->pdev->dev,
5933 "shutdown_lan_hmc failed: %d\n", ret);
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00005934 }
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00005935}
5936
5937/**
Jesse Brandeburg44033fa2014-04-23 04:50:15 +00005938 * i40e_send_version - update firmware with driver version
5939 * @pf: PF struct
5940 */
5941static void i40e_send_version(struct i40e_pf *pf)
5942{
5943 struct i40e_driver_version dv;
5944
5945 dv.major_version = DRV_VERSION_MAJOR;
5946 dv.minor_version = DRV_VERSION_MINOR;
5947 dv.build_version = DRV_VERSION_BUILD;
5948 dv.subbuild_version = 0;
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00005949 strlcpy(dv.driver_string, DRV_VERSION, sizeof(dv.driver_string));
Jesse Brandeburg44033fa2014-04-23 04:50:15 +00005950 i40e_aq_send_driver_version(&pf->hw, &dv, NULL);
5951}
5952
5953/**
Jesse Brandeburg4dda12e2013-12-18 13:46:01 +00005954 * i40e_reset_and_rebuild - reset and rebuild using a saved config
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00005955 * @pf: board private structure
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00005956 * @reinit: if the Main VSI needs to re-initialized.
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00005957 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00005958static void i40e_reset_and_rebuild(struct i40e_pf *pf, bool reinit)
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00005959{
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00005960 struct i40e_hw *hw = &pf->hw;
5961 i40e_status ret;
5962 u32 v;
5963
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005964 /* Now we wait for GRST to settle out.
5965 * We don't have to delete the VEBs or VSIs from the hw switch
5966 * because the reset will make them disappear.
5967 */
5968 ret = i40e_pf_reset(hw);
Akeem G Abodunrinb5565402014-04-09 05:59:04 +00005969 if (ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005970 dev_info(&pf->pdev->dev, "PF reset failed, %d\n", ret);
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00005971 set_bit(__I40E_RESET_FAILED, &pf->state);
5972 goto clear_recovery;
Akeem G Abodunrinb5565402014-04-09 05:59:04 +00005973 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005974 pf->pfr_count++;
5975
5976 if (test_bit(__I40E_DOWN, &pf->state))
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00005977 goto clear_recovery;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005978 dev_dbg(&pf->pdev->dev, "Rebuilding internal switch\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005979
5980 /* rebuild the basics for the AdminQ, HMC, and initial HW switch */
5981 ret = i40e_init_adminq(&pf->hw);
5982 if (ret) {
5983 dev_info(&pf->pdev->dev, "Rebuild AdminQ failed, %d\n", ret);
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00005984 goto clear_recovery;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005985 }
5986
Shannon Nelson4eb3f762014-03-06 08:59:58 +00005987 /* re-verify the eeprom if we just had an EMP reset */
5988 if (test_bit(__I40E_EMP_RESET_REQUESTED, &pf->state)) {
5989 clear_bit(__I40E_EMP_RESET_REQUESTED, &pf->state);
5990 i40e_verify_eeprom(pf);
5991 }
5992
Shannon Nelsone78ac4bf2014-05-10 04:49:09 +00005993 i40e_clear_pxe_mode(hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005994 ret = i40e_get_capabilities(pf);
5995 if (ret) {
5996 dev_info(&pf->pdev->dev, "i40e_get_capabilities failed, %d\n",
5997 ret);
5998 goto end_core_reset;
5999 }
6000
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006001 ret = i40e_init_lan_hmc(hw, hw->func_caps.num_tx_qp,
6002 hw->func_caps.num_rx_qp,
6003 pf->fcoe_hmc_cntx_num, pf->fcoe_hmc_filt_num);
6004 if (ret) {
6005 dev_info(&pf->pdev->dev, "init_lan_hmc failed: %d\n", ret);
6006 goto end_core_reset;
6007 }
6008 ret = i40e_configure_lan_hmc(hw, I40E_HMC_MODEL_DIRECT_ONLY);
6009 if (ret) {
6010 dev_info(&pf->pdev->dev, "configure_lan_hmc failed: %d\n", ret);
6011 goto end_core_reset;
6012 }
6013
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08006014#ifdef CONFIG_I40E_DCB
6015 ret = i40e_init_pf_dcb(pf);
6016 if (ret) {
6017 dev_info(&pf->pdev->dev, "init_pf_dcb failed: %d\n", ret);
6018 goto end_core_reset;
6019 }
6020#endif /* CONFIG_I40E_DCB */
Vasu Dev38e00432014-08-01 13:27:03 -07006021#ifdef I40E_FCOE
6022 ret = i40e_init_pf_fcoe(pf);
6023 if (ret)
6024 dev_info(&pf->pdev->dev, "init_pf_fcoe failed: %d\n", ret);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08006025
Vasu Dev38e00432014-08-01 13:27:03 -07006026#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006027 /* do basic switch setup */
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006028 ret = i40e_setup_pf_switch(pf, reinit);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006029 if (ret)
6030 goto end_core_reset;
6031
Jesse Brandeburg7e2453f2014-09-13 07:40:41 +00006032 /* driver is only interested in link up/down and module qualification
6033 * reports from firmware
6034 */
6035 ret = i40e_aq_set_phy_int_mask(&pf->hw,
6036 I40E_AQ_EVENT_LINK_UPDOWN |
6037 I40E_AQ_EVENT_MODULE_QUAL_FAIL, NULL);
6038 if (ret)
6039 dev_info(&pf->pdev->dev, "set phy mask fail, aq_err %d\n", ret);
6040
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006041 /* Rebuild the VSIs and VEBs that existed before reset.
6042 * They are still in our local switch element arrays, so only
6043 * need to rebuild the switch model in the HW.
6044 *
6045 * If there were VEBs but the reconstitution failed, we'll try
6046 * try to recover minimal use by getting the basic PF VSI working.
6047 */
6048 if (pf->vsi[pf->lan_vsi]->uplink_seid != pf->mac_seid) {
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00006049 dev_dbg(&pf->pdev->dev, "attempting to rebuild switch\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006050 /* find the one VEB connected to the MAC, and find orphans */
6051 for (v = 0; v < I40E_MAX_VEB; v++) {
6052 if (!pf->veb[v])
6053 continue;
6054
6055 if (pf->veb[v]->uplink_seid == pf->mac_seid ||
6056 pf->veb[v]->uplink_seid == 0) {
6057 ret = i40e_reconstitute_veb(pf->veb[v]);
6058
6059 if (!ret)
6060 continue;
6061
6062 /* If Main VEB failed, we're in deep doodoo,
6063 * so give up rebuilding the switch and set up
6064 * for minimal rebuild of PF VSI.
6065 * If orphan failed, we'll report the error
6066 * but try to keep going.
6067 */
6068 if (pf->veb[v]->uplink_seid == pf->mac_seid) {
6069 dev_info(&pf->pdev->dev,
6070 "rebuild of switch failed: %d, will try to set up simple PF connection\n",
6071 ret);
6072 pf->vsi[pf->lan_vsi]->uplink_seid
6073 = pf->mac_seid;
6074 break;
6075 } else if (pf->veb[v]->uplink_seid == 0) {
6076 dev_info(&pf->pdev->dev,
6077 "rebuild of orphan VEB failed: %d\n",
6078 ret);
6079 }
6080 }
6081 }
6082 }
6083
6084 if (pf->vsi[pf->lan_vsi]->uplink_seid == pf->mac_seid) {
Shannon Nelsoncde4cbc2014-06-04 01:23:17 +00006085 dev_dbg(&pf->pdev->dev, "attempting to rebuild PF VSI\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006086 /* no VEB, so rebuild only the Main VSI */
6087 ret = i40e_add_vsi(pf->vsi[pf->lan_vsi]);
6088 if (ret) {
6089 dev_info(&pf->pdev->dev,
6090 "rebuild of Main VSI failed: %d\n", ret);
6091 goto end_core_reset;
6092 }
6093 }
6094
6095 /* reinit the misc interrupt */
6096 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
6097 ret = i40e_setup_misc_vector(pf);
6098
6099 /* restart the VSIs that were rebuilt and running before the reset */
6100 i40e_pf_unquiesce_all_vsi(pf);
6101
Mitch Williams69f64b22014-02-13 03:48:46 -08006102 if (pf->num_alloc_vfs) {
6103 for (v = 0; v < pf->num_alloc_vfs; v++)
6104 i40e_reset_vf(&pf->vf[v], true);
6105 }
6106
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006107 /* tell the firmware that we're starting */
Jesse Brandeburg44033fa2014-04-23 04:50:15 +00006108 i40e_send_version(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006109
6110end_core_reset:
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00006111 clear_bit(__I40E_RESET_FAILED, &pf->state);
6112clear_recovery:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006113 clear_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state);
6114}
6115
6116/**
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006117 * i40e_handle_reset_warning - prep for the pf to reset, reset and rebuild
6118 * @pf: board private structure
6119 *
6120 * Close up the VFs and other things in prep for a Core Reset,
6121 * then get ready to rebuild the world.
6122 **/
6123static void i40e_handle_reset_warning(struct i40e_pf *pf)
6124{
Shannon Nelson23cfbe02014-06-04 01:23:14 +00006125 i40e_prep_for_reset(pf);
6126 i40e_reset_and_rebuild(pf, false);
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006127}
6128
6129/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006130 * i40e_handle_mdd_event
6131 * @pf: pointer to the pf structure
6132 *
6133 * Called from the MDD irq handler to identify possibly malicious vfs
6134 **/
6135static void i40e_handle_mdd_event(struct i40e_pf *pf)
6136{
6137 struct i40e_hw *hw = &pf->hw;
6138 bool mdd_detected = false;
Neerav Parikhdf430b12014-06-04 01:23:15 +00006139 bool pf_mdd_detected = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006140 struct i40e_vf *vf;
6141 u32 reg;
6142 int i;
6143
6144 if (!test_bit(__I40E_MDD_EVENT_PENDING, &pf->state))
6145 return;
6146
6147 /* find what triggered the MDD event */
6148 reg = rd32(hw, I40E_GL_MDET_TX);
6149 if (reg & I40E_GL_MDET_TX_VALID_MASK) {
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00006150 u8 pf_num = (reg & I40E_GL_MDET_TX_PF_NUM_MASK) >>
6151 I40E_GL_MDET_TX_PF_NUM_SHIFT;
6152 u8 vf_num = (reg & I40E_GL_MDET_TX_VF_NUM_MASK) >>
6153 I40E_GL_MDET_TX_VF_NUM_SHIFT;
6154 u8 event = (reg & I40E_GL_MDET_TX_EVENT_SHIFT) >>
6155 I40E_GL_MDET_TX_EVENT_SHIFT;
6156 u8 queue = (reg & I40E_GL_MDET_TX_QUEUE_MASK) >>
6157 I40E_GL_MDET_TX_QUEUE_SHIFT;
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00006158 if (netif_msg_tx_err(pf))
6159 dev_info(&pf->pdev->dev, "Malicious Driver Detection event 0x%02x on TX queue %d pf number 0x%02x vf number 0x%02x\n",
6160 event, queue, pf_num, vf_num);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006161 wr32(hw, I40E_GL_MDET_TX, 0xffffffff);
6162 mdd_detected = true;
6163 }
6164 reg = rd32(hw, I40E_GL_MDET_RX);
6165 if (reg & I40E_GL_MDET_RX_VALID_MASK) {
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00006166 u8 func = (reg & I40E_GL_MDET_RX_FUNCTION_MASK) >>
6167 I40E_GL_MDET_RX_FUNCTION_SHIFT;
6168 u8 event = (reg & I40E_GL_MDET_RX_EVENT_SHIFT) >>
6169 I40E_GL_MDET_RX_EVENT_SHIFT;
6170 u8 queue = (reg & I40E_GL_MDET_RX_QUEUE_MASK) >>
6171 I40E_GL_MDET_RX_QUEUE_SHIFT;
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00006172 if (netif_msg_rx_err(pf))
6173 dev_info(&pf->pdev->dev, "Malicious Driver Detection event 0x%02x on RX queue %d of function 0x%02x\n",
6174 event, queue, func);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006175 wr32(hw, I40E_GL_MDET_RX, 0xffffffff);
6176 mdd_detected = true;
6177 }
6178
Neerav Parikhdf430b12014-06-04 01:23:15 +00006179 if (mdd_detected) {
6180 reg = rd32(hw, I40E_PF_MDET_TX);
6181 if (reg & I40E_PF_MDET_TX_VALID_MASK) {
6182 wr32(hw, I40E_PF_MDET_TX, 0xFFFF);
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00006183 dev_info(&pf->pdev->dev, "TX driver issue detected, PF reset issued\n");
Neerav Parikhdf430b12014-06-04 01:23:15 +00006184 pf_mdd_detected = true;
6185 }
6186 reg = rd32(hw, I40E_PF_MDET_RX);
6187 if (reg & I40E_PF_MDET_RX_VALID_MASK) {
6188 wr32(hw, I40E_PF_MDET_RX, 0xFFFF);
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00006189 dev_info(&pf->pdev->dev, "RX driver issue detected, PF reset issued\n");
Neerav Parikhdf430b12014-06-04 01:23:15 +00006190 pf_mdd_detected = true;
6191 }
6192 /* Queue belongs to the PF, initiate a reset */
6193 if (pf_mdd_detected) {
6194 set_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
6195 i40e_service_event_schedule(pf);
6196 }
6197 }
6198
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006199 /* see if one of the VFs needs its hand slapped */
6200 for (i = 0; i < pf->num_alloc_vfs && mdd_detected; i++) {
6201 vf = &(pf->vf[i]);
6202 reg = rd32(hw, I40E_VP_MDET_TX(i));
6203 if (reg & I40E_VP_MDET_TX_VALID_MASK) {
6204 wr32(hw, I40E_VP_MDET_TX(i), 0xFFFF);
6205 vf->num_mdd_events++;
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00006206 dev_info(&pf->pdev->dev, "TX driver issue detected on VF %d\n",
6207 i);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006208 }
6209
6210 reg = rd32(hw, I40E_VP_MDET_RX(i));
6211 if (reg & I40E_VP_MDET_RX_VALID_MASK) {
6212 wr32(hw, I40E_VP_MDET_RX(i), 0xFFFF);
6213 vf->num_mdd_events++;
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00006214 dev_info(&pf->pdev->dev, "RX driver issue detected on VF %d\n",
6215 i);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006216 }
6217
6218 if (vf->num_mdd_events > I40E_DEFAULT_NUM_MDD_EVENTS_ALLOWED) {
6219 dev_info(&pf->pdev->dev,
6220 "Too many MDD events on VF %d, disabled\n", i);
6221 dev_info(&pf->pdev->dev,
6222 "Use PF Control I/F to re-enable the VF\n");
6223 set_bit(I40E_VF_STAT_DISABLED, &vf->vf_states);
6224 }
6225 }
6226
6227 /* re-enable mdd interrupt cause */
6228 clear_bit(__I40E_MDD_EVENT_PENDING, &pf->state);
6229 reg = rd32(hw, I40E_PFINT_ICR0_ENA);
6230 reg |= I40E_PFINT_ICR0_ENA_MAL_DETECT_MASK;
6231 wr32(hw, I40E_PFINT_ICR0_ENA, reg);
6232 i40e_flush(hw);
6233}
6234
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00006235#ifdef CONFIG_I40E_VXLAN
6236/**
6237 * i40e_sync_vxlan_filters_subtask - Sync the VSI filter list with HW
6238 * @pf: board private structure
6239 **/
6240static void i40e_sync_vxlan_filters_subtask(struct i40e_pf *pf)
6241{
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00006242 struct i40e_hw *hw = &pf->hw;
6243 i40e_status ret;
6244 u8 filter_index;
6245 __be16 port;
6246 int i;
6247
6248 if (!(pf->flags & I40E_FLAG_VXLAN_FILTER_SYNC))
6249 return;
6250
6251 pf->flags &= ~I40E_FLAG_VXLAN_FILTER_SYNC;
6252
6253 for (i = 0; i < I40E_MAX_PF_UDP_OFFLOAD_PORTS; i++) {
6254 if (pf->pending_vxlan_bitmap & (1 << i)) {
6255 pf->pending_vxlan_bitmap &= ~(1 << i);
6256 port = pf->vxlan_ports[i];
6257 ret = port ?
6258 i40e_aq_add_udp_tunnel(hw, ntohs(port),
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00006259 I40E_AQC_TUNNEL_TYPE_VXLAN,
6260 &filter_index, NULL)
6261 : i40e_aq_del_udp_tunnel(hw, i, NULL);
6262
6263 if (ret) {
6264 dev_info(&pf->pdev->dev, "Failed to execute AQ command for %s port %d with index %d\n",
6265 port ? "adding" : "deleting",
6266 ntohs(port), port ? i : i);
6267
6268 pf->vxlan_ports[i] = 0;
6269 } else {
6270 dev_info(&pf->pdev->dev, "%s port %d with AQ command with index %d\n",
6271 port ? "Added" : "Deleted",
6272 ntohs(port), port ? i : filter_index);
6273 }
6274 }
6275 }
6276}
6277
6278#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006279/**
6280 * i40e_service_task - Run the driver's async subtasks
6281 * @work: pointer to work_struct containing our data
6282 **/
6283static void i40e_service_task(struct work_struct *work)
6284{
6285 struct i40e_pf *pf = container_of(work,
6286 struct i40e_pf,
6287 service_task);
6288 unsigned long start_time = jiffies;
6289
Shannon Nelsone57a2fe2014-06-03 23:50:19 +00006290 /* don't bother with service tasks if a reset is in progress */
6291 if (test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state)) {
6292 i40e_service_event_complete(pf);
6293 return;
6294 }
6295
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006296 i40e_reset_subtask(pf);
6297 i40e_handle_mdd_event(pf);
6298 i40e_vc_process_vflr_event(pf);
6299 i40e_watchdog_subtask(pf);
6300 i40e_fdir_reinit_subtask(pf);
6301 i40e_check_hang_subtask(pf);
6302 i40e_sync_filters_subtask(pf);
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00006303#ifdef CONFIG_I40E_VXLAN
6304 i40e_sync_vxlan_filters_subtask(pf);
6305#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006306 i40e_clean_adminq_subtask(pf);
6307
Jesse Brandeburg1e701e02014-09-13 07:40:42 +00006308 i40e_link_event(pf);
6309
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006310 i40e_service_event_complete(pf);
6311
6312 /* If the tasks have taken longer than one timer cycle or there
6313 * is more work to be done, reschedule the service task now
6314 * rather than wait for the timer to tick again.
6315 */
6316 if (time_after(jiffies, (start_time + pf->service_timer_period)) ||
6317 test_bit(__I40E_ADMINQ_EVENT_PENDING, &pf->state) ||
6318 test_bit(__I40E_MDD_EVENT_PENDING, &pf->state) ||
6319 test_bit(__I40E_VFLR_EVENT_PENDING, &pf->state))
6320 i40e_service_event_schedule(pf);
6321}
6322
6323/**
6324 * i40e_service_timer - timer callback
6325 * @data: pointer to PF struct
6326 **/
6327static void i40e_service_timer(unsigned long data)
6328{
6329 struct i40e_pf *pf = (struct i40e_pf *)data;
6330
6331 mod_timer(&pf->service_timer,
6332 round_jiffies(jiffies + pf->service_timer_period));
6333 i40e_service_event_schedule(pf);
6334}
6335
6336/**
6337 * i40e_set_num_rings_in_vsi - Determine number of rings in the VSI
6338 * @vsi: the VSI being configured
6339 **/
6340static int i40e_set_num_rings_in_vsi(struct i40e_vsi *vsi)
6341{
6342 struct i40e_pf *pf = vsi->back;
6343
6344 switch (vsi->type) {
6345 case I40E_VSI_MAIN:
6346 vsi->alloc_queue_pairs = pf->num_lan_qps;
6347 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
6348 I40E_REQ_DESCRIPTOR_MULTIPLE);
6349 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
6350 vsi->num_q_vectors = pf->num_lan_msix;
6351 else
6352 vsi->num_q_vectors = 1;
6353
6354 break;
6355
6356 case I40E_VSI_FDIR:
6357 vsi->alloc_queue_pairs = 1;
6358 vsi->num_desc = ALIGN(I40E_FDIR_RING_COUNT,
6359 I40E_REQ_DESCRIPTOR_MULTIPLE);
6360 vsi->num_q_vectors = 1;
6361 break;
6362
6363 case I40E_VSI_VMDQ2:
6364 vsi->alloc_queue_pairs = pf->num_vmdq_qps;
6365 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
6366 I40E_REQ_DESCRIPTOR_MULTIPLE);
6367 vsi->num_q_vectors = pf->num_vmdq_msix;
6368 break;
6369
6370 case I40E_VSI_SRIOV:
6371 vsi->alloc_queue_pairs = pf->num_vf_qps;
6372 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
6373 I40E_REQ_DESCRIPTOR_MULTIPLE);
6374 break;
6375
Vasu Dev38e00432014-08-01 13:27:03 -07006376#ifdef I40E_FCOE
6377 case I40E_VSI_FCOE:
6378 vsi->alloc_queue_pairs = pf->num_fcoe_qps;
6379 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
6380 I40E_REQ_DESCRIPTOR_MULTIPLE);
6381 vsi->num_q_vectors = pf->num_fcoe_msix;
6382 break;
6383
6384#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006385 default:
6386 WARN_ON(1);
6387 return -ENODATA;
6388 }
6389
6390 return 0;
6391}
6392
6393/**
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006394 * i40e_vsi_alloc_arrays - Allocate queue and vector pointer arrays for the vsi
6395 * @type: VSI pointer
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006396 * @alloc_qvectors: a bool to specify if q_vectors need to be allocated.
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006397 *
6398 * On error: returns error code (negative)
6399 * On success: returns 0
6400 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006401static int i40e_vsi_alloc_arrays(struct i40e_vsi *vsi, bool alloc_qvectors)
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006402{
6403 int size;
6404 int ret = 0;
6405
Shannon Nelsonac6c5e32013-11-20 10:02:57 +00006406 /* allocate memory for both Tx and Rx ring pointers */
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006407 size = sizeof(struct i40e_ring *) * vsi->alloc_queue_pairs * 2;
6408 vsi->tx_rings = kzalloc(size, GFP_KERNEL);
6409 if (!vsi->tx_rings)
6410 return -ENOMEM;
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006411 vsi->rx_rings = &vsi->tx_rings[vsi->alloc_queue_pairs];
6412
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006413 if (alloc_qvectors) {
6414 /* allocate memory for q_vector pointers */
Julia Lawallf57e4fb2014-07-30 03:11:09 +00006415 size = sizeof(struct i40e_q_vector *) * vsi->num_q_vectors;
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006416 vsi->q_vectors = kzalloc(size, GFP_KERNEL);
6417 if (!vsi->q_vectors) {
6418 ret = -ENOMEM;
6419 goto err_vectors;
6420 }
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006421 }
6422 return ret;
6423
6424err_vectors:
6425 kfree(vsi->tx_rings);
6426 return ret;
6427}
6428
6429/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006430 * i40e_vsi_mem_alloc - Allocates the next available struct vsi in the PF
6431 * @pf: board private structure
6432 * @type: type of VSI
6433 *
6434 * On error: returns error code (negative)
6435 * On success: returns vsi index in PF (positive)
6436 **/
6437static int i40e_vsi_mem_alloc(struct i40e_pf *pf, enum i40e_vsi_type type)
6438{
6439 int ret = -ENODEV;
6440 struct i40e_vsi *vsi;
6441 int vsi_idx;
6442 int i;
6443
6444 /* Need to protect the allocation of the VSIs at the PF level */
6445 mutex_lock(&pf->switch_mutex);
6446
6447 /* VSI list may be fragmented if VSI creation/destruction has
6448 * been happening. We can afford to do a quick scan to look
6449 * for any free VSIs in the list.
6450 *
6451 * find next empty vsi slot, looping back around if necessary
6452 */
6453 i = pf->next_vsi;
Mitch Williams505682c2014-05-20 08:01:37 +00006454 while (i < pf->num_alloc_vsi && pf->vsi[i])
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006455 i++;
Mitch Williams505682c2014-05-20 08:01:37 +00006456 if (i >= pf->num_alloc_vsi) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006457 i = 0;
6458 while (i < pf->next_vsi && pf->vsi[i])
6459 i++;
6460 }
6461
Mitch Williams505682c2014-05-20 08:01:37 +00006462 if (i < pf->num_alloc_vsi && !pf->vsi[i]) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006463 vsi_idx = i; /* Found one! */
6464 } else {
6465 ret = -ENODEV;
Alexander Duyck493fb302013-09-28 07:01:44 +00006466 goto unlock_pf; /* out of VSI slots! */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006467 }
6468 pf->next_vsi = ++i;
6469
6470 vsi = kzalloc(sizeof(*vsi), GFP_KERNEL);
6471 if (!vsi) {
6472 ret = -ENOMEM;
Alexander Duyck493fb302013-09-28 07:01:44 +00006473 goto unlock_pf;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006474 }
6475 vsi->type = type;
6476 vsi->back = pf;
6477 set_bit(__I40E_DOWN, &vsi->state);
6478 vsi->flags = 0;
6479 vsi->idx = vsi_idx;
6480 vsi->rx_itr_setting = pf->rx_itr_default;
6481 vsi->tx_itr_setting = pf->tx_itr_default;
6482 vsi->netdev_registered = false;
6483 vsi->work_limit = I40E_DEFAULT_IRQ_WORK;
6484 INIT_LIST_HEAD(&vsi->mac_filter_list);
Shannon Nelson63741842014-04-23 04:50:16 +00006485 vsi->irqs_ready = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006486
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006487 ret = i40e_set_num_rings_in_vsi(vsi);
6488 if (ret)
6489 goto err_rings;
6490
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006491 ret = i40e_vsi_alloc_arrays(vsi, true);
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006492 if (ret)
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006493 goto err_rings;
Alexander Duyck493fb302013-09-28 07:01:44 +00006494
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006495 /* Setup default MSIX irq handler for VSI */
6496 i40e_vsi_setup_irqhandler(vsi, i40e_msix_clean_rings);
6497
6498 pf->vsi[vsi_idx] = vsi;
6499 ret = vsi_idx;
Alexander Duyck493fb302013-09-28 07:01:44 +00006500 goto unlock_pf;
6501
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006502err_rings:
Alexander Duyck493fb302013-09-28 07:01:44 +00006503 pf->next_vsi = i - 1;
6504 kfree(vsi);
6505unlock_pf:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006506 mutex_unlock(&pf->switch_mutex);
6507 return ret;
6508}
6509
6510/**
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006511 * i40e_vsi_free_arrays - Free queue and vector pointer arrays for the VSI
6512 * @type: VSI pointer
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006513 * @free_qvectors: a bool to specify if q_vectors need to be freed.
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006514 *
6515 * On error: returns error code (negative)
6516 * On success: returns 0
6517 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006518static void i40e_vsi_free_arrays(struct i40e_vsi *vsi, bool free_qvectors)
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006519{
6520 /* free the ring and vector containers */
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006521 if (free_qvectors) {
6522 kfree(vsi->q_vectors);
6523 vsi->q_vectors = NULL;
6524 }
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006525 kfree(vsi->tx_rings);
6526 vsi->tx_rings = NULL;
6527 vsi->rx_rings = NULL;
6528}
6529
6530/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006531 * i40e_vsi_clear - Deallocate the VSI provided
6532 * @vsi: the VSI being un-configured
6533 **/
6534static int i40e_vsi_clear(struct i40e_vsi *vsi)
6535{
6536 struct i40e_pf *pf;
6537
6538 if (!vsi)
6539 return 0;
6540
6541 if (!vsi->back)
6542 goto free_vsi;
6543 pf = vsi->back;
6544
6545 mutex_lock(&pf->switch_mutex);
6546 if (!pf->vsi[vsi->idx]) {
6547 dev_err(&pf->pdev->dev, "pf->vsi[%d] is NULL, just free vsi[%d](%p,type %d)\n",
6548 vsi->idx, vsi->idx, vsi, vsi->type);
6549 goto unlock_vsi;
6550 }
6551
6552 if (pf->vsi[vsi->idx] != vsi) {
6553 dev_err(&pf->pdev->dev,
6554 "pf->vsi[%d](%p, type %d) != vsi[%d](%p,type %d): no free!\n",
6555 pf->vsi[vsi->idx]->idx,
6556 pf->vsi[vsi->idx],
6557 pf->vsi[vsi->idx]->type,
6558 vsi->idx, vsi, vsi->type);
6559 goto unlock_vsi;
6560 }
6561
6562 /* updates the pf for this cleared vsi */
6563 i40e_put_lump(pf->qp_pile, vsi->base_queue, vsi->idx);
6564 i40e_put_lump(pf->irq_pile, vsi->base_vector, vsi->idx);
6565
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006566 i40e_vsi_free_arrays(vsi, true);
Alexander Duyck493fb302013-09-28 07:01:44 +00006567
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006568 pf->vsi[vsi->idx] = NULL;
6569 if (vsi->idx < pf->next_vsi)
6570 pf->next_vsi = vsi->idx;
6571
6572unlock_vsi:
6573 mutex_unlock(&pf->switch_mutex);
6574free_vsi:
6575 kfree(vsi);
6576
6577 return 0;
6578}
6579
6580/**
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006581 * i40e_vsi_clear_rings - Deallocates the Rx and Tx rings for the provided VSI
6582 * @vsi: the VSI being cleaned
6583 **/
Shannon Nelsonbe1d5ee2013-11-28 06:39:23 +00006584static void i40e_vsi_clear_rings(struct i40e_vsi *vsi)
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006585{
6586 int i;
6587
Greg Rose8e9dca52013-12-18 13:45:53 +00006588 if (vsi->tx_rings && vsi->tx_rings[0]) {
Neerav Parikhd7397642013-11-28 06:39:37 +00006589 for (i = 0; i < vsi->alloc_queue_pairs; i++) {
Mitch Williams00403f02013-09-28 07:13:13 +00006590 kfree_rcu(vsi->tx_rings[i], rcu);
6591 vsi->tx_rings[i] = NULL;
6592 vsi->rx_rings[i] = NULL;
6593 }
Shannon Nelsonbe1d5ee2013-11-28 06:39:23 +00006594 }
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006595}
6596
6597/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006598 * i40e_alloc_rings - Allocates the Rx and Tx rings for the provided VSI
6599 * @vsi: the VSI being configured
6600 **/
6601static int i40e_alloc_rings(struct i40e_vsi *vsi)
6602{
Akeem G Abodunrine7046ee2014-04-09 05:58:58 +00006603 struct i40e_ring *tx_ring, *rx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006604 struct i40e_pf *pf = vsi->back;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006605 int i;
6606
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006607 /* Set basic values in the rings to be used later during open() */
Neerav Parikhd7397642013-11-28 06:39:37 +00006608 for (i = 0; i < vsi->alloc_queue_pairs; i++) {
Shannon Nelsonac6c5e32013-11-20 10:02:57 +00006609 /* allocate space for both Tx and Rx in one shot */
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006610 tx_ring = kzalloc(sizeof(struct i40e_ring) * 2, GFP_KERNEL);
6611 if (!tx_ring)
6612 goto err_out;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006613
6614 tx_ring->queue_index = i;
6615 tx_ring->reg_idx = vsi->base_queue + i;
6616 tx_ring->ring_active = false;
6617 tx_ring->vsi = vsi;
6618 tx_ring->netdev = vsi->netdev;
6619 tx_ring->dev = &pf->pdev->dev;
6620 tx_ring->count = vsi->num_desc;
6621 tx_ring->size = 0;
6622 tx_ring->dcb_tc = 0;
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006623 vsi->tx_rings[i] = tx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006624
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006625 rx_ring = &tx_ring[1];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006626 rx_ring->queue_index = i;
6627 rx_ring->reg_idx = vsi->base_queue + i;
6628 rx_ring->ring_active = false;
6629 rx_ring->vsi = vsi;
6630 rx_ring->netdev = vsi->netdev;
6631 rx_ring->dev = &pf->pdev->dev;
6632 rx_ring->count = vsi->num_desc;
6633 rx_ring->size = 0;
6634 rx_ring->dcb_tc = 0;
6635 if (pf->flags & I40E_FLAG_16BYTE_RX_DESC_ENABLED)
6636 set_ring_16byte_desc_enabled(rx_ring);
6637 else
6638 clear_ring_16byte_desc_enabled(rx_ring);
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006639 vsi->rx_rings[i] = rx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006640 }
6641
6642 return 0;
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006643
6644err_out:
6645 i40e_vsi_clear_rings(vsi);
6646 return -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006647}
6648
6649/**
6650 * i40e_reserve_msix_vectors - Reserve MSI-X vectors in the kernel
6651 * @pf: board private structure
6652 * @vectors: the number of MSI-X vectors to request
6653 *
6654 * Returns the number of vectors reserved, or error
6655 **/
6656static int i40e_reserve_msix_vectors(struct i40e_pf *pf, int vectors)
6657{
Alexander Gordeev7b37f372014-02-18 11:11:42 +01006658 vectors = pci_enable_msix_range(pf->pdev, pf->msix_entries,
6659 I40E_MIN_MSIX, vectors);
6660 if (vectors < 0) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006661 dev_info(&pf->pdev->dev,
Alexander Gordeev7b37f372014-02-18 11:11:42 +01006662 "MSI-X vector reservation failed: %d\n", vectors);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006663 vectors = 0;
6664 }
6665
6666 return vectors;
6667}
6668
6669/**
6670 * i40e_init_msix - Setup the MSIX capability
6671 * @pf: board private structure
6672 *
6673 * Work with the OS to set up the MSIX vectors needed.
6674 *
6675 * Returns 0 on success, negative on failure
6676 **/
6677static int i40e_init_msix(struct i40e_pf *pf)
6678{
6679 i40e_status err = 0;
6680 struct i40e_hw *hw = &pf->hw;
6681 int v_budget, i;
6682 int vec;
6683
6684 if (!(pf->flags & I40E_FLAG_MSIX_ENABLED))
6685 return -ENODEV;
6686
6687 /* The number of vectors we'll request will be comprised of:
6688 * - Add 1 for "other" cause for Admin Queue events, etc.
6689 * - The number of LAN queue pairs
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00006690 * - Queues being used for RSS.
6691 * We don't need as many as max_rss_size vectors.
6692 * use rss_size instead in the calculation since that
6693 * is governed by number of cpus in the system.
6694 * - assumes symmetric Tx/Rx pairing
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006695 * - The number of VMDq pairs
Vasu Dev38e00432014-08-01 13:27:03 -07006696#ifdef I40E_FCOE
6697 * - The number of FCOE qps.
6698#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006699 * Once we count this up, try the request.
6700 *
6701 * If we can't get what we want, we'll simplify to nearly nothing
6702 * and try again. If that still fails, we punt.
6703 */
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00006704 pf->num_lan_msix = pf->num_lan_qps - (pf->rss_size_max - pf->rss_size);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006705 pf->num_vmdq_msix = pf->num_vmdq_qps;
6706 v_budget = 1 + pf->num_lan_msix;
6707 v_budget += (pf->num_vmdq_vsis * pf->num_vmdq_msix);
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08006708 if (pf->flags & I40E_FLAG_FD_SB_ENABLED)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006709 v_budget++;
6710
Vasu Dev38e00432014-08-01 13:27:03 -07006711#ifdef I40E_FCOE
6712 if (pf->flags & I40E_FLAG_FCOE_ENABLED) {
6713 pf->num_fcoe_msix = pf->num_fcoe_qps;
6714 v_budget += pf->num_fcoe_msix;
6715 }
6716
6717#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006718 /* Scale down if necessary, and the rings will share vectors */
6719 v_budget = min_t(int, v_budget, hw->func_caps.num_msix_vectors);
6720
6721 pf->msix_entries = kcalloc(v_budget, sizeof(struct msix_entry),
6722 GFP_KERNEL);
6723 if (!pf->msix_entries)
6724 return -ENOMEM;
6725
6726 for (i = 0; i < v_budget; i++)
6727 pf->msix_entries[i].entry = i;
6728 vec = i40e_reserve_msix_vectors(pf, v_budget);
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00006729
6730 if (vec != v_budget) {
6731 /* If we have limited resources, we will start with no vectors
6732 * for the special features and then allocate vectors to some
6733 * of these features based on the policy and at the end disable
6734 * the features that did not get any vectors.
6735 */
Vasu Dev38e00432014-08-01 13:27:03 -07006736#ifdef I40E_FCOE
6737 pf->num_fcoe_qps = 0;
6738 pf->num_fcoe_msix = 0;
6739#endif
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00006740 pf->num_vmdq_msix = 0;
6741 }
6742
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006743 if (vec < I40E_MIN_MSIX) {
6744 pf->flags &= ~I40E_FLAG_MSIX_ENABLED;
6745 kfree(pf->msix_entries);
6746 pf->msix_entries = NULL;
6747 return -ENODEV;
6748
6749 } else if (vec == I40E_MIN_MSIX) {
6750 /* Adjust for minimal MSIX use */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006751 pf->num_vmdq_vsis = 0;
6752 pf->num_vmdq_qps = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006753 pf->num_lan_qps = 1;
6754 pf->num_lan_msix = 1;
6755
6756 } else if (vec != v_budget) {
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00006757 /* reserve the misc vector */
6758 vec--;
6759
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006760 /* Scale vector usage down */
6761 pf->num_vmdq_msix = 1; /* force VMDqs to only one vector */
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00006762 pf->num_vmdq_vsis = 1;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006763
6764 /* partition out the remaining vectors */
6765 switch (vec) {
6766 case 2:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006767 pf->num_lan_msix = 1;
6768 break;
6769 case 3:
Vasu Dev38e00432014-08-01 13:27:03 -07006770#ifdef I40E_FCOE
6771 /* give one vector to FCoE */
6772 if (pf->flags & I40E_FLAG_FCOE_ENABLED) {
6773 pf->num_lan_msix = 1;
6774 pf->num_fcoe_msix = 1;
6775 }
6776#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006777 pf->num_lan_msix = 2;
Vasu Dev38e00432014-08-01 13:27:03 -07006778#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006779 break;
6780 default:
Vasu Dev38e00432014-08-01 13:27:03 -07006781#ifdef I40E_FCOE
6782 /* give one vector to FCoE */
6783 if (pf->flags & I40E_FLAG_FCOE_ENABLED) {
6784 pf->num_fcoe_msix = 1;
6785 vec--;
6786 }
6787#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006788 pf->num_lan_msix = min_t(int, (vec / 2),
6789 pf->num_lan_qps);
6790 pf->num_vmdq_vsis = min_t(int, (vec - pf->num_lan_msix),
6791 I40E_DEFAULT_NUM_VMDQ_VSI);
6792 break;
6793 }
6794 }
6795
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00006796 if ((pf->flags & I40E_FLAG_VMDQ_ENABLED) &&
6797 (pf->num_vmdq_msix == 0)) {
6798 dev_info(&pf->pdev->dev, "VMDq disabled, not enough MSI-X vectors\n");
6799 pf->flags &= ~I40E_FLAG_VMDQ_ENABLED;
6800 }
Vasu Dev38e00432014-08-01 13:27:03 -07006801#ifdef I40E_FCOE
6802
6803 if ((pf->flags & I40E_FLAG_FCOE_ENABLED) && (pf->num_fcoe_msix == 0)) {
6804 dev_info(&pf->pdev->dev, "FCOE disabled, not enough MSI-X vectors\n");
6805 pf->flags &= ~I40E_FLAG_FCOE_ENABLED;
6806 }
6807#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006808 return err;
6809}
6810
6811/**
Greg Rose90e04072014-03-06 08:59:57 +00006812 * i40e_vsi_alloc_q_vector - Allocate memory for a single interrupt vector
Alexander Duyck493fb302013-09-28 07:01:44 +00006813 * @vsi: the VSI being configured
6814 * @v_idx: index of the vector in the vsi struct
6815 *
6816 * We allocate one q_vector. If allocation fails we return -ENOMEM.
6817 **/
Greg Rose90e04072014-03-06 08:59:57 +00006818static int i40e_vsi_alloc_q_vector(struct i40e_vsi *vsi, int v_idx)
Alexander Duyck493fb302013-09-28 07:01:44 +00006819{
6820 struct i40e_q_vector *q_vector;
6821
6822 /* allocate q_vector */
6823 q_vector = kzalloc(sizeof(struct i40e_q_vector), GFP_KERNEL);
6824 if (!q_vector)
6825 return -ENOMEM;
6826
6827 q_vector->vsi = vsi;
6828 q_vector->v_idx = v_idx;
6829 cpumask_set_cpu(v_idx, &q_vector->affinity_mask);
6830 if (vsi->netdev)
6831 netif_napi_add(vsi->netdev, &q_vector->napi,
Jesse Brandeburgeefeace2014-05-10 04:49:13 +00006832 i40e_napi_poll, NAPI_POLL_WEIGHT);
Alexander Duyck493fb302013-09-28 07:01:44 +00006833
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00006834 q_vector->rx.latency_range = I40E_LOW_LATENCY;
6835 q_vector->tx.latency_range = I40E_LOW_LATENCY;
6836
Alexander Duyck493fb302013-09-28 07:01:44 +00006837 /* tie q_vector and vsi together */
6838 vsi->q_vectors[v_idx] = q_vector;
6839
6840 return 0;
6841}
6842
6843/**
Greg Rose90e04072014-03-06 08:59:57 +00006844 * i40e_vsi_alloc_q_vectors - Allocate memory for interrupt vectors
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006845 * @vsi: the VSI being configured
6846 *
6847 * We allocate one q_vector per queue interrupt. If allocation fails we
6848 * return -ENOMEM.
6849 **/
Greg Rose90e04072014-03-06 08:59:57 +00006850static int i40e_vsi_alloc_q_vectors(struct i40e_vsi *vsi)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006851{
6852 struct i40e_pf *pf = vsi->back;
6853 int v_idx, num_q_vectors;
Alexander Duyck493fb302013-09-28 07:01:44 +00006854 int err;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006855
6856 /* if not MSIX, give the one vector only to the LAN VSI */
6857 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
6858 num_q_vectors = vsi->num_q_vectors;
6859 else if (vsi == pf->vsi[pf->lan_vsi])
6860 num_q_vectors = 1;
6861 else
6862 return -EINVAL;
6863
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006864 for (v_idx = 0; v_idx < num_q_vectors; v_idx++) {
Greg Rose90e04072014-03-06 08:59:57 +00006865 err = i40e_vsi_alloc_q_vector(vsi, v_idx);
Alexander Duyck493fb302013-09-28 07:01:44 +00006866 if (err)
6867 goto err_out;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006868 }
6869
6870 return 0;
Alexander Duyck493fb302013-09-28 07:01:44 +00006871
6872err_out:
6873 while (v_idx--)
6874 i40e_free_q_vector(vsi, v_idx);
6875
6876 return err;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006877}
6878
6879/**
6880 * i40e_init_interrupt_scheme - Determine proper interrupt scheme
6881 * @pf: board private structure to initialize
6882 **/
6883static void i40e_init_interrupt_scheme(struct i40e_pf *pf)
6884{
6885 int err = 0;
6886
6887 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
6888 err = i40e_init_msix(pf);
6889 if (err) {
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08006890 pf->flags &= ~(I40E_FLAG_MSIX_ENABLED |
Vasu Dev38e00432014-08-01 13:27:03 -07006891#ifdef I40E_FCOE
6892 I40E_FLAG_FCOE_ENABLED |
6893#endif
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08006894 I40E_FLAG_RSS_ENABLED |
Neerav Parikh4d9b6042014-05-22 06:31:51 +00006895 I40E_FLAG_DCB_CAPABLE |
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08006896 I40E_FLAG_SRIOV_ENABLED |
6897 I40E_FLAG_FD_SB_ENABLED |
6898 I40E_FLAG_FD_ATR_ENABLED |
6899 I40E_FLAG_VMDQ_ENABLED);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006900
6901 /* rework the queue expectations without MSIX */
6902 i40e_determine_queue_usage(pf);
6903 }
6904 }
6905
6906 if (!(pf->flags & I40E_FLAG_MSIX_ENABLED) &&
6907 (pf->flags & I40E_FLAG_MSI_ENABLED)) {
Catherine Sullivan77fa28b2014-02-20 19:29:17 -08006908 dev_info(&pf->pdev->dev, "MSI-X not available, trying MSI\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006909 err = pci_enable_msi(pf->pdev);
6910 if (err) {
Shannon Nelson958a3e32013-09-28 07:13:28 +00006911 dev_info(&pf->pdev->dev, "MSI init failed - %d\n", err);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006912 pf->flags &= ~I40E_FLAG_MSI_ENABLED;
6913 }
6914 }
6915
Shannon Nelson958a3e32013-09-28 07:13:28 +00006916 if (!(pf->flags & (I40E_FLAG_MSIX_ENABLED | I40E_FLAG_MSI_ENABLED)))
Catherine Sullivan77fa28b2014-02-20 19:29:17 -08006917 dev_info(&pf->pdev->dev, "MSI-X and MSI not available, falling back to Legacy IRQ\n");
Shannon Nelson958a3e32013-09-28 07:13:28 +00006918
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006919 /* track first vector for misc interrupts */
6920 err = i40e_get_lump(pf, pf->irq_pile, 1, I40E_PILE_VALID_BIT-1);
6921}
6922
6923/**
6924 * i40e_setup_misc_vector - Setup the misc vector to handle non queue events
6925 * @pf: board private structure
6926 *
6927 * This sets up the handler for MSIX 0, which is used to manage the
6928 * non-queue interrupts, e.g. AdminQ and errors. This is not used
6929 * when in MSI or Legacy interrupt mode.
6930 **/
6931static int i40e_setup_misc_vector(struct i40e_pf *pf)
6932{
6933 struct i40e_hw *hw = &pf->hw;
6934 int err = 0;
6935
6936 /* Only request the irq if this is the first time through, and
6937 * not when we're rebuilding after a Reset
6938 */
6939 if (!test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state)) {
6940 err = request_irq(pf->msix_entries[0].vector,
6941 i40e_intr, 0, pf->misc_int_name, pf);
6942 if (err) {
6943 dev_info(&pf->pdev->dev,
Catherine Sullivan77fa28b2014-02-20 19:29:17 -08006944 "request_irq for %s failed: %d\n",
6945 pf->misc_int_name, err);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006946 return -EFAULT;
6947 }
6948 }
6949
6950 i40e_enable_misc_int_causes(hw);
6951
6952 /* associate no queues to the misc vector */
6953 wr32(hw, I40E_PFINT_LNKLST0, I40E_QUEUE_END_OF_LIST);
6954 wr32(hw, I40E_PFINT_ITR0(I40E_RX_ITR), I40E_ITR_8K);
6955
6956 i40e_flush(hw);
6957
6958 i40e_irq_dynamic_enable_icr0(pf);
6959
6960 return err;
6961}
6962
6963/**
6964 * i40e_config_rss - Prepare for RSS if used
6965 * @pf: board private structure
6966 **/
6967static int i40e_config_rss(struct i40e_pf *pf)
6968{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006969 /* Set of random keys generated using kernel random number generator */
6970 static const u32 seed[I40E_PFQF_HKEY_MAX_INDEX + 1] = {0x41b01687,
6971 0x183cfd8c, 0xce880440, 0x580cbc3c, 0x35897377,
6972 0x328b25e1, 0x4fa98922, 0xb7d90c14, 0xd5bad70d,
6973 0xcd15a2c1, 0xe8580225, 0x4a1e9d11, 0xfe5731be};
Anjali Singhai Jain4617e8c2013-11-20 10:02:56 +00006974 struct i40e_hw *hw = &pf->hw;
6975 u32 lut = 0;
6976 int i, j;
6977 u64 hena;
Carolyn Wybornye157ea32014-06-03 23:50:22 +00006978 u32 reg_val;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006979
6980 /* Fill out hash function seed */
6981 for (i = 0; i <= I40E_PFQF_HKEY_MAX_INDEX; i++)
6982 wr32(hw, I40E_PFQF_HKEY(i), seed[i]);
6983
6984 /* By default we enable TCP/UDP with IPv4/IPv6 ptypes */
6985 hena = (u64)rd32(hw, I40E_PFQF_HENA(0)) |
6986 ((u64)rd32(hw, I40E_PFQF_HENA(1)) << 32);
Mitch Williams12dc4fe2013-11-28 06:39:32 +00006987 hena |= I40E_DEFAULT_RSS_HENA;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006988 wr32(hw, I40E_PFQF_HENA(0), (u32)hena);
6989 wr32(hw, I40E_PFQF_HENA(1), (u32)(hena >> 32));
6990
Carolyn Wybornye157ea32014-06-03 23:50:22 +00006991 /* Check capability and Set table size and register per hw expectation*/
6992 reg_val = rd32(hw, I40E_PFQF_CTL_0);
6993 if (hw->func_caps.rss_table_size == 512) {
6994 reg_val |= I40E_PFQF_CTL_0_HASHLUTSIZE_512;
6995 pf->rss_table_size = 512;
6996 } else {
6997 pf->rss_table_size = 128;
6998 reg_val &= ~I40E_PFQF_CTL_0_HASHLUTSIZE_512;
6999 }
7000 wr32(hw, I40E_PFQF_CTL_0, reg_val);
7001
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007002 /* Populate the LUT with max no. of queues in round robin fashion */
Carolyn Wybornye157ea32014-06-03 23:50:22 +00007003 for (i = 0, j = 0; i < pf->rss_table_size; i++, j++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007004
7005 /* The assumption is that lan qp count will be the highest
7006 * qp count for any PF VSI that needs RSS.
7007 * If multiple VSIs need RSS support, all the qp counts
7008 * for those VSIs should be a power of 2 for RSS to work.
7009 * If LAN VSI is the only consumer for RSS then this requirement
7010 * is not necessary.
7011 */
7012 if (j == pf->rss_size)
7013 j = 0;
7014 /* lut = 4-byte sliding window of 4 lut entries */
7015 lut = (lut << 8) | (j &
7016 ((0x1 << pf->hw.func_caps.rss_table_entry_width) - 1));
7017 /* On i = 3, we have 4 entries in lut; write to the register */
7018 if ((i & 3) == 3)
7019 wr32(hw, I40E_PFQF_HLUT(i >> 2), lut);
7020 }
7021 i40e_flush(hw);
7022
7023 return 0;
7024}
7025
7026/**
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00007027 * i40e_reconfig_rss_queues - change number of queues for rss and rebuild
7028 * @pf: board private structure
7029 * @queue_count: the requested queue count for rss.
7030 *
7031 * returns 0 if rss is not enabled, if enabled returns the final rss queue
7032 * count which may be different from the requested queue count.
7033 **/
7034int i40e_reconfig_rss_queues(struct i40e_pf *pf, int queue_count)
7035{
7036 if (!(pf->flags & I40E_FLAG_RSS_ENABLED))
7037 return 0;
7038
7039 queue_count = min_t(int, queue_count, pf->rss_size_max);
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00007040
7041 if (queue_count != pf->rss_size) {
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00007042 i40e_prep_for_reset(pf);
7043
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00007044 pf->rss_size = queue_count;
7045
7046 i40e_reset_and_rebuild(pf, true);
7047 i40e_config_rss(pf);
7048 }
7049 dev_info(&pf->pdev->dev, "RSS count: %d\n", pf->rss_size);
7050 return pf->rss_size;
7051}
7052
7053/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007054 * i40e_sw_init - Initialize general software structures (struct i40e_pf)
7055 * @pf: board private structure to initialize
7056 *
7057 * i40e_sw_init initializes the Adapter private data structure.
7058 * Fields are initialized based on PCI device information and
7059 * OS network device settings (MTU size).
7060 **/
7061static int i40e_sw_init(struct i40e_pf *pf)
7062{
7063 int err = 0;
7064 int size;
7065
7066 pf->msg_enable = netif_msg_init(I40E_DEFAULT_MSG_ENABLE,
7067 (NETIF_MSG_DRV|NETIF_MSG_PROBE|NETIF_MSG_LINK));
Shannon Nelson27599972013-11-16 10:00:43 +00007068 pf->hw.debug_mask = pf->msg_enable | I40E_DEBUG_DIAG;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007069 if (debug != -1 && debug != I40E_DEFAULT_MSG_ENABLE) {
7070 if (I40E_DEBUG_USER & debug)
7071 pf->hw.debug_mask = debug;
7072 pf->msg_enable = netif_msg_init((debug & ~I40E_DEBUG_USER),
7073 I40E_DEFAULT_MSG_ENABLE);
7074 }
7075
7076 /* Set default capability flags */
7077 pf->flags = I40E_FLAG_RX_CSUM_ENABLED |
7078 I40E_FLAG_MSI_ENABLED |
7079 I40E_FLAG_MSIX_ENABLED |
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007080 I40E_FLAG_RX_1BUF_ENABLED;
7081
Mitch Williamsca99eb92014-04-04 04:43:07 +00007082 /* Set default ITR */
7083 pf->rx_itr_default = I40E_ITR_DYNAMIC | I40E_ITR_RX_DEF;
7084 pf->tx_itr_default = I40E_ITR_DYNAMIC | I40E_ITR_TX_DEF;
7085
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00007086 /* Depending on PF configurations, it is possible that the RSS
7087 * maximum might end up larger than the available queues
7088 */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007089 pf->rss_size_max = 0x1 << pf->hw.func_caps.rss_table_entry_width;
Paul M Stillwell Jrec9a7db2014-07-09 07:46:10 +00007090 pf->rss_size = 1;
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00007091 pf->rss_size_max = min_t(int, pf->rss_size_max,
7092 pf->hw.func_caps.num_tx_qp);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007093 if (pf->hw.func_caps.rss) {
7094 pf->flags |= I40E_FLAG_RSS_ENABLED;
Jesse Brandeburgbf051a32013-11-26 10:49:17 +00007095 pf->rss_size = min_t(int, pf->rss_size_max, num_online_cpus());
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007096 }
7097
Catherine Sullivan2050bc62013-12-18 13:46:03 +00007098 /* MFP mode enabled */
7099 if (pf->hw.func_caps.npar_enable || pf->hw.func_caps.mfp_mode_1) {
7100 pf->flags |= I40E_FLAG_MFP_ENABLED;
7101 dev_info(&pf->pdev->dev, "MFP mode Enabled\n");
7102 }
7103
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08007104 /* FW/NVM is not yet fixed in this regard */
7105 if ((pf->hw.func_caps.fd_filters_guaranteed > 0) ||
7106 (pf->hw.func_caps.fd_filters_best_effort > 0)) {
7107 pf->flags |= I40E_FLAG_FD_ATR_ENABLED;
7108 pf->atr_sample_rate = I40E_DEFAULT_ATR_SAMPLE_RATE;
Anjali Singhai Jain433c47d2014-05-22 06:32:17 +00007109 /* Setup a counter for fd_atr per pf */
7110 pf->fd_atr_cnt_idx = I40E_FD_ATR_STAT_IDX(pf->hw.pf_id);
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08007111 if (!(pf->flags & I40E_FLAG_MFP_ENABLED)) {
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08007112 pf->flags |= I40E_FLAG_FD_SB_ENABLED;
Anjali Singhai Jain433c47d2014-05-22 06:32:17 +00007113 /* Setup a counter for fd_sb per pf */
7114 pf->fd_sb_cnt_idx = I40E_FD_SB_STAT_IDX(pf->hw.pf_id);
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08007115 } else {
7116 dev_info(&pf->pdev->dev,
Anjali Singhai Jain0b675842014-03-06 08:59:51 +00007117 "Flow Director Sideband mode Disabled in MFP mode\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007118 }
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08007119 pf->fdir_pf_filter_count =
7120 pf->hw.func_caps.fd_filters_guaranteed;
7121 pf->hw.fdir_shared_filter_count =
7122 pf->hw.func_caps.fd_filters_best_effort;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007123 }
7124
7125 if (pf->hw.func_caps.vmdq) {
7126 pf->flags |= I40E_FLAG_VMDQ_ENABLED;
7127 pf->num_vmdq_vsis = I40E_DEFAULT_NUM_VMDQ_VSI;
7128 pf->num_vmdq_qps = I40E_DEFAULT_QUEUES_PER_VMDQ;
7129 }
7130
Vasu Dev38e00432014-08-01 13:27:03 -07007131#ifdef I40E_FCOE
7132 err = i40e_init_pf_fcoe(pf);
7133 if (err)
7134 dev_info(&pf->pdev->dev, "init_pf_fcoe failed: %d\n", err);
7135
7136#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007137#ifdef CONFIG_PCI_IOV
7138 if (pf->hw.func_caps.num_vfs) {
7139 pf->num_vf_qps = I40E_DEFAULT_QUEUES_PER_VF;
7140 pf->flags |= I40E_FLAG_SRIOV_ENABLED;
7141 pf->num_req_vfs = min_t(int,
7142 pf->hw.func_caps.num_vfs,
7143 I40E_MAX_VF_COUNT);
7144 }
7145#endif /* CONFIG_PCI_IOV */
7146 pf->eeprom_version = 0xDEAD;
7147 pf->lan_veb = I40E_NO_VEB;
7148 pf->lan_vsi = I40E_NO_VSI;
7149
7150 /* set up queue assignment tracking */
7151 size = sizeof(struct i40e_lump_tracking)
7152 + (sizeof(u16) * pf->hw.func_caps.num_tx_qp);
7153 pf->qp_pile = kzalloc(size, GFP_KERNEL);
7154 if (!pf->qp_pile) {
7155 err = -ENOMEM;
7156 goto sw_init_done;
7157 }
7158 pf->qp_pile->num_entries = pf->hw.func_caps.num_tx_qp;
7159 pf->qp_pile->search_hint = 0;
7160
7161 /* set up vector assignment tracking */
7162 size = sizeof(struct i40e_lump_tracking)
7163 + (sizeof(u16) * pf->hw.func_caps.num_msix_vectors);
7164 pf->irq_pile = kzalloc(size, GFP_KERNEL);
7165 if (!pf->irq_pile) {
7166 kfree(pf->qp_pile);
7167 err = -ENOMEM;
7168 goto sw_init_done;
7169 }
7170 pf->irq_pile->num_entries = pf->hw.func_caps.num_msix_vectors;
7171 pf->irq_pile->search_hint = 0;
7172
Anjali Singhai Jain327fe042014-06-04 01:23:26 +00007173 pf->tx_timeout_recovery_level = 1;
7174
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007175 mutex_init(&pf->switch_mutex);
7176
7177sw_init_done:
7178 return err;
7179}
7180
7181/**
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00007182 * i40e_set_ntuple - set the ntuple feature flag and take action
7183 * @pf: board private structure to initialize
7184 * @features: the feature set that the stack is suggesting
7185 *
7186 * returns a bool to indicate if reset needs to happen
7187 **/
7188bool i40e_set_ntuple(struct i40e_pf *pf, netdev_features_t features)
7189{
7190 bool need_reset = false;
7191
7192 /* Check if Flow Director n-tuple support was enabled or disabled. If
7193 * the state changed, we need to reset.
7194 */
7195 if (features & NETIF_F_NTUPLE) {
7196 /* Enable filters and mark for reset */
7197 if (!(pf->flags & I40E_FLAG_FD_SB_ENABLED))
7198 need_reset = true;
7199 pf->flags |= I40E_FLAG_FD_SB_ENABLED;
7200 } else {
7201 /* turn off filters, mark for reset and clear SW filter list */
7202 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
7203 need_reset = true;
7204 i40e_fdir_filter_exit(pf);
7205 }
7206 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
Anjali Singhai Jain8a4f34f2014-06-04 08:45:20 +00007207 pf->auto_disable_flags &= ~I40E_FLAG_FD_SB_ENABLED;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00007208 /* reset fd counters */
7209 pf->fd_add_err = pf->fd_atr_cnt = pf->fd_tcp_rule = 0;
7210 pf->fdir_pf_active_filters = 0;
7211 pf->flags |= I40E_FLAG_FD_ATR_ENABLED;
7212 dev_info(&pf->pdev->dev, "ATR re-enabled.\n");
Anjali Singhai Jain8a4f34f2014-06-04 08:45:20 +00007213 /* if ATR was auto disabled it can be re-enabled. */
7214 if ((pf->flags & I40E_FLAG_FD_ATR_ENABLED) &&
7215 (pf->auto_disable_flags & I40E_FLAG_FD_ATR_ENABLED))
7216 pf->auto_disable_flags &= ~I40E_FLAG_FD_ATR_ENABLED;
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00007217 }
7218 return need_reset;
7219}
7220
7221/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007222 * i40e_set_features - set the netdev feature flags
7223 * @netdev: ptr to the netdev being adjusted
7224 * @features: the feature set that the stack is suggesting
7225 **/
7226static int i40e_set_features(struct net_device *netdev,
7227 netdev_features_t features)
7228{
7229 struct i40e_netdev_priv *np = netdev_priv(netdev);
7230 struct i40e_vsi *vsi = np->vsi;
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00007231 struct i40e_pf *pf = vsi->back;
7232 bool need_reset;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007233
7234 if (features & NETIF_F_HW_VLAN_CTAG_RX)
7235 i40e_vlan_stripping_enable(vsi);
7236 else
7237 i40e_vlan_stripping_disable(vsi);
7238
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00007239 need_reset = i40e_set_ntuple(pf, features);
7240
7241 if (need_reset)
7242 i40e_do_reset(pf, (1 << __I40E_PF_RESET_REQUESTED));
7243
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007244 return 0;
7245}
7246
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007247#ifdef CONFIG_I40E_VXLAN
7248/**
7249 * i40e_get_vxlan_port_idx - Lookup a possibly offloaded for Rx UDP port
7250 * @pf: board private structure
7251 * @port: The UDP port to look up
7252 *
7253 * Returns the index number or I40E_MAX_PF_UDP_OFFLOAD_PORTS if port not found
7254 **/
7255static u8 i40e_get_vxlan_port_idx(struct i40e_pf *pf, __be16 port)
7256{
7257 u8 i;
7258
7259 for (i = 0; i < I40E_MAX_PF_UDP_OFFLOAD_PORTS; i++) {
7260 if (pf->vxlan_ports[i] == port)
7261 return i;
7262 }
7263
7264 return i;
7265}
7266
7267/**
7268 * i40e_add_vxlan_port - Get notifications about VXLAN ports that come up
7269 * @netdev: This physical port's netdev
7270 * @sa_family: Socket Family that VXLAN is notifying us about
7271 * @port: New UDP port number that VXLAN started listening to
7272 **/
7273static void i40e_add_vxlan_port(struct net_device *netdev,
7274 sa_family_t sa_family, __be16 port)
7275{
7276 struct i40e_netdev_priv *np = netdev_priv(netdev);
7277 struct i40e_vsi *vsi = np->vsi;
7278 struct i40e_pf *pf = vsi->back;
7279 u8 next_idx;
7280 u8 idx;
7281
7282 if (sa_family == AF_INET6)
7283 return;
7284
7285 idx = i40e_get_vxlan_port_idx(pf, port);
7286
7287 /* Check if port already exists */
7288 if (idx < I40E_MAX_PF_UDP_OFFLOAD_PORTS) {
7289 netdev_info(netdev, "Port %d already offloaded\n", ntohs(port));
7290 return;
7291 }
7292
7293 /* Now check if there is space to add the new port */
7294 next_idx = i40e_get_vxlan_port_idx(pf, 0);
7295
7296 if (next_idx == I40E_MAX_PF_UDP_OFFLOAD_PORTS) {
7297 netdev_info(netdev, "Maximum number of UDP ports reached, not adding port %d\n",
7298 ntohs(port));
7299 return;
7300 }
7301
7302 /* New port: add it and mark its index in the bitmap */
7303 pf->vxlan_ports[next_idx] = port;
7304 pf->pending_vxlan_bitmap |= (1 << next_idx);
7305
7306 pf->flags |= I40E_FLAG_VXLAN_FILTER_SYNC;
7307}
7308
7309/**
7310 * i40e_del_vxlan_port - Get notifications about VXLAN ports that go away
7311 * @netdev: This physical port's netdev
7312 * @sa_family: Socket Family that VXLAN is notifying us about
7313 * @port: UDP port number that VXLAN stopped listening to
7314 **/
7315static void i40e_del_vxlan_port(struct net_device *netdev,
7316 sa_family_t sa_family, __be16 port)
7317{
7318 struct i40e_netdev_priv *np = netdev_priv(netdev);
7319 struct i40e_vsi *vsi = np->vsi;
7320 struct i40e_pf *pf = vsi->back;
7321 u8 idx;
7322
7323 if (sa_family == AF_INET6)
7324 return;
7325
7326 idx = i40e_get_vxlan_port_idx(pf, port);
7327
7328 /* Check if port already exists */
7329 if (idx < I40E_MAX_PF_UDP_OFFLOAD_PORTS) {
7330 /* if port exists, set it to 0 (mark for deletion)
7331 * and make it pending
7332 */
7333 pf->vxlan_ports[idx] = 0;
7334
7335 pf->pending_vxlan_bitmap |= (1 << idx);
7336
7337 pf->flags |= I40E_FLAG_VXLAN_FILTER_SYNC;
7338 } else {
7339 netdev_warn(netdev, "Port %d was not found, not deleting\n",
7340 ntohs(port));
7341 }
7342}
7343
7344#endif
Neerav Parikh1f224ad2014-02-12 01:45:31 +00007345static int i40e_get_phys_port_id(struct net_device *netdev,
7346 struct netdev_phys_port_id *ppid)
7347{
7348 struct i40e_netdev_priv *np = netdev_priv(netdev);
7349 struct i40e_pf *pf = np->vsi->back;
7350 struct i40e_hw *hw = &pf->hw;
7351
7352 if (!(pf->flags & I40E_FLAG_PORT_ID_VALID))
7353 return -EOPNOTSUPP;
7354
7355 ppid->id_len = min_t(int, sizeof(hw->mac.port_addr), sizeof(ppid->id));
7356 memcpy(ppid->id, hw->mac.port_addr, ppid->id_len);
7357
7358 return 0;
7359}
7360
Greg Rose4ba0dea2014-03-06 08:59:55 +00007361#ifdef HAVE_FDB_OPS
7362#ifdef USE_CONST_DEV_UC_CHAR
7363static int i40e_ndo_fdb_add(struct ndmsg *ndm, struct nlattr *tb[],
7364 struct net_device *dev,
7365 const unsigned char *addr,
7366 u16 flags)
7367#else
7368static int i40e_ndo_fdb_add(struct ndmsg *ndm,
7369 struct net_device *dev,
7370 unsigned char *addr,
7371 u16 flags)
7372#endif
7373{
7374 struct i40e_netdev_priv *np = netdev_priv(dev);
7375 struct i40e_pf *pf = np->vsi->back;
7376 int err = 0;
7377
7378 if (!(pf->flags & I40E_FLAG_SRIOV_ENABLED))
7379 return -EOPNOTSUPP;
7380
7381 /* Hardware does not support aging addresses so if a
7382 * ndm_state is given only allow permanent addresses
7383 */
7384 if (ndm->ndm_state && !(ndm->ndm_state & NUD_PERMANENT)) {
7385 netdev_info(dev, "FDB only supports static addresses\n");
7386 return -EINVAL;
7387 }
7388
7389 if (is_unicast_ether_addr(addr) || is_link_local_ether_addr(addr))
7390 err = dev_uc_add_excl(dev, addr);
7391 else if (is_multicast_ether_addr(addr))
7392 err = dev_mc_add_excl(dev, addr);
7393 else
7394 err = -EINVAL;
7395
7396 /* Only return duplicate errors if NLM_F_EXCL is set */
7397 if (err == -EEXIST && !(flags & NLM_F_EXCL))
7398 err = 0;
7399
7400 return err;
7401}
7402
7403#ifndef USE_DEFAULT_FDB_DEL_DUMP
7404#ifdef USE_CONST_DEV_UC_CHAR
7405static int i40e_ndo_fdb_del(struct ndmsg *ndm,
7406 struct net_device *dev,
7407 const unsigned char *addr)
7408#else
7409static int i40e_ndo_fdb_del(struct ndmsg *ndm,
7410 struct net_device *dev,
7411 unsigned char *addr)
7412#endif
7413{
7414 struct i40e_netdev_priv *np = netdev_priv(dev);
7415 struct i40e_pf *pf = np->vsi->back;
7416 int err = -EOPNOTSUPP;
7417
7418 if (ndm->ndm_state & NUD_PERMANENT) {
7419 netdev_info(dev, "FDB only supports static addresses\n");
7420 return -EINVAL;
7421 }
7422
7423 if (pf->flags & I40E_FLAG_SRIOV_ENABLED) {
7424 if (is_unicast_ether_addr(addr))
7425 err = dev_uc_del(dev, addr);
7426 else if (is_multicast_ether_addr(addr))
7427 err = dev_mc_del(dev, addr);
7428 else
7429 err = -EINVAL;
7430 }
7431
7432 return err;
7433}
7434
7435static int i40e_ndo_fdb_dump(struct sk_buff *skb,
7436 struct netlink_callback *cb,
7437 struct net_device *dev,
Jamal Hadi Salim5d5eacb2014-07-10 07:01:58 -04007438 struct net_device *filter_dev,
Greg Rose4ba0dea2014-03-06 08:59:55 +00007439 int idx)
7440{
7441 struct i40e_netdev_priv *np = netdev_priv(dev);
7442 struct i40e_pf *pf = np->vsi->back;
7443
7444 if (pf->flags & I40E_FLAG_SRIOV_ENABLED)
Jamal Hadi Salim5d5eacb2014-07-10 07:01:58 -04007445 idx = ndo_dflt_fdb_dump(skb, cb, dev, filter_dev, idx);
Greg Rose4ba0dea2014-03-06 08:59:55 +00007446
7447 return idx;
7448}
7449
7450#endif /* USE_DEFAULT_FDB_DEL_DUMP */
7451#endif /* HAVE_FDB_OPS */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007452static const struct net_device_ops i40e_netdev_ops = {
7453 .ndo_open = i40e_open,
7454 .ndo_stop = i40e_close,
7455 .ndo_start_xmit = i40e_lan_xmit_frame,
7456 .ndo_get_stats64 = i40e_get_netdev_stats_struct,
7457 .ndo_set_rx_mode = i40e_set_rx_mode,
7458 .ndo_validate_addr = eth_validate_addr,
7459 .ndo_set_mac_address = i40e_set_mac,
7460 .ndo_change_mtu = i40e_change_mtu,
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00007461 .ndo_do_ioctl = i40e_ioctl,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007462 .ndo_tx_timeout = i40e_tx_timeout,
7463 .ndo_vlan_rx_add_vid = i40e_vlan_rx_add_vid,
7464 .ndo_vlan_rx_kill_vid = i40e_vlan_rx_kill_vid,
7465#ifdef CONFIG_NET_POLL_CONTROLLER
7466 .ndo_poll_controller = i40e_netpoll,
7467#endif
7468 .ndo_setup_tc = i40e_setup_tc,
Vasu Dev38e00432014-08-01 13:27:03 -07007469#ifdef I40E_FCOE
7470 .ndo_fcoe_enable = i40e_fcoe_enable,
7471 .ndo_fcoe_disable = i40e_fcoe_disable,
7472#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007473 .ndo_set_features = i40e_set_features,
7474 .ndo_set_vf_mac = i40e_ndo_set_vf_mac,
7475 .ndo_set_vf_vlan = i40e_ndo_set_vf_port_vlan,
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04007476 .ndo_set_vf_rate = i40e_ndo_set_vf_bw,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007477 .ndo_get_vf_config = i40e_ndo_get_vf_config,
Mitch Williams588aefa2014-02-11 08:27:49 +00007478 .ndo_set_vf_link_state = i40e_ndo_set_vf_link_state,
Serey Konge6d90042014-07-12 07:28:14 +00007479 .ndo_set_vf_spoofchk = i40e_ndo_set_vf_spoofchk,
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007480#ifdef CONFIG_I40E_VXLAN
7481 .ndo_add_vxlan_port = i40e_add_vxlan_port,
7482 .ndo_del_vxlan_port = i40e_del_vxlan_port,
7483#endif
Neerav Parikh1f224ad2014-02-12 01:45:31 +00007484 .ndo_get_phys_port_id = i40e_get_phys_port_id,
Greg Rose4ba0dea2014-03-06 08:59:55 +00007485#ifdef HAVE_FDB_OPS
7486 .ndo_fdb_add = i40e_ndo_fdb_add,
7487#ifndef USE_DEFAULT_FDB_DEL_DUMP
7488 .ndo_fdb_del = i40e_ndo_fdb_del,
7489 .ndo_fdb_dump = i40e_ndo_fdb_dump,
7490#endif
7491#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007492};
7493
7494/**
7495 * i40e_config_netdev - Setup the netdev flags
7496 * @vsi: the VSI being configured
7497 *
7498 * Returns 0 on success, negative value on failure
7499 **/
7500static int i40e_config_netdev(struct i40e_vsi *vsi)
7501{
Greg Rose1a103702013-11-28 06:42:39 +00007502 u8 brdcast[ETH_ALEN] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007503 struct i40e_pf *pf = vsi->back;
7504 struct i40e_hw *hw = &pf->hw;
7505 struct i40e_netdev_priv *np;
7506 struct net_device *netdev;
7507 u8 mac_addr[ETH_ALEN];
7508 int etherdev_size;
7509
7510 etherdev_size = sizeof(struct i40e_netdev_priv);
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00007511 netdev = alloc_etherdev_mq(etherdev_size, vsi->alloc_queue_pairs);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007512 if (!netdev)
7513 return -ENOMEM;
7514
7515 vsi->netdev = netdev;
7516 np = netdev_priv(netdev);
7517 np->vsi = vsi;
7518
Or Gerlitzd70e9412014-03-18 10:36:45 +02007519 netdev->hw_enc_features |= NETIF_F_IP_CSUM |
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007520 NETIF_F_GSO_UDP_TUNNEL |
Or Gerlitzd70e9412014-03-18 10:36:45 +02007521 NETIF_F_TSO;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007522
7523 netdev->features = NETIF_F_SG |
7524 NETIF_F_IP_CSUM |
7525 NETIF_F_SCTP_CSUM |
7526 NETIF_F_HIGHDMA |
7527 NETIF_F_GSO_UDP_TUNNEL |
7528 NETIF_F_HW_VLAN_CTAG_TX |
7529 NETIF_F_HW_VLAN_CTAG_RX |
7530 NETIF_F_HW_VLAN_CTAG_FILTER |
7531 NETIF_F_IPV6_CSUM |
7532 NETIF_F_TSO |
Jesse Brandeburg059dab62014-04-01 09:07:20 +00007533 NETIF_F_TSO_ECN |
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007534 NETIF_F_TSO6 |
7535 NETIF_F_RXCSUM |
7536 NETIF_F_RXHASH |
7537 0;
7538
Anjali Singhai Jain2e86a0b2014-04-01 07:11:53 +00007539 if (!(pf->flags & I40E_FLAG_MFP_ENABLED))
7540 netdev->features |= NETIF_F_NTUPLE;
7541
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007542 /* copy netdev features into list of user selectable features */
7543 netdev->hw_features |= netdev->features;
7544
7545 if (vsi->type == I40E_VSI_MAIN) {
7546 SET_NETDEV_DEV(netdev, &pf->pdev->dev);
Greg Rose9a173902014-05-22 06:32:02 +00007547 ether_addr_copy(mac_addr, hw->mac.perm_addr);
Shannon Nelson30650cc2014-07-29 04:01:50 +00007548 /* The following steps are necessary to prevent reception
7549 * of tagged packets - some older NVM configurations load a
7550 * default a MAC-VLAN filter that accepts any tagged packet
7551 * which must be replaced by a normal filter.
Greg Rose8c27d422014-05-22 06:31:56 +00007552 */
Shannon Nelson30650cc2014-07-29 04:01:50 +00007553 if (!i40e_rm_default_mac_filter(vsi, mac_addr))
7554 i40e_add_filter(vsi, mac_addr,
7555 I40E_VLAN_ANY, false, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007556 } else {
7557 /* relate the VSI_VMDQ name to the VSI_MAIN name */
7558 snprintf(netdev->name, IFNAMSIZ, "%sv%%d",
7559 pf->vsi[pf->lan_vsi]->netdev->name);
7560 random_ether_addr(mac_addr);
7561 i40e_add_filter(vsi, mac_addr, I40E_VLAN_ANY, false, false);
7562 }
Greg Rose1a103702013-11-28 06:42:39 +00007563 i40e_add_filter(vsi, brdcast, I40E_VLAN_ANY, false, false);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007564
Greg Rose9a173902014-05-22 06:32:02 +00007565 ether_addr_copy(netdev->dev_addr, mac_addr);
7566 ether_addr_copy(netdev->perm_addr, mac_addr);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007567 /* vlan gets same features (except vlan offload)
7568 * after any tweaks for specific VSI types
7569 */
7570 netdev->vlan_features = netdev->features & ~(NETIF_F_HW_VLAN_CTAG_TX |
7571 NETIF_F_HW_VLAN_CTAG_RX |
7572 NETIF_F_HW_VLAN_CTAG_FILTER);
7573 netdev->priv_flags |= IFF_UNICAST_FLT;
7574 netdev->priv_flags |= IFF_SUPP_NOFCS;
7575 /* Setup netdev TC information */
7576 i40e_vsi_config_netdev_tc(vsi, vsi->tc_config.enabled_tc);
7577
7578 netdev->netdev_ops = &i40e_netdev_ops;
7579 netdev->watchdog_timeo = 5 * HZ;
7580 i40e_set_ethtool_ops(netdev);
Vasu Dev38e00432014-08-01 13:27:03 -07007581#ifdef I40E_FCOE
7582 i40e_fcoe_config_netdev(netdev, vsi);
7583#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007584
7585 return 0;
7586}
7587
7588/**
7589 * i40e_vsi_delete - Delete a VSI from the switch
7590 * @vsi: the VSI being removed
7591 *
7592 * Returns 0 on success, negative value on failure
7593 **/
7594static void i40e_vsi_delete(struct i40e_vsi *vsi)
7595{
7596 /* remove default VSI is not allowed */
7597 if (vsi == vsi->back->vsi[vsi->back->lan_vsi])
7598 return;
7599
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007600 i40e_aq_delete_element(&vsi->back->hw, vsi->seid, NULL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007601}
7602
7603/**
7604 * i40e_add_vsi - Add a VSI to the switch
7605 * @vsi: the VSI being configured
7606 *
7607 * This initializes a VSI context depending on the VSI type to be added and
7608 * passes it down to the add_vsi aq command.
7609 **/
7610static int i40e_add_vsi(struct i40e_vsi *vsi)
7611{
7612 int ret = -ENODEV;
7613 struct i40e_mac_filter *f, *ftmp;
7614 struct i40e_pf *pf = vsi->back;
7615 struct i40e_hw *hw = &pf->hw;
7616 struct i40e_vsi_context ctxt;
7617 u8 enabled_tc = 0x1; /* TC0 enabled */
7618 int f_count = 0;
7619
7620 memset(&ctxt, 0, sizeof(ctxt));
7621 switch (vsi->type) {
7622 case I40E_VSI_MAIN:
7623 /* The PF's main VSI is already setup as part of the
7624 * device initialization, so we'll not bother with
7625 * the add_vsi call, but we will retrieve the current
7626 * VSI context.
7627 */
7628 ctxt.seid = pf->main_vsi_seid;
7629 ctxt.pf_num = pf->hw.pf_id;
7630 ctxt.vf_num = 0;
7631 ret = i40e_aq_get_vsi_params(&pf->hw, &ctxt, NULL);
7632 ctxt.flags = I40E_AQ_VSI_TYPE_PF;
7633 if (ret) {
7634 dev_info(&pf->pdev->dev,
7635 "couldn't get pf vsi config, err %d, aq_err %d\n",
7636 ret, pf->hw.aq.asq_last_status);
7637 return -ENOENT;
7638 }
7639 memcpy(&vsi->info, &ctxt.info, sizeof(ctxt.info));
7640 vsi->info.valid_sections = 0;
7641
7642 vsi->seid = ctxt.seid;
7643 vsi->id = ctxt.vsi_number;
7644
7645 enabled_tc = i40e_pf_get_tc_map(pf);
7646
7647 /* MFP mode setup queue map and update VSI */
7648 if (pf->flags & I40E_FLAG_MFP_ENABLED) {
7649 memset(&ctxt, 0, sizeof(ctxt));
7650 ctxt.seid = pf->main_vsi_seid;
7651 ctxt.pf_num = pf->hw.pf_id;
7652 ctxt.vf_num = 0;
7653 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, false);
7654 ret = i40e_aq_update_vsi_params(hw, &ctxt, NULL);
7655 if (ret) {
7656 dev_info(&pf->pdev->dev,
7657 "update vsi failed, aq_err=%d\n",
7658 pf->hw.aq.asq_last_status);
7659 ret = -ENOENT;
7660 goto err;
7661 }
7662 /* update the local VSI info queue map */
7663 i40e_vsi_update_queue_map(vsi, &ctxt);
7664 vsi->info.valid_sections = 0;
7665 } else {
7666 /* Default/Main VSI is only enabled for TC0
7667 * reconfigure it to enable all TCs that are
7668 * available on the port in SFP mode.
7669 */
7670 ret = i40e_vsi_config_tc(vsi, enabled_tc);
7671 if (ret) {
7672 dev_info(&pf->pdev->dev,
7673 "failed to configure TCs for main VSI tc_map 0x%08x, err %d, aq_err %d\n",
7674 enabled_tc, ret,
7675 pf->hw.aq.asq_last_status);
7676 ret = -ENOENT;
7677 }
7678 }
7679 break;
7680
7681 case I40E_VSI_FDIR:
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08007682 ctxt.pf_num = hw->pf_id;
7683 ctxt.vf_num = 0;
7684 ctxt.uplink_seid = vsi->uplink_seid;
7685 ctxt.connection_type = 0x1; /* regular data port */
7686 ctxt.flags = I40E_AQ_VSI_TYPE_PF;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007687 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007688 break;
7689
7690 case I40E_VSI_VMDQ2:
7691 ctxt.pf_num = hw->pf_id;
7692 ctxt.vf_num = 0;
7693 ctxt.uplink_seid = vsi->uplink_seid;
7694 ctxt.connection_type = 0x1; /* regular data port */
7695 ctxt.flags = I40E_AQ_VSI_TYPE_VMDQ2;
7696
7697 ctxt.info.valid_sections |= cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
7698
7699 /* This VSI is connected to VEB so the switch_id
7700 * should be set to zero by default.
7701 */
7702 ctxt.info.switch_id = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007703 ctxt.info.switch_id |= cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
7704
7705 /* Setup the VSI tx/rx queue map for TC0 only for now */
7706 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, true);
7707 break;
7708
7709 case I40E_VSI_SRIOV:
7710 ctxt.pf_num = hw->pf_id;
7711 ctxt.vf_num = vsi->vf_id + hw->func_caps.vf_base_id;
7712 ctxt.uplink_seid = vsi->uplink_seid;
7713 ctxt.connection_type = 0x1; /* regular data port */
7714 ctxt.flags = I40E_AQ_VSI_TYPE_VF;
7715
7716 ctxt.info.valid_sections |= cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
7717
7718 /* This VSI is connected to VEB so the switch_id
7719 * should be set to zero by default.
7720 */
7721 ctxt.info.switch_id = cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
7722
7723 ctxt.info.valid_sections |= cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
7724 ctxt.info.port_vlan_flags |= I40E_AQ_VSI_PVLAN_MODE_ALL;
Mitch Williamsc674d122014-05-20 08:01:40 +00007725 if (pf->vf[vsi->vf_id].spoofchk) {
7726 ctxt.info.valid_sections |=
7727 cpu_to_le16(I40E_AQ_VSI_PROP_SECURITY_VALID);
7728 ctxt.info.sec_flags |=
7729 (I40E_AQ_VSI_SEC_FLAG_ENABLE_VLAN_CHK |
7730 I40E_AQ_VSI_SEC_FLAG_ENABLE_MAC_CHK);
7731 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007732 /* Setup the VSI tx/rx queue map for TC0 only for now */
7733 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, true);
7734 break;
7735
Vasu Dev38e00432014-08-01 13:27:03 -07007736#ifdef I40E_FCOE
7737 case I40E_VSI_FCOE:
7738 ret = i40e_fcoe_vsi_init(vsi, &ctxt);
7739 if (ret) {
7740 dev_info(&pf->pdev->dev, "failed to initialize FCoE VSI\n");
7741 return ret;
7742 }
7743 break;
7744
7745#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007746 default:
7747 return -ENODEV;
7748 }
7749
7750 if (vsi->type != I40E_VSI_MAIN) {
7751 ret = i40e_aq_add_vsi(hw, &ctxt, NULL);
7752 if (ret) {
7753 dev_info(&vsi->back->pdev->dev,
7754 "add vsi failed, aq_err=%d\n",
7755 vsi->back->hw.aq.asq_last_status);
7756 ret = -ENOENT;
7757 goto err;
7758 }
7759 memcpy(&vsi->info, &ctxt.info, sizeof(ctxt.info));
7760 vsi->info.valid_sections = 0;
7761 vsi->seid = ctxt.seid;
7762 vsi->id = ctxt.vsi_number;
7763 }
7764
7765 /* If macvlan filters already exist, force them to get loaded */
7766 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
7767 f->changed = true;
7768 f_count++;
Shannon Nelson6252c7e2014-06-04 01:23:23 +00007769
7770 if (f->is_laa && vsi->type == I40E_VSI_MAIN) {
Shannon Nelson30650cc2014-07-29 04:01:50 +00007771 struct i40e_aqc_remove_macvlan_element_data element;
7772
7773 memset(&element, 0, sizeof(element));
7774 ether_addr_copy(element.mac_addr, f->macaddr);
7775 element.flags = I40E_AQC_MACVLAN_DEL_PERFECT_MATCH;
7776 ret = i40e_aq_remove_macvlan(hw, vsi->seid,
7777 &element, 1, NULL);
7778 if (ret) {
7779 /* some older FW has a different default */
7780 element.flags |=
7781 I40E_AQC_MACVLAN_DEL_IGNORE_VLAN;
7782 i40e_aq_remove_macvlan(hw, vsi->seid,
7783 &element, 1, NULL);
7784 }
7785
7786 i40e_aq_mac_address_write(hw,
Shannon Nelson6252c7e2014-06-04 01:23:23 +00007787 I40E_AQC_WRITE_TYPE_LAA_WOL,
7788 f->macaddr, NULL);
7789 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007790 }
7791 if (f_count) {
7792 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
7793 pf->flags |= I40E_FLAG_FILTER_SYNC;
7794 }
7795
7796 /* Update VSI BW information */
7797 ret = i40e_vsi_get_bw_info(vsi);
7798 if (ret) {
7799 dev_info(&pf->pdev->dev,
7800 "couldn't get vsi bw info, err %d, aq_err %d\n",
7801 ret, pf->hw.aq.asq_last_status);
7802 /* VSI is already added so not tearing that up */
7803 ret = 0;
7804 }
7805
7806err:
7807 return ret;
7808}
7809
7810/**
7811 * i40e_vsi_release - Delete a VSI and free its resources
7812 * @vsi: the VSI being removed
7813 *
7814 * Returns 0 on success or < 0 on error
7815 **/
7816int i40e_vsi_release(struct i40e_vsi *vsi)
7817{
7818 struct i40e_mac_filter *f, *ftmp;
7819 struct i40e_veb *veb = NULL;
7820 struct i40e_pf *pf;
7821 u16 uplink_seid;
7822 int i, n;
7823
7824 pf = vsi->back;
7825
7826 /* release of a VEB-owner or last VSI is not allowed */
7827 if (vsi->flags & I40E_VSI_FLAG_VEB_OWNER) {
7828 dev_info(&pf->pdev->dev, "VSI %d has existing VEB %d\n",
7829 vsi->seid, vsi->uplink_seid);
7830 return -ENODEV;
7831 }
7832 if (vsi == pf->vsi[pf->lan_vsi] &&
7833 !test_bit(__I40E_DOWN, &pf->state)) {
7834 dev_info(&pf->pdev->dev, "Can't remove PF VSI\n");
7835 return -ENODEV;
7836 }
7837
7838 uplink_seid = vsi->uplink_seid;
7839 if (vsi->type != I40E_VSI_SRIOV) {
7840 if (vsi->netdev_registered) {
7841 vsi->netdev_registered = false;
7842 if (vsi->netdev) {
7843 /* results in a call to i40e_close() */
7844 unregister_netdev(vsi->netdev);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007845 }
7846 } else {
Shannon Nelson90ef8d42014-03-14 07:32:26 +00007847 i40e_vsi_close(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007848 }
7849 i40e_vsi_disable_irq(vsi);
7850 }
7851
7852 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list)
7853 i40e_del_filter(vsi, f->macaddr, f->vlan,
7854 f->is_vf, f->is_netdev);
7855 i40e_sync_vsi_filters(vsi);
7856
7857 i40e_vsi_delete(vsi);
7858 i40e_vsi_free_q_vectors(vsi);
Shannon Nelsona4866592014-02-11 08:24:07 +00007859 if (vsi->netdev) {
7860 free_netdev(vsi->netdev);
7861 vsi->netdev = NULL;
7862 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007863 i40e_vsi_clear_rings(vsi);
7864 i40e_vsi_clear(vsi);
7865
7866 /* If this was the last thing on the VEB, except for the
7867 * controlling VSI, remove the VEB, which puts the controlling
7868 * VSI onto the next level down in the switch.
7869 *
7870 * Well, okay, there's one more exception here: don't remove
7871 * the orphan VEBs yet. We'll wait for an explicit remove request
7872 * from up the network stack.
7873 */
Mitch Williams505682c2014-05-20 08:01:37 +00007874 for (n = 0, i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007875 if (pf->vsi[i] &&
7876 pf->vsi[i]->uplink_seid == uplink_seid &&
7877 (pf->vsi[i]->flags & I40E_VSI_FLAG_VEB_OWNER) == 0) {
7878 n++; /* count the VSIs */
7879 }
7880 }
7881 for (i = 0; i < I40E_MAX_VEB; i++) {
7882 if (!pf->veb[i])
7883 continue;
7884 if (pf->veb[i]->uplink_seid == uplink_seid)
7885 n++; /* count the VEBs */
7886 if (pf->veb[i]->seid == uplink_seid)
7887 veb = pf->veb[i];
7888 }
7889 if (n == 0 && veb && veb->uplink_seid != 0)
7890 i40e_veb_release(veb);
7891
7892 return 0;
7893}
7894
7895/**
7896 * i40e_vsi_setup_vectors - Set up the q_vectors for the given VSI
7897 * @vsi: ptr to the VSI
7898 *
7899 * This should only be called after i40e_vsi_mem_alloc() which allocates the
7900 * corresponding SW VSI structure and initializes num_queue_pairs for the
7901 * newly allocated VSI.
7902 *
7903 * Returns 0 on success or negative on failure
7904 **/
7905static int i40e_vsi_setup_vectors(struct i40e_vsi *vsi)
7906{
7907 int ret = -ENOENT;
7908 struct i40e_pf *pf = vsi->back;
7909
Alexander Duyck493fb302013-09-28 07:01:44 +00007910 if (vsi->q_vectors[0]) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007911 dev_info(&pf->pdev->dev, "VSI %d has existing q_vectors\n",
7912 vsi->seid);
7913 return -EEXIST;
7914 }
7915
7916 if (vsi->base_vector) {
Jesse Brandeburgf29eaa32014-02-11 08:24:12 +00007917 dev_info(&pf->pdev->dev, "VSI %d has non-zero base vector %d\n",
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007918 vsi->seid, vsi->base_vector);
7919 return -EEXIST;
7920 }
7921
Greg Rose90e04072014-03-06 08:59:57 +00007922 ret = i40e_vsi_alloc_q_vectors(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007923 if (ret) {
7924 dev_info(&pf->pdev->dev,
7925 "failed to allocate %d q_vector for VSI %d, ret=%d\n",
7926 vsi->num_q_vectors, vsi->seid, ret);
7927 vsi->num_q_vectors = 0;
7928 goto vector_setup_out;
7929 }
7930
Shannon Nelson958a3e32013-09-28 07:13:28 +00007931 if (vsi->num_q_vectors)
7932 vsi->base_vector = i40e_get_lump(pf, pf->irq_pile,
7933 vsi->num_q_vectors, vsi->idx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007934 if (vsi->base_vector < 0) {
7935 dev_info(&pf->pdev->dev,
Jesse Brandeburgf29eaa32014-02-11 08:24:12 +00007936 "failed to get queue tracking for VSI %d, err=%d\n",
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007937 vsi->seid, vsi->base_vector);
7938 i40e_vsi_free_q_vectors(vsi);
7939 ret = -ENOENT;
7940 goto vector_setup_out;
7941 }
7942
7943vector_setup_out:
7944 return ret;
7945}
7946
7947/**
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007948 * i40e_vsi_reinit_setup - return and reallocate resources for a VSI
7949 * @vsi: pointer to the vsi.
7950 *
7951 * This re-allocates a vsi's queue resources.
7952 *
7953 * Returns pointer to the successfully allocated and configured VSI sw struct
7954 * on success, otherwise returns NULL on failure.
7955 **/
7956static struct i40e_vsi *i40e_vsi_reinit_setup(struct i40e_vsi *vsi)
7957{
7958 struct i40e_pf *pf = vsi->back;
7959 u8 enabled_tc;
7960 int ret;
7961
7962 i40e_put_lump(pf->qp_pile, vsi->base_queue, vsi->idx);
7963 i40e_vsi_clear_rings(vsi);
7964
7965 i40e_vsi_free_arrays(vsi, false);
7966 i40e_set_num_rings_in_vsi(vsi);
7967 ret = i40e_vsi_alloc_arrays(vsi, false);
7968 if (ret)
7969 goto err_vsi;
7970
7971 ret = i40e_get_lump(pf, pf->qp_pile, vsi->alloc_queue_pairs, vsi->idx);
7972 if (ret < 0) {
7973 dev_info(&pf->pdev->dev, "VSI %d get_lump failed %d\n",
7974 vsi->seid, ret);
7975 goto err_vsi;
7976 }
7977 vsi->base_queue = ret;
7978
7979 /* Update the FW view of the VSI. Force a reset of TC and queue
7980 * layout configurations.
7981 */
7982 enabled_tc = pf->vsi[pf->lan_vsi]->tc_config.enabled_tc;
7983 pf->vsi[pf->lan_vsi]->tc_config.enabled_tc = 0;
7984 pf->vsi[pf->lan_vsi]->seid = pf->main_vsi_seid;
7985 i40e_vsi_config_tc(pf->vsi[pf->lan_vsi], enabled_tc);
7986
7987 /* assign it some queues */
7988 ret = i40e_alloc_rings(vsi);
7989 if (ret)
7990 goto err_rings;
7991
7992 /* map all of the rings to the q_vectors */
7993 i40e_vsi_map_rings_to_vectors(vsi);
7994 return vsi;
7995
7996err_rings:
7997 i40e_vsi_free_q_vectors(vsi);
7998 if (vsi->netdev_registered) {
7999 vsi->netdev_registered = false;
8000 unregister_netdev(vsi->netdev);
8001 free_netdev(vsi->netdev);
8002 vsi->netdev = NULL;
8003 }
8004 i40e_aq_delete_element(&pf->hw, vsi->seid, NULL);
8005err_vsi:
8006 i40e_vsi_clear(vsi);
8007 return NULL;
8008}
8009
8010/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008011 * i40e_vsi_setup - Set up a VSI by a given type
8012 * @pf: board private structure
8013 * @type: VSI type
8014 * @uplink_seid: the switch element to link to
8015 * @param1: usage depends upon VSI type. For VF types, indicates VF id
8016 *
8017 * This allocates the sw VSI structure and its queue resources, then add a VSI
8018 * to the identified VEB.
8019 *
8020 * Returns pointer to the successfully allocated and configure VSI sw struct on
8021 * success, otherwise returns NULL on failure.
8022 **/
8023struct i40e_vsi *i40e_vsi_setup(struct i40e_pf *pf, u8 type,
8024 u16 uplink_seid, u32 param1)
8025{
8026 struct i40e_vsi *vsi = NULL;
8027 struct i40e_veb *veb = NULL;
8028 int ret, i;
8029 int v_idx;
8030
8031 /* The requested uplink_seid must be either
8032 * - the PF's port seid
8033 * no VEB is needed because this is the PF
8034 * or this is a Flow Director special case VSI
8035 * - seid of an existing VEB
8036 * - seid of a VSI that owns an existing VEB
8037 * - seid of a VSI that doesn't own a VEB
8038 * a new VEB is created and the VSI becomes the owner
8039 * - seid of the PF VSI, which is what creates the first VEB
8040 * this is a special case of the previous
8041 *
8042 * Find which uplink_seid we were given and create a new VEB if needed
8043 */
8044 for (i = 0; i < I40E_MAX_VEB; i++) {
8045 if (pf->veb[i] && pf->veb[i]->seid == uplink_seid) {
8046 veb = pf->veb[i];
8047 break;
8048 }
8049 }
8050
8051 if (!veb && uplink_seid != pf->mac_seid) {
8052
Mitch Williams505682c2014-05-20 08:01:37 +00008053 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008054 if (pf->vsi[i] && pf->vsi[i]->seid == uplink_seid) {
8055 vsi = pf->vsi[i];
8056 break;
8057 }
8058 }
8059 if (!vsi) {
8060 dev_info(&pf->pdev->dev, "no such uplink_seid %d\n",
8061 uplink_seid);
8062 return NULL;
8063 }
8064
8065 if (vsi->uplink_seid == pf->mac_seid)
8066 veb = i40e_veb_setup(pf, 0, pf->mac_seid, vsi->seid,
8067 vsi->tc_config.enabled_tc);
8068 else if ((vsi->flags & I40E_VSI_FLAG_VEB_OWNER) == 0)
8069 veb = i40e_veb_setup(pf, 0, vsi->uplink_seid, vsi->seid,
8070 vsi->tc_config.enabled_tc);
8071
8072 for (i = 0; i < I40E_MAX_VEB && !veb; i++) {
8073 if (pf->veb[i] && pf->veb[i]->seid == vsi->uplink_seid)
8074 veb = pf->veb[i];
8075 }
8076 if (!veb) {
8077 dev_info(&pf->pdev->dev, "couldn't add VEB\n");
8078 return NULL;
8079 }
8080
8081 vsi->flags |= I40E_VSI_FLAG_VEB_OWNER;
8082 uplink_seid = veb->seid;
8083 }
8084
8085 /* get vsi sw struct */
8086 v_idx = i40e_vsi_mem_alloc(pf, type);
8087 if (v_idx < 0)
8088 goto err_alloc;
8089 vsi = pf->vsi[v_idx];
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008090 if (!vsi)
8091 goto err_alloc;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008092 vsi->type = type;
8093 vsi->veb_idx = (veb ? veb->idx : I40E_NO_VEB);
8094
8095 if (type == I40E_VSI_MAIN)
8096 pf->lan_vsi = v_idx;
8097 else if (type == I40E_VSI_SRIOV)
8098 vsi->vf_id = param1;
8099 /* assign it some queues */
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008100 ret = i40e_get_lump(pf, pf->qp_pile, vsi->alloc_queue_pairs,
8101 vsi->idx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008102 if (ret < 0) {
8103 dev_info(&pf->pdev->dev, "VSI %d get_lump failed %d\n",
8104 vsi->seid, ret);
8105 goto err_vsi;
8106 }
8107 vsi->base_queue = ret;
8108
8109 /* get a VSI from the hardware */
8110 vsi->uplink_seid = uplink_seid;
8111 ret = i40e_add_vsi(vsi);
8112 if (ret)
8113 goto err_vsi;
8114
8115 switch (vsi->type) {
8116 /* setup the netdev if needed */
8117 case I40E_VSI_MAIN:
8118 case I40E_VSI_VMDQ2:
Vasu Dev38e00432014-08-01 13:27:03 -07008119 case I40E_VSI_FCOE:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008120 ret = i40e_config_netdev(vsi);
8121 if (ret)
8122 goto err_netdev;
8123 ret = register_netdev(vsi->netdev);
8124 if (ret)
8125 goto err_netdev;
8126 vsi->netdev_registered = true;
8127 netif_carrier_off(vsi->netdev);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08008128#ifdef CONFIG_I40E_DCB
8129 /* Setup DCB netlink interface */
8130 i40e_dcbnl_setup(vsi);
8131#endif /* CONFIG_I40E_DCB */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008132 /* fall through */
8133
8134 case I40E_VSI_FDIR:
8135 /* set up vectors and rings if needed */
8136 ret = i40e_vsi_setup_vectors(vsi);
8137 if (ret)
8138 goto err_msix;
8139
8140 ret = i40e_alloc_rings(vsi);
8141 if (ret)
8142 goto err_rings;
8143
8144 /* map all of the rings to the q_vectors */
8145 i40e_vsi_map_rings_to_vectors(vsi);
8146
8147 i40e_vsi_reset_stats(vsi);
8148 break;
8149
8150 default:
8151 /* no netdev or rings for the other VSI types */
8152 break;
8153 }
8154
8155 return vsi;
8156
8157err_rings:
8158 i40e_vsi_free_q_vectors(vsi);
8159err_msix:
8160 if (vsi->netdev_registered) {
8161 vsi->netdev_registered = false;
8162 unregister_netdev(vsi->netdev);
8163 free_netdev(vsi->netdev);
8164 vsi->netdev = NULL;
8165 }
8166err_netdev:
8167 i40e_aq_delete_element(&pf->hw, vsi->seid, NULL);
8168err_vsi:
8169 i40e_vsi_clear(vsi);
8170err_alloc:
8171 return NULL;
8172}
8173
8174/**
8175 * i40e_veb_get_bw_info - Query VEB BW information
8176 * @veb: the veb to query
8177 *
8178 * Query the Tx scheduler BW configuration data for given VEB
8179 **/
8180static int i40e_veb_get_bw_info(struct i40e_veb *veb)
8181{
8182 struct i40e_aqc_query_switching_comp_ets_config_resp ets_data;
8183 struct i40e_aqc_query_switching_comp_bw_config_resp bw_data;
8184 struct i40e_pf *pf = veb->pf;
8185 struct i40e_hw *hw = &pf->hw;
8186 u32 tc_bw_max;
8187 int ret = 0;
8188 int i;
8189
8190 ret = i40e_aq_query_switch_comp_bw_config(hw, veb->seid,
8191 &bw_data, NULL);
8192 if (ret) {
8193 dev_info(&pf->pdev->dev,
8194 "query veb bw config failed, aq_err=%d\n",
8195 hw->aq.asq_last_status);
8196 goto out;
8197 }
8198
8199 ret = i40e_aq_query_switch_comp_ets_config(hw, veb->seid,
8200 &ets_data, NULL);
8201 if (ret) {
8202 dev_info(&pf->pdev->dev,
8203 "query veb bw ets config failed, aq_err=%d\n",
8204 hw->aq.asq_last_status);
8205 goto out;
8206 }
8207
8208 veb->bw_limit = le16_to_cpu(ets_data.port_bw_limit);
8209 veb->bw_max_quanta = ets_data.tc_bw_max;
8210 veb->is_abs_credits = bw_data.absolute_credits_enable;
8211 tc_bw_max = le16_to_cpu(bw_data.tc_bw_max[0]) |
8212 (le16_to_cpu(bw_data.tc_bw_max[1]) << 16);
8213 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
8214 veb->bw_tc_share_credits[i] = bw_data.tc_bw_share_credits[i];
8215 veb->bw_tc_limit_credits[i] =
8216 le16_to_cpu(bw_data.tc_bw_limits[i]);
8217 veb->bw_tc_max_quanta[i] = ((tc_bw_max >> (i*4)) & 0x7);
8218 }
8219
8220out:
8221 return ret;
8222}
8223
8224/**
8225 * i40e_veb_mem_alloc - Allocates the next available struct veb in the PF
8226 * @pf: board private structure
8227 *
8228 * On error: returns error code (negative)
8229 * On success: returns vsi index in PF (positive)
8230 **/
8231static int i40e_veb_mem_alloc(struct i40e_pf *pf)
8232{
8233 int ret = -ENOENT;
8234 struct i40e_veb *veb;
8235 int i;
8236
8237 /* Need to protect the allocation of switch elements at the PF level */
8238 mutex_lock(&pf->switch_mutex);
8239
8240 /* VEB list may be fragmented if VEB creation/destruction has
8241 * been happening. We can afford to do a quick scan to look
8242 * for any free slots in the list.
8243 *
8244 * find next empty veb slot, looping back around if necessary
8245 */
8246 i = 0;
8247 while ((i < I40E_MAX_VEB) && (pf->veb[i] != NULL))
8248 i++;
8249 if (i >= I40E_MAX_VEB) {
8250 ret = -ENOMEM;
8251 goto err_alloc_veb; /* out of VEB slots! */
8252 }
8253
8254 veb = kzalloc(sizeof(*veb), GFP_KERNEL);
8255 if (!veb) {
8256 ret = -ENOMEM;
8257 goto err_alloc_veb;
8258 }
8259 veb->pf = pf;
8260 veb->idx = i;
8261 veb->enabled_tc = 1;
8262
8263 pf->veb[i] = veb;
8264 ret = i;
8265err_alloc_veb:
8266 mutex_unlock(&pf->switch_mutex);
8267 return ret;
8268}
8269
8270/**
8271 * i40e_switch_branch_release - Delete a branch of the switch tree
8272 * @branch: where to start deleting
8273 *
8274 * This uses recursion to find the tips of the branch to be
8275 * removed, deleting until we get back to and can delete this VEB.
8276 **/
8277static void i40e_switch_branch_release(struct i40e_veb *branch)
8278{
8279 struct i40e_pf *pf = branch->pf;
8280 u16 branch_seid = branch->seid;
8281 u16 veb_idx = branch->idx;
8282 int i;
8283
8284 /* release any VEBs on this VEB - RECURSION */
8285 for (i = 0; i < I40E_MAX_VEB; i++) {
8286 if (!pf->veb[i])
8287 continue;
8288 if (pf->veb[i]->uplink_seid == branch->seid)
8289 i40e_switch_branch_release(pf->veb[i]);
8290 }
8291
8292 /* Release the VSIs on this VEB, but not the owner VSI.
8293 *
8294 * NOTE: Removing the last VSI on a VEB has the SIDE EFFECT of removing
8295 * the VEB itself, so don't use (*branch) after this loop.
8296 */
Mitch Williams505682c2014-05-20 08:01:37 +00008297 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008298 if (!pf->vsi[i])
8299 continue;
8300 if (pf->vsi[i]->uplink_seid == branch_seid &&
8301 (pf->vsi[i]->flags & I40E_VSI_FLAG_VEB_OWNER) == 0) {
8302 i40e_vsi_release(pf->vsi[i]);
8303 }
8304 }
8305
8306 /* There's one corner case where the VEB might not have been
8307 * removed, so double check it here and remove it if needed.
8308 * This case happens if the veb was created from the debugfs
8309 * commands and no VSIs were added to it.
8310 */
8311 if (pf->veb[veb_idx])
8312 i40e_veb_release(pf->veb[veb_idx]);
8313}
8314
8315/**
8316 * i40e_veb_clear - remove veb struct
8317 * @veb: the veb to remove
8318 **/
8319static void i40e_veb_clear(struct i40e_veb *veb)
8320{
8321 if (!veb)
8322 return;
8323
8324 if (veb->pf) {
8325 struct i40e_pf *pf = veb->pf;
8326
8327 mutex_lock(&pf->switch_mutex);
8328 if (pf->veb[veb->idx] == veb)
8329 pf->veb[veb->idx] = NULL;
8330 mutex_unlock(&pf->switch_mutex);
8331 }
8332
8333 kfree(veb);
8334}
8335
8336/**
8337 * i40e_veb_release - Delete a VEB and free its resources
8338 * @veb: the VEB being removed
8339 **/
8340void i40e_veb_release(struct i40e_veb *veb)
8341{
8342 struct i40e_vsi *vsi = NULL;
8343 struct i40e_pf *pf;
8344 int i, n = 0;
8345
8346 pf = veb->pf;
8347
8348 /* find the remaining VSI and check for extras */
Mitch Williams505682c2014-05-20 08:01:37 +00008349 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008350 if (pf->vsi[i] && pf->vsi[i]->uplink_seid == veb->seid) {
8351 n++;
8352 vsi = pf->vsi[i];
8353 }
8354 }
8355 if (n != 1) {
8356 dev_info(&pf->pdev->dev,
8357 "can't remove VEB %d with %d VSIs left\n",
8358 veb->seid, n);
8359 return;
8360 }
8361
8362 /* move the remaining VSI to uplink veb */
8363 vsi->flags &= ~I40E_VSI_FLAG_VEB_OWNER;
8364 if (veb->uplink_seid) {
8365 vsi->uplink_seid = veb->uplink_seid;
8366 if (veb->uplink_seid == pf->mac_seid)
8367 vsi->veb_idx = I40E_NO_VEB;
8368 else
8369 vsi->veb_idx = veb->veb_idx;
8370 } else {
8371 /* floating VEB */
8372 vsi->uplink_seid = pf->vsi[pf->lan_vsi]->uplink_seid;
8373 vsi->veb_idx = pf->vsi[pf->lan_vsi]->veb_idx;
8374 }
8375
8376 i40e_aq_delete_element(&pf->hw, veb->seid, NULL);
8377 i40e_veb_clear(veb);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008378}
8379
8380/**
8381 * i40e_add_veb - create the VEB in the switch
8382 * @veb: the VEB to be instantiated
8383 * @vsi: the controlling VSI
8384 **/
8385static int i40e_add_veb(struct i40e_veb *veb, struct i40e_vsi *vsi)
8386{
Greg Rose56747262013-11-28 06:39:37 +00008387 bool is_default = false;
Kevin Scotte1c51b952013-11-20 10:02:51 +00008388 bool is_cloud = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008389 int ret;
8390
8391 /* get a VEB from the hardware */
8392 ret = i40e_aq_add_veb(&veb->pf->hw, veb->uplink_seid, vsi->seid,
Kevin Scotte1c51b952013-11-20 10:02:51 +00008393 veb->enabled_tc, is_default,
8394 is_cloud, &veb->seid, NULL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008395 if (ret) {
8396 dev_info(&veb->pf->pdev->dev,
8397 "couldn't add VEB, err %d, aq_err %d\n",
8398 ret, veb->pf->hw.aq.asq_last_status);
8399 return -EPERM;
8400 }
8401
8402 /* get statistics counter */
8403 ret = i40e_aq_get_veb_parameters(&veb->pf->hw, veb->seid, NULL, NULL,
8404 &veb->stats_idx, NULL, NULL, NULL);
8405 if (ret) {
8406 dev_info(&veb->pf->pdev->dev,
8407 "couldn't get VEB statistics idx, err %d, aq_err %d\n",
8408 ret, veb->pf->hw.aq.asq_last_status);
8409 return -EPERM;
8410 }
8411 ret = i40e_veb_get_bw_info(veb);
8412 if (ret) {
8413 dev_info(&veb->pf->pdev->dev,
8414 "couldn't get VEB bw info, err %d, aq_err %d\n",
8415 ret, veb->pf->hw.aq.asq_last_status);
8416 i40e_aq_delete_element(&veb->pf->hw, veb->seid, NULL);
8417 return -ENOENT;
8418 }
8419
8420 vsi->uplink_seid = veb->seid;
8421 vsi->veb_idx = veb->idx;
8422 vsi->flags |= I40E_VSI_FLAG_VEB_OWNER;
8423
8424 return 0;
8425}
8426
8427/**
8428 * i40e_veb_setup - Set up a VEB
8429 * @pf: board private structure
8430 * @flags: VEB setup flags
8431 * @uplink_seid: the switch element to link to
8432 * @vsi_seid: the initial VSI seid
8433 * @enabled_tc: Enabled TC bit-map
8434 *
8435 * This allocates the sw VEB structure and links it into the switch
8436 * It is possible and legal for this to be a duplicate of an already
8437 * existing VEB. It is also possible for both uplink and vsi seids
8438 * to be zero, in order to create a floating VEB.
8439 *
8440 * Returns pointer to the successfully allocated VEB sw struct on
8441 * success, otherwise returns NULL on failure.
8442 **/
8443struct i40e_veb *i40e_veb_setup(struct i40e_pf *pf, u16 flags,
8444 u16 uplink_seid, u16 vsi_seid,
8445 u8 enabled_tc)
8446{
8447 struct i40e_veb *veb, *uplink_veb = NULL;
8448 int vsi_idx, veb_idx;
8449 int ret;
8450
8451 /* if one seid is 0, the other must be 0 to create a floating relay */
8452 if ((uplink_seid == 0 || vsi_seid == 0) &&
8453 (uplink_seid + vsi_seid != 0)) {
8454 dev_info(&pf->pdev->dev,
8455 "one, not both seid's are 0: uplink=%d vsi=%d\n",
8456 uplink_seid, vsi_seid);
8457 return NULL;
8458 }
8459
8460 /* make sure there is such a vsi and uplink */
Mitch Williams505682c2014-05-20 08:01:37 +00008461 for (vsi_idx = 0; vsi_idx < pf->num_alloc_vsi; vsi_idx++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008462 if (pf->vsi[vsi_idx] && pf->vsi[vsi_idx]->seid == vsi_seid)
8463 break;
Mitch Williams505682c2014-05-20 08:01:37 +00008464 if (vsi_idx >= pf->num_alloc_vsi && vsi_seid != 0) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008465 dev_info(&pf->pdev->dev, "vsi seid %d not found\n",
8466 vsi_seid);
8467 return NULL;
8468 }
8469
8470 if (uplink_seid && uplink_seid != pf->mac_seid) {
8471 for (veb_idx = 0; veb_idx < I40E_MAX_VEB; veb_idx++) {
8472 if (pf->veb[veb_idx] &&
8473 pf->veb[veb_idx]->seid == uplink_seid) {
8474 uplink_veb = pf->veb[veb_idx];
8475 break;
8476 }
8477 }
8478 if (!uplink_veb) {
8479 dev_info(&pf->pdev->dev,
8480 "uplink seid %d not found\n", uplink_seid);
8481 return NULL;
8482 }
8483 }
8484
8485 /* get veb sw struct */
8486 veb_idx = i40e_veb_mem_alloc(pf);
8487 if (veb_idx < 0)
8488 goto err_alloc;
8489 veb = pf->veb[veb_idx];
8490 veb->flags = flags;
8491 veb->uplink_seid = uplink_seid;
8492 veb->veb_idx = (uplink_veb ? uplink_veb->idx : I40E_NO_VEB);
8493 veb->enabled_tc = (enabled_tc ? enabled_tc : 0x1);
8494
8495 /* create the VEB in the switch */
8496 ret = i40e_add_veb(veb, pf->vsi[vsi_idx]);
8497 if (ret)
8498 goto err_veb;
Shannon Nelson1bb8b932014-04-23 04:49:54 +00008499 if (vsi_idx == pf->lan_vsi)
8500 pf->lan_veb = veb->idx;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008501
8502 return veb;
8503
8504err_veb:
8505 i40e_veb_clear(veb);
8506err_alloc:
8507 return NULL;
8508}
8509
8510/**
8511 * i40e_setup_pf_switch_element - set pf vars based on switch type
8512 * @pf: board private structure
8513 * @ele: element we are building info from
8514 * @num_reported: total number of elements
8515 * @printconfig: should we print the contents
8516 *
8517 * helper function to assist in extracting a few useful SEID values.
8518 **/
8519static void i40e_setup_pf_switch_element(struct i40e_pf *pf,
8520 struct i40e_aqc_switch_config_element_resp *ele,
8521 u16 num_reported, bool printconfig)
8522{
8523 u16 downlink_seid = le16_to_cpu(ele->downlink_seid);
8524 u16 uplink_seid = le16_to_cpu(ele->uplink_seid);
8525 u8 element_type = ele->element_type;
8526 u16 seid = le16_to_cpu(ele->seid);
8527
8528 if (printconfig)
8529 dev_info(&pf->pdev->dev,
8530 "type=%d seid=%d uplink=%d downlink=%d\n",
8531 element_type, seid, uplink_seid, downlink_seid);
8532
8533 switch (element_type) {
8534 case I40E_SWITCH_ELEMENT_TYPE_MAC:
8535 pf->mac_seid = seid;
8536 break;
8537 case I40E_SWITCH_ELEMENT_TYPE_VEB:
8538 /* Main VEB? */
8539 if (uplink_seid != pf->mac_seid)
8540 break;
8541 if (pf->lan_veb == I40E_NO_VEB) {
8542 int v;
8543
8544 /* find existing or else empty VEB */
8545 for (v = 0; v < I40E_MAX_VEB; v++) {
8546 if (pf->veb[v] && (pf->veb[v]->seid == seid)) {
8547 pf->lan_veb = v;
8548 break;
8549 }
8550 }
8551 if (pf->lan_veb == I40E_NO_VEB) {
8552 v = i40e_veb_mem_alloc(pf);
8553 if (v < 0)
8554 break;
8555 pf->lan_veb = v;
8556 }
8557 }
8558
8559 pf->veb[pf->lan_veb]->seid = seid;
8560 pf->veb[pf->lan_veb]->uplink_seid = pf->mac_seid;
8561 pf->veb[pf->lan_veb]->pf = pf;
8562 pf->veb[pf->lan_veb]->veb_idx = I40E_NO_VEB;
8563 break;
8564 case I40E_SWITCH_ELEMENT_TYPE_VSI:
8565 if (num_reported != 1)
8566 break;
8567 /* This is immediately after a reset so we can assume this is
8568 * the PF's VSI
8569 */
8570 pf->mac_seid = uplink_seid;
8571 pf->pf_seid = downlink_seid;
8572 pf->main_vsi_seid = seid;
8573 if (printconfig)
8574 dev_info(&pf->pdev->dev,
8575 "pf_seid=%d main_vsi_seid=%d\n",
8576 pf->pf_seid, pf->main_vsi_seid);
8577 break;
8578 case I40E_SWITCH_ELEMENT_TYPE_PF:
8579 case I40E_SWITCH_ELEMENT_TYPE_VF:
8580 case I40E_SWITCH_ELEMENT_TYPE_EMP:
8581 case I40E_SWITCH_ELEMENT_TYPE_BMC:
8582 case I40E_SWITCH_ELEMENT_TYPE_PE:
8583 case I40E_SWITCH_ELEMENT_TYPE_PA:
8584 /* ignore these for now */
8585 break;
8586 default:
8587 dev_info(&pf->pdev->dev, "unknown element type=%d seid=%d\n",
8588 element_type, seid);
8589 break;
8590 }
8591}
8592
8593/**
8594 * i40e_fetch_switch_configuration - Get switch config from firmware
8595 * @pf: board private structure
8596 * @printconfig: should we print the contents
8597 *
8598 * Get the current switch configuration from the device and
8599 * extract a few useful SEID values.
8600 **/
8601int i40e_fetch_switch_configuration(struct i40e_pf *pf, bool printconfig)
8602{
8603 struct i40e_aqc_get_switch_config_resp *sw_config;
8604 u16 next_seid = 0;
8605 int ret = 0;
8606 u8 *aq_buf;
8607 int i;
8608
8609 aq_buf = kzalloc(I40E_AQ_LARGE_BUF, GFP_KERNEL);
8610 if (!aq_buf)
8611 return -ENOMEM;
8612
8613 sw_config = (struct i40e_aqc_get_switch_config_resp *)aq_buf;
8614 do {
8615 u16 num_reported, num_total;
8616
8617 ret = i40e_aq_get_switch_config(&pf->hw, sw_config,
8618 I40E_AQ_LARGE_BUF,
8619 &next_seid, NULL);
8620 if (ret) {
8621 dev_info(&pf->pdev->dev,
8622 "get switch config failed %d aq_err=%x\n",
8623 ret, pf->hw.aq.asq_last_status);
8624 kfree(aq_buf);
8625 return -ENOENT;
8626 }
8627
8628 num_reported = le16_to_cpu(sw_config->header.num_reported);
8629 num_total = le16_to_cpu(sw_config->header.num_total);
8630
8631 if (printconfig)
8632 dev_info(&pf->pdev->dev,
8633 "header: %d reported %d total\n",
8634 num_reported, num_total);
8635
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008636 for (i = 0; i < num_reported; i++) {
8637 struct i40e_aqc_switch_config_element_resp *ele =
8638 &sw_config->element[i];
8639
8640 i40e_setup_pf_switch_element(pf, ele, num_reported,
8641 printconfig);
8642 }
8643 } while (next_seid != 0);
8644
8645 kfree(aq_buf);
8646 return ret;
8647}
8648
8649/**
8650 * i40e_setup_pf_switch - Setup the HW switch on startup or after reset
8651 * @pf: board private structure
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00008652 * @reinit: if the Main VSI needs to re-initialized.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008653 *
8654 * Returns 0 on success, negative value on failure
8655 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00008656static int i40e_setup_pf_switch(struct i40e_pf *pf, bool reinit)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008657{
8658 int ret;
8659
8660 /* find out what's out there already */
8661 ret = i40e_fetch_switch_configuration(pf, false);
8662 if (ret) {
8663 dev_info(&pf->pdev->dev,
8664 "couldn't fetch switch config, err %d, aq_err %d\n",
8665 ret, pf->hw.aq.asq_last_status);
8666 return ret;
8667 }
8668 i40e_pf_reset_stats(pf);
8669
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008670 /* first time setup */
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00008671 if (pf->lan_vsi == I40E_NO_VSI || reinit) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008672 struct i40e_vsi *vsi = NULL;
8673 u16 uplink_seid;
8674
8675 /* Set up the PF VSI associated with the PF's main VSI
8676 * that is already in the HW switch
8677 */
8678 if (pf->lan_veb != I40E_NO_VEB && pf->veb[pf->lan_veb])
8679 uplink_seid = pf->veb[pf->lan_veb]->seid;
8680 else
8681 uplink_seid = pf->mac_seid;
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00008682 if (pf->lan_vsi == I40E_NO_VSI)
8683 vsi = i40e_vsi_setup(pf, I40E_VSI_MAIN, uplink_seid, 0);
8684 else if (reinit)
8685 vsi = i40e_vsi_reinit_setup(pf->vsi[pf->lan_vsi]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008686 if (!vsi) {
8687 dev_info(&pf->pdev->dev, "setup of MAIN VSI failed\n");
8688 i40e_fdir_teardown(pf);
8689 return -EAGAIN;
8690 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008691 } else {
8692 /* force a reset of TC and queue layout configurations */
8693 u8 enabled_tc = pf->vsi[pf->lan_vsi]->tc_config.enabled_tc;
8694 pf->vsi[pf->lan_vsi]->tc_config.enabled_tc = 0;
8695 pf->vsi[pf->lan_vsi]->seid = pf->main_vsi_seid;
8696 i40e_vsi_config_tc(pf->vsi[pf->lan_vsi], enabled_tc);
8697 }
8698 i40e_vlan_stripping_disable(pf->vsi[pf->lan_vsi]);
8699
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008700 i40e_fdir_sb_setup(pf);
8701
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008702 /* Setup static PF queue filter control settings */
8703 ret = i40e_setup_pf_filter_control(pf);
8704 if (ret) {
8705 dev_info(&pf->pdev->dev, "setup_pf_filter_control failed: %d\n",
8706 ret);
8707 /* Failure here should not stop continuing other steps */
8708 }
8709
8710 /* enable RSS in the HW, even for only one queue, as the stack can use
8711 * the hash
8712 */
8713 if ((pf->flags & I40E_FLAG_RSS_ENABLED))
8714 i40e_config_rss(pf);
8715
8716 /* fill in link information and enable LSE reporting */
Catherine Sullivan8109e122014-06-04 08:45:24 +00008717 i40e_update_link_info(&pf->hw, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008718 i40e_link_event(pf);
8719
Jesse Brandeburgd52c20b2013-11-26 10:49:15 +00008720 /* Initialize user-specific link properties */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008721 pf->fc_autoneg_status = ((pf->hw.phy.link_info.an_info &
8722 I40E_AQ_AN_COMPLETED) ? true : false);
Jesse Brandeburgd52c20b2013-11-26 10:49:15 +00008723
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00008724 i40e_ptp_init(pf);
8725
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008726 return ret;
8727}
8728
8729/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008730 * i40e_determine_queue_usage - Work out queue distribution
8731 * @pf: board private structure
8732 **/
8733static void i40e_determine_queue_usage(struct i40e_pf *pf)
8734{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008735 int queues_left;
8736
8737 pf->num_lan_qps = 0;
Vasu Dev38e00432014-08-01 13:27:03 -07008738#ifdef I40E_FCOE
8739 pf->num_fcoe_qps = 0;
8740#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008741
8742 /* Find the max queues to be put into basic use. We'll always be
8743 * using TC0, whether or not DCB is running, and TC0 will get the
8744 * big RSS set.
8745 */
8746 queues_left = pf->hw.func_caps.num_tx_qp;
8747
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008748 if ((queues_left == 1) ||
Frank Zhang9aa7e932014-05-20 08:01:42 +00008749 !(pf->flags & I40E_FLAG_MSIX_ENABLED)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008750 /* one qp for PF, no queues for anything else */
8751 queues_left = 0;
8752 pf->rss_size = pf->num_lan_qps = 1;
8753
8754 /* make sure all the fancies are disabled */
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08008755 pf->flags &= ~(I40E_FLAG_RSS_ENABLED |
Vasu Dev38e00432014-08-01 13:27:03 -07008756#ifdef I40E_FCOE
8757 I40E_FLAG_FCOE_ENABLED |
8758#endif
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08008759 I40E_FLAG_FD_SB_ENABLED |
8760 I40E_FLAG_FD_ATR_ENABLED |
Neerav Parikh4d9b6042014-05-22 06:31:51 +00008761 I40E_FLAG_DCB_CAPABLE |
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08008762 I40E_FLAG_SRIOV_ENABLED |
8763 I40E_FLAG_VMDQ_ENABLED);
Frank Zhang9aa7e932014-05-20 08:01:42 +00008764 } else if (!(pf->flags & (I40E_FLAG_RSS_ENABLED |
8765 I40E_FLAG_FD_SB_ENABLED |
Anjali Singhai Jainbbe7d0e2014-05-20 08:01:44 +00008766 I40E_FLAG_FD_ATR_ENABLED |
Neerav Parikh4d9b6042014-05-22 06:31:51 +00008767 I40E_FLAG_DCB_CAPABLE))) {
Frank Zhang9aa7e932014-05-20 08:01:42 +00008768 /* one qp for PF */
8769 pf->rss_size = pf->num_lan_qps = 1;
8770 queues_left -= pf->num_lan_qps;
8771
8772 pf->flags &= ~(I40E_FLAG_RSS_ENABLED |
Vasu Dev38e00432014-08-01 13:27:03 -07008773#ifdef I40E_FCOE
8774 I40E_FLAG_FCOE_ENABLED |
8775#endif
Frank Zhang9aa7e932014-05-20 08:01:42 +00008776 I40E_FLAG_FD_SB_ENABLED |
8777 I40E_FLAG_FD_ATR_ENABLED |
8778 I40E_FLAG_DCB_ENABLED |
8779 I40E_FLAG_VMDQ_ENABLED);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008780 } else {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008781 /* Not enough queues for all TCs */
Neerav Parikh4d9b6042014-05-22 06:31:51 +00008782 if ((pf->flags & I40E_FLAG_DCB_CAPABLE) &&
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008783 (queues_left < I40E_MAX_TRAFFIC_CLASS)) {
Neerav Parikh4d9b6042014-05-22 06:31:51 +00008784 pf->flags &= ~I40E_FLAG_DCB_CAPABLE;
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008785 dev_info(&pf->pdev->dev, "not enough queues for DCB. DCB is disabled.\n");
8786 }
8787 pf->num_lan_qps = pf->rss_size_max;
8788 queues_left -= pf->num_lan_qps;
8789 }
8790
Vasu Dev38e00432014-08-01 13:27:03 -07008791#ifdef I40E_FCOE
8792 if (pf->flags & I40E_FLAG_FCOE_ENABLED) {
8793 if (I40E_DEFAULT_FCOE <= queues_left) {
8794 pf->num_fcoe_qps = I40E_DEFAULT_FCOE;
8795 } else if (I40E_MINIMUM_FCOE <= queues_left) {
8796 pf->num_fcoe_qps = I40E_MINIMUM_FCOE;
8797 } else {
8798 pf->num_fcoe_qps = 0;
8799 pf->flags &= ~I40E_FLAG_FCOE_ENABLED;
8800 dev_info(&pf->pdev->dev, "not enough queues for FCoE. FCoE feature will be disabled\n");
8801 }
8802
8803 queues_left -= pf->num_fcoe_qps;
8804 }
8805
8806#endif
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008807 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
8808 if (queues_left > 1) {
8809 queues_left -= 1; /* save 1 queue for FD */
8810 } else {
8811 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
8812 dev_info(&pf->pdev->dev, "not enough queues for Flow Director. Flow Director feature is disabled\n");
8813 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008814 }
8815
8816 if ((pf->flags & I40E_FLAG_SRIOV_ENABLED) &&
8817 pf->num_vf_qps && pf->num_req_vfs && queues_left) {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008818 pf->num_req_vfs = min_t(int, pf->num_req_vfs,
8819 (queues_left / pf->num_vf_qps));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008820 queues_left -= (pf->num_req_vfs * pf->num_vf_qps);
8821 }
8822
8823 if ((pf->flags & I40E_FLAG_VMDQ_ENABLED) &&
8824 pf->num_vmdq_vsis && pf->num_vmdq_qps && queues_left) {
8825 pf->num_vmdq_vsis = min_t(int, pf->num_vmdq_vsis,
8826 (queues_left / pf->num_vmdq_qps));
8827 queues_left -= (pf->num_vmdq_vsis * pf->num_vmdq_qps);
8828 }
8829
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00008830 pf->queues_left = queues_left;
Vasu Dev38e00432014-08-01 13:27:03 -07008831#ifdef I40E_FCOE
8832 dev_info(&pf->pdev->dev, "fcoe queues = %d\n", pf->num_fcoe_qps);
8833#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008834}
8835
8836/**
8837 * i40e_setup_pf_filter_control - Setup PF static filter control
8838 * @pf: PF to be setup
8839 *
8840 * i40e_setup_pf_filter_control sets up a pf's initial filter control
8841 * settings. If PE/FCoE are enabled then it will also set the per PF
8842 * based filter sizes required for them. It also enables Flow director,
8843 * ethertype and macvlan type filter settings for the pf.
8844 *
8845 * Returns 0 on success, negative on failure
8846 **/
8847static int i40e_setup_pf_filter_control(struct i40e_pf *pf)
8848{
8849 struct i40e_filter_control_settings *settings = &pf->filter_settings;
8850
8851 settings->hash_lut_size = I40E_HASH_LUT_SIZE_128;
8852
8853 /* Flow Director is enabled */
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08008854 if (pf->flags & (I40E_FLAG_FD_SB_ENABLED | I40E_FLAG_FD_ATR_ENABLED))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008855 settings->enable_fdir = true;
8856
8857 /* Ethtype and MACVLAN filters enabled for PF */
8858 settings->enable_ethtype = true;
8859 settings->enable_macvlan = true;
8860
8861 if (i40e_set_filter_control(&pf->hw, settings))
8862 return -ENOENT;
8863
8864 return 0;
8865}
8866
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00008867#define INFO_STRING_LEN 255
8868static void i40e_print_features(struct i40e_pf *pf)
8869{
8870 struct i40e_hw *hw = &pf->hw;
8871 char *buf, *string;
8872
8873 string = kzalloc(INFO_STRING_LEN, GFP_KERNEL);
8874 if (!string) {
8875 dev_err(&pf->pdev->dev, "Features string allocation failed\n");
8876 return;
8877 }
8878
8879 buf = string;
8880
8881 buf += sprintf(string, "Features: PF-id[%d] ", hw->pf_id);
8882#ifdef CONFIG_PCI_IOV
8883 buf += sprintf(buf, "VFs: %d ", pf->num_req_vfs);
8884#endif
8885 buf += sprintf(buf, "VSIs: %d QP: %d ", pf->hw.func_caps.num_vsis,
8886 pf->vsi[pf->lan_vsi]->num_queue_pairs);
8887
8888 if (pf->flags & I40E_FLAG_RSS_ENABLED)
8889 buf += sprintf(buf, "RSS ");
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00008890 if (pf->flags & I40E_FLAG_FD_ATR_ENABLED)
Akeem G Abodunrinc6423ff2014-05-10 04:49:08 +00008891 buf += sprintf(buf, "FD_ATR ");
8892 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
8893 buf += sprintf(buf, "FD_SB ");
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00008894 buf += sprintf(buf, "NTUPLE ");
Akeem G Abodunrinc6423ff2014-05-10 04:49:08 +00008895 }
Neerav Parikh4d9b6042014-05-22 06:31:51 +00008896 if (pf->flags & I40E_FLAG_DCB_CAPABLE)
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00008897 buf += sprintf(buf, "DCB ");
8898 if (pf->flags & I40E_FLAG_PTP)
8899 buf += sprintf(buf, "PTP ");
Vasu Dev38e00432014-08-01 13:27:03 -07008900#ifdef I40E_FCOE
8901 if (pf->flags & I40E_FLAG_FCOE_ENABLED)
8902 buf += sprintf(buf, "FCOE ");
8903#endif
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00008904
8905 BUG_ON(buf > (string + INFO_STRING_LEN));
8906 dev_info(&pf->pdev->dev, "%s\n", string);
8907 kfree(string);
8908}
8909
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008910/**
8911 * i40e_probe - Device initialization routine
8912 * @pdev: PCI device information struct
8913 * @ent: entry in i40e_pci_tbl
8914 *
8915 * i40e_probe initializes a pf identified by a pci_dev structure.
8916 * The OS initialization, configuring of the pf private structure,
8917 * and a hardware reset occur.
8918 *
8919 * Returns 0 on success, negative on failure
8920 **/
8921static int i40e_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
8922{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008923 struct i40e_pf *pf;
8924 struct i40e_hw *hw;
Anjali Singhai Jain93cd7652013-11-20 10:03:01 +00008925 static u16 pfs_found;
Catherine Sullivand4dfb812013-11-28 06:39:21 +00008926 u16 link_status;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008927 int err = 0;
8928 u32 len;
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00008929 u32 i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008930
8931 err = pci_enable_device_mem(pdev);
8932 if (err)
8933 return err;
8934
8935 /* set up for high or low dma */
Mitch Williams64942942014-02-11 08:26:33 +00008936 err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64));
Mitch Williams64942942014-02-11 08:26:33 +00008937 if (err) {
Jean Sacrene3e3bfd2014-03-25 04:30:27 +00008938 err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
8939 if (err) {
8940 dev_err(&pdev->dev,
8941 "DMA configuration failed: 0x%x\n", err);
8942 goto err_dma;
8943 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008944 }
8945
8946 /* set up pci connections */
8947 err = pci_request_selected_regions(pdev, pci_select_bars(pdev,
8948 IORESOURCE_MEM), i40e_driver_name);
8949 if (err) {
8950 dev_info(&pdev->dev,
8951 "pci_request_selected_regions failed %d\n", err);
8952 goto err_pci_reg;
8953 }
8954
8955 pci_enable_pcie_error_reporting(pdev);
8956 pci_set_master(pdev);
8957
8958 /* Now that we have a PCI connection, we need to do the
8959 * low level device setup. This is primarily setting up
8960 * the Admin Queue structures and then querying for the
8961 * device's current profile information.
8962 */
8963 pf = kzalloc(sizeof(*pf), GFP_KERNEL);
8964 if (!pf) {
8965 err = -ENOMEM;
8966 goto err_pf_alloc;
8967 }
8968 pf->next_vsi = 0;
8969 pf->pdev = pdev;
8970 set_bit(__I40E_DOWN, &pf->state);
8971
8972 hw = &pf->hw;
8973 hw->back = pf;
8974 hw->hw_addr = ioremap(pci_resource_start(pdev, 0),
8975 pci_resource_len(pdev, 0));
8976 if (!hw->hw_addr) {
8977 err = -EIO;
8978 dev_info(&pdev->dev, "ioremap(0x%04x, 0x%04x) failed: 0x%x\n",
8979 (unsigned int)pci_resource_start(pdev, 0),
8980 (unsigned int)pci_resource_len(pdev, 0), err);
8981 goto err_ioremap;
8982 }
8983 hw->vendor_id = pdev->vendor;
8984 hw->device_id = pdev->device;
8985 pci_read_config_byte(pdev, PCI_REVISION_ID, &hw->revision_id);
8986 hw->subsystem_vendor_id = pdev->subsystem_vendor;
8987 hw->subsystem_device_id = pdev->subsystem_device;
8988 hw->bus.device = PCI_SLOT(pdev->devfn);
8989 hw->bus.func = PCI_FUNC(pdev->devfn);
Anjali Singhai Jain93cd7652013-11-20 10:03:01 +00008990 pf->instance = pfs_found;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008991
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00008992 /* do a special CORER for clearing PXE mode once at init */
8993 if (hw->revision_id == 0 &&
8994 (rd32(hw, I40E_GLLAN_RCTL_0) & I40E_GLLAN_RCTL_0_PXE_MODE_MASK)) {
8995 wr32(hw, I40E_GLGEN_RTRIG, I40E_GLGEN_RTRIG_CORER_MASK);
8996 i40e_flush(hw);
8997 msleep(200);
8998 pf->corer_count++;
8999
9000 i40e_clear_pxe_mode(hw);
9001 }
9002
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009003 /* Reset here to make sure all is clean and to define PF 'n' */
Shannon Nelson838d41d2014-06-04 20:41:27 +00009004 i40e_clear_hw(hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009005 err = i40e_pf_reset(hw);
9006 if (err) {
9007 dev_info(&pdev->dev, "Initial pf_reset failed: %d\n", err);
9008 goto err_pf_reset;
9009 }
9010 pf->pfr_count++;
9011
9012 hw->aq.num_arq_entries = I40E_AQ_LEN;
9013 hw->aq.num_asq_entries = I40E_AQ_LEN;
9014 hw->aq.arq_buf_size = I40E_MAX_AQ_BUF_SIZE;
9015 hw->aq.asq_buf_size = I40E_MAX_AQ_BUF_SIZE;
9016 pf->adminq_work_limit = I40E_AQ_WORK_LIMIT;
9017 snprintf(pf->misc_int_name, sizeof(pf->misc_int_name) - 1,
9018 "%s-pf%d:misc",
9019 dev_driver_string(&pf->pdev->dev), pf->hw.pf_id);
9020
9021 err = i40e_init_shared_code(hw);
9022 if (err) {
9023 dev_info(&pdev->dev, "init_shared_code failed: %d\n", err);
9024 goto err_pf_reset;
9025 }
9026
Jesse Brandeburgd52c20b2013-11-26 10:49:15 +00009027 /* set up a default setting for link flow control */
9028 pf->hw.fc.requested_mode = I40E_FC_NONE;
9029
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009030 err = i40e_init_adminq(hw);
9031 dev_info(&pdev->dev, "%s\n", i40e_fw_version_str(hw));
9032 if (err) {
9033 dev_info(&pdev->dev,
Catherine Sullivan7aa67612014-07-09 07:46:17 +00009034 "The driver for the device stopped because the NVM image is newer than expected. You must install the most recent version of the network driver.\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009035 goto err_pf_reset;
9036 }
9037
Catherine Sullivan7aa67612014-07-09 07:46:17 +00009038 if (hw->aq.api_maj_ver == I40E_FW_API_VERSION_MAJOR &&
9039 hw->aq.api_min_ver > I40E_FW_API_VERSION_MINOR)
Shannon Nelson278b6f62014-06-04 01:41:03 +00009040 dev_info(&pdev->dev,
Catherine Sullivan7aa67612014-07-09 07:46:17 +00009041 "The driver for the device detected a newer version of the NVM image than expected. Please install the most recent version of the network driver.\n");
9042 else if (hw->aq.api_maj_ver < I40E_FW_API_VERSION_MAJOR ||
9043 hw->aq.api_min_ver < (I40E_FW_API_VERSION_MINOR - 1))
Shannon Nelson278b6f62014-06-04 01:41:03 +00009044 dev_info(&pdev->dev,
Catherine Sullivan7aa67612014-07-09 07:46:17 +00009045 "The driver for the device detected an older version of the NVM image than expected. Please update the NVM image.\n");
Shannon Nelson278b6f62014-06-04 01:41:03 +00009046
9047
Shannon Nelson4eb3f762014-03-06 08:59:58 +00009048 i40e_verify_eeprom(pf);
9049
Jesse Brandeburg2c5fe332014-04-23 04:49:57 +00009050 /* Rev 0 hardware was never productized */
9051 if (hw->revision_id < 1)
9052 dev_warn(&pdev->dev, "This device is a pre-production adapter/LOM. Please be aware there may be issues with your hardware. If you are experiencing problems please contact your Intel or hardware representative who provided you with this hardware.\n");
9053
Shannon Nelson6ff4ef82013-12-21 05:44:49 +00009054 i40e_clear_pxe_mode(hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009055 err = i40e_get_capabilities(pf);
9056 if (err)
9057 goto err_adminq_setup;
9058
9059 err = i40e_sw_init(pf);
9060 if (err) {
9061 dev_info(&pdev->dev, "sw_init failed: %d\n", err);
9062 goto err_sw_init;
9063 }
9064
9065 err = i40e_init_lan_hmc(hw, hw->func_caps.num_tx_qp,
9066 hw->func_caps.num_rx_qp,
9067 pf->fcoe_hmc_cntx_num, pf->fcoe_hmc_filt_num);
9068 if (err) {
9069 dev_info(&pdev->dev, "init_lan_hmc failed: %d\n", err);
9070 goto err_init_lan_hmc;
9071 }
9072
9073 err = i40e_configure_lan_hmc(hw, I40E_HMC_MODEL_DIRECT_ONLY);
9074 if (err) {
9075 dev_info(&pdev->dev, "configure_lan_hmc failed: %d\n", err);
9076 err = -ENOENT;
9077 goto err_configure_lan_hmc;
9078 }
9079
9080 i40e_get_mac_addr(hw, hw->mac.addr);
Jesse Brandeburgf62b5062013-11-28 06:39:27 +00009081 if (!is_valid_ether_addr(hw->mac.addr)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009082 dev_info(&pdev->dev, "invalid MAC address %pM\n", hw->mac.addr);
9083 err = -EIO;
9084 goto err_mac_addr;
9085 }
9086 dev_info(&pdev->dev, "MAC address: %pM\n", hw->mac.addr);
Greg Rose9a173902014-05-22 06:32:02 +00009087 ether_addr_copy(hw->mac.perm_addr, hw->mac.addr);
Neerav Parikh1f224ad2014-02-12 01:45:31 +00009088 i40e_get_port_mac_addr(hw, hw->mac.port_addr);
9089 if (is_valid_ether_addr(hw->mac.port_addr))
9090 pf->flags |= I40E_FLAG_PORT_ID_VALID;
Vasu Dev38e00432014-08-01 13:27:03 -07009091#ifdef I40E_FCOE
9092 err = i40e_get_san_mac_addr(hw, hw->mac.san_addr);
9093 if (err)
9094 dev_info(&pdev->dev,
9095 "(non-fatal) SAN MAC retrieval failed: %d\n", err);
9096 if (!is_valid_ether_addr(hw->mac.san_addr)) {
9097 dev_warn(&pdev->dev, "invalid SAN MAC address %pM, falling back to LAN MAC\n",
9098 hw->mac.san_addr);
9099 ether_addr_copy(hw->mac.san_addr, hw->mac.addr);
9100 }
9101 dev_info(&pf->pdev->dev, "SAN MAC: %pM\n", hw->mac.san_addr);
9102#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009103
9104 pci_set_drvdata(pdev, pf);
9105 pci_save_state(pdev);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08009106#ifdef CONFIG_I40E_DCB
9107 err = i40e_init_pf_dcb(pf);
9108 if (err) {
9109 dev_info(&pdev->dev, "init_pf_dcb failed: %d\n", err);
Neerav Parikh4d9b6042014-05-22 06:31:51 +00009110 pf->flags &= ~I40E_FLAG_DCB_CAPABLE;
Neerav Parikh014269f2014-04-01 07:11:48 +00009111 /* Continue without DCB enabled */
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08009112 }
9113#endif /* CONFIG_I40E_DCB */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009114
9115 /* set up periodic task facility */
9116 setup_timer(&pf->service_timer, i40e_service_timer, (unsigned long)pf);
9117 pf->service_timer_period = HZ;
9118
9119 INIT_WORK(&pf->service_task, i40e_service_task);
9120 clear_bit(__I40E_SERVICE_SCHED, &pf->state);
9121 pf->flags |= I40E_FLAG_NEED_LINK_UPDATE;
9122 pf->link_check_timeout = jiffies;
9123
Shannon Nelson8e2773a2013-11-28 06:39:22 +00009124 /* WoL defaults to disabled */
9125 pf->wol_en = false;
9126 device_set_wakeup_enable(&pf->pdev->dev, pf->wol_en);
9127
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009128 /* set up the main switch operations */
9129 i40e_determine_queue_usage(pf);
9130 i40e_init_interrupt_scheme(pf);
9131
Mitch Williams505682c2014-05-20 08:01:37 +00009132 /* The number of VSIs reported by the FW is the minimum guaranteed
9133 * to us; HW supports far more and we share the remaining pool with
9134 * the other PFs. We allocate space for more than the guarantee with
9135 * the understanding that we might not get them all later.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009136 */
Mitch Williams505682c2014-05-20 08:01:37 +00009137 if (pf->hw.func_caps.num_vsis < I40E_MIN_VSI_ALLOC)
9138 pf->num_alloc_vsi = I40E_MIN_VSI_ALLOC;
9139 else
9140 pf->num_alloc_vsi = pf->hw.func_caps.num_vsis;
9141
9142 /* Set up the *vsi struct and our local tracking of the MAIN PF vsi. */
9143 len = sizeof(struct i40e_vsi *) * pf->num_alloc_vsi;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009144 pf->vsi = kzalloc(len, GFP_KERNEL);
Wei Yongjuned87ac02013-09-24 05:17:25 +00009145 if (!pf->vsi) {
9146 err = -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009147 goto err_switch_setup;
Wei Yongjuned87ac02013-09-24 05:17:25 +00009148 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009149
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00009150 err = i40e_setup_pf_switch(pf, false);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009151 if (err) {
9152 dev_info(&pdev->dev, "setup_pf_switch failed: %d\n", err);
9153 goto err_vsis;
9154 }
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00009155 /* if FDIR VSI was set up, start it now */
Mitch Williams505682c2014-05-20 08:01:37 +00009156 for (i = 0; i < pf->num_alloc_vsi; i++) {
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00009157 if (pf->vsi[i] && pf->vsi[i]->type == I40E_VSI_FDIR) {
9158 i40e_vsi_open(pf->vsi[i]);
9159 break;
9160 }
9161 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009162
Jesse Brandeburg7e2453f2014-09-13 07:40:41 +00009163 /* driver is only interested in link up/down and module qualification
9164 * reports from firmware
9165 */
9166 err = i40e_aq_set_phy_int_mask(&pf->hw,
9167 I40E_AQ_EVENT_LINK_UPDOWN |
9168 I40E_AQ_EVENT_MODULE_QUAL_FAIL, NULL);
9169 if (err)
9170 dev_info(&pf->pdev->dev, "set phy mask fail, aq_err %d\n", err);
9171
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009172 /* The main driver is (mostly) up and happy. We need to set this state
9173 * before setting up the misc vector or we get a race and the vector
9174 * ends up disabled forever.
9175 */
9176 clear_bit(__I40E_DOWN, &pf->state);
9177
9178 /* In case of MSIX we are going to setup the misc vector right here
9179 * to handle admin queue events etc. In case of legacy and MSI
9180 * the misc functionality and queue processing is combined in
9181 * the same vector and that gets setup at open.
9182 */
9183 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
9184 err = i40e_setup_misc_vector(pf);
9185 if (err) {
9186 dev_info(&pdev->dev,
9187 "setup of misc vector failed: %d\n", err);
9188 goto err_vsis;
9189 }
9190 }
9191
Greg Rosedf805f62014-04-04 04:43:16 +00009192#ifdef CONFIG_PCI_IOV
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009193 /* prep for VF support */
9194 if ((pf->flags & I40E_FLAG_SRIOV_ENABLED) &&
Shannon Nelson4eb3f762014-03-06 08:59:58 +00009195 (pf->flags & I40E_FLAG_MSIX_ENABLED) &&
9196 !test_bit(__I40E_BAD_EEPROM, &pf->state)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009197 u32 val;
9198
9199 /* disable link interrupts for VFs */
9200 val = rd32(hw, I40E_PFGEN_PORTMDIO_NUM);
9201 val &= ~I40E_PFGEN_PORTMDIO_NUM_VFLINK_STAT_ENA_MASK;
9202 wr32(hw, I40E_PFGEN_PORTMDIO_NUM, val);
9203 i40e_flush(hw);
Mitch Williams4aeec012014-02-13 03:48:47 -08009204
9205 if (pci_num_vf(pdev)) {
9206 dev_info(&pdev->dev,
9207 "Active VFs found, allocating resources.\n");
9208 err = i40e_alloc_vfs(pf, pci_num_vf(pdev));
9209 if (err)
9210 dev_info(&pdev->dev,
9211 "Error %d allocating resources for existing VFs\n",
9212 err);
9213 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009214 }
Greg Rosedf805f62014-04-04 04:43:16 +00009215#endif /* CONFIG_PCI_IOV */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009216
Anjali Singhai Jain93cd7652013-11-20 10:03:01 +00009217 pfs_found++;
9218
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009219 i40e_dbg_pf_init(pf);
9220
9221 /* tell the firmware that we're starting */
Jesse Brandeburg44033fa2014-04-23 04:50:15 +00009222 i40e_send_version(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009223
9224 /* since everything's happy, start the service_task timer */
9225 mod_timer(&pf->service_timer,
9226 round_jiffies(jiffies + pf->service_timer_period));
9227
Vasu Dev38e00432014-08-01 13:27:03 -07009228#ifdef I40E_FCOE
9229 /* create FCoE interface */
9230 i40e_fcoe_vsi_setup(pf);
9231
9232#endif
Catherine Sullivand4dfb812013-11-28 06:39:21 +00009233 /* Get the negotiated link width and speed from PCI config space */
9234 pcie_capability_read_word(pf->pdev, PCI_EXP_LNKSTA, &link_status);
9235
9236 i40e_set_pci_config_data(hw, link_status);
9237
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00009238 dev_info(&pdev->dev, "PCI-Express: %s %s\n",
Catherine Sullivand4dfb812013-11-28 06:39:21 +00009239 (hw->bus.speed == i40e_bus_speed_8000 ? "Speed 8.0GT/s" :
9240 hw->bus.speed == i40e_bus_speed_5000 ? "Speed 5.0GT/s" :
9241 hw->bus.speed == i40e_bus_speed_2500 ? "Speed 2.5GT/s" :
9242 "Unknown"),
9243 (hw->bus.width == i40e_bus_width_pcie_x8 ? "Width x8" :
9244 hw->bus.width == i40e_bus_width_pcie_x4 ? "Width x4" :
9245 hw->bus.width == i40e_bus_width_pcie_x2 ? "Width x2" :
9246 hw->bus.width == i40e_bus_width_pcie_x1 ? "Width x1" :
9247 "Unknown"));
9248
9249 if (hw->bus.width < i40e_bus_width_pcie_x8 ||
9250 hw->bus.speed < i40e_bus_speed_8000) {
9251 dev_warn(&pdev->dev, "PCI-Express bandwidth available for this device may be insufficient for optimal performance.\n");
9252 dev_warn(&pdev->dev, "Please move the device to a different PCI-e link with more lanes and/or higher transfer rate.\n");
9253 }
9254
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00009255 /* print a string summarizing features */
9256 i40e_print_features(pf);
9257
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009258 return 0;
9259
9260 /* Unwind what we've done if something failed in the setup */
9261err_vsis:
9262 set_bit(__I40E_DOWN, &pf->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009263 i40e_clear_interrupt_scheme(pf);
9264 kfree(pf->vsi);
Shannon Nelson04b03012013-11-28 06:39:34 +00009265err_switch_setup:
9266 i40e_reset_interrupt_capability(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009267 del_timer_sync(&pf->service_timer);
9268err_mac_addr:
9269err_configure_lan_hmc:
9270 (void)i40e_shutdown_lan_hmc(hw);
9271err_init_lan_hmc:
9272 kfree(pf->qp_pile);
9273 kfree(pf->irq_pile);
9274err_sw_init:
9275err_adminq_setup:
9276 (void)i40e_shutdown_adminq(hw);
9277err_pf_reset:
9278 iounmap(hw->hw_addr);
9279err_ioremap:
9280 kfree(pf);
9281err_pf_alloc:
9282 pci_disable_pcie_error_reporting(pdev);
9283 pci_release_selected_regions(pdev,
9284 pci_select_bars(pdev, IORESOURCE_MEM));
9285err_pci_reg:
9286err_dma:
9287 pci_disable_device(pdev);
9288 return err;
9289}
9290
9291/**
9292 * i40e_remove - Device removal routine
9293 * @pdev: PCI device information struct
9294 *
9295 * i40e_remove is called by the PCI subsystem to alert the driver
9296 * that is should release a PCI device. This could be caused by a
9297 * Hot-Plug event, or because the driver is going to be removed from
9298 * memory.
9299 **/
9300static void i40e_remove(struct pci_dev *pdev)
9301{
9302 struct i40e_pf *pf = pci_get_drvdata(pdev);
9303 i40e_status ret_code;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009304 int i;
9305
9306 i40e_dbg_pf_exit(pf);
9307
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00009308 i40e_ptp_stop(pf);
9309
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009310 /* no more scheduling of any task */
9311 set_bit(__I40E_DOWN, &pf->state);
9312 del_timer_sync(&pf->service_timer);
9313 cancel_work_sync(&pf->service_task);
9314
Mitch Williamseb2d80b2014-02-13 03:48:48 -08009315 if (pf->flags & I40E_FLAG_SRIOV_ENABLED) {
9316 i40e_free_vfs(pf);
9317 pf->flags &= ~I40E_FLAG_SRIOV_ENABLED;
9318 }
9319
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009320 i40e_fdir_teardown(pf);
9321
9322 /* If there is a switch structure or any orphans, remove them.
9323 * This will leave only the PF's VSI remaining.
9324 */
9325 for (i = 0; i < I40E_MAX_VEB; i++) {
9326 if (!pf->veb[i])
9327 continue;
9328
9329 if (pf->veb[i]->uplink_seid == pf->mac_seid ||
9330 pf->veb[i]->uplink_seid == 0)
9331 i40e_switch_branch_release(pf->veb[i]);
9332 }
9333
9334 /* Now we can shutdown the PF's VSI, just before we kill
9335 * adminq and hmc.
9336 */
9337 if (pf->vsi[pf->lan_vsi])
9338 i40e_vsi_release(pf->vsi[pf->lan_vsi]);
9339
9340 i40e_stop_misc_vector(pf);
9341 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
9342 synchronize_irq(pf->msix_entries[0].vector);
9343 free_irq(pf->msix_entries[0].vector, pf);
9344 }
9345
9346 /* shutdown and destroy the HMC */
Shannon Nelson60442de2014-04-23 04:50:13 +00009347 if (pf->hw.hmc.hmc_obj) {
9348 ret_code = i40e_shutdown_lan_hmc(&pf->hw);
9349 if (ret_code)
9350 dev_warn(&pdev->dev,
9351 "Failed to destroy the HMC resources: %d\n",
9352 ret_code);
9353 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009354
9355 /* shutdown the adminq */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009356 ret_code = i40e_shutdown_adminq(&pf->hw);
9357 if (ret_code)
9358 dev_warn(&pdev->dev,
9359 "Failed to destroy the Admin Queue resources: %d\n",
9360 ret_code);
9361
9362 /* Clear all dynamic memory lists of rings, q_vectors, and VSIs */
9363 i40e_clear_interrupt_scheme(pf);
Mitch Williams505682c2014-05-20 08:01:37 +00009364 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009365 if (pf->vsi[i]) {
9366 i40e_vsi_clear_rings(pf->vsi[i]);
9367 i40e_vsi_clear(pf->vsi[i]);
9368 pf->vsi[i] = NULL;
9369 }
9370 }
9371
9372 for (i = 0; i < I40E_MAX_VEB; i++) {
9373 kfree(pf->veb[i]);
9374 pf->veb[i] = NULL;
9375 }
9376
9377 kfree(pf->qp_pile);
9378 kfree(pf->irq_pile);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009379 kfree(pf->vsi);
9380
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009381 iounmap(pf->hw.hw_addr);
9382 kfree(pf);
9383 pci_release_selected_regions(pdev,
9384 pci_select_bars(pdev, IORESOURCE_MEM));
9385
9386 pci_disable_pcie_error_reporting(pdev);
9387 pci_disable_device(pdev);
9388}
9389
9390/**
9391 * i40e_pci_error_detected - warning that something funky happened in PCI land
9392 * @pdev: PCI device information struct
9393 *
9394 * Called to warn that something happened and the error handling steps
9395 * are in progress. Allows the driver to quiesce things, be ready for
9396 * remediation.
9397 **/
9398static pci_ers_result_t i40e_pci_error_detected(struct pci_dev *pdev,
9399 enum pci_channel_state error)
9400{
9401 struct i40e_pf *pf = pci_get_drvdata(pdev);
9402
9403 dev_info(&pdev->dev, "%s: error %d\n", __func__, error);
9404
9405 /* shutdown all operations */
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009406 if (!test_bit(__I40E_SUSPENDED, &pf->state)) {
9407 rtnl_lock();
9408 i40e_prep_for_reset(pf);
9409 rtnl_unlock();
9410 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009411
9412 /* Request a slot reset */
9413 return PCI_ERS_RESULT_NEED_RESET;
9414}
9415
9416/**
9417 * i40e_pci_error_slot_reset - a PCI slot reset just happened
9418 * @pdev: PCI device information struct
9419 *
9420 * Called to find if the driver can work with the device now that
9421 * the pci slot has been reset. If a basic connection seems good
9422 * (registers are readable and have sane content) then return a
9423 * happy little PCI_ERS_RESULT_xxx.
9424 **/
9425static pci_ers_result_t i40e_pci_error_slot_reset(struct pci_dev *pdev)
9426{
9427 struct i40e_pf *pf = pci_get_drvdata(pdev);
9428 pci_ers_result_t result;
9429 int err;
9430 u32 reg;
9431
9432 dev_info(&pdev->dev, "%s\n", __func__);
9433 if (pci_enable_device_mem(pdev)) {
9434 dev_info(&pdev->dev,
9435 "Cannot re-enable PCI device after reset.\n");
9436 result = PCI_ERS_RESULT_DISCONNECT;
9437 } else {
9438 pci_set_master(pdev);
9439 pci_restore_state(pdev);
9440 pci_save_state(pdev);
9441 pci_wake_from_d3(pdev, false);
9442
9443 reg = rd32(&pf->hw, I40E_GLGEN_RTRIG);
9444 if (reg == 0)
9445 result = PCI_ERS_RESULT_RECOVERED;
9446 else
9447 result = PCI_ERS_RESULT_DISCONNECT;
9448 }
9449
9450 err = pci_cleanup_aer_uncorrect_error_status(pdev);
9451 if (err) {
9452 dev_info(&pdev->dev,
9453 "pci_cleanup_aer_uncorrect_error_status failed 0x%0x\n",
9454 err);
9455 /* non-fatal, continue */
9456 }
9457
9458 return result;
9459}
9460
9461/**
9462 * i40e_pci_error_resume - restart operations after PCI error recovery
9463 * @pdev: PCI device information struct
9464 *
9465 * Called to allow the driver to bring things back up after PCI error
9466 * and/or reset recovery has finished.
9467 **/
9468static void i40e_pci_error_resume(struct pci_dev *pdev)
9469{
9470 struct i40e_pf *pf = pci_get_drvdata(pdev);
9471
9472 dev_info(&pdev->dev, "%s\n", __func__);
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009473 if (test_bit(__I40E_SUSPENDED, &pf->state))
9474 return;
9475
9476 rtnl_lock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009477 i40e_handle_reset_warning(pf);
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009478 rtnl_lock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009479}
9480
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009481/**
9482 * i40e_shutdown - PCI callback for shutting down
9483 * @pdev: PCI device information struct
9484 **/
9485static void i40e_shutdown(struct pci_dev *pdev)
9486{
9487 struct i40e_pf *pf = pci_get_drvdata(pdev);
Shannon Nelson8e2773a2013-11-28 06:39:22 +00009488 struct i40e_hw *hw = &pf->hw;
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009489
9490 set_bit(__I40E_SUSPENDED, &pf->state);
9491 set_bit(__I40E_DOWN, &pf->state);
9492 rtnl_lock();
9493 i40e_prep_for_reset(pf);
9494 rtnl_unlock();
9495
Shannon Nelson8e2773a2013-11-28 06:39:22 +00009496 wr32(hw, I40E_PFPM_APM, (pf->wol_en ? I40E_PFPM_APM_APME_MASK : 0));
9497 wr32(hw, I40E_PFPM_WUFC, (pf->wol_en ? I40E_PFPM_WUFC_MAG_MASK : 0));
9498
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009499 if (system_state == SYSTEM_POWER_OFF) {
Shannon Nelson8e2773a2013-11-28 06:39:22 +00009500 pci_wake_from_d3(pdev, pf->wol_en);
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009501 pci_set_power_state(pdev, PCI_D3hot);
9502 }
9503}
9504
9505#ifdef CONFIG_PM
9506/**
9507 * i40e_suspend - PCI callback for moving to D3
9508 * @pdev: PCI device information struct
9509 **/
9510static int i40e_suspend(struct pci_dev *pdev, pm_message_t state)
9511{
9512 struct i40e_pf *pf = pci_get_drvdata(pdev);
Shannon Nelson8e2773a2013-11-28 06:39:22 +00009513 struct i40e_hw *hw = &pf->hw;
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009514
9515 set_bit(__I40E_SUSPENDED, &pf->state);
9516 set_bit(__I40E_DOWN, &pf->state);
9517 rtnl_lock();
9518 i40e_prep_for_reset(pf);
9519 rtnl_unlock();
9520
Shannon Nelson8e2773a2013-11-28 06:39:22 +00009521 wr32(hw, I40E_PFPM_APM, (pf->wol_en ? I40E_PFPM_APM_APME_MASK : 0));
9522 wr32(hw, I40E_PFPM_WUFC, (pf->wol_en ? I40E_PFPM_WUFC_MAG_MASK : 0));
9523
9524 pci_wake_from_d3(pdev, pf->wol_en);
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009525 pci_set_power_state(pdev, PCI_D3hot);
9526
9527 return 0;
9528}
9529
9530/**
9531 * i40e_resume - PCI callback for waking up from D3
9532 * @pdev: PCI device information struct
9533 **/
9534static int i40e_resume(struct pci_dev *pdev)
9535{
9536 struct i40e_pf *pf = pci_get_drvdata(pdev);
9537 u32 err;
9538
9539 pci_set_power_state(pdev, PCI_D0);
9540 pci_restore_state(pdev);
9541 /* pci_restore_state() clears dev->state_saves, so
9542 * call pci_save_state() again to restore it.
9543 */
9544 pci_save_state(pdev);
9545
9546 err = pci_enable_device_mem(pdev);
9547 if (err) {
9548 dev_err(&pdev->dev,
9549 "%s: Cannot enable PCI device from suspend\n",
9550 __func__);
9551 return err;
9552 }
9553 pci_set_master(pdev);
9554
9555 /* no wakeup events while running */
9556 pci_wake_from_d3(pdev, false);
9557
9558 /* handling the reset will rebuild the device state */
9559 if (test_and_clear_bit(__I40E_SUSPENDED, &pf->state)) {
9560 clear_bit(__I40E_DOWN, &pf->state);
9561 rtnl_lock();
9562 i40e_reset_and_rebuild(pf, false);
9563 rtnl_unlock();
9564 }
9565
9566 return 0;
9567}
9568
9569#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009570static const struct pci_error_handlers i40e_err_handler = {
9571 .error_detected = i40e_pci_error_detected,
9572 .slot_reset = i40e_pci_error_slot_reset,
9573 .resume = i40e_pci_error_resume,
9574};
9575
9576static struct pci_driver i40e_driver = {
9577 .name = i40e_driver_name,
9578 .id_table = i40e_pci_tbl,
9579 .probe = i40e_probe,
9580 .remove = i40e_remove,
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009581#ifdef CONFIG_PM
9582 .suspend = i40e_suspend,
9583 .resume = i40e_resume,
9584#endif
9585 .shutdown = i40e_shutdown,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009586 .err_handler = &i40e_err_handler,
9587 .sriov_configure = i40e_pci_sriov_configure,
9588};
9589
9590/**
9591 * i40e_init_module - Driver registration routine
9592 *
9593 * i40e_init_module is the first routine called when the driver is
9594 * loaded. All it does is register with the PCI subsystem.
9595 **/
9596static int __init i40e_init_module(void)
9597{
9598 pr_info("%s: %s - version %s\n", i40e_driver_name,
9599 i40e_driver_string, i40e_driver_version_str);
9600 pr_info("%s: %s\n", i40e_driver_name, i40e_copyright);
9601 i40e_dbg_init();
9602 return pci_register_driver(&i40e_driver);
9603}
9604module_init(i40e_init_module);
9605
9606/**
9607 * i40e_exit_module - Driver exit cleanup routine
9608 *
9609 * i40e_exit_module is called just before the driver is removed
9610 * from memory.
9611 **/
9612static void __exit i40e_exit_module(void)
9613{
9614 pci_unregister_driver(&i40e_driver);
9615 i40e_dbg_exit();
9616}
9617module_exit(i40e_exit_module);