blob: 712a23b926b31ea7074de06bd2f088123718cfa2 [file] [log] [blame]
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001/*******************************************************************************
2 *
3 * Intel Ethernet Controller XL710 Family Linux Driver
Greg Rosedc641b72013-12-18 13:45:51 +00004 * Copyright(c) 2013 - 2014 Intel Corporation.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms and conditions of the GNU General Public License,
8 * version 2, as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * more details.
14 *
Greg Rosedc641b72013-12-18 13:45:51 +000015 * You should have received a copy of the GNU General Public License along
16 * with this program. If not, see <http://www.gnu.org/licenses/>.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000017 *
18 * The full GNU General Public License is included in this distribution in
19 * the file called "COPYING".
20 *
21 * Contact Information:
22 * e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
23 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
24 *
25 ******************************************************************************/
26
27/* Local includes */
28#include "i40e.h"
Shannon Nelson4eb3f762014-03-06 08:59:58 +000029#include "i40e_diag.h"
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +000030#ifdef CONFIG_I40E_VXLAN
31#include <net/vxlan.h>
32#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000033
34const char i40e_driver_name[] = "i40e";
35static const char i40e_driver_string[] =
36 "Intel(R) Ethernet Connection XL710 Network Driver";
37
38#define DRV_KERN "-k"
39
40#define DRV_VERSION_MAJOR 0
Catherine Sullivane454d6b2014-04-23 04:50:17 +000041#define DRV_VERSION_MINOR 4
Catherine Sullivan4e776382014-06-04 08:45:29 +000042#define DRV_VERSION_BUILD 21
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000043#define DRV_VERSION __stringify(DRV_VERSION_MAJOR) "." \
44 __stringify(DRV_VERSION_MINOR) "." \
45 __stringify(DRV_VERSION_BUILD) DRV_KERN
46const char i40e_driver_version_str[] = DRV_VERSION;
Jesse Brandeburg8fb905b2014-01-17 15:36:33 -080047static const char i40e_copyright[] = "Copyright (c) 2013 - 2014 Intel Corporation.";
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000048
49/* a bit of forward declarations */
50static void i40e_vsi_reinit_locked(struct i40e_vsi *vsi);
51static void i40e_handle_reset_warning(struct i40e_pf *pf);
52static int i40e_add_vsi(struct i40e_vsi *vsi);
53static int i40e_add_veb(struct i40e_veb *veb, struct i40e_vsi *vsi);
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +000054static int i40e_setup_pf_switch(struct i40e_pf *pf, bool reinit);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000055static int i40e_setup_misc_vector(struct i40e_pf *pf);
56static void i40e_determine_queue_usage(struct i40e_pf *pf);
57static int i40e_setup_pf_filter_control(struct i40e_pf *pf);
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080058static void i40e_fdir_sb_setup(struct i40e_pf *pf);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -080059static int i40e_veb_get_bw_info(struct i40e_veb *veb);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000060
61/* i40e_pci_tbl - PCI Device ID Table
62 *
63 * Last entry must be all 0s
64 *
65 * { Vendor ID, Device ID, SubVendor ID, SubDevice ID,
66 * Class, Class Mask, private data (not used) }
67 */
Benoit Taine9baa3c32014-08-08 15:56:03 +020068static const struct pci_device_id i40e_pci_tbl[] = {
Shannon Nelsonab600852014-01-17 15:36:39 -080069 {PCI_VDEVICE(INTEL, I40E_DEV_ID_SFP_XL710), 0},
Shannon Nelsonab600852014-01-17 15:36:39 -080070 {PCI_VDEVICE(INTEL, I40E_DEV_ID_QEMU), 0},
71 {PCI_VDEVICE(INTEL, I40E_DEV_ID_KX_A), 0},
72 {PCI_VDEVICE(INTEL, I40E_DEV_ID_KX_B), 0},
73 {PCI_VDEVICE(INTEL, I40E_DEV_ID_KX_C), 0},
Shannon Nelsonab600852014-01-17 15:36:39 -080074 {PCI_VDEVICE(INTEL, I40E_DEV_ID_QSFP_A), 0},
75 {PCI_VDEVICE(INTEL, I40E_DEV_ID_QSFP_B), 0},
76 {PCI_VDEVICE(INTEL, I40E_DEV_ID_QSFP_C), 0},
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000077 /* required last entry */
78 {0, }
79};
80MODULE_DEVICE_TABLE(pci, i40e_pci_tbl);
81
82#define I40E_MAX_VF_COUNT 128
83static int debug = -1;
84module_param(debug, int, 0);
85MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all)");
86
87MODULE_AUTHOR("Intel Corporation, <e1000-devel@lists.sourceforge.net>");
88MODULE_DESCRIPTION("Intel(R) Ethernet Connection XL710 Network Driver");
89MODULE_LICENSE("GPL");
90MODULE_VERSION(DRV_VERSION);
91
92/**
93 * i40e_allocate_dma_mem_d - OS specific memory alloc for shared code
94 * @hw: pointer to the HW structure
95 * @mem: ptr to mem struct to fill out
96 * @size: size of memory requested
97 * @alignment: what to align the allocation to
98 **/
99int i40e_allocate_dma_mem_d(struct i40e_hw *hw, struct i40e_dma_mem *mem,
100 u64 size, u32 alignment)
101{
102 struct i40e_pf *pf = (struct i40e_pf *)hw->back;
103
104 mem->size = ALIGN(size, alignment);
105 mem->va = dma_zalloc_coherent(&pf->pdev->dev, mem->size,
106 &mem->pa, GFP_KERNEL);
Jesse Brandeburg93bc73b2013-09-13 08:23:18 +0000107 if (!mem->va)
108 return -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000109
Jesse Brandeburg93bc73b2013-09-13 08:23:18 +0000110 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000111}
112
113/**
114 * i40e_free_dma_mem_d - OS specific memory free for shared code
115 * @hw: pointer to the HW structure
116 * @mem: ptr to mem struct to free
117 **/
118int i40e_free_dma_mem_d(struct i40e_hw *hw, struct i40e_dma_mem *mem)
119{
120 struct i40e_pf *pf = (struct i40e_pf *)hw->back;
121
122 dma_free_coherent(&pf->pdev->dev, mem->size, mem->va, mem->pa);
123 mem->va = NULL;
124 mem->pa = 0;
125 mem->size = 0;
126
127 return 0;
128}
129
130/**
131 * i40e_allocate_virt_mem_d - OS specific memory alloc for shared code
132 * @hw: pointer to the HW structure
133 * @mem: ptr to mem struct to fill out
134 * @size: size of memory requested
135 **/
136int i40e_allocate_virt_mem_d(struct i40e_hw *hw, struct i40e_virt_mem *mem,
137 u32 size)
138{
139 mem->size = size;
140 mem->va = kzalloc(size, GFP_KERNEL);
141
Jesse Brandeburg93bc73b2013-09-13 08:23:18 +0000142 if (!mem->va)
143 return -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000144
Jesse Brandeburg93bc73b2013-09-13 08:23:18 +0000145 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000146}
147
148/**
149 * i40e_free_virt_mem_d - OS specific memory free for shared code
150 * @hw: pointer to the HW structure
151 * @mem: ptr to mem struct to free
152 **/
153int i40e_free_virt_mem_d(struct i40e_hw *hw, struct i40e_virt_mem *mem)
154{
155 /* it's ok to kfree a NULL pointer */
156 kfree(mem->va);
157 mem->va = NULL;
158 mem->size = 0;
159
160 return 0;
161}
162
163/**
164 * i40e_get_lump - find a lump of free generic resource
165 * @pf: board private structure
166 * @pile: the pile of resource to search
167 * @needed: the number of items needed
168 * @id: an owner id to stick on the items assigned
169 *
170 * Returns the base item index of the lump, or negative for error
171 *
172 * The search_hint trick and lack of advanced fit-finding only work
173 * because we're highly likely to have all the same size lump requests.
174 * Linear search time and any fragmentation should be minimal.
175 **/
176static int i40e_get_lump(struct i40e_pf *pf, struct i40e_lump_tracking *pile,
177 u16 needed, u16 id)
178{
179 int ret = -ENOMEM;
Jesse Brandeburgddf434a2013-09-13 08:23:19 +0000180 int i, j;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000181
182 if (!pile || needed == 0 || id >= I40E_PILE_VALID_BIT) {
183 dev_info(&pf->pdev->dev,
184 "param err: pile=%p needed=%d id=0x%04x\n",
185 pile, needed, id);
186 return -EINVAL;
187 }
188
189 /* start the linear search with an imperfect hint */
190 i = pile->search_hint;
Jesse Brandeburgddf434a2013-09-13 08:23:19 +0000191 while (i < pile->num_entries) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000192 /* skip already allocated entries */
193 if (pile->list[i] & I40E_PILE_VALID_BIT) {
194 i++;
195 continue;
196 }
197
198 /* do we have enough in this lump? */
199 for (j = 0; (j < needed) && ((i+j) < pile->num_entries); j++) {
200 if (pile->list[i+j] & I40E_PILE_VALID_BIT)
201 break;
202 }
203
204 if (j == needed) {
205 /* there was enough, so assign it to the requestor */
206 for (j = 0; j < needed; j++)
207 pile->list[i+j] = id | I40E_PILE_VALID_BIT;
208 ret = i;
209 pile->search_hint = i + j;
Jesse Brandeburgddf434a2013-09-13 08:23:19 +0000210 break;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000211 } else {
212 /* not enough, so skip over it and continue looking */
213 i += j;
214 }
215 }
216
217 return ret;
218}
219
220/**
221 * i40e_put_lump - return a lump of generic resource
222 * @pile: the pile of resource to search
223 * @index: the base item index
224 * @id: the owner id of the items assigned
225 *
226 * Returns the count of items in the lump
227 **/
228static int i40e_put_lump(struct i40e_lump_tracking *pile, u16 index, u16 id)
229{
230 int valid_id = (id | I40E_PILE_VALID_BIT);
231 int count = 0;
232 int i;
233
234 if (!pile || index >= pile->num_entries)
235 return -EINVAL;
236
237 for (i = index;
238 i < pile->num_entries && pile->list[i] == valid_id;
239 i++) {
240 pile->list[i] = 0;
241 count++;
242 }
243
244 if (count && index < pile->search_hint)
245 pile->search_hint = index;
246
247 return count;
248}
249
250/**
251 * i40e_service_event_schedule - Schedule the service task to wake up
252 * @pf: board private structure
253 *
254 * If not already scheduled, this puts the task into the work queue
255 **/
256static void i40e_service_event_schedule(struct i40e_pf *pf)
257{
258 if (!test_bit(__I40E_DOWN, &pf->state) &&
259 !test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state) &&
260 !test_and_set_bit(__I40E_SERVICE_SCHED, &pf->state))
261 schedule_work(&pf->service_task);
262}
263
264/**
265 * i40e_tx_timeout - Respond to a Tx Hang
266 * @netdev: network interface device structure
267 *
268 * If any port has noticed a Tx timeout, it is likely that the whole
269 * device is munged, not just the one netdev port, so go for the full
270 * reset.
271 **/
Vasu Dev38e00432014-08-01 13:27:03 -0700272#ifdef I40E_FCOE
273void i40e_tx_timeout(struct net_device *netdev)
274#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000275static void i40e_tx_timeout(struct net_device *netdev)
Vasu Dev38e00432014-08-01 13:27:03 -0700276#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000277{
278 struct i40e_netdev_priv *np = netdev_priv(netdev);
279 struct i40e_vsi *vsi = np->vsi;
280 struct i40e_pf *pf = vsi->back;
281
282 pf->tx_timeout_count++;
283
284 if (time_after(jiffies, (pf->tx_timeout_last_recovery + HZ*20)))
Anjali Singhai Jain327fe042014-06-04 01:23:26 +0000285 pf->tx_timeout_recovery_level = 1;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000286 pf->tx_timeout_last_recovery = jiffies;
287 netdev_info(netdev, "tx_timeout recovery level %d\n",
288 pf->tx_timeout_recovery_level);
289
290 switch (pf->tx_timeout_recovery_level) {
291 case 0:
292 /* disable and re-enable queues for the VSI */
293 if (in_interrupt()) {
294 set_bit(__I40E_REINIT_REQUESTED, &pf->state);
295 set_bit(__I40E_REINIT_REQUESTED, &vsi->state);
296 } else {
297 i40e_vsi_reinit_locked(vsi);
298 }
299 break;
300 case 1:
301 set_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
302 break;
303 case 2:
304 set_bit(__I40E_CORE_RESET_REQUESTED, &pf->state);
305 break;
306 case 3:
307 set_bit(__I40E_GLOBAL_RESET_REQUESTED, &pf->state);
308 break;
309 default:
310 netdev_err(netdev, "tx_timeout recovery unsuccessful\n");
Neerav Parikhb5d06f02014-06-03 23:50:17 +0000311 set_bit(__I40E_DOWN_REQUESTED, &pf->state);
312 set_bit(__I40E_DOWN_REQUESTED, &vsi->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000313 break;
314 }
315 i40e_service_event_schedule(pf);
316 pf->tx_timeout_recovery_level++;
317}
318
319/**
320 * i40e_release_rx_desc - Store the new tail and head values
321 * @rx_ring: ring to bump
322 * @val: new head index
323 **/
324static inline void i40e_release_rx_desc(struct i40e_ring *rx_ring, u32 val)
325{
326 rx_ring->next_to_use = val;
327
328 /* Force memory writes to complete before letting h/w
329 * know there are new descriptors to fetch. (Only
330 * applicable for weak-ordered memory model archs,
331 * such as IA-64).
332 */
333 wmb();
334 writel(val, rx_ring->tail);
335}
336
337/**
338 * i40e_get_vsi_stats_struct - Get System Network Statistics
339 * @vsi: the VSI we care about
340 *
341 * Returns the address of the device statistics structure.
342 * The statistics are actually updated from the service task.
343 **/
344struct rtnl_link_stats64 *i40e_get_vsi_stats_struct(struct i40e_vsi *vsi)
345{
346 return &vsi->net_stats;
347}
348
349/**
350 * i40e_get_netdev_stats_struct - Get statistics for netdev interface
351 * @netdev: network interface device structure
352 *
353 * Returns the address of the device statistics structure.
354 * The statistics are actually updated from the service task.
355 **/
Vasu Dev38e00432014-08-01 13:27:03 -0700356#ifdef I40E_FCOE
357struct rtnl_link_stats64 *i40e_get_netdev_stats_struct(
358 struct net_device *netdev,
359 struct rtnl_link_stats64 *stats)
360#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000361static struct rtnl_link_stats64 *i40e_get_netdev_stats_struct(
362 struct net_device *netdev,
Alexander Duyck980e9b12013-09-28 06:01:03 +0000363 struct rtnl_link_stats64 *stats)
Vasu Dev38e00432014-08-01 13:27:03 -0700364#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000365{
366 struct i40e_netdev_priv *np = netdev_priv(netdev);
Akeem G Abodunrine7046ee2014-04-09 05:58:58 +0000367 struct i40e_ring *tx_ring, *rx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000368 struct i40e_vsi *vsi = np->vsi;
Alexander Duyck980e9b12013-09-28 06:01:03 +0000369 struct rtnl_link_stats64 *vsi_stats = i40e_get_vsi_stats_struct(vsi);
370 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000371
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +0000372 if (test_bit(__I40E_DOWN, &vsi->state))
373 return stats;
374
Jesse Brandeburg3c325ce2013-12-14 03:26:45 -0800375 if (!vsi->tx_rings)
376 return stats;
377
Alexander Duyck980e9b12013-09-28 06:01:03 +0000378 rcu_read_lock();
379 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck980e9b12013-09-28 06:01:03 +0000380 u64 bytes, packets;
381 unsigned int start;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000382
Alexander Duyck980e9b12013-09-28 06:01:03 +0000383 tx_ring = ACCESS_ONCE(vsi->tx_rings[i]);
384 if (!tx_ring)
385 continue;
386
387 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -0700388 start = u64_stats_fetch_begin_irq(&tx_ring->syncp);
Alexander Duyck980e9b12013-09-28 06:01:03 +0000389 packets = tx_ring->stats.packets;
390 bytes = tx_ring->stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -0700391 } while (u64_stats_fetch_retry_irq(&tx_ring->syncp, start));
Alexander Duyck980e9b12013-09-28 06:01:03 +0000392
393 stats->tx_packets += packets;
394 stats->tx_bytes += bytes;
395 rx_ring = &tx_ring[1];
396
397 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -0700398 start = u64_stats_fetch_begin_irq(&rx_ring->syncp);
Alexander Duyck980e9b12013-09-28 06:01:03 +0000399 packets = rx_ring->stats.packets;
400 bytes = rx_ring->stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -0700401 } while (u64_stats_fetch_retry_irq(&rx_ring->syncp, start));
Alexander Duyck980e9b12013-09-28 06:01:03 +0000402
403 stats->rx_packets += packets;
404 stats->rx_bytes += bytes;
405 }
406 rcu_read_unlock();
407
Akeem G Abodunrina5282f42014-05-10 04:49:03 +0000408 /* following stats updated by i40e_watchdog_subtask() */
Alexander Duyck980e9b12013-09-28 06:01:03 +0000409 stats->multicast = vsi_stats->multicast;
410 stats->tx_errors = vsi_stats->tx_errors;
411 stats->tx_dropped = vsi_stats->tx_dropped;
412 stats->rx_errors = vsi_stats->rx_errors;
413 stats->rx_crc_errors = vsi_stats->rx_crc_errors;
414 stats->rx_length_errors = vsi_stats->rx_length_errors;
415
416 return stats;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000417}
418
419/**
420 * i40e_vsi_reset_stats - Resets all stats of the given vsi
421 * @vsi: the VSI to have its stats reset
422 **/
423void i40e_vsi_reset_stats(struct i40e_vsi *vsi)
424{
425 struct rtnl_link_stats64 *ns;
426 int i;
427
428 if (!vsi)
429 return;
430
431 ns = i40e_get_vsi_stats_struct(vsi);
432 memset(ns, 0, sizeof(*ns));
433 memset(&vsi->net_stats_offsets, 0, sizeof(vsi->net_stats_offsets));
434 memset(&vsi->eth_stats, 0, sizeof(vsi->eth_stats));
435 memset(&vsi->eth_stats_offsets, 0, sizeof(vsi->eth_stats_offsets));
Greg Rose8e9dca52013-12-18 13:45:53 +0000436 if (vsi->rx_rings && vsi->rx_rings[0]) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000437 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander 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:
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00004418 strlcpy(speed, "40 Gbps", SPEED_SIZE);
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004419 break;
4420 case I40E_LINK_SPEED_10GB:
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00004421 strlcpy(speed, "10 Gbps", SPEED_SIZE);
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004422 break;
4423 case I40E_LINK_SPEED_1GB:
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00004424 strlcpy(speed, "1000 Mbps", SPEED_SIZE);
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004425 break;
4426 default:
4427 break;
4428 }
4429
4430 switch (vsi->back->hw.fc.current_mode) {
4431 case I40E_FC_FULL:
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00004432 strlcpy(fc, "RX/TX", FC_SIZE);
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004433 break;
4434 case I40E_FC_TX_PAUSE:
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00004435 strlcpy(fc, "TX", FC_SIZE);
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004436 break;
4437 case I40E_FC_RX_PAUSE:
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00004438 strlcpy(fc, "RX", FC_SIZE);
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004439 break;
4440 default:
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00004441 strlcpy(fc, "None", FC_SIZE);
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004442 break;
4443 }
4444
4445 netdev_info(vsi->netdev, "NIC Link is Up %s Full Duplex, Flow Control: %s\n",
4446 speed, fc);
4447}
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004448
4449/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004450 * i40e_up_complete - Finish the last steps of bringing up a connection
4451 * @vsi: the VSI being configured
4452 **/
4453static int i40e_up_complete(struct i40e_vsi *vsi)
4454{
4455 struct i40e_pf *pf = vsi->back;
Catherine Sullivanc56999f2014-06-04 08:45:26 +00004456 u8 set_fc_aq_fail = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004457 int err;
4458
Catherine Sullivanc56999f2014-06-04 08:45:26 +00004459 /* force flow control off */
4460 i40e_set_fc(&pf->hw, &set_fc_aq_fail, true);
4461
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004462 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
4463 i40e_vsi_configure_msix(vsi);
4464 else
4465 i40e_configure_msi_and_legacy(vsi);
4466
4467 /* start rings */
4468 err = i40e_vsi_control_rings(vsi, true);
4469 if (err)
4470 return err;
4471
4472 clear_bit(__I40E_DOWN, &vsi->state);
4473 i40e_napi_enable_all(vsi);
4474 i40e_vsi_enable_irq(vsi);
4475
4476 if ((pf->hw.phy.link_info.link_info & I40E_AQ_LINK_UP) &&
4477 (vsi->netdev)) {
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004478 i40e_print_link_message(vsi, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004479 netif_tx_start_all_queues(vsi->netdev);
4480 netif_carrier_on(vsi->netdev);
Anjali 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 */
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00004486 if (vsi->type == I40E_VSI_FDIR) {
4487 /* reset fd counters */
4488 pf->fd_add_err = pf->fd_atr_cnt = 0;
4489 if (pf->fd_tcp_rule > 0) {
4490 pf->flags &= ~I40E_FLAG_FD_ATR_ENABLED;
4491 dev_info(&pf->pdev->dev, "Forcing ATR off, sideband rules for TCP/IPv4 exist\n");
4492 pf->fd_tcp_rule = 0;
4493 }
Anjali Singhai Jainca64fa42014-02-11 08:26:30 +00004494 i40e_fdir_filter_restore(vsi);
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00004495 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004496 i40e_service_event_schedule(pf);
4497
4498 return 0;
4499}
4500
4501/**
4502 * i40e_vsi_reinit_locked - Reset the VSI
4503 * @vsi: the VSI being configured
4504 *
4505 * Rebuild the ring structs after some configuration
4506 * has changed, e.g. MTU size.
4507 **/
4508static void i40e_vsi_reinit_locked(struct i40e_vsi *vsi)
4509{
4510 struct i40e_pf *pf = vsi->back;
4511
4512 WARN_ON(in_interrupt());
4513 while (test_and_set_bit(__I40E_CONFIG_BUSY, &pf->state))
4514 usleep_range(1000, 2000);
4515 i40e_down(vsi);
4516
4517 /* Give a VF some time to respond to the reset. The
4518 * two second wait is based upon the watchdog cycle in
4519 * the VF driver.
4520 */
4521 if (vsi->type == I40E_VSI_SRIOV)
4522 msleep(2000);
4523 i40e_up(vsi);
4524 clear_bit(__I40E_CONFIG_BUSY, &pf->state);
4525}
4526
4527/**
4528 * i40e_up - Bring the connection back up after being down
4529 * @vsi: the VSI being configured
4530 **/
4531int i40e_up(struct i40e_vsi *vsi)
4532{
4533 int err;
4534
4535 err = i40e_vsi_configure(vsi);
4536 if (!err)
4537 err = i40e_up_complete(vsi);
4538
4539 return err;
4540}
4541
4542/**
4543 * i40e_down - Shutdown the connection processing
4544 * @vsi: the VSI being stopped
4545 **/
4546void i40e_down(struct i40e_vsi *vsi)
4547{
4548 int i;
4549
4550 /* It is assumed that the caller of this function
4551 * sets the vsi->state __I40E_DOWN bit.
4552 */
4553 if (vsi->netdev) {
4554 netif_carrier_off(vsi->netdev);
4555 netif_tx_disable(vsi->netdev);
4556 }
4557 i40e_vsi_disable_irq(vsi);
4558 i40e_vsi_control_rings(vsi, false);
4559 i40e_napi_disable_all(vsi);
4560
4561 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00004562 i40e_clean_tx_ring(vsi->tx_rings[i]);
4563 i40e_clean_rx_ring(vsi->rx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004564 }
4565}
4566
4567/**
4568 * i40e_setup_tc - configure multiple traffic classes
4569 * @netdev: net device to configure
4570 * @tc: number of traffic classes to enable
4571 **/
Vasu Dev38e00432014-08-01 13:27:03 -07004572#ifdef I40E_FCOE
4573int i40e_setup_tc(struct net_device *netdev, u8 tc)
4574#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004575static int i40e_setup_tc(struct net_device *netdev, u8 tc)
Vasu Dev38e00432014-08-01 13:27:03 -07004576#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004577{
4578 struct i40e_netdev_priv *np = netdev_priv(netdev);
4579 struct i40e_vsi *vsi = np->vsi;
4580 struct i40e_pf *pf = vsi->back;
4581 u8 enabled_tc = 0;
4582 int ret = -EINVAL;
4583 int i;
4584
4585 /* Check if DCB enabled to continue */
4586 if (!(pf->flags & I40E_FLAG_DCB_ENABLED)) {
4587 netdev_info(netdev, "DCB is not enabled for adapter\n");
4588 goto exit;
4589 }
4590
4591 /* Check if MFP enabled */
4592 if (pf->flags & I40E_FLAG_MFP_ENABLED) {
4593 netdev_info(netdev, "Configuring TC not supported in MFP mode\n");
4594 goto exit;
4595 }
4596
4597 /* Check whether tc count is within enabled limit */
4598 if (tc > i40e_pf_get_num_tc(pf)) {
4599 netdev_info(netdev, "TC count greater than enabled on link for adapter\n");
4600 goto exit;
4601 }
4602
4603 /* Generate TC map for number of tc requested */
4604 for (i = 0; i < tc; i++)
4605 enabled_tc |= (1 << i);
4606
4607 /* Requesting same TC configuration as already enabled */
4608 if (enabled_tc == vsi->tc_config.enabled_tc)
4609 return 0;
4610
4611 /* Quiesce VSI queues */
4612 i40e_quiesce_vsi(vsi);
4613
4614 /* Configure VSI for enabled TCs */
4615 ret = i40e_vsi_config_tc(vsi, enabled_tc);
4616 if (ret) {
4617 netdev_info(netdev, "Failed configuring TC for VSI seid=%d\n",
4618 vsi->seid);
4619 goto exit;
4620 }
4621
4622 /* Unquiesce VSI */
4623 i40e_unquiesce_vsi(vsi);
4624
4625exit:
4626 return ret;
4627}
4628
4629/**
4630 * i40e_open - Called when a network interface is made active
4631 * @netdev: network interface device structure
4632 *
4633 * The open entry point is called when a network interface is made
4634 * active by the system (IFF_UP). At this point all resources needed
4635 * for transmit and receive operations are allocated, the interrupt
4636 * handler is registered with the OS, the netdev watchdog subtask is
4637 * enabled, and the stack is notified that the interface is ready.
4638 *
4639 * Returns 0 on success, negative value on failure
4640 **/
Vasu Dev38e00432014-08-01 13:27:03 -07004641#ifdef I40E_FCOE
4642int i40e_open(struct net_device *netdev)
4643#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004644static int i40e_open(struct net_device *netdev)
Vasu Dev38e00432014-08-01 13:27:03 -07004645#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004646{
4647 struct i40e_netdev_priv *np = netdev_priv(netdev);
4648 struct i40e_vsi *vsi = np->vsi;
4649 struct i40e_pf *pf = vsi->back;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004650 int err;
4651
Shannon Nelson4eb3f762014-03-06 08:59:58 +00004652 /* disallow open during test or if eeprom is broken */
4653 if (test_bit(__I40E_TESTING, &pf->state) ||
4654 test_bit(__I40E_BAD_EEPROM, &pf->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004655 return -EBUSY;
4656
4657 netif_carrier_off(netdev);
4658
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00004659 err = i40e_vsi_open(vsi);
4660 if (err)
4661 return err;
4662
Jesse Brandeburg059dab62014-04-01 09:07:20 +00004663 /* configure global TSO hardware offload settings */
4664 wr32(&pf->hw, I40E_GLLAN_TSOMSK_F, be32_to_cpu(TCP_FLAG_PSH |
4665 TCP_FLAG_FIN) >> 16);
4666 wr32(&pf->hw, I40E_GLLAN_TSOMSK_M, be32_to_cpu(TCP_FLAG_PSH |
4667 TCP_FLAG_FIN |
4668 TCP_FLAG_CWR) >> 16);
4669 wr32(&pf->hw, I40E_GLLAN_TSOMSK_L, be32_to_cpu(TCP_FLAG_CWR) >> 16);
4670
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00004671#ifdef CONFIG_I40E_VXLAN
4672 vxlan_get_rx_port(netdev);
4673#endif
4674
4675 return 0;
4676}
4677
4678/**
4679 * i40e_vsi_open -
4680 * @vsi: the VSI to open
4681 *
4682 * Finish initialization of the VSI.
4683 *
4684 * Returns 0 on success, negative value on failure
4685 **/
4686int i40e_vsi_open(struct i40e_vsi *vsi)
4687{
4688 struct i40e_pf *pf = vsi->back;
4689 char int_name[IFNAMSIZ];
4690 int err;
4691
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004692 /* allocate descriptors */
4693 err = i40e_vsi_setup_tx_resources(vsi);
4694 if (err)
4695 goto err_setup_tx;
4696 err = i40e_vsi_setup_rx_resources(vsi);
4697 if (err)
4698 goto err_setup_rx;
4699
4700 err = i40e_vsi_configure(vsi);
4701 if (err)
4702 goto err_setup_rx;
4703
Shannon Nelsonc22e3c62014-03-14 07:32:25 +00004704 if (vsi->netdev) {
4705 snprintf(int_name, sizeof(int_name) - 1, "%s-%s",
4706 dev_driver_string(&pf->pdev->dev), vsi->netdev->name);
4707 err = i40e_vsi_request_irq(vsi, int_name);
4708 if (err)
4709 goto err_setup_rx;
4710
4711 /* Notify the stack of the actual queue counts. */
4712 err = netif_set_real_num_tx_queues(vsi->netdev,
4713 vsi->num_queue_pairs);
4714 if (err)
4715 goto err_set_queues;
4716
4717 err = netif_set_real_num_rx_queues(vsi->netdev,
4718 vsi->num_queue_pairs);
4719 if (err)
4720 goto err_set_queues;
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00004721
4722 } else if (vsi->type == I40E_VSI_FDIR) {
4723 snprintf(int_name, sizeof(int_name) - 1, "%s-fdir",
4724 dev_driver_string(&pf->pdev->dev));
4725 err = i40e_vsi_request_irq(vsi, int_name);
Shannon Nelsonc22e3c62014-03-14 07:32:25 +00004726 } else {
Jean Sacrence9ccb12014-05-01 14:31:18 +00004727 err = -EINVAL;
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00004728 goto err_setup_rx;
4729 }
Anjali Singhai Jain25946dd2013-11-26 10:49:14 +00004730
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004731 err = i40e_up_complete(vsi);
4732 if (err)
4733 goto err_up_complete;
4734
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004735 return 0;
4736
4737err_up_complete:
4738 i40e_down(vsi);
Anjali Singhai Jain25946dd2013-11-26 10:49:14 +00004739err_set_queues:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004740 i40e_vsi_free_irq(vsi);
4741err_setup_rx:
4742 i40e_vsi_free_rx_resources(vsi);
4743err_setup_tx:
4744 i40e_vsi_free_tx_resources(vsi);
4745 if (vsi == pf->vsi[pf->lan_vsi])
4746 i40e_do_reset(pf, (1 << __I40E_PF_RESET_REQUESTED));
4747
4748 return err;
4749}
4750
4751/**
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00004752 * i40e_fdir_filter_exit - Cleans up the Flow Director accounting
4753 * @pf: Pointer to pf
4754 *
4755 * This function destroys the hlist where all the Flow Director
4756 * filters were saved.
4757 **/
4758static void i40e_fdir_filter_exit(struct i40e_pf *pf)
4759{
4760 struct i40e_fdir_filter *filter;
4761 struct hlist_node *node2;
4762
4763 hlist_for_each_entry_safe(filter, node2,
4764 &pf->fdir_filter_list, fdir_node) {
4765 hlist_del(&filter->fdir_node);
4766 kfree(filter);
4767 }
4768 pf->fdir_pf_active_filters = 0;
4769}
4770
4771/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004772 * i40e_close - Disables a network interface
4773 * @netdev: network interface device structure
4774 *
4775 * The close entry point is called when an interface is de-activated
4776 * by the OS. The hardware is still under the driver's control, but
4777 * this netdev interface is disabled.
4778 *
4779 * Returns 0, this is not allowed to fail
4780 **/
Vasu Dev38e00432014-08-01 13:27:03 -07004781#ifdef I40E_FCOE
4782int i40e_close(struct net_device *netdev)
4783#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004784static int i40e_close(struct net_device *netdev)
Vasu Dev38e00432014-08-01 13:27:03 -07004785#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004786{
4787 struct i40e_netdev_priv *np = netdev_priv(netdev);
4788 struct i40e_vsi *vsi = np->vsi;
4789
Shannon Nelson90ef8d42014-03-14 07:32:26 +00004790 i40e_vsi_close(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004791
4792 return 0;
4793}
4794
4795/**
4796 * i40e_do_reset - Start a PF or Core Reset sequence
4797 * @pf: board private structure
4798 * @reset_flags: which reset is requested
4799 *
4800 * The essential difference in resets is that the PF Reset
4801 * doesn't clear the packet buffers, doesn't reset the PE
4802 * firmware, and doesn't bother the other PFs on the chip.
4803 **/
4804void i40e_do_reset(struct i40e_pf *pf, u32 reset_flags)
4805{
4806 u32 val;
4807
4808 WARN_ON(in_interrupt());
4809
Mitch Williams263fc482014-04-23 04:50:11 +00004810 if (i40e_check_asq_alive(&pf->hw))
4811 i40e_vc_notify_reset(pf);
4812
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004813 /* do the biggest reset indicated */
4814 if (reset_flags & (1 << __I40E_GLOBAL_RESET_REQUESTED)) {
4815
4816 /* Request a Global Reset
4817 *
4818 * This will start the chip's countdown to the actual full
4819 * chip reset event, and a warning interrupt to be sent
4820 * to all PFs, including the requestor. Our handler
4821 * for the warning interrupt will deal with the shutdown
4822 * and recovery of the switch setup.
4823 */
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00004824 dev_dbg(&pf->pdev->dev, "GlobalR requested\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004825 val = rd32(&pf->hw, I40E_GLGEN_RTRIG);
4826 val |= I40E_GLGEN_RTRIG_GLOBR_MASK;
4827 wr32(&pf->hw, I40E_GLGEN_RTRIG, val);
4828
4829 } else if (reset_flags & (1 << __I40E_CORE_RESET_REQUESTED)) {
4830
4831 /* Request a Core Reset
4832 *
4833 * Same as Global Reset, except does *not* include the MAC/PHY
4834 */
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00004835 dev_dbg(&pf->pdev->dev, "CoreR requested\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004836 val = rd32(&pf->hw, I40E_GLGEN_RTRIG);
4837 val |= I40E_GLGEN_RTRIG_CORER_MASK;
4838 wr32(&pf->hw, I40E_GLGEN_RTRIG, val);
4839 i40e_flush(&pf->hw);
4840
Shannon Nelson7823fe32013-11-16 10:00:45 +00004841 } else if (reset_flags & (1 << __I40E_EMP_RESET_REQUESTED)) {
4842
4843 /* Request a Firmware Reset
4844 *
4845 * Same as Global reset, plus restarting the
4846 * embedded firmware engine.
4847 */
4848 /* enable EMP Reset */
4849 val = rd32(&pf->hw, I40E_GLGEN_RSTENA_EMP);
4850 val |= I40E_GLGEN_RSTENA_EMP_EMP_RST_ENA_MASK;
4851 wr32(&pf->hw, I40E_GLGEN_RSTENA_EMP, val);
4852
4853 /* force the reset */
4854 val = rd32(&pf->hw, I40E_GLGEN_RTRIG);
4855 val |= I40E_GLGEN_RTRIG_EMPFWR_MASK;
4856 wr32(&pf->hw, I40E_GLGEN_RTRIG, val);
4857 i40e_flush(&pf->hw);
4858
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004859 } else if (reset_flags & (1 << __I40E_PF_RESET_REQUESTED)) {
4860
4861 /* Request a PF Reset
4862 *
4863 * Resets only the PF-specific registers
4864 *
4865 * This goes directly to the tear-down and rebuild of
4866 * the switch, since we need to do all the recovery as
4867 * for the Core Reset.
4868 */
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00004869 dev_dbg(&pf->pdev->dev, "PFR requested\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004870 i40e_handle_reset_warning(pf);
4871
4872 } else if (reset_flags & (1 << __I40E_REINIT_REQUESTED)) {
4873 int v;
4874
4875 /* Find the VSI(s) that requested a re-init */
4876 dev_info(&pf->pdev->dev,
4877 "VSI reinit requested\n");
Mitch Williams505682c2014-05-20 08:01:37 +00004878 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004879 struct i40e_vsi *vsi = pf->vsi[v];
4880 if (vsi != NULL &&
4881 test_bit(__I40E_REINIT_REQUESTED, &vsi->state)) {
4882 i40e_vsi_reinit_locked(pf->vsi[v]);
4883 clear_bit(__I40E_REINIT_REQUESTED, &vsi->state);
4884 }
4885 }
4886
4887 /* no further action needed, so return now */
4888 return;
Neerav Parikhb5d06f02014-06-03 23:50:17 +00004889 } else if (reset_flags & (1 << __I40E_DOWN_REQUESTED)) {
4890 int v;
4891
4892 /* Find the VSI(s) that needs to be brought down */
4893 dev_info(&pf->pdev->dev, "VSI down requested\n");
4894 for (v = 0; v < pf->num_alloc_vsi; v++) {
4895 struct i40e_vsi *vsi = pf->vsi[v];
4896 if (vsi != NULL &&
4897 test_bit(__I40E_DOWN_REQUESTED, &vsi->state)) {
4898 set_bit(__I40E_DOWN, &vsi->state);
4899 i40e_down(vsi);
4900 clear_bit(__I40E_DOWN_REQUESTED, &vsi->state);
4901 }
4902 }
4903
4904 /* no further action needed, so return now */
4905 return;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004906 } else {
4907 dev_info(&pf->pdev->dev,
4908 "bad reset request 0x%08x\n", reset_flags);
4909 return;
4910 }
4911}
4912
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004913#ifdef CONFIG_I40E_DCB
4914/**
4915 * i40e_dcb_need_reconfig - Check if DCB needs reconfig
4916 * @pf: board private structure
4917 * @old_cfg: current DCB config
4918 * @new_cfg: new DCB config
4919 **/
4920bool i40e_dcb_need_reconfig(struct i40e_pf *pf,
4921 struct i40e_dcbx_config *old_cfg,
4922 struct i40e_dcbx_config *new_cfg)
4923{
4924 bool need_reconfig = false;
4925
4926 /* Check if ETS configuration has changed */
4927 if (memcmp(&new_cfg->etscfg,
4928 &old_cfg->etscfg,
4929 sizeof(new_cfg->etscfg))) {
4930 /* If Priority Table has changed reconfig is needed */
4931 if (memcmp(&new_cfg->etscfg.prioritytable,
4932 &old_cfg->etscfg.prioritytable,
4933 sizeof(new_cfg->etscfg.prioritytable))) {
4934 need_reconfig = true;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00004935 dev_dbg(&pf->pdev->dev, "ETS UP2TC changed.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004936 }
4937
4938 if (memcmp(&new_cfg->etscfg.tcbwtable,
4939 &old_cfg->etscfg.tcbwtable,
4940 sizeof(new_cfg->etscfg.tcbwtable)))
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00004941 dev_dbg(&pf->pdev->dev, "ETS TC BW Table changed.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004942
4943 if (memcmp(&new_cfg->etscfg.tsatable,
4944 &old_cfg->etscfg.tsatable,
4945 sizeof(new_cfg->etscfg.tsatable)))
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00004946 dev_dbg(&pf->pdev->dev, "ETS TSA Table changed.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004947 }
4948
4949 /* Check if PFC configuration has changed */
4950 if (memcmp(&new_cfg->pfc,
4951 &old_cfg->pfc,
4952 sizeof(new_cfg->pfc))) {
4953 need_reconfig = true;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00004954 dev_dbg(&pf->pdev->dev, "PFC config change detected.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004955 }
4956
4957 /* Check if APP Table has changed */
4958 if (memcmp(&new_cfg->app,
4959 &old_cfg->app,
Dave Jones3d9667a2014-01-27 23:11:09 -05004960 sizeof(new_cfg->app))) {
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004961 need_reconfig = true;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00004962 dev_dbg(&pf->pdev->dev, "APP Table change detected.\n");
Dave Jones3d9667a2014-01-27 23:11:09 -05004963 }
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004964
4965 return need_reconfig;
4966}
4967
4968/**
4969 * i40e_handle_lldp_event - Handle LLDP Change MIB event
4970 * @pf: board private structure
4971 * @e: event info posted on ARQ
4972 **/
4973static int i40e_handle_lldp_event(struct i40e_pf *pf,
4974 struct i40e_arq_event_info *e)
4975{
4976 struct i40e_aqc_lldp_get_mib *mib =
4977 (struct i40e_aqc_lldp_get_mib *)&e->desc.params.raw;
4978 struct i40e_hw *hw = &pf->hw;
4979 struct i40e_dcbx_config *dcbx_cfg = &hw->local_dcbx_config;
4980 struct i40e_dcbx_config tmp_dcbx_cfg;
4981 bool need_reconfig = false;
4982 int ret = 0;
4983 u8 type;
4984
Neerav Parikh4d9b6042014-05-22 06:31:51 +00004985 /* Not DCB capable or capability disabled */
4986 if (!(pf->flags & I40E_FLAG_DCB_CAPABLE))
4987 return ret;
4988
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004989 /* Ignore if event is not for Nearest Bridge */
4990 type = ((mib->type >> I40E_AQ_LLDP_BRIDGE_TYPE_SHIFT)
4991 & I40E_AQ_LLDP_BRIDGE_TYPE_MASK);
4992 if (type != I40E_AQ_LLDP_BRIDGE_TYPE_NEAREST_BRIDGE)
4993 return ret;
4994
4995 /* Check MIB Type and return if event for Remote MIB update */
4996 type = mib->type & I40E_AQ_LLDP_MIB_TYPE_MASK;
4997 if (type == I40E_AQ_LLDP_MIB_REMOTE) {
4998 /* Update the remote cached instance and return */
4999 ret = i40e_aq_get_dcb_config(hw, I40E_AQ_LLDP_MIB_REMOTE,
5000 I40E_AQ_LLDP_BRIDGE_TYPE_NEAREST_BRIDGE,
5001 &hw->remote_dcbx_config);
5002 goto exit;
5003 }
5004
5005 /* Convert/store the DCBX data from LLDPDU temporarily */
5006 memset(&tmp_dcbx_cfg, 0, sizeof(tmp_dcbx_cfg));
5007 ret = i40e_lldp_to_dcb_config(e->msg_buf, &tmp_dcbx_cfg);
5008 if (ret) {
5009 /* Error in LLDPDU parsing return */
5010 dev_info(&pf->pdev->dev, "Failed parsing LLDPDU from event buffer\n");
5011 goto exit;
5012 }
5013
5014 /* No change detected in DCBX configs */
5015 if (!memcmp(&tmp_dcbx_cfg, dcbx_cfg, sizeof(tmp_dcbx_cfg))) {
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005016 dev_dbg(&pf->pdev->dev, "No change detected in DCBX configuration.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005017 goto exit;
5018 }
5019
5020 need_reconfig = i40e_dcb_need_reconfig(pf, dcbx_cfg, &tmp_dcbx_cfg);
5021
5022 i40e_dcbnl_flush_apps(pf, &tmp_dcbx_cfg);
5023
5024 /* Overwrite the new configuration */
5025 *dcbx_cfg = tmp_dcbx_cfg;
5026
5027 if (!need_reconfig)
5028 goto exit;
5029
Neerav Parikh4d9b6042014-05-22 06:31:51 +00005030 /* Enable DCB tagging only when more than one TC */
5031 if (i40e_dcb_get_num_tc(dcbx_cfg) > 1)
5032 pf->flags |= I40E_FLAG_DCB_ENABLED;
5033 else
5034 pf->flags &= ~I40E_FLAG_DCB_ENABLED;
5035
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005036 /* Reconfiguration needed quiesce all VSIs */
5037 i40e_pf_quiesce_all_vsi(pf);
5038
5039 /* Changes in configuration update VEB/VSI */
5040 i40e_dcb_reconfigure(pf);
5041
5042 i40e_pf_unquiesce_all_vsi(pf);
5043exit:
5044 return ret;
5045}
5046#endif /* CONFIG_I40E_DCB */
5047
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005048/**
Anjali Singhai Jain23326182013-11-26 10:49:22 +00005049 * i40e_do_reset_safe - Protected reset path for userland calls.
5050 * @pf: board private structure
5051 * @reset_flags: which reset is requested
5052 *
5053 **/
5054void i40e_do_reset_safe(struct i40e_pf *pf, u32 reset_flags)
5055{
5056 rtnl_lock();
5057 i40e_do_reset(pf, reset_flags);
5058 rtnl_unlock();
5059}
5060
5061/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005062 * i40e_handle_lan_overflow_event - Handler for LAN queue overflow event
5063 * @pf: board private structure
5064 * @e: event info posted on ARQ
5065 *
5066 * Handler for LAN Queue Overflow Event generated by the firmware for PF
5067 * and VF queues
5068 **/
5069static void i40e_handle_lan_overflow_event(struct i40e_pf *pf,
5070 struct i40e_arq_event_info *e)
5071{
5072 struct i40e_aqc_lan_overflow *data =
5073 (struct i40e_aqc_lan_overflow *)&e->desc.params.raw;
5074 u32 queue = le32_to_cpu(data->prtdcb_rupto);
5075 u32 qtx_ctl = le32_to_cpu(data->otx_ctl);
5076 struct i40e_hw *hw = &pf->hw;
5077 struct i40e_vf *vf;
5078 u16 vf_id;
5079
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005080 dev_dbg(&pf->pdev->dev, "overflow Rx Queue Number = %d QTX_CTL=0x%08x\n",
5081 queue, qtx_ctl);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005082
5083 /* Queue belongs to VF, find the VF and issue VF reset */
5084 if (((qtx_ctl & I40E_QTX_CTL_PFVF_Q_MASK)
5085 >> I40E_QTX_CTL_PFVF_Q_SHIFT) == I40E_QTX_CTL_VF_QUEUE) {
5086 vf_id = (u16)((qtx_ctl & I40E_QTX_CTL_VFVM_INDX_MASK)
5087 >> I40E_QTX_CTL_VFVM_INDX_SHIFT);
5088 vf_id -= hw->func_caps.vf_base_id;
5089 vf = &pf->vf[vf_id];
5090 i40e_vc_notify_vf_reset(vf);
5091 /* Allow VF to process pending reset notification */
5092 msleep(20);
5093 i40e_reset_vf(vf, false);
5094 }
5095}
5096
5097/**
5098 * i40e_service_event_complete - Finish up the service event
5099 * @pf: board private structure
5100 **/
5101static void i40e_service_event_complete(struct i40e_pf *pf)
5102{
5103 BUG_ON(!test_bit(__I40E_SERVICE_SCHED, &pf->state));
5104
5105 /* flush memory to make sure state is correct before next watchog */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01005106 smp_mb__before_atomic();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005107 clear_bit(__I40E_SERVICE_SCHED, &pf->state);
5108}
5109
5110/**
Anjali Singhai Jain12957382014-06-04 04:22:47 +00005111 * i40e_get_cur_guaranteed_fd_count - Get the consumed guaranteed FD filters
5112 * @pf: board private structure
5113 **/
5114int i40e_get_cur_guaranteed_fd_count(struct i40e_pf *pf)
5115{
5116 int val, fcnt_prog;
5117
5118 val = rd32(&pf->hw, I40E_PFQF_FDSTAT);
5119 fcnt_prog = (val & I40E_PFQF_FDSTAT_GUARANT_CNT_MASK);
5120 return fcnt_prog;
5121}
5122
5123/**
5124 * i40e_get_current_fd_count - Get the count of total FD filters programmed
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005125 * @pf: board private structure
5126 **/
5127int i40e_get_current_fd_count(struct i40e_pf *pf)
5128{
5129 int val, fcnt_prog;
5130 val = rd32(&pf->hw, I40E_PFQF_FDSTAT);
5131 fcnt_prog = (val & I40E_PFQF_FDSTAT_GUARANT_CNT_MASK) +
5132 ((val & I40E_PFQF_FDSTAT_BEST_CNT_MASK) >>
5133 I40E_PFQF_FDSTAT_BEST_CNT_SHIFT);
5134 return fcnt_prog;
5135}
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005136
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005137/**
5138 * i40e_fdir_check_and_reenable - Function to reenabe FD ATR or SB if disabled
5139 * @pf: board private structure
5140 **/
5141void i40e_fdir_check_and_reenable(struct i40e_pf *pf)
5142{
5143 u32 fcnt_prog, fcnt_avail;
5144
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005145 if (test_bit(__I40E_FD_FLUSH_REQUESTED, &pf->state))
5146 return;
5147
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005148 /* Check if, FD SB or ATR was auto disabled and if there is enough room
5149 * to re-enable
5150 */
Anjali Singhai Jain12957382014-06-04 04:22:47 +00005151 fcnt_prog = i40e_get_cur_guaranteed_fd_count(pf);
5152 fcnt_avail = pf->fdir_pf_filter_count;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005153 if ((fcnt_prog < (fcnt_avail - I40E_FDIR_BUFFER_HEAD_ROOM)) ||
5154 (pf->fd_add_err == 0) ||
5155 (i40e_get_current_atr_cnt(pf) < pf->fd_atr_cnt)) {
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005156 if ((pf->flags & I40E_FLAG_FD_SB_ENABLED) &&
5157 (pf->auto_disable_flags & I40E_FLAG_FD_SB_ENABLED)) {
5158 pf->auto_disable_flags &= ~I40E_FLAG_FD_SB_ENABLED;
5159 dev_info(&pf->pdev->dev, "FD Sideband/ntuple is being enabled since we have space in the table now\n");
5160 }
5161 }
5162 /* Wait for some more space to be available to turn on ATR */
5163 if (fcnt_prog < (fcnt_avail - I40E_FDIR_BUFFER_HEAD_ROOM * 2)) {
5164 if ((pf->flags & I40E_FLAG_FD_ATR_ENABLED) &&
5165 (pf->auto_disable_flags & I40E_FLAG_FD_ATR_ENABLED)) {
5166 pf->auto_disable_flags &= ~I40E_FLAG_FD_ATR_ENABLED;
5167 dev_info(&pf->pdev->dev, "ATR is being enabled since we have space in the table now\n");
5168 }
5169 }
5170}
5171
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005172#define I40E_MIN_FD_FLUSH_INTERVAL 10
5173/**
5174 * i40e_fdir_flush_and_replay - Function to flush all FD filters and replay SB
5175 * @pf: board private structure
5176 **/
5177static void i40e_fdir_flush_and_replay(struct i40e_pf *pf)
5178{
5179 int flush_wait_retry = 50;
5180 int reg;
5181
5182 if (time_after(jiffies, pf->fd_flush_timestamp +
5183 (I40E_MIN_FD_FLUSH_INTERVAL * HZ))) {
5184 set_bit(__I40E_FD_FLUSH_REQUESTED, &pf->state);
5185 pf->fd_flush_timestamp = jiffies;
5186 pf->auto_disable_flags |= I40E_FLAG_FD_SB_ENABLED;
5187 pf->flags &= ~I40E_FLAG_FD_ATR_ENABLED;
5188 /* flush all filters */
5189 wr32(&pf->hw, I40E_PFQF_CTL_1,
5190 I40E_PFQF_CTL_1_CLEARFDTABLE_MASK);
5191 i40e_flush(&pf->hw);
Anjali Singhai Jain60793f42014-07-09 07:46:23 +00005192 pf->fd_flush_cnt++;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005193 pf->fd_add_err = 0;
5194 do {
5195 /* Check FD flush status every 5-6msec */
5196 usleep_range(5000, 6000);
5197 reg = rd32(&pf->hw, I40E_PFQF_CTL_1);
5198 if (!(reg & I40E_PFQF_CTL_1_CLEARFDTABLE_MASK))
5199 break;
5200 } while (flush_wait_retry--);
5201 if (reg & I40E_PFQF_CTL_1_CLEARFDTABLE_MASK) {
5202 dev_warn(&pf->pdev->dev, "FD table did not flush, needs more time\n");
5203 } else {
5204 /* replay sideband filters */
5205 i40e_fdir_filter_restore(pf->vsi[pf->lan_vsi]);
5206
5207 pf->flags |= I40E_FLAG_FD_ATR_ENABLED;
5208 pf->auto_disable_flags &= ~I40E_FLAG_FD_ATR_ENABLED;
5209 pf->auto_disable_flags &= ~I40E_FLAG_FD_SB_ENABLED;
5210 clear_bit(__I40E_FD_FLUSH_REQUESTED, &pf->state);
5211 dev_info(&pf->pdev->dev, "FD Filter table flushed and FD-SB replayed.\n");
5212 }
5213 }
5214}
5215
5216/**
5217 * i40e_get_current_atr_count - Get the count of total FD ATR filters programmed
5218 * @pf: board private structure
5219 **/
5220int i40e_get_current_atr_cnt(struct i40e_pf *pf)
5221{
5222 return i40e_get_current_fd_count(pf) - pf->fdir_pf_active_filters;
5223}
5224
5225/* We can see up to 256 filter programming desc in transit if the filters are
5226 * being applied really fast; before we see the first
5227 * filter miss error on Rx queue 0. Accumulating enough error messages before
5228 * reacting will make sure we don't cause flush too often.
5229 */
5230#define I40E_MAX_FD_PROGRAM_ERROR 256
5231
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005232/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005233 * i40e_fdir_reinit_subtask - Worker thread to reinit FDIR filter table
5234 * @pf: board private structure
5235 **/
5236static void i40e_fdir_reinit_subtask(struct i40e_pf *pf)
5237{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005238
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005239 /* if interface is down do nothing */
5240 if (test_bit(__I40E_DOWN, &pf->state))
5241 return;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005242
5243 if ((pf->fd_add_err >= I40E_MAX_FD_PROGRAM_ERROR) &&
5244 (i40e_get_current_atr_cnt(pf) >= pf->fd_atr_cnt) &&
5245 (i40e_get_current_atr_cnt(pf) > pf->fdir_pf_filter_count))
5246 i40e_fdir_flush_and_replay(pf);
5247
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005248 i40e_fdir_check_and_reenable(pf);
5249
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005250}
5251
5252/**
5253 * i40e_vsi_link_event - notify VSI of a link event
5254 * @vsi: vsi to be notified
5255 * @link_up: link up or down
5256 **/
5257static void i40e_vsi_link_event(struct i40e_vsi *vsi, bool link_up)
5258{
5259 if (!vsi)
5260 return;
5261
5262 switch (vsi->type) {
5263 case I40E_VSI_MAIN:
Vasu Dev38e00432014-08-01 13:27:03 -07005264#ifdef I40E_FCOE
5265 case I40E_VSI_FCOE:
5266#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005267 if (!vsi->netdev || !vsi->netdev_registered)
5268 break;
5269
5270 if (link_up) {
5271 netif_carrier_on(vsi->netdev);
5272 netif_tx_wake_all_queues(vsi->netdev);
5273 } else {
5274 netif_carrier_off(vsi->netdev);
5275 netif_tx_stop_all_queues(vsi->netdev);
5276 }
5277 break;
5278
5279 case I40E_VSI_SRIOV:
5280 break;
5281
5282 case I40E_VSI_VMDQ2:
5283 case I40E_VSI_CTRL:
5284 case I40E_VSI_MIRROR:
5285 default:
5286 /* there is no notification for other VSIs */
5287 break;
5288 }
5289}
5290
5291/**
5292 * i40e_veb_link_event - notify elements on the veb of a link event
5293 * @veb: veb to be notified
5294 * @link_up: link up or down
5295 **/
5296static void i40e_veb_link_event(struct i40e_veb *veb, bool link_up)
5297{
5298 struct i40e_pf *pf;
5299 int i;
5300
5301 if (!veb || !veb->pf)
5302 return;
5303 pf = veb->pf;
5304
5305 /* depth first... */
5306 for (i = 0; i < I40E_MAX_VEB; i++)
5307 if (pf->veb[i] && (pf->veb[i]->uplink_seid == veb->seid))
5308 i40e_veb_link_event(pf->veb[i], link_up);
5309
5310 /* ... now the local VSIs */
Mitch Williams505682c2014-05-20 08:01:37 +00005311 for (i = 0; i < pf->num_alloc_vsi; i++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005312 if (pf->vsi[i] && (pf->vsi[i]->uplink_seid == veb->seid))
5313 i40e_vsi_link_event(pf->vsi[i], link_up);
5314}
5315
5316/**
5317 * i40e_link_event - Update netif_carrier status
5318 * @pf: board private structure
5319 **/
5320static void i40e_link_event(struct i40e_pf *pf)
5321{
5322 bool new_link, old_link;
5323
5324 new_link = (pf->hw.phy.link_info.link_info & I40E_AQ_LINK_UP);
5325 old_link = (pf->hw.phy.link_info_old.link_info & I40E_AQ_LINK_UP);
5326
5327 if (new_link == old_link)
5328 return;
Anjali Singhai6d779b42013-09-28 06:00:02 +00005329 if (!test_bit(__I40E_DOWN, &pf->vsi[pf->lan_vsi]->state))
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005330 i40e_print_link_message(pf->vsi[pf->lan_vsi], new_link);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005331
5332 /* Notify the base of the switch tree connected to
5333 * the link. Floating VEBs are not notified.
5334 */
5335 if (pf->lan_veb != I40E_NO_VEB && pf->veb[pf->lan_veb])
5336 i40e_veb_link_event(pf->veb[pf->lan_veb], new_link);
5337 else
5338 i40e_vsi_link_event(pf->vsi[pf->lan_vsi], new_link);
5339
5340 if (pf->vf)
5341 i40e_vc_notify_link_state(pf);
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00005342
5343 if (pf->flags & I40E_FLAG_PTP)
5344 i40e_ptp_set_increment(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005345}
5346
5347/**
5348 * i40e_check_hang_subtask - Check for hung queues and dropped interrupts
5349 * @pf: board private structure
5350 *
5351 * Set the per-queue flags to request a check for stuck queues in the irq
5352 * clean functions, then force interrupts to be sure the irq clean is called.
5353 **/
5354static void i40e_check_hang_subtask(struct i40e_pf *pf)
5355{
5356 int i, v;
5357
5358 /* If we're down or resetting, just bail */
5359 if (test_bit(__I40E_CONFIG_BUSY, &pf->state))
5360 return;
5361
5362 /* for each VSI/netdev
5363 * for each Tx queue
5364 * set the check flag
5365 * for each q_vector
5366 * force an interrupt
5367 */
Mitch Williams505682c2014-05-20 08:01:37 +00005368 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005369 struct i40e_vsi *vsi = pf->vsi[v];
5370 int armed = 0;
5371
5372 if (!pf->vsi[v] ||
5373 test_bit(__I40E_DOWN, &vsi->state) ||
5374 (vsi->netdev && !netif_carrier_ok(vsi->netdev)))
5375 continue;
5376
5377 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00005378 set_check_for_tx_hang(vsi->tx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005379 if (test_bit(__I40E_HANG_CHECK_ARMED,
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00005380 &vsi->tx_rings[i]->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005381 armed++;
5382 }
5383
5384 if (armed) {
5385 if (!(pf->flags & I40E_FLAG_MSIX_ENABLED)) {
5386 wr32(&vsi->back->hw, I40E_PFINT_DYN_CTL0,
5387 (I40E_PFINT_DYN_CTL0_INTENA_MASK |
5388 I40E_PFINT_DYN_CTL0_SWINT_TRIG_MASK));
5389 } else {
5390 u16 vec = vsi->base_vector - 1;
5391 u32 val = (I40E_PFINT_DYN_CTLN_INTENA_MASK |
5392 I40E_PFINT_DYN_CTLN_SWINT_TRIG_MASK);
5393 for (i = 0; i < vsi->num_q_vectors; i++, vec++)
5394 wr32(&vsi->back->hw,
5395 I40E_PFINT_DYN_CTLN(vec), val);
5396 }
5397 i40e_flush(&vsi->back->hw);
5398 }
5399 }
5400}
5401
5402/**
5403 * i40e_watchdog_subtask - Check and bring link up
5404 * @pf: board private structure
5405 **/
5406static void i40e_watchdog_subtask(struct i40e_pf *pf)
5407{
5408 int i;
5409
5410 /* if interface is down do nothing */
5411 if (test_bit(__I40E_DOWN, &pf->state) ||
5412 test_bit(__I40E_CONFIG_BUSY, &pf->state))
5413 return;
5414
5415 /* Update the stats for active netdevs so the network stack
5416 * can look at updated numbers whenever it cares to
5417 */
Mitch Williams505682c2014-05-20 08:01:37 +00005418 for (i = 0; i < pf->num_alloc_vsi; i++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005419 if (pf->vsi[i] && pf->vsi[i]->netdev)
5420 i40e_update_stats(pf->vsi[i]);
5421
5422 /* Update the stats for the active switching components */
5423 for (i = 0; i < I40E_MAX_VEB; i++)
5424 if (pf->veb[i])
5425 i40e_update_veb_stats(pf->veb[i]);
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00005426
5427 i40e_ptp_rx_hang(pf->vsi[pf->lan_vsi]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005428}
5429
5430/**
5431 * i40e_reset_subtask - Set up for resetting the device and driver
5432 * @pf: board private structure
5433 **/
5434static void i40e_reset_subtask(struct i40e_pf *pf)
5435{
5436 u32 reset_flags = 0;
5437
Anjali Singhai Jain23326182013-11-26 10:49:22 +00005438 rtnl_lock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005439 if (test_bit(__I40E_REINIT_REQUESTED, &pf->state)) {
5440 reset_flags |= (1 << __I40E_REINIT_REQUESTED);
5441 clear_bit(__I40E_REINIT_REQUESTED, &pf->state);
5442 }
5443 if (test_bit(__I40E_PF_RESET_REQUESTED, &pf->state)) {
5444 reset_flags |= (1 << __I40E_PF_RESET_REQUESTED);
5445 clear_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
5446 }
5447 if (test_bit(__I40E_CORE_RESET_REQUESTED, &pf->state)) {
5448 reset_flags |= (1 << __I40E_CORE_RESET_REQUESTED);
5449 clear_bit(__I40E_CORE_RESET_REQUESTED, &pf->state);
5450 }
5451 if (test_bit(__I40E_GLOBAL_RESET_REQUESTED, &pf->state)) {
5452 reset_flags |= (1 << __I40E_GLOBAL_RESET_REQUESTED);
5453 clear_bit(__I40E_GLOBAL_RESET_REQUESTED, &pf->state);
5454 }
Neerav Parikhb5d06f02014-06-03 23:50:17 +00005455 if (test_bit(__I40E_DOWN_REQUESTED, &pf->state)) {
5456 reset_flags |= (1 << __I40E_DOWN_REQUESTED);
5457 clear_bit(__I40E_DOWN_REQUESTED, &pf->state);
5458 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005459
5460 /* If there's a recovery already waiting, it takes
5461 * precedence before starting a new reset sequence.
5462 */
5463 if (test_bit(__I40E_RESET_INTR_RECEIVED, &pf->state)) {
5464 i40e_handle_reset_warning(pf);
Anjali Singhai Jain23326182013-11-26 10:49:22 +00005465 goto unlock;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005466 }
5467
5468 /* If we're already down or resetting, just bail */
5469 if (reset_flags &&
5470 !test_bit(__I40E_DOWN, &pf->state) &&
5471 !test_bit(__I40E_CONFIG_BUSY, &pf->state))
5472 i40e_do_reset(pf, reset_flags);
Anjali Singhai Jain23326182013-11-26 10:49:22 +00005473
5474unlock:
5475 rtnl_unlock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005476}
5477
5478/**
5479 * i40e_handle_link_event - Handle link event
5480 * @pf: board private structure
5481 * @e: event info posted on ARQ
5482 **/
5483static void i40e_handle_link_event(struct i40e_pf *pf,
5484 struct i40e_arq_event_info *e)
5485{
5486 struct i40e_hw *hw = &pf->hw;
5487 struct i40e_aqc_get_link_status *status =
5488 (struct i40e_aqc_get_link_status *)&e->desc.params.raw;
5489 struct i40e_link_status *hw_link_info = &hw->phy.link_info;
5490
5491 /* save off old link status information */
5492 memcpy(&pf->hw.phy.link_info_old, hw_link_info,
5493 sizeof(pf->hw.phy.link_info_old));
5494
5495 /* update link status */
5496 hw_link_info->phy_type = (enum i40e_aq_phy_type)status->phy_type;
5497 hw_link_info->link_speed = (enum i40e_aq_link_speed)status->link_speed;
5498 hw_link_info->link_info = status->link_info;
5499 hw_link_info->an_info = status->an_info;
5500 hw_link_info->ext_info = status->ext_info;
5501 hw_link_info->lse_enable =
5502 le16_to_cpu(status->command_flags) &
5503 I40E_AQ_LSE_ENABLE;
5504
5505 /* process the event */
5506 i40e_link_event(pf);
5507
5508 /* Do a new status request to re-enable LSE reporting
5509 * and load new status information into the hw struct,
5510 * then see if the status changed while processing the
5511 * initial event.
5512 */
Catherine Sullivan8109e122014-06-04 08:45:24 +00005513 i40e_update_link_info(&pf->hw, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005514 i40e_link_event(pf);
5515}
5516
5517/**
5518 * i40e_clean_adminq_subtask - Clean the AdminQ rings
5519 * @pf: board private structure
5520 **/
5521static void i40e_clean_adminq_subtask(struct i40e_pf *pf)
5522{
5523 struct i40e_arq_event_info event;
5524 struct i40e_hw *hw = &pf->hw;
5525 u16 pending, i = 0;
5526 i40e_status ret;
5527 u16 opcode;
Shannon Nelson86df2422014-05-20 08:01:35 +00005528 u32 oldval;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005529 u32 val;
5530
Shannon Nelson86df2422014-05-20 08:01:35 +00005531 /* check for error indications */
5532 val = rd32(&pf->hw, pf->hw.aq.arq.len);
5533 oldval = val;
5534 if (val & I40E_PF_ARQLEN_ARQVFE_MASK) {
5535 dev_info(&pf->pdev->dev, "ARQ VF Error detected\n");
5536 val &= ~I40E_PF_ARQLEN_ARQVFE_MASK;
5537 }
5538 if (val & I40E_PF_ARQLEN_ARQOVFL_MASK) {
5539 dev_info(&pf->pdev->dev, "ARQ Overflow Error detected\n");
5540 val &= ~I40E_PF_ARQLEN_ARQOVFL_MASK;
5541 }
5542 if (val & I40E_PF_ARQLEN_ARQCRIT_MASK) {
5543 dev_info(&pf->pdev->dev, "ARQ Critical Error detected\n");
5544 val &= ~I40E_PF_ARQLEN_ARQCRIT_MASK;
5545 }
5546 if (oldval != val)
5547 wr32(&pf->hw, pf->hw.aq.arq.len, val);
5548
5549 val = rd32(&pf->hw, pf->hw.aq.asq.len);
5550 oldval = val;
5551 if (val & I40E_PF_ATQLEN_ATQVFE_MASK) {
5552 dev_info(&pf->pdev->dev, "ASQ VF Error detected\n");
5553 val &= ~I40E_PF_ATQLEN_ATQVFE_MASK;
5554 }
5555 if (val & I40E_PF_ATQLEN_ATQOVFL_MASK) {
5556 dev_info(&pf->pdev->dev, "ASQ Overflow Error detected\n");
5557 val &= ~I40E_PF_ATQLEN_ATQOVFL_MASK;
5558 }
5559 if (val & I40E_PF_ATQLEN_ATQCRIT_MASK) {
5560 dev_info(&pf->pdev->dev, "ASQ Critical Error detected\n");
5561 val &= ~I40E_PF_ATQLEN_ATQCRIT_MASK;
5562 }
5563 if (oldval != val)
5564 wr32(&pf->hw, pf->hw.aq.asq.len, val);
5565
Mitch Williams3197ce22013-11-28 06:39:39 +00005566 event.msg_size = I40E_MAX_AQ_BUF_SIZE;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005567 event.msg_buf = kzalloc(event.msg_size, GFP_KERNEL);
5568 if (!event.msg_buf)
5569 return;
5570
5571 do {
Mitch Williams2f019122013-11-28 06:39:33 +00005572 event.msg_size = I40E_MAX_AQ_BUF_SIZE; /* reinit each time */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005573 ret = i40e_clean_arq_element(hw, &event, &pending);
Mitch Williams56497972014-06-04 08:45:18 +00005574 if (ret == I40E_ERR_ADMIN_QUEUE_NO_WORK)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005575 break;
Mitch Williams56497972014-06-04 08:45:18 +00005576 else if (ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005577 dev_info(&pf->pdev->dev, "ARQ event error %d\n", ret);
5578 break;
5579 }
5580
5581 opcode = le16_to_cpu(event.desc.opcode);
5582 switch (opcode) {
5583
5584 case i40e_aqc_opc_get_link_status:
5585 i40e_handle_link_event(pf, &event);
5586 break;
5587 case i40e_aqc_opc_send_msg_to_pf:
5588 ret = i40e_vc_process_vf_msg(pf,
5589 le16_to_cpu(event.desc.retval),
5590 le32_to_cpu(event.desc.cookie_high),
5591 le32_to_cpu(event.desc.cookie_low),
5592 event.msg_buf,
5593 event.msg_size);
5594 break;
5595 case i40e_aqc_opc_lldp_update_mib:
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005596 dev_dbg(&pf->pdev->dev, "ARQ: Update LLDP MIB event received\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005597#ifdef CONFIG_I40E_DCB
5598 rtnl_lock();
5599 ret = i40e_handle_lldp_event(pf, &event);
5600 rtnl_unlock();
5601#endif /* CONFIG_I40E_DCB */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005602 break;
5603 case i40e_aqc_opc_event_lan_overflow:
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005604 dev_dbg(&pf->pdev->dev, "ARQ LAN queue overflow event received\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005605 i40e_handle_lan_overflow_event(pf, &event);
5606 break;
Shannon Nelson0467bc92013-12-18 13:45:58 +00005607 case i40e_aqc_opc_send_msg_to_peer:
5608 dev_info(&pf->pdev->dev, "ARQ: Msg from other pf\n");
5609 break;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005610 default:
5611 dev_info(&pf->pdev->dev,
Shannon Nelson0467bc92013-12-18 13:45:58 +00005612 "ARQ Error: Unknown event 0x%04x received\n",
5613 opcode);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005614 break;
5615 }
5616 } while (pending && (i++ < pf->adminq_work_limit));
5617
5618 clear_bit(__I40E_ADMINQ_EVENT_PENDING, &pf->state);
5619 /* re-enable Admin queue interrupt cause */
5620 val = rd32(hw, I40E_PFINT_ICR0_ENA);
5621 val |= I40E_PFINT_ICR0_ENA_ADMINQ_MASK;
5622 wr32(hw, I40E_PFINT_ICR0_ENA, val);
5623 i40e_flush(hw);
5624
5625 kfree(event.msg_buf);
5626}
5627
5628/**
Shannon Nelson4eb3f762014-03-06 08:59:58 +00005629 * i40e_verify_eeprom - make sure eeprom is good to use
5630 * @pf: board private structure
5631 **/
5632static void i40e_verify_eeprom(struct i40e_pf *pf)
5633{
5634 int err;
5635
5636 err = i40e_diag_eeprom_test(&pf->hw);
5637 if (err) {
5638 /* retry in case of garbage read */
5639 err = i40e_diag_eeprom_test(&pf->hw);
5640 if (err) {
5641 dev_info(&pf->pdev->dev, "eeprom check failed (%d), Tx/Rx traffic disabled\n",
5642 err);
5643 set_bit(__I40E_BAD_EEPROM, &pf->state);
5644 }
5645 }
5646
5647 if (!err && test_bit(__I40E_BAD_EEPROM, &pf->state)) {
5648 dev_info(&pf->pdev->dev, "eeprom check passed, Tx/Rx traffic enabled\n");
5649 clear_bit(__I40E_BAD_EEPROM, &pf->state);
5650 }
5651}
5652
5653/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005654 * i40e_reconstitute_veb - rebuild the VEB and anything connected to it
5655 * @veb: pointer to the VEB instance
5656 *
5657 * This is a recursive function that first builds the attached VSIs then
5658 * recurses in to build the next layer of VEB. We track the connections
5659 * through our own index numbers because the seid's from the HW could
5660 * change across the reset.
5661 **/
5662static int i40e_reconstitute_veb(struct i40e_veb *veb)
5663{
5664 struct i40e_vsi *ctl_vsi = NULL;
5665 struct i40e_pf *pf = veb->pf;
5666 int v, veb_idx;
5667 int ret;
5668
5669 /* build VSI that owns this VEB, temporarily attached to base VEB */
Mitch Williams505682c2014-05-20 08:01:37 +00005670 for (v = 0; v < pf->num_alloc_vsi && !ctl_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005671 if (pf->vsi[v] &&
5672 pf->vsi[v]->veb_idx == veb->idx &&
5673 pf->vsi[v]->flags & I40E_VSI_FLAG_VEB_OWNER) {
5674 ctl_vsi = pf->vsi[v];
5675 break;
5676 }
5677 }
5678 if (!ctl_vsi) {
5679 dev_info(&pf->pdev->dev,
5680 "missing owner VSI for veb_idx %d\n", veb->idx);
5681 ret = -ENOENT;
5682 goto end_reconstitute;
5683 }
5684 if (ctl_vsi != pf->vsi[pf->lan_vsi])
5685 ctl_vsi->uplink_seid = pf->vsi[pf->lan_vsi]->uplink_seid;
5686 ret = i40e_add_vsi(ctl_vsi);
5687 if (ret) {
5688 dev_info(&pf->pdev->dev,
5689 "rebuild of owner VSI failed: %d\n", ret);
5690 goto end_reconstitute;
5691 }
5692 i40e_vsi_reset_stats(ctl_vsi);
5693
5694 /* create the VEB in the switch and move the VSI onto the VEB */
5695 ret = i40e_add_veb(veb, ctl_vsi);
5696 if (ret)
5697 goto end_reconstitute;
5698
5699 /* create the remaining VSIs attached to this VEB */
Mitch Williams505682c2014-05-20 08:01:37 +00005700 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005701 if (!pf->vsi[v] || pf->vsi[v] == ctl_vsi)
5702 continue;
5703
5704 if (pf->vsi[v]->veb_idx == veb->idx) {
5705 struct i40e_vsi *vsi = pf->vsi[v];
5706 vsi->uplink_seid = veb->seid;
5707 ret = i40e_add_vsi(vsi);
5708 if (ret) {
5709 dev_info(&pf->pdev->dev,
5710 "rebuild of vsi_idx %d failed: %d\n",
5711 v, ret);
5712 goto end_reconstitute;
5713 }
5714 i40e_vsi_reset_stats(vsi);
5715 }
5716 }
5717
5718 /* create any VEBs attached to this VEB - RECURSION */
5719 for (veb_idx = 0; veb_idx < I40E_MAX_VEB; veb_idx++) {
5720 if (pf->veb[veb_idx] && pf->veb[veb_idx]->veb_idx == veb->idx) {
5721 pf->veb[veb_idx]->uplink_seid = veb->seid;
5722 ret = i40e_reconstitute_veb(pf->veb[veb_idx]);
5723 if (ret)
5724 break;
5725 }
5726 }
5727
5728end_reconstitute:
5729 return ret;
5730}
5731
5732/**
5733 * i40e_get_capabilities - get info about the HW
5734 * @pf: the PF struct
5735 **/
5736static int i40e_get_capabilities(struct i40e_pf *pf)
5737{
5738 struct i40e_aqc_list_capabilities_element_resp *cap_buf;
5739 u16 data_size;
5740 int buf_len;
5741 int err;
5742
5743 buf_len = 40 * sizeof(struct i40e_aqc_list_capabilities_element_resp);
5744 do {
5745 cap_buf = kzalloc(buf_len, GFP_KERNEL);
5746 if (!cap_buf)
5747 return -ENOMEM;
5748
5749 /* this loads the data into the hw struct for us */
5750 err = i40e_aq_discover_capabilities(&pf->hw, cap_buf, buf_len,
5751 &data_size,
5752 i40e_aqc_opc_list_func_capabilities,
5753 NULL);
5754 /* data loaded, buffer no longer needed */
5755 kfree(cap_buf);
5756
5757 if (pf->hw.aq.asq_last_status == I40E_AQ_RC_ENOMEM) {
5758 /* retry with a larger buffer */
5759 buf_len = data_size;
5760 } else if (pf->hw.aq.asq_last_status != I40E_AQ_RC_OK) {
5761 dev_info(&pf->pdev->dev,
5762 "capability discovery failed: aq=%d\n",
5763 pf->hw.aq.asq_last_status);
5764 return -ENODEV;
5765 }
5766 } while (err);
5767
Anjali Singhai Jainac71b7b2014-02-06 05:51:08 +00005768 if (((pf->hw.aq.fw_maj_ver == 2) && (pf->hw.aq.fw_min_ver < 22)) ||
5769 (pf->hw.aq.fw_maj_ver < 2)) {
5770 pf->hw.func_caps.num_msix_vectors++;
5771 pf->hw.func_caps.num_msix_vectors_vf++;
5772 }
5773
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005774 if (pf->hw.debug_mask & I40E_DEBUG_USER)
5775 dev_info(&pf->pdev->dev,
5776 "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",
5777 pf->hw.pf_id, pf->hw.func_caps.num_vfs,
5778 pf->hw.func_caps.num_msix_vectors,
5779 pf->hw.func_caps.num_msix_vectors_vf,
5780 pf->hw.func_caps.fd_filters_guaranteed,
5781 pf->hw.func_caps.fd_filters_best_effort,
5782 pf->hw.func_caps.num_tx_qp,
5783 pf->hw.func_caps.num_vsis);
5784
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00005785#define DEF_NUM_VSI (1 + (pf->hw.func_caps.fcoe ? 1 : 0) \
5786 + pf->hw.func_caps.num_vfs)
5787 if (pf->hw.revision_id == 0 && (DEF_NUM_VSI > pf->hw.func_caps.num_vsis)) {
5788 dev_info(&pf->pdev->dev,
5789 "got num_vsis %d, setting num_vsis to %d\n",
5790 pf->hw.func_caps.num_vsis, DEF_NUM_VSI);
5791 pf->hw.func_caps.num_vsis = DEF_NUM_VSI;
5792 }
5793
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005794 return 0;
5795}
5796
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08005797static int i40e_vsi_clear(struct i40e_vsi *vsi);
5798
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005799/**
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08005800 * i40e_fdir_sb_setup - initialize the Flow Director resources for Sideband
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005801 * @pf: board private structure
5802 **/
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08005803static void i40e_fdir_sb_setup(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005804{
5805 struct i40e_vsi *vsi;
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00005806 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005807
Jesse Brandeburg407e0632014-06-03 23:50:12 +00005808 /* quick workaround for an NVM issue that leaves a critical register
5809 * uninitialized
5810 */
5811 if (!rd32(&pf->hw, I40E_GLQF_HKEY(0))) {
5812 static const u32 hkey[] = {
5813 0xe640d33f, 0xcdfe98ab, 0x73fa7161, 0x0d7a7d36,
5814 0xeacb7d61, 0xaa4f05b6, 0x9c5c89ed, 0xfc425ddb,
5815 0xa4654832, 0xfc7461d4, 0x8f827619, 0xf5c63c21,
5816 0x95b3a76d};
5817
5818 for (i = 0; i <= I40E_GLQF_HKEY_MAX_INDEX; i++)
5819 wr32(&pf->hw, I40E_GLQF_HKEY(i), hkey[i]);
5820 }
5821
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08005822 if (!(pf->flags & I40E_FLAG_FD_SB_ENABLED))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005823 return;
5824
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08005825 /* find existing VSI and see if it needs configuring */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005826 vsi = NULL;
Mitch Williams505682c2014-05-20 08:01:37 +00005827 for (i = 0; i < pf->num_alloc_vsi; i++) {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08005828 if (pf->vsi[i] && pf->vsi[i]->type == I40E_VSI_FDIR) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005829 vsi = pf->vsi[i];
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08005830 break;
5831 }
5832 }
5833
5834 /* create a new VSI if none exists */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005835 if (!vsi) {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08005836 vsi = i40e_vsi_setup(pf, I40E_VSI_FDIR,
5837 pf->vsi[pf->lan_vsi]->seid, 0);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005838 if (!vsi) {
5839 dev_info(&pf->pdev->dev, "Couldn't create FDir VSI\n");
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00005840 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
5841 return;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005842 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005843 }
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00005844
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08005845 i40e_vsi_setup_irqhandler(vsi, i40e_fdir_clean_ring);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005846}
5847
5848/**
5849 * i40e_fdir_teardown - release the Flow Director resources
5850 * @pf: board private structure
5851 **/
5852static void i40e_fdir_teardown(struct i40e_pf *pf)
5853{
5854 int i;
5855
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00005856 i40e_fdir_filter_exit(pf);
Mitch Williams505682c2014-05-20 08:01:37 +00005857 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005858 if (pf->vsi[i] && pf->vsi[i]->type == I40E_VSI_FDIR) {
5859 i40e_vsi_release(pf->vsi[i]);
5860 break;
5861 }
5862 }
5863}
5864
5865/**
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00005866 * i40e_prep_for_reset - prep for the core to reset
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005867 * @pf: board private structure
5868 *
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00005869 * Close up the VFs and other things in prep for pf Reset.
5870 **/
Shannon Nelson23cfbe02014-06-04 01:23:14 +00005871static void i40e_prep_for_reset(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005872{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005873 struct i40e_hw *hw = &pf->hw;
Shannon Nelson60442de2014-04-23 04:50:13 +00005874 i40e_status ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005875 u32 v;
5876
5877 clear_bit(__I40E_RESET_INTR_RECEIVED, &pf->state);
5878 if (test_and_set_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state))
Shannon Nelson23cfbe02014-06-04 01:23:14 +00005879 return;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005880
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005881 dev_dbg(&pf->pdev->dev, "Tearing down internal switch for reset\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005882
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005883 /* quiesce the VSIs and their queues that are not already DOWN */
5884 i40e_pf_quiesce_all_vsi(pf);
5885
Mitch Williams505682c2014-05-20 08:01:37 +00005886 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005887 if (pf->vsi[v])
5888 pf->vsi[v]->seid = 0;
5889 }
5890
5891 i40e_shutdown_adminq(&pf->hw);
5892
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00005893 /* call shutdown HMC */
Shannon Nelson60442de2014-04-23 04:50:13 +00005894 if (hw->hmc.hmc_obj) {
5895 ret = i40e_shutdown_lan_hmc(hw);
Shannon Nelson23cfbe02014-06-04 01:23:14 +00005896 if (ret)
Shannon Nelson60442de2014-04-23 04:50:13 +00005897 dev_warn(&pf->pdev->dev,
5898 "shutdown_lan_hmc failed: %d\n", ret);
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00005899 }
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00005900}
5901
5902/**
Jesse Brandeburg44033fa2014-04-23 04:50:15 +00005903 * i40e_send_version - update firmware with driver version
5904 * @pf: PF struct
5905 */
5906static void i40e_send_version(struct i40e_pf *pf)
5907{
5908 struct i40e_driver_version dv;
5909
5910 dv.major_version = DRV_VERSION_MAJOR;
5911 dv.minor_version = DRV_VERSION_MINOR;
5912 dv.build_version = DRV_VERSION_BUILD;
5913 dv.subbuild_version = 0;
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00005914 strlcpy(dv.driver_string, DRV_VERSION, sizeof(dv.driver_string));
Jesse Brandeburg44033fa2014-04-23 04:50:15 +00005915 i40e_aq_send_driver_version(&pf->hw, &dv, NULL);
5916}
5917
5918/**
Jesse Brandeburg4dda12e2013-12-18 13:46:01 +00005919 * i40e_reset_and_rebuild - reset and rebuild using a saved config
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00005920 * @pf: board private structure
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00005921 * @reinit: if the Main VSI needs to re-initialized.
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00005922 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00005923static void i40e_reset_and_rebuild(struct i40e_pf *pf, bool reinit)
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00005924{
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00005925 struct i40e_hw *hw = &pf->hw;
5926 i40e_status ret;
5927 u32 v;
5928
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005929 /* Now we wait for GRST to settle out.
5930 * We don't have to delete the VEBs or VSIs from the hw switch
5931 * because the reset will make them disappear.
5932 */
5933 ret = i40e_pf_reset(hw);
Akeem G Abodunrinb5565402014-04-09 05:59:04 +00005934 if (ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005935 dev_info(&pf->pdev->dev, "PF reset failed, %d\n", ret);
Akeem G Abodunrinb5565402014-04-09 05:59:04 +00005936 goto end_core_reset;
5937 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005938 pf->pfr_count++;
5939
5940 if (test_bit(__I40E_DOWN, &pf->state))
5941 goto end_core_reset;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005942 dev_dbg(&pf->pdev->dev, "Rebuilding internal switch\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005943
5944 /* rebuild the basics for the AdminQ, HMC, and initial HW switch */
5945 ret = i40e_init_adminq(&pf->hw);
5946 if (ret) {
5947 dev_info(&pf->pdev->dev, "Rebuild AdminQ failed, %d\n", ret);
5948 goto end_core_reset;
5949 }
5950
Shannon Nelson4eb3f762014-03-06 08:59:58 +00005951 /* re-verify the eeprom if we just had an EMP reset */
5952 if (test_bit(__I40E_EMP_RESET_REQUESTED, &pf->state)) {
5953 clear_bit(__I40E_EMP_RESET_REQUESTED, &pf->state);
5954 i40e_verify_eeprom(pf);
5955 }
5956
Shannon Nelsone78ac4bf2014-05-10 04:49:09 +00005957 i40e_clear_pxe_mode(hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005958 ret = i40e_get_capabilities(pf);
5959 if (ret) {
5960 dev_info(&pf->pdev->dev, "i40e_get_capabilities failed, %d\n",
5961 ret);
5962 goto end_core_reset;
5963 }
5964
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005965 ret = i40e_init_lan_hmc(hw, hw->func_caps.num_tx_qp,
5966 hw->func_caps.num_rx_qp,
5967 pf->fcoe_hmc_cntx_num, pf->fcoe_hmc_filt_num);
5968 if (ret) {
5969 dev_info(&pf->pdev->dev, "init_lan_hmc failed: %d\n", ret);
5970 goto end_core_reset;
5971 }
5972 ret = i40e_configure_lan_hmc(hw, I40E_HMC_MODEL_DIRECT_ONLY);
5973 if (ret) {
5974 dev_info(&pf->pdev->dev, "configure_lan_hmc failed: %d\n", ret);
5975 goto end_core_reset;
5976 }
5977
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005978#ifdef CONFIG_I40E_DCB
5979 ret = i40e_init_pf_dcb(pf);
5980 if (ret) {
5981 dev_info(&pf->pdev->dev, "init_pf_dcb failed: %d\n", ret);
5982 goto end_core_reset;
5983 }
5984#endif /* CONFIG_I40E_DCB */
Vasu Dev38e00432014-08-01 13:27:03 -07005985#ifdef I40E_FCOE
5986 ret = i40e_init_pf_fcoe(pf);
5987 if (ret)
5988 dev_info(&pf->pdev->dev, "init_pf_fcoe failed: %d\n", ret);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005989
Vasu Dev38e00432014-08-01 13:27:03 -07005990#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005991 /* do basic switch setup */
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00005992 ret = i40e_setup_pf_switch(pf, reinit);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005993 if (ret)
5994 goto end_core_reset;
5995
5996 /* Rebuild the VSIs and VEBs that existed before reset.
5997 * They are still in our local switch element arrays, so only
5998 * need to rebuild the switch model in the HW.
5999 *
6000 * If there were VEBs but the reconstitution failed, we'll try
6001 * try to recover minimal use by getting the basic PF VSI working.
6002 */
6003 if (pf->vsi[pf->lan_vsi]->uplink_seid != pf->mac_seid) {
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00006004 dev_dbg(&pf->pdev->dev, "attempting to rebuild switch\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006005 /* find the one VEB connected to the MAC, and find orphans */
6006 for (v = 0; v < I40E_MAX_VEB; v++) {
6007 if (!pf->veb[v])
6008 continue;
6009
6010 if (pf->veb[v]->uplink_seid == pf->mac_seid ||
6011 pf->veb[v]->uplink_seid == 0) {
6012 ret = i40e_reconstitute_veb(pf->veb[v]);
6013
6014 if (!ret)
6015 continue;
6016
6017 /* If Main VEB failed, we're in deep doodoo,
6018 * so give up rebuilding the switch and set up
6019 * for minimal rebuild of PF VSI.
6020 * If orphan failed, we'll report the error
6021 * but try to keep going.
6022 */
6023 if (pf->veb[v]->uplink_seid == pf->mac_seid) {
6024 dev_info(&pf->pdev->dev,
6025 "rebuild of switch failed: %d, will try to set up simple PF connection\n",
6026 ret);
6027 pf->vsi[pf->lan_vsi]->uplink_seid
6028 = pf->mac_seid;
6029 break;
6030 } else if (pf->veb[v]->uplink_seid == 0) {
6031 dev_info(&pf->pdev->dev,
6032 "rebuild of orphan VEB failed: %d\n",
6033 ret);
6034 }
6035 }
6036 }
6037 }
6038
6039 if (pf->vsi[pf->lan_vsi]->uplink_seid == pf->mac_seid) {
Shannon Nelsoncde4cbc2014-06-04 01:23:17 +00006040 dev_dbg(&pf->pdev->dev, "attempting to rebuild PF VSI\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006041 /* no VEB, so rebuild only the Main VSI */
6042 ret = i40e_add_vsi(pf->vsi[pf->lan_vsi]);
6043 if (ret) {
6044 dev_info(&pf->pdev->dev,
6045 "rebuild of Main VSI failed: %d\n", ret);
6046 goto end_core_reset;
6047 }
6048 }
6049
6050 /* reinit the misc interrupt */
6051 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
6052 ret = i40e_setup_misc_vector(pf);
6053
6054 /* restart the VSIs that were rebuilt and running before the reset */
6055 i40e_pf_unquiesce_all_vsi(pf);
6056
Mitch Williams69f64b22014-02-13 03:48:46 -08006057 if (pf->num_alloc_vfs) {
6058 for (v = 0; v < pf->num_alloc_vfs; v++)
6059 i40e_reset_vf(&pf->vf[v], true);
6060 }
6061
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006062 /* tell the firmware that we're starting */
Jesse Brandeburg44033fa2014-04-23 04:50:15 +00006063 i40e_send_version(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006064
6065end_core_reset:
6066 clear_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state);
6067}
6068
6069/**
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006070 * i40e_handle_reset_warning - prep for the pf to reset, reset and rebuild
6071 * @pf: board private structure
6072 *
6073 * Close up the VFs and other things in prep for a Core Reset,
6074 * then get ready to rebuild the world.
6075 **/
6076static void i40e_handle_reset_warning(struct i40e_pf *pf)
6077{
Shannon Nelson23cfbe02014-06-04 01:23:14 +00006078 i40e_prep_for_reset(pf);
6079 i40e_reset_and_rebuild(pf, false);
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006080}
6081
6082/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006083 * i40e_handle_mdd_event
6084 * @pf: pointer to the pf structure
6085 *
6086 * Called from the MDD irq handler to identify possibly malicious vfs
6087 **/
6088static void i40e_handle_mdd_event(struct i40e_pf *pf)
6089{
6090 struct i40e_hw *hw = &pf->hw;
6091 bool mdd_detected = false;
Neerav Parikhdf430b12014-06-04 01:23:15 +00006092 bool pf_mdd_detected = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006093 struct i40e_vf *vf;
6094 u32 reg;
6095 int i;
6096
6097 if (!test_bit(__I40E_MDD_EVENT_PENDING, &pf->state))
6098 return;
6099
6100 /* find what triggered the MDD event */
6101 reg = rd32(hw, I40E_GL_MDET_TX);
6102 if (reg & I40E_GL_MDET_TX_VALID_MASK) {
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00006103 u8 pf_num = (reg & I40E_GL_MDET_TX_PF_NUM_MASK) >>
6104 I40E_GL_MDET_TX_PF_NUM_SHIFT;
6105 u8 vf_num = (reg & I40E_GL_MDET_TX_VF_NUM_MASK) >>
6106 I40E_GL_MDET_TX_VF_NUM_SHIFT;
6107 u8 event = (reg & I40E_GL_MDET_TX_EVENT_SHIFT) >>
6108 I40E_GL_MDET_TX_EVENT_SHIFT;
6109 u8 queue = (reg & I40E_GL_MDET_TX_QUEUE_MASK) >>
6110 I40E_GL_MDET_TX_QUEUE_SHIFT;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006111 dev_info(&pf->pdev->dev,
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00006112 "Malicious Driver Detection event 0x%02x on TX queue %d pf number 0x%02x vf number 0x%02x\n",
6113 event, queue, pf_num, vf_num);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006114 wr32(hw, I40E_GL_MDET_TX, 0xffffffff);
6115 mdd_detected = true;
6116 }
6117 reg = rd32(hw, I40E_GL_MDET_RX);
6118 if (reg & I40E_GL_MDET_RX_VALID_MASK) {
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00006119 u8 func = (reg & I40E_GL_MDET_RX_FUNCTION_MASK) >>
6120 I40E_GL_MDET_RX_FUNCTION_SHIFT;
6121 u8 event = (reg & I40E_GL_MDET_RX_EVENT_SHIFT) >>
6122 I40E_GL_MDET_RX_EVENT_SHIFT;
6123 u8 queue = (reg & I40E_GL_MDET_RX_QUEUE_MASK) >>
6124 I40E_GL_MDET_RX_QUEUE_SHIFT;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006125 dev_info(&pf->pdev->dev,
Jesse Brandeburgf29eaa32014-02-11 08:24:12 +00006126 "Malicious Driver Detection event 0x%02x on RX queue %d of function 0x%02x\n",
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006127 event, queue, func);
6128 wr32(hw, I40E_GL_MDET_RX, 0xffffffff);
6129 mdd_detected = true;
6130 }
6131
Neerav Parikhdf430b12014-06-04 01:23:15 +00006132 if (mdd_detected) {
6133 reg = rd32(hw, I40E_PF_MDET_TX);
6134 if (reg & I40E_PF_MDET_TX_VALID_MASK) {
6135 wr32(hw, I40E_PF_MDET_TX, 0xFFFF);
6136 dev_info(&pf->pdev->dev,
6137 "MDD TX event is for this function 0x%08x, requesting PF reset.\n",
6138 reg);
6139 pf_mdd_detected = true;
6140 }
6141 reg = rd32(hw, I40E_PF_MDET_RX);
6142 if (reg & I40E_PF_MDET_RX_VALID_MASK) {
6143 wr32(hw, I40E_PF_MDET_RX, 0xFFFF);
6144 dev_info(&pf->pdev->dev,
6145 "MDD RX event is for this function 0x%08x, requesting PF reset.\n",
6146 reg);
6147 pf_mdd_detected = true;
6148 }
6149 /* Queue belongs to the PF, initiate a reset */
6150 if (pf_mdd_detected) {
6151 set_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
6152 i40e_service_event_schedule(pf);
6153 }
6154 }
6155
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006156 /* see if one of the VFs needs its hand slapped */
6157 for (i = 0; i < pf->num_alloc_vfs && mdd_detected; i++) {
6158 vf = &(pf->vf[i]);
6159 reg = rd32(hw, I40E_VP_MDET_TX(i));
6160 if (reg & I40E_VP_MDET_TX_VALID_MASK) {
6161 wr32(hw, I40E_VP_MDET_TX(i), 0xFFFF);
6162 vf->num_mdd_events++;
6163 dev_info(&pf->pdev->dev, "MDD TX event on VF %d\n", i);
6164 }
6165
6166 reg = rd32(hw, I40E_VP_MDET_RX(i));
6167 if (reg & I40E_VP_MDET_RX_VALID_MASK) {
6168 wr32(hw, I40E_VP_MDET_RX(i), 0xFFFF);
6169 vf->num_mdd_events++;
6170 dev_info(&pf->pdev->dev, "MDD RX event on VF %d\n", i);
6171 }
6172
6173 if (vf->num_mdd_events > I40E_DEFAULT_NUM_MDD_EVENTS_ALLOWED) {
6174 dev_info(&pf->pdev->dev,
6175 "Too many MDD events on VF %d, disabled\n", i);
6176 dev_info(&pf->pdev->dev,
6177 "Use PF Control I/F to re-enable the VF\n");
6178 set_bit(I40E_VF_STAT_DISABLED, &vf->vf_states);
6179 }
6180 }
6181
6182 /* re-enable mdd interrupt cause */
6183 clear_bit(__I40E_MDD_EVENT_PENDING, &pf->state);
6184 reg = rd32(hw, I40E_PFINT_ICR0_ENA);
6185 reg |= I40E_PFINT_ICR0_ENA_MAL_DETECT_MASK;
6186 wr32(hw, I40E_PFINT_ICR0_ENA, reg);
6187 i40e_flush(hw);
6188}
6189
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00006190#ifdef CONFIG_I40E_VXLAN
6191/**
6192 * i40e_sync_vxlan_filters_subtask - Sync the VSI filter list with HW
6193 * @pf: board private structure
6194 **/
6195static void i40e_sync_vxlan_filters_subtask(struct i40e_pf *pf)
6196{
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00006197 struct i40e_hw *hw = &pf->hw;
6198 i40e_status ret;
6199 u8 filter_index;
6200 __be16 port;
6201 int i;
6202
6203 if (!(pf->flags & I40E_FLAG_VXLAN_FILTER_SYNC))
6204 return;
6205
6206 pf->flags &= ~I40E_FLAG_VXLAN_FILTER_SYNC;
6207
6208 for (i = 0; i < I40E_MAX_PF_UDP_OFFLOAD_PORTS; i++) {
6209 if (pf->pending_vxlan_bitmap & (1 << i)) {
6210 pf->pending_vxlan_bitmap &= ~(1 << i);
6211 port = pf->vxlan_ports[i];
6212 ret = port ?
6213 i40e_aq_add_udp_tunnel(hw, ntohs(port),
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00006214 I40E_AQC_TUNNEL_TYPE_VXLAN,
6215 &filter_index, NULL)
6216 : i40e_aq_del_udp_tunnel(hw, i, NULL);
6217
6218 if (ret) {
6219 dev_info(&pf->pdev->dev, "Failed to execute AQ command for %s port %d with index %d\n",
6220 port ? "adding" : "deleting",
6221 ntohs(port), port ? i : i);
6222
6223 pf->vxlan_ports[i] = 0;
6224 } else {
6225 dev_info(&pf->pdev->dev, "%s port %d with AQ command with index %d\n",
6226 port ? "Added" : "Deleted",
6227 ntohs(port), port ? i : filter_index);
6228 }
6229 }
6230 }
6231}
6232
6233#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006234/**
6235 * i40e_service_task - Run the driver's async subtasks
6236 * @work: pointer to work_struct containing our data
6237 **/
6238static void i40e_service_task(struct work_struct *work)
6239{
6240 struct i40e_pf *pf = container_of(work,
6241 struct i40e_pf,
6242 service_task);
6243 unsigned long start_time = jiffies;
6244
Shannon Nelsone57a2fe2014-06-03 23:50:19 +00006245 /* don't bother with service tasks if a reset is in progress */
6246 if (test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state)) {
6247 i40e_service_event_complete(pf);
6248 return;
6249 }
6250
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006251 i40e_reset_subtask(pf);
6252 i40e_handle_mdd_event(pf);
6253 i40e_vc_process_vflr_event(pf);
6254 i40e_watchdog_subtask(pf);
6255 i40e_fdir_reinit_subtask(pf);
6256 i40e_check_hang_subtask(pf);
6257 i40e_sync_filters_subtask(pf);
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00006258#ifdef CONFIG_I40E_VXLAN
6259 i40e_sync_vxlan_filters_subtask(pf);
6260#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006261 i40e_clean_adminq_subtask(pf);
6262
6263 i40e_service_event_complete(pf);
6264
6265 /* If the tasks have taken longer than one timer cycle or there
6266 * is more work to be done, reschedule the service task now
6267 * rather than wait for the timer to tick again.
6268 */
6269 if (time_after(jiffies, (start_time + pf->service_timer_period)) ||
6270 test_bit(__I40E_ADMINQ_EVENT_PENDING, &pf->state) ||
6271 test_bit(__I40E_MDD_EVENT_PENDING, &pf->state) ||
6272 test_bit(__I40E_VFLR_EVENT_PENDING, &pf->state))
6273 i40e_service_event_schedule(pf);
6274}
6275
6276/**
6277 * i40e_service_timer - timer callback
6278 * @data: pointer to PF struct
6279 **/
6280static void i40e_service_timer(unsigned long data)
6281{
6282 struct i40e_pf *pf = (struct i40e_pf *)data;
6283
6284 mod_timer(&pf->service_timer,
6285 round_jiffies(jiffies + pf->service_timer_period));
6286 i40e_service_event_schedule(pf);
6287}
6288
6289/**
6290 * i40e_set_num_rings_in_vsi - Determine number of rings in the VSI
6291 * @vsi: the VSI being configured
6292 **/
6293static int i40e_set_num_rings_in_vsi(struct i40e_vsi *vsi)
6294{
6295 struct i40e_pf *pf = vsi->back;
6296
6297 switch (vsi->type) {
6298 case I40E_VSI_MAIN:
6299 vsi->alloc_queue_pairs = pf->num_lan_qps;
6300 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
6301 I40E_REQ_DESCRIPTOR_MULTIPLE);
6302 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
6303 vsi->num_q_vectors = pf->num_lan_msix;
6304 else
6305 vsi->num_q_vectors = 1;
6306
6307 break;
6308
6309 case I40E_VSI_FDIR:
6310 vsi->alloc_queue_pairs = 1;
6311 vsi->num_desc = ALIGN(I40E_FDIR_RING_COUNT,
6312 I40E_REQ_DESCRIPTOR_MULTIPLE);
6313 vsi->num_q_vectors = 1;
6314 break;
6315
6316 case I40E_VSI_VMDQ2:
6317 vsi->alloc_queue_pairs = pf->num_vmdq_qps;
6318 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
6319 I40E_REQ_DESCRIPTOR_MULTIPLE);
6320 vsi->num_q_vectors = pf->num_vmdq_msix;
6321 break;
6322
6323 case I40E_VSI_SRIOV:
6324 vsi->alloc_queue_pairs = pf->num_vf_qps;
6325 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
6326 I40E_REQ_DESCRIPTOR_MULTIPLE);
6327 break;
6328
Vasu Dev38e00432014-08-01 13:27:03 -07006329#ifdef I40E_FCOE
6330 case I40E_VSI_FCOE:
6331 vsi->alloc_queue_pairs = pf->num_fcoe_qps;
6332 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
6333 I40E_REQ_DESCRIPTOR_MULTIPLE);
6334 vsi->num_q_vectors = pf->num_fcoe_msix;
6335 break;
6336
6337#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006338 default:
6339 WARN_ON(1);
6340 return -ENODATA;
6341 }
6342
6343 return 0;
6344}
6345
6346/**
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006347 * i40e_vsi_alloc_arrays - Allocate queue and vector pointer arrays for the vsi
6348 * @type: VSI pointer
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006349 * @alloc_qvectors: a bool to specify if q_vectors need to be allocated.
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006350 *
6351 * On error: returns error code (negative)
6352 * On success: returns 0
6353 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006354static int i40e_vsi_alloc_arrays(struct i40e_vsi *vsi, bool alloc_qvectors)
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006355{
6356 int size;
6357 int ret = 0;
6358
Shannon Nelsonac6c5e32013-11-20 10:02:57 +00006359 /* allocate memory for both Tx and Rx ring pointers */
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006360 size = sizeof(struct i40e_ring *) * vsi->alloc_queue_pairs * 2;
6361 vsi->tx_rings = kzalloc(size, GFP_KERNEL);
6362 if (!vsi->tx_rings)
6363 return -ENOMEM;
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006364 vsi->rx_rings = &vsi->tx_rings[vsi->alloc_queue_pairs];
6365
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006366 if (alloc_qvectors) {
6367 /* allocate memory for q_vector pointers */
Julia Lawallf57e4fb2014-07-30 03:11:09 +00006368 size = sizeof(struct i40e_q_vector *) * vsi->num_q_vectors;
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006369 vsi->q_vectors = kzalloc(size, GFP_KERNEL);
6370 if (!vsi->q_vectors) {
6371 ret = -ENOMEM;
6372 goto err_vectors;
6373 }
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006374 }
6375 return ret;
6376
6377err_vectors:
6378 kfree(vsi->tx_rings);
6379 return ret;
6380}
6381
6382/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006383 * i40e_vsi_mem_alloc - Allocates the next available struct vsi in the PF
6384 * @pf: board private structure
6385 * @type: type of VSI
6386 *
6387 * On error: returns error code (negative)
6388 * On success: returns vsi index in PF (positive)
6389 **/
6390static int i40e_vsi_mem_alloc(struct i40e_pf *pf, enum i40e_vsi_type type)
6391{
6392 int ret = -ENODEV;
6393 struct i40e_vsi *vsi;
6394 int vsi_idx;
6395 int i;
6396
6397 /* Need to protect the allocation of the VSIs at the PF level */
6398 mutex_lock(&pf->switch_mutex);
6399
6400 /* VSI list may be fragmented if VSI creation/destruction has
6401 * been happening. We can afford to do a quick scan to look
6402 * for any free VSIs in the list.
6403 *
6404 * find next empty vsi slot, looping back around if necessary
6405 */
6406 i = pf->next_vsi;
Mitch Williams505682c2014-05-20 08:01:37 +00006407 while (i < pf->num_alloc_vsi && pf->vsi[i])
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006408 i++;
Mitch Williams505682c2014-05-20 08:01:37 +00006409 if (i >= pf->num_alloc_vsi) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006410 i = 0;
6411 while (i < pf->next_vsi && pf->vsi[i])
6412 i++;
6413 }
6414
Mitch Williams505682c2014-05-20 08:01:37 +00006415 if (i < pf->num_alloc_vsi && !pf->vsi[i]) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006416 vsi_idx = i; /* Found one! */
6417 } else {
6418 ret = -ENODEV;
Alexander Duyck493fb302013-09-28 07:01:44 +00006419 goto unlock_pf; /* out of VSI slots! */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006420 }
6421 pf->next_vsi = ++i;
6422
6423 vsi = kzalloc(sizeof(*vsi), GFP_KERNEL);
6424 if (!vsi) {
6425 ret = -ENOMEM;
Alexander Duyck493fb302013-09-28 07:01:44 +00006426 goto unlock_pf;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006427 }
6428 vsi->type = type;
6429 vsi->back = pf;
6430 set_bit(__I40E_DOWN, &vsi->state);
6431 vsi->flags = 0;
6432 vsi->idx = vsi_idx;
6433 vsi->rx_itr_setting = pf->rx_itr_default;
6434 vsi->tx_itr_setting = pf->tx_itr_default;
6435 vsi->netdev_registered = false;
6436 vsi->work_limit = I40E_DEFAULT_IRQ_WORK;
6437 INIT_LIST_HEAD(&vsi->mac_filter_list);
Shannon Nelson63741842014-04-23 04:50:16 +00006438 vsi->irqs_ready = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006439
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006440 ret = i40e_set_num_rings_in_vsi(vsi);
6441 if (ret)
6442 goto err_rings;
6443
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006444 ret = i40e_vsi_alloc_arrays(vsi, true);
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006445 if (ret)
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006446 goto err_rings;
Alexander Duyck493fb302013-09-28 07:01:44 +00006447
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006448 /* Setup default MSIX irq handler for VSI */
6449 i40e_vsi_setup_irqhandler(vsi, i40e_msix_clean_rings);
6450
6451 pf->vsi[vsi_idx] = vsi;
6452 ret = vsi_idx;
Alexander Duyck493fb302013-09-28 07:01:44 +00006453 goto unlock_pf;
6454
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006455err_rings:
Alexander Duyck493fb302013-09-28 07:01:44 +00006456 pf->next_vsi = i - 1;
6457 kfree(vsi);
6458unlock_pf:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006459 mutex_unlock(&pf->switch_mutex);
6460 return ret;
6461}
6462
6463/**
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006464 * i40e_vsi_free_arrays - Free queue and vector pointer arrays for the VSI
6465 * @type: VSI pointer
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006466 * @free_qvectors: a bool to specify if q_vectors need to be freed.
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006467 *
6468 * On error: returns error code (negative)
6469 * On success: returns 0
6470 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006471static void i40e_vsi_free_arrays(struct i40e_vsi *vsi, bool free_qvectors)
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006472{
6473 /* free the ring and vector containers */
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006474 if (free_qvectors) {
6475 kfree(vsi->q_vectors);
6476 vsi->q_vectors = NULL;
6477 }
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006478 kfree(vsi->tx_rings);
6479 vsi->tx_rings = NULL;
6480 vsi->rx_rings = NULL;
6481}
6482
6483/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006484 * i40e_vsi_clear - Deallocate the VSI provided
6485 * @vsi: the VSI being un-configured
6486 **/
6487static int i40e_vsi_clear(struct i40e_vsi *vsi)
6488{
6489 struct i40e_pf *pf;
6490
6491 if (!vsi)
6492 return 0;
6493
6494 if (!vsi->back)
6495 goto free_vsi;
6496 pf = vsi->back;
6497
6498 mutex_lock(&pf->switch_mutex);
6499 if (!pf->vsi[vsi->idx]) {
6500 dev_err(&pf->pdev->dev, "pf->vsi[%d] is NULL, just free vsi[%d](%p,type %d)\n",
6501 vsi->idx, vsi->idx, vsi, vsi->type);
6502 goto unlock_vsi;
6503 }
6504
6505 if (pf->vsi[vsi->idx] != vsi) {
6506 dev_err(&pf->pdev->dev,
6507 "pf->vsi[%d](%p, type %d) != vsi[%d](%p,type %d): no free!\n",
6508 pf->vsi[vsi->idx]->idx,
6509 pf->vsi[vsi->idx],
6510 pf->vsi[vsi->idx]->type,
6511 vsi->idx, vsi, vsi->type);
6512 goto unlock_vsi;
6513 }
6514
6515 /* updates the pf for this cleared vsi */
6516 i40e_put_lump(pf->qp_pile, vsi->base_queue, vsi->idx);
6517 i40e_put_lump(pf->irq_pile, vsi->base_vector, vsi->idx);
6518
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006519 i40e_vsi_free_arrays(vsi, true);
Alexander Duyck493fb302013-09-28 07:01:44 +00006520
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006521 pf->vsi[vsi->idx] = NULL;
6522 if (vsi->idx < pf->next_vsi)
6523 pf->next_vsi = vsi->idx;
6524
6525unlock_vsi:
6526 mutex_unlock(&pf->switch_mutex);
6527free_vsi:
6528 kfree(vsi);
6529
6530 return 0;
6531}
6532
6533/**
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006534 * i40e_vsi_clear_rings - Deallocates the Rx and Tx rings for the provided VSI
6535 * @vsi: the VSI being cleaned
6536 **/
Shannon Nelsonbe1d5ee2013-11-28 06:39:23 +00006537static void i40e_vsi_clear_rings(struct i40e_vsi *vsi)
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006538{
6539 int i;
6540
Greg Rose8e9dca52013-12-18 13:45:53 +00006541 if (vsi->tx_rings && vsi->tx_rings[0]) {
Neerav Parikhd7397642013-11-28 06:39:37 +00006542 for (i = 0; i < vsi->alloc_queue_pairs; i++) {
Mitch Williams00403f02013-09-28 07:13:13 +00006543 kfree_rcu(vsi->tx_rings[i], rcu);
6544 vsi->tx_rings[i] = NULL;
6545 vsi->rx_rings[i] = NULL;
6546 }
Shannon Nelsonbe1d5ee2013-11-28 06:39:23 +00006547 }
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006548}
6549
6550/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006551 * i40e_alloc_rings - Allocates the Rx and Tx rings for the provided VSI
6552 * @vsi: the VSI being configured
6553 **/
6554static int i40e_alloc_rings(struct i40e_vsi *vsi)
6555{
Akeem G Abodunrine7046ee2014-04-09 05:58:58 +00006556 struct i40e_ring *tx_ring, *rx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006557 struct i40e_pf *pf = vsi->back;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006558 int i;
6559
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006560 /* Set basic values in the rings to be used later during open() */
Neerav Parikhd7397642013-11-28 06:39:37 +00006561 for (i = 0; i < vsi->alloc_queue_pairs; i++) {
Shannon Nelsonac6c5e32013-11-20 10:02:57 +00006562 /* allocate space for both Tx and Rx in one shot */
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006563 tx_ring = kzalloc(sizeof(struct i40e_ring) * 2, GFP_KERNEL);
6564 if (!tx_ring)
6565 goto err_out;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006566
6567 tx_ring->queue_index = i;
6568 tx_ring->reg_idx = vsi->base_queue + i;
6569 tx_ring->ring_active = false;
6570 tx_ring->vsi = vsi;
6571 tx_ring->netdev = vsi->netdev;
6572 tx_ring->dev = &pf->pdev->dev;
6573 tx_ring->count = vsi->num_desc;
6574 tx_ring->size = 0;
6575 tx_ring->dcb_tc = 0;
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006576 vsi->tx_rings[i] = tx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006577
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006578 rx_ring = &tx_ring[1];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006579 rx_ring->queue_index = i;
6580 rx_ring->reg_idx = vsi->base_queue + i;
6581 rx_ring->ring_active = false;
6582 rx_ring->vsi = vsi;
6583 rx_ring->netdev = vsi->netdev;
6584 rx_ring->dev = &pf->pdev->dev;
6585 rx_ring->count = vsi->num_desc;
6586 rx_ring->size = 0;
6587 rx_ring->dcb_tc = 0;
6588 if (pf->flags & I40E_FLAG_16BYTE_RX_DESC_ENABLED)
6589 set_ring_16byte_desc_enabled(rx_ring);
6590 else
6591 clear_ring_16byte_desc_enabled(rx_ring);
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006592 vsi->rx_rings[i] = rx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006593 }
6594
6595 return 0;
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006596
6597err_out:
6598 i40e_vsi_clear_rings(vsi);
6599 return -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006600}
6601
6602/**
6603 * i40e_reserve_msix_vectors - Reserve MSI-X vectors in the kernel
6604 * @pf: board private structure
6605 * @vectors: the number of MSI-X vectors to request
6606 *
6607 * Returns the number of vectors reserved, or error
6608 **/
6609static int i40e_reserve_msix_vectors(struct i40e_pf *pf, int vectors)
6610{
Alexander Gordeev7b37f372014-02-18 11:11:42 +01006611 vectors = pci_enable_msix_range(pf->pdev, pf->msix_entries,
6612 I40E_MIN_MSIX, vectors);
6613 if (vectors < 0) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006614 dev_info(&pf->pdev->dev,
Alexander Gordeev7b37f372014-02-18 11:11:42 +01006615 "MSI-X vector reservation failed: %d\n", vectors);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006616 vectors = 0;
6617 }
6618
6619 return vectors;
6620}
6621
6622/**
6623 * i40e_init_msix - Setup the MSIX capability
6624 * @pf: board private structure
6625 *
6626 * Work with the OS to set up the MSIX vectors needed.
6627 *
6628 * Returns 0 on success, negative on failure
6629 **/
6630static int i40e_init_msix(struct i40e_pf *pf)
6631{
6632 i40e_status err = 0;
6633 struct i40e_hw *hw = &pf->hw;
6634 int v_budget, i;
6635 int vec;
6636
6637 if (!(pf->flags & I40E_FLAG_MSIX_ENABLED))
6638 return -ENODEV;
6639
6640 /* The number of vectors we'll request will be comprised of:
6641 * - Add 1 for "other" cause for Admin Queue events, etc.
6642 * - The number of LAN queue pairs
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00006643 * - Queues being used for RSS.
6644 * We don't need as many as max_rss_size vectors.
6645 * use rss_size instead in the calculation since that
6646 * is governed by number of cpus in the system.
6647 * - assumes symmetric Tx/Rx pairing
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006648 * - The number of VMDq pairs
Vasu Dev38e00432014-08-01 13:27:03 -07006649#ifdef I40E_FCOE
6650 * - The number of FCOE qps.
6651#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006652 * Once we count this up, try the request.
6653 *
6654 * If we can't get what we want, we'll simplify to nearly nothing
6655 * and try again. If that still fails, we punt.
6656 */
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00006657 pf->num_lan_msix = pf->num_lan_qps - (pf->rss_size_max - pf->rss_size);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006658 pf->num_vmdq_msix = pf->num_vmdq_qps;
6659 v_budget = 1 + pf->num_lan_msix;
6660 v_budget += (pf->num_vmdq_vsis * pf->num_vmdq_msix);
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08006661 if (pf->flags & I40E_FLAG_FD_SB_ENABLED)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006662 v_budget++;
6663
Vasu Dev38e00432014-08-01 13:27:03 -07006664#ifdef I40E_FCOE
6665 if (pf->flags & I40E_FLAG_FCOE_ENABLED) {
6666 pf->num_fcoe_msix = pf->num_fcoe_qps;
6667 v_budget += pf->num_fcoe_msix;
6668 }
6669
6670#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006671 /* Scale down if necessary, and the rings will share vectors */
6672 v_budget = min_t(int, v_budget, hw->func_caps.num_msix_vectors);
6673
6674 pf->msix_entries = kcalloc(v_budget, sizeof(struct msix_entry),
6675 GFP_KERNEL);
6676 if (!pf->msix_entries)
6677 return -ENOMEM;
6678
6679 for (i = 0; i < v_budget; i++)
6680 pf->msix_entries[i].entry = i;
6681 vec = i40e_reserve_msix_vectors(pf, v_budget);
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00006682
6683 if (vec != v_budget) {
6684 /* If we have limited resources, we will start with no vectors
6685 * for the special features and then allocate vectors to some
6686 * of these features based on the policy and at the end disable
6687 * the features that did not get any vectors.
6688 */
Vasu Dev38e00432014-08-01 13:27:03 -07006689#ifdef I40E_FCOE
6690 pf->num_fcoe_qps = 0;
6691 pf->num_fcoe_msix = 0;
6692#endif
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00006693 pf->num_vmdq_msix = 0;
6694 }
6695
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006696 if (vec < I40E_MIN_MSIX) {
6697 pf->flags &= ~I40E_FLAG_MSIX_ENABLED;
6698 kfree(pf->msix_entries);
6699 pf->msix_entries = NULL;
6700 return -ENODEV;
6701
6702 } else if (vec == I40E_MIN_MSIX) {
6703 /* Adjust for minimal MSIX use */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006704 pf->num_vmdq_vsis = 0;
6705 pf->num_vmdq_qps = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006706 pf->num_lan_qps = 1;
6707 pf->num_lan_msix = 1;
6708
6709 } else if (vec != v_budget) {
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00006710 /* reserve the misc vector */
6711 vec--;
6712
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006713 /* Scale vector usage down */
6714 pf->num_vmdq_msix = 1; /* force VMDqs to only one vector */
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00006715 pf->num_vmdq_vsis = 1;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006716
6717 /* partition out the remaining vectors */
6718 switch (vec) {
6719 case 2:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006720 pf->num_lan_msix = 1;
6721 break;
6722 case 3:
Vasu Dev38e00432014-08-01 13:27:03 -07006723#ifdef I40E_FCOE
6724 /* give one vector to FCoE */
6725 if (pf->flags & I40E_FLAG_FCOE_ENABLED) {
6726 pf->num_lan_msix = 1;
6727 pf->num_fcoe_msix = 1;
6728 }
6729#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006730 pf->num_lan_msix = 2;
Vasu Dev38e00432014-08-01 13:27:03 -07006731#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006732 break;
6733 default:
Vasu Dev38e00432014-08-01 13:27:03 -07006734#ifdef I40E_FCOE
6735 /* give one vector to FCoE */
6736 if (pf->flags & I40E_FLAG_FCOE_ENABLED) {
6737 pf->num_fcoe_msix = 1;
6738 vec--;
6739 }
6740#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006741 pf->num_lan_msix = min_t(int, (vec / 2),
6742 pf->num_lan_qps);
6743 pf->num_vmdq_vsis = min_t(int, (vec - pf->num_lan_msix),
6744 I40E_DEFAULT_NUM_VMDQ_VSI);
6745 break;
6746 }
6747 }
6748
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00006749 if ((pf->flags & I40E_FLAG_VMDQ_ENABLED) &&
6750 (pf->num_vmdq_msix == 0)) {
6751 dev_info(&pf->pdev->dev, "VMDq disabled, not enough MSI-X vectors\n");
6752 pf->flags &= ~I40E_FLAG_VMDQ_ENABLED;
6753 }
Vasu Dev38e00432014-08-01 13:27:03 -07006754#ifdef I40E_FCOE
6755
6756 if ((pf->flags & I40E_FLAG_FCOE_ENABLED) && (pf->num_fcoe_msix == 0)) {
6757 dev_info(&pf->pdev->dev, "FCOE disabled, not enough MSI-X vectors\n");
6758 pf->flags &= ~I40E_FLAG_FCOE_ENABLED;
6759 }
6760#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006761 return err;
6762}
6763
6764/**
Greg Rose90e04072014-03-06 08:59:57 +00006765 * i40e_vsi_alloc_q_vector - Allocate memory for a single interrupt vector
Alexander Duyck493fb302013-09-28 07:01:44 +00006766 * @vsi: the VSI being configured
6767 * @v_idx: index of the vector in the vsi struct
6768 *
6769 * We allocate one q_vector. If allocation fails we return -ENOMEM.
6770 **/
Greg Rose90e04072014-03-06 08:59:57 +00006771static int i40e_vsi_alloc_q_vector(struct i40e_vsi *vsi, int v_idx)
Alexander Duyck493fb302013-09-28 07:01:44 +00006772{
6773 struct i40e_q_vector *q_vector;
6774
6775 /* allocate q_vector */
6776 q_vector = kzalloc(sizeof(struct i40e_q_vector), GFP_KERNEL);
6777 if (!q_vector)
6778 return -ENOMEM;
6779
6780 q_vector->vsi = vsi;
6781 q_vector->v_idx = v_idx;
6782 cpumask_set_cpu(v_idx, &q_vector->affinity_mask);
6783 if (vsi->netdev)
6784 netif_napi_add(vsi->netdev, &q_vector->napi,
Jesse Brandeburgeefeace2014-05-10 04:49:13 +00006785 i40e_napi_poll, NAPI_POLL_WEIGHT);
Alexander Duyck493fb302013-09-28 07:01:44 +00006786
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00006787 q_vector->rx.latency_range = I40E_LOW_LATENCY;
6788 q_vector->tx.latency_range = I40E_LOW_LATENCY;
6789
Alexander Duyck493fb302013-09-28 07:01:44 +00006790 /* tie q_vector and vsi together */
6791 vsi->q_vectors[v_idx] = q_vector;
6792
6793 return 0;
6794}
6795
6796/**
Greg Rose90e04072014-03-06 08:59:57 +00006797 * i40e_vsi_alloc_q_vectors - Allocate memory for interrupt vectors
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006798 * @vsi: the VSI being configured
6799 *
6800 * We allocate one q_vector per queue interrupt. If allocation fails we
6801 * return -ENOMEM.
6802 **/
Greg Rose90e04072014-03-06 08:59:57 +00006803static int i40e_vsi_alloc_q_vectors(struct i40e_vsi *vsi)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006804{
6805 struct i40e_pf *pf = vsi->back;
6806 int v_idx, num_q_vectors;
Alexander Duyck493fb302013-09-28 07:01:44 +00006807 int err;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006808
6809 /* if not MSIX, give the one vector only to the LAN VSI */
6810 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
6811 num_q_vectors = vsi->num_q_vectors;
6812 else if (vsi == pf->vsi[pf->lan_vsi])
6813 num_q_vectors = 1;
6814 else
6815 return -EINVAL;
6816
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006817 for (v_idx = 0; v_idx < num_q_vectors; v_idx++) {
Greg Rose90e04072014-03-06 08:59:57 +00006818 err = i40e_vsi_alloc_q_vector(vsi, v_idx);
Alexander Duyck493fb302013-09-28 07:01:44 +00006819 if (err)
6820 goto err_out;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006821 }
6822
6823 return 0;
Alexander Duyck493fb302013-09-28 07:01:44 +00006824
6825err_out:
6826 while (v_idx--)
6827 i40e_free_q_vector(vsi, v_idx);
6828
6829 return err;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006830}
6831
6832/**
6833 * i40e_init_interrupt_scheme - Determine proper interrupt scheme
6834 * @pf: board private structure to initialize
6835 **/
6836static void i40e_init_interrupt_scheme(struct i40e_pf *pf)
6837{
6838 int err = 0;
6839
6840 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
6841 err = i40e_init_msix(pf);
6842 if (err) {
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08006843 pf->flags &= ~(I40E_FLAG_MSIX_ENABLED |
Vasu Dev38e00432014-08-01 13:27:03 -07006844#ifdef I40E_FCOE
6845 I40E_FLAG_FCOE_ENABLED |
6846#endif
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08006847 I40E_FLAG_RSS_ENABLED |
Neerav Parikh4d9b6042014-05-22 06:31:51 +00006848 I40E_FLAG_DCB_CAPABLE |
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08006849 I40E_FLAG_SRIOV_ENABLED |
6850 I40E_FLAG_FD_SB_ENABLED |
6851 I40E_FLAG_FD_ATR_ENABLED |
6852 I40E_FLAG_VMDQ_ENABLED);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006853
6854 /* rework the queue expectations without MSIX */
6855 i40e_determine_queue_usage(pf);
6856 }
6857 }
6858
6859 if (!(pf->flags & I40E_FLAG_MSIX_ENABLED) &&
6860 (pf->flags & I40E_FLAG_MSI_ENABLED)) {
Catherine Sullivan77fa28b2014-02-20 19:29:17 -08006861 dev_info(&pf->pdev->dev, "MSI-X not available, trying MSI\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006862 err = pci_enable_msi(pf->pdev);
6863 if (err) {
Shannon Nelson958a3e32013-09-28 07:13:28 +00006864 dev_info(&pf->pdev->dev, "MSI init failed - %d\n", err);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006865 pf->flags &= ~I40E_FLAG_MSI_ENABLED;
6866 }
6867 }
6868
Shannon Nelson958a3e32013-09-28 07:13:28 +00006869 if (!(pf->flags & (I40E_FLAG_MSIX_ENABLED | I40E_FLAG_MSI_ENABLED)))
Catherine Sullivan77fa28b2014-02-20 19:29:17 -08006870 dev_info(&pf->pdev->dev, "MSI-X and MSI not available, falling back to Legacy IRQ\n");
Shannon Nelson958a3e32013-09-28 07:13:28 +00006871
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006872 /* track first vector for misc interrupts */
6873 err = i40e_get_lump(pf, pf->irq_pile, 1, I40E_PILE_VALID_BIT-1);
6874}
6875
6876/**
6877 * i40e_setup_misc_vector - Setup the misc vector to handle non queue events
6878 * @pf: board private structure
6879 *
6880 * This sets up the handler for MSIX 0, which is used to manage the
6881 * non-queue interrupts, e.g. AdminQ and errors. This is not used
6882 * when in MSI or Legacy interrupt mode.
6883 **/
6884static int i40e_setup_misc_vector(struct i40e_pf *pf)
6885{
6886 struct i40e_hw *hw = &pf->hw;
6887 int err = 0;
6888
6889 /* Only request the irq if this is the first time through, and
6890 * not when we're rebuilding after a Reset
6891 */
6892 if (!test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state)) {
6893 err = request_irq(pf->msix_entries[0].vector,
6894 i40e_intr, 0, pf->misc_int_name, pf);
6895 if (err) {
6896 dev_info(&pf->pdev->dev,
Catherine Sullivan77fa28b2014-02-20 19:29:17 -08006897 "request_irq for %s failed: %d\n",
6898 pf->misc_int_name, err);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006899 return -EFAULT;
6900 }
6901 }
6902
6903 i40e_enable_misc_int_causes(hw);
6904
6905 /* associate no queues to the misc vector */
6906 wr32(hw, I40E_PFINT_LNKLST0, I40E_QUEUE_END_OF_LIST);
6907 wr32(hw, I40E_PFINT_ITR0(I40E_RX_ITR), I40E_ITR_8K);
6908
6909 i40e_flush(hw);
6910
6911 i40e_irq_dynamic_enable_icr0(pf);
6912
6913 return err;
6914}
6915
6916/**
6917 * i40e_config_rss - Prepare for RSS if used
6918 * @pf: board private structure
6919 **/
6920static int i40e_config_rss(struct i40e_pf *pf)
6921{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006922 /* Set of random keys generated using kernel random number generator */
6923 static const u32 seed[I40E_PFQF_HKEY_MAX_INDEX + 1] = {0x41b01687,
6924 0x183cfd8c, 0xce880440, 0x580cbc3c, 0x35897377,
6925 0x328b25e1, 0x4fa98922, 0xb7d90c14, 0xd5bad70d,
6926 0xcd15a2c1, 0xe8580225, 0x4a1e9d11, 0xfe5731be};
Anjali Singhai Jain4617e8c2013-11-20 10:02:56 +00006927 struct i40e_hw *hw = &pf->hw;
6928 u32 lut = 0;
6929 int i, j;
6930 u64 hena;
Carolyn Wybornye157ea32014-06-03 23:50:22 +00006931 u32 reg_val;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006932
6933 /* Fill out hash function seed */
6934 for (i = 0; i <= I40E_PFQF_HKEY_MAX_INDEX; i++)
6935 wr32(hw, I40E_PFQF_HKEY(i), seed[i]);
6936
6937 /* By default we enable TCP/UDP with IPv4/IPv6 ptypes */
6938 hena = (u64)rd32(hw, I40E_PFQF_HENA(0)) |
6939 ((u64)rd32(hw, I40E_PFQF_HENA(1)) << 32);
Mitch Williams12dc4fe2013-11-28 06:39:32 +00006940 hena |= I40E_DEFAULT_RSS_HENA;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006941 wr32(hw, I40E_PFQF_HENA(0), (u32)hena);
6942 wr32(hw, I40E_PFQF_HENA(1), (u32)(hena >> 32));
6943
Carolyn Wybornye157ea32014-06-03 23:50:22 +00006944 /* Check capability and Set table size and register per hw expectation*/
6945 reg_val = rd32(hw, I40E_PFQF_CTL_0);
6946 if (hw->func_caps.rss_table_size == 512) {
6947 reg_val |= I40E_PFQF_CTL_0_HASHLUTSIZE_512;
6948 pf->rss_table_size = 512;
6949 } else {
6950 pf->rss_table_size = 128;
6951 reg_val &= ~I40E_PFQF_CTL_0_HASHLUTSIZE_512;
6952 }
6953 wr32(hw, I40E_PFQF_CTL_0, reg_val);
6954
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006955 /* Populate the LUT with max no. of queues in round robin fashion */
Carolyn Wybornye157ea32014-06-03 23:50:22 +00006956 for (i = 0, j = 0; i < pf->rss_table_size; i++, j++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006957
6958 /* The assumption is that lan qp count will be the highest
6959 * qp count for any PF VSI that needs RSS.
6960 * If multiple VSIs need RSS support, all the qp counts
6961 * for those VSIs should be a power of 2 for RSS to work.
6962 * If LAN VSI is the only consumer for RSS then this requirement
6963 * is not necessary.
6964 */
6965 if (j == pf->rss_size)
6966 j = 0;
6967 /* lut = 4-byte sliding window of 4 lut entries */
6968 lut = (lut << 8) | (j &
6969 ((0x1 << pf->hw.func_caps.rss_table_entry_width) - 1));
6970 /* On i = 3, we have 4 entries in lut; write to the register */
6971 if ((i & 3) == 3)
6972 wr32(hw, I40E_PFQF_HLUT(i >> 2), lut);
6973 }
6974 i40e_flush(hw);
6975
6976 return 0;
6977}
6978
6979/**
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00006980 * i40e_reconfig_rss_queues - change number of queues for rss and rebuild
6981 * @pf: board private structure
6982 * @queue_count: the requested queue count for rss.
6983 *
6984 * returns 0 if rss is not enabled, if enabled returns the final rss queue
6985 * count which may be different from the requested queue count.
6986 **/
6987int i40e_reconfig_rss_queues(struct i40e_pf *pf, int queue_count)
6988{
6989 if (!(pf->flags & I40E_FLAG_RSS_ENABLED))
6990 return 0;
6991
6992 queue_count = min_t(int, queue_count, pf->rss_size_max);
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00006993
6994 if (queue_count != pf->rss_size) {
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00006995 i40e_prep_for_reset(pf);
6996
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00006997 pf->rss_size = queue_count;
6998
6999 i40e_reset_and_rebuild(pf, true);
7000 i40e_config_rss(pf);
7001 }
7002 dev_info(&pf->pdev->dev, "RSS count: %d\n", pf->rss_size);
7003 return pf->rss_size;
7004}
7005
7006/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007007 * i40e_sw_init - Initialize general software structures (struct i40e_pf)
7008 * @pf: board private structure to initialize
7009 *
7010 * i40e_sw_init initializes the Adapter private data structure.
7011 * Fields are initialized based on PCI device information and
7012 * OS network device settings (MTU size).
7013 **/
7014static int i40e_sw_init(struct i40e_pf *pf)
7015{
7016 int err = 0;
7017 int size;
7018
7019 pf->msg_enable = netif_msg_init(I40E_DEFAULT_MSG_ENABLE,
7020 (NETIF_MSG_DRV|NETIF_MSG_PROBE|NETIF_MSG_LINK));
Shannon Nelson27599972013-11-16 10:00:43 +00007021 pf->hw.debug_mask = pf->msg_enable | I40E_DEBUG_DIAG;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007022 if (debug != -1 && debug != I40E_DEFAULT_MSG_ENABLE) {
7023 if (I40E_DEBUG_USER & debug)
7024 pf->hw.debug_mask = debug;
7025 pf->msg_enable = netif_msg_init((debug & ~I40E_DEBUG_USER),
7026 I40E_DEFAULT_MSG_ENABLE);
7027 }
7028
7029 /* Set default capability flags */
7030 pf->flags = I40E_FLAG_RX_CSUM_ENABLED |
7031 I40E_FLAG_MSI_ENABLED |
7032 I40E_FLAG_MSIX_ENABLED |
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007033 I40E_FLAG_RX_1BUF_ENABLED;
7034
Mitch Williamsca99eb92014-04-04 04:43:07 +00007035 /* Set default ITR */
7036 pf->rx_itr_default = I40E_ITR_DYNAMIC | I40E_ITR_RX_DEF;
7037 pf->tx_itr_default = I40E_ITR_DYNAMIC | I40E_ITR_TX_DEF;
7038
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00007039 /* Depending on PF configurations, it is possible that the RSS
7040 * maximum might end up larger than the available queues
7041 */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007042 pf->rss_size_max = 0x1 << pf->hw.func_caps.rss_table_entry_width;
Paul M Stillwell Jrec9a7db2014-07-09 07:46:10 +00007043 pf->rss_size = 1;
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00007044 pf->rss_size_max = min_t(int, pf->rss_size_max,
7045 pf->hw.func_caps.num_tx_qp);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007046 if (pf->hw.func_caps.rss) {
7047 pf->flags |= I40E_FLAG_RSS_ENABLED;
Jesse Brandeburgbf051a32013-11-26 10:49:17 +00007048 pf->rss_size = min_t(int, pf->rss_size_max, num_online_cpus());
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007049 }
7050
Catherine Sullivan2050bc62013-12-18 13:46:03 +00007051 /* MFP mode enabled */
7052 if (pf->hw.func_caps.npar_enable || pf->hw.func_caps.mfp_mode_1) {
7053 pf->flags |= I40E_FLAG_MFP_ENABLED;
7054 dev_info(&pf->pdev->dev, "MFP mode Enabled\n");
7055 }
7056
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08007057 /* FW/NVM is not yet fixed in this regard */
7058 if ((pf->hw.func_caps.fd_filters_guaranteed > 0) ||
7059 (pf->hw.func_caps.fd_filters_best_effort > 0)) {
7060 pf->flags |= I40E_FLAG_FD_ATR_ENABLED;
7061 pf->atr_sample_rate = I40E_DEFAULT_ATR_SAMPLE_RATE;
Anjali Singhai Jain433c47d2014-05-22 06:32:17 +00007062 /* Setup a counter for fd_atr per pf */
7063 pf->fd_atr_cnt_idx = I40E_FD_ATR_STAT_IDX(pf->hw.pf_id);
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08007064 if (!(pf->flags & I40E_FLAG_MFP_ENABLED)) {
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08007065 pf->flags |= I40E_FLAG_FD_SB_ENABLED;
Anjali Singhai Jain433c47d2014-05-22 06:32:17 +00007066 /* Setup a counter for fd_sb per pf */
7067 pf->fd_sb_cnt_idx = I40E_FD_SB_STAT_IDX(pf->hw.pf_id);
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08007068 } else {
7069 dev_info(&pf->pdev->dev,
Anjali Singhai Jain0b675842014-03-06 08:59:51 +00007070 "Flow Director Sideband mode Disabled in MFP mode\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007071 }
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08007072 pf->fdir_pf_filter_count =
7073 pf->hw.func_caps.fd_filters_guaranteed;
7074 pf->hw.fdir_shared_filter_count =
7075 pf->hw.func_caps.fd_filters_best_effort;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007076 }
7077
7078 if (pf->hw.func_caps.vmdq) {
7079 pf->flags |= I40E_FLAG_VMDQ_ENABLED;
7080 pf->num_vmdq_vsis = I40E_DEFAULT_NUM_VMDQ_VSI;
7081 pf->num_vmdq_qps = I40E_DEFAULT_QUEUES_PER_VMDQ;
7082 }
7083
Vasu Dev38e00432014-08-01 13:27:03 -07007084#ifdef I40E_FCOE
7085 err = i40e_init_pf_fcoe(pf);
7086 if (err)
7087 dev_info(&pf->pdev->dev, "init_pf_fcoe failed: %d\n", err);
7088
7089#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007090#ifdef CONFIG_PCI_IOV
7091 if (pf->hw.func_caps.num_vfs) {
7092 pf->num_vf_qps = I40E_DEFAULT_QUEUES_PER_VF;
7093 pf->flags |= I40E_FLAG_SRIOV_ENABLED;
7094 pf->num_req_vfs = min_t(int,
7095 pf->hw.func_caps.num_vfs,
7096 I40E_MAX_VF_COUNT);
7097 }
7098#endif /* CONFIG_PCI_IOV */
7099 pf->eeprom_version = 0xDEAD;
7100 pf->lan_veb = I40E_NO_VEB;
7101 pf->lan_vsi = I40E_NO_VSI;
7102
7103 /* set up queue assignment tracking */
7104 size = sizeof(struct i40e_lump_tracking)
7105 + (sizeof(u16) * pf->hw.func_caps.num_tx_qp);
7106 pf->qp_pile = kzalloc(size, GFP_KERNEL);
7107 if (!pf->qp_pile) {
7108 err = -ENOMEM;
7109 goto sw_init_done;
7110 }
7111 pf->qp_pile->num_entries = pf->hw.func_caps.num_tx_qp;
7112 pf->qp_pile->search_hint = 0;
7113
7114 /* set up vector assignment tracking */
7115 size = sizeof(struct i40e_lump_tracking)
7116 + (sizeof(u16) * pf->hw.func_caps.num_msix_vectors);
7117 pf->irq_pile = kzalloc(size, GFP_KERNEL);
7118 if (!pf->irq_pile) {
7119 kfree(pf->qp_pile);
7120 err = -ENOMEM;
7121 goto sw_init_done;
7122 }
7123 pf->irq_pile->num_entries = pf->hw.func_caps.num_msix_vectors;
7124 pf->irq_pile->search_hint = 0;
7125
Anjali Singhai Jain327fe042014-06-04 01:23:26 +00007126 pf->tx_timeout_recovery_level = 1;
7127
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007128 mutex_init(&pf->switch_mutex);
7129
7130sw_init_done:
7131 return err;
7132}
7133
7134/**
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00007135 * i40e_set_ntuple - set the ntuple feature flag and take action
7136 * @pf: board private structure to initialize
7137 * @features: the feature set that the stack is suggesting
7138 *
7139 * returns a bool to indicate if reset needs to happen
7140 **/
7141bool i40e_set_ntuple(struct i40e_pf *pf, netdev_features_t features)
7142{
7143 bool need_reset = false;
7144
7145 /* Check if Flow Director n-tuple support was enabled or disabled. If
7146 * the state changed, we need to reset.
7147 */
7148 if (features & NETIF_F_NTUPLE) {
7149 /* Enable filters and mark for reset */
7150 if (!(pf->flags & I40E_FLAG_FD_SB_ENABLED))
7151 need_reset = true;
7152 pf->flags |= I40E_FLAG_FD_SB_ENABLED;
7153 } else {
7154 /* turn off filters, mark for reset and clear SW filter list */
7155 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
7156 need_reset = true;
7157 i40e_fdir_filter_exit(pf);
7158 }
7159 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
Anjali Singhai Jain8a4f34f2014-06-04 08:45:20 +00007160 pf->auto_disable_flags &= ~I40E_FLAG_FD_SB_ENABLED;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00007161 /* reset fd counters */
7162 pf->fd_add_err = pf->fd_atr_cnt = pf->fd_tcp_rule = 0;
7163 pf->fdir_pf_active_filters = 0;
7164 pf->flags |= I40E_FLAG_FD_ATR_ENABLED;
7165 dev_info(&pf->pdev->dev, "ATR re-enabled.\n");
Anjali Singhai Jain8a4f34f2014-06-04 08:45:20 +00007166 /* if ATR was auto disabled it can be re-enabled. */
7167 if ((pf->flags & I40E_FLAG_FD_ATR_ENABLED) &&
7168 (pf->auto_disable_flags & I40E_FLAG_FD_ATR_ENABLED))
7169 pf->auto_disable_flags &= ~I40E_FLAG_FD_ATR_ENABLED;
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00007170 }
7171 return need_reset;
7172}
7173
7174/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007175 * i40e_set_features - set the netdev feature flags
7176 * @netdev: ptr to the netdev being adjusted
7177 * @features: the feature set that the stack is suggesting
7178 **/
7179static int i40e_set_features(struct net_device *netdev,
7180 netdev_features_t features)
7181{
7182 struct i40e_netdev_priv *np = netdev_priv(netdev);
7183 struct i40e_vsi *vsi = np->vsi;
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00007184 struct i40e_pf *pf = vsi->back;
7185 bool need_reset;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007186
7187 if (features & NETIF_F_HW_VLAN_CTAG_RX)
7188 i40e_vlan_stripping_enable(vsi);
7189 else
7190 i40e_vlan_stripping_disable(vsi);
7191
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00007192 need_reset = i40e_set_ntuple(pf, features);
7193
7194 if (need_reset)
7195 i40e_do_reset(pf, (1 << __I40E_PF_RESET_REQUESTED));
7196
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007197 return 0;
7198}
7199
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007200#ifdef CONFIG_I40E_VXLAN
7201/**
7202 * i40e_get_vxlan_port_idx - Lookup a possibly offloaded for Rx UDP port
7203 * @pf: board private structure
7204 * @port: The UDP port to look up
7205 *
7206 * Returns the index number or I40E_MAX_PF_UDP_OFFLOAD_PORTS if port not found
7207 **/
7208static u8 i40e_get_vxlan_port_idx(struct i40e_pf *pf, __be16 port)
7209{
7210 u8 i;
7211
7212 for (i = 0; i < I40E_MAX_PF_UDP_OFFLOAD_PORTS; i++) {
7213 if (pf->vxlan_ports[i] == port)
7214 return i;
7215 }
7216
7217 return i;
7218}
7219
7220/**
7221 * i40e_add_vxlan_port - Get notifications about VXLAN ports that come up
7222 * @netdev: This physical port's netdev
7223 * @sa_family: Socket Family that VXLAN is notifying us about
7224 * @port: New UDP port number that VXLAN started listening to
7225 **/
7226static void i40e_add_vxlan_port(struct net_device *netdev,
7227 sa_family_t sa_family, __be16 port)
7228{
7229 struct i40e_netdev_priv *np = netdev_priv(netdev);
7230 struct i40e_vsi *vsi = np->vsi;
7231 struct i40e_pf *pf = vsi->back;
7232 u8 next_idx;
7233 u8 idx;
7234
7235 if (sa_family == AF_INET6)
7236 return;
7237
7238 idx = i40e_get_vxlan_port_idx(pf, port);
7239
7240 /* Check if port already exists */
7241 if (idx < I40E_MAX_PF_UDP_OFFLOAD_PORTS) {
7242 netdev_info(netdev, "Port %d already offloaded\n", ntohs(port));
7243 return;
7244 }
7245
7246 /* Now check if there is space to add the new port */
7247 next_idx = i40e_get_vxlan_port_idx(pf, 0);
7248
7249 if (next_idx == I40E_MAX_PF_UDP_OFFLOAD_PORTS) {
7250 netdev_info(netdev, "Maximum number of UDP ports reached, not adding port %d\n",
7251 ntohs(port));
7252 return;
7253 }
7254
7255 /* New port: add it and mark its index in the bitmap */
7256 pf->vxlan_ports[next_idx] = port;
7257 pf->pending_vxlan_bitmap |= (1 << next_idx);
7258
7259 pf->flags |= I40E_FLAG_VXLAN_FILTER_SYNC;
7260}
7261
7262/**
7263 * i40e_del_vxlan_port - Get notifications about VXLAN ports that go away
7264 * @netdev: This physical port's netdev
7265 * @sa_family: Socket Family that VXLAN is notifying us about
7266 * @port: UDP port number that VXLAN stopped listening to
7267 **/
7268static void i40e_del_vxlan_port(struct net_device *netdev,
7269 sa_family_t sa_family, __be16 port)
7270{
7271 struct i40e_netdev_priv *np = netdev_priv(netdev);
7272 struct i40e_vsi *vsi = np->vsi;
7273 struct i40e_pf *pf = vsi->back;
7274 u8 idx;
7275
7276 if (sa_family == AF_INET6)
7277 return;
7278
7279 idx = i40e_get_vxlan_port_idx(pf, port);
7280
7281 /* Check if port already exists */
7282 if (idx < I40E_MAX_PF_UDP_OFFLOAD_PORTS) {
7283 /* if port exists, set it to 0 (mark for deletion)
7284 * and make it pending
7285 */
7286 pf->vxlan_ports[idx] = 0;
7287
7288 pf->pending_vxlan_bitmap |= (1 << idx);
7289
7290 pf->flags |= I40E_FLAG_VXLAN_FILTER_SYNC;
7291 } else {
7292 netdev_warn(netdev, "Port %d was not found, not deleting\n",
7293 ntohs(port));
7294 }
7295}
7296
7297#endif
Neerav Parikh1f224ad2014-02-12 01:45:31 +00007298static int i40e_get_phys_port_id(struct net_device *netdev,
7299 struct netdev_phys_port_id *ppid)
7300{
7301 struct i40e_netdev_priv *np = netdev_priv(netdev);
7302 struct i40e_pf *pf = np->vsi->back;
7303 struct i40e_hw *hw = &pf->hw;
7304
7305 if (!(pf->flags & I40E_FLAG_PORT_ID_VALID))
7306 return -EOPNOTSUPP;
7307
7308 ppid->id_len = min_t(int, sizeof(hw->mac.port_addr), sizeof(ppid->id));
7309 memcpy(ppid->id, hw->mac.port_addr, ppid->id_len);
7310
7311 return 0;
7312}
7313
Greg Rose4ba0dea2014-03-06 08:59:55 +00007314#ifdef HAVE_FDB_OPS
7315#ifdef USE_CONST_DEV_UC_CHAR
7316static int i40e_ndo_fdb_add(struct ndmsg *ndm, struct nlattr *tb[],
7317 struct net_device *dev,
7318 const unsigned char *addr,
7319 u16 flags)
7320#else
7321static int i40e_ndo_fdb_add(struct ndmsg *ndm,
7322 struct net_device *dev,
7323 unsigned char *addr,
7324 u16 flags)
7325#endif
7326{
7327 struct i40e_netdev_priv *np = netdev_priv(dev);
7328 struct i40e_pf *pf = np->vsi->back;
7329 int err = 0;
7330
7331 if (!(pf->flags & I40E_FLAG_SRIOV_ENABLED))
7332 return -EOPNOTSUPP;
7333
7334 /* Hardware does not support aging addresses so if a
7335 * ndm_state is given only allow permanent addresses
7336 */
7337 if (ndm->ndm_state && !(ndm->ndm_state & NUD_PERMANENT)) {
7338 netdev_info(dev, "FDB only supports static addresses\n");
7339 return -EINVAL;
7340 }
7341
7342 if (is_unicast_ether_addr(addr) || is_link_local_ether_addr(addr))
7343 err = dev_uc_add_excl(dev, addr);
7344 else if (is_multicast_ether_addr(addr))
7345 err = dev_mc_add_excl(dev, addr);
7346 else
7347 err = -EINVAL;
7348
7349 /* Only return duplicate errors if NLM_F_EXCL is set */
7350 if (err == -EEXIST && !(flags & NLM_F_EXCL))
7351 err = 0;
7352
7353 return err;
7354}
7355
7356#ifndef USE_DEFAULT_FDB_DEL_DUMP
7357#ifdef USE_CONST_DEV_UC_CHAR
7358static int i40e_ndo_fdb_del(struct ndmsg *ndm,
7359 struct net_device *dev,
7360 const unsigned char *addr)
7361#else
7362static int i40e_ndo_fdb_del(struct ndmsg *ndm,
7363 struct net_device *dev,
7364 unsigned char *addr)
7365#endif
7366{
7367 struct i40e_netdev_priv *np = netdev_priv(dev);
7368 struct i40e_pf *pf = np->vsi->back;
7369 int err = -EOPNOTSUPP;
7370
7371 if (ndm->ndm_state & NUD_PERMANENT) {
7372 netdev_info(dev, "FDB only supports static addresses\n");
7373 return -EINVAL;
7374 }
7375
7376 if (pf->flags & I40E_FLAG_SRIOV_ENABLED) {
7377 if (is_unicast_ether_addr(addr))
7378 err = dev_uc_del(dev, addr);
7379 else if (is_multicast_ether_addr(addr))
7380 err = dev_mc_del(dev, addr);
7381 else
7382 err = -EINVAL;
7383 }
7384
7385 return err;
7386}
7387
7388static int i40e_ndo_fdb_dump(struct sk_buff *skb,
7389 struct netlink_callback *cb,
7390 struct net_device *dev,
Jamal Hadi Salim5d5eacb2014-07-10 07:01:58 -04007391 struct net_device *filter_dev,
Greg Rose4ba0dea2014-03-06 08:59:55 +00007392 int idx)
7393{
7394 struct i40e_netdev_priv *np = netdev_priv(dev);
7395 struct i40e_pf *pf = np->vsi->back;
7396
7397 if (pf->flags & I40E_FLAG_SRIOV_ENABLED)
Jamal Hadi Salim5d5eacb2014-07-10 07:01:58 -04007398 idx = ndo_dflt_fdb_dump(skb, cb, dev, filter_dev, idx);
Greg Rose4ba0dea2014-03-06 08:59:55 +00007399
7400 return idx;
7401}
7402
7403#endif /* USE_DEFAULT_FDB_DEL_DUMP */
7404#endif /* HAVE_FDB_OPS */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007405static const struct net_device_ops i40e_netdev_ops = {
7406 .ndo_open = i40e_open,
7407 .ndo_stop = i40e_close,
7408 .ndo_start_xmit = i40e_lan_xmit_frame,
7409 .ndo_get_stats64 = i40e_get_netdev_stats_struct,
7410 .ndo_set_rx_mode = i40e_set_rx_mode,
7411 .ndo_validate_addr = eth_validate_addr,
7412 .ndo_set_mac_address = i40e_set_mac,
7413 .ndo_change_mtu = i40e_change_mtu,
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00007414 .ndo_do_ioctl = i40e_ioctl,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007415 .ndo_tx_timeout = i40e_tx_timeout,
7416 .ndo_vlan_rx_add_vid = i40e_vlan_rx_add_vid,
7417 .ndo_vlan_rx_kill_vid = i40e_vlan_rx_kill_vid,
7418#ifdef CONFIG_NET_POLL_CONTROLLER
7419 .ndo_poll_controller = i40e_netpoll,
7420#endif
7421 .ndo_setup_tc = i40e_setup_tc,
Vasu Dev38e00432014-08-01 13:27:03 -07007422#ifdef I40E_FCOE
7423 .ndo_fcoe_enable = i40e_fcoe_enable,
7424 .ndo_fcoe_disable = i40e_fcoe_disable,
7425#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007426 .ndo_set_features = i40e_set_features,
7427 .ndo_set_vf_mac = i40e_ndo_set_vf_mac,
7428 .ndo_set_vf_vlan = i40e_ndo_set_vf_port_vlan,
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04007429 .ndo_set_vf_rate = i40e_ndo_set_vf_bw,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007430 .ndo_get_vf_config = i40e_ndo_get_vf_config,
Mitch Williams588aefa2014-02-11 08:27:49 +00007431 .ndo_set_vf_link_state = i40e_ndo_set_vf_link_state,
Mitch Williamsc674d122014-05-20 08:01:40 +00007432 .ndo_set_vf_spoofchk = i40e_ndo_set_vf_spoofck,
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007433#ifdef CONFIG_I40E_VXLAN
7434 .ndo_add_vxlan_port = i40e_add_vxlan_port,
7435 .ndo_del_vxlan_port = i40e_del_vxlan_port,
7436#endif
Neerav Parikh1f224ad2014-02-12 01:45:31 +00007437 .ndo_get_phys_port_id = i40e_get_phys_port_id,
Greg Rose4ba0dea2014-03-06 08:59:55 +00007438#ifdef HAVE_FDB_OPS
7439 .ndo_fdb_add = i40e_ndo_fdb_add,
7440#ifndef USE_DEFAULT_FDB_DEL_DUMP
7441 .ndo_fdb_del = i40e_ndo_fdb_del,
7442 .ndo_fdb_dump = i40e_ndo_fdb_dump,
7443#endif
7444#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007445};
7446
7447/**
7448 * i40e_config_netdev - Setup the netdev flags
7449 * @vsi: the VSI being configured
7450 *
7451 * Returns 0 on success, negative value on failure
7452 **/
7453static int i40e_config_netdev(struct i40e_vsi *vsi)
7454{
Greg Rose1a103702013-11-28 06:42:39 +00007455 u8 brdcast[ETH_ALEN] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007456 struct i40e_pf *pf = vsi->back;
7457 struct i40e_hw *hw = &pf->hw;
7458 struct i40e_netdev_priv *np;
7459 struct net_device *netdev;
7460 u8 mac_addr[ETH_ALEN];
7461 int etherdev_size;
7462
7463 etherdev_size = sizeof(struct i40e_netdev_priv);
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00007464 netdev = alloc_etherdev_mq(etherdev_size, vsi->alloc_queue_pairs);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007465 if (!netdev)
7466 return -ENOMEM;
7467
7468 vsi->netdev = netdev;
7469 np = netdev_priv(netdev);
7470 np->vsi = vsi;
7471
Or Gerlitzd70e9412014-03-18 10:36:45 +02007472 netdev->hw_enc_features |= NETIF_F_IP_CSUM |
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007473 NETIF_F_GSO_UDP_TUNNEL |
Or Gerlitzd70e9412014-03-18 10:36:45 +02007474 NETIF_F_TSO;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007475
7476 netdev->features = NETIF_F_SG |
7477 NETIF_F_IP_CSUM |
7478 NETIF_F_SCTP_CSUM |
7479 NETIF_F_HIGHDMA |
7480 NETIF_F_GSO_UDP_TUNNEL |
7481 NETIF_F_HW_VLAN_CTAG_TX |
7482 NETIF_F_HW_VLAN_CTAG_RX |
7483 NETIF_F_HW_VLAN_CTAG_FILTER |
7484 NETIF_F_IPV6_CSUM |
7485 NETIF_F_TSO |
Jesse Brandeburg059dab62014-04-01 09:07:20 +00007486 NETIF_F_TSO_ECN |
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007487 NETIF_F_TSO6 |
7488 NETIF_F_RXCSUM |
7489 NETIF_F_RXHASH |
7490 0;
7491
Anjali Singhai Jain2e86a0b2014-04-01 07:11:53 +00007492 if (!(pf->flags & I40E_FLAG_MFP_ENABLED))
7493 netdev->features |= NETIF_F_NTUPLE;
7494
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007495 /* copy netdev features into list of user selectable features */
7496 netdev->hw_features |= netdev->features;
7497
7498 if (vsi->type == I40E_VSI_MAIN) {
7499 SET_NETDEV_DEV(netdev, &pf->pdev->dev);
Greg Rose9a173902014-05-22 06:32:02 +00007500 ether_addr_copy(mac_addr, hw->mac.perm_addr);
Greg Rose8c27d422014-05-22 06:31:56 +00007501 /* The following two steps are necessary to prevent reception
7502 * of tagged packets - by default the NVM loads a MAC-VLAN
7503 * filter that will accept any tagged packet. This is to
7504 * prevent that during normal operations until a specific
7505 * VLAN tag filter has been set.
7506 */
7507 i40e_rm_default_mac_filter(vsi, mac_addr);
7508 i40e_add_filter(vsi, mac_addr, I40E_VLAN_ANY, false, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007509 } else {
7510 /* relate the VSI_VMDQ name to the VSI_MAIN name */
7511 snprintf(netdev->name, IFNAMSIZ, "%sv%%d",
7512 pf->vsi[pf->lan_vsi]->netdev->name);
7513 random_ether_addr(mac_addr);
7514 i40e_add_filter(vsi, mac_addr, I40E_VLAN_ANY, false, false);
7515 }
Greg Rose1a103702013-11-28 06:42:39 +00007516 i40e_add_filter(vsi, brdcast, I40E_VLAN_ANY, false, false);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007517
Greg Rose9a173902014-05-22 06:32:02 +00007518 ether_addr_copy(netdev->dev_addr, mac_addr);
7519 ether_addr_copy(netdev->perm_addr, mac_addr);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007520 /* vlan gets same features (except vlan offload)
7521 * after any tweaks for specific VSI types
7522 */
7523 netdev->vlan_features = netdev->features & ~(NETIF_F_HW_VLAN_CTAG_TX |
7524 NETIF_F_HW_VLAN_CTAG_RX |
7525 NETIF_F_HW_VLAN_CTAG_FILTER);
7526 netdev->priv_flags |= IFF_UNICAST_FLT;
7527 netdev->priv_flags |= IFF_SUPP_NOFCS;
7528 /* Setup netdev TC information */
7529 i40e_vsi_config_netdev_tc(vsi, vsi->tc_config.enabled_tc);
7530
7531 netdev->netdev_ops = &i40e_netdev_ops;
7532 netdev->watchdog_timeo = 5 * HZ;
7533 i40e_set_ethtool_ops(netdev);
Vasu Dev38e00432014-08-01 13:27:03 -07007534#ifdef I40E_FCOE
7535 i40e_fcoe_config_netdev(netdev, vsi);
7536#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007537
7538 return 0;
7539}
7540
7541/**
7542 * i40e_vsi_delete - Delete a VSI from the switch
7543 * @vsi: the VSI being removed
7544 *
7545 * Returns 0 on success, negative value on failure
7546 **/
7547static void i40e_vsi_delete(struct i40e_vsi *vsi)
7548{
7549 /* remove default VSI is not allowed */
7550 if (vsi == vsi->back->vsi[vsi->back->lan_vsi])
7551 return;
7552
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007553 i40e_aq_delete_element(&vsi->back->hw, vsi->seid, NULL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007554}
7555
7556/**
7557 * i40e_add_vsi - Add a VSI to the switch
7558 * @vsi: the VSI being configured
7559 *
7560 * This initializes a VSI context depending on the VSI type to be added and
7561 * passes it down to the add_vsi aq command.
7562 **/
7563static int i40e_add_vsi(struct i40e_vsi *vsi)
7564{
7565 int ret = -ENODEV;
7566 struct i40e_mac_filter *f, *ftmp;
7567 struct i40e_pf *pf = vsi->back;
7568 struct i40e_hw *hw = &pf->hw;
7569 struct i40e_vsi_context ctxt;
7570 u8 enabled_tc = 0x1; /* TC0 enabled */
7571 int f_count = 0;
7572
7573 memset(&ctxt, 0, sizeof(ctxt));
7574 switch (vsi->type) {
7575 case I40E_VSI_MAIN:
7576 /* The PF's main VSI is already setup as part of the
7577 * device initialization, so we'll not bother with
7578 * the add_vsi call, but we will retrieve the current
7579 * VSI context.
7580 */
7581 ctxt.seid = pf->main_vsi_seid;
7582 ctxt.pf_num = pf->hw.pf_id;
7583 ctxt.vf_num = 0;
7584 ret = i40e_aq_get_vsi_params(&pf->hw, &ctxt, NULL);
7585 ctxt.flags = I40E_AQ_VSI_TYPE_PF;
7586 if (ret) {
7587 dev_info(&pf->pdev->dev,
7588 "couldn't get pf vsi config, err %d, aq_err %d\n",
7589 ret, pf->hw.aq.asq_last_status);
7590 return -ENOENT;
7591 }
7592 memcpy(&vsi->info, &ctxt.info, sizeof(ctxt.info));
7593 vsi->info.valid_sections = 0;
7594
7595 vsi->seid = ctxt.seid;
7596 vsi->id = ctxt.vsi_number;
7597
7598 enabled_tc = i40e_pf_get_tc_map(pf);
7599
7600 /* MFP mode setup queue map and update VSI */
7601 if (pf->flags & I40E_FLAG_MFP_ENABLED) {
7602 memset(&ctxt, 0, sizeof(ctxt));
7603 ctxt.seid = pf->main_vsi_seid;
7604 ctxt.pf_num = pf->hw.pf_id;
7605 ctxt.vf_num = 0;
7606 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, false);
7607 ret = i40e_aq_update_vsi_params(hw, &ctxt, NULL);
7608 if (ret) {
7609 dev_info(&pf->pdev->dev,
7610 "update vsi failed, aq_err=%d\n",
7611 pf->hw.aq.asq_last_status);
7612 ret = -ENOENT;
7613 goto err;
7614 }
7615 /* update the local VSI info queue map */
7616 i40e_vsi_update_queue_map(vsi, &ctxt);
7617 vsi->info.valid_sections = 0;
7618 } else {
7619 /* Default/Main VSI is only enabled for TC0
7620 * reconfigure it to enable all TCs that are
7621 * available on the port in SFP mode.
7622 */
7623 ret = i40e_vsi_config_tc(vsi, enabled_tc);
7624 if (ret) {
7625 dev_info(&pf->pdev->dev,
7626 "failed to configure TCs for main VSI tc_map 0x%08x, err %d, aq_err %d\n",
7627 enabled_tc, ret,
7628 pf->hw.aq.asq_last_status);
7629 ret = -ENOENT;
7630 }
7631 }
7632 break;
7633
7634 case I40E_VSI_FDIR:
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08007635 ctxt.pf_num = hw->pf_id;
7636 ctxt.vf_num = 0;
7637 ctxt.uplink_seid = vsi->uplink_seid;
7638 ctxt.connection_type = 0x1; /* regular data port */
7639 ctxt.flags = I40E_AQ_VSI_TYPE_PF;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007640 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007641 break;
7642
7643 case I40E_VSI_VMDQ2:
7644 ctxt.pf_num = hw->pf_id;
7645 ctxt.vf_num = 0;
7646 ctxt.uplink_seid = vsi->uplink_seid;
7647 ctxt.connection_type = 0x1; /* regular data port */
7648 ctxt.flags = I40E_AQ_VSI_TYPE_VMDQ2;
7649
7650 ctxt.info.valid_sections |= cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
7651
7652 /* This VSI is connected to VEB so the switch_id
7653 * should be set to zero by default.
7654 */
7655 ctxt.info.switch_id = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007656 ctxt.info.switch_id |= cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
7657
7658 /* Setup the VSI tx/rx queue map for TC0 only for now */
7659 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, true);
7660 break;
7661
7662 case I40E_VSI_SRIOV:
7663 ctxt.pf_num = hw->pf_id;
7664 ctxt.vf_num = vsi->vf_id + hw->func_caps.vf_base_id;
7665 ctxt.uplink_seid = vsi->uplink_seid;
7666 ctxt.connection_type = 0x1; /* regular data port */
7667 ctxt.flags = I40E_AQ_VSI_TYPE_VF;
7668
7669 ctxt.info.valid_sections |= cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
7670
7671 /* This VSI is connected to VEB so the switch_id
7672 * should be set to zero by default.
7673 */
7674 ctxt.info.switch_id = cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
7675
7676 ctxt.info.valid_sections |= cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
7677 ctxt.info.port_vlan_flags |= I40E_AQ_VSI_PVLAN_MODE_ALL;
Mitch Williamsc674d122014-05-20 08:01:40 +00007678 if (pf->vf[vsi->vf_id].spoofchk) {
7679 ctxt.info.valid_sections |=
7680 cpu_to_le16(I40E_AQ_VSI_PROP_SECURITY_VALID);
7681 ctxt.info.sec_flags |=
7682 (I40E_AQ_VSI_SEC_FLAG_ENABLE_VLAN_CHK |
7683 I40E_AQ_VSI_SEC_FLAG_ENABLE_MAC_CHK);
7684 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007685 /* Setup the VSI tx/rx queue map for TC0 only for now */
7686 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, true);
7687 break;
7688
Vasu Dev38e00432014-08-01 13:27:03 -07007689#ifdef I40E_FCOE
7690 case I40E_VSI_FCOE:
7691 ret = i40e_fcoe_vsi_init(vsi, &ctxt);
7692 if (ret) {
7693 dev_info(&pf->pdev->dev, "failed to initialize FCoE VSI\n");
7694 return ret;
7695 }
7696 break;
7697
7698#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007699 default:
7700 return -ENODEV;
7701 }
7702
7703 if (vsi->type != I40E_VSI_MAIN) {
7704 ret = i40e_aq_add_vsi(hw, &ctxt, NULL);
7705 if (ret) {
7706 dev_info(&vsi->back->pdev->dev,
7707 "add vsi failed, aq_err=%d\n",
7708 vsi->back->hw.aq.asq_last_status);
7709 ret = -ENOENT;
7710 goto err;
7711 }
7712 memcpy(&vsi->info, &ctxt.info, sizeof(ctxt.info));
7713 vsi->info.valid_sections = 0;
7714 vsi->seid = ctxt.seid;
7715 vsi->id = ctxt.vsi_number;
7716 }
7717
7718 /* If macvlan filters already exist, force them to get loaded */
7719 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
7720 f->changed = true;
7721 f_count++;
Shannon Nelson6252c7e2014-06-04 01:23:23 +00007722
7723 if (f->is_laa && vsi->type == I40E_VSI_MAIN) {
7724 i40e_aq_mac_address_write(&vsi->back->hw,
7725 I40E_AQC_WRITE_TYPE_LAA_WOL,
7726 f->macaddr, NULL);
7727 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007728 }
7729 if (f_count) {
7730 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
7731 pf->flags |= I40E_FLAG_FILTER_SYNC;
7732 }
7733
7734 /* Update VSI BW information */
7735 ret = i40e_vsi_get_bw_info(vsi);
7736 if (ret) {
7737 dev_info(&pf->pdev->dev,
7738 "couldn't get vsi bw info, err %d, aq_err %d\n",
7739 ret, pf->hw.aq.asq_last_status);
7740 /* VSI is already added so not tearing that up */
7741 ret = 0;
7742 }
7743
7744err:
7745 return ret;
7746}
7747
7748/**
7749 * i40e_vsi_release - Delete a VSI and free its resources
7750 * @vsi: the VSI being removed
7751 *
7752 * Returns 0 on success or < 0 on error
7753 **/
7754int i40e_vsi_release(struct i40e_vsi *vsi)
7755{
7756 struct i40e_mac_filter *f, *ftmp;
7757 struct i40e_veb *veb = NULL;
7758 struct i40e_pf *pf;
7759 u16 uplink_seid;
7760 int i, n;
7761
7762 pf = vsi->back;
7763
7764 /* release of a VEB-owner or last VSI is not allowed */
7765 if (vsi->flags & I40E_VSI_FLAG_VEB_OWNER) {
7766 dev_info(&pf->pdev->dev, "VSI %d has existing VEB %d\n",
7767 vsi->seid, vsi->uplink_seid);
7768 return -ENODEV;
7769 }
7770 if (vsi == pf->vsi[pf->lan_vsi] &&
7771 !test_bit(__I40E_DOWN, &pf->state)) {
7772 dev_info(&pf->pdev->dev, "Can't remove PF VSI\n");
7773 return -ENODEV;
7774 }
7775
7776 uplink_seid = vsi->uplink_seid;
7777 if (vsi->type != I40E_VSI_SRIOV) {
7778 if (vsi->netdev_registered) {
7779 vsi->netdev_registered = false;
7780 if (vsi->netdev) {
7781 /* results in a call to i40e_close() */
7782 unregister_netdev(vsi->netdev);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007783 }
7784 } else {
Shannon Nelson90ef8d42014-03-14 07:32:26 +00007785 i40e_vsi_close(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007786 }
7787 i40e_vsi_disable_irq(vsi);
7788 }
7789
7790 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list)
7791 i40e_del_filter(vsi, f->macaddr, f->vlan,
7792 f->is_vf, f->is_netdev);
7793 i40e_sync_vsi_filters(vsi);
7794
7795 i40e_vsi_delete(vsi);
7796 i40e_vsi_free_q_vectors(vsi);
Shannon Nelsona4866592014-02-11 08:24:07 +00007797 if (vsi->netdev) {
7798 free_netdev(vsi->netdev);
7799 vsi->netdev = NULL;
7800 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007801 i40e_vsi_clear_rings(vsi);
7802 i40e_vsi_clear(vsi);
7803
7804 /* If this was the last thing on the VEB, except for the
7805 * controlling VSI, remove the VEB, which puts the controlling
7806 * VSI onto the next level down in the switch.
7807 *
7808 * Well, okay, there's one more exception here: don't remove
7809 * the orphan VEBs yet. We'll wait for an explicit remove request
7810 * from up the network stack.
7811 */
Mitch Williams505682c2014-05-20 08:01:37 +00007812 for (n = 0, i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007813 if (pf->vsi[i] &&
7814 pf->vsi[i]->uplink_seid == uplink_seid &&
7815 (pf->vsi[i]->flags & I40E_VSI_FLAG_VEB_OWNER) == 0) {
7816 n++; /* count the VSIs */
7817 }
7818 }
7819 for (i = 0; i < I40E_MAX_VEB; i++) {
7820 if (!pf->veb[i])
7821 continue;
7822 if (pf->veb[i]->uplink_seid == uplink_seid)
7823 n++; /* count the VEBs */
7824 if (pf->veb[i]->seid == uplink_seid)
7825 veb = pf->veb[i];
7826 }
7827 if (n == 0 && veb && veb->uplink_seid != 0)
7828 i40e_veb_release(veb);
7829
7830 return 0;
7831}
7832
7833/**
7834 * i40e_vsi_setup_vectors - Set up the q_vectors for the given VSI
7835 * @vsi: ptr to the VSI
7836 *
7837 * This should only be called after i40e_vsi_mem_alloc() which allocates the
7838 * corresponding SW VSI structure and initializes num_queue_pairs for the
7839 * newly allocated VSI.
7840 *
7841 * Returns 0 on success or negative on failure
7842 **/
7843static int i40e_vsi_setup_vectors(struct i40e_vsi *vsi)
7844{
7845 int ret = -ENOENT;
7846 struct i40e_pf *pf = vsi->back;
7847
Alexander Duyck493fb302013-09-28 07:01:44 +00007848 if (vsi->q_vectors[0]) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007849 dev_info(&pf->pdev->dev, "VSI %d has existing q_vectors\n",
7850 vsi->seid);
7851 return -EEXIST;
7852 }
7853
7854 if (vsi->base_vector) {
Jesse Brandeburgf29eaa32014-02-11 08:24:12 +00007855 dev_info(&pf->pdev->dev, "VSI %d has non-zero base vector %d\n",
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007856 vsi->seid, vsi->base_vector);
7857 return -EEXIST;
7858 }
7859
Greg Rose90e04072014-03-06 08:59:57 +00007860 ret = i40e_vsi_alloc_q_vectors(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007861 if (ret) {
7862 dev_info(&pf->pdev->dev,
7863 "failed to allocate %d q_vector for VSI %d, ret=%d\n",
7864 vsi->num_q_vectors, vsi->seid, ret);
7865 vsi->num_q_vectors = 0;
7866 goto vector_setup_out;
7867 }
7868
Shannon Nelson958a3e32013-09-28 07:13:28 +00007869 if (vsi->num_q_vectors)
7870 vsi->base_vector = i40e_get_lump(pf, pf->irq_pile,
7871 vsi->num_q_vectors, vsi->idx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007872 if (vsi->base_vector < 0) {
7873 dev_info(&pf->pdev->dev,
Jesse Brandeburgf29eaa32014-02-11 08:24:12 +00007874 "failed to get queue tracking for VSI %d, err=%d\n",
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007875 vsi->seid, vsi->base_vector);
7876 i40e_vsi_free_q_vectors(vsi);
7877 ret = -ENOENT;
7878 goto vector_setup_out;
7879 }
7880
7881vector_setup_out:
7882 return ret;
7883}
7884
7885/**
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007886 * i40e_vsi_reinit_setup - return and reallocate resources for a VSI
7887 * @vsi: pointer to the vsi.
7888 *
7889 * This re-allocates a vsi's queue resources.
7890 *
7891 * Returns pointer to the successfully allocated and configured VSI sw struct
7892 * on success, otherwise returns NULL on failure.
7893 **/
7894static struct i40e_vsi *i40e_vsi_reinit_setup(struct i40e_vsi *vsi)
7895{
7896 struct i40e_pf *pf = vsi->back;
7897 u8 enabled_tc;
7898 int ret;
7899
7900 i40e_put_lump(pf->qp_pile, vsi->base_queue, vsi->idx);
7901 i40e_vsi_clear_rings(vsi);
7902
7903 i40e_vsi_free_arrays(vsi, false);
7904 i40e_set_num_rings_in_vsi(vsi);
7905 ret = i40e_vsi_alloc_arrays(vsi, false);
7906 if (ret)
7907 goto err_vsi;
7908
7909 ret = i40e_get_lump(pf, pf->qp_pile, vsi->alloc_queue_pairs, vsi->idx);
7910 if (ret < 0) {
7911 dev_info(&pf->pdev->dev, "VSI %d get_lump failed %d\n",
7912 vsi->seid, ret);
7913 goto err_vsi;
7914 }
7915 vsi->base_queue = ret;
7916
7917 /* Update the FW view of the VSI. Force a reset of TC and queue
7918 * layout configurations.
7919 */
7920 enabled_tc = pf->vsi[pf->lan_vsi]->tc_config.enabled_tc;
7921 pf->vsi[pf->lan_vsi]->tc_config.enabled_tc = 0;
7922 pf->vsi[pf->lan_vsi]->seid = pf->main_vsi_seid;
7923 i40e_vsi_config_tc(pf->vsi[pf->lan_vsi], enabled_tc);
7924
7925 /* assign it some queues */
7926 ret = i40e_alloc_rings(vsi);
7927 if (ret)
7928 goto err_rings;
7929
7930 /* map all of the rings to the q_vectors */
7931 i40e_vsi_map_rings_to_vectors(vsi);
7932 return vsi;
7933
7934err_rings:
7935 i40e_vsi_free_q_vectors(vsi);
7936 if (vsi->netdev_registered) {
7937 vsi->netdev_registered = false;
7938 unregister_netdev(vsi->netdev);
7939 free_netdev(vsi->netdev);
7940 vsi->netdev = NULL;
7941 }
7942 i40e_aq_delete_element(&pf->hw, vsi->seid, NULL);
7943err_vsi:
7944 i40e_vsi_clear(vsi);
7945 return NULL;
7946}
7947
7948/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007949 * i40e_vsi_setup - Set up a VSI by a given type
7950 * @pf: board private structure
7951 * @type: VSI type
7952 * @uplink_seid: the switch element to link to
7953 * @param1: usage depends upon VSI type. For VF types, indicates VF id
7954 *
7955 * This allocates the sw VSI structure and its queue resources, then add a VSI
7956 * to the identified VEB.
7957 *
7958 * Returns pointer to the successfully allocated and configure VSI sw struct on
7959 * success, otherwise returns NULL on failure.
7960 **/
7961struct i40e_vsi *i40e_vsi_setup(struct i40e_pf *pf, u8 type,
7962 u16 uplink_seid, u32 param1)
7963{
7964 struct i40e_vsi *vsi = NULL;
7965 struct i40e_veb *veb = NULL;
7966 int ret, i;
7967 int v_idx;
7968
7969 /* The requested uplink_seid must be either
7970 * - the PF's port seid
7971 * no VEB is needed because this is the PF
7972 * or this is a Flow Director special case VSI
7973 * - seid of an existing VEB
7974 * - seid of a VSI that owns an existing VEB
7975 * - seid of a VSI that doesn't own a VEB
7976 * a new VEB is created and the VSI becomes the owner
7977 * - seid of the PF VSI, which is what creates the first VEB
7978 * this is a special case of the previous
7979 *
7980 * Find which uplink_seid we were given and create a new VEB if needed
7981 */
7982 for (i = 0; i < I40E_MAX_VEB; i++) {
7983 if (pf->veb[i] && pf->veb[i]->seid == uplink_seid) {
7984 veb = pf->veb[i];
7985 break;
7986 }
7987 }
7988
7989 if (!veb && uplink_seid != pf->mac_seid) {
7990
Mitch Williams505682c2014-05-20 08:01:37 +00007991 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007992 if (pf->vsi[i] && pf->vsi[i]->seid == uplink_seid) {
7993 vsi = pf->vsi[i];
7994 break;
7995 }
7996 }
7997 if (!vsi) {
7998 dev_info(&pf->pdev->dev, "no such uplink_seid %d\n",
7999 uplink_seid);
8000 return NULL;
8001 }
8002
8003 if (vsi->uplink_seid == pf->mac_seid)
8004 veb = i40e_veb_setup(pf, 0, pf->mac_seid, vsi->seid,
8005 vsi->tc_config.enabled_tc);
8006 else if ((vsi->flags & I40E_VSI_FLAG_VEB_OWNER) == 0)
8007 veb = i40e_veb_setup(pf, 0, vsi->uplink_seid, vsi->seid,
8008 vsi->tc_config.enabled_tc);
8009
8010 for (i = 0; i < I40E_MAX_VEB && !veb; i++) {
8011 if (pf->veb[i] && pf->veb[i]->seid == vsi->uplink_seid)
8012 veb = pf->veb[i];
8013 }
8014 if (!veb) {
8015 dev_info(&pf->pdev->dev, "couldn't add VEB\n");
8016 return NULL;
8017 }
8018
8019 vsi->flags |= I40E_VSI_FLAG_VEB_OWNER;
8020 uplink_seid = veb->seid;
8021 }
8022
8023 /* get vsi sw struct */
8024 v_idx = i40e_vsi_mem_alloc(pf, type);
8025 if (v_idx < 0)
8026 goto err_alloc;
8027 vsi = pf->vsi[v_idx];
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008028 if (!vsi)
8029 goto err_alloc;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008030 vsi->type = type;
8031 vsi->veb_idx = (veb ? veb->idx : I40E_NO_VEB);
8032
8033 if (type == I40E_VSI_MAIN)
8034 pf->lan_vsi = v_idx;
8035 else if (type == I40E_VSI_SRIOV)
8036 vsi->vf_id = param1;
8037 /* assign it some queues */
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008038 ret = i40e_get_lump(pf, pf->qp_pile, vsi->alloc_queue_pairs,
8039 vsi->idx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008040 if (ret < 0) {
8041 dev_info(&pf->pdev->dev, "VSI %d get_lump failed %d\n",
8042 vsi->seid, ret);
8043 goto err_vsi;
8044 }
8045 vsi->base_queue = ret;
8046
8047 /* get a VSI from the hardware */
8048 vsi->uplink_seid = uplink_seid;
8049 ret = i40e_add_vsi(vsi);
8050 if (ret)
8051 goto err_vsi;
8052
8053 switch (vsi->type) {
8054 /* setup the netdev if needed */
8055 case I40E_VSI_MAIN:
8056 case I40E_VSI_VMDQ2:
Vasu Dev38e00432014-08-01 13:27:03 -07008057 case I40E_VSI_FCOE:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008058 ret = i40e_config_netdev(vsi);
8059 if (ret)
8060 goto err_netdev;
8061 ret = register_netdev(vsi->netdev);
8062 if (ret)
8063 goto err_netdev;
8064 vsi->netdev_registered = true;
8065 netif_carrier_off(vsi->netdev);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08008066#ifdef CONFIG_I40E_DCB
8067 /* Setup DCB netlink interface */
8068 i40e_dcbnl_setup(vsi);
8069#endif /* CONFIG_I40E_DCB */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008070 /* fall through */
8071
8072 case I40E_VSI_FDIR:
8073 /* set up vectors and rings if needed */
8074 ret = i40e_vsi_setup_vectors(vsi);
8075 if (ret)
8076 goto err_msix;
8077
8078 ret = i40e_alloc_rings(vsi);
8079 if (ret)
8080 goto err_rings;
8081
8082 /* map all of the rings to the q_vectors */
8083 i40e_vsi_map_rings_to_vectors(vsi);
8084
8085 i40e_vsi_reset_stats(vsi);
8086 break;
8087
8088 default:
8089 /* no netdev or rings for the other VSI types */
8090 break;
8091 }
8092
8093 return vsi;
8094
8095err_rings:
8096 i40e_vsi_free_q_vectors(vsi);
8097err_msix:
8098 if (vsi->netdev_registered) {
8099 vsi->netdev_registered = false;
8100 unregister_netdev(vsi->netdev);
8101 free_netdev(vsi->netdev);
8102 vsi->netdev = NULL;
8103 }
8104err_netdev:
8105 i40e_aq_delete_element(&pf->hw, vsi->seid, NULL);
8106err_vsi:
8107 i40e_vsi_clear(vsi);
8108err_alloc:
8109 return NULL;
8110}
8111
8112/**
8113 * i40e_veb_get_bw_info - Query VEB BW information
8114 * @veb: the veb to query
8115 *
8116 * Query the Tx scheduler BW configuration data for given VEB
8117 **/
8118static int i40e_veb_get_bw_info(struct i40e_veb *veb)
8119{
8120 struct i40e_aqc_query_switching_comp_ets_config_resp ets_data;
8121 struct i40e_aqc_query_switching_comp_bw_config_resp bw_data;
8122 struct i40e_pf *pf = veb->pf;
8123 struct i40e_hw *hw = &pf->hw;
8124 u32 tc_bw_max;
8125 int ret = 0;
8126 int i;
8127
8128 ret = i40e_aq_query_switch_comp_bw_config(hw, veb->seid,
8129 &bw_data, NULL);
8130 if (ret) {
8131 dev_info(&pf->pdev->dev,
8132 "query veb bw config failed, aq_err=%d\n",
8133 hw->aq.asq_last_status);
8134 goto out;
8135 }
8136
8137 ret = i40e_aq_query_switch_comp_ets_config(hw, veb->seid,
8138 &ets_data, NULL);
8139 if (ret) {
8140 dev_info(&pf->pdev->dev,
8141 "query veb bw ets config failed, aq_err=%d\n",
8142 hw->aq.asq_last_status);
8143 goto out;
8144 }
8145
8146 veb->bw_limit = le16_to_cpu(ets_data.port_bw_limit);
8147 veb->bw_max_quanta = ets_data.tc_bw_max;
8148 veb->is_abs_credits = bw_data.absolute_credits_enable;
8149 tc_bw_max = le16_to_cpu(bw_data.tc_bw_max[0]) |
8150 (le16_to_cpu(bw_data.tc_bw_max[1]) << 16);
8151 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
8152 veb->bw_tc_share_credits[i] = bw_data.tc_bw_share_credits[i];
8153 veb->bw_tc_limit_credits[i] =
8154 le16_to_cpu(bw_data.tc_bw_limits[i]);
8155 veb->bw_tc_max_quanta[i] = ((tc_bw_max >> (i*4)) & 0x7);
8156 }
8157
8158out:
8159 return ret;
8160}
8161
8162/**
8163 * i40e_veb_mem_alloc - Allocates the next available struct veb in the PF
8164 * @pf: board private structure
8165 *
8166 * On error: returns error code (negative)
8167 * On success: returns vsi index in PF (positive)
8168 **/
8169static int i40e_veb_mem_alloc(struct i40e_pf *pf)
8170{
8171 int ret = -ENOENT;
8172 struct i40e_veb *veb;
8173 int i;
8174
8175 /* Need to protect the allocation of switch elements at the PF level */
8176 mutex_lock(&pf->switch_mutex);
8177
8178 /* VEB list may be fragmented if VEB creation/destruction has
8179 * been happening. We can afford to do a quick scan to look
8180 * for any free slots in the list.
8181 *
8182 * find next empty veb slot, looping back around if necessary
8183 */
8184 i = 0;
8185 while ((i < I40E_MAX_VEB) && (pf->veb[i] != NULL))
8186 i++;
8187 if (i >= I40E_MAX_VEB) {
8188 ret = -ENOMEM;
8189 goto err_alloc_veb; /* out of VEB slots! */
8190 }
8191
8192 veb = kzalloc(sizeof(*veb), GFP_KERNEL);
8193 if (!veb) {
8194 ret = -ENOMEM;
8195 goto err_alloc_veb;
8196 }
8197 veb->pf = pf;
8198 veb->idx = i;
8199 veb->enabled_tc = 1;
8200
8201 pf->veb[i] = veb;
8202 ret = i;
8203err_alloc_veb:
8204 mutex_unlock(&pf->switch_mutex);
8205 return ret;
8206}
8207
8208/**
8209 * i40e_switch_branch_release - Delete a branch of the switch tree
8210 * @branch: where to start deleting
8211 *
8212 * This uses recursion to find the tips of the branch to be
8213 * removed, deleting until we get back to and can delete this VEB.
8214 **/
8215static void i40e_switch_branch_release(struct i40e_veb *branch)
8216{
8217 struct i40e_pf *pf = branch->pf;
8218 u16 branch_seid = branch->seid;
8219 u16 veb_idx = branch->idx;
8220 int i;
8221
8222 /* release any VEBs on this VEB - RECURSION */
8223 for (i = 0; i < I40E_MAX_VEB; i++) {
8224 if (!pf->veb[i])
8225 continue;
8226 if (pf->veb[i]->uplink_seid == branch->seid)
8227 i40e_switch_branch_release(pf->veb[i]);
8228 }
8229
8230 /* Release the VSIs on this VEB, but not the owner VSI.
8231 *
8232 * NOTE: Removing the last VSI on a VEB has the SIDE EFFECT of removing
8233 * the VEB itself, so don't use (*branch) after this loop.
8234 */
Mitch Williams505682c2014-05-20 08:01:37 +00008235 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008236 if (!pf->vsi[i])
8237 continue;
8238 if (pf->vsi[i]->uplink_seid == branch_seid &&
8239 (pf->vsi[i]->flags & I40E_VSI_FLAG_VEB_OWNER) == 0) {
8240 i40e_vsi_release(pf->vsi[i]);
8241 }
8242 }
8243
8244 /* There's one corner case where the VEB might not have been
8245 * removed, so double check it here and remove it if needed.
8246 * This case happens if the veb was created from the debugfs
8247 * commands and no VSIs were added to it.
8248 */
8249 if (pf->veb[veb_idx])
8250 i40e_veb_release(pf->veb[veb_idx]);
8251}
8252
8253/**
8254 * i40e_veb_clear - remove veb struct
8255 * @veb: the veb to remove
8256 **/
8257static void i40e_veb_clear(struct i40e_veb *veb)
8258{
8259 if (!veb)
8260 return;
8261
8262 if (veb->pf) {
8263 struct i40e_pf *pf = veb->pf;
8264
8265 mutex_lock(&pf->switch_mutex);
8266 if (pf->veb[veb->idx] == veb)
8267 pf->veb[veb->idx] = NULL;
8268 mutex_unlock(&pf->switch_mutex);
8269 }
8270
8271 kfree(veb);
8272}
8273
8274/**
8275 * i40e_veb_release - Delete a VEB and free its resources
8276 * @veb: the VEB being removed
8277 **/
8278void i40e_veb_release(struct i40e_veb *veb)
8279{
8280 struct i40e_vsi *vsi = NULL;
8281 struct i40e_pf *pf;
8282 int i, n = 0;
8283
8284 pf = veb->pf;
8285
8286 /* find the remaining VSI and check for extras */
Mitch Williams505682c2014-05-20 08:01:37 +00008287 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008288 if (pf->vsi[i] && pf->vsi[i]->uplink_seid == veb->seid) {
8289 n++;
8290 vsi = pf->vsi[i];
8291 }
8292 }
8293 if (n != 1) {
8294 dev_info(&pf->pdev->dev,
8295 "can't remove VEB %d with %d VSIs left\n",
8296 veb->seid, n);
8297 return;
8298 }
8299
8300 /* move the remaining VSI to uplink veb */
8301 vsi->flags &= ~I40E_VSI_FLAG_VEB_OWNER;
8302 if (veb->uplink_seid) {
8303 vsi->uplink_seid = veb->uplink_seid;
8304 if (veb->uplink_seid == pf->mac_seid)
8305 vsi->veb_idx = I40E_NO_VEB;
8306 else
8307 vsi->veb_idx = veb->veb_idx;
8308 } else {
8309 /* floating VEB */
8310 vsi->uplink_seid = pf->vsi[pf->lan_vsi]->uplink_seid;
8311 vsi->veb_idx = pf->vsi[pf->lan_vsi]->veb_idx;
8312 }
8313
8314 i40e_aq_delete_element(&pf->hw, veb->seid, NULL);
8315 i40e_veb_clear(veb);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008316}
8317
8318/**
8319 * i40e_add_veb - create the VEB in the switch
8320 * @veb: the VEB to be instantiated
8321 * @vsi: the controlling VSI
8322 **/
8323static int i40e_add_veb(struct i40e_veb *veb, struct i40e_vsi *vsi)
8324{
Greg Rose56747262013-11-28 06:39:37 +00008325 bool is_default = false;
Kevin Scotte1c51b952013-11-20 10:02:51 +00008326 bool is_cloud = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008327 int ret;
8328
8329 /* get a VEB from the hardware */
8330 ret = i40e_aq_add_veb(&veb->pf->hw, veb->uplink_seid, vsi->seid,
Kevin Scotte1c51b952013-11-20 10:02:51 +00008331 veb->enabled_tc, is_default,
8332 is_cloud, &veb->seid, NULL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008333 if (ret) {
8334 dev_info(&veb->pf->pdev->dev,
8335 "couldn't add VEB, err %d, aq_err %d\n",
8336 ret, veb->pf->hw.aq.asq_last_status);
8337 return -EPERM;
8338 }
8339
8340 /* get statistics counter */
8341 ret = i40e_aq_get_veb_parameters(&veb->pf->hw, veb->seid, NULL, NULL,
8342 &veb->stats_idx, NULL, NULL, NULL);
8343 if (ret) {
8344 dev_info(&veb->pf->pdev->dev,
8345 "couldn't get VEB statistics idx, err %d, aq_err %d\n",
8346 ret, veb->pf->hw.aq.asq_last_status);
8347 return -EPERM;
8348 }
8349 ret = i40e_veb_get_bw_info(veb);
8350 if (ret) {
8351 dev_info(&veb->pf->pdev->dev,
8352 "couldn't get VEB bw info, err %d, aq_err %d\n",
8353 ret, veb->pf->hw.aq.asq_last_status);
8354 i40e_aq_delete_element(&veb->pf->hw, veb->seid, NULL);
8355 return -ENOENT;
8356 }
8357
8358 vsi->uplink_seid = veb->seid;
8359 vsi->veb_idx = veb->idx;
8360 vsi->flags |= I40E_VSI_FLAG_VEB_OWNER;
8361
8362 return 0;
8363}
8364
8365/**
8366 * i40e_veb_setup - Set up a VEB
8367 * @pf: board private structure
8368 * @flags: VEB setup flags
8369 * @uplink_seid: the switch element to link to
8370 * @vsi_seid: the initial VSI seid
8371 * @enabled_tc: Enabled TC bit-map
8372 *
8373 * This allocates the sw VEB structure and links it into the switch
8374 * It is possible and legal for this to be a duplicate of an already
8375 * existing VEB. It is also possible for both uplink and vsi seids
8376 * to be zero, in order to create a floating VEB.
8377 *
8378 * Returns pointer to the successfully allocated VEB sw struct on
8379 * success, otherwise returns NULL on failure.
8380 **/
8381struct i40e_veb *i40e_veb_setup(struct i40e_pf *pf, u16 flags,
8382 u16 uplink_seid, u16 vsi_seid,
8383 u8 enabled_tc)
8384{
8385 struct i40e_veb *veb, *uplink_veb = NULL;
8386 int vsi_idx, veb_idx;
8387 int ret;
8388
8389 /* if one seid is 0, the other must be 0 to create a floating relay */
8390 if ((uplink_seid == 0 || vsi_seid == 0) &&
8391 (uplink_seid + vsi_seid != 0)) {
8392 dev_info(&pf->pdev->dev,
8393 "one, not both seid's are 0: uplink=%d vsi=%d\n",
8394 uplink_seid, vsi_seid);
8395 return NULL;
8396 }
8397
8398 /* make sure there is such a vsi and uplink */
Mitch Williams505682c2014-05-20 08:01:37 +00008399 for (vsi_idx = 0; vsi_idx < pf->num_alloc_vsi; vsi_idx++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008400 if (pf->vsi[vsi_idx] && pf->vsi[vsi_idx]->seid == vsi_seid)
8401 break;
Mitch Williams505682c2014-05-20 08:01:37 +00008402 if (vsi_idx >= pf->num_alloc_vsi && vsi_seid != 0) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008403 dev_info(&pf->pdev->dev, "vsi seid %d not found\n",
8404 vsi_seid);
8405 return NULL;
8406 }
8407
8408 if (uplink_seid && uplink_seid != pf->mac_seid) {
8409 for (veb_idx = 0; veb_idx < I40E_MAX_VEB; veb_idx++) {
8410 if (pf->veb[veb_idx] &&
8411 pf->veb[veb_idx]->seid == uplink_seid) {
8412 uplink_veb = pf->veb[veb_idx];
8413 break;
8414 }
8415 }
8416 if (!uplink_veb) {
8417 dev_info(&pf->pdev->dev,
8418 "uplink seid %d not found\n", uplink_seid);
8419 return NULL;
8420 }
8421 }
8422
8423 /* get veb sw struct */
8424 veb_idx = i40e_veb_mem_alloc(pf);
8425 if (veb_idx < 0)
8426 goto err_alloc;
8427 veb = pf->veb[veb_idx];
8428 veb->flags = flags;
8429 veb->uplink_seid = uplink_seid;
8430 veb->veb_idx = (uplink_veb ? uplink_veb->idx : I40E_NO_VEB);
8431 veb->enabled_tc = (enabled_tc ? enabled_tc : 0x1);
8432
8433 /* create the VEB in the switch */
8434 ret = i40e_add_veb(veb, pf->vsi[vsi_idx]);
8435 if (ret)
8436 goto err_veb;
Shannon Nelson1bb8b932014-04-23 04:49:54 +00008437 if (vsi_idx == pf->lan_vsi)
8438 pf->lan_veb = veb->idx;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008439
8440 return veb;
8441
8442err_veb:
8443 i40e_veb_clear(veb);
8444err_alloc:
8445 return NULL;
8446}
8447
8448/**
8449 * i40e_setup_pf_switch_element - set pf vars based on switch type
8450 * @pf: board private structure
8451 * @ele: element we are building info from
8452 * @num_reported: total number of elements
8453 * @printconfig: should we print the contents
8454 *
8455 * helper function to assist in extracting a few useful SEID values.
8456 **/
8457static void i40e_setup_pf_switch_element(struct i40e_pf *pf,
8458 struct i40e_aqc_switch_config_element_resp *ele,
8459 u16 num_reported, bool printconfig)
8460{
8461 u16 downlink_seid = le16_to_cpu(ele->downlink_seid);
8462 u16 uplink_seid = le16_to_cpu(ele->uplink_seid);
8463 u8 element_type = ele->element_type;
8464 u16 seid = le16_to_cpu(ele->seid);
8465
8466 if (printconfig)
8467 dev_info(&pf->pdev->dev,
8468 "type=%d seid=%d uplink=%d downlink=%d\n",
8469 element_type, seid, uplink_seid, downlink_seid);
8470
8471 switch (element_type) {
8472 case I40E_SWITCH_ELEMENT_TYPE_MAC:
8473 pf->mac_seid = seid;
8474 break;
8475 case I40E_SWITCH_ELEMENT_TYPE_VEB:
8476 /* Main VEB? */
8477 if (uplink_seid != pf->mac_seid)
8478 break;
8479 if (pf->lan_veb == I40E_NO_VEB) {
8480 int v;
8481
8482 /* find existing or else empty VEB */
8483 for (v = 0; v < I40E_MAX_VEB; v++) {
8484 if (pf->veb[v] && (pf->veb[v]->seid == seid)) {
8485 pf->lan_veb = v;
8486 break;
8487 }
8488 }
8489 if (pf->lan_veb == I40E_NO_VEB) {
8490 v = i40e_veb_mem_alloc(pf);
8491 if (v < 0)
8492 break;
8493 pf->lan_veb = v;
8494 }
8495 }
8496
8497 pf->veb[pf->lan_veb]->seid = seid;
8498 pf->veb[pf->lan_veb]->uplink_seid = pf->mac_seid;
8499 pf->veb[pf->lan_veb]->pf = pf;
8500 pf->veb[pf->lan_veb]->veb_idx = I40E_NO_VEB;
8501 break;
8502 case I40E_SWITCH_ELEMENT_TYPE_VSI:
8503 if (num_reported != 1)
8504 break;
8505 /* This is immediately after a reset so we can assume this is
8506 * the PF's VSI
8507 */
8508 pf->mac_seid = uplink_seid;
8509 pf->pf_seid = downlink_seid;
8510 pf->main_vsi_seid = seid;
8511 if (printconfig)
8512 dev_info(&pf->pdev->dev,
8513 "pf_seid=%d main_vsi_seid=%d\n",
8514 pf->pf_seid, pf->main_vsi_seid);
8515 break;
8516 case I40E_SWITCH_ELEMENT_TYPE_PF:
8517 case I40E_SWITCH_ELEMENT_TYPE_VF:
8518 case I40E_SWITCH_ELEMENT_TYPE_EMP:
8519 case I40E_SWITCH_ELEMENT_TYPE_BMC:
8520 case I40E_SWITCH_ELEMENT_TYPE_PE:
8521 case I40E_SWITCH_ELEMENT_TYPE_PA:
8522 /* ignore these for now */
8523 break;
8524 default:
8525 dev_info(&pf->pdev->dev, "unknown element type=%d seid=%d\n",
8526 element_type, seid);
8527 break;
8528 }
8529}
8530
8531/**
8532 * i40e_fetch_switch_configuration - Get switch config from firmware
8533 * @pf: board private structure
8534 * @printconfig: should we print the contents
8535 *
8536 * Get the current switch configuration from the device and
8537 * extract a few useful SEID values.
8538 **/
8539int i40e_fetch_switch_configuration(struct i40e_pf *pf, bool printconfig)
8540{
8541 struct i40e_aqc_get_switch_config_resp *sw_config;
8542 u16 next_seid = 0;
8543 int ret = 0;
8544 u8 *aq_buf;
8545 int i;
8546
8547 aq_buf = kzalloc(I40E_AQ_LARGE_BUF, GFP_KERNEL);
8548 if (!aq_buf)
8549 return -ENOMEM;
8550
8551 sw_config = (struct i40e_aqc_get_switch_config_resp *)aq_buf;
8552 do {
8553 u16 num_reported, num_total;
8554
8555 ret = i40e_aq_get_switch_config(&pf->hw, sw_config,
8556 I40E_AQ_LARGE_BUF,
8557 &next_seid, NULL);
8558 if (ret) {
8559 dev_info(&pf->pdev->dev,
8560 "get switch config failed %d aq_err=%x\n",
8561 ret, pf->hw.aq.asq_last_status);
8562 kfree(aq_buf);
8563 return -ENOENT;
8564 }
8565
8566 num_reported = le16_to_cpu(sw_config->header.num_reported);
8567 num_total = le16_to_cpu(sw_config->header.num_total);
8568
8569 if (printconfig)
8570 dev_info(&pf->pdev->dev,
8571 "header: %d reported %d total\n",
8572 num_reported, num_total);
8573
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008574 for (i = 0; i < num_reported; i++) {
8575 struct i40e_aqc_switch_config_element_resp *ele =
8576 &sw_config->element[i];
8577
8578 i40e_setup_pf_switch_element(pf, ele, num_reported,
8579 printconfig);
8580 }
8581 } while (next_seid != 0);
8582
8583 kfree(aq_buf);
8584 return ret;
8585}
8586
8587/**
8588 * i40e_setup_pf_switch - Setup the HW switch on startup or after reset
8589 * @pf: board private structure
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00008590 * @reinit: if the Main VSI needs to re-initialized.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008591 *
8592 * Returns 0 on success, negative value on failure
8593 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00008594static int i40e_setup_pf_switch(struct i40e_pf *pf, bool reinit)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008595{
8596 int ret;
8597
8598 /* find out what's out there already */
8599 ret = i40e_fetch_switch_configuration(pf, false);
8600 if (ret) {
8601 dev_info(&pf->pdev->dev,
8602 "couldn't fetch switch config, err %d, aq_err %d\n",
8603 ret, pf->hw.aq.asq_last_status);
8604 return ret;
8605 }
8606 i40e_pf_reset_stats(pf);
8607
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008608 /* first time setup */
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00008609 if (pf->lan_vsi == I40E_NO_VSI || reinit) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008610 struct i40e_vsi *vsi = NULL;
8611 u16 uplink_seid;
8612
8613 /* Set up the PF VSI associated with the PF's main VSI
8614 * that is already in the HW switch
8615 */
8616 if (pf->lan_veb != I40E_NO_VEB && pf->veb[pf->lan_veb])
8617 uplink_seid = pf->veb[pf->lan_veb]->seid;
8618 else
8619 uplink_seid = pf->mac_seid;
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00008620 if (pf->lan_vsi == I40E_NO_VSI)
8621 vsi = i40e_vsi_setup(pf, I40E_VSI_MAIN, uplink_seid, 0);
8622 else if (reinit)
8623 vsi = i40e_vsi_reinit_setup(pf->vsi[pf->lan_vsi]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008624 if (!vsi) {
8625 dev_info(&pf->pdev->dev, "setup of MAIN VSI failed\n");
8626 i40e_fdir_teardown(pf);
8627 return -EAGAIN;
8628 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008629 } else {
8630 /* force a reset of TC and queue layout configurations */
8631 u8 enabled_tc = pf->vsi[pf->lan_vsi]->tc_config.enabled_tc;
8632 pf->vsi[pf->lan_vsi]->tc_config.enabled_tc = 0;
8633 pf->vsi[pf->lan_vsi]->seid = pf->main_vsi_seid;
8634 i40e_vsi_config_tc(pf->vsi[pf->lan_vsi], enabled_tc);
8635 }
8636 i40e_vlan_stripping_disable(pf->vsi[pf->lan_vsi]);
8637
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008638 i40e_fdir_sb_setup(pf);
8639
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008640 /* Setup static PF queue filter control settings */
8641 ret = i40e_setup_pf_filter_control(pf);
8642 if (ret) {
8643 dev_info(&pf->pdev->dev, "setup_pf_filter_control failed: %d\n",
8644 ret);
8645 /* Failure here should not stop continuing other steps */
8646 }
8647
8648 /* enable RSS in the HW, even for only one queue, as the stack can use
8649 * the hash
8650 */
8651 if ((pf->flags & I40E_FLAG_RSS_ENABLED))
8652 i40e_config_rss(pf);
8653
8654 /* fill in link information and enable LSE reporting */
Catherine Sullivan8109e122014-06-04 08:45:24 +00008655 i40e_update_link_info(&pf->hw, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008656 i40e_link_event(pf);
8657
Jesse Brandeburgd52c20b2013-11-26 10:49:15 +00008658 /* Initialize user-specific link properties */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008659 pf->fc_autoneg_status = ((pf->hw.phy.link_info.an_info &
8660 I40E_AQ_AN_COMPLETED) ? true : false);
Jesse Brandeburgd52c20b2013-11-26 10:49:15 +00008661
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00008662 i40e_ptp_init(pf);
8663
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008664 return ret;
8665}
8666
8667/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008668 * i40e_determine_queue_usage - Work out queue distribution
8669 * @pf: board private structure
8670 **/
8671static void i40e_determine_queue_usage(struct i40e_pf *pf)
8672{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008673 int queues_left;
8674
8675 pf->num_lan_qps = 0;
Vasu Dev38e00432014-08-01 13:27:03 -07008676#ifdef I40E_FCOE
8677 pf->num_fcoe_qps = 0;
8678#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008679
8680 /* Find the max queues to be put into basic use. We'll always be
8681 * using TC0, whether or not DCB is running, and TC0 will get the
8682 * big RSS set.
8683 */
8684 queues_left = pf->hw.func_caps.num_tx_qp;
8685
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008686 if ((queues_left == 1) ||
Frank Zhang9aa7e932014-05-20 08:01:42 +00008687 !(pf->flags & I40E_FLAG_MSIX_ENABLED)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008688 /* one qp for PF, no queues for anything else */
8689 queues_left = 0;
8690 pf->rss_size = pf->num_lan_qps = 1;
8691
8692 /* make sure all the fancies are disabled */
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08008693 pf->flags &= ~(I40E_FLAG_RSS_ENABLED |
Vasu Dev38e00432014-08-01 13:27:03 -07008694#ifdef I40E_FCOE
8695 I40E_FLAG_FCOE_ENABLED |
8696#endif
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08008697 I40E_FLAG_FD_SB_ENABLED |
8698 I40E_FLAG_FD_ATR_ENABLED |
Neerav Parikh4d9b6042014-05-22 06:31:51 +00008699 I40E_FLAG_DCB_CAPABLE |
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08008700 I40E_FLAG_SRIOV_ENABLED |
8701 I40E_FLAG_VMDQ_ENABLED);
Frank Zhang9aa7e932014-05-20 08:01:42 +00008702 } else if (!(pf->flags & (I40E_FLAG_RSS_ENABLED |
8703 I40E_FLAG_FD_SB_ENABLED |
Anjali Singhai Jainbbe7d0e2014-05-20 08:01:44 +00008704 I40E_FLAG_FD_ATR_ENABLED |
Neerav Parikh4d9b6042014-05-22 06:31:51 +00008705 I40E_FLAG_DCB_CAPABLE))) {
Frank Zhang9aa7e932014-05-20 08:01:42 +00008706 /* one qp for PF */
8707 pf->rss_size = pf->num_lan_qps = 1;
8708 queues_left -= pf->num_lan_qps;
8709
8710 pf->flags &= ~(I40E_FLAG_RSS_ENABLED |
Vasu Dev38e00432014-08-01 13:27:03 -07008711#ifdef I40E_FCOE
8712 I40E_FLAG_FCOE_ENABLED |
8713#endif
Frank Zhang9aa7e932014-05-20 08:01:42 +00008714 I40E_FLAG_FD_SB_ENABLED |
8715 I40E_FLAG_FD_ATR_ENABLED |
8716 I40E_FLAG_DCB_ENABLED |
8717 I40E_FLAG_VMDQ_ENABLED);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008718 } else {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008719 /* Not enough queues for all TCs */
Neerav Parikh4d9b6042014-05-22 06:31:51 +00008720 if ((pf->flags & I40E_FLAG_DCB_CAPABLE) &&
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008721 (queues_left < I40E_MAX_TRAFFIC_CLASS)) {
Neerav Parikh4d9b6042014-05-22 06:31:51 +00008722 pf->flags &= ~I40E_FLAG_DCB_CAPABLE;
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008723 dev_info(&pf->pdev->dev, "not enough queues for DCB. DCB is disabled.\n");
8724 }
8725 pf->num_lan_qps = pf->rss_size_max;
8726 queues_left -= pf->num_lan_qps;
8727 }
8728
Vasu Dev38e00432014-08-01 13:27:03 -07008729#ifdef I40E_FCOE
8730 if (pf->flags & I40E_FLAG_FCOE_ENABLED) {
8731 if (I40E_DEFAULT_FCOE <= queues_left) {
8732 pf->num_fcoe_qps = I40E_DEFAULT_FCOE;
8733 } else if (I40E_MINIMUM_FCOE <= queues_left) {
8734 pf->num_fcoe_qps = I40E_MINIMUM_FCOE;
8735 } else {
8736 pf->num_fcoe_qps = 0;
8737 pf->flags &= ~I40E_FLAG_FCOE_ENABLED;
8738 dev_info(&pf->pdev->dev, "not enough queues for FCoE. FCoE feature will be disabled\n");
8739 }
8740
8741 queues_left -= pf->num_fcoe_qps;
8742 }
8743
8744#endif
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008745 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
8746 if (queues_left > 1) {
8747 queues_left -= 1; /* save 1 queue for FD */
8748 } else {
8749 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
8750 dev_info(&pf->pdev->dev, "not enough queues for Flow Director. Flow Director feature is disabled\n");
8751 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008752 }
8753
8754 if ((pf->flags & I40E_FLAG_SRIOV_ENABLED) &&
8755 pf->num_vf_qps && pf->num_req_vfs && queues_left) {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008756 pf->num_req_vfs = min_t(int, pf->num_req_vfs,
8757 (queues_left / pf->num_vf_qps));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008758 queues_left -= (pf->num_req_vfs * pf->num_vf_qps);
8759 }
8760
8761 if ((pf->flags & I40E_FLAG_VMDQ_ENABLED) &&
8762 pf->num_vmdq_vsis && pf->num_vmdq_qps && queues_left) {
8763 pf->num_vmdq_vsis = min_t(int, pf->num_vmdq_vsis,
8764 (queues_left / pf->num_vmdq_qps));
8765 queues_left -= (pf->num_vmdq_vsis * pf->num_vmdq_qps);
8766 }
8767
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00008768 pf->queues_left = queues_left;
Vasu Dev38e00432014-08-01 13:27:03 -07008769#ifdef I40E_FCOE
8770 dev_info(&pf->pdev->dev, "fcoe queues = %d\n", pf->num_fcoe_qps);
8771#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008772}
8773
8774/**
8775 * i40e_setup_pf_filter_control - Setup PF static filter control
8776 * @pf: PF to be setup
8777 *
8778 * i40e_setup_pf_filter_control sets up a pf's initial filter control
8779 * settings. If PE/FCoE are enabled then it will also set the per PF
8780 * based filter sizes required for them. It also enables Flow director,
8781 * ethertype and macvlan type filter settings for the pf.
8782 *
8783 * Returns 0 on success, negative on failure
8784 **/
8785static int i40e_setup_pf_filter_control(struct i40e_pf *pf)
8786{
8787 struct i40e_filter_control_settings *settings = &pf->filter_settings;
8788
8789 settings->hash_lut_size = I40E_HASH_LUT_SIZE_128;
8790
8791 /* Flow Director is enabled */
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08008792 if (pf->flags & (I40E_FLAG_FD_SB_ENABLED | I40E_FLAG_FD_ATR_ENABLED))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008793 settings->enable_fdir = true;
8794
8795 /* Ethtype and MACVLAN filters enabled for PF */
8796 settings->enable_ethtype = true;
8797 settings->enable_macvlan = true;
8798
8799 if (i40e_set_filter_control(&pf->hw, settings))
8800 return -ENOENT;
8801
8802 return 0;
8803}
8804
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00008805#define INFO_STRING_LEN 255
8806static void i40e_print_features(struct i40e_pf *pf)
8807{
8808 struct i40e_hw *hw = &pf->hw;
8809 char *buf, *string;
8810
8811 string = kzalloc(INFO_STRING_LEN, GFP_KERNEL);
8812 if (!string) {
8813 dev_err(&pf->pdev->dev, "Features string allocation failed\n");
8814 return;
8815 }
8816
8817 buf = string;
8818
8819 buf += sprintf(string, "Features: PF-id[%d] ", hw->pf_id);
8820#ifdef CONFIG_PCI_IOV
8821 buf += sprintf(buf, "VFs: %d ", pf->num_req_vfs);
8822#endif
8823 buf += sprintf(buf, "VSIs: %d QP: %d ", pf->hw.func_caps.num_vsis,
8824 pf->vsi[pf->lan_vsi]->num_queue_pairs);
8825
8826 if (pf->flags & I40E_FLAG_RSS_ENABLED)
8827 buf += sprintf(buf, "RSS ");
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00008828 if (pf->flags & I40E_FLAG_FD_ATR_ENABLED)
Akeem G Abodunrinc6423ff2014-05-10 04:49:08 +00008829 buf += sprintf(buf, "FD_ATR ");
8830 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
8831 buf += sprintf(buf, "FD_SB ");
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00008832 buf += sprintf(buf, "NTUPLE ");
Akeem G Abodunrinc6423ff2014-05-10 04:49:08 +00008833 }
Neerav Parikh4d9b6042014-05-22 06:31:51 +00008834 if (pf->flags & I40E_FLAG_DCB_CAPABLE)
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00008835 buf += sprintf(buf, "DCB ");
8836 if (pf->flags & I40E_FLAG_PTP)
8837 buf += sprintf(buf, "PTP ");
Vasu Dev38e00432014-08-01 13:27:03 -07008838#ifdef I40E_FCOE
8839 if (pf->flags & I40E_FLAG_FCOE_ENABLED)
8840 buf += sprintf(buf, "FCOE ");
8841#endif
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00008842
8843 BUG_ON(buf > (string + INFO_STRING_LEN));
8844 dev_info(&pf->pdev->dev, "%s\n", string);
8845 kfree(string);
8846}
8847
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008848/**
8849 * i40e_probe - Device initialization routine
8850 * @pdev: PCI device information struct
8851 * @ent: entry in i40e_pci_tbl
8852 *
8853 * i40e_probe initializes a pf identified by a pci_dev structure.
8854 * The OS initialization, configuring of the pf private structure,
8855 * and a hardware reset occur.
8856 *
8857 * Returns 0 on success, negative on failure
8858 **/
8859static int i40e_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
8860{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008861 struct i40e_pf *pf;
8862 struct i40e_hw *hw;
Anjali Singhai Jain93cd7652013-11-20 10:03:01 +00008863 static u16 pfs_found;
Catherine Sullivand4dfb812013-11-28 06:39:21 +00008864 u16 link_status;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008865 int err = 0;
8866 u32 len;
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00008867 u32 i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008868
8869 err = pci_enable_device_mem(pdev);
8870 if (err)
8871 return err;
8872
8873 /* set up for high or low dma */
Mitch Williams64942942014-02-11 08:26:33 +00008874 err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64));
Mitch Williams64942942014-02-11 08:26:33 +00008875 if (err) {
Jean Sacrene3e3bfd2014-03-25 04:30:27 +00008876 err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
8877 if (err) {
8878 dev_err(&pdev->dev,
8879 "DMA configuration failed: 0x%x\n", err);
8880 goto err_dma;
8881 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008882 }
8883
8884 /* set up pci connections */
8885 err = pci_request_selected_regions(pdev, pci_select_bars(pdev,
8886 IORESOURCE_MEM), i40e_driver_name);
8887 if (err) {
8888 dev_info(&pdev->dev,
8889 "pci_request_selected_regions failed %d\n", err);
8890 goto err_pci_reg;
8891 }
8892
8893 pci_enable_pcie_error_reporting(pdev);
8894 pci_set_master(pdev);
8895
8896 /* Now that we have a PCI connection, we need to do the
8897 * low level device setup. This is primarily setting up
8898 * the Admin Queue structures and then querying for the
8899 * device's current profile information.
8900 */
8901 pf = kzalloc(sizeof(*pf), GFP_KERNEL);
8902 if (!pf) {
8903 err = -ENOMEM;
8904 goto err_pf_alloc;
8905 }
8906 pf->next_vsi = 0;
8907 pf->pdev = pdev;
8908 set_bit(__I40E_DOWN, &pf->state);
8909
8910 hw = &pf->hw;
8911 hw->back = pf;
8912 hw->hw_addr = ioremap(pci_resource_start(pdev, 0),
8913 pci_resource_len(pdev, 0));
8914 if (!hw->hw_addr) {
8915 err = -EIO;
8916 dev_info(&pdev->dev, "ioremap(0x%04x, 0x%04x) failed: 0x%x\n",
8917 (unsigned int)pci_resource_start(pdev, 0),
8918 (unsigned int)pci_resource_len(pdev, 0), err);
8919 goto err_ioremap;
8920 }
8921 hw->vendor_id = pdev->vendor;
8922 hw->device_id = pdev->device;
8923 pci_read_config_byte(pdev, PCI_REVISION_ID, &hw->revision_id);
8924 hw->subsystem_vendor_id = pdev->subsystem_vendor;
8925 hw->subsystem_device_id = pdev->subsystem_device;
8926 hw->bus.device = PCI_SLOT(pdev->devfn);
8927 hw->bus.func = PCI_FUNC(pdev->devfn);
Anjali Singhai Jain93cd7652013-11-20 10:03:01 +00008928 pf->instance = pfs_found;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008929
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00008930 /* do a special CORER for clearing PXE mode once at init */
8931 if (hw->revision_id == 0 &&
8932 (rd32(hw, I40E_GLLAN_RCTL_0) & I40E_GLLAN_RCTL_0_PXE_MODE_MASK)) {
8933 wr32(hw, I40E_GLGEN_RTRIG, I40E_GLGEN_RTRIG_CORER_MASK);
8934 i40e_flush(hw);
8935 msleep(200);
8936 pf->corer_count++;
8937
8938 i40e_clear_pxe_mode(hw);
8939 }
8940
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008941 /* Reset here to make sure all is clean and to define PF 'n' */
Shannon Nelson838d41d2014-06-04 20:41:27 +00008942 i40e_clear_hw(hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008943 err = i40e_pf_reset(hw);
8944 if (err) {
8945 dev_info(&pdev->dev, "Initial pf_reset failed: %d\n", err);
8946 goto err_pf_reset;
8947 }
8948 pf->pfr_count++;
8949
8950 hw->aq.num_arq_entries = I40E_AQ_LEN;
8951 hw->aq.num_asq_entries = I40E_AQ_LEN;
8952 hw->aq.arq_buf_size = I40E_MAX_AQ_BUF_SIZE;
8953 hw->aq.asq_buf_size = I40E_MAX_AQ_BUF_SIZE;
8954 pf->adminq_work_limit = I40E_AQ_WORK_LIMIT;
8955 snprintf(pf->misc_int_name, sizeof(pf->misc_int_name) - 1,
8956 "%s-pf%d:misc",
8957 dev_driver_string(&pf->pdev->dev), pf->hw.pf_id);
8958
8959 err = i40e_init_shared_code(hw);
8960 if (err) {
8961 dev_info(&pdev->dev, "init_shared_code failed: %d\n", err);
8962 goto err_pf_reset;
8963 }
8964
Jesse Brandeburgd52c20b2013-11-26 10:49:15 +00008965 /* set up a default setting for link flow control */
8966 pf->hw.fc.requested_mode = I40E_FC_NONE;
8967
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008968 err = i40e_init_adminq(hw);
8969 dev_info(&pdev->dev, "%s\n", i40e_fw_version_str(hw));
8970 if (err) {
8971 dev_info(&pdev->dev,
Catherine Sullivan7aa67612014-07-09 07:46:17 +00008972 "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 +00008973 goto err_pf_reset;
8974 }
8975
Catherine Sullivan7aa67612014-07-09 07:46:17 +00008976 if (hw->aq.api_maj_ver == I40E_FW_API_VERSION_MAJOR &&
8977 hw->aq.api_min_ver > I40E_FW_API_VERSION_MINOR)
Shannon Nelson278b6f62014-06-04 01:41:03 +00008978 dev_info(&pdev->dev,
Catherine Sullivan7aa67612014-07-09 07:46:17 +00008979 "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");
8980 else if (hw->aq.api_maj_ver < I40E_FW_API_VERSION_MAJOR ||
8981 hw->aq.api_min_ver < (I40E_FW_API_VERSION_MINOR - 1))
Shannon Nelson278b6f62014-06-04 01:41:03 +00008982 dev_info(&pdev->dev,
Catherine Sullivan7aa67612014-07-09 07:46:17 +00008983 "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 +00008984
8985
Shannon Nelson4eb3f762014-03-06 08:59:58 +00008986 i40e_verify_eeprom(pf);
8987
Jesse Brandeburg2c5fe332014-04-23 04:49:57 +00008988 /* Rev 0 hardware was never productized */
8989 if (hw->revision_id < 1)
8990 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");
8991
Shannon Nelson6ff4ef82013-12-21 05:44:49 +00008992 i40e_clear_pxe_mode(hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008993 err = i40e_get_capabilities(pf);
8994 if (err)
8995 goto err_adminq_setup;
8996
8997 err = i40e_sw_init(pf);
8998 if (err) {
8999 dev_info(&pdev->dev, "sw_init failed: %d\n", err);
9000 goto err_sw_init;
9001 }
9002
9003 err = i40e_init_lan_hmc(hw, hw->func_caps.num_tx_qp,
9004 hw->func_caps.num_rx_qp,
9005 pf->fcoe_hmc_cntx_num, pf->fcoe_hmc_filt_num);
9006 if (err) {
9007 dev_info(&pdev->dev, "init_lan_hmc failed: %d\n", err);
9008 goto err_init_lan_hmc;
9009 }
9010
9011 err = i40e_configure_lan_hmc(hw, I40E_HMC_MODEL_DIRECT_ONLY);
9012 if (err) {
9013 dev_info(&pdev->dev, "configure_lan_hmc failed: %d\n", err);
9014 err = -ENOENT;
9015 goto err_configure_lan_hmc;
9016 }
9017
9018 i40e_get_mac_addr(hw, hw->mac.addr);
Jesse Brandeburgf62b5062013-11-28 06:39:27 +00009019 if (!is_valid_ether_addr(hw->mac.addr)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009020 dev_info(&pdev->dev, "invalid MAC address %pM\n", hw->mac.addr);
9021 err = -EIO;
9022 goto err_mac_addr;
9023 }
9024 dev_info(&pdev->dev, "MAC address: %pM\n", hw->mac.addr);
Greg Rose9a173902014-05-22 06:32:02 +00009025 ether_addr_copy(hw->mac.perm_addr, hw->mac.addr);
Neerav Parikh1f224ad2014-02-12 01:45:31 +00009026 i40e_get_port_mac_addr(hw, hw->mac.port_addr);
9027 if (is_valid_ether_addr(hw->mac.port_addr))
9028 pf->flags |= I40E_FLAG_PORT_ID_VALID;
Vasu Dev38e00432014-08-01 13:27:03 -07009029#ifdef I40E_FCOE
9030 err = i40e_get_san_mac_addr(hw, hw->mac.san_addr);
9031 if (err)
9032 dev_info(&pdev->dev,
9033 "(non-fatal) SAN MAC retrieval failed: %d\n", err);
9034 if (!is_valid_ether_addr(hw->mac.san_addr)) {
9035 dev_warn(&pdev->dev, "invalid SAN MAC address %pM, falling back to LAN MAC\n",
9036 hw->mac.san_addr);
9037 ether_addr_copy(hw->mac.san_addr, hw->mac.addr);
9038 }
9039 dev_info(&pf->pdev->dev, "SAN MAC: %pM\n", hw->mac.san_addr);
9040#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009041
9042 pci_set_drvdata(pdev, pf);
9043 pci_save_state(pdev);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08009044#ifdef CONFIG_I40E_DCB
9045 err = i40e_init_pf_dcb(pf);
9046 if (err) {
9047 dev_info(&pdev->dev, "init_pf_dcb failed: %d\n", err);
Neerav Parikh4d9b6042014-05-22 06:31:51 +00009048 pf->flags &= ~I40E_FLAG_DCB_CAPABLE;
Neerav Parikh014269f2014-04-01 07:11:48 +00009049 /* Continue without DCB enabled */
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08009050 }
9051#endif /* CONFIG_I40E_DCB */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009052
9053 /* set up periodic task facility */
9054 setup_timer(&pf->service_timer, i40e_service_timer, (unsigned long)pf);
9055 pf->service_timer_period = HZ;
9056
9057 INIT_WORK(&pf->service_task, i40e_service_task);
9058 clear_bit(__I40E_SERVICE_SCHED, &pf->state);
9059 pf->flags |= I40E_FLAG_NEED_LINK_UPDATE;
9060 pf->link_check_timeout = jiffies;
9061
Shannon Nelson8e2773a2013-11-28 06:39:22 +00009062 /* WoL defaults to disabled */
9063 pf->wol_en = false;
9064 device_set_wakeup_enable(&pf->pdev->dev, pf->wol_en);
9065
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009066 /* set up the main switch operations */
9067 i40e_determine_queue_usage(pf);
9068 i40e_init_interrupt_scheme(pf);
9069
Mitch Williams505682c2014-05-20 08:01:37 +00009070 /* The number of VSIs reported by the FW is the minimum guaranteed
9071 * to us; HW supports far more and we share the remaining pool with
9072 * the other PFs. We allocate space for more than the guarantee with
9073 * the understanding that we might not get them all later.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009074 */
Mitch Williams505682c2014-05-20 08:01:37 +00009075 if (pf->hw.func_caps.num_vsis < I40E_MIN_VSI_ALLOC)
9076 pf->num_alloc_vsi = I40E_MIN_VSI_ALLOC;
9077 else
9078 pf->num_alloc_vsi = pf->hw.func_caps.num_vsis;
9079
9080 /* Set up the *vsi struct and our local tracking of the MAIN PF vsi. */
9081 len = sizeof(struct i40e_vsi *) * pf->num_alloc_vsi;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009082 pf->vsi = kzalloc(len, GFP_KERNEL);
Wei Yongjuned87ac02013-09-24 05:17:25 +00009083 if (!pf->vsi) {
9084 err = -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009085 goto err_switch_setup;
Wei Yongjuned87ac02013-09-24 05:17:25 +00009086 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009087
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00009088 err = i40e_setup_pf_switch(pf, false);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009089 if (err) {
9090 dev_info(&pdev->dev, "setup_pf_switch failed: %d\n", err);
9091 goto err_vsis;
9092 }
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00009093 /* if FDIR VSI was set up, start it now */
Mitch Williams505682c2014-05-20 08:01:37 +00009094 for (i = 0; i < pf->num_alloc_vsi; i++) {
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00009095 if (pf->vsi[i] && pf->vsi[i]->type == I40E_VSI_FDIR) {
9096 i40e_vsi_open(pf->vsi[i]);
9097 break;
9098 }
9099 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009100
9101 /* The main driver is (mostly) up and happy. We need to set this state
9102 * before setting up the misc vector or we get a race and the vector
9103 * ends up disabled forever.
9104 */
9105 clear_bit(__I40E_DOWN, &pf->state);
9106
9107 /* In case of MSIX we are going to setup the misc vector right here
9108 * to handle admin queue events etc. In case of legacy and MSI
9109 * the misc functionality and queue processing is combined in
9110 * the same vector and that gets setup at open.
9111 */
9112 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
9113 err = i40e_setup_misc_vector(pf);
9114 if (err) {
9115 dev_info(&pdev->dev,
9116 "setup of misc vector failed: %d\n", err);
9117 goto err_vsis;
9118 }
9119 }
9120
Greg Rosedf805f62014-04-04 04:43:16 +00009121#ifdef CONFIG_PCI_IOV
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009122 /* prep for VF support */
9123 if ((pf->flags & I40E_FLAG_SRIOV_ENABLED) &&
Shannon Nelson4eb3f762014-03-06 08:59:58 +00009124 (pf->flags & I40E_FLAG_MSIX_ENABLED) &&
9125 !test_bit(__I40E_BAD_EEPROM, &pf->state)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009126 u32 val;
9127
9128 /* disable link interrupts for VFs */
9129 val = rd32(hw, I40E_PFGEN_PORTMDIO_NUM);
9130 val &= ~I40E_PFGEN_PORTMDIO_NUM_VFLINK_STAT_ENA_MASK;
9131 wr32(hw, I40E_PFGEN_PORTMDIO_NUM, val);
9132 i40e_flush(hw);
Mitch Williams4aeec012014-02-13 03:48:47 -08009133
9134 if (pci_num_vf(pdev)) {
9135 dev_info(&pdev->dev,
9136 "Active VFs found, allocating resources.\n");
9137 err = i40e_alloc_vfs(pf, pci_num_vf(pdev));
9138 if (err)
9139 dev_info(&pdev->dev,
9140 "Error %d allocating resources for existing VFs\n",
9141 err);
9142 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009143 }
Greg Rosedf805f62014-04-04 04:43:16 +00009144#endif /* CONFIG_PCI_IOV */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009145
Anjali Singhai Jain93cd7652013-11-20 10:03:01 +00009146 pfs_found++;
9147
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009148 i40e_dbg_pf_init(pf);
9149
9150 /* tell the firmware that we're starting */
Jesse Brandeburg44033fa2014-04-23 04:50:15 +00009151 i40e_send_version(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009152
9153 /* since everything's happy, start the service_task timer */
9154 mod_timer(&pf->service_timer,
9155 round_jiffies(jiffies + pf->service_timer_period));
9156
Vasu Dev38e00432014-08-01 13:27:03 -07009157#ifdef I40E_FCOE
9158 /* create FCoE interface */
9159 i40e_fcoe_vsi_setup(pf);
9160
9161#endif
Catherine Sullivand4dfb812013-11-28 06:39:21 +00009162 /* Get the negotiated link width and speed from PCI config space */
9163 pcie_capability_read_word(pf->pdev, PCI_EXP_LNKSTA, &link_status);
9164
9165 i40e_set_pci_config_data(hw, link_status);
9166
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00009167 dev_info(&pdev->dev, "PCI-Express: %s %s\n",
Catherine Sullivand4dfb812013-11-28 06:39:21 +00009168 (hw->bus.speed == i40e_bus_speed_8000 ? "Speed 8.0GT/s" :
9169 hw->bus.speed == i40e_bus_speed_5000 ? "Speed 5.0GT/s" :
9170 hw->bus.speed == i40e_bus_speed_2500 ? "Speed 2.5GT/s" :
9171 "Unknown"),
9172 (hw->bus.width == i40e_bus_width_pcie_x8 ? "Width x8" :
9173 hw->bus.width == i40e_bus_width_pcie_x4 ? "Width x4" :
9174 hw->bus.width == i40e_bus_width_pcie_x2 ? "Width x2" :
9175 hw->bus.width == i40e_bus_width_pcie_x1 ? "Width x1" :
9176 "Unknown"));
9177
9178 if (hw->bus.width < i40e_bus_width_pcie_x8 ||
9179 hw->bus.speed < i40e_bus_speed_8000) {
9180 dev_warn(&pdev->dev, "PCI-Express bandwidth available for this device may be insufficient for optimal performance.\n");
9181 dev_warn(&pdev->dev, "Please move the device to a different PCI-e link with more lanes and/or higher transfer rate.\n");
9182 }
9183
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00009184 /* print a string summarizing features */
9185 i40e_print_features(pf);
9186
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009187 return 0;
9188
9189 /* Unwind what we've done if something failed in the setup */
9190err_vsis:
9191 set_bit(__I40E_DOWN, &pf->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009192 i40e_clear_interrupt_scheme(pf);
9193 kfree(pf->vsi);
Shannon Nelson04b03012013-11-28 06:39:34 +00009194err_switch_setup:
9195 i40e_reset_interrupt_capability(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009196 del_timer_sync(&pf->service_timer);
9197err_mac_addr:
9198err_configure_lan_hmc:
9199 (void)i40e_shutdown_lan_hmc(hw);
9200err_init_lan_hmc:
9201 kfree(pf->qp_pile);
9202 kfree(pf->irq_pile);
9203err_sw_init:
9204err_adminq_setup:
9205 (void)i40e_shutdown_adminq(hw);
9206err_pf_reset:
9207 iounmap(hw->hw_addr);
9208err_ioremap:
9209 kfree(pf);
9210err_pf_alloc:
9211 pci_disable_pcie_error_reporting(pdev);
9212 pci_release_selected_regions(pdev,
9213 pci_select_bars(pdev, IORESOURCE_MEM));
9214err_pci_reg:
9215err_dma:
9216 pci_disable_device(pdev);
9217 return err;
9218}
9219
9220/**
9221 * i40e_remove - Device removal routine
9222 * @pdev: PCI device information struct
9223 *
9224 * i40e_remove is called by the PCI subsystem to alert the driver
9225 * that is should release a PCI device. This could be caused by a
9226 * Hot-Plug event, or because the driver is going to be removed from
9227 * memory.
9228 **/
9229static void i40e_remove(struct pci_dev *pdev)
9230{
9231 struct i40e_pf *pf = pci_get_drvdata(pdev);
9232 i40e_status ret_code;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009233 int i;
9234
9235 i40e_dbg_pf_exit(pf);
9236
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00009237 i40e_ptp_stop(pf);
9238
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009239 /* no more scheduling of any task */
9240 set_bit(__I40E_DOWN, &pf->state);
9241 del_timer_sync(&pf->service_timer);
9242 cancel_work_sync(&pf->service_task);
9243
Mitch Williamseb2d80b2014-02-13 03:48:48 -08009244 if (pf->flags & I40E_FLAG_SRIOV_ENABLED) {
9245 i40e_free_vfs(pf);
9246 pf->flags &= ~I40E_FLAG_SRIOV_ENABLED;
9247 }
9248
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009249 i40e_fdir_teardown(pf);
9250
9251 /* If there is a switch structure or any orphans, remove them.
9252 * This will leave only the PF's VSI remaining.
9253 */
9254 for (i = 0; i < I40E_MAX_VEB; i++) {
9255 if (!pf->veb[i])
9256 continue;
9257
9258 if (pf->veb[i]->uplink_seid == pf->mac_seid ||
9259 pf->veb[i]->uplink_seid == 0)
9260 i40e_switch_branch_release(pf->veb[i]);
9261 }
9262
9263 /* Now we can shutdown the PF's VSI, just before we kill
9264 * adminq and hmc.
9265 */
9266 if (pf->vsi[pf->lan_vsi])
9267 i40e_vsi_release(pf->vsi[pf->lan_vsi]);
9268
9269 i40e_stop_misc_vector(pf);
9270 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
9271 synchronize_irq(pf->msix_entries[0].vector);
9272 free_irq(pf->msix_entries[0].vector, pf);
9273 }
9274
9275 /* shutdown and destroy the HMC */
Shannon Nelson60442de2014-04-23 04:50:13 +00009276 if (pf->hw.hmc.hmc_obj) {
9277 ret_code = i40e_shutdown_lan_hmc(&pf->hw);
9278 if (ret_code)
9279 dev_warn(&pdev->dev,
9280 "Failed to destroy the HMC resources: %d\n",
9281 ret_code);
9282 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009283
9284 /* shutdown the adminq */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009285 ret_code = i40e_shutdown_adminq(&pf->hw);
9286 if (ret_code)
9287 dev_warn(&pdev->dev,
9288 "Failed to destroy the Admin Queue resources: %d\n",
9289 ret_code);
9290
9291 /* Clear all dynamic memory lists of rings, q_vectors, and VSIs */
9292 i40e_clear_interrupt_scheme(pf);
Mitch Williams505682c2014-05-20 08:01:37 +00009293 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009294 if (pf->vsi[i]) {
9295 i40e_vsi_clear_rings(pf->vsi[i]);
9296 i40e_vsi_clear(pf->vsi[i]);
9297 pf->vsi[i] = NULL;
9298 }
9299 }
9300
9301 for (i = 0; i < I40E_MAX_VEB; i++) {
9302 kfree(pf->veb[i]);
9303 pf->veb[i] = NULL;
9304 }
9305
9306 kfree(pf->qp_pile);
9307 kfree(pf->irq_pile);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009308 kfree(pf->vsi);
9309
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009310 iounmap(pf->hw.hw_addr);
9311 kfree(pf);
9312 pci_release_selected_regions(pdev,
9313 pci_select_bars(pdev, IORESOURCE_MEM));
9314
9315 pci_disable_pcie_error_reporting(pdev);
9316 pci_disable_device(pdev);
9317}
9318
9319/**
9320 * i40e_pci_error_detected - warning that something funky happened in PCI land
9321 * @pdev: PCI device information struct
9322 *
9323 * Called to warn that something happened and the error handling steps
9324 * are in progress. Allows the driver to quiesce things, be ready for
9325 * remediation.
9326 **/
9327static pci_ers_result_t i40e_pci_error_detected(struct pci_dev *pdev,
9328 enum pci_channel_state error)
9329{
9330 struct i40e_pf *pf = pci_get_drvdata(pdev);
9331
9332 dev_info(&pdev->dev, "%s: error %d\n", __func__, error);
9333
9334 /* shutdown all operations */
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009335 if (!test_bit(__I40E_SUSPENDED, &pf->state)) {
9336 rtnl_lock();
9337 i40e_prep_for_reset(pf);
9338 rtnl_unlock();
9339 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009340
9341 /* Request a slot reset */
9342 return PCI_ERS_RESULT_NEED_RESET;
9343}
9344
9345/**
9346 * i40e_pci_error_slot_reset - a PCI slot reset just happened
9347 * @pdev: PCI device information struct
9348 *
9349 * Called to find if the driver can work with the device now that
9350 * the pci slot has been reset. If a basic connection seems good
9351 * (registers are readable and have sane content) then return a
9352 * happy little PCI_ERS_RESULT_xxx.
9353 **/
9354static pci_ers_result_t i40e_pci_error_slot_reset(struct pci_dev *pdev)
9355{
9356 struct i40e_pf *pf = pci_get_drvdata(pdev);
9357 pci_ers_result_t result;
9358 int err;
9359 u32 reg;
9360
9361 dev_info(&pdev->dev, "%s\n", __func__);
9362 if (pci_enable_device_mem(pdev)) {
9363 dev_info(&pdev->dev,
9364 "Cannot re-enable PCI device after reset.\n");
9365 result = PCI_ERS_RESULT_DISCONNECT;
9366 } else {
9367 pci_set_master(pdev);
9368 pci_restore_state(pdev);
9369 pci_save_state(pdev);
9370 pci_wake_from_d3(pdev, false);
9371
9372 reg = rd32(&pf->hw, I40E_GLGEN_RTRIG);
9373 if (reg == 0)
9374 result = PCI_ERS_RESULT_RECOVERED;
9375 else
9376 result = PCI_ERS_RESULT_DISCONNECT;
9377 }
9378
9379 err = pci_cleanup_aer_uncorrect_error_status(pdev);
9380 if (err) {
9381 dev_info(&pdev->dev,
9382 "pci_cleanup_aer_uncorrect_error_status failed 0x%0x\n",
9383 err);
9384 /* non-fatal, continue */
9385 }
9386
9387 return result;
9388}
9389
9390/**
9391 * i40e_pci_error_resume - restart operations after PCI error recovery
9392 * @pdev: PCI device information struct
9393 *
9394 * Called to allow the driver to bring things back up after PCI error
9395 * and/or reset recovery has finished.
9396 **/
9397static void i40e_pci_error_resume(struct pci_dev *pdev)
9398{
9399 struct i40e_pf *pf = pci_get_drvdata(pdev);
9400
9401 dev_info(&pdev->dev, "%s\n", __func__);
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009402 if (test_bit(__I40E_SUSPENDED, &pf->state))
9403 return;
9404
9405 rtnl_lock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009406 i40e_handle_reset_warning(pf);
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009407 rtnl_lock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009408}
9409
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009410/**
9411 * i40e_shutdown - PCI callback for shutting down
9412 * @pdev: PCI device information struct
9413 **/
9414static void i40e_shutdown(struct pci_dev *pdev)
9415{
9416 struct i40e_pf *pf = pci_get_drvdata(pdev);
Shannon Nelson8e2773a2013-11-28 06:39:22 +00009417 struct i40e_hw *hw = &pf->hw;
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009418
9419 set_bit(__I40E_SUSPENDED, &pf->state);
9420 set_bit(__I40E_DOWN, &pf->state);
9421 rtnl_lock();
9422 i40e_prep_for_reset(pf);
9423 rtnl_unlock();
9424
Shannon Nelson8e2773a2013-11-28 06:39:22 +00009425 wr32(hw, I40E_PFPM_APM, (pf->wol_en ? I40E_PFPM_APM_APME_MASK : 0));
9426 wr32(hw, I40E_PFPM_WUFC, (pf->wol_en ? I40E_PFPM_WUFC_MAG_MASK : 0));
9427
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009428 if (system_state == SYSTEM_POWER_OFF) {
Shannon Nelson8e2773a2013-11-28 06:39:22 +00009429 pci_wake_from_d3(pdev, pf->wol_en);
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009430 pci_set_power_state(pdev, PCI_D3hot);
9431 }
9432}
9433
9434#ifdef CONFIG_PM
9435/**
9436 * i40e_suspend - PCI callback for moving to D3
9437 * @pdev: PCI device information struct
9438 **/
9439static int i40e_suspend(struct pci_dev *pdev, pm_message_t state)
9440{
9441 struct i40e_pf *pf = pci_get_drvdata(pdev);
Shannon Nelson8e2773a2013-11-28 06:39:22 +00009442 struct i40e_hw *hw = &pf->hw;
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009443
9444 set_bit(__I40E_SUSPENDED, &pf->state);
9445 set_bit(__I40E_DOWN, &pf->state);
9446 rtnl_lock();
9447 i40e_prep_for_reset(pf);
9448 rtnl_unlock();
9449
Shannon Nelson8e2773a2013-11-28 06:39:22 +00009450 wr32(hw, I40E_PFPM_APM, (pf->wol_en ? I40E_PFPM_APM_APME_MASK : 0));
9451 wr32(hw, I40E_PFPM_WUFC, (pf->wol_en ? I40E_PFPM_WUFC_MAG_MASK : 0));
9452
9453 pci_wake_from_d3(pdev, pf->wol_en);
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009454 pci_set_power_state(pdev, PCI_D3hot);
9455
9456 return 0;
9457}
9458
9459/**
9460 * i40e_resume - PCI callback for waking up from D3
9461 * @pdev: PCI device information struct
9462 **/
9463static int i40e_resume(struct pci_dev *pdev)
9464{
9465 struct i40e_pf *pf = pci_get_drvdata(pdev);
9466 u32 err;
9467
9468 pci_set_power_state(pdev, PCI_D0);
9469 pci_restore_state(pdev);
9470 /* pci_restore_state() clears dev->state_saves, so
9471 * call pci_save_state() again to restore it.
9472 */
9473 pci_save_state(pdev);
9474
9475 err = pci_enable_device_mem(pdev);
9476 if (err) {
9477 dev_err(&pdev->dev,
9478 "%s: Cannot enable PCI device from suspend\n",
9479 __func__);
9480 return err;
9481 }
9482 pci_set_master(pdev);
9483
9484 /* no wakeup events while running */
9485 pci_wake_from_d3(pdev, false);
9486
9487 /* handling the reset will rebuild the device state */
9488 if (test_and_clear_bit(__I40E_SUSPENDED, &pf->state)) {
9489 clear_bit(__I40E_DOWN, &pf->state);
9490 rtnl_lock();
9491 i40e_reset_and_rebuild(pf, false);
9492 rtnl_unlock();
9493 }
9494
9495 return 0;
9496}
9497
9498#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009499static const struct pci_error_handlers i40e_err_handler = {
9500 .error_detected = i40e_pci_error_detected,
9501 .slot_reset = i40e_pci_error_slot_reset,
9502 .resume = i40e_pci_error_resume,
9503};
9504
9505static struct pci_driver i40e_driver = {
9506 .name = i40e_driver_name,
9507 .id_table = i40e_pci_tbl,
9508 .probe = i40e_probe,
9509 .remove = i40e_remove,
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009510#ifdef CONFIG_PM
9511 .suspend = i40e_suspend,
9512 .resume = i40e_resume,
9513#endif
9514 .shutdown = i40e_shutdown,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009515 .err_handler = &i40e_err_handler,
9516 .sriov_configure = i40e_pci_sriov_configure,
9517};
9518
9519/**
9520 * i40e_init_module - Driver registration routine
9521 *
9522 * i40e_init_module is the first routine called when the driver is
9523 * loaded. All it does is register with the PCI subsystem.
9524 **/
9525static int __init i40e_init_module(void)
9526{
9527 pr_info("%s: %s - version %s\n", i40e_driver_name,
9528 i40e_driver_string, i40e_driver_version_str);
9529 pr_info("%s: %s\n", i40e_driver_name, i40e_copyright);
9530 i40e_dbg_init();
9531 return pci_register_driver(&i40e_driver);
9532}
9533module_init(i40e_init_module);
9534
9535/**
9536 * i40e_exit_module - Driver exit cleanup routine
9537 *
9538 * i40e_exit_module is called just before the driver is removed
9539 * from memory.
9540 **/
9541static void __exit i40e_exit_module(void)
9542{
9543 pci_unregister_driver(&i40e_driver);
9544 i40e_dbg_exit();
9545}
9546module_exit(i40e_exit_module);