blob: 6ac8487f9a51160ebb869564d1a2f43170f3bffb [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 */
68static DEFINE_PCI_DEVICE_TABLE(i40e_pci_tbl) = {
Shannon Nelsonab600852014-01-17 15:36:39 -080069 {PCI_VDEVICE(INTEL, I40E_DEV_ID_SFP_XL710), 0},
Shannon Nelsonab600852014-01-17 15:36:39 -080070 {PCI_VDEVICE(INTEL, I40E_DEV_ID_QEMU), 0},
71 {PCI_VDEVICE(INTEL, I40E_DEV_ID_KX_A), 0},
72 {PCI_VDEVICE(INTEL, I40E_DEV_ID_KX_B), 0},
73 {PCI_VDEVICE(INTEL, I40E_DEV_ID_KX_C), 0},
Shannon Nelsonab600852014-01-17 15:36:39 -080074 {PCI_VDEVICE(INTEL, I40E_DEV_ID_QSFP_A), 0},
75 {PCI_VDEVICE(INTEL, I40E_DEV_ID_QSFP_B), 0},
76 {PCI_VDEVICE(INTEL, I40E_DEV_ID_QSFP_C), 0},
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000077 /* required last entry */
78 {0, }
79};
80MODULE_DEVICE_TABLE(pci, i40e_pci_tbl);
81
82#define I40E_MAX_VF_COUNT 128
83static int debug = -1;
84module_param(debug, int, 0);
85MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all)");
86
87MODULE_AUTHOR("Intel Corporation, <e1000-devel@lists.sourceforge.net>");
88MODULE_DESCRIPTION("Intel(R) Ethernet Connection XL710 Network Driver");
89MODULE_LICENSE("GPL");
90MODULE_VERSION(DRV_VERSION);
91
92/**
93 * i40e_allocate_dma_mem_d - OS specific memory alloc for shared code
94 * @hw: pointer to the HW structure
95 * @mem: ptr to mem struct to fill out
96 * @size: size of memory requested
97 * @alignment: what to align the allocation to
98 **/
99int i40e_allocate_dma_mem_d(struct i40e_hw *hw, struct i40e_dma_mem *mem,
100 u64 size, u32 alignment)
101{
102 struct i40e_pf *pf = (struct i40e_pf *)hw->back;
103
104 mem->size = ALIGN(size, alignment);
105 mem->va = dma_zalloc_coherent(&pf->pdev->dev, mem->size,
106 &mem->pa, GFP_KERNEL);
Jesse Brandeburg93bc73b2013-09-13 08:23:18 +0000107 if (!mem->va)
108 return -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000109
Jesse Brandeburg93bc73b2013-09-13 08:23:18 +0000110 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000111}
112
113/**
114 * i40e_free_dma_mem_d - OS specific memory free for shared code
115 * @hw: pointer to the HW structure
116 * @mem: ptr to mem struct to free
117 **/
118int i40e_free_dma_mem_d(struct i40e_hw *hw, struct i40e_dma_mem *mem)
119{
120 struct i40e_pf *pf = (struct i40e_pf *)hw->back;
121
122 dma_free_coherent(&pf->pdev->dev, mem->size, mem->va, mem->pa);
123 mem->va = NULL;
124 mem->pa = 0;
125 mem->size = 0;
126
127 return 0;
128}
129
130/**
131 * i40e_allocate_virt_mem_d - OS specific memory alloc for shared code
132 * @hw: pointer to the HW structure
133 * @mem: ptr to mem struct to fill out
134 * @size: size of memory requested
135 **/
136int i40e_allocate_virt_mem_d(struct i40e_hw *hw, struct i40e_virt_mem *mem,
137 u32 size)
138{
139 mem->size = size;
140 mem->va = kzalloc(size, GFP_KERNEL);
141
Jesse Brandeburg93bc73b2013-09-13 08:23:18 +0000142 if (!mem->va)
143 return -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000144
Jesse Brandeburg93bc73b2013-09-13 08:23:18 +0000145 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000146}
147
148/**
149 * i40e_free_virt_mem_d - OS specific memory free for shared code
150 * @hw: pointer to the HW structure
151 * @mem: ptr to mem struct to free
152 **/
153int i40e_free_virt_mem_d(struct i40e_hw *hw, struct i40e_virt_mem *mem)
154{
155 /* it's ok to kfree a NULL pointer */
156 kfree(mem->va);
157 mem->va = NULL;
158 mem->size = 0;
159
160 return 0;
161}
162
163/**
164 * i40e_get_lump - find a lump of free generic resource
165 * @pf: board private structure
166 * @pile: the pile of resource to search
167 * @needed: the number of items needed
168 * @id: an owner id to stick on the items assigned
169 *
170 * Returns the base item index of the lump, or negative for error
171 *
172 * The search_hint trick and lack of advanced fit-finding only work
173 * because we're highly likely to have all the same size lump requests.
174 * Linear search time and any fragmentation should be minimal.
175 **/
176static int i40e_get_lump(struct i40e_pf *pf, struct i40e_lump_tracking *pile,
177 u16 needed, u16 id)
178{
179 int ret = -ENOMEM;
Jesse Brandeburgddf434a2013-09-13 08:23:19 +0000180 int i, j;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000181
182 if (!pile || needed == 0 || id >= I40E_PILE_VALID_BIT) {
183 dev_info(&pf->pdev->dev,
184 "param err: pile=%p needed=%d id=0x%04x\n",
185 pile, needed, id);
186 return -EINVAL;
187 }
188
189 /* start the linear search with an imperfect hint */
190 i = pile->search_hint;
Jesse Brandeburgddf434a2013-09-13 08:23:19 +0000191 while (i < pile->num_entries) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000192 /* skip already allocated entries */
193 if (pile->list[i] & I40E_PILE_VALID_BIT) {
194 i++;
195 continue;
196 }
197
198 /* do we have enough in this lump? */
199 for (j = 0; (j < needed) && ((i+j) < pile->num_entries); j++) {
200 if (pile->list[i+j] & I40E_PILE_VALID_BIT)
201 break;
202 }
203
204 if (j == needed) {
205 /* there was enough, so assign it to the requestor */
206 for (j = 0; j < needed; j++)
207 pile->list[i+j] = id | I40E_PILE_VALID_BIT;
208 ret = i;
209 pile->search_hint = i + j;
Jesse Brandeburgddf434a2013-09-13 08:23:19 +0000210 break;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000211 } else {
212 /* not enough, so skip over it and continue looking */
213 i += j;
214 }
215 }
216
217 return ret;
218}
219
220/**
221 * i40e_put_lump - return a lump of generic resource
222 * @pile: the pile of resource to search
223 * @index: the base item index
224 * @id: the owner id of the items assigned
225 *
226 * Returns the count of items in the lump
227 **/
228static int i40e_put_lump(struct i40e_lump_tracking *pile, u16 index, u16 id)
229{
230 int valid_id = (id | I40E_PILE_VALID_BIT);
231 int count = 0;
232 int i;
233
234 if (!pile || index >= pile->num_entries)
235 return -EINVAL;
236
237 for (i = index;
238 i < pile->num_entries && pile->list[i] == valid_id;
239 i++) {
240 pile->list[i] = 0;
241 count++;
242 }
243
244 if (count && index < pile->search_hint)
245 pile->search_hint = index;
246
247 return count;
248}
249
250/**
251 * i40e_service_event_schedule - Schedule the service task to wake up
252 * @pf: board private structure
253 *
254 * If not already scheduled, this puts the task into the work queue
255 **/
256static void i40e_service_event_schedule(struct i40e_pf *pf)
257{
258 if (!test_bit(__I40E_DOWN, &pf->state) &&
259 !test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state) &&
260 !test_and_set_bit(__I40E_SERVICE_SCHED, &pf->state))
261 schedule_work(&pf->service_task);
262}
263
264/**
265 * i40e_tx_timeout - Respond to a Tx Hang
266 * @netdev: network interface device structure
267 *
268 * If any port has noticed a Tx timeout, it is likely that the whole
269 * device is munged, not just the one netdev port, so go for the full
270 * reset.
271 **/
Vasu Dev38e00432014-08-01 13:27:03 -0700272#ifdef I40E_FCOE
273void i40e_tx_timeout(struct net_device *netdev)
274#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000275static void i40e_tx_timeout(struct net_device *netdev)
Vasu Dev38e00432014-08-01 13:27:03 -0700276#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000277{
278 struct i40e_netdev_priv *np = netdev_priv(netdev);
279 struct i40e_vsi *vsi = np->vsi;
280 struct i40e_pf *pf = vsi->back;
281
282 pf->tx_timeout_count++;
283
284 if (time_after(jiffies, (pf->tx_timeout_last_recovery + HZ*20)))
Anjali Singhai Jain327fe042014-06-04 01:23:26 +0000285 pf->tx_timeout_recovery_level = 1;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000286 pf->tx_timeout_last_recovery = jiffies;
287 netdev_info(netdev, "tx_timeout recovery level %d\n",
288 pf->tx_timeout_recovery_level);
289
290 switch (pf->tx_timeout_recovery_level) {
291 case 0:
292 /* disable and re-enable queues for the VSI */
293 if (in_interrupt()) {
294 set_bit(__I40E_REINIT_REQUESTED, &pf->state);
295 set_bit(__I40E_REINIT_REQUESTED, &vsi->state);
296 } else {
297 i40e_vsi_reinit_locked(vsi);
298 }
299 break;
300 case 1:
301 set_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
302 break;
303 case 2:
304 set_bit(__I40E_CORE_RESET_REQUESTED, &pf->state);
305 break;
306 case 3:
307 set_bit(__I40E_GLOBAL_RESET_REQUESTED, &pf->state);
308 break;
309 default:
310 netdev_err(netdev, "tx_timeout recovery unsuccessful\n");
Neerav Parikhb5d06f02014-06-03 23:50:17 +0000311 set_bit(__I40E_DOWN_REQUESTED, &pf->state);
312 set_bit(__I40E_DOWN_REQUESTED, &vsi->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000313 break;
314 }
315 i40e_service_event_schedule(pf);
316 pf->tx_timeout_recovery_level++;
317}
318
319/**
320 * i40e_release_rx_desc - Store the new tail and head values
321 * @rx_ring: ring to bump
322 * @val: new head index
323 **/
324static inline void i40e_release_rx_desc(struct i40e_ring *rx_ring, u32 val)
325{
326 rx_ring->next_to_use = val;
327
328 /* Force memory writes to complete before letting h/w
329 * know there are new descriptors to fetch. (Only
330 * applicable for weak-ordered memory model archs,
331 * such as IA-64).
332 */
333 wmb();
334 writel(val, rx_ring->tail);
335}
336
337/**
338 * i40e_get_vsi_stats_struct - Get System Network Statistics
339 * @vsi: the VSI we care about
340 *
341 * Returns the address of the device statistics structure.
342 * The statistics are actually updated from the service task.
343 **/
344struct rtnl_link_stats64 *i40e_get_vsi_stats_struct(struct i40e_vsi *vsi)
345{
346 return &vsi->net_stats;
347}
348
349/**
350 * i40e_get_netdev_stats_struct - Get statistics for netdev interface
351 * @netdev: network interface device structure
352 *
353 * Returns the address of the device statistics structure.
354 * The statistics are actually updated from the service task.
355 **/
Vasu Dev38e00432014-08-01 13:27:03 -0700356#ifdef I40E_FCOE
357struct rtnl_link_stats64 *i40e_get_netdev_stats_struct(
358 struct net_device *netdev,
359 struct rtnl_link_stats64 *stats)
360#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000361static struct rtnl_link_stats64 *i40e_get_netdev_stats_struct(
362 struct net_device *netdev,
Alexander Duyck980e9b12013-09-28 06:01:03 +0000363 struct rtnl_link_stats64 *stats)
Vasu Dev38e00432014-08-01 13:27:03 -0700364#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000365{
366 struct i40e_netdev_priv *np = netdev_priv(netdev);
Akeem G Abodunrine7046ee2014-04-09 05:58:58 +0000367 struct i40e_ring *tx_ring, *rx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000368 struct i40e_vsi *vsi = np->vsi;
Alexander Duyck980e9b12013-09-28 06:01:03 +0000369 struct rtnl_link_stats64 *vsi_stats = i40e_get_vsi_stats_struct(vsi);
370 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000371
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +0000372 if (test_bit(__I40E_DOWN, &vsi->state))
373 return stats;
374
Jesse Brandeburg3c325ce2013-12-14 03:26:45 -0800375 if (!vsi->tx_rings)
376 return stats;
377
Alexander Duyck980e9b12013-09-28 06:01:03 +0000378 rcu_read_lock();
379 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck980e9b12013-09-28 06:01:03 +0000380 u64 bytes, packets;
381 unsigned int start;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000382
Alexander Duyck980e9b12013-09-28 06:01:03 +0000383 tx_ring = ACCESS_ONCE(vsi->tx_rings[i]);
384 if (!tx_ring)
385 continue;
386
387 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -0700388 start = u64_stats_fetch_begin_irq(&tx_ring->syncp);
Alexander Duyck980e9b12013-09-28 06:01:03 +0000389 packets = tx_ring->stats.packets;
390 bytes = tx_ring->stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -0700391 } while (u64_stats_fetch_retry_irq(&tx_ring->syncp, start));
Alexander Duyck980e9b12013-09-28 06:01:03 +0000392
393 stats->tx_packets += packets;
394 stats->tx_bytes += bytes;
395 rx_ring = &tx_ring[1];
396
397 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -0700398 start = u64_stats_fetch_begin_irq(&rx_ring->syncp);
Alexander Duyck980e9b12013-09-28 06:01:03 +0000399 packets = rx_ring->stats.packets;
400 bytes = rx_ring->stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -0700401 } while (u64_stats_fetch_retry_irq(&rx_ring->syncp, start));
Alexander Duyck980e9b12013-09-28 06:01:03 +0000402
403 stats->rx_packets += packets;
404 stats->rx_bytes += bytes;
405 }
406 rcu_read_unlock();
407
Akeem G Abodunrina5282f42014-05-10 04:49:03 +0000408 /* following stats updated by i40e_watchdog_subtask() */
Alexander Duyck980e9b12013-09-28 06:01:03 +0000409 stats->multicast = vsi_stats->multicast;
410 stats->tx_errors = vsi_stats->tx_errors;
411 stats->tx_dropped = vsi_stats->tx_dropped;
412 stats->rx_errors = vsi_stats->rx_errors;
413 stats->rx_crc_errors = vsi_stats->rx_crc_errors;
414 stats->rx_length_errors = vsi_stats->rx_length_errors;
415
416 return stats;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000417}
418
419/**
420 * i40e_vsi_reset_stats - Resets all stats of the given vsi
421 * @vsi: the VSI to have its stats reset
422 **/
423void i40e_vsi_reset_stats(struct i40e_vsi *vsi)
424{
425 struct rtnl_link_stats64 *ns;
426 int i;
427
428 if (!vsi)
429 return;
430
431 ns = i40e_get_vsi_stats_struct(vsi);
432 memset(ns, 0, sizeof(*ns));
433 memset(&vsi->net_stats_offsets, 0, sizeof(vsi->net_stats_offsets));
434 memset(&vsi->eth_stats, 0, sizeof(vsi->eth_stats));
435 memset(&vsi->eth_stats_offsets, 0, sizeof(vsi->eth_stats_offsets));
Greg Rose8e9dca52013-12-18 13:45:53 +0000436 if (vsi->rx_rings && vsi->rx_rings[0]) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000437 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e15b2013-09-28 06:00:58 +0000438 memset(&vsi->rx_rings[i]->stats, 0 ,
439 sizeof(vsi->rx_rings[i]->stats));
440 memset(&vsi->rx_rings[i]->rx_stats, 0 ,
441 sizeof(vsi->rx_rings[i]->rx_stats));
442 memset(&vsi->tx_rings[i]->stats, 0 ,
443 sizeof(vsi->tx_rings[i]->stats));
444 memset(&vsi->tx_rings[i]->tx_stats, 0,
445 sizeof(vsi->tx_rings[i]->tx_stats));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000446 }
Greg Rose8e9dca52013-12-18 13:45:53 +0000447 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000448 vsi->stat_offsets_loaded = false;
449}
450
451/**
452 * i40e_pf_reset_stats - Reset all of the stats for the given pf
453 * @pf: the PF to be reset
454 **/
455void i40e_pf_reset_stats(struct i40e_pf *pf)
456{
Shannon Nelsone91fdf72014-06-03 23:50:18 +0000457 int i;
458
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000459 memset(&pf->stats, 0, sizeof(pf->stats));
460 memset(&pf->stats_offsets, 0, sizeof(pf->stats_offsets));
461 pf->stat_offsets_loaded = false;
Shannon Nelsone91fdf72014-06-03 23:50:18 +0000462
463 for (i = 0; i < I40E_MAX_VEB; i++) {
464 if (pf->veb[i]) {
465 memset(&pf->veb[i]->stats, 0,
466 sizeof(pf->veb[i]->stats));
467 memset(&pf->veb[i]->stats_offsets, 0,
468 sizeof(pf->veb[i]->stats_offsets));
469 pf->veb[i]->stat_offsets_loaded = false;
470 }
471 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000472}
473
474/**
475 * i40e_stat_update48 - read and update a 48 bit stat from the chip
476 * @hw: ptr to the hardware info
477 * @hireg: the high 32 bit reg to read
478 * @loreg: the low 32 bit reg to read
479 * @offset_loaded: has the initial offset been loaded yet
480 * @offset: ptr to current offset value
481 * @stat: ptr to the stat
482 *
483 * Since the device stats are not reset at PFReset, they likely will not
484 * be zeroed when the driver starts. We'll save the first values read
485 * and use them as offsets to be subtracted from the raw values in order
486 * to report stats that count from zero. In the process, we also manage
487 * the potential roll-over.
488 **/
489static void i40e_stat_update48(struct i40e_hw *hw, u32 hireg, u32 loreg,
490 bool offset_loaded, u64 *offset, u64 *stat)
491{
492 u64 new_data;
493
Shannon Nelsonab600852014-01-17 15:36:39 -0800494 if (hw->device_id == I40E_DEV_ID_QEMU) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000495 new_data = rd32(hw, loreg);
496 new_data |= ((u64)(rd32(hw, hireg) & 0xFFFF)) << 32;
497 } else {
498 new_data = rd64(hw, loreg);
499 }
500 if (!offset_loaded)
501 *offset = new_data;
502 if (likely(new_data >= *offset))
503 *stat = new_data - *offset;
504 else
505 *stat = (new_data + ((u64)1 << 48)) - *offset;
506 *stat &= 0xFFFFFFFFFFFFULL;
507}
508
509/**
510 * i40e_stat_update32 - read and update a 32 bit stat from the chip
511 * @hw: ptr to the hardware info
512 * @reg: the hw reg to read
513 * @offset_loaded: has the initial offset been loaded yet
514 * @offset: ptr to current offset value
515 * @stat: ptr to the stat
516 **/
517static void i40e_stat_update32(struct i40e_hw *hw, u32 reg,
518 bool offset_loaded, u64 *offset, u64 *stat)
519{
520 u32 new_data;
521
522 new_data = rd32(hw, reg);
523 if (!offset_loaded)
524 *offset = new_data;
525 if (likely(new_data >= *offset))
526 *stat = (u32)(new_data - *offset);
527 else
528 *stat = (u32)((new_data + ((u64)1 << 32)) - *offset);
529}
530
531/**
532 * i40e_update_eth_stats - Update VSI-specific ethernet statistics counters.
533 * @vsi: the VSI to be updated
534 **/
535void i40e_update_eth_stats(struct i40e_vsi *vsi)
536{
537 int stat_idx = le16_to_cpu(vsi->info.stat_counter_idx);
538 struct i40e_pf *pf = vsi->back;
539 struct i40e_hw *hw = &pf->hw;
540 struct i40e_eth_stats *oes;
541 struct i40e_eth_stats *es; /* device's eth stats */
542
543 es = &vsi->eth_stats;
544 oes = &vsi->eth_stats_offsets;
545
546 /* Gather up the stats that the hw collects */
547 i40e_stat_update32(hw, I40E_GLV_TEPC(stat_idx),
548 vsi->stat_offsets_loaded,
549 &oes->tx_errors, &es->tx_errors);
550 i40e_stat_update32(hw, I40E_GLV_RDPC(stat_idx),
551 vsi->stat_offsets_loaded,
552 &oes->rx_discards, &es->rx_discards);
Shannon Nelson41a9e552014-04-23 04:50:20 +0000553 i40e_stat_update32(hw, I40E_GLV_RUPP(stat_idx),
554 vsi->stat_offsets_loaded,
555 &oes->rx_unknown_protocol, &es->rx_unknown_protocol);
556 i40e_stat_update32(hw, I40E_GLV_TEPC(stat_idx),
557 vsi->stat_offsets_loaded,
558 &oes->tx_errors, &es->tx_errors);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000559
560 i40e_stat_update48(hw, I40E_GLV_GORCH(stat_idx),
561 I40E_GLV_GORCL(stat_idx),
562 vsi->stat_offsets_loaded,
563 &oes->rx_bytes, &es->rx_bytes);
564 i40e_stat_update48(hw, I40E_GLV_UPRCH(stat_idx),
565 I40E_GLV_UPRCL(stat_idx),
566 vsi->stat_offsets_loaded,
567 &oes->rx_unicast, &es->rx_unicast);
568 i40e_stat_update48(hw, I40E_GLV_MPRCH(stat_idx),
569 I40E_GLV_MPRCL(stat_idx),
570 vsi->stat_offsets_loaded,
571 &oes->rx_multicast, &es->rx_multicast);
572 i40e_stat_update48(hw, I40E_GLV_BPRCH(stat_idx),
573 I40E_GLV_BPRCL(stat_idx),
574 vsi->stat_offsets_loaded,
575 &oes->rx_broadcast, &es->rx_broadcast);
576
577 i40e_stat_update48(hw, I40E_GLV_GOTCH(stat_idx),
578 I40E_GLV_GOTCL(stat_idx),
579 vsi->stat_offsets_loaded,
580 &oes->tx_bytes, &es->tx_bytes);
581 i40e_stat_update48(hw, I40E_GLV_UPTCH(stat_idx),
582 I40E_GLV_UPTCL(stat_idx),
583 vsi->stat_offsets_loaded,
584 &oes->tx_unicast, &es->tx_unicast);
585 i40e_stat_update48(hw, I40E_GLV_MPTCH(stat_idx),
586 I40E_GLV_MPTCL(stat_idx),
587 vsi->stat_offsets_loaded,
588 &oes->tx_multicast, &es->tx_multicast);
589 i40e_stat_update48(hw, I40E_GLV_BPTCH(stat_idx),
590 I40E_GLV_BPTCL(stat_idx),
591 vsi->stat_offsets_loaded,
592 &oes->tx_broadcast, &es->tx_broadcast);
593 vsi->stat_offsets_loaded = true;
594}
595
596/**
597 * i40e_update_veb_stats - Update Switch component statistics
598 * @veb: the VEB being updated
599 **/
600static void i40e_update_veb_stats(struct i40e_veb *veb)
601{
602 struct i40e_pf *pf = veb->pf;
603 struct i40e_hw *hw = &pf->hw;
604 struct i40e_eth_stats *oes;
605 struct i40e_eth_stats *es; /* device's eth stats */
606 int idx = 0;
607
608 idx = veb->stats_idx;
609 es = &veb->stats;
610 oes = &veb->stats_offsets;
611
612 /* Gather up the stats that the hw collects */
613 i40e_stat_update32(hw, I40E_GLSW_TDPC(idx),
614 veb->stat_offsets_loaded,
615 &oes->tx_discards, &es->tx_discards);
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +0000616 if (hw->revision_id > 0)
617 i40e_stat_update32(hw, I40E_GLSW_RUPP(idx),
618 veb->stat_offsets_loaded,
619 &oes->rx_unknown_protocol,
620 &es->rx_unknown_protocol);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000621 i40e_stat_update48(hw, I40E_GLSW_GORCH(idx), I40E_GLSW_GORCL(idx),
622 veb->stat_offsets_loaded,
623 &oes->rx_bytes, &es->rx_bytes);
624 i40e_stat_update48(hw, I40E_GLSW_UPRCH(idx), I40E_GLSW_UPRCL(idx),
625 veb->stat_offsets_loaded,
626 &oes->rx_unicast, &es->rx_unicast);
627 i40e_stat_update48(hw, I40E_GLSW_MPRCH(idx), I40E_GLSW_MPRCL(idx),
628 veb->stat_offsets_loaded,
629 &oes->rx_multicast, &es->rx_multicast);
630 i40e_stat_update48(hw, I40E_GLSW_BPRCH(idx), I40E_GLSW_BPRCL(idx),
631 veb->stat_offsets_loaded,
632 &oes->rx_broadcast, &es->rx_broadcast);
633
634 i40e_stat_update48(hw, I40E_GLSW_GOTCH(idx), I40E_GLSW_GOTCL(idx),
635 veb->stat_offsets_loaded,
636 &oes->tx_bytes, &es->tx_bytes);
637 i40e_stat_update48(hw, I40E_GLSW_UPTCH(idx), I40E_GLSW_UPTCL(idx),
638 veb->stat_offsets_loaded,
639 &oes->tx_unicast, &es->tx_unicast);
640 i40e_stat_update48(hw, I40E_GLSW_MPTCH(idx), I40E_GLSW_MPTCL(idx),
641 veb->stat_offsets_loaded,
642 &oes->tx_multicast, &es->tx_multicast);
643 i40e_stat_update48(hw, I40E_GLSW_BPTCH(idx), I40E_GLSW_BPTCL(idx),
644 veb->stat_offsets_loaded,
645 &oes->tx_broadcast, &es->tx_broadcast);
646 veb->stat_offsets_loaded = true;
647}
648
Vasu Dev38e00432014-08-01 13:27:03 -0700649#ifdef I40E_FCOE
650/**
651 * i40e_update_fcoe_stats - Update FCoE-specific ethernet statistics counters.
652 * @vsi: the VSI that is capable of doing FCoE
653 **/
654static void i40e_update_fcoe_stats(struct i40e_vsi *vsi)
655{
656 struct i40e_pf *pf = vsi->back;
657 struct i40e_hw *hw = &pf->hw;
658 struct i40e_fcoe_stats *ofs;
659 struct i40e_fcoe_stats *fs; /* device's eth stats */
660 int idx;
661
662 if (vsi->type != I40E_VSI_FCOE)
663 return;
664
665 idx = (pf->pf_seid - I40E_BASE_PF_SEID) + I40E_FCOE_PF_STAT_OFFSET;
666 fs = &vsi->fcoe_stats;
667 ofs = &vsi->fcoe_stats_offsets;
668
669 i40e_stat_update32(hw, I40E_GL_FCOEPRC(idx),
670 vsi->fcoe_stat_offsets_loaded,
671 &ofs->rx_fcoe_packets, &fs->rx_fcoe_packets);
672 i40e_stat_update48(hw, I40E_GL_FCOEDWRCH(idx), I40E_GL_FCOEDWRCL(idx),
673 vsi->fcoe_stat_offsets_loaded,
674 &ofs->rx_fcoe_dwords, &fs->rx_fcoe_dwords);
675 i40e_stat_update32(hw, I40E_GL_FCOERPDC(idx),
676 vsi->fcoe_stat_offsets_loaded,
677 &ofs->rx_fcoe_dropped, &fs->rx_fcoe_dropped);
678 i40e_stat_update32(hw, I40E_GL_FCOEPTC(idx),
679 vsi->fcoe_stat_offsets_loaded,
680 &ofs->tx_fcoe_packets, &fs->tx_fcoe_packets);
681 i40e_stat_update48(hw, I40E_GL_FCOEDWTCH(idx), I40E_GL_FCOEDWTCL(idx),
682 vsi->fcoe_stat_offsets_loaded,
683 &ofs->tx_fcoe_dwords, &fs->tx_fcoe_dwords);
684 i40e_stat_update32(hw, I40E_GL_FCOECRC(idx),
685 vsi->fcoe_stat_offsets_loaded,
686 &ofs->fcoe_bad_fccrc, &fs->fcoe_bad_fccrc);
687 i40e_stat_update32(hw, I40E_GL_FCOELAST(idx),
688 vsi->fcoe_stat_offsets_loaded,
689 &ofs->fcoe_last_error, &fs->fcoe_last_error);
690 i40e_stat_update32(hw, I40E_GL_FCOEDDPC(idx),
691 vsi->fcoe_stat_offsets_loaded,
692 &ofs->fcoe_ddp_count, &fs->fcoe_ddp_count);
693
694 vsi->fcoe_stat_offsets_loaded = true;
695}
696
697#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000698/**
699 * i40e_update_link_xoff_rx - Update XOFF received in link flow control mode
700 * @pf: the corresponding PF
701 *
702 * Update the Rx XOFF counter (PAUSE frames) in link flow control mode
703 **/
704static void i40e_update_link_xoff_rx(struct i40e_pf *pf)
705{
706 struct i40e_hw_port_stats *osd = &pf->stats_offsets;
707 struct i40e_hw_port_stats *nsd = &pf->stats;
708 struct i40e_hw *hw = &pf->hw;
709 u64 xoff = 0;
710 u16 i, v;
711
712 if ((hw->fc.current_mode != I40E_FC_FULL) &&
713 (hw->fc.current_mode != I40E_FC_RX_PAUSE))
714 return;
715
716 xoff = nsd->link_xoff_rx;
717 i40e_stat_update32(hw, I40E_GLPRT_LXOFFRXC(hw->port),
718 pf->stat_offsets_loaded,
719 &osd->link_xoff_rx, &nsd->link_xoff_rx);
720
721 /* No new LFC xoff rx */
722 if (!(nsd->link_xoff_rx - xoff))
723 return;
724
725 /* Clear the __I40E_HANG_CHECK_ARMED bit for all Tx rings */
Mitch Williams505682c2014-05-20 08:01:37 +0000726 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000727 struct i40e_vsi *vsi = pf->vsi[v];
728
Mitch Williamsddfda802014-05-10 04:49:10 +0000729 if (!vsi || !vsi->tx_rings[0])
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000730 continue;
731
732 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e15b2013-09-28 06:00:58 +0000733 struct i40e_ring *ring = vsi->tx_rings[i];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000734 clear_bit(__I40E_HANG_CHECK_ARMED, &ring->state);
735 }
736 }
737}
738
739/**
740 * i40e_update_prio_xoff_rx - Update XOFF received in PFC mode
741 * @pf: the corresponding PF
742 *
743 * Update the Rx XOFF counter (PAUSE frames) in PFC mode
744 **/
745static void i40e_update_prio_xoff_rx(struct i40e_pf *pf)
746{
747 struct i40e_hw_port_stats *osd = &pf->stats_offsets;
748 struct i40e_hw_port_stats *nsd = &pf->stats;
749 bool xoff[I40E_MAX_TRAFFIC_CLASS] = {false};
750 struct i40e_dcbx_config *dcb_cfg;
751 struct i40e_hw *hw = &pf->hw;
752 u16 i, v;
753 u8 tc;
754
755 dcb_cfg = &hw->local_dcbx_config;
756
757 /* See if DCB enabled with PFC TC */
758 if (!(pf->flags & I40E_FLAG_DCB_ENABLED) ||
759 !(dcb_cfg->pfc.pfcenable)) {
760 i40e_update_link_xoff_rx(pf);
761 return;
762 }
763
764 for (i = 0; i < I40E_MAX_USER_PRIORITY; i++) {
765 u64 prio_xoff = nsd->priority_xoff_rx[i];
766 i40e_stat_update32(hw, I40E_GLPRT_PXOFFRXC(hw->port, i),
767 pf->stat_offsets_loaded,
768 &osd->priority_xoff_rx[i],
769 &nsd->priority_xoff_rx[i]);
770
771 /* No new PFC xoff rx */
772 if (!(nsd->priority_xoff_rx[i] - prio_xoff))
773 continue;
774 /* Get the TC for given priority */
775 tc = dcb_cfg->etscfg.prioritytable[i];
776 xoff[tc] = true;
777 }
778
779 /* Clear the __I40E_HANG_CHECK_ARMED bit for Tx rings */
Mitch Williams505682c2014-05-20 08:01:37 +0000780 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000781 struct i40e_vsi *vsi = pf->vsi[v];
782
Mitch Williamsddfda802014-05-10 04:49:10 +0000783 if (!vsi || !vsi->tx_rings[0])
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000784 continue;
785
786 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e15b2013-09-28 06:00:58 +0000787 struct i40e_ring *ring = vsi->tx_rings[i];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000788
789 tc = ring->dcb_tc;
790 if (xoff[tc])
791 clear_bit(__I40E_HANG_CHECK_ARMED,
792 &ring->state);
793 }
794 }
795}
796
797/**
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000798 * i40e_update_vsi_stats - Update the vsi statistics counters.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000799 * @vsi: the VSI to be updated
800 *
801 * There are a few instances where we store the same stat in a
802 * couple of different structs. This is partly because we have
803 * the netdev stats that need to be filled out, which is slightly
804 * different from the "eth_stats" defined by the chip and used in
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000805 * VF communications. We sort it out here.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000806 **/
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000807static void i40e_update_vsi_stats(struct i40e_vsi *vsi)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000808{
809 struct i40e_pf *pf = vsi->back;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000810 struct rtnl_link_stats64 *ons;
811 struct rtnl_link_stats64 *ns; /* netdev stats */
812 struct i40e_eth_stats *oes;
813 struct i40e_eth_stats *es; /* device's eth stats */
814 u32 tx_restart, tx_busy;
815 u32 rx_page, rx_buf;
816 u64 rx_p, rx_b;
817 u64 tx_p, tx_b;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000818 u16 q;
819
820 if (test_bit(__I40E_DOWN, &vsi->state) ||
821 test_bit(__I40E_CONFIG_BUSY, &pf->state))
822 return;
823
824 ns = i40e_get_vsi_stats_struct(vsi);
825 ons = &vsi->net_stats_offsets;
826 es = &vsi->eth_stats;
827 oes = &vsi->eth_stats_offsets;
828
829 /* Gather up the netdev and vsi stats that the driver collects
830 * on the fly during packet processing
831 */
832 rx_b = rx_p = 0;
833 tx_b = tx_p = 0;
834 tx_restart = tx_busy = 0;
835 rx_page = 0;
836 rx_buf = 0;
Alexander Duyck980e9b12013-09-28 06:01:03 +0000837 rcu_read_lock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000838 for (q = 0; q < vsi->num_queue_pairs; q++) {
839 struct i40e_ring *p;
Alexander Duyck980e9b12013-09-28 06:01:03 +0000840 u64 bytes, packets;
841 unsigned int start;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000842
Alexander Duyck980e9b12013-09-28 06:01:03 +0000843 /* locate Tx ring */
844 p = ACCESS_ONCE(vsi->tx_rings[q]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000845
Alexander Duyck980e9b12013-09-28 06:01:03 +0000846 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -0700847 start = u64_stats_fetch_begin_irq(&p->syncp);
Alexander Duyck980e9b12013-09-28 06:01:03 +0000848 packets = p->stats.packets;
849 bytes = p->stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -0700850 } while (u64_stats_fetch_retry_irq(&p->syncp, start));
Alexander Duyck980e9b12013-09-28 06:01:03 +0000851 tx_b += bytes;
852 tx_p += packets;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000853 tx_restart += p->tx_stats.restart_queue;
854 tx_busy += p->tx_stats.tx_busy;
Alexander Duyck980e9b12013-09-28 06:01:03 +0000855
856 /* Rx queue is part of the same block as Tx queue */
857 p = &p[1];
858 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -0700859 start = u64_stats_fetch_begin_irq(&p->syncp);
Alexander Duyck980e9b12013-09-28 06:01:03 +0000860 packets = p->stats.packets;
861 bytes = p->stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -0700862 } while (u64_stats_fetch_retry_irq(&p->syncp, start));
Alexander Duyck980e9b12013-09-28 06:01:03 +0000863 rx_b += bytes;
864 rx_p += packets;
Mitch Williams420136c2013-12-18 13:45:59 +0000865 rx_buf += p->rx_stats.alloc_buff_failed;
866 rx_page += p->rx_stats.alloc_page_failed;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000867 }
Alexander Duyck980e9b12013-09-28 06:01:03 +0000868 rcu_read_unlock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000869 vsi->tx_restart = tx_restart;
870 vsi->tx_busy = tx_busy;
871 vsi->rx_page_failed = rx_page;
872 vsi->rx_buf_failed = rx_buf;
873
874 ns->rx_packets = rx_p;
875 ns->rx_bytes = rx_b;
876 ns->tx_packets = tx_p;
877 ns->tx_bytes = tx_b;
878
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000879 /* update netdev stats from eth stats */
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000880 i40e_update_eth_stats(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000881 ons->tx_errors = oes->tx_errors;
882 ns->tx_errors = es->tx_errors;
883 ons->multicast = oes->rx_multicast;
884 ns->multicast = es->rx_multicast;
Shannon Nelson41a9e552014-04-23 04:50:20 +0000885 ons->rx_dropped = oes->rx_discards;
886 ns->rx_dropped = es->rx_discards;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000887 ons->tx_dropped = oes->tx_discards;
888 ns->tx_dropped = es->tx_discards;
889
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000890 /* pull in a couple PF stats if this is the main vsi */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000891 if (vsi == pf->vsi[pf->lan_vsi]) {
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000892 ns->rx_crc_errors = pf->stats.crc_errors;
893 ns->rx_errors = pf->stats.crc_errors + pf->stats.illegal_bytes;
894 ns->rx_length_errors = pf->stats.rx_length_errors;
895 }
896}
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000897
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000898/**
899 * i40e_update_pf_stats - Update the pf statistics counters.
900 * @pf: the PF to be updated
901 **/
902static void i40e_update_pf_stats(struct i40e_pf *pf)
903{
904 struct i40e_hw_port_stats *osd = &pf->stats_offsets;
905 struct i40e_hw_port_stats *nsd = &pf->stats;
906 struct i40e_hw *hw = &pf->hw;
907 u32 val;
908 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000909
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000910 i40e_stat_update48(hw, I40E_GLPRT_GORCH(hw->port),
911 I40E_GLPRT_GORCL(hw->port),
912 pf->stat_offsets_loaded,
913 &osd->eth.rx_bytes, &nsd->eth.rx_bytes);
914 i40e_stat_update48(hw, I40E_GLPRT_GOTCH(hw->port),
915 I40E_GLPRT_GOTCL(hw->port),
916 pf->stat_offsets_loaded,
917 &osd->eth.tx_bytes, &nsd->eth.tx_bytes);
918 i40e_stat_update32(hw, I40E_GLPRT_RDPC(hw->port),
919 pf->stat_offsets_loaded,
920 &osd->eth.rx_discards,
921 &nsd->eth.rx_discards);
922 i40e_stat_update32(hw, I40E_GLPRT_TDPC(hw->port),
923 pf->stat_offsets_loaded,
924 &osd->eth.tx_discards,
925 &nsd->eth.tx_discards);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000926
Shannon Nelson532d2832014-04-23 04:50:09 +0000927 i40e_stat_update48(hw, I40E_GLPRT_UPRCH(hw->port),
928 I40E_GLPRT_UPRCL(hw->port),
929 pf->stat_offsets_loaded,
930 &osd->eth.rx_unicast,
931 &nsd->eth.rx_unicast);
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000932 i40e_stat_update48(hw, I40E_GLPRT_MPRCH(hw->port),
933 I40E_GLPRT_MPRCL(hw->port),
934 pf->stat_offsets_loaded,
935 &osd->eth.rx_multicast,
936 &nsd->eth.rx_multicast);
Shannon Nelson532d2832014-04-23 04:50:09 +0000937 i40e_stat_update48(hw, I40E_GLPRT_BPRCH(hw->port),
938 I40E_GLPRT_BPRCL(hw->port),
939 pf->stat_offsets_loaded,
940 &osd->eth.rx_broadcast,
941 &nsd->eth.rx_broadcast);
942 i40e_stat_update48(hw, I40E_GLPRT_UPTCH(hw->port),
943 I40E_GLPRT_UPTCL(hw->port),
944 pf->stat_offsets_loaded,
945 &osd->eth.tx_unicast,
946 &nsd->eth.tx_unicast);
947 i40e_stat_update48(hw, I40E_GLPRT_MPTCH(hw->port),
948 I40E_GLPRT_MPTCL(hw->port),
949 pf->stat_offsets_loaded,
950 &osd->eth.tx_multicast,
951 &nsd->eth.tx_multicast);
952 i40e_stat_update48(hw, I40E_GLPRT_BPTCH(hw->port),
953 I40E_GLPRT_BPTCL(hw->port),
954 pf->stat_offsets_loaded,
955 &osd->eth.tx_broadcast,
956 &nsd->eth.tx_broadcast);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000957
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000958 i40e_stat_update32(hw, I40E_GLPRT_TDOLD(hw->port),
959 pf->stat_offsets_loaded,
960 &osd->tx_dropped_link_down,
961 &nsd->tx_dropped_link_down);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000962
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000963 i40e_stat_update32(hw, I40E_GLPRT_CRCERRS(hw->port),
964 pf->stat_offsets_loaded,
965 &osd->crc_errors, &nsd->crc_errors);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000966
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000967 i40e_stat_update32(hw, I40E_GLPRT_ILLERRC(hw->port),
968 pf->stat_offsets_loaded,
969 &osd->illegal_bytes, &nsd->illegal_bytes);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000970
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000971 i40e_stat_update32(hw, I40E_GLPRT_MLFC(hw->port),
972 pf->stat_offsets_loaded,
973 &osd->mac_local_faults,
974 &nsd->mac_local_faults);
975 i40e_stat_update32(hw, I40E_GLPRT_MRFC(hw->port),
976 pf->stat_offsets_loaded,
977 &osd->mac_remote_faults,
978 &nsd->mac_remote_faults);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000979
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000980 i40e_stat_update32(hw, I40E_GLPRT_RLEC(hw->port),
981 pf->stat_offsets_loaded,
982 &osd->rx_length_errors,
983 &nsd->rx_length_errors);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000984
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000985 i40e_stat_update32(hw, I40E_GLPRT_LXONRXC(hw->port),
986 pf->stat_offsets_loaded,
987 &osd->link_xon_rx, &nsd->link_xon_rx);
988 i40e_stat_update32(hw, I40E_GLPRT_LXONTXC(hw->port),
989 pf->stat_offsets_loaded,
990 &osd->link_xon_tx, &nsd->link_xon_tx);
991 i40e_update_prio_xoff_rx(pf); /* handles I40E_GLPRT_LXOFFRXC */
992 i40e_stat_update32(hw, I40E_GLPRT_LXOFFTXC(hw->port),
993 pf->stat_offsets_loaded,
994 &osd->link_xoff_tx, &nsd->link_xoff_tx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000995
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000996 for (i = 0; i < 8; i++) {
997 i40e_stat_update32(hw, I40E_GLPRT_PXONRXC(hw->port, i),
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000998 pf->stat_offsets_loaded,
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000999 &osd->priority_xon_rx[i],
1000 &nsd->priority_xon_rx[i]);
1001 i40e_stat_update32(hw, I40E_GLPRT_PXONTXC(hw->port, i),
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001002 pf->stat_offsets_loaded,
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001003 &osd->priority_xon_tx[i],
1004 &nsd->priority_xon_tx[i]);
1005 i40e_stat_update32(hw, I40E_GLPRT_PXOFFTXC(hw->port, i),
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001006 pf->stat_offsets_loaded,
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001007 &osd->priority_xoff_tx[i],
1008 &nsd->priority_xoff_tx[i]);
1009 i40e_stat_update32(hw,
1010 I40E_GLPRT_RXON2OFFCNT(hw->port, i),
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001011 pf->stat_offsets_loaded,
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001012 &osd->priority_xon_2_xoff[i],
1013 &nsd->priority_xon_2_xoff[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001014 }
1015
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001016 i40e_stat_update48(hw, I40E_GLPRT_PRC64H(hw->port),
1017 I40E_GLPRT_PRC64L(hw->port),
1018 pf->stat_offsets_loaded,
1019 &osd->rx_size_64, &nsd->rx_size_64);
1020 i40e_stat_update48(hw, I40E_GLPRT_PRC127H(hw->port),
1021 I40E_GLPRT_PRC127L(hw->port),
1022 pf->stat_offsets_loaded,
1023 &osd->rx_size_127, &nsd->rx_size_127);
1024 i40e_stat_update48(hw, I40E_GLPRT_PRC255H(hw->port),
1025 I40E_GLPRT_PRC255L(hw->port),
1026 pf->stat_offsets_loaded,
1027 &osd->rx_size_255, &nsd->rx_size_255);
1028 i40e_stat_update48(hw, I40E_GLPRT_PRC511H(hw->port),
1029 I40E_GLPRT_PRC511L(hw->port),
1030 pf->stat_offsets_loaded,
1031 &osd->rx_size_511, &nsd->rx_size_511);
1032 i40e_stat_update48(hw, I40E_GLPRT_PRC1023H(hw->port),
1033 I40E_GLPRT_PRC1023L(hw->port),
1034 pf->stat_offsets_loaded,
1035 &osd->rx_size_1023, &nsd->rx_size_1023);
1036 i40e_stat_update48(hw, I40E_GLPRT_PRC1522H(hw->port),
1037 I40E_GLPRT_PRC1522L(hw->port),
1038 pf->stat_offsets_loaded,
1039 &osd->rx_size_1522, &nsd->rx_size_1522);
1040 i40e_stat_update48(hw, I40E_GLPRT_PRC9522H(hw->port),
1041 I40E_GLPRT_PRC9522L(hw->port),
1042 pf->stat_offsets_loaded,
1043 &osd->rx_size_big, &nsd->rx_size_big);
1044
1045 i40e_stat_update48(hw, I40E_GLPRT_PTC64H(hw->port),
1046 I40E_GLPRT_PTC64L(hw->port),
1047 pf->stat_offsets_loaded,
1048 &osd->tx_size_64, &nsd->tx_size_64);
1049 i40e_stat_update48(hw, I40E_GLPRT_PTC127H(hw->port),
1050 I40E_GLPRT_PTC127L(hw->port),
1051 pf->stat_offsets_loaded,
1052 &osd->tx_size_127, &nsd->tx_size_127);
1053 i40e_stat_update48(hw, I40E_GLPRT_PTC255H(hw->port),
1054 I40E_GLPRT_PTC255L(hw->port),
1055 pf->stat_offsets_loaded,
1056 &osd->tx_size_255, &nsd->tx_size_255);
1057 i40e_stat_update48(hw, I40E_GLPRT_PTC511H(hw->port),
1058 I40E_GLPRT_PTC511L(hw->port),
1059 pf->stat_offsets_loaded,
1060 &osd->tx_size_511, &nsd->tx_size_511);
1061 i40e_stat_update48(hw, I40E_GLPRT_PTC1023H(hw->port),
1062 I40E_GLPRT_PTC1023L(hw->port),
1063 pf->stat_offsets_loaded,
1064 &osd->tx_size_1023, &nsd->tx_size_1023);
1065 i40e_stat_update48(hw, I40E_GLPRT_PTC1522H(hw->port),
1066 I40E_GLPRT_PTC1522L(hw->port),
1067 pf->stat_offsets_loaded,
1068 &osd->tx_size_1522, &nsd->tx_size_1522);
1069 i40e_stat_update48(hw, I40E_GLPRT_PTC9522H(hw->port),
1070 I40E_GLPRT_PTC9522L(hw->port),
1071 pf->stat_offsets_loaded,
1072 &osd->tx_size_big, &nsd->tx_size_big);
1073
1074 i40e_stat_update32(hw, I40E_GLPRT_RUC(hw->port),
1075 pf->stat_offsets_loaded,
1076 &osd->rx_undersize, &nsd->rx_undersize);
1077 i40e_stat_update32(hw, I40E_GLPRT_RFC(hw->port),
1078 pf->stat_offsets_loaded,
1079 &osd->rx_fragments, &nsd->rx_fragments);
1080 i40e_stat_update32(hw, I40E_GLPRT_ROC(hw->port),
1081 pf->stat_offsets_loaded,
1082 &osd->rx_oversize, &nsd->rx_oversize);
1083 i40e_stat_update32(hw, I40E_GLPRT_RJC(hw->port),
1084 pf->stat_offsets_loaded,
1085 &osd->rx_jabber, &nsd->rx_jabber);
1086
Anjali Singhai Jain433c47d2014-05-22 06:32:17 +00001087 /* FDIR stats */
1088 i40e_stat_update32(hw, I40E_GLQF_PCNT(pf->fd_atr_cnt_idx),
1089 pf->stat_offsets_loaded,
1090 &osd->fd_atr_match, &nsd->fd_atr_match);
1091 i40e_stat_update32(hw, I40E_GLQF_PCNT(pf->fd_sb_cnt_idx),
1092 pf->stat_offsets_loaded,
1093 &osd->fd_sb_match, &nsd->fd_sb_match);
1094
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001095 val = rd32(hw, I40E_PRTPM_EEE_STAT);
1096 nsd->tx_lpi_status =
1097 (val & I40E_PRTPM_EEE_STAT_TX_LPI_STATUS_MASK) >>
1098 I40E_PRTPM_EEE_STAT_TX_LPI_STATUS_SHIFT;
1099 nsd->rx_lpi_status =
1100 (val & I40E_PRTPM_EEE_STAT_RX_LPI_STATUS_MASK) >>
1101 I40E_PRTPM_EEE_STAT_RX_LPI_STATUS_SHIFT;
1102 i40e_stat_update32(hw, I40E_PRTPM_TLPIC,
1103 pf->stat_offsets_loaded,
1104 &osd->tx_lpi_count, &nsd->tx_lpi_count);
1105 i40e_stat_update32(hw, I40E_PRTPM_RLPIC,
1106 pf->stat_offsets_loaded,
1107 &osd->rx_lpi_count, &nsd->rx_lpi_count);
1108
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001109 pf->stat_offsets_loaded = true;
1110}
1111
1112/**
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001113 * i40e_update_stats - Update the various statistics counters.
1114 * @vsi: the VSI to be updated
1115 *
1116 * Update the various stats for this VSI and its related entities.
1117 **/
1118void i40e_update_stats(struct i40e_vsi *vsi)
1119{
1120 struct i40e_pf *pf = vsi->back;
1121
1122 if (vsi == pf->vsi[pf->lan_vsi])
1123 i40e_update_pf_stats(pf);
1124
1125 i40e_update_vsi_stats(vsi);
Vasu Dev38e00432014-08-01 13:27:03 -07001126#ifdef I40E_FCOE
1127 i40e_update_fcoe_stats(vsi);
1128#endif
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001129}
1130
1131/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001132 * i40e_find_filter - Search VSI filter list for specific mac/vlan filter
1133 * @vsi: the VSI to be searched
1134 * @macaddr: the MAC address
1135 * @vlan: the vlan
1136 * @is_vf: make sure its a vf filter, else doesn't matter
1137 * @is_netdev: make sure its a netdev filter, else doesn't matter
1138 *
1139 * Returns ptr to the filter object or NULL
1140 **/
1141static struct i40e_mac_filter *i40e_find_filter(struct i40e_vsi *vsi,
1142 u8 *macaddr, s16 vlan,
1143 bool is_vf, bool is_netdev)
1144{
1145 struct i40e_mac_filter *f;
1146
1147 if (!vsi || !macaddr)
1148 return NULL;
1149
1150 list_for_each_entry(f, &vsi->mac_filter_list, list) {
1151 if ((ether_addr_equal(macaddr, f->macaddr)) &&
1152 (vlan == f->vlan) &&
1153 (!is_vf || f->is_vf) &&
1154 (!is_netdev || f->is_netdev))
1155 return f;
1156 }
1157 return NULL;
1158}
1159
1160/**
1161 * i40e_find_mac - Find a mac addr in the macvlan filters list
1162 * @vsi: the VSI to be searched
1163 * @macaddr: the MAC address we are searching for
1164 * @is_vf: make sure its a vf filter, else doesn't matter
1165 * @is_netdev: make sure its a netdev filter, else doesn't matter
1166 *
1167 * Returns the first filter with the provided MAC address or NULL if
1168 * MAC address was not found
1169 **/
1170struct i40e_mac_filter *i40e_find_mac(struct i40e_vsi *vsi, u8 *macaddr,
1171 bool is_vf, bool is_netdev)
1172{
1173 struct i40e_mac_filter *f;
1174
1175 if (!vsi || !macaddr)
1176 return NULL;
1177
1178 list_for_each_entry(f, &vsi->mac_filter_list, list) {
1179 if ((ether_addr_equal(macaddr, f->macaddr)) &&
1180 (!is_vf || f->is_vf) &&
1181 (!is_netdev || f->is_netdev))
1182 return f;
1183 }
1184 return NULL;
1185}
1186
1187/**
1188 * i40e_is_vsi_in_vlan - Check if VSI is in vlan mode
1189 * @vsi: the VSI to be searched
1190 *
1191 * Returns true if VSI is in vlan mode or false otherwise
1192 **/
1193bool i40e_is_vsi_in_vlan(struct i40e_vsi *vsi)
1194{
1195 struct i40e_mac_filter *f;
1196
1197 /* Only -1 for all the filters denotes not in vlan mode
1198 * so we have to go through all the list in order to make sure
1199 */
1200 list_for_each_entry(f, &vsi->mac_filter_list, list) {
1201 if (f->vlan >= 0)
1202 return true;
1203 }
1204
1205 return false;
1206}
1207
1208/**
1209 * i40e_put_mac_in_vlan - Make macvlan filters from macaddrs and vlans
1210 * @vsi: the VSI to be searched
1211 * @macaddr: the mac address to be filtered
1212 * @is_vf: true if it is a vf
1213 * @is_netdev: true if it is a netdev
1214 *
1215 * Goes through all the macvlan filters and adds a
1216 * macvlan filter for each unique vlan that already exists
1217 *
1218 * Returns first filter found on success, else NULL
1219 **/
1220struct i40e_mac_filter *i40e_put_mac_in_vlan(struct i40e_vsi *vsi, u8 *macaddr,
1221 bool is_vf, bool is_netdev)
1222{
1223 struct i40e_mac_filter *f;
1224
1225 list_for_each_entry(f, &vsi->mac_filter_list, list) {
1226 if (!i40e_find_filter(vsi, macaddr, f->vlan,
1227 is_vf, is_netdev)) {
1228 if (!i40e_add_filter(vsi, macaddr, f->vlan,
Jesse Brandeburg8fb905b2014-01-17 15:36:33 -08001229 is_vf, is_netdev))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001230 return NULL;
1231 }
1232 }
1233
1234 return list_first_entry_or_null(&vsi->mac_filter_list,
1235 struct i40e_mac_filter, list);
1236}
1237
1238/**
Greg Rose8c27d422014-05-22 06:31:56 +00001239 * i40e_rm_default_mac_filter - Remove the default MAC filter set by NVM
1240 * @vsi: the PF Main VSI - inappropriate for any other VSI
1241 * @macaddr: the MAC address
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 Duyck9f65e15b2013-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 Duyck9f65e15b2013-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 Duyck9f65e15b2013-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 Duyck9f65e15b2013-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 Duyck9f65e15b2013-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 Duyck9f65e15b2013-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 Duyck9f65e15b2013-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 Duyck9f65e15b2013-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 Jared351499a2014-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:
4418 strncpy(speed, "40 Gbps", SPEED_SIZE);
4419 break;
4420 case I40E_LINK_SPEED_10GB:
4421 strncpy(speed, "10 Gbps", SPEED_SIZE);
4422 break;
4423 case I40E_LINK_SPEED_1GB:
4424 strncpy(speed, "1000 Mbps", SPEED_SIZE);
4425 break;
4426 default:
4427 break;
4428 }
4429
4430 switch (vsi->back->hw.fc.current_mode) {
4431 case I40E_FC_FULL:
4432 strncpy(fc, "RX/TX", FC_SIZE);
4433 break;
4434 case I40E_FC_TX_PAUSE:
4435 strncpy(fc, "TX", FC_SIZE);
4436 break;
4437 case I40E_FC_RX_PAUSE:
4438 strncpy(fc, "RX", FC_SIZE);
4439 break;
4440 default:
4441 strncpy(fc, "None", FC_SIZE);
4442 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 Singhai6d779b42013-09-28 06:00:02 +00004481 } else if (vsi->netdev) {
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004482 i40e_print_link_message(vsi, false);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004483 }
Anjali Singhai Jainca64fa42014-02-11 08:26:30 +00004484
4485 /* replay FDIR SB filters */
4486 if (vsi->type == I40E_VSI_FDIR)
4487 i40e_fdir_filter_restore(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004488 i40e_service_event_schedule(pf);
4489
4490 return 0;
4491}
4492
4493/**
4494 * i40e_vsi_reinit_locked - Reset the VSI
4495 * @vsi: the VSI being configured
4496 *
4497 * Rebuild the ring structs after some configuration
4498 * has changed, e.g. MTU size.
4499 **/
4500static void i40e_vsi_reinit_locked(struct i40e_vsi *vsi)
4501{
4502 struct i40e_pf *pf = vsi->back;
4503
4504 WARN_ON(in_interrupt());
4505 while (test_and_set_bit(__I40E_CONFIG_BUSY, &pf->state))
4506 usleep_range(1000, 2000);
4507 i40e_down(vsi);
4508
4509 /* Give a VF some time to respond to the reset. The
4510 * two second wait is based upon the watchdog cycle in
4511 * the VF driver.
4512 */
4513 if (vsi->type == I40E_VSI_SRIOV)
4514 msleep(2000);
4515 i40e_up(vsi);
4516 clear_bit(__I40E_CONFIG_BUSY, &pf->state);
4517}
4518
4519/**
4520 * i40e_up - Bring the connection back up after being down
4521 * @vsi: the VSI being configured
4522 **/
4523int i40e_up(struct i40e_vsi *vsi)
4524{
4525 int err;
4526
4527 err = i40e_vsi_configure(vsi);
4528 if (!err)
4529 err = i40e_up_complete(vsi);
4530
4531 return err;
4532}
4533
4534/**
4535 * i40e_down - Shutdown the connection processing
4536 * @vsi: the VSI being stopped
4537 **/
4538void i40e_down(struct i40e_vsi *vsi)
4539{
4540 int i;
4541
4542 /* It is assumed that the caller of this function
4543 * sets the vsi->state __I40E_DOWN bit.
4544 */
4545 if (vsi->netdev) {
4546 netif_carrier_off(vsi->netdev);
4547 netif_tx_disable(vsi->netdev);
4548 }
4549 i40e_vsi_disable_irq(vsi);
4550 i40e_vsi_control_rings(vsi, false);
4551 i40e_napi_disable_all(vsi);
4552
4553 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00004554 i40e_clean_tx_ring(vsi->tx_rings[i]);
4555 i40e_clean_rx_ring(vsi->rx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004556 }
4557}
4558
4559/**
4560 * i40e_setup_tc - configure multiple traffic classes
4561 * @netdev: net device to configure
4562 * @tc: number of traffic classes to enable
4563 **/
Vasu Dev38e00432014-08-01 13:27:03 -07004564#ifdef I40E_FCOE
4565int i40e_setup_tc(struct net_device *netdev, u8 tc)
4566#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004567static int i40e_setup_tc(struct net_device *netdev, u8 tc)
Vasu Dev38e00432014-08-01 13:27:03 -07004568#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004569{
4570 struct i40e_netdev_priv *np = netdev_priv(netdev);
4571 struct i40e_vsi *vsi = np->vsi;
4572 struct i40e_pf *pf = vsi->back;
4573 u8 enabled_tc = 0;
4574 int ret = -EINVAL;
4575 int i;
4576
4577 /* Check if DCB enabled to continue */
4578 if (!(pf->flags & I40E_FLAG_DCB_ENABLED)) {
4579 netdev_info(netdev, "DCB is not enabled for adapter\n");
4580 goto exit;
4581 }
4582
4583 /* Check if MFP enabled */
4584 if (pf->flags & I40E_FLAG_MFP_ENABLED) {
4585 netdev_info(netdev, "Configuring TC not supported in MFP mode\n");
4586 goto exit;
4587 }
4588
4589 /* Check whether tc count is within enabled limit */
4590 if (tc > i40e_pf_get_num_tc(pf)) {
4591 netdev_info(netdev, "TC count greater than enabled on link for adapter\n");
4592 goto exit;
4593 }
4594
4595 /* Generate TC map for number of tc requested */
4596 for (i = 0; i < tc; i++)
4597 enabled_tc |= (1 << i);
4598
4599 /* Requesting same TC configuration as already enabled */
4600 if (enabled_tc == vsi->tc_config.enabled_tc)
4601 return 0;
4602
4603 /* Quiesce VSI queues */
4604 i40e_quiesce_vsi(vsi);
4605
4606 /* Configure VSI for enabled TCs */
4607 ret = i40e_vsi_config_tc(vsi, enabled_tc);
4608 if (ret) {
4609 netdev_info(netdev, "Failed configuring TC for VSI seid=%d\n",
4610 vsi->seid);
4611 goto exit;
4612 }
4613
4614 /* Unquiesce VSI */
4615 i40e_unquiesce_vsi(vsi);
4616
4617exit:
4618 return ret;
4619}
4620
4621/**
4622 * i40e_open - Called when a network interface is made active
4623 * @netdev: network interface device structure
4624 *
4625 * The open entry point is called when a network interface is made
4626 * active by the system (IFF_UP). At this point all resources needed
4627 * for transmit and receive operations are allocated, the interrupt
4628 * handler is registered with the OS, the netdev watchdog subtask is
4629 * enabled, and the stack is notified that the interface is ready.
4630 *
4631 * Returns 0 on success, negative value on failure
4632 **/
Vasu Dev38e00432014-08-01 13:27:03 -07004633#ifdef I40E_FCOE
4634int i40e_open(struct net_device *netdev)
4635#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004636static int i40e_open(struct net_device *netdev)
Vasu Dev38e00432014-08-01 13:27:03 -07004637#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004638{
4639 struct i40e_netdev_priv *np = netdev_priv(netdev);
4640 struct i40e_vsi *vsi = np->vsi;
4641 struct i40e_pf *pf = vsi->back;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004642 int err;
4643
Shannon Nelson4eb3f762014-03-06 08:59:58 +00004644 /* disallow open during test or if eeprom is broken */
4645 if (test_bit(__I40E_TESTING, &pf->state) ||
4646 test_bit(__I40E_BAD_EEPROM, &pf->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004647 return -EBUSY;
4648
4649 netif_carrier_off(netdev);
4650
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00004651 err = i40e_vsi_open(vsi);
4652 if (err)
4653 return err;
4654
Jesse Brandeburg059dab62014-04-01 09:07:20 +00004655 /* configure global TSO hardware offload settings */
4656 wr32(&pf->hw, I40E_GLLAN_TSOMSK_F, be32_to_cpu(TCP_FLAG_PSH |
4657 TCP_FLAG_FIN) >> 16);
4658 wr32(&pf->hw, I40E_GLLAN_TSOMSK_M, be32_to_cpu(TCP_FLAG_PSH |
4659 TCP_FLAG_FIN |
4660 TCP_FLAG_CWR) >> 16);
4661 wr32(&pf->hw, I40E_GLLAN_TSOMSK_L, be32_to_cpu(TCP_FLAG_CWR) >> 16);
4662
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00004663#ifdef CONFIG_I40E_VXLAN
4664 vxlan_get_rx_port(netdev);
4665#endif
4666
4667 return 0;
4668}
4669
4670/**
4671 * i40e_vsi_open -
4672 * @vsi: the VSI to open
4673 *
4674 * Finish initialization of the VSI.
4675 *
4676 * Returns 0 on success, negative value on failure
4677 **/
4678int i40e_vsi_open(struct i40e_vsi *vsi)
4679{
4680 struct i40e_pf *pf = vsi->back;
4681 char int_name[IFNAMSIZ];
4682 int err;
4683
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004684 /* allocate descriptors */
4685 err = i40e_vsi_setup_tx_resources(vsi);
4686 if (err)
4687 goto err_setup_tx;
4688 err = i40e_vsi_setup_rx_resources(vsi);
4689 if (err)
4690 goto err_setup_rx;
4691
4692 err = i40e_vsi_configure(vsi);
4693 if (err)
4694 goto err_setup_rx;
4695
Shannon Nelsonc22e3c62014-03-14 07:32:25 +00004696 if (vsi->netdev) {
4697 snprintf(int_name, sizeof(int_name) - 1, "%s-%s",
4698 dev_driver_string(&pf->pdev->dev), vsi->netdev->name);
4699 err = i40e_vsi_request_irq(vsi, int_name);
4700 if (err)
4701 goto err_setup_rx;
4702
4703 /* Notify the stack of the actual queue counts. */
4704 err = netif_set_real_num_tx_queues(vsi->netdev,
4705 vsi->num_queue_pairs);
4706 if (err)
4707 goto err_set_queues;
4708
4709 err = netif_set_real_num_rx_queues(vsi->netdev,
4710 vsi->num_queue_pairs);
4711 if (err)
4712 goto err_set_queues;
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00004713
4714 } else if (vsi->type == I40E_VSI_FDIR) {
4715 snprintf(int_name, sizeof(int_name) - 1, "%s-fdir",
4716 dev_driver_string(&pf->pdev->dev));
4717 err = i40e_vsi_request_irq(vsi, int_name);
Shannon Nelsonc22e3c62014-03-14 07:32:25 +00004718 } else {
Jean Sacrence9ccb12014-05-01 14:31:18 +00004719 err = -EINVAL;
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00004720 goto err_setup_rx;
4721 }
Anjali Singhai Jain25946dd2013-11-26 10:49:14 +00004722
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004723 err = i40e_up_complete(vsi);
4724 if (err)
4725 goto err_up_complete;
4726
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004727 return 0;
4728
4729err_up_complete:
4730 i40e_down(vsi);
Anjali Singhai Jain25946dd2013-11-26 10:49:14 +00004731err_set_queues:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004732 i40e_vsi_free_irq(vsi);
4733err_setup_rx:
4734 i40e_vsi_free_rx_resources(vsi);
4735err_setup_tx:
4736 i40e_vsi_free_tx_resources(vsi);
4737 if (vsi == pf->vsi[pf->lan_vsi])
4738 i40e_do_reset(pf, (1 << __I40E_PF_RESET_REQUESTED));
4739
4740 return err;
4741}
4742
4743/**
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00004744 * i40e_fdir_filter_exit - Cleans up the Flow Director accounting
4745 * @pf: Pointer to pf
4746 *
4747 * This function destroys the hlist where all the Flow Director
4748 * filters were saved.
4749 **/
4750static void i40e_fdir_filter_exit(struct i40e_pf *pf)
4751{
4752 struct i40e_fdir_filter *filter;
4753 struct hlist_node *node2;
4754
4755 hlist_for_each_entry_safe(filter, node2,
4756 &pf->fdir_filter_list, fdir_node) {
4757 hlist_del(&filter->fdir_node);
4758 kfree(filter);
4759 }
4760 pf->fdir_pf_active_filters = 0;
4761}
4762
4763/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004764 * i40e_close - Disables a network interface
4765 * @netdev: network interface device structure
4766 *
4767 * The close entry point is called when an interface is de-activated
4768 * by the OS. The hardware is still under the driver's control, but
4769 * this netdev interface is disabled.
4770 *
4771 * Returns 0, this is not allowed to fail
4772 **/
Vasu Dev38e00432014-08-01 13:27:03 -07004773#ifdef I40E_FCOE
4774int i40e_close(struct net_device *netdev)
4775#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004776static int i40e_close(struct net_device *netdev)
Vasu Dev38e00432014-08-01 13:27:03 -07004777#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004778{
4779 struct i40e_netdev_priv *np = netdev_priv(netdev);
4780 struct i40e_vsi *vsi = np->vsi;
4781
Shannon Nelson90ef8d42014-03-14 07:32:26 +00004782 i40e_vsi_close(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004783
4784 return 0;
4785}
4786
4787/**
4788 * i40e_do_reset - Start a PF or Core Reset sequence
4789 * @pf: board private structure
4790 * @reset_flags: which reset is requested
4791 *
4792 * The essential difference in resets is that the PF Reset
4793 * doesn't clear the packet buffers, doesn't reset the PE
4794 * firmware, and doesn't bother the other PFs on the chip.
4795 **/
4796void i40e_do_reset(struct i40e_pf *pf, u32 reset_flags)
4797{
4798 u32 val;
4799
4800 WARN_ON(in_interrupt());
4801
Mitch Williams263fc482014-04-23 04:50:11 +00004802 if (i40e_check_asq_alive(&pf->hw))
4803 i40e_vc_notify_reset(pf);
4804
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004805 /* do the biggest reset indicated */
4806 if (reset_flags & (1 << __I40E_GLOBAL_RESET_REQUESTED)) {
4807
4808 /* Request a Global Reset
4809 *
4810 * This will start the chip's countdown to the actual full
4811 * chip reset event, and a warning interrupt to be sent
4812 * to all PFs, including the requestor. Our handler
4813 * for the warning interrupt will deal with the shutdown
4814 * and recovery of the switch setup.
4815 */
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00004816 dev_dbg(&pf->pdev->dev, "GlobalR requested\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004817 val = rd32(&pf->hw, I40E_GLGEN_RTRIG);
4818 val |= I40E_GLGEN_RTRIG_GLOBR_MASK;
4819 wr32(&pf->hw, I40E_GLGEN_RTRIG, val);
4820
4821 } else if (reset_flags & (1 << __I40E_CORE_RESET_REQUESTED)) {
4822
4823 /* Request a Core Reset
4824 *
4825 * Same as Global Reset, except does *not* include the MAC/PHY
4826 */
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00004827 dev_dbg(&pf->pdev->dev, "CoreR requested\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004828 val = rd32(&pf->hw, I40E_GLGEN_RTRIG);
4829 val |= I40E_GLGEN_RTRIG_CORER_MASK;
4830 wr32(&pf->hw, I40E_GLGEN_RTRIG, val);
4831 i40e_flush(&pf->hw);
4832
Shannon Nelson7823fe32013-11-16 10:00:45 +00004833 } else if (reset_flags & (1 << __I40E_EMP_RESET_REQUESTED)) {
4834
4835 /* Request a Firmware Reset
4836 *
4837 * Same as Global reset, plus restarting the
4838 * embedded firmware engine.
4839 */
4840 /* enable EMP Reset */
4841 val = rd32(&pf->hw, I40E_GLGEN_RSTENA_EMP);
4842 val |= I40E_GLGEN_RSTENA_EMP_EMP_RST_ENA_MASK;
4843 wr32(&pf->hw, I40E_GLGEN_RSTENA_EMP, val);
4844
4845 /* force the reset */
4846 val = rd32(&pf->hw, I40E_GLGEN_RTRIG);
4847 val |= I40E_GLGEN_RTRIG_EMPFWR_MASK;
4848 wr32(&pf->hw, I40E_GLGEN_RTRIG, val);
4849 i40e_flush(&pf->hw);
4850
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004851 } else if (reset_flags & (1 << __I40E_PF_RESET_REQUESTED)) {
4852
4853 /* Request a PF Reset
4854 *
4855 * Resets only the PF-specific registers
4856 *
4857 * This goes directly to the tear-down and rebuild of
4858 * the switch, since we need to do all the recovery as
4859 * for the Core Reset.
4860 */
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00004861 dev_dbg(&pf->pdev->dev, "PFR requested\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004862 i40e_handle_reset_warning(pf);
4863
4864 } else if (reset_flags & (1 << __I40E_REINIT_REQUESTED)) {
4865 int v;
4866
4867 /* Find the VSI(s) that requested a re-init */
4868 dev_info(&pf->pdev->dev,
4869 "VSI reinit requested\n");
Mitch Williams505682c2014-05-20 08:01:37 +00004870 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004871 struct i40e_vsi *vsi = pf->vsi[v];
4872 if (vsi != NULL &&
4873 test_bit(__I40E_REINIT_REQUESTED, &vsi->state)) {
4874 i40e_vsi_reinit_locked(pf->vsi[v]);
4875 clear_bit(__I40E_REINIT_REQUESTED, &vsi->state);
4876 }
4877 }
4878
4879 /* no further action needed, so return now */
4880 return;
Neerav Parikhb5d06f02014-06-03 23:50:17 +00004881 } else if (reset_flags & (1 << __I40E_DOWN_REQUESTED)) {
4882 int v;
4883
4884 /* Find the VSI(s) that needs to be brought down */
4885 dev_info(&pf->pdev->dev, "VSI down requested\n");
4886 for (v = 0; v < pf->num_alloc_vsi; v++) {
4887 struct i40e_vsi *vsi = pf->vsi[v];
4888 if (vsi != NULL &&
4889 test_bit(__I40E_DOWN_REQUESTED, &vsi->state)) {
4890 set_bit(__I40E_DOWN, &vsi->state);
4891 i40e_down(vsi);
4892 clear_bit(__I40E_DOWN_REQUESTED, &vsi->state);
4893 }
4894 }
4895
4896 /* no further action needed, so return now */
4897 return;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004898 } else {
4899 dev_info(&pf->pdev->dev,
4900 "bad reset request 0x%08x\n", reset_flags);
4901 return;
4902 }
4903}
4904
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004905#ifdef CONFIG_I40E_DCB
4906/**
4907 * i40e_dcb_need_reconfig - Check if DCB needs reconfig
4908 * @pf: board private structure
4909 * @old_cfg: current DCB config
4910 * @new_cfg: new DCB config
4911 **/
4912bool i40e_dcb_need_reconfig(struct i40e_pf *pf,
4913 struct i40e_dcbx_config *old_cfg,
4914 struct i40e_dcbx_config *new_cfg)
4915{
4916 bool need_reconfig = false;
4917
4918 /* Check if ETS configuration has changed */
4919 if (memcmp(&new_cfg->etscfg,
4920 &old_cfg->etscfg,
4921 sizeof(new_cfg->etscfg))) {
4922 /* If Priority Table has changed reconfig is needed */
4923 if (memcmp(&new_cfg->etscfg.prioritytable,
4924 &old_cfg->etscfg.prioritytable,
4925 sizeof(new_cfg->etscfg.prioritytable))) {
4926 need_reconfig = true;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00004927 dev_dbg(&pf->pdev->dev, "ETS UP2TC changed.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004928 }
4929
4930 if (memcmp(&new_cfg->etscfg.tcbwtable,
4931 &old_cfg->etscfg.tcbwtable,
4932 sizeof(new_cfg->etscfg.tcbwtable)))
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00004933 dev_dbg(&pf->pdev->dev, "ETS TC BW Table changed.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004934
4935 if (memcmp(&new_cfg->etscfg.tsatable,
4936 &old_cfg->etscfg.tsatable,
4937 sizeof(new_cfg->etscfg.tsatable)))
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00004938 dev_dbg(&pf->pdev->dev, "ETS TSA Table changed.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004939 }
4940
4941 /* Check if PFC configuration has changed */
4942 if (memcmp(&new_cfg->pfc,
4943 &old_cfg->pfc,
4944 sizeof(new_cfg->pfc))) {
4945 need_reconfig = true;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00004946 dev_dbg(&pf->pdev->dev, "PFC config change detected.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004947 }
4948
4949 /* Check if APP Table has changed */
4950 if (memcmp(&new_cfg->app,
4951 &old_cfg->app,
Dave Jones3d9667a2014-01-27 23:11:09 -05004952 sizeof(new_cfg->app))) {
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004953 need_reconfig = true;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00004954 dev_dbg(&pf->pdev->dev, "APP Table change detected.\n");
Dave Jones3d9667a2014-01-27 23:11:09 -05004955 }
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004956
4957 return need_reconfig;
4958}
4959
4960/**
4961 * i40e_handle_lldp_event - Handle LLDP Change MIB event
4962 * @pf: board private structure
4963 * @e: event info posted on ARQ
4964 **/
4965static int i40e_handle_lldp_event(struct i40e_pf *pf,
4966 struct i40e_arq_event_info *e)
4967{
4968 struct i40e_aqc_lldp_get_mib *mib =
4969 (struct i40e_aqc_lldp_get_mib *)&e->desc.params.raw;
4970 struct i40e_hw *hw = &pf->hw;
4971 struct i40e_dcbx_config *dcbx_cfg = &hw->local_dcbx_config;
4972 struct i40e_dcbx_config tmp_dcbx_cfg;
4973 bool need_reconfig = false;
4974 int ret = 0;
4975 u8 type;
4976
Neerav Parikh4d9b6042014-05-22 06:31:51 +00004977 /* Not DCB capable or capability disabled */
4978 if (!(pf->flags & I40E_FLAG_DCB_CAPABLE))
4979 return ret;
4980
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004981 /* Ignore if event is not for Nearest Bridge */
4982 type = ((mib->type >> I40E_AQ_LLDP_BRIDGE_TYPE_SHIFT)
4983 & I40E_AQ_LLDP_BRIDGE_TYPE_MASK);
4984 if (type != I40E_AQ_LLDP_BRIDGE_TYPE_NEAREST_BRIDGE)
4985 return ret;
4986
4987 /* Check MIB Type and return if event for Remote MIB update */
4988 type = mib->type & I40E_AQ_LLDP_MIB_TYPE_MASK;
4989 if (type == I40E_AQ_LLDP_MIB_REMOTE) {
4990 /* Update the remote cached instance and return */
4991 ret = i40e_aq_get_dcb_config(hw, I40E_AQ_LLDP_MIB_REMOTE,
4992 I40E_AQ_LLDP_BRIDGE_TYPE_NEAREST_BRIDGE,
4993 &hw->remote_dcbx_config);
4994 goto exit;
4995 }
4996
4997 /* Convert/store the DCBX data from LLDPDU temporarily */
4998 memset(&tmp_dcbx_cfg, 0, sizeof(tmp_dcbx_cfg));
4999 ret = i40e_lldp_to_dcb_config(e->msg_buf, &tmp_dcbx_cfg);
5000 if (ret) {
5001 /* Error in LLDPDU parsing return */
5002 dev_info(&pf->pdev->dev, "Failed parsing LLDPDU from event buffer\n");
5003 goto exit;
5004 }
5005
5006 /* No change detected in DCBX configs */
5007 if (!memcmp(&tmp_dcbx_cfg, dcbx_cfg, sizeof(tmp_dcbx_cfg))) {
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005008 dev_dbg(&pf->pdev->dev, "No change detected in DCBX configuration.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005009 goto exit;
5010 }
5011
5012 need_reconfig = i40e_dcb_need_reconfig(pf, dcbx_cfg, &tmp_dcbx_cfg);
5013
5014 i40e_dcbnl_flush_apps(pf, &tmp_dcbx_cfg);
5015
5016 /* Overwrite the new configuration */
5017 *dcbx_cfg = tmp_dcbx_cfg;
5018
5019 if (!need_reconfig)
5020 goto exit;
5021
Neerav Parikh4d9b6042014-05-22 06:31:51 +00005022 /* Enable DCB tagging only when more than one TC */
5023 if (i40e_dcb_get_num_tc(dcbx_cfg) > 1)
5024 pf->flags |= I40E_FLAG_DCB_ENABLED;
5025 else
5026 pf->flags &= ~I40E_FLAG_DCB_ENABLED;
5027
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005028 /* Reconfiguration needed quiesce all VSIs */
5029 i40e_pf_quiesce_all_vsi(pf);
5030
5031 /* Changes in configuration update VEB/VSI */
5032 i40e_dcb_reconfigure(pf);
5033
5034 i40e_pf_unquiesce_all_vsi(pf);
5035exit:
5036 return ret;
5037}
5038#endif /* CONFIG_I40E_DCB */
5039
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005040/**
Anjali Singhai Jain23326182013-11-26 10:49:22 +00005041 * i40e_do_reset_safe - Protected reset path for userland calls.
5042 * @pf: board private structure
5043 * @reset_flags: which reset is requested
5044 *
5045 **/
5046void i40e_do_reset_safe(struct i40e_pf *pf, u32 reset_flags)
5047{
5048 rtnl_lock();
5049 i40e_do_reset(pf, reset_flags);
5050 rtnl_unlock();
5051}
5052
5053/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005054 * i40e_handle_lan_overflow_event - Handler for LAN queue overflow event
5055 * @pf: board private structure
5056 * @e: event info posted on ARQ
5057 *
5058 * Handler for LAN Queue Overflow Event generated by the firmware for PF
5059 * and VF queues
5060 **/
5061static void i40e_handle_lan_overflow_event(struct i40e_pf *pf,
5062 struct i40e_arq_event_info *e)
5063{
5064 struct i40e_aqc_lan_overflow *data =
5065 (struct i40e_aqc_lan_overflow *)&e->desc.params.raw;
5066 u32 queue = le32_to_cpu(data->prtdcb_rupto);
5067 u32 qtx_ctl = le32_to_cpu(data->otx_ctl);
5068 struct i40e_hw *hw = &pf->hw;
5069 struct i40e_vf *vf;
5070 u16 vf_id;
5071
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005072 dev_dbg(&pf->pdev->dev, "overflow Rx Queue Number = %d QTX_CTL=0x%08x\n",
5073 queue, qtx_ctl);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005074
5075 /* Queue belongs to VF, find the VF and issue VF reset */
5076 if (((qtx_ctl & I40E_QTX_CTL_PFVF_Q_MASK)
5077 >> I40E_QTX_CTL_PFVF_Q_SHIFT) == I40E_QTX_CTL_VF_QUEUE) {
5078 vf_id = (u16)((qtx_ctl & I40E_QTX_CTL_VFVM_INDX_MASK)
5079 >> I40E_QTX_CTL_VFVM_INDX_SHIFT);
5080 vf_id -= hw->func_caps.vf_base_id;
5081 vf = &pf->vf[vf_id];
5082 i40e_vc_notify_vf_reset(vf);
5083 /* Allow VF to process pending reset notification */
5084 msleep(20);
5085 i40e_reset_vf(vf, false);
5086 }
5087}
5088
5089/**
5090 * i40e_service_event_complete - Finish up the service event
5091 * @pf: board private structure
5092 **/
5093static void i40e_service_event_complete(struct i40e_pf *pf)
5094{
5095 BUG_ON(!test_bit(__I40E_SERVICE_SCHED, &pf->state));
5096
5097 /* flush memory to make sure state is correct before next watchog */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01005098 smp_mb__before_atomic();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005099 clear_bit(__I40E_SERVICE_SCHED, &pf->state);
5100}
5101
5102/**
Anjali Singhai Jain12957382014-06-04 04:22:47 +00005103 * i40e_get_cur_guaranteed_fd_count - Get the consumed guaranteed FD filters
5104 * @pf: board private structure
5105 **/
5106int i40e_get_cur_guaranteed_fd_count(struct i40e_pf *pf)
5107{
5108 int val, fcnt_prog;
5109
5110 val = rd32(&pf->hw, I40E_PFQF_FDSTAT);
5111 fcnt_prog = (val & I40E_PFQF_FDSTAT_GUARANT_CNT_MASK);
5112 return fcnt_prog;
5113}
5114
5115/**
5116 * i40e_get_current_fd_count - Get the count of total FD filters programmed
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005117 * @pf: board private structure
5118 **/
5119int i40e_get_current_fd_count(struct i40e_pf *pf)
5120{
5121 int val, fcnt_prog;
5122 val = rd32(&pf->hw, I40E_PFQF_FDSTAT);
5123 fcnt_prog = (val & I40E_PFQF_FDSTAT_GUARANT_CNT_MASK) +
5124 ((val & I40E_PFQF_FDSTAT_BEST_CNT_MASK) >>
5125 I40E_PFQF_FDSTAT_BEST_CNT_SHIFT);
5126 return fcnt_prog;
5127}
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005128/**
5129 * i40e_fdir_check_and_reenable - Function to reenabe FD ATR or SB if disabled
5130 * @pf: board private structure
5131 **/
5132void i40e_fdir_check_and_reenable(struct i40e_pf *pf)
5133{
5134 u32 fcnt_prog, fcnt_avail;
5135
5136 /* Check if, FD SB or ATR was auto disabled and if there is enough room
5137 * to re-enable
5138 */
5139 if ((pf->flags & I40E_FLAG_FD_ATR_ENABLED) &&
5140 (pf->flags & I40E_FLAG_FD_SB_ENABLED))
5141 return;
Anjali Singhai Jain12957382014-06-04 04:22:47 +00005142 fcnt_prog = i40e_get_cur_guaranteed_fd_count(pf);
5143 fcnt_avail = pf->fdir_pf_filter_count;
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005144 if (fcnt_prog < (fcnt_avail - I40E_FDIR_BUFFER_HEAD_ROOM)) {
5145 if ((pf->flags & I40E_FLAG_FD_SB_ENABLED) &&
5146 (pf->auto_disable_flags & I40E_FLAG_FD_SB_ENABLED)) {
5147 pf->auto_disable_flags &= ~I40E_FLAG_FD_SB_ENABLED;
5148 dev_info(&pf->pdev->dev, "FD Sideband/ntuple is being enabled since we have space in the table now\n");
5149 }
5150 }
5151 /* Wait for some more space to be available to turn on ATR */
5152 if (fcnt_prog < (fcnt_avail - I40E_FDIR_BUFFER_HEAD_ROOM * 2)) {
5153 if ((pf->flags & I40E_FLAG_FD_ATR_ENABLED) &&
5154 (pf->auto_disable_flags & I40E_FLAG_FD_ATR_ENABLED)) {
5155 pf->auto_disable_flags &= ~I40E_FLAG_FD_ATR_ENABLED;
5156 dev_info(&pf->pdev->dev, "ATR is being enabled since we have space in the table now\n");
5157 }
5158 }
5159}
5160
5161/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005162 * i40e_fdir_reinit_subtask - Worker thread to reinit FDIR filter table
5163 * @pf: board private structure
5164 **/
5165static void i40e_fdir_reinit_subtask(struct i40e_pf *pf)
5166{
5167 if (!(pf->flags & I40E_FLAG_FDIR_REQUIRES_REINIT))
5168 return;
5169
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005170 /* if interface is down do nothing */
5171 if (test_bit(__I40E_DOWN, &pf->state))
5172 return;
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005173 i40e_fdir_check_and_reenable(pf);
5174
5175 if ((pf->flags & I40E_FLAG_FD_ATR_ENABLED) &&
5176 (pf->flags & I40E_FLAG_FD_SB_ENABLED))
5177 pf->flags &= ~I40E_FLAG_FDIR_REQUIRES_REINIT;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005178}
5179
5180/**
5181 * i40e_vsi_link_event - notify VSI of a link event
5182 * @vsi: vsi to be notified
5183 * @link_up: link up or down
5184 **/
5185static void i40e_vsi_link_event(struct i40e_vsi *vsi, bool link_up)
5186{
5187 if (!vsi)
5188 return;
5189
5190 switch (vsi->type) {
5191 case I40E_VSI_MAIN:
Vasu Dev38e00432014-08-01 13:27:03 -07005192#ifdef I40E_FCOE
5193 case I40E_VSI_FCOE:
5194#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005195 if (!vsi->netdev || !vsi->netdev_registered)
5196 break;
5197
5198 if (link_up) {
5199 netif_carrier_on(vsi->netdev);
5200 netif_tx_wake_all_queues(vsi->netdev);
5201 } else {
5202 netif_carrier_off(vsi->netdev);
5203 netif_tx_stop_all_queues(vsi->netdev);
5204 }
5205 break;
5206
5207 case I40E_VSI_SRIOV:
5208 break;
5209
5210 case I40E_VSI_VMDQ2:
5211 case I40E_VSI_CTRL:
5212 case I40E_VSI_MIRROR:
5213 default:
5214 /* there is no notification for other VSIs */
5215 break;
5216 }
5217}
5218
5219/**
5220 * i40e_veb_link_event - notify elements on the veb of a link event
5221 * @veb: veb to be notified
5222 * @link_up: link up or down
5223 **/
5224static void i40e_veb_link_event(struct i40e_veb *veb, bool link_up)
5225{
5226 struct i40e_pf *pf;
5227 int i;
5228
5229 if (!veb || !veb->pf)
5230 return;
5231 pf = veb->pf;
5232
5233 /* depth first... */
5234 for (i = 0; i < I40E_MAX_VEB; i++)
5235 if (pf->veb[i] && (pf->veb[i]->uplink_seid == veb->seid))
5236 i40e_veb_link_event(pf->veb[i], link_up);
5237
5238 /* ... now the local VSIs */
Mitch Williams505682c2014-05-20 08:01:37 +00005239 for (i = 0; i < pf->num_alloc_vsi; i++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005240 if (pf->vsi[i] && (pf->vsi[i]->uplink_seid == veb->seid))
5241 i40e_vsi_link_event(pf->vsi[i], link_up);
5242}
5243
5244/**
5245 * i40e_link_event - Update netif_carrier status
5246 * @pf: board private structure
5247 **/
5248static void i40e_link_event(struct i40e_pf *pf)
5249{
5250 bool new_link, old_link;
5251
5252 new_link = (pf->hw.phy.link_info.link_info & I40E_AQ_LINK_UP);
5253 old_link = (pf->hw.phy.link_info_old.link_info & I40E_AQ_LINK_UP);
5254
5255 if (new_link == old_link)
5256 return;
Anjali Singhai6d779b42013-09-28 06:00:02 +00005257 if (!test_bit(__I40E_DOWN, &pf->vsi[pf->lan_vsi]->state))
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005258 i40e_print_link_message(pf->vsi[pf->lan_vsi], new_link);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005259
5260 /* Notify the base of the switch tree connected to
5261 * the link. Floating VEBs are not notified.
5262 */
5263 if (pf->lan_veb != I40E_NO_VEB && pf->veb[pf->lan_veb])
5264 i40e_veb_link_event(pf->veb[pf->lan_veb], new_link);
5265 else
5266 i40e_vsi_link_event(pf->vsi[pf->lan_vsi], new_link);
5267
5268 if (pf->vf)
5269 i40e_vc_notify_link_state(pf);
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00005270
5271 if (pf->flags & I40E_FLAG_PTP)
5272 i40e_ptp_set_increment(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005273}
5274
5275/**
5276 * i40e_check_hang_subtask - Check for hung queues and dropped interrupts
5277 * @pf: board private structure
5278 *
5279 * Set the per-queue flags to request a check for stuck queues in the irq
5280 * clean functions, then force interrupts to be sure the irq clean is called.
5281 **/
5282static void i40e_check_hang_subtask(struct i40e_pf *pf)
5283{
5284 int i, v;
5285
5286 /* If we're down or resetting, just bail */
5287 if (test_bit(__I40E_CONFIG_BUSY, &pf->state))
5288 return;
5289
5290 /* for each VSI/netdev
5291 * for each Tx queue
5292 * set the check flag
5293 * for each q_vector
5294 * force an interrupt
5295 */
Mitch Williams505682c2014-05-20 08:01:37 +00005296 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005297 struct i40e_vsi *vsi = pf->vsi[v];
5298 int armed = 0;
5299
5300 if (!pf->vsi[v] ||
5301 test_bit(__I40E_DOWN, &vsi->state) ||
5302 (vsi->netdev && !netif_carrier_ok(vsi->netdev)))
5303 continue;
5304
5305 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00005306 set_check_for_tx_hang(vsi->tx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005307 if (test_bit(__I40E_HANG_CHECK_ARMED,
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00005308 &vsi->tx_rings[i]->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005309 armed++;
5310 }
5311
5312 if (armed) {
5313 if (!(pf->flags & I40E_FLAG_MSIX_ENABLED)) {
5314 wr32(&vsi->back->hw, I40E_PFINT_DYN_CTL0,
5315 (I40E_PFINT_DYN_CTL0_INTENA_MASK |
5316 I40E_PFINT_DYN_CTL0_SWINT_TRIG_MASK));
5317 } else {
5318 u16 vec = vsi->base_vector - 1;
5319 u32 val = (I40E_PFINT_DYN_CTLN_INTENA_MASK |
5320 I40E_PFINT_DYN_CTLN_SWINT_TRIG_MASK);
5321 for (i = 0; i < vsi->num_q_vectors; i++, vec++)
5322 wr32(&vsi->back->hw,
5323 I40E_PFINT_DYN_CTLN(vec), val);
5324 }
5325 i40e_flush(&vsi->back->hw);
5326 }
5327 }
5328}
5329
5330/**
5331 * i40e_watchdog_subtask - Check and bring link up
5332 * @pf: board private structure
5333 **/
5334static void i40e_watchdog_subtask(struct i40e_pf *pf)
5335{
5336 int i;
5337
5338 /* if interface is down do nothing */
5339 if (test_bit(__I40E_DOWN, &pf->state) ||
5340 test_bit(__I40E_CONFIG_BUSY, &pf->state))
5341 return;
5342
5343 /* Update the stats for active netdevs so the network stack
5344 * can look at updated numbers whenever it cares to
5345 */
Mitch Williams505682c2014-05-20 08:01:37 +00005346 for (i = 0; i < pf->num_alloc_vsi; i++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005347 if (pf->vsi[i] && pf->vsi[i]->netdev)
5348 i40e_update_stats(pf->vsi[i]);
5349
5350 /* Update the stats for the active switching components */
5351 for (i = 0; i < I40E_MAX_VEB; i++)
5352 if (pf->veb[i])
5353 i40e_update_veb_stats(pf->veb[i]);
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00005354
5355 i40e_ptp_rx_hang(pf->vsi[pf->lan_vsi]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005356}
5357
5358/**
5359 * i40e_reset_subtask - Set up for resetting the device and driver
5360 * @pf: board private structure
5361 **/
5362static void i40e_reset_subtask(struct i40e_pf *pf)
5363{
5364 u32 reset_flags = 0;
5365
Anjali Singhai Jain23326182013-11-26 10:49:22 +00005366 rtnl_lock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005367 if (test_bit(__I40E_REINIT_REQUESTED, &pf->state)) {
5368 reset_flags |= (1 << __I40E_REINIT_REQUESTED);
5369 clear_bit(__I40E_REINIT_REQUESTED, &pf->state);
5370 }
5371 if (test_bit(__I40E_PF_RESET_REQUESTED, &pf->state)) {
5372 reset_flags |= (1 << __I40E_PF_RESET_REQUESTED);
5373 clear_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
5374 }
5375 if (test_bit(__I40E_CORE_RESET_REQUESTED, &pf->state)) {
5376 reset_flags |= (1 << __I40E_CORE_RESET_REQUESTED);
5377 clear_bit(__I40E_CORE_RESET_REQUESTED, &pf->state);
5378 }
5379 if (test_bit(__I40E_GLOBAL_RESET_REQUESTED, &pf->state)) {
5380 reset_flags |= (1 << __I40E_GLOBAL_RESET_REQUESTED);
5381 clear_bit(__I40E_GLOBAL_RESET_REQUESTED, &pf->state);
5382 }
Neerav Parikhb5d06f02014-06-03 23:50:17 +00005383 if (test_bit(__I40E_DOWN_REQUESTED, &pf->state)) {
5384 reset_flags |= (1 << __I40E_DOWN_REQUESTED);
5385 clear_bit(__I40E_DOWN_REQUESTED, &pf->state);
5386 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005387
5388 /* If there's a recovery already waiting, it takes
5389 * precedence before starting a new reset sequence.
5390 */
5391 if (test_bit(__I40E_RESET_INTR_RECEIVED, &pf->state)) {
5392 i40e_handle_reset_warning(pf);
Anjali Singhai Jain23326182013-11-26 10:49:22 +00005393 goto unlock;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005394 }
5395
5396 /* If we're already down or resetting, just bail */
5397 if (reset_flags &&
5398 !test_bit(__I40E_DOWN, &pf->state) &&
5399 !test_bit(__I40E_CONFIG_BUSY, &pf->state))
5400 i40e_do_reset(pf, reset_flags);
Anjali Singhai Jain23326182013-11-26 10:49:22 +00005401
5402unlock:
5403 rtnl_unlock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005404}
5405
5406/**
5407 * i40e_handle_link_event - Handle link event
5408 * @pf: board private structure
5409 * @e: event info posted on ARQ
5410 **/
5411static void i40e_handle_link_event(struct i40e_pf *pf,
5412 struct i40e_arq_event_info *e)
5413{
5414 struct i40e_hw *hw = &pf->hw;
5415 struct i40e_aqc_get_link_status *status =
5416 (struct i40e_aqc_get_link_status *)&e->desc.params.raw;
5417 struct i40e_link_status *hw_link_info = &hw->phy.link_info;
5418
5419 /* save off old link status information */
5420 memcpy(&pf->hw.phy.link_info_old, hw_link_info,
5421 sizeof(pf->hw.phy.link_info_old));
5422
5423 /* update link status */
5424 hw_link_info->phy_type = (enum i40e_aq_phy_type)status->phy_type;
5425 hw_link_info->link_speed = (enum i40e_aq_link_speed)status->link_speed;
5426 hw_link_info->link_info = status->link_info;
5427 hw_link_info->an_info = status->an_info;
5428 hw_link_info->ext_info = status->ext_info;
5429 hw_link_info->lse_enable =
5430 le16_to_cpu(status->command_flags) &
5431 I40E_AQ_LSE_ENABLE;
5432
5433 /* process the event */
5434 i40e_link_event(pf);
5435
5436 /* Do a new status request to re-enable LSE reporting
5437 * and load new status information into the hw struct,
5438 * then see if the status changed while processing the
5439 * initial event.
5440 */
Catherine Sullivan8109e122014-06-04 08:45:24 +00005441 i40e_update_link_info(&pf->hw, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005442 i40e_link_event(pf);
5443}
5444
5445/**
5446 * i40e_clean_adminq_subtask - Clean the AdminQ rings
5447 * @pf: board private structure
5448 **/
5449static void i40e_clean_adminq_subtask(struct i40e_pf *pf)
5450{
5451 struct i40e_arq_event_info event;
5452 struct i40e_hw *hw = &pf->hw;
5453 u16 pending, i = 0;
5454 i40e_status ret;
5455 u16 opcode;
Shannon Nelson86df2422014-05-20 08:01:35 +00005456 u32 oldval;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005457 u32 val;
5458
Shannon Nelson86df2422014-05-20 08:01:35 +00005459 /* check for error indications */
5460 val = rd32(&pf->hw, pf->hw.aq.arq.len);
5461 oldval = val;
5462 if (val & I40E_PF_ARQLEN_ARQVFE_MASK) {
5463 dev_info(&pf->pdev->dev, "ARQ VF Error detected\n");
5464 val &= ~I40E_PF_ARQLEN_ARQVFE_MASK;
5465 }
5466 if (val & I40E_PF_ARQLEN_ARQOVFL_MASK) {
5467 dev_info(&pf->pdev->dev, "ARQ Overflow Error detected\n");
5468 val &= ~I40E_PF_ARQLEN_ARQOVFL_MASK;
5469 }
5470 if (val & I40E_PF_ARQLEN_ARQCRIT_MASK) {
5471 dev_info(&pf->pdev->dev, "ARQ Critical Error detected\n");
5472 val &= ~I40E_PF_ARQLEN_ARQCRIT_MASK;
5473 }
5474 if (oldval != val)
5475 wr32(&pf->hw, pf->hw.aq.arq.len, val);
5476
5477 val = rd32(&pf->hw, pf->hw.aq.asq.len);
5478 oldval = val;
5479 if (val & I40E_PF_ATQLEN_ATQVFE_MASK) {
5480 dev_info(&pf->pdev->dev, "ASQ VF Error detected\n");
5481 val &= ~I40E_PF_ATQLEN_ATQVFE_MASK;
5482 }
5483 if (val & I40E_PF_ATQLEN_ATQOVFL_MASK) {
5484 dev_info(&pf->pdev->dev, "ASQ Overflow Error detected\n");
5485 val &= ~I40E_PF_ATQLEN_ATQOVFL_MASK;
5486 }
5487 if (val & I40E_PF_ATQLEN_ATQCRIT_MASK) {
5488 dev_info(&pf->pdev->dev, "ASQ Critical Error detected\n");
5489 val &= ~I40E_PF_ATQLEN_ATQCRIT_MASK;
5490 }
5491 if (oldval != val)
5492 wr32(&pf->hw, pf->hw.aq.asq.len, val);
5493
Mitch Williams3197ce22013-11-28 06:39:39 +00005494 event.msg_size = I40E_MAX_AQ_BUF_SIZE;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005495 event.msg_buf = kzalloc(event.msg_size, GFP_KERNEL);
5496 if (!event.msg_buf)
5497 return;
5498
5499 do {
Mitch Williams2f019122013-11-28 06:39:33 +00005500 event.msg_size = I40E_MAX_AQ_BUF_SIZE; /* reinit each time */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005501 ret = i40e_clean_arq_element(hw, &event, &pending);
Mitch Williams56497972014-06-04 08:45:18 +00005502 if (ret == I40E_ERR_ADMIN_QUEUE_NO_WORK)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005503 break;
Mitch Williams56497972014-06-04 08:45:18 +00005504 else if (ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005505 dev_info(&pf->pdev->dev, "ARQ event error %d\n", ret);
5506 break;
5507 }
5508
5509 opcode = le16_to_cpu(event.desc.opcode);
5510 switch (opcode) {
5511
5512 case i40e_aqc_opc_get_link_status:
5513 i40e_handle_link_event(pf, &event);
5514 break;
5515 case i40e_aqc_opc_send_msg_to_pf:
5516 ret = i40e_vc_process_vf_msg(pf,
5517 le16_to_cpu(event.desc.retval),
5518 le32_to_cpu(event.desc.cookie_high),
5519 le32_to_cpu(event.desc.cookie_low),
5520 event.msg_buf,
5521 event.msg_size);
5522 break;
5523 case i40e_aqc_opc_lldp_update_mib:
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005524 dev_dbg(&pf->pdev->dev, "ARQ: Update LLDP MIB event received\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005525#ifdef CONFIG_I40E_DCB
5526 rtnl_lock();
5527 ret = i40e_handle_lldp_event(pf, &event);
5528 rtnl_unlock();
5529#endif /* CONFIG_I40E_DCB */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005530 break;
5531 case i40e_aqc_opc_event_lan_overflow:
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005532 dev_dbg(&pf->pdev->dev, "ARQ LAN queue overflow event received\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005533 i40e_handle_lan_overflow_event(pf, &event);
5534 break;
Shannon Nelson0467bc92013-12-18 13:45:58 +00005535 case i40e_aqc_opc_send_msg_to_peer:
5536 dev_info(&pf->pdev->dev, "ARQ: Msg from other pf\n");
5537 break;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005538 default:
5539 dev_info(&pf->pdev->dev,
Shannon Nelson0467bc92013-12-18 13:45:58 +00005540 "ARQ Error: Unknown event 0x%04x received\n",
5541 opcode);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005542 break;
5543 }
5544 } while (pending && (i++ < pf->adminq_work_limit));
5545
5546 clear_bit(__I40E_ADMINQ_EVENT_PENDING, &pf->state);
5547 /* re-enable Admin queue interrupt cause */
5548 val = rd32(hw, I40E_PFINT_ICR0_ENA);
5549 val |= I40E_PFINT_ICR0_ENA_ADMINQ_MASK;
5550 wr32(hw, I40E_PFINT_ICR0_ENA, val);
5551 i40e_flush(hw);
5552
5553 kfree(event.msg_buf);
5554}
5555
5556/**
Shannon Nelson4eb3f762014-03-06 08:59:58 +00005557 * i40e_verify_eeprom - make sure eeprom is good to use
5558 * @pf: board private structure
5559 **/
5560static void i40e_verify_eeprom(struct i40e_pf *pf)
5561{
5562 int err;
5563
5564 err = i40e_diag_eeprom_test(&pf->hw);
5565 if (err) {
5566 /* retry in case of garbage read */
5567 err = i40e_diag_eeprom_test(&pf->hw);
5568 if (err) {
5569 dev_info(&pf->pdev->dev, "eeprom check failed (%d), Tx/Rx traffic disabled\n",
5570 err);
5571 set_bit(__I40E_BAD_EEPROM, &pf->state);
5572 }
5573 }
5574
5575 if (!err && test_bit(__I40E_BAD_EEPROM, &pf->state)) {
5576 dev_info(&pf->pdev->dev, "eeprom check passed, Tx/Rx traffic enabled\n");
5577 clear_bit(__I40E_BAD_EEPROM, &pf->state);
5578 }
5579}
5580
5581/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005582 * i40e_reconstitute_veb - rebuild the VEB and anything connected to it
5583 * @veb: pointer to the VEB instance
5584 *
5585 * This is a recursive function that first builds the attached VSIs then
5586 * recurses in to build the next layer of VEB. We track the connections
5587 * through our own index numbers because the seid's from the HW could
5588 * change across the reset.
5589 **/
5590static int i40e_reconstitute_veb(struct i40e_veb *veb)
5591{
5592 struct i40e_vsi *ctl_vsi = NULL;
5593 struct i40e_pf *pf = veb->pf;
5594 int v, veb_idx;
5595 int ret;
5596
5597 /* build VSI that owns this VEB, temporarily attached to base VEB */
Mitch Williams505682c2014-05-20 08:01:37 +00005598 for (v = 0; v < pf->num_alloc_vsi && !ctl_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005599 if (pf->vsi[v] &&
5600 pf->vsi[v]->veb_idx == veb->idx &&
5601 pf->vsi[v]->flags & I40E_VSI_FLAG_VEB_OWNER) {
5602 ctl_vsi = pf->vsi[v];
5603 break;
5604 }
5605 }
5606 if (!ctl_vsi) {
5607 dev_info(&pf->pdev->dev,
5608 "missing owner VSI for veb_idx %d\n", veb->idx);
5609 ret = -ENOENT;
5610 goto end_reconstitute;
5611 }
5612 if (ctl_vsi != pf->vsi[pf->lan_vsi])
5613 ctl_vsi->uplink_seid = pf->vsi[pf->lan_vsi]->uplink_seid;
5614 ret = i40e_add_vsi(ctl_vsi);
5615 if (ret) {
5616 dev_info(&pf->pdev->dev,
5617 "rebuild of owner VSI failed: %d\n", ret);
5618 goto end_reconstitute;
5619 }
5620 i40e_vsi_reset_stats(ctl_vsi);
5621
5622 /* create the VEB in the switch and move the VSI onto the VEB */
5623 ret = i40e_add_veb(veb, ctl_vsi);
5624 if (ret)
5625 goto end_reconstitute;
5626
5627 /* create the remaining VSIs attached to this VEB */
Mitch Williams505682c2014-05-20 08:01:37 +00005628 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005629 if (!pf->vsi[v] || pf->vsi[v] == ctl_vsi)
5630 continue;
5631
5632 if (pf->vsi[v]->veb_idx == veb->idx) {
5633 struct i40e_vsi *vsi = pf->vsi[v];
5634 vsi->uplink_seid = veb->seid;
5635 ret = i40e_add_vsi(vsi);
5636 if (ret) {
5637 dev_info(&pf->pdev->dev,
5638 "rebuild of vsi_idx %d failed: %d\n",
5639 v, ret);
5640 goto end_reconstitute;
5641 }
5642 i40e_vsi_reset_stats(vsi);
5643 }
5644 }
5645
5646 /* create any VEBs attached to this VEB - RECURSION */
5647 for (veb_idx = 0; veb_idx < I40E_MAX_VEB; veb_idx++) {
5648 if (pf->veb[veb_idx] && pf->veb[veb_idx]->veb_idx == veb->idx) {
5649 pf->veb[veb_idx]->uplink_seid = veb->seid;
5650 ret = i40e_reconstitute_veb(pf->veb[veb_idx]);
5651 if (ret)
5652 break;
5653 }
5654 }
5655
5656end_reconstitute:
5657 return ret;
5658}
5659
5660/**
5661 * i40e_get_capabilities - get info about the HW
5662 * @pf: the PF struct
5663 **/
5664static int i40e_get_capabilities(struct i40e_pf *pf)
5665{
5666 struct i40e_aqc_list_capabilities_element_resp *cap_buf;
5667 u16 data_size;
5668 int buf_len;
5669 int err;
5670
5671 buf_len = 40 * sizeof(struct i40e_aqc_list_capabilities_element_resp);
5672 do {
5673 cap_buf = kzalloc(buf_len, GFP_KERNEL);
5674 if (!cap_buf)
5675 return -ENOMEM;
5676
5677 /* this loads the data into the hw struct for us */
5678 err = i40e_aq_discover_capabilities(&pf->hw, cap_buf, buf_len,
5679 &data_size,
5680 i40e_aqc_opc_list_func_capabilities,
5681 NULL);
5682 /* data loaded, buffer no longer needed */
5683 kfree(cap_buf);
5684
5685 if (pf->hw.aq.asq_last_status == I40E_AQ_RC_ENOMEM) {
5686 /* retry with a larger buffer */
5687 buf_len = data_size;
5688 } else if (pf->hw.aq.asq_last_status != I40E_AQ_RC_OK) {
5689 dev_info(&pf->pdev->dev,
5690 "capability discovery failed: aq=%d\n",
5691 pf->hw.aq.asq_last_status);
5692 return -ENODEV;
5693 }
5694 } while (err);
5695
Anjali Singhai Jainac71b7b2014-02-06 05:51:08 +00005696 if (((pf->hw.aq.fw_maj_ver == 2) && (pf->hw.aq.fw_min_ver < 22)) ||
5697 (pf->hw.aq.fw_maj_ver < 2)) {
5698 pf->hw.func_caps.num_msix_vectors++;
5699 pf->hw.func_caps.num_msix_vectors_vf++;
5700 }
5701
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005702 if (pf->hw.debug_mask & I40E_DEBUG_USER)
5703 dev_info(&pf->pdev->dev,
5704 "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",
5705 pf->hw.pf_id, pf->hw.func_caps.num_vfs,
5706 pf->hw.func_caps.num_msix_vectors,
5707 pf->hw.func_caps.num_msix_vectors_vf,
5708 pf->hw.func_caps.fd_filters_guaranteed,
5709 pf->hw.func_caps.fd_filters_best_effort,
5710 pf->hw.func_caps.num_tx_qp,
5711 pf->hw.func_caps.num_vsis);
5712
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00005713#define DEF_NUM_VSI (1 + (pf->hw.func_caps.fcoe ? 1 : 0) \
5714 + pf->hw.func_caps.num_vfs)
5715 if (pf->hw.revision_id == 0 && (DEF_NUM_VSI > pf->hw.func_caps.num_vsis)) {
5716 dev_info(&pf->pdev->dev,
5717 "got num_vsis %d, setting num_vsis to %d\n",
5718 pf->hw.func_caps.num_vsis, DEF_NUM_VSI);
5719 pf->hw.func_caps.num_vsis = DEF_NUM_VSI;
5720 }
5721
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005722 return 0;
5723}
5724
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08005725static int i40e_vsi_clear(struct i40e_vsi *vsi);
5726
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005727/**
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08005728 * i40e_fdir_sb_setup - initialize the Flow Director resources for Sideband
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005729 * @pf: board private structure
5730 **/
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08005731static void i40e_fdir_sb_setup(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005732{
5733 struct i40e_vsi *vsi;
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00005734 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005735
Jesse Brandeburg407e0632014-06-03 23:50:12 +00005736 /* quick workaround for an NVM issue that leaves a critical register
5737 * uninitialized
5738 */
5739 if (!rd32(&pf->hw, I40E_GLQF_HKEY(0))) {
5740 static const u32 hkey[] = {
5741 0xe640d33f, 0xcdfe98ab, 0x73fa7161, 0x0d7a7d36,
5742 0xeacb7d61, 0xaa4f05b6, 0x9c5c89ed, 0xfc425ddb,
5743 0xa4654832, 0xfc7461d4, 0x8f827619, 0xf5c63c21,
5744 0x95b3a76d};
5745
5746 for (i = 0; i <= I40E_GLQF_HKEY_MAX_INDEX; i++)
5747 wr32(&pf->hw, I40E_GLQF_HKEY(i), hkey[i]);
5748 }
5749
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08005750 if (!(pf->flags & I40E_FLAG_FD_SB_ENABLED))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005751 return;
5752
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08005753 /* find existing VSI and see if it needs configuring */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005754 vsi = NULL;
Mitch Williams505682c2014-05-20 08:01:37 +00005755 for (i = 0; i < pf->num_alloc_vsi; i++) {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08005756 if (pf->vsi[i] && pf->vsi[i]->type == I40E_VSI_FDIR) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005757 vsi = pf->vsi[i];
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08005758 break;
5759 }
5760 }
5761
5762 /* create a new VSI if none exists */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005763 if (!vsi) {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08005764 vsi = i40e_vsi_setup(pf, I40E_VSI_FDIR,
5765 pf->vsi[pf->lan_vsi]->seid, 0);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005766 if (!vsi) {
5767 dev_info(&pf->pdev->dev, "Couldn't create FDir VSI\n");
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00005768 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
5769 return;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005770 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005771 }
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00005772
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08005773 i40e_vsi_setup_irqhandler(vsi, i40e_fdir_clean_ring);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005774}
5775
5776/**
5777 * i40e_fdir_teardown - release the Flow Director resources
5778 * @pf: board private structure
5779 **/
5780static void i40e_fdir_teardown(struct i40e_pf *pf)
5781{
5782 int i;
5783
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00005784 i40e_fdir_filter_exit(pf);
Mitch Williams505682c2014-05-20 08:01:37 +00005785 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005786 if (pf->vsi[i] && pf->vsi[i]->type == I40E_VSI_FDIR) {
5787 i40e_vsi_release(pf->vsi[i]);
5788 break;
5789 }
5790 }
5791}
5792
5793/**
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00005794 * i40e_prep_for_reset - prep for the core to reset
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005795 * @pf: board private structure
5796 *
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00005797 * Close up the VFs and other things in prep for pf Reset.
5798 **/
Shannon Nelson23cfbe02014-06-04 01:23:14 +00005799static void i40e_prep_for_reset(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005800{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005801 struct i40e_hw *hw = &pf->hw;
Shannon Nelson60442de2014-04-23 04:50:13 +00005802 i40e_status ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005803 u32 v;
5804
5805 clear_bit(__I40E_RESET_INTR_RECEIVED, &pf->state);
5806 if (test_and_set_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state))
Shannon Nelson23cfbe02014-06-04 01:23:14 +00005807 return;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005808
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005809 dev_dbg(&pf->pdev->dev, "Tearing down internal switch for reset\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005810
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005811 /* quiesce the VSIs and their queues that are not already DOWN */
5812 i40e_pf_quiesce_all_vsi(pf);
5813
Mitch Williams505682c2014-05-20 08:01:37 +00005814 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005815 if (pf->vsi[v])
5816 pf->vsi[v]->seid = 0;
5817 }
5818
5819 i40e_shutdown_adminq(&pf->hw);
5820
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00005821 /* call shutdown HMC */
Shannon Nelson60442de2014-04-23 04:50:13 +00005822 if (hw->hmc.hmc_obj) {
5823 ret = i40e_shutdown_lan_hmc(hw);
Shannon Nelson23cfbe02014-06-04 01:23:14 +00005824 if (ret)
Shannon Nelson60442de2014-04-23 04:50:13 +00005825 dev_warn(&pf->pdev->dev,
5826 "shutdown_lan_hmc failed: %d\n", ret);
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00005827 }
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00005828}
5829
5830/**
Jesse Brandeburg44033fa2014-04-23 04:50:15 +00005831 * i40e_send_version - update firmware with driver version
5832 * @pf: PF struct
5833 */
5834static void i40e_send_version(struct i40e_pf *pf)
5835{
5836 struct i40e_driver_version dv;
5837
5838 dv.major_version = DRV_VERSION_MAJOR;
5839 dv.minor_version = DRV_VERSION_MINOR;
5840 dv.build_version = DRV_VERSION_BUILD;
5841 dv.subbuild_version = 0;
5842 strncpy(dv.driver_string, DRV_VERSION, sizeof(dv.driver_string));
5843 i40e_aq_send_driver_version(&pf->hw, &dv, NULL);
5844}
5845
5846/**
Jesse Brandeburg4dda12e2013-12-18 13:46:01 +00005847 * i40e_reset_and_rebuild - reset and rebuild using a saved config
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00005848 * @pf: board private structure
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00005849 * @reinit: if the Main VSI needs to re-initialized.
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00005850 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00005851static void i40e_reset_and_rebuild(struct i40e_pf *pf, bool reinit)
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00005852{
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00005853 struct i40e_hw *hw = &pf->hw;
5854 i40e_status ret;
5855 u32 v;
5856
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005857 /* Now we wait for GRST to settle out.
5858 * We don't have to delete the VEBs or VSIs from the hw switch
5859 * because the reset will make them disappear.
5860 */
5861 ret = i40e_pf_reset(hw);
Akeem G Abodunrinb5565402014-04-09 05:59:04 +00005862 if (ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005863 dev_info(&pf->pdev->dev, "PF reset failed, %d\n", ret);
Akeem G Abodunrinb5565402014-04-09 05:59:04 +00005864 goto end_core_reset;
5865 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005866 pf->pfr_count++;
5867
5868 if (test_bit(__I40E_DOWN, &pf->state))
5869 goto end_core_reset;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005870 dev_dbg(&pf->pdev->dev, "Rebuilding internal switch\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005871
5872 /* rebuild the basics for the AdminQ, HMC, and initial HW switch */
5873 ret = i40e_init_adminq(&pf->hw);
5874 if (ret) {
5875 dev_info(&pf->pdev->dev, "Rebuild AdminQ failed, %d\n", ret);
5876 goto end_core_reset;
5877 }
5878
Shannon Nelson4eb3f762014-03-06 08:59:58 +00005879 /* re-verify the eeprom if we just had an EMP reset */
5880 if (test_bit(__I40E_EMP_RESET_REQUESTED, &pf->state)) {
5881 clear_bit(__I40E_EMP_RESET_REQUESTED, &pf->state);
5882 i40e_verify_eeprom(pf);
5883 }
5884
Shannon Nelsone78ac4bf2014-05-10 04:49:09 +00005885 i40e_clear_pxe_mode(hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005886 ret = i40e_get_capabilities(pf);
5887 if (ret) {
5888 dev_info(&pf->pdev->dev, "i40e_get_capabilities failed, %d\n",
5889 ret);
5890 goto end_core_reset;
5891 }
5892
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005893 ret = i40e_init_lan_hmc(hw, hw->func_caps.num_tx_qp,
5894 hw->func_caps.num_rx_qp,
5895 pf->fcoe_hmc_cntx_num, pf->fcoe_hmc_filt_num);
5896 if (ret) {
5897 dev_info(&pf->pdev->dev, "init_lan_hmc failed: %d\n", ret);
5898 goto end_core_reset;
5899 }
5900 ret = i40e_configure_lan_hmc(hw, I40E_HMC_MODEL_DIRECT_ONLY);
5901 if (ret) {
5902 dev_info(&pf->pdev->dev, "configure_lan_hmc failed: %d\n", ret);
5903 goto end_core_reset;
5904 }
5905
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005906#ifdef CONFIG_I40E_DCB
5907 ret = i40e_init_pf_dcb(pf);
5908 if (ret) {
5909 dev_info(&pf->pdev->dev, "init_pf_dcb failed: %d\n", ret);
5910 goto end_core_reset;
5911 }
5912#endif /* CONFIG_I40E_DCB */
Vasu Dev38e00432014-08-01 13:27:03 -07005913#ifdef I40E_FCOE
5914 ret = i40e_init_pf_fcoe(pf);
5915 if (ret)
5916 dev_info(&pf->pdev->dev, "init_pf_fcoe failed: %d\n", ret);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005917
Vasu Dev38e00432014-08-01 13:27:03 -07005918#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005919 /* do basic switch setup */
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00005920 ret = i40e_setup_pf_switch(pf, reinit);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005921 if (ret)
5922 goto end_core_reset;
5923
5924 /* Rebuild the VSIs and VEBs that existed before reset.
5925 * They are still in our local switch element arrays, so only
5926 * need to rebuild the switch model in the HW.
5927 *
5928 * If there were VEBs but the reconstitution failed, we'll try
5929 * try to recover minimal use by getting the basic PF VSI working.
5930 */
5931 if (pf->vsi[pf->lan_vsi]->uplink_seid != pf->mac_seid) {
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005932 dev_dbg(&pf->pdev->dev, "attempting to rebuild switch\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005933 /* find the one VEB connected to the MAC, and find orphans */
5934 for (v = 0; v < I40E_MAX_VEB; v++) {
5935 if (!pf->veb[v])
5936 continue;
5937
5938 if (pf->veb[v]->uplink_seid == pf->mac_seid ||
5939 pf->veb[v]->uplink_seid == 0) {
5940 ret = i40e_reconstitute_veb(pf->veb[v]);
5941
5942 if (!ret)
5943 continue;
5944
5945 /* If Main VEB failed, we're in deep doodoo,
5946 * so give up rebuilding the switch and set up
5947 * for minimal rebuild of PF VSI.
5948 * If orphan failed, we'll report the error
5949 * but try to keep going.
5950 */
5951 if (pf->veb[v]->uplink_seid == pf->mac_seid) {
5952 dev_info(&pf->pdev->dev,
5953 "rebuild of switch failed: %d, will try to set up simple PF connection\n",
5954 ret);
5955 pf->vsi[pf->lan_vsi]->uplink_seid
5956 = pf->mac_seid;
5957 break;
5958 } else if (pf->veb[v]->uplink_seid == 0) {
5959 dev_info(&pf->pdev->dev,
5960 "rebuild of orphan VEB failed: %d\n",
5961 ret);
5962 }
5963 }
5964 }
5965 }
5966
5967 if (pf->vsi[pf->lan_vsi]->uplink_seid == pf->mac_seid) {
Shannon Nelsoncde4cbc2014-06-04 01:23:17 +00005968 dev_dbg(&pf->pdev->dev, "attempting to rebuild PF VSI\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005969 /* no VEB, so rebuild only the Main VSI */
5970 ret = i40e_add_vsi(pf->vsi[pf->lan_vsi]);
5971 if (ret) {
5972 dev_info(&pf->pdev->dev,
5973 "rebuild of Main VSI failed: %d\n", ret);
5974 goto end_core_reset;
5975 }
5976 }
5977
5978 /* reinit the misc interrupt */
5979 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
5980 ret = i40e_setup_misc_vector(pf);
5981
5982 /* restart the VSIs that were rebuilt and running before the reset */
5983 i40e_pf_unquiesce_all_vsi(pf);
5984
Mitch Williams69f64b22014-02-13 03:48:46 -08005985 if (pf->num_alloc_vfs) {
5986 for (v = 0; v < pf->num_alloc_vfs; v++)
5987 i40e_reset_vf(&pf->vf[v], true);
5988 }
5989
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005990 /* tell the firmware that we're starting */
Jesse Brandeburg44033fa2014-04-23 04:50:15 +00005991 i40e_send_version(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005992
5993end_core_reset:
5994 clear_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state);
5995}
5996
5997/**
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00005998 * i40e_handle_reset_warning - prep for the pf to reset, reset and rebuild
5999 * @pf: board private structure
6000 *
6001 * Close up the VFs and other things in prep for a Core Reset,
6002 * then get ready to rebuild the world.
6003 **/
6004static void i40e_handle_reset_warning(struct i40e_pf *pf)
6005{
Shannon Nelson23cfbe02014-06-04 01:23:14 +00006006 i40e_prep_for_reset(pf);
6007 i40e_reset_and_rebuild(pf, false);
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006008}
6009
6010/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006011 * i40e_handle_mdd_event
6012 * @pf: pointer to the pf structure
6013 *
6014 * Called from the MDD irq handler to identify possibly malicious vfs
6015 **/
6016static void i40e_handle_mdd_event(struct i40e_pf *pf)
6017{
6018 struct i40e_hw *hw = &pf->hw;
6019 bool mdd_detected = false;
Neerav Parikhdf430b12014-06-04 01:23:15 +00006020 bool pf_mdd_detected = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006021 struct i40e_vf *vf;
6022 u32 reg;
6023 int i;
6024
6025 if (!test_bit(__I40E_MDD_EVENT_PENDING, &pf->state))
6026 return;
6027
6028 /* find what triggered the MDD event */
6029 reg = rd32(hw, I40E_GL_MDET_TX);
6030 if (reg & I40E_GL_MDET_TX_VALID_MASK) {
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00006031 u8 pf_num = (reg & I40E_GL_MDET_TX_PF_NUM_MASK) >>
6032 I40E_GL_MDET_TX_PF_NUM_SHIFT;
6033 u8 vf_num = (reg & I40E_GL_MDET_TX_VF_NUM_MASK) >>
6034 I40E_GL_MDET_TX_VF_NUM_SHIFT;
6035 u8 event = (reg & I40E_GL_MDET_TX_EVENT_SHIFT) >>
6036 I40E_GL_MDET_TX_EVENT_SHIFT;
6037 u8 queue = (reg & I40E_GL_MDET_TX_QUEUE_MASK) >>
6038 I40E_GL_MDET_TX_QUEUE_SHIFT;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006039 dev_info(&pf->pdev->dev,
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00006040 "Malicious Driver Detection event 0x%02x on TX queue %d pf number 0x%02x vf number 0x%02x\n",
6041 event, queue, pf_num, vf_num);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006042 wr32(hw, I40E_GL_MDET_TX, 0xffffffff);
6043 mdd_detected = true;
6044 }
6045 reg = rd32(hw, I40E_GL_MDET_RX);
6046 if (reg & I40E_GL_MDET_RX_VALID_MASK) {
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00006047 u8 func = (reg & I40E_GL_MDET_RX_FUNCTION_MASK) >>
6048 I40E_GL_MDET_RX_FUNCTION_SHIFT;
6049 u8 event = (reg & I40E_GL_MDET_RX_EVENT_SHIFT) >>
6050 I40E_GL_MDET_RX_EVENT_SHIFT;
6051 u8 queue = (reg & I40E_GL_MDET_RX_QUEUE_MASK) >>
6052 I40E_GL_MDET_RX_QUEUE_SHIFT;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006053 dev_info(&pf->pdev->dev,
Jesse Brandeburgf29eaa32014-02-11 08:24:12 +00006054 "Malicious Driver Detection event 0x%02x on RX queue %d of function 0x%02x\n",
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006055 event, queue, func);
6056 wr32(hw, I40E_GL_MDET_RX, 0xffffffff);
6057 mdd_detected = true;
6058 }
6059
Neerav Parikhdf430b12014-06-04 01:23:15 +00006060 if (mdd_detected) {
6061 reg = rd32(hw, I40E_PF_MDET_TX);
6062 if (reg & I40E_PF_MDET_TX_VALID_MASK) {
6063 wr32(hw, I40E_PF_MDET_TX, 0xFFFF);
6064 dev_info(&pf->pdev->dev,
6065 "MDD TX event is for this function 0x%08x, requesting PF reset.\n",
6066 reg);
6067 pf_mdd_detected = true;
6068 }
6069 reg = rd32(hw, I40E_PF_MDET_RX);
6070 if (reg & I40E_PF_MDET_RX_VALID_MASK) {
6071 wr32(hw, I40E_PF_MDET_RX, 0xFFFF);
6072 dev_info(&pf->pdev->dev,
6073 "MDD RX event is for this function 0x%08x, requesting PF reset.\n",
6074 reg);
6075 pf_mdd_detected = true;
6076 }
6077 /* Queue belongs to the PF, initiate a reset */
6078 if (pf_mdd_detected) {
6079 set_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
6080 i40e_service_event_schedule(pf);
6081 }
6082 }
6083
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006084 /* see if one of the VFs needs its hand slapped */
6085 for (i = 0; i < pf->num_alloc_vfs && mdd_detected; i++) {
6086 vf = &(pf->vf[i]);
6087 reg = rd32(hw, I40E_VP_MDET_TX(i));
6088 if (reg & I40E_VP_MDET_TX_VALID_MASK) {
6089 wr32(hw, I40E_VP_MDET_TX(i), 0xFFFF);
6090 vf->num_mdd_events++;
6091 dev_info(&pf->pdev->dev, "MDD TX event on VF %d\n", i);
6092 }
6093
6094 reg = rd32(hw, I40E_VP_MDET_RX(i));
6095 if (reg & I40E_VP_MDET_RX_VALID_MASK) {
6096 wr32(hw, I40E_VP_MDET_RX(i), 0xFFFF);
6097 vf->num_mdd_events++;
6098 dev_info(&pf->pdev->dev, "MDD RX event on VF %d\n", i);
6099 }
6100
6101 if (vf->num_mdd_events > I40E_DEFAULT_NUM_MDD_EVENTS_ALLOWED) {
6102 dev_info(&pf->pdev->dev,
6103 "Too many MDD events on VF %d, disabled\n", i);
6104 dev_info(&pf->pdev->dev,
6105 "Use PF Control I/F to re-enable the VF\n");
6106 set_bit(I40E_VF_STAT_DISABLED, &vf->vf_states);
6107 }
6108 }
6109
6110 /* re-enable mdd interrupt cause */
6111 clear_bit(__I40E_MDD_EVENT_PENDING, &pf->state);
6112 reg = rd32(hw, I40E_PFINT_ICR0_ENA);
6113 reg |= I40E_PFINT_ICR0_ENA_MAL_DETECT_MASK;
6114 wr32(hw, I40E_PFINT_ICR0_ENA, reg);
6115 i40e_flush(hw);
6116}
6117
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00006118#ifdef CONFIG_I40E_VXLAN
6119/**
6120 * i40e_sync_vxlan_filters_subtask - Sync the VSI filter list with HW
6121 * @pf: board private structure
6122 **/
6123static void i40e_sync_vxlan_filters_subtask(struct i40e_pf *pf)
6124{
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00006125 struct i40e_hw *hw = &pf->hw;
6126 i40e_status ret;
6127 u8 filter_index;
6128 __be16 port;
6129 int i;
6130
6131 if (!(pf->flags & I40E_FLAG_VXLAN_FILTER_SYNC))
6132 return;
6133
6134 pf->flags &= ~I40E_FLAG_VXLAN_FILTER_SYNC;
6135
6136 for (i = 0; i < I40E_MAX_PF_UDP_OFFLOAD_PORTS; i++) {
6137 if (pf->pending_vxlan_bitmap & (1 << i)) {
6138 pf->pending_vxlan_bitmap &= ~(1 << i);
6139 port = pf->vxlan_ports[i];
6140 ret = port ?
6141 i40e_aq_add_udp_tunnel(hw, ntohs(port),
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00006142 I40E_AQC_TUNNEL_TYPE_VXLAN,
6143 &filter_index, NULL)
6144 : i40e_aq_del_udp_tunnel(hw, i, NULL);
6145
6146 if (ret) {
6147 dev_info(&pf->pdev->dev, "Failed to execute AQ command for %s port %d with index %d\n",
6148 port ? "adding" : "deleting",
6149 ntohs(port), port ? i : i);
6150
6151 pf->vxlan_ports[i] = 0;
6152 } else {
6153 dev_info(&pf->pdev->dev, "%s port %d with AQ command with index %d\n",
6154 port ? "Added" : "Deleted",
6155 ntohs(port), port ? i : filter_index);
6156 }
6157 }
6158 }
6159}
6160
6161#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006162/**
6163 * i40e_service_task - Run the driver's async subtasks
6164 * @work: pointer to work_struct containing our data
6165 **/
6166static void i40e_service_task(struct work_struct *work)
6167{
6168 struct i40e_pf *pf = container_of(work,
6169 struct i40e_pf,
6170 service_task);
6171 unsigned long start_time = jiffies;
6172
Shannon Nelsone57a2fe2014-06-03 23:50:19 +00006173 /* don't bother with service tasks if a reset is in progress */
6174 if (test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state)) {
6175 i40e_service_event_complete(pf);
6176 return;
6177 }
6178
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006179 i40e_reset_subtask(pf);
6180 i40e_handle_mdd_event(pf);
6181 i40e_vc_process_vflr_event(pf);
6182 i40e_watchdog_subtask(pf);
6183 i40e_fdir_reinit_subtask(pf);
6184 i40e_check_hang_subtask(pf);
6185 i40e_sync_filters_subtask(pf);
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00006186#ifdef CONFIG_I40E_VXLAN
6187 i40e_sync_vxlan_filters_subtask(pf);
6188#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006189 i40e_clean_adminq_subtask(pf);
6190
6191 i40e_service_event_complete(pf);
6192
6193 /* If the tasks have taken longer than one timer cycle or there
6194 * is more work to be done, reschedule the service task now
6195 * rather than wait for the timer to tick again.
6196 */
6197 if (time_after(jiffies, (start_time + pf->service_timer_period)) ||
6198 test_bit(__I40E_ADMINQ_EVENT_PENDING, &pf->state) ||
6199 test_bit(__I40E_MDD_EVENT_PENDING, &pf->state) ||
6200 test_bit(__I40E_VFLR_EVENT_PENDING, &pf->state))
6201 i40e_service_event_schedule(pf);
6202}
6203
6204/**
6205 * i40e_service_timer - timer callback
6206 * @data: pointer to PF struct
6207 **/
6208static void i40e_service_timer(unsigned long data)
6209{
6210 struct i40e_pf *pf = (struct i40e_pf *)data;
6211
6212 mod_timer(&pf->service_timer,
6213 round_jiffies(jiffies + pf->service_timer_period));
6214 i40e_service_event_schedule(pf);
6215}
6216
6217/**
6218 * i40e_set_num_rings_in_vsi - Determine number of rings in the VSI
6219 * @vsi: the VSI being configured
6220 **/
6221static int i40e_set_num_rings_in_vsi(struct i40e_vsi *vsi)
6222{
6223 struct i40e_pf *pf = vsi->back;
6224
6225 switch (vsi->type) {
6226 case I40E_VSI_MAIN:
6227 vsi->alloc_queue_pairs = pf->num_lan_qps;
6228 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
6229 I40E_REQ_DESCRIPTOR_MULTIPLE);
6230 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
6231 vsi->num_q_vectors = pf->num_lan_msix;
6232 else
6233 vsi->num_q_vectors = 1;
6234
6235 break;
6236
6237 case I40E_VSI_FDIR:
6238 vsi->alloc_queue_pairs = 1;
6239 vsi->num_desc = ALIGN(I40E_FDIR_RING_COUNT,
6240 I40E_REQ_DESCRIPTOR_MULTIPLE);
6241 vsi->num_q_vectors = 1;
6242 break;
6243
6244 case I40E_VSI_VMDQ2:
6245 vsi->alloc_queue_pairs = pf->num_vmdq_qps;
6246 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
6247 I40E_REQ_DESCRIPTOR_MULTIPLE);
6248 vsi->num_q_vectors = pf->num_vmdq_msix;
6249 break;
6250
6251 case I40E_VSI_SRIOV:
6252 vsi->alloc_queue_pairs = pf->num_vf_qps;
6253 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
6254 I40E_REQ_DESCRIPTOR_MULTIPLE);
6255 break;
6256
Vasu Dev38e00432014-08-01 13:27:03 -07006257#ifdef I40E_FCOE
6258 case I40E_VSI_FCOE:
6259 vsi->alloc_queue_pairs = pf->num_fcoe_qps;
6260 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
6261 I40E_REQ_DESCRIPTOR_MULTIPLE);
6262 vsi->num_q_vectors = pf->num_fcoe_msix;
6263 break;
6264
6265#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006266 default:
6267 WARN_ON(1);
6268 return -ENODATA;
6269 }
6270
6271 return 0;
6272}
6273
6274/**
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006275 * i40e_vsi_alloc_arrays - Allocate queue and vector pointer arrays for the vsi
6276 * @type: VSI pointer
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006277 * @alloc_qvectors: a bool to specify if q_vectors need to be allocated.
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006278 *
6279 * On error: returns error code (negative)
6280 * On success: returns 0
6281 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006282static int i40e_vsi_alloc_arrays(struct i40e_vsi *vsi, bool alloc_qvectors)
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006283{
6284 int size;
6285 int ret = 0;
6286
Shannon Nelsonac6c5e32013-11-20 10:02:57 +00006287 /* allocate memory for both Tx and Rx ring pointers */
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006288 size = sizeof(struct i40e_ring *) * vsi->alloc_queue_pairs * 2;
6289 vsi->tx_rings = kzalloc(size, GFP_KERNEL);
6290 if (!vsi->tx_rings)
6291 return -ENOMEM;
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006292 vsi->rx_rings = &vsi->tx_rings[vsi->alloc_queue_pairs];
6293
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006294 if (alloc_qvectors) {
6295 /* allocate memory for q_vector pointers */
6296 size = sizeof(struct i40e_q_vectors *) * vsi->num_q_vectors;
6297 vsi->q_vectors = kzalloc(size, GFP_KERNEL);
6298 if (!vsi->q_vectors) {
6299 ret = -ENOMEM;
6300 goto err_vectors;
6301 }
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006302 }
6303 return ret;
6304
6305err_vectors:
6306 kfree(vsi->tx_rings);
6307 return ret;
6308}
6309
6310/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006311 * i40e_vsi_mem_alloc - Allocates the next available struct vsi in the PF
6312 * @pf: board private structure
6313 * @type: type of VSI
6314 *
6315 * On error: returns error code (negative)
6316 * On success: returns vsi index in PF (positive)
6317 **/
6318static int i40e_vsi_mem_alloc(struct i40e_pf *pf, enum i40e_vsi_type type)
6319{
6320 int ret = -ENODEV;
6321 struct i40e_vsi *vsi;
6322 int vsi_idx;
6323 int i;
6324
6325 /* Need to protect the allocation of the VSIs at the PF level */
6326 mutex_lock(&pf->switch_mutex);
6327
6328 /* VSI list may be fragmented if VSI creation/destruction has
6329 * been happening. We can afford to do a quick scan to look
6330 * for any free VSIs in the list.
6331 *
6332 * find next empty vsi slot, looping back around if necessary
6333 */
6334 i = pf->next_vsi;
Mitch Williams505682c2014-05-20 08:01:37 +00006335 while (i < pf->num_alloc_vsi && pf->vsi[i])
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006336 i++;
Mitch Williams505682c2014-05-20 08:01:37 +00006337 if (i >= pf->num_alloc_vsi) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006338 i = 0;
6339 while (i < pf->next_vsi && pf->vsi[i])
6340 i++;
6341 }
6342
Mitch Williams505682c2014-05-20 08:01:37 +00006343 if (i < pf->num_alloc_vsi && !pf->vsi[i]) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006344 vsi_idx = i; /* Found one! */
6345 } else {
6346 ret = -ENODEV;
Alexander Duyck493fb302013-09-28 07:01:44 +00006347 goto unlock_pf; /* out of VSI slots! */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006348 }
6349 pf->next_vsi = ++i;
6350
6351 vsi = kzalloc(sizeof(*vsi), GFP_KERNEL);
6352 if (!vsi) {
6353 ret = -ENOMEM;
Alexander Duyck493fb302013-09-28 07:01:44 +00006354 goto unlock_pf;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006355 }
6356 vsi->type = type;
6357 vsi->back = pf;
6358 set_bit(__I40E_DOWN, &vsi->state);
6359 vsi->flags = 0;
6360 vsi->idx = vsi_idx;
6361 vsi->rx_itr_setting = pf->rx_itr_default;
6362 vsi->tx_itr_setting = pf->tx_itr_default;
6363 vsi->netdev_registered = false;
6364 vsi->work_limit = I40E_DEFAULT_IRQ_WORK;
6365 INIT_LIST_HEAD(&vsi->mac_filter_list);
Shannon Nelson63741842014-04-23 04:50:16 +00006366 vsi->irqs_ready = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006367
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006368 ret = i40e_set_num_rings_in_vsi(vsi);
6369 if (ret)
6370 goto err_rings;
6371
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006372 ret = i40e_vsi_alloc_arrays(vsi, true);
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006373 if (ret)
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006374 goto err_rings;
Alexander Duyck493fb302013-09-28 07:01:44 +00006375
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006376 /* Setup default MSIX irq handler for VSI */
6377 i40e_vsi_setup_irqhandler(vsi, i40e_msix_clean_rings);
6378
6379 pf->vsi[vsi_idx] = vsi;
6380 ret = vsi_idx;
Alexander Duyck493fb302013-09-28 07:01:44 +00006381 goto unlock_pf;
6382
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006383err_rings:
Alexander Duyck493fb302013-09-28 07:01:44 +00006384 pf->next_vsi = i - 1;
6385 kfree(vsi);
6386unlock_pf:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006387 mutex_unlock(&pf->switch_mutex);
6388 return ret;
6389}
6390
6391/**
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006392 * i40e_vsi_free_arrays - Free queue and vector pointer arrays for the VSI
6393 * @type: VSI pointer
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006394 * @free_qvectors: a bool to specify if q_vectors need to be freed.
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006395 *
6396 * On error: returns error code (negative)
6397 * On success: returns 0
6398 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006399static void i40e_vsi_free_arrays(struct i40e_vsi *vsi, bool free_qvectors)
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006400{
6401 /* free the ring and vector containers */
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006402 if (free_qvectors) {
6403 kfree(vsi->q_vectors);
6404 vsi->q_vectors = NULL;
6405 }
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006406 kfree(vsi->tx_rings);
6407 vsi->tx_rings = NULL;
6408 vsi->rx_rings = NULL;
6409}
6410
6411/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006412 * i40e_vsi_clear - Deallocate the VSI provided
6413 * @vsi: the VSI being un-configured
6414 **/
6415static int i40e_vsi_clear(struct i40e_vsi *vsi)
6416{
6417 struct i40e_pf *pf;
6418
6419 if (!vsi)
6420 return 0;
6421
6422 if (!vsi->back)
6423 goto free_vsi;
6424 pf = vsi->back;
6425
6426 mutex_lock(&pf->switch_mutex);
6427 if (!pf->vsi[vsi->idx]) {
6428 dev_err(&pf->pdev->dev, "pf->vsi[%d] is NULL, just free vsi[%d](%p,type %d)\n",
6429 vsi->idx, vsi->idx, vsi, vsi->type);
6430 goto unlock_vsi;
6431 }
6432
6433 if (pf->vsi[vsi->idx] != vsi) {
6434 dev_err(&pf->pdev->dev,
6435 "pf->vsi[%d](%p, type %d) != vsi[%d](%p,type %d): no free!\n",
6436 pf->vsi[vsi->idx]->idx,
6437 pf->vsi[vsi->idx],
6438 pf->vsi[vsi->idx]->type,
6439 vsi->idx, vsi, vsi->type);
6440 goto unlock_vsi;
6441 }
6442
6443 /* updates the pf for this cleared vsi */
6444 i40e_put_lump(pf->qp_pile, vsi->base_queue, vsi->idx);
6445 i40e_put_lump(pf->irq_pile, vsi->base_vector, vsi->idx);
6446
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006447 i40e_vsi_free_arrays(vsi, true);
Alexander Duyck493fb302013-09-28 07:01:44 +00006448
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006449 pf->vsi[vsi->idx] = NULL;
6450 if (vsi->idx < pf->next_vsi)
6451 pf->next_vsi = vsi->idx;
6452
6453unlock_vsi:
6454 mutex_unlock(&pf->switch_mutex);
6455free_vsi:
6456 kfree(vsi);
6457
6458 return 0;
6459}
6460
6461/**
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006462 * i40e_vsi_clear_rings - Deallocates the Rx and Tx rings for the provided VSI
6463 * @vsi: the VSI being cleaned
6464 **/
Shannon Nelsonbe1d5ee2013-11-28 06:39:23 +00006465static void i40e_vsi_clear_rings(struct i40e_vsi *vsi)
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006466{
6467 int i;
6468
Greg Rose8e9dca52013-12-18 13:45:53 +00006469 if (vsi->tx_rings && vsi->tx_rings[0]) {
Neerav Parikhd7397642013-11-28 06:39:37 +00006470 for (i = 0; i < vsi->alloc_queue_pairs; i++) {
Mitch Williams00403f02013-09-28 07:13:13 +00006471 kfree_rcu(vsi->tx_rings[i], rcu);
6472 vsi->tx_rings[i] = NULL;
6473 vsi->rx_rings[i] = NULL;
6474 }
Shannon Nelsonbe1d5ee2013-11-28 06:39:23 +00006475 }
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006476}
6477
6478/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006479 * i40e_alloc_rings - Allocates the Rx and Tx rings for the provided VSI
6480 * @vsi: the VSI being configured
6481 **/
6482static int i40e_alloc_rings(struct i40e_vsi *vsi)
6483{
Akeem G Abodunrine7046ee2014-04-09 05:58:58 +00006484 struct i40e_ring *tx_ring, *rx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006485 struct i40e_pf *pf = vsi->back;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006486 int i;
6487
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006488 /* Set basic values in the rings to be used later during open() */
Neerav Parikhd7397642013-11-28 06:39:37 +00006489 for (i = 0; i < vsi->alloc_queue_pairs; i++) {
Shannon Nelsonac6c5e32013-11-20 10:02:57 +00006490 /* allocate space for both Tx and Rx in one shot */
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006491 tx_ring = kzalloc(sizeof(struct i40e_ring) * 2, GFP_KERNEL);
6492 if (!tx_ring)
6493 goto err_out;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006494
6495 tx_ring->queue_index = i;
6496 tx_ring->reg_idx = vsi->base_queue + i;
6497 tx_ring->ring_active = false;
6498 tx_ring->vsi = vsi;
6499 tx_ring->netdev = vsi->netdev;
6500 tx_ring->dev = &pf->pdev->dev;
6501 tx_ring->count = vsi->num_desc;
6502 tx_ring->size = 0;
6503 tx_ring->dcb_tc = 0;
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006504 vsi->tx_rings[i] = tx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006505
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006506 rx_ring = &tx_ring[1];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006507 rx_ring->queue_index = i;
6508 rx_ring->reg_idx = vsi->base_queue + i;
6509 rx_ring->ring_active = false;
6510 rx_ring->vsi = vsi;
6511 rx_ring->netdev = vsi->netdev;
6512 rx_ring->dev = &pf->pdev->dev;
6513 rx_ring->count = vsi->num_desc;
6514 rx_ring->size = 0;
6515 rx_ring->dcb_tc = 0;
6516 if (pf->flags & I40E_FLAG_16BYTE_RX_DESC_ENABLED)
6517 set_ring_16byte_desc_enabled(rx_ring);
6518 else
6519 clear_ring_16byte_desc_enabled(rx_ring);
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006520 vsi->rx_rings[i] = rx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006521 }
6522
6523 return 0;
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006524
6525err_out:
6526 i40e_vsi_clear_rings(vsi);
6527 return -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006528}
6529
6530/**
6531 * i40e_reserve_msix_vectors - Reserve MSI-X vectors in the kernel
6532 * @pf: board private structure
6533 * @vectors: the number of MSI-X vectors to request
6534 *
6535 * Returns the number of vectors reserved, or error
6536 **/
6537static int i40e_reserve_msix_vectors(struct i40e_pf *pf, int vectors)
6538{
Alexander Gordeev7b37f372014-02-18 11:11:42 +01006539 vectors = pci_enable_msix_range(pf->pdev, pf->msix_entries,
6540 I40E_MIN_MSIX, vectors);
6541 if (vectors < 0) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006542 dev_info(&pf->pdev->dev,
Alexander Gordeev7b37f372014-02-18 11:11:42 +01006543 "MSI-X vector reservation failed: %d\n", vectors);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006544 vectors = 0;
6545 }
6546
6547 return vectors;
6548}
6549
6550/**
6551 * i40e_init_msix - Setup the MSIX capability
6552 * @pf: board private structure
6553 *
6554 * Work with the OS to set up the MSIX vectors needed.
6555 *
6556 * Returns 0 on success, negative on failure
6557 **/
6558static int i40e_init_msix(struct i40e_pf *pf)
6559{
6560 i40e_status err = 0;
6561 struct i40e_hw *hw = &pf->hw;
6562 int v_budget, i;
6563 int vec;
6564
6565 if (!(pf->flags & I40E_FLAG_MSIX_ENABLED))
6566 return -ENODEV;
6567
6568 /* The number of vectors we'll request will be comprised of:
6569 * - Add 1 for "other" cause for Admin Queue events, etc.
6570 * - The number of LAN queue pairs
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00006571 * - Queues being used for RSS.
6572 * We don't need as many as max_rss_size vectors.
6573 * use rss_size instead in the calculation since that
6574 * is governed by number of cpus in the system.
6575 * - assumes symmetric Tx/Rx pairing
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006576 * - The number of VMDq pairs
Vasu Dev38e00432014-08-01 13:27:03 -07006577#ifdef I40E_FCOE
6578 * - The number of FCOE qps.
6579#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006580 * Once we count this up, try the request.
6581 *
6582 * If we can't get what we want, we'll simplify to nearly nothing
6583 * and try again. If that still fails, we punt.
6584 */
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00006585 pf->num_lan_msix = pf->num_lan_qps - (pf->rss_size_max - pf->rss_size);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006586 pf->num_vmdq_msix = pf->num_vmdq_qps;
6587 v_budget = 1 + pf->num_lan_msix;
6588 v_budget += (pf->num_vmdq_vsis * pf->num_vmdq_msix);
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08006589 if (pf->flags & I40E_FLAG_FD_SB_ENABLED)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006590 v_budget++;
6591
Vasu Dev38e00432014-08-01 13:27:03 -07006592#ifdef I40E_FCOE
6593 if (pf->flags & I40E_FLAG_FCOE_ENABLED) {
6594 pf->num_fcoe_msix = pf->num_fcoe_qps;
6595 v_budget += pf->num_fcoe_msix;
6596 }
6597
6598#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006599 /* Scale down if necessary, and the rings will share vectors */
6600 v_budget = min_t(int, v_budget, hw->func_caps.num_msix_vectors);
6601
6602 pf->msix_entries = kcalloc(v_budget, sizeof(struct msix_entry),
6603 GFP_KERNEL);
6604 if (!pf->msix_entries)
6605 return -ENOMEM;
6606
6607 for (i = 0; i < v_budget; i++)
6608 pf->msix_entries[i].entry = i;
6609 vec = i40e_reserve_msix_vectors(pf, v_budget);
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00006610
6611 if (vec != v_budget) {
6612 /* If we have limited resources, we will start with no vectors
6613 * for the special features and then allocate vectors to some
6614 * of these features based on the policy and at the end disable
6615 * the features that did not get any vectors.
6616 */
Vasu Dev38e00432014-08-01 13:27:03 -07006617#ifdef I40E_FCOE
6618 pf->num_fcoe_qps = 0;
6619 pf->num_fcoe_msix = 0;
6620#endif
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00006621 pf->num_vmdq_msix = 0;
6622 }
6623
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006624 if (vec < I40E_MIN_MSIX) {
6625 pf->flags &= ~I40E_FLAG_MSIX_ENABLED;
6626 kfree(pf->msix_entries);
6627 pf->msix_entries = NULL;
6628 return -ENODEV;
6629
6630 } else if (vec == I40E_MIN_MSIX) {
6631 /* Adjust for minimal MSIX use */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006632 pf->num_vmdq_vsis = 0;
6633 pf->num_vmdq_qps = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006634 pf->num_lan_qps = 1;
6635 pf->num_lan_msix = 1;
6636
6637 } else if (vec != v_budget) {
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00006638 /* reserve the misc vector */
6639 vec--;
6640
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006641 /* Scale vector usage down */
6642 pf->num_vmdq_msix = 1; /* force VMDqs to only one vector */
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00006643 pf->num_vmdq_vsis = 1;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006644
6645 /* partition out the remaining vectors */
6646 switch (vec) {
6647 case 2:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006648 pf->num_lan_msix = 1;
6649 break;
6650 case 3:
Vasu Dev38e00432014-08-01 13:27:03 -07006651#ifdef I40E_FCOE
6652 /* give one vector to FCoE */
6653 if (pf->flags & I40E_FLAG_FCOE_ENABLED) {
6654 pf->num_lan_msix = 1;
6655 pf->num_fcoe_msix = 1;
6656 }
6657#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006658 pf->num_lan_msix = 2;
Vasu Dev38e00432014-08-01 13:27:03 -07006659#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006660 break;
6661 default:
Vasu Dev38e00432014-08-01 13:27:03 -07006662#ifdef I40E_FCOE
6663 /* give one vector to FCoE */
6664 if (pf->flags & I40E_FLAG_FCOE_ENABLED) {
6665 pf->num_fcoe_msix = 1;
6666 vec--;
6667 }
6668#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006669 pf->num_lan_msix = min_t(int, (vec / 2),
6670 pf->num_lan_qps);
6671 pf->num_vmdq_vsis = min_t(int, (vec - pf->num_lan_msix),
6672 I40E_DEFAULT_NUM_VMDQ_VSI);
6673 break;
6674 }
6675 }
6676
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00006677 if ((pf->flags & I40E_FLAG_VMDQ_ENABLED) &&
6678 (pf->num_vmdq_msix == 0)) {
6679 dev_info(&pf->pdev->dev, "VMDq disabled, not enough MSI-X vectors\n");
6680 pf->flags &= ~I40E_FLAG_VMDQ_ENABLED;
6681 }
Vasu Dev38e00432014-08-01 13:27:03 -07006682#ifdef I40E_FCOE
6683
6684 if ((pf->flags & I40E_FLAG_FCOE_ENABLED) && (pf->num_fcoe_msix == 0)) {
6685 dev_info(&pf->pdev->dev, "FCOE disabled, not enough MSI-X vectors\n");
6686 pf->flags &= ~I40E_FLAG_FCOE_ENABLED;
6687 }
6688#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006689 return err;
6690}
6691
6692/**
Greg Rose90e04072014-03-06 08:59:57 +00006693 * i40e_vsi_alloc_q_vector - Allocate memory for a single interrupt vector
Alexander Duyck493fb302013-09-28 07:01:44 +00006694 * @vsi: the VSI being configured
6695 * @v_idx: index of the vector in the vsi struct
6696 *
6697 * We allocate one q_vector. If allocation fails we return -ENOMEM.
6698 **/
Greg Rose90e04072014-03-06 08:59:57 +00006699static int i40e_vsi_alloc_q_vector(struct i40e_vsi *vsi, int v_idx)
Alexander Duyck493fb302013-09-28 07:01:44 +00006700{
6701 struct i40e_q_vector *q_vector;
6702
6703 /* allocate q_vector */
6704 q_vector = kzalloc(sizeof(struct i40e_q_vector), GFP_KERNEL);
6705 if (!q_vector)
6706 return -ENOMEM;
6707
6708 q_vector->vsi = vsi;
6709 q_vector->v_idx = v_idx;
6710 cpumask_set_cpu(v_idx, &q_vector->affinity_mask);
6711 if (vsi->netdev)
6712 netif_napi_add(vsi->netdev, &q_vector->napi,
Jesse Brandeburgeefeace2014-05-10 04:49:13 +00006713 i40e_napi_poll, NAPI_POLL_WEIGHT);
Alexander Duyck493fb302013-09-28 07:01:44 +00006714
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00006715 q_vector->rx.latency_range = I40E_LOW_LATENCY;
6716 q_vector->tx.latency_range = I40E_LOW_LATENCY;
6717
Alexander Duyck493fb302013-09-28 07:01:44 +00006718 /* tie q_vector and vsi together */
6719 vsi->q_vectors[v_idx] = q_vector;
6720
6721 return 0;
6722}
6723
6724/**
Greg Rose90e04072014-03-06 08:59:57 +00006725 * i40e_vsi_alloc_q_vectors - Allocate memory for interrupt vectors
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006726 * @vsi: the VSI being configured
6727 *
6728 * We allocate one q_vector per queue interrupt. If allocation fails we
6729 * return -ENOMEM.
6730 **/
Greg Rose90e04072014-03-06 08:59:57 +00006731static int i40e_vsi_alloc_q_vectors(struct i40e_vsi *vsi)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006732{
6733 struct i40e_pf *pf = vsi->back;
6734 int v_idx, num_q_vectors;
Alexander Duyck493fb302013-09-28 07:01:44 +00006735 int err;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006736
6737 /* if not MSIX, give the one vector only to the LAN VSI */
6738 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
6739 num_q_vectors = vsi->num_q_vectors;
6740 else if (vsi == pf->vsi[pf->lan_vsi])
6741 num_q_vectors = 1;
6742 else
6743 return -EINVAL;
6744
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006745 for (v_idx = 0; v_idx < num_q_vectors; v_idx++) {
Greg Rose90e04072014-03-06 08:59:57 +00006746 err = i40e_vsi_alloc_q_vector(vsi, v_idx);
Alexander Duyck493fb302013-09-28 07:01:44 +00006747 if (err)
6748 goto err_out;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006749 }
6750
6751 return 0;
Alexander Duyck493fb302013-09-28 07:01:44 +00006752
6753err_out:
6754 while (v_idx--)
6755 i40e_free_q_vector(vsi, v_idx);
6756
6757 return err;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006758}
6759
6760/**
6761 * i40e_init_interrupt_scheme - Determine proper interrupt scheme
6762 * @pf: board private structure to initialize
6763 **/
6764static void i40e_init_interrupt_scheme(struct i40e_pf *pf)
6765{
6766 int err = 0;
6767
6768 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
6769 err = i40e_init_msix(pf);
6770 if (err) {
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08006771 pf->flags &= ~(I40E_FLAG_MSIX_ENABLED |
Vasu Dev38e00432014-08-01 13:27:03 -07006772#ifdef I40E_FCOE
6773 I40E_FLAG_FCOE_ENABLED |
6774#endif
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08006775 I40E_FLAG_RSS_ENABLED |
Neerav Parikh4d9b6042014-05-22 06:31:51 +00006776 I40E_FLAG_DCB_CAPABLE |
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08006777 I40E_FLAG_SRIOV_ENABLED |
6778 I40E_FLAG_FD_SB_ENABLED |
6779 I40E_FLAG_FD_ATR_ENABLED |
6780 I40E_FLAG_VMDQ_ENABLED);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006781
6782 /* rework the queue expectations without MSIX */
6783 i40e_determine_queue_usage(pf);
6784 }
6785 }
6786
6787 if (!(pf->flags & I40E_FLAG_MSIX_ENABLED) &&
6788 (pf->flags & I40E_FLAG_MSI_ENABLED)) {
Catherine Sullivan77fa28b2014-02-20 19:29:17 -08006789 dev_info(&pf->pdev->dev, "MSI-X not available, trying MSI\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006790 err = pci_enable_msi(pf->pdev);
6791 if (err) {
Shannon Nelson958a3e32013-09-28 07:13:28 +00006792 dev_info(&pf->pdev->dev, "MSI init failed - %d\n", err);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006793 pf->flags &= ~I40E_FLAG_MSI_ENABLED;
6794 }
6795 }
6796
Shannon Nelson958a3e32013-09-28 07:13:28 +00006797 if (!(pf->flags & (I40E_FLAG_MSIX_ENABLED | I40E_FLAG_MSI_ENABLED)))
Catherine Sullivan77fa28b2014-02-20 19:29:17 -08006798 dev_info(&pf->pdev->dev, "MSI-X and MSI not available, falling back to Legacy IRQ\n");
Shannon Nelson958a3e32013-09-28 07:13:28 +00006799
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006800 /* track first vector for misc interrupts */
6801 err = i40e_get_lump(pf, pf->irq_pile, 1, I40E_PILE_VALID_BIT-1);
6802}
6803
6804/**
6805 * i40e_setup_misc_vector - Setup the misc vector to handle non queue events
6806 * @pf: board private structure
6807 *
6808 * This sets up the handler for MSIX 0, which is used to manage the
6809 * non-queue interrupts, e.g. AdminQ and errors. This is not used
6810 * when in MSI or Legacy interrupt mode.
6811 **/
6812static int i40e_setup_misc_vector(struct i40e_pf *pf)
6813{
6814 struct i40e_hw *hw = &pf->hw;
6815 int err = 0;
6816
6817 /* Only request the irq if this is the first time through, and
6818 * not when we're rebuilding after a Reset
6819 */
6820 if (!test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state)) {
6821 err = request_irq(pf->msix_entries[0].vector,
6822 i40e_intr, 0, pf->misc_int_name, pf);
6823 if (err) {
6824 dev_info(&pf->pdev->dev,
Catherine Sullivan77fa28b2014-02-20 19:29:17 -08006825 "request_irq for %s failed: %d\n",
6826 pf->misc_int_name, err);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006827 return -EFAULT;
6828 }
6829 }
6830
6831 i40e_enable_misc_int_causes(hw);
6832
6833 /* associate no queues to the misc vector */
6834 wr32(hw, I40E_PFINT_LNKLST0, I40E_QUEUE_END_OF_LIST);
6835 wr32(hw, I40E_PFINT_ITR0(I40E_RX_ITR), I40E_ITR_8K);
6836
6837 i40e_flush(hw);
6838
6839 i40e_irq_dynamic_enable_icr0(pf);
6840
6841 return err;
6842}
6843
6844/**
6845 * i40e_config_rss - Prepare for RSS if used
6846 * @pf: board private structure
6847 **/
6848static int i40e_config_rss(struct i40e_pf *pf)
6849{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006850 /* Set of random keys generated using kernel random number generator */
6851 static const u32 seed[I40E_PFQF_HKEY_MAX_INDEX + 1] = {0x41b01687,
6852 0x183cfd8c, 0xce880440, 0x580cbc3c, 0x35897377,
6853 0x328b25e1, 0x4fa98922, 0xb7d90c14, 0xd5bad70d,
6854 0xcd15a2c1, 0xe8580225, 0x4a1e9d11, 0xfe5731be};
Anjali Singhai Jain4617e8c2013-11-20 10:02:56 +00006855 struct i40e_hw *hw = &pf->hw;
6856 u32 lut = 0;
6857 int i, j;
6858 u64 hena;
Carolyn Wybornye157ea32014-06-03 23:50:22 +00006859 u32 reg_val;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006860
6861 /* Fill out hash function seed */
6862 for (i = 0; i <= I40E_PFQF_HKEY_MAX_INDEX; i++)
6863 wr32(hw, I40E_PFQF_HKEY(i), seed[i]);
6864
6865 /* By default we enable TCP/UDP with IPv4/IPv6 ptypes */
6866 hena = (u64)rd32(hw, I40E_PFQF_HENA(0)) |
6867 ((u64)rd32(hw, I40E_PFQF_HENA(1)) << 32);
Mitch Williams12dc4fe2013-11-28 06:39:32 +00006868 hena |= I40E_DEFAULT_RSS_HENA;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006869 wr32(hw, I40E_PFQF_HENA(0), (u32)hena);
6870 wr32(hw, I40E_PFQF_HENA(1), (u32)(hena >> 32));
6871
Carolyn Wybornye157ea32014-06-03 23:50:22 +00006872 /* Check capability and Set table size and register per hw expectation*/
6873 reg_val = rd32(hw, I40E_PFQF_CTL_0);
6874 if (hw->func_caps.rss_table_size == 512) {
6875 reg_val |= I40E_PFQF_CTL_0_HASHLUTSIZE_512;
6876 pf->rss_table_size = 512;
6877 } else {
6878 pf->rss_table_size = 128;
6879 reg_val &= ~I40E_PFQF_CTL_0_HASHLUTSIZE_512;
6880 }
6881 wr32(hw, I40E_PFQF_CTL_0, reg_val);
6882
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006883 /* Populate the LUT with max no. of queues in round robin fashion */
Carolyn Wybornye157ea32014-06-03 23:50:22 +00006884 for (i = 0, j = 0; i < pf->rss_table_size; i++, j++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006885
6886 /* The assumption is that lan qp count will be the highest
6887 * qp count for any PF VSI that needs RSS.
6888 * If multiple VSIs need RSS support, all the qp counts
6889 * for those VSIs should be a power of 2 for RSS to work.
6890 * If LAN VSI is the only consumer for RSS then this requirement
6891 * is not necessary.
6892 */
6893 if (j == pf->rss_size)
6894 j = 0;
6895 /* lut = 4-byte sliding window of 4 lut entries */
6896 lut = (lut << 8) | (j &
6897 ((0x1 << pf->hw.func_caps.rss_table_entry_width) - 1));
6898 /* On i = 3, we have 4 entries in lut; write to the register */
6899 if ((i & 3) == 3)
6900 wr32(hw, I40E_PFQF_HLUT(i >> 2), lut);
6901 }
6902 i40e_flush(hw);
6903
6904 return 0;
6905}
6906
6907/**
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00006908 * i40e_reconfig_rss_queues - change number of queues for rss and rebuild
6909 * @pf: board private structure
6910 * @queue_count: the requested queue count for rss.
6911 *
6912 * returns 0 if rss is not enabled, if enabled returns the final rss queue
6913 * count which may be different from the requested queue count.
6914 **/
6915int i40e_reconfig_rss_queues(struct i40e_pf *pf, int queue_count)
6916{
6917 if (!(pf->flags & I40E_FLAG_RSS_ENABLED))
6918 return 0;
6919
6920 queue_count = min_t(int, queue_count, pf->rss_size_max);
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00006921
6922 if (queue_count != pf->rss_size) {
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00006923 i40e_prep_for_reset(pf);
6924
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00006925 pf->rss_size = queue_count;
6926
6927 i40e_reset_and_rebuild(pf, true);
6928 i40e_config_rss(pf);
6929 }
6930 dev_info(&pf->pdev->dev, "RSS count: %d\n", pf->rss_size);
6931 return pf->rss_size;
6932}
6933
6934/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006935 * i40e_sw_init - Initialize general software structures (struct i40e_pf)
6936 * @pf: board private structure to initialize
6937 *
6938 * i40e_sw_init initializes the Adapter private data structure.
6939 * Fields are initialized based on PCI device information and
6940 * OS network device settings (MTU size).
6941 **/
6942static int i40e_sw_init(struct i40e_pf *pf)
6943{
6944 int err = 0;
6945 int size;
6946
6947 pf->msg_enable = netif_msg_init(I40E_DEFAULT_MSG_ENABLE,
6948 (NETIF_MSG_DRV|NETIF_MSG_PROBE|NETIF_MSG_LINK));
Shannon Nelson27599972013-11-16 10:00:43 +00006949 pf->hw.debug_mask = pf->msg_enable | I40E_DEBUG_DIAG;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006950 if (debug != -1 && debug != I40E_DEFAULT_MSG_ENABLE) {
6951 if (I40E_DEBUG_USER & debug)
6952 pf->hw.debug_mask = debug;
6953 pf->msg_enable = netif_msg_init((debug & ~I40E_DEBUG_USER),
6954 I40E_DEFAULT_MSG_ENABLE);
6955 }
6956
6957 /* Set default capability flags */
6958 pf->flags = I40E_FLAG_RX_CSUM_ENABLED |
6959 I40E_FLAG_MSI_ENABLED |
6960 I40E_FLAG_MSIX_ENABLED |
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006961 I40E_FLAG_RX_1BUF_ENABLED;
6962
Mitch Williamsca99eb92014-04-04 04:43:07 +00006963 /* Set default ITR */
6964 pf->rx_itr_default = I40E_ITR_DYNAMIC | I40E_ITR_RX_DEF;
6965 pf->tx_itr_default = I40E_ITR_DYNAMIC | I40E_ITR_TX_DEF;
6966
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00006967 /* Depending on PF configurations, it is possible that the RSS
6968 * maximum might end up larger than the available queues
6969 */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006970 pf->rss_size_max = 0x1 << pf->hw.func_caps.rss_table_entry_width;
Paul M Stillwell Jrec9a7db2014-07-09 07:46:10 +00006971 pf->rss_size = 1;
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00006972 pf->rss_size_max = min_t(int, pf->rss_size_max,
6973 pf->hw.func_caps.num_tx_qp);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006974 if (pf->hw.func_caps.rss) {
6975 pf->flags |= I40E_FLAG_RSS_ENABLED;
Jesse Brandeburgbf051a32013-11-26 10:49:17 +00006976 pf->rss_size = min_t(int, pf->rss_size_max, num_online_cpus());
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006977 }
6978
Catherine Sullivan2050bc62013-12-18 13:46:03 +00006979 /* MFP mode enabled */
6980 if (pf->hw.func_caps.npar_enable || pf->hw.func_caps.mfp_mode_1) {
6981 pf->flags |= I40E_FLAG_MFP_ENABLED;
6982 dev_info(&pf->pdev->dev, "MFP mode Enabled\n");
6983 }
6984
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006985 /* FW/NVM is not yet fixed in this regard */
6986 if ((pf->hw.func_caps.fd_filters_guaranteed > 0) ||
6987 (pf->hw.func_caps.fd_filters_best_effort > 0)) {
6988 pf->flags |= I40E_FLAG_FD_ATR_ENABLED;
6989 pf->atr_sample_rate = I40E_DEFAULT_ATR_SAMPLE_RATE;
Anjali Singhai Jain433c47d2014-05-22 06:32:17 +00006990 /* Setup a counter for fd_atr per pf */
6991 pf->fd_atr_cnt_idx = I40E_FD_ATR_STAT_IDX(pf->hw.pf_id);
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006992 if (!(pf->flags & I40E_FLAG_MFP_ENABLED)) {
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08006993 pf->flags |= I40E_FLAG_FD_SB_ENABLED;
Anjali Singhai Jain433c47d2014-05-22 06:32:17 +00006994 /* Setup a counter for fd_sb per pf */
6995 pf->fd_sb_cnt_idx = I40E_FD_SB_STAT_IDX(pf->hw.pf_id);
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006996 } else {
6997 dev_info(&pf->pdev->dev,
Anjali Singhai Jain0b675842014-03-06 08:59:51 +00006998 "Flow Director Sideband mode Disabled in MFP mode\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006999 }
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08007000 pf->fdir_pf_filter_count =
7001 pf->hw.func_caps.fd_filters_guaranteed;
7002 pf->hw.fdir_shared_filter_count =
7003 pf->hw.func_caps.fd_filters_best_effort;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007004 }
7005
7006 if (pf->hw.func_caps.vmdq) {
7007 pf->flags |= I40E_FLAG_VMDQ_ENABLED;
7008 pf->num_vmdq_vsis = I40E_DEFAULT_NUM_VMDQ_VSI;
7009 pf->num_vmdq_qps = I40E_DEFAULT_QUEUES_PER_VMDQ;
7010 }
7011
Vasu Dev38e00432014-08-01 13:27:03 -07007012#ifdef I40E_FCOE
7013 err = i40e_init_pf_fcoe(pf);
7014 if (err)
7015 dev_info(&pf->pdev->dev, "init_pf_fcoe failed: %d\n", err);
7016
7017#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007018#ifdef CONFIG_PCI_IOV
7019 if (pf->hw.func_caps.num_vfs) {
7020 pf->num_vf_qps = I40E_DEFAULT_QUEUES_PER_VF;
7021 pf->flags |= I40E_FLAG_SRIOV_ENABLED;
7022 pf->num_req_vfs = min_t(int,
7023 pf->hw.func_caps.num_vfs,
7024 I40E_MAX_VF_COUNT);
7025 }
7026#endif /* CONFIG_PCI_IOV */
7027 pf->eeprom_version = 0xDEAD;
7028 pf->lan_veb = I40E_NO_VEB;
7029 pf->lan_vsi = I40E_NO_VSI;
7030
7031 /* set up queue assignment tracking */
7032 size = sizeof(struct i40e_lump_tracking)
7033 + (sizeof(u16) * pf->hw.func_caps.num_tx_qp);
7034 pf->qp_pile = kzalloc(size, GFP_KERNEL);
7035 if (!pf->qp_pile) {
7036 err = -ENOMEM;
7037 goto sw_init_done;
7038 }
7039 pf->qp_pile->num_entries = pf->hw.func_caps.num_tx_qp;
7040 pf->qp_pile->search_hint = 0;
7041
7042 /* set up vector assignment tracking */
7043 size = sizeof(struct i40e_lump_tracking)
7044 + (sizeof(u16) * pf->hw.func_caps.num_msix_vectors);
7045 pf->irq_pile = kzalloc(size, GFP_KERNEL);
7046 if (!pf->irq_pile) {
7047 kfree(pf->qp_pile);
7048 err = -ENOMEM;
7049 goto sw_init_done;
7050 }
7051 pf->irq_pile->num_entries = pf->hw.func_caps.num_msix_vectors;
7052 pf->irq_pile->search_hint = 0;
7053
Anjali Singhai Jain327fe042014-06-04 01:23:26 +00007054 pf->tx_timeout_recovery_level = 1;
7055
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007056 mutex_init(&pf->switch_mutex);
7057
7058sw_init_done:
7059 return err;
7060}
7061
7062/**
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00007063 * i40e_set_ntuple - set the ntuple feature flag and take action
7064 * @pf: board private structure to initialize
7065 * @features: the feature set that the stack is suggesting
7066 *
7067 * returns a bool to indicate if reset needs to happen
7068 **/
7069bool i40e_set_ntuple(struct i40e_pf *pf, netdev_features_t features)
7070{
7071 bool need_reset = false;
7072
7073 /* Check if Flow Director n-tuple support was enabled or disabled. If
7074 * the state changed, we need to reset.
7075 */
7076 if (features & NETIF_F_NTUPLE) {
7077 /* Enable filters and mark for reset */
7078 if (!(pf->flags & I40E_FLAG_FD_SB_ENABLED))
7079 need_reset = true;
7080 pf->flags |= I40E_FLAG_FD_SB_ENABLED;
7081 } else {
7082 /* turn off filters, mark for reset and clear SW filter list */
7083 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
7084 need_reset = true;
7085 i40e_fdir_filter_exit(pf);
7086 }
7087 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
Anjali Singhai Jain8a4f34f2014-06-04 08:45:20 +00007088 pf->auto_disable_flags &= ~I40E_FLAG_FD_SB_ENABLED;
7089 /* if ATR was auto disabled it can be re-enabled. */
7090 if ((pf->flags & I40E_FLAG_FD_ATR_ENABLED) &&
7091 (pf->auto_disable_flags & I40E_FLAG_FD_ATR_ENABLED))
7092 pf->auto_disable_flags &= ~I40E_FLAG_FD_ATR_ENABLED;
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00007093 }
7094 return need_reset;
7095}
7096
7097/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007098 * i40e_set_features - set the netdev feature flags
7099 * @netdev: ptr to the netdev being adjusted
7100 * @features: the feature set that the stack is suggesting
7101 **/
7102static int i40e_set_features(struct net_device *netdev,
7103 netdev_features_t features)
7104{
7105 struct i40e_netdev_priv *np = netdev_priv(netdev);
7106 struct i40e_vsi *vsi = np->vsi;
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00007107 struct i40e_pf *pf = vsi->back;
7108 bool need_reset;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007109
7110 if (features & NETIF_F_HW_VLAN_CTAG_RX)
7111 i40e_vlan_stripping_enable(vsi);
7112 else
7113 i40e_vlan_stripping_disable(vsi);
7114
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00007115 need_reset = i40e_set_ntuple(pf, features);
7116
7117 if (need_reset)
7118 i40e_do_reset(pf, (1 << __I40E_PF_RESET_REQUESTED));
7119
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007120 return 0;
7121}
7122
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007123#ifdef CONFIG_I40E_VXLAN
7124/**
7125 * i40e_get_vxlan_port_idx - Lookup a possibly offloaded for Rx UDP port
7126 * @pf: board private structure
7127 * @port: The UDP port to look up
7128 *
7129 * Returns the index number or I40E_MAX_PF_UDP_OFFLOAD_PORTS if port not found
7130 **/
7131static u8 i40e_get_vxlan_port_idx(struct i40e_pf *pf, __be16 port)
7132{
7133 u8 i;
7134
7135 for (i = 0; i < I40E_MAX_PF_UDP_OFFLOAD_PORTS; i++) {
7136 if (pf->vxlan_ports[i] == port)
7137 return i;
7138 }
7139
7140 return i;
7141}
7142
7143/**
7144 * i40e_add_vxlan_port - Get notifications about VXLAN ports that come up
7145 * @netdev: This physical port's netdev
7146 * @sa_family: Socket Family that VXLAN is notifying us about
7147 * @port: New UDP port number that VXLAN started listening to
7148 **/
7149static void i40e_add_vxlan_port(struct net_device *netdev,
7150 sa_family_t sa_family, __be16 port)
7151{
7152 struct i40e_netdev_priv *np = netdev_priv(netdev);
7153 struct i40e_vsi *vsi = np->vsi;
7154 struct i40e_pf *pf = vsi->back;
7155 u8 next_idx;
7156 u8 idx;
7157
7158 if (sa_family == AF_INET6)
7159 return;
7160
7161 idx = i40e_get_vxlan_port_idx(pf, port);
7162
7163 /* Check if port already exists */
7164 if (idx < I40E_MAX_PF_UDP_OFFLOAD_PORTS) {
7165 netdev_info(netdev, "Port %d already offloaded\n", ntohs(port));
7166 return;
7167 }
7168
7169 /* Now check if there is space to add the new port */
7170 next_idx = i40e_get_vxlan_port_idx(pf, 0);
7171
7172 if (next_idx == I40E_MAX_PF_UDP_OFFLOAD_PORTS) {
7173 netdev_info(netdev, "Maximum number of UDP ports reached, not adding port %d\n",
7174 ntohs(port));
7175 return;
7176 }
7177
7178 /* New port: add it and mark its index in the bitmap */
7179 pf->vxlan_ports[next_idx] = port;
7180 pf->pending_vxlan_bitmap |= (1 << next_idx);
7181
7182 pf->flags |= I40E_FLAG_VXLAN_FILTER_SYNC;
7183}
7184
7185/**
7186 * i40e_del_vxlan_port - Get notifications about VXLAN ports that go away
7187 * @netdev: This physical port's netdev
7188 * @sa_family: Socket Family that VXLAN is notifying us about
7189 * @port: UDP port number that VXLAN stopped listening to
7190 **/
7191static void i40e_del_vxlan_port(struct net_device *netdev,
7192 sa_family_t sa_family, __be16 port)
7193{
7194 struct i40e_netdev_priv *np = netdev_priv(netdev);
7195 struct i40e_vsi *vsi = np->vsi;
7196 struct i40e_pf *pf = vsi->back;
7197 u8 idx;
7198
7199 if (sa_family == AF_INET6)
7200 return;
7201
7202 idx = i40e_get_vxlan_port_idx(pf, port);
7203
7204 /* Check if port already exists */
7205 if (idx < I40E_MAX_PF_UDP_OFFLOAD_PORTS) {
7206 /* if port exists, set it to 0 (mark for deletion)
7207 * and make it pending
7208 */
7209 pf->vxlan_ports[idx] = 0;
7210
7211 pf->pending_vxlan_bitmap |= (1 << idx);
7212
7213 pf->flags |= I40E_FLAG_VXLAN_FILTER_SYNC;
7214 } else {
7215 netdev_warn(netdev, "Port %d was not found, not deleting\n",
7216 ntohs(port));
7217 }
7218}
7219
7220#endif
Neerav Parikh1f224ad2014-02-12 01:45:31 +00007221static int i40e_get_phys_port_id(struct net_device *netdev,
7222 struct netdev_phys_port_id *ppid)
7223{
7224 struct i40e_netdev_priv *np = netdev_priv(netdev);
7225 struct i40e_pf *pf = np->vsi->back;
7226 struct i40e_hw *hw = &pf->hw;
7227
7228 if (!(pf->flags & I40E_FLAG_PORT_ID_VALID))
7229 return -EOPNOTSUPP;
7230
7231 ppid->id_len = min_t(int, sizeof(hw->mac.port_addr), sizeof(ppid->id));
7232 memcpy(ppid->id, hw->mac.port_addr, ppid->id_len);
7233
7234 return 0;
7235}
7236
Greg Rose4ba0dea2014-03-06 08:59:55 +00007237#ifdef HAVE_FDB_OPS
7238#ifdef USE_CONST_DEV_UC_CHAR
7239static int i40e_ndo_fdb_add(struct ndmsg *ndm, struct nlattr *tb[],
7240 struct net_device *dev,
7241 const unsigned char *addr,
7242 u16 flags)
7243#else
7244static int i40e_ndo_fdb_add(struct ndmsg *ndm,
7245 struct net_device *dev,
7246 unsigned char *addr,
7247 u16 flags)
7248#endif
7249{
7250 struct i40e_netdev_priv *np = netdev_priv(dev);
7251 struct i40e_pf *pf = np->vsi->back;
7252 int err = 0;
7253
7254 if (!(pf->flags & I40E_FLAG_SRIOV_ENABLED))
7255 return -EOPNOTSUPP;
7256
7257 /* Hardware does not support aging addresses so if a
7258 * ndm_state is given only allow permanent addresses
7259 */
7260 if (ndm->ndm_state && !(ndm->ndm_state & NUD_PERMANENT)) {
7261 netdev_info(dev, "FDB only supports static addresses\n");
7262 return -EINVAL;
7263 }
7264
7265 if (is_unicast_ether_addr(addr) || is_link_local_ether_addr(addr))
7266 err = dev_uc_add_excl(dev, addr);
7267 else if (is_multicast_ether_addr(addr))
7268 err = dev_mc_add_excl(dev, addr);
7269 else
7270 err = -EINVAL;
7271
7272 /* Only return duplicate errors if NLM_F_EXCL is set */
7273 if (err == -EEXIST && !(flags & NLM_F_EXCL))
7274 err = 0;
7275
7276 return err;
7277}
7278
7279#ifndef USE_DEFAULT_FDB_DEL_DUMP
7280#ifdef USE_CONST_DEV_UC_CHAR
7281static int i40e_ndo_fdb_del(struct ndmsg *ndm,
7282 struct net_device *dev,
7283 const unsigned char *addr)
7284#else
7285static int i40e_ndo_fdb_del(struct ndmsg *ndm,
7286 struct net_device *dev,
7287 unsigned char *addr)
7288#endif
7289{
7290 struct i40e_netdev_priv *np = netdev_priv(dev);
7291 struct i40e_pf *pf = np->vsi->back;
7292 int err = -EOPNOTSUPP;
7293
7294 if (ndm->ndm_state & NUD_PERMANENT) {
7295 netdev_info(dev, "FDB only supports static addresses\n");
7296 return -EINVAL;
7297 }
7298
7299 if (pf->flags & I40E_FLAG_SRIOV_ENABLED) {
7300 if (is_unicast_ether_addr(addr))
7301 err = dev_uc_del(dev, addr);
7302 else if (is_multicast_ether_addr(addr))
7303 err = dev_mc_del(dev, addr);
7304 else
7305 err = -EINVAL;
7306 }
7307
7308 return err;
7309}
7310
7311static int i40e_ndo_fdb_dump(struct sk_buff *skb,
7312 struct netlink_callback *cb,
7313 struct net_device *dev,
Jamal Hadi Salim5d5eacb2014-07-10 07:01:58 -04007314 struct net_device *filter_dev,
Greg Rose4ba0dea2014-03-06 08:59:55 +00007315 int idx)
7316{
7317 struct i40e_netdev_priv *np = netdev_priv(dev);
7318 struct i40e_pf *pf = np->vsi->back;
7319
7320 if (pf->flags & I40E_FLAG_SRIOV_ENABLED)
Jamal Hadi Salim5d5eacb2014-07-10 07:01:58 -04007321 idx = ndo_dflt_fdb_dump(skb, cb, dev, filter_dev, idx);
Greg Rose4ba0dea2014-03-06 08:59:55 +00007322
7323 return idx;
7324}
7325
7326#endif /* USE_DEFAULT_FDB_DEL_DUMP */
7327#endif /* HAVE_FDB_OPS */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007328static const struct net_device_ops i40e_netdev_ops = {
7329 .ndo_open = i40e_open,
7330 .ndo_stop = i40e_close,
7331 .ndo_start_xmit = i40e_lan_xmit_frame,
7332 .ndo_get_stats64 = i40e_get_netdev_stats_struct,
7333 .ndo_set_rx_mode = i40e_set_rx_mode,
7334 .ndo_validate_addr = eth_validate_addr,
7335 .ndo_set_mac_address = i40e_set_mac,
7336 .ndo_change_mtu = i40e_change_mtu,
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00007337 .ndo_do_ioctl = i40e_ioctl,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007338 .ndo_tx_timeout = i40e_tx_timeout,
7339 .ndo_vlan_rx_add_vid = i40e_vlan_rx_add_vid,
7340 .ndo_vlan_rx_kill_vid = i40e_vlan_rx_kill_vid,
7341#ifdef CONFIG_NET_POLL_CONTROLLER
7342 .ndo_poll_controller = i40e_netpoll,
7343#endif
7344 .ndo_setup_tc = i40e_setup_tc,
Vasu Dev38e00432014-08-01 13:27:03 -07007345#ifdef I40E_FCOE
7346 .ndo_fcoe_enable = i40e_fcoe_enable,
7347 .ndo_fcoe_disable = i40e_fcoe_disable,
7348#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007349 .ndo_set_features = i40e_set_features,
7350 .ndo_set_vf_mac = i40e_ndo_set_vf_mac,
7351 .ndo_set_vf_vlan = i40e_ndo_set_vf_port_vlan,
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04007352 .ndo_set_vf_rate = i40e_ndo_set_vf_bw,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007353 .ndo_get_vf_config = i40e_ndo_get_vf_config,
Mitch Williams588aefa2014-02-11 08:27:49 +00007354 .ndo_set_vf_link_state = i40e_ndo_set_vf_link_state,
Mitch Williamsc674d122014-05-20 08:01:40 +00007355 .ndo_set_vf_spoofchk = i40e_ndo_set_vf_spoofck,
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007356#ifdef CONFIG_I40E_VXLAN
7357 .ndo_add_vxlan_port = i40e_add_vxlan_port,
7358 .ndo_del_vxlan_port = i40e_del_vxlan_port,
7359#endif
Neerav Parikh1f224ad2014-02-12 01:45:31 +00007360 .ndo_get_phys_port_id = i40e_get_phys_port_id,
Greg Rose4ba0dea2014-03-06 08:59:55 +00007361#ifdef HAVE_FDB_OPS
7362 .ndo_fdb_add = i40e_ndo_fdb_add,
7363#ifndef USE_DEFAULT_FDB_DEL_DUMP
7364 .ndo_fdb_del = i40e_ndo_fdb_del,
7365 .ndo_fdb_dump = i40e_ndo_fdb_dump,
7366#endif
7367#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007368};
7369
7370/**
7371 * i40e_config_netdev - Setup the netdev flags
7372 * @vsi: the VSI being configured
7373 *
7374 * Returns 0 on success, negative value on failure
7375 **/
7376static int i40e_config_netdev(struct i40e_vsi *vsi)
7377{
Greg Rose1a103702013-11-28 06:42:39 +00007378 u8 brdcast[ETH_ALEN] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007379 struct i40e_pf *pf = vsi->back;
7380 struct i40e_hw *hw = &pf->hw;
7381 struct i40e_netdev_priv *np;
7382 struct net_device *netdev;
7383 u8 mac_addr[ETH_ALEN];
7384 int etherdev_size;
7385
7386 etherdev_size = sizeof(struct i40e_netdev_priv);
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00007387 netdev = alloc_etherdev_mq(etherdev_size, vsi->alloc_queue_pairs);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007388 if (!netdev)
7389 return -ENOMEM;
7390
7391 vsi->netdev = netdev;
7392 np = netdev_priv(netdev);
7393 np->vsi = vsi;
7394
Or Gerlitzd70e9412014-03-18 10:36:45 +02007395 netdev->hw_enc_features |= NETIF_F_IP_CSUM |
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007396 NETIF_F_GSO_UDP_TUNNEL |
Or Gerlitzd70e9412014-03-18 10:36:45 +02007397 NETIF_F_TSO;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007398
7399 netdev->features = NETIF_F_SG |
7400 NETIF_F_IP_CSUM |
7401 NETIF_F_SCTP_CSUM |
7402 NETIF_F_HIGHDMA |
7403 NETIF_F_GSO_UDP_TUNNEL |
7404 NETIF_F_HW_VLAN_CTAG_TX |
7405 NETIF_F_HW_VLAN_CTAG_RX |
7406 NETIF_F_HW_VLAN_CTAG_FILTER |
7407 NETIF_F_IPV6_CSUM |
7408 NETIF_F_TSO |
Jesse Brandeburg059dab62014-04-01 09:07:20 +00007409 NETIF_F_TSO_ECN |
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007410 NETIF_F_TSO6 |
7411 NETIF_F_RXCSUM |
7412 NETIF_F_RXHASH |
7413 0;
7414
Anjali Singhai Jain2e86a0b2014-04-01 07:11:53 +00007415 if (!(pf->flags & I40E_FLAG_MFP_ENABLED))
7416 netdev->features |= NETIF_F_NTUPLE;
7417
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007418 /* copy netdev features into list of user selectable features */
7419 netdev->hw_features |= netdev->features;
7420
7421 if (vsi->type == I40E_VSI_MAIN) {
7422 SET_NETDEV_DEV(netdev, &pf->pdev->dev);
Greg Rose9a173902014-05-22 06:32:02 +00007423 ether_addr_copy(mac_addr, hw->mac.perm_addr);
Greg Rose8c27d422014-05-22 06:31:56 +00007424 /* The following two steps are necessary to prevent reception
7425 * of tagged packets - by default the NVM loads a MAC-VLAN
7426 * filter that will accept any tagged packet. This is to
7427 * prevent that during normal operations until a specific
7428 * VLAN tag filter has been set.
7429 */
7430 i40e_rm_default_mac_filter(vsi, mac_addr);
7431 i40e_add_filter(vsi, mac_addr, I40E_VLAN_ANY, false, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007432 } else {
7433 /* relate the VSI_VMDQ name to the VSI_MAIN name */
7434 snprintf(netdev->name, IFNAMSIZ, "%sv%%d",
7435 pf->vsi[pf->lan_vsi]->netdev->name);
7436 random_ether_addr(mac_addr);
7437 i40e_add_filter(vsi, mac_addr, I40E_VLAN_ANY, false, false);
7438 }
Greg Rose1a103702013-11-28 06:42:39 +00007439 i40e_add_filter(vsi, brdcast, I40E_VLAN_ANY, false, false);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007440
Greg Rose9a173902014-05-22 06:32:02 +00007441 ether_addr_copy(netdev->dev_addr, mac_addr);
7442 ether_addr_copy(netdev->perm_addr, mac_addr);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007443 /* vlan gets same features (except vlan offload)
7444 * after any tweaks for specific VSI types
7445 */
7446 netdev->vlan_features = netdev->features & ~(NETIF_F_HW_VLAN_CTAG_TX |
7447 NETIF_F_HW_VLAN_CTAG_RX |
7448 NETIF_F_HW_VLAN_CTAG_FILTER);
7449 netdev->priv_flags |= IFF_UNICAST_FLT;
7450 netdev->priv_flags |= IFF_SUPP_NOFCS;
7451 /* Setup netdev TC information */
7452 i40e_vsi_config_netdev_tc(vsi, vsi->tc_config.enabled_tc);
7453
7454 netdev->netdev_ops = &i40e_netdev_ops;
7455 netdev->watchdog_timeo = 5 * HZ;
7456 i40e_set_ethtool_ops(netdev);
Vasu Dev38e00432014-08-01 13:27:03 -07007457#ifdef I40E_FCOE
7458 i40e_fcoe_config_netdev(netdev, vsi);
7459#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007460
7461 return 0;
7462}
7463
7464/**
7465 * i40e_vsi_delete - Delete a VSI from the switch
7466 * @vsi: the VSI being removed
7467 *
7468 * Returns 0 on success, negative value on failure
7469 **/
7470static void i40e_vsi_delete(struct i40e_vsi *vsi)
7471{
7472 /* remove default VSI is not allowed */
7473 if (vsi == vsi->back->vsi[vsi->back->lan_vsi])
7474 return;
7475
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007476 i40e_aq_delete_element(&vsi->back->hw, vsi->seid, NULL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007477}
7478
7479/**
7480 * i40e_add_vsi - Add a VSI to the switch
7481 * @vsi: the VSI being configured
7482 *
7483 * This initializes a VSI context depending on the VSI type to be added and
7484 * passes it down to the add_vsi aq command.
7485 **/
7486static int i40e_add_vsi(struct i40e_vsi *vsi)
7487{
7488 int ret = -ENODEV;
7489 struct i40e_mac_filter *f, *ftmp;
7490 struct i40e_pf *pf = vsi->back;
7491 struct i40e_hw *hw = &pf->hw;
7492 struct i40e_vsi_context ctxt;
7493 u8 enabled_tc = 0x1; /* TC0 enabled */
7494 int f_count = 0;
7495
7496 memset(&ctxt, 0, sizeof(ctxt));
7497 switch (vsi->type) {
7498 case I40E_VSI_MAIN:
7499 /* The PF's main VSI is already setup as part of the
7500 * device initialization, so we'll not bother with
7501 * the add_vsi call, but we will retrieve the current
7502 * VSI context.
7503 */
7504 ctxt.seid = pf->main_vsi_seid;
7505 ctxt.pf_num = pf->hw.pf_id;
7506 ctxt.vf_num = 0;
7507 ret = i40e_aq_get_vsi_params(&pf->hw, &ctxt, NULL);
7508 ctxt.flags = I40E_AQ_VSI_TYPE_PF;
7509 if (ret) {
7510 dev_info(&pf->pdev->dev,
7511 "couldn't get pf vsi config, err %d, aq_err %d\n",
7512 ret, pf->hw.aq.asq_last_status);
7513 return -ENOENT;
7514 }
7515 memcpy(&vsi->info, &ctxt.info, sizeof(ctxt.info));
7516 vsi->info.valid_sections = 0;
7517
7518 vsi->seid = ctxt.seid;
7519 vsi->id = ctxt.vsi_number;
7520
7521 enabled_tc = i40e_pf_get_tc_map(pf);
7522
7523 /* MFP mode setup queue map and update VSI */
7524 if (pf->flags & I40E_FLAG_MFP_ENABLED) {
7525 memset(&ctxt, 0, sizeof(ctxt));
7526 ctxt.seid = pf->main_vsi_seid;
7527 ctxt.pf_num = pf->hw.pf_id;
7528 ctxt.vf_num = 0;
7529 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, false);
7530 ret = i40e_aq_update_vsi_params(hw, &ctxt, NULL);
7531 if (ret) {
7532 dev_info(&pf->pdev->dev,
7533 "update vsi failed, aq_err=%d\n",
7534 pf->hw.aq.asq_last_status);
7535 ret = -ENOENT;
7536 goto err;
7537 }
7538 /* update the local VSI info queue map */
7539 i40e_vsi_update_queue_map(vsi, &ctxt);
7540 vsi->info.valid_sections = 0;
7541 } else {
7542 /* Default/Main VSI is only enabled for TC0
7543 * reconfigure it to enable all TCs that are
7544 * available on the port in SFP mode.
7545 */
7546 ret = i40e_vsi_config_tc(vsi, enabled_tc);
7547 if (ret) {
7548 dev_info(&pf->pdev->dev,
7549 "failed to configure TCs for main VSI tc_map 0x%08x, err %d, aq_err %d\n",
7550 enabled_tc, ret,
7551 pf->hw.aq.asq_last_status);
7552 ret = -ENOENT;
7553 }
7554 }
7555 break;
7556
7557 case I40E_VSI_FDIR:
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08007558 ctxt.pf_num = hw->pf_id;
7559 ctxt.vf_num = 0;
7560 ctxt.uplink_seid = vsi->uplink_seid;
7561 ctxt.connection_type = 0x1; /* regular data port */
7562 ctxt.flags = I40E_AQ_VSI_TYPE_PF;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007563 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007564 break;
7565
7566 case I40E_VSI_VMDQ2:
7567 ctxt.pf_num = hw->pf_id;
7568 ctxt.vf_num = 0;
7569 ctxt.uplink_seid = vsi->uplink_seid;
7570 ctxt.connection_type = 0x1; /* regular data port */
7571 ctxt.flags = I40E_AQ_VSI_TYPE_VMDQ2;
7572
7573 ctxt.info.valid_sections |= cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
7574
7575 /* This VSI is connected to VEB so the switch_id
7576 * should be set to zero by default.
7577 */
7578 ctxt.info.switch_id = 0;
7579 ctxt.info.switch_id |= cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_LOCAL_LB);
7580 ctxt.info.switch_id |= cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
7581
7582 /* Setup the VSI tx/rx queue map for TC0 only for now */
7583 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, true);
7584 break;
7585
7586 case I40E_VSI_SRIOV:
7587 ctxt.pf_num = hw->pf_id;
7588 ctxt.vf_num = vsi->vf_id + hw->func_caps.vf_base_id;
7589 ctxt.uplink_seid = vsi->uplink_seid;
7590 ctxt.connection_type = 0x1; /* regular data port */
7591 ctxt.flags = I40E_AQ_VSI_TYPE_VF;
7592
7593 ctxt.info.valid_sections |= cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
7594
7595 /* This VSI is connected to VEB so the switch_id
7596 * should be set to zero by default.
7597 */
7598 ctxt.info.switch_id = cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
7599
7600 ctxt.info.valid_sections |= cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
7601 ctxt.info.port_vlan_flags |= I40E_AQ_VSI_PVLAN_MODE_ALL;
Mitch Williamsc674d122014-05-20 08:01:40 +00007602 if (pf->vf[vsi->vf_id].spoofchk) {
7603 ctxt.info.valid_sections |=
7604 cpu_to_le16(I40E_AQ_VSI_PROP_SECURITY_VALID);
7605 ctxt.info.sec_flags |=
7606 (I40E_AQ_VSI_SEC_FLAG_ENABLE_VLAN_CHK |
7607 I40E_AQ_VSI_SEC_FLAG_ENABLE_MAC_CHK);
7608 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007609 /* Setup the VSI tx/rx queue map for TC0 only for now */
7610 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, true);
7611 break;
7612
Vasu Dev38e00432014-08-01 13:27:03 -07007613#ifdef I40E_FCOE
7614 case I40E_VSI_FCOE:
7615 ret = i40e_fcoe_vsi_init(vsi, &ctxt);
7616 if (ret) {
7617 dev_info(&pf->pdev->dev, "failed to initialize FCoE VSI\n");
7618 return ret;
7619 }
7620 break;
7621
7622#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007623 default:
7624 return -ENODEV;
7625 }
7626
7627 if (vsi->type != I40E_VSI_MAIN) {
7628 ret = i40e_aq_add_vsi(hw, &ctxt, NULL);
7629 if (ret) {
7630 dev_info(&vsi->back->pdev->dev,
7631 "add vsi failed, aq_err=%d\n",
7632 vsi->back->hw.aq.asq_last_status);
7633 ret = -ENOENT;
7634 goto err;
7635 }
7636 memcpy(&vsi->info, &ctxt.info, sizeof(ctxt.info));
7637 vsi->info.valid_sections = 0;
7638 vsi->seid = ctxt.seid;
7639 vsi->id = ctxt.vsi_number;
7640 }
7641
7642 /* If macvlan filters already exist, force them to get loaded */
7643 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
7644 f->changed = true;
7645 f_count++;
Shannon Nelson6252c7e2014-06-04 01:23:23 +00007646
7647 if (f->is_laa && vsi->type == I40E_VSI_MAIN) {
7648 i40e_aq_mac_address_write(&vsi->back->hw,
7649 I40E_AQC_WRITE_TYPE_LAA_WOL,
7650 f->macaddr, NULL);
7651 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007652 }
7653 if (f_count) {
7654 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
7655 pf->flags |= I40E_FLAG_FILTER_SYNC;
7656 }
7657
7658 /* Update VSI BW information */
7659 ret = i40e_vsi_get_bw_info(vsi);
7660 if (ret) {
7661 dev_info(&pf->pdev->dev,
7662 "couldn't get vsi bw info, err %d, aq_err %d\n",
7663 ret, pf->hw.aq.asq_last_status);
7664 /* VSI is already added so not tearing that up */
7665 ret = 0;
7666 }
7667
7668err:
7669 return ret;
7670}
7671
7672/**
7673 * i40e_vsi_release - Delete a VSI and free its resources
7674 * @vsi: the VSI being removed
7675 *
7676 * Returns 0 on success or < 0 on error
7677 **/
7678int i40e_vsi_release(struct i40e_vsi *vsi)
7679{
7680 struct i40e_mac_filter *f, *ftmp;
7681 struct i40e_veb *veb = NULL;
7682 struct i40e_pf *pf;
7683 u16 uplink_seid;
7684 int i, n;
7685
7686 pf = vsi->back;
7687
7688 /* release of a VEB-owner or last VSI is not allowed */
7689 if (vsi->flags & I40E_VSI_FLAG_VEB_OWNER) {
7690 dev_info(&pf->pdev->dev, "VSI %d has existing VEB %d\n",
7691 vsi->seid, vsi->uplink_seid);
7692 return -ENODEV;
7693 }
7694 if (vsi == pf->vsi[pf->lan_vsi] &&
7695 !test_bit(__I40E_DOWN, &pf->state)) {
7696 dev_info(&pf->pdev->dev, "Can't remove PF VSI\n");
7697 return -ENODEV;
7698 }
7699
7700 uplink_seid = vsi->uplink_seid;
7701 if (vsi->type != I40E_VSI_SRIOV) {
7702 if (vsi->netdev_registered) {
7703 vsi->netdev_registered = false;
7704 if (vsi->netdev) {
7705 /* results in a call to i40e_close() */
7706 unregister_netdev(vsi->netdev);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007707 }
7708 } else {
Shannon Nelson90ef8d42014-03-14 07:32:26 +00007709 i40e_vsi_close(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007710 }
7711 i40e_vsi_disable_irq(vsi);
7712 }
7713
7714 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list)
7715 i40e_del_filter(vsi, f->macaddr, f->vlan,
7716 f->is_vf, f->is_netdev);
7717 i40e_sync_vsi_filters(vsi);
7718
7719 i40e_vsi_delete(vsi);
7720 i40e_vsi_free_q_vectors(vsi);
Shannon Nelsona4866592014-02-11 08:24:07 +00007721 if (vsi->netdev) {
7722 free_netdev(vsi->netdev);
7723 vsi->netdev = NULL;
7724 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007725 i40e_vsi_clear_rings(vsi);
7726 i40e_vsi_clear(vsi);
7727
7728 /* If this was the last thing on the VEB, except for the
7729 * controlling VSI, remove the VEB, which puts the controlling
7730 * VSI onto the next level down in the switch.
7731 *
7732 * Well, okay, there's one more exception here: don't remove
7733 * the orphan VEBs yet. We'll wait for an explicit remove request
7734 * from up the network stack.
7735 */
Mitch Williams505682c2014-05-20 08:01:37 +00007736 for (n = 0, i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007737 if (pf->vsi[i] &&
7738 pf->vsi[i]->uplink_seid == uplink_seid &&
7739 (pf->vsi[i]->flags & I40E_VSI_FLAG_VEB_OWNER) == 0) {
7740 n++; /* count the VSIs */
7741 }
7742 }
7743 for (i = 0; i < I40E_MAX_VEB; i++) {
7744 if (!pf->veb[i])
7745 continue;
7746 if (pf->veb[i]->uplink_seid == uplink_seid)
7747 n++; /* count the VEBs */
7748 if (pf->veb[i]->seid == uplink_seid)
7749 veb = pf->veb[i];
7750 }
7751 if (n == 0 && veb && veb->uplink_seid != 0)
7752 i40e_veb_release(veb);
7753
7754 return 0;
7755}
7756
7757/**
7758 * i40e_vsi_setup_vectors - Set up the q_vectors for the given VSI
7759 * @vsi: ptr to the VSI
7760 *
7761 * This should only be called after i40e_vsi_mem_alloc() which allocates the
7762 * corresponding SW VSI structure and initializes num_queue_pairs for the
7763 * newly allocated VSI.
7764 *
7765 * Returns 0 on success or negative on failure
7766 **/
7767static int i40e_vsi_setup_vectors(struct i40e_vsi *vsi)
7768{
7769 int ret = -ENOENT;
7770 struct i40e_pf *pf = vsi->back;
7771
Alexander Duyck493fb302013-09-28 07:01:44 +00007772 if (vsi->q_vectors[0]) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007773 dev_info(&pf->pdev->dev, "VSI %d has existing q_vectors\n",
7774 vsi->seid);
7775 return -EEXIST;
7776 }
7777
7778 if (vsi->base_vector) {
Jesse Brandeburgf29eaa32014-02-11 08:24:12 +00007779 dev_info(&pf->pdev->dev, "VSI %d has non-zero base vector %d\n",
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007780 vsi->seid, vsi->base_vector);
7781 return -EEXIST;
7782 }
7783
Greg Rose90e04072014-03-06 08:59:57 +00007784 ret = i40e_vsi_alloc_q_vectors(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007785 if (ret) {
7786 dev_info(&pf->pdev->dev,
7787 "failed to allocate %d q_vector for VSI %d, ret=%d\n",
7788 vsi->num_q_vectors, vsi->seid, ret);
7789 vsi->num_q_vectors = 0;
7790 goto vector_setup_out;
7791 }
7792
Shannon Nelson958a3e32013-09-28 07:13:28 +00007793 if (vsi->num_q_vectors)
7794 vsi->base_vector = i40e_get_lump(pf, pf->irq_pile,
7795 vsi->num_q_vectors, vsi->idx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007796 if (vsi->base_vector < 0) {
7797 dev_info(&pf->pdev->dev,
Jesse Brandeburgf29eaa32014-02-11 08:24:12 +00007798 "failed to get queue tracking for VSI %d, err=%d\n",
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007799 vsi->seid, vsi->base_vector);
7800 i40e_vsi_free_q_vectors(vsi);
7801 ret = -ENOENT;
7802 goto vector_setup_out;
7803 }
7804
7805vector_setup_out:
7806 return ret;
7807}
7808
7809/**
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007810 * i40e_vsi_reinit_setup - return and reallocate resources for a VSI
7811 * @vsi: pointer to the vsi.
7812 *
7813 * This re-allocates a vsi's queue resources.
7814 *
7815 * Returns pointer to the successfully allocated and configured VSI sw struct
7816 * on success, otherwise returns NULL on failure.
7817 **/
7818static struct i40e_vsi *i40e_vsi_reinit_setup(struct i40e_vsi *vsi)
7819{
7820 struct i40e_pf *pf = vsi->back;
7821 u8 enabled_tc;
7822 int ret;
7823
7824 i40e_put_lump(pf->qp_pile, vsi->base_queue, vsi->idx);
7825 i40e_vsi_clear_rings(vsi);
7826
7827 i40e_vsi_free_arrays(vsi, false);
7828 i40e_set_num_rings_in_vsi(vsi);
7829 ret = i40e_vsi_alloc_arrays(vsi, false);
7830 if (ret)
7831 goto err_vsi;
7832
7833 ret = i40e_get_lump(pf, pf->qp_pile, vsi->alloc_queue_pairs, vsi->idx);
7834 if (ret < 0) {
7835 dev_info(&pf->pdev->dev, "VSI %d get_lump failed %d\n",
7836 vsi->seid, ret);
7837 goto err_vsi;
7838 }
7839 vsi->base_queue = ret;
7840
7841 /* Update the FW view of the VSI. Force a reset of TC and queue
7842 * layout configurations.
7843 */
7844 enabled_tc = pf->vsi[pf->lan_vsi]->tc_config.enabled_tc;
7845 pf->vsi[pf->lan_vsi]->tc_config.enabled_tc = 0;
7846 pf->vsi[pf->lan_vsi]->seid = pf->main_vsi_seid;
7847 i40e_vsi_config_tc(pf->vsi[pf->lan_vsi], enabled_tc);
7848
7849 /* assign it some queues */
7850 ret = i40e_alloc_rings(vsi);
7851 if (ret)
7852 goto err_rings;
7853
7854 /* map all of the rings to the q_vectors */
7855 i40e_vsi_map_rings_to_vectors(vsi);
7856 return vsi;
7857
7858err_rings:
7859 i40e_vsi_free_q_vectors(vsi);
7860 if (vsi->netdev_registered) {
7861 vsi->netdev_registered = false;
7862 unregister_netdev(vsi->netdev);
7863 free_netdev(vsi->netdev);
7864 vsi->netdev = NULL;
7865 }
7866 i40e_aq_delete_element(&pf->hw, vsi->seid, NULL);
7867err_vsi:
7868 i40e_vsi_clear(vsi);
7869 return NULL;
7870}
7871
7872/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007873 * i40e_vsi_setup - Set up a VSI by a given type
7874 * @pf: board private structure
7875 * @type: VSI type
7876 * @uplink_seid: the switch element to link to
7877 * @param1: usage depends upon VSI type. For VF types, indicates VF id
7878 *
7879 * This allocates the sw VSI structure and its queue resources, then add a VSI
7880 * to the identified VEB.
7881 *
7882 * Returns pointer to the successfully allocated and configure VSI sw struct on
7883 * success, otherwise returns NULL on failure.
7884 **/
7885struct i40e_vsi *i40e_vsi_setup(struct i40e_pf *pf, u8 type,
7886 u16 uplink_seid, u32 param1)
7887{
7888 struct i40e_vsi *vsi = NULL;
7889 struct i40e_veb *veb = NULL;
7890 int ret, i;
7891 int v_idx;
7892
7893 /* The requested uplink_seid must be either
7894 * - the PF's port seid
7895 * no VEB is needed because this is the PF
7896 * or this is a Flow Director special case VSI
7897 * - seid of an existing VEB
7898 * - seid of a VSI that owns an existing VEB
7899 * - seid of a VSI that doesn't own a VEB
7900 * a new VEB is created and the VSI becomes the owner
7901 * - seid of the PF VSI, which is what creates the first VEB
7902 * this is a special case of the previous
7903 *
7904 * Find which uplink_seid we were given and create a new VEB if needed
7905 */
7906 for (i = 0; i < I40E_MAX_VEB; i++) {
7907 if (pf->veb[i] && pf->veb[i]->seid == uplink_seid) {
7908 veb = pf->veb[i];
7909 break;
7910 }
7911 }
7912
7913 if (!veb && uplink_seid != pf->mac_seid) {
7914
Mitch Williams505682c2014-05-20 08:01:37 +00007915 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007916 if (pf->vsi[i] && pf->vsi[i]->seid == uplink_seid) {
7917 vsi = pf->vsi[i];
7918 break;
7919 }
7920 }
7921 if (!vsi) {
7922 dev_info(&pf->pdev->dev, "no such uplink_seid %d\n",
7923 uplink_seid);
7924 return NULL;
7925 }
7926
7927 if (vsi->uplink_seid == pf->mac_seid)
7928 veb = i40e_veb_setup(pf, 0, pf->mac_seid, vsi->seid,
7929 vsi->tc_config.enabled_tc);
7930 else if ((vsi->flags & I40E_VSI_FLAG_VEB_OWNER) == 0)
7931 veb = i40e_veb_setup(pf, 0, vsi->uplink_seid, vsi->seid,
7932 vsi->tc_config.enabled_tc);
7933
7934 for (i = 0; i < I40E_MAX_VEB && !veb; i++) {
7935 if (pf->veb[i] && pf->veb[i]->seid == vsi->uplink_seid)
7936 veb = pf->veb[i];
7937 }
7938 if (!veb) {
7939 dev_info(&pf->pdev->dev, "couldn't add VEB\n");
7940 return NULL;
7941 }
7942
7943 vsi->flags |= I40E_VSI_FLAG_VEB_OWNER;
7944 uplink_seid = veb->seid;
7945 }
7946
7947 /* get vsi sw struct */
7948 v_idx = i40e_vsi_mem_alloc(pf, type);
7949 if (v_idx < 0)
7950 goto err_alloc;
7951 vsi = pf->vsi[v_idx];
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08007952 if (!vsi)
7953 goto err_alloc;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007954 vsi->type = type;
7955 vsi->veb_idx = (veb ? veb->idx : I40E_NO_VEB);
7956
7957 if (type == I40E_VSI_MAIN)
7958 pf->lan_vsi = v_idx;
7959 else if (type == I40E_VSI_SRIOV)
7960 vsi->vf_id = param1;
7961 /* assign it some queues */
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08007962 ret = i40e_get_lump(pf, pf->qp_pile, vsi->alloc_queue_pairs,
7963 vsi->idx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007964 if (ret < 0) {
7965 dev_info(&pf->pdev->dev, "VSI %d get_lump failed %d\n",
7966 vsi->seid, ret);
7967 goto err_vsi;
7968 }
7969 vsi->base_queue = ret;
7970
7971 /* get a VSI from the hardware */
7972 vsi->uplink_seid = uplink_seid;
7973 ret = i40e_add_vsi(vsi);
7974 if (ret)
7975 goto err_vsi;
7976
7977 switch (vsi->type) {
7978 /* setup the netdev if needed */
7979 case I40E_VSI_MAIN:
7980 case I40E_VSI_VMDQ2:
Vasu Dev38e00432014-08-01 13:27:03 -07007981 case I40E_VSI_FCOE:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007982 ret = i40e_config_netdev(vsi);
7983 if (ret)
7984 goto err_netdev;
7985 ret = register_netdev(vsi->netdev);
7986 if (ret)
7987 goto err_netdev;
7988 vsi->netdev_registered = true;
7989 netif_carrier_off(vsi->netdev);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08007990#ifdef CONFIG_I40E_DCB
7991 /* Setup DCB netlink interface */
7992 i40e_dcbnl_setup(vsi);
7993#endif /* CONFIG_I40E_DCB */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007994 /* fall through */
7995
7996 case I40E_VSI_FDIR:
7997 /* set up vectors and rings if needed */
7998 ret = i40e_vsi_setup_vectors(vsi);
7999 if (ret)
8000 goto err_msix;
8001
8002 ret = i40e_alloc_rings(vsi);
8003 if (ret)
8004 goto err_rings;
8005
8006 /* map all of the rings to the q_vectors */
8007 i40e_vsi_map_rings_to_vectors(vsi);
8008
8009 i40e_vsi_reset_stats(vsi);
8010 break;
8011
8012 default:
8013 /* no netdev or rings for the other VSI types */
8014 break;
8015 }
8016
8017 return vsi;
8018
8019err_rings:
8020 i40e_vsi_free_q_vectors(vsi);
8021err_msix:
8022 if (vsi->netdev_registered) {
8023 vsi->netdev_registered = false;
8024 unregister_netdev(vsi->netdev);
8025 free_netdev(vsi->netdev);
8026 vsi->netdev = NULL;
8027 }
8028err_netdev:
8029 i40e_aq_delete_element(&pf->hw, vsi->seid, NULL);
8030err_vsi:
8031 i40e_vsi_clear(vsi);
8032err_alloc:
8033 return NULL;
8034}
8035
8036/**
8037 * i40e_veb_get_bw_info - Query VEB BW information
8038 * @veb: the veb to query
8039 *
8040 * Query the Tx scheduler BW configuration data for given VEB
8041 **/
8042static int i40e_veb_get_bw_info(struct i40e_veb *veb)
8043{
8044 struct i40e_aqc_query_switching_comp_ets_config_resp ets_data;
8045 struct i40e_aqc_query_switching_comp_bw_config_resp bw_data;
8046 struct i40e_pf *pf = veb->pf;
8047 struct i40e_hw *hw = &pf->hw;
8048 u32 tc_bw_max;
8049 int ret = 0;
8050 int i;
8051
8052 ret = i40e_aq_query_switch_comp_bw_config(hw, veb->seid,
8053 &bw_data, NULL);
8054 if (ret) {
8055 dev_info(&pf->pdev->dev,
8056 "query veb bw config failed, aq_err=%d\n",
8057 hw->aq.asq_last_status);
8058 goto out;
8059 }
8060
8061 ret = i40e_aq_query_switch_comp_ets_config(hw, veb->seid,
8062 &ets_data, NULL);
8063 if (ret) {
8064 dev_info(&pf->pdev->dev,
8065 "query veb bw ets config failed, aq_err=%d\n",
8066 hw->aq.asq_last_status);
8067 goto out;
8068 }
8069
8070 veb->bw_limit = le16_to_cpu(ets_data.port_bw_limit);
8071 veb->bw_max_quanta = ets_data.tc_bw_max;
8072 veb->is_abs_credits = bw_data.absolute_credits_enable;
8073 tc_bw_max = le16_to_cpu(bw_data.tc_bw_max[0]) |
8074 (le16_to_cpu(bw_data.tc_bw_max[1]) << 16);
8075 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
8076 veb->bw_tc_share_credits[i] = bw_data.tc_bw_share_credits[i];
8077 veb->bw_tc_limit_credits[i] =
8078 le16_to_cpu(bw_data.tc_bw_limits[i]);
8079 veb->bw_tc_max_quanta[i] = ((tc_bw_max >> (i*4)) & 0x7);
8080 }
8081
8082out:
8083 return ret;
8084}
8085
8086/**
8087 * i40e_veb_mem_alloc - Allocates the next available struct veb in the PF
8088 * @pf: board private structure
8089 *
8090 * On error: returns error code (negative)
8091 * On success: returns vsi index in PF (positive)
8092 **/
8093static int i40e_veb_mem_alloc(struct i40e_pf *pf)
8094{
8095 int ret = -ENOENT;
8096 struct i40e_veb *veb;
8097 int i;
8098
8099 /* Need to protect the allocation of switch elements at the PF level */
8100 mutex_lock(&pf->switch_mutex);
8101
8102 /* VEB list may be fragmented if VEB creation/destruction has
8103 * been happening. We can afford to do a quick scan to look
8104 * for any free slots in the list.
8105 *
8106 * find next empty veb slot, looping back around if necessary
8107 */
8108 i = 0;
8109 while ((i < I40E_MAX_VEB) && (pf->veb[i] != NULL))
8110 i++;
8111 if (i >= I40E_MAX_VEB) {
8112 ret = -ENOMEM;
8113 goto err_alloc_veb; /* out of VEB slots! */
8114 }
8115
8116 veb = kzalloc(sizeof(*veb), GFP_KERNEL);
8117 if (!veb) {
8118 ret = -ENOMEM;
8119 goto err_alloc_veb;
8120 }
8121 veb->pf = pf;
8122 veb->idx = i;
8123 veb->enabled_tc = 1;
8124
8125 pf->veb[i] = veb;
8126 ret = i;
8127err_alloc_veb:
8128 mutex_unlock(&pf->switch_mutex);
8129 return ret;
8130}
8131
8132/**
8133 * i40e_switch_branch_release - Delete a branch of the switch tree
8134 * @branch: where to start deleting
8135 *
8136 * This uses recursion to find the tips of the branch to be
8137 * removed, deleting until we get back to and can delete this VEB.
8138 **/
8139static void i40e_switch_branch_release(struct i40e_veb *branch)
8140{
8141 struct i40e_pf *pf = branch->pf;
8142 u16 branch_seid = branch->seid;
8143 u16 veb_idx = branch->idx;
8144 int i;
8145
8146 /* release any VEBs on this VEB - RECURSION */
8147 for (i = 0; i < I40E_MAX_VEB; i++) {
8148 if (!pf->veb[i])
8149 continue;
8150 if (pf->veb[i]->uplink_seid == branch->seid)
8151 i40e_switch_branch_release(pf->veb[i]);
8152 }
8153
8154 /* Release the VSIs on this VEB, but not the owner VSI.
8155 *
8156 * NOTE: Removing the last VSI on a VEB has the SIDE EFFECT of removing
8157 * the VEB itself, so don't use (*branch) after this loop.
8158 */
Mitch Williams505682c2014-05-20 08:01:37 +00008159 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008160 if (!pf->vsi[i])
8161 continue;
8162 if (pf->vsi[i]->uplink_seid == branch_seid &&
8163 (pf->vsi[i]->flags & I40E_VSI_FLAG_VEB_OWNER) == 0) {
8164 i40e_vsi_release(pf->vsi[i]);
8165 }
8166 }
8167
8168 /* There's one corner case where the VEB might not have been
8169 * removed, so double check it here and remove it if needed.
8170 * This case happens if the veb was created from the debugfs
8171 * commands and no VSIs were added to it.
8172 */
8173 if (pf->veb[veb_idx])
8174 i40e_veb_release(pf->veb[veb_idx]);
8175}
8176
8177/**
8178 * i40e_veb_clear - remove veb struct
8179 * @veb: the veb to remove
8180 **/
8181static void i40e_veb_clear(struct i40e_veb *veb)
8182{
8183 if (!veb)
8184 return;
8185
8186 if (veb->pf) {
8187 struct i40e_pf *pf = veb->pf;
8188
8189 mutex_lock(&pf->switch_mutex);
8190 if (pf->veb[veb->idx] == veb)
8191 pf->veb[veb->idx] = NULL;
8192 mutex_unlock(&pf->switch_mutex);
8193 }
8194
8195 kfree(veb);
8196}
8197
8198/**
8199 * i40e_veb_release - Delete a VEB and free its resources
8200 * @veb: the VEB being removed
8201 **/
8202void i40e_veb_release(struct i40e_veb *veb)
8203{
8204 struct i40e_vsi *vsi = NULL;
8205 struct i40e_pf *pf;
8206 int i, n = 0;
8207
8208 pf = veb->pf;
8209
8210 /* find the remaining VSI and check for extras */
Mitch Williams505682c2014-05-20 08:01:37 +00008211 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008212 if (pf->vsi[i] && pf->vsi[i]->uplink_seid == veb->seid) {
8213 n++;
8214 vsi = pf->vsi[i];
8215 }
8216 }
8217 if (n != 1) {
8218 dev_info(&pf->pdev->dev,
8219 "can't remove VEB %d with %d VSIs left\n",
8220 veb->seid, n);
8221 return;
8222 }
8223
8224 /* move the remaining VSI to uplink veb */
8225 vsi->flags &= ~I40E_VSI_FLAG_VEB_OWNER;
8226 if (veb->uplink_seid) {
8227 vsi->uplink_seid = veb->uplink_seid;
8228 if (veb->uplink_seid == pf->mac_seid)
8229 vsi->veb_idx = I40E_NO_VEB;
8230 else
8231 vsi->veb_idx = veb->veb_idx;
8232 } else {
8233 /* floating VEB */
8234 vsi->uplink_seid = pf->vsi[pf->lan_vsi]->uplink_seid;
8235 vsi->veb_idx = pf->vsi[pf->lan_vsi]->veb_idx;
8236 }
8237
8238 i40e_aq_delete_element(&pf->hw, veb->seid, NULL);
8239 i40e_veb_clear(veb);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008240}
8241
8242/**
8243 * i40e_add_veb - create the VEB in the switch
8244 * @veb: the VEB to be instantiated
8245 * @vsi: the controlling VSI
8246 **/
8247static int i40e_add_veb(struct i40e_veb *veb, struct i40e_vsi *vsi)
8248{
Greg Rose56747262013-11-28 06:39:37 +00008249 bool is_default = false;
Kevin Scotte1c51b952013-11-20 10:02:51 +00008250 bool is_cloud = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008251 int ret;
8252
8253 /* get a VEB from the hardware */
8254 ret = i40e_aq_add_veb(&veb->pf->hw, veb->uplink_seid, vsi->seid,
Kevin Scotte1c51b952013-11-20 10:02:51 +00008255 veb->enabled_tc, is_default,
8256 is_cloud, &veb->seid, NULL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008257 if (ret) {
8258 dev_info(&veb->pf->pdev->dev,
8259 "couldn't add VEB, err %d, aq_err %d\n",
8260 ret, veb->pf->hw.aq.asq_last_status);
8261 return -EPERM;
8262 }
8263
8264 /* get statistics counter */
8265 ret = i40e_aq_get_veb_parameters(&veb->pf->hw, veb->seid, NULL, NULL,
8266 &veb->stats_idx, NULL, NULL, NULL);
8267 if (ret) {
8268 dev_info(&veb->pf->pdev->dev,
8269 "couldn't get VEB statistics idx, err %d, aq_err %d\n",
8270 ret, veb->pf->hw.aq.asq_last_status);
8271 return -EPERM;
8272 }
8273 ret = i40e_veb_get_bw_info(veb);
8274 if (ret) {
8275 dev_info(&veb->pf->pdev->dev,
8276 "couldn't get VEB bw info, err %d, aq_err %d\n",
8277 ret, veb->pf->hw.aq.asq_last_status);
8278 i40e_aq_delete_element(&veb->pf->hw, veb->seid, NULL);
8279 return -ENOENT;
8280 }
8281
8282 vsi->uplink_seid = veb->seid;
8283 vsi->veb_idx = veb->idx;
8284 vsi->flags |= I40E_VSI_FLAG_VEB_OWNER;
8285
8286 return 0;
8287}
8288
8289/**
8290 * i40e_veb_setup - Set up a VEB
8291 * @pf: board private structure
8292 * @flags: VEB setup flags
8293 * @uplink_seid: the switch element to link to
8294 * @vsi_seid: the initial VSI seid
8295 * @enabled_tc: Enabled TC bit-map
8296 *
8297 * This allocates the sw VEB structure and links it into the switch
8298 * It is possible and legal for this to be a duplicate of an already
8299 * existing VEB. It is also possible for both uplink and vsi seids
8300 * to be zero, in order to create a floating VEB.
8301 *
8302 * Returns pointer to the successfully allocated VEB sw struct on
8303 * success, otherwise returns NULL on failure.
8304 **/
8305struct i40e_veb *i40e_veb_setup(struct i40e_pf *pf, u16 flags,
8306 u16 uplink_seid, u16 vsi_seid,
8307 u8 enabled_tc)
8308{
8309 struct i40e_veb *veb, *uplink_veb = NULL;
8310 int vsi_idx, veb_idx;
8311 int ret;
8312
8313 /* if one seid is 0, the other must be 0 to create a floating relay */
8314 if ((uplink_seid == 0 || vsi_seid == 0) &&
8315 (uplink_seid + vsi_seid != 0)) {
8316 dev_info(&pf->pdev->dev,
8317 "one, not both seid's are 0: uplink=%d vsi=%d\n",
8318 uplink_seid, vsi_seid);
8319 return NULL;
8320 }
8321
8322 /* make sure there is such a vsi and uplink */
Mitch Williams505682c2014-05-20 08:01:37 +00008323 for (vsi_idx = 0; vsi_idx < pf->num_alloc_vsi; vsi_idx++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008324 if (pf->vsi[vsi_idx] && pf->vsi[vsi_idx]->seid == vsi_seid)
8325 break;
Mitch Williams505682c2014-05-20 08:01:37 +00008326 if (vsi_idx >= pf->num_alloc_vsi && vsi_seid != 0) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008327 dev_info(&pf->pdev->dev, "vsi seid %d not found\n",
8328 vsi_seid);
8329 return NULL;
8330 }
8331
8332 if (uplink_seid && uplink_seid != pf->mac_seid) {
8333 for (veb_idx = 0; veb_idx < I40E_MAX_VEB; veb_idx++) {
8334 if (pf->veb[veb_idx] &&
8335 pf->veb[veb_idx]->seid == uplink_seid) {
8336 uplink_veb = pf->veb[veb_idx];
8337 break;
8338 }
8339 }
8340 if (!uplink_veb) {
8341 dev_info(&pf->pdev->dev,
8342 "uplink seid %d not found\n", uplink_seid);
8343 return NULL;
8344 }
8345 }
8346
8347 /* get veb sw struct */
8348 veb_idx = i40e_veb_mem_alloc(pf);
8349 if (veb_idx < 0)
8350 goto err_alloc;
8351 veb = pf->veb[veb_idx];
8352 veb->flags = flags;
8353 veb->uplink_seid = uplink_seid;
8354 veb->veb_idx = (uplink_veb ? uplink_veb->idx : I40E_NO_VEB);
8355 veb->enabled_tc = (enabled_tc ? enabled_tc : 0x1);
8356
8357 /* create the VEB in the switch */
8358 ret = i40e_add_veb(veb, pf->vsi[vsi_idx]);
8359 if (ret)
8360 goto err_veb;
Shannon Nelson1bb8b932014-04-23 04:49:54 +00008361 if (vsi_idx == pf->lan_vsi)
8362 pf->lan_veb = veb->idx;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008363
8364 return veb;
8365
8366err_veb:
8367 i40e_veb_clear(veb);
8368err_alloc:
8369 return NULL;
8370}
8371
8372/**
8373 * i40e_setup_pf_switch_element - set pf vars based on switch type
8374 * @pf: board private structure
8375 * @ele: element we are building info from
8376 * @num_reported: total number of elements
8377 * @printconfig: should we print the contents
8378 *
8379 * helper function to assist in extracting a few useful SEID values.
8380 **/
8381static void i40e_setup_pf_switch_element(struct i40e_pf *pf,
8382 struct i40e_aqc_switch_config_element_resp *ele,
8383 u16 num_reported, bool printconfig)
8384{
8385 u16 downlink_seid = le16_to_cpu(ele->downlink_seid);
8386 u16 uplink_seid = le16_to_cpu(ele->uplink_seid);
8387 u8 element_type = ele->element_type;
8388 u16 seid = le16_to_cpu(ele->seid);
8389
8390 if (printconfig)
8391 dev_info(&pf->pdev->dev,
8392 "type=%d seid=%d uplink=%d downlink=%d\n",
8393 element_type, seid, uplink_seid, downlink_seid);
8394
8395 switch (element_type) {
8396 case I40E_SWITCH_ELEMENT_TYPE_MAC:
8397 pf->mac_seid = seid;
8398 break;
8399 case I40E_SWITCH_ELEMENT_TYPE_VEB:
8400 /* Main VEB? */
8401 if (uplink_seid != pf->mac_seid)
8402 break;
8403 if (pf->lan_veb == I40E_NO_VEB) {
8404 int v;
8405
8406 /* find existing or else empty VEB */
8407 for (v = 0; v < I40E_MAX_VEB; v++) {
8408 if (pf->veb[v] && (pf->veb[v]->seid == seid)) {
8409 pf->lan_veb = v;
8410 break;
8411 }
8412 }
8413 if (pf->lan_veb == I40E_NO_VEB) {
8414 v = i40e_veb_mem_alloc(pf);
8415 if (v < 0)
8416 break;
8417 pf->lan_veb = v;
8418 }
8419 }
8420
8421 pf->veb[pf->lan_veb]->seid = seid;
8422 pf->veb[pf->lan_veb]->uplink_seid = pf->mac_seid;
8423 pf->veb[pf->lan_veb]->pf = pf;
8424 pf->veb[pf->lan_veb]->veb_idx = I40E_NO_VEB;
8425 break;
8426 case I40E_SWITCH_ELEMENT_TYPE_VSI:
8427 if (num_reported != 1)
8428 break;
8429 /* This is immediately after a reset so we can assume this is
8430 * the PF's VSI
8431 */
8432 pf->mac_seid = uplink_seid;
8433 pf->pf_seid = downlink_seid;
8434 pf->main_vsi_seid = seid;
8435 if (printconfig)
8436 dev_info(&pf->pdev->dev,
8437 "pf_seid=%d main_vsi_seid=%d\n",
8438 pf->pf_seid, pf->main_vsi_seid);
8439 break;
8440 case I40E_SWITCH_ELEMENT_TYPE_PF:
8441 case I40E_SWITCH_ELEMENT_TYPE_VF:
8442 case I40E_SWITCH_ELEMENT_TYPE_EMP:
8443 case I40E_SWITCH_ELEMENT_TYPE_BMC:
8444 case I40E_SWITCH_ELEMENT_TYPE_PE:
8445 case I40E_SWITCH_ELEMENT_TYPE_PA:
8446 /* ignore these for now */
8447 break;
8448 default:
8449 dev_info(&pf->pdev->dev, "unknown element type=%d seid=%d\n",
8450 element_type, seid);
8451 break;
8452 }
8453}
8454
8455/**
8456 * i40e_fetch_switch_configuration - Get switch config from firmware
8457 * @pf: board private structure
8458 * @printconfig: should we print the contents
8459 *
8460 * Get the current switch configuration from the device and
8461 * extract a few useful SEID values.
8462 **/
8463int i40e_fetch_switch_configuration(struct i40e_pf *pf, bool printconfig)
8464{
8465 struct i40e_aqc_get_switch_config_resp *sw_config;
8466 u16 next_seid = 0;
8467 int ret = 0;
8468 u8 *aq_buf;
8469 int i;
8470
8471 aq_buf = kzalloc(I40E_AQ_LARGE_BUF, GFP_KERNEL);
8472 if (!aq_buf)
8473 return -ENOMEM;
8474
8475 sw_config = (struct i40e_aqc_get_switch_config_resp *)aq_buf;
8476 do {
8477 u16 num_reported, num_total;
8478
8479 ret = i40e_aq_get_switch_config(&pf->hw, sw_config,
8480 I40E_AQ_LARGE_BUF,
8481 &next_seid, NULL);
8482 if (ret) {
8483 dev_info(&pf->pdev->dev,
8484 "get switch config failed %d aq_err=%x\n",
8485 ret, pf->hw.aq.asq_last_status);
8486 kfree(aq_buf);
8487 return -ENOENT;
8488 }
8489
8490 num_reported = le16_to_cpu(sw_config->header.num_reported);
8491 num_total = le16_to_cpu(sw_config->header.num_total);
8492
8493 if (printconfig)
8494 dev_info(&pf->pdev->dev,
8495 "header: %d reported %d total\n",
8496 num_reported, num_total);
8497
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008498 for (i = 0; i < num_reported; i++) {
8499 struct i40e_aqc_switch_config_element_resp *ele =
8500 &sw_config->element[i];
8501
8502 i40e_setup_pf_switch_element(pf, ele, num_reported,
8503 printconfig);
8504 }
8505 } while (next_seid != 0);
8506
8507 kfree(aq_buf);
8508 return ret;
8509}
8510
8511/**
8512 * i40e_setup_pf_switch - Setup the HW switch on startup or after reset
8513 * @pf: board private structure
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00008514 * @reinit: if the Main VSI needs to re-initialized.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008515 *
8516 * Returns 0 on success, negative value on failure
8517 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00008518static int i40e_setup_pf_switch(struct i40e_pf *pf, bool reinit)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008519{
8520 int ret;
8521
8522 /* find out what's out there already */
8523 ret = i40e_fetch_switch_configuration(pf, false);
8524 if (ret) {
8525 dev_info(&pf->pdev->dev,
8526 "couldn't fetch switch config, err %d, aq_err %d\n",
8527 ret, pf->hw.aq.asq_last_status);
8528 return ret;
8529 }
8530 i40e_pf_reset_stats(pf);
8531
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008532 /* first time setup */
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00008533 if (pf->lan_vsi == I40E_NO_VSI || reinit) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008534 struct i40e_vsi *vsi = NULL;
8535 u16 uplink_seid;
8536
8537 /* Set up the PF VSI associated with the PF's main VSI
8538 * that is already in the HW switch
8539 */
8540 if (pf->lan_veb != I40E_NO_VEB && pf->veb[pf->lan_veb])
8541 uplink_seid = pf->veb[pf->lan_veb]->seid;
8542 else
8543 uplink_seid = pf->mac_seid;
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00008544 if (pf->lan_vsi == I40E_NO_VSI)
8545 vsi = i40e_vsi_setup(pf, I40E_VSI_MAIN, uplink_seid, 0);
8546 else if (reinit)
8547 vsi = i40e_vsi_reinit_setup(pf->vsi[pf->lan_vsi]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008548 if (!vsi) {
8549 dev_info(&pf->pdev->dev, "setup of MAIN VSI failed\n");
8550 i40e_fdir_teardown(pf);
8551 return -EAGAIN;
8552 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008553 } else {
8554 /* force a reset of TC and queue layout configurations */
8555 u8 enabled_tc = pf->vsi[pf->lan_vsi]->tc_config.enabled_tc;
8556 pf->vsi[pf->lan_vsi]->tc_config.enabled_tc = 0;
8557 pf->vsi[pf->lan_vsi]->seid = pf->main_vsi_seid;
8558 i40e_vsi_config_tc(pf->vsi[pf->lan_vsi], enabled_tc);
8559 }
8560 i40e_vlan_stripping_disable(pf->vsi[pf->lan_vsi]);
8561
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008562 i40e_fdir_sb_setup(pf);
8563
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008564 /* Setup static PF queue filter control settings */
8565 ret = i40e_setup_pf_filter_control(pf);
8566 if (ret) {
8567 dev_info(&pf->pdev->dev, "setup_pf_filter_control failed: %d\n",
8568 ret);
8569 /* Failure here should not stop continuing other steps */
8570 }
8571
8572 /* enable RSS in the HW, even for only one queue, as the stack can use
8573 * the hash
8574 */
8575 if ((pf->flags & I40E_FLAG_RSS_ENABLED))
8576 i40e_config_rss(pf);
8577
8578 /* fill in link information and enable LSE reporting */
Catherine Sullivan8109e122014-06-04 08:45:24 +00008579 i40e_update_link_info(&pf->hw, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008580 i40e_link_event(pf);
8581
Jesse Brandeburgd52c20b2013-11-26 10:49:15 +00008582 /* Initialize user-specific link properties */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008583 pf->fc_autoneg_status = ((pf->hw.phy.link_info.an_info &
8584 I40E_AQ_AN_COMPLETED) ? true : false);
Jesse Brandeburgd52c20b2013-11-26 10:49:15 +00008585
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00008586 i40e_ptp_init(pf);
8587
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008588 return ret;
8589}
8590
8591/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008592 * i40e_determine_queue_usage - Work out queue distribution
8593 * @pf: board private structure
8594 **/
8595static void i40e_determine_queue_usage(struct i40e_pf *pf)
8596{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008597 int queues_left;
8598
8599 pf->num_lan_qps = 0;
Vasu Dev38e00432014-08-01 13:27:03 -07008600#ifdef I40E_FCOE
8601 pf->num_fcoe_qps = 0;
8602#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008603
8604 /* Find the max queues to be put into basic use. We'll always be
8605 * using TC0, whether or not DCB is running, and TC0 will get the
8606 * big RSS set.
8607 */
8608 queues_left = pf->hw.func_caps.num_tx_qp;
8609
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008610 if ((queues_left == 1) ||
Frank Zhang9aa7e932014-05-20 08:01:42 +00008611 !(pf->flags & I40E_FLAG_MSIX_ENABLED)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008612 /* one qp for PF, no queues for anything else */
8613 queues_left = 0;
8614 pf->rss_size = pf->num_lan_qps = 1;
8615
8616 /* make sure all the fancies are disabled */
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08008617 pf->flags &= ~(I40E_FLAG_RSS_ENABLED |
Vasu Dev38e00432014-08-01 13:27:03 -07008618#ifdef I40E_FCOE
8619 I40E_FLAG_FCOE_ENABLED |
8620#endif
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08008621 I40E_FLAG_FD_SB_ENABLED |
8622 I40E_FLAG_FD_ATR_ENABLED |
Neerav Parikh4d9b6042014-05-22 06:31:51 +00008623 I40E_FLAG_DCB_CAPABLE |
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08008624 I40E_FLAG_SRIOV_ENABLED |
8625 I40E_FLAG_VMDQ_ENABLED);
Frank Zhang9aa7e932014-05-20 08:01:42 +00008626 } else if (!(pf->flags & (I40E_FLAG_RSS_ENABLED |
8627 I40E_FLAG_FD_SB_ENABLED |
Anjali Singhai Jainbbe7d0e2014-05-20 08:01:44 +00008628 I40E_FLAG_FD_ATR_ENABLED |
Neerav Parikh4d9b6042014-05-22 06:31:51 +00008629 I40E_FLAG_DCB_CAPABLE))) {
Frank Zhang9aa7e932014-05-20 08:01:42 +00008630 /* one qp for PF */
8631 pf->rss_size = pf->num_lan_qps = 1;
8632 queues_left -= pf->num_lan_qps;
8633
8634 pf->flags &= ~(I40E_FLAG_RSS_ENABLED |
Vasu Dev38e00432014-08-01 13:27:03 -07008635#ifdef I40E_FCOE
8636 I40E_FLAG_FCOE_ENABLED |
8637#endif
Frank Zhang9aa7e932014-05-20 08:01:42 +00008638 I40E_FLAG_FD_SB_ENABLED |
8639 I40E_FLAG_FD_ATR_ENABLED |
8640 I40E_FLAG_DCB_ENABLED |
8641 I40E_FLAG_VMDQ_ENABLED);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008642 } else {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008643 /* Not enough queues for all TCs */
Neerav Parikh4d9b6042014-05-22 06:31:51 +00008644 if ((pf->flags & I40E_FLAG_DCB_CAPABLE) &&
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008645 (queues_left < I40E_MAX_TRAFFIC_CLASS)) {
Neerav Parikh4d9b6042014-05-22 06:31:51 +00008646 pf->flags &= ~I40E_FLAG_DCB_CAPABLE;
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008647 dev_info(&pf->pdev->dev, "not enough queues for DCB. DCB is disabled.\n");
8648 }
8649 pf->num_lan_qps = pf->rss_size_max;
8650 queues_left -= pf->num_lan_qps;
8651 }
8652
Vasu Dev38e00432014-08-01 13:27:03 -07008653#ifdef I40E_FCOE
8654 if (pf->flags & I40E_FLAG_FCOE_ENABLED) {
8655 if (I40E_DEFAULT_FCOE <= queues_left) {
8656 pf->num_fcoe_qps = I40E_DEFAULT_FCOE;
8657 } else if (I40E_MINIMUM_FCOE <= queues_left) {
8658 pf->num_fcoe_qps = I40E_MINIMUM_FCOE;
8659 } else {
8660 pf->num_fcoe_qps = 0;
8661 pf->flags &= ~I40E_FLAG_FCOE_ENABLED;
8662 dev_info(&pf->pdev->dev, "not enough queues for FCoE. FCoE feature will be disabled\n");
8663 }
8664
8665 queues_left -= pf->num_fcoe_qps;
8666 }
8667
8668#endif
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008669 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
8670 if (queues_left > 1) {
8671 queues_left -= 1; /* save 1 queue for FD */
8672 } else {
8673 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
8674 dev_info(&pf->pdev->dev, "not enough queues for Flow Director. Flow Director feature is disabled\n");
8675 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008676 }
8677
8678 if ((pf->flags & I40E_FLAG_SRIOV_ENABLED) &&
8679 pf->num_vf_qps && pf->num_req_vfs && queues_left) {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008680 pf->num_req_vfs = min_t(int, pf->num_req_vfs,
8681 (queues_left / pf->num_vf_qps));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008682 queues_left -= (pf->num_req_vfs * pf->num_vf_qps);
8683 }
8684
8685 if ((pf->flags & I40E_FLAG_VMDQ_ENABLED) &&
8686 pf->num_vmdq_vsis && pf->num_vmdq_qps && queues_left) {
8687 pf->num_vmdq_vsis = min_t(int, pf->num_vmdq_vsis,
8688 (queues_left / pf->num_vmdq_qps));
8689 queues_left -= (pf->num_vmdq_vsis * pf->num_vmdq_qps);
8690 }
8691
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00008692 pf->queues_left = queues_left;
Vasu Dev38e00432014-08-01 13:27:03 -07008693#ifdef I40E_FCOE
8694 dev_info(&pf->pdev->dev, "fcoe queues = %d\n", pf->num_fcoe_qps);
8695#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008696}
8697
8698/**
8699 * i40e_setup_pf_filter_control - Setup PF static filter control
8700 * @pf: PF to be setup
8701 *
8702 * i40e_setup_pf_filter_control sets up a pf's initial filter control
8703 * settings. If PE/FCoE are enabled then it will also set the per PF
8704 * based filter sizes required for them. It also enables Flow director,
8705 * ethertype and macvlan type filter settings for the pf.
8706 *
8707 * Returns 0 on success, negative on failure
8708 **/
8709static int i40e_setup_pf_filter_control(struct i40e_pf *pf)
8710{
8711 struct i40e_filter_control_settings *settings = &pf->filter_settings;
8712
8713 settings->hash_lut_size = I40E_HASH_LUT_SIZE_128;
8714
8715 /* Flow Director is enabled */
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08008716 if (pf->flags & (I40E_FLAG_FD_SB_ENABLED | I40E_FLAG_FD_ATR_ENABLED))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008717 settings->enable_fdir = true;
8718
8719 /* Ethtype and MACVLAN filters enabled for PF */
8720 settings->enable_ethtype = true;
8721 settings->enable_macvlan = true;
8722
8723 if (i40e_set_filter_control(&pf->hw, settings))
8724 return -ENOENT;
8725
8726 return 0;
8727}
8728
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00008729#define INFO_STRING_LEN 255
8730static void i40e_print_features(struct i40e_pf *pf)
8731{
8732 struct i40e_hw *hw = &pf->hw;
8733 char *buf, *string;
8734
8735 string = kzalloc(INFO_STRING_LEN, GFP_KERNEL);
8736 if (!string) {
8737 dev_err(&pf->pdev->dev, "Features string allocation failed\n");
8738 return;
8739 }
8740
8741 buf = string;
8742
8743 buf += sprintf(string, "Features: PF-id[%d] ", hw->pf_id);
8744#ifdef CONFIG_PCI_IOV
8745 buf += sprintf(buf, "VFs: %d ", pf->num_req_vfs);
8746#endif
8747 buf += sprintf(buf, "VSIs: %d QP: %d ", pf->hw.func_caps.num_vsis,
8748 pf->vsi[pf->lan_vsi]->num_queue_pairs);
8749
8750 if (pf->flags & I40E_FLAG_RSS_ENABLED)
8751 buf += sprintf(buf, "RSS ");
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00008752 if (pf->flags & I40E_FLAG_FD_ATR_ENABLED)
Akeem G Abodunrinc6423ff2014-05-10 04:49:08 +00008753 buf += sprintf(buf, "FD_ATR ");
8754 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
8755 buf += sprintf(buf, "FD_SB ");
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00008756 buf += sprintf(buf, "NTUPLE ");
Akeem G Abodunrinc6423ff2014-05-10 04:49:08 +00008757 }
Neerav Parikh4d9b6042014-05-22 06:31:51 +00008758 if (pf->flags & I40E_FLAG_DCB_CAPABLE)
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00008759 buf += sprintf(buf, "DCB ");
8760 if (pf->flags & I40E_FLAG_PTP)
8761 buf += sprintf(buf, "PTP ");
Vasu Dev38e00432014-08-01 13:27:03 -07008762#ifdef I40E_FCOE
8763 if (pf->flags & I40E_FLAG_FCOE_ENABLED)
8764 buf += sprintf(buf, "FCOE ");
8765#endif
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00008766
8767 BUG_ON(buf > (string + INFO_STRING_LEN));
8768 dev_info(&pf->pdev->dev, "%s\n", string);
8769 kfree(string);
8770}
8771
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008772/**
8773 * i40e_probe - Device initialization routine
8774 * @pdev: PCI device information struct
8775 * @ent: entry in i40e_pci_tbl
8776 *
8777 * i40e_probe initializes a pf identified by a pci_dev structure.
8778 * The OS initialization, configuring of the pf private structure,
8779 * and a hardware reset occur.
8780 *
8781 * Returns 0 on success, negative on failure
8782 **/
8783static int i40e_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
8784{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008785 struct i40e_pf *pf;
8786 struct i40e_hw *hw;
Anjali Singhai Jain93cd7652013-11-20 10:03:01 +00008787 static u16 pfs_found;
Catherine Sullivand4dfb812013-11-28 06:39:21 +00008788 u16 link_status;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008789 int err = 0;
8790 u32 len;
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00008791 u32 i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008792
8793 err = pci_enable_device_mem(pdev);
8794 if (err)
8795 return err;
8796
8797 /* set up for high or low dma */
Mitch Williams64942942014-02-11 08:26:33 +00008798 err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64));
Mitch Williams64942942014-02-11 08:26:33 +00008799 if (err) {
Jean Sacrene3e3bfd2014-03-25 04:30:27 +00008800 err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
8801 if (err) {
8802 dev_err(&pdev->dev,
8803 "DMA configuration failed: 0x%x\n", err);
8804 goto err_dma;
8805 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008806 }
8807
8808 /* set up pci connections */
8809 err = pci_request_selected_regions(pdev, pci_select_bars(pdev,
8810 IORESOURCE_MEM), i40e_driver_name);
8811 if (err) {
8812 dev_info(&pdev->dev,
8813 "pci_request_selected_regions failed %d\n", err);
8814 goto err_pci_reg;
8815 }
8816
8817 pci_enable_pcie_error_reporting(pdev);
8818 pci_set_master(pdev);
8819
8820 /* Now that we have a PCI connection, we need to do the
8821 * low level device setup. This is primarily setting up
8822 * the Admin Queue structures and then querying for the
8823 * device's current profile information.
8824 */
8825 pf = kzalloc(sizeof(*pf), GFP_KERNEL);
8826 if (!pf) {
8827 err = -ENOMEM;
8828 goto err_pf_alloc;
8829 }
8830 pf->next_vsi = 0;
8831 pf->pdev = pdev;
8832 set_bit(__I40E_DOWN, &pf->state);
8833
8834 hw = &pf->hw;
8835 hw->back = pf;
8836 hw->hw_addr = ioremap(pci_resource_start(pdev, 0),
8837 pci_resource_len(pdev, 0));
8838 if (!hw->hw_addr) {
8839 err = -EIO;
8840 dev_info(&pdev->dev, "ioremap(0x%04x, 0x%04x) failed: 0x%x\n",
8841 (unsigned int)pci_resource_start(pdev, 0),
8842 (unsigned int)pci_resource_len(pdev, 0), err);
8843 goto err_ioremap;
8844 }
8845 hw->vendor_id = pdev->vendor;
8846 hw->device_id = pdev->device;
8847 pci_read_config_byte(pdev, PCI_REVISION_ID, &hw->revision_id);
8848 hw->subsystem_vendor_id = pdev->subsystem_vendor;
8849 hw->subsystem_device_id = pdev->subsystem_device;
8850 hw->bus.device = PCI_SLOT(pdev->devfn);
8851 hw->bus.func = PCI_FUNC(pdev->devfn);
Anjali Singhai Jain93cd7652013-11-20 10:03:01 +00008852 pf->instance = pfs_found;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008853
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00008854 /* do a special CORER for clearing PXE mode once at init */
8855 if (hw->revision_id == 0 &&
8856 (rd32(hw, I40E_GLLAN_RCTL_0) & I40E_GLLAN_RCTL_0_PXE_MODE_MASK)) {
8857 wr32(hw, I40E_GLGEN_RTRIG, I40E_GLGEN_RTRIG_CORER_MASK);
8858 i40e_flush(hw);
8859 msleep(200);
8860 pf->corer_count++;
8861
8862 i40e_clear_pxe_mode(hw);
8863 }
8864
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008865 /* Reset here to make sure all is clean and to define PF 'n' */
Shannon Nelson838d41d2014-06-04 20:41:27 +00008866 i40e_clear_hw(hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008867 err = i40e_pf_reset(hw);
8868 if (err) {
8869 dev_info(&pdev->dev, "Initial pf_reset failed: %d\n", err);
8870 goto err_pf_reset;
8871 }
8872 pf->pfr_count++;
8873
8874 hw->aq.num_arq_entries = I40E_AQ_LEN;
8875 hw->aq.num_asq_entries = I40E_AQ_LEN;
8876 hw->aq.arq_buf_size = I40E_MAX_AQ_BUF_SIZE;
8877 hw->aq.asq_buf_size = I40E_MAX_AQ_BUF_SIZE;
8878 pf->adminq_work_limit = I40E_AQ_WORK_LIMIT;
8879 snprintf(pf->misc_int_name, sizeof(pf->misc_int_name) - 1,
8880 "%s-pf%d:misc",
8881 dev_driver_string(&pf->pdev->dev), pf->hw.pf_id);
8882
8883 err = i40e_init_shared_code(hw);
8884 if (err) {
8885 dev_info(&pdev->dev, "init_shared_code failed: %d\n", err);
8886 goto err_pf_reset;
8887 }
8888
Jesse Brandeburgd52c20b2013-11-26 10:49:15 +00008889 /* set up a default setting for link flow control */
8890 pf->hw.fc.requested_mode = I40E_FC_NONE;
8891
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008892 err = i40e_init_adminq(hw);
8893 dev_info(&pdev->dev, "%s\n", i40e_fw_version_str(hw));
8894 if (err) {
8895 dev_info(&pdev->dev,
Catherine Sullivan7aa67612014-07-09 07:46:17 +00008896 "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 +00008897 goto err_pf_reset;
8898 }
8899
Catherine Sullivan7aa67612014-07-09 07:46:17 +00008900 if (hw->aq.api_maj_ver == I40E_FW_API_VERSION_MAJOR &&
8901 hw->aq.api_min_ver > I40E_FW_API_VERSION_MINOR)
Shannon Nelson278b6f62014-06-04 01:41:03 +00008902 dev_info(&pdev->dev,
Catherine Sullivan7aa67612014-07-09 07:46:17 +00008903 "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");
8904 else if (hw->aq.api_maj_ver < I40E_FW_API_VERSION_MAJOR ||
8905 hw->aq.api_min_ver < (I40E_FW_API_VERSION_MINOR - 1))
Shannon Nelson278b6f62014-06-04 01:41:03 +00008906 dev_info(&pdev->dev,
Catherine Sullivan7aa67612014-07-09 07:46:17 +00008907 "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 +00008908
8909
Shannon Nelson4eb3f762014-03-06 08:59:58 +00008910 i40e_verify_eeprom(pf);
8911
Jesse Brandeburg2c5fe332014-04-23 04:49:57 +00008912 /* Rev 0 hardware was never productized */
8913 if (hw->revision_id < 1)
8914 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");
8915
Shannon Nelson6ff4ef82013-12-21 05:44:49 +00008916 i40e_clear_pxe_mode(hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008917 err = i40e_get_capabilities(pf);
8918 if (err)
8919 goto err_adminq_setup;
8920
8921 err = i40e_sw_init(pf);
8922 if (err) {
8923 dev_info(&pdev->dev, "sw_init failed: %d\n", err);
8924 goto err_sw_init;
8925 }
8926
8927 err = i40e_init_lan_hmc(hw, hw->func_caps.num_tx_qp,
8928 hw->func_caps.num_rx_qp,
8929 pf->fcoe_hmc_cntx_num, pf->fcoe_hmc_filt_num);
8930 if (err) {
8931 dev_info(&pdev->dev, "init_lan_hmc failed: %d\n", err);
8932 goto err_init_lan_hmc;
8933 }
8934
8935 err = i40e_configure_lan_hmc(hw, I40E_HMC_MODEL_DIRECT_ONLY);
8936 if (err) {
8937 dev_info(&pdev->dev, "configure_lan_hmc failed: %d\n", err);
8938 err = -ENOENT;
8939 goto err_configure_lan_hmc;
8940 }
8941
8942 i40e_get_mac_addr(hw, hw->mac.addr);
Jesse Brandeburgf62b5062013-11-28 06:39:27 +00008943 if (!is_valid_ether_addr(hw->mac.addr)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008944 dev_info(&pdev->dev, "invalid MAC address %pM\n", hw->mac.addr);
8945 err = -EIO;
8946 goto err_mac_addr;
8947 }
8948 dev_info(&pdev->dev, "MAC address: %pM\n", hw->mac.addr);
Greg Rose9a173902014-05-22 06:32:02 +00008949 ether_addr_copy(hw->mac.perm_addr, hw->mac.addr);
Neerav Parikh1f224ad2014-02-12 01:45:31 +00008950 i40e_get_port_mac_addr(hw, hw->mac.port_addr);
8951 if (is_valid_ether_addr(hw->mac.port_addr))
8952 pf->flags |= I40E_FLAG_PORT_ID_VALID;
Vasu Dev38e00432014-08-01 13:27:03 -07008953#ifdef I40E_FCOE
8954 err = i40e_get_san_mac_addr(hw, hw->mac.san_addr);
8955 if (err)
8956 dev_info(&pdev->dev,
8957 "(non-fatal) SAN MAC retrieval failed: %d\n", err);
8958 if (!is_valid_ether_addr(hw->mac.san_addr)) {
8959 dev_warn(&pdev->dev, "invalid SAN MAC address %pM, falling back to LAN MAC\n",
8960 hw->mac.san_addr);
8961 ether_addr_copy(hw->mac.san_addr, hw->mac.addr);
8962 }
8963 dev_info(&pf->pdev->dev, "SAN MAC: %pM\n", hw->mac.san_addr);
8964#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008965
8966 pci_set_drvdata(pdev, pf);
8967 pci_save_state(pdev);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08008968#ifdef CONFIG_I40E_DCB
8969 err = i40e_init_pf_dcb(pf);
8970 if (err) {
8971 dev_info(&pdev->dev, "init_pf_dcb failed: %d\n", err);
Neerav Parikh4d9b6042014-05-22 06:31:51 +00008972 pf->flags &= ~I40E_FLAG_DCB_CAPABLE;
Neerav Parikh014269f2014-04-01 07:11:48 +00008973 /* Continue without DCB enabled */
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08008974 }
8975#endif /* CONFIG_I40E_DCB */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008976
8977 /* set up periodic task facility */
8978 setup_timer(&pf->service_timer, i40e_service_timer, (unsigned long)pf);
8979 pf->service_timer_period = HZ;
8980
8981 INIT_WORK(&pf->service_task, i40e_service_task);
8982 clear_bit(__I40E_SERVICE_SCHED, &pf->state);
8983 pf->flags |= I40E_FLAG_NEED_LINK_UPDATE;
8984 pf->link_check_timeout = jiffies;
8985
Shannon Nelson8e2773a2013-11-28 06:39:22 +00008986 /* WoL defaults to disabled */
8987 pf->wol_en = false;
8988 device_set_wakeup_enable(&pf->pdev->dev, pf->wol_en);
8989
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008990 /* set up the main switch operations */
8991 i40e_determine_queue_usage(pf);
8992 i40e_init_interrupt_scheme(pf);
8993
Mitch Williams505682c2014-05-20 08:01:37 +00008994 /* The number of VSIs reported by the FW is the minimum guaranteed
8995 * to us; HW supports far more and we share the remaining pool with
8996 * the other PFs. We allocate space for more than the guarantee with
8997 * the understanding that we might not get them all later.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008998 */
Mitch Williams505682c2014-05-20 08:01:37 +00008999 if (pf->hw.func_caps.num_vsis < I40E_MIN_VSI_ALLOC)
9000 pf->num_alloc_vsi = I40E_MIN_VSI_ALLOC;
9001 else
9002 pf->num_alloc_vsi = pf->hw.func_caps.num_vsis;
9003
9004 /* Set up the *vsi struct and our local tracking of the MAIN PF vsi. */
9005 len = sizeof(struct i40e_vsi *) * pf->num_alloc_vsi;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009006 pf->vsi = kzalloc(len, GFP_KERNEL);
Wei Yongjuned87ac02013-09-24 05:17:25 +00009007 if (!pf->vsi) {
9008 err = -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009009 goto err_switch_setup;
Wei Yongjuned87ac02013-09-24 05:17:25 +00009010 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009011
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00009012 err = i40e_setup_pf_switch(pf, false);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009013 if (err) {
9014 dev_info(&pdev->dev, "setup_pf_switch failed: %d\n", err);
9015 goto err_vsis;
9016 }
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00009017 /* if FDIR VSI was set up, start it now */
Mitch Williams505682c2014-05-20 08:01:37 +00009018 for (i = 0; i < pf->num_alloc_vsi; i++) {
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00009019 if (pf->vsi[i] && pf->vsi[i]->type == I40E_VSI_FDIR) {
9020 i40e_vsi_open(pf->vsi[i]);
9021 break;
9022 }
9023 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009024
9025 /* The main driver is (mostly) up and happy. We need to set this state
9026 * before setting up the misc vector or we get a race and the vector
9027 * ends up disabled forever.
9028 */
9029 clear_bit(__I40E_DOWN, &pf->state);
9030
9031 /* In case of MSIX we are going to setup the misc vector right here
9032 * to handle admin queue events etc. In case of legacy and MSI
9033 * the misc functionality and queue processing is combined in
9034 * the same vector and that gets setup at open.
9035 */
9036 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
9037 err = i40e_setup_misc_vector(pf);
9038 if (err) {
9039 dev_info(&pdev->dev,
9040 "setup of misc vector failed: %d\n", err);
9041 goto err_vsis;
9042 }
9043 }
9044
Greg Rosedf805f62014-04-04 04:43:16 +00009045#ifdef CONFIG_PCI_IOV
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009046 /* prep for VF support */
9047 if ((pf->flags & I40E_FLAG_SRIOV_ENABLED) &&
Shannon Nelson4eb3f762014-03-06 08:59:58 +00009048 (pf->flags & I40E_FLAG_MSIX_ENABLED) &&
9049 !test_bit(__I40E_BAD_EEPROM, &pf->state)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009050 u32 val;
9051
9052 /* disable link interrupts for VFs */
9053 val = rd32(hw, I40E_PFGEN_PORTMDIO_NUM);
9054 val &= ~I40E_PFGEN_PORTMDIO_NUM_VFLINK_STAT_ENA_MASK;
9055 wr32(hw, I40E_PFGEN_PORTMDIO_NUM, val);
9056 i40e_flush(hw);
Mitch Williams4aeec012014-02-13 03:48:47 -08009057
9058 if (pci_num_vf(pdev)) {
9059 dev_info(&pdev->dev,
9060 "Active VFs found, allocating resources.\n");
9061 err = i40e_alloc_vfs(pf, pci_num_vf(pdev));
9062 if (err)
9063 dev_info(&pdev->dev,
9064 "Error %d allocating resources for existing VFs\n",
9065 err);
9066 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009067 }
Greg Rosedf805f62014-04-04 04:43:16 +00009068#endif /* CONFIG_PCI_IOV */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009069
Anjali Singhai Jain93cd7652013-11-20 10:03:01 +00009070 pfs_found++;
9071
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009072 i40e_dbg_pf_init(pf);
9073
9074 /* tell the firmware that we're starting */
Jesse Brandeburg44033fa2014-04-23 04:50:15 +00009075 i40e_send_version(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009076
9077 /* since everything's happy, start the service_task timer */
9078 mod_timer(&pf->service_timer,
9079 round_jiffies(jiffies + pf->service_timer_period));
9080
Vasu Dev38e00432014-08-01 13:27:03 -07009081#ifdef I40E_FCOE
9082 /* create FCoE interface */
9083 i40e_fcoe_vsi_setup(pf);
9084
9085#endif
Catherine Sullivand4dfb812013-11-28 06:39:21 +00009086 /* Get the negotiated link width and speed from PCI config space */
9087 pcie_capability_read_word(pf->pdev, PCI_EXP_LNKSTA, &link_status);
9088
9089 i40e_set_pci_config_data(hw, link_status);
9090
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00009091 dev_info(&pdev->dev, "PCI-Express: %s %s\n",
Catherine Sullivand4dfb812013-11-28 06:39:21 +00009092 (hw->bus.speed == i40e_bus_speed_8000 ? "Speed 8.0GT/s" :
9093 hw->bus.speed == i40e_bus_speed_5000 ? "Speed 5.0GT/s" :
9094 hw->bus.speed == i40e_bus_speed_2500 ? "Speed 2.5GT/s" :
9095 "Unknown"),
9096 (hw->bus.width == i40e_bus_width_pcie_x8 ? "Width x8" :
9097 hw->bus.width == i40e_bus_width_pcie_x4 ? "Width x4" :
9098 hw->bus.width == i40e_bus_width_pcie_x2 ? "Width x2" :
9099 hw->bus.width == i40e_bus_width_pcie_x1 ? "Width x1" :
9100 "Unknown"));
9101
9102 if (hw->bus.width < i40e_bus_width_pcie_x8 ||
9103 hw->bus.speed < i40e_bus_speed_8000) {
9104 dev_warn(&pdev->dev, "PCI-Express bandwidth available for this device may be insufficient for optimal performance.\n");
9105 dev_warn(&pdev->dev, "Please move the device to a different PCI-e link with more lanes and/or higher transfer rate.\n");
9106 }
9107
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00009108 /* print a string summarizing features */
9109 i40e_print_features(pf);
9110
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009111 return 0;
9112
9113 /* Unwind what we've done if something failed in the setup */
9114err_vsis:
9115 set_bit(__I40E_DOWN, &pf->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009116 i40e_clear_interrupt_scheme(pf);
9117 kfree(pf->vsi);
Shannon Nelson04b03012013-11-28 06:39:34 +00009118err_switch_setup:
9119 i40e_reset_interrupt_capability(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009120 del_timer_sync(&pf->service_timer);
9121err_mac_addr:
9122err_configure_lan_hmc:
9123 (void)i40e_shutdown_lan_hmc(hw);
9124err_init_lan_hmc:
9125 kfree(pf->qp_pile);
9126 kfree(pf->irq_pile);
9127err_sw_init:
9128err_adminq_setup:
9129 (void)i40e_shutdown_adminq(hw);
9130err_pf_reset:
9131 iounmap(hw->hw_addr);
9132err_ioremap:
9133 kfree(pf);
9134err_pf_alloc:
9135 pci_disable_pcie_error_reporting(pdev);
9136 pci_release_selected_regions(pdev,
9137 pci_select_bars(pdev, IORESOURCE_MEM));
9138err_pci_reg:
9139err_dma:
9140 pci_disable_device(pdev);
9141 return err;
9142}
9143
9144/**
9145 * i40e_remove - Device removal routine
9146 * @pdev: PCI device information struct
9147 *
9148 * i40e_remove is called by the PCI subsystem to alert the driver
9149 * that is should release a PCI device. This could be caused by a
9150 * Hot-Plug event, or because the driver is going to be removed from
9151 * memory.
9152 **/
9153static void i40e_remove(struct pci_dev *pdev)
9154{
9155 struct i40e_pf *pf = pci_get_drvdata(pdev);
9156 i40e_status ret_code;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009157 int i;
9158
9159 i40e_dbg_pf_exit(pf);
9160
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00009161 i40e_ptp_stop(pf);
9162
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009163 /* no more scheduling of any task */
9164 set_bit(__I40E_DOWN, &pf->state);
9165 del_timer_sync(&pf->service_timer);
9166 cancel_work_sync(&pf->service_task);
9167
Mitch Williamseb2d80b2014-02-13 03:48:48 -08009168 if (pf->flags & I40E_FLAG_SRIOV_ENABLED) {
9169 i40e_free_vfs(pf);
9170 pf->flags &= ~I40E_FLAG_SRIOV_ENABLED;
9171 }
9172
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009173 i40e_fdir_teardown(pf);
9174
9175 /* If there is a switch structure or any orphans, remove them.
9176 * This will leave only the PF's VSI remaining.
9177 */
9178 for (i = 0; i < I40E_MAX_VEB; i++) {
9179 if (!pf->veb[i])
9180 continue;
9181
9182 if (pf->veb[i]->uplink_seid == pf->mac_seid ||
9183 pf->veb[i]->uplink_seid == 0)
9184 i40e_switch_branch_release(pf->veb[i]);
9185 }
9186
9187 /* Now we can shutdown the PF's VSI, just before we kill
9188 * adminq and hmc.
9189 */
9190 if (pf->vsi[pf->lan_vsi])
9191 i40e_vsi_release(pf->vsi[pf->lan_vsi]);
9192
9193 i40e_stop_misc_vector(pf);
9194 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
9195 synchronize_irq(pf->msix_entries[0].vector);
9196 free_irq(pf->msix_entries[0].vector, pf);
9197 }
9198
9199 /* shutdown and destroy the HMC */
Shannon Nelson60442de2014-04-23 04:50:13 +00009200 if (pf->hw.hmc.hmc_obj) {
9201 ret_code = i40e_shutdown_lan_hmc(&pf->hw);
9202 if (ret_code)
9203 dev_warn(&pdev->dev,
9204 "Failed to destroy the HMC resources: %d\n",
9205 ret_code);
9206 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009207
9208 /* shutdown the adminq */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009209 ret_code = i40e_shutdown_adminq(&pf->hw);
9210 if (ret_code)
9211 dev_warn(&pdev->dev,
9212 "Failed to destroy the Admin Queue resources: %d\n",
9213 ret_code);
9214
9215 /* Clear all dynamic memory lists of rings, q_vectors, and VSIs */
9216 i40e_clear_interrupt_scheme(pf);
Mitch Williams505682c2014-05-20 08:01:37 +00009217 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009218 if (pf->vsi[i]) {
9219 i40e_vsi_clear_rings(pf->vsi[i]);
9220 i40e_vsi_clear(pf->vsi[i]);
9221 pf->vsi[i] = NULL;
9222 }
9223 }
9224
9225 for (i = 0; i < I40E_MAX_VEB; i++) {
9226 kfree(pf->veb[i]);
9227 pf->veb[i] = NULL;
9228 }
9229
9230 kfree(pf->qp_pile);
9231 kfree(pf->irq_pile);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009232 kfree(pf->vsi);
9233
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009234 iounmap(pf->hw.hw_addr);
9235 kfree(pf);
9236 pci_release_selected_regions(pdev,
9237 pci_select_bars(pdev, IORESOURCE_MEM));
9238
9239 pci_disable_pcie_error_reporting(pdev);
9240 pci_disable_device(pdev);
9241}
9242
9243/**
9244 * i40e_pci_error_detected - warning that something funky happened in PCI land
9245 * @pdev: PCI device information struct
9246 *
9247 * Called to warn that something happened and the error handling steps
9248 * are in progress. Allows the driver to quiesce things, be ready for
9249 * remediation.
9250 **/
9251static pci_ers_result_t i40e_pci_error_detected(struct pci_dev *pdev,
9252 enum pci_channel_state error)
9253{
9254 struct i40e_pf *pf = pci_get_drvdata(pdev);
9255
9256 dev_info(&pdev->dev, "%s: error %d\n", __func__, error);
9257
9258 /* shutdown all operations */
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009259 if (!test_bit(__I40E_SUSPENDED, &pf->state)) {
9260 rtnl_lock();
9261 i40e_prep_for_reset(pf);
9262 rtnl_unlock();
9263 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009264
9265 /* Request a slot reset */
9266 return PCI_ERS_RESULT_NEED_RESET;
9267}
9268
9269/**
9270 * i40e_pci_error_slot_reset - a PCI slot reset just happened
9271 * @pdev: PCI device information struct
9272 *
9273 * Called to find if the driver can work with the device now that
9274 * the pci slot has been reset. If a basic connection seems good
9275 * (registers are readable and have sane content) then return a
9276 * happy little PCI_ERS_RESULT_xxx.
9277 **/
9278static pci_ers_result_t i40e_pci_error_slot_reset(struct pci_dev *pdev)
9279{
9280 struct i40e_pf *pf = pci_get_drvdata(pdev);
9281 pci_ers_result_t result;
9282 int err;
9283 u32 reg;
9284
9285 dev_info(&pdev->dev, "%s\n", __func__);
9286 if (pci_enable_device_mem(pdev)) {
9287 dev_info(&pdev->dev,
9288 "Cannot re-enable PCI device after reset.\n");
9289 result = PCI_ERS_RESULT_DISCONNECT;
9290 } else {
9291 pci_set_master(pdev);
9292 pci_restore_state(pdev);
9293 pci_save_state(pdev);
9294 pci_wake_from_d3(pdev, false);
9295
9296 reg = rd32(&pf->hw, I40E_GLGEN_RTRIG);
9297 if (reg == 0)
9298 result = PCI_ERS_RESULT_RECOVERED;
9299 else
9300 result = PCI_ERS_RESULT_DISCONNECT;
9301 }
9302
9303 err = pci_cleanup_aer_uncorrect_error_status(pdev);
9304 if (err) {
9305 dev_info(&pdev->dev,
9306 "pci_cleanup_aer_uncorrect_error_status failed 0x%0x\n",
9307 err);
9308 /* non-fatal, continue */
9309 }
9310
9311 return result;
9312}
9313
9314/**
9315 * i40e_pci_error_resume - restart operations after PCI error recovery
9316 * @pdev: PCI device information struct
9317 *
9318 * Called to allow the driver to bring things back up after PCI error
9319 * and/or reset recovery has finished.
9320 **/
9321static void i40e_pci_error_resume(struct pci_dev *pdev)
9322{
9323 struct i40e_pf *pf = pci_get_drvdata(pdev);
9324
9325 dev_info(&pdev->dev, "%s\n", __func__);
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009326 if (test_bit(__I40E_SUSPENDED, &pf->state))
9327 return;
9328
9329 rtnl_lock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009330 i40e_handle_reset_warning(pf);
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009331 rtnl_lock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009332}
9333
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009334/**
9335 * i40e_shutdown - PCI callback for shutting down
9336 * @pdev: PCI device information struct
9337 **/
9338static void i40e_shutdown(struct pci_dev *pdev)
9339{
9340 struct i40e_pf *pf = pci_get_drvdata(pdev);
Shannon Nelson8e2773a2013-11-28 06:39:22 +00009341 struct i40e_hw *hw = &pf->hw;
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009342
9343 set_bit(__I40E_SUSPENDED, &pf->state);
9344 set_bit(__I40E_DOWN, &pf->state);
9345 rtnl_lock();
9346 i40e_prep_for_reset(pf);
9347 rtnl_unlock();
9348
Shannon Nelson8e2773a2013-11-28 06:39:22 +00009349 wr32(hw, I40E_PFPM_APM, (pf->wol_en ? I40E_PFPM_APM_APME_MASK : 0));
9350 wr32(hw, I40E_PFPM_WUFC, (pf->wol_en ? I40E_PFPM_WUFC_MAG_MASK : 0));
9351
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009352 if (system_state == SYSTEM_POWER_OFF) {
Shannon Nelson8e2773a2013-11-28 06:39:22 +00009353 pci_wake_from_d3(pdev, pf->wol_en);
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009354 pci_set_power_state(pdev, PCI_D3hot);
9355 }
9356}
9357
9358#ifdef CONFIG_PM
9359/**
9360 * i40e_suspend - PCI callback for moving to D3
9361 * @pdev: PCI device information struct
9362 **/
9363static int i40e_suspend(struct pci_dev *pdev, pm_message_t state)
9364{
9365 struct i40e_pf *pf = pci_get_drvdata(pdev);
Shannon Nelson8e2773a2013-11-28 06:39:22 +00009366 struct i40e_hw *hw = &pf->hw;
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009367
9368 set_bit(__I40E_SUSPENDED, &pf->state);
9369 set_bit(__I40E_DOWN, &pf->state);
9370 rtnl_lock();
9371 i40e_prep_for_reset(pf);
9372 rtnl_unlock();
9373
Shannon Nelson8e2773a2013-11-28 06:39:22 +00009374 wr32(hw, I40E_PFPM_APM, (pf->wol_en ? I40E_PFPM_APM_APME_MASK : 0));
9375 wr32(hw, I40E_PFPM_WUFC, (pf->wol_en ? I40E_PFPM_WUFC_MAG_MASK : 0));
9376
9377 pci_wake_from_d3(pdev, pf->wol_en);
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009378 pci_set_power_state(pdev, PCI_D3hot);
9379
9380 return 0;
9381}
9382
9383/**
9384 * i40e_resume - PCI callback for waking up from D3
9385 * @pdev: PCI device information struct
9386 **/
9387static int i40e_resume(struct pci_dev *pdev)
9388{
9389 struct i40e_pf *pf = pci_get_drvdata(pdev);
9390 u32 err;
9391
9392 pci_set_power_state(pdev, PCI_D0);
9393 pci_restore_state(pdev);
9394 /* pci_restore_state() clears dev->state_saves, so
9395 * call pci_save_state() again to restore it.
9396 */
9397 pci_save_state(pdev);
9398
9399 err = pci_enable_device_mem(pdev);
9400 if (err) {
9401 dev_err(&pdev->dev,
9402 "%s: Cannot enable PCI device from suspend\n",
9403 __func__);
9404 return err;
9405 }
9406 pci_set_master(pdev);
9407
9408 /* no wakeup events while running */
9409 pci_wake_from_d3(pdev, false);
9410
9411 /* handling the reset will rebuild the device state */
9412 if (test_and_clear_bit(__I40E_SUSPENDED, &pf->state)) {
9413 clear_bit(__I40E_DOWN, &pf->state);
9414 rtnl_lock();
9415 i40e_reset_and_rebuild(pf, false);
9416 rtnl_unlock();
9417 }
9418
9419 return 0;
9420}
9421
9422#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009423static const struct pci_error_handlers i40e_err_handler = {
9424 .error_detected = i40e_pci_error_detected,
9425 .slot_reset = i40e_pci_error_slot_reset,
9426 .resume = i40e_pci_error_resume,
9427};
9428
9429static struct pci_driver i40e_driver = {
9430 .name = i40e_driver_name,
9431 .id_table = i40e_pci_tbl,
9432 .probe = i40e_probe,
9433 .remove = i40e_remove,
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009434#ifdef CONFIG_PM
9435 .suspend = i40e_suspend,
9436 .resume = i40e_resume,
9437#endif
9438 .shutdown = i40e_shutdown,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009439 .err_handler = &i40e_err_handler,
9440 .sriov_configure = i40e_pci_sriov_configure,
9441};
9442
9443/**
9444 * i40e_init_module - Driver registration routine
9445 *
9446 * i40e_init_module is the first routine called when the driver is
9447 * loaded. All it does is register with the PCI subsystem.
9448 **/
9449static int __init i40e_init_module(void)
9450{
9451 pr_info("%s: %s - version %s\n", i40e_driver_name,
9452 i40e_driver_string, i40e_driver_version_str);
9453 pr_info("%s: %s\n", i40e_driver_name, i40e_copyright);
9454 i40e_dbg_init();
9455 return pci_register_driver(&i40e_driver);
9456}
9457module_init(i40e_init_module);
9458
9459/**
9460 * i40e_exit_module - Driver exit cleanup routine
9461 *
9462 * i40e_exit_module is called just before the driver is removed
9463 * from memory.
9464 **/
9465static void __exit i40e_exit_module(void)
9466{
9467 pci_unregister_driver(&i40e_driver);
9468 i40e_dbg_exit();
9469}
9470module_exit(i40e_exit_module);