blob: 172f7561643a00e307dd22dca1ceb2c7a6d1b75a [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
40#define DRV_VERSION_MAJOR 0
Catherine Sullivane454d6b2014-04-23 04:50:17 +000041#define DRV_VERSION_MINOR 4
Catherine Sullivan4e776382014-06-04 08:45:29 +000042#define DRV_VERSION_BUILD 21
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 Duyck9f65e152013-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 Duyck9f65e152013-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 Duyck9f65e152013-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
1242 **/
1243static void i40e_rm_default_mac_filter(struct i40e_vsi *vsi, u8 *macaddr)
1244{
1245 struct i40e_aqc_remove_macvlan_element_data element;
1246 struct i40e_pf *pf = vsi->back;
1247 i40e_status aq_ret;
1248
1249 /* Only appropriate for the PF main VSI */
1250 if (vsi->type != I40E_VSI_MAIN)
1251 return;
1252
1253 ether_addr_copy(element.mac_addr, macaddr);
1254 element.vlan_tag = 0;
1255 element.flags = I40E_AQC_MACVLAN_DEL_PERFECT_MATCH |
1256 I40E_AQC_MACVLAN_DEL_IGNORE_VLAN;
1257 aq_ret = i40e_aq_remove_macvlan(&pf->hw, vsi->seid, &element, 1, NULL);
1258 if (aq_ret)
1259 dev_err(&pf->pdev->dev, "Could not remove default MAC-VLAN\n");
1260}
1261
1262/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001263 * i40e_add_filter - Add a mac/vlan filter to the VSI
1264 * @vsi: the VSI to be searched
1265 * @macaddr: the MAC address
1266 * @vlan: the vlan
1267 * @is_vf: make sure its a vf filter, else doesn't matter
1268 * @is_netdev: make sure its a netdev filter, else doesn't matter
1269 *
1270 * Returns ptr to the filter object or NULL when no memory available.
1271 **/
1272struct i40e_mac_filter *i40e_add_filter(struct i40e_vsi *vsi,
1273 u8 *macaddr, s16 vlan,
1274 bool is_vf, bool is_netdev)
1275{
1276 struct i40e_mac_filter *f;
1277
1278 if (!vsi || !macaddr)
1279 return NULL;
1280
1281 f = i40e_find_filter(vsi, macaddr, vlan, is_vf, is_netdev);
1282 if (!f) {
1283 f = kzalloc(sizeof(*f), GFP_ATOMIC);
1284 if (!f)
1285 goto add_filter_out;
1286
Greg Rose9a173902014-05-22 06:32:02 +00001287 ether_addr_copy(f->macaddr, macaddr);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001288 f->vlan = vlan;
1289 f->changed = true;
1290
1291 INIT_LIST_HEAD(&f->list);
1292 list_add(&f->list, &vsi->mac_filter_list);
1293 }
1294
1295 /* increment counter and add a new flag if needed */
1296 if (is_vf) {
1297 if (!f->is_vf) {
1298 f->is_vf = true;
1299 f->counter++;
1300 }
1301 } else if (is_netdev) {
1302 if (!f->is_netdev) {
1303 f->is_netdev = true;
1304 f->counter++;
1305 }
1306 } else {
1307 f->counter++;
1308 }
1309
1310 /* changed tells sync_filters_subtask to
1311 * push the filter down to the firmware
1312 */
1313 if (f->changed) {
1314 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
1315 vsi->back->flags |= I40E_FLAG_FILTER_SYNC;
1316 }
1317
1318add_filter_out:
1319 return f;
1320}
1321
1322/**
1323 * i40e_del_filter - Remove a mac/vlan filter from the VSI
1324 * @vsi: the VSI to be searched
1325 * @macaddr: the MAC address
1326 * @vlan: the vlan
1327 * @is_vf: make sure it's a vf filter, else doesn't matter
1328 * @is_netdev: make sure it's a netdev filter, else doesn't matter
1329 **/
1330void i40e_del_filter(struct i40e_vsi *vsi,
1331 u8 *macaddr, s16 vlan,
1332 bool is_vf, bool is_netdev)
1333{
1334 struct i40e_mac_filter *f;
1335
1336 if (!vsi || !macaddr)
1337 return;
1338
1339 f = i40e_find_filter(vsi, macaddr, vlan, is_vf, is_netdev);
1340 if (!f || f->counter == 0)
1341 return;
1342
1343 if (is_vf) {
1344 if (f->is_vf) {
1345 f->is_vf = false;
1346 f->counter--;
1347 }
1348 } else if (is_netdev) {
1349 if (f->is_netdev) {
1350 f->is_netdev = false;
1351 f->counter--;
1352 }
1353 } else {
1354 /* make sure we don't remove a filter in use by vf or netdev */
1355 int min_f = 0;
1356 min_f += (f->is_vf ? 1 : 0);
1357 min_f += (f->is_netdev ? 1 : 0);
1358
1359 if (f->counter > min_f)
1360 f->counter--;
1361 }
1362
1363 /* counter == 0 tells sync_filters_subtask to
1364 * remove the filter from the firmware's list
1365 */
1366 if (f->counter == 0) {
1367 f->changed = true;
1368 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
1369 vsi->back->flags |= I40E_FLAG_FILTER_SYNC;
1370 }
1371}
1372
1373/**
1374 * i40e_set_mac - NDO callback to set mac address
1375 * @netdev: network interface device structure
1376 * @p: pointer to an address structure
1377 *
1378 * Returns 0 on success, negative on failure
1379 **/
Vasu Dev38e00432014-08-01 13:27:03 -07001380#ifdef I40E_FCOE
1381int i40e_set_mac(struct net_device *netdev, void *p)
1382#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001383static int i40e_set_mac(struct net_device *netdev, void *p)
Vasu Dev38e00432014-08-01 13:27:03 -07001384#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001385{
1386 struct i40e_netdev_priv *np = netdev_priv(netdev);
1387 struct i40e_vsi *vsi = np->vsi;
1388 struct sockaddr *addr = p;
1389 struct i40e_mac_filter *f;
1390
1391 if (!is_valid_ether_addr(addr->sa_data))
1392 return -EADDRNOTAVAIL;
1393
1394 netdev_info(netdev, "set mac address=%pM\n", addr->sa_data);
1395
Anjali Singhai Jain80f64282013-11-28 06:39:47 +00001396 if (test_bit(__I40E_DOWN, &vsi->back->state) ||
1397 test_bit(__I40E_RESET_RECOVERY_PENDING, &vsi->back->state))
1398 return -EADDRNOTAVAIL;
1399
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001400 if (vsi->type == I40E_VSI_MAIN) {
1401 i40e_status ret;
1402 ret = i40e_aq_mac_address_write(&vsi->back->hw,
Shannon Nelsoncc412222014-06-04 01:23:21 +00001403 I40E_AQC_WRITE_TYPE_LAA_WOL,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001404 addr->sa_data, NULL);
1405 if (ret) {
1406 netdev_info(netdev,
1407 "Addr change for Main VSI failed: %d\n",
1408 ret);
1409 return -EADDRNOTAVAIL;
1410 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001411 }
1412
Shannon Nelson6252c7e2014-06-04 01:23:23 +00001413 f = i40e_find_mac(vsi, addr->sa_data, false, true);
1414 if (!f) {
Shannon Nelson6c8ad1b2014-06-04 01:23:22 +00001415 /* In order to be sure to not drop any packets, add the
1416 * new address first then delete the old one.
1417 */
1418 f = i40e_add_filter(vsi, addr->sa_data, I40E_VLAN_ANY,
1419 false, false);
1420 if (!f)
1421 return -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001422
Shannon Nelson6c8ad1b2014-06-04 01:23:22 +00001423 i40e_sync_vsi_filters(vsi);
1424 i40e_del_filter(vsi, netdev->dev_addr, I40E_VLAN_ANY,
1425 false, false);
1426 i40e_sync_vsi_filters(vsi);
1427 }
1428
Shannon Nelson6252c7e2014-06-04 01:23:23 +00001429 f->is_laa = true;
Shannon Nelson6c8ad1b2014-06-04 01:23:22 +00001430 if (!ether_addr_equal(netdev->dev_addr, addr->sa_data))
1431 ether_addr_copy(netdev->dev_addr, addr->sa_data);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001432
1433 return 0;
1434}
1435
1436/**
1437 * i40e_vsi_setup_queue_map - Setup a VSI queue map based on enabled_tc
1438 * @vsi: the VSI being setup
1439 * @ctxt: VSI context structure
1440 * @enabled_tc: Enabled TCs bitmap
1441 * @is_add: True if called before Add VSI
1442 *
1443 * Setup VSI queue mapping for enabled traffic classes.
1444 **/
Vasu Dev38e00432014-08-01 13:27:03 -07001445#ifdef I40E_FCOE
1446void i40e_vsi_setup_queue_map(struct i40e_vsi *vsi,
1447 struct i40e_vsi_context *ctxt,
1448 u8 enabled_tc,
1449 bool is_add)
1450#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001451static void i40e_vsi_setup_queue_map(struct i40e_vsi *vsi,
1452 struct i40e_vsi_context *ctxt,
1453 u8 enabled_tc,
1454 bool is_add)
Vasu Dev38e00432014-08-01 13:27:03 -07001455#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001456{
1457 struct i40e_pf *pf = vsi->back;
1458 u16 sections = 0;
1459 u8 netdev_tc = 0;
1460 u16 numtc = 0;
1461 u16 qcount;
1462 u8 offset;
1463 u16 qmap;
1464 int i;
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001465 u16 num_tc_qps = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001466
1467 sections = I40E_AQ_VSI_PROP_QUEUE_MAP_VALID;
1468 offset = 0;
1469
1470 if (enabled_tc && (vsi->back->flags & I40E_FLAG_DCB_ENABLED)) {
1471 /* Find numtc from enabled TC bitmap */
1472 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
1473 if (enabled_tc & (1 << i)) /* TC is enabled */
1474 numtc++;
1475 }
1476 if (!numtc) {
1477 dev_warn(&pf->pdev->dev, "DCB is enabled but no TC enabled, forcing TC0\n");
1478 numtc = 1;
1479 }
1480 } else {
1481 /* At least TC0 is enabled in case of non-DCB case */
1482 numtc = 1;
1483 }
1484
1485 vsi->tc_config.numtc = numtc;
1486 vsi->tc_config.enabled_tc = enabled_tc ? enabled_tc : 1;
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001487 /* Number of queues per enabled TC */
Anjali Singhai Jaineb051af2014-05-20 08:01:46 +00001488 num_tc_qps = vsi->alloc_queue_pairs/numtc;
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001489 num_tc_qps = min_t(int, num_tc_qps, I40E_MAX_QUEUES_PER_TC);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001490
1491 /* Setup queue offset/count for all TCs for given VSI */
1492 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
1493 /* See if the given TC is enabled for the given VSI */
1494 if (vsi->tc_config.enabled_tc & (1 << i)) { /* TC is enabled */
1495 int pow, num_qps;
1496
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001497 switch (vsi->type) {
1498 case I40E_VSI_MAIN:
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001499 qcount = min_t(int, pf->rss_size, num_tc_qps);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001500 break;
Vasu Dev38e00432014-08-01 13:27:03 -07001501#ifdef I40E_FCOE
1502 case I40E_VSI_FCOE:
1503 qcount = num_tc_qps;
1504 break;
1505#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001506 case I40E_VSI_FDIR:
1507 case I40E_VSI_SRIOV:
1508 case I40E_VSI_VMDQ2:
1509 default:
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001510 qcount = num_tc_qps;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001511 WARN_ON(i != 0);
1512 break;
1513 }
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001514 vsi->tc_config.tc_info[i].qoffset = offset;
1515 vsi->tc_config.tc_info[i].qcount = qcount;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001516
1517 /* find the power-of-2 of the number of queue pairs */
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001518 num_qps = qcount;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001519 pow = 0;
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001520 while (num_qps && ((1 << pow) < qcount)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001521 pow++;
1522 num_qps >>= 1;
1523 }
1524
1525 vsi->tc_config.tc_info[i].netdev_tc = netdev_tc++;
1526 qmap =
1527 (offset << I40E_AQ_VSI_TC_QUE_OFFSET_SHIFT) |
1528 (pow << I40E_AQ_VSI_TC_QUE_NUMBER_SHIFT);
1529
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001530 offset += qcount;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001531 } else {
1532 /* TC is not enabled so set the offset to
1533 * default queue and allocate one queue
1534 * for the given TC.
1535 */
1536 vsi->tc_config.tc_info[i].qoffset = 0;
1537 vsi->tc_config.tc_info[i].qcount = 1;
1538 vsi->tc_config.tc_info[i].netdev_tc = 0;
1539
1540 qmap = 0;
1541 }
1542 ctxt->info.tc_mapping[i] = cpu_to_le16(qmap);
1543 }
1544
1545 /* Set actual Tx/Rx queue pairs */
1546 vsi->num_queue_pairs = offset;
1547
1548 /* Scheduler section valid can only be set for ADD VSI */
1549 if (is_add) {
1550 sections |= I40E_AQ_VSI_PROP_SCHED_VALID;
1551
1552 ctxt->info.up_enable_bits = enabled_tc;
1553 }
1554 if (vsi->type == I40E_VSI_SRIOV) {
1555 ctxt->info.mapping_flags |=
1556 cpu_to_le16(I40E_AQ_VSI_QUE_MAP_NONCONTIG);
1557 for (i = 0; i < vsi->num_queue_pairs; i++)
1558 ctxt->info.queue_mapping[i] =
1559 cpu_to_le16(vsi->base_queue + i);
1560 } else {
1561 ctxt->info.mapping_flags |=
1562 cpu_to_le16(I40E_AQ_VSI_QUE_MAP_CONTIG);
1563 ctxt->info.queue_mapping[0] = cpu_to_le16(vsi->base_queue);
1564 }
1565 ctxt->info.valid_sections |= cpu_to_le16(sections);
1566}
1567
1568/**
1569 * i40e_set_rx_mode - NDO callback to set the netdev filters
1570 * @netdev: network interface device structure
1571 **/
Vasu Dev38e00432014-08-01 13:27:03 -07001572#ifdef I40E_FCOE
1573void i40e_set_rx_mode(struct net_device *netdev)
1574#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001575static void i40e_set_rx_mode(struct net_device *netdev)
Vasu Dev38e00432014-08-01 13:27:03 -07001576#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001577{
1578 struct i40e_netdev_priv *np = netdev_priv(netdev);
1579 struct i40e_mac_filter *f, *ftmp;
1580 struct i40e_vsi *vsi = np->vsi;
1581 struct netdev_hw_addr *uca;
1582 struct netdev_hw_addr *mca;
1583 struct netdev_hw_addr *ha;
1584
1585 /* add addr if not already in the filter list */
1586 netdev_for_each_uc_addr(uca, netdev) {
1587 if (!i40e_find_mac(vsi, uca->addr, false, true)) {
1588 if (i40e_is_vsi_in_vlan(vsi))
1589 i40e_put_mac_in_vlan(vsi, uca->addr,
1590 false, true);
1591 else
1592 i40e_add_filter(vsi, uca->addr, I40E_VLAN_ANY,
1593 false, true);
1594 }
1595 }
1596
1597 netdev_for_each_mc_addr(mca, netdev) {
1598 if (!i40e_find_mac(vsi, mca->addr, false, true)) {
1599 if (i40e_is_vsi_in_vlan(vsi))
1600 i40e_put_mac_in_vlan(vsi, mca->addr,
1601 false, true);
1602 else
1603 i40e_add_filter(vsi, mca->addr, I40E_VLAN_ANY,
1604 false, true);
1605 }
1606 }
1607
1608 /* remove filter if not in netdev list */
1609 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
1610 bool found = false;
1611
1612 if (!f->is_netdev)
1613 continue;
1614
1615 if (is_multicast_ether_addr(f->macaddr)) {
1616 netdev_for_each_mc_addr(mca, netdev) {
1617 if (ether_addr_equal(mca->addr, f->macaddr)) {
1618 found = true;
1619 break;
1620 }
1621 }
1622 } else {
1623 netdev_for_each_uc_addr(uca, netdev) {
1624 if (ether_addr_equal(uca->addr, f->macaddr)) {
1625 found = true;
1626 break;
1627 }
1628 }
1629
1630 for_each_dev_addr(netdev, ha) {
1631 if (ether_addr_equal(ha->addr, f->macaddr)) {
1632 found = true;
1633 break;
1634 }
1635 }
1636 }
1637 if (!found)
1638 i40e_del_filter(
1639 vsi, f->macaddr, I40E_VLAN_ANY, false, true);
1640 }
1641
1642 /* check for other flag changes */
1643 if (vsi->current_netdev_flags != vsi->netdev->flags) {
1644 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
1645 vsi->back->flags |= I40E_FLAG_FILTER_SYNC;
1646 }
1647}
1648
1649/**
1650 * i40e_sync_vsi_filters - Update the VSI filter list to the HW
1651 * @vsi: ptr to the VSI
1652 *
1653 * Push any outstanding VSI filter changes through the AdminQ.
1654 *
1655 * Returns 0 or error value
1656 **/
1657int i40e_sync_vsi_filters(struct i40e_vsi *vsi)
1658{
1659 struct i40e_mac_filter *f, *ftmp;
1660 bool promisc_forced_on = false;
1661 bool add_happened = false;
1662 int filter_list_len = 0;
1663 u32 changed_flags = 0;
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001664 i40e_status aq_ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001665 struct i40e_pf *pf;
1666 int num_add = 0;
1667 int num_del = 0;
1668 u16 cmd_flags;
1669
1670 /* empty array typed pointers, kcalloc later */
1671 struct i40e_aqc_add_macvlan_element_data *add_list;
1672 struct i40e_aqc_remove_macvlan_element_data *del_list;
1673
1674 while (test_and_set_bit(__I40E_CONFIG_BUSY, &vsi->state))
1675 usleep_range(1000, 2000);
1676 pf = vsi->back;
1677
1678 if (vsi->netdev) {
1679 changed_flags = vsi->current_netdev_flags ^ vsi->netdev->flags;
1680 vsi->current_netdev_flags = vsi->netdev->flags;
1681 }
1682
1683 if (vsi->flags & I40E_VSI_FLAG_FILTER_CHANGED) {
1684 vsi->flags &= ~I40E_VSI_FLAG_FILTER_CHANGED;
1685
1686 filter_list_len = pf->hw.aq.asq_buf_size /
1687 sizeof(struct i40e_aqc_remove_macvlan_element_data);
1688 del_list = kcalloc(filter_list_len,
1689 sizeof(struct i40e_aqc_remove_macvlan_element_data),
1690 GFP_KERNEL);
1691 if (!del_list)
1692 return -ENOMEM;
1693
1694 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
1695 if (!f->changed)
1696 continue;
1697
1698 if (f->counter != 0)
1699 continue;
1700 f->changed = false;
1701 cmd_flags = 0;
1702
1703 /* add to delete list */
Greg Rose9a173902014-05-22 06:32:02 +00001704 ether_addr_copy(del_list[num_del].mac_addr, f->macaddr);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001705 del_list[num_del].vlan_tag =
1706 cpu_to_le16((u16)(f->vlan ==
1707 I40E_VLAN_ANY ? 0 : f->vlan));
1708
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001709 cmd_flags |= I40E_AQC_MACVLAN_DEL_PERFECT_MATCH;
1710 del_list[num_del].flags = cmd_flags;
1711 num_del++;
1712
1713 /* unlink from filter list */
1714 list_del(&f->list);
1715 kfree(f);
1716
1717 /* flush a full buffer */
1718 if (num_del == filter_list_len) {
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001719 aq_ret = i40e_aq_remove_macvlan(&pf->hw,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001720 vsi->seid, del_list, num_del,
1721 NULL);
1722 num_del = 0;
1723 memset(del_list, 0, sizeof(*del_list));
1724
Shannon Nelsonfdfe9cb2014-05-20 08:01:39 +00001725 if (aq_ret &&
1726 pf->hw.aq.asq_last_status !=
1727 I40E_AQ_RC_ENOENT)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001728 dev_info(&pf->pdev->dev,
1729 "ignoring delete macvlan error, err %d, aq_err %d while flushing a full buffer\n",
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001730 aq_ret,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001731 pf->hw.aq.asq_last_status);
1732 }
1733 }
1734 if (num_del) {
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001735 aq_ret = i40e_aq_remove_macvlan(&pf->hw, vsi->seid,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001736 del_list, num_del, NULL);
1737 num_del = 0;
1738
Shannon Nelsonfdfe9cb2014-05-20 08:01:39 +00001739 if (aq_ret &&
1740 pf->hw.aq.asq_last_status != I40E_AQ_RC_ENOENT)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001741 dev_info(&pf->pdev->dev,
1742 "ignoring delete macvlan error, err %d, aq_err %d\n",
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001743 aq_ret, pf->hw.aq.asq_last_status);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001744 }
1745
1746 kfree(del_list);
1747 del_list = NULL;
1748
1749 /* do all the adds now */
1750 filter_list_len = pf->hw.aq.asq_buf_size /
1751 sizeof(struct i40e_aqc_add_macvlan_element_data),
1752 add_list = kcalloc(filter_list_len,
1753 sizeof(struct i40e_aqc_add_macvlan_element_data),
1754 GFP_KERNEL);
1755 if (!add_list)
1756 return -ENOMEM;
1757
1758 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
1759 if (!f->changed)
1760 continue;
1761
1762 if (f->counter == 0)
1763 continue;
1764 f->changed = false;
1765 add_happened = true;
1766 cmd_flags = 0;
1767
1768 /* add to add array */
Greg Rose9a173902014-05-22 06:32:02 +00001769 ether_addr_copy(add_list[num_add].mac_addr, f->macaddr);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001770 add_list[num_add].vlan_tag =
1771 cpu_to_le16(
1772 (u16)(f->vlan == I40E_VLAN_ANY ? 0 : f->vlan));
1773 add_list[num_add].queue_number = 0;
1774
1775 cmd_flags |= I40E_AQC_MACVLAN_ADD_PERFECT_MATCH;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001776 add_list[num_add].flags = cpu_to_le16(cmd_flags);
1777 num_add++;
1778
1779 /* flush a full buffer */
1780 if (num_add == filter_list_len) {
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001781 aq_ret = i40e_aq_add_macvlan(&pf->hw, vsi->seid,
1782 add_list, num_add,
1783 NULL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001784 num_add = 0;
1785
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001786 if (aq_ret)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001787 break;
1788 memset(add_list, 0, sizeof(*add_list));
1789 }
1790 }
1791 if (num_add) {
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001792 aq_ret = i40e_aq_add_macvlan(&pf->hw, vsi->seid,
1793 add_list, num_add, NULL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001794 num_add = 0;
1795 }
1796 kfree(add_list);
1797 add_list = NULL;
1798
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001799 if (add_happened && (!aq_ret)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001800 /* do nothing */;
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001801 } else if (add_happened && (aq_ret)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001802 dev_info(&pf->pdev->dev,
1803 "add filter failed, err %d, aq_err %d\n",
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001804 aq_ret, pf->hw.aq.asq_last_status);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001805 if ((pf->hw.aq.asq_last_status == I40E_AQ_RC_ENOSPC) &&
1806 !test_bit(__I40E_FILTER_OVERFLOW_PROMISC,
1807 &vsi->state)) {
1808 promisc_forced_on = true;
1809 set_bit(__I40E_FILTER_OVERFLOW_PROMISC,
1810 &vsi->state);
1811 dev_info(&pf->pdev->dev, "promiscuous mode forced on\n");
1812 }
1813 }
1814 }
1815
1816 /* check for changes in promiscuous modes */
1817 if (changed_flags & IFF_ALLMULTI) {
1818 bool cur_multipromisc;
1819 cur_multipromisc = !!(vsi->current_netdev_flags & IFF_ALLMULTI);
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001820 aq_ret = i40e_aq_set_vsi_multicast_promiscuous(&vsi->back->hw,
1821 vsi->seid,
1822 cur_multipromisc,
1823 NULL);
1824 if (aq_ret)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001825 dev_info(&pf->pdev->dev,
1826 "set multi promisc failed, err %d, aq_err %d\n",
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001827 aq_ret, pf->hw.aq.asq_last_status);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001828 }
1829 if ((changed_flags & IFF_PROMISC) || promisc_forced_on) {
1830 bool cur_promisc;
1831 cur_promisc = (!!(vsi->current_netdev_flags & IFF_PROMISC) ||
1832 test_bit(__I40E_FILTER_OVERFLOW_PROMISC,
1833 &vsi->state));
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001834 aq_ret = i40e_aq_set_vsi_unicast_promiscuous(&vsi->back->hw,
1835 vsi->seid,
1836 cur_promisc, NULL);
1837 if (aq_ret)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001838 dev_info(&pf->pdev->dev,
1839 "set uni promisc failed, err %d, aq_err %d\n",
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001840 aq_ret, pf->hw.aq.asq_last_status);
Greg Rose1a103702013-11-28 06:42:39 +00001841 aq_ret = i40e_aq_set_vsi_broadcast(&vsi->back->hw,
1842 vsi->seid,
1843 cur_promisc, NULL);
1844 if (aq_ret)
1845 dev_info(&pf->pdev->dev,
1846 "set brdcast promisc failed, err %d, aq_err %d\n",
1847 aq_ret, pf->hw.aq.asq_last_status);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001848 }
1849
1850 clear_bit(__I40E_CONFIG_BUSY, &vsi->state);
1851 return 0;
1852}
1853
1854/**
1855 * i40e_sync_filters_subtask - Sync the VSI filter list with HW
1856 * @pf: board private structure
1857 **/
1858static void i40e_sync_filters_subtask(struct i40e_pf *pf)
1859{
1860 int v;
1861
1862 if (!pf || !(pf->flags & I40E_FLAG_FILTER_SYNC))
1863 return;
1864 pf->flags &= ~I40E_FLAG_FILTER_SYNC;
1865
Mitch Williams505682c2014-05-20 08:01:37 +00001866 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001867 if (pf->vsi[v] &&
1868 (pf->vsi[v]->flags & I40E_VSI_FLAG_FILTER_CHANGED))
1869 i40e_sync_vsi_filters(pf->vsi[v]);
1870 }
1871}
1872
1873/**
1874 * i40e_change_mtu - NDO callback to change the Maximum Transfer Unit
1875 * @netdev: network interface device structure
1876 * @new_mtu: new value for maximum frame size
1877 *
1878 * Returns 0 on success, negative on failure
1879 **/
1880static int i40e_change_mtu(struct net_device *netdev, int new_mtu)
1881{
1882 struct i40e_netdev_priv *np = netdev_priv(netdev);
Jesse Brandeburg61a46a42014-04-23 04:50:05 +00001883 int max_frame = new_mtu + ETH_HLEN + ETH_FCS_LEN + VLAN_HLEN;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001884 struct i40e_vsi *vsi = np->vsi;
1885
1886 /* MTU < 68 is an error and causes problems on some kernels */
1887 if ((new_mtu < 68) || (max_frame > I40E_MAX_RXBUFFER))
1888 return -EINVAL;
1889
1890 netdev_info(netdev, "changing MTU from %d to %d\n",
1891 netdev->mtu, new_mtu);
1892 netdev->mtu = new_mtu;
1893 if (netif_running(netdev))
1894 i40e_vsi_reinit_locked(vsi);
1895
1896 return 0;
1897}
1898
1899/**
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00001900 * i40e_ioctl - Access the hwtstamp interface
1901 * @netdev: network interface device structure
1902 * @ifr: interface request data
1903 * @cmd: ioctl command
1904 **/
1905int i40e_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd)
1906{
1907 struct i40e_netdev_priv *np = netdev_priv(netdev);
1908 struct i40e_pf *pf = np->vsi->back;
1909
1910 switch (cmd) {
1911 case SIOCGHWTSTAMP:
1912 return i40e_ptp_get_ts_config(pf, ifr);
1913 case SIOCSHWTSTAMP:
1914 return i40e_ptp_set_ts_config(pf, ifr);
1915 default:
1916 return -EOPNOTSUPP;
1917 }
1918}
1919
1920/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001921 * i40e_vlan_stripping_enable - Turn on vlan stripping for the VSI
1922 * @vsi: the vsi being adjusted
1923 **/
1924void i40e_vlan_stripping_enable(struct i40e_vsi *vsi)
1925{
1926 struct i40e_vsi_context ctxt;
1927 i40e_status ret;
1928
1929 if ((vsi->info.valid_sections &
1930 cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID)) &&
1931 ((vsi->info.port_vlan_flags & I40E_AQ_VSI_PVLAN_MODE_MASK) == 0))
1932 return; /* already enabled */
1933
1934 vsi->info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
1935 vsi->info.port_vlan_flags = I40E_AQ_VSI_PVLAN_MODE_ALL |
1936 I40E_AQ_VSI_PVLAN_EMOD_STR_BOTH;
1937
1938 ctxt.seid = vsi->seid;
1939 memcpy(&ctxt.info, &vsi->info, sizeof(vsi->info));
1940 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
1941 if (ret) {
1942 dev_info(&vsi->back->pdev->dev,
1943 "%s: update vsi failed, aq_err=%d\n",
1944 __func__, vsi->back->hw.aq.asq_last_status);
1945 }
1946}
1947
1948/**
1949 * i40e_vlan_stripping_disable - Turn off vlan stripping for the VSI
1950 * @vsi: the vsi being adjusted
1951 **/
1952void i40e_vlan_stripping_disable(struct i40e_vsi *vsi)
1953{
1954 struct i40e_vsi_context ctxt;
1955 i40e_status ret;
1956
1957 if ((vsi->info.valid_sections &
1958 cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID)) &&
1959 ((vsi->info.port_vlan_flags & I40E_AQ_VSI_PVLAN_EMOD_MASK) ==
1960 I40E_AQ_VSI_PVLAN_EMOD_MASK))
1961 return; /* already disabled */
1962
1963 vsi->info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
1964 vsi->info.port_vlan_flags = I40E_AQ_VSI_PVLAN_MODE_ALL |
1965 I40E_AQ_VSI_PVLAN_EMOD_NOTHING;
1966
1967 ctxt.seid = vsi->seid;
1968 memcpy(&ctxt.info, &vsi->info, sizeof(vsi->info));
1969 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
1970 if (ret) {
1971 dev_info(&vsi->back->pdev->dev,
1972 "%s: update vsi failed, aq_err=%d\n",
1973 __func__, vsi->back->hw.aq.asq_last_status);
1974 }
1975}
1976
1977/**
1978 * i40e_vlan_rx_register - Setup or shutdown vlan offload
1979 * @netdev: network interface to be adjusted
1980 * @features: netdev features to test if VLAN offload is enabled or not
1981 **/
1982static void i40e_vlan_rx_register(struct net_device *netdev, u32 features)
1983{
1984 struct i40e_netdev_priv *np = netdev_priv(netdev);
1985 struct i40e_vsi *vsi = np->vsi;
1986
1987 if (features & NETIF_F_HW_VLAN_CTAG_RX)
1988 i40e_vlan_stripping_enable(vsi);
1989 else
1990 i40e_vlan_stripping_disable(vsi);
1991}
1992
1993/**
1994 * i40e_vsi_add_vlan - Add vsi membership for given vlan
1995 * @vsi: the vsi being configured
1996 * @vid: vlan id to be added (0 = untagged only , -1 = any)
1997 **/
1998int i40e_vsi_add_vlan(struct i40e_vsi *vsi, s16 vid)
1999{
2000 struct i40e_mac_filter *f, *add_f;
2001 bool is_netdev, is_vf;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002002
2003 is_vf = (vsi->type == I40E_VSI_SRIOV);
2004 is_netdev = !!(vsi->netdev);
2005
2006 if (is_netdev) {
2007 add_f = i40e_add_filter(vsi, vsi->netdev->dev_addr, vid,
2008 is_vf, is_netdev);
2009 if (!add_f) {
2010 dev_info(&vsi->back->pdev->dev,
2011 "Could not add vlan filter %d for %pM\n",
2012 vid, vsi->netdev->dev_addr);
2013 return -ENOMEM;
2014 }
2015 }
2016
2017 list_for_each_entry(f, &vsi->mac_filter_list, list) {
2018 add_f = i40e_add_filter(vsi, f->macaddr, vid, is_vf, is_netdev);
2019 if (!add_f) {
2020 dev_info(&vsi->back->pdev->dev,
2021 "Could not add vlan filter %d for %pM\n",
2022 vid, f->macaddr);
2023 return -ENOMEM;
2024 }
2025 }
2026
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002027 /* Now if we add a vlan tag, make sure to check if it is the first
2028 * tag (i.e. a "tag" -1 does exist) and if so replace the -1 "tag"
2029 * with 0, so we now accept untagged and specified tagged traffic
2030 * (and not any taged and untagged)
2031 */
2032 if (vid > 0) {
2033 if (is_netdev && i40e_find_filter(vsi, vsi->netdev->dev_addr,
2034 I40E_VLAN_ANY,
2035 is_vf, is_netdev)) {
2036 i40e_del_filter(vsi, vsi->netdev->dev_addr,
2037 I40E_VLAN_ANY, is_vf, is_netdev);
2038 add_f = i40e_add_filter(vsi, vsi->netdev->dev_addr, 0,
2039 is_vf, is_netdev);
2040 if (!add_f) {
2041 dev_info(&vsi->back->pdev->dev,
2042 "Could not add filter 0 for %pM\n",
2043 vsi->netdev->dev_addr);
2044 return -ENOMEM;
2045 }
2046 }
Greg Rose8d82a7c2014-01-13 16:13:04 -08002047 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002048
Greg Rose8d82a7c2014-01-13 16:13:04 -08002049 /* Do not assume that I40E_VLAN_ANY should be reset to VLAN 0 */
2050 if (vid > 0 && !vsi->info.pvid) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002051 list_for_each_entry(f, &vsi->mac_filter_list, list) {
2052 if (i40e_find_filter(vsi, f->macaddr, I40E_VLAN_ANY,
2053 is_vf, is_netdev)) {
2054 i40e_del_filter(vsi, f->macaddr, I40E_VLAN_ANY,
2055 is_vf, is_netdev);
2056 add_f = i40e_add_filter(vsi, f->macaddr,
2057 0, is_vf, is_netdev);
2058 if (!add_f) {
2059 dev_info(&vsi->back->pdev->dev,
2060 "Could not add filter 0 for %pM\n",
2061 f->macaddr);
2062 return -ENOMEM;
2063 }
2064 }
2065 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002066 }
2067
Anjali Singhai Jain80f64282013-11-28 06:39:47 +00002068 if (test_bit(__I40E_DOWN, &vsi->back->state) ||
2069 test_bit(__I40E_RESET_RECOVERY_PENDING, &vsi->back->state))
2070 return 0;
2071
2072 return i40e_sync_vsi_filters(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002073}
2074
2075/**
2076 * i40e_vsi_kill_vlan - Remove vsi membership for given vlan
2077 * @vsi: the vsi being configured
2078 * @vid: vlan id to be removed (0 = untagged only , -1 = any)
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002079 *
2080 * Return: 0 on success or negative otherwise
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002081 **/
2082int i40e_vsi_kill_vlan(struct i40e_vsi *vsi, s16 vid)
2083{
2084 struct net_device *netdev = vsi->netdev;
2085 struct i40e_mac_filter *f, *add_f;
2086 bool is_vf, is_netdev;
2087 int filter_count = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002088
2089 is_vf = (vsi->type == I40E_VSI_SRIOV);
2090 is_netdev = !!(netdev);
2091
2092 if (is_netdev)
2093 i40e_del_filter(vsi, netdev->dev_addr, vid, is_vf, is_netdev);
2094
2095 list_for_each_entry(f, &vsi->mac_filter_list, list)
2096 i40e_del_filter(vsi, f->macaddr, vid, is_vf, is_netdev);
2097
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002098 /* go through all the filters for this VSI and if there is only
2099 * vid == 0 it means there are no other filters, so vid 0 must
2100 * be replaced with -1. This signifies that we should from now
2101 * on accept any traffic (with any tag present, or untagged)
2102 */
2103 list_for_each_entry(f, &vsi->mac_filter_list, list) {
2104 if (is_netdev) {
2105 if (f->vlan &&
2106 ether_addr_equal(netdev->dev_addr, f->macaddr))
2107 filter_count++;
2108 }
2109
2110 if (f->vlan)
2111 filter_count++;
2112 }
2113
2114 if (!filter_count && is_netdev) {
2115 i40e_del_filter(vsi, netdev->dev_addr, 0, is_vf, is_netdev);
2116 f = i40e_add_filter(vsi, netdev->dev_addr, I40E_VLAN_ANY,
2117 is_vf, is_netdev);
2118 if (!f) {
2119 dev_info(&vsi->back->pdev->dev,
2120 "Could not add filter %d for %pM\n",
2121 I40E_VLAN_ANY, netdev->dev_addr);
2122 return -ENOMEM;
2123 }
2124 }
2125
2126 if (!filter_count) {
2127 list_for_each_entry(f, &vsi->mac_filter_list, list) {
2128 i40e_del_filter(vsi, f->macaddr, 0, is_vf, is_netdev);
2129 add_f = i40e_add_filter(vsi, f->macaddr, I40E_VLAN_ANY,
2130 is_vf, is_netdev);
2131 if (!add_f) {
2132 dev_info(&vsi->back->pdev->dev,
2133 "Could not add filter %d for %pM\n",
2134 I40E_VLAN_ANY, f->macaddr);
2135 return -ENOMEM;
2136 }
2137 }
2138 }
2139
Anjali Singhai Jain80f64282013-11-28 06:39:47 +00002140 if (test_bit(__I40E_DOWN, &vsi->back->state) ||
2141 test_bit(__I40E_RESET_RECOVERY_PENDING, &vsi->back->state))
2142 return 0;
2143
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002144 return i40e_sync_vsi_filters(vsi);
2145}
2146
2147/**
2148 * i40e_vlan_rx_add_vid - Add a vlan id filter to HW offload
2149 * @netdev: network interface to be adjusted
2150 * @vid: vlan id to be added
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002151 *
2152 * net_device_ops implementation for adding vlan ids
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002153 **/
Vasu Dev38e00432014-08-01 13:27:03 -07002154#ifdef I40E_FCOE
2155int i40e_vlan_rx_add_vid(struct net_device *netdev,
2156 __always_unused __be16 proto, u16 vid)
2157#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002158static int i40e_vlan_rx_add_vid(struct net_device *netdev,
2159 __always_unused __be16 proto, u16 vid)
Vasu Dev38e00432014-08-01 13:27:03 -07002160#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002161{
2162 struct i40e_netdev_priv *np = netdev_priv(netdev);
2163 struct i40e_vsi *vsi = np->vsi;
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002164 int ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002165
2166 if (vid > 4095)
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002167 return -EINVAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002168
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002169 netdev_info(netdev, "adding %pM vid=%d\n", netdev->dev_addr, vid);
2170
Anjali Singhai Jain6982d422014-02-06 05:51:10 +00002171 /* If the network stack called us with vid = 0 then
2172 * it is asking to receive priority tagged packets with
2173 * vlan id 0. Our HW receives them by default when configured
2174 * to receive untagged packets so there is no need to add an
2175 * extra filter for vlan 0 tagged packets.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002176 */
Anjali Singhai Jain6982d422014-02-06 05:51:10 +00002177 if (vid)
2178 ret = i40e_vsi_add_vlan(vsi, vid);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002179
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002180 if (!ret && (vid < VLAN_N_VID))
2181 set_bit(vid, vsi->active_vlans);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002182
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002183 return ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002184}
2185
2186/**
2187 * i40e_vlan_rx_kill_vid - Remove a vlan id filter from HW offload
2188 * @netdev: network interface to be adjusted
2189 * @vid: vlan id to be removed
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002190 *
Akeem G Abodunrinfdfd9432014-02-11 08:24:15 +00002191 * net_device_ops implementation for removing vlan ids
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002192 **/
Vasu Dev38e00432014-08-01 13:27:03 -07002193#ifdef I40E_FCOE
2194int i40e_vlan_rx_kill_vid(struct net_device *netdev,
2195 __always_unused __be16 proto, u16 vid)
2196#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002197static int i40e_vlan_rx_kill_vid(struct net_device *netdev,
2198 __always_unused __be16 proto, u16 vid)
Vasu Dev38e00432014-08-01 13:27:03 -07002199#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002200{
2201 struct i40e_netdev_priv *np = netdev_priv(netdev);
2202 struct i40e_vsi *vsi = np->vsi;
2203
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002204 netdev_info(netdev, "removing %pM vid=%d\n", netdev->dev_addr, vid);
2205
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002206 /* return code is ignored as there is nothing a user
2207 * can do about failure to remove and a log message was
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002208 * already printed from the other function
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002209 */
2210 i40e_vsi_kill_vlan(vsi, vid);
2211
2212 clear_bit(vid, vsi->active_vlans);
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002213
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002214 return 0;
2215}
2216
2217/**
2218 * i40e_restore_vlan - Reinstate vlans when vsi/netdev comes back up
2219 * @vsi: the vsi being brought back up
2220 **/
2221static void i40e_restore_vlan(struct i40e_vsi *vsi)
2222{
2223 u16 vid;
2224
2225 if (!vsi->netdev)
2226 return;
2227
2228 i40e_vlan_rx_register(vsi->netdev, vsi->netdev->features);
2229
2230 for_each_set_bit(vid, vsi->active_vlans, VLAN_N_VID)
2231 i40e_vlan_rx_add_vid(vsi->netdev, htons(ETH_P_8021Q),
2232 vid);
2233}
2234
2235/**
2236 * i40e_vsi_add_pvid - Add pvid for the VSI
2237 * @vsi: the vsi being adjusted
2238 * @vid: the vlan id to set as a PVID
2239 **/
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00002240int i40e_vsi_add_pvid(struct i40e_vsi *vsi, u16 vid)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002241{
2242 struct i40e_vsi_context ctxt;
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00002243 i40e_status aq_ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002244
2245 vsi->info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
2246 vsi->info.pvid = cpu_to_le16(vid);
Greg Rose6c12fcb2013-11-28 06:39:34 +00002247 vsi->info.port_vlan_flags = I40E_AQ_VSI_PVLAN_MODE_TAGGED |
2248 I40E_AQ_VSI_PVLAN_INSERT_PVID |
Greg Roseb774c7d2013-11-28 06:39:44 +00002249 I40E_AQ_VSI_PVLAN_EMOD_STR;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002250
2251 ctxt.seid = vsi->seid;
2252 memcpy(&ctxt.info, &vsi->info, sizeof(vsi->info));
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00002253 aq_ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
2254 if (aq_ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002255 dev_info(&vsi->back->pdev->dev,
2256 "%s: update vsi failed, aq_err=%d\n",
2257 __func__, vsi->back->hw.aq.asq_last_status);
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00002258 return -ENOENT;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002259 }
2260
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00002261 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002262}
2263
2264/**
2265 * i40e_vsi_remove_pvid - Remove the pvid from the VSI
2266 * @vsi: the vsi being adjusted
2267 *
2268 * Just use the vlan_rx_register() service to put it back to normal
2269 **/
2270void i40e_vsi_remove_pvid(struct i40e_vsi *vsi)
2271{
Greg Rose6c12fcb2013-11-28 06:39:34 +00002272 i40e_vlan_stripping_disable(vsi);
2273
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002274 vsi->info.pvid = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002275}
2276
2277/**
2278 * i40e_vsi_setup_tx_resources - Allocate VSI Tx queue resources
2279 * @vsi: ptr to the VSI
2280 *
2281 * If this function returns with an error, then it's possible one or
2282 * more of the rings is populated (while the rest are not). It is the
2283 * callers duty to clean those orphaned rings.
2284 *
2285 * Return 0 on success, negative on failure
2286 **/
2287static int i40e_vsi_setup_tx_resources(struct i40e_vsi *vsi)
2288{
2289 int i, err = 0;
2290
2291 for (i = 0; i < vsi->num_queue_pairs && !err; i++)
Alexander Duyck9f65e152013-09-28 06:00:58 +00002292 err = i40e_setup_tx_descriptors(vsi->tx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002293
2294 return err;
2295}
2296
2297/**
2298 * i40e_vsi_free_tx_resources - Free Tx resources for VSI queues
2299 * @vsi: ptr to the VSI
2300 *
2301 * Free VSI's transmit software resources
2302 **/
2303static void i40e_vsi_free_tx_resources(struct i40e_vsi *vsi)
2304{
2305 int i;
2306
Greg Rose8e9dca52013-12-18 13:45:53 +00002307 if (!vsi->tx_rings)
2308 return;
2309
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002310 for (i = 0; i < vsi->num_queue_pairs; i++)
Greg Rose8e9dca52013-12-18 13:45:53 +00002311 if (vsi->tx_rings[i] && vsi->tx_rings[i]->desc)
Alexander Duyck9f65e152013-09-28 06:00:58 +00002312 i40e_free_tx_resources(vsi->tx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002313}
2314
2315/**
2316 * i40e_vsi_setup_rx_resources - Allocate VSI queues Rx resources
2317 * @vsi: ptr to the VSI
2318 *
2319 * If this function returns with an error, then it's possible one or
2320 * more of the rings is populated (while the rest are not). It is the
2321 * callers duty to clean those orphaned rings.
2322 *
2323 * Return 0 on success, negative on failure
2324 **/
2325static int i40e_vsi_setup_rx_resources(struct i40e_vsi *vsi)
2326{
2327 int i, err = 0;
2328
2329 for (i = 0; i < vsi->num_queue_pairs && !err; i++)
Alexander Duyck9f65e152013-09-28 06:00:58 +00002330 err = i40e_setup_rx_descriptors(vsi->rx_rings[i]);
Vasu Dev38e00432014-08-01 13:27:03 -07002331#ifdef I40E_FCOE
2332 i40e_fcoe_setup_ddp_resources(vsi);
2333#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002334 return err;
2335}
2336
2337/**
2338 * i40e_vsi_free_rx_resources - Free Rx Resources for VSI queues
2339 * @vsi: ptr to the VSI
2340 *
2341 * Free all receive software resources
2342 **/
2343static void i40e_vsi_free_rx_resources(struct i40e_vsi *vsi)
2344{
2345 int i;
2346
Greg Rose8e9dca52013-12-18 13:45:53 +00002347 if (!vsi->rx_rings)
2348 return;
2349
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002350 for (i = 0; i < vsi->num_queue_pairs; i++)
Greg Rose8e9dca52013-12-18 13:45:53 +00002351 if (vsi->rx_rings[i] && vsi->rx_rings[i]->desc)
Alexander Duyck9f65e152013-09-28 06:00:58 +00002352 i40e_free_rx_resources(vsi->rx_rings[i]);
Vasu Dev38e00432014-08-01 13:27:03 -07002353#ifdef I40E_FCOE
2354 i40e_fcoe_free_ddp_resources(vsi);
2355#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002356}
2357
2358/**
2359 * i40e_configure_tx_ring - Configure a transmit ring context and rest
2360 * @ring: The Tx ring to configure
2361 *
2362 * Configure the Tx descriptor ring in the HMC context.
2363 **/
2364static int i40e_configure_tx_ring(struct i40e_ring *ring)
2365{
2366 struct i40e_vsi *vsi = ring->vsi;
2367 u16 pf_q = vsi->base_queue + ring->queue_index;
2368 struct i40e_hw *hw = &vsi->back->hw;
2369 struct i40e_hmc_obj_txq tx_ctx;
2370 i40e_status err = 0;
2371 u32 qtx_ctl = 0;
2372
2373 /* some ATR related tx ring init */
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08002374 if (vsi->back->flags & I40E_FLAG_FD_ATR_ENABLED) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002375 ring->atr_sample_rate = vsi->back->atr_sample_rate;
2376 ring->atr_count = 0;
2377 } else {
2378 ring->atr_sample_rate = 0;
2379 }
2380
2381 /* initialize XPS */
2382 if (ring->q_vector && ring->netdev &&
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08002383 vsi->tc_config.numtc <= 1 &&
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002384 !test_and_set_bit(__I40E_TX_XPS_INIT_DONE, &ring->state))
2385 netif_set_xps_queue(ring->netdev,
2386 &ring->q_vector->affinity_mask,
2387 ring->queue_index);
2388
2389 /* clear the context structure first */
2390 memset(&tx_ctx, 0, sizeof(tx_ctx));
2391
2392 tx_ctx.new_context = 1;
2393 tx_ctx.base = (ring->dma / 128);
2394 tx_ctx.qlen = ring->count;
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08002395 tx_ctx.fd_ena = !!(vsi->back->flags & (I40E_FLAG_FD_SB_ENABLED |
2396 I40E_FLAG_FD_ATR_ENABLED));
Vasu Dev38e00432014-08-01 13:27:03 -07002397#ifdef I40E_FCOE
2398 tx_ctx.fc_ena = (vsi->type == I40E_VSI_FCOE);
2399#endif
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00002400 tx_ctx.timesync_ena = !!(vsi->back->flags & I40E_FLAG_PTP);
Jesse Brandeburg1943d8b2014-02-14 02:14:40 +00002401 /* FDIR VSI tx ring can still use RS bit and writebacks */
2402 if (vsi->type != I40E_VSI_FDIR)
2403 tx_ctx.head_wb_ena = 1;
2404 tx_ctx.head_wb_addr = ring->dma +
2405 (ring->count * sizeof(struct i40e_tx_desc));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002406
2407 /* As part of VSI creation/update, FW allocates certain
2408 * Tx arbitration queue sets for each TC enabled for
2409 * the VSI. The FW returns the handles to these queue
2410 * sets as part of the response buffer to Add VSI,
2411 * Update VSI, etc. AQ commands. It is expected that
2412 * these queue set handles be associated with the Tx
2413 * queues by the driver as part of the TX queue context
2414 * initialization. This has to be done regardless of
2415 * DCB as by default everything is mapped to TC0.
2416 */
2417 tx_ctx.rdylist = le16_to_cpu(vsi->info.qs_handle[ring->dcb_tc]);
2418 tx_ctx.rdylist_act = 0;
2419
2420 /* clear the context in the HMC */
2421 err = i40e_clear_lan_tx_queue_context(hw, pf_q);
2422 if (err) {
2423 dev_info(&vsi->back->pdev->dev,
2424 "Failed to clear LAN Tx queue context on Tx ring %d (pf_q %d), error: %d\n",
2425 ring->queue_index, pf_q, err);
2426 return -ENOMEM;
2427 }
2428
2429 /* set the context in the HMC */
2430 err = i40e_set_lan_tx_queue_context(hw, pf_q, &tx_ctx);
2431 if (err) {
2432 dev_info(&vsi->back->pdev->dev,
2433 "Failed to set LAN Tx queue context on Tx ring %d (pf_q %d, error: %d\n",
2434 ring->queue_index, pf_q, err);
2435 return -ENOMEM;
2436 }
2437
2438 /* Now associate this queue with this PCI function */
Shannon Nelson9d8bf542014-01-14 00:49:50 -08002439 if (vsi->type == I40E_VSI_VMDQ2)
2440 qtx_ctl = I40E_QTX_CTL_VM_QUEUE;
2441 else
2442 qtx_ctl = I40E_QTX_CTL_PF_QUEUE;
Shannon Nelson13fd9772013-09-28 07:14:19 +00002443 qtx_ctl |= ((hw->pf_id << I40E_QTX_CTL_PF_INDX_SHIFT) &
2444 I40E_QTX_CTL_PF_INDX_MASK);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002445 wr32(hw, I40E_QTX_CTL(pf_q), qtx_ctl);
2446 i40e_flush(hw);
2447
2448 clear_bit(__I40E_HANG_CHECK_ARMED, &ring->state);
2449
2450 /* cache tail off for easier writes later */
2451 ring->tail = hw->hw_addr + I40E_QTX_TAIL(pf_q);
2452
2453 return 0;
2454}
2455
2456/**
2457 * i40e_configure_rx_ring - Configure a receive ring context
2458 * @ring: The Rx ring to configure
2459 *
2460 * Configure the Rx descriptor ring in the HMC context.
2461 **/
2462static int i40e_configure_rx_ring(struct i40e_ring *ring)
2463{
2464 struct i40e_vsi *vsi = ring->vsi;
2465 u32 chain_len = vsi->back->hw.func_caps.rx_buf_chain_len;
2466 u16 pf_q = vsi->base_queue + ring->queue_index;
2467 struct i40e_hw *hw = &vsi->back->hw;
2468 struct i40e_hmc_obj_rxq rx_ctx;
2469 i40e_status err = 0;
2470
2471 ring->state = 0;
2472
2473 /* clear the context structure first */
2474 memset(&rx_ctx, 0, sizeof(rx_ctx));
2475
2476 ring->rx_buf_len = vsi->rx_buf_len;
2477 ring->rx_hdr_len = vsi->rx_hdr_len;
2478
2479 rx_ctx.dbuff = ring->rx_buf_len >> I40E_RXQ_CTX_DBUFF_SHIFT;
2480 rx_ctx.hbuff = ring->rx_hdr_len >> I40E_RXQ_CTX_HBUFF_SHIFT;
2481
2482 rx_ctx.base = (ring->dma / 128);
2483 rx_ctx.qlen = ring->count;
2484
2485 if (vsi->back->flags & I40E_FLAG_16BYTE_RX_DESC_ENABLED) {
2486 set_ring_16byte_desc_enabled(ring);
2487 rx_ctx.dsize = 0;
2488 } else {
2489 rx_ctx.dsize = 1;
2490 }
2491
2492 rx_ctx.dtype = vsi->dtype;
2493 if (vsi->dtype) {
2494 set_ring_ps_enabled(ring);
2495 rx_ctx.hsplit_0 = I40E_RX_SPLIT_L2 |
2496 I40E_RX_SPLIT_IP |
2497 I40E_RX_SPLIT_TCP_UDP |
2498 I40E_RX_SPLIT_SCTP;
2499 } else {
2500 rx_ctx.hsplit_0 = 0;
2501 }
2502
2503 rx_ctx.rxmax = min_t(u16, vsi->max_frame,
2504 (chain_len * ring->rx_buf_len));
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00002505 if (hw->revision_id == 0)
2506 rx_ctx.lrxqthresh = 0;
2507 else
2508 rx_ctx.lrxqthresh = 2;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002509 rx_ctx.crcstrip = 1;
2510 rx_ctx.l2tsel = 1;
2511 rx_ctx.showiv = 1;
Vasu Dev38e00432014-08-01 13:27:03 -07002512#ifdef I40E_FCOE
2513 rx_ctx.fc_ena = (vsi->type == I40E_VSI_FCOE);
2514#endif
Catherine Sullivanacb36762014-03-06 09:02:30 +00002515 /* set the prefena field to 1 because the manual says to */
2516 rx_ctx.prefena = 1;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002517
2518 /* clear the context in the HMC */
2519 err = i40e_clear_lan_rx_queue_context(hw, pf_q);
2520 if (err) {
2521 dev_info(&vsi->back->pdev->dev,
2522 "Failed to clear LAN Rx queue context on Rx ring %d (pf_q %d), error: %d\n",
2523 ring->queue_index, pf_q, err);
2524 return -ENOMEM;
2525 }
2526
2527 /* set the context in the HMC */
2528 err = i40e_set_lan_rx_queue_context(hw, pf_q, &rx_ctx);
2529 if (err) {
2530 dev_info(&vsi->back->pdev->dev,
2531 "Failed to set LAN Rx queue context on Rx ring %d (pf_q %d), error: %d\n",
2532 ring->queue_index, pf_q, err);
2533 return -ENOMEM;
2534 }
2535
2536 /* cache tail for quicker writes, and clear the reg before use */
2537 ring->tail = hw->hw_addr + I40E_QRX_TAIL(pf_q);
2538 writel(0, ring->tail);
2539
2540 i40e_alloc_rx_buffers(ring, I40E_DESC_UNUSED(ring));
2541
2542 return 0;
2543}
2544
2545/**
2546 * i40e_vsi_configure_tx - Configure the VSI for Tx
2547 * @vsi: VSI structure describing this set of rings and resources
2548 *
2549 * Configure the Tx VSI for operation.
2550 **/
2551static int i40e_vsi_configure_tx(struct i40e_vsi *vsi)
2552{
2553 int err = 0;
2554 u16 i;
2555
Alexander Duyck9f65e152013-09-28 06:00:58 +00002556 for (i = 0; (i < vsi->num_queue_pairs) && !err; i++)
2557 err = i40e_configure_tx_ring(vsi->tx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002558
2559 return err;
2560}
2561
2562/**
2563 * i40e_vsi_configure_rx - Configure the VSI for Rx
2564 * @vsi: the VSI being configured
2565 *
2566 * Configure the Rx VSI for operation.
2567 **/
2568static int i40e_vsi_configure_rx(struct i40e_vsi *vsi)
2569{
2570 int err = 0;
2571 u16 i;
2572
2573 if (vsi->netdev && (vsi->netdev->mtu > ETH_DATA_LEN))
2574 vsi->max_frame = vsi->netdev->mtu + ETH_HLEN
2575 + ETH_FCS_LEN + VLAN_HLEN;
2576 else
2577 vsi->max_frame = I40E_RXBUFFER_2048;
2578
2579 /* figure out correct receive buffer length */
2580 switch (vsi->back->flags & (I40E_FLAG_RX_1BUF_ENABLED |
2581 I40E_FLAG_RX_PS_ENABLED)) {
2582 case I40E_FLAG_RX_1BUF_ENABLED:
2583 vsi->rx_hdr_len = 0;
2584 vsi->rx_buf_len = vsi->max_frame;
2585 vsi->dtype = I40E_RX_DTYPE_NO_SPLIT;
2586 break;
2587 case I40E_FLAG_RX_PS_ENABLED:
2588 vsi->rx_hdr_len = I40E_RX_HDR_SIZE;
2589 vsi->rx_buf_len = I40E_RXBUFFER_2048;
2590 vsi->dtype = I40E_RX_DTYPE_HEADER_SPLIT;
2591 break;
2592 default:
2593 vsi->rx_hdr_len = I40E_RX_HDR_SIZE;
2594 vsi->rx_buf_len = I40E_RXBUFFER_2048;
2595 vsi->dtype = I40E_RX_DTYPE_SPLIT_ALWAYS;
2596 break;
2597 }
2598
Vasu Dev38e00432014-08-01 13:27:03 -07002599#ifdef I40E_FCOE
2600 /* setup rx buffer for FCoE */
2601 if ((vsi->type == I40E_VSI_FCOE) &&
2602 (vsi->back->flags & I40E_FLAG_FCOE_ENABLED)) {
2603 vsi->rx_hdr_len = 0;
2604 vsi->rx_buf_len = I40E_RXBUFFER_3072;
2605 vsi->max_frame = I40E_RXBUFFER_3072;
2606 vsi->dtype = I40E_RX_DTYPE_NO_SPLIT;
2607 }
2608
2609#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002610 /* round up for the chip's needs */
2611 vsi->rx_hdr_len = ALIGN(vsi->rx_hdr_len,
2612 (1 << I40E_RXQ_CTX_HBUFF_SHIFT));
2613 vsi->rx_buf_len = ALIGN(vsi->rx_buf_len,
2614 (1 << I40E_RXQ_CTX_DBUFF_SHIFT));
2615
2616 /* set up individual rings */
2617 for (i = 0; i < vsi->num_queue_pairs && !err; i++)
Alexander Duyck9f65e152013-09-28 06:00:58 +00002618 err = i40e_configure_rx_ring(vsi->rx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002619
2620 return err;
2621}
2622
2623/**
2624 * i40e_vsi_config_dcb_rings - Update rings to reflect DCB TC
2625 * @vsi: ptr to the VSI
2626 **/
2627static void i40e_vsi_config_dcb_rings(struct i40e_vsi *vsi)
2628{
Akeem G Abodunrine7046ee2014-04-09 05:58:58 +00002629 struct i40e_ring *tx_ring, *rx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002630 u16 qoffset, qcount;
2631 int i, n;
2632
2633 if (!(vsi->back->flags & I40E_FLAG_DCB_ENABLED))
2634 return;
2635
2636 for (n = 0; n < I40E_MAX_TRAFFIC_CLASS; n++) {
2637 if (!(vsi->tc_config.enabled_tc & (1 << n)))
2638 continue;
2639
2640 qoffset = vsi->tc_config.tc_info[n].qoffset;
2641 qcount = vsi->tc_config.tc_info[n].qcount;
2642 for (i = qoffset; i < (qoffset + qcount); i++) {
Akeem G Abodunrine7046ee2014-04-09 05:58:58 +00002643 rx_ring = vsi->rx_rings[i];
2644 tx_ring = vsi->tx_rings[i];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002645 rx_ring->dcb_tc = n;
2646 tx_ring->dcb_tc = n;
2647 }
2648 }
2649}
2650
2651/**
2652 * i40e_set_vsi_rx_mode - Call set_rx_mode on a VSI
2653 * @vsi: ptr to the VSI
2654 **/
2655static void i40e_set_vsi_rx_mode(struct i40e_vsi *vsi)
2656{
2657 if (vsi->netdev)
2658 i40e_set_rx_mode(vsi->netdev);
2659}
2660
2661/**
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002662 * i40e_fdir_filter_restore - Restore the Sideband Flow Director filters
2663 * @vsi: Pointer to the targeted VSI
2664 *
2665 * This function replays the hlist on the hw where all the SB Flow Director
2666 * filters were saved.
2667 **/
2668static void i40e_fdir_filter_restore(struct i40e_vsi *vsi)
2669{
2670 struct i40e_fdir_filter *filter;
2671 struct i40e_pf *pf = vsi->back;
2672 struct hlist_node *node;
2673
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00002674 if (!(pf->flags & I40E_FLAG_FD_SB_ENABLED))
2675 return;
2676
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002677 hlist_for_each_entry_safe(filter, node,
2678 &pf->fdir_filter_list, fdir_node) {
2679 i40e_add_del_fdir(vsi, filter, true);
2680 }
2681}
2682
2683/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002684 * i40e_vsi_configure - Set up the VSI for action
2685 * @vsi: the VSI being configured
2686 **/
2687static int i40e_vsi_configure(struct i40e_vsi *vsi)
2688{
2689 int err;
2690
2691 i40e_set_vsi_rx_mode(vsi);
2692 i40e_restore_vlan(vsi);
2693 i40e_vsi_config_dcb_rings(vsi);
2694 err = i40e_vsi_configure_tx(vsi);
2695 if (!err)
2696 err = i40e_vsi_configure_rx(vsi);
2697
2698 return err;
2699}
2700
2701/**
2702 * i40e_vsi_configure_msix - MSIX mode Interrupt Config in the HW
2703 * @vsi: the VSI being configured
2704 **/
2705static void i40e_vsi_configure_msix(struct i40e_vsi *vsi)
2706{
2707 struct i40e_pf *pf = vsi->back;
2708 struct i40e_q_vector *q_vector;
2709 struct i40e_hw *hw = &pf->hw;
2710 u16 vector;
2711 int i, q;
2712 u32 val;
2713 u32 qp;
2714
2715 /* The interrupt indexing is offset by 1 in the PFINT_ITRn
2716 * and PFINT_LNKLSTn registers, e.g.:
2717 * PFINT_ITRn[0..n-1] gets msix-1..msix-n (qpair interrupts)
2718 */
2719 qp = vsi->base_queue;
2720 vector = vsi->base_vector;
Alexander Duyck493fb302013-09-28 07:01:44 +00002721 for (i = 0; i < vsi->num_q_vectors; i++, vector++) {
2722 q_vector = vsi->q_vectors[i];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002723 q_vector->rx.itr = ITR_TO_REG(vsi->rx_itr_setting);
2724 q_vector->rx.latency_range = I40E_LOW_LATENCY;
2725 wr32(hw, I40E_PFINT_ITRN(I40E_RX_ITR, vector - 1),
2726 q_vector->rx.itr);
2727 q_vector->tx.itr = ITR_TO_REG(vsi->tx_itr_setting);
2728 q_vector->tx.latency_range = I40E_LOW_LATENCY;
2729 wr32(hw, I40E_PFINT_ITRN(I40E_TX_ITR, vector - 1),
2730 q_vector->tx.itr);
2731
2732 /* Linked list for the queuepairs assigned to this vector */
2733 wr32(hw, I40E_PFINT_LNKLSTN(vector - 1), qp);
2734 for (q = 0; q < q_vector->num_ringpairs; q++) {
2735 val = I40E_QINT_RQCTL_CAUSE_ENA_MASK |
2736 (I40E_RX_ITR << I40E_QINT_RQCTL_ITR_INDX_SHIFT) |
2737 (vector << I40E_QINT_RQCTL_MSIX_INDX_SHIFT) |
2738 (qp << I40E_QINT_RQCTL_NEXTQ_INDX_SHIFT)|
2739 (I40E_QUEUE_TYPE_TX
2740 << I40E_QINT_RQCTL_NEXTQ_TYPE_SHIFT);
2741
2742 wr32(hw, I40E_QINT_RQCTL(qp), val);
2743
2744 val = I40E_QINT_TQCTL_CAUSE_ENA_MASK |
2745 (I40E_TX_ITR << I40E_QINT_TQCTL_ITR_INDX_SHIFT) |
2746 (vector << I40E_QINT_TQCTL_MSIX_INDX_SHIFT) |
2747 ((qp+1) << I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT)|
2748 (I40E_QUEUE_TYPE_RX
2749 << I40E_QINT_TQCTL_NEXTQ_TYPE_SHIFT);
2750
2751 /* Terminate the linked list */
2752 if (q == (q_vector->num_ringpairs - 1))
2753 val |= (I40E_QUEUE_END_OF_LIST
2754 << I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT);
2755
2756 wr32(hw, I40E_QINT_TQCTL(qp), val);
2757 qp++;
2758 }
2759 }
2760
2761 i40e_flush(hw);
2762}
2763
2764/**
2765 * i40e_enable_misc_int_causes - enable the non-queue interrupts
2766 * @hw: ptr to the hardware info
2767 **/
2768static void i40e_enable_misc_int_causes(struct i40e_hw *hw)
2769{
2770 u32 val;
2771
2772 /* clear things first */
2773 wr32(hw, I40E_PFINT_ICR0_ENA, 0); /* disable all */
2774 rd32(hw, I40E_PFINT_ICR0); /* read to clear */
2775
2776 val = I40E_PFINT_ICR0_ENA_ECC_ERR_MASK |
2777 I40E_PFINT_ICR0_ENA_MAL_DETECT_MASK |
2778 I40E_PFINT_ICR0_ENA_GRST_MASK |
2779 I40E_PFINT_ICR0_ENA_PCI_EXCEPTION_MASK |
2780 I40E_PFINT_ICR0_ENA_GPIO_MASK |
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00002781 I40E_PFINT_ICR0_ENA_TIMESYNC_MASK |
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002782 I40E_PFINT_ICR0_ENA_HMC_ERR_MASK |
2783 I40E_PFINT_ICR0_ENA_VFLR_MASK |
2784 I40E_PFINT_ICR0_ENA_ADMINQ_MASK;
2785
2786 wr32(hw, I40E_PFINT_ICR0_ENA, val);
2787
2788 /* SW_ITR_IDX = 0, but don't change INTENA */
Anjali Singhai Jain84ed40e2013-11-26 10:49:32 +00002789 wr32(hw, I40E_PFINT_DYN_CTL0, I40E_PFINT_DYN_CTL0_SW_ITR_INDX_MASK |
2790 I40E_PFINT_DYN_CTL0_INTENA_MSK_MASK);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002791
2792 /* OTHER_ITR_IDX = 0 */
2793 wr32(hw, I40E_PFINT_STAT_CTL0, 0);
2794}
2795
2796/**
2797 * i40e_configure_msi_and_legacy - Legacy mode interrupt config in the HW
2798 * @vsi: the VSI being configured
2799 **/
2800static void i40e_configure_msi_and_legacy(struct i40e_vsi *vsi)
2801{
Alexander Duyck493fb302013-09-28 07:01:44 +00002802 struct i40e_q_vector *q_vector = vsi->q_vectors[0];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002803 struct i40e_pf *pf = vsi->back;
2804 struct i40e_hw *hw = &pf->hw;
2805 u32 val;
2806
2807 /* set the ITR configuration */
2808 q_vector->rx.itr = ITR_TO_REG(vsi->rx_itr_setting);
2809 q_vector->rx.latency_range = I40E_LOW_LATENCY;
2810 wr32(hw, I40E_PFINT_ITR0(I40E_RX_ITR), q_vector->rx.itr);
2811 q_vector->tx.itr = ITR_TO_REG(vsi->tx_itr_setting);
2812 q_vector->tx.latency_range = I40E_LOW_LATENCY;
2813 wr32(hw, I40E_PFINT_ITR0(I40E_TX_ITR), q_vector->tx.itr);
2814
2815 i40e_enable_misc_int_causes(hw);
2816
2817 /* FIRSTQ_INDX = 0, FIRSTQ_TYPE = 0 (rx) */
2818 wr32(hw, I40E_PFINT_LNKLST0, 0);
2819
Jesse Brandeburgf29eaa32014-02-11 08:24:12 +00002820 /* Associate the queue pair to the vector and enable the queue int */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002821 val = I40E_QINT_RQCTL_CAUSE_ENA_MASK |
2822 (I40E_RX_ITR << I40E_QINT_RQCTL_ITR_INDX_SHIFT) |
2823 (I40E_QUEUE_TYPE_TX << I40E_QINT_TQCTL_NEXTQ_TYPE_SHIFT);
2824
2825 wr32(hw, I40E_QINT_RQCTL(0), val);
2826
2827 val = I40E_QINT_TQCTL_CAUSE_ENA_MASK |
2828 (I40E_TX_ITR << I40E_QINT_TQCTL_ITR_INDX_SHIFT) |
2829 (I40E_QUEUE_END_OF_LIST << I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT);
2830
2831 wr32(hw, I40E_QINT_TQCTL(0), val);
2832 i40e_flush(hw);
2833}
2834
2835/**
Mitch Williams2ef28cf2013-11-28 06:39:32 +00002836 * i40e_irq_dynamic_disable_icr0 - Disable default interrupt generation for icr0
2837 * @pf: board private structure
2838 **/
2839void i40e_irq_dynamic_disable_icr0(struct i40e_pf *pf)
2840{
2841 struct i40e_hw *hw = &pf->hw;
2842
2843 wr32(hw, I40E_PFINT_DYN_CTL0,
2844 I40E_ITR_NONE << I40E_PFINT_DYN_CTLN_ITR_INDX_SHIFT);
2845 i40e_flush(hw);
2846}
2847
2848/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002849 * i40e_irq_dynamic_enable_icr0 - Enable default interrupt generation for icr0
2850 * @pf: board private structure
2851 **/
Shannon Nelson116a57d2013-09-28 07:13:59 +00002852void i40e_irq_dynamic_enable_icr0(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002853{
2854 struct i40e_hw *hw = &pf->hw;
2855 u32 val;
2856
2857 val = I40E_PFINT_DYN_CTL0_INTENA_MASK |
2858 I40E_PFINT_DYN_CTL0_CLEARPBA_MASK |
2859 (I40E_ITR_NONE << I40E_PFINT_DYN_CTL0_ITR_INDX_SHIFT);
2860
2861 wr32(hw, I40E_PFINT_DYN_CTL0, val);
2862 i40e_flush(hw);
2863}
2864
2865/**
2866 * i40e_irq_dynamic_enable - Enable default interrupt generation settings
2867 * @vsi: pointer to a vsi
2868 * @vector: enable a particular Hw Interrupt vector
2869 **/
2870void i40e_irq_dynamic_enable(struct i40e_vsi *vsi, int vector)
2871{
2872 struct i40e_pf *pf = vsi->back;
2873 struct i40e_hw *hw = &pf->hw;
2874 u32 val;
2875
2876 val = I40E_PFINT_DYN_CTLN_INTENA_MASK |
2877 I40E_PFINT_DYN_CTLN_CLEARPBA_MASK |
2878 (I40E_ITR_NONE << I40E_PFINT_DYN_CTLN_ITR_INDX_SHIFT);
2879 wr32(hw, I40E_PFINT_DYN_CTLN(vector - 1), val);
Jesse Brandeburg1022cb62013-09-28 07:13:08 +00002880 /* skip the flush */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002881}
2882
2883/**
Carolyn Wyborny5c2cebd2014-06-04 01:23:18 +00002884 * i40e_irq_dynamic_disable - Disable default interrupt generation settings
2885 * @vsi: pointer to a vsi
2886 * @vector: enable a particular Hw Interrupt vector
2887 **/
2888void i40e_irq_dynamic_disable(struct i40e_vsi *vsi, int vector)
2889{
2890 struct i40e_pf *pf = vsi->back;
2891 struct i40e_hw *hw = &pf->hw;
2892 u32 val;
2893
2894 val = I40E_ITR_NONE << I40E_PFINT_DYN_CTLN_ITR_INDX_SHIFT;
2895 wr32(hw, I40E_PFINT_DYN_CTLN(vector - 1), val);
2896 i40e_flush(hw);
2897}
2898
2899/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002900 * i40e_msix_clean_rings - MSIX mode Interrupt Handler
2901 * @irq: interrupt number
2902 * @data: pointer to a q_vector
2903 **/
2904static irqreturn_t i40e_msix_clean_rings(int irq, void *data)
2905{
2906 struct i40e_q_vector *q_vector = data;
2907
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00002908 if (!q_vector->tx.ring && !q_vector->rx.ring)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002909 return IRQ_HANDLED;
2910
2911 napi_schedule(&q_vector->napi);
2912
2913 return IRQ_HANDLED;
2914}
2915
2916/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002917 * i40e_vsi_request_irq_msix - Initialize MSI-X interrupts
2918 * @vsi: the VSI being configured
2919 * @basename: name for the vector
2920 *
2921 * Allocates MSI-X vectors and requests interrupts from the kernel.
2922 **/
2923static int i40e_vsi_request_irq_msix(struct i40e_vsi *vsi, char *basename)
2924{
2925 int q_vectors = vsi->num_q_vectors;
2926 struct i40e_pf *pf = vsi->back;
2927 int base = vsi->base_vector;
2928 int rx_int_idx = 0;
2929 int tx_int_idx = 0;
2930 int vector, err;
2931
2932 for (vector = 0; vector < q_vectors; vector++) {
Alexander Duyck493fb302013-09-28 07:01:44 +00002933 struct i40e_q_vector *q_vector = vsi->q_vectors[vector];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002934
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00002935 if (q_vector->tx.ring && q_vector->rx.ring) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002936 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
2937 "%s-%s-%d", basename, "TxRx", rx_int_idx++);
2938 tx_int_idx++;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00002939 } else if (q_vector->rx.ring) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002940 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
2941 "%s-%s-%d", basename, "rx", rx_int_idx++);
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00002942 } else if (q_vector->tx.ring) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002943 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
2944 "%s-%s-%d", basename, "tx", tx_int_idx++);
2945 } else {
2946 /* skip this unused q_vector */
2947 continue;
2948 }
2949 err = request_irq(pf->msix_entries[base + vector].vector,
2950 vsi->irq_handler,
2951 0,
2952 q_vector->name,
2953 q_vector);
2954 if (err) {
2955 dev_info(&pf->pdev->dev,
2956 "%s: request_irq failed, error: %d\n",
2957 __func__, err);
2958 goto free_queue_irqs;
2959 }
2960 /* assign the mask for this irq */
2961 irq_set_affinity_hint(pf->msix_entries[base + vector].vector,
2962 &q_vector->affinity_mask);
2963 }
2964
Shannon Nelson63741842014-04-23 04:50:16 +00002965 vsi->irqs_ready = true;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002966 return 0;
2967
2968free_queue_irqs:
2969 while (vector) {
2970 vector--;
2971 irq_set_affinity_hint(pf->msix_entries[base + vector].vector,
2972 NULL);
2973 free_irq(pf->msix_entries[base + vector].vector,
2974 &(vsi->q_vectors[vector]));
2975 }
2976 return err;
2977}
2978
2979/**
2980 * i40e_vsi_disable_irq - Mask off queue interrupt generation on the VSI
2981 * @vsi: the VSI being un-configured
2982 **/
2983static void i40e_vsi_disable_irq(struct i40e_vsi *vsi)
2984{
2985 struct i40e_pf *pf = vsi->back;
2986 struct i40e_hw *hw = &pf->hw;
2987 int base = vsi->base_vector;
2988 int i;
2989
2990 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e152013-09-28 06:00:58 +00002991 wr32(hw, I40E_QINT_TQCTL(vsi->tx_rings[i]->reg_idx), 0);
2992 wr32(hw, I40E_QINT_RQCTL(vsi->rx_rings[i]->reg_idx), 0);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002993 }
2994
2995 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
2996 for (i = vsi->base_vector;
2997 i < (vsi->num_q_vectors + vsi->base_vector); i++)
2998 wr32(hw, I40E_PFINT_DYN_CTLN(i - 1), 0);
2999
3000 i40e_flush(hw);
3001 for (i = 0; i < vsi->num_q_vectors; i++)
3002 synchronize_irq(pf->msix_entries[i + base].vector);
3003 } else {
3004 /* Legacy and MSI mode - this stops all interrupt handling */
3005 wr32(hw, I40E_PFINT_ICR0_ENA, 0);
3006 wr32(hw, I40E_PFINT_DYN_CTL0, 0);
3007 i40e_flush(hw);
3008 synchronize_irq(pf->pdev->irq);
3009 }
3010}
3011
3012/**
3013 * i40e_vsi_enable_irq - Enable IRQ for the given VSI
3014 * @vsi: the VSI being configured
3015 **/
3016static int i40e_vsi_enable_irq(struct i40e_vsi *vsi)
3017{
3018 struct i40e_pf *pf = vsi->back;
3019 int i;
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 i40e_irq_dynamic_enable(vsi, i);
3025 } else {
3026 i40e_irq_dynamic_enable_icr0(pf);
3027 }
3028
Jesse Brandeburg1022cb62013-09-28 07:13:08 +00003029 i40e_flush(&pf->hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003030 return 0;
3031}
3032
3033/**
3034 * i40e_stop_misc_vector - Stop the vector that handles non-queue events
3035 * @pf: board private structure
3036 **/
3037static void i40e_stop_misc_vector(struct i40e_pf *pf)
3038{
3039 /* Disable ICR 0 */
3040 wr32(&pf->hw, I40E_PFINT_ICR0_ENA, 0);
3041 i40e_flush(&pf->hw);
3042}
3043
3044/**
3045 * i40e_intr - MSI/Legacy and non-queue interrupt handler
3046 * @irq: interrupt number
3047 * @data: pointer to a q_vector
3048 *
3049 * This is the handler used for all MSI/Legacy interrupts, and deals
3050 * with both queue and non-queue interrupts. This is also used in
3051 * MSIX mode to handle the non-queue interrupts.
3052 **/
3053static irqreturn_t i40e_intr(int irq, void *data)
3054{
3055 struct i40e_pf *pf = (struct i40e_pf *)data;
3056 struct i40e_hw *hw = &pf->hw;
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003057 irqreturn_t ret = IRQ_NONE;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003058 u32 icr0, icr0_remaining;
3059 u32 val, ena_mask;
3060
3061 icr0 = rd32(hw, I40E_PFINT_ICR0);
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003062 ena_mask = rd32(hw, I40E_PFINT_ICR0_ENA);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003063
Shannon Nelson116a57d2013-09-28 07:13:59 +00003064 /* if sharing a legacy IRQ, we might get called w/o an intr pending */
3065 if ((icr0 & I40E_PFINT_ICR0_INTEVENT_MASK) == 0)
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003066 goto enable_intr;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003067
Shannon Nelsoncd92e722013-11-16 10:00:44 +00003068 /* if interrupt but no bits showing, must be SWINT */
3069 if (((icr0 & ~I40E_PFINT_ICR0_INTEVENT_MASK) == 0) ||
3070 (icr0 & I40E_PFINT_ICR0_SWINT_MASK))
3071 pf->sw_int_count++;
3072
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003073 /* only q0 is used in MSI/Legacy mode, and none are used in MSIX */
3074 if (icr0 & I40E_PFINT_ICR0_QUEUE_0_MASK) {
3075
3076 /* temporarily disable queue cause for NAPI processing */
3077 u32 qval = rd32(hw, I40E_QINT_RQCTL(0));
3078 qval &= ~I40E_QINT_RQCTL_CAUSE_ENA_MASK;
3079 wr32(hw, I40E_QINT_RQCTL(0), qval);
3080
3081 qval = rd32(hw, I40E_QINT_TQCTL(0));
3082 qval &= ~I40E_QINT_TQCTL_CAUSE_ENA_MASK;
3083 wr32(hw, I40E_QINT_TQCTL(0), qval);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003084
3085 if (!test_bit(__I40E_DOWN, &pf->state))
Alexander Duyck493fb302013-09-28 07:01:44 +00003086 napi_schedule(&pf->vsi[pf->lan_vsi]->q_vectors[0]->napi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003087 }
3088
3089 if (icr0 & I40E_PFINT_ICR0_ADMINQ_MASK) {
3090 ena_mask &= ~I40E_PFINT_ICR0_ENA_ADMINQ_MASK;
3091 set_bit(__I40E_ADMINQ_EVENT_PENDING, &pf->state);
3092 }
3093
3094 if (icr0 & I40E_PFINT_ICR0_MAL_DETECT_MASK) {
3095 ena_mask &= ~I40E_PFINT_ICR0_ENA_MAL_DETECT_MASK;
3096 set_bit(__I40E_MDD_EVENT_PENDING, &pf->state);
3097 }
3098
3099 if (icr0 & I40E_PFINT_ICR0_VFLR_MASK) {
3100 ena_mask &= ~I40E_PFINT_ICR0_ENA_VFLR_MASK;
3101 set_bit(__I40E_VFLR_EVENT_PENDING, &pf->state);
3102 }
3103
3104 if (icr0 & I40E_PFINT_ICR0_GRST_MASK) {
3105 if (!test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state))
3106 set_bit(__I40E_RESET_INTR_RECEIVED, &pf->state);
3107 ena_mask &= ~I40E_PFINT_ICR0_ENA_GRST_MASK;
3108 val = rd32(hw, I40E_GLGEN_RSTAT);
3109 val = (val & I40E_GLGEN_RSTAT_RESET_TYPE_MASK)
3110 >> I40E_GLGEN_RSTAT_RESET_TYPE_SHIFT;
Shannon Nelson4eb3f762014-03-06 08:59:58 +00003111 if (val == I40E_RESET_CORER) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003112 pf->corer_count++;
Shannon Nelson4eb3f762014-03-06 08:59:58 +00003113 } else if (val == I40E_RESET_GLOBR) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003114 pf->globr_count++;
Shannon Nelson4eb3f762014-03-06 08:59:58 +00003115 } else if (val == I40E_RESET_EMPR) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003116 pf->empr_count++;
Shannon Nelson4eb3f762014-03-06 08:59:58 +00003117 set_bit(__I40E_EMP_RESET_REQUESTED, &pf->state);
3118 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003119 }
3120
Anjali Singhai Jain9c010ee2013-11-28 06:39:20 +00003121 if (icr0 & I40E_PFINT_ICR0_HMC_ERR_MASK) {
3122 icr0 &= ~I40E_PFINT_ICR0_HMC_ERR_MASK;
3123 dev_info(&pf->pdev->dev, "HMC error interrupt\n");
3124 }
3125
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00003126 if (icr0 & I40E_PFINT_ICR0_TIMESYNC_MASK) {
3127 u32 prttsyn_stat = rd32(hw, I40E_PRTTSYN_STAT_0);
3128
3129 if (prttsyn_stat & I40E_PRTTSYN_STAT_0_TXTIME_MASK) {
Jacob Kellercafa1fc2014-04-24 18:05:03 -07003130 icr0 &= ~I40E_PFINT_ICR0_ENA_TIMESYNC_MASK;
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00003131 i40e_ptp_tx_hwtstamp(pf);
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00003132 }
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00003133 }
3134
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003135 /* If a critical error is pending we have no choice but to reset the
3136 * device.
3137 * Report and mask out any remaining unexpected interrupts.
3138 */
3139 icr0_remaining = icr0 & ena_mask;
3140 if (icr0_remaining) {
3141 dev_info(&pf->pdev->dev, "unhandled interrupt icr0=0x%08x\n",
3142 icr0_remaining);
Anjali Singhai Jain9c010ee2013-11-28 06:39:20 +00003143 if ((icr0_remaining & I40E_PFINT_ICR0_PE_CRITERR_MASK) ||
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003144 (icr0_remaining & I40E_PFINT_ICR0_PCI_EXCEPTION_MASK) ||
Anjali Singhai Jainc0c28972014-02-12 01:45:34 +00003145 (icr0_remaining & I40E_PFINT_ICR0_ECC_ERR_MASK)) {
Anjali Singhai Jain9c010ee2013-11-28 06:39:20 +00003146 dev_info(&pf->pdev->dev, "device will be reset\n");
3147 set_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
3148 i40e_service_event_schedule(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003149 }
3150 ena_mask &= ~icr0_remaining;
3151 }
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003152 ret = IRQ_HANDLED;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003153
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003154enable_intr:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003155 /* re-enable interrupt causes */
3156 wr32(hw, I40E_PFINT_ICR0_ENA, ena_mask);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003157 if (!test_bit(__I40E_DOWN, &pf->state)) {
3158 i40e_service_event_schedule(pf);
3159 i40e_irq_dynamic_enable_icr0(pf);
3160 }
3161
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003162 return ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003163}
3164
3165/**
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003166 * i40e_clean_fdir_tx_irq - Reclaim resources after transmit completes
3167 * @tx_ring: tx ring to clean
3168 * @budget: how many cleans we're allowed
3169 *
3170 * Returns true if there's any budget left (e.g. the clean is finished)
3171 **/
3172static bool i40e_clean_fdir_tx_irq(struct i40e_ring *tx_ring, int budget)
3173{
3174 struct i40e_vsi *vsi = tx_ring->vsi;
3175 u16 i = tx_ring->next_to_clean;
3176 struct i40e_tx_buffer *tx_buf;
3177 struct i40e_tx_desc *tx_desc;
3178
3179 tx_buf = &tx_ring->tx_bi[i];
3180 tx_desc = I40E_TX_DESC(tx_ring, i);
3181 i -= tx_ring->count;
3182
3183 do {
3184 struct i40e_tx_desc *eop_desc = tx_buf->next_to_watch;
3185
3186 /* if next_to_watch is not set then there is no work pending */
3187 if (!eop_desc)
3188 break;
3189
3190 /* prevent any other reads prior to eop_desc */
3191 read_barrier_depends();
3192
3193 /* if the descriptor isn't done, no work yet to do */
3194 if (!(eop_desc->cmd_type_offset_bsz &
3195 cpu_to_le64(I40E_TX_DESC_DTYPE_DESC_DONE)))
3196 break;
3197
3198 /* clear next_to_watch to prevent false hangs */
3199 tx_buf->next_to_watch = NULL;
3200
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003201 tx_desc->buffer_addr = 0;
3202 tx_desc->cmd_type_offset_bsz = 0;
3203 /* move past filter desc */
3204 tx_buf++;
3205 tx_desc++;
3206 i++;
3207 if (unlikely(!i)) {
3208 i -= tx_ring->count;
3209 tx_buf = tx_ring->tx_bi;
3210 tx_desc = I40E_TX_DESC(tx_ring, 0);
3211 }
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003212 /* unmap skb header data */
3213 dma_unmap_single(tx_ring->dev,
3214 dma_unmap_addr(tx_buf, dma),
3215 dma_unmap_len(tx_buf, len),
3216 DMA_TO_DEVICE);
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003217 if (tx_buf->tx_flags & I40E_TX_FLAGS_FD_SB)
3218 kfree(tx_buf->raw_buf);
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003219
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003220 tx_buf->raw_buf = NULL;
3221 tx_buf->tx_flags = 0;
3222 tx_buf->next_to_watch = NULL;
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003223 dma_unmap_len_set(tx_buf, len, 0);
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003224 tx_desc->buffer_addr = 0;
3225 tx_desc->cmd_type_offset_bsz = 0;
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003226
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003227 /* move us past the eop_desc for start of next FD desc */
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003228 tx_buf++;
3229 tx_desc++;
3230 i++;
3231 if (unlikely(!i)) {
3232 i -= tx_ring->count;
3233 tx_buf = tx_ring->tx_bi;
3234 tx_desc = I40E_TX_DESC(tx_ring, 0);
3235 }
3236
3237 /* update budget accounting */
3238 budget--;
3239 } while (likely(budget));
3240
3241 i += tx_ring->count;
3242 tx_ring->next_to_clean = i;
3243
3244 if (vsi->back->flags & I40E_FLAG_MSIX_ENABLED) {
3245 i40e_irq_dynamic_enable(vsi,
3246 tx_ring->q_vector->v_idx + vsi->base_vector);
3247 }
3248 return budget > 0;
3249}
3250
3251/**
3252 * i40e_fdir_clean_ring - Interrupt Handler for FDIR SB ring
3253 * @irq: interrupt number
3254 * @data: pointer to a q_vector
3255 **/
3256static irqreturn_t i40e_fdir_clean_ring(int irq, void *data)
3257{
3258 struct i40e_q_vector *q_vector = data;
3259 struct i40e_vsi *vsi;
3260
3261 if (!q_vector->tx.ring)
3262 return IRQ_HANDLED;
3263
3264 vsi = q_vector->tx.ring->vsi;
3265 i40e_clean_fdir_tx_irq(q_vector->tx.ring, vsi->work_limit);
3266
3267 return IRQ_HANDLED;
3268}
3269
3270/**
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003271 * i40e_map_vector_to_qp - Assigns the queue pair to the vector
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003272 * @vsi: the VSI being configured
3273 * @v_idx: vector index
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003274 * @qp_idx: queue pair index
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003275 **/
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003276static void map_vector_to_qp(struct i40e_vsi *vsi, int v_idx, int qp_idx)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003277{
Alexander Duyck493fb302013-09-28 07:01:44 +00003278 struct i40e_q_vector *q_vector = vsi->q_vectors[v_idx];
Alexander Duyck9f65e152013-09-28 06:00:58 +00003279 struct i40e_ring *tx_ring = vsi->tx_rings[qp_idx];
3280 struct i40e_ring *rx_ring = vsi->rx_rings[qp_idx];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003281
3282 tx_ring->q_vector = q_vector;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003283 tx_ring->next = q_vector->tx.ring;
3284 q_vector->tx.ring = tx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003285 q_vector->tx.count++;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003286
3287 rx_ring->q_vector = q_vector;
3288 rx_ring->next = q_vector->rx.ring;
3289 q_vector->rx.ring = rx_ring;
3290 q_vector->rx.count++;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003291}
3292
3293/**
3294 * i40e_vsi_map_rings_to_vectors - Maps descriptor rings to vectors
3295 * @vsi: the VSI being configured
3296 *
3297 * This function maps descriptor rings to the queue-specific vectors
3298 * we were allotted through the MSI-X enabling code. Ideally, we'd have
3299 * one vector per queue pair, but on a constrained vector budget, we
3300 * group the queue pairs as "efficiently" as possible.
3301 **/
3302static void i40e_vsi_map_rings_to_vectors(struct i40e_vsi *vsi)
3303{
3304 int qp_remaining = vsi->num_queue_pairs;
3305 int q_vectors = vsi->num_q_vectors;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003306 int num_ringpairs;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003307 int v_start = 0;
3308 int qp_idx = 0;
3309
3310 /* If we don't have enough vectors for a 1-to-1 mapping, we'll have to
3311 * group them so there are multiple queues per vector.
Anjali Singhai Jain70114ec2014-06-03 23:50:14 +00003312 * It is also important to go through all the vectors available to be
3313 * sure that if we don't use all the vectors, that the remaining vectors
3314 * are cleared. This is especially important when decreasing the
3315 * number of queues in use.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003316 */
Anjali Singhai Jain70114ec2014-06-03 23:50:14 +00003317 for (; v_start < q_vectors; v_start++) {
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003318 struct i40e_q_vector *q_vector = vsi->q_vectors[v_start];
3319
3320 num_ringpairs = DIV_ROUND_UP(qp_remaining, q_vectors - v_start);
3321
3322 q_vector->num_ringpairs = num_ringpairs;
3323
3324 q_vector->rx.count = 0;
3325 q_vector->tx.count = 0;
3326 q_vector->rx.ring = NULL;
3327 q_vector->tx.ring = NULL;
3328
3329 while (num_ringpairs--) {
3330 map_vector_to_qp(vsi, v_start, qp_idx);
3331 qp_idx++;
3332 qp_remaining--;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003333 }
3334 }
3335}
3336
3337/**
3338 * i40e_vsi_request_irq - Request IRQ from the OS
3339 * @vsi: the VSI being configured
3340 * @basename: name for the vector
3341 **/
3342static int i40e_vsi_request_irq(struct i40e_vsi *vsi, char *basename)
3343{
3344 struct i40e_pf *pf = vsi->back;
3345 int err;
3346
3347 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
3348 err = i40e_vsi_request_irq_msix(vsi, basename);
3349 else if (pf->flags & I40E_FLAG_MSI_ENABLED)
3350 err = request_irq(pf->pdev->irq, i40e_intr, 0,
3351 pf->misc_int_name, pf);
3352 else
3353 err = request_irq(pf->pdev->irq, i40e_intr, IRQF_SHARED,
3354 pf->misc_int_name, pf);
3355
3356 if (err)
3357 dev_info(&pf->pdev->dev, "request_irq failed, Error %d\n", err);
3358
3359 return err;
3360}
3361
3362#ifdef CONFIG_NET_POLL_CONTROLLER
3363/**
3364 * i40e_netpoll - A Polling 'interrupt'handler
3365 * @netdev: network interface device structure
3366 *
3367 * This is used by netconsole to send skbs without having to re-enable
3368 * interrupts. It's not called while the normal interrupt routine is executing.
3369 **/
Vasu Dev38e00432014-08-01 13:27:03 -07003370#ifdef I40E_FCOE
3371void i40e_netpoll(struct net_device *netdev)
3372#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003373static void i40e_netpoll(struct net_device *netdev)
Vasu Dev38e00432014-08-01 13:27:03 -07003374#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003375{
3376 struct i40e_netdev_priv *np = netdev_priv(netdev);
3377 struct i40e_vsi *vsi = np->vsi;
3378 struct i40e_pf *pf = vsi->back;
3379 int i;
3380
3381 /* if interface is down do nothing */
3382 if (test_bit(__I40E_DOWN, &vsi->state))
3383 return;
3384
3385 pf->flags |= I40E_FLAG_IN_NETPOLL;
3386 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
3387 for (i = 0; i < vsi->num_q_vectors; i++)
Alexander Duyck493fb302013-09-28 07:01:44 +00003388 i40e_msix_clean_rings(0, vsi->q_vectors[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003389 } else {
3390 i40e_intr(pf->pdev->irq, netdev);
3391 }
3392 pf->flags &= ~I40E_FLAG_IN_NETPOLL;
3393}
3394#endif
3395
3396/**
Neerav Parikh23527302014-06-03 23:50:15 +00003397 * i40e_pf_txq_wait - Wait for a PF's Tx queue to be enabled or disabled
3398 * @pf: the PF being configured
3399 * @pf_q: the PF queue
3400 * @enable: enable or disable state of the queue
3401 *
3402 * This routine will wait for the given Tx queue of the PF to reach the
3403 * enabled or disabled state.
3404 * Returns -ETIMEDOUT in case of failing to reach the requested state after
3405 * multiple retries; else will return 0 in case of success.
3406 **/
3407static int i40e_pf_txq_wait(struct i40e_pf *pf, int pf_q, bool enable)
3408{
3409 int i;
3410 u32 tx_reg;
3411
3412 for (i = 0; i < I40E_QUEUE_WAIT_RETRY_LIMIT; i++) {
3413 tx_reg = rd32(&pf->hw, I40E_QTX_ENA(pf_q));
3414 if (enable == !!(tx_reg & I40E_QTX_ENA_QENA_STAT_MASK))
3415 break;
3416
3417 udelay(10);
3418 }
3419 if (i >= I40E_QUEUE_WAIT_RETRY_LIMIT)
3420 return -ETIMEDOUT;
3421
3422 return 0;
3423}
3424
3425/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003426 * i40e_vsi_control_tx - Start or stop a VSI's rings
3427 * @vsi: the VSI being configured
3428 * @enable: start or stop the rings
3429 **/
3430static int i40e_vsi_control_tx(struct i40e_vsi *vsi, bool enable)
3431{
3432 struct i40e_pf *pf = vsi->back;
3433 struct i40e_hw *hw = &pf->hw;
Neerav Parikh23527302014-06-03 23:50:15 +00003434 int i, j, pf_q, ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003435 u32 tx_reg;
3436
3437 pf_q = vsi->base_queue;
3438 for (i = 0; i < vsi->num_queue_pairs; i++, pf_q++) {
Matt Jared351499ab2014-04-23 04:50:03 +00003439
3440 /* warn the TX unit of coming changes */
3441 i40e_pre_tx_queue_cfg(&pf->hw, pf_q, enable);
3442 if (!enable)
3443 udelay(10);
3444
Mitch Williams6c5ef622014-02-20 19:29:16 -08003445 for (j = 0; j < 50; j++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003446 tx_reg = rd32(hw, I40E_QTX_ENA(pf_q));
Mitch Williams6c5ef622014-02-20 19:29:16 -08003447 if (((tx_reg >> I40E_QTX_ENA_QENA_REQ_SHIFT) & 1) ==
3448 ((tx_reg >> I40E_QTX_ENA_QENA_STAT_SHIFT) & 1))
3449 break;
3450 usleep_range(1000, 2000);
3451 }
Mitch Williamsfda972f2013-11-28 06:39:29 +00003452 /* Skip if the queue is already in the requested state */
Catherine Sullivan7c122002014-03-14 07:32:29 +00003453 if (enable == !!(tx_reg & I40E_QTX_ENA_QENA_STAT_MASK))
Mitch Williamsfda972f2013-11-28 06:39:29 +00003454 continue;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003455
3456 /* turn on/off the queue */
Shannon Nelsonc5c9eb92013-12-21 05:44:48 +00003457 if (enable) {
3458 wr32(hw, I40E_QTX_HEAD(pf_q), 0);
Mitch Williams6c5ef622014-02-20 19:29:16 -08003459 tx_reg |= I40E_QTX_ENA_QENA_REQ_MASK;
Shannon Nelsonc5c9eb92013-12-21 05:44:48 +00003460 } else {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003461 tx_reg &= ~I40E_QTX_ENA_QENA_REQ_MASK;
Shannon Nelsonc5c9eb92013-12-21 05:44:48 +00003462 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003463
3464 wr32(hw, I40E_QTX_ENA(pf_q), tx_reg);
3465
3466 /* wait for the change to finish */
Neerav Parikh23527302014-06-03 23:50:15 +00003467 ret = i40e_pf_txq_wait(pf, pf_q, enable);
3468 if (ret) {
3469 dev_info(&pf->pdev->dev,
3470 "%s: VSI seid %d Tx ring %d %sable timeout\n",
3471 __func__, vsi->seid, pf_q,
3472 (enable ? "en" : "dis"));
3473 break;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003474 }
3475 }
3476
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00003477 if (hw->revision_id == 0)
3478 mdelay(50);
Neerav Parikh23527302014-06-03 23:50:15 +00003479 return ret;
3480}
3481
3482/**
3483 * i40e_pf_rxq_wait - Wait for a PF's Rx queue to be enabled or disabled
3484 * @pf: the PF being configured
3485 * @pf_q: the PF queue
3486 * @enable: enable or disable state of the queue
3487 *
3488 * This routine will wait for the given Rx queue of the PF to reach the
3489 * enabled or disabled state.
3490 * Returns -ETIMEDOUT in case of failing to reach the requested state after
3491 * multiple retries; else will return 0 in case of success.
3492 **/
3493static int i40e_pf_rxq_wait(struct i40e_pf *pf, int pf_q, bool enable)
3494{
3495 int i;
3496 u32 rx_reg;
3497
3498 for (i = 0; i < I40E_QUEUE_WAIT_RETRY_LIMIT; i++) {
3499 rx_reg = rd32(&pf->hw, I40E_QRX_ENA(pf_q));
3500 if (enable == !!(rx_reg & I40E_QRX_ENA_QENA_STAT_MASK))
3501 break;
3502
3503 udelay(10);
3504 }
3505 if (i >= I40E_QUEUE_WAIT_RETRY_LIMIT)
3506 return -ETIMEDOUT;
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00003507
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003508 return 0;
3509}
3510
3511/**
3512 * i40e_vsi_control_rx - Start or stop a VSI's rings
3513 * @vsi: the VSI being configured
3514 * @enable: start or stop the rings
3515 **/
3516static int i40e_vsi_control_rx(struct i40e_vsi *vsi, bool enable)
3517{
3518 struct i40e_pf *pf = vsi->back;
3519 struct i40e_hw *hw = &pf->hw;
Neerav Parikh23527302014-06-03 23:50:15 +00003520 int i, j, pf_q, ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003521 u32 rx_reg;
3522
3523 pf_q = vsi->base_queue;
3524 for (i = 0; i < vsi->num_queue_pairs; i++, pf_q++) {
Mitch Williams6c5ef622014-02-20 19:29:16 -08003525 for (j = 0; j < 50; j++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003526 rx_reg = rd32(hw, I40E_QRX_ENA(pf_q));
Mitch Williams6c5ef622014-02-20 19:29:16 -08003527 if (((rx_reg >> I40E_QRX_ENA_QENA_REQ_SHIFT) & 1) ==
3528 ((rx_reg >> I40E_QRX_ENA_QENA_STAT_SHIFT) & 1))
3529 break;
3530 usleep_range(1000, 2000);
3531 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003532
Catherine Sullivan7c122002014-03-14 07:32:29 +00003533 /* Skip if the queue is already in the requested state */
3534 if (enable == !!(rx_reg & I40E_QRX_ENA_QENA_STAT_MASK))
3535 continue;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003536
3537 /* turn on/off the queue */
3538 if (enable)
Mitch Williams6c5ef622014-02-20 19:29:16 -08003539 rx_reg |= I40E_QRX_ENA_QENA_REQ_MASK;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003540 else
Mitch Williams6c5ef622014-02-20 19:29:16 -08003541 rx_reg &= ~I40E_QRX_ENA_QENA_REQ_MASK;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003542 wr32(hw, I40E_QRX_ENA(pf_q), rx_reg);
3543
3544 /* wait for the change to finish */
Neerav Parikh23527302014-06-03 23:50:15 +00003545 ret = i40e_pf_rxq_wait(pf, pf_q, enable);
3546 if (ret) {
3547 dev_info(&pf->pdev->dev,
3548 "%s: VSI seid %d Rx ring %d %sable timeout\n",
3549 __func__, vsi->seid, pf_q,
3550 (enable ? "en" : "dis"));
3551 break;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003552 }
3553 }
3554
Neerav Parikh23527302014-06-03 23:50:15 +00003555 return ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003556}
3557
3558/**
3559 * i40e_vsi_control_rings - Start or stop a VSI's rings
3560 * @vsi: the VSI being configured
3561 * @enable: start or stop the rings
3562 **/
Mitch Williamsfc18eaa2013-11-28 06:39:27 +00003563int i40e_vsi_control_rings(struct i40e_vsi *vsi, bool request)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003564{
Anjali Singhai Jain3b867b22013-12-21 05:44:44 +00003565 int ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003566
3567 /* do rx first for enable and last for disable */
3568 if (request) {
3569 ret = i40e_vsi_control_rx(vsi, request);
3570 if (ret)
3571 return ret;
3572 ret = i40e_vsi_control_tx(vsi, request);
3573 } else {
Anjali Singhai Jain3b867b22013-12-21 05:44:44 +00003574 /* Ignore return value, we need to shutdown whatever we can */
3575 i40e_vsi_control_tx(vsi, request);
3576 i40e_vsi_control_rx(vsi, request);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003577 }
3578
3579 return ret;
3580}
3581
3582/**
3583 * i40e_vsi_free_irq - Free the irq association with the OS
3584 * @vsi: the VSI being configured
3585 **/
3586static void i40e_vsi_free_irq(struct i40e_vsi *vsi)
3587{
3588 struct i40e_pf *pf = vsi->back;
3589 struct i40e_hw *hw = &pf->hw;
3590 int base = vsi->base_vector;
3591 u32 val, qp;
3592 int i;
3593
3594 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
3595 if (!vsi->q_vectors)
3596 return;
3597
Shannon Nelson63741842014-04-23 04:50:16 +00003598 if (!vsi->irqs_ready)
3599 return;
3600
3601 vsi->irqs_ready = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003602 for (i = 0; i < vsi->num_q_vectors; i++) {
3603 u16 vector = i + base;
3604
3605 /* free only the irqs that were actually requested */
Shannon Nelson78681b12013-11-28 06:39:36 +00003606 if (!vsi->q_vectors[i] ||
3607 !vsi->q_vectors[i]->num_ringpairs)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003608 continue;
3609
3610 /* clear the affinity_mask in the IRQ descriptor */
3611 irq_set_affinity_hint(pf->msix_entries[vector].vector,
3612 NULL);
3613 free_irq(pf->msix_entries[vector].vector,
Alexander Duyck493fb302013-09-28 07:01:44 +00003614 vsi->q_vectors[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003615
3616 /* Tear down the interrupt queue link list
3617 *
3618 * We know that they come in pairs and always
3619 * the Rx first, then the Tx. To clear the
3620 * link list, stick the EOL value into the
3621 * next_q field of the registers.
3622 */
3623 val = rd32(hw, I40E_PFINT_LNKLSTN(vector - 1));
3624 qp = (val & I40E_PFINT_LNKLSTN_FIRSTQ_INDX_MASK)
3625 >> I40E_PFINT_LNKLSTN_FIRSTQ_INDX_SHIFT;
3626 val |= I40E_QUEUE_END_OF_LIST
3627 << I40E_PFINT_LNKLSTN_FIRSTQ_INDX_SHIFT;
3628 wr32(hw, I40E_PFINT_LNKLSTN(vector - 1), val);
3629
3630 while (qp != I40E_QUEUE_END_OF_LIST) {
3631 u32 next;
3632
3633 val = rd32(hw, I40E_QINT_RQCTL(qp));
3634
3635 val &= ~(I40E_QINT_RQCTL_MSIX_INDX_MASK |
3636 I40E_QINT_RQCTL_MSIX0_INDX_MASK |
3637 I40E_QINT_RQCTL_CAUSE_ENA_MASK |
3638 I40E_QINT_RQCTL_INTEVENT_MASK);
3639
3640 val |= (I40E_QINT_RQCTL_ITR_INDX_MASK |
3641 I40E_QINT_RQCTL_NEXTQ_INDX_MASK);
3642
3643 wr32(hw, I40E_QINT_RQCTL(qp), val);
3644
3645 val = rd32(hw, I40E_QINT_TQCTL(qp));
3646
3647 next = (val & I40E_QINT_TQCTL_NEXTQ_INDX_MASK)
3648 >> I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT;
3649
3650 val &= ~(I40E_QINT_TQCTL_MSIX_INDX_MASK |
3651 I40E_QINT_TQCTL_MSIX0_INDX_MASK |
3652 I40E_QINT_TQCTL_CAUSE_ENA_MASK |
3653 I40E_QINT_TQCTL_INTEVENT_MASK);
3654
3655 val |= (I40E_QINT_TQCTL_ITR_INDX_MASK |
3656 I40E_QINT_TQCTL_NEXTQ_INDX_MASK);
3657
3658 wr32(hw, I40E_QINT_TQCTL(qp), val);
3659 qp = next;
3660 }
3661 }
3662 } else {
3663 free_irq(pf->pdev->irq, pf);
3664
3665 val = rd32(hw, I40E_PFINT_LNKLST0);
3666 qp = (val & I40E_PFINT_LNKLSTN_FIRSTQ_INDX_MASK)
3667 >> I40E_PFINT_LNKLSTN_FIRSTQ_INDX_SHIFT;
3668 val |= I40E_QUEUE_END_OF_LIST
3669 << I40E_PFINT_LNKLST0_FIRSTQ_INDX_SHIFT;
3670 wr32(hw, I40E_PFINT_LNKLST0, val);
3671
3672 val = rd32(hw, I40E_QINT_RQCTL(qp));
3673 val &= ~(I40E_QINT_RQCTL_MSIX_INDX_MASK |
3674 I40E_QINT_RQCTL_MSIX0_INDX_MASK |
3675 I40E_QINT_RQCTL_CAUSE_ENA_MASK |
3676 I40E_QINT_RQCTL_INTEVENT_MASK);
3677
3678 val |= (I40E_QINT_RQCTL_ITR_INDX_MASK |
3679 I40E_QINT_RQCTL_NEXTQ_INDX_MASK);
3680
3681 wr32(hw, I40E_QINT_RQCTL(qp), val);
3682
3683 val = rd32(hw, I40E_QINT_TQCTL(qp));
3684
3685 val &= ~(I40E_QINT_TQCTL_MSIX_INDX_MASK |
3686 I40E_QINT_TQCTL_MSIX0_INDX_MASK |
3687 I40E_QINT_TQCTL_CAUSE_ENA_MASK |
3688 I40E_QINT_TQCTL_INTEVENT_MASK);
3689
3690 val |= (I40E_QINT_TQCTL_ITR_INDX_MASK |
3691 I40E_QINT_TQCTL_NEXTQ_INDX_MASK);
3692
3693 wr32(hw, I40E_QINT_TQCTL(qp), val);
3694 }
3695}
3696
3697/**
Alexander Duyck493fb302013-09-28 07:01:44 +00003698 * i40e_free_q_vector - Free memory allocated for specific interrupt vector
3699 * @vsi: the VSI being configured
3700 * @v_idx: Index of vector to be freed
3701 *
3702 * This function frees the memory allocated to the q_vector. In addition if
3703 * NAPI is enabled it will delete any references to the NAPI struct prior
3704 * to freeing the q_vector.
3705 **/
3706static void i40e_free_q_vector(struct i40e_vsi *vsi, int v_idx)
3707{
3708 struct i40e_q_vector *q_vector = vsi->q_vectors[v_idx];
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003709 struct i40e_ring *ring;
Alexander Duyck493fb302013-09-28 07:01:44 +00003710
3711 if (!q_vector)
3712 return;
3713
3714 /* disassociate q_vector from rings */
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003715 i40e_for_each_ring(ring, q_vector->tx)
3716 ring->q_vector = NULL;
3717
3718 i40e_for_each_ring(ring, q_vector->rx)
3719 ring->q_vector = NULL;
Alexander Duyck493fb302013-09-28 07:01:44 +00003720
3721 /* only VSI w/ an associated netdev is set up w/ NAPI */
3722 if (vsi->netdev)
3723 netif_napi_del(&q_vector->napi);
3724
3725 vsi->q_vectors[v_idx] = NULL;
3726
3727 kfree_rcu(q_vector, rcu);
3728}
3729
3730/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003731 * i40e_vsi_free_q_vectors - Free memory allocated for interrupt vectors
3732 * @vsi: the VSI being un-configured
3733 *
3734 * This frees the memory allocated to the q_vectors and
3735 * deletes references to the NAPI struct.
3736 **/
3737static void i40e_vsi_free_q_vectors(struct i40e_vsi *vsi)
3738{
3739 int v_idx;
3740
Alexander Duyck493fb302013-09-28 07:01:44 +00003741 for (v_idx = 0; v_idx < vsi->num_q_vectors; v_idx++)
3742 i40e_free_q_vector(vsi, v_idx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003743}
3744
3745/**
3746 * i40e_reset_interrupt_capability - Disable interrupt setup in OS
3747 * @pf: board private structure
3748 **/
3749static void i40e_reset_interrupt_capability(struct i40e_pf *pf)
3750{
3751 /* If we're in Legacy mode, the interrupt was cleaned in vsi_close */
3752 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
3753 pci_disable_msix(pf->pdev);
3754 kfree(pf->msix_entries);
3755 pf->msix_entries = NULL;
3756 } else if (pf->flags & I40E_FLAG_MSI_ENABLED) {
3757 pci_disable_msi(pf->pdev);
3758 }
3759 pf->flags &= ~(I40E_FLAG_MSIX_ENABLED | I40E_FLAG_MSI_ENABLED);
3760}
3761
3762/**
3763 * i40e_clear_interrupt_scheme - Clear the current interrupt scheme settings
3764 * @pf: board private structure
3765 *
3766 * We go through and clear interrupt specific resources and reset the structure
3767 * to pre-load conditions
3768 **/
3769static void i40e_clear_interrupt_scheme(struct i40e_pf *pf)
3770{
3771 int i;
3772
3773 i40e_put_lump(pf->irq_pile, 0, I40E_PILE_VALID_BIT-1);
Mitch Williams505682c2014-05-20 08:01:37 +00003774 for (i = 0; i < pf->num_alloc_vsi; i++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003775 if (pf->vsi[i])
3776 i40e_vsi_free_q_vectors(pf->vsi[i]);
3777 i40e_reset_interrupt_capability(pf);
3778}
3779
3780/**
3781 * i40e_napi_enable_all - Enable NAPI for all q_vectors in the VSI
3782 * @vsi: the VSI being configured
3783 **/
3784static void i40e_napi_enable_all(struct i40e_vsi *vsi)
3785{
3786 int q_idx;
3787
3788 if (!vsi->netdev)
3789 return;
3790
3791 for (q_idx = 0; q_idx < vsi->num_q_vectors; q_idx++)
Alexander Duyck493fb302013-09-28 07:01:44 +00003792 napi_enable(&vsi->q_vectors[q_idx]->napi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003793}
3794
3795/**
3796 * i40e_napi_disable_all - Disable NAPI for all q_vectors in the VSI
3797 * @vsi: the VSI being configured
3798 **/
3799static void i40e_napi_disable_all(struct i40e_vsi *vsi)
3800{
3801 int q_idx;
3802
3803 if (!vsi->netdev)
3804 return;
3805
3806 for (q_idx = 0; q_idx < vsi->num_q_vectors; q_idx++)
Alexander Duyck493fb302013-09-28 07:01:44 +00003807 napi_disable(&vsi->q_vectors[q_idx]->napi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003808}
3809
3810/**
Shannon Nelson90ef8d42014-03-14 07:32:26 +00003811 * i40e_vsi_close - Shut down a VSI
3812 * @vsi: the vsi to be quelled
3813 **/
3814static void i40e_vsi_close(struct i40e_vsi *vsi)
3815{
3816 if (!test_and_set_bit(__I40E_DOWN, &vsi->state))
3817 i40e_down(vsi);
3818 i40e_vsi_free_irq(vsi);
3819 i40e_vsi_free_tx_resources(vsi);
3820 i40e_vsi_free_rx_resources(vsi);
3821}
3822
3823/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003824 * i40e_quiesce_vsi - Pause a given VSI
3825 * @vsi: the VSI being paused
3826 **/
3827static void i40e_quiesce_vsi(struct i40e_vsi *vsi)
3828{
3829 if (test_bit(__I40E_DOWN, &vsi->state))
3830 return;
3831
3832 set_bit(__I40E_NEEDS_RESTART, &vsi->state);
3833 if (vsi->netdev && netif_running(vsi->netdev)) {
3834 vsi->netdev->netdev_ops->ndo_stop(vsi->netdev);
3835 } else {
Shannon Nelson90ef8d42014-03-14 07:32:26 +00003836 i40e_vsi_close(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003837 }
3838}
3839
3840/**
3841 * i40e_unquiesce_vsi - Resume a given VSI
3842 * @vsi: the VSI being resumed
3843 **/
3844static void i40e_unquiesce_vsi(struct i40e_vsi *vsi)
3845{
3846 if (!test_bit(__I40E_NEEDS_RESTART, &vsi->state))
3847 return;
3848
3849 clear_bit(__I40E_NEEDS_RESTART, &vsi->state);
3850 if (vsi->netdev && netif_running(vsi->netdev))
3851 vsi->netdev->netdev_ops->ndo_open(vsi->netdev);
3852 else
Shannon Nelson8276f752014-03-14 07:32:27 +00003853 i40e_vsi_open(vsi); /* this clears the DOWN bit */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003854}
3855
3856/**
3857 * i40e_pf_quiesce_all_vsi - Pause all VSIs on a PF
3858 * @pf: the PF
3859 **/
3860static void i40e_pf_quiesce_all_vsi(struct i40e_pf *pf)
3861{
3862 int v;
3863
Mitch Williams505682c2014-05-20 08:01:37 +00003864 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003865 if (pf->vsi[v])
3866 i40e_quiesce_vsi(pf->vsi[v]);
3867 }
3868}
3869
3870/**
3871 * i40e_pf_unquiesce_all_vsi - Resume all VSIs on a PF
3872 * @pf: the PF
3873 **/
3874static void i40e_pf_unquiesce_all_vsi(struct i40e_pf *pf)
3875{
3876 int v;
3877
Mitch Williams505682c2014-05-20 08:01:37 +00003878 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003879 if (pf->vsi[v])
3880 i40e_unquiesce_vsi(pf->vsi[v]);
3881 }
3882}
3883
3884/**
3885 * i40e_dcb_get_num_tc - Get the number of TCs from DCBx config
3886 * @dcbcfg: the corresponding DCBx configuration structure
3887 *
3888 * Return the number of TCs from given DCBx configuration
3889 **/
3890static u8 i40e_dcb_get_num_tc(struct i40e_dcbx_config *dcbcfg)
3891{
Jesse Brandeburg078b5872013-09-25 23:41:14 +00003892 u8 num_tc = 0;
3893 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003894
3895 /* Scan the ETS Config Priority Table to find
3896 * traffic class enabled for a given priority
3897 * and use the traffic class index to get the
3898 * number of traffic classes enabled
3899 */
3900 for (i = 0; i < I40E_MAX_USER_PRIORITY; i++) {
3901 if (dcbcfg->etscfg.prioritytable[i] > num_tc)
3902 num_tc = dcbcfg->etscfg.prioritytable[i];
3903 }
3904
3905 /* Traffic class index starts from zero so
3906 * increment to return the actual count
3907 */
Jesse Brandeburg078b5872013-09-25 23:41:14 +00003908 return num_tc + 1;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003909}
3910
3911/**
3912 * i40e_dcb_get_enabled_tc - Get enabled traffic classes
3913 * @dcbcfg: the corresponding DCBx configuration structure
3914 *
3915 * Query the current DCB configuration and return the number of
3916 * traffic classes enabled from the given DCBX config
3917 **/
3918static u8 i40e_dcb_get_enabled_tc(struct i40e_dcbx_config *dcbcfg)
3919{
3920 u8 num_tc = i40e_dcb_get_num_tc(dcbcfg);
3921 u8 enabled_tc = 1;
3922 u8 i;
3923
3924 for (i = 0; i < num_tc; i++)
3925 enabled_tc |= 1 << i;
3926
3927 return enabled_tc;
3928}
3929
3930/**
3931 * i40e_pf_get_num_tc - Get enabled traffic classes for PF
3932 * @pf: PF being queried
3933 *
3934 * Return number of traffic classes enabled for the given PF
3935 **/
3936static u8 i40e_pf_get_num_tc(struct i40e_pf *pf)
3937{
3938 struct i40e_hw *hw = &pf->hw;
3939 u8 i, enabled_tc;
3940 u8 num_tc = 0;
3941 struct i40e_dcbx_config *dcbcfg = &hw->local_dcbx_config;
3942
3943 /* If DCB is not enabled then always in single TC */
3944 if (!(pf->flags & I40E_FLAG_DCB_ENABLED))
3945 return 1;
3946
3947 /* MFP mode return count of enabled TCs for this PF */
3948 if (pf->flags & I40E_FLAG_MFP_ENABLED) {
3949 enabled_tc = pf->hw.func_caps.enabled_tcmap;
3950 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
3951 if (enabled_tc & (1 << i))
3952 num_tc++;
3953 }
3954 return num_tc;
3955 }
3956
3957 /* SFP mode will be enabled for all TCs on port */
3958 return i40e_dcb_get_num_tc(dcbcfg);
3959}
3960
3961/**
3962 * i40e_pf_get_default_tc - Get bitmap for first enabled TC
3963 * @pf: PF being queried
3964 *
3965 * Return a bitmap for first enabled traffic class for this PF.
3966 **/
3967static u8 i40e_pf_get_default_tc(struct i40e_pf *pf)
3968{
3969 u8 enabled_tc = pf->hw.func_caps.enabled_tcmap;
3970 u8 i = 0;
3971
3972 if (!enabled_tc)
3973 return 0x1; /* TC0 */
3974
3975 /* Find the first enabled TC */
3976 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
3977 if (enabled_tc & (1 << i))
3978 break;
3979 }
3980
3981 return 1 << i;
3982}
3983
3984/**
3985 * i40e_pf_get_pf_tc_map - Get bitmap for enabled traffic classes
3986 * @pf: PF being queried
3987 *
3988 * Return a bitmap for enabled traffic classes for this PF.
3989 **/
3990static u8 i40e_pf_get_tc_map(struct i40e_pf *pf)
3991{
3992 /* If DCB is not enabled for this PF then just return default TC */
3993 if (!(pf->flags & I40E_FLAG_DCB_ENABLED))
3994 return i40e_pf_get_default_tc(pf);
3995
3996 /* MFP mode will have enabled TCs set by FW */
3997 if (pf->flags & I40E_FLAG_MFP_ENABLED)
3998 return pf->hw.func_caps.enabled_tcmap;
3999
4000 /* SFP mode we want PF to be enabled for all TCs */
4001 return i40e_dcb_get_enabled_tc(&pf->hw.local_dcbx_config);
4002}
4003
4004/**
4005 * i40e_vsi_get_bw_info - Query VSI BW Information
4006 * @vsi: the VSI being queried
4007 *
4008 * Returns 0 on success, negative value on failure
4009 **/
4010static int i40e_vsi_get_bw_info(struct i40e_vsi *vsi)
4011{
4012 struct i40e_aqc_query_vsi_ets_sla_config_resp bw_ets_config = {0};
4013 struct i40e_aqc_query_vsi_bw_config_resp bw_config = {0};
4014 struct i40e_pf *pf = vsi->back;
4015 struct i40e_hw *hw = &pf->hw;
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004016 i40e_status aq_ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004017 u32 tc_bw_max;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004018 int i;
4019
4020 /* Get the VSI level BW configuration */
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004021 aq_ret = i40e_aq_query_vsi_bw_config(hw, vsi->seid, &bw_config, NULL);
4022 if (aq_ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004023 dev_info(&pf->pdev->dev,
4024 "couldn't get pf vsi bw config, err %d, aq_err %d\n",
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004025 aq_ret, pf->hw.aq.asq_last_status);
4026 return -EINVAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004027 }
4028
4029 /* Get the VSI level BW configuration per TC */
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004030 aq_ret = i40e_aq_query_vsi_ets_sla_config(hw, vsi->seid, &bw_ets_config,
Jesse Brandeburg6838b532014-01-14 00:49:52 -08004031 NULL);
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004032 if (aq_ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004033 dev_info(&pf->pdev->dev,
4034 "couldn't get pf vsi ets bw config, err %d, aq_err %d\n",
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004035 aq_ret, pf->hw.aq.asq_last_status);
4036 return -EINVAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004037 }
4038
4039 if (bw_config.tc_valid_bits != bw_ets_config.tc_valid_bits) {
4040 dev_info(&pf->pdev->dev,
4041 "Enabled TCs mismatch from querying VSI BW info 0x%08x 0x%08x\n",
4042 bw_config.tc_valid_bits,
4043 bw_ets_config.tc_valid_bits);
4044 /* Still continuing */
4045 }
4046
4047 vsi->bw_limit = le16_to_cpu(bw_config.port_bw_limit);
4048 vsi->bw_max_quanta = bw_config.max_bw;
4049 tc_bw_max = le16_to_cpu(bw_ets_config.tc_bw_max[0]) |
4050 (le16_to_cpu(bw_ets_config.tc_bw_max[1]) << 16);
4051 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
4052 vsi->bw_ets_share_credits[i] = bw_ets_config.share_credits[i];
4053 vsi->bw_ets_limit_credits[i] =
4054 le16_to_cpu(bw_ets_config.credits[i]);
4055 /* 3 bits out of 4 for each TC */
4056 vsi->bw_ets_max_quanta[i] = (u8)((tc_bw_max >> (i*4)) & 0x7);
4057 }
Jesse Brandeburg078b5872013-09-25 23:41:14 +00004058
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004059 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004060}
4061
4062/**
4063 * i40e_vsi_configure_bw_alloc - Configure VSI BW allocation per TC
4064 * @vsi: the VSI being configured
4065 * @enabled_tc: TC bitmap
4066 * @bw_credits: BW shared credits per TC
4067 *
4068 * Returns 0 on success, negative value on failure
4069 **/
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004070static int i40e_vsi_configure_bw_alloc(struct i40e_vsi *vsi, u8 enabled_tc,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004071 u8 *bw_share)
4072{
4073 struct i40e_aqc_configure_vsi_tc_bw_data bw_data;
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004074 i40e_status aq_ret;
4075 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004076
4077 bw_data.tc_valid_bits = enabled_tc;
4078 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++)
4079 bw_data.tc_bw_credits[i] = bw_share[i];
4080
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004081 aq_ret = i40e_aq_config_vsi_tc_bw(&vsi->back->hw, vsi->seid, &bw_data,
4082 NULL);
4083 if (aq_ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004084 dev_info(&vsi->back->pdev->dev,
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00004085 "AQ command Config VSI BW allocation per TC failed = %d\n",
4086 vsi->back->hw.aq.asq_last_status);
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004087 return -EINVAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004088 }
4089
4090 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++)
4091 vsi->info.qs_handle[i] = bw_data.qs_handles[i];
4092
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004093 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004094}
4095
4096/**
4097 * i40e_vsi_config_netdev_tc - Setup the netdev TC configuration
4098 * @vsi: the VSI being configured
4099 * @enabled_tc: TC map to be enabled
4100 *
4101 **/
4102static void i40e_vsi_config_netdev_tc(struct i40e_vsi *vsi, u8 enabled_tc)
4103{
4104 struct net_device *netdev = vsi->netdev;
4105 struct i40e_pf *pf = vsi->back;
4106 struct i40e_hw *hw = &pf->hw;
4107 u8 netdev_tc = 0;
4108 int i;
4109 struct i40e_dcbx_config *dcbcfg = &hw->local_dcbx_config;
4110
4111 if (!netdev)
4112 return;
4113
4114 if (!enabled_tc) {
4115 netdev_reset_tc(netdev);
4116 return;
4117 }
4118
4119 /* Set up actual enabled TCs on the VSI */
4120 if (netdev_set_num_tc(netdev, vsi->tc_config.numtc))
4121 return;
4122
4123 /* set per TC queues for the VSI */
4124 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
4125 /* Only set TC queues for enabled tcs
4126 *
4127 * e.g. For a VSI that has TC0 and TC3 enabled the
4128 * enabled_tc bitmap would be 0x00001001; the driver
4129 * will set the numtc for netdev as 2 that will be
4130 * referenced by the netdev layer as TC 0 and 1.
4131 */
4132 if (vsi->tc_config.enabled_tc & (1 << i))
4133 netdev_set_tc_queue(netdev,
4134 vsi->tc_config.tc_info[i].netdev_tc,
4135 vsi->tc_config.tc_info[i].qcount,
4136 vsi->tc_config.tc_info[i].qoffset);
4137 }
4138
4139 /* Assign UP2TC map for the VSI */
4140 for (i = 0; i < I40E_MAX_USER_PRIORITY; i++) {
4141 /* Get the actual TC# for the UP */
4142 u8 ets_tc = dcbcfg->etscfg.prioritytable[i];
4143 /* Get the mapped netdev TC# for the UP */
4144 netdev_tc = vsi->tc_config.tc_info[ets_tc].netdev_tc;
4145 netdev_set_prio_tc_map(netdev, i, netdev_tc);
4146 }
4147}
4148
4149/**
4150 * i40e_vsi_update_queue_map - Update our copy of VSi info with new queue map
4151 * @vsi: the VSI being configured
4152 * @ctxt: the ctxt buffer returned from AQ VSI update param command
4153 **/
4154static void i40e_vsi_update_queue_map(struct i40e_vsi *vsi,
4155 struct i40e_vsi_context *ctxt)
4156{
4157 /* copy just the sections touched not the entire info
4158 * since not all sections are valid as returned by
4159 * update vsi params
4160 */
4161 vsi->info.mapping_flags = ctxt->info.mapping_flags;
4162 memcpy(&vsi->info.queue_mapping,
4163 &ctxt->info.queue_mapping, sizeof(vsi->info.queue_mapping));
4164 memcpy(&vsi->info.tc_mapping, ctxt->info.tc_mapping,
4165 sizeof(vsi->info.tc_mapping));
4166}
4167
4168/**
4169 * i40e_vsi_config_tc - Configure VSI Tx Scheduler for given TC map
4170 * @vsi: VSI to be configured
4171 * @enabled_tc: TC bitmap
4172 *
4173 * This configures a particular VSI for TCs that are mapped to the
4174 * given TC bitmap. It uses default bandwidth share for TCs across
4175 * VSIs to configure TC for a particular VSI.
4176 *
4177 * NOTE:
4178 * It is expected that the VSI queues have been quisced before calling
4179 * this function.
4180 **/
4181static int i40e_vsi_config_tc(struct i40e_vsi *vsi, u8 enabled_tc)
4182{
4183 u8 bw_share[I40E_MAX_TRAFFIC_CLASS] = {0};
4184 struct i40e_vsi_context ctxt;
4185 int ret = 0;
4186 int i;
4187
4188 /* Check if enabled_tc is same as existing or new TCs */
4189 if (vsi->tc_config.enabled_tc == enabled_tc)
4190 return ret;
4191
4192 /* Enable ETS TCs with equal BW Share for now across all VSIs */
4193 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
4194 if (enabled_tc & (1 << i))
4195 bw_share[i] = 1;
4196 }
4197
4198 ret = i40e_vsi_configure_bw_alloc(vsi, enabled_tc, bw_share);
4199 if (ret) {
4200 dev_info(&vsi->back->pdev->dev,
4201 "Failed configuring TC map %d for VSI %d\n",
4202 enabled_tc, vsi->seid);
4203 goto out;
4204 }
4205
4206 /* Update Queue Pairs Mapping for currently enabled UPs */
4207 ctxt.seid = vsi->seid;
4208 ctxt.pf_num = vsi->back->hw.pf_id;
4209 ctxt.vf_num = 0;
4210 ctxt.uplink_seid = vsi->uplink_seid;
4211 memcpy(&ctxt.info, &vsi->info, sizeof(vsi->info));
4212 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, false);
4213
4214 /* Update the VSI after updating the VSI queue-mapping information */
4215 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
4216 if (ret) {
4217 dev_info(&vsi->back->pdev->dev,
4218 "update vsi failed, aq_err=%d\n",
4219 vsi->back->hw.aq.asq_last_status);
4220 goto out;
4221 }
4222 /* update the local VSI info with updated queue map */
4223 i40e_vsi_update_queue_map(vsi, &ctxt);
4224 vsi->info.valid_sections = 0;
4225
4226 /* Update current VSI BW information */
4227 ret = i40e_vsi_get_bw_info(vsi);
4228 if (ret) {
4229 dev_info(&vsi->back->pdev->dev,
4230 "Failed updating vsi bw info, aq_err=%d\n",
4231 vsi->back->hw.aq.asq_last_status);
4232 goto out;
4233 }
4234
4235 /* Update the netdev TC setup */
4236 i40e_vsi_config_netdev_tc(vsi, enabled_tc);
4237out:
4238 return ret;
4239}
4240
4241/**
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004242 * i40e_veb_config_tc - Configure TCs for given VEB
4243 * @veb: given VEB
4244 * @enabled_tc: TC bitmap
4245 *
4246 * Configures given TC bitmap for VEB (switching) element
4247 **/
4248int i40e_veb_config_tc(struct i40e_veb *veb, u8 enabled_tc)
4249{
4250 struct i40e_aqc_configure_switching_comp_bw_config_data bw_data = {0};
4251 struct i40e_pf *pf = veb->pf;
4252 int ret = 0;
4253 int i;
4254
4255 /* No TCs or already enabled TCs just return */
4256 if (!enabled_tc || veb->enabled_tc == enabled_tc)
4257 return ret;
4258
4259 bw_data.tc_valid_bits = enabled_tc;
4260 /* bw_data.absolute_credits is not set (relative) */
4261
4262 /* Enable ETS TCs with equal BW Share for now */
4263 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
4264 if (enabled_tc & (1 << i))
4265 bw_data.tc_bw_share_credits[i] = 1;
4266 }
4267
4268 ret = i40e_aq_config_switch_comp_bw_config(&pf->hw, veb->seid,
4269 &bw_data, NULL);
4270 if (ret) {
4271 dev_info(&pf->pdev->dev,
4272 "veb bw config failed, aq_err=%d\n",
4273 pf->hw.aq.asq_last_status);
4274 goto out;
4275 }
4276
4277 /* Update the BW information */
4278 ret = i40e_veb_get_bw_info(veb);
4279 if (ret) {
4280 dev_info(&pf->pdev->dev,
4281 "Failed getting veb bw config, aq_err=%d\n",
4282 pf->hw.aq.asq_last_status);
4283 }
4284
4285out:
4286 return ret;
4287}
4288
4289#ifdef CONFIG_I40E_DCB
4290/**
4291 * i40e_dcb_reconfigure - Reconfigure all VEBs and VSIs
4292 * @pf: PF struct
4293 *
4294 * Reconfigure VEB/VSIs on a given PF; it is assumed that
4295 * the caller would've quiesce all the VSIs before calling
4296 * this function
4297 **/
4298static void i40e_dcb_reconfigure(struct i40e_pf *pf)
4299{
4300 u8 tc_map = 0;
4301 int ret;
4302 u8 v;
4303
4304 /* Enable the TCs available on PF to all VEBs */
4305 tc_map = i40e_pf_get_tc_map(pf);
4306 for (v = 0; v < I40E_MAX_VEB; v++) {
4307 if (!pf->veb[v])
4308 continue;
4309 ret = i40e_veb_config_tc(pf->veb[v], tc_map);
4310 if (ret) {
4311 dev_info(&pf->pdev->dev,
4312 "Failed configuring TC for VEB seid=%d\n",
4313 pf->veb[v]->seid);
4314 /* Will try to configure as many components */
4315 }
4316 }
4317
4318 /* Update each VSI */
Mitch Williams505682c2014-05-20 08:01:37 +00004319 for (v = 0; v < pf->num_alloc_vsi; v++) {
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004320 if (!pf->vsi[v])
4321 continue;
4322
4323 /* - Enable all TCs for the LAN VSI
Vasu Dev38e00432014-08-01 13:27:03 -07004324#ifdef I40E_FCOE
4325 * - For FCoE VSI only enable the TC configured
4326 * as per the APP TLV
4327#endif
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004328 * - For all others keep them at TC0 for now
4329 */
4330 if (v == pf->lan_vsi)
4331 tc_map = i40e_pf_get_tc_map(pf);
4332 else
4333 tc_map = i40e_pf_get_default_tc(pf);
Vasu Dev38e00432014-08-01 13:27:03 -07004334#ifdef I40E_FCOE
4335 if (pf->vsi[v]->type == I40E_VSI_FCOE)
4336 tc_map = i40e_get_fcoe_tc_map(pf);
4337#endif /* #ifdef I40E_FCOE */
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004338
4339 ret = i40e_vsi_config_tc(pf->vsi[v], tc_map);
4340 if (ret) {
4341 dev_info(&pf->pdev->dev,
4342 "Failed configuring TC for VSI seid=%d\n",
4343 pf->vsi[v]->seid);
4344 /* Will try to configure as many components */
4345 } else {
Neerav Parikh0672a092014-04-01 07:11:47 +00004346 /* Re-configure VSI vectors based on updated TC map */
4347 i40e_vsi_map_rings_to_vectors(pf->vsi[v]);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004348 if (pf->vsi[v]->netdev)
4349 i40e_dcbnl_set_all(pf->vsi[v]);
4350 }
4351 }
4352}
4353
4354/**
4355 * i40e_init_pf_dcb - Initialize DCB configuration
4356 * @pf: PF being configured
4357 *
4358 * Query the current DCB configuration and cache it
4359 * in the hardware structure
4360 **/
4361static int i40e_init_pf_dcb(struct i40e_pf *pf)
4362{
4363 struct i40e_hw *hw = &pf->hw;
4364 int err = 0;
4365
4366 if (pf->hw.func_caps.npar_enable)
4367 goto out;
4368
4369 /* Get the initial DCB configuration */
4370 err = i40e_init_dcb(hw);
4371 if (!err) {
4372 /* Device/Function is not DCBX capable */
4373 if ((!hw->func_caps.dcb) ||
4374 (hw->dcbx_status == I40E_DCBX_STATUS_DISABLED)) {
4375 dev_info(&pf->pdev->dev,
4376 "DCBX offload is not supported or is disabled for this PF.\n");
4377
4378 if (pf->flags & I40E_FLAG_MFP_ENABLED)
4379 goto out;
4380
4381 } else {
4382 /* When status is not DISABLED then DCBX in FW */
4383 pf->dcbx_cap = DCB_CAP_DCBX_LLD_MANAGED |
4384 DCB_CAP_DCBX_VER_IEEE;
Neerav Parikh4d9b6042014-05-22 06:31:51 +00004385
4386 pf->flags |= I40E_FLAG_DCB_CAPABLE;
4387 /* Enable DCB tagging only when more than one TC */
4388 if (i40e_dcb_get_num_tc(&hw->local_dcbx_config) > 1)
4389 pf->flags |= I40E_FLAG_DCB_ENABLED;
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004390 }
Neerav Parikh014269f2014-04-01 07:11:48 +00004391 } else {
4392 dev_info(&pf->pdev->dev, "AQ Querying DCB configuration failed: %d\n",
4393 pf->hw.aq.asq_last_status);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004394 }
4395
4396out:
4397 return err;
4398}
4399#endif /* CONFIG_I40E_DCB */
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004400#define SPEED_SIZE 14
4401#define FC_SIZE 8
4402/**
4403 * i40e_print_link_message - print link up or down
4404 * @vsi: the VSI for which link needs a message
4405 */
4406static void i40e_print_link_message(struct i40e_vsi *vsi, bool isup)
4407{
4408 char speed[SPEED_SIZE] = "Unknown";
4409 char fc[FC_SIZE] = "RX/TX";
4410
4411 if (!isup) {
4412 netdev_info(vsi->netdev, "NIC Link is Down\n");
4413 return;
4414 }
4415
4416 switch (vsi->back->hw.phy.link_info.link_speed) {
4417 case I40E_LINK_SPEED_40GB:
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00004418 strlcpy(speed, "40 Gbps", SPEED_SIZE);
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004419 break;
4420 case I40E_LINK_SPEED_10GB:
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00004421 strlcpy(speed, "10 Gbps", SPEED_SIZE);
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004422 break;
4423 case I40E_LINK_SPEED_1GB:
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00004424 strlcpy(speed, "1000 Mbps", SPEED_SIZE);
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004425 break;
4426 default:
4427 break;
4428 }
4429
4430 switch (vsi->back->hw.fc.current_mode) {
4431 case I40E_FC_FULL:
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00004432 strlcpy(fc, "RX/TX", FC_SIZE);
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004433 break;
4434 case I40E_FC_TX_PAUSE:
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00004435 strlcpy(fc, "TX", FC_SIZE);
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004436 break;
4437 case I40E_FC_RX_PAUSE:
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00004438 strlcpy(fc, "RX", FC_SIZE);
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004439 break;
4440 default:
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00004441 strlcpy(fc, "None", FC_SIZE);
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004442 break;
4443 }
4444
4445 netdev_info(vsi->netdev, "NIC Link is Up %s Full Duplex, Flow Control: %s\n",
4446 speed, fc);
4447}
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004448
4449/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004450 * i40e_up_complete - Finish the last steps of bringing up a connection
4451 * @vsi: the VSI being configured
4452 **/
4453static int i40e_up_complete(struct i40e_vsi *vsi)
4454{
4455 struct i40e_pf *pf = vsi->back;
Catherine Sullivanc56999f2014-06-04 08:45:26 +00004456 u8 set_fc_aq_fail = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004457 int err;
4458
Catherine Sullivanc56999f2014-06-04 08:45:26 +00004459 /* force flow control off */
4460 i40e_set_fc(&pf->hw, &set_fc_aq_fail, true);
4461
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004462 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
4463 i40e_vsi_configure_msix(vsi);
4464 else
4465 i40e_configure_msi_and_legacy(vsi);
4466
4467 /* start rings */
4468 err = i40e_vsi_control_rings(vsi, true);
4469 if (err)
4470 return err;
4471
4472 clear_bit(__I40E_DOWN, &vsi->state);
4473 i40e_napi_enable_all(vsi);
4474 i40e_vsi_enable_irq(vsi);
4475
4476 if ((pf->hw.phy.link_info.link_info & I40E_AQ_LINK_UP) &&
4477 (vsi->netdev)) {
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004478 i40e_print_link_message(vsi, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004479 netif_tx_start_all_queues(vsi->netdev);
4480 netif_carrier_on(vsi->netdev);
Anjali Singhai6d779b412013-09-28 06:00:02 +00004481 } else if (vsi->netdev) {
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004482 i40e_print_link_message(vsi, false);
Carolyn Wyborny7b592f62014-07-10 07:58:19 +00004483 /* need to check for qualified module here*/
4484 if ((pf->hw.phy.link_info.link_info &
4485 I40E_AQ_MEDIA_AVAILABLE) &&
4486 (!(pf->hw.phy.link_info.an_info &
4487 I40E_AQ_QUALIFIED_MODULE)))
4488 netdev_err(vsi->netdev,
4489 "the driver failed to link because an unqualified module was detected.");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004490 }
Anjali Singhai Jainca64fa42014-02-11 08:26:30 +00004491
4492 /* replay FDIR SB filters */
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00004493 if (vsi->type == I40E_VSI_FDIR) {
4494 /* reset fd counters */
4495 pf->fd_add_err = pf->fd_atr_cnt = 0;
4496 if (pf->fd_tcp_rule > 0) {
4497 pf->flags &= ~I40E_FLAG_FD_ATR_ENABLED;
4498 dev_info(&pf->pdev->dev, "Forcing ATR off, sideband rules for TCP/IPv4 exist\n");
4499 pf->fd_tcp_rule = 0;
4500 }
Anjali Singhai Jainca64fa42014-02-11 08:26:30 +00004501 i40e_fdir_filter_restore(vsi);
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00004502 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004503 i40e_service_event_schedule(pf);
4504
4505 return 0;
4506}
4507
4508/**
4509 * i40e_vsi_reinit_locked - Reset the VSI
4510 * @vsi: the VSI being configured
4511 *
4512 * Rebuild the ring structs after some configuration
4513 * has changed, e.g. MTU size.
4514 **/
4515static void i40e_vsi_reinit_locked(struct i40e_vsi *vsi)
4516{
4517 struct i40e_pf *pf = vsi->back;
4518
4519 WARN_ON(in_interrupt());
4520 while (test_and_set_bit(__I40E_CONFIG_BUSY, &pf->state))
4521 usleep_range(1000, 2000);
4522 i40e_down(vsi);
4523
4524 /* Give a VF some time to respond to the reset. The
4525 * two second wait is based upon the watchdog cycle in
4526 * the VF driver.
4527 */
4528 if (vsi->type == I40E_VSI_SRIOV)
4529 msleep(2000);
4530 i40e_up(vsi);
4531 clear_bit(__I40E_CONFIG_BUSY, &pf->state);
4532}
4533
4534/**
4535 * i40e_up - Bring the connection back up after being down
4536 * @vsi: the VSI being configured
4537 **/
4538int i40e_up(struct i40e_vsi *vsi)
4539{
4540 int err;
4541
4542 err = i40e_vsi_configure(vsi);
4543 if (!err)
4544 err = i40e_up_complete(vsi);
4545
4546 return err;
4547}
4548
4549/**
4550 * i40e_down - Shutdown the connection processing
4551 * @vsi: the VSI being stopped
4552 **/
4553void i40e_down(struct i40e_vsi *vsi)
4554{
4555 int i;
4556
4557 /* It is assumed that the caller of this function
4558 * sets the vsi->state __I40E_DOWN bit.
4559 */
4560 if (vsi->netdev) {
4561 netif_carrier_off(vsi->netdev);
4562 netif_tx_disable(vsi->netdev);
4563 }
4564 i40e_vsi_disable_irq(vsi);
4565 i40e_vsi_control_rings(vsi, false);
4566 i40e_napi_disable_all(vsi);
4567
4568 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e152013-09-28 06:00:58 +00004569 i40e_clean_tx_ring(vsi->tx_rings[i]);
4570 i40e_clean_rx_ring(vsi->rx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004571 }
4572}
4573
4574/**
4575 * i40e_setup_tc - configure multiple traffic classes
4576 * @netdev: net device to configure
4577 * @tc: number of traffic classes to enable
4578 **/
Vasu Dev38e00432014-08-01 13:27:03 -07004579#ifdef I40E_FCOE
4580int i40e_setup_tc(struct net_device *netdev, u8 tc)
4581#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004582static int i40e_setup_tc(struct net_device *netdev, u8 tc)
Vasu Dev38e00432014-08-01 13:27:03 -07004583#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004584{
4585 struct i40e_netdev_priv *np = netdev_priv(netdev);
4586 struct i40e_vsi *vsi = np->vsi;
4587 struct i40e_pf *pf = vsi->back;
4588 u8 enabled_tc = 0;
4589 int ret = -EINVAL;
4590 int i;
4591
4592 /* Check if DCB enabled to continue */
4593 if (!(pf->flags & I40E_FLAG_DCB_ENABLED)) {
4594 netdev_info(netdev, "DCB is not enabled for adapter\n");
4595 goto exit;
4596 }
4597
4598 /* Check if MFP enabled */
4599 if (pf->flags & I40E_FLAG_MFP_ENABLED) {
4600 netdev_info(netdev, "Configuring TC not supported in MFP mode\n");
4601 goto exit;
4602 }
4603
4604 /* Check whether tc count is within enabled limit */
4605 if (tc > i40e_pf_get_num_tc(pf)) {
4606 netdev_info(netdev, "TC count greater than enabled on link for adapter\n");
4607 goto exit;
4608 }
4609
4610 /* Generate TC map for number of tc requested */
4611 for (i = 0; i < tc; i++)
4612 enabled_tc |= (1 << i);
4613
4614 /* Requesting same TC configuration as already enabled */
4615 if (enabled_tc == vsi->tc_config.enabled_tc)
4616 return 0;
4617
4618 /* Quiesce VSI queues */
4619 i40e_quiesce_vsi(vsi);
4620
4621 /* Configure VSI for enabled TCs */
4622 ret = i40e_vsi_config_tc(vsi, enabled_tc);
4623 if (ret) {
4624 netdev_info(netdev, "Failed configuring TC for VSI seid=%d\n",
4625 vsi->seid);
4626 goto exit;
4627 }
4628
4629 /* Unquiesce VSI */
4630 i40e_unquiesce_vsi(vsi);
4631
4632exit:
4633 return ret;
4634}
4635
4636/**
4637 * i40e_open - Called when a network interface is made active
4638 * @netdev: network interface device structure
4639 *
4640 * The open entry point is called when a network interface is made
4641 * active by the system (IFF_UP). At this point all resources needed
4642 * for transmit and receive operations are allocated, the interrupt
4643 * handler is registered with the OS, the netdev watchdog subtask is
4644 * enabled, and the stack is notified that the interface is ready.
4645 *
4646 * Returns 0 on success, negative value on failure
4647 **/
Vasu Dev38e00432014-08-01 13:27:03 -07004648#ifdef I40E_FCOE
4649int i40e_open(struct net_device *netdev)
4650#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004651static int i40e_open(struct net_device *netdev)
Vasu Dev38e00432014-08-01 13:27:03 -07004652#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004653{
4654 struct i40e_netdev_priv *np = netdev_priv(netdev);
4655 struct i40e_vsi *vsi = np->vsi;
4656 struct i40e_pf *pf = vsi->back;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004657 int err;
4658
Shannon Nelson4eb3f762014-03-06 08:59:58 +00004659 /* disallow open during test or if eeprom is broken */
4660 if (test_bit(__I40E_TESTING, &pf->state) ||
4661 test_bit(__I40E_BAD_EEPROM, &pf->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004662 return -EBUSY;
4663
4664 netif_carrier_off(netdev);
4665
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00004666 err = i40e_vsi_open(vsi);
4667 if (err)
4668 return err;
4669
Jesse Brandeburg059dab62014-04-01 09:07:20 +00004670 /* configure global TSO hardware offload settings */
4671 wr32(&pf->hw, I40E_GLLAN_TSOMSK_F, be32_to_cpu(TCP_FLAG_PSH |
4672 TCP_FLAG_FIN) >> 16);
4673 wr32(&pf->hw, I40E_GLLAN_TSOMSK_M, be32_to_cpu(TCP_FLAG_PSH |
4674 TCP_FLAG_FIN |
4675 TCP_FLAG_CWR) >> 16);
4676 wr32(&pf->hw, I40E_GLLAN_TSOMSK_L, be32_to_cpu(TCP_FLAG_CWR) >> 16);
4677
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00004678#ifdef CONFIG_I40E_VXLAN
4679 vxlan_get_rx_port(netdev);
4680#endif
4681
4682 return 0;
4683}
4684
4685/**
4686 * i40e_vsi_open -
4687 * @vsi: the VSI to open
4688 *
4689 * Finish initialization of the VSI.
4690 *
4691 * Returns 0 on success, negative value on failure
4692 **/
4693int i40e_vsi_open(struct i40e_vsi *vsi)
4694{
4695 struct i40e_pf *pf = vsi->back;
4696 char int_name[IFNAMSIZ];
4697 int err;
4698
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004699 /* allocate descriptors */
4700 err = i40e_vsi_setup_tx_resources(vsi);
4701 if (err)
4702 goto err_setup_tx;
4703 err = i40e_vsi_setup_rx_resources(vsi);
4704 if (err)
4705 goto err_setup_rx;
4706
4707 err = i40e_vsi_configure(vsi);
4708 if (err)
4709 goto err_setup_rx;
4710
Shannon Nelsonc22e3c62014-03-14 07:32:25 +00004711 if (vsi->netdev) {
4712 snprintf(int_name, sizeof(int_name) - 1, "%s-%s",
4713 dev_driver_string(&pf->pdev->dev), vsi->netdev->name);
4714 err = i40e_vsi_request_irq(vsi, int_name);
4715 if (err)
4716 goto err_setup_rx;
4717
4718 /* Notify the stack of the actual queue counts. */
4719 err = netif_set_real_num_tx_queues(vsi->netdev,
4720 vsi->num_queue_pairs);
4721 if (err)
4722 goto err_set_queues;
4723
4724 err = netif_set_real_num_rx_queues(vsi->netdev,
4725 vsi->num_queue_pairs);
4726 if (err)
4727 goto err_set_queues;
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00004728
4729 } else if (vsi->type == I40E_VSI_FDIR) {
4730 snprintf(int_name, sizeof(int_name) - 1, "%s-fdir",
4731 dev_driver_string(&pf->pdev->dev));
4732 err = i40e_vsi_request_irq(vsi, int_name);
Shannon Nelsonc22e3c62014-03-14 07:32:25 +00004733 } else {
Jean Sacrence9ccb12014-05-01 14:31:18 +00004734 err = -EINVAL;
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00004735 goto err_setup_rx;
4736 }
Anjali Singhai Jain25946dd2013-11-26 10:49:14 +00004737
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004738 err = i40e_up_complete(vsi);
4739 if (err)
4740 goto err_up_complete;
4741
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004742 return 0;
4743
4744err_up_complete:
4745 i40e_down(vsi);
Anjali Singhai Jain25946dd2013-11-26 10:49:14 +00004746err_set_queues:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004747 i40e_vsi_free_irq(vsi);
4748err_setup_rx:
4749 i40e_vsi_free_rx_resources(vsi);
4750err_setup_tx:
4751 i40e_vsi_free_tx_resources(vsi);
4752 if (vsi == pf->vsi[pf->lan_vsi])
4753 i40e_do_reset(pf, (1 << __I40E_PF_RESET_REQUESTED));
4754
4755 return err;
4756}
4757
4758/**
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00004759 * i40e_fdir_filter_exit - Cleans up the Flow Director accounting
4760 * @pf: Pointer to pf
4761 *
4762 * This function destroys the hlist where all the Flow Director
4763 * filters were saved.
4764 **/
4765static void i40e_fdir_filter_exit(struct i40e_pf *pf)
4766{
4767 struct i40e_fdir_filter *filter;
4768 struct hlist_node *node2;
4769
4770 hlist_for_each_entry_safe(filter, node2,
4771 &pf->fdir_filter_list, fdir_node) {
4772 hlist_del(&filter->fdir_node);
4773 kfree(filter);
4774 }
4775 pf->fdir_pf_active_filters = 0;
4776}
4777
4778/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004779 * i40e_close - Disables a network interface
4780 * @netdev: network interface device structure
4781 *
4782 * The close entry point is called when an interface is de-activated
4783 * by the OS. The hardware is still under the driver's control, but
4784 * this netdev interface is disabled.
4785 *
4786 * Returns 0, this is not allowed to fail
4787 **/
Vasu Dev38e00432014-08-01 13:27:03 -07004788#ifdef I40E_FCOE
4789int i40e_close(struct net_device *netdev)
4790#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004791static int i40e_close(struct net_device *netdev)
Vasu Dev38e00432014-08-01 13:27:03 -07004792#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004793{
4794 struct i40e_netdev_priv *np = netdev_priv(netdev);
4795 struct i40e_vsi *vsi = np->vsi;
4796
Shannon Nelson90ef8d42014-03-14 07:32:26 +00004797 i40e_vsi_close(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004798
4799 return 0;
4800}
4801
4802/**
4803 * i40e_do_reset - Start a PF or Core Reset sequence
4804 * @pf: board private structure
4805 * @reset_flags: which reset is requested
4806 *
4807 * The essential difference in resets is that the PF Reset
4808 * doesn't clear the packet buffers, doesn't reset the PE
4809 * firmware, and doesn't bother the other PFs on the chip.
4810 **/
4811void i40e_do_reset(struct i40e_pf *pf, u32 reset_flags)
4812{
4813 u32 val;
4814
4815 WARN_ON(in_interrupt());
4816
Mitch Williams263fc482014-04-23 04:50:11 +00004817 if (i40e_check_asq_alive(&pf->hw))
4818 i40e_vc_notify_reset(pf);
4819
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004820 /* do the biggest reset indicated */
4821 if (reset_flags & (1 << __I40E_GLOBAL_RESET_REQUESTED)) {
4822
4823 /* Request a Global Reset
4824 *
4825 * This will start the chip's countdown to the actual full
4826 * chip reset event, and a warning interrupt to be sent
4827 * to all PFs, including the requestor. Our handler
4828 * for the warning interrupt will deal with the shutdown
4829 * and recovery of the switch setup.
4830 */
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00004831 dev_dbg(&pf->pdev->dev, "GlobalR requested\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004832 val = rd32(&pf->hw, I40E_GLGEN_RTRIG);
4833 val |= I40E_GLGEN_RTRIG_GLOBR_MASK;
4834 wr32(&pf->hw, I40E_GLGEN_RTRIG, val);
4835
4836 } else if (reset_flags & (1 << __I40E_CORE_RESET_REQUESTED)) {
4837
4838 /* Request a Core Reset
4839 *
4840 * Same as Global Reset, except does *not* include the MAC/PHY
4841 */
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00004842 dev_dbg(&pf->pdev->dev, "CoreR requested\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004843 val = rd32(&pf->hw, I40E_GLGEN_RTRIG);
4844 val |= I40E_GLGEN_RTRIG_CORER_MASK;
4845 wr32(&pf->hw, I40E_GLGEN_RTRIG, val);
4846 i40e_flush(&pf->hw);
4847
Shannon Nelson7823fe32013-11-16 10:00:45 +00004848 } else if (reset_flags & (1 << __I40E_EMP_RESET_REQUESTED)) {
4849
4850 /* Request a Firmware Reset
4851 *
4852 * Same as Global reset, plus restarting the
4853 * embedded firmware engine.
4854 */
4855 /* enable EMP Reset */
4856 val = rd32(&pf->hw, I40E_GLGEN_RSTENA_EMP);
4857 val |= I40E_GLGEN_RSTENA_EMP_EMP_RST_ENA_MASK;
4858 wr32(&pf->hw, I40E_GLGEN_RSTENA_EMP, val);
4859
4860 /* force the reset */
4861 val = rd32(&pf->hw, I40E_GLGEN_RTRIG);
4862 val |= I40E_GLGEN_RTRIG_EMPFWR_MASK;
4863 wr32(&pf->hw, I40E_GLGEN_RTRIG, val);
4864 i40e_flush(&pf->hw);
4865
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004866 } else if (reset_flags & (1 << __I40E_PF_RESET_REQUESTED)) {
4867
4868 /* Request a PF Reset
4869 *
4870 * Resets only the PF-specific registers
4871 *
4872 * This goes directly to the tear-down and rebuild of
4873 * the switch, since we need to do all the recovery as
4874 * for the Core Reset.
4875 */
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00004876 dev_dbg(&pf->pdev->dev, "PFR requested\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004877 i40e_handle_reset_warning(pf);
4878
4879 } else if (reset_flags & (1 << __I40E_REINIT_REQUESTED)) {
4880 int v;
4881
4882 /* Find the VSI(s) that requested a re-init */
4883 dev_info(&pf->pdev->dev,
4884 "VSI reinit requested\n");
Mitch Williams505682c2014-05-20 08:01:37 +00004885 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004886 struct i40e_vsi *vsi = pf->vsi[v];
4887 if (vsi != NULL &&
4888 test_bit(__I40E_REINIT_REQUESTED, &vsi->state)) {
4889 i40e_vsi_reinit_locked(pf->vsi[v]);
4890 clear_bit(__I40E_REINIT_REQUESTED, &vsi->state);
4891 }
4892 }
4893
4894 /* no further action needed, so return now */
4895 return;
Neerav Parikhb5d06f02014-06-03 23:50:17 +00004896 } else if (reset_flags & (1 << __I40E_DOWN_REQUESTED)) {
4897 int v;
4898
4899 /* Find the VSI(s) that needs to be brought down */
4900 dev_info(&pf->pdev->dev, "VSI down requested\n");
4901 for (v = 0; v < pf->num_alloc_vsi; v++) {
4902 struct i40e_vsi *vsi = pf->vsi[v];
4903 if (vsi != NULL &&
4904 test_bit(__I40E_DOWN_REQUESTED, &vsi->state)) {
4905 set_bit(__I40E_DOWN, &vsi->state);
4906 i40e_down(vsi);
4907 clear_bit(__I40E_DOWN_REQUESTED, &vsi->state);
4908 }
4909 }
4910
4911 /* no further action needed, so return now */
4912 return;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004913 } else {
4914 dev_info(&pf->pdev->dev,
4915 "bad reset request 0x%08x\n", reset_flags);
4916 return;
4917 }
4918}
4919
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004920#ifdef CONFIG_I40E_DCB
4921/**
4922 * i40e_dcb_need_reconfig - Check if DCB needs reconfig
4923 * @pf: board private structure
4924 * @old_cfg: current DCB config
4925 * @new_cfg: new DCB config
4926 **/
4927bool i40e_dcb_need_reconfig(struct i40e_pf *pf,
4928 struct i40e_dcbx_config *old_cfg,
4929 struct i40e_dcbx_config *new_cfg)
4930{
4931 bool need_reconfig = false;
4932
4933 /* Check if ETS configuration has changed */
4934 if (memcmp(&new_cfg->etscfg,
4935 &old_cfg->etscfg,
4936 sizeof(new_cfg->etscfg))) {
4937 /* If Priority Table has changed reconfig is needed */
4938 if (memcmp(&new_cfg->etscfg.prioritytable,
4939 &old_cfg->etscfg.prioritytable,
4940 sizeof(new_cfg->etscfg.prioritytable))) {
4941 need_reconfig = true;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00004942 dev_dbg(&pf->pdev->dev, "ETS UP2TC changed.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004943 }
4944
4945 if (memcmp(&new_cfg->etscfg.tcbwtable,
4946 &old_cfg->etscfg.tcbwtable,
4947 sizeof(new_cfg->etscfg.tcbwtable)))
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00004948 dev_dbg(&pf->pdev->dev, "ETS TC BW Table changed.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004949
4950 if (memcmp(&new_cfg->etscfg.tsatable,
4951 &old_cfg->etscfg.tsatable,
4952 sizeof(new_cfg->etscfg.tsatable)))
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00004953 dev_dbg(&pf->pdev->dev, "ETS TSA Table changed.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004954 }
4955
4956 /* Check if PFC configuration has changed */
4957 if (memcmp(&new_cfg->pfc,
4958 &old_cfg->pfc,
4959 sizeof(new_cfg->pfc))) {
4960 need_reconfig = true;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00004961 dev_dbg(&pf->pdev->dev, "PFC config change detected.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004962 }
4963
4964 /* Check if APP Table has changed */
4965 if (memcmp(&new_cfg->app,
4966 &old_cfg->app,
Dave Jones3d9667a2014-01-27 23:11:09 -05004967 sizeof(new_cfg->app))) {
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004968 need_reconfig = true;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00004969 dev_dbg(&pf->pdev->dev, "APP Table change detected.\n");
Dave Jones3d9667a2014-01-27 23:11:09 -05004970 }
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004971
4972 return need_reconfig;
4973}
4974
4975/**
4976 * i40e_handle_lldp_event - Handle LLDP Change MIB event
4977 * @pf: board private structure
4978 * @e: event info posted on ARQ
4979 **/
4980static int i40e_handle_lldp_event(struct i40e_pf *pf,
4981 struct i40e_arq_event_info *e)
4982{
4983 struct i40e_aqc_lldp_get_mib *mib =
4984 (struct i40e_aqc_lldp_get_mib *)&e->desc.params.raw;
4985 struct i40e_hw *hw = &pf->hw;
4986 struct i40e_dcbx_config *dcbx_cfg = &hw->local_dcbx_config;
4987 struct i40e_dcbx_config tmp_dcbx_cfg;
4988 bool need_reconfig = false;
4989 int ret = 0;
4990 u8 type;
4991
Neerav Parikh4d9b6042014-05-22 06:31:51 +00004992 /* Not DCB capable or capability disabled */
4993 if (!(pf->flags & I40E_FLAG_DCB_CAPABLE))
4994 return ret;
4995
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004996 /* Ignore if event is not for Nearest Bridge */
4997 type = ((mib->type >> I40E_AQ_LLDP_BRIDGE_TYPE_SHIFT)
4998 & I40E_AQ_LLDP_BRIDGE_TYPE_MASK);
4999 if (type != I40E_AQ_LLDP_BRIDGE_TYPE_NEAREST_BRIDGE)
5000 return ret;
5001
5002 /* Check MIB Type and return if event for Remote MIB update */
5003 type = mib->type & I40E_AQ_LLDP_MIB_TYPE_MASK;
5004 if (type == I40E_AQ_LLDP_MIB_REMOTE) {
5005 /* Update the remote cached instance and return */
5006 ret = i40e_aq_get_dcb_config(hw, I40E_AQ_LLDP_MIB_REMOTE,
5007 I40E_AQ_LLDP_BRIDGE_TYPE_NEAREST_BRIDGE,
5008 &hw->remote_dcbx_config);
5009 goto exit;
5010 }
5011
5012 /* Convert/store the DCBX data from LLDPDU temporarily */
5013 memset(&tmp_dcbx_cfg, 0, sizeof(tmp_dcbx_cfg));
5014 ret = i40e_lldp_to_dcb_config(e->msg_buf, &tmp_dcbx_cfg);
5015 if (ret) {
5016 /* Error in LLDPDU parsing return */
5017 dev_info(&pf->pdev->dev, "Failed parsing LLDPDU from event buffer\n");
5018 goto exit;
5019 }
5020
5021 /* No change detected in DCBX configs */
5022 if (!memcmp(&tmp_dcbx_cfg, dcbx_cfg, sizeof(tmp_dcbx_cfg))) {
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005023 dev_dbg(&pf->pdev->dev, "No change detected in DCBX configuration.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005024 goto exit;
5025 }
5026
5027 need_reconfig = i40e_dcb_need_reconfig(pf, dcbx_cfg, &tmp_dcbx_cfg);
5028
5029 i40e_dcbnl_flush_apps(pf, &tmp_dcbx_cfg);
5030
5031 /* Overwrite the new configuration */
5032 *dcbx_cfg = tmp_dcbx_cfg;
5033
5034 if (!need_reconfig)
5035 goto exit;
5036
Neerav Parikh4d9b6042014-05-22 06:31:51 +00005037 /* Enable DCB tagging only when more than one TC */
5038 if (i40e_dcb_get_num_tc(dcbx_cfg) > 1)
5039 pf->flags |= I40E_FLAG_DCB_ENABLED;
5040 else
5041 pf->flags &= ~I40E_FLAG_DCB_ENABLED;
5042
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005043 /* Reconfiguration needed quiesce all VSIs */
5044 i40e_pf_quiesce_all_vsi(pf);
5045
5046 /* Changes in configuration update VEB/VSI */
5047 i40e_dcb_reconfigure(pf);
5048
5049 i40e_pf_unquiesce_all_vsi(pf);
5050exit:
5051 return ret;
5052}
5053#endif /* CONFIG_I40E_DCB */
5054
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005055/**
Anjali Singhai Jain23326182013-11-26 10:49:22 +00005056 * i40e_do_reset_safe - Protected reset path for userland calls.
5057 * @pf: board private structure
5058 * @reset_flags: which reset is requested
5059 *
5060 **/
5061void i40e_do_reset_safe(struct i40e_pf *pf, u32 reset_flags)
5062{
5063 rtnl_lock();
5064 i40e_do_reset(pf, reset_flags);
5065 rtnl_unlock();
5066}
5067
5068/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005069 * i40e_handle_lan_overflow_event - Handler for LAN queue overflow event
5070 * @pf: board private structure
5071 * @e: event info posted on ARQ
5072 *
5073 * Handler for LAN Queue Overflow Event generated by the firmware for PF
5074 * and VF queues
5075 **/
5076static void i40e_handle_lan_overflow_event(struct i40e_pf *pf,
5077 struct i40e_arq_event_info *e)
5078{
5079 struct i40e_aqc_lan_overflow *data =
5080 (struct i40e_aqc_lan_overflow *)&e->desc.params.raw;
5081 u32 queue = le32_to_cpu(data->prtdcb_rupto);
5082 u32 qtx_ctl = le32_to_cpu(data->otx_ctl);
5083 struct i40e_hw *hw = &pf->hw;
5084 struct i40e_vf *vf;
5085 u16 vf_id;
5086
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005087 dev_dbg(&pf->pdev->dev, "overflow Rx Queue Number = %d QTX_CTL=0x%08x\n",
5088 queue, qtx_ctl);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005089
5090 /* Queue belongs to VF, find the VF and issue VF reset */
5091 if (((qtx_ctl & I40E_QTX_CTL_PFVF_Q_MASK)
5092 >> I40E_QTX_CTL_PFVF_Q_SHIFT) == I40E_QTX_CTL_VF_QUEUE) {
5093 vf_id = (u16)((qtx_ctl & I40E_QTX_CTL_VFVM_INDX_MASK)
5094 >> I40E_QTX_CTL_VFVM_INDX_SHIFT);
5095 vf_id -= hw->func_caps.vf_base_id;
5096 vf = &pf->vf[vf_id];
5097 i40e_vc_notify_vf_reset(vf);
5098 /* Allow VF to process pending reset notification */
5099 msleep(20);
5100 i40e_reset_vf(vf, false);
5101 }
5102}
5103
5104/**
5105 * i40e_service_event_complete - Finish up the service event
5106 * @pf: board private structure
5107 **/
5108static void i40e_service_event_complete(struct i40e_pf *pf)
5109{
5110 BUG_ON(!test_bit(__I40E_SERVICE_SCHED, &pf->state));
5111
5112 /* flush memory to make sure state is correct before next watchog */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01005113 smp_mb__before_atomic();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005114 clear_bit(__I40E_SERVICE_SCHED, &pf->state);
5115}
5116
5117/**
Anjali Singhai Jain12957382014-06-04 04:22:47 +00005118 * i40e_get_cur_guaranteed_fd_count - Get the consumed guaranteed FD filters
5119 * @pf: board private structure
5120 **/
5121int i40e_get_cur_guaranteed_fd_count(struct i40e_pf *pf)
5122{
5123 int val, fcnt_prog;
5124
5125 val = rd32(&pf->hw, I40E_PFQF_FDSTAT);
5126 fcnt_prog = (val & I40E_PFQF_FDSTAT_GUARANT_CNT_MASK);
5127 return fcnt_prog;
5128}
5129
5130/**
5131 * i40e_get_current_fd_count - Get the count of total FD filters programmed
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005132 * @pf: board private structure
5133 **/
5134int i40e_get_current_fd_count(struct i40e_pf *pf)
5135{
5136 int val, fcnt_prog;
5137 val = rd32(&pf->hw, I40E_PFQF_FDSTAT);
5138 fcnt_prog = (val & I40E_PFQF_FDSTAT_GUARANT_CNT_MASK) +
5139 ((val & I40E_PFQF_FDSTAT_BEST_CNT_MASK) >>
5140 I40E_PFQF_FDSTAT_BEST_CNT_SHIFT);
5141 return fcnt_prog;
5142}
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005143
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005144/**
5145 * i40e_fdir_check_and_reenable - Function to reenabe FD ATR or SB if disabled
5146 * @pf: board private structure
5147 **/
5148void i40e_fdir_check_and_reenable(struct i40e_pf *pf)
5149{
5150 u32 fcnt_prog, fcnt_avail;
5151
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005152 if (test_bit(__I40E_FD_FLUSH_REQUESTED, &pf->state))
5153 return;
5154
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005155 /* Check if, FD SB or ATR was auto disabled and if there is enough room
5156 * to re-enable
5157 */
Anjali Singhai Jain12957382014-06-04 04:22:47 +00005158 fcnt_prog = i40e_get_cur_guaranteed_fd_count(pf);
5159 fcnt_avail = pf->fdir_pf_filter_count;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005160 if ((fcnt_prog < (fcnt_avail - I40E_FDIR_BUFFER_HEAD_ROOM)) ||
5161 (pf->fd_add_err == 0) ||
5162 (i40e_get_current_atr_cnt(pf) < pf->fd_atr_cnt)) {
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005163 if ((pf->flags & I40E_FLAG_FD_SB_ENABLED) &&
5164 (pf->auto_disable_flags & I40E_FLAG_FD_SB_ENABLED)) {
5165 pf->auto_disable_flags &= ~I40E_FLAG_FD_SB_ENABLED;
5166 dev_info(&pf->pdev->dev, "FD Sideband/ntuple is being enabled since we have space in the table now\n");
5167 }
5168 }
5169 /* Wait for some more space to be available to turn on ATR */
5170 if (fcnt_prog < (fcnt_avail - I40E_FDIR_BUFFER_HEAD_ROOM * 2)) {
5171 if ((pf->flags & I40E_FLAG_FD_ATR_ENABLED) &&
5172 (pf->auto_disable_flags & I40E_FLAG_FD_ATR_ENABLED)) {
5173 pf->auto_disable_flags &= ~I40E_FLAG_FD_ATR_ENABLED;
5174 dev_info(&pf->pdev->dev, "ATR is being enabled since we have space in the table now\n");
5175 }
5176 }
5177}
5178
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005179#define I40E_MIN_FD_FLUSH_INTERVAL 10
5180/**
5181 * i40e_fdir_flush_and_replay - Function to flush all FD filters and replay SB
5182 * @pf: board private structure
5183 **/
5184static void i40e_fdir_flush_and_replay(struct i40e_pf *pf)
5185{
5186 int flush_wait_retry = 50;
5187 int reg;
5188
5189 if (time_after(jiffies, pf->fd_flush_timestamp +
5190 (I40E_MIN_FD_FLUSH_INTERVAL * HZ))) {
5191 set_bit(__I40E_FD_FLUSH_REQUESTED, &pf->state);
5192 pf->fd_flush_timestamp = jiffies;
5193 pf->auto_disable_flags |= I40E_FLAG_FD_SB_ENABLED;
5194 pf->flags &= ~I40E_FLAG_FD_ATR_ENABLED;
5195 /* flush all filters */
5196 wr32(&pf->hw, I40E_PFQF_CTL_1,
5197 I40E_PFQF_CTL_1_CLEARFDTABLE_MASK);
5198 i40e_flush(&pf->hw);
Anjali Singhai Jain60793f4a2014-07-09 07:46:23 +00005199 pf->fd_flush_cnt++;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005200 pf->fd_add_err = 0;
5201 do {
5202 /* Check FD flush status every 5-6msec */
5203 usleep_range(5000, 6000);
5204 reg = rd32(&pf->hw, I40E_PFQF_CTL_1);
5205 if (!(reg & I40E_PFQF_CTL_1_CLEARFDTABLE_MASK))
5206 break;
5207 } while (flush_wait_retry--);
5208 if (reg & I40E_PFQF_CTL_1_CLEARFDTABLE_MASK) {
5209 dev_warn(&pf->pdev->dev, "FD table did not flush, needs more time\n");
5210 } else {
5211 /* replay sideband filters */
5212 i40e_fdir_filter_restore(pf->vsi[pf->lan_vsi]);
5213
5214 pf->flags |= I40E_FLAG_FD_ATR_ENABLED;
5215 pf->auto_disable_flags &= ~I40E_FLAG_FD_ATR_ENABLED;
5216 pf->auto_disable_flags &= ~I40E_FLAG_FD_SB_ENABLED;
5217 clear_bit(__I40E_FD_FLUSH_REQUESTED, &pf->state);
5218 dev_info(&pf->pdev->dev, "FD Filter table flushed and FD-SB replayed.\n");
5219 }
5220 }
5221}
5222
5223/**
5224 * i40e_get_current_atr_count - Get the count of total FD ATR filters programmed
5225 * @pf: board private structure
5226 **/
5227int i40e_get_current_atr_cnt(struct i40e_pf *pf)
5228{
5229 return i40e_get_current_fd_count(pf) - pf->fdir_pf_active_filters;
5230}
5231
5232/* We can see up to 256 filter programming desc in transit if the filters are
5233 * being applied really fast; before we see the first
5234 * filter miss error on Rx queue 0. Accumulating enough error messages before
5235 * reacting will make sure we don't cause flush too often.
5236 */
5237#define I40E_MAX_FD_PROGRAM_ERROR 256
5238
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005239/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005240 * i40e_fdir_reinit_subtask - Worker thread to reinit FDIR filter table
5241 * @pf: board private structure
5242 **/
5243static void i40e_fdir_reinit_subtask(struct i40e_pf *pf)
5244{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005245
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005246 /* if interface is down do nothing */
5247 if (test_bit(__I40E_DOWN, &pf->state))
5248 return;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005249
5250 if ((pf->fd_add_err >= I40E_MAX_FD_PROGRAM_ERROR) &&
5251 (i40e_get_current_atr_cnt(pf) >= pf->fd_atr_cnt) &&
5252 (i40e_get_current_atr_cnt(pf) > pf->fdir_pf_filter_count))
5253 i40e_fdir_flush_and_replay(pf);
5254
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005255 i40e_fdir_check_and_reenable(pf);
5256
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005257}
5258
5259/**
5260 * i40e_vsi_link_event - notify VSI of a link event
5261 * @vsi: vsi to be notified
5262 * @link_up: link up or down
5263 **/
5264static void i40e_vsi_link_event(struct i40e_vsi *vsi, bool link_up)
5265{
5266 if (!vsi)
5267 return;
5268
5269 switch (vsi->type) {
5270 case I40E_VSI_MAIN:
Vasu Dev38e00432014-08-01 13:27:03 -07005271#ifdef I40E_FCOE
5272 case I40E_VSI_FCOE:
5273#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005274 if (!vsi->netdev || !vsi->netdev_registered)
5275 break;
5276
5277 if (link_up) {
5278 netif_carrier_on(vsi->netdev);
5279 netif_tx_wake_all_queues(vsi->netdev);
5280 } else {
5281 netif_carrier_off(vsi->netdev);
5282 netif_tx_stop_all_queues(vsi->netdev);
5283 }
5284 break;
5285
5286 case I40E_VSI_SRIOV:
5287 break;
5288
5289 case I40E_VSI_VMDQ2:
5290 case I40E_VSI_CTRL:
5291 case I40E_VSI_MIRROR:
5292 default:
5293 /* there is no notification for other VSIs */
5294 break;
5295 }
5296}
5297
5298/**
5299 * i40e_veb_link_event - notify elements on the veb of a link event
5300 * @veb: veb to be notified
5301 * @link_up: link up or down
5302 **/
5303static void i40e_veb_link_event(struct i40e_veb *veb, bool link_up)
5304{
5305 struct i40e_pf *pf;
5306 int i;
5307
5308 if (!veb || !veb->pf)
5309 return;
5310 pf = veb->pf;
5311
5312 /* depth first... */
5313 for (i = 0; i < I40E_MAX_VEB; i++)
5314 if (pf->veb[i] && (pf->veb[i]->uplink_seid == veb->seid))
5315 i40e_veb_link_event(pf->veb[i], link_up);
5316
5317 /* ... now the local VSIs */
Mitch Williams505682c2014-05-20 08:01:37 +00005318 for (i = 0; i < pf->num_alloc_vsi; i++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005319 if (pf->vsi[i] && (pf->vsi[i]->uplink_seid == veb->seid))
5320 i40e_vsi_link_event(pf->vsi[i], link_up);
5321}
5322
5323/**
5324 * i40e_link_event - Update netif_carrier status
5325 * @pf: board private structure
5326 **/
5327static void i40e_link_event(struct i40e_pf *pf)
5328{
5329 bool new_link, old_link;
5330
5331 new_link = (pf->hw.phy.link_info.link_info & I40E_AQ_LINK_UP);
5332 old_link = (pf->hw.phy.link_info_old.link_info & I40E_AQ_LINK_UP);
5333
5334 if (new_link == old_link)
5335 return;
Anjali Singhai6d779b412013-09-28 06:00:02 +00005336 if (!test_bit(__I40E_DOWN, &pf->vsi[pf->lan_vsi]->state))
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005337 i40e_print_link_message(pf->vsi[pf->lan_vsi], new_link);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005338
5339 /* Notify the base of the switch tree connected to
5340 * the link. Floating VEBs are not notified.
5341 */
5342 if (pf->lan_veb != I40E_NO_VEB && pf->veb[pf->lan_veb])
5343 i40e_veb_link_event(pf->veb[pf->lan_veb], new_link);
5344 else
5345 i40e_vsi_link_event(pf->vsi[pf->lan_vsi], new_link);
5346
5347 if (pf->vf)
5348 i40e_vc_notify_link_state(pf);
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00005349
5350 if (pf->flags & I40E_FLAG_PTP)
5351 i40e_ptp_set_increment(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005352}
5353
5354/**
5355 * i40e_check_hang_subtask - Check for hung queues and dropped interrupts
5356 * @pf: board private structure
5357 *
5358 * Set the per-queue flags to request a check for stuck queues in the irq
5359 * clean functions, then force interrupts to be sure the irq clean is called.
5360 **/
5361static void i40e_check_hang_subtask(struct i40e_pf *pf)
5362{
5363 int i, v;
5364
5365 /* If we're down or resetting, just bail */
5366 if (test_bit(__I40E_CONFIG_BUSY, &pf->state))
5367 return;
5368
5369 /* for each VSI/netdev
5370 * for each Tx queue
5371 * set the check flag
5372 * for each q_vector
5373 * force an interrupt
5374 */
Mitch Williams505682c2014-05-20 08:01:37 +00005375 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005376 struct i40e_vsi *vsi = pf->vsi[v];
5377 int armed = 0;
5378
5379 if (!pf->vsi[v] ||
5380 test_bit(__I40E_DOWN, &vsi->state) ||
5381 (vsi->netdev && !netif_carrier_ok(vsi->netdev)))
5382 continue;
5383
5384 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e152013-09-28 06:00:58 +00005385 set_check_for_tx_hang(vsi->tx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005386 if (test_bit(__I40E_HANG_CHECK_ARMED,
Alexander Duyck9f65e152013-09-28 06:00:58 +00005387 &vsi->tx_rings[i]->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005388 armed++;
5389 }
5390
5391 if (armed) {
5392 if (!(pf->flags & I40E_FLAG_MSIX_ENABLED)) {
5393 wr32(&vsi->back->hw, I40E_PFINT_DYN_CTL0,
5394 (I40E_PFINT_DYN_CTL0_INTENA_MASK |
5395 I40E_PFINT_DYN_CTL0_SWINT_TRIG_MASK));
5396 } else {
5397 u16 vec = vsi->base_vector - 1;
5398 u32 val = (I40E_PFINT_DYN_CTLN_INTENA_MASK |
5399 I40E_PFINT_DYN_CTLN_SWINT_TRIG_MASK);
5400 for (i = 0; i < vsi->num_q_vectors; i++, vec++)
5401 wr32(&vsi->back->hw,
5402 I40E_PFINT_DYN_CTLN(vec), val);
5403 }
5404 i40e_flush(&vsi->back->hw);
5405 }
5406 }
5407}
5408
5409/**
5410 * i40e_watchdog_subtask - Check and bring link up
5411 * @pf: board private structure
5412 **/
5413static void i40e_watchdog_subtask(struct i40e_pf *pf)
5414{
5415 int i;
5416
5417 /* if interface is down do nothing */
5418 if (test_bit(__I40E_DOWN, &pf->state) ||
5419 test_bit(__I40E_CONFIG_BUSY, &pf->state))
5420 return;
5421
5422 /* Update the stats for active netdevs so the network stack
5423 * can look at updated numbers whenever it cares to
5424 */
Mitch Williams505682c2014-05-20 08:01:37 +00005425 for (i = 0; i < pf->num_alloc_vsi; i++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005426 if (pf->vsi[i] && pf->vsi[i]->netdev)
5427 i40e_update_stats(pf->vsi[i]);
5428
5429 /* Update the stats for the active switching components */
5430 for (i = 0; i < I40E_MAX_VEB; i++)
5431 if (pf->veb[i])
5432 i40e_update_veb_stats(pf->veb[i]);
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00005433
5434 i40e_ptp_rx_hang(pf->vsi[pf->lan_vsi]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005435}
5436
5437/**
5438 * i40e_reset_subtask - Set up for resetting the device and driver
5439 * @pf: board private structure
5440 **/
5441static void i40e_reset_subtask(struct i40e_pf *pf)
5442{
5443 u32 reset_flags = 0;
5444
Anjali Singhai Jain23326182013-11-26 10:49:22 +00005445 rtnl_lock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005446 if (test_bit(__I40E_REINIT_REQUESTED, &pf->state)) {
5447 reset_flags |= (1 << __I40E_REINIT_REQUESTED);
5448 clear_bit(__I40E_REINIT_REQUESTED, &pf->state);
5449 }
5450 if (test_bit(__I40E_PF_RESET_REQUESTED, &pf->state)) {
5451 reset_flags |= (1 << __I40E_PF_RESET_REQUESTED);
5452 clear_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
5453 }
5454 if (test_bit(__I40E_CORE_RESET_REQUESTED, &pf->state)) {
5455 reset_flags |= (1 << __I40E_CORE_RESET_REQUESTED);
5456 clear_bit(__I40E_CORE_RESET_REQUESTED, &pf->state);
5457 }
5458 if (test_bit(__I40E_GLOBAL_RESET_REQUESTED, &pf->state)) {
5459 reset_flags |= (1 << __I40E_GLOBAL_RESET_REQUESTED);
5460 clear_bit(__I40E_GLOBAL_RESET_REQUESTED, &pf->state);
5461 }
Neerav Parikhb5d06f02014-06-03 23:50:17 +00005462 if (test_bit(__I40E_DOWN_REQUESTED, &pf->state)) {
5463 reset_flags |= (1 << __I40E_DOWN_REQUESTED);
5464 clear_bit(__I40E_DOWN_REQUESTED, &pf->state);
5465 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005466
5467 /* If there's a recovery already waiting, it takes
5468 * precedence before starting a new reset sequence.
5469 */
5470 if (test_bit(__I40E_RESET_INTR_RECEIVED, &pf->state)) {
5471 i40e_handle_reset_warning(pf);
Anjali Singhai Jain23326182013-11-26 10:49:22 +00005472 goto unlock;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005473 }
5474
5475 /* If we're already down or resetting, just bail */
5476 if (reset_flags &&
5477 !test_bit(__I40E_DOWN, &pf->state) &&
5478 !test_bit(__I40E_CONFIG_BUSY, &pf->state))
5479 i40e_do_reset(pf, reset_flags);
Anjali Singhai Jain23326182013-11-26 10:49:22 +00005480
5481unlock:
5482 rtnl_unlock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005483}
5484
5485/**
5486 * i40e_handle_link_event - Handle link event
5487 * @pf: board private structure
5488 * @e: event info posted on ARQ
5489 **/
5490static void i40e_handle_link_event(struct i40e_pf *pf,
5491 struct i40e_arq_event_info *e)
5492{
5493 struct i40e_hw *hw = &pf->hw;
5494 struct i40e_aqc_get_link_status *status =
5495 (struct i40e_aqc_get_link_status *)&e->desc.params.raw;
5496 struct i40e_link_status *hw_link_info = &hw->phy.link_info;
5497
5498 /* save off old link status information */
5499 memcpy(&pf->hw.phy.link_info_old, hw_link_info,
5500 sizeof(pf->hw.phy.link_info_old));
5501
Carolyn Wyborny7b592f62014-07-10 07:58:19 +00005502 /* check for unqualified module, if link is down */
5503 if ((status->link_info & I40E_AQ_MEDIA_AVAILABLE) &&
5504 (!(status->an_info & I40E_AQ_QUALIFIED_MODULE)) &&
5505 (!(status->link_info & I40E_AQ_LINK_UP)))
5506 dev_err(&pf->pdev->dev,
5507 "The driver failed to link because an unqualified module was detected.\n");
5508
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005509 /* update link status */
5510 hw_link_info->phy_type = (enum i40e_aq_phy_type)status->phy_type;
5511 hw_link_info->link_speed = (enum i40e_aq_link_speed)status->link_speed;
5512 hw_link_info->link_info = status->link_info;
5513 hw_link_info->an_info = status->an_info;
5514 hw_link_info->ext_info = status->ext_info;
5515 hw_link_info->lse_enable =
5516 le16_to_cpu(status->command_flags) &
5517 I40E_AQ_LSE_ENABLE;
5518
5519 /* process the event */
5520 i40e_link_event(pf);
5521
5522 /* Do a new status request to re-enable LSE reporting
5523 * and load new status information into the hw struct,
5524 * then see if the status changed while processing the
5525 * initial event.
5526 */
Catherine Sullivan8109e122014-06-04 08:45:24 +00005527 i40e_update_link_info(&pf->hw, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005528 i40e_link_event(pf);
5529}
5530
5531/**
5532 * i40e_clean_adminq_subtask - Clean the AdminQ rings
5533 * @pf: board private structure
5534 **/
5535static void i40e_clean_adminq_subtask(struct i40e_pf *pf)
5536{
5537 struct i40e_arq_event_info event;
5538 struct i40e_hw *hw = &pf->hw;
5539 u16 pending, i = 0;
5540 i40e_status ret;
5541 u16 opcode;
Shannon Nelson86df2422014-05-20 08:01:35 +00005542 u32 oldval;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005543 u32 val;
5544
Shannon Nelson86df2422014-05-20 08:01:35 +00005545 /* check for error indications */
5546 val = rd32(&pf->hw, pf->hw.aq.arq.len);
5547 oldval = val;
5548 if (val & I40E_PF_ARQLEN_ARQVFE_MASK) {
5549 dev_info(&pf->pdev->dev, "ARQ VF Error detected\n");
5550 val &= ~I40E_PF_ARQLEN_ARQVFE_MASK;
5551 }
5552 if (val & I40E_PF_ARQLEN_ARQOVFL_MASK) {
5553 dev_info(&pf->pdev->dev, "ARQ Overflow Error detected\n");
5554 val &= ~I40E_PF_ARQLEN_ARQOVFL_MASK;
5555 }
5556 if (val & I40E_PF_ARQLEN_ARQCRIT_MASK) {
5557 dev_info(&pf->pdev->dev, "ARQ Critical Error detected\n");
5558 val &= ~I40E_PF_ARQLEN_ARQCRIT_MASK;
5559 }
5560 if (oldval != val)
5561 wr32(&pf->hw, pf->hw.aq.arq.len, val);
5562
5563 val = rd32(&pf->hw, pf->hw.aq.asq.len);
5564 oldval = val;
5565 if (val & I40E_PF_ATQLEN_ATQVFE_MASK) {
5566 dev_info(&pf->pdev->dev, "ASQ VF Error detected\n");
5567 val &= ~I40E_PF_ATQLEN_ATQVFE_MASK;
5568 }
5569 if (val & I40E_PF_ATQLEN_ATQOVFL_MASK) {
5570 dev_info(&pf->pdev->dev, "ASQ Overflow Error detected\n");
5571 val &= ~I40E_PF_ATQLEN_ATQOVFL_MASK;
5572 }
5573 if (val & I40E_PF_ATQLEN_ATQCRIT_MASK) {
5574 dev_info(&pf->pdev->dev, "ASQ Critical Error detected\n");
5575 val &= ~I40E_PF_ATQLEN_ATQCRIT_MASK;
5576 }
5577 if (oldval != val)
5578 wr32(&pf->hw, pf->hw.aq.asq.len, val);
5579
Mitch Williams3197ce22013-11-28 06:39:39 +00005580 event.msg_size = I40E_MAX_AQ_BUF_SIZE;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005581 event.msg_buf = kzalloc(event.msg_size, GFP_KERNEL);
5582 if (!event.msg_buf)
5583 return;
5584
5585 do {
Mitch Williams2f019122013-11-28 06:39:33 +00005586 event.msg_size = I40E_MAX_AQ_BUF_SIZE; /* reinit each time */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005587 ret = i40e_clean_arq_element(hw, &event, &pending);
Mitch Williams56497972014-06-04 08:45:18 +00005588 if (ret == I40E_ERR_ADMIN_QUEUE_NO_WORK)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005589 break;
Mitch Williams56497972014-06-04 08:45:18 +00005590 else if (ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005591 dev_info(&pf->pdev->dev, "ARQ event error %d\n", ret);
5592 break;
5593 }
5594
5595 opcode = le16_to_cpu(event.desc.opcode);
5596 switch (opcode) {
5597
5598 case i40e_aqc_opc_get_link_status:
5599 i40e_handle_link_event(pf, &event);
5600 break;
5601 case i40e_aqc_opc_send_msg_to_pf:
5602 ret = i40e_vc_process_vf_msg(pf,
5603 le16_to_cpu(event.desc.retval),
5604 le32_to_cpu(event.desc.cookie_high),
5605 le32_to_cpu(event.desc.cookie_low),
5606 event.msg_buf,
5607 event.msg_size);
5608 break;
5609 case i40e_aqc_opc_lldp_update_mib:
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005610 dev_dbg(&pf->pdev->dev, "ARQ: Update LLDP MIB event received\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005611#ifdef CONFIG_I40E_DCB
5612 rtnl_lock();
5613 ret = i40e_handle_lldp_event(pf, &event);
5614 rtnl_unlock();
5615#endif /* CONFIG_I40E_DCB */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005616 break;
5617 case i40e_aqc_opc_event_lan_overflow:
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005618 dev_dbg(&pf->pdev->dev, "ARQ LAN queue overflow event received\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005619 i40e_handle_lan_overflow_event(pf, &event);
5620 break;
Shannon Nelson0467bc92013-12-18 13:45:58 +00005621 case i40e_aqc_opc_send_msg_to_peer:
5622 dev_info(&pf->pdev->dev, "ARQ: Msg from other pf\n");
5623 break;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005624 default:
5625 dev_info(&pf->pdev->dev,
Shannon Nelson0467bc92013-12-18 13:45:58 +00005626 "ARQ Error: Unknown event 0x%04x received\n",
5627 opcode);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005628 break;
5629 }
5630 } while (pending && (i++ < pf->adminq_work_limit));
5631
5632 clear_bit(__I40E_ADMINQ_EVENT_PENDING, &pf->state);
5633 /* re-enable Admin queue interrupt cause */
5634 val = rd32(hw, I40E_PFINT_ICR0_ENA);
5635 val |= I40E_PFINT_ICR0_ENA_ADMINQ_MASK;
5636 wr32(hw, I40E_PFINT_ICR0_ENA, val);
5637 i40e_flush(hw);
5638
5639 kfree(event.msg_buf);
5640}
5641
5642/**
Shannon Nelson4eb3f762014-03-06 08:59:58 +00005643 * i40e_verify_eeprom - make sure eeprom is good to use
5644 * @pf: board private structure
5645 **/
5646static void i40e_verify_eeprom(struct i40e_pf *pf)
5647{
5648 int err;
5649
5650 err = i40e_diag_eeprom_test(&pf->hw);
5651 if (err) {
5652 /* retry in case of garbage read */
5653 err = i40e_diag_eeprom_test(&pf->hw);
5654 if (err) {
5655 dev_info(&pf->pdev->dev, "eeprom check failed (%d), Tx/Rx traffic disabled\n",
5656 err);
5657 set_bit(__I40E_BAD_EEPROM, &pf->state);
5658 }
5659 }
5660
5661 if (!err && test_bit(__I40E_BAD_EEPROM, &pf->state)) {
5662 dev_info(&pf->pdev->dev, "eeprom check passed, Tx/Rx traffic enabled\n");
5663 clear_bit(__I40E_BAD_EEPROM, &pf->state);
5664 }
5665}
5666
5667/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005668 * i40e_reconstitute_veb - rebuild the VEB and anything connected to it
5669 * @veb: pointer to the VEB instance
5670 *
5671 * This is a recursive function that first builds the attached VSIs then
5672 * recurses in to build the next layer of VEB. We track the connections
5673 * through our own index numbers because the seid's from the HW could
5674 * change across the reset.
5675 **/
5676static int i40e_reconstitute_veb(struct i40e_veb *veb)
5677{
5678 struct i40e_vsi *ctl_vsi = NULL;
5679 struct i40e_pf *pf = veb->pf;
5680 int v, veb_idx;
5681 int ret;
5682
5683 /* build VSI that owns this VEB, temporarily attached to base VEB */
Mitch Williams505682c2014-05-20 08:01:37 +00005684 for (v = 0; v < pf->num_alloc_vsi && !ctl_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005685 if (pf->vsi[v] &&
5686 pf->vsi[v]->veb_idx == veb->idx &&
5687 pf->vsi[v]->flags & I40E_VSI_FLAG_VEB_OWNER) {
5688 ctl_vsi = pf->vsi[v];
5689 break;
5690 }
5691 }
5692 if (!ctl_vsi) {
5693 dev_info(&pf->pdev->dev,
5694 "missing owner VSI for veb_idx %d\n", veb->idx);
5695 ret = -ENOENT;
5696 goto end_reconstitute;
5697 }
5698 if (ctl_vsi != pf->vsi[pf->lan_vsi])
5699 ctl_vsi->uplink_seid = pf->vsi[pf->lan_vsi]->uplink_seid;
5700 ret = i40e_add_vsi(ctl_vsi);
5701 if (ret) {
5702 dev_info(&pf->pdev->dev,
5703 "rebuild of owner VSI failed: %d\n", ret);
5704 goto end_reconstitute;
5705 }
5706 i40e_vsi_reset_stats(ctl_vsi);
5707
5708 /* create the VEB in the switch and move the VSI onto the VEB */
5709 ret = i40e_add_veb(veb, ctl_vsi);
5710 if (ret)
5711 goto end_reconstitute;
5712
5713 /* create the remaining VSIs attached to this VEB */
Mitch Williams505682c2014-05-20 08:01:37 +00005714 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005715 if (!pf->vsi[v] || pf->vsi[v] == ctl_vsi)
5716 continue;
5717
5718 if (pf->vsi[v]->veb_idx == veb->idx) {
5719 struct i40e_vsi *vsi = pf->vsi[v];
5720 vsi->uplink_seid = veb->seid;
5721 ret = i40e_add_vsi(vsi);
5722 if (ret) {
5723 dev_info(&pf->pdev->dev,
5724 "rebuild of vsi_idx %d failed: %d\n",
5725 v, ret);
5726 goto end_reconstitute;
5727 }
5728 i40e_vsi_reset_stats(vsi);
5729 }
5730 }
5731
5732 /* create any VEBs attached to this VEB - RECURSION */
5733 for (veb_idx = 0; veb_idx < I40E_MAX_VEB; veb_idx++) {
5734 if (pf->veb[veb_idx] && pf->veb[veb_idx]->veb_idx == veb->idx) {
5735 pf->veb[veb_idx]->uplink_seid = veb->seid;
5736 ret = i40e_reconstitute_veb(pf->veb[veb_idx]);
5737 if (ret)
5738 break;
5739 }
5740 }
5741
5742end_reconstitute:
5743 return ret;
5744}
5745
5746/**
5747 * i40e_get_capabilities - get info about the HW
5748 * @pf: the PF struct
5749 **/
5750static int i40e_get_capabilities(struct i40e_pf *pf)
5751{
5752 struct i40e_aqc_list_capabilities_element_resp *cap_buf;
5753 u16 data_size;
5754 int buf_len;
5755 int err;
5756
5757 buf_len = 40 * sizeof(struct i40e_aqc_list_capabilities_element_resp);
5758 do {
5759 cap_buf = kzalloc(buf_len, GFP_KERNEL);
5760 if (!cap_buf)
5761 return -ENOMEM;
5762
5763 /* this loads the data into the hw struct for us */
5764 err = i40e_aq_discover_capabilities(&pf->hw, cap_buf, buf_len,
5765 &data_size,
5766 i40e_aqc_opc_list_func_capabilities,
5767 NULL);
5768 /* data loaded, buffer no longer needed */
5769 kfree(cap_buf);
5770
5771 if (pf->hw.aq.asq_last_status == I40E_AQ_RC_ENOMEM) {
5772 /* retry with a larger buffer */
5773 buf_len = data_size;
5774 } else if (pf->hw.aq.asq_last_status != I40E_AQ_RC_OK) {
5775 dev_info(&pf->pdev->dev,
5776 "capability discovery failed: aq=%d\n",
5777 pf->hw.aq.asq_last_status);
5778 return -ENODEV;
5779 }
5780 } while (err);
5781
Anjali Singhai Jainac71b7b2014-02-06 05:51:08 +00005782 if (((pf->hw.aq.fw_maj_ver == 2) && (pf->hw.aq.fw_min_ver < 22)) ||
5783 (pf->hw.aq.fw_maj_ver < 2)) {
5784 pf->hw.func_caps.num_msix_vectors++;
5785 pf->hw.func_caps.num_msix_vectors_vf++;
5786 }
5787
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005788 if (pf->hw.debug_mask & I40E_DEBUG_USER)
5789 dev_info(&pf->pdev->dev,
5790 "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",
5791 pf->hw.pf_id, pf->hw.func_caps.num_vfs,
5792 pf->hw.func_caps.num_msix_vectors,
5793 pf->hw.func_caps.num_msix_vectors_vf,
5794 pf->hw.func_caps.fd_filters_guaranteed,
5795 pf->hw.func_caps.fd_filters_best_effort,
5796 pf->hw.func_caps.num_tx_qp,
5797 pf->hw.func_caps.num_vsis);
5798
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00005799#define DEF_NUM_VSI (1 + (pf->hw.func_caps.fcoe ? 1 : 0) \
5800 + pf->hw.func_caps.num_vfs)
5801 if (pf->hw.revision_id == 0 && (DEF_NUM_VSI > pf->hw.func_caps.num_vsis)) {
5802 dev_info(&pf->pdev->dev,
5803 "got num_vsis %d, setting num_vsis to %d\n",
5804 pf->hw.func_caps.num_vsis, DEF_NUM_VSI);
5805 pf->hw.func_caps.num_vsis = DEF_NUM_VSI;
5806 }
5807
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005808 return 0;
5809}
5810
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08005811static int i40e_vsi_clear(struct i40e_vsi *vsi);
5812
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005813/**
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08005814 * i40e_fdir_sb_setup - initialize the Flow Director resources for Sideband
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005815 * @pf: board private structure
5816 **/
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08005817static void i40e_fdir_sb_setup(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005818{
5819 struct i40e_vsi *vsi;
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00005820 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005821
Jesse Brandeburg407e0632014-06-03 23:50:12 +00005822 /* quick workaround for an NVM issue that leaves a critical register
5823 * uninitialized
5824 */
5825 if (!rd32(&pf->hw, I40E_GLQF_HKEY(0))) {
5826 static const u32 hkey[] = {
5827 0xe640d33f, 0xcdfe98ab, 0x73fa7161, 0x0d7a7d36,
5828 0xeacb7d61, 0xaa4f05b6, 0x9c5c89ed, 0xfc425ddb,
5829 0xa4654832, 0xfc7461d4, 0x8f827619, 0xf5c63c21,
5830 0x95b3a76d};
5831
5832 for (i = 0; i <= I40E_GLQF_HKEY_MAX_INDEX; i++)
5833 wr32(&pf->hw, I40E_GLQF_HKEY(i), hkey[i]);
5834 }
5835
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08005836 if (!(pf->flags & I40E_FLAG_FD_SB_ENABLED))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005837 return;
5838
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08005839 /* find existing VSI and see if it needs configuring */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005840 vsi = NULL;
Mitch Williams505682c2014-05-20 08:01:37 +00005841 for (i = 0; i < pf->num_alloc_vsi; i++) {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08005842 if (pf->vsi[i] && pf->vsi[i]->type == I40E_VSI_FDIR) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005843 vsi = pf->vsi[i];
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08005844 break;
5845 }
5846 }
5847
5848 /* create a new VSI if none exists */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005849 if (!vsi) {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08005850 vsi = i40e_vsi_setup(pf, I40E_VSI_FDIR,
5851 pf->vsi[pf->lan_vsi]->seid, 0);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005852 if (!vsi) {
5853 dev_info(&pf->pdev->dev, "Couldn't create FDir VSI\n");
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00005854 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
5855 return;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005856 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005857 }
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00005858
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08005859 i40e_vsi_setup_irqhandler(vsi, i40e_fdir_clean_ring);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005860}
5861
5862/**
5863 * i40e_fdir_teardown - release the Flow Director resources
5864 * @pf: board private structure
5865 **/
5866static void i40e_fdir_teardown(struct i40e_pf *pf)
5867{
5868 int i;
5869
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00005870 i40e_fdir_filter_exit(pf);
Mitch Williams505682c2014-05-20 08:01:37 +00005871 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005872 if (pf->vsi[i] && pf->vsi[i]->type == I40E_VSI_FDIR) {
5873 i40e_vsi_release(pf->vsi[i]);
5874 break;
5875 }
5876 }
5877}
5878
5879/**
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00005880 * i40e_prep_for_reset - prep for the core to reset
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005881 * @pf: board private structure
5882 *
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00005883 * Close up the VFs and other things in prep for pf Reset.
5884 **/
Shannon Nelson23cfbe02014-06-04 01:23:14 +00005885static void i40e_prep_for_reset(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005886{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005887 struct i40e_hw *hw = &pf->hw;
Shannon Nelson60442de2014-04-23 04:50:13 +00005888 i40e_status ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005889 u32 v;
5890
5891 clear_bit(__I40E_RESET_INTR_RECEIVED, &pf->state);
5892 if (test_and_set_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state))
Shannon Nelson23cfbe02014-06-04 01:23:14 +00005893 return;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005894
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005895 dev_dbg(&pf->pdev->dev, "Tearing down internal switch for reset\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005896
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005897 /* quiesce the VSIs and their queues that are not already DOWN */
5898 i40e_pf_quiesce_all_vsi(pf);
5899
Mitch Williams505682c2014-05-20 08:01:37 +00005900 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005901 if (pf->vsi[v])
5902 pf->vsi[v]->seid = 0;
5903 }
5904
5905 i40e_shutdown_adminq(&pf->hw);
5906
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00005907 /* call shutdown HMC */
Shannon Nelson60442de2014-04-23 04:50:13 +00005908 if (hw->hmc.hmc_obj) {
5909 ret = i40e_shutdown_lan_hmc(hw);
Shannon Nelson23cfbe02014-06-04 01:23:14 +00005910 if (ret)
Shannon Nelson60442de2014-04-23 04:50:13 +00005911 dev_warn(&pf->pdev->dev,
5912 "shutdown_lan_hmc failed: %d\n", ret);
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00005913 }
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00005914}
5915
5916/**
Jesse Brandeburg44033fa2014-04-23 04:50:15 +00005917 * i40e_send_version - update firmware with driver version
5918 * @pf: PF struct
5919 */
5920static void i40e_send_version(struct i40e_pf *pf)
5921{
5922 struct i40e_driver_version dv;
5923
5924 dv.major_version = DRV_VERSION_MAJOR;
5925 dv.minor_version = DRV_VERSION_MINOR;
5926 dv.build_version = DRV_VERSION_BUILD;
5927 dv.subbuild_version = 0;
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00005928 strlcpy(dv.driver_string, DRV_VERSION, sizeof(dv.driver_string));
Jesse Brandeburg44033fa2014-04-23 04:50:15 +00005929 i40e_aq_send_driver_version(&pf->hw, &dv, NULL);
5930}
5931
5932/**
Jesse Brandeburg4dda12e2013-12-18 13:46:01 +00005933 * i40e_reset_and_rebuild - reset and rebuild using a saved config
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00005934 * @pf: board private structure
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00005935 * @reinit: if the Main VSI needs to re-initialized.
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00005936 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00005937static void i40e_reset_and_rebuild(struct i40e_pf *pf, bool reinit)
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00005938{
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00005939 struct i40e_hw *hw = &pf->hw;
5940 i40e_status ret;
5941 u32 v;
5942
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005943 /* Now we wait for GRST to settle out.
5944 * We don't have to delete the VEBs or VSIs from the hw switch
5945 * because the reset will make them disappear.
5946 */
5947 ret = i40e_pf_reset(hw);
Akeem G Abodunrinb5565402014-04-09 05:59:04 +00005948 if (ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005949 dev_info(&pf->pdev->dev, "PF reset failed, %d\n", ret);
Akeem G Abodunrinb5565402014-04-09 05:59:04 +00005950 goto end_core_reset;
5951 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005952 pf->pfr_count++;
5953
5954 if (test_bit(__I40E_DOWN, &pf->state))
5955 goto end_core_reset;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005956 dev_dbg(&pf->pdev->dev, "Rebuilding internal switch\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005957
5958 /* rebuild the basics for the AdminQ, HMC, and initial HW switch */
5959 ret = i40e_init_adminq(&pf->hw);
5960 if (ret) {
5961 dev_info(&pf->pdev->dev, "Rebuild AdminQ failed, %d\n", ret);
5962 goto end_core_reset;
5963 }
5964
Shannon Nelson4eb3f762014-03-06 08:59:58 +00005965 /* re-verify the eeprom if we just had an EMP reset */
5966 if (test_bit(__I40E_EMP_RESET_REQUESTED, &pf->state)) {
5967 clear_bit(__I40E_EMP_RESET_REQUESTED, &pf->state);
5968 i40e_verify_eeprom(pf);
5969 }
5970
Shannon Nelsone78ac4bf2014-05-10 04:49:09 +00005971 i40e_clear_pxe_mode(hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005972 ret = i40e_get_capabilities(pf);
5973 if (ret) {
5974 dev_info(&pf->pdev->dev, "i40e_get_capabilities failed, %d\n",
5975 ret);
5976 goto end_core_reset;
5977 }
5978
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005979 ret = i40e_init_lan_hmc(hw, hw->func_caps.num_tx_qp,
5980 hw->func_caps.num_rx_qp,
5981 pf->fcoe_hmc_cntx_num, pf->fcoe_hmc_filt_num);
5982 if (ret) {
5983 dev_info(&pf->pdev->dev, "init_lan_hmc failed: %d\n", ret);
5984 goto end_core_reset;
5985 }
5986 ret = i40e_configure_lan_hmc(hw, I40E_HMC_MODEL_DIRECT_ONLY);
5987 if (ret) {
5988 dev_info(&pf->pdev->dev, "configure_lan_hmc failed: %d\n", ret);
5989 goto end_core_reset;
5990 }
5991
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005992#ifdef CONFIG_I40E_DCB
5993 ret = i40e_init_pf_dcb(pf);
5994 if (ret) {
5995 dev_info(&pf->pdev->dev, "init_pf_dcb failed: %d\n", ret);
5996 goto end_core_reset;
5997 }
5998#endif /* CONFIG_I40E_DCB */
Vasu Dev38e00432014-08-01 13:27:03 -07005999#ifdef I40E_FCOE
6000 ret = i40e_init_pf_fcoe(pf);
6001 if (ret)
6002 dev_info(&pf->pdev->dev, "init_pf_fcoe failed: %d\n", ret);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08006003
Vasu Dev38e00432014-08-01 13:27:03 -07006004#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006005 /* do basic switch setup */
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006006 ret = i40e_setup_pf_switch(pf, reinit);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006007 if (ret)
6008 goto end_core_reset;
6009
6010 /* Rebuild the VSIs and VEBs that existed before reset.
6011 * They are still in our local switch element arrays, so only
6012 * need to rebuild the switch model in the HW.
6013 *
6014 * If there were VEBs but the reconstitution failed, we'll try
6015 * try to recover minimal use by getting the basic PF VSI working.
6016 */
6017 if (pf->vsi[pf->lan_vsi]->uplink_seid != pf->mac_seid) {
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00006018 dev_dbg(&pf->pdev->dev, "attempting to rebuild switch\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006019 /* find the one VEB connected to the MAC, and find orphans */
6020 for (v = 0; v < I40E_MAX_VEB; v++) {
6021 if (!pf->veb[v])
6022 continue;
6023
6024 if (pf->veb[v]->uplink_seid == pf->mac_seid ||
6025 pf->veb[v]->uplink_seid == 0) {
6026 ret = i40e_reconstitute_veb(pf->veb[v]);
6027
6028 if (!ret)
6029 continue;
6030
6031 /* If Main VEB failed, we're in deep doodoo,
6032 * so give up rebuilding the switch and set up
6033 * for minimal rebuild of PF VSI.
6034 * If orphan failed, we'll report the error
6035 * but try to keep going.
6036 */
6037 if (pf->veb[v]->uplink_seid == pf->mac_seid) {
6038 dev_info(&pf->pdev->dev,
6039 "rebuild of switch failed: %d, will try to set up simple PF connection\n",
6040 ret);
6041 pf->vsi[pf->lan_vsi]->uplink_seid
6042 = pf->mac_seid;
6043 break;
6044 } else if (pf->veb[v]->uplink_seid == 0) {
6045 dev_info(&pf->pdev->dev,
6046 "rebuild of orphan VEB failed: %d\n",
6047 ret);
6048 }
6049 }
6050 }
6051 }
6052
6053 if (pf->vsi[pf->lan_vsi]->uplink_seid == pf->mac_seid) {
Shannon Nelsoncde4cbc2014-06-04 01:23:17 +00006054 dev_dbg(&pf->pdev->dev, "attempting to rebuild PF VSI\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006055 /* no VEB, so rebuild only the Main VSI */
6056 ret = i40e_add_vsi(pf->vsi[pf->lan_vsi]);
6057 if (ret) {
6058 dev_info(&pf->pdev->dev,
6059 "rebuild of Main VSI failed: %d\n", ret);
6060 goto end_core_reset;
6061 }
6062 }
6063
6064 /* reinit the misc interrupt */
6065 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
6066 ret = i40e_setup_misc_vector(pf);
6067
6068 /* restart the VSIs that were rebuilt and running before the reset */
6069 i40e_pf_unquiesce_all_vsi(pf);
6070
Mitch Williams69f64b22014-02-13 03:48:46 -08006071 if (pf->num_alloc_vfs) {
6072 for (v = 0; v < pf->num_alloc_vfs; v++)
6073 i40e_reset_vf(&pf->vf[v], true);
6074 }
6075
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006076 /* tell the firmware that we're starting */
Jesse Brandeburg44033fa2014-04-23 04:50:15 +00006077 i40e_send_version(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006078
6079end_core_reset:
6080 clear_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state);
6081}
6082
6083/**
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006084 * i40e_handle_reset_warning - prep for the pf to reset, reset and rebuild
6085 * @pf: board private structure
6086 *
6087 * Close up the VFs and other things in prep for a Core Reset,
6088 * then get ready to rebuild the world.
6089 **/
6090static void i40e_handle_reset_warning(struct i40e_pf *pf)
6091{
Shannon Nelson23cfbe02014-06-04 01:23:14 +00006092 i40e_prep_for_reset(pf);
6093 i40e_reset_and_rebuild(pf, false);
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006094}
6095
6096/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006097 * i40e_handle_mdd_event
6098 * @pf: pointer to the pf structure
6099 *
6100 * Called from the MDD irq handler to identify possibly malicious vfs
6101 **/
6102static void i40e_handle_mdd_event(struct i40e_pf *pf)
6103{
6104 struct i40e_hw *hw = &pf->hw;
6105 bool mdd_detected = false;
Neerav Parikhdf430b12014-06-04 01:23:15 +00006106 bool pf_mdd_detected = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006107 struct i40e_vf *vf;
6108 u32 reg;
6109 int i;
6110
6111 if (!test_bit(__I40E_MDD_EVENT_PENDING, &pf->state))
6112 return;
6113
6114 /* find what triggered the MDD event */
6115 reg = rd32(hw, I40E_GL_MDET_TX);
6116 if (reg & I40E_GL_MDET_TX_VALID_MASK) {
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00006117 u8 pf_num = (reg & I40E_GL_MDET_TX_PF_NUM_MASK) >>
6118 I40E_GL_MDET_TX_PF_NUM_SHIFT;
6119 u8 vf_num = (reg & I40E_GL_MDET_TX_VF_NUM_MASK) >>
6120 I40E_GL_MDET_TX_VF_NUM_SHIFT;
6121 u8 event = (reg & I40E_GL_MDET_TX_EVENT_SHIFT) >>
6122 I40E_GL_MDET_TX_EVENT_SHIFT;
6123 u8 queue = (reg & I40E_GL_MDET_TX_QUEUE_MASK) >>
6124 I40E_GL_MDET_TX_QUEUE_SHIFT;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006125 dev_info(&pf->pdev->dev,
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00006126 "Malicious Driver Detection event 0x%02x on TX queue %d pf number 0x%02x vf number 0x%02x\n",
6127 event, queue, pf_num, vf_num);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006128 wr32(hw, I40E_GL_MDET_TX, 0xffffffff);
6129 mdd_detected = true;
6130 }
6131 reg = rd32(hw, I40E_GL_MDET_RX);
6132 if (reg & I40E_GL_MDET_RX_VALID_MASK) {
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00006133 u8 func = (reg & I40E_GL_MDET_RX_FUNCTION_MASK) >>
6134 I40E_GL_MDET_RX_FUNCTION_SHIFT;
6135 u8 event = (reg & I40E_GL_MDET_RX_EVENT_SHIFT) >>
6136 I40E_GL_MDET_RX_EVENT_SHIFT;
6137 u8 queue = (reg & I40E_GL_MDET_RX_QUEUE_MASK) >>
6138 I40E_GL_MDET_RX_QUEUE_SHIFT;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006139 dev_info(&pf->pdev->dev,
Jesse Brandeburgf29eaa32014-02-11 08:24:12 +00006140 "Malicious Driver Detection event 0x%02x on RX queue %d of function 0x%02x\n",
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006141 event, queue, func);
6142 wr32(hw, I40E_GL_MDET_RX, 0xffffffff);
6143 mdd_detected = true;
6144 }
6145
Neerav Parikhdf430b12014-06-04 01:23:15 +00006146 if (mdd_detected) {
6147 reg = rd32(hw, I40E_PF_MDET_TX);
6148 if (reg & I40E_PF_MDET_TX_VALID_MASK) {
6149 wr32(hw, I40E_PF_MDET_TX, 0xFFFF);
6150 dev_info(&pf->pdev->dev,
6151 "MDD TX event is for this function 0x%08x, requesting PF reset.\n",
6152 reg);
6153 pf_mdd_detected = true;
6154 }
6155 reg = rd32(hw, I40E_PF_MDET_RX);
6156 if (reg & I40E_PF_MDET_RX_VALID_MASK) {
6157 wr32(hw, I40E_PF_MDET_RX, 0xFFFF);
6158 dev_info(&pf->pdev->dev,
6159 "MDD RX event is for this function 0x%08x, requesting PF reset.\n",
6160 reg);
6161 pf_mdd_detected = true;
6162 }
6163 /* Queue belongs to the PF, initiate a reset */
6164 if (pf_mdd_detected) {
6165 set_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
6166 i40e_service_event_schedule(pf);
6167 }
6168 }
6169
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006170 /* see if one of the VFs needs its hand slapped */
6171 for (i = 0; i < pf->num_alloc_vfs && mdd_detected; i++) {
6172 vf = &(pf->vf[i]);
6173 reg = rd32(hw, I40E_VP_MDET_TX(i));
6174 if (reg & I40E_VP_MDET_TX_VALID_MASK) {
6175 wr32(hw, I40E_VP_MDET_TX(i), 0xFFFF);
6176 vf->num_mdd_events++;
6177 dev_info(&pf->pdev->dev, "MDD TX event on VF %d\n", i);
6178 }
6179
6180 reg = rd32(hw, I40E_VP_MDET_RX(i));
6181 if (reg & I40E_VP_MDET_RX_VALID_MASK) {
6182 wr32(hw, I40E_VP_MDET_RX(i), 0xFFFF);
6183 vf->num_mdd_events++;
6184 dev_info(&pf->pdev->dev, "MDD RX event on VF %d\n", i);
6185 }
6186
6187 if (vf->num_mdd_events > I40E_DEFAULT_NUM_MDD_EVENTS_ALLOWED) {
6188 dev_info(&pf->pdev->dev,
6189 "Too many MDD events on VF %d, disabled\n", i);
6190 dev_info(&pf->pdev->dev,
6191 "Use PF Control I/F to re-enable the VF\n");
6192 set_bit(I40E_VF_STAT_DISABLED, &vf->vf_states);
6193 }
6194 }
6195
6196 /* re-enable mdd interrupt cause */
6197 clear_bit(__I40E_MDD_EVENT_PENDING, &pf->state);
6198 reg = rd32(hw, I40E_PFINT_ICR0_ENA);
6199 reg |= I40E_PFINT_ICR0_ENA_MAL_DETECT_MASK;
6200 wr32(hw, I40E_PFINT_ICR0_ENA, reg);
6201 i40e_flush(hw);
6202}
6203
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00006204#ifdef CONFIG_I40E_VXLAN
6205/**
6206 * i40e_sync_vxlan_filters_subtask - Sync the VSI filter list with HW
6207 * @pf: board private structure
6208 **/
6209static void i40e_sync_vxlan_filters_subtask(struct i40e_pf *pf)
6210{
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00006211 struct i40e_hw *hw = &pf->hw;
6212 i40e_status ret;
6213 u8 filter_index;
6214 __be16 port;
6215 int i;
6216
6217 if (!(pf->flags & I40E_FLAG_VXLAN_FILTER_SYNC))
6218 return;
6219
6220 pf->flags &= ~I40E_FLAG_VXLAN_FILTER_SYNC;
6221
6222 for (i = 0; i < I40E_MAX_PF_UDP_OFFLOAD_PORTS; i++) {
6223 if (pf->pending_vxlan_bitmap & (1 << i)) {
6224 pf->pending_vxlan_bitmap &= ~(1 << i);
6225 port = pf->vxlan_ports[i];
6226 ret = port ?
6227 i40e_aq_add_udp_tunnel(hw, ntohs(port),
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00006228 I40E_AQC_TUNNEL_TYPE_VXLAN,
6229 &filter_index, NULL)
6230 : i40e_aq_del_udp_tunnel(hw, i, NULL);
6231
6232 if (ret) {
6233 dev_info(&pf->pdev->dev, "Failed to execute AQ command for %s port %d with index %d\n",
6234 port ? "adding" : "deleting",
6235 ntohs(port), port ? i : i);
6236
6237 pf->vxlan_ports[i] = 0;
6238 } else {
6239 dev_info(&pf->pdev->dev, "%s port %d with AQ command with index %d\n",
6240 port ? "Added" : "Deleted",
6241 ntohs(port), port ? i : filter_index);
6242 }
6243 }
6244 }
6245}
6246
6247#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006248/**
6249 * i40e_service_task - Run the driver's async subtasks
6250 * @work: pointer to work_struct containing our data
6251 **/
6252static void i40e_service_task(struct work_struct *work)
6253{
6254 struct i40e_pf *pf = container_of(work,
6255 struct i40e_pf,
6256 service_task);
6257 unsigned long start_time = jiffies;
6258
Shannon Nelsone57a2fe2014-06-03 23:50:19 +00006259 /* don't bother with service tasks if a reset is in progress */
6260 if (test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state)) {
6261 i40e_service_event_complete(pf);
6262 return;
6263 }
6264
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006265 i40e_reset_subtask(pf);
6266 i40e_handle_mdd_event(pf);
6267 i40e_vc_process_vflr_event(pf);
6268 i40e_watchdog_subtask(pf);
6269 i40e_fdir_reinit_subtask(pf);
6270 i40e_check_hang_subtask(pf);
6271 i40e_sync_filters_subtask(pf);
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00006272#ifdef CONFIG_I40E_VXLAN
6273 i40e_sync_vxlan_filters_subtask(pf);
6274#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006275 i40e_clean_adminq_subtask(pf);
6276
6277 i40e_service_event_complete(pf);
6278
6279 /* If the tasks have taken longer than one timer cycle or there
6280 * is more work to be done, reschedule the service task now
6281 * rather than wait for the timer to tick again.
6282 */
6283 if (time_after(jiffies, (start_time + pf->service_timer_period)) ||
6284 test_bit(__I40E_ADMINQ_EVENT_PENDING, &pf->state) ||
6285 test_bit(__I40E_MDD_EVENT_PENDING, &pf->state) ||
6286 test_bit(__I40E_VFLR_EVENT_PENDING, &pf->state))
6287 i40e_service_event_schedule(pf);
6288}
6289
6290/**
6291 * i40e_service_timer - timer callback
6292 * @data: pointer to PF struct
6293 **/
6294static void i40e_service_timer(unsigned long data)
6295{
6296 struct i40e_pf *pf = (struct i40e_pf *)data;
6297
6298 mod_timer(&pf->service_timer,
6299 round_jiffies(jiffies + pf->service_timer_period));
6300 i40e_service_event_schedule(pf);
6301}
6302
6303/**
6304 * i40e_set_num_rings_in_vsi - Determine number of rings in the VSI
6305 * @vsi: the VSI being configured
6306 **/
6307static int i40e_set_num_rings_in_vsi(struct i40e_vsi *vsi)
6308{
6309 struct i40e_pf *pf = vsi->back;
6310
6311 switch (vsi->type) {
6312 case I40E_VSI_MAIN:
6313 vsi->alloc_queue_pairs = pf->num_lan_qps;
6314 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
6315 I40E_REQ_DESCRIPTOR_MULTIPLE);
6316 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
6317 vsi->num_q_vectors = pf->num_lan_msix;
6318 else
6319 vsi->num_q_vectors = 1;
6320
6321 break;
6322
6323 case I40E_VSI_FDIR:
6324 vsi->alloc_queue_pairs = 1;
6325 vsi->num_desc = ALIGN(I40E_FDIR_RING_COUNT,
6326 I40E_REQ_DESCRIPTOR_MULTIPLE);
6327 vsi->num_q_vectors = 1;
6328 break;
6329
6330 case I40E_VSI_VMDQ2:
6331 vsi->alloc_queue_pairs = pf->num_vmdq_qps;
6332 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
6333 I40E_REQ_DESCRIPTOR_MULTIPLE);
6334 vsi->num_q_vectors = pf->num_vmdq_msix;
6335 break;
6336
6337 case I40E_VSI_SRIOV:
6338 vsi->alloc_queue_pairs = pf->num_vf_qps;
6339 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
6340 I40E_REQ_DESCRIPTOR_MULTIPLE);
6341 break;
6342
Vasu Dev38e00432014-08-01 13:27:03 -07006343#ifdef I40E_FCOE
6344 case I40E_VSI_FCOE:
6345 vsi->alloc_queue_pairs = pf->num_fcoe_qps;
6346 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
6347 I40E_REQ_DESCRIPTOR_MULTIPLE);
6348 vsi->num_q_vectors = pf->num_fcoe_msix;
6349 break;
6350
6351#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006352 default:
6353 WARN_ON(1);
6354 return -ENODATA;
6355 }
6356
6357 return 0;
6358}
6359
6360/**
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006361 * i40e_vsi_alloc_arrays - Allocate queue and vector pointer arrays for the vsi
6362 * @type: VSI pointer
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006363 * @alloc_qvectors: a bool to specify if q_vectors need to be allocated.
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006364 *
6365 * On error: returns error code (negative)
6366 * On success: returns 0
6367 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006368static int i40e_vsi_alloc_arrays(struct i40e_vsi *vsi, bool alloc_qvectors)
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006369{
6370 int size;
6371 int ret = 0;
6372
Shannon Nelsonac6c5e32013-11-20 10:02:57 +00006373 /* allocate memory for both Tx and Rx ring pointers */
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006374 size = sizeof(struct i40e_ring *) * vsi->alloc_queue_pairs * 2;
6375 vsi->tx_rings = kzalloc(size, GFP_KERNEL);
6376 if (!vsi->tx_rings)
6377 return -ENOMEM;
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006378 vsi->rx_rings = &vsi->tx_rings[vsi->alloc_queue_pairs];
6379
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006380 if (alloc_qvectors) {
6381 /* allocate memory for q_vector pointers */
Julia Lawallf57e4fb2014-07-30 03:11:09 +00006382 size = sizeof(struct i40e_q_vector *) * vsi->num_q_vectors;
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006383 vsi->q_vectors = kzalloc(size, GFP_KERNEL);
6384 if (!vsi->q_vectors) {
6385 ret = -ENOMEM;
6386 goto err_vectors;
6387 }
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006388 }
6389 return ret;
6390
6391err_vectors:
6392 kfree(vsi->tx_rings);
6393 return ret;
6394}
6395
6396/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006397 * i40e_vsi_mem_alloc - Allocates the next available struct vsi in the PF
6398 * @pf: board private structure
6399 * @type: type of VSI
6400 *
6401 * On error: returns error code (negative)
6402 * On success: returns vsi index in PF (positive)
6403 **/
6404static int i40e_vsi_mem_alloc(struct i40e_pf *pf, enum i40e_vsi_type type)
6405{
6406 int ret = -ENODEV;
6407 struct i40e_vsi *vsi;
6408 int vsi_idx;
6409 int i;
6410
6411 /* Need to protect the allocation of the VSIs at the PF level */
6412 mutex_lock(&pf->switch_mutex);
6413
6414 /* VSI list may be fragmented if VSI creation/destruction has
6415 * been happening. We can afford to do a quick scan to look
6416 * for any free VSIs in the list.
6417 *
6418 * find next empty vsi slot, looping back around if necessary
6419 */
6420 i = pf->next_vsi;
Mitch Williams505682c2014-05-20 08:01:37 +00006421 while (i < pf->num_alloc_vsi && pf->vsi[i])
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006422 i++;
Mitch Williams505682c2014-05-20 08:01:37 +00006423 if (i >= pf->num_alloc_vsi) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006424 i = 0;
6425 while (i < pf->next_vsi && pf->vsi[i])
6426 i++;
6427 }
6428
Mitch Williams505682c2014-05-20 08:01:37 +00006429 if (i < pf->num_alloc_vsi && !pf->vsi[i]) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006430 vsi_idx = i; /* Found one! */
6431 } else {
6432 ret = -ENODEV;
Alexander Duyck493fb302013-09-28 07:01:44 +00006433 goto unlock_pf; /* out of VSI slots! */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006434 }
6435 pf->next_vsi = ++i;
6436
6437 vsi = kzalloc(sizeof(*vsi), GFP_KERNEL);
6438 if (!vsi) {
6439 ret = -ENOMEM;
Alexander Duyck493fb302013-09-28 07:01:44 +00006440 goto unlock_pf;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006441 }
6442 vsi->type = type;
6443 vsi->back = pf;
6444 set_bit(__I40E_DOWN, &vsi->state);
6445 vsi->flags = 0;
6446 vsi->idx = vsi_idx;
6447 vsi->rx_itr_setting = pf->rx_itr_default;
6448 vsi->tx_itr_setting = pf->tx_itr_default;
6449 vsi->netdev_registered = false;
6450 vsi->work_limit = I40E_DEFAULT_IRQ_WORK;
6451 INIT_LIST_HEAD(&vsi->mac_filter_list);
Shannon Nelson63741842014-04-23 04:50:16 +00006452 vsi->irqs_ready = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006453
Alexander Duyck9f65e152013-09-28 06:00:58 +00006454 ret = i40e_set_num_rings_in_vsi(vsi);
6455 if (ret)
6456 goto err_rings;
6457
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006458 ret = i40e_vsi_alloc_arrays(vsi, true);
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006459 if (ret)
Alexander Duyck9f65e152013-09-28 06:00:58 +00006460 goto err_rings;
Alexander Duyck493fb302013-09-28 07:01:44 +00006461
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006462 /* Setup default MSIX irq handler for VSI */
6463 i40e_vsi_setup_irqhandler(vsi, i40e_msix_clean_rings);
6464
6465 pf->vsi[vsi_idx] = vsi;
6466 ret = vsi_idx;
Alexander Duyck493fb302013-09-28 07:01:44 +00006467 goto unlock_pf;
6468
Alexander Duyck9f65e152013-09-28 06:00:58 +00006469err_rings:
Alexander Duyck493fb302013-09-28 07:01:44 +00006470 pf->next_vsi = i - 1;
6471 kfree(vsi);
6472unlock_pf:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006473 mutex_unlock(&pf->switch_mutex);
6474 return ret;
6475}
6476
6477/**
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006478 * i40e_vsi_free_arrays - Free queue and vector pointer arrays for the VSI
6479 * @type: VSI pointer
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006480 * @free_qvectors: a bool to specify if q_vectors need to be freed.
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006481 *
6482 * On error: returns error code (negative)
6483 * On success: returns 0
6484 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006485static void i40e_vsi_free_arrays(struct i40e_vsi *vsi, bool free_qvectors)
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006486{
6487 /* free the ring and vector containers */
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006488 if (free_qvectors) {
6489 kfree(vsi->q_vectors);
6490 vsi->q_vectors = NULL;
6491 }
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006492 kfree(vsi->tx_rings);
6493 vsi->tx_rings = NULL;
6494 vsi->rx_rings = NULL;
6495}
6496
6497/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006498 * i40e_vsi_clear - Deallocate the VSI provided
6499 * @vsi: the VSI being un-configured
6500 **/
6501static int i40e_vsi_clear(struct i40e_vsi *vsi)
6502{
6503 struct i40e_pf *pf;
6504
6505 if (!vsi)
6506 return 0;
6507
6508 if (!vsi->back)
6509 goto free_vsi;
6510 pf = vsi->back;
6511
6512 mutex_lock(&pf->switch_mutex);
6513 if (!pf->vsi[vsi->idx]) {
6514 dev_err(&pf->pdev->dev, "pf->vsi[%d] is NULL, just free vsi[%d](%p,type %d)\n",
6515 vsi->idx, vsi->idx, vsi, vsi->type);
6516 goto unlock_vsi;
6517 }
6518
6519 if (pf->vsi[vsi->idx] != vsi) {
6520 dev_err(&pf->pdev->dev,
6521 "pf->vsi[%d](%p, type %d) != vsi[%d](%p,type %d): no free!\n",
6522 pf->vsi[vsi->idx]->idx,
6523 pf->vsi[vsi->idx],
6524 pf->vsi[vsi->idx]->type,
6525 vsi->idx, vsi, vsi->type);
6526 goto unlock_vsi;
6527 }
6528
6529 /* updates the pf for this cleared vsi */
6530 i40e_put_lump(pf->qp_pile, vsi->base_queue, vsi->idx);
6531 i40e_put_lump(pf->irq_pile, vsi->base_vector, vsi->idx);
6532
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006533 i40e_vsi_free_arrays(vsi, true);
Alexander Duyck493fb302013-09-28 07:01:44 +00006534
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006535 pf->vsi[vsi->idx] = NULL;
6536 if (vsi->idx < pf->next_vsi)
6537 pf->next_vsi = vsi->idx;
6538
6539unlock_vsi:
6540 mutex_unlock(&pf->switch_mutex);
6541free_vsi:
6542 kfree(vsi);
6543
6544 return 0;
6545}
6546
6547/**
Alexander Duyck9f65e152013-09-28 06:00:58 +00006548 * i40e_vsi_clear_rings - Deallocates the Rx and Tx rings for the provided VSI
6549 * @vsi: the VSI being cleaned
6550 **/
Shannon Nelsonbe1d5ee2013-11-28 06:39:23 +00006551static void i40e_vsi_clear_rings(struct i40e_vsi *vsi)
Alexander Duyck9f65e152013-09-28 06:00:58 +00006552{
6553 int i;
6554
Greg Rose8e9dca52013-12-18 13:45:53 +00006555 if (vsi->tx_rings && vsi->tx_rings[0]) {
Neerav Parikhd7397642013-11-28 06:39:37 +00006556 for (i = 0; i < vsi->alloc_queue_pairs; i++) {
Mitch Williams00403f02013-09-28 07:13:13 +00006557 kfree_rcu(vsi->tx_rings[i], rcu);
6558 vsi->tx_rings[i] = NULL;
6559 vsi->rx_rings[i] = NULL;
6560 }
Shannon Nelsonbe1d5ee2013-11-28 06:39:23 +00006561 }
Alexander Duyck9f65e152013-09-28 06:00:58 +00006562}
6563
6564/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006565 * i40e_alloc_rings - Allocates the Rx and Tx rings for the provided VSI
6566 * @vsi: the VSI being configured
6567 **/
6568static int i40e_alloc_rings(struct i40e_vsi *vsi)
6569{
Akeem G Abodunrine7046ee2014-04-09 05:58:58 +00006570 struct i40e_ring *tx_ring, *rx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006571 struct i40e_pf *pf = vsi->back;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006572 int i;
6573
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006574 /* Set basic values in the rings to be used later during open() */
Neerav Parikhd7397642013-11-28 06:39:37 +00006575 for (i = 0; i < vsi->alloc_queue_pairs; i++) {
Shannon Nelsonac6c5e32013-11-20 10:02:57 +00006576 /* allocate space for both Tx and Rx in one shot */
Alexander Duyck9f65e152013-09-28 06:00:58 +00006577 tx_ring = kzalloc(sizeof(struct i40e_ring) * 2, GFP_KERNEL);
6578 if (!tx_ring)
6579 goto err_out;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006580
6581 tx_ring->queue_index = i;
6582 tx_ring->reg_idx = vsi->base_queue + i;
6583 tx_ring->ring_active = false;
6584 tx_ring->vsi = vsi;
6585 tx_ring->netdev = vsi->netdev;
6586 tx_ring->dev = &pf->pdev->dev;
6587 tx_ring->count = vsi->num_desc;
6588 tx_ring->size = 0;
6589 tx_ring->dcb_tc = 0;
Alexander Duyck9f65e152013-09-28 06:00:58 +00006590 vsi->tx_rings[i] = tx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006591
Alexander Duyck9f65e152013-09-28 06:00:58 +00006592 rx_ring = &tx_ring[1];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006593 rx_ring->queue_index = i;
6594 rx_ring->reg_idx = vsi->base_queue + i;
6595 rx_ring->ring_active = false;
6596 rx_ring->vsi = vsi;
6597 rx_ring->netdev = vsi->netdev;
6598 rx_ring->dev = &pf->pdev->dev;
6599 rx_ring->count = vsi->num_desc;
6600 rx_ring->size = 0;
6601 rx_ring->dcb_tc = 0;
6602 if (pf->flags & I40E_FLAG_16BYTE_RX_DESC_ENABLED)
6603 set_ring_16byte_desc_enabled(rx_ring);
6604 else
6605 clear_ring_16byte_desc_enabled(rx_ring);
Alexander Duyck9f65e152013-09-28 06:00:58 +00006606 vsi->rx_rings[i] = rx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006607 }
6608
6609 return 0;
Alexander Duyck9f65e152013-09-28 06:00:58 +00006610
6611err_out:
6612 i40e_vsi_clear_rings(vsi);
6613 return -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006614}
6615
6616/**
6617 * i40e_reserve_msix_vectors - Reserve MSI-X vectors in the kernel
6618 * @pf: board private structure
6619 * @vectors: the number of MSI-X vectors to request
6620 *
6621 * Returns the number of vectors reserved, or error
6622 **/
6623static int i40e_reserve_msix_vectors(struct i40e_pf *pf, int vectors)
6624{
Alexander Gordeev7b37f372014-02-18 11:11:42 +01006625 vectors = pci_enable_msix_range(pf->pdev, pf->msix_entries,
6626 I40E_MIN_MSIX, vectors);
6627 if (vectors < 0) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006628 dev_info(&pf->pdev->dev,
Alexander Gordeev7b37f372014-02-18 11:11:42 +01006629 "MSI-X vector reservation failed: %d\n", vectors);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006630 vectors = 0;
6631 }
6632
6633 return vectors;
6634}
6635
6636/**
6637 * i40e_init_msix - Setup the MSIX capability
6638 * @pf: board private structure
6639 *
6640 * Work with the OS to set up the MSIX vectors needed.
6641 *
6642 * Returns 0 on success, negative on failure
6643 **/
6644static int i40e_init_msix(struct i40e_pf *pf)
6645{
6646 i40e_status err = 0;
6647 struct i40e_hw *hw = &pf->hw;
6648 int v_budget, i;
6649 int vec;
6650
6651 if (!(pf->flags & I40E_FLAG_MSIX_ENABLED))
6652 return -ENODEV;
6653
6654 /* The number of vectors we'll request will be comprised of:
6655 * - Add 1 for "other" cause for Admin Queue events, etc.
6656 * - The number of LAN queue pairs
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00006657 * - Queues being used for RSS.
6658 * We don't need as many as max_rss_size vectors.
6659 * use rss_size instead in the calculation since that
6660 * is governed by number of cpus in the system.
6661 * - assumes symmetric Tx/Rx pairing
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006662 * - The number of VMDq pairs
Vasu Dev38e00432014-08-01 13:27:03 -07006663#ifdef I40E_FCOE
6664 * - The number of FCOE qps.
6665#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006666 * Once we count this up, try the request.
6667 *
6668 * If we can't get what we want, we'll simplify to nearly nothing
6669 * and try again. If that still fails, we punt.
6670 */
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00006671 pf->num_lan_msix = pf->num_lan_qps - (pf->rss_size_max - pf->rss_size);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006672 pf->num_vmdq_msix = pf->num_vmdq_qps;
6673 v_budget = 1 + pf->num_lan_msix;
6674 v_budget += (pf->num_vmdq_vsis * pf->num_vmdq_msix);
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08006675 if (pf->flags & I40E_FLAG_FD_SB_ENABLED)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006676 v_budget++;
6677
Vasu Dev38e00432014-08-01 13:27:03 -07006678#ifdef I40E_FCOE
6679 if (pf->flags & I40E_FLAG_FCOE_ENABLED) {
6680 pf->num_fcoe_msix = pf->num_fcoe_qps;
6681 v_budget += pf->num_fcoe_msix;
6682 }
6683
6684#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006685 /* Scale down if necessary, and the rings will share vectors */
6686 v_budget = min_t(int, v_budget, hw->func_caps.num_msix_vectors);
6687
6688 pf->msix_entries = kcalloc(v_budget, sizeof(struct msix_entry),
6689 GFP_KERNEL);
6690 if (!pf->msix_entries)
6691 return -ENOMEM;
6692
6693 for (i = 0; i < v_budget; i++)
6694 pf->msix_entries[i].entry = i;
6695 vec = i40e_reserve_msix_vectors(pf, v_budget);
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00006696
6697 if (vec != v_budget) {
6698 /* If we have limited resources, we will start with no vectors
6699 * for the special features and then allocate vectors to some
6700 * of these features based on the policy and at the end disable
6701 * the features that did not get any vectors.
6702 */
Vasu Dev38e00432014-08-01 13:27:03 -07006703#ifdef I40E_FCOE
6704 pf->num_fcoe_qps = 0;
6705 pf->num_fcoe_msix = 0;
6706#endif
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00006707 pf->num_vmdq_msix = 0;
6708 }
6709
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006710 if (vec < I40E_MIN_MSIX) {
6711 pf->flags &= ~I40E_FLAG_MSIX_ENABLED;
6712 kfree(pf->msix_entries);
6713 pf->msix_entries = NULL;
6714 return -ENODEV;
6715
6716 } else if (vec == I40E_MIN_MSIX) {
6717 /* Adjust for minimal MSIX use */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006718 pf->num_vmdq_vsis = 0;
6719 pf->num_vmdq_qps = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006720 pf->num_lan_qps = 1;
6721 pf->num_lan_msix = 1;
6722
6723 } else if (vec != v_budget) {
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00006724 /* reserve the misc vector */
6725 vec--;
6726
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006727 /* Scale vector usage down */
6728 pf->num_vmdq_msix = 1; /* force VMDqs to only one vector */
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00006729 pf->num_vmdq_vsis = 1;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006730
6731 /* partition out the remaining vectors */
6732 switch (vec) {
6733 case 2:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006734 pf->num_lan_msix = 1;
6735 break;
6736 case 3:
Vasu Dev38e00432014-08-01 13:27:03 -07006737#ifdef I40E_FCOE
6738 /* give one vector to FCoE */
6739 if (pf->flags & I40E_FLAG_FCOE_ENABLED) {
6740 pf->num_lan_msix = 1;
6741 pf->num_fcoe_msix = 1;
6742 }
6743#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006744 pf->num_lan_msix = 2;
Vasu Dev38e00432014-08-01 13:27:03 -07006745#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006746 break;
6747 default:
Vasu Dev38e00432014-08-01 13:27:03 -07006748#ifdef I40E_FCOE
6749 /* give one vector to FCoE */
6750 if (pf->flags & I40E_FLAG_FCOE_ENABLED) {
6751 pf->num_fcoe_msix = 1;
6752 vec--;
6753 }
6754#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006755 pf->num_lan_msix = min_t(int, (vec / 2),
6756 pf->num_lan_qps);
6757 pf->num_vmdq_vsis = min_t(int, (vec - pf->num_lan_msix),
6758 I40E_DEFAULT_NUM_VMDQ_VSI);
6759 break;
6760 }
6761 }
6762
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00006763 if ((pf->flags & I40E_FLAG_VMDQ_ENABLED) &&
6764 (pf->num_vmdq_msix == 0)) {
6765 dev_info(&pf->pdev->dev, "VMDq disabled, not enough MSI-X vectors\n");
6766 pf->flags &= ~I40E_FLAG_VMDQ_ENABLED;
6767 }
Vasu Dev38e00432014-08-01 13:27:03 -07006768#ifdef I40E_FCOE
6769
6770 if ((pf->flags & I40E_FLAG_FCOE_ENABLED) && (pf->num_fcoe_msix == 0)) {
6771 dev_info(&pf->pdev->dev, "FCOE disabled, not enough MSI-X vectors\n");
6772 pf->flags &= ~I40E_FLAG_FCOE_ENABLED;
6773 }
6774#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006775 return err;
6776}
6777
6778/**
Greg Rose90e04072014-03-06 08:59:57 +00006779 * i40e_vsi_alloc_q_vector - Allocate memory for a single interrupt vector
Alexander Duyck493fb302013-09-28 07:01:44 +00006780 * @vsi: the VSI being configured
6781 * @v_idx: index of the vector in the vsi struct
6782 *
6783 * We allocate one q_vector. If allocation fails we return -ENOMEM.
6784 **/
Greg Rose90e04072014-03-06 08:59:57 +00006785static int i40e_vsi_alloc_q_vector(struct i40e_vsi *vsi, int v_idx)
Alexander Duyck493fb302013-09-28 07:01:44 +00006786{
6787 struct i40e_q_vector *q_vector;
6788
6789 /* allocate q_vector */
6790 q_vector = kzalloc(sizeof(struct i40e_q_vector), GFP_KERNEL);
6791 if (!q_vector)
6792 return -ENOMEM;
6793
6794 q_vector->vsi = vsi;
6795 q_vector->v_idx = v_idx;
6796 cpumask_set_cpu(v_idx, &q_vector->affinity_mask);
6797 if (vsi->netdev)
6798 netif_napi_add(vsi->netdev, &q_vector->napi,
Jesse Brandeburgeefeace2014-05-10 04:49:13 +00006799 i40e_napi_poll, NAPI_POLL_WEIGHT);
Alexander Duyck493fb302013-09-28 07:01:44 +00006800
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00006801 q_vector->rx.latency_range = I40E_LOW_LATENCY;
6802 q_vector->tx.latency_range = I40E_LOW_LATENCY;
6803
Alexander Duyck493fb302013-09-28 07:01:44 +00006804 /* tie q_vector and vsi together */
6805 vsi->q_vectors[v_idx] = q_vector;
6806
6807 return 0;
6808}
6809
6810/**
Greg Rose90e04072014-03-06 08:59:57 +00006811 * i40e_vsi_alloc_q_vectors - Allocate memory for interrupt vectors
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006812 * @vsi: the VSI being configured
6813 *
6814 * We allocate one q_vector per queue interrupt. If allocation fails we
6815 * return -ENOMEM.
6816 **/
Greg Rose90e04072014-03-06 08:59:57 +00006817static int i40e_vsi_alloc_q_vectors(struct i40e_vsi *vsi)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006818{
6819 struct i40e_pf *pf = vsi->back;
6820 int v_idx, num_q_vectors;
Alexander Duyck493fb302013-09-28 07:01:44 +00006821 int err;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006822
6823 /* if not MSIX, give the one vector only to the LAN VSI */
6824 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
6825 num_q_vectors = vsi->num_q_vectors;
6826 else if (vsi == pf->vsi[pf->lan_vsi])
6827 num_q_vectors = 1;
6828 else
6829 return -EINVAL;
6830
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006831 for (v_idx = 0; v_idx < num_q_vectors; v_idx++) {
Greg Rose90e04072014-03-06 08:59:57 +00006832 err = i40e_vsi_alloc_q_vector(vsi, v_idx);
Alexander Duyck493fb302013-09-28 07:01:44 +00006833 if (err)
6834 goto err_out;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006835 }
6836
6837 return 0;
Alexander Duyck493fb302013-09-28 07:01:44 +00006838
6839err_out:
6840 while (v_idx--)
6841 i40e_free_q_vector(vsi, v_idx);
6842
6843 return err;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006844}
6845
6846/**
6847 * i40e_init_interrupt_scheme - Determine proper interrupt scheme
6848 * @pf: board private structure to initialize
6849 **/
6850static void i40e_init_interrupt_scheme(struct i40e_pf *pf)
6851{
6852 int err = 0;
6853
6854 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
6855 err = i40e_init_msix(pf);
6856 if (err) {
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08006857 pf->flags &= ~(I40E_FLAG_MSIX_ENABLED |
Vasu Dev38e00432014-08-01 13:27:03 -07006858#ifdef I40E_FCOE
6859 I40E_FLAG_FCOE_ENABLED |
6860#endif
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08006861 I40E_FLAG_RSS_ENABLED |
Neerav Parikh4d9b6042014-05-22 06:31:51 +00006862 I40E_FLAG_DCB_CAPABLE |
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08006863 I40E_FLAG_SRIOV_ENABLED |
6864 I40E_FLAG_FD_SB_ENABLED |
6865 I40E_FLAG_FD_ATR_ENABLED |
6866 I40E_FLAG_VMDQ_ENABLED);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006867
6868 /* rework the queue expectations without MSIX */
6869 i40e_determine_queue_usage(pf);
6870 }
6871 }
6872
6873 if (!(pf->flags & I40E_FLAG_MSIX_ENABLED) &&
6874 (pf->flags & I40E_FLAG_MSI_ENABLED)) {
Catherine Sullivan77fa28b2014-02-20 19:29:17 -08006875 dev_info(&pf->pdev->dev, "MSI-X not available, trying MSI\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006876 err = pci_enable_msi(pf->pdev);
6877 if (err) {
Shannon Nelson958a3e32013-09-28 07:13:28 +00006878 dev_info(&pf->pdev->dev, "MSI init failed - %d\n", err);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006879 pf->flags &= ~I40E_FLAG_MSI_ENABLED;
6880 }
6881 }
6882
Shannon Nelson958a3e32013-09-28 07:13:28 +00006883 if (!(pf->flags & (I40E_FLAG_MSIX_ENABLED | I40E_FLAG_MSI_ENABLED)))
Catherine Sullivan77fa28b2014-02-20 19:29:17 -08006884 dev_info(&pf->pdev->dev, "MSI-X and MSI not available, falling back to Legacy IRQ\n");
Shannon Nelson958a3e32013-09-28 07:13:28 +00006885
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006886 /* track first vector for misc interrupts */
6887 err = i40e_get_lump(pf, pf->irq_pile, 1, I40E_PILE_VALID_BIT-1);
6888}
6889
6890/**
6891 * i40e_setup_misc_vector - Setup the misc vector to handle non queue events
6892 * @pf: board private structure
6893 *
6894 * This sets up the handler for MSIX 0, which is used to manage the
6895 * non-queue interrupts, e.g. AdminQ and errors. This is not used
6896 * when in MSI or Legacy interrupt mode.
6897 **/
6898static int i40e_setup_misc_vector(struct i40e_pf *pf)
6899{
6900 struct i40e_hw *hw = &pf->hw;
6901 int err = 0;
6902
6903 /* Only request the irq if this is the first time through, and
6904 * not when we're rebuilding after a Reset
6905 */
6906 if (!test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state)) {
6907 err = request_irq(pf->msix_entries[0].vector,
6908 i40e_intr, 0, pf->misc_int_name, pf);
6909 if (err) {
6910 dev_info(&pf->pdev->dev,
Catherine Sullivan77fa28b2014-02-20 19:29:17 -08006911 "request_irq for %s failed: %d\n",
6912 pf->misc_int_name, err);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006913 return -EFAULT;
6914 }
6915 }
6916
6917 i40e_enable_misc_int_causes(hw);
6918
6919 /* associate no queues to the misc vector */
6920 wr32(hw, I40E_PFINT_LNKLST0, I40E_QUEUE_END_OF_LIST);
6921 wr32(hw, I40E_PFINT_ITR0(I40E_RX_ITR), I40E_ITR_8K);
6922
6923 i40e_flush(hw);
6924
6925 i40e_irq_dynamic_enable_icr0(pf);
6926
6927 return err;
6928}
6929
6930/**
6931 * i40e_config_rss - Prepare for RSS if used
6932 * @pf: board private structure
6933 **/
6934static int i40e_config_rss(struct i40e_pf *pf)
6935{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006936 /* Set of random keys generated using kernel random number generator */
6937 static const u32 seed[I40E_PFQF_HKEY_MAX_INDEX + 1] = {0x41b01687,
6938 0x183cfd8c, 0xce880440, 0x580cbc3c, 0x35897377,
6939 0x328b25e1, 0x4fa98922, 0xb7d90c14, 0xd5bad70d,
6940 0xcd15a2c1, 0xe8580225, 0x4a1e9d11, 0xfe5731be};
Anjali Singhai Jain4617e8c2013-11-20 10:02:56 +00006941 struct i40e_hw *hw = &pf->hw;
6942 u32 lut = 0;
6943 int i, j;
6944 u64 hena;
Carolyn Wybornye157ea32014-06-03 23:50:22 +00006945 u32 reg_val;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006946
6947 /* Fill out hash function seed */
6948 for (i = 0; i <= I40E_PFQF_HKEY_MAX_INDEX; i++)
6949 wr32(hw, I40E_PFQF_HKEY(i), seed[i]);
6950
6951 /* By default we enable TCP/UDP with IPv4/IPv6 ptypes */
6952 hena = (u64)rd32(hw, I40E_PFQF_HENA(0)) |
6953 ((u64)rd32(hw, I40E_PFQF_HENA(1)) << 32);
Mitch Williams12dc4fe2013-11-28 06:39:32 +00006954 hena |= I40E_DEFAULT_RSS_HENA;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006955 wr32(hw, I40E_PFQF_HENA(0), (u32)hena);
6956 wr32(hw, I40E_PFQF_HENA(1), (u32)(hena >> 32));
6957
Carolyn Wybornye157ea32014-06-03 23:50:22 +00006958 /* Check capability and Set table size and register per hw expectation*/
6959 reg_val = rd32(hw, I40E_PFQF_CTL_0);
6960 if (hw->func_caps.rss_table_size == 512) {
6961 reg_val |= I40E_PFQF_CTL_0_HASHLUTSIZE_512;
6962 pf->rss_table_size = 512;
6963 } else {
6964 pf->rss_table_size = 128;
6965 reg_val &= ~I40E_PFQF_CTL_0_HASHLUTSIZE_512;
6966 }
6967 wr32(hw, I40E_PFQF_CTL_0, reg_val);
6968
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006969 /* Populate the LUT with max no. of queues in round robin fashion */
Carolyn Wybornye157ea32014-06-03 23:50:22 +00006970 for (i = 0, j = 0; i < pf->rss_table_size; i++, j++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006971
6972 /* The assumption is that lan qp count will be the highest
6973 * qp count for any PF VSI that needs RSS.
6974 * If multiple VSIs need RSS support, all the qp counts
6975 * for those VSIs should be a power of 2 for RSS to work.
6976 * If LAN VSI is the only consumer for RSS then this requirement
6977 * is not necessary.
6978 */
6979 if (j == pf->rss_size)
6980 j = 0;
6981 /* lut = 4-byte sliding window of 4 lut entries */
6982 lut = (lut << 8) | (j &
6983 ((0x1 << pf->hw.func_caps.rss_table_entry_width) - 1));
6984 /* On i = 3, we have 4 entries in lut; write to the register */
6985 if ((i & 3) == 3)
6986 wr32(hw, I40E_PFQF_HLUT(i >> 2), lut);
6987 }
6988 i40e_flush(hw);
6989
6990 return 0;
6991}
6992
6993/**
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00006994 * i40e_reconfig_rss_queues - change number of queues for rss and rebuild
6995 * @pf: board private structure
6996 * @queue_count: the requested queue count for rss.
6997 *
6998 * returns 0 if rss is not enabled, if enabled returns the final rss queue
6999 * count which may be different from the requested queue count.
7000 **/
7001int i40e_reconfig_rss_queues(struct i40e_pf *pf, int queue_count)
7002{
7003 if (!(pf->flags & I40E_FLAG_RSS_ENABLED))
7004 return 0;
7005
7006 queue_count = min_t(int, queue_count, pf->rss_size_max);
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00007007
7008 if (queue_count != pf->rss_size) {
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00007009 i40e_prep_for_reset(pf);
7010
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00007011 pf->rss_size = queue_count;
7012
7013 i40e_reset_and_rebuild(pf, true);
7014 i40e_config_rss(pf);
7015 }
7016 dev_info(&pf->pdev->dev, "RSS count: %d\n", pf->rss_size);
7017 return pf->rss_size;
7018}
7019
7020/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007021 * i40e_sw_init - Initialize general software structures (struct i40e_pf)
7022 * @pf: board private structure to initialize
7023 *
7024 * i40e_sw_init initializes the Adapter private data structure.
7025 * Fields are initialized based on PCI device information and
7026 * OS network device settings (MTU size).
7027 **/
7028static int i40e_sw_init(struct i40e_pf *pf)
7029{
7030 int err = 0;
7031 int size;
7032
7033 pf->msg_enable = netif_msg_init(I40E_DEFAULT_MSG_ENABLE,
7034 (NETIF_MSG_DRV|NETIF_MSG_PROBE|NETIF_MSG_LINK));
Shannon Nelson27599972013-11-16 10:00:43 +00007035 pf->hw.debug_mask = pf->msg_enable | I40E_DEBUG_DIAG;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007036 if (debug != -1 && debug != I40E_DEFAULT_MSG_ENABLE) {
7037 if (I40E_DEBUG_USER & debug)
7038 pf->hw.debug_mask = debug;
7039 pf->msg_enable = netif_msg_init((debug & ~I40E_DEBUG_USER),
7040 I40E_DEFAULT_MSG_ENABLE);
7041 }
7042
7043 /* Set default capability flags */
7044 pf->flags = I40E_FLAG_RX_CSUM_ENABLED |
7045 I40E_FLAG_MSI_ENABLED |
7046 I40E_FLAG_MSIX_ENABLED |
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007047 I40E_FLAG_RX_1BUF_ENABLED;
7048
Mitch Williamsca99eb92014-04-04 04:43:07 +00007049 /* Set default ITR */
7050 pf->rx_itr_default = I40E_ITR_DYNAMIC | I40E_ITR_RX_DEF;
7051 pf->tx_itr_default = I40E_ITR_DYNAMIC | I40E_ITR_TX_DEF;
7052
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00007053 /* Depending on PF configurations, it is possible that the RSS
7054 * maximum might end up larger than the available queues
7055 */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007056 pf->rss_size_max = 0x1 << pf->hw.func_caps.rss_table_entry_width;
Paul M Stillwell Jrec9a7db2014-07-09 07:46:10 +00007057 pf->rss_size = 1;
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00007058 pf->rss_size_max = min_t(int, pf->rss_size_max,
7059 pf->hw.func_caps.num_tx_qp);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007060 if (pf->hw.func_caps.rss) {
7061 pf->flags |= I40E_FLAG_RSS_ENABLED;
Jesse Brandeburgbf051a32013-11-26 10:49:17 +00007062 pf->rss_size = min_t(int, pf->rss_size_max, num_online_cpus());
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007063 }
7064
Catherine Sullivan2050bc62013-12-18 13:46:03 +00007065 /* MFP mode enabled */
7066 if (pf->hw.func_caps.npar_enable || pf->hw.func_caps.mfp_mode_1) {
7067 pf->flags |= I40E_FLAG_MFP_ENABLED;
7068 dev_info(&pf->pdev->dev, "MFP mode Enabled\n");
7069 }
7070
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08007071 /* FW/NVM is not yet fixed in this regard */
7072 if ((pf->hw.func_caps.fd_filters_guaranteed > 0) ||
7073 (pf->hw.func_caps.fd_filters_best_effort > 0)) {
7074 pf->flags |= I40E_FLAG_FD_ATR_ENABLED;
7075 pf->atr_sample_rate = I40E_DEFAULT_ATR_SAMPLE_RATE;
Anjali Singhai Jain433c47d2014-05-22 06:32:17 +00007076 /* Setup a counter for fd_atr per pf */
7077 pf->fd_atr_cnt_idx = I40E_FD_ATR_STAT_IDX(pf->hw.pf_id);
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08007078 if (!(pf->flags & I40E_FLAG_MFP_ENABLED)) {
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08007079 pf->flags |= I40E_FLAG_FD_SB_ENABLED;
Anjali Singhai Jain433c47d2014-05-22 06:32:17 +00007080 /* Setup a counter for fd_sb per pf */
7081 pf->fd_sb_cnt_idx = I40E_FD_SB_STAT_IDX(pf->hw.pf_id);
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08007082 } else {
7083 dev_info(&pf->pdev->dev,
Anjali Singhai Jain0b675842014-03-06 08:59:51 +00007084 "Flow Director Sideband mode Disabled in MFP mode\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007085 }
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08007086 pf->fdir_pf_filter_count =
7087 pf->hw.func_caps.fd_filters_guaranteed;
7088 pf->hw.fdir_shared_filter_count =
7089 pf->hw.func_caps.fd_filters_best_effort;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007090 }
7091
7092 if (pf->hw.func_caps.vmdq) {
7093 pf->flags |= I40E_FLAG_VMDQ_ENABLED;
7094 pf->num_vmdq_vsis = I40E_DEFAULT_NUM_VMDQ_VSI;
7095 pf->num_vmdq_qps = I40E_DEFAULT_QUEUES_PER_VMDQ;
7096 }
7097
Vasu Dev38e00432014-08-01 13:27:03 -07007098#ifdef I40E_FCOE
7099 err = i40e_init_pf_fcoe(pf);
7100 if (err)
7101 dev_info(&pf->pdev->dev, "init_pf_fcoe failed: %d\n", err);
7102
7103#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007104#ifdef CONFIG_PCI_IOV
7105 if (pf->hw.func_caps.num_vfs) {
7106 pf->num_vf_qps = I40E_DEFAULT_QUEUES_PER_VF;
7107 pf->flags |= I40E_FLAG_SRIOV_ENABLED;
7108 pf->num_req_vfs = min_t(int,
7109 pf->hw.func_caps.num_vfs,
7110 I40E_MAX_VF_COUNT);
7111 }
7112#endif /* CONFIG_PCI_IOV */
7113 pf->eeprom_version = 0xDEAD;
7114 pf->lan_veb = I40E_NO_VEB;
7115 pf->lan_vsi = I40E_NO_VSI;
7116
7117 /* set up queue assignment tracking */
7118 size = sizeof(struct i40e_lump_tracking)
7119 + (sizeof(u16) * pf->hw.func_caps.num_tx_qp);
7120 pf->qp_pile = kzalloc(size, GFP_KERNEL);
7121 if (!pf->qp_pile) {
7122 err = -ENOMEM;
7123 goto sw_init_done;
7124 }
7125 pf->qp_pile->num_entries = pf->hw.func_caps.num_tx_qp;
7126 pf->qp_pile->search_hint = 0;
7127
7128 /* set up vector assignment tracking */
7129 size = sizeof(struct i40e_lump_tracking)
7130 + (sizeof(u16) * pf->hw.func_caps.num_msix_vectors);
7131 pf->irq_pile = kzalloc(size, GFP_KERNEL);
7132 if (!pf->irq_pile) {
7133 kfree(pf->qp_pile);
7134 err = -ENOMEM;
7135 goto sw_init_done;
7136 }
7137 pf->irq_pile->num_entries = pf->hw.func_caps.num_msix_vectors;
7138 pf->irq_pile->search_hint = 0;
7139
Anjali Singhai Jain327fe042014-06-04 01:23:26 +00007140 pf->tx_timeout_recovery_level = 1;
7141
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007142 mutex_init(&pf->switch_mutex);
7143
7144sw_init_done:
7145 return err;
7146}
7147
7148/**
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00007149 * i40e_set_ntuple - set the ntuple feature flag and take action
7150 * @pf: board private structure to initialize
7151 * @features: the feature set that the stack is suggesting
7152 *
7153 * returns a bool to indicate if reset needs to happen
7154 **/
7155bool i40e_set_ntuple(struct i40e_pf *pf, netdev_features_t features)
7156{
7157 bool need_reset = false;
7158
7159 /* Check if Flow Director n-tuple support was enabled or disabled. If
7160 * the state changed, we need to reset.
7161 */
7162 if (features & NETIF_F_NTUPLE) {
7163 /* Enable filters and mark for reset */
7164 if (!(pf->flags & I40E_FLAG_FD_SB_ENABLED))
7165 need_reset = true;
7166 pf->flags |= I40E_FLAG_FD_SB_ENABLED;
7167 } else {
7168 /* turn off filters, mark for reset and clear SW filter list */
7169 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
7170 need_reset = true;
7171 i40e_fdir_filter_exit(pf);
7172 }
7173 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
Anjali Singhai Jain8a4f34f2014-06-04 08:45:20 +00007174 pf->auto_disable_flags &= ~I40E_FLAG_FD_SB_ENABLED;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00007175 /* reset fd counters */
7176 pf->fd_add_err = pf->fd_atr_cnt = pf->fd_tcp_rule = 0;
7177 pf->fdir_pf_active_filters = 0;
7178 pf->flags |= I40E_FLAG_FD_ATR_ENABLED;
7179 dev_info(&pf->pdev->dev, "ATR re-enabled.\n");
Anjali Singhai Jain8a4f34f2014-06-04 08:45:20 +00007180 /* if ATR was auto disabled it can be re-enabled. */
7181 if ((pf->flags & I40E_FLAG_FD_ATR_ENABLED) &&
7182 (pf->auto_disable_flags & I40E_FLAG_FD_ATR_ENABLED))
7183 pf->auto_disable_flags &= ~I40E_FLAG_FD_ATR_ENABLED;
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00007184 }
7185 return need_reset;
7186}
7187
7188/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007189 * i40e_set_features - set the netdev feature flags
7190 * @netdev: ptr to the netdev being adjusted
7191 * @features: the feature set that the stack is suggesting
7192 **/
7193static int i40e_set_features(struct net_device *netdev,
7194 netdev_features_t features)
7195{
7196 struct i40e_netdev_priv *np = netdev_priv(netdev);
7197 struct i40e_vsi *vsi = np->vsi;
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00007198 struct i40e_pf *pf = vsi->back;
7199 bool need_reset;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007200
7201 if (features & NETIF_F_HW_VLAN_CTAG_RX)
7202 i40e_vlan_stripping_enable(vsi);
7203 else
7204 i40e_vlan_stripping_disable(vsi);
7205
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00007206 need_reset = i40e_set_ntuple(pf, features);
7207
7208 if (need_reset)
7209 i40e_do_reset(pf, (1 << __I40E_PF_RESET_REQUESTED));
7210
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007211 return 0;
7212}
7213
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007214#ifdef CONFIG_I40E_VXLAN
7215/**
7216 * i40e_get_vxlan_port_idx - Lookup a possibly offloaded for Rx UDP port
7217 * @pf: board private structure
7218 * @port: The UDP port to look up
7219 *
7220 * Returns the index number or I40E_MAX_PF_UDP_OFFLOAD_PORTS if port not found
7221 **/
7222static u8 i40e_get_vxlan_port_idx(struct i40e_pf *pf, __be16 port)
7223{
7224 u8 i;
7225
7226 for (i = 0; i < I40E_MAX_PF_UDP_OFFLOAD_PORTS; i++) {
7227 if (pf->vxlan_ports[i] == port)
7228 return i;
7229 }
7230
7231 return i;
7232}
7233
7234/**
7235 * i40e_add_vxlan_port - Get notifications about VXLAN ports that come up
7236 * @netdev: This physical port's netdev
7237 * @sa_family: Socket Family that VXLAN is notifying us about
7238 * @port: New UDP port number that VXLAN started listening to
7239 **/
7240static void i40e_add_vxlan_port(struct net_device *netdev,
7241 sa_family_t sa_family, __be16 port)
7242{
7243 struct i40e_netdev_priv *np = netdev_priv(netdev);
7244 struct i40e_vsi *vsi = np->vsi;
7245 struct i40e_pf *pf = vsi->back;
7246 u8 next_idx;
7247 u8 idx;
7248
7249 if (sa_family == AF_INET6)
7250 return;
7251
7252 idx = i40e_get_vxlan_port_idx(pf, port);
7253
7254 /* Check if port already exists */
7255 if (idx < I40E_MAX_PF_UDP_OFFLOAD_PORTS) {
7256 netdev_info(netdev, "Port %d already offloaded\n", ntohs(port));
7257 return;
7258 }
7259
7260 /* Now check if there is space to add the new port */
7261 next_idx = i40e_get_vxlan_port_idx(pf, 0);
7262
7263 if (next_idx == I40E_MAX_PF_UDP_OFFLOAD_PORTS) {
7264 netdev_info(netdev, "Maximum number of UDP ports reached, not adding port %d\n",
7265 ntohs(port));
7266 return;
7267 }
7268
7269 /* New port: add it and mark its index in the bitmap */
7270 pf->vxlan_ports[next_idx] = port;
7271 pf->pending_vxlan_bitmap |= (1 << next_idx);
7272
7273 pf->flags |= I40E_FLAG_VXLAN_FILTER_SYNC;
7274}
7275
7276/**
7277 * i40e_del_vxlan_port - Get notifications about VXLAN ports that go away
7278 * @netdev: This physical port's netdev
7279 * @sa_family: Socket Family that VXLAN is notifying us about
7280 * @port: UDP port number that VXLAN stopped listening to
7281 **/
7282static void i40e_del_vxlan_port(struct net_device *netdev,
7283 sa_family_t sa_family, __be16 port)
7284{
7285 struct i40e_netdev_priv *np = netdev_priv(netdev);
7286 struct i40e_vsi *vsi = np->vsi;
7287 struct i40e_pf *pf = vsi->back;
7288 u8 idx;
7289
7290 if (sa_family == AF_INET6)
7291 return;
7292
7293 idx = i40e_get_vxlan_port_idx(pf, port);
7294
7295 /* Check if port already exists */
7296 if (idx < I40E_MAX_PF_UDP_OFFLOAD_PORTS) {
7297 /* if port exists, set it to 0 (mark for deletion)
7298 * and make it pending
7299 */
7300 pf->vxlan_ports[idx] = 0;
7301
7302 pf->pending_vxlan_bitmap |= (1 << idx);
7303
7304 pf->flags |= I40E_FLAG_VXLAN_FILTER_SYNC;
7305 } else {
7306 netdev_warn(netdev, "Port %d was not found, not deleting\n",
7307 ntohs(port));
7308 }
7309}
7310
7311#endif
Neerav Parikh1f224ad2014-02-12 01:45:31 +00007312static int i40e_get_phys_port_id(struct net_device *netdev,
7313 struct netdev_phys_port_id *ppid)
7314{
7315 struct i40e_netdev_priv *np = netdev_priv(netdev);
7316 struct i40e_pf *pf = np->vsi->back;
7317 struct i40e_hw *hw = &pf->hw;
7318
7319 if (!(pf->flags & I40E_FLAG_PORT_ID_VALID))
7320 return -EOPNOTSUPP;
7321
7322 ppid->id_len = min_t(int, sizeof(hw->mac.port_addr), sizeof(ppid->id));
7323 memcpy(ppid->id, hw->mac.port_addr, ppid->id_len);
7324
7325 return 0;
7326}
7327
Greg Rose4ba0dea2014-03-06 08:59:55 +00007328#ifdef HAVE_FDB_OPS
7329#ifdef USE_CONST_DEV_UC_CHAR
7330static int i40e_ndo_fdb_add(struct ndmsg *ndm, struct nlattr *tb[],
7331 struct net_device *dev,
7332 const unsigned char *addr,
7333 u16 flags)
7334#else
7335static int i40e_ndo_fdb_add(struct ndmsg *ndm,
7336 struct net_device *dev,
7337 unsigned char *addr,
7338 u16 flags)
7339#endif
7340{
7341 struct i40e_netdev_priv *np = netdev_priv(dev);
7342 struct i40e_pf *pf = np->vsi->back;
7343 int err = 0;
7344
7345 if (!(pf->flags & I40E_FLAG_SRIOV_ENABLED))
7346 return -EOPNOTSUPP;
7347
7348 /* Hardware does not support aging addresses so if a
7349 * ndm_state is given only allow permanent addresses
7350 */
7351 if (ndm->ndm_state && !(ndm->ndm_state & NUD_PERMANENT)) {
7352 netdev_info(dev, "FDB only supports static addresses\n");
7353 return -EINVAL;
7354 }
7355
7356 if (is_unicast_ether_addr(addr) || is_link_local_ether_addr(addr))
7357 err = dev_uc_add_excl(dev, addr);
7358 else if (is_multicast_ether_addr(addr))
7359 err = dev_mc_add_excl(dev, addr);
7360 else
7361 err = -EINVAL;
7362
7363 /* Only return duplicate errors if NLM_F_EXCL is set */
7364 if (err == -EEXIST && !(flags & NLM_F_EXCL))
7365 err = 0;
7366
7367 return err;
7368}
7369
7370#ifndef USE_DEFAULT_FDB_DEL_DUMP
7371#ifdef USE_CONST_DEV_UC_CHAR
7372static int i40e_ndo_fdb_del(struct ndmsg *ndm,
7373 struct net_device *dev,
7374 const unsigned char *addr)
7375#else
7376static int i40e_ndo_fdb_del(struct ndmsg *ndm,
7377 struct net_device *dev,
7378 unsigned char *addr)
7379#endif
7380{
7381 struct i40e_netdev_priv *np = netdev_priv(dev);
7382 struct i40e_pf *pf = np->vsi->back;
7383 int err = -EOPNOTSUPP;
7384
7385 if (ndm->ndm_state & NUD_PERMANENT) {
7386 netdev_info(dev, "FDB only supports static addresses\n");
7387 return -EINVAL;
7388 }
7389
7390 if (pf->flags & I40E_FLAG_SRIOV_ENABLED) {
7391 if (is_unicast_ether_addr(addr))
7392 err = dev_uc_del(dev, addr);
7393 else if (is_multicast_ether_addr(addr))
7394 err = dev_mc_del(dev, addr);
7395 else
7396 err = -EINVAL;
7397 }
7398
7399 return err;
7400}
7401
7402static int i40e_ndo_fdb_dump(struct sk_buff *skb,
7403 struct netlink_callback *cb,
7404 struct net_device *dev,
Jamal Hadi Salim5d5eacb2014-07-10 07:01:58 -04007405 struct net_device *filter_dev,
Greg Rose4ba0dea2014-03-06 08:59:55 +00007406 int idx)
7407{
7408 struct i40e_netdev_priv *np = netdev_priv(dev);
7409 struct i40e_pf *pf = np->vsi->back;
7410
7411 if (pf->flags & I40E_FLAG_SRIOV_ENABLED)
Jamal Hadi Salim5d5eacb2014-07-10 07:01:58 -04007412 idx = ndo_dflt_fdb_dump(skb, cb, dev, filter_dev, idx);
Greg Rose4ba0dea2014-03-06 08:59:55 +00007413
7414 return idx;
7415}
7416
7417#endif /* USE_DEFAULT_FDB_DEL_DUMP */
7418#endif /* HAVE_FDB_OPS */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007419static const struct net_device_ops i40e_netdev_ops = {
7420 .ndo_open = i40e_open,
7421 .ndo_stop = i40e_close,
7422 .ndo_start_xmit = i40e_lan_xmit_frame,
7423 .ndo_get_stats64 = i40e_get_netdev_stats_struct,
7424 .ndo_set_rx_mode = i40e_set_rx_mode,
7425 .ndo_validate_addr = eth_validate_addr,
7426 .ndo_set_mac_address = i40e_set_mac,
7427 .ndo_change_mtu = i40e_change_mtu,
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00007428 .ndo_do_ioctl = i40e_ioctl,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007429 .ndo_tx_timeout = i40e_tx_timeout,
7430 .ndo_vlan_rx_add_vid = i40e_vlan_rx_add_vid,
7431 .ndo_vlan_rx_kill_vid = i40e_vlan_rx_kill_vid,
7432#ifdef CONFIG_NET_POLL_CONTROLLER
7433 .ndo_poll_controller = i40e_netpoll,
7434#endif
7435 .ndo_setup_tc = i40e_setup_tc,
Vasu Dev38e00432014-08-01 13:27:03 -07007436#ifdef I40E_FCOE
7437 .ndo_fcoe_enable = i40e_fcoe_enable,
7438 .ndo_fcoe_disable = i40e_fcoe_disable,
7439#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007440 .ndo_set_features = i40e_set_features,
7441 .ndo_set_vf_mac = i40e_ndo_set_vf_mac,
7442 .ndo_set_vf_vlan = i40e_ndo_set_vf_port_vlan,
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04007443 .ndo_set_vf_rate = i40e_ndo_set_vf_bw,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007444 .ndo_get_vf_config = i40e_ndo_get_vf_config,
Mitch Williams588aefa2014-02-11 08:27:49 +00007445 .ndo_set_vf_link_state = i40e_ndo_set_vf_link_state,
Mitch Williamsc674d122014-05-20 08:01:40 +00007446 .ndo_set_vf_spoofchk = i40e_ndo_set_vf_spoofck,
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007447#ifdef CONFIG_I40E_VXLAN
7448 .ndo_add_vxlan_port = i40e_add_vxlan_port,
7449 .ndo_del_vxlan_port = i40e_del_vxlan_port,
7450#endif
Neerav Parikh1f224ad2014-02-12 01:45:31 +00007451 .ndo_get_phys_port_id = i40e_get_phys_port_id,
Greg Rose4ba0dea2014-03-06 08:59:55 +00007452#ifdef HAVE_FDB_OPS
7453 .ndo_fdb_add = i40e_ndo_fdb_add,
7454#ifndef USE_DEFAULT_FDB_DEL_DUMP
7455 .ndo_fdb_del = i40e_ndo_fdb_del,
7456 .ndo_fdb_dump = i40e_ndo_fdb_dump,
7457#endif
7458#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007459};
7460
7461/**
7462 * i40e_config_netdev - Setup the netdev flags
7463 * @vsi: the VSI being configured
7464 *
7465 * Returns 0 on success, negative value on failure
7466 **/
7467static int i40e_config_netdev(struct i40e_vsi *vsi)
7468{
Greg Rose1a103702013-11-28 06:42:39 +00007469 u8 brdcast[ETH_ALEN] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007470 struct i40e_pf *pf = vsi->back;
7471 struct i40e_hw *hw = &pf->hw;
7472 struct i40e_netdev_priv *np;
7473 struct net_device *netdev;
7474 u8 mac_addr[ETH_ALEN];
7475 int etherdev_size;
7476
7477 etherdev_size = sizeof(struct i40e_netdev_priv);
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00007478 netdev = alloc_etherdev_mq(etherdev_size, vsi->alloc_queue_pairs);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007479 if (!netdev)
7480 return -ENOMEM;
7481
7482 vsi->netdev = netdev;
7483 np = netdev_priv(netdev);
7484 np->vsi = vsi;
7485
Or Gerlitzd70e9412014-03-18 10:36:45 +02007486 netdev->hw_enc_features |= NETIF_F_IP_CSUM |
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007487 NETIF_F_GSO_UDP_TUNNEL |
Or Gerlitzd70e9412014-03-18 10:36:45 +02007488 NETIF_F_TSO;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007489
7490 netdev->features = NETIF_F_SG |
7491 NETIF_F_IP_CSUM |
7492 NETIF_F_SCTP_CSUM |
7493 NETIF_F_HIGHDMA |
7494 NETIF_F_GSO_UDP_TUNNEL |
7495 NETIF_F_HW_VLAN_CTAG_TX |
7496 NETIF_F_HW_VLAN_CTAG_RX |
7497 NETIF_F_HW_VLAN_CTAG_FILTER |
7498 NETIF_F_IPV6_CSUM |
7499 NETIF_F_TSO |
Jesse Brandeburg059dab62014-04-01 09:07:20 +00007500 NETIF_F_TSO_ECN |
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007501 NETIF_F_TSO6 |
7502 NETIF_F_RXCSUM |
7503 NETIF_F_RXHASH |
7504 0;
7505
Anjali Singhai Jain2e86a0b2014-04-01 07:11:53 +00007506 if (!(pf->flags & I40E_FLAG_MFP_ENABLED))
7507 netdev->features |= NETIF_F_NTUPLE;
7508
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007509 /* copy netdev features into list of user selectable features */
7510 netdev->hw_features |= netdev->features;
7511
7512 if (vsi->type == I40E_VSI_MAIN) {
7513 SET_NETDEV_DEV(netdev, &pf->pdev->dev);
Greg Rose9a173902014-05-22 06:32:02 +00007514 ether_addr_copy(mac_addr, hw->mac.perm_addr);
Greg Rose8c27d422014-05-22 06:31:56 +00007515 /* The following two steps are necessary to prevent reception
7516 * of tagged packets - by default the NVM loads a MAC-VLAN
7517 * filter that will accept any tagged packet. This is to
7518 * prevent that during normal operations until a specific
7519 * VLAN tag filter has been set.
7520 */
7521 i40e_rm_default_mac_filter(vsi, mac_addr);
7522 i40e_add_filter(vsi, mac_addr, I40E_VLAN_ANY, false, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007523 } else {
7524 /* relate the VSI_VMDQ name to the VSI_MAIN name */
7525 snprintf(netdev->name, IFNAMSIZ, "%sv%%d",
7526 pf->vsi[pf->lan_vsi]->netdev->name);
7527 random_ether_addr(mac_addr);
7528 i40e_add_filter(vsi, mac_addr, I40E_VLAN_ANY, false, false);
7529 }
Greg Rose1a103702013-11-28 06:42:39 +00007530 i40e_add_filter(vsi, brdcast, I40E_VLAN_ANY, false, false);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007531
Greg Rose9a173902014-05-22 06:32:02 +00007532 ether_addr_copy(netdev->dev_addr, mac_addr);
7533 ether_addr_copy(netdev->perm_addr, mac_addr);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007534 /* vlan gets same features (except vlan offload)
7535 * after any tweaks for specific VSI types
7536 */
7537 netdev->vlan_features = netdev->features & ~(NETIF_F_HW_VLAN_CTAG_TX |
7538 NETIF_F_HW_VLAN_CTAG_RX |
7539 NETIF_F_HW_VLAN_CTAG_FILTER);
7540 netdev->priv_flags |= IFF_UNICAST_FLT;
7541 netdev->priv_flags |= IFF_SUPP_NOFCS;
7542 /* Setup netdev TC information */
7543 i40e_vsi_config_netdev_tc(vsi, vsi->tc_config.enabled_tc);
7544
7545 netdev->netdev_ops = &i40e_netdev_ops;
7546 netdev->watchdog_timeo = 5 * HZ;
7547 i40e_set_ethtool_ops(netdev);
Vasu Dev38e00432014-08-01 13:27:03 -07007548#ifdef I40E_FCOE
7549 i40e_fcoe_config_netdev(netdev, vsi);
7550#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007551
7552 return 0;
7553}
7554
7555/**
7556 * i40e_vsi_delete - Delete a VSI from the switch
7557 * @vsi: the VSI being removed
7558 *
7559 * Returns 0 on success, negative value on failure
7560 **/
7561static void i40e_vsi_delete(struct i40e_vsi *vsi)
7562{
7563 /* remove default VSI is not allowed */
7564 if (vsi == vsi->back->vsi[vsi->back->lan_vsi])
7565 return;
7566
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007567 i40e_aq_delete_element(&vsi->back->hw, vsi->seid, NULL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007568}
7569
7570/**
7571 * i40e_add_vsi - Add a VSI to the switch
7572 * @vsi: the VSI being configured
7573 *
7574 * This initializes a VSI context depending on the VSI type to be added and
7575 * passes it down to the add_vsi aq command.
7576 **/
7577static int i40e_add_vsi(struct i40e_vsi *vsi)
7578{
7579 int ret = -ENODEV;
7580 struct i40e_mac_filter *f, *ftmp;
7581 struct i40e_pf *pf = vsi->back;
7582 struct i40e_hw *hw = &pf->hw;
7583 struct i40e_vsi_context ctxt;
7584 u8 enabled_tc = 0x1; /* TC0 enabled */
7585 int f_count = 0;
7586
7587 memset(&ctxt, 0, sizeof(ctxt));
7588 switch (vsi->type) {
7589 case I40E_VSI_MAIN:
7590 /* The PF's main VSI is already setup as part of the
7591 * device initialization, so we'll not bother with
7592 * the add_vsi call, but we will retrieve the current
7593 * VSI context.
7594 */
7595 ctxt.seid = pf->main_vsi_seid;
7596 ctxt.pf_num = pf->hw.pf_id;
7597 ctxt.vf_num = 0;
7598 ret = i40e_aq_get_vsi_params(&pf->hw, &ctxt, NULL);
7599 ctxt.flags = I40E_AQ_VSI_TYPE_PF;
7600 if (ret) {
7601 dev_info(&pf->pdev->dev,
7602 "couldn't get pf vsi config, err %d, aq_err %d\n",
7603 ret, pf->hw.aq.asq_last_status);
7604 return -ENOENT;
7605 }
7606 memcpy(&vsi->info, &ctxt.info, sizeof(ctxt.info));
7607 vsi->info.valid_sections = 0;
7608
7609 vsi->seid = ctxt.seid;
7610 vsi->id = ctxt.vsi_number;
7611
7612 enabled_tc = i40e_pf_get_tc_map(pf);
7613
7614 /* MFP mode setup queue map and update VSI */
7615 if (pf->flags & I40E_FLAG_MFP_ENABLED) {
7616 memset(&ctxt, 0, sizeof(ctxt));
7617 ctxt.seid = pf->main_vsi_seid;
7618 ctxt.pf_num = pf->hw.pf_id;
7619 ctxt.vf_num = 0;
7620 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, false);
7621 ret = i40e_aq_update_vsi_params(hw, &ctxt, NULL);
7622 if (ret) {
7623 dev_info(&pf->pdev->dev,
7624 "update vsi failed, aq_err=%d\n",
7625 pf->hw.aq.asq_last_status);
7626 ret = -ENOENT;
7627 goto err;
7628 }
7629 /* update the local VSI info queue map */
7630 i40e_vsi_update_queue_map(vsi, &ctxt);
7631 vsi->info.valid_sections = 0;
7632 } else {
7633 /* Default/Main VSI is only enabled for TC0
7634 * reconfigure it to enable all TCs that are
7635 * available on the port in SFP mode.
7636 */
7637 ret = i40e_vsi_config_tc(vsi, enabled_tc);
7638 if (ret) {
7639 dev_info(&pf->pdev->dev,
7640 "failed to configure TCs for main VSI tc_map 0x%08x, err %d, aq_err %d\n",
7641 enabled_tc, ret,
7642 pf->hw.aq.asq_last_status);
7643 ret = -ENOENT;
7644 }
7645 }
7646 break;
7647
7648 case I40E_VSI_FDIR:
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08007649 ctxt.pf_num = hw->pf_id;
7650 ctxt.vf_num = 0;
7651 ctxt.uplink_seid = vsi->uplink_seid;
7652 ctxt.connection_type = 0x1; /* regular data port */
7653 ctxt.flags = I40E_AQ_VSI_TYPE_PF;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007654 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007655 break;
7656
7657 case I40E_VSI_VMDQ2:
7658 ctxt.pf_num = hw->pf_id;
7659 ctxt.vf_num = 0;
7660 ctxt.uplink_seid = vsi->uplink_seid;
7661 ctxt.connection_type = 0x1; /* regular data port */
7662 ctxt.flags = I40E_AQ_VSI_TYPE_VMDQ2;
7663
7664 ctxt.info.valid_sections |= cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
7665
7666 /* This VSI is connected to VEB so the switch_id
7667 * should be set to zero by default.
7668 */
7669 ctxt.info.switch_id = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007670 ctxt.info.switch_id |= cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
7671
7672 /* Setup the VSI tx/rx queue map for TC0 only for now */
7673 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, true);
7674 break;
7675
7676 case I40E_VSI_SRIOV:
7677 ctxt.pf_num = hw->pf_id;
7678 ctxt.vf_num = vsi->vf_id + hw->func_caps.vf_base_id;
7679 ctxt.uplink_seid = vsi->uplink_seid;
7680 ctxt.connection_type = 0x1; /* regular data port */
7681 ctxt.flags = I40E_AQ_VSI_TYPE_VF;
7682
7683 ctxt.info.valid_sections |= cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
7684
7685 /* This VSI is connected to VEB so the switch_id
7686 * should be set to zero by default.
7687 */
7688 ctxt.info.switch_id = cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
7689
7690 ctxt.info.valid_sections |= cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
7691 ctxt.info.port_vlan_flags |= I40E_AQ_VSI_PVLAN_MODE_ALL;
Mitch Williamsc674d122014-05-20 08:01:40 +00007692 if (pf->vf[vsi->vf_id].spoofchk) {
7693 ctxt.info.valid_sections |=
7694 cpu_to_le16(I40E_AQ_VSI_PROP_SECURITY_VALID);
7695 ctxt.info.sec_flags |=
7696 (I40E_AQ_VSI_SEC_FLAG_ENABLE_VLAN_CHK |
7697 I40E_AQ_VSI_SEC_FLAG_ENABLE_MAC_CHK);
7698 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007699 /* Setup the VSI tx/rx queue map for TC0 only for now */
7700 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, true);
7701 break;
7702
Vasu Dev38e00432014-08-01 13:27:03 -07007703#ifdef I40E_FCOE
7704 case I40E_VSI_FCOE:
7705 ret = i40e_fcoe_vsi_init(vsi, &ctxt);
7706 if (ret) {
7707 dev_info(&pf->pdev->dev, "failed to initialize FCoE VSI\n");
7708 return ret;
7709 }
7710 break;
7711
7712#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007713 default:
7714 return -ENODEV;
7715 }
7716
7717 if (vsi->type != I40E_VSI_MAIN) {
7718 ret = i40e_aq_add_vsi(hw, &ctxt, NULL);
7719 if (ret) {
7720 dev_info(&vsi->back->pdev->dev,
7721 "add vsi failed, aq_err=%d\n",
7722 vsi->back->hw.aq.asq_last_status);
7723 ret = -ENOENT;
7724 goto err;
7725 }
7726 memcpy(&vsi->info, &ctxt.info, sizeof(ctxt.info));
7727 vsi->info.valid_sections = 0;
7728 vsi->seid = ctxt.seid;
7729 vsi->id = ctxt.vsi_number;
7730 }
7731
7732 /* If macvlan filters already exist, force them to get loaded */
7733 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
7734 f->changed = true;
7735 f_count++;
Shannon Nelson6252c7e2014-06-04 01:23:23 +00007736
7737 if (f->is_laa && vsi->type == I40E_VSI_MAIN) {
7738 i40e_aq_mac_address_write(&vsi->back->hw,
7739 I40E_AQC_WRITE_TYPE_LAA_WOL,
7740 f->macaddr, NULL);
7741 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007742 }
7743 if (f_count) {
7744 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
7745 pf->flags |= I40E_FLAG_FILTER_SYNC;
7746 }
7747
7748 /* Update VSI BW information */
7749 ret = i40e_vsi_get_bw_info(vsi);
7750 if (ret) {
7751 dev_info(&pf->pdev->dev,
7752 "couldn't get vsi bw info, err %d, aq_err %d\n",
7753 ret, pf->hw.aq.asq_last_status);
7754 /* VSI is already added so not tearing that up */
7755 ret = 0;
7756 }
7757
7758err:
7759 return ret;
7760}
7761
7762/**
7763 * i40e_vsi_release - Delete a VSI and free its resources
7764 * @vsi: the VSI being removed
7765 *
7766 * Returns 0 on success or < 0 on error
7767 **/
7768int i40e_vsi_release(struct i40e_vsi *vsi)
7769{
7770 struct i40e_mac_filter *f, *ftmp;
7771 struct i40e_veb *veb = NULL;
7772 struct i40e_pf *pf;
7773 u16 uplink_seid;
7774 int i, n;
7775
7776 pf = vsi->back;
7777
7778 /* release of a VEB-owner or last VSI is not allowed */
7779 if (vsi->flags & I40E_VSI_FLAG_VEB_OWNER) {
7780 dev_info(&pf->pdev->dev, "VSI %d has existing VEB %d\n",
7781 vsi->seid, vsi->uplink_seid);
7782 return -ENODEV;
7783 }
7784 if (vsi == pf->vsi[pf->lan_vsi] &&
7785 !test_bit(__I40E_DOWN, &pf->state)) {
7786 dev_info(&pf->pdev->dev, "Can't remove PF VSI\n");
7787 return -ENODEV;
7788 }
7789
7790 uplink_seid = vsi->uplink_seid;
7791 if (vsi->type != I40E_VSI_SRIOV) {
7792 if (vsi->netdev_registered) {
7793 vsi->netdev_registered = false;
7794 if (vsi->netdev) {
7795 /* results in a call to i40e_close() */
7796 unregister_netdev(vsi->netdev);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007797 }
7798 } else {
Shannon Nelson90ef8d42014-03-14 07:32:26 +00007799 i40e_vsi_close(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007800 }
7801 i40e_vsi_disable_irq(vsi);
7802 }
7803
7804 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list)
7805 i40e_del_filter(vsi, f->macaddr, f->vlan,
7806 f->is_vf, f->is_netdev);
7807 i40e_sync_vsi_filters(vsi);
7808
7809 i40e_vsi_delete(vsi);
7810 i40e_vsi_free_q_vectors(vsi);
Shannon Nelsona4866592014-02-11 08:24:07 +00007811 if (vsi->netdev) {
7812 free_netdev(vsi->netdev);
7813 vsi->netdev = NULL;
7814 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007815 i40e_vsi_clear_rings(vsi);
7816 i40e_vsi_clear(vsi);
7817
7818 /* If this was the last thing on the VEB, except for the
7819 * controlling VSI, remove the VEB, which puts the controlling
7820 * VSI onto the next level down in the switch.
7821 *
7822 * Well, okay, there's one more exception here: don't remove
7823 * the orphan VEBs yet. We'll wait for an explicit remove request
7824 * from up the network stack.
7825 */
Mitch Williams505682c2014-05-20 08:01:37 +00007826 for (n = 0, i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007827 if (pf->vsi[i] &&
7828 pf->vsi[i]->uplink_seid == uplink_seid &&
7829 (pf->vsi[i]->flags & I40E_VSI_FLAG_VEB_OWNER) == 0) {
7830 n++; /* count the VSIs */
7831 }
7832 }
7833 for (i = 0; i < I40E_MAX_VEB; i++) {
7834 if (!pf->veb[i])
7835 continue;
7836 if (pf->veb[i]->uplink_seid == uplink_seid)
7837 n++; /* count the VEBs */
7838 if (pf->veb[i]->seid == uplink_seid)
7839 veb = pf->veb[i];
7840 }
7841 if (n == 0 && veb && veb->uplink_seid != 0)
7842 i40e_veb_release(veb);
7843
7844 return 0;
7845}
7846
7847/**
7848 * i40e_vsi_setup_vectors - Set up the q_vectors for the given VSI
7849 * @vsi: ptr to the VSI
7850 *
7851 * This should only be called after i40e_vsi_mem_alloc() which allocates the
7852 * corresponding SW VSI structure and initializes num_queue_pairs for the
7853 * newly allocated VSI.
7854 *
7855 * Returns 0 on success or negative on failure
7856 **/
7857static int i40e_vsi_setup_vectors(struct i40e_vsi *vsi)
7858{
7859 int ret = -ENOENT;
7860 struct i40e_pf *pf = vsi->back;
7861
Alexander Duyck493fb302013-09-28 07:01:44 +00007862 if (vsi->q_vectors[0]) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007863 dev_info(&pf->pdev->dev, "VSI %d has existing q_vectors\n",
7864 vsi->seid);
7865 return -EEXIST;
7866 }
7867
7868 if (vsi->base_vector) {
Jesse Brandeburgf29eaa32014-02-11 08:24:12 +00007869 dev_info(&pf->pdev->dev, "VSI %d has non-zero base vector %d\n",
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007870 vsi->seid, vsi->base_vector);
7871 return -EEXIST;
7872 }
7873
Greg Rose90e04072014-03-06 08:59:57 +00007874 ret = i40e_vsi_alloc_q_vectors(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007875 if (ret) {
7876 dev_info(&pf->pdev->dev,
7877 "failed to allocate %d q_vector for VSI %d, ret=%d\n",
7878 vsi->num_q_vectors, vsi->seid, ret);
7879 vsi->num_q_vectors = 0;
7880 goto vector_setup_out;
7881 }
7882
Shannon Nelson958a3e32013-09-28 07:13:28 +00007883 if (vsi->num_q_vectors)
7884 vsi->base_vector = i40e_get_lump(pf, pf->irq_pile,
7885 vsi->num_q_vectors, vsi->idx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007886 if (vsi->base_vector < 0) {
7887 dev_info(&pf->pdev->dev,
Jesse Brandeburgf29eaa32014-02-11 08:24:12 +00007888 "failed to get queue tracking for VSI %d, err=%d\n",
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007889 vsi->seid, vsi->base_vector);
7890 i40e_vsi_free_q_vectors(vsi);
7891 ret = -ENOENT;
7892 goto vector_setup_out;
7893 }
7894
7895vector_setup_out:
7896 return ret;
7897}
7898
7899/**
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007900 * i40e_vsi_reinit_setup - return and reallocate resources for a VSI
7901 * @vsi: pointer to the vsi.
7902 *
7903 * This re-allocates a vsi's queue resources.
7904 *
7905 * Returns pointer to the successfully allocated and configured VSI sw struct
7906 * on success, otherwise returns NULL on failure.
7907 **/
7908static struct i40e_vsi *i40e_vsi_reinit_setup(struct i40e_vsi *vsi)
7909{
7910 struct i40e_pf *pf = vsi->back;
7911 u8 enabled_tc;
7912 int ret;
7913
7914 i40e_put_lump(pf->qp_pile, vsi->base_queue, vsi->idx);
7915 i40e_vsi_clear_rings(vsi);
7916
7917 i40e_vsi_free_arrays(vsi, false);
7918 i40e_set_num_rings_in_vsi(vsi);
7919 ret = i40e_vsi_alloc_arrays(vsi, false);
7920 if (ret)
7921 goto err_vsi;
7922
7923 ret = i40e_get_lump(pf, pf->qp_pile, vsi->alloc_queue_pairs, vsi->idx);
7924 if (ret < 0) {
7925 dev_info(&pf->pdev->dev, "VSI %d get_lump failed %d\n",
7926 vsi->seid, ret);
7927 goto err_vsi;
7928 }
7929 vsi->base_queue = ret;
7930
7931 /* Update the FW view of the VSI. Force a reset of TC and queue
7932 * layout configurations.
7933 */
7934 enabled_tc = pf->vsi[pf->lan_vsi]->tc_config.enabled_tc;
7935 pf->vsi[pf->lan_vsi]->tc_config.enabled_tc = 0;
7936 pf->vsi[pf->lan_vsi]->seid = pf->main_vsi_seid;
7937 i40e_vsi_config_tc(pf->vsi[pf->lan_vsi], enabled_tc);
7938
7939 /* assign it some queues */
7940 ret = i40e_alloc_rings(vsi);
7941 if (ret)
7942 goto err_rings;
7943
7944 /* map all of the rings to the q_vectors */
7945 i40e_vsi_map_rings_to_vectors(vsi);
7946 return vsi;
7947
7948err_rings:
7949 i40e_vsi_free_q_vectors(vsi);
7950 if (vsi->netdev_registered) {
7951 vsi->netdev_registered = false;
7952 unregister_netdev(vsi->netdev);
7953 free_netdev(vsi->netdev);
7954 vsi->netdev = NULL;
7955 }
7956 i40e_aq_delete_element(&pf->hw, vsi->seid, NULL);
7957err_vsi:
7958 i40e_vsi_clear(vsi);
7959 return NULL;
7960}
7961
7962/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007963 * i40e_vsi_setup - Set up a VSI by a given type
7964 * @pf: board private structure
7965 * @type: VSI type
7966 * @uplink_seid: the switch element to link to
7967 * @param1: usage depends upon VSI type. For VF types, indicates VF id
7968 *
7969 * This allocates the sw VSI structure and its queue resources, then add a VSI
7970 * to the identified VEB.
7971 *
7972 * Returns pointer to the successfully allocated and configure VSI sw struct on
7973 * success, otherwise returns NULL on failure.
7974 **/
7975struct i40e_vsi *i40e_vsi_setup(struct i40e_pf *pf, u8 type,
7976 u16 uplink_seid, u32 param1)
7977{
7978 struct i40e_vsi *vsi = NULL;
7979 struct i40e_veb *veb = NULL;
7980 int ret, i;
7981 int v_idx;
7982
7983 /* The requested uplink_seid must be either
7984 * - the PF's port seid
7985 * no VEB is needed because this is the PF
7986 * or this is a Flow Director special case VSI
7987 * - seid of an existing VEB
7988 * - seid of a VSI that owns an existing VEB
7989 * - seid of a VSI that doesn't own a VEB
7990 * a new VEB is created and the VSI becomes the owner
7991 * - seid of the PF VSI, which is what creates the first VEB
7992 * this is a special case of the previous
7993 *
7994 * Find which uplink_seid we were given and create a new VEB if needed
7995 */
7996 for (i = 0; i < I40E_MAX_VEB; i++) {
7997 if (pf->veb[i] && pf->veb[i]->seid == uplink_seid) {
7998 veb = pf->veb[i];
7999 break;
8000 }
8001 }
8002
8003 if (!veb && uplink_seid != pf->mac_seid) {
8004
Mitch Williams505682c2014-05-20 08:01:37 +00008005 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008006 if (pf->vsi[i] && pf->vsi[i]->seid == uplink_seid) {
8007 vsi = pf->vsi[i];
8008 break;
8009 }
8010 }
8011 if (!vsi) {
8012 dev_info(&pf->pdev->dev, "no such uplink_seid %d\n",
8013 uplink_seid);
8014 return NULL;
8015 }
8016
8017 if (vsi->uplink_seid == pf->mac_seid)
8018 veb = i40e_veb_setup(pf, 0, pf->mac_seid, vsi->seid,
8019 vsi->tc_config.enabled_tc);
8020 else if ((vsi->flags & I40E_VSI_FLAG_VEB_OWNER) == 0)
8021 veb = i40e_veb_setup(pf, 0, vsi->uplink_seid, vsi->seid,
8022 vsi->tc_config.enabled_tc);
8023
8024 for (i = 0; i < I40E_MAX_VEB && !veb; i++) {
8025 if (pf->veb[i] && pf->veb[i]->seid == vsi->uplink_seid)
8026 veb = pf->veb[i];
8027 }
8028 if (!veb) {
8029 dev_info(&pf->pdev->dev, "couldn't add VEB\n");
8030 return NULL;
8031 }
8032
8033 vsi->flags |= I40E_VSI_FLAG_VEB_OWNER;
8034 uplink_seid = veb->seid;
8035 }
8036
8037 /* get vsi sw struct */
8038 v_idx = i40e_vsi_mem_alloc(pf, type);
8039 if (v_idx < 0)
8040 goto err_alloc;
8041 vsi = pf->vsi[v_idx];
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008042 if (!vsi)
8043 goto err_alloc;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008044 vsi->type = type;
8045 vsi->veb_idx = (veb ? veb->idx : I40E_NO_VEB);
8046
8047 if (type == I40E_VSI_MAIN)
8048 pf->lan_vsi = v_idx;
8049 else if (type == I40E_VSI_SRIOV)
8050 vsi->vf_id = param1;
8051 /* assign it some queues */
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008052 ret = i40e_get_lump(pf, pf->qp_pile, vsi->alloc_queue_pairs,
8053 vsi->idx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008054 if (ret < 0) {
8055 dev_info(&pf->pdev->dev, "VSI %d get_lump failed %d\n",
8056 vsi->seid, ret);
8057 goto err_vsi;
8058 }
8059 vsi->base_queue = ret;
8060
8061 /* get a VSI from the hardware */
8062 vsi->uplink_seid = uplink_seid;
8063 ret = i40e_add_vsi(vsi);
8064 if (ret)
8065 goto err_vsi;
8066
8067 switch (vsi->type) {
8068 /* setup the netdev if needed */
8069 case I40E_VSI_MAIN:
8070 case I40E_VSI_VMDQ2:
Vasu Dev38e00432014-08-01 13:27:03 -07008071 case I40E_VSI_FCOE:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008072 ret = i40e_config_netdev(vsi);
8073 if (ret)
8074 goto err_netdev;
8075 ret = register_netdev(vsi->netdev);
8076 if (ret)
8077 goto err_netdev;
8078 vsi->netdev_registered = true;
8079 netif_carrier_off(vsi->netdev);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08008080#ifdef CONFIG_I40E_DCB
8081 /* Setup DCB netlink interface */
8082 i40e_dcbnl_setup(vsi);
8083#endif /* CONFIG_I40E_DCB */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008084 /* fall through */
8085
8086 case I40E_VSI_FDIR:
8087 /* set up vectors and rings if needed */
8088 ret = i40e_vsi_setup_vectors(vsi);
8089 if (ret)
8090 goto err_msix;
8091
8092 ret = i40e_alloc_rings(vsi);
8093 if (ret)
8094 goto err_rings;
8095
8096 /* map all of the rings to the q_vectors */
8097 i40e_vsi_map_rings_to_vectors(vsi);
8098
8099 i40e_vsi_reset_stats(vsi);
8100 break;
8101
8102 default:
8103 /* no netdev or rings for the other VSI types */
8104 break;
8105 }
8106
8107 return vsi;
8108
8109err_rings:
8110 i40e_vsi_free_q_vectors(vsi);
8111err_msix:
8112 if (vsi->netdev_registered) {
8113 vsi->netdev_registered = false;
8114 unregister_netdev(vsi->netdev);
8115 free_netdev(vsi->netdev);
8116 vsi->netdev = NULL;
8117 }
8118err_netdev:
8119 i40e_aq_delete_element(&pf->hw, vsi->seid, NULL);
8120err_vsi:
8121 i40e_vsi_clear(vsi);
8122err_alloc:
8123 return NULL;
8124}
8125
8126/**
8127 * i40e_veb_get_bw_info - Query VEB BW information
8128 * @veb: the veb to query
8129 *
8130 * Query the Tx scheduler BW configuration data for given VEB
8131 **/
8132static int i40e_veb_get_bw_info(struct i40e_veb *veb)
8133{
8134 struct i40e_aqc_query_switching_comp_ets_config_resp ets_data;
8135 struct i40e_aqc_query_switching_comp_bw_config_resp bw_data;
8136 struct i40e_pf *pf = veb->pf;
8137 struct i40e_hw *hw = &pf->hw;
8138 u32 tc_bw_max;
8139 int ret = 0;
8140 int i;
8141
8142 ret = i40e_aq_query_switch_comp_bw_config(hw, veb->seid,
8143 &bw_data, NULL);
8144 if (ret) {
8145 dev_info(&pf->pdev->dev,
8146 "query veb bw config failed, aq_err=%d\n",
8147 hw->aq.asq_last_status);
8148 goto out;
8149 }
8150
8151 ret = i40e_aq_query_switch_comp_ets_config(hw, veb->seid,
8152 &ets_data, NULL);
8153 if (ret) {
8154 dev_info(&pf->pdev->dev,
8155 "query veb bw ets config failed, aq_err=%d\n",
8156 hw->aq.asq_last_status);
8157 goto out;
8158 }
8159
8160 veb->bw_limit = le16_to_cpu(ets_data.port_bw_limit);
8161 veb->bw_max_quanta = ets_data.tc_bw_max;
8162 veb->is_abs_credits = bw_data.absolute_credits_enable;
8163 tc_bw_max = le16_to_cpu(bw_data.tc_bw_max[0]) |
8164 (le16_to_cpu(bw_data.tc_bw_max[1]) << 16);
8165 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
8166 veb->bw_tc_share_credits[i] = bw_data.tc_bw_share_credits[i];
8167 veb->bw_tc_limit_credits[i] =
8168 le16_to_cpu(bw_data.tc_bw_limits[i]);
8169 veb->bw_tc_max_quanta[i] = ((tc_bw_max >> (i*4)) & 0x7);
8170 }
8171
8172out:
8173 return ret;
8174}
8175
8176/**
8177 * i40e_veb_mem_alloc - Allocates the next available struct veb in the PF
8178 * @pf: board private structure
8179 *
8180 * On error: returns error code (negative)
8181 * On success: returns vsi index in PF (positive)
8182 **/
8183static int i40e_veb_mem_alloc(struct i40e_pf *pf)
8184{
8185 int ret = -ENOENT;
8186 struct i40e_veb *veb;
8187 int i;
8188
8189 /* Need to protect the allocation of switch elements at the PF level */
8190 mutex_lock(&pf->switch_mutex);
8191
8192 /* VEB list may be fragmented if VEB creation/destruction has
8193 * been happening. We can afford to do a quick scan to look
8194 * for any free slots in the list.
8195 *
8196 * find next empty veb slot, looping back around if necessary
8197 */
8198 i = 0;
8199 while ((i < I40E_MAX_VEB) && (pf->veb[i] != NULL))
8200 i++;
8201 if (i >= I40E_MAX_VEB) {
8202 ret = -ENOMEM;
8203 goto err_alloc_veb; /* out of VEB slots! */
8204 }
8205
8206 veb = kzalloc(sizeof(*veb), GFP_KERNEL);
8207 if (!veb) {
8208 ret = -ENOMEM;
8209 goto err_alloc_veb;
8210 }
8211 veb->pf = pf;
8212 veb->idx = i;
8213 veb->enabled_tc = 1;
8214
8215 pf->veb[i] = veb;
8216 ret = i;
8217err_alloc_veb:
8218 mutex_unlock(&pf->switch_mutex);
8219 return ret;
8220}
8221
8222/**
8223 * i40e_switch_branch_release - Delete a branch of the switch tree
8224 * @branch: where to start deleting
8225 *
8226 * This uses recursion to find the tips of the branch to be
8227 * removed, deleting until we get back to and can delete this VEB.
8228 **/
8229static void i40e_switch_branch_release(struct i40e_veb *branch)
8230{
8231 struct i40e_pf *pf = branch->pf;
8232 u16 branch_seid = branch->seid;
8233 u16 veb_idx = branch->idx;
8234 int i;
8235
8236 /* release any VEBs on this VEB - RECURSION */
8237 for (i = 0; i < I40E_MAX_VEB; i++) {
8238 if (!pf->veb[i])
8239 continue;
8240 if (pf->veb[i]->uplink_seid == branch->seid)
8241 i40e_switch_branch_release(pf->veb[i]);
8242 }
8243
8244 /* Release the VSIs on this VEB, but not the owner VSI.
8245 *
8246 * NOTE: Removing the last VSI on a VEB has the SIDE EFFECT of removing
8247 * the VEB itself, so don't use (*branch) after this loop.
8248 */
Mitch Williams505682c2014-05-20 08:01:37 +00008249 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008250 if (!pf->vsi[i])
8251 continue;
8252 if (pf->vsi[i]->uplink_seid == branch_seid &&
8253 (pf->vsi[i]->flags & I40E_VSI_FLAG_VEB_OWNER) == 0) {
8254 i40e_vsi_release(pf->vsi[i]);
8255 }
8256 }
8257
8258 /* There's one corner case where the VEB might not have been
8259 * removed, so double check it here and remove it if needed.
8260 * This case happens if the veb was created from the debugfs
8261 * commands and no VSIs were added to it.
8262 */
8263 if (pf->veb[veb_idx])
8264 i40e_veb_release(pf->veb[veb_idx]);
8265}
8266
8267/**
8268 * i40e_veb_clear - remove veb struct
8269 * @veb: the veb to remove
8270 **/
8271static void i40e_veb_clear(struct i40e_veb *veb)
8272{
8273 if (!veb)
8274 return;
8275
8276 if (veb->pf) {
8277 struct i40e_pf *pf = veb->pf;
8278
8279 mutex_lock(&pf->switch_mutex);
8280 if (pf->veb[veb->idx] == veb)
8281 pf->veb[veb->idx] = NULL;
8282 mutex_unlock(&pf->switch_mutex);
8283 }
8284
8285 kfree(veb);
8286}
8287
8288/**
8289 * i40e_veb_release - Delete a VEB and free its resources
8290 * @veb: the VEB being removed
8291 **/
8292void i40e_veb_release(struct i40e_veb *veb)
8293{
8294 struct i40e_vsi *vsi = NULL;
8295 struct i40e_pf *pf;
8296 int i, n = 0;
8297
8298 pf = veb->pf;
8299
8300 /* find the remaining VSI and check for extras */
Mitch Williams505682c2014-05-20 08:01:37 +00008301 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008302 if (pf->vsi[i] && pf->vsi[i]->uplink_seid == veb->seid) {
8303 n++;
8304 vsi = pf->vsi[i];
8305 }
8306 }
8307 if (n != 1) {
8308 dev_info(&pf->pdev->dev,
8309 "can't remove VEB %d with %d VSIs left\n",
8310 veb->seid, n);
8311 return;
8312 }
8313
8314 /* move the remaining VSI to uplink veb */
8315 vsi->flags &= ~I40E_VSI_FLAG_VEB_OWNER;
8316 if (veb->uplink_seid) {
8317 vsi->uplink_seid = veb->uplink_seid;
8318 if (veb->uplink_seid == pf->mac_seid)
8319 vsi->veb_idx = I40E_NO_VEB;
8320 else
8321 vsi->veb_idx = veb->veb_idx;
8322 } else {
8323 /* floating VEB */
8324 vsi->uplink_seid = pf->vsi[pf->lan_vsi]->uplink_seid;
8325 vsi->veb_idx = pf->vsi[pf->lan_vsi]->veb_idx;
8326 }
8327
8328 i40e_aq_delete_element(&pf->hw, veb->seid, NULL);
8329 i40e_veb_clear(veb);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008330}
8331
8332/**
8333 * i40e_add_veb - create the VEB in the switch
8334 * @veb: the VEB to be instantiated
8335 * @vsi: the controlling VSI
8336 **/
8337static int i40e_add_veb(struct i40e_veb *veb, struct i40e_vsi *vsi)
8338{
Greg Rose56747262013-11-28 06:39:37 +00008339 bool is_default = false;
Kevin Scotte1c51b952013-11-20 10:02:51 +00008340 bool is_cloud = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008341 int ret;
8342
8343 /* get a VEB from the hardware */
8344 ret = i40e_aq_add_veb(&veb->pf->hw, veb->uplink_seid, vsi->seid,
Kevin Scotte1c51b952013-11-20 10:02:51 +00008345 veb->enabled_tc, is_default,
8346 is_cloud, &veb->seid, NULL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008347 if (ret) {
8348 dev_info(&veb->pf->pdev->dev,
8349 "couldn't add VEB, err %d, aq_err %d\n",
8350 ret, veb->pf->hw.aq.asq_last_status);
8351 return -EPERM;
8352 }
8353
8354 /* get statistics counter */
8355 ret = i40e_aq_get_veb_parameters(&veb->pf->hw, veb->seid, NULL, NULL,
8356 &veb->stats_idx, NULL, NULL, NULL);
8357 if (ret) {
8358 dev_info(&veb->pf->pdev->dev,
8359 "couldn't get VEB statistics idx, err %d, aq_err %d\n",
8360 ret, veb->pf->hw.aq.asq_last_status);
8361 return -EPERM;
8362 }
8363 ret = i40e_veb_get_bw_info(veb);
8364 if (ret) {
8365 dev_info(&veb->pf->pdev->dev,
8366 "couldn't get VEB bw info, err %d, aq_err %d\n",
8367 ret, veb->pf->hw.aq.asq_last_status);
8368 i40e_aq_delete_element(&veb->pf->hw, veb->seid, NULL);
8369 return -ENOENT;
8370 }
8371
8372 vsi->uplink_seid = veb->seid;
8373 vsi->veb_idx = veb->idx;
8374 vsi->flags |= I40E_VSI_FLAG_VEB_OWNER;
8375
8376 return 0;
8377}
8378
8379/**
8380 * i40e_veb_setup - Set up a VEB
8381 * @pf: board private structure
8382 * @flags: VEB setup flags
8383 * @uplink_seid: the switch element to link to
8384 * @vsi_seid: the initial VSI seid
8385 * @enabled_tc: Enabled TC bit-map
8386 *
8387 * This allocates the sw VEB structure and links it into the switch
8388 * It is possible and legal for this to be a duplicate of an already
8389 * existing VEB. It is also possible for both uplink and vsi seids
8390 * to be zero, in order to create a floating VEB.
8391 *
8392 * Returns pointer to the successfully allocated VEB sw struct on
8393 * success, otherwise returns NULL on failure.
8394 **/
8395struct i40e_veb *i40e_veb_setup(struct i40e_pf *pf, u16 flags,
8396 u16 uplink_seid, u16 vsi_seid,
8397 u8 enabled_tc)
8398{
8399 struct i40e_veb *veb, *uplink_veb = NULL;
8400 int vsi_idx, veb_idx;
8401 int ret;
8402
8403 /* if one seid is 0, the other must be 0 to create a floating relay */
8404 if ((uplink_seid == 0 || vsi_seid == 0) &&
8405 (uplink_seid + vsi_seid != 0)) {
8406 dev_info(&pf->pdev->dev,
8407 "one, not both seid's are 0: uplink=%d vsi=%d\n",
8408 uplink_seid, vsi_seid);
8409 return NULL;
8410 }
8411
8412 /* make sure there is such a vsi and uplink */
Mitch Williams505682c2014-05-20 08:01:37 +00008413 for (vsi_idx = 0; vsi_idx < pf->num_alloc_vsi; vsi_idx++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008414 if (pf->vsi[vsi_idx] && pf->vsi[vsi_idx]->seid == vsi_seid)
8415 break;
Mitch Williams505682c2014-05-20 08:01:37 +00008416 if (vsi_idx >= pf->num_alloc_vsi && vsi_seid != 0) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008417 dev_info(&pf->pdev->dev, "vsi seid %d not found\n",
8418 vsi_seid);
8419 return NULL;
8420 }
8421
8422 if (uplink_seid && uplink_seid != pf->mac_seid) {
8423 for (veb_idx = 0; veb_idx < I40E_MAX_VEB; veb_idx++) {
8424 if (pf->veb[veb_idx] &&
8425 pf->veb[veb_idx]->seid == uplink_seid) {
8426 uplink_veb = pf->veb[veb_idx];
8427 break;
8428 }
8429 }
8430 if (!uplink_veb) {
8431 dev_info(&pf->pdev->dev,
8432 "uplink seid %d not found\n", uplink_seid);
8433 return NULL;
8434 }
8435 }
8436
8437 /* get veb sw struct */
8438 veb_idx = i40e_veb_mem_alloc(pf);
8439 if (veb_idx < 0)
8440 goto err_alloc;
8441 veb = pf->veb[veb_idx];
8442 veb->flags = flags;
8443 veb->uplink_seid = uplink_seid;
8444 veb->veb_idx = (uplink_veb ? uplink_veb->idx : I40E_NO_VEB);
8445 veb->enabled_tc = (enabled_tc ? enabled_tc : 0x1);
8446
8447 /* create the VEB in the switch */
8448 ret = i40e_add_veb(veb, pf->vsi[vsi_idx]);
8449 if (ret)
8450 goto err_veb;
Shannon Nelson1bb8b932014-04-23 04:49:54 +00008451 if (vsi_idx == pf->lan_vsi)
8452 pf->lan_veb = veb->idx;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008453
8454 return veb;
8455
8456err_veb:
8457 i40e_veb_clear(veb);
8458err_alloc:
8459 return NULL;
8460}
8461
8462/**
8463 * i40e_setup_pf_switch_element - set pf vars based on switch type
8464 * @pf: board private structure
8465 * @ele: element we are building info from
8466 * @num_reported: total number of elements
8467 * @printconfig: should we print the contents
8468 *
8469 * helper function to assist in extracting a few useful SEID values.
8470 **/
8471static void i40e_setup_pf_switch_element(struct i40e_pf *pf,
8472 struct i40e_aqc_switch_config_element_resp *ele,
8473 u16 num_reported, bool printconfig)
8474{
8475 u16 downlink_seid = le16_to_cpu(ele->downlink_seid);
8476 u16 uplink_seid = le16_to_cpu(ele->uplink_seid);
8477 u8 element_type = ele->element_type;
8478 u16 seid = le16_to_cpu(ele->seid);
8479
8480 if (printconfig)
8481 dev_info(&pf->pdev->dev,
8482 "type=%d seid=%d uplink=%d downlink=%d\n",
8483 element_type, seid, uplink_seid, downlink_seid);
8484
8485 switch (element_type) {
8486 case I40E_SWITCH_ELEMENT_TYPE_MAC:
8487 pf->mac_seid = seid;
8488 break;
8489 case I40E_SWITCH_ELEMENT_TYPE_VEB:
8490 /* Main VEB? */
8491 if (uplink_seid != pf->mac_seid)
8492 break;
8493 if (pf->lan_veb == I40E_NO_VEB) {
8494 int v;
8495
8496 /* find existing or else empty VEB */
8497 for (v = 0; v < I40E_MAX_VEB; v++) {
8498 if (pf->veb[v] && (pf->veb[v]->seid == seid)) {
8499 pf->lan_veb = v;
8500 break;
8501 }
8502 }
8503 if (pf->lan_veb == I40E_NO_VEB) {
8504 v = i40e_veb_mem_alloc(pf);
8505 if (v < 0)
8506 break;
8507 pf->lan_veb = v;
8508 }
8509 }
8510
8511 pf->veb[pf->lan_veb]->seid = seid;
8512 pf->veb[pf->lan_veb]->uplink_seid = pf->mac_seid;
8513 pf->veb[pf->lan_veb]->pf = pf;
8514 pf->veb[pf->lan_veb]->veb_idx = I40E_NO_VEB;
8515 break;
8516 case I40E_SWITCH_ELEMENT_TYPE_VSI:
8517 if (num_reported != 1)
8518 break;
8519 /* This is immediately after a reset so we can assume this is
8520 * the PF's VSI
8521 */
8522 pf->mac_seid = uplink_seid;
8523 pf->pf_seid = downlink_seid;
8524 pf->main_vsi_seid = seid;
8525 if (printconfig)
8526 dev_info(&pf->pdev->dev,
8527 "pf_seid=%d main_vsi_seid=%d\n",
8528 pf->pf_seid, pf->main_vsi_seid);
8529 break;
8530 case I40E_SWITCH_ELEMENT_TYPE_PF:
8531 case I40E_SWITCH_ELEMENT_TYPE_VF:
8532 case I40E_SWITCH_ELEMENT_TYPE_EMP:
8533 case I40E_SWITCH_ELEMENT_TYPE_BMC:
8534 case I40E_SWITCH_ELEMENT_TYPE_PE:
8535 case I40E_SWITCH_ELEMENT_TYPE_PA:
8536 /* ignore these for now */
8537 break;
8538 default:
8539 dev_info(&pf->pdev->dev, "unknown element type=%d seid=%d\n",
8540 element_type, seid);
8541 break;
8542 }
8543}
8544
8545/**
8546 * i40e_fetch_switch_configuration - Get switch config from firmware
8547 * @pf: board private structure
8548 * @printconfig: should we print the contents
8549 *
8550 * Get the current switch configuration from the device and
8551 * extract a few useful SEID values.
8552 **/
8553int i40e_fetch_switch_configuration(struct i40e_pf *pf, bool printconfig)
8554{
8555 struct i40e_aqc_get_switch_config_resp *sw_config;
8556 u16 next_seid = 0;
8557 int ret = 0;
8558 u8 *aq_buf;
8559 int i;
8560
8561 aq_buf = kzalloc(I40E_AQ_LARGE_BUF, GFP_KERNEL);
8562 if (!aq_buf)
8563 return -ENOMEM;
8564
8565 sw_config = (struct i40e_aqc_get_switch_config_resp *)aq_buf;
8566 do {
8567 u16 num_reported, num_total;
8568
8569 ret = i40e_aq_get_switch_config(&pf->hw, sw_config,
8570 I40E_AQ_LARGE_BUF,
8571 &next_seid, NULL);
8572 if (ret) {
8573 dev_info(&pf->pdev->dev,
8574 "get switch config failed %d aq_err=%x\n",
8575 ret, pf->hw.aq.asq_last_status);
8576 kfree(aq_buf);
8577 return -ENOENT;
8578 }
8579
8580 num_reported = le16_to_cpu(sw_config->header.num_reported);
8581 num_total = le16_to_cpu(sw_config->header.num_total);
8582
8583 if (printconfig)
8584 dev_info(&pf->pdev->dev,
8585 "header: %d reported %d total\n",
8586 num_reported, num_total);
8587
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008588 for (i = 0; i < num_reported; i++) {
8589 struct i40e_aqc_switch_config_element_resp *ele =
8590 &sw_config->element[i];
8591
8592 i40e_setup_pf_switch_element(pf, ele, num_reported,
8593 printconfig);
8594 }
8595 } while (next_seid != 0);
8596
8597 kfree(aq_buf);
8598 return ret;
8599}
8600
8601/**
8602 * i40e_setup_pf_switch - Setup the HW switch on startup or after reset
8603 * @pf: board private structure
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00008604 * @reinit: if the Main VSI needs to re-initialized.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008605 *
8606 * Returns 0 on success, negative value on failure
8607 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00008608static int i40e_setup_pf_switch(struct i40e_pf *pf, bool reinit)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008609{
8610 int ret;
8611
8612 /* find out what's out there already */
8613 ret = i40e_fetch_switch_configuration(pf, false);
8614 if (ret) {
8615 dev_info(&pf->pdev->dev,
8616 "couldn't fetch switch config, err %d, aq_err %d\n",
8617 ret, pf->hw.aq.asq_last_status);
8618 return ret;
8619 }
8620 i40e_pf_reset_stats(pf);
8621
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008622 /* first time setup */
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00008623 if (pf->lan_vsi == I40E_NO_VSI || reinit) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008624 struct i40e_vsi *vsi = NULL;
8625 u16 uplink_seid;
8626
8627 /* Set up the PF VSI associated with the PF's main VSI
8628 * that is already in the HW switch
8629 */
8630 if (pf->lan_veb != I40E_NO_VEB && pf->veb[pf->lan_veb])
8631 uplink_seid = pf->veb[pf->lan_veb]->seid;
8632 else
8633 uplink_seid = pf->mac_seid;
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00008634 if (pf->lan_vsi == I40E_NO_VSI)
8635 vsi = i40e_vsi_setup(pf, I40E_VSI_MAIN, uplink_seid, 0);
8636 else if (reinit)
8637 vsi = i40e_vsi_reinit_setup(pf->vsi[pf->lan_vsi]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008638 if (!vsi) {
8639 dev_info(&pf->pdev->dev, "setup of MAIN VSI failed\n");
8640 i40e_fdir_teardown(pf);
8641 return -EAGAIN;
8642 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008643 } else {
8644 /* force a reset of TC and queue layout configurations */
8645 u8 enabled_tc = pf->vsi[pf->lan_vsi]->tc_config.enabled_tc;
8646 pf->vsi[pf->lan_vsi]->tc_config.enabled_tc = 0;
8647 pf->vsi[pf->lan_vsi]->seid = pf->main_vsi_seid;
8648 i40e_vsi_config_tc(pf->vsi[pf->lan_vsi], enabled_tc);
8649 }
8650 i40e_vlan_stripping_disable(pf->vsi[pf->lan_vsi]);
8651
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008652 i40e_fdir_sb_setup(pf);
8653
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008654 /* Setup static PF queue filter control settings */
8655 ret = i40e_setup_pf_filter_control(pf);
8656 if (ret) {
8657 dev_info(&pf->pdev->dev, "setup_pf_filter_control failed: %d\n",
8658 ret);
8659 /* Failure here should not stop continuing other steps */
8660 }
8661
8662 /* enable RSS in the HW, even for only one queue, as the stack can use
8663 * the hash
8664 */
8665 if ((pf->flags & I40E_FLAG_RSS_ENABLED))
8666 i40e_config_rss(pf);
8667
8668 /* fill in link information and enable LSE reporting */
Catherine Sullivan8109e122014-06-04 08:45:24 +00008669 i40e_update_link_info(&pf->hw, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008670 i40e_link_event(pf);
8671
Jesse Brandeburgd52c20b2013-11-26 10:49:15 +00008672 /* Initialize user-specific link properties */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008673 pf->fc_autoneg_status = ((pf->hw.phy.link_info.an_info &
8674 I40E_AQ_AN_COMPLETED) ? true : false);
Jesse Brandeburgd52c20b2013-11-26 10:49:15 +00008675
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00008676 i40e_ptp_init(pf);
8677
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008678 return ret;
8679}
8680
8681/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008682 * i40e_determine_queue_usage - Work out queue distribution
8683 * @pf: board private structure
8684 **/
8685static void i40e_determine_queue_usage(struct i40e_pf *pf)
8686{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008687 int queues_left;
8688
8689 pf->num_lan_qps = 0;
Vasu Dev38e00432014-08-01 13:27:03 -07008690#ifdef I40E_FCOE
8691 pf->num_fcoe_qps = 0;
8692#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008693
8694 /* Find the max queues to be put into basic use. We'll always be
8695 * using TC0, whether or not DCB is running, and TC0 will get the
8696 * big RSS set.
8697 */
8698 queues_left = pf->hw.func_caps.num_tx_qp;
8699
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008700 if ((queues_left == 1) ||
Frank Zhang9aa7e932014-05-20 08:01:42 +00008701 !(pf->flags & I40E_FLAG_MSIX_ENABLED)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008702 /* one qp for PF, no queues for anything else */
8703 queues_left = 0;
8704 pf->rss_size = pf->num_lan_qps = 1;
8705
8706 /* make sure all the fancies are disabled */
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08008707 pf->flags &= ~(I40E_FLAG_RSS_ENABLED |
Vasu Dev38e00432014-08-01 13:27:03 -07008708#ifdef I40E_FCOE
8709 I40E_FLAG_FCOE_ENABLED |
8710#endif
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08008711 I40E_FLAG_FD_SB_ENABLED |
8712 I40E_FLAG_FD_ATR_ENABLED |
Neerav Parikh4d9b6042014-05-22 06:31:51 +00008713 I40E_FLAG_DCB_CAPABLE |
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08008714 I40E_FLAG_SRIOV_ENABLED |
8715 I40E_FLAG_VMDQ_ENABLED);
Frank Zhang9aa7e932014-05-20 08:01:42 +00008716 } else if (!(pf->flags & (I40E_FLAG_RSS_ENABLED |
8717 I40E_FLAG_FD_SB_ENABLED |
Anjali Singhai Jainbbe7d0e2014-05-20 08:01:44 +00008718 I40E_FLAG_FD_ATR_ENABLED |
Neerav Parikh4d9b6042014-05-22 06:31:51 +00008719 I40E_FLAG_DCB_CAPABLE))) {
Frank Zhang9aa7e932014-05-20 08:01:42 +00008720 /* one qp for PF */
8721 pf->rss_size = pf->num_lan_qps = 1;
8722 queues_left -= pf->num_lan_qps;
8723
8724 pf->flags &= ~(I40E_FLAG_RSS_ENABLED |
Vasu Dev38e00432014-08-01 13:27:03 -07008725#ifdef I40E_FCOE
8726 I40E_FLAG_FCOE_ENABLED |
8727#endif
Frank Zhang9aa7e932014-05-20 08:01:42 +00008728 I40E_FLAG_FD_SB_ENABLED |
8729 I40E_FLAG_FD_ATR_ENABLED |
8730 I40E_FLAG_DCB_ENABLED |
8731 I40E_FLAG_VMDQ_ENABLED);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008732 } else {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008733 /* Not enough queues for all TCs */
Neerav Parikh4d9b6042014-05-22 06:31:51 +00008734 if ((pf->flags & I40E_FLAG_DCB_CAPABLE) &&
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008735 (queues_left < I40E_MAX_TRAFFIC_CLASS)) {
Neerav Parikh4d9b6042014-05-22 06:31:51 +00008736 pf->flags &= ~I40E_FLAG_DCB_CAPABLE;
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008737 dev_info(&pf->pdev->dev, "not enough queues for DCB. DCB is disabled.\n");
8738 }
8739 pf->num_lan_qps = pf->rss_size_max;
8740 queues_left -= pf->num_lan_qps;
8741 }
8742
Vasu Dev38e00432014-08-01 13:27:03 -07008743#ifdef I40E_FCOE
8744 if (pf->flags & I40E_FLAG_FCOE_ENABLED) {
8745 if (I40E_DEFAULT_FCOE <= queues_left) {
8746 pf->num_fcoe_qps = I40E_DEFAULT_FCOE;
8747 } else if (I40E_MINIMUM_FCOE <= queues_left) {
8748 pf->num_fcoe_qps = I40E_MINIMUM_FCOE;
8749 } else {
8750 pf->num_fcoe_qps = 0;
8751 pf->flags &= ~I40E_FLAG_FCOE_ENABLED;
8752 dev_info(&pf->pdev->dev, "not enough queues for FCoE. FCoE feature will be disabled\n");
8753 }
8754
8755 queues_left -= pf->num_fcoe_qps;
8756 }
8757
8758#endif
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008759 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
8760 if (queues_left > 1) {
8761 queues_left -= 1; /* save 1 queue for FD */
8762 } else {
8763 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
8764 dev_info(&pf->pdev->dev, "not enough queues for Flow Director. Flow Director feature is disabled\n");
8765 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008766 }
8767
8768 if ((pf->flags & I40E_FLAG_SRIOV_ENABLED) &&
8769 pf->num_vf_qps && pf->num_req_vfs && queues_left) {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008770 pf->num_req_vfs = min_t(int, pf->num_req_vfs,
8771 (queues_left / pf->num_vf_qps));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008772 queues_left -= (pf->num_req_vfs * pf->num_vf_qps);
8773 }
8774
8775 if ((pf->flags & I40E_FLAG_VMDQ_ENABLED) &&
8776 pf->num_vmdq_vsis && pf->num_vmdq_qps && queues_left) {
8777 pf->num_vmdq_vsis = min_t(int, pf->num_vmdq_vsis,
8778 (queues_left / pf->num_vmdq_qps));
8779 queues_left -= (pf->num_vmdq_vsis * pf->num_vmdq_qps);
8780 }
8781
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00008782 pf->queues_left = queues_left;
Vasu Dev38e00432014-08-01 13:27:03 -07008783#ifdef I40E_FCOE
8784 dev_info(&pf->pdev->dev, "fcoe queues = %d\n", pf->num_fcoe_qps);
8785#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008786}
8787
8788/**
8789 * i40e_setup_pf_filter_control - Setup PF static filter control
8790 * @pf: PF to be setup
8791 *
8792 * i40e_setup_pf_filter_control sets up a pf's initial filter control
8793 * settings. If PE/FCoE are enabled then it will also set the per PF
8794 * based filter sizes required for them. It also enables Flow director,
8795 * ethertype and macvlan type filter settings for the pf.
8796 *
8797 * Returns 0 on success, negative on failure
8798 **/
8799static int i40e_setup_pf_filter_control(struct i40e_pf *pf)
8800{
8801 struct i40e_filter_control_settings *settings = &pf->filter_settings;
8802
8803 settings->hash_lut_size = I40E_HASH_LUT_SIZE_128;
8804
8805 /* Flow Director is enabled */
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08008806 if (pf->flags & (I40E_FLAG_FD_SB_ENABLED | I40E_FLAG_FD_ATR_ENABLED))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008807 settings->enable_fdir = true;
8808
8809 /* Ethtype and MACVLAN filters enabled for PF */
8810 settings->enable_ethtype = true;
8811 settings->enable_macvlan = true;
8812
8813 if (i40e_set_filter_control(&pf->hw, settings))
8814 return -ENOENT;
8815
8816 return 0;
8817}
8818
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00008819#define INFO_STRING_LEN 255
8820static void i40e_print_features(struct i40e_pf *pf)
8821{
8822 struct i40e_hw *hw = &pf->hw;
8823 char *buf, *string;
8824
8825 string = kzalloc(INFO_STRING_LEN, GFP_KERNEL);
8826 if (!string) {
8827 dev_err(&pf->pdev->dev, "Features string allocation failed\n");
8828 return;
8829 }
8830
8831 buf = string;
8832
8833 buf += sprintf(string, "Features: PF-id[%d] ", hw->pf_id);
8834#ifdef CONFIG_PCI_IOV
8835 buf += sprintf(buf, "VFs: %d ", pf->num_req_vfs);
8836#endif
8837 buf += sprintf(buf, "VSIs: %d QP: %d ", pf->hw.func_caps.num_vsis,
8838 pf->vsi[pf->lan_vsi]->num_queue_pairs);
8839
8840 if (pf->flags & I40E_FLAG_RSS_ENABLED)
8841 buf += sprintf(buf, "RSS ");
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00008842 if (pf->flags & I40E_FLAG_FD_ATR_ENABLED)
Akeem G Abodunrinc6423ff2014-05-10 04:49:08 +00008843 buf += sprintf(buf, "FD_ATR ");
8844 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
8845 buf += sprintf(buf, "FD_SB ");
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00008846 buf += sprintf(buf, "NTUPLE ");
Akeem G Abodunrinc6423ff2014-05-10 04:49:08 +00008847 }
Neerav Parikh4d9b6042014-05-22 06:31:51 +00008848 if (pf->flags & I40E_FLAG_DCB_CAPABLE)
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00008849 buf += sprintf(buf, "DCB ");
8850 if (pf->flags & I40E_FLAG_PTP)
8851 buf += sprintf(buf, "PTP ");
Vasu Dev38e00432014-08-01 13:27:03 -07008852#ifdef I40E_FCOE
8853 if (pf->flags & I40E_FLAG_FCOE_ENABLED)
8854 buf += sprintf(buf, "FCOE ");
8855#endif
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00008856
8857 BUG_ON(buf > (string + INFO_STRING_LEN));
8858 dev_info(&pf->pdev->dev, "%s\n", string);
8859 kfree(string);
8860}
8861
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008862/**
8863 * i40e_probe - Device initialization routine
8864 * @pdev: PCI device information struct
8865 * @ent: entry in i40e_pci_tbl
8866 *
8867 * i40e_probe initializes a pf identified by a pci_dev structure.
8868 * The OS initialization, configuring of the pf private structure,
8869 * and a hardware reset occur.
8870 *
8871 * Returns 0 on success, negative on failure
8872 **/
8873static int i40e_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
8874{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008875 struct i40e_pf *pf;
8876 struct i40e_hw *hw;
Anjali Singhai Jain93cd7652013-11-20 10:03:01 +00008877 static u16 pfs_found;
Catherine Sullivand4dfb812013-11-28 06:39:21 +00008878 u16 link_status;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008879 int err = 0;
8880 u32 len;
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00008881 u32 i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008882
8883 err = pci_enable_device_mem(pdev);
8884 if (err)
8885 return err;
8886
8887 /* set up for high or low dma */
Mitch Williams64942942014-02-11 08:26:33 +00008888 err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64));
Mitch Williams64942942014-02-11 08:26:33 +00008889 if (err) {
Jean Sacrene3e3bfd2014-03-25 04:30:27 +00008890 err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
8891 if (err) {
8892 dev_err(&pdev->dev,
8893 "DMA configuration failed: 0x%x\n", err);
8894 goto err_dma;
8895 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008896 }
8897
8898 /* set up pci connections */
8899 err = pci_request_selected_regions(pdev, pci_select_bars(pdev,
8900 IORESOURCE_MEM), i40e_driver_name);
8901 if (err) {
8902 dev_info(&pdev->dev,
8903 "pci_request_selected_regions failed %d\n", err);
8904 goto err_pci_reg;
8905 }
8906
8907 pci_enable_pcie_error_reporting(pdev);
8908 pci_set_master(pdev);
8909
8910 /* Now that we have a PCI connection, we need to do the
8911 * low level device setup. This is primarily setting up
8912 * the Admin Queue structures and then querying for the
8913 * device's current profile information.
8914 */
8915 pf = kzalloc(sizeof(*pf), GFP_KERNEL);
8916 if (!pf) {
8917 err = -ENOMEM;
8918 goto err_pf_alloc;
8919 }
8920 pf->next_vsi = 0;
8921 pf->pdev = pdev;
8922 set_bit(__I40E_DOWN, &pf->state);
8923
8924 hw = &pf->hw;
8925 hw->back = pf;
8926 hw->hw_addr = ioremap(pci_resource_start(pdev, 0),
8927 pci_resource_len(pdev, 0));
8928 if (!hw->hw_addr) {
8929 err = -EIO;
8930 dev_info(&pdev->dev, "ioremap(0x%04x, 0x%04x) failed: 0x%x\n",
8931 (unsigned int)pci_resource_start(pdev, 0),
8932 (unsigned int)pci_resource_len(pdev, 0), err);
8933 goto err_ioremap;
8934 }
8935 hw->vendor_id = pdev->vendor;
8936 hw->device_id = pdev->device;
8937 pci_read_config_byte(pdev, PCI_REVISION_ID, &hw->revision_id);
8938 hw->subsystem_vendor_id = pdev->subsystem_vendor;
8939 hw->subsystem_device_id = pdev->subsystem_device;
8940 hw->bus.device = PCI_SLOT(pdev->devfn);
8941 hw->bus.func = PCI_FUNC(pdev->devfn);
Anjali Singhai Jain93cd7652013-11-20 10:03:01 +00008942 pf->instance = pfs_found;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008943
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00008944 /* do a special CORER for clearing PXE mode once at init */
8945 if (hw->revision_id == 0 &&
8946 (rd32(hw, I40E_GLLAN_RCTL_0) & I40E_GLLAN_RCTL_0_PXE_MODE_MASK)) {
8947 wr32(hw, I40E_GLGEN_RTRIG, I40E_GLGEN_RTRIG_CORER_MASK);
8948 i40e_flush(hw);
8949 msleep(200);
8950 pf->corer_count++;
8951
8952 i40e_clear_pxe_mode(hw);
8953 }
8954
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008955 /* Reset here to make sure all is clean and to define PF 'n' */
Shannon Nelson838d41d2014-06-04 20:41:27 +00008956 i40e_clear_hw(hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008957 err = i40e_pf_reset(hw);
8958 if (err) {
8959 dev_info(&pdev->dev, "Initial pf_reset failed: %d\n", err);
8960 goto err_pf_reset;
8961 }
8962 pf->pfr_count++;
8963
8964 hw->aq.num_arq_entries = I40E_AQ_LEN;
8965 hw->aq.num_asq_entries = I40E_AQ_LEN;
8966 hw->aq.arq_buf_size = I40E_MAX_AQ_BUF_SIZE;
8967 hw->aq.asq_buf_size = I40E_MAX_AQ_BUF_SIZE;
8968 pf->adminq_work_limit = I40E_AQ_WORK_LIMIT;
8969 snprintf(pf->misc_int_name, sizeof(pf->misc_int_name) - 1,
8970 "%s-pf%d:misc",
8971 dev_driver_string(&pf->pdev->dev), pf->hw.pf_id);
8972
8973 err = i40e_init_shared_code(hw);
8974 if (err) {
8975 dev_info(&pdev->dev, "init_shared_code failed: %d\n", err);
8976 goto err_pf_reset;
8977 }
8978
Jesse Brandeburgd52c20b2013-11-26 10:49:15 +00008979 /* set up a default setting for link flow control */
8980 pf->hw.fc.requested_mode = I40E_FC_NONE;
8981
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008982 err = i40e_init_adminq(hw);
8983 dev_info(&pdev->dev, "%s\n", i40e_fw_version_str(hw));
8984 if (err) {
8985 dev_info(&pdev->dev,
Catherine Sullivan7aa67612014-07-09 07:46:17 +00008986 "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 +00008987 goto err_pf_reset;
8988 }
8989
Catherine Sullivan7aa67612014-07-09 07:46:17 +00008990 if (hw->aq.api_maj_ver == I40E_FW_API_VERSION_MAJOR &&
8991 hw->aq.api_min_ver > I40E_FW_API_VERSION_MINOR)
Shannon Nelson278b6f62014-06-04 01:41:03 +00008992 dev_info(&pdev->dev,
Catherine Sullivan7aa67612014-07-09 07:46:17 +00008993 "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");
8994 else if (hw->aq.api_maj_ver < I40E_FW_API_VERSION_MAJOR ||
8995 hw->aq.api_min_ver < (I40E_FW_API_VERSION_MINOR - 1))
Shannon Nelson278b6f62014-06-04 01:41:03 +00008996 dev_info(&pdev->dev,
Catherine Sullivan7aa67612014-07-09 07:46:17 +00008997 "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 +00008998
8999
Shannon Nelson4eb3f762014-03-06 08:59:58 +00009000 i40e_verify_eeprom(pf);
9001
Jesse Brandeburg2c5fe332014-04-23 04:49:57 +00009002 /* Rev 0 hardware was never productized */
9003 if (hw->revision_id < 1)
9004 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");
9005
Shannon Nelson6ff4ef82013-12-21 05:44:49 +00009006 i40e_clear_pxe_mode(hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009007 err = i40e_get_capabilities(pf);
9008 if (err)
9009 goto err_adminq_setup;
9010
9011 err = i40e_sw_init(pf);
9012 if (err) {
9013 dev_info(&pdev->dev, "sw_init failed: %d\n", err);
9014 goto err_sw_init;
9015 }
9016
9017 err = i40e_init_lan_hmc(hw, hw->func_caps.num_tx_qp,
9018 hw->func_caps.num_rx_qp,
9019 pf->fcoe_hmc_cntx_num, pf->fcoe_hmc_filt_num);
9020 if (err) {
9021 dev_info(&pdev->dev, "init_lan_hmc failed: %d\n", err);
9022 goto err_init_lan_hmc;
9023 }
9024
9025 err = i40e_configure_lan_hmc(hw, I40E_HMC_MODEL_DIRECT_ONLY);
9026 if (err) {
9027 dev_info(&pdev->dev, "configure_lan_hmc failed: %d\n", err);
9028 err = -ENOENT;
9029 goto err_configure_lan_hmc;
9030 }
9031
9032 i40e_get_mac_addr(hw, hw->mac.addr);
Jesse Brandeburgf62b5062013-11-28 06:39:27 +00009033 if (!is_valid_ether_addr(hw->mac.addr)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009034 dev_info(&pdev->dev, "invalid MAC address %pM\n", hw->mac.addr);
9035 err = -EIO;
9036 goto err_mac_addr;
9037 }
9038 dev_info(&pdev->dev, "MAC address: %pM\n", hw->mac.addr);
Greg Rose9a173902014-05-22 06:32:02 +00009039 ether_addr_copy(hw->mac.perm_addr, hw->mac.addr);
Neerav Parikh1f224ad2014-02-12 01:45:31 +00009040 i40e_get_port_mac_addr(hw, hw->mac.port_addr);
9041 if (is_valid_ether_addr(hw->mac.port_addr))
9042 pf->flags |= I40E_FLAG_PORT_ID_VALID;
Vasu Dev38e00432014-08-01 13:27:03 -07009043#ifdef I40E_FCOE
9044 err = i40e_get_san_mac_addr(hw, hw->mac.san_addr);
9045 if (err)
9046 dev_info(&pdev->dev,
9047 "(non-fatal) SAN MAC retrieval failed: %d\n", err);
9048 if (!is_valid_ether_addr(hw->mac.san_addr)) {
9049 dev_warn(&pdev->dev, "invalid SAN MAC address %pM, falling back to LAN MAC\n",
9050 hw->mac.san_addr);
9051 ether_addr_copy(hw->mac.san_addr, hw->mac.addr);
9052 }
9053 dev_info(&pf->pdev->dev, "SAN MAC: %pM\n", hw->mac.san_addr);
9054#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009055
9056 pci_set_drvdata(pdev, pf);
9057 pci_save_state(pdev);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08009058#ifdef CONFIG_I40E_DCB
9059 err = i40e_init_pf_dcb(pf);
9060 if (err) {
9061 dev_info(&pdev->dev, "init_pf_dcb failed: %d\n", err);
Neerav Parikh4d9b6042014-05-22 06:31:51 +00009062 pf->flags &= ~I40E_FLAG_DCB_CAPABLE;
Neerav Parikh014269f2014-04-01 07:11:48 +00009063 /* Continue without DCB enabled */
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08009064 }
9065#endif /* CONFIG_I40E_DCB */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009066
9067 /* set up periodic task facility */
9068 setup_timer(&pf->service_timer, i40e_service_timer, (unsigned long)pf);
9069 pf->service_timer_period = HZ;
9070
9071 INIT_WORK(&pf->service_task, i40e_service_task);
9072 clear_bit(__I40E_SERVICE_SCHED, &pf->state);
9073 pf->flags |= I40E_FLAG_NEED_LINK_UPDATE;
9074 pf->link_check_timeout = jiffies;
9075
Shannon Nelson8e2773a2013-11-28 06:39:22 +00009076 /* WoL defaults to disabled */
9077 pf->wol_en = false;
9078 device_set_wakeup_enable(&pf->pdev->dev, pf->wol_en);
9079
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009080 /* set up the main switch operations */
9081 i40e_determine_queue_usage(pf);
9082 i40e_init_interrupt_scheme(pf);
9083
Mitch Williams505682c2014-05-20 08:01:37 +00009084 /* The number of VSIs reported by the FW is the minimum guaranteed
9085 * to us; HW supports far more and we share the remaining pool with
9086 * the other PFs. We allocate space for more than the guarantee with
9087 * the understanding that we might not get them all later.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009088 */
Mitch Williams505682c2014-05-20 08:01:37 +00009089 if (pf->hw.func_caps.num_vsis < I40E_MIN_VSI_ALLOC)
9090 pf->num_alloc_vsi = I40E_MIN_VSI_ALLOC;
9091 else
9092 pf->num_alloc_vsi = pf->hw.func_caps.num_vsis;
9093
9094 /* Set up the *vsi struct and our local tracking of the MAIN PF vsi. */
9095 len = sizeof(struct i40e_vsi *) * pf->num_alloc_vsi;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009096 pf->vsi = kzalloc(len, GFP_KERNEL);
Wei Yongjuned87ac02013-09-24 05:17:25 +00009097 if (!pf->vsi) {
9098 err = -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009099 goto err_switch_setup;
Wei Yongjuned87ac02013-09-24 05:17:25 +00009100 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009101
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00009102 err = i40e_setup_pf_switch(pf, false);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009103 if (err) {
9104 dev_info(&pdev->dev, "setup_pf_switch failed: %d\n", err);
9105 goto err_vsis;
9106 }
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00009107 /* if FDIR VSI was set up, start it now */
Mitch Williams505682c2014-05-20 08:01:37 +00009108 for (i = 0; i < pf->num_alloc_vsi; i++) {
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00009109 if (pf->vsi[i] && pf->vsi[i]->type == I40E_VSI_FDIR) {
9110 i40e_vsi_open(pf->vsi[i]);
9111 break;
9112 }
9113 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009114
9115 /* The main driver is (mostly) up and happy. We need to set this state
9116 * before setting up the misc vector or we get a race and the vector
9117 * ends up disabled forever.
9118 */
9119 clear_bit(__I40E_DOWN, &pf->state);
9120
9121 /* In case of MSIX we are going to setup the misc vector right here
9122 * to handle admin queue events etc. In case of legacy and MSI
9123 * the misc functionality and queue processing is combined in
9124 * the same vector and that gets setup at open.
9125 */
9126 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
9127 err = i40e_setup_misc_vector(pf);
9128 if (err) {
9129 dev_info(&pdev->dev,
9130 "setup of misc vector failed: %d\n", err);
9131 goto err_vsis;
9132 }
9133 }
9134
Greg Rosedf805f62014-04-04 04:43:16 +00009135#ifdef CONFIG_PCI_IOV
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009136 /* prep for VF support */
9137 if ((pf->flags & I40E_FLAG_SRIOV_ENABLED) &&
Shannon Nelson4eb3f762014-03-06 08:59:58 +00009138 (pf->flags & I40E_FLAG_MSIX_ENABLED) &&
9139 !test_bit(__I40E_BAD_EEPROM, &pf->state)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009140 u32 val;
9141
9142 /* disable link interrupts for VFs */
9143 val = rd32(hw, I40E_PFGEN_PORTMDIO_NUM);
9144 val &= ~I40E_PFGEN_PORTMDIO_NUM_VFLINK_STAT_ENA_MASK;
9145 wr32(hw, I40E_PFGEN_PORTMDIO_NUM, val);
9146 i40e_flush(hw);
Mitch Williams4aeec012014-02-13 03:48:47 -08009147
9148 if (pci_num_vf(pdev)) {
9149 dev_info(&pdev->dev,
9150 "Active VFs found, allocating resources.\n");
9151 err = i40e_alloc_vfs(pf, pci_num_vf(pdev));
9152 if (err)
9153 dev_info(&pdev->dev,
9154 "Error %d allocating resources for existing VFs\n",
9155 err);
9156 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009157 }
Greg Rosedf805f62014-04-04 04:43:16 +00009158#endif /* CONFIG_PCI_IOV */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009159
Anjali Singhai Jain93cd7652013-11-20 10:03:01 +00009160 pfs_found++;
9161
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009162 i40e_dbg_pf_init(pf);
9163
9164 /* tell the firmware that we're starting */
Jesse Brandeburg44033fa2014-04-23 04:50:15 +00009165 i40e_send_version(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009166
9167 /* since everything's happy, start the service_task timer */
9168 mod_timer(&pf->service_timer,
9169 round_jiffies(jiffies + pf->service_timer_period));
9170
Vasu Dev38e00432014-08-01 13:27:03 -07009171#ifdef I40E_FCOE
9172 /* create FCoE interface */
9173 i40e_fcoe_vsi_setup(pf);
9174
9175#endif
Catherine Sullivand4dfb812013-11-28 06:39:21 +00009176 /* Get the negotiated link width and speed from PCI config space */
9177 pcie_capability_read_word(pf->pdev, PCI_EXP_LNKSTA, &link_status);
9178
9179 i40e_set_pci_config_data(hw, link_status);
9180
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00009181 dev_info(&pdev->dev, "PCI-Express: %s %s\n",
Catherine Sullivand4dfb812013-11-28 06:39:21 +00009182 (hw->bus.speed == i40e_bus_speed_8000 ? "Speed 8.0GT/s" :
9183 hw->bus.speed == i40e_bus_speed_5000 ? "Speed 5.0GT/s" :
9184 hw->bus.speed == i40e_bus_speed_2500 ? "Speed 2.5GT/s" :
9185 "Unknown"),
9186 (hw->bus.width == i40e_bus_width_pcie_x8 ? "Width x8" :
9187 hw->bus.width == i40e_bus_width_pcie_x4 ? "Width x4" :
9188 hw->bus.width == i40e_bus_width_pcie_x2 ? "Width x2" :
9189 hw->bus.width == i40e_bus_width_pcie_x1 ? "Width x1" :
9190 "Unknown"));
9191
9192 if (hw->bus.width < i40e_bus_width_pcie_x8 ||
9193 hw->bus.speed < i40e_bus_speed_8000) {
9194 dev_warn(&pdev->dev, "PCI-Express bandwidth available for this device may be insufficient for optimal performance.\n");
9195 dev_warn(&pdev->dev, "Please move the device to a different PCI-e link with more lanes and/or higher transfer rate.\n");
9196 }
9197
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00009198 /* print a string summarizing features */
9199 i40e_print_features(pf);
9200
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009201 return 0;
9202
9203 /* Unwind what we've done if something failed in the setup */
9204err_vsis:
9205 set_bit(__I40E_DOWN, &pf->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009206 i40e_clear_interrupt_scheme(pf);
9207 kfree(pf->vsi);
Shannon Nelson04b03012013-11-28 06:39:34 +00009208err_switch_setup:
9209 i40e_reset_interrupt_capability(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009210 del_timer_sync(&pf->service_timer);
9211err_mac_addr:
9212err_configure_lan_hmc:
9213 (void)i40e_shutdown_lan_hmc(hw);
9214err_init_lan_hmc:
9215 kfree(pf->qp_pile);
9216 kfree(pf->irq_pile);
9217err_sw_init:
9218err_adminq_setup:
9219 (void)i40e_shutdown_adminq(hw);
9220err_pf_reset:
9221 iounmap(hw->hw_addr);
9222err_ioremap:
9223 kfree(pf);
9224err_pf_alloc:
9225 pci_disable_pcie_error_reporting(pdev);
9226 pci_release_selected_regions(pdev,
9227 pci_select_bars(pdev, IORESOURCE_MEM));
9228err_pci_reg:
9229err_dma:
9230 pci_disable_device(pdev);
9231 return err;
9232}
9233
9234/**
9235 * i40e_remove - Device removal routine
9236 * @pdev: PCI device information struct
9237 *
9238 * i40e_remove is called by the PCI subsystem to alert the driver
9239 * that is should release a PCI device. This could be caused by a
9240 * Hot-Plug event, or because the driver is going to be removed from
9241 * memory.
9242 **/
9243static void i40e_remove(struct pci_dev *pdev)
9244{
9245 struct i40e_pf *pf = pci_get_drvdata(pdev);
9246 i40e_status ret_code;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009247 int i;
9248
9249 i40e_dbg_pf_exit(pf);
9250
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00009251 i40e_ptp_stop(pf);
9252
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009253 /* no more scheduling of any task */
9254 set_bit(__I40E_DOWN, &pf->state);
9255 del_timer_sync(&pf->service_timer);
9256 cancel_work_sync(&pf->service_task);
9257
Mitch Williamseb2d80b2014-02-13 03:48:48 -08009258 if (pf->flags & I40E_FLAG_SRIOV_ENABLED) {
9259 i40e_free_vfs(pf);
9260 pf->flags &= ~I40E_FLAG_SRIOV_ENABLED;
9261 }
9262
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009263 i40e_fdir_teardown(pf);
9264
9265 /* If there is a switch structure or any orphans, remove them.
9266 * This will leave only the PF's VSI remaining.
9267 */
9268 for (i = 0; i < I40E_MAX_VEB; i++) {
9269 if (!pf->veb[i])
9270 continue;
9271
9272 if (pf->veb[i]->uplink_seid == pf->mac_seid ||
9273 pf->veb[i]->uplink_seid == 0)
9274 i40e_switch_branch_release(pf->veb[i]);
9275 }
9276
9277 /* Now we can shutdown the PF's VSI, just before we kill
9278 * adminq and hmc.
9279 */
9280 if (pf->vsi[pf->lan_vsi])
9281 i40e_vsi_release(pf->vsi[pf->lan_vsi]);
9282
9283 i40e_stop_misc_vector(pf);
9284 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
9285 synchronize_irq(pf->msix_entries[0].vector);
9286 free_irq(pf->msix_entries[0].vector, pf);
9287 }
9288
9289 /* shutdown and destroy the HMC */
Shannon Nelson60442de2014-04-23 04:50:13 +00009290 if (pf->hw.hmc.hmc_obj) {
9291 ret_code = i40e_shutdown_lan_hmc(&pf->hw);
9292 if (ret_code)
9293 dev_warn(&pdev->dev,
9294 "Failed to destroy the HMC resources: %d\n",
9295 ret_code);
9296 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009297
9298 /* shutdown the adminq */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009299 ret_code = i40e_shutdown_adminq(&pf->hw);
9300 if (ret_code)
9301 dev_warn(&pdev->dev,
9302 "Failed to destroy the Admin Queue resources: %d\n",
9303 ret_code);
9304
9305 /* Clear all dynamic memory lists of rings, q_vectors, and VSIs */
9306 i40e_clear_interrupt_scheme(pf);
Mitch Williams505682c2014-05-20 08:01:37 +00009307 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009308 if (pf->vsi[i]) {
9309 i40e_vsi_clear_rings(pf->vsi[i]);
9310 i40e_vsi_clear(pf->vsi[i]);
9311 pf->vsi[i] = NULL;
9312 }
9313 }
9314
9315 for (i = 0; i < I40E_MAX_VEB; i++) {
9316 kfree(pf->veb[i]);
9317 pf->veb[i] = NULL;
9318 }
9319
9320 kfree(pf->qp_pile);
9321 kfree(pf->irq_pile);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009322 kfree(pf->vsi);
9323
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009324 iounmap(pf->hw.hw_addr);
9325 kfree(pf);
9326 pci_release_selected_regions(pdev,
9327 pci_select_bars(pdev, IORESOURCE_MEM));
9328
9329 pci_disable_pcie_error_reporting(pdev);
9330 pci_disable_device(pdev);
9331}
9332
9333/**
9334 * i40e_pci_error_detected - warning that something funky happened in PCI land
9335 * @pdev: PCI device information struct
9336 *
9337 * Called to warn that something happened and the error handling steps
9338 * are in progress. Allows the driver to quiesce things, be ready for
9339 * remediation.
9340 **/
9341static pci_ers_result_t i40e_pci_error_detected(struct pci_dev *pdev,
9342 enum pci_channel_state error)
9343{
9344 struct i40e_pf *pf = pci_get_drvdata(pdev);
9345
9346 dev_info(&pdev->dev, "%s: error %d\n", __func__, error);
9347
9348 /* shutdown all operations */
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009349 if (!test_bit(__I40E_SUSPENDED, &pf->state)) {
9350 rtnl_lock();
9351 i40e_prep_for_reset(pf);
9352 rtnl_unlock();
9353 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009354
9355 /* Request a slot reset */
9356 return PCI_ERS_RESULT_NEED_RESET;
9357}
9358
9359/**
9360 * i40e_pci_error_slot_reset - a PCI slot reset just happened
9361 * @pdev: PCI device information struct
9362 *
9363 * Called to find if the driver can work with the device now that
9364 * the pci slot has been reset. If a basic connection seems good
9365 * (registers are readable and have sane content) then return a
9366 * happy little PCI_ERS_RESULT_xxx.
9367 **/
9368static pci_ers_result_t i40e_pci_error_slot_reset(struct pci_dev *pdev)
9369{
9370 struct i40e_pf *pf = pci_get_drvdata(pdev);
9371 pci_ers_result_t result;
9372 int err;
9373 u32 reg;
9374
9375 dev_info(&pdev->dev, "%s\n", __func__);
9376 if (pci_enable_device_mem(pdev)) {
9377 dev_info(&pdev->dev,
9378 "Cannot re-enable PCI device after reset.\n");
9379 result = PCI_ERS_RESULT_DISCONNECT;
9380 } else {
9381 pci_set_master(pdev);
9382 pci_restore_state(pdev);
9383 pci_save_state(pdev);
9384 pci_wake_from_d3(pdev, false);
9385
9386 reg = rd32(&pf->hw, I40E_GLGEN_RTRIG);
9387 if (reg == 0)
9388 result = PCI_ERS_RESULT_RECOVERED;
9389 else
9390 result = PCI_ERS_RESULT_DISCONNECT;
9391 }
9392
9393 err = pci_cleanup_aer_uncorrect_error_status(pdev);
9394 if (err) {
9395 dev_info(&pdev->dev,
9396 "pci_cleanup_aer_uncorrect_error_status failed 0x%0x\n",
9397 err);
9398 /* non-fatal, continue */
9399 }
9400
9401 return result;
9402}
9403
9404/**
9405 * i40e_pci_error_resume - restart operations after PCI error recovery
9406 * @pdev: PCI device information struct
9407 *
9408 * Called to allow the driver to bring things back up after PCI error
9409 * and/or reset recovery has finished.
9410 **/
9411static void i40e_pci_error_resume(struct pci_dev *pdev)
9412{
9413 struct i40e_pf *pf = pci_get_drvdata(pdev);
9414
9415 dev_info(&pdev->dev, "%s\n", __func__);
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009416 if (test_bit(__I40E_SUSPENDED, &pf->state))
9417 return;
9418
9419 rtnl_lock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009420 i40e_handle_reset_warning(pf);
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009421 rtnl_lock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009422}
9423
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009424/**
9425 * i40e_shutdown - PCI callback for shutting down
9426 * @pdev: PCI device information struct
9427 **/
9428static void i40e_shutdown(struct pci_dev *pdev)
9429{
9430 struct i40e_pf *pf = pci_get_drvdata(pdev);
Shannon Nelson8e2773a2013-11-28 06:39:22 +00009431 struct i40e_hw *hw = &pf->hw;
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009432
9433 set_bit(__I40E_SUSPENDED, &pf->state);
9434 set_bit(__I40E_DOWN, &pf->state);
9435 rtnl_lock();
9436 i40e_prep_for_reset(pf);
9437 rtnl_unlock();
9438
Shannon Nelson8e2773a2013-11-28 06:39:22 +00009439 wr32(hw, I40E_PFPM_APM, (pf->wol_en ? I40E_PFPM_APM_APME_MASK : 0));
9440 wr32(hw, I40E_PFPM_WUFC, (pf->wol_en ? I40E_PFPM_WUFC_MAG_MASK : 0));
9441
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009442 if (system_state == SYSTEM_POWER_OFF) {
Shannon Nelson8e2773a2013-11-28 06:39:22 +00009443 pci_wake_from_d3(pdev, pf->wol_en);
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009444 pci_set_power_state(pdev, PCI_D3hot);
9445 }
9446}
9447
9448#ifdef CONFIG_PM
9449/**
9450 * i40e_suspend - PCI callback for moving to D3
9451 * @pdev: PCI device information struct
9452 **/
9453static int i40e_suspend(struct pci_dev *pdev, pm_message_t state)
9454{
9455 struct i40e_pf *pf = pci_get_drvdata(pdev);
Shannon Nelson8e2773a2013-11-28 06:39:22 +00009456 struct i40e_hw *hw = &pf->hw;
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009457
9458 set_bit(__I40E_SUSPENDED, &pf->state);
9459 set_bit(__I40E_DOWN, &pf->state);
9460 rtnl_lock();
9461 i40e_prep_for_reset(pf);
9462 rtnl_unlock();
9463
Shannon Nelson8e2773a2013-11-28 06:39:22 +00009464 wr32(hw, I40E_PFPM_APM, (pf->wol_en ? I40E_PFPM_APM_APME_MASK : 0));
9465 wr32(hw, I40E_PFPM_WUFC, (pf->wol_en ? I40E_PFPM_WUFC_MAG_MASK : 0));
9466
9467 pci_wake_from_d3(pdev, pf->wol_en);
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009468 pci_set_power_state(pdev, PCI_D3hot);
9469
9470 return 0;
9471}
9472
9473/**
9474 * i40e_resume - PCI callback for waking up from D3
9475 * @pdev: PCI device information struct
9476 **/
9477static int i40e_resume(struct pci_dev *pdev)
9478{
9479 struct i40e_pf *pf = pci_get_drvdata(pdev);
9480 u32 err;
9481
9482 pci_set_power_state(pdev, PCI_D0);
9483 pci_restore_state(pdev);
9484 /* pci_restore_state() clears dev->state_saves, so
9485 * call pci_save_state() again to restore it.
9486 */
9487 pci_save_state(pdev);
9488
9489 err = pci_enable_device_mem(pdev);
9490 if (err) {
9491 dev_err(&pdev->dev,
9492 "%s: Cannot enable PCI device from suspend\n",
9493 __func__);
9494 return err;
9495 }
9496 pci_set_master(pdev);
9497
9498 /* no wakeup events while running */
9499 pci_wake_from_d3(pdev, false);
9500
9501 /* handling the reset will rebuild the device state */
9502 if (test_and_clear_bit(__I40E_SUSPENDED, &pf->state)) {
9503 clear_bit(__I40E_DOWN, &pf->state);
9504 rtnl_lock();
9505 i40e_reset_and_rebuild(pf, false);
9506 rtnl_unlock();
9507 }
9508
9509 return 0;
9510}
9511
9512#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009513static const struct pci_error_handlers i40e_err_handler = {
9514 .error_detected = i40e_pci_error_detected,
9515 .slot_reset = i40e_pci_error_slot_reset,
9516 .resume = i40e_pci_error_resume,
9517};
9518
9519static struct pci_driver i40e_driver = {
9520 .name = i40e_driver_name,
9521 .id_table = i40e_pci_tbl,
9522 .probe = i40e_probe,
9523 .remove = i40e_remove,
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009524#ifdef CONFIG_PM
9525 .suspend = i40e_suspend,
9526 .resume = i40e_resume,
9527#endif
9528 .shutdown = i40e_shutdown,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009529 .err_handler = &i40e_err_handler,
9530 .sriov_configure = i40e_pci_sriov_configure,
9531};
9532
9533/**
9534 * i40e_init_module - Driver registration routine
9535 *
9536 * i40e_init_module is the first routine called when the driver is
9537 * loaded. All it does is register with the PCI subsystem.
9538 **/
9539static int __init i40e_init_module(void)
9540{
9541 pr_info("%s: %s - version %s\n", i40e_driver_name,
9542 i40e_driver_string, i40e_driver_version_str);
9543 pr_info("%s: %s\n", i40e_driver_name, i40e_copyright);
9544 i40e_dbg_init();
9545 return pci_register_driver(&i40e_driver);
9546}
9547module_init(i40e_init_module);
9548
9549/**
9550 * i40e_exit_module - Driver exit cleanup routine
9551 *
9552 * i40e_exit_module is called just before the driver is removed
9553 * from memory.
9554 **/
9555static void __exit i40e_exit_module(void)
9556{
9557 pci_unregister_driver(&i40e_driver);
9558 i40e_dbg_exit();
9559}
9560module_exit(i40e_exit_module);