blob: d9dcb8c0d611bf410f8e328e433b6bf957423152 [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 Sullivan67b807e2014-06-04 20:42:15 +000042#define DRV_VERSION_BUILD 19
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000043#define DRV_VERSION __stringify(DRV_VERSION_MAJOR) "." \
44 __stringify(DRV_VERSION_MINOR) "." \
45 __stringify(DRV_VERSION_BUILD) DRV_KERN
46const char i40e_driver_version_str[] = DRV_VERSION;
Jesse Brandeburg8fb905b2014-01-17 15:36:33 -080047static const char i40e_copyright[] = "Copyright (c) 2013 - 2014 Intel Corporation.";
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000048
49/* a bit of forward declarations */
50static void i40e_vsi_reinit_locked(struct i40e_vsi *vsi);
51static void i40e_handle_reset_warning(struct i40e_pf *pf);
52static int i40e_add_vsi(struct i40e_vsi *vsi);
53static int i40e_add_veb(struct i40e_veb *veb, struct i40e_vsi *vsi);
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +000054static int i40e_setup_pf_switch(struct i40e_pf *pf, bool reinit);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000055static int i40e_setup_misc_vector(struct i40e_pf *pf);
56static void i40e_determine_queue_usage(struct i40e_pf *pf);
57static int i40e_setup_pf_filter_control(struct i40e_pf *pf);
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080058static void i40e_fdir_sb_setup(struct i40e_pf *pf);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -080059static int i40e_veb_get_bw_info(struct i40e_veb *veb);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000060
61/* i40e_pci_tbl - PCI Device ID Table
62 *
63 * Last entry must be all 0s
64 *
65 * { Vendor ID, Device ID, SubVendor ID, SubDevice ID,
66 * Class, Class Mask, private data (not used) }
67 */
68static DEFINE_PCI_DEVICE_TABLE(i40e_pci_tbl) = {
Shannon Nelsonab600852014-01-17 15:36:39 -080069 {PCI_VDEVICE(INTEL, I40E_DEV_ID_SFP_XL710), 0},
Shannon Nelsonab600852014-01-17 15:36:39 -080070 {PCI_VDEVICE(INTEL, I40E_DEV_ID_QEMU), 0},
71 {PCI_VDEVICE(INTEL, I40E_DEV_ID_KX_A), 0},
72 {PCI_VDEVICE(INTEL, I40E_DEV_ID_KX_B), 0},
73 {PCI_VDEVICE(INTEL, I40E_DEV_ID_KX_C), 0},
Shannon Nelsonab600852014-01-17 15:36:39 -080074 {PCI_VDEVICE(INTEL, I40E_DEV_ID_QSFP_A), 0},
75 {PCI_VDEVICE(INTEL, I40E_DEV_ID_QSFP_B), 0},
76 {PCI_VDEVICE(INTEL, I40E_DEV_ID_QSFP_C), 0},
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000077 /* required last entry */
78 {0, }
79};
80MODULE_DEVICE_TABLE(pci, i40e_pci_tbl);
81
82#define I40E_MAX_VF_COUNT 128
83static int debug = -1;
84module_param(debug, int, 0);
85MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all)");
86
87MODULE_AUTHOR("Intel Corporation, <e1000-devel@lists.sourceforge.net>");
88MODULE_DESCRIPTION("Intel(R) Ethernet Connection XL710 Network Driver");
89MODULE_LICENSE("GPL");
90MODULE_VERSION(DRV_VERSION);
91
92/**
93 * i40e_allocate_dma_mem_d - OS specific memory alloc for shared code
94 * @hw: pointer to the HW structure
95 * @mem: ptr to mem struct to fill out
96 * @size: size of memory requested
97 * @alignment: what to align the allocation to
98 **/
99int i40e_allocate_dma_mem_d(struct i40e_hw *hw, struct i40e_dma_mem *mem,
100 u64 size, u32 alignment)
101{
102 struct i40e_pf *pf = (struct i40e_pf *)hw->back;
103
104 mem->size = ALIGN(size, alignment);
105 mem->va = dma_zalloc_coherent(&pf->pdev->dev, mem->size,
106 &mem->pa, GFP_KERNEL);
Jesse Brandeburg93bc73b2013-09-13 08:23:18 +0000107 if (!mem->va)
108 return -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000109
Jesse Brandeburg93bc73b2013-09-13 08:23:18 +0000110 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000111}
112
113/**
114 * i40e_free_dma_mem_d - OS specific memory free for shared code
115 * @hw: pointer to the HW structure
116 * @mem: ptr to mem struct to free
117 **/
118int i40e_free_dma_mem_d(struct i40e_hw *hw, struct i40e_dma_mem *mem)
119{
120 struct i40e_pf *pf = (struct i40e_pf *)hw->back;
121
122 dma_free_coherent(&pf->pdev->dev, mem->size, mem->va, mem->pa);
123 mem->va = NULL;
124 mem->pa = 0;
125 mem->size = 0;
126
127 return 0;
128}
129
130/**
131 * i40e_allocate_virt_mem_d - OS specific memory alloc for shared code
132 * @hw: pointer to the HW structure
133 * @mem: ptr to mem struct to fill out
134 * @size: size of memory requested
135 **/
136int i40e_allocate_virt_mem_d(struct i40e_hw *hw, struct i40e_virt_mem *mem,
137 u32 size)
138{
139 mem->size = size;
140 mem->va = kzalloc(size, GFP_KERNEL);
141
Jesse Brandeburg93bc73b2013-09-13 08:23:18 +0000142 if (!mem->va)
143 return -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000144
Jesse Brandeburg93bc73b2013-09-13 08:23:18 +0000145 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000146}
147
148/**
149 * i40e_free_virt_mem_d - OS specific memory free for shared code
150 * @hw: pointer to the HW structure
151 * @mem: ptr to mem struct to free
152 **/
153int i40e_free_virt_mem_d(struct i40e_hw *hw, struct i40e_virt_mem *mem)
154{
155 /* it's ok to kfree a NULL pointer */
156 kfree(mem->va);
157 mem->va = NULL;
158 mem->size = 0;
159
160 return 0;
161}
162
163/**
164 * i40e_get_lump - find a lump of free generic resource
165 * @pf: board private structure
166 * @pile: the pile of resource to search
167 * @needed: the number of items needed
168 * @id: an owner id to stick on the items assigned
169 *
170 * Returns the base item index of the lump, or negative for error
171 *
172 * The search_hint trick and lack of advanced fit-finding only work
173 * because we're highly likely to have all the same size lump requests.
174 * Linear search time and any fragmentation should be minimal.
175 **/
176static int i40e_get_lump(struct i40e_pf *pf, struct i40e_lump_tracking *pile,
177 u16 needed, u16 id)
178{
179 int ret = -ENOMEM;
Jesse Brandeburgddf434a2013-09-13 08:23:19 +0000180 int i, j;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000181
182 if (!pile || needed == 0 || id >= I40E_PILE_VALID_BIT) {
183 dev_info(&pf->pdev->dev,
184 "param err: pile=%p needed=%d id=0x%04x\n",
185 pile, needed, id);
186 return -EINVAL;
187 }
188
189 /* start the linear search with an imperfect hint */
190 i = pile->search_hint;
Jesse Brandeburgddf434a2013-09-13 08:23:19 +0000191 while (i < pile->num_entries) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000192 /* skip already allocated entries */
193 if (pile->list[i] & I40E_PILE_VALID_BIT) {
194 i++;
195 continue;
196 }
197
198 /* do we have enough in this lump? */
199 for (j = 0; (j < needed) && ((i+j) < pile->num_entries); j++) {
200 if (pile->list[i+j] & I40E_PILE_VALID_BIT)
201 break;
202 }
203
204 if (j == needed) {
205 /* there was enough, so assign it to the requestor */
206 for (j = 0; j < needed; j++)
207 pile->list[i+j] = id | I40E_PILE_VALID_BIT;
208 ret = i;
209 pile->search_hint = i + j;
Jesse Brandeburgddf434a2013-09-13 08:23:19 +0000210 break;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000211 } else {
212 /* not enough, so skip over it and continue looking */
213 i += j;
214 }
215 }
216
217 return ret;
218}
219
220/**
221 * i40e_put_lump - return a lump of generic resource
222 * @pile: the pile of resource to search
223 * @index: the base item index
224 * @id: the owner id of the items assigned
225 *
226 * Returns the count of items in the lump
227 **/
228static int i40e_put_lump(struct i40e_lump_tracking *pile, u16 index, u16 id)
229{
230 int valid_id = (id | I40E_PILE_VALID_BIT);
231 int count = 0;
232 int i;
233
234 if (!pile || index >= pile->num_entries)
235 return -EINVAL;
236
237 for (i = index;
238 i < pile->num_entries && pile->list[i] == valid_id;
239 i++) {
240 pile->list[i] = 0;
241 count++;
242 }
243
244 if (count && index < pile->search_hint)
245 pile->search_hint = index;
246
247 return count;
248}
249
250/**
251 * i40e_service_event_schedule - Schedule the service task to wake up
252 * @pf: board private structure
253 *
254 * If not already scheduled, this puts the task into the work queue
255 **/
256static void i40e_service_event_schedule(struct i40e_pf *pf)
257{
258 if (!test_bit(__I40E_DOWN, &pf->state) &&
259 !test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state) &&
260 !test_and_set_bit(__I40E_SERVICE_SCHED, &pf->state))
261 schedule_work(&pf->service_task);
262}
263
264/**
265 * i40e_tx_timeout - Respond to a Tx Hang
266 * @netdev: network interface device structure
267 *
268 * If any port has noticed a Tx timeout, it is likely that the whole
269 * device is munged, not just the one netdev port, so go for the full
270 * reset.
271 **/
272static void i40e_tx_timeout(struct net_device *netdev)
273{
274 struct i40e_netdev_priv *np = netdev_priv(netdev);
275 struct i40e_vsi *vsi = np->vsi;
276 struct i40e_pf *pf = vsi->back;
277
278 pf->tx_timeout_count++;
279
280 if (time_after(jiffies, (pf->tx_timeout_last_recovery + HZ*20)))
Anjali Singhai Jain327fe042014-06-04 01:23:26 +0000281 pf->tx_timeout_recovery_level = 1;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000282 pf->tx_timeout_last_recovery = jiffies;
283 netdev_info(netdev, "tx_timeout recovery level %d\n",
284 pf->tx_timeout_recovery_level);
285
286 switch (pf->tx_timeout_recovery_level) {
287 case 0:
288 /* disable and re-enable queues for the VSI */
289 if (in_interrupt()) {
290 set_bit(__I40E_REINIT_REQUESTED, &pf->state);
291 set_bit(__I40E_REINIT_REQUESTED, &vsi->state);
292 } else {
293 i40e_vsi_reinit_locked(vsi);
294 }
295 break;
296 case 1:
297 set_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
298 break;
299 case 2:
300 set_bit(__I40E_CORE_RESET_REQUESTED, &pf->state);
301 break;
302 case 3:
303 set_bit(__I40E_GLOBAL_RESET_REQUESTED, &pf->state);
304 break;
305 default:
306 netdev_err(netdev, "tx_timeout recovery unsuccessful\n");
Neerav Parikhb5d06f02014-06-03 23:50:17 +0000307 set_bit(__I40E_DOWN_REQUESTED, &pf->state);
308 set_bit(__I40E_DOWN_REQUESTED, &vsi->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000309 break;
310 }
311 i40e_service_event_schedule(pf);
312 pf->tx_timeout_recovery_level++;
313}
314
315/**
316 * i40e_release_rx_desc - Store the new tail and head values
317 * @rx_ring: ring to bump
318 * @val: new head index
319 **/
320static inline void i40e_release_rx_desc(struct i40e_ring *rx_ring, u32 val)
321{
322 rx_ring->next_to_use = val;
323
324 /* Force memory writes to complete before letting h/w
325 * know there are new descriptors to fetch. (Only
326 * applicable for weak-ordered memory model archs,
327 * such as IA-64).
328 */
329 wmb();
330 writel(val, rx_ring->tail);
331}
332
333/**
334 * i40e_get_vsi_stats_struct - Get System Network Statistics
335 * @vsi: the VSI we care about
336 *
337 * Returns the address of the device statistics structure.
338 * The statistics are actually updated from the service task.
339 **/
340struct rtnl_link_stats64 *i40e_get_vsi_stats_struct(struct i40e_vsi *vsi)
341{
342 return &vsi->net_stats;
343}
344
345/**
346 * i40e_get_netdev_stats_struct - Get statistics for netdev interface
347 * @netdev: network interface device structure
348 *
349 * Returns the address of the device statistics structure.
350 * The statistics are actually updated from the service task.
351 **/
352static struct rtnl_link_stats64 *i40e_get_netdev_stats_struct(
353 struct net_device *netdev,
Alexander Duyck980e9b12013-09-28 06:01:03 +0000354 struct rtnl_link_stats64 *stats)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000355{
356 struct i40e_netdev_priv *np = netdev_priv(netdev);
Akeem G Abodunrine7046ee2014-04-09 05:58:58 +0000357 struct i40e_ring *tx_ring, *rx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000358 struct i40e_vsi *vsi = np->vsi;
Alexander Duyck980e9b12013-09-28 06:01:03 +0000359 struct rtnl_link_stats64 *vsi_stats = i40e_get_vsi_stats_struct(vsi);
360 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000361
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +0000362 if (test_bit(__I40E_DOWN, &vsi->state))
363 return stats;
364
Jesse Brandeburg3c325ce2013-12-14 03:26:45 -0800365 if (!vsi->tx_rings)
366 return stats;
367
Alexander Duyck980e9b12013-09-28 06:01:03 +0000368 rcu_read_lock();
369 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck980e9b12013-09-28 06:01:03 +0000370 u64 bytes, packets;
371 unsigned int start;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000372
Alexander Duyck980e9b12013-09-28 06:01:03 +0000373 tx_ring = ACCESS_ONCE(vsi->tx_rings[i]);
374 if (!tx_ring)
375 continue;
376
377 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -0700378 start = u64_stats_fetch_begin_irq(&tx_ring->syncp);
Alexander Duyck980e9b12013-09-28 06:01:03 +0000379 packets = tx_ring->stats.packets;
380 bytes = tx_ring->stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -0700381 } while (u64_stats_fetch_retry_irq(&tx_ring->syncp, start));
Alexander Duyck980e9b12013-09-28 06:01:03 +0000382
383 stats->tx_packets += packets;
384 stats->tx_bytes += bytes;
385 rx_ring = &tx_ring[1];
386
387 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -0700388 start = u64_stats_fetch_begin_irq(&rx_ring->syncp);
Alexander Duyck980e9b12013-09-28 06:01:03 +0000389 packets = rx_ring->stats.packets;
390 bytes = rx_ring->stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -0700391 } while (u64_stats_fetch_retry_irq(&rx_ring->syncp, start));
Alexander Duyck980e9b12013-09-28 06:01:03 +0000392
393 stats->rx_packets += packets;
394 stats->rx_bytes += bytes;
395 }
396 rcu_read_unlock();
397
Akeem G Abodunrina5282f42014-05-10 04:49:03 +0000398 /* following stats updated by i40e_watchdog_subtask() */
Alexander Duyck980e9b12013-09-28 06:01:03 +0000399 stats->multicast = vsi_stats->multicast;
400 stats->tx_errors = vsi_stats->tx_errors;
401 stats->tx_dropped = vsi_stats->tx_dropped;
402 stats->rx_errors = vsi_stats->rx_errors;
403 stats->rx_crc_errors = vsi_stats->rx_crc_errors;
404 stats->rx_length_errors = vsi_stats->rx_length_errors;
405
406 return stats;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000407}
408
409/**
410 * i40e_vsi_reset_stats - Resets all stats of the given vsi
411 * @vsi: the VSI to have its stats reset
412 **/
413void i40e_vsi_reset_stats(struct i40e_vsi *vsi)
414{
415 struct rtnl_link_stats64 *ns;
416 int i;
417
418 if (!vsi)
419 return;
420
421 ns = i40e_get_vsi_stats_struct(vsi);
422 memset(ns, 0, sizeof(*ns));
423 memset(&vsi->net_stats_offsets, 0, sizeof(vsi->net_stats_offsets));
424 memset(&vsi->eth_stats, 0, sizeof(vsi->eth_stats));
425 memset(&vsi->eth_stats_offsets, 0, sizeof(vsi->eth_stats_offsets));
Greg Rose8e9dca52013-12-18 13:45:53 +0000426 if (vsi->rx_rings && vsi->rx_rings[0]) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000427 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e15b2013-09-28 06:00:58 +0000428 memset(&vsi->rx_rings[i]->stats, 0 ,
429 sizeof(vsi->rx_rings[i]->stats));
430 memset(&vsi->rx_rings[i]->rx_stats, 0 ,
431 sizeof(vsi->rx_rings[i]->rx_stats));
432 memset(&vsi->tx_rings[i]->stats, 0 ,
433 sizeof(vsi->tx_rings[i]->stats));
434 memset(&vsi->tx_rings[i]->tx_stats, 0,
435 sizeof(vsi->tx_rings[i]->tx_stats));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000436 }
Greg Rose8e9dca52013-12-18 13:45:53 +0000437 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000438 vsi->stat_offsets_loaded = false;
439}
440
441/**
442 * i40e_pf_reset_stats - Reset all of the stats for the given pf
443 * @pf: the PF to be reset
444 **/
445void i40e_pf_reset_stats(struct i40e_pf *pf)
446{
Shannon Nelsone91fdf72014-06-03 23:50:18 +0000447 int i;
448
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000449 memset(&pf->stats, 0, sizeof(pf->stats));
450 memset(&pf->stats_offsets, 0, sizeof(pf->stats_offsets));
451 pf->stat_offsets_loaded = false;
Shannon Nelsone91fdf72014-06-03 23:50:18 +0000452
453 for (i = 0; i < I40E_MAX_VEB; i++) {
454 if (pf->veb[i]) {
455 memset(&pf->veb[i]->stats, 0,
456 sizeof(pf->veb[i]->stats));
457 memset(&pf->veb[i]->stats_offsets, 0,
458 sizeof(pf->veb[i]->stats_offsets));
459 pf->veb[i]->stat_offsets_loaded = false;
460 }
461 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000462}
463
464/**
465 * i40e_stat_update48 - read and update a 48 bit stat from the chip
466 * @hw: ptr to the hardware info
467 * @hireg: the high 32 bit reg to read
468 * @loreg: the low 32 bit reg to read
469 * @offset_loaded: has the initial offset been loaded yet
470 * @offset: ptr to current offset value
471 * @stat: ptr to the stat
472 *
473 * Since the device stats are not reset at PFReset, they likely will not
474 * be zeroed when the driver starts. We'll save the first values read
475 * and use them as offsets to be subtracted from the raw values in order
476 * to report stats that count from zero. In the process, we also manage
477 * the potential roll-over.
478 **/
479static void i40e_stat_update48(struct i40e_hw *hw, u32 hireg, u32 loreg,
480 bool offset_loaded, u64 *offset, u64 *stat)
481{
482 u64 new_data;
483
Shannon Nelsonab600852014-01-17 15:36:39 -0800484 if (hw->device_id == I40E_DEV_ID_QEMU) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000485 new_data = rd32(hw, loreg);
486 new_data |= ((u64)(rd32(hw, hireg) & 0xFFFF)) << 32;
487 } else {
488 new_data = rd64(hw, loreg);
489 }
490 if (!offset_loaded)
491 *offset = new_data;
492 if (likely(new_data >= *offset))
493 *stat = new_data - *offset;
494 else
495 *stat = (new_data + ((u64)1 << 48)) - *offset;
496 *stat &= 0xFFFFFFFFFFFFULL;
497}
498
499/**
500 * i40e_stat_update32 - read and update a 32 bit stat from the chip
501 * @hw: ptr to the hardware info
502 * @reg: the hw reg to read
503 * @offset_loaded: has the initial offset been loaded yet
504 * @offset: ptr to current offset value
505 * @stat: ptr to the stat
506 **/
507static void i40e_stat_update32(struct i40e_hw *hw, u32 reg,
508 bool offset_loaded, u64 *offset, u64 *stat)
509{
510 u32 new_data;
511
512 new_data = rd32(hw, reg);
513 if (!offset_loaded)
514 *offset = new_data;
515 if (likely(new_data >= *offset))
516 *stat = (u32)(new_data - *offset);
517 else
518 *stat = (u32)((new_data + ((u64)1 << 32)) - *offset);
519}
520
521/**
522 * i40e_update_eth_stats - Update VSI-specific ethernet statistics counters.
523 * @vsi: the VSI to be updated
524 **/
525void i40e_update_eth_stats(struct i40e_vsi *vsi)
526{
527 int stat_idx = le16_to_cpu(vsi->info.stat_counter_idx);
528 struct i40e_pf *pf = vsi->back;
529 struct i40e_hw *hw = &pf->hw;
530 struct i40e_eth_stats *oes;
531 struct i40e_eth_stats *es; /* device's eth stats */
532
533 es = &vsi->eth_stats;
534 oes = &vsi->eth_stats_offsets;
535
536 /* Gather up the stats that the hw collects */
537 i40e_stat_update32(hw, I40E_GLV_TEPC(stat_idx),
538 vsi->stat_offsets_loaded,
539 &oes->tx_errors, &es->tx_errors);
540 i40e_stat_update32(hw, I40E_GLV_RDPC(stat_idx),
541 vsi->stat_offsets_loaded,
542 &oes->rx_discards, &es->rx_discards);
Shannon Nelson41a9e552014-04-23 04:50:20 +0000543 i40e_stat_update32(hw, I40E_GLV_RUPP(stat_idx),
544 vsi->stat_offsets_loaded,
545 &oes->rx_unknown_protocol, &es->rx_unknown_protocol);
546 i40e_stat_update32(hw, I40E_GLV_TEPC(stat_idx),
547 vsi->stat_offsets_loaded,
548 &oes->tx_errors, &es->tx_errors);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000549
550 i40e_stat_update48(hw, I40E_GLV_GORCH(stat_idx),
551 I40E_GLV_GORCL(stat_idx),
552 vsi->stat_offsets_loaded,
553 &oes->rx_bytes, &es->rx_bytes);
554 i40e_stat_update48(hw, I40E_GLV_UPRCH(stat_idx),
555 I40E_GLV_UPRCL(stat_idx),
556 vsi->stat_offsets_loaded,
557 &oes->rx_unicast, &es->rx_unicast);
558 i40e_stat_update48(hw, I40E_GLV_MPRCH(stat_idx),
559 I40E_GLV_MPRCL(stat_idx),
560 vsi->stat_offsets_loaded,
561 &oes->rx_multicast, &es->rx_multicast);
562 i40e_stat_update48(hw, I40E_GLV_BPRCH(stat_idx),
563 I40E_GLV_BPRCL(stat_idx),
564 vsi->stat_offsets_loaded,
565 &oes->rx_broadcast, &es->rx_broadcast);
566
567 i40e_stat_update48(hw, I40E_GLV_GOTCH(stat_idx),
568 I40E_GLV_GOTCL(stat_idx),
569 vsi->stat_offsets_loaded,
570 &oes->tx_bytes, &es->tx_bytes);
571 i40e_stat_update48(hw, I40E_GLV_UPTCH(stat_idx),
572 I40E_GLV_UPTCL(stat_idx),
573 vsi->stat_offsets_loaded,
574 &oes->tx_unicast, &es->tx_unicast);
575 i40e_stat_update48(hw, I40E_GLV_MPTCH(stat_idx),
576 I40E_GLV_MPTCL(stat_idx),
577 vsi->stat_offsets_loaded,
578 &oes->tx_multicast, &es->tx_multicast);
579 i40e_stat_update48(hw, I40E_GLV_BPTCH(stat_idx),
580 I40E_GLV_BPTCL(stat_idx),
581 vsi->stat_offsets_loaded,
582 &oes->tx_broadcast, &es->tx_broadcast);
583 vsi->stat_offsets_loaded = true;
584}
585
586/**
587 * i40e_update_veb_stats - Update Switch component statistics
588 * @veb: the VEB being updated
589 **/
590static void i40e_update_veb_stats(struct i40e_veb *veb)
591{
592 struct i40e_pf *pf = veb->pf;
593 struct i40e_hw *hw = &pf->hw;
594 struct i40e_eth_stats *oes;
595 struct i40e_eth_stats *es; /* device's eth stats */
596 int idx = 0;
597
598 idx = veb->stats_idx;
599 es = &veb->stats;
600 oes = &veb->stats_offsets;
601
602 /* Gather up the stats that the hw collects */
603 i40e_stat_update32(hw, I40E_GLSW_TDPC(idx),
604 veb->stat_offsets_loaded,
605 &oes->tx_discards, &es->tx_discards);
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +0000606 if (hw->revision_id > 0)
607 i40e_stat_update32(hw, I40E_GLSW_RUPP(idx),
608 veb->stat_offsets_loaded,
609 &oes->rx_unknown_protocol,
610 &es->rx_unknown_protocol);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000611 i40e_stat_update48(hw, I40E_GLSW_GORCH(idx), I40E_GLSW_GORCL(idx),
612 veb->stat_offsets_loaded,
613 &oes->rx_bytes, &es->rx_bytes);
614 i40e_stat_update48(hw, I40E_GLSW_UPRCH(idx), I40E_GLSW_UPRCL(idx),
615 veb->stat_offsets_loaded,
616 &oes->rx_unicast, &es->rx_unicast);
617 i40e_stat_update48(hw, I40E_GLSW_MPRCH(idx), I40E_GLSW_MPRCL(idx),
618 veb->stat_offsets_loaded,
619 &oes->rx_multicast, &es->rx_multicast);
620 i40e_stat_update48(hw, I40E_GLSW_BPRCH(idx), I40E_GLSW_BPRCL(idx),
621 veb->stat_offsets_loaded,
622 &oes->rx_broadcast, &es->rx_broadcast);
623
624 i40e_stat_update48(hw, I40E_GLSW_GOTCH(idx), I40E_GLSW_GOTCL(idx),
625 veb->stat_offsets_loaded,
626 &oes->tx_bytes, &es->tx_bytes);
627 i40e_stat_update48(hw, I40E_GLSW_UPTCH(idx), I40E_GLSW_UPTCL(idx),
628 veb->stat_offsets_loaded,
629 &oes->tx_unicast, &es->tx_unicast);
630 i40e_stat_update48(hw, I40E_GLSW_MPTCH(idx), I40E_GLSW_MPTCL(idx),
631 veb->stat_offsets_loaded,
632 &oes->tx_multicast, &es->tx_multicast);
633 i40e_stat_update48(hw, I40E_GLSW_BPTCH(idx), I40E_GLSW_BPTCL(idx),
634 veb->stat_offsets_loaded,
635 &oes->tx_broadcast, &es->tx_broadcast);
636 veb->stat_offsets_loaded = true;
637}
638
639/**
640 * i40e_update_link_xoff_rx - Update XOFF received in link flow control mode
641 * @pf: the corresponding PF
642 *
643 * Update the Rx XOFF counter (PAUSE frames) in link flow control mode
644 **/
645static void i40e_update_link_xoff_rx(struct i40e_pf *pf)
646{
647 struct i40e_hw_port_stats *osd = &pf->stats_offsets;
648 struct i40e_hw_port_stats *nsd = &pf->stats;
649 struct i40e_hw *hw = &pf->hw;
650 u64 xoff = 0;
651 u16 i, v;
652
653 if ((hw->fc.current_mode != I40E_FC_FULL) &&
654 (hw->fc.current_mode != I40E_FC_RX_PAUSE))
655 return;
656
657 xoff = nsd->link_xoff_rx;
658 i40e_stat_update32(hw, I40E_GLPRT_LXOFFRXC(hw->port),
659 pf->stat_offsets_loaded,
660 &osd->link_xoff_rx, &nsd->link_xoff_rx);
661
662 /* No new LFC xoff rx */
663 if (!(nsd->link_xoff_rx - xoff))
664 return;
665
666 /* Clear the __I40E_HANG_CHECK_ARMED bit for all Tx rings */
Mitch Williams505682c2014-05-20 08:01:37 +0000667 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000668 struct i40e_vsi *vsi = pf->vsi[v];
669
Mitch Williamsddfda802014-05-10 04:49:10 +0000670 if (!vsi || !vsi->tx_rings[0])
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000671 continue;
672
673 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e15b2013-09-28 06:00:58 +0000674 struct i40e_ring *ring = vsi->tx_rings[i];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000675 clear_bit(__I40E_HANG_CHECK_ARMED, &ring->state);
676 }
677 }
678}
679
680/**
681 * i40e_update_prio_xoff_rx - Update XOFF received in PFC mode
682 * @pf: the corresponding PF
683 *
684 * Update the Rx XOFF counter (PAUSE frames) in PFC mode
685 **/
686static void i40e_update_prio_xoff_rx(struct i40e_pf *pf)
687{
688 struct i40e_hw_port_stats *osd = &pf->stats_offsets;
689 struct i40e_hw_port_stats *nsd = &pf->stats;
690 bool xoff[I40E_MAX_TRAFFIC_CLASS] = {false};
691 struct i40e_dcbx_config *dcb_cfg;
692 struct i40e_hw *hw = &pf->hw;
693 u16 i, v;
694 u8 tc;
695
696 dcb_cfg = &hw->local_dcbx_config;
697
698 /* See if DCB enabled with PFC TC */
699 if (!(pf->flags & I40E_FLAG_DCB_ENABLED) ||
700 !(dcb_cfg->pfc.pfcenable)) {
701 i40e_update_link_xoff_rx(pf);
702 return;
703 }
704
705 for (i = 0; i < I40E_MAX_USER_PRIORITY; i++) {
706 u64 prio_xoff = nsd->priority_xoff_rx[i];
707 i40e_stat_update32(hw, I40E_GLPRT_PXOFFRXC(hw->port, i),
708 pf->stat_offsets_loaded,
709 &osd->priority_xoff_rx[i],
710 &nsd->priority_xoff_rx[i]);
711
712 /* No new PFC xoff rx */
713 if (!(nsd->priority_xoff_rx[i] - prio_xoff))
714 continue;
715 /* Get the TC for given priority */
716 tc = dcb_cfg->etscfg.prioritytable[i];
717 xoff[tc] = true;
718 }
719
720 /* Clear the __I40E_HANG_CHECK_ARMED bit for Tx rings */
Mitch Williams505682c2014-05-20 08:01:37 +0000721 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000722 struct i40e_vsi *vsi = pf->vsi[v];
723
Mitch Williamsddfda802014-05-10 04:49:10 +0000724 if (!vsi || !vsi->tx_rings[0])
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000725 continue;
726
727 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e15b2013-09-28 06:00:58 +0000728 struct i40e_ring *ring = vsi->tx_rings[i];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000729
730 tc = ring->dcb_tc;
731 if (xoff[tc])
732 clear_bit(__I40E_HANG_CHECK_ARMED,
733 &ring->state);
734 }
735 }
736}
737
738/**
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000739 * i40e_update_vsi_stats - Update the vsi statistics counters.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000740 * @vsi: the VSI to be updated
741 *
742 * There are a few instances where we store the same stat in a
743 * couple of different structs. This is partly because we have
744 * the netdev stats that need to be filled out, which is slightly
745 * different from the "eth_stats" defined by the chip and used in
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000746 * VF communications. We sort it out here.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000747 **/
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000748static void i40e_update_vsi_stats(struct i40e_vsi *vsi)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000749{
750 struct i40e_pf *pf = vsi->back;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000751 struct rtnl_link_stats64 *ons;
752 struct rtnl_link_stats64 *ns; /* netdev stats */
753 struct i40e_eth_stats *oes;
754 struct i40e_eth_stats *es; /* device's eth stats */
755 u32 tx_restart, tx_busy;
756 u32 rx_page, rx_buf;
757 u64 rx_p, rx_b;
758 u64 tx_p, tx_b;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000759 u16 q;
760
761 if (test_bit(__I40E_DOWN, &vsi->state) ||
762 test_bit(__I40E_CONFIG_BUSY, &pf->state))
763 return;
764
765 ns = i40e_get_vsi_stats_struct(vsi);
766 ons = &vsi->net_stats_offsets;
767 es = &vsi->eth_stats;
768 oes = &vsi->eth_stats_offsets;
769
770 /* Gather up the netdev and vsi stats that the driver collects
771 * on the fly during packet processing
772 */
773 rx_b = rx_p = 0;
774 tx_b = tx_p = 0;
775 tx_restart = tx_busy = 0;
776 rx_page = 0;
777 rx_buf = 0;
Alexander Duyck980e9b12013-09-28 06:01:03 +0000778 rcu_read_lock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000779 for (q = 0; q < vsi->num_queue_pairs; q++) {
780 struct i40e_ring *p;
Alexander Duyck980e9b12013-09-28 06:01:03 +0000781 u64 bytes, packets;
782 unsigned int start;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000783
Alexander Duyck980e9b12013-09-28 06:01:03 +0000784 /* locate Tx ring */
785 p = ACCESS_ONCE(vsi->tx_rings[q]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000786
Alexander Duyck980e9b12013-09-28 06:01:03 +0000787 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -0700788 start = u64_stats_fetch_begin_irq(&p->syncp);
Alexander Duyck980e9b12013-09-28 06:01:03 +0000789 packets = p->stats.packets;
790 bytes = p->stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -0700791 } while (u64_stats_fetch_retry_irq(&p->syncp, start));
Alexander Duyck980e9b12013-09-28 06:01:03 +0000792 tx_b += bytes;
793 tx_p += packets;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000794 tx_restart += p->tx_stats.restart_queue;
795 tx_busy += p->tx_stats.tx_busy;
Alexander Duyck980e9b12013-09-28 06:01:03 +0000796
797 /* Rx queue is part of the same block as Tx queue */
798 p = &p[1];
799 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -0700800 start = u64_stats_fetch_begin_irq(&p->syncp);
Alexander Duyck980e9b12013-09-28 06:01:03 +0000801 packets = p->stats.packets;
802 bytes = p->stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -0700803 } while (u64_stats_fetch_retry_irq(&p->syncp, start));
Alexander Duyck980e9b12013-09-28 06:01:03 +0000804 rx_b += bytes;
805 rx_p += packets;
Mitch Williams420136c2013-12-18 13:45:59 +0000806 rx_buf += p->rx_stats.alloc_buff_failed;
807 rx_page += p->rx_stats.alloc_page_failed;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000808 }
Alexander Duyck980e9b12013-09-28 06:01:03 +0000809 rcu_read_unlock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000810 vsi->tx_restart = tx_restart;
811 vsi->tx_busy = tx_busy;
812 vsi->rx_page_failed = rx_page;
813 vsi->rx_buf_failed = rx_buf;
814
815 ns->rx_packets = rx_p;
816 ns->rx_bytes = rx_b;
817 ns->tx_packets = tx_p;
818 ns->tx_bytes = tx_b;
819
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000820 /* update netdev stats from eth stats */
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000821 i40e_update_eth_stats(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000822 ons->tx_errors = oes->tx_errors;
823 ns->tx_errors = es->tx_errors;
824 ons->multicast = oes->rx_multicast;
825 ns->multicast = es->rx_multicast;
Shannon Nelson41a9e552014-04-23 04:50:20 +0000826 ons->rx_dropped = oes->rx_discards;
827 ns->rx_dropped = es->rx_discards;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000828 ons->tx_dropped = oes->tx_discards;
829 ns->tx_dropped = es->tx_discards;
830
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000831 /* pull in a couple PF stats if this is the main vsi */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000832 if (vsi == pf->vsi[pf->lan_vsi]) {
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000833 ns->rx_crc_errors = pf->stats.crc_errors;
834 ns->rx_errors = pf->stats.crc_errors + pf->stats.illegal_bytes;
835 ns->rx_length_errors = pf->stats.rx_length_errors;
836 }
837}
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000838
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000839/**
840 * i40e_update_pf_stats - Update the pf statistics counters.
841 * @pf: the PF to be updated
842 **/
843static void i40e_update_pf_stats(struct i40e_pf *pf)
844{
845 struct i40e_hw_port_stats *osd = &pf->stats_offsets;
846 struct i40e_hw_port_stats *nsd = &pf->stats;
847 struct i40e_hw *hw = &pf->hw;
848 u32 val;
849 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000850
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000851 i40e_stat_update48(hw, I40E_GLPRT_GORCH(hw->port),
852 I40E_GLPRT_GORCL(hw->port),
853 pf->stat_offsets_loaded,
854 &osd->eth.rx_bytes, &nsd->eth.rx_bytes);
855 i40e_stat_update48(hw, I40E_GLPRT_GOTCH(hw->port),
856 I40E_GLPRT_GOTCL(hw->port),
857 pf->stat_offsets_loaded,
858 &osd->eth.tx_bytes, &nsd->eth.tx_bytes);
859 i40e_stat_update32(hw, I40E_GLPRT_RDPC(hw->port),
860 pf->stat_offsets_loaded,
861 &osd->eth.rx_discards,
862 &nsd->eth.rx_discards);
863 i40e_stat_update32(hw, I40E_GLPRT_TDPC(hw->port),
864 pf->stat_offsets_loaded,
865 &osd->eth.tx_discards,
866 &nsd->eth.tx_discards);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000867
Shannon Nelson532d2832014-04-23 04:50:09 +0000868 i40e_stat_update48(hw, I40E_GLPRT_UPRCH(hw->port),
869 I40E_GLPRT_UPRCL(hw->port),
870 pf->stat_offsets_loaded,
871 &osd->eth.rx_unicast,
872 &nsd->eth.rx_unicast);
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000873 i40e_stat_update48(hw, I40E_GLPRT_MPRCH(hw->port),
874 I40E_GLPRT_MPRCL(hw->port),
875 pf->stat_offsets_loaded,
876 &osd->eth.rx_multicast,
877 &nsd->eth.rx_multicast);
Shannon Nelson532d2832014-04-23 04:50:09 +0000878 i40e_stat_update48(hw, I40E_GLPRT_BPRCH(hw->port),
879 I40E_GLPRT_BPRCL(hw->port),
880 pf->stat_offsets_loaded,
881 &osd->eth.rx_broadcast,
882 &nsd->eth.rx_broadcast);
883 i40e_stat_update48(hw, I40E_GLPRT_UPTCH(hw->port),
884 I40E_GLPRT_UPTCL(hw->port),
885 pf->stat_offsets_loaded,
886 &osd->eth.tx_unicast,
887 &nsd->eth.tx_unicast);
888 i40e_stat_update48(hw, I40E_GLPRT_MPTCH(hw->port),
889 I40E_GLPRT_MPTCL(hw->port),
890 pf->stat_offsets_loaded,
891 &osd->eth.tx_multicast,
892 &nsd->eth.tx_multicast);
893 i40e_stat_update48(hw, I40E_GLPRT_BPTCH(hw->port),
894 I40E_GLPRT_BPTCL(hw->port),
895 pf->stat_offsets_loaded,
896 &osd->eth.tx_broadcast,
897 &nsd->eth.tx_broadcast);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000898
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000899 i40e_stat_update32(hw, I40E_GLPRT_TDOLD(hw->port),
900 pf->stat_offsets_loaded,
901 &osd->tx_dropped_link_down,
902 &nsd->tx_dropped_link_down);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000903
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000904 i40e_stat_update32(hw, I40E_GLPRT_CRCERRS(hw->port),
905 pf->stat_offsets_loaded,
906 &osd->crc_errors, &nsd->crc_errors);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000907
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000908 i40e_stat_update32(hw, I40E_GLPRT_ILLERRC(hw->port),
909 pf->stat_offsets_loaded,
910 &osd->illegal_bytes, &nsd->illegal_bytes);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000911
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000912 i40e_stat_update32(hw, I40E_GLPRT_MLFC(hw->port),
913 pf->stat_offsets_loaded,
914 &osd->mac_local_faults,
915 &nsd->mac_local_faults);
916 i40e_stat_update32(hw, I40E_GLPRT_MRFC(hw->port),
917 pf->stat_offsets_loaded,
918 &osd->mac_remote_faults,
919 &nsd->mac_remote_faults);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000920
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000921 i40e_stat_update32(hw, I40E_GLPRT_RLEC(hw->port),
922 pf->stat_offsets_loaded,
923 &osd->rx_length_errors,
924 &nsd->rx_length_errors);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000925
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000926 i40e_stat_update32(hw, I40E_GLPRT_LXONRXC(hw->port),
927 pf->stat_offsets_loaded,
928 &osd->link_xon_rx, &nsd->link_xon_rx);
929 i40e_stat_update32(hw, I40E_GLPRT_LXONTXC(hw->port),
930 pf->stat_offsets_loaded,
931 &osd->link_xon_tx, &nsd->link_xon_tx);
932 i40e_update_prio_xoff_rx(pf); /* handles I40E_GLPRT_LXOFFRXC */
933 i40e_stat_update32(hw, I40E_GLPRT_LXOFFTXC(hw->port),
934 pf->stat_offsets_loaded,
935 &osd->link_xoff_tx, &nsd->link_xoff_tx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000936
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000937 for (i = 0; i < 8; i++) {
938 i40e_stat_update32(hw, I40E_GLPRT_PXONRXC(hw->port, i),
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000939 pf->stat_offsets_loaded,
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000940 &osd->priority_xon_rx[i],
941 &nsd->priority_xon_rx[i]);
942 i40e_stat_update32(hw, I40E_GLPRT_PXONTXC(hw->port, i),
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000943 pf->stat_offsets_loaded,
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000944 &osd->priority_xon_tx[i],
945 &nsd->priority_xon_tx[i]);
946 i40e_stat_update32(hw, I40E_GLPRT_PXOFFTXC(hw->port, i),
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000947 pf->stat_offsets_loaded,
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000948 &osd->priority_xoff_tx[i],
949 &nsd->priority_xoff_tx[i]);
950 i40e_stat_update32(hw,
951 I40E_GLPRT_RXON2OFFCNT(hw->port, i),
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000952 pf->stat_offsets_loaded,
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000953 &osd->priority_xon_2_xoff[i],
954 &nsd->priority_xon_2_xoff[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000955 }
956
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000957 i40e_stat_update48(hw, I40E_GLPRT_PRC64H(hw->port),
958 I40E_GLPRT_PRC64L(hw->port),
959 pf->stat_offsets_loaded,
960 &osd->rx_size_64, &nsd->rx_size_64);
961 i40e_stat_update48(hw, I40E_GLPRT_PRC127H(hw->port),
962 I40E_GLPRT_PRC127L(hw->port),
963 pf->stat_offsets_loaded,
964 &osd->rx_size_127, &nsd->rx_size_127);
965 i40e_stat_update48(hw, I40E_GLPRT_PRC255H(hw->port),
966 I40E_GLPRT_PRC255L(hw->port),
967 pf->stat_offsets_loaded,
968 &osd->rx_size_255, &nsd->rx_size_255);
969 i40e_stat_update48(hw, I40E_GLPRT_PRC511H(hw->port),
970 I40E_GLPRT_PRC511L(hw->port),
971 pf->stat_offsets_loaded,
972 &osd->rx_size_511, &nsd->rx_size_511);
973 i40e_stat_update48(hw, I40E_GLPRT_PRC1023H(hw->port),
974 I40E_GLPRT_PRC1023L(hw->port),
975 pf->stat_offsets_loaded,
976 &osd->rx_size_1023, &nsd->rx_size_1023);
977 i40e_stat_update48(hw, I40E_GLPRT_PRC1522H(hw->port),
978 I40E_GLPRT_PRC1522L(hw->port),
979 pf->stat_offsets_loaded,
980 &osd->rx_size_1522, &nsd->rx_size_1522);
981 i40e_stat_update48(hw, I40E_GLPRT_PRC9522H(hw->port),
982 I40E_GLPRT_PRC9522L(hw->port),
983 pf->stat_offsets_loaded,
984 &osd->rx_size_big, &nsd->rx_size_big);
985
986 i40e_stat_update48(hw, I40E_GLPRT_PTC64H(hw->port),
987 I40E_GLPRT_PTC64L(hw->port),
988 pf->stat_offsets_loaded,
989 &osd->tx_size_64, &nsd->tx_size_64);
990 i40e_stat_update48(hw, I40E_GLPRT_PTC127H(hw->port),
991 I40E_GLPRT_PTC127L(hw->port),
992 pf->stat_offsets_loaded,
993 &osd->tx_size_127, &nsd->tx_size_127);
994 i40e_stat_update48(hw, I40E_GLPRT_PTC255H(hw->port),
995 I40E_GLPRT_PTC255L(hw->port),
996 pf->stat_offsets_loaded,
997 &osd->tx_size_255, &nsd->tx_size_255);
998 i40e_stat_update48(hw, I40E_GLPRT_PTC511H(hw->port),
999 I40E_GLPRT_PTC511L(hw->port),
1000 pf->stat_offsets_loaded,
1001 &osd->tx_size_511, &nsd->tx_size_511);
1002 i40e_stat_update48(hw, I40E_GLPRT_PTC1023H(hw->port),
1003 I40E_GLPRT_PTC1023L(hw->port),
1004 pf->stat_offsets_loaded,
1005 &osd->tx_size_1023, &nsd->tx_size_1023);
1006 i40e_stat_update48(hw, I40E_GLPRT_PTC1522H(hw->port),
1007 I40E_GLPRT_PTC1522L(hw->port),
1008 pf->stat_offsets_loaded,
1009 &osd->tx_size_1522, &nsd->tx_size_1522);
1010 i40e_stat_update48(hw, I40E_GLPRT_PTC9522H(hw->port),
1011 I40E_GLPRT_PTC9522L(hw->port),
1012 pf->stat_offsets_loaded,
1013 &osd->tx_size_big, &nsd->tx_size_big);
1014
1015 i40e_stat_update32(hw, I40E_GLPRT_RUC(hw->port),
1016 pf->stat_offsets_loaded,
1017 &osd->rx_undersize, &nsd->rx_undersize);
1018 i40e_stat_update32(hw, I40E_GLPRT_RFC(hw->port),
1019 pf->stat_offsets_loaded,
1020 &osd->rx_fragments, &nsd->rx_fragments);
1021 i40e_stat_update32(hw, I40E_GLPRT_ROC(hw->port),
1022 pf->stat_offsets_loaded,
1023 &osd->rx_oversize, &nsd->rx_oversize);
1024 i40e_stat_update32(hw, I40E_GLPRT_RJC(hw->port),
1025 pf->stat_offsets_loaded,
1026 &osd->rx_jabber, &nsd->rx_jabber);
1027
Anjali Singhai Jain433c47d2014-05-22 06:32:17 +00001028 /* FDIR stats */
1029 i40e_stat_update32(hw, I40E_GLQF_PCNT(pf->fd_atr_cnt_idx),
1030 pf->stat_offsets_loaded,
1031 &osd->fd_atr_match, &nsd->fd_atr_match);
1032 i40e_stat_update32(hw, I40E_GLQF_PCNT(pf->fd_sb_cnt_idx),
1033 pf->stat_offsets_loaded,
1034 &osd->fd_sb_match, &nsd->fd_sb_match);
1035
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001036 val = rd32(hw, I40E_PRTPM_EEE_STAT);
1037 nsd->tx_lpi_status =
1038 (val & I40E_PRTPM_EEE_STAT_TX_LPI_STATUS_MASK) >>
1039 I40E_PRTPM_EEE_STAT_TX_LPI_STATUS_SHIFT;
1040 nsd->rx_lpi_status =
1041 (val & I40E_PRTPM_EEE_STAT_RX_LPI_STATUS_MASK) >>
1042 I40E_PRTPM_EEE_STAT_RX_LPI_STATUS_SHIFT;
1043 i40e_stat_update32(hw, I40E_PRTPM_TLPIC,
1044 pf->stat_offsets_loaded,
1045 &osd->tx_lpi_count, &nsd->tx_lpi_count);
1046 i40e_stat_update32(hw, I40E_PRTPM_RLPIC,
1047 pf->stat_offsets_loaded,
1048 &osd->rx_lpi_count, &nsd->rx_lpi_count);
1049
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001050 pf->stat_offsets_loaded = true;
1051}
1052
1053/**
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001054 * i40e_update_stats - Update the various statistics counters.
1055 * @vsi: the VSI to be updated
1056 *
1057 * Update the various stats for this VSI and its related entities.
1058 **/
1059void i40e_update_stats(struct i40e_vsi *vsi)
1060{
1061 struct i40e_pf *pf = vsi->back;
1062
1063 if (vsi == pf->vsi[pf->lan_vsi])
1064 i40e_update_pf_stats(pf);
1065
1066 i40e_update_vsi_stats(vsi);
1067}
1068
1069/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001070 * i40e_find_filter - Search VSI filter list for specific mac/vlan filter
1071 * @vsi: the VSI to be searched
1072 * @macaddr: the MAC address
1073 * @vlan: the vlan
1074 * @is_vf: make sure its a vf filter, else doesn't matter
1075 * @is_netdev: make sure its a netdev filter, else doesn't matter
1076 *
1077 * Returns ptr to the filter object or NULL
1078 **/
1079static struct i40e_mac_filter *i40e_find_filter(struct i40e_vsi *vsi,
1080 u8 *macaddr, s16 vlan,
1081 bool is_vf, bool is_netdev)
1082{
1083 struct i40e_mac_filter *f;
1084
1085 if (!vsi || !macaddr)
1086 return NULL;
1087
1088 list_for_each_entry(f, &vsi->mac_filter_list, list) {
1089 if ((ether_addr_equal(macaddr, f->macaddr)) &&
1090 (vlan == f->vlan) &&
1091 (!is_vf || f->is_vf) &&
1092 (!is_netdev || f->is_netdev))
1093 return f;
1094 }
1095 return NULL;
1096}
1097
1098/**
1099 * i40e_find_mac - Find a mac addr in the macvlan filters list
1100 * @vsi: the VSI to be searched
1101 * @macaddr: the MAC address we are searching for
1102 * @is_vf: make sure its a vf filter, else doesn't matter
1103 * @is_netdev: make sure its a netdev filter, else doesn't matter
1104 *
1105 * Returns the first filter with the provided MAC address or NULL if
1106 * MAC address was not found
1107 **/
1108struct i40e_mac_filter *i40e_find_mac(struct i40e_vsi *vsi, u8 *macaddr,
1109 bool is_vf, bool is_netdev)
1110{
1111 struct i40e_mac_filter *f;
1112
1113 if (!vsi || !macaddr)
1114 return NULL;
1115
1116 list_for_each_entry(f, &vsi->mac_filter_list, list) {
1117 if ((ether_addr_equal(macaddr, f->macaddr)) &&
1118 (!is_vf || f->is_vf) &&
1119 (!is_netdev || f->is_netdev))
1120 return f;
1121 }
1122 return NULL;
1123}
1124
1125/**
1126 * i40e_is_vsi_in_vlan - Check if VSI is in vlan mode
1127 * @vsi: the VSI to be searched
1128 *
1129 * Returns true if VSI is in vlan mode or false otherwise
1130 **/
1131bool i40e_is_vsi_in_vlan(struct i40e_vsi *vsi)
1132{
1133 struct i40e_mac_filter *f;
1134
1135 /* Only -1 for all the filters denotes not in vlan mode
1136 * so we have to go through all the list in order to make sure
1137 */
1138 list_for_each_entry(f, &vsi->mac_filter_list, list) {
1139 if (f->vlan >= 0)
1140 return true;
1141 }
1142
1143 return false;
1144}
1145
1146/**
1147 * i40e_put_mac_in_vlan - Make macvlan filters from macaddrs and vlans
1148 * @vsi: the VSI to be searched
1149 * @macaddr: the mac address to be filtered
1150 * @is_vf: true if it is a vf
1151 * @is_netdev: true if it is a netdev
1152 *
1153 * Goes through all the macvlan filters and adds a
1154 * macvlan filter for each unique vlan that already exists
1155 *
1156 * Returns first filter found on success, else NULL
1157 **/
1158struct i40e_mac_filter *i40e_put_mac_in_vlan(struct i40e_vsi *vsi, u8 *macaddr,
1159 bool is_vf, bool is_netdev)
1160{
1161 struct i40e_mac_filter *f;
1162
1163 list_for_each_entry(f, &vsi->mac_filter_list, list) {
1164 if (!i40e_find_filter(vsi, macaddr, f->vlan,
1165 is_vf, is_netdev)) {
1166 if (!i40e_add_filter(vsi, macaddr, f->vlan,
Jesse Brandeburg8fb905b2014-01-17 15:36:33 -08001167 is_vf, is_netdev))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001168 return NULL;
1169 }
1170 }
1171
1172 return list_first_entry_or_null(&vsi->mac_filter_list,
1173 struct i40e_mac_filter, list);
1174}
1175
1176/**
Greg Rose8c27d422014-05-22 06:31:56 +00001177 * i40e_rm_default_mac_filter - Remove the default MAC filter set by NVM
1178 * @vsi: the PF Main VSI - inappropriate for any other VSI
1179 * @macaddr: the MAC address
1180 **/
1181static void i40e_rm_default_mac_filter(struct i40e_vsi *vsi, u8 *macaddr)
1182{
1183 struct i40e_aqc_remove_macvlan_element_data element;
1184 struct i40e_pf *pf = vsi->back;
1185 i40e_status aq_ret;
1186
1187 /* Only appropriate for the PF main VSI */
1188 if (vsi->type != I40E_VSI_MAIN)
1189 return;
1190
1191 ether_addr_copy(element.mac_addr, macaddr);
1192 element.vlan_tag = 0;
1193 element.flags = I40E_AQC_MACVLAN_DEL_PERFECT_MATCH |
1194 I40E_AQC_MACVLAN_DEL_IGNORE_VLAN;
1195 aq_ret = i40e_aq_remove_macvlan(&pf->hw, vsi->seid, &element, 1, NULL);
1196 if (aq_ret)
1197 dev_err(&pf->pdev->dev, "Could not remove default MAC-VLAN\n");
1198}
1199
1200/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001201 * i40e_add_filter - Add a mac/vlan filter to the VSI
1202 * @vsi: the VSI to be searched
1203 * @macaddr: the MAC address
1204 * @vlan: the vlan
1205 * @is_vf: make sure its a vf filter, else doesn't matter
1206 * @is_netdev: make sure its a netdev filter, else doesn't matter
1207 *
1208 * Returns ptr to the filter object or NULL when no memory available.
1209 **/
1210struct i40e_mac_filter *i40e_add_filter(struct i40e_vsi *vsi,
1211 u8 *macaddr, s16 vlan,
1212 bool is_vf, bool is_netdev)
1213{
1214 struct i40e_mac_filter *f;
1215
1216 if (!vsi || !macaddr)
1217 return NULL;
1218
1219 f = i40e_find_filter(vsi, macaddr, vlan, is_vf, is_netdev);
1220 if (!f) {
1221 f = kzalloc(sizeof(*f), GFP_ATOMIC);
1222 if (!f)
1223 goto add_filter_out;
1224
Greg Rose9a173902014-05-22 06:32:02 +00001225 ether_addr_copy(f->macaddr, macaddr);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001226 f->vlan = vlan;
1227 f->changed = true;
1228
1229 INIT_LIST_HEAD(&f->list);
1230 list_add(&f->list, &vsi->mac_filter_list);
1231 }
1232
1233 /* increment counter and add a new flag if needed */
1234 if (is_vf) {
1235 if (!f->is_vf) {
1236 f->is_vf = true;
1237 f->counter++;
1238 }
1239 } else if (is_netdev) {
1240 if (!f->is_netdev) {
1241 f->is_netdev = true;
1242 f->counter++;
1243 }
1244 } else {
1245 f->counter++;
1246 }
1247
1248 /* changed tells sync_filters_subtask to
1249 * push the filter down to the firmware
1250 */
1251 if (f->changed) {
1252 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
1253 vsi->back->flags |= I40E_FLAG_FILTER_SYNC;
1254 }
1255
1256add_filter_out:
1257 return f;
1258}
1259
1260/**
1261 * i40e_del_filter - Remove a mac/vlan filter from the VSI
1262 * @vsi: the VSI to be searched
1263 * @macaddr: the MAC address
1264 * @vlan: the vlan
1265 * @is_vf: make sure it's a vf filter, else doesn't matter
1266 * @is_netdev: make sure it's a netdev filter, else doesn't matter
1267 **/
1268void i40e_del_filter(struct i40e_vsi *vsi,
1269 u8 *macaddr, s16 vlan,
1270 bool is_vf, bool is_netdev)
1271{
1272 struct i40e_mac_filter *f;
1273
1274 if (!vsi || !macaddr)
1275 return;
1276
1277 f = i40e_find_filter(vsi, macaddr, vlan, is_vf, is_netdev);
1278 if (!f || f->counter == 0)
1279 return;
1280
1281 if (is_vf) {
1282 if (f->is_vf) {
1283 f->is_vf = false;
1284 f->counter--;
1285 }
1286 } else if (is_netdev) {
1287 if (f->is_netdev) {
1288 f->is_netdev = false;
1289 f->counter--;
1290 }
1291 } else {
1292 /* make sure we don't remove a filter in use by vf or netdev */
1293 int min_f = 0;
1294 min_f += (f->is_vf ? 1 : 0);
1295 min_f += (f->is_netdev ? 1 : 0);
1296
1297 if (f->counter > min_f)
1298 f->counter--;
1299 }
1300
1301 /* counter == 0 tells sync_filters_subtask to
1302 * remove the filter from the firmware's list
1303 */
1304 if (f->counter == 0) {
1305 f->changed = true;
1306 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
1307 vsi->back->flags |= I40E_FLAG_FILTER_SYNC;
1308 }
1309}
1310
1311/**
1312 * i40e_set_mac - NDO callback to set mac address
1313 * @netdev: network interface device structure
1314 * @p: pointer to an address structure
1315 *
1316 * Returns 0 on success, negative on failure
1317 **/
1318static int i40e_set_mac(struct net_device *netdev, void *p)
1319{
1320 struct i40e_netdev_priv *np = netdev_priv(netdev);
1321 struct i40e_vsi *vsi = np->vsi;
1322 struct sockaddr *addr = p;
1323 struct i40e_mac_filter *f;
1324
1325 if (!is_valid_ether_addr(addr->sa_data))
1326 return -EADDRNOTAVAIL;
1327
1328 netdev_info(netdev, "set mac address=%pM\n", addr->sa_data);
1329
Anjali Singhai Jain80f64282013-11-28 06:39:47 +00001330 if (test_bit(__I40E_DOWN, &vsi->back->state) ||
1331 test_bit(__I40E_RESET_RECOVERY_PENDING, &vsi->back->state))
1332 return -EADDRNOTAVAIL;
1333
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001334 if (vsi->type == I40E_VSI_MAIN) {
1335 i40e_status ret;
1336 ret = i40e_aq_mac_address_write(&vsi->back->hw,
Shannon Nelsoncc412222014-06-04 01:23:21 +00001337 I40E_AQC_WRITE_TYPE_LAA_WOL,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001338 addr->sa_data, NULL);
1339 if (ret) {
1340 netdev_info(netdev,
1341 "Addr change for Main VSI failed: %d\n",
1342 ret);
1343 return -EADDRNOTAVAIL;
1344 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001345 }
1346
Shannon Nelson6252c7e2014-06-04 01:23:23 +00001347 f = i40e_find_mac(vsi, addr->sa_data, false, true);
1348 if (!f) {
Shannon Nelson6c8ad1b2014-06-04 01:23:22 +00001349 /* In order to be sure to not drop any packets, add the
1350 * new address first then delete the old one.
1351 */
1352 f = i40e_add_filter(vsi, addr->sa_data, I40E_VLAN_ANY,
1353 false, false);
1354 if (!f)
1355 return -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001356
Shannon Nelson6c8ad1b2014-06-04 01:23:22 +00001357 i40e_sync_vsi_filters(vsi);
1358 i40e_del_filter(vsi, netdev->dev_addr, I40E_VLAN_ANY,
1359 false, false);
1360 i40e_sync_vsi_filters(vsi);
1361 }
1362
Shannon Nelson6252c7e2014-06-04 01:23:23 +00001363 f->is_laa = true;
Shannon Nelson6c8ad1b2014-06-04 01:23:22 +00001364 if (!ether_addr_equal(netdev->dev_addr, addr->sa_data))
1365 ether_addr_copy(netdev->dev_addr, addr->sa_data);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001366
1367 return 0;
1368}
1369
1370/**
1371 * i40e_vsi_setup_queue_map - Setup a VSI queue map based on enabled_tc
1372 * @vsi: the VSI being setup
1373 * @ctxt: VSI context structure
1374 * @enabled_tc: Enabled TCs bitmap
1375 * @is_add: True if called before Add VSI
1376 *
1377 * Setup VSI queue mapping for enabled traffic classes.
1378 **/
1379static void i40e_vsi_setup_queue_map(struct i40e_vsi *vsi,
1380 struct i40e_vsi_context *ctxt,
1381 u8 enabled_tc,
1382 bool is_add)
1383{
1384 struct i40e_pf *pf = vsi->back;
1385 u16 sections = 0;
1386 u8 netdev_tc = 0;
1387 u16 numtc = 0;
1388 u16 qcount;
1389 u8 offset;
1390 u16 qmap;
1391 int i;
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001392 u16 num_tc_qps = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001393
1394 sections = I40E_AQ_VSI_PROP_QUEUE_MAP_VALID;
1395 offset = 0;
1396
1397 if (enabled_tc && (vsi->back->flags & I40E_FLAG_DCB_ENABLED)) {
1398 /* Find numtc from enabled TC bitmap */
1399 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
1400 if (enabled_tc & (1 << i)) /* TC is enabled */
1401 numtc++;
1402 }
1403 if (!numtc) {
1404 dev_warn(&pf->pdev->dev, "DCB is enabled but no TC enabled, forcing TC0\n");
1405 numtc = 1;
1406 }
1407 } else {
1408 /* At least TC0 is enabled in case of non-DCB case */
1409 numtc = 1;
1410 }
1411
1412 vsi->tc_config.numtc = numtc;
1413 vsi->tc_config.enabled_tc = enabled_tc ? enabled_tc : 1;
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001414 /* Number of queues per enabled TC */
Anjali Singhai Jaineb051af2014-05-20 08:01:46 +00001415 num_tc_qps = vsi->alloc_queue_pairs/numtc;
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001416 num_tc_qps = min_t(int, num_tc_qps, I40E_MAX_QUEUES_PER_TC);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001417
1418 /* Setup queue offset/count for all TCs for given VSI */
1419 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
1420 /* See if the given TC is enabled for the given VSI */
1421 if (vsi->tc_config.enabled_tc & (1 << i)) { /* TC is enabled */
1422 int pow, num_qps;
1423
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001424 switch (vsi->type) {
1425 case I40E_VSI_MAIN:
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001426 qcount = min_t(int, pf->rss_size, num_tc_qps);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001427 break;
1428 case I40E_VSI_FDIR:
1429 case I40E_VSI_SRIOV:
1430 case I40E_VSI_VMDQ2:
1431 default:
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001432 qcount = num_tc_qps;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001433 WARN_ON(i != 0);
1434 break;
1435 }
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001436 vsi->tc_config.tc_info[i].qoffset = offset;
1437 vsi->tc_config.tc_info[i].qcount = qcount;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001438
1439 /* find the power-of-2 of the number of queue pairs */
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001440 num_qps = qcount;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001441 pow = 0;
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001442 while (num_qps && ((1 << pow) < qcount)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001443 pow++;
1444 num_qps >>= 1;
1445 }
1446
1447 vsi->tc_config.tc_info[i].netdev_tc = netdev_tc++;
1448 qmap =
1449 (offset << I40E_AQ_VSI_TC_QUE_OFFSET_SHIFT) |
1450 (pow << I40E_AQ_VSI_TC_QUE_NUMBER_SHIFT);
1451
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001452 offset += qcount;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001453 } else {
1454 /* TC is not enabled so set the offset to
1455 * default queue and allocate one queue
1456 * for the given TC.
1457 */
1458 vsi->tc_config.tc_info[i].qoffset = 0;
1459 vsi->tc_config.tc_info[i].qcount = 1;
1460 vsi->tc_config.tc_info[i].netdev_tc = 0;
1461
1462 qmap = 0;
1463 }
1464 ctxt->info.tc_mapping[i] = cpu_to_le16(qmap);
1465 }
1466
1467 /* Set actual Tx/Rx queue pairs */
1468 vsi->num_queue_pairs = offset;
1469
1470 /* Scheduler section valid can only be set for ADD VSI */
1471 if (is_add) {
1472 sections |= I40E_AQ_VSI_PROP_SCHED_VALID;
1473
1474 ctxt->info.up_enable_bits = enabled_tc;
1475 }
1476 if (vsi->type == I40E_VSI_SRIOV) {
1477 ctxt->info.mapping_flags |=
1478 cpu_to_le16(I40E_AQ_VSI_QUE_MAP_NONCONTIG);
1479 for (i = 0; i < vsi->num_queue_pairs; i++)
1480 ctxt->info.queue_mapping[i] =
1481 cpu_to_le16(vsi->base_queue + i);
1482 } else {
1483 ctxt->info.mapping_flags |=
1484 cpu_to_le16(I40E_AQ_VSI_QUE_MAP_CONTIG);
1485 ctxt->info.queue_mapping[0] = cpu_to_le16(vsi->base_queue);
1486 }
1487 ctxt->info.valid_sections |= cpu_to_le16(sections);
1488}
1489
1490/**
1491 * i40e_set_rx_mode - NDO callback to set the netdev filters
1492 * @netdev: network interface device structure
1493 **/
1494static void i40e_set_rx_mode(struct net_device *netdev)
1495{
1496 struct i40e_netdev_priv *np = netdev_priv(netdev);
1497 struct i40e_mac_filter *f, *ftmp;
1498 struct i40e_vsi *vsi = np->vsi;
1499 struct netdev_hw_addr *uca;
1500 struct netdev_hw_addr *mca;
1501 struct netdev_hw_addr *ha;
1502
1503 /* add addr if not already in the filter list */
1504 netdev_for_each_uc_addr(uca, netdev) {
1505 if (!i40e_find_mac(vsi, uca->addr, false, true)) {
1506 if (i40e_is_vsi_in_vlan(vsi))
1507 i40e_put_mac_in_vlan(vsi, uca->addr,
1508 false, true);
1509 else
1510 i40e_add_filter(vsi, uca->addr, I40E_VLAN_ANY,
1511 false, true);
1512 }
1513 }
1514
1515 netdev_for_each_mc_addr(mca, netdev) {
1516 if (!i40e_find_mac(vsi, mca->addr, false, true)) {
1517 if (i40e_is_vsi_in_vlan(vsi))
1518 i40e_put_mac_in_vlan(vsi, mca->addr,
1519 false, true);
1520 else
1521 i40e_add_filter(vsi, mca->addr, I40E_VLAN_ANY,
1522 false, true);
1523 }
1524 }
1525
1526 /* remove filter if not in netdev list */
1527 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
1528 bool found = false;
1529
1530 if (!f->is_netdev)
1531 continue;
1532
1533 if (is_multicast_ether_addr(f->macaddr)) {
1534 netdev_for_each_mc_addr(mca, netdev) {
1535 if (ether_addr_equal(mca->addr, f->macaddr)) {
1536 found = true;
1537 break;
1538 }
1539 }
1540 } else {
1541 netdev_for_each_uc_addr(uca, netdev) {
1542 if (ether_addr_equal(uca->addr, f->macaddr)) {
1543 found = true;
1544 break;
1545 }
1546 }
1547
1548 for_each_dev_addr(netdev, ha) {
1549 if (ether_addr_equal(ha->addr, f->macaddr)) {
1550 found = true;
1551 break;
1552 }
1553 }
1554 }
1555 if (!found)
1556 i40e_del_filter(
1557 vsi, f->macaddr, I40E_VLAN_ANY, false, true);
1558 }
1559
1560 /* check for other flag changes */
1561 if (vsi->current_netdev_flags != vsi->netdev->flags) {
1562 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
1563 vsi->back->flags |= I40E_FLAG_FILTER_SYNC;
1564 }
1565}
1566
1567/**
1568 * i40e_sync_vsi_filters - Update the VSI filter list to the HW
1569 * @vsi: ptr to the VSI
1570 *
1571 * Push any outstanding VSI filter changes through the AdminQ.
1572 *
1573 * Returns 0 or error value
1574 **/
1575int i40e_sync_vsi_filters(struct i40e_vsi *vsi)
1576{
1577 struct i40e_mac_filter *f, *ftmp;
1578 bool promisc_forced_on = false;
1579 bool add_happened = false;
1580 int filter_list_len = 0;
1581 u32 changed_flags = 0;
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001582 i40e_status aq_ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001583 struct i40e_pf *pf;
1584 int num_add = 0;
1585 int num_del = 0;
1586 u16 cmd_flags;
1587
1588 /* empty array typed pointers, kcalloc later */
1589 struct i40e_aqc_add_macvlan_element_data *add_list;
1590 struct i40e_aqc_remove_macvlan_element_data *del_list;
1591
1592 while (test_and_set_bit(__I40E_CONFIG_BUSY, &vsi->state))
1593 usleep_range(1000, 2000);
1594 pf = vsi->back;
1595
1596 if (vsi->netdev) {
1597 changed_flags = vsi->current_netdev_flags ^ vsi->netdev->flags;
1598 vsi->current_netdev_flags = vsi->netdev->flags;
1599 }
1600
1601 if (vsi->flags & I40E_VSI_FLAG_FILTER_CHANGED) {
1602 vsi->flags &= ~I40E_VSI_FLAG_FILTER_CHANGED;
1603
1604 filter_list_len = pf->hw.aq.asq_buf_size /
1605 sizeof(struct i40e_aqc_remove_macvlan_element_data);
1606 del_list = kcalloc(filter_list_len,
1607 sizeof(struct i40e_aqc_remove_macvlan_element_data),
1608 GFP_KERNEL);
1609 if (!del_list)
1610 return -ENOMEM;
1611
1612 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
1613 if (!f->changed)
1614 continue;
1615
1616 if (f->counter != 0)
1617 continue;
1618 f->changed = false;
1619 cmd_flags = 0;
1620
1621 /* add to delete list */
Greg Rose9a173902014-05-22 06:32:02 +00001622 ether_addr_copy(del_list[num_del].mac_addr, f->macaddr);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001623 del_list[num_del].vlan_tag =
1624 cpu_to_le16((u16)(f->vlan ==
1625 I40E_VLAN_ANY ? 0 : f->vlan));
1626
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001627 cmd_flags |= I40E_AQC_MACVLAN_DEL_PERFECT_MATCH;
1628 del_list[num_del].flags = cmd_flags;
1629 num_del++;
1630
1631 /* unlink from filter list */
1632 list_del(&f->list);
1633 kfree(f);
1634
1635 /* flush a full buffer */
1636 if (num_del == filter_list_len) {
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001637 aq_ret = i40e_aq_remove_macvlan(&pf->hw,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001638 vsi->seid, del_list, num_del,
1639 NULL);
1640 num_del = 0;
1641 memset(del_list, 0, sizeof(*del_list));
1642
Shannon Nelsonfdfe9cb2014-05-20 08:01:39 +00001643 if (aq_ret &&
1644 pf->hw.aq.asq_last_status !=
1645 I40E_AQ_RC_ENOENT)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001646 dev_info(&pf->pdev->dev,
1647 "ignoring delete macvlan error, err %d, aq_err %d while flushing a full buffer\n",
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001648 aq_ret,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001649 pf->hw.aq.asq_last_status);
1650 }
1651 }
1652 if (num_del) {
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001653 aq_ret = i40e_aq_remove_macvlan(&pf->hw, vsi->seid,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001654 del_list, num_del, NULL);
1655 num_del = 0;
1656
Shannon Nelsonfdfe9cb2014-05-20 08:01:39 +00001657 if (aq_ret &&
1658 pf->hw.aq.asq_last_status != I40E_AQ_RC_ENOENT)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001659 dev_info(&pf->pdev->dev,
1660 "ignoring delete macvlan error, err %d, aq_err %d\n",
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001661 aq_ret, pf->hw.aq.asq_last_status);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001662 }
1663
1664 kfree(del_list);
1665 del_list = NULL;
1666
1667 /* do all the adds now */
1668 filter_list_len = pf->hw.aq.asq_buf_size /
1669 sizeof(struct i40e_aqc_add_macvlan_element_data),
1670 add_list = kcalloc(filter_list_len,
1671 sizeof(struct i40e_aqc_add_macvlan_element_data),
1672 GFP_KERNEL);
1673 if (!add_list)
1674 return -ENOMEM;
1675
1676 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
1677 if (!f->changed)
1678 continue;
1679
1680 if (f->counter == 0)
1681 continue;
1682 f->changed = false;
1683 add_happened = true;
1684 cmd_flags = 0;
1685
1686 /* add to add array */
Greg Rose9a173902014-05-22 06:32:02 +00001687 ether_addr_copy(add_list[num_add].mac_addr, f->macaddr);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001688 add_list[num_add].vlan_tag =
1689 cpu_to_le16(
1690 (u16)(f->vlan == I40E_VLAN_ANY ? 0 : f->vlan));
1691 add_list[num_add].queue_number = 0;
1692
1693 cmd_flags |= I40E_AQC_MACVLAN_ADD_PERFECT_MATCH;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001694 add_list[num_add].flags = cpu_to_le16(cmd_flags);
1695 num_add++;
1696
1697 /* flush a full buffer */
1698 if (num_add == filter_list_len) {
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001699 aq_ret = i40e_aq_add_macvlan(&pf->hw, vsi->seid,
1700 add_list, num_add,
1701 NULL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001702 num_add = 0;
1703
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001704 if (aq_ret)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001705 break;
1706 memset(add_list, 0, sizeof(*add_list));
1707 }
1708 }
1709 if (num_add) {
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001710 aq_ret = i40e_aq_add_macvlan(&pf->hw, vsi->seid,
1711 add_list, num_add, NULL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001712 num_add = 0;
1713 }
1714 kfree(add_list);
1715 add_list = NULL;
1716
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001717 if (add_happened && (!aq_ret)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001718 /* do nothing */;
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001719 } else if (add_happened && (aq_ret)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001720 dev_info(&pf->pdev->dev,
1721 "add filter failed, err %d, aq_err %d\n",
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001722 aq_ret, pf->hw.aq.asq_last_status);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001723 if ((pf->hw.aq.asq_last_status == I40E_AQ_RC_ENOSPC) &&
1724 !test_bit(__I40E_FILTER_OVERFLOW_PROMISC,
1725 &vsi->state)) {
1726 promisc_forced_on = true;
1727 set_bit(__I40E_FILTER_OVERFLOW_PROMISC,
1728 &vsi->state);
1729 dev_info(&pf->pdev->dev, "promiscuous mode forced on\n");
1730 }
1731 }
1732 }
1733
1734 /* check for changes in promiscuous modes */
1735 if (changed_flags & IFF_ALLMULTI) {
1736 bool cur_multipromisc;
1737 cur_multipromisc = !!(vsi->current_netdev_flags & IFF_ALLMULTI);
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001738 aq_ret = i40e_aq_set_vsi_multicast_promiscuous(&vsi->back->hw,
1739 vsi->seid,
1740 cur_multipromisc,
1741 NULL);
1742 if (aq_ret)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001743 dev_info(&pf->pdev->dev,
1744 "set multi promisc failed, err %d, aq_err %d\n",
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001745 aq_ret, pf->hw.aq.asq_last_status);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001746 }
1747 if ((changed_flags & IFF_PROMISC) || promisc_forced_on) {
1748 bool cur_promisc;
1749 cur_promisc = (!!(vsi->current_netdev_flags & IFF_PROMISC) ||
1750 test_bit(__I40E_FILTER_OVERFLOW_PROMISC,
1751 &vsi->state));
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001752 aq_ret = i40e_aq_set_vsi_unicast_promiscuous(&vsi->back->hw,
1753 vsi->seid,
1754 cur_promisc, NULL);
1755 if (aq_ret)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001756 dev_info(&pf->pdev->dev,
1757 "set uni promisc failed, err %d, aq_err %d\n",
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001758 aq_ret, pf->hw.aq.asq_last_status);
Greg Rose1a103702013-11-28 06:42:39 +00001759 aq_ret = i40e_aq_set_vsi_broadcast(&vsi->back->hw,
1760 vsi->seid,
1761 cur_promisc, NULL);
1762 if (aq_ret)
1763 dev_info(&pf->pdev->dev,
1764 "set brdcast promisc failed, err %d, aq_err %d\n",
1765 aq_ret, pf->hw.aq.asq_last_status);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001766 }
1767
1768 clear_bit(__I40E_CONFIG_BUSY, &vsi->state);
1769 return 0;
1770}
1771
1772/**
1773 * i40e_sync_filters_subtask - Sync the VSI filter list with HW
1774 * @pf: board private structure
1775 **/
1776static void i40e_sync_filters_subtask(struct i40e_pf *pf)
1777{
1778 int v;
1779
1780 if (!pf || !(pf->flags & I40E_FLAG_FILTER_SYNC))
1781 return;
1782 pf->flags &= ~I40E_FLAG_FILTER_SYNC;
1783
Mitch Williams505682c2014-05-20 08:01:37 +00001784 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001785 if (pf->vsi[v] &&
1786 (pf->vsi[v]->flags & I40E_VSI_FLAG_FILTER_CHANGED))
1787 i40e_sync_vsi_filters(pf->vsi[v]);
1788 }
1789}
1790
1791/**
1792 * i40e_change_mtu - NDO callback to change the Maximum Transfer Unit
1793 * @netdev: network interface device structure
1794 * @new_mtu: new value for maximum frame size
1795 *
1796 * Returns 0 on success, negative on failure
1797 **/
1798static int i40e_change_mtu(struct net_device *netdev, int new_mtu)
1799{
1800 struct i40e_netdev_priv *np = netdev_priv(netdev);
Jesse Brandeburg61a46a42014-04-23 04:50:05 +00001801 int max_frame = new_mtu + ETH_HLEN + ETH_FCS_LEN + VLAN_HLEN;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001802 struct i40e_vsi *vsi = np->vsi;
1803
1804 /* MTU < 68 is an error and causes problems on some kernels */
1805 if ((new_mtu < 68) || (max_frame > I40E_MAX_RXBUFFER))
1806 return -EINVAL;
1807
1808 netdev_info(netdev, "changing MTU from %d to %d\n",
1809 netdev->mtu, new_mtu);
1810 netdev->mtu = new_mtu;
1811 if (netif_running(netdev))
1812 i40e_vsi_reinit_locked(vsi);
1813
1814 return 0;
1815}
1816
1817/**
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00001818 * i40e_ioctl - Access the hwtstamp interface
1819 * @netdev: network interface device structure
1820 * @ifr: interface request data
1821 * @cmd: ioctl command
1822 **/
1823int i40e_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd)
1824{
1825 struct i40e_netdev_priv *np = netdev_priv(netdev);
1826 struct i40e_pf *pf = np->vsi->back;
1827
1828 switch (cmd) {
1829 case SIOCGHWTSTAMP:
1830 return i40e_ptp_get_ts_config(pf, ifr);
1831 case SIOCSHWTSTAMP:
1832 return i40e_ptp_set_ts_config(pf, ifr);
1833 default:
1834 return -EOPNOTSUPP;
1835 }
1836}
1837
1838/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001839 * i40e_vlan_stripping_enable - Turn on vlan stripping for the VSI
1840 * @vsi: the vsi being adjusted
1841 **/
1842void i40e_vlan_stripping_enable(struct i40e_vsi *vsi)
1843{
1844 struct i40e_vsi_context ctxt;
1845 i40e_status ret;
1846
1847 if ((vsi->info.valid_sections &
1848 cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID)) &&
1849 ((vsi->info.port_vlan_flags & I40E_AQ_VSI_PVLAN_MODE_MASK) == 0))
1850 return; /* already enabled */
1851
1852 vsi->info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
1853 vsi->info.port_vlan_flags = I40E_AQ_VSI_PVLAN_MODE_ALL |
1854 I40E_AQ_VSI_PVLAN_EMOD_STR_BOTH;
1855
1856 ctxt.seid = vsi->seid;
1857 memcpy(&ctxt.info, &vsi->info, sizeof(vsi->info));
1858 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
1859 if (ret) {
1860 dev_info(&vsi->back->pdev->dev,
1861 "%s: update vsi failed, aq_err=%d\n",
1862 __func__, vsi->back->hw.aq.asq_last_status);
1863 }
1864}
1865
1866/**
1867 * i40e_vlan_stripping_disable - Turn off vlan stripping for the VSI
1868 * @vsi: the vsi being adjusted
1869 **/
1870void i40e_vlan_stripping_disable(struct i40e_vsi *vsi)
1871{
1872 struct i40e_vsi_context ctxt;
1873 i40e_status ret;
1874
1875 if ((vsi->info.valid_sections &
1876 cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID)) &&
1877 ((vsi->info.port_vlan_flags & I40E_AQ_VSI_PVLAN_EMOD_MASK) ==
1878 I40E_AQ_VSI_PVLAN_EMOD_MASK))
1879 return; /* already disabled */
1880
1881 vsi->info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
1882 vsi->info.port_vlan_flags = I40E_AQ_VSI_PVLAN_MODE_ALL |
1883 I40E_AQ_VSI_PVLAN_EMOD_NOTHING;
1884
1885 ctxt.seid = vsi->seid;
1886 memcpy(&ctxt.info, &vsi->info, sizeof(vsi->info));
1887 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
1888 if (ret) {
1889 dev_info(&vsi->back->pdev->dev,
1890 "%s: update vsi failed, aq_err=%d\n",
1891 __func__, vsi->back->hw.aq.asq_last_status);
1892 }
1893}
1894
1895/**
1896 * i40e_vlan_rx_register - Setup or shutdown vlan offload
1897 * @netdev: network interface to be adjusted
1898 * @features: netdev features to test if VLAN offload is enabled or not
1899 **/
1900static void i40e_vlan_rx_register(struct net_device *netdev, u32 features)
1901{
1902 struct i40e_netdev_priv *np = netdev_priv(netdev);
1903 struct i40e_vsi *vsi = np->vsi;
1904
1905 if (features & NETIF_F_HW_VLAN_CTAG_RX)
1906 i40e_vlan_stripping_enable(vsi);
1907 else
1908 i40e_vlan_stripping_disable(vsi);
1909}
1910
1911/**
1912 * i40e_vsi_add_vlan - Add vsi membership for given vlan
1913 * @vsi: the vsi being configured
1914 * @vid: vlan id to be added (0 = untagged only , -1 = any)
1915 **/
1916int i40e_vsi_add_vlan(struct i40e_vsi *vsi, s16 vid)
1917{
1918 struct i40e_mac_filter *f, *add_f;
1919 bool is_netdev, is_vf;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001920
1921 is_vf = (vsi->type == I40E_VSI_SRIOV);
1922 is_netdev = !!(vsi->netdev);
1923
1924 if (is_netdev) {
1925 add_f = i40e_add_filter(vsi, vsi->netdev->dev_addr, vid,
1926 is_vf, is_netdev);
1927 if (!add_f) {
1928 dev_info(&vsi->back->pdev->dev,
1929 "Could not add vlan filter %d for %pM\n",
1930 vid, vsi->netdev->dev_addr);
1931 return -ENOMEM;
1932 }
1933 }
1934
1935 list_for_each_entry(f, &vsi->mac_filter_list, list) {
1936 add_f = i40e_add_filter(vsi, f->macaddr, vid, is_vf, is_netdev);
1937 if (!add_f) {
1938 dev_info(&vsi->back->pdev->dev,
1939 "Could not add vlan filter %d for %pM\n",
1940 vid, f->macaddr);
1941 return -ENOMEM;
1942 }
1943 }
1944
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001945 /* Now if we add a vlan tag, make sure to check if it is the first
1946 * tag (i.e. a "tag" -1 does exist) and if so replace the -1 "tag"
1947 * with 0, so we now accept untagged and specified tagged traffic
1948 * (and not any taged and untagged)
1949 */
1950 if (vid > 0) {
1951 if (is_netdev && i40e_find_filter(vsi, vsi->netdev->dev_addr,
1952 I40E_VLAN_ANY,
1953 is_vf, is_netdev)) {
1954 i40e_del_filter(vsi, vsi->netdev->dev_addr,
1955 I40E_VLAN_ANY, is_vf, is_netdev);
1956 add_f = i40e_add_filter(vsi, vsi->netdev->dev_addr, 0,
1957 is_vf, is_netdev);
1958 if (!add_f) {
1959 dev_info(&vsi->back->pdev->dev,
1960 "Could not add filter 0 for %pM\n",
1961 vsi->netdev->dev_addr);
1962 return -ENOMEM;
1963 }
1964 }
Greg Rose8d82a7c2014-01-13 16:13:04 -08001965 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001966
Greg Rose8d82a7c2014-01-13 16:13:04 -08001967 /* Do not assume that I40E_VLAN_ANY should be reset to VLAN 0 */
1968 if (vid > 0 && !vsi->info.pvid) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001969 list_for_each_entry(f, &vsi->mac_filter_list, list) {
1970 if (i40e_find_filter(vsi, f->macaddr, I40E_VLAN_ANY,
1971 is_vf, is_netdev)) {
1972 i40e_del_filter(vsi, f->macaddr, I40E_VLAN_ANY,
1973 is_vf, is_netdev);
1974 add_f = i40e_add_filter(vsi, f->macaddr,
1975 0, is_vf, is_netdev);
1976 if (!add_f) {
1977 dev_info(&vsi->back->pdev->dev,
1978 "Could not add filter 0 for %pM\n",
1979 f->macaddr);
1980 return -ENOMEM;
1981 }
1982 }
1983 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001984 }
1985
Anjali Singhai Jain80f64282013-11-28 06:39:47 +00001986 if (test_bit(__I40E_DOWN, &vsi->back->state) ||
1987 test_bit(__I40E_RESET_RECOVERY_PENDING, &vsi->back->state))
1988 return 0;
1989
1990 return i40e_sync_vsi_filters(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001991}
1992
1993/**
1994 * i40e_vsi_kill_vlan - Remove vsi membership for given vlan
1995 * @vsi: the vsi being configured
1996 * @vid: vlan id to be removed (0 = untagged only , -1 = any)
Jesse Brandeburg078b5872013-09-25 23:41:14 +00001997 *
1998 * Return: 0 on success or negative otherwise
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001999 **/
2000int i40e_vsi_kill_vlan(struct i40e_vsi *vsi, s16 vid)
2001{
2002 struct net_device *netdev = vsi->netdev;
2003 struct i40e_mac_filter *f, *add_f;
2004 bool is_vf, is_netdev;
2005 int filter_count = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002006
2007 is_vf = (vsi->type == I40E_VSI_SRIOV);
2008 is_netdev = !!(netdev);
2009
2010 if (is_netdev)
2011 i40e_del_filter(vsi, netdev->dev_addr, vid, is_vf, is_netdev);
2012
2013 list_for_each_entry(f, &vsi->mac_filter_list, list)
2014 i40e_del_filter(vsi, f->macaddr, vid, is_vf, is_netdev);
2015
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002016 /* go through all the filters for this VSI and if there is only
2017 * vid == 0 it means there are no other filters, so vid 0 must
2018 * be replaced with -1. This signifies that we should from now
2019 * on accept any traffic (with any tag present, or untagged)
2020 */
2021 list_for_each_entry(f, &vsi->mac_filter_list, list) {
2022 if (is_netdev) {
2023 if (f->vlan &&
2024 ether_addr_equal(netdev->dev_addr, f->macaddr))
2025 filter_count++;
2026 }
2027
2028 if (f->vlan)
2029 filter_count++;
2030 }
2031
2032 if (!filter_count && is_netdev) {
2033 i40e_del_filter(vsi, netdev->dev_addr, 0, is_vf, is_netdev);
2034 f = i40e_add_filter(vsi, netdev->dev_addr, I40E_VLAN_ANY,
2035 is_vf, is_netdev);
2036 if (!f) {
2037 dev_info(&vsi->back->pdev->dev,
2038 "Could not add filter %d for %pM\n",
2039 I40E_VLAN_ANY, netdev->dev_addr);
2040 return -ENOMEM;
2041 }
2042 }
2043
2044 if (!filter_count) {
2045 list_for_each_entry(f, &vsi->mac_filter_list, list) {
2046 i40e_del_filter(vsi, f->macaddr, 0, is_vf, is_netdev);
2047 add_f = i40e_add_filter(vsi, f->macaddr, I40E_VLAN_ANY,
2048 is_vf, is_netdev);
2049 if (!add_f) {
2050 dev_info(&vsi->back->pdev->dev,
2051 "Could not add filter %d for %pM\n",
2052 I40E_VLAN_ANY, f->macaddr);
2053 return -ENOMEM;
2054 }
2055 }
2056 }
2057
Anjali Singhai Jain80f64282013-11-28 06:39:47 +00002058 if (test_bit(__I40E_DOWN, &vsi->back->state) ||
2059 test_bit(__I40E_RESET_RECOVERY_PENDING, &vsi->back->state))
2060 return 0;
2061
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002062 return i40e_sync_vsi_filters(vsi);
2063}
2064
2065/**
2066 * i40e_vlan_rx_add_vid - Add a vlan id filter to HW offload
2067 * @netdev: network interface to be adjusted
2068 * @vid: vlan id to be added
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002069 *
2070 * net_device_ops implementation for adding vlan ids
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002071 **/
2072static int i40e_vlan_rx_add_vid(struct net_device *netdev,
2073 __always_unused __be16 proto, u16 vid)
2074{
2075 struct i40e_netdev_priv *np = netdev_priv(netdev);
2076 struct i40e_vsi *vsi = np->vsi;
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002077 int ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002078
2079 if (vid > 4095)
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002080 return -EINVAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002081
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002082 netdev_info(netdev, "adding %pM vid=%d\n", netdev->dev_addr, vid);
2083
Anjali Singhai Jain6982d422014-02-06 05:51:10 +00002084 /* If the network stack called us with vid = 0 then
2085 * it is asking to receive priority tagged packets with
2086 * vlan id 0. Our HW receives them by default when configured
2087 * to receive untagged packets so there is no need to add an
2088 * extra filter for vlan 0 tagged packets.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002089 */
Anjali Singhai Jain6982d422014-02-06 05:51:10 +00002090 if (vid)
2091 ret = i40e_vsi_add_vlan(vsi, vid);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002092
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002093 if (!ret && (vid < VLAN_N_VID))
2094 set_bit(vid, vsi->active_vlans);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002095
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002096 return ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002097}
2098
2099/**
2100 * i40e_vlan_rx_kill_vid - Remove a vlan id filter from HW offload
2101 * @netdev: network interface to be adjusted
2102 * @vid: vlan id to be removed
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002103 *
Akeem G Abodunrinfdfd9432014-02-11 08:24:15 +00002104 * net_device_ops implementation for removing vlan ids
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002105 **/
2106static int i40e_vlan_rx_kill_vid(struct net_device *netdev,
2107 __always_unused __be16 proto, u16 vid)
2108{
2109 struct i40e_netdev_priv *np = netdev_priv(netdev);
2110 struct i40e_vsi *vsi = np->vsi;
2111
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002112 netdev_info(netdev, "removing %pM vid=%d\n", netdev->dev_addr, vid);
2113
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002114 /* return code is ignored as there is nothing a user
2115 * can do about failure to remove and a log message was
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002116 * already printed from the other function
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002117 */
2118 i40e_vsi_kill_vlan(vsi, vid);
2119
2120 clear_bit(vid, vsi->active_vlans);
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002121
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002122 return 0;
2123}
2124
2125/**
2126 * i40e_restore_vlan - Reinstate vlans when vsi/netdev comes back up
2127 * @vsi: the vsi being brought back up
2128 **/
2129static void i40e_restore_vlan(struct i40e_vsi *vsi)
2130{
2131 u16 vid;
2132
2133 if (!vsi->netdev)
2134 return;
2135
2136 i40e_vlan_rx_register(vsi->netdev, vsi->netdev->features);
2137
2138 for_each_set_bit(vid, vsi->active_vlans, VLAN_N_VID)
2139 i40e_vlan_rx_add_vid(vsi->netdev, htons(ETH_P_8021Q),
2140 vid);
2141}
2142
2143/**
2144 * i40e_vsi_add_pvid - Add pvid for the VSI
2145 * @vsi: the vsi being adjusted
2146 * @vid: the vlan id to set as a PVID
2147 **/
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00002148int i40e_vsi_add_pvid(struct i40e_vsi *vsi, u16 vid)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002149{
2150 struct i40e_vsi_context ctxt;
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00002151 i40e_status aq_ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002152
2153 vsi->info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
2154 vsi->info.pvid = cpu_to_le16(vid);
Greg Rose6c12fcb2013-11-28 06:39:34 +00002155 vsi->info.port_vlan_flags = I40E_AQ_VSI_PVLAN_MODE_TAGGED |
2156 I40E_AQ_VSI_PVLAN_INSERT_PVID |
Greg Roseb774c7d2013-11-28 06:39:44 +00002157 I40E_AQ_VSI_PVLAN_EMOD_STR;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002158
2159 ctxt.seid = vsi->seid;
2160 memcpy(&ctxt.info, &vsi->info, sizeof(vsi->info));
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00002161 aq_ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
2162 if (aq_ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002163 dev_info(&vsi->back->pdev->dev,
2164 "%s: update vsi failed, aq_err=%d\n",
2165 __func__, vsi->back->hw.aq.asq_last_status);
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00002166 return -ENOENT;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002167 }
2168
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00002169 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002170}
2171
2172/**
2173 * i40e_vsi_remove_pvid - Remove the pvid from the VSI
2174 * @vsi: the vsi being adjusted
2175 *
2176 * Just use the vlan_rx_register() service to put it back to normal
2177 **/
2178void i40e_vsi_remove_pvid(struct i40e_vsi *vsi)
2179{
Greg Rose6c12fcb2013-11-28 06:39:34 +00002180 i40e_vlan_stripping_disable(vsi);
2181
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002182 vsi->info.pvid = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002183}
2184
2185/**
2186 * i40e_vsi_setup_tx_resources - Allocate VSI Tx queue resources
2187 * @vsi: ptr to the VSI
2188 *
2189 * If this function returns with an error, then it's possible one or
2190 * more of the rings is populated (while the rest are not). It is the
2191 * callers duty to clean those orphaned rings.
2192 *
2193 * Return 0 on success, negative on failure
2194 **/
2195static int i40e_vsi_setup_tx_resources(struct i40e_vsi *vsi)
2196{
2197 int i, err = 0;
2198
2199 for (i = 0; i < vsi->num_queue_pairs && !err; i++)
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00002200 err = i40e_setup_tx_descriptors(vsi->tx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002201
2202 return err;
2203}
2204
2205/**
2206 * i40e_vsi_free_tx_resources - Free Tx resources for VSI queues
2207 * @vsi: ptr to the VSI
2208 *
2209 * Free VSI's transmit software resources
2210 **/
2211static void i40e_vsi_free_tx_resources(struct i40e_vsi *vsi)
2212{
2213 int i;
2214
Greg Rose8e9dca52013-12-18 13:45:53 +00002215 if (!vsi->tx_rings)
2216 return;
2217
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002218 for (i = 0; i < vsi->num_queue_pairs; i++)
Greg Rose8e9dca52013-12-18 13:45:53 +00002219 if (vsi->tx_rings[i] && vsi->tx_rings[i]->desc)
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00002220 i40e_free_tx_resources(vsi->tx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002221}
2222
2223/**
2224 * i40e_vsi_setup_rx_resources - Allocate VSI queues Rx resources
2225 * @vsi: ptr to the VSI
2226 *
2227 * If this function returns with an error, then it's possible one or
2228 * more of the rings is populated (while the rest are not). It is the
2229 * callers duty to clean those orphaned rings.
2230 *
2231 * Return 0 on success, negative on failure
2232 **/
2233static int i40e_vsi_setup_rx_resources(struct i40e_vsi *vsi)
2234{
2235 int i, err = 0;
2236
2237 for (i = 0; i < vsi->num_queue_pairs && !err; i++)
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00002238 err = i40e_setup_rx_descriptors(vsi->rx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002239 return err;
2240}
2241
2242/**
2243 * i40e_vsi_free_rx_resources - Free Rx Resources for VSI queues
2244 * @vsi: ptr to the VSI
2245 *
2246 * Free all receive software resources
2247 **/
2248static void i40e_vsi_free_rx_resources(struct i40e_vsi *vsi)
2249{
2250 int i;
2251
Greg Rose8e9dca52013-12-18 13:45:53 +00002252 if (!vsi->rx_rings)
2253 return;
2254
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002255 for (i = 0; i < vsi->num_queue_pairs; i++)
Greg Rose8e9dca52013-12-18 13:45:53 +00002256 if (vsi->rx_rings[i] && vsi->rx_rings[i]->desc)
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00002257 i40e_free_rx_resources(vsi->rx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002258}
2259
2260/**
2261 * i40e_configure_tx_ring - Configure a transmit ring context and rest
2262 * @ring: The Tx ring to configure
2263 *
2264 * Configure the Tx descriptor ring in the HMC context.
2265 **/
2266static int i40e_configure_tx_ring(struct i40e_ring *ring)
2267{
2268 struct i40e_vsi *vsi = ring->vsi;
2269 u16 pf_q = vsi->base_queue + ring->queue_index;
2270 struct i40e_hw *hw = &vsi->back->hw;
2271 struct i40e_hmc_obj_txq tx_ctx;
2272 i40e_status err = 0;
2273 u32 qtx_ctl = 0;
2274
2275 /* some ATR related tx ring init */
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08002276 if (vsi->back->flags & I40E_FLAG_FD_ATR_ENABLED) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002277 ring->atr_sample_rate = vsi->back->atr_sample_rate;
2278 ring->atr_count = 0;
2279 } else {
2280 ring->atr_sample_rate = 0;
2281 }
2282
2283 /* initialize XPS */
2284 if (ring->q_vector && ring->netdev &&
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08002285 vsi->tc_config.numtc <= 1 &&
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002286 !test_and_set_bit(__I40E_TX_XPS_INIT_DONE, &ring->state))
2287 netif_set_xps_queue(ring->netdev,
2288 &ring->q_vector->affinity_mask,
2289 ring->queue_index);
2290
2291 /* clear the context structure first */
2292 memset(&tx_ctx, 0, sizeof(tx_ctx));
2293
2294 tx_ctx.new_context = 1;
2295 tx_ctx.base = (ring->dma / 128);
2296 tx_ctx.qlen = ring->count;
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08002297 tx_ctx.fd_ena = !!(vsi->back->flags & (I40E_FLAG_FD_SB_ENABLED |
2298 I40E_FLAG_FD_ATR_ENABLED));
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00002299 tx_ctx.timesync_ena = !!(vsi->back->flags & I40E_FLAG_PTP);
Jesse Brandeburg1943d8b2014-02-14 02:14:40 +00002300 /* FDIR VSI tx ring can still use RS bit and writebacks */
2301 if (vsi->type != I40E_VSI_FDIR)
2302 tx_ctx.head_wb_ena = 1;
2303 tx_ctx.head_wb_addr = ring->dma +
2304 (ring->count * sizeof(struct i40e_tx_desc));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002305
2306 /* As part of VSI creation/update, FW allocates certain
2307 * Tx arbitration queue sets for each TC enabled for
2308 * the VSI. The FW returns the handles to these queue
2309 * sets as part of the response buffer to Add VSI,
2310 * Update VSI, etc. AQ commands. It is expected that
2311 * these queue set handles be associated with the Tx
2312 * queues by the driver as part of the TX queue context
2313 * initialization. This has to be done regardless of
2314 * DCB as by default everything is mapped to TC0.
2315 */
2316 tx_ctx.rdylist = le16_to_cpu(vsi->info.qs_handle[ring->dcb_tc]);
2317 tx_ctx.rdylist_act = 0;
2318
2319 /* clear the context in the HMC */
2320 err = i40e_clear_lan_tx_queue_context(hw, pf_q);
2321 if (err) {
2322 dev_info(&vsi->back->pdev->dev,
2323 "Failed to clear LAN Tx queue context on Tx ring %d (pf_q %d), error: %d\n",
2324 ring->queue_index, pf_q, err);
2325 return -ENOMEM;
2326 }
2327
2328 /* set the context in the HMC */
2329 err = i40e_set_lan_tx_queue_context(hw, pf_q, &tx_ctx);
2330 if (err) {
2331 dev_info(&vsi->back->pdev->dev,
2332 "Failed to set LAN Tx queue context on Tx ring %d (pf_q %d, error: %d\n",
2333 ring->queue_index, pf_q, err);
2334 return -ENOMEM;
2335 }
2336
2337 /* Now associate this queue with this PCI function */
Shannon Nelson9d8bf542014-01-14 00:49:50 -08002338 if (vsi->type == I40E_VSI_VMDQ2)
2339 qtx_ctl = I40E_QTX_CTL_VM_QUEUE;
2340 else
2341 qtx_ctl = I40E_QTX_CTL_PF_QUEUE;
Shannon Nelson13fd9772013-09-28 07:14:19 +00002342 qtx_ctl |= ((hw->pf_id << I40E_QTX_CTL_PF_INDX_SHIFT) &
2343 I40E_QTX_CTL_PF_INDX_MASK);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002344 wr32(hw, I40E_QTX_CTL(pf_q), qtx_ctl);
2345 i40e_flush(hw);
2346
2347 clear_bit(__I40E_HANG_CHECK_ARMED, &ring->state);
2348
2349 /* cache tail off for easier writes later */
2350 ring->tail = hw->hw_addr + I40E_QTX_TAIL(pf_q);
2351
2352 return 0;
2353}
2354
2355/**
2356 * i40e_configure_rx_ring - Configure a receive ring context
2357 * @ring: The Rx ring to configure
2358 *
2359 * Configure the Rx descriptor ring in the HMC context.
2360 **/
2361static int i40e_configure_rx_ring(struct i40e_ring *ring)
2362{
2363 struct i40e_vsi *vsi = ring->vsi;
2364 u32 chain_len = vsi->back->hw.func_caps.rx_buf_chain_len;
2365 u16 pf_q = vsi->base_queue + ring->queue_index;
2366 struct i40e_hw *hw = &vsi->back->hw;
2367 struct i40e_hmc_obj_rxq rx_ctx;
2368 i40e_status err = 0;
2369
2370 ring->state = 0;
2371
2372 /* clear the context structure first */
2373 memset(&rx_ctx, 0, sizeof(rx_ctx));
2374
2375 ring->rx_buf_len = vsi->rx_buf_len;
2376 ring->rx_hdr_len = vsi->rx_hdr_len;
2377
2378 rx_ctx.dbuff = ring->rx_buf_len >> I40E_RXQ_CTX_DBUFF_SHIFT;
2379 rx_ctx.hbuff = ring->rx_hdr_len >> I40E_RXQ_CTX_HBUFF_SHIFT;
2380
2381 rx_ctx.base = (ring->dma / 128);
2382 rx_ctx.qlen = ring->count;
2383
2384 if (vsi->back->flags & I40E_FLAG_16BYTE_RX_DESC_ENABLED) {
2385 set_ring_16byte_desc_enabled(ring);
2386 rx_ctx.dsize = 0;
2387 } else {
2388 rx_ctx.dsize = 1;
2389 }
2390
2391 rx_ctx.dtype = vsi->dtype;
2392 if (vsi->dtype) {
2393 set_ring_ps_enabled(ring);
2394 rx_ctx.hsplit_0 = I40E_RX_SPLIT_L2 |
2395 I40E_RX_SPLIT_IP |
2396 I40E_RX_SPLIT_TCP_UDP |
2397 I40E_RX_SPLIT_SCTP;
2398 } else {
2399 rx_ctx.hsplit_0 = 0;
2400 }
2401
2402 rx_ctx.rxmax = min_t(u16, vsi->max_frame,
2403 (chain_len * ring->rx_buf_len));
2404 rx_ctx.tphrdesc_ena = 1;
2405 rx_ctx.tphwdesc_ena = 1;
2406 rx_ctx.tphdata_ena = 1;
2407 rx_ctx.tphhead_ena = 1;
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00002408 if (hw->revision_id == 0)
2409 rx_ctx.lrxqthresh = 0;
2410 else
2411 rx_ctx.lrxqthresh = 2;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002412 rx_ctx.crcstrip = 1;
2413 rx_ctx.l2tsel = 1;
2414 rx_ctx.showiv = 1;
Catherine Sullivanacb36762014-03-06 09:02:30 +00002415 /* set the prefena field to 1 because the manual says to */
2416 rx_ctx.prefena = 1;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002417
2418 /* clear the context in the HMC */
2419 err = i40e_clear_lan_rx_queue_context(hw, pf_q);
2420 if (err) {
2421 dev_info(&vsi->back->pdev->dev,
2422 "Failed to clear LAN Rx queue context on Rx ring %d (pf_q %d), error: %d\n",
2423 ring->queue_index, pf_q, err);
2424 return -ENOMEM;
2425 }
2426
2427 /* set the context in the HMC */
2428 err = i40e_set_lan_rx_queue_context(hw, pf_q, &rx_ctx);
2429 if (err) {
2430 dev_info(&vsi->back->pdev->dev,
2431 "Failed to set LAN Rx queue context on Rx ring %d (pf_q %d), error: %d\n",
2432 ring->queue_index, pf_q, err);
2433 return -ENOMEM;
2434 }
2435
2436 /* cache tail for quicker writes, and clear the reg before use */
2437 ring->tail = hw->hw_addr + I40E_QRX_TAIL(pf_q);
2438 writel(0, ring->tail);
2439
2440 i40e_alloc_rx_buffers(ring, I40E_DESC_UNUSED(ring));
2441
2442 return 0;
2443}
2444
2445/**
2446 * i40e_vsi_configure_tx - Configure the VSI for Tx
2447 * @vsi: VSI structure describing this set of rings and resources
2448 *
2449 * Configure the Tx VSI for operation.
2450 **/
2451static int i40e_vsi_configure_tx(struct i40e_vsi *vsi)
2452{
2453 int err = 0;
2454 u16 i;
2455
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00002456 for (i = 0; (i < vsi->num_queue_pairs) && !err; i++)
2457 err = i40e_configure_tx_ring(vsi->tx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002458
2459 return err;
2460}
2461
2462/**
2463 * i40e_vsi_configure_rx - Configure the VSI for Rx
2464 * @vsi: the VSI being configured
2465 *
2466 * Configure the Rx VSI for operation.
2467 **/
2468static int i40e_vsi_configure_rx(struct i40e_vsi *vsi)
2469{
2470 int err = 0;
2471 u16 i;
2472
2473 if (vsi->netdev && (vsi->netdev->mtu > ETH_DATA_LEN))
2474 vsi->max_frame = vsi->netdev->mtu + ETH_HLEN
2475 + ETH_FCS_LEN + VLAN_HLEN;
2476 else
2477 vsi->max_frame = I40E_RXBUFFER_2048;
2478
2479 /* figure out correct receive buffer length */
2480 switch (vsi->back->flags & (I40E_FLAG_RX_1BUF_ENABLED |
2481 I40E_FLAG_RX_PS_ENABLED)) {
2482 case I40E_FLAG_RX_1BUF_ENABLED:
2483 vsi->rx_hdr_len = 0;
2484 vsi->rx_buf_len = vsi->max_frame;
2485 vsi->dtype = I40E_RX_DTYPE_NO_SPLIT;
2486 break;
2487 case I40E_FLAG_RX_PS_ENABLED:
2488 vsi->rx_hdr_len = I40E_RX_HDR_SIZE;
2489 vsi->rx_buf_len = I40E_RXBUFFER_2048;
2490 vsi->dtype = I40E_RX_DTYPE_HEADER_SPLIT;
2491 break;
2492 default:
2493 vsi->rx_hdr_len = I40E_RX_HDR_SIZE;
2494 vsi->rx_buf_len = I40E_RXBUFFER_2048;
2495 vsi->dtype = I40E_RX_DTYPE_SPLIT_ALWAYS;
2496 break;
2497 }
2498
2499 /* round up for the chip's needs */
2500 vsi->rx_hdr_len = ALIGN(vsi->rx_hdr_len,
2501 (1 << I40E_RXQ_CTX_HBUFF_SHIFT));
2502 vsi->rx_buf_len = ALIGN(vsi->rx_buf_len,
2503 (1 << I40E_RXQ_CTX_DBUFF_SHIFT));
2504
2505 /* set up individual rings */
2506 for (i = 0; i < vsi->num_queue_pairs && !err; i++)
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00002507 err = i40e_configure_rx_ring(vsi->rx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002508
2509 return err;
2510}
2511
2512/**
2513 * i40e_vsi_config_dcb_rings - Update rings to reflect DCB TC
2514 * @vsi: ptr to the VSI
2515 **/
2516static void i40e_vsi_config_dcb_rings(struct i40e_vsi *vsi)
2517{
Akeem G Abodunrine7046ee2014-04-09 05:58:58 +00002518 struct i40e_ring *tx_ring, *rx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002519 u16 qoffset, qcount;
2520 int i, n;
2521
2522 if (!(vsi->back->flags & I40E_FLAG_DCB_ENABLED))
2523 return;
2524
2525 for (n = 0; n < I40E_MAX_TRAFFIC_CLASS; n++) {
2526 if (!(vsi->tc_config.enabled_tc & (1 << n)))
2527 continue;
2528
2529 qoffset = vsi->tc_config.tc_info[n].qoffset;
2530 qcount = vsi->tc_config.tc_info[n].qcount;
2531 for (i = qoffset; i < (qoffset + qcount); i++) {
Akeem G Abodunrine7046ee2014-04-09 05:58:58 +00002532 rx_ring = vsi->rx_rings[i];
2533 tx_ring = vsi->tx_rings[i];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002534 rx_ring->dcb_tc = n;
2535 tx_ring->dcb_tc = n;
2536 }
2537 }
2538}
2539
2540/**
2541 * i40e_set_vsi_rx_mode - Call set_rx_mode on a VSI
2542 * @vsi: ptr to the VSI
2543 **/
2544static void i40e_set_vsi_rx_mode(struct i40e_vsi *vsi)
2545{
2546 if (vsi->netdev)
2547 i40e_set_rx_mode(vsi->netdev);
2548}
2549
2550/**
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002551 * i40e_fdir_filter_restore - Restore the Sideband Flow Director filters
2552 * @vsi: Pointer to the targeted VSI
2553 *
2554 * This function replays the hlist on the hw where all the SB Flow Director
2555 * filters were saved.
2556 **/
2557static void i40e_fdir_filter_restore(struct i40e_vsi *vsi)
2558{
2559 struct i40e_fdir_filter *filter;
2560 struct i40e_pf *pf = vsi->back;
2561 struct hlist_node *node;
2562
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00002563 if (!(pf->flags & I40E_FLAG_FD_SB_ENABLED))
2564 return;
2565
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002566 hlist_for_each_entry_safe(filter, node,
2567 &pf->fdir_filter_list, fdir_node) {
2568 i40e_add_del_fdir(vsi, filter, true);
2569 }
2570}
2571
2572/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002573 * i40e_vsi_configure - Set up the VSI for action
2574 * @vsi: the VSI being configured
2575 **/
2576static int i40e_vsi_configure(struct i40e_vsi *vsi)
2577{
2578 int err;
2579
2580 i40e_set_vsi_rx_mode(vsi);
2581 i40e_restore_vlan(vsi);
2582 i40e_vsi_config_dcb_rings(vsi);
2583 err = i40e_vsi_configure_tx(vsi);
2584 if (!err)
2585 err = i40e_vsi_configure_rx(vsi);
2586
2587 return err;
2588}
2589
2590/**
2591 * i40e_vsi_configure_msix - MSIX mode Interrupt Config in the HW
2592 * @vsi: the VSI being configured
2593 **/
2594static void i40e_vsi_configure_msix(struct i40e_vsi *vsi)
2595{
2596 struct i40e_pf *pf = vsi->back;
2597 struct i40e_q_vector *q_vector;
2598 struct i40e_hw *hw = &pf->hw;
2599 u16 vector;
2600 int i, q;
2601 u32 val;
2602 u32 qp;
2603
2604 /* The interrupt indexing is offset by 1 in the PFINT_ITRn
2605 * and PFINT_LNKLSTn registers, e.g.:
2606 * PFINT_ITRn[0..n-1] gets msix-1..msix-n (qpair interrupts)
2607 */
2608 qp = vsi->base_queue;
2609 vector = vsi->base_vector;
Alexander Duyck493fb302013-09-28 07:01:44 +00002610 for (i = 0; i < vsi->num_q_vectors; i++, vector++) {
2611 q_vector = vsi->q_vectors[i];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002612 q_vector->rx.itr = ITR_TO_REG(vsi->rx_itr_setting);
2613 q_vector->rx.latency_range = I40E_LOW_LATENCY;
2614 wr32(hw, I40E_PFINT_ITRN(I40E_RX_ITR, vector - 1),
2615 q_vector->rx.itr);
2616 q_vector->tx.itr = ITR_TO_REG(vsi->tx_itr_setting);
2617 q_vector->tx.latency_range = I40E_LOW_LATENCY;
2618 wr32(hw, I40E_PFINT_ITRN(I40E_TX_ITR, vector - 1),
2619 q_vector->tx.itr);
2620
2621 /* Linked list for the queuepairs assigned to this vector */
2622 wr32(hw, I40E_PFINT_LNKLSTN(vector - 1), qp);
2623 for (q = 0; q < q_vector->num_ringpairs; q++) {
2624 val = I40E_QINT_RQCTL_CAUSE_ENA_MASK |
2625 (I40E_RX_ITR << I40E_QINT_RQCTL_ITR_INDX_SHIFT) |
2626 (vector << I40E_QINT_RQCTL_MSIX_INDX_SHIFT) |
2627 (qp << I40E_QINT_RQCTL_NEXTQ_INDX_SHIFT)|
2628 (I40E_QUEUE_TYPE_TX
2629 << I40E_QINT_RQCTL_NEXTQ_TYPE_SHIFT);
2630
2631 wr32(hw, I40E_QINT_RQCTL(qp), val);
2632
2633 val = I40E_QINT_TQCTL_CAUSE_ENA_MASK |
2634 (I40E_TX_ITR << I40E_QINT_TQCTL_ITR_INDX_SHIFT) |
2635 (vector << I40E_QINT_TQCTL_MSIX_INDX_SHIFT) |
2636 ((qp+1) << I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT)|
2637 (I40E_QUEUE_TYPE_RX
2638 << I40E_QINT_TQCTL_NEXTQ_TYPE_SHIFT);
2639
2640 /* Terminate the linked list */
2641 if (q == (q_vector->num_ringpairs - 1))
2642 val |= (I40E_QUEUE_END_OF_LIST
2643 << I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT);
2644
2645 wr32(hw, I40E_QINT_TQCTL(qp), val);
2646 qp++;
2647 }
2648 }
2649
2650 i40e_flush(hw);
2651}
2652
2653/**
2654 * i40e_enable_misc_int_causes - enable the non-queue interrupts
2655 * @hw: ptr to the hardware info
2656 **/
2657static void i40e_enable_misc_int_causes(struct i40e_hw *hw)
2658{
2659 u32 val;
2660
2661 /* clear things first */
2662 wr32(hw, I40E_PFINT_ICR0_ENA, 0); /* disable all */
2663 rd32(hw, I40E_PFINT_ICR0); /* read to clear */
2664
2665 val = I40E_PFINT_ICR0_ENA_ECC_ERR_MASK |
2666 I40E_PFINT_ICR0_ENA_MAL_DETECT_MASK |
2667 I40E_PFINT_ICR0_ENA_GRST_MASK |
2668 I40E_PFINT_ICR0_ENA_PCI_EXCEPTION_MASK |
2669 I40E_PFINT_ICR0_ENA_GPIO_MASK |
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00002670 I40E_PFINT_ICR0_ENA_TIMESYNC_MASK |
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002671 I40E_PFINT_ICR0_ENA_HMC_ERR_MASK |
2672 I40E_PFINT_ICR0_ENA_VFLR_MASK |
2673 I40E_PFINT_ICR0_ENA_ADMINQ_MASK;
2674
2675 wr32(hw, I40E_PFINT_ICR0_ENA, val);
2676
2677 /* SW_ITR_IDX = 0, but don't change INTENA */
Anjali Singhai Jain84ed40e2013-11-26 10:49:32 +00002678 wr32(hw, I40E_PFINT_DYN_CTL0, I40E_PFINT_DYN_CTL0_SW_ITR_INDX_MASK |
2679 I40E_PFINT_DYN_CTL0_INTENA_MSK_MASK);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002680
2681 /* OTHER_ITR_IDX = 0 */
2682 wr32(hw, I40E_PFINT_STAT_CTL0, 0);
2683}
2684
2685/**
2686 * i40e_configure_msi_and_legacy - Legacy mode interrupt config in the HW
2687 * @vsi: the VSI being configured
2688 **/
2689static void i40e_configure_msi_and_legacy(struct i40e_vsi *vsi)
2690{
Alexander Duyck493fb302013-09-28 07:01:44 +00002691 struct i40e_q_vector *q_vector = vsi->q_vectors[0];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002692 struct i40e_pf *pf = vsi->back;
2693 struct i40e_hw *hw = &pf->hw;
2694 u32 val;
2695
2696 /* set the ITR configuration */
2697 q_vector->rx.itr = ITR_TO_REG(vsi->rx_itr_setting);
2698 q_vector->rx.latency_range = I40E_LOW_LATENCY;
2699 wr32(hw, I40E_PFINT_ITR0(I40E_RX_ITR), q_vector->rx.itr);
2700 q_vector->tx.itr = ITR_TO_REG(vsi->tx_itr_setting);
2701 q_vector->tx.latency_range = I40E_LOW_LATENCY;
2702 wr32(hw, I40E_PFINT_ITR0(I40E_TX_ITR), q_vector->tx.itr);
2703
2704 i40e_enable_misc_int_causes(hw);
2705
2706 /* FIRSTQ_INDX = 0, FIRSTQ_TYPE = 0 (rx) */
2707 wr32(hw, I40E_PFINT_LNKLST0, 0);
2708
Jesse Brandeburgf29eaa32014-02-11 08:24:12 +00002709 /* Associate the queue pair to the vector and enable the queue int */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002710 val = I40E_QINT_RQCTL_CAUSE_ENA_MASK |
2711 (I40E_RX_ITR << I40E_QINT_RQCTL_ITR_INDX_SHIFT) |
2712 (I40E_QUEUE_TYPE_TX << I40E_QINT_TQCTL_NEXTQ_TYPE_SHIFT);
2713
2714 wr32(hw, I40E_QINT_RQCTL(0), val);
2715
2716 val = I40E_QINT_TQCTL_CAUSE_ENA_MASK |
2717 (I40E_TX_ITR << I40E_QINT_TQCTL_ITR_INDX_SHIFT) |
2718 (I40E_QUEUE_END_OF_LIST << I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT);
2719
2720 wr32(hw, I40E_QINT_TQCTL(0), val);
2721 i40e_flush(hw);
2722}
2723
2724/**
Mitch Williams2ef28cf2013-11-28 06:39:32 +00002725 * i40e_irq_dynamic_disable_icr0 - Disable default interrupt generation for icr0
2726 * @pf: board private structure
2727 **/
2728void i40e_irq_dynamic_disable_icr0(struct i40e_pf *pf)
2729{
2730 struct i40e_hw *hw = &pf->hw;
2731
2732 wr32(hw, I40E_PFINT_DYN_CTL0,
2733 I40E_ITR_NONE << I40E_PFINT_DYN_CTLN_ITR_INDX_SHIFT);
2734 i40e_flush(hw);
2735}
2736
2737/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002738 * i40e_irq_dynamic_enable_icr0 - Enable default interrupt generation for icr0
2739 * @pf: board private structure
2740 **/
Shannon Nelson116a57d2013-09-28 07:13:59 +00002741void i40e_irq_dynamic_enable_icr0(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002742{
2743 struct i40e_hw *hw = &pf->hw;
2744 u32 val;
2745
2746 val = I40E_PFINT_DYN_CTL0_INTENA_MASK |
2747 I40E_PFINT_DYN_CTL0_CLEARPBA_MASK |
2748 (I40E_ITR_NONE << I40E_PFINT_DYN_CTL0_ITR_INDX_SHIFT);
2749
2750 wr32(hw, I40E_PFINT_DYN_CTL0, val);
2751 i40e_flush(hw);
2752}
2753
2754/**
2755 * i40e_irq_dynamic_enable - Enable default interrupt generation settings
2756 * @vsi: pointer to a vsi
2757 * @vector: enable a particular Hw Interrupt vector
2758 **/
2759void i40e_irq_dynamic_enable(struct i40e_vsi *vsi, int vector)
2760{
2761 struct i40e_pf *pf = vsi->back;
2762 struct i40e_hw *hw = &pf->hw;
2763 u32 val;
2764
2765 val = I40E_PFINT_DYN_CTLN_INTENA_MASK |
2766 I40E_PFINT_DYN_CTLN_CLEARPBA_MASK |
2767 (I40E_ITR_NONE << I40E_PFINT_DYN_CTLN_ITR_INDX_SHIFT);
2768 wr32(hw, I40E_PFINT_DYN_CTLN(vector - 1), val);
Jesse Brandeburg1022cb62013-09-28 07:13:08 +00002769 /* skip the flush */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002770}
2771
2772/**
Carolyn Wyborny5c2cebd2014-06-04 01:23:18 +00002773 * i40e_irq_dynamic_disable - Disable default interrupt generation settings
2774 * @vsi: pointer to a vsi
2775 * @vector: enable a particular Hw Interrupt vector
2776 **/
2777void i40e_irq_dynamic_disable(struct i40e_vsi *vsi, int vector)
2778{
2779 struct i40e_pf *pf = vsi->back;
2780 struct i40e_hw *hw = &pf->hw;
2781 u32 val;
2782
2783 val = I40E_ITR_NONE << I40E_PFINT_DYN_CTLN_ITR_INDX_SHIFT;
2784 wr32(hw, I40E_PFINT_DYN_CTLN(vector - 1), val);
2785 i40e_flush(hw);
2786}
2787
2788/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002789 * i40e_msix_clean_rings - MSIX mode Interrupt Handler
2790 * @irq: interrupt number
2791 * @data: pointer to a q_vector
2792 **/
2793static irqreturn_t i40e_msix_clean_rings(int irq, void *data)
2794{
2795 struct i40e_q_vector *q_vector = data;
2796
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00002797 if (!q_vector->tx.ring && !q_vector->rx.ring)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002798 return IRQ_HANDLED;
2799
2800 napi_schedule(&q_vector->napi);
2801
2802 return IRQ_HANDLED;
2803}
2804
2805/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002806 * i40e_vsi_request_irq_msix - Initialize MSI-X interrupts
2807 * @vsi: the VSI being configured
2808 * @basename: name for the vector
2809 *
2810 * Allocates MSI-X vectors and requests interrupts from the kernel.
2811 **/
2812static int i40e_vsi_request_irq_msix(struct i40e_vsi *vsi, char *basename)
2813{
2814 int q_vectors = vsi->num_q_vectors;
2815 struct i40e_pf *pf = vsi->back;
2816 int base = vsi->base_vector;
2817 int rx_int_idx = 0;
2818 int tx_int_idx = 0;
2819 int vector, err;
2820
2821 for (vector = 0; vector < q_vectors; vector++) {
Alexander Duyck493fb302013-09-28 07:01:44 +00002822 struct i40e_q_vector *q_vector = vsi->q_vectors[vector];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002823
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00002824 if (q_vector->tx.ring && q_vector->rx.ring) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002825 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
2826 "%s-%s-%d", basename, "TxRx", rx_int_idx++);
2827 tx_int_idx++;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00002828 } else if (q_vector->rx.ring) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002829 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
2830 "%s-%s-%d", basename, "rx", rx_int_idx++);
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00002831 } else if (q_vector->tx.ring) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002832 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
2833 "%s-%s-%d", basename, "tx", tx_int_idx++);
2834 } else {
2835 /* skip this unused q_vector */
2836 continue;
2837 }
2838 err = request_irq(pf->msix_entries[base + vector].vector,
2839 vsi->irq_handler,
2840 0,
2841 q_vector->name,
2842 q_vector);
2843 if (err) {
2844 dev_info(&pf->pdev->dev,
2845 "%s: request_irq failed, error: %d\n",
2846 __func__, err);
2847 goto free_queue_irqs;
2848 }
2849 /* assign the mask for this irq */
2850 irq_set_affinity_hint(pf->msix_entries[base + vector].vector,
2851 &q_vector->affinity_mask);
2852 }
2853
Shannon Nelson63741842014-04-23 04:50:16 +00002854 vsi->irqs_ready = true;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002855 return 0;
2856
2857free_queue_irqs:
2858 while (vector) {
2859 vector--;
2860 irq_set_affinity_hint(pf->msix_entries[base + vector].vector,
2861 NULL);
2862 free_irq(pf->msix_entries[base + vector].vector,
2863 &(vsi->q_vectors[vector]));
2864 }
2865 return err;
2866}
2867
2868/**
2869 * i40e_vsi_disable_irq - Mask off queue interrupt generation on the VSI
2870 * @vsi: the VSI being un-configured
2871 **/
2872static void i40e_vsi_disable_irq(struct i40e_vsi *vsi)
2873{
2874 struct i40e_pf *pf = vsi->back;
2875 struct i40e_hw *hw = &pf->hw;
2876 int base = vsi->base_vector;
2877 int i;
2878
2879 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00002880 wr32(hw, I40E_QINT_TQCTL(vsi->tx_rings[i]->reg_idx), 0);
2881 wr32(hw, I40E_QINT_RQCTL(vsi->rx_rings[i]->reg_idx), 0);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002882 }
2883
2884 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
2885 for (i = vsi->base_vector;
2886 i < (vsi->num_q_vectors + vsi->base_vector); i++)
2887 wr32(hw, I40E_PFINT_DYN_CTLN(i - 1), 0);
2888
2889 i40e_flush(hw);
2890 for (i = 0; i < vsi->num_q_vectors; i++)
2891 synchronize_irq(pf->msix_entries[i + base].vector);
2892 } else {
2893 /* Legacy and MSI mode - this stops all interrupt handling */
2894 wr32(hw, I40E_PFINT_ICR0_ENA, 0);
2895 wr32(hw, I40E_PFINT_DYN_CTL0, 0);
2896 i40e_flush(hw);
2897 synchronize_irq(pf->pdev->irq);
2898 }
2899}
2900
2901/**
2902 * i40e_vsi_enable_irq - Enable IRQ for the given VSI
2903 * @vsi: the VSI being configured
2904 **/
2905static int i40e_vsi_enable_irq(struct i40e_vsi *vsi)
2906{
2907 struct i40e_pf *pf = vsi->back;
2908 int i;
2909
2910 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
2911 for (i = vsi->base_vector;
2912 i < (vsi->num_q_vectors + vsi->base_vector); i++)
2913 i40e_irq_dynamic_enable(vsi, i);
2914 } else {
2915 i40e_irq_dynamic_enable_icr0(pf);
2916 }
2917
Jesse Brandeburg1022cb62013-09-28 07:13:08 +00002918 i40e_flush(&pf->hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002919 return 0;
2920}
2921
2922/**
2923 * i40e_stop_misc_vector - Stop the vector that handles non-queue events
2924 * @pf: board private structure
2925 **/
2926static void i40e_stop_misc_vector(struct i40e_pf *pf)
2927{
2928 /* Disable ICR 0 */
2929 wr32(&pf->hw, I40E_PFINT_ICR0_ENA, 0);
2930 i40e_flush(&pf->hw);
2931}
2932
2933/**
2934 * i40e_intr - MSI/Legacy and non-queue interrupt handler
2935 * @irq: interrupt number
2936 * @data: pointer to a q_vector
2937 *
2938 * This is the handler used for all MSI/Legacy interrupts, and deals
2939 * with both queue and non-queue interrupts. This is also used in
2940 * MSIX mode to handle the non-queue interrupts.
2941 **/
2942static irqreturn_t i40e_intr(int irq, void *data)
2943{
2944 struct i40e_pf *pf = (struct i40e_pf *)data;
2945 struct i40e_hw *hw = &pf->hw;
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00002946 irqreturn_t ret = IRQ_NONE;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002947 u32 icr0, icr0_remaining;
2948 u32 val, ena_mask;
2949
2950 icr0 = rd32(hw, I40E_PFINT_ICR0);
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00002951 ena_mask = rd32(hw, I40E_PFINT_ICR0_ENA);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002952
Shannon Nelson116a57d2013-09-28 07:13:59 +00002953 /* if sharing a legacy IRQ, we might get called w/o an intr pending */
2954 if ((icr0 & I40E_PFINT_ICR0_INTEVENT_MASK) == 0)
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00002955 goto enable_intr;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002956
Shannon Nelsoncd92e722013-11-16 10:00:44 +00002957 /* if interrupt but no bits showing, must be SWINT */
2958 if (((icr0 & ~I40E_PFINT_ICR0_INTEVENT_MASK) == 0) ||
2959 (icr0 & I40E_PFINT_ICR0_SWINT_MASK))
2960 pf->sw_int_count++;
2961
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002962 /* only q0 is used in MSI/Legacy mode, and none are used in MSIX */
2963 if (icr0 & I40E_PFINT_ICR0_QUEUE_0_MASK) {
2964
2965 /* temporarily disable queue cause for NAPI processing */
2966 u32 qval = rd32(hw, I40E_QINT_RQCTL(0));
2967 qval &= ~I40E_QINT_RQCTL_CAUSE_ENA_MASK;
2968 wr32(hw, I40E_QINT_RQCTL(0), qval);
2969
2970 qval = rd32(hw, I40E_QINT_TQCTL(0));
2971 qval &= ~I40E_QINT_TQCTL_CAUSE_ENA_MASK;
2972 wr32(hw, I40E_QINT_TQCTL(0), qval);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002973
2974 if (!test_bit(__I40E_DOWN, &pf->state))
Alexander Duyck493fb302013-09-28 07:01:44 +00002975 napi_schedule(&pf->vsi[pf->lan_vsi]->q_vectors[0]->napi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002976 }
2977
2978 if (icr0 & I40E_PFINT_ICR0_ADMINQ_MASK) {
2979 ena_mask &= ~I40E_PFINT_ICR0_ENA_ADMINQ_MASK;
2980 set_bit(__I40E_ADMINQ_EVENT_PENDING, &pf->state);
2981 }
2982
2983 if (icr0 & I40E_PFINT_ICR0_MAL_DETECT_MASK) {
2984 ena_mask &= ~I40E_PFINT_ICR0_ENA_MAL_DETECT_MASK;
2985 set_bit(__I40E_MDD_EVENT_PENDING, &pf->state);
2986 }
2987
2988 if (icr0 & I40E_PFINT_ICR0_VFLR_MASK) {
2989 ena_mask &= ~I40E_PFINT_ICR0_ENA_VFLR_MASK;
2990 set_bit(__I40E_VFLR_EVENT_PENDING, &pf->state);
2991 }
2992
2993 if (icr0 & I40E_PFINT_ICR0_GRST_MASK) {
2994 if (!test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state))
2995 set_bit(__I40E_RESET_INTR_RECEIVED, &pf->state);
2996 ena_mask &= ~I40E_PFINT_ICR0_ENA_GRST_MASK;
2997 val = rd32(hw, I40E_GLGEN_RSTAT);
2998 val = (val & I40E_GLGEN_RSTAT_RESET_TYPE_MASK)
2999 >> I40E_GLGEN_RSTAT_RESET_TYPE_SHIFT;
Shannon Nelson4eb3f762014-03-06 08:59:58 +00003000 if (val == I40E_RESET_CORER) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003001 pf->corer_count++;
Shannon Nelson4eb3f762014-03-06 08:59:58 +00003002 } else if (val == I40E_RESET_GLOBR) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003003 pf->globr_count++;
Shannon Nelson4eb3f762014-03-06 08:59:58 +00003004 } else if (val == I40E_RESET_EMPR) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003005 pf->empr_count++;
Shannon Nelson4eb3f762014-03-06 08:59:58 +00003006 set_bit(__I40E_EMP_RESET_REQUESTED, &pf->state);
3007 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003008 }
3009
Anjali Singhai Jain9c010ee2013-11-28 06:39:20 +00003010 if (icr0 & I40E_PFINT_ICR0_HMC_ERR_MASK) {
3011 icr0 &= ~I40E_PFINT_ICR0_HMC_ERR_MASK;
3012 dev_info(&pf->pdev->dev, "HMC error interrupt\n");
3013 }
3014
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00003015 if (icr0 & I40E_PFINT_ICR0_TIMESYNC_MASK) {
3016 u32 prttsyn_stat = rd32(hw, I40E_PRTTSYN_STAT_0);
3017
3018 if (prttsyn_stat & I40E_PRTTSYN_STAT_0_TXTIME_MASK) {
Jacob Kellercafa1fc2014-04-24 18:05:03 -07003019 icr0 &= ~I40E_PFINT_ICR0_ENA_TIMESYNC_MASK;
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00003020 i40e_ptp_tx_hwtstamp(pf);
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00003021 }
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00003022 }
3023
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003024 /* If a critical error is pending we have no choice but to reset the
3025 * device.
3026 * Report and mask out any remaining unexpected interrupts.
3027 */
3028 icr0_remaining = icr0 & ena_mask;
3029 if (icr0_remaining) {
3030 dev_info(&pf->pdev->dev, "unhandled interrupt icr0=0x%08x\n",
3031 icr0_remaining);
Anjali Singhai Jain9c010ee2013-11-28 06:39:20 +00003032 if ((icr0_remaining & I40E_PFINT_ICR0_PE_CRITERR_MASK) ||
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003033 (icr0_remaining & I40E_PFINT_ICR0_PCI_EXCEPTION_MASK) ||
Anjali Singhai Jainc0c28972014-02-12 01:45:34 +00003034 (icr0_remaining & I40E_PFINT_ICR0_ECC_ERR_MASK)) {
Anjali Singhai Jain9c010ee2013-11-28 06:39:20 +00003035 dev_info(&pf->pdev->dev, "device will be reset\n");
3036 set_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
3037 i40e_service_event_schedule(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003038 }
3039 ena_mask &= ~icr0_remaining;
3040 }
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003041 ret = IRQ_HANDLED;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003042
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003043enable_intr:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003044 /* re-enable interrupt causes */
3045 wr32(hw, I40E_PFINT_ICR0_ENA, ena_mask);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003046 if (!test_bit(__I40E_DOWN, &pf->state)) {
3047 i40e_service_event_schedule(pf);
3048 i40e_irq_dynamic_enable_icr0(pf);
3049 }
3050
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003051 return ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003052}
3053
3054/**
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003055 * i40e_clean_fdir_tx_irq - Reclaim resources after transmit completes
3056 * @tx_ring: tx ring to clean
3057 * @budget: how many cleans we're allowed
3058 *
3059 * Returns true if there's any budget left (e.g. the clean is finished)
3060 **/
3061static bool i40e_clean_fdir_tx_irq(struct i40e_ring *tx_ring, int budget)
3062{
3063 struct i40e_vsi *vsi = tx_ring->vsi;
3064 u16 i = tx_ring->next_to_clean;
3065 struct i40e_tx_buffer *tx_buf;
3066 struct i40e_tx_desc *tx_desc;
3067
3068 tx_buf = &tx_ring->tx_bi[i];
3069 tx_desc = I40E_TX_DESC(tx_ring, i);
3070 i -= tx_ring->count;
3071
3072 do {
3073 struct i40e_tx_desc *eop_desc = tx_buf->next_to_watch;
3074
3075 /* if next_to_watch is not set then there is no work pending */
3076 if (!eop_desc)
3077 break;
3078
3079 /* prevent any other reads prior to eop_desc */
3080 read_barrier_depends();
3081
3082 /* if the descriptor isn't done, no work yet to do */
3083 if (!(eop_desc->cmd_type_offset_bsz &
3084 cpu_to_le64(I40E_TX_DESC_DTYPE_DESC_DONE)))
3085 break;
3086
3087 /* clear next_to_watch to prevent false hangs */
3088 tx_buf->next_to_watch = NULL;
3089
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003090 tx_desc->buffer_addr = 0;
3091 tx_desc->cmd_type_offset_bsz = 0;
3092 /* move past filter desc */
3093 tx_buf++;
3094 tx_desc++;
3095 i++;
3096 if (unlikely(!i)) {
3097 i -= tx_ring->count;
3098 tx_buf = tx_ring->tx_bi;
3099 tx_desc = I40E_TX_DESC(tx_ring, 0);
3100 }
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003101 /* unmap skb header data */
3102 dma_unmap_single(tx_ring->dev,
3103 dma_unmap_addr(tx_buf, dma),
3104 dma_unmap_len(tx_buf, len),
3105 DMA_TO_DEVICE);
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003106 if (tx_buf->tx_flags & I40E_TX_FLAGS_FD_SB)
3107 kfree(tx_buf->raw_buf);
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003108
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003109 tx_buf->raw_buf = NULL;
3110 tx_buf->tx_flags = 0;
3111 tx_buf->next_to_watch = NULL;
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003112 dma_unmap_len_set(tx_buf, len, 0);
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003113 tx_desc->buffer_addr = 0;
3114 tx_desc->cmd_type_offset_bsz = 0;
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003115
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003116 /* move us past the eop_desc for start of next FD desc */
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003117 tx_buf++;
3118 tx_desc++;
3119 i++;
3120 if (unlikely(!i)) {
3121 i -= tx_ring->count;
3122 tx_buf = tx_ring->tx_bi;
3123 tx_desc = I40E_TX_DESC(tx_ring, 0);
3124 }
3125
3126 /* update budget accounting */
3127 budget--;
3128 } while (likely(budget));
3129
3130 i += tx_ring->count;
3131 tx_ring->next_to_clean = i;
3132
3133 if (vsi->back->flags & I40E_FLAG_MSIX_ENABLED) {
3134 i40e_irq_dynamic_enable(vsi,
3135 tx_ring->q_vector->v_idx + vsi->base_vector);
3136 }
3137 return budget > 0;
3138}
3139
3140/**
3141 * i40e_fdir_clean_ring - Interrupt Handler for FDIR SB ring
3142 * @irq: interrupt number
3143 * @data: pointer to a q_vector
3144 **/
3145static irqreturn_t i40e_fdir_clean_ring(int irq, void *data)
3146{
3147 struct i40e_q_vector *q_vector = data;
3148 struct i40e_vsi *vsi;
3149
3150 if (!q_vector->tx.ring)
3151 return IRQ_HANDLED;
3152
3153 vsi = q_vector->tx.ring->vsi;
3154 i40e_clean_fdir_tx_irq(q_vector->tx.ring, vsi->work_limit);
3155
3156 return IRQ_HANDLED;
3157}
3158
3159/**
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003160 * i40e_map_vector_to_qp - Assigns the queue pair to the vector
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003161 * @vsi: the VSI being configured
3162 * @v_idx: vector index
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003163 * @qp_idx: queue pair index
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003164 **/
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003165static void map_vector_to_qp(struct i40e_vsi *vsi, int v_idx, int qp_idx)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003166{
Alexander Duyck493fb302013-09-28 07:01:44 +00003167 struct i40e_q_vector *q_vector = vsi->q_vectors[v_idx];
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00003168 struct i40e_ring *tx_ring = vsi->tx_rings[qp_idx];
3169 struct i40e_ring *rx_ring = vsi->rx_rings[qp_idx];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003170
3171 tx_ring->q_vector = q_vector;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003172 tx_ring->next = q_vector->tx.ring;
3173 q_vector->tx.ring = tx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003174 q_vector->tx.count++;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003175
3176 rx_ring->q_vector = q_vector;
3177 rx_ring->next = q_vector->rx.ring;
3178 q_vector->rx.ring = rx_ring;
3179 q_vector->rx.count++;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003180}
3181
3182/**
3183 * i40e_vsi_map_rings_to_vectors - Maps descriptor rings to vectors
3184 * @vsi: the VSI being configured
3185 *
3186 * This function maps descriptor rings to the queue-specific vectors
3187 * we were allotted through the MSI-X enabling code. Ideally, we'd have
3188 * one vector per queue pair, but on a constrained vector budget, we
3189 * group the queue pairs as "efficiently" as possible.
3190 **/
3191static void i40e_vsi_map_rings_to_vectors(struct i40e_vsi *vsi)
3192{
3193 int qp_remaining = vsi->num_queue_pairs;
3194 int q_vectors = vsi->num_q_vectors;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003195 int num_ringpairs;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003196 int v_start = 0;
3197 int qp_idx = 0;
3198
3199 /* If we don't have enough vectors for a 1-to-1 mapping, we'll have to
3200 * group them so there are multiple queues per vector.
Anjali Singhai Jain70114ec2014-06-03 23:50:14 +00003201 * It is also important to go through all the vectors available to be
3202 * sure that if we don't use all the vectors, that the remaining vectors
3203 * are cleared. This is especially important when decreasing the
3204 * number of queues in use.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003205 */
Anjali Singhai Jain70114ec2014-06-03 23:50:14 +00003206 for (; v_start < q_vectors; v_start++) {
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003207 struct i40e_q_vector *q_vector = vsi->q_vectors[v_start];
3208
3209 num_ringpairs = DIV_ROUND_UP(qp_remaining, q_vectors - v_start);
3210
3211 q_vector->num_ringpairs = num_ringpairs;
3212
3213 q_vector->rx.count = 0;
3214 q_vector->tx.count = 0;
3215 q_vector->rx.ring = NULL;
3216 q_vector->tx.ring = NULL;
3217
3218 while (num_ringpairs--) {
3219 map_vector_to_qp(vsi, v_start, qp_idx);
3220 qp_idx++;
3221 qp_remaining--;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003222 }
3223 }
3224}
3225
3226/**
3227 * i40e_vsi_request_irq - Request IRQ from the OS
3228 * @vsi: the VSI being configured
3229 * @basename: name for the vector
3230 **/
3231static int i40e_vsi_request_irq(struct i40e_vsi *vsi, char *basename)
3232{
3233 struct i40e_pf *pf = vsi->back;
3234 int err;
3235
3236 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
3237 err = i40e_vsi_request_irq_msix(vsi, basename);
3238 else if (pf->flags & I40E_FLAG_MSI_ENABLED)
3239 err = request_irq(pf->pdev->irq, i40e_intr, 0,
3240 pf->misc_int_name, pf);
3241 else
3242 err = request_irq(pf->pdev->irq, i40e_intr, IRQF_SHARED,
3243 pf->misc_int_name, pf);
3244
3245 if (err)
3246 dev_info(&pf->pdev->dev, "request_irq failed, Error %d\n", err);
3247
3248 return err;
3249}
3250
3251#ifdef CONFIG_NET_POLL_CONTROLLER
3252/**
3253 * i40e_netpoll - A Polling 'interrupt'handler
3254 * @netdev: network interface device structure
3255 *
3256 * This is used by netconsole to send skbs without having to re-enable
3257 * interrupts. It's not called while the normal interrupt routine is executing.
3258 **/
3259static void i40e_netpoll(struct net_device *netdev)
3260{
3261 struct i40e_netdev_priv *np = netdev_priv(netdev);
3262 struct i40e_vsi *vsi = np->vsi;
3263 struct i40e_pf *pf = vsi->back;
3264 int i;
3265
3266 /* if interface is down do nothing */
3267 if (test_bit(__I40E_DOWN, &vsi->state))
3268 return;
3269
3270 pf->flags |= I40E_FLAG_IN_NETPOLL;
3271 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
3272 for (i = 0; i < vsi->num_q_vectors; i++)
Alexander Duyck493fb302013-09-28 07:01:44 +00003273 i40e_msix_clean_rings(0, vsi->q_vectors[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003274 } else {
3275 i40e_intr(pf->pdev->irq, netdev);
3276 }
3277 pf->flags &= ~I40E_FLAG_IN_NETPOLL;
3278}
3279#endif
3280
3281/**
Neerav Parikh23527302014-06-03 23:50:15 +00003282 * i40e_pf_txq_wait - Wait for a PF's Tx queue to be enabled or disabled
3283 * @pf: the PF being configured
3284 * @pf_q: the PF queue
3285 * @enable: enable or disable state of the queue
3286 *
3287 * This routine will wait for the given Tx queue of the PF to reach the
3288 * enabled or disabled state.
3289 * Returns -ETIMEDOUT in case of failing to reach the requested state after
3290 * multiple retries; else will return 0 in case of success.
3291 **/
3292static int i40e_pf_txq_wait(struct i40e_pf *pf, int pf_q, bool enable)
3293{
3294 int i;
3295 u32 tx_reg;
3296
3297 for (i = 0; i < I40E_QUEUE_WAIT_RETRY_LIMIT; i++) {
3298 tx_reg = rd32(&pf->hw, I40E_QTX_ENA(pf_q));
3299 if (enable == !!(tx_reg & I40E_QTX_ENA_QENA_STAT_MASK))
3300 break;
3301
3302 udelay(10);
3303 }
3304 if (i >= I40E_QUEUE_WAIT_RETRY_LIMIT)
3305 return -ETIMEDOUT;
3306
3307 return 0;
3308}
3309
3310/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003311 * i40e_vsi_control_tx - Start or stop a VSI's rings
3312 * @vsi: the VSI being configured
3313 * @enable: start or stop the rings
3314 **/
3315static int i40e_vsi_control_tx(struct i40e_vsi *vsi, bool enable)
3316{
3317 struct i40e_pf *pf = vsi->back;
3318 struct i40e_hw *hw = &pf->hw;
Neerav Parikh23527302014-06-03 23:50:15 +00003319 int i, j, pf_q, ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003320 u32 tx_reg;
3321
3322 pf_q = vsi->base_queue;
3323 for (i = 0; i < vsi->num_queue_pairs; i++, pf_q++) {
Matt Jared351499a2014-04-23 04:50:03 +00003324
3325 /* warn the TX unit of coming changes */
3326 i40e_pre_tx_queue_cfg(&pf->hw, pf_q, enable);
3327 if (!enable)
3328 udelay(10);
3329
Mitch Williams6c5ef622014-02-20 19:29:16 -08003330 for (j = 0; j < 50; j++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003331 tx_reg = rd32(hw, I40E_QTX_ENA(pf_q));
Mitch Williams6c5ef622014-02-20 19:29:16 -08003332 if (((tx_reg >> I40E_QTX_ENA_QENA_REQ_SHIFT) & 1) ==
3333 ((tx_reg >> I40E_QTX_ENA_QENA_STAT_SHIFT) & 1))
3334 break;
3335 usleep_range(1000, 2000);
3336 }
Mitch Williamsfda972f2013-11-28 06:39:29 +00003337 /* Skip if the queue is already in the requested state */
Catherine Sullivan7c122002014-03-14 07:32:29 +00003338 if (enable == !!(tx_reg & I40E_QTX_ENA_QENA_STAT_MASK))
Mitch Williamsfda972f2013-11-28 06:39:29 +00003339 continue;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003340
3341 /* turn on/off the queue */
Shannon Nelsonc5c9eb92013-12-21 05:44:48 +00003342 if (enable) {
3343 wr32(hw, I40E_QTX_HEAD(pf_q), 0);
Mitch Williams6c5ef622014-02-20 19:29:16 -08003344 tx_reg |= I40E_QTX_ENA_QENA_REQ_MASK;
Shannon Nelsonc5c9eb92013-12-21 05:44:48 +00003345 } else {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003346 tx_reg &= ~I40E_QTX_ENA_QENA_REQ_MASK;
Shannon Nelsonc5c9eb92013-12-21 05:44:48 +00003347 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003348
3349 wr32(hw, I40E_QTX_ENA(pf_q), tx_reg);
3350
3351 /* wait for the change to finish */
Neerav Parikh23527302014-06-03 23:50:15 +00003352 ret = i40e_pf_txq_wait(pf, pf_q, enable);
3353 if (ret) {
3354 dev_info(&pf->pdev->dev,
3355 "%s: VSI seid %d Tx ring %d %sable timeout\n",
3356 __func__, vsi->seid, pf_q,
3357 (enable ? "en" : "dis"));
3358 break;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003359 }
3360 }
3361
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00003362 if (hw->revision_id == 0)
3363 mdelay(50);
Neerav Parikh23527302014-06-03 23:50:15 +00003364 return ret;
3365}
3366
3367/**
3368 * i40e_pf_rxq_wait - Wait for a PF's Rx queue to be enabled or disabled
3369 * @pf: the PF being configured
3370 * @pf_q: the PF queue
3371 * @enable: enable or disable state of the queue
3372 *
3373 * This routine will wait for the given Rx queue of the PF to reach the
3374 * enabled or disabled state.
3375 * Returns -ETIMEDOUT in case of failing to reach the requested state after
3376 * multiple retries; else will return 0 in case of success.
3377 **/
3378static int i40e_pf_rxq_wait(struct i40e_pf *pf, int pf_q, bool enable)
3379{
3380 int i;
3381 u32 rx_reg;
3382
3383 for (i = 0; i < I40E_QUEUE_WAIT_RETRY_LIMIT; i++) {
3384 rx_reg = rd32(&pf->hw, I40E_QRX_ENA(pf_q));
3385 if (enable == !!(rx_reg & I40E_QRX_ENA_QENA_STAT_MASK))
3386 break;
3387
3388 udelay(10);
3389 }
3390 if (i >= I40E_QUEUE_WAIT_RETRY_LIMIT)
3391 return -ETIMEDOUT;
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00003392
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003393 return 0;
3394}
3395
3396/**
3397 * i40e_vsi_control_rx - Start or stop a VSI's rings
3398 * @vsi: the VSI being configured
3399 * @enable: start or stop the rings
3400 **/
3401static int i40e_vsi_control_rx(struct i40e_vsi *vsi, bool enable)
3402{
3403 struct i40e_pf *pf = vsi->back;
3404 struct i40e_hw *hw = &pf->hw;
Neerav Parikh23527302014-06-03 23:50:15 +00003405 int i, j, pf_q, ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003406 u32 rx_reg;
3407
3408 pf_q = vsi->base_queue;
3409 for (i = 0; i < vsi->num_queue_pairs; i++, pf_q++) {
Mitch Williams6c5ef622014-02-20 19:29:16 -08003410 for (j = 0; j < 50; j++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003411 rx_reg = rd32(hw, I40E_QRX_ENA(pf_q));
Mitch Williams6c5ef622014-02-20 19:29:16 -08003412 if (((rx_reg >> I40E_QRX_ENA_QENA_REQ_SHIFT) & 1) ==
3413 ((rx_reg >> I40E_QRX_ENA_QENA_STAT_SHIFT) & 1))
3414 break;
3415 usleep_range(1000, 2000);
3416 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003417
Catherine Sullivan7c122002014-03-14 07:32:29 +00003418 /* Skip if the queue is already in the requested state */
3419 if (enable == !!(rx_reg & I40E_QRX_ENA_QENA_STAT_MASK))
3420 continue;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003421
3422 /* turn on/off the queue */
3423 if (enable)
Mitch Williams6c5ef622014-02-20 19:29:16 -08003424 rx_reg |= I40E_QRX_ENA_QENA_REQ_MASK;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003425 else
Mitch Williams6c5ef622014-02-20 19:29:16 -08003426 rx_reg &= ~I40E_QRX_ENA_QENA_REQ_MASK;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003427 wr32(hw, I40E_QRX_ENA(pf_q), rx_reg);
3428
3429 /* wait for the change to finish */
Neerav Parikh23527302014-06-03 23:50:15 +00003430 ret = i40e_pf_rxq_wait(pf, pf_q, enable);
3431 if (ret) {
3432 dev_info(&pf->pdev->dev,
3433 "%s: VSI seid %d Rx ring %d %sable timeout\n",
3434 __func__, vsi->seid, pf_q,
3435 (enable ? "en" : "dis"));
3436 break;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003437 }
3438 }
3439
Neerav Parikh23527302014-06-03 23:50:15 +00003440 return ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003441}
3442
3443/**
3444 * i40e_vsi_control_rings - Start or stop a VSI's rings
3445 * @vsi: the VSI being configured
3446 * @enable: start or stop the rings
3447 **/
Mitch Williamsfc18eaa2013-11-28 06:39:27 +00003448int i40e_vsi_control_rings(struct i40e_vsi *vsi, bool request)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003449{
Anjali Singhai Jain3b867b22013-12-21 05:44:44 +00003450 int ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003451
3452 /* do rx first for enable and last for disable */
3453 if (request) {
3454 ret = i40e_vsi_control_rx(vsi, request);
3455 if (ret)
3456 return ret;
3457 ret = i40e_vsi_control_tx(vsi, request);
3458 } else {
Anjali Singhai Jain3b867b22013-12-21 05:44:44 +00003459 /* Ignore return value, we need to shutdown whatever we can */
3460 i40e_vsi_control_tx(vsi, request);
3461 i40e_vsi_control_rx(vsi, request);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003462 }
3463
3464 return ret;
3465}
3466
3467/**
3468 * i40e_vsi_free_irq - Free the irq association with the OS
3469 * @vsi: the VSI being configured
3470 **/
3471static void i40e_vsi_free_irq(struct i40e_vsi *vsi)
3472{
3473 struct i40e_pf *pf = vsi->back;
3474 struct i40e_hw *hw = &pf->hw;
3475 int base = vsi->base_vector;
3476 u32 val, qp;
3477 int i;
3478
3479 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
3480 if (!vsi->q_vectors)
3481 return;
3482
Shannon Nelson63741842014-04-23 04:50:16 +00003483 if (!vsi->irqs_ready)
3484 return;
3485
3486 vsi->irqs_ready = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003487 for (i = 0; i < vsi->num_q_vectors; i++) {
3488 u16 vector = i + base;
3489
3490 /* free only the irqs that were actually requested */
Shannon Nelson78681b12013-11-28 06:39:36 +00003491 if (!vsi->q_vectors[i] ||
3492 !vsi->q_vectors[i]->num_ringpairs)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003493 continue;
3494
3495 /* clear the affinity_mask in the IRQ descriptor */
3496 irq_set_affinity_hint(pf->msix_entries[vector].vector,
3497 NULL);
3498 free_irq(pf->msix_entries[vector].vector,
Alexander Duyck493fb302013-09-28 07:01:44 +00003499 vsi->q_vectors[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003500
3501 /* Tear down the interrupt queue link list
3502 *
3503 * We know that they come in pairs and always
3504 * the Rx first, then the Tx. To clear the
3505 * link list, stick the EOL value into the
3506 * next_q field of the registers.
3507 */
3508 val = rd32(hw, I40E_PFINT_LNKLSTN(vector - 1));
3509 qp = (val & I40E_PFINT_LNKLSTN_FIRSTQ_INDX_MASK)
3510 >> I40E_PFINT_LNKLSTN_FIRSTQ_INDX_SHIFT;
3511 val |= I40E_QUEUE_END_OF_LIST
3512 << I40E_PFINT_LNKLSTN_FIRSTQ_INDX_SHIFT;
3513 wr32(hw, I40E_PFINT_LNKLSTN(vector - 1), val);
3514
3515 while (qp != I40E_QUEUE_END_OF_LIST) {
3516 u32 next;
3517
3518 val = rd32(hw, I40E_QINT_RQCTL(qp));
3519
3520 val &= ~(I40E_QINT_RQCTL_MSIX_INDX_MASK |
3521 I40E_QINT_RQCTL_MSIX0_INDX_MASK |
3522 I40E_QINT_RQCTL_CAUSE_ENA_MASK |
3523 I40E_QINT_RQCTL_INTEVENT_MASK);
3524
3525 val |= (I40E_QINT_RQCTL_ITR_INDX_MASK |
3526 I40E_QINT_RQCTL_NEXTQ_INDX_MASK);
3527
3528 wr32(hw, I40E_QINT_RQCTL(qp), val);
3529
3530 val = rd32(hw, I40E_QINT_TQCTL(qp));
3531
3532 next = (val & I40E_QINT_TQCTL_NEXTQ_INDX_MASK)
3533 >> I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT;
3534
3535 val &= ~(I40E_QINT_TQCTL_MSIX_INDX_MASK |
3536 I40E_QINT_TQCTL_MSIX0_INDX_MASK |
3537 I40E_QINT_TQCTL_CAUSE_ENA_MASK |
3538 I40E_QINT_TQCTL_INTEVENT_MASK);
3539
3540 val |= (I40E_QINT_TQCTL_ITR_INDX_MASK |
3541 I40E_QINT_TQCTL_NEXTQ_INDX_MASK);
3542
3543 wr32(hw, I40E_QINT_TQCTL(qp), val);
3544 qp = next;
3545 }
3546 }
3547 } else {
3548 free_irq(pf->pdev->irq, pf);
3549
3550 val = rd32(hw, I40E_PFINT_LNKLST0);
3551 qp = (val & I40E_PFINT_LNKLSTN_FIRSTQ_INDX_MASK)
3552 >> I40E_PFINT_LNKLSTN_FIRSTQ_INDX_SHIFT;
3553 val |= I40E_QUEUE_END_OF_LIST
3554 << I40E_PFINT_LNKLST0_FIRSTQ_INDX_SHIFT;
3555 wr32(hw, I40E_PFINT_LNKLST0, val);
3556
3557 val = rd32(hw, I40E_QINT_RQCTL(qp));
3558 val &= ~(I40E_QINT_RQCTL_MSIX_INDX_MASK |
3559 I40E_QINT_RQCTL_MSIX0_INDX_MASK |
3560 I40E_QINT_RQCTL_CAUSE_ENA_MASK |
3561 I40E_QINT_RQCTL_INTEVENT_MASK);
3562
3563 val |= (I40E_QINT_RQCTL_ITR_INDX_MASK |
3564 I40E_QINT_RQCTL_NEXTQ_INDX_MASK);
3565
3566 wr32(hw, I40E_QINT_RQCTL(qp), val);
3567
3568 val = rd32(hw, I40E_QINT_TQCTL(qp));
3569
3570 val &= ~(I40E_QINT_TQCTL_MSIX_INDX_MASK |
3571 I40E_QINT_TQCTL_MSIX0_INDX_MASK |
3572 I40E_QINT_TQCTL_CAUSE_ENA_MASK |
3573 I40E_QINT_TQCTL_INTEVENT_MASK);
3574
3575 val |= (I40E_QINT_TQCTL_ITR_INDX_MASK |
3576 I40E_QINT_TQCTL_NEXTQ_INDX_MASK);
3577
3578 wr32(hw, I40E_QINT_TQCTL(qp), val);
3579 }
3580}
3581
3582/**
Alexander Duyck493fb302013-09-28 07:01:44 +00003583 * i40e_free_q_vector - Free memory allocated for specific interrupt vector
3584 * @vsi: the VSI being configured
3585 * @v_idx: Index of vector to be freed
3586 *
3587 * This function frees the memory allocated to the q_vector. In addition if
3588 * NAPI is enabled it will delete any references to the NAPI struct prior
3589 * to freeing the q_vector.
3590 **/
3591static void i40e_free_q_vector(struct i40e_vsi *vsi, int v_idx)
3592{
3593 struct i40e_q_vector *q_vector = vsi->q_vectors[v_idx];
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003594 struct i40e_ring *ring;
Alexander Duyck493fb302013-09-28 07:01:44 +00003595
3596 if (!q_vector)
3597 return;
3598
3599 /* disassociate q_vector from rings */
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003600 i40e_for_each_ring(ring, q_vector->tx)
3601 ring->q_vector = NULL;
3602
3603 i40e_for_each_ring(ring, q_vector->rx)
3604 ring->q_vector = NULL;
Alexander Duyck493fb302013-09-28 07:01:44 +00003605
3606 /* only VSI w/ an associated netdev is set up w/ NAPI */
3607 if (vsi->netdev)
3608 netif_napi_del(&q_vector->napi);
3609
3610 vsi->q_vectors[v_idx] = NULL;
3611
3612 kfree_rcu(q_vector, rcu);
3613}
3614
3615/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003616 * i40e_vsi_free_q_vectors - Free memory allocated for interrupt vectors
3617 * @vsi: the VSI being un-configured
3618 *
3619 * This frees the memory allocated to the q_vectors and
3620 * deletes references to the NAPI struct.
3621 **/
3622static void i40e_vsi_free_q_vectors(struct i40e_vsi *vsi)
3623{
3624 int v_idx;
3625
Alexander Duyck493fb302013-09-28 07:01:44 +00003626 for (v_idx = 0; v_idx < vsi->num_q_vectors; v_idx++)
3627 i40e_free_q_vector(vsi, v_idx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003628}
3629
3630/**
3631 * i40e_reset_interrupt_capability - Disable interrupt setup in OS
3632 * @pf: board private structure
3633 **/
3634static void i40e_reset_interrupt_capability(struct i40e_pf *pf)
3635{
3636 /* If we're in Legacy mode, the interrupt was cleaned in vsi_close */
3637 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
3638 pci_disable_msix(pf->pdev);
3639 kfree(pf->msix_entries);
3640 pf->msix_entries = NULL;
3641 } else if (pf->flags & I40E_FLAG_MSI_ENABLED) {
3642 pci_disable_msi(pf->pdev);
3643 }
3644 pf->flags &= ~(I40E_FLAG_MSIX_ENABLED | I40E_FLAG_MSI_ENABLED);
3645}
3646
3647/**
3648 * i40e_clear_interrupt_scheme - Clear the current interrupt scheme settings
3649 * @pf: board private structure
3650 *
3651 * We go through and clear interrupt specific resources and reset the structure
3652 * to pre-load conditions
3653 **/
3654static void i40e_clear_interrupt_scheme(struct i40e_pf *pf)
3655{
3656 int i;
3657
3658 i40e_put_lump(pf->irq_pile, 0, I40E_PILE_VALID_BIT-1);
Mitch Williams505682c2014-05-20 08:01:37 +00003659 for (i = 0; i < pf->num_alloc_vsi; i++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003660 if (pf->vsi[i])
3661 i40e_vsi_free_q_vectors(pf->vsi[i]);
3662 i40e_reset_interrupt_capability(pf);
3663}
3664
3665/**
3666 * i40e_napi_enable_all - Enable NAPI for all q_vectors in the VSI
3667 * @vsi: the VSI being configured
3668 **/
3669static void i40e_napi_enable_all(struct i40e_vsi *vsi)
3670{
3671 int q_idx;
3672
3673 if (!vsi->netdev)
3674 return;
3675
3676 for (q_idx = 0; q_idx < vsi->num_q_vectors; q_idx++)
Alexander Duyck493fb302013-09-28 07:01:44 +00003677 napi_enable(&vsi->q_vectors[q_idx]->napi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003678}
3679
3680/**
3681 * i40e_napi_disable_all - Disable NAPI for all q_vectors in the VSI
3682 * @vsi: the VSI being configured
3683 **/
3684static void i40e_napi_disable_all(struct i40e_vsi *vsi)
3685{
3686 int q_idx;
3687
3688 if (!vsi->netdev)
3689 return;
3690
3691 for (q_idx = 0; q_idx < vsi->num_q_vectors; q_idx++)
Alexander Duyck493fb302013-09-28 07:01:44 +00003692 napi_disable(&vsi->q_vectors[q_idx]->napi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003693}
3694
3695/**
Shannon Nelson90ef8d42014-03-14 07:32:26 +00003696 * i40e_vsi_close - Shut down a VSI
3697 * @vsi: the vsi to be quelled
3698 **/
3699static void i40e_vsi_close(struct i40e_vsi *vsi)
3700{
3701 if (!test_and_set_bit(__I40E_DOWN, &vsi->state))
3702 i40e_down(vsi);
3703 i40e_vsi_free_irq(vsi);
3704 i40e_vsi_free_tx_resources(vsi);
3705 i40e_vsi_free_rx_resources(vsi);
3706}
3707
3708/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003709 * i40e_quiesce_vsi - Pause a given VSI
3710 * @vsi: the VSI being paused
3711 **/
3712static void i40e_quiesce_vsi(struct i40e_vsi *vsi)
3713{
3714 if (test_bit(__I40E_DOWN, &vsi->state))
3715 return;
3716
3717 set_bit(__I40E_NEEDS_RESTART, &vsi->state);
3718 if (vsi->netdev && netif_running(vsi->netdev)) {
3719 vsi->netdev->netdev_ops->ndo_stop(vsi->netdev);
3720 } else {
Shannon Nelson90ef8d42014-03-14 07:32:26 +00003721 i40e_vsi_close(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003722 }
3723}
3724
3725/**
3726 * i40e_unquiesce_vsi - Resume a given VSI
3727 * @vsi: the VSI being resumed
3728 **/
3729static void i40e_unquiesce_vsi(struct i40e_vsi *vsi)
3730{
3731 if (!test_bit(__I40E_NEEDS_RESTART, &vsi->state))
3732 return;
3733
3734 clear_bit(__I40E_NEEDS_RESTART, &vsi->state);
3735 if (vsi->netdev && netif_running(vsi->netdev))
3736 vsi->netdev->netdev_ops->ndo_open(vsi->netdev);
3737 else
Shannon Nelson8276f752014-03-14 07:32:27 +00003738 i40e_vsi_open(vsi); /* this clears the DOWN bit */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003739}
3740
3741/**
3742 * i40e_pf_quiesce_all_vsi - Pause all VSIs on a PF
3743 * @pf: the PF
3744 **/
3745static void i40e_pf_quiesce_all_vsi(struct i40e_pf *pf)
3746{
3747 int v;
3748
Mitch Williams505682c2014-05-20 08:01:37 +00003749 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003750 if (pf->vsi[v])
3751 i40e_quiesce_vsi(pf->vsi[v]);
3752 }
3753}
3754
3755/**
3756 * i40e_pf_unquiesce_all_vsi - Resume all VSIs on a PF
3757 * @pf: the PF
3758 **/
3759static void i40e_pf_unquiesce_all_vsi(struct i40e_pf *pf)
3760{
3761 int v;
3762
Mitch Williams505682c2014-05-20 08:01:37 +00003763 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003764 if (pf->vsi[v])
3765 i40e_unquiesce_vsi(pf->vsi[v]);
3766 }
3767}
3768
3769/**
3770 * i40e_dcb_get_num_tc - Get the number of TCs from DCBx config
3771 * @dcbcfg: the corresponding DCBx configuration structure
3772 *
3773 * Return the number of TCs from given DCBx configuration
3774 **/
3775static u8 i40e_dcb_get_num_tc(struct i40e_dcbx_config *dcbcfg)
3776{
Jesse Brandeburg078b5872013-09-25 23:41:14 +00003777 u8 num_tc = 0;
3778 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003779
3780 /* Scan the ETS Config Priority Table to find
3781 * traffic class enabled for a given priority
3782 * and use the traffic class index to get the
3783 * number of traffic classes enabled
3784 */
3785 for (i = 0; i < I40E_MAX_USER_PRIORITY; i++) {
3786 if (dcbcfg->etscfg.prioritytable[i] > num_tc)
3787 num_tc = dcbcfg->etscfg.prioritytable[i];
3788 }
3789
3790 /* Traffic class index starts from zero so
3791 * increment to return the actual count
3792 */
Jesse Brandeburg078b5872013-09-25 23:41:14 +00003793 return num_tc + 1;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003794}
3795
3796/**
3797 * i40e_dcb_get_enabled_tc - Get enabled traffic classes
3798 * @dcbcfg: the corresponding DCBx configuration structure
3799 *
3800 * Query the current DCB configuration and return the number of
3801 * traffic classes enabled from the given DCBX config
3802 **/
3803static u8 i40e_dcb_get_enabled_tc(struct i40e_dcbx_config *dcbcfg)
3804{
3805 u8 num_tc = i40e_dcb_get_num_tc(dcbcfg);
3806 u8 enabled_tc = 1;
3807 u8 i;
3808
3809 for (i = 0; i < num_tc; i++)
3810 enabled_tc |= 1 << i;
3811
3812 return enabled_tc;
3813}
3814
3815/**
3816 * i40e_pf_get_num_tc - Get enabled traffic classes for PF
3817 * @pf: PF being queried
3818 *
3819 * Return number of traffic classes enabled for the given PF
3820 **/
3821static u8 i40e_pf_get_num_tc(struct i40e_pf *pf)
3822{
3823 struct i40e_hw *hw = &pf->hw;
3824 u8 i, enabled_tc;
3825 u8 num_tc = 0;
3826 struct i40e_dcbx_config *dcbcfg = &hw->local_dcbx_config;
3827
3828 /* If DCB is not enabled then always in single TC */
3829 if (!(pf->flags & I40E_FLAG_DCB_ENABLED))
3830 return 1;
3831
3832 /* MFP mode return count of enabled TCs for this PF */
3833 if (pf->flags & I40E_FLAG_MFP_ENABLED) {
3834 enabled_tc = pf->hw.func_caps.enabled_tcmap;
3835 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
3836 if (enabled_tc & (1 << i))
3837 num_tc++;
3838 }
3839 return num_tc;
3840 }
3841
3842 /* SFP mode will be enabled for all TCs on port */
3843 return i40e_dcb_get_num_tc(dcbcfg);
3844}
3845
3846/**
3847 * i40e_pf_get_default_tc - Get bitmap for first enabled TC
3848 * @pf: PF being queried
3849 *
3850 * Return a bitmap for first enabled traffic class for this PF.
3851 **/
3852static u8 i40e_pf_get_default_tc(struct i40e_pf *pf)
3853{
3854 u8 enabled_tc = pf->hw.func_caps.enabled_tcmap;
3855 u8 i = 0;
3856
3857 if (!enabled_tc)
3858 return 0x1; /* TC0 */
3859
3860 /* Find the first enabled TC */
3861 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
3862 if (enabled_tc & (1 << i))
3863 break;
3864 }
3865
3866 return 1 << i;
3867}
3868
3869/**
3870 * i40e_pf_get_pf_tc_map - Get bitmap for enabled traffic classes
3871 * @pf: PF being queried
3872 *
3873 * Return a bitmap for enabled traffic classes for this PF.
3874 **/
3875static u8 i40e_pf_get_tc_map(struct i40e_pf *pf)
3876{
3877 /* If DCB is not enabled for this PF then just return default TC */
3878 if (!(pf->flags & I40E_FLAG_DCB_ENABLED))
3879 return i40e_pf_get_default_tc(pf);
3880
3881 /* MFP mode will have enabled TCs set by FW */
3882 if (pf->flags & I40E_FLAG_MFP_ENABLED)
3883 return pf->hw.func_caps.enabled_tcmap;
3884
3885 /* SFP mode we want PF to be enabled for all TCs */
3886 return i40e_dcb_get_enabled_tc(&pf->hw.local_dcbx_config);
3887}
3888
3889/**
3890 * i40e_vsi_get_bw_info - Query VSI BW Information
3891 * @vsi: the VSI being queried
3892 *
3893 * Returns 0 on success, negative value on failure
3894 **/
3895static int i40e_vsi_get_bw_info(struct i40e_vsi *vsi)
3896{
3897 struct i40e_aqc_query_vsi_ets_sla_config_resp bw_ets_config = {0};
3898 struct i40e_aqc_query_vsi_bw_config_resp bw_config = {0};
3899 struct i40e_pf *pf = vsi->back;
3900 struct i40e_hw *hw = &pf->hw;
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00003901 i40e_status aq_ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003902 u32 tc_bw_max;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003903 int i;
3904
3905 /* Get the VSI level BW configuration */
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00003906 aq_ret = i40e_aq_query_vsi_bw_config(hw, vsi->seid, &bw_config, NULL);
3907 if (aq_ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003908 dev_info(&pf->pdev->dev,
3909 "couldn't get pf vsi bw config, err %d, aq_err %d\n",
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00003910 aq_ret, pf->hw.aq.asq_last_status);
3911 return -EINVAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003912 }
3913
3914 /* Get the VSI level BW configuration per TC */
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00003915 aq_ret = i40e_aq_query_vsi_ets_sla_config(hw, vsi->seid, &bw_ets_config,
Jesse Brandeburg6838b532014-01-14 00:49:52 -08003916 NULL);
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00003917 if (aq_ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003918 dev_info(&pf->pdev->dev,
3919 "couldn't get pf vsi ets bw config, err %d, aq_err %d\n",
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00003920 aq_ret, pf->hw.aq.asq_last_status);
3921 return -EINVAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003922 }
3923
3924 if (bw_config.tc_valid_bits != bw_ets_config.tc_valid_bits) {
3925 dev_info(&pf->pdev->dev,
3926 "Enabled TCs mismatch from querying VSI BW info 0x%08x 0x%08x\n",
3927 bw_config.tc_valid_bits,
3928 bw_ets_config.tc_valid_bits);
3929 /* Still continuing */
3930 }
3931
3932 vsi->bw_limit = le16_to_cpu(bw_config.port_bw_limit);
3933 vsi->bw_max_quanta = bw_config.max_bw;
3934 tc_bw_max = le16_to_cpu(bw_ets_config.tc_bw_max[0]) |
3935 (le16_to_cpu(bw_ets_config.tc_bw_max[1]) << 16);
3936 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
3937 vsi->bw_ets_share_credits[i] = bw_ets_config.share_credits[i];
3938 vsi->bw_ets_limit_credits[i] =
3939 le16_to_cpu(bw_ets_config.credits[i]);
3940 /* 3 bits out of 4 for each TC */
3941 vsi->bw_ets_max_quanta[i] = (u8)((tc_bw_max >> (i*4)) & 0x7);
3942 }
Jesse Brandeburg078b5872013-09-25 23:41:14 +00003943
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00003944 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003945}
3946
3947/**
3948 * i40e_vsi_configure_bw_alloc - Configure VSI BW allocation per TC
3949 * @vsi: the VSI being configured
3950 * @enabled_tc: TC bitmap
3951 * @bw_credits: BW shared credits per TC
3952 *
3953 * Returns 0 on success, negative value on failure
3954 **/
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00003955static int i40e_vsi_configure_bw_alloc(struct i40e_vsi *vsi, u8 enabled_tc,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003956 u8 *bw_share)
3957{
3958 struct i40e_aqc_configure_vsi_tc_bw_data bw_data;
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00003959 i40e_status aq_ret;
3960 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003961
3962 bw_data.tc_valid_bits = enabled_tc;
3963 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++)
3964 bw_data.tc_bw_credits[i] = bw_share[i];
3965
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00003966 aq_ret = i40e_aq_config_vsi_tc_bw(&vsi->back->hw, vsi->seid, &bw_data,
3967 NULL);
3968 if (aq_ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003969 dev_info(&vsi->back->pdev->dev,
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00003970 "AQ command Config VSI BW allocation per TC failed = %d\n",
3971 vsi->back->hw.aq.asq_last_status);
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00003972 return -EINVAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003973 }
3974
3975 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++)
3976 vsi->info.qs_handle[i] = bw_data.qs_handles[i];
3977
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00003978 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003979}
3980
3981/**
3982 * i40e_vsi_config_netdev_tc - Setup the netdev TC configuration
3983 * @vsi: the VSI being configured
3984 * @enabled_tc: TC map to be enabled
3985 *
3986 **/
3987static void i40e_vsi_config_netdev_tc(struct i40e_vsi *vsi, u8 enabled_tc)
3988{
3989 struct net_device *netdev = vsi->netdev;
3990 struct i40e_pf *pf = vsi->back;
3991 struct i40e_hw *hw = &pf->hw;
3992 u8 netdev_tc = 0;
3993 int i;
3994 struct i40e_dcbx_config *dcbcfg = &hw->local_dcbx_config;
3995
3996 if (!netdev)
3997 return;
3998
3999 if (!enabled_tc) {
4000 netdev_reset_tc(netdev);
4001 return;
4002 }
4003
4004 /* Set up actual enabled TCs on the VSI */
4005 if (netdev_set_num_tc(netdev, vsi->tc_config.numtc))
4006 return;
4007
4008 /* set per TC queues for the VSI */
4009 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
4010 /* Only set TC queues for enabled tcs
4011 *
4012 * e.g. For a VSI that has TC0 and TC3 enabled the
4013 * enabled_tc bitmap would be 0x00001001; the driver
4014 * will set the numtc for netdev as 2 that will be
4015 * referenced by the netdev layer as TC 0 and 1.
4016 */
4017 if (vsi->tc_config.enabled_tc & (1 << i))
4018 netdev_set_tc_queue(netdev,
4019 vsi->tc_config.tc_info[i].netdev_tc,
4020 vsi->tc_config.tc_info[i].qcount,
4021 vsi->tc_config.tc_info[i].qoffset);
4022 }
4023
4024 /* Assign UP2TC map for the VSI */
4025 for (i = 0; i < I40E_MAX_USER_PRIORITY; i++) {
4026 /* Get the actual TC# for the UP */
4027 u8 ets_tc = dcbcfg->etscfg.prioritytable[i];
4028 /* Get the mapped netdev TC# for the UP */
4029 netdev_tc = vsi->tc_config.tc_info[ets_tc].netdev_tc;
4030 netdev_set_prio_tc_map(netdev, i, netdev_tc);
4031 }
4032}
4033
4034/**
4035 * i40e_vsi_update_queue_map - Update our copy of VSi info with new queue map
4036 * @vsi: the VSI being configured
4037 * @ctxt: the ctxt buffer returned from AQ VSI update param command
4038 **/
4039static void i40e_vsi_update_queue_map(struct i40e_vsi *vsi,
4040 struct i40e_vsi_context *ctxt)
4041{
4042 /* copy just the sections touched not the entire info
4043 * since not all sections are valid as returned by
4044 * update vsi params
4045 */
4046 vsi->info.mapping_flags = ctxt->info.mapping_flags;
4047 memcpy(&vsi->info.queue_mapping,
4048 &ctxt->info.queue_mapping, sizeof(vsi->info.queue_mapping));
4049 memcpy(&vsi->info.tc_mapping, ctxt->info.tc_mapping,
4050 sizeof(vsi->info.tc_mapping));
4051}
4052
4053/**
4054 * i40e_vsi_config_tc - Configure VSI Tx Scheduler for given TC map
4055 * @vsi: VSI to be configured
4056 * @enabled_tc: TC bitmap
4057 *
4058 * This configures a particular VSI for TCs that are mapped to the
4059 * given TC bitmap. It uses default bandwidth share for TCs across
4060 * VSIs to configure TC for a particular VSI.
4061 *
4062 * NOTE:
4063 * It is expected that the VSI queues have been quisced before calling
4064 * this function.
4065 **/
4066static int i40e_vsi_config_tc(struct i40e_vsi *vsi, u8 enabled_tc)
4067{
4068 u8 bw_share[I40E_MAX_TRAFFIC_CLASS] = {0};
4069 struct i40e_vsi_context ctxt;
4070 int ret = 0;
4071 int i;
4072
4073 /* Check if enabled_tc is same as existing or new TCs */
4074 if (vsi->tc_config.enabled_tc == enabled_tc)
4075 return ret;
4076
4077 /* Enable ETS TCs with equal BW Share for now across all VSIs */
4078 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
4079 if (enabled_tc & (1 << i))
4080 bw_share[i] = 1;
4081 }
4082
4083 ret = i40e_vsi_configure_bw_alloc(vsi, enabled_tc, bw_share);
4084 if (ret) {
4085 dev_info(&vsi->back->pdev->dev,
4086 "Failed configuring TC map %d for VSI %d\n",
4087 enabled_tc, vsi->seid);
4088 goto out;
4089 }
4090
4091 /* Update Queue Pairs Mapping for currently enabled UPs */
4092 ctxt.seid = vsi->seid;
4093 ctxt.pf_num = vsi->back->hw.pf_id;
4094 ctxt.vf_num = 0;
4095 ctxt.uplink_seid = vsi->uplink_seid;
4096 memcpy(&ctxt.info, &vsi->info, sizeof(vsi->info));
4097 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, false);
4098
4099 /* Update the VSI after updating the VSI queue-mapping information */
4100 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
4101 if (ret) {
4102 dev_info(&vsi->back->pdev->dev,
4103 "update vsi failed, aq_err=%d\n",
4104 vsi->back->hw.aq.asq_last_status);
4105 goto out;
4106 }
4107 /* update the local VSI info with updated queue map */
4108 i40e_vsi_update_queue_map(vsi, &ctxt);
4109 vsi->info.valid_sections = 0;
4110
4111 /* Update current VSI BW information */
4112 ret = i40e_vsi_get_bw_info(vsi);
4113 if (ret) {
4114 dev_info(&vsi->back->pdev->dev,
4115 "Failed updating vsi bw info, aq_err=%d\n",
4116 vsi->back->hw.aq.asq_last_status);
4117 goto out;
4118 }
4119
4120 /* Update the netdev TC setup */
4121 i40e_vsi_config_netdev_tc(vsi, enabled_tc);
4122out:
4123 return ret;
4124}
4125
4126/**
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004127 * i40e_veb_config_tc - Configure TCs for given VEB
4128 * @veb: given VEB
4129 * @enabled_tc: TC bitmap
4130 *
4131 * Configures given TC bitmap for VEB (switching) element
4132 **/
4133int i40e_veb_config_tc(struct i40e_veb *veb, u8 enabled_tc)
4134{
4135 struct i40e_aqc_configure_switching_comp_bw_config_data bw_data = {0};
4136 struct i40e_pf *pf = veb->pf;
4137 int ret = 0;
4138 int i;
4139
4140 /* No TCs or already enabled TCs just return */
4141 if (!enabled_tc || veb->enabled_tc == enabled_tc)
4142 return ret;
4143
4144 bw_data.tc_valid_bits = enabled_tc;
4145 /* bw_data.absolute_credits is not set (relative) */
4146
4147 /* Enable ETS TCs with equal BW Share for now */
4148 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
4149 if (enabled_tc & (1 << i))
4150 bw_data.tc_bw_share_credits[i] = 1;
4151 }
4152
4153 ret = i40e_aq_config_switch_comp_bw_config(&pf->hw, veb->seid,
4154 &bw_data, NULL);
4155 if (ret) {
4156 dev_info(&pf->pdev->dev,
4157 "veb bw config failed, aq_err=%d\n",
4158 pf->hw.aq.asq_last_status);
4159 goto out;
4160 }
4161
4162 /* Update the BW information */
4163 ret = i40e_veb_get_bw_info(veb);
4164 if (ret) {
4165 dev_info(&pf->pdev->dev,
4166 "Failed getting veb bw config, aq_err=%d\n",
4167 pf->hw.aq.asq_last_status);
4168 }
4169
4170out:
4171 return ret;
4172}
4173
4174#ifdef CONFIG_I40E_DCB
4175/**
4176 * i40e_dcb_reconfigure - Reconfigure all VEBs and VSIs
4177 * @pf: PF struct
4178 *
4179 * Reconfigure VEB/VSIs on a given PF; it is assumed that
4180 * the caller would've quiesce all the VSIs before calling
4181 * this function
4182 **/
4183static void i40e_dcb_reconfigure(struct i40e_pf *pf)
4184{
4185 u8 tc_map = 0;
4186 int ret;
4187 u8 v;
4188
4189 /* Enable the TCs available on PF to all VEBs */
4190 tc_map = i40e_pf_get_tc_map(pf);
4191 for (v = 0; v < I40E_MAX_VEB; v++) {
4192 if (!pf->veb[v])
4193 continue;
4194 ret = i40e_veb_config_tc(pf->veb[v], tc_map);
4195 if (ret) {
4196 dev_info(&pf->pdev->dev,
4197 "Failed configuring TC for VEB seid=%d\n",
4198 pf->veb[v]->seid);
4199 /* Will try to configure as many components */
4200 }
4201 }
4202
4203 /* Update each VSI */
Mitch Williams505682c2014-05-20 08:01:37 +00004204 for (v = 0; v < pf->num_alloc_vsi; v++) {
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004205 if (!pf->vsi[v])
4206 continue;
4207
4208 /* - Enable all TCs for the LAN VSI
4209 * - For all others keep them at TC0 for now
4210 */
4211 if (v == pf->lan_vsi)
4212 tc_map = i40e_pf_get_tc_map(pf);
4213 else
4214 tc_map = i40e_pf_get_default_tc(pf);
4215
4216 ret = i40e_vsi_config_tc(pf->vsi[v], tc_map);
4217 if (ret) {
4218 dev_info(&pf->pdev->dev,
4219 "Failed configuring TC for VSI seid=%d\n",
4220 pf->vsi[v]->seid);
4221 /* Will try to configure as many components */
4222 } else {
Neerav Parikh0672a092014-04-01 07:11:47 +00004223 /* Re-configure VSI vectors based on updated TC map */
4224 i40e_vsi_map_rings_to_vectors(pf->vsi[v]);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004225 if (pf->vsi[v]->netdev)
4226 i40e_dcbnl_set_all(pf->vsi[v]);
4227 }
4228 }
4229}
4230
4231/**
4232 * i40e_init_pf_dcb - Initialize DCB configuration
4233 * @pf: PF being configured
4234 *
4235 * Query the current DCB configuration and cache it
4236 * in the hardware structure
4237 **/
4238static int i40e_init_pf_dcb(struct i40e_pf *pf)
4239{
4240 struct i40e_hw *hw = &pf->hw;
4241 int err = 0;
4242
4243 if (pf->hw.func_caps.npar_enable)
4244 goto out;
4245
4246 /* Get the initial DCB configuration */
4247 err = i40e_init_dcb(hw);
4248 if (!err) {
4249 /* Device/Function is not DCBX capable */
4250 if ((!hw->func_caps.dcb) ||
4251 (hw->dcbx_status == I40E_DCBX_STATUS_DISABLED)) {
4252 dev_info(&pf->pdev->dev,
4253 "DCBX offload is not supported or is disabled for this PF.\n");
4254
4255 if (pf->flags & I40E_FLAG_MFP_ENABLED)
4256 goto out;
4257
4258 } else {
4259 /* When status is not DISABLED then DCBX in FW */
4260 pf->dcbx_cap = DCB_CAP_DCBX_LLD_MANAGED |
4261 DCB_CAP_DCBX_VER_IEEE;
Neerav Parikh4d9b6042014-05-22 06:31:51 +00004262
4263 pf->flags |= I40E_FLAG_DCB_CAPABLE;
4264 /* Enable DCB tagging only when more than one TC */
4265 if (i40e_dcb_get_num_tc(&hw->local_dcbx_config) > 1)
4266 pf->flags |= I40E_FLAG_DCB_ENABLED;
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004267 }
Neerav Parikh014269f2014-04-01 07:11:48 +00004268 } else {
4269 dev_info(&pf->pdev->dev, "AQ Querying DCB configuration failed: %d\n",
4270 pf->hw.aq.asq_last_status);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004271 }
4272
4273out:
4274 return err;
4275}
4276#endif /* CONFIG_I40E_DCB */
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004277#define SPEED_SIZE 14
4278#define FC_SIZE 8
4279/**
4280 * i40e_print_link_message - print link up or down
4281 * @vsi: the VSI for which link needs a message
4282 */
4283static void i40e_print_link_message(struct i40e_vsi *vsi, bool isup)
4284{
4285 char speed[SPEED_SIZE] = "Unknown";
4286 char fc[FC_SIZE] = "RX/TX";
4287
4288 if (!isup) {
4289 netdev_info(vsi->netdev, "NIC Link is Down\n");
4290 return;
4291 }
4292
4293 switch (vsi->back->hw.phy.link_info.link_speed) {
4294 case I40E_LINK_SPEED_40GB:
4295 strncpy(speed, "40 Gbps", SPEED_SIZE);
4296 break;
4297 case I40E_LINK_SPEED_10GB:
4298 strncpy(speed, "10 Gbps", SPEED_SIZE);
4299 break;
4300 case I40E_LINK_SPEED_1GB:
4301 strncpy(speed, "1000 Mbps", SPEED_SIZE);
4302 break;
4303 default:
4304 break;
4305 }
4306
4307 switch (vsi->back->hw.fc.current_mode) {
4308 case I40E_FC_FULL:
4309 strncpy(fc, "RX/TX", FC_SIZE);
4310 break;
4311 case I40E_FC_TX_PAUSE:
4312 strncpy(fc, "TX", FC_SIZE);
4313 break;
4314 case I40E_FC_RX_PAUSE:
4315 strncpy(fc, "RX", FC_SIZE);
4316 break;
4317 default:
4318 strncpy(fc, "None", FC_SIZE);
4319 break;
4320 }
4321
4322 netdev_info(vsi->netdev, "NIC Link is Up %s Full Duplex, Flow Control: %s\n",
4323 speed, fc);
4324}
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004325
4326/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004327 * i40e_up_complete - Finish the last steps of bringing up a connection
4328 * @vsi: the VSI being configured
4329 **/
4330static int i40e_up_complete(struct i40e_vsi *vsi)
4331{
4332 struct i40e_pf *pf = vsi->back;
4333 int err;
4334
4335 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
4336 i40e_vsi_configure_msix(vsi);
4337 else
4338 i40e_configure_msi_and_legacy(vsi);
4339
4340 /* start rings */
4341 err = i40e_vsi_control_rings(vsi, true);
4342 if (err)
4343 return err;
4344
4345 clear_bit(__I40E_DOWN, &vsi->state);
4346 i40e_napi_enable_all(vsi);
4347 i40e_vsi_enable_irq(vsi);
4348
4349 if ((pf->hw.phy.link_info.link_info & I40E_AQ_LINK_UP) &&
4350 (vsi->netdev)) {
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004351 i40e_print_link_message(vsi, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004352 netif_tx_start_all_queues(vsi->netdev);
4353 netif_carrier_on(vsi->netdev);
Anjali Singhai6d779b42013-09-28 06:00:02 +00004354 } else if (vsi->netdev) {
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004355 i40e_print_link_message(vsi, false);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004356 }
Anjali Singhai Jainca64fa42014-02-11 08:26:30 +00004357
4358 /* replay FDIR SB filters */
4359 if (vsi->type == I40E_VSI_FDIR)
4360 i40e_fdir_filter_restore(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004361 i40e_service_event_schedule(pf);
4362
4363 return 0;
4364}
4365
4366/**
4367 * i40e_vsi_reinit_locked - Reset the VSI
4368 * @vsi: the VSI being configured
4369 *
4370 * Rebuild the ring structs after some configuration
4371 * has changed, e.g. MTU size.
4372 **/
4373static void i40e_vsi_reinit_locked(struct i40e_vsi *vsi)
4374{
4375 struct i40e_pf *pf = vsi->back;
4376
4377 WARN_ON(in_interrupt());
4378 while (test_and_set_bit(__I40E_CONFIG_BUSY, &pf->state))
4379 usleep_range(1000, 2000);
4380 i40e_down(vsi);
4381
4382 /* Give a VF some time to respond to the reset. The
4383 * two second wait is based upon the watchdog cycle in
4384 * the VF driver.
4385 */
4386 if (vsi->type == I40E_VSI_SRIOV)
4387 msleep(2000);
4388 i40e_up(vsi);
4389 clear_bit(__I40E_CONFIG_BUSY, &pf->state);
4390}
4391
4392/**
4393 * i40e_up - Bring the connection back up after being down
4394 * @vsi: the VSI being configured
4395 **/
4396int i40e_up(struct i40e_vsi *vsi)
4397{
4398 int err;
4399
4400 err = i40e_vsi_configure(vsi);
4401 if (!err)
4402 err = i40e_up_complete(vsi);
4403
4404 return err;
4405}
4406
4407/**
4408 * i40e_down - Shutdown the connection processing
4409 * @vsi: the VSI being stopped
4410 **/
4411void i40e_down(struct i40e_vsi *vsi)
4412{
4413 int i;
4414
4415 /* It is assumed that the caller of this function
4416 * sets the vsi->state __I40E_DOWN bit.
4417 */
4418 if (vsi->netdev) {
4419 netif_carrier_off(vsi->netdev);
4420 netif_tx_disable(vsi->netdev);
4421 }
4422 i40e_vsi_disable_irq(vsi);
4423 i40e_vsi_control_rings(vsi, false);
4424 i40e_napi_disable_all(vsi);
4425
4426 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00004427 i40e_clean_tx_ring(vsi->tx_rings[i]);
4428 i40e_clean_rx_ring(vsi->rx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004429 }
4430}
4431
4432/**
4433 * i40e_setup_tc - configure multiple traffic classes
4434 * @netdev: net device to configure
4435 * @tc: number of traffic classes to enable
4436 **/
4437static int i40e_setup_tc(struct net_device *netdev, u8 tc)
4438{
4439 struct i40e_netdev_priv *np = netdev_priv(netdev);
4440 struct i40e_vsi *vsi = np->vsi;
4441 struct i40e_pf *pf = vsi->back;
4442 u8 enabled_tc = 0;
4443 int ret = -EINVAL;
4444 int i;
4445
4446 /* Check if DCB enabled to continue */
4447 if (!(pf->flags & I40E_FLAG_DCB_ENABLED)) {
4448 netdev_info(netdev, "DCB is not enabled for adapter\n");
4449 goto exit;
4450 }
4451
4452 /* Check if MFP enabled */
4453 if (pf->flags & I40E_FLAG_MFP_ENABLED) {
4454 netdev_info(netdev, "Configuring TC not supported in MFP mode\n");
4455 goto exit;
4456 }
4457
4458 /* Check whether tc count is within enabled limit */
4459 if (tc > i40e_pf_get_num_tc(pf)) {
4460 netdev_info(netdev, "TC count greater than enabled on link for adapter\n");
4461 goto exit;
4462 }
4463
4464 /* Generate TC map for number of tc requested */
4465 for (i = 0; i < tc; i++)
4466 enabled_tc |= (1 << i);
4467
4468 /* Requesting same TC configuration as already enabled */
4469 if (enabled_tc == vsi->tc_config.enabled_tc)
4470 return 0;
4471
4472 /* Quiesce VSI queues */
4473 i40e_quiesce_vsi(vsi);
4474
4475 /* Configure VSI for enabled TCs */
4476 ret = i40e_vsi_config_tc(vsi, enabled_tc);
4477 if (ret) {
4478 netdev_info(netdev, "Failed configuring TC for VSI seid=%d\n",
4479 vsi->seid);
4480 goto exit;
4481 }
4482
4483 /* Unquiesce VSI */
4484 i40e_unquiesce_vsi(vsi);
4485
4486exit:
4487 return ret;
4488}
4489
4490/**
4491 * i40e_open - Called when a network interface is made active
4492 * @netdev: network interface device structure
4493 *
4494 * The open entry point is called when a network interface is made
4495 * active by the system (IFF_UP). At this point all resources needed
4496 * for transmit and receive operations are allocated, the interrupt
4497 * handler is registered with the OS, the netdev watchdog subtask is
4498 * enabled, and the stack is notified that the interface is ready.
4499 *
4500 * Returns 0 on success, negative value on failure
4501 **/
4502static int i40e_open(struct net_device *netdev)
4503{
4504 struct i40e_netdev_priv *np = netdev_priv(netdev);
4505 struct i40e_vsi *vsi = np->vsi;
4506 struct i40e_pf *pf = vsi->back;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004507 int err;
4508
Shannon Nelson4eb3f762014-03-06 08:59:58 +00004509 /* disallow open during test or if eeprom is broken */
4510 if (test_bit(__I40E_TESTING, &pf->state) ||
4511 test_bit(__I40E_BAD_EEPROM, &pf->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004512 return -EBUSY;
4513
4514 netif_carrier_off(netdev);
4515
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00004516 err = i40e_vsi_open(vsi);
4517 if (err)
4518 return err;
4519
Jesse Brandeburg059dab62014-04-01 09:07:20 +00004520 /* configure global TSO hardware offload settings */
4521 wr32(&pf->hw, I40E_GLLAN_TSOMSK_F, be32_to_cpu(TCP_FLAG_PSH |
4522 TCP_FLAG_FIN) >> 16);
4523 wr32(&pf->hw, I40E_GLLAN_TSOMSK_M, be32_to_cpu(TCP_FLAG_PSH |
4524 TCP_FLAG_FIN |
4525 TCP_FLAG_CWR) >> 16);
4526 wr32(&pf->hw, I40E_GLLAN_TSOMSK_L, be32_to_cpu(TCP_FLAG_CWR) >> 16);
4527
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00004528#ifdef CONFIG_I40E_VXLAN
4529 vxlan_get_rx_port(netdev);
4530#endif
4531
4532 return 0;
4533}
4534
4535/**
4536 * i40e_vsi_open -
4537 * @vsi: the VSI to open
4538 *
4539 * Finish initialization of the VSI.
4540 *
4541 * Returns 0 on success, negative value on failure
4542 **/
4543int i40e_vsi_open(struct i40e_vsi *vsi)
4544{
4545 struct i40e_pf *pf = vsi->back;
4546 char int_name[IFNAMSIZ];
4547 int err;
4548
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004549 /* allocate descriptors */
4550 err = i40e_vsi_setup_tx_resources(vsi);
4551 if (err)
4552 goto err_setup_tx;
4553 err = i40e_vsi_setup_rx_resources(vsi);
4554 if (err)
4555 goto err_setup_rx;
4556
4557 err = i40e_vsi_configure(vsi);
4558 if (err)
4559 goto err_setup_rx;
4560
Shannon Nelsonc22e3c62014-03-14 07:32:25 +00004561 if (vsi->netdev) {
4562 snprintf(int_name, sizeof(int_name) - 1, "%s-%s",
4563 dev_driver_string(&pf->pdev->dev), vsi->netdev->name);
4564 err = i40e_vsi_request_irq(vsi, int_name);
4565 if (err)
4566 goto err_setup_rx;
4567
4568 /* Notify the stack of the actual queue counts. */
4569 err = netif_set_real_num_tx_queues(vsi->netdev,
4570 vsi->num_queue_pairs);
4571 if (err)
4572 goto err_set_queues;
4573
4574 err = netif_set_real_num_rx_queues(vsi->netdev,
4575 vsi->num_queue_pairs);
4576 if (err)
4577 goto err_set_queues;
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00004578
4579 } else if (vsi->type == I40E_VSI_FDIR) {
4580 snprintf(int_name, sizeof(int_name) - 1, "%s-fdir",
4581 dev_driver_string(&pf->pdev->dev));
4582 err = i40e_vsi_request_irq(vsi, int_name);
Shannon Nelsonc22e3c62014-03-14 07:32:25 +00004583 } else {
Jean Sacrence9ccb12014-05-01 14:31:18 +00004584 err = -EINVAL;
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00004585 goto err_setup_rx;
4586 }
Anjali Singhai Jain25946dd2013-11-26 10:49:14 +00004587
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004588 err = i40e_up_complete(vsi);
4589 if (err)
4590 goto err_up_complete;
4591
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004592 return 0;
4593
4594err_up_complete:
4595 i40e_down(vsi);
Anjali Singhai Jain25946dd2013-11-26 10:49:14 +00004596err_set_queues:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004597 i40e_vsi_free_irq(vsi);
4598err_setup_rx:
4599 i40e_vsi_free_rx_resources(vsi);
4600err_setup_tx:
4601 i40e_vsi_free_tx_resources(vsi);
4602 if (vsi == pf->vsi[pf->lan_vsi])
4603 i40e_do_reset(pf, (1 << __I40E_PF_RESET_REQUESTED));
4604
4605 return err;
4606}
4607
4608/**
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00004609 * i40e_fdir_filter_exit - Cleans up the Flow Director accounting
4610 * @pf: Pointer to pf
4611 *
4612 * This function destroys the hlist where all the Flow Director
4613 * filters were saved.
4614 **/
4615static void i40e_fdir_filter_exit(struct i40e_pf *pf)
4616{
4617 struct i40e_fdir_filter *filter;
4618 struct hlist_node *node2;
4619
4620 hlist_for_each_entry_safe(filter, node2,
4621 &pf->fdir_filter_list, fdir_node) {
4622 hlist_del(&filter->fdir_node);
4623 kfree(filter);
4624 }
4625 pf->fdir_pf_active_filters = 0;
4626}
4627
4628/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004629 * i40e_close - Disables a network interface
4630 * @netdev: network interface device structure
4631 *
4632 * The close entry point is called when an interface is de-activated
4633 * by the OS. The hardware is still under the driver's control, but
4634 * this netdev interface is disabled.
4635 *
4636 * Returns 0, this is not allowed to fail
4637 **/
4638static int i40e_close(struct net_device *netdev)
4639{
4640 struct i40e_netdev_priv *np = netdev_priv(netdev);
4641 struct i40e_vsi *vsi = np->vsi;
4642
Shannon Nelson90ef8d42014-03-14 07:32:26 +00004643 i40e_vsi_close(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004644
4645 return 0;
4646}
4647
4648/**
4649 * i40e_do_reset - Start a PF or Core Reset sequence
4650 * @pf: board private structure
4651 * @reset_flags: which reset is requested
4652 *
4653 * The essential difference in resets is that the PF Reset
4654 * doesn't clear the packet buffers, doesn't reset the PE
4655 * firmware, and doesn't bother the other PFs on the chip.
4656 **/
4657void i40e_do_reset(struct i40e_pf *pf, u32 reset_flags)
4658{
4659 u32 val;
4660
4661 WARN_ON(in_interrupt());
4662
Mitch Williams263fc482014-04-23 04:50:11 +00004663 if (i40e_check_asq_alive(&pf->hw))
4664 i40e_vc_notify_reset(pf);
4665
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004666 /* do the biggest reset indicated */
4667 if (reset_flags & (1 << __I40E_GLOBAL_RESET_REQUESTED)) {
4668
4669 /* Request a Global Reset
4670 *
4671 * This will start the chip's countdown to the actual full
4672 * chip reset event, and a warning interrupt to be sent
4673 * to all PFs, including the requestor. Our handler
4674 * for the warning interrupt will deal with the shutdown
4675 * and recovery of the switch setup.
4676 */
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00004677 dev_dbg(&pf->pdev->dev, "GlobalR requested\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004678 val = rd32(&pf->hw, I40E_GLGEN_RTRIG);
4679 val |= I40E_GLGEN_RTRIG_GLOBR_MASK;
4680 wr32(&pf->hw, I40E_GLGEN_RTRIG, val);
4681
4682 } else if (reset_flags & (1 << __I40E_CORE_RESET_REQUESTED)) {
4683
4684 /* Request a Core Reset
4685 *
4686 * Same as Global Reset, except does *not* include the MAC/PHY
4687 */
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00004688 dev_dbg(&pf->pdev->dev, "CoreR requested\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004689 val = rd32(&pf->hw, I40E_GLGEN_RTRIG);
4690 val |= I40E_GLGEN_RTRIG_CORER_MASK;
4691 wr32(&pf->hw, I40E_GLGEN_RTRIG, val);
4692 i40e_flush(&pf->hw);
4693
Shannon Nelson7823fe32013-11-16 10:00:45 +00004694 } else if (reset_flags & (1 << __I40E_EMP_RESET_REQUESTED)) {
4695
4696 /* Request a Firmware Reset
4697 *
4698 * Same as Global reset, plus restarting the
4699 * embedded firmware engine.
4700 */
4701 /* enable EMP Reset */
4702 val = rd32(&pf->hw, I40E_GLGEN_RSTENA_EMP);
4703 val |= I40E_GLGEN_RSTENA_EMP_EMP_RST_ENA_MASK;
4704 wr32(&pf->hw, I40E_GLGEN_RSTENA_EMP, val);
4705
4706 /* force the reset */
4707 val = rd32(&pf->hw, I40E_GLGEN_RTRIG);
4708 val |= I40E_GLGEN_RTRIG_EMPFWR_MASK;
4709 wr32(&pf->hw, I40E_GLGEN_RTRIG, val);
4710 i40e_flush(&pf->hw);
4711
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004712 } else if (reset_flags & (1 << __I40E_PF_RESET_REQUESTED)) {
4713
4714 /* Request a PF Reset
4715 *
4716 * Resets only the PF-specific registers
4717 *
4718 * This goes directly to the tear-down and rebuild of
4719 * the switch, since we need to do all the recovery as
4720 * for the Core Reset.
4721 */
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00004722 dev_dbg(&pf->pdev->dev, "PFR requested\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004723 i40e_handle_reset_warning(pf);
4724
4725 } else if (reset_flags & (1 << __I40E_REINIT_REQUESTED)) {
4726 int v;
4727
4728 /* Find the VSI(s) that requested a re-init */
4729 dev_info(&pf->pdev->dev,
4730 "VSI reinit requested\n");
Mitch Williams505682c2014-05-20 08:01:37 +00004731 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004732 struct i40e_vsi *vsi = pf->vsi[v];
4733 if (vsi != NULL &&
4734 test_bit(__I40E_REINIT_REQUESTED, &vsi->state)) {
4735 i40e_vsi_reinit_locked(pf->vsi[v]);
4736 clear_bit(__I40E_REINIT_REQUESTED, &vsi->state);
4737 }
4738 }
4739
4740 /* no further action needed, so return now */
4741 return;
Neerav Parikhb5d06f02014-06-03 23:50:17 +00004742 } else if (reset_flags & (1 << __I40E_DOWN_REQUESTED)) {
4743 int v;
4744
4745 /* Find the VSI(s) that needs to be brought down */
4746 dev_info(&pf->pdev->dev, "VSI down requested\n");
4747 for (v = 0; v < pf->num_alloc_vsi; v++) {
4748 struct i40e_vsi *vsi = pf->vsi[v];
4749 if (vsi != NULL &&
4750 test_bit(__I40E_DOWN_REQUESTED, &vsi->state)) {
4751 set_bit(__I40E_DOWN, &vsi->state);
4752 i40e_down(vsi);
4753 clear_bit(__I40E_DOWN_REQUESTED, &vsi->state);
4754 }
4755 }
4756
4757 /* no further action needed, so return now */
4758 return;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004759 } else {
4760 dev_info(&pf->pdev->dev,
4761 "bad reset request 0x%08x\n", reset_flags);
4762 return;
4763 }
4764}
4765
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004766#ifdef CONFIG_I40E_DCB
4767/**
4768 * i40e_dcb_need_reconfig - Check if DCB needs reconfig
4769 * @pf: board private structure
4770 * @old_cfg: current DCB config
4771 * @new_cfg: new DCB config
4772 **/
4773bool i40e_dcb_need_reconfig(struct i40e_pf *pf,
4774 struct i40e_dcbx_config *old_cfg,
4775 struct i40e_dcbx_config *new_cfg)
4776{
4777 bool need_reconfig = false;
4778
4779 /* Check if ETS configuration has changed */
4780 if (memcmp(&new_cfg->etscfg,
4781 &old_cfg->etscfg,
4782 sizeof(new_cfg->etscfg))) {
4783 /* If Priority Table has changed reconfig is needed */
4784 if (memcmp(&new_cfg->etscfg.prioritytable,
4785 &old_cfg->etscfg.prioritytable,
4786 sizeof(new_cfg->etscfg.prioritytable))) {
4787 need_reconfig = true;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00004788 dev_dbg(&pf->pdev->dev, "ETS UP2TC changed.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004789 }
4790
4791 if (memcmp(&new_cfg->etscfg.tcbwtable,
4792 &old_cfg->etscfg.tcbwtable,
4793 sizeof(new_cfg->etscfg.tcbwtable)))
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00004794 dev_dbg(&pf->pdev->dev, "ETS TC BW Table changed.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004795
4796 if (memcmp(&new_cfg->etscfg.tsatable,
4797 &old_cfg->etscfg.tsatable,
4798 sizeof(new_cfg->etscfg.tsatable)))
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00004799 dev_dbg(&pf->pdev->dev, "ETS TSA Table changed.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004800 }
4801
4802 /* Check if PFC configuration has changed */
4803 if (memcmp(&new_cfg->pfc,
4804 &old_cfg->pfc,
4805 sizeof(new_cfg->pfc))) {
4806 need_reconfig = true;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00004807 dev_dbg(&pf->pdev->dev, "PFC config change detected.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004808 }
4809
4810 /* Check if APP Table has changed */
4811 if (memcmp(&new_cfg->app,
4812 &old_cfg->app,
Dave Jones3d9667a2014-01-27 23:11:09 -05004813 sizeof(new_cfg->app))) {
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004814 need_reconfig = true;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00004815 dev_dbg(&pf->pdev->dev, "APP Table change detected.\n");
Dave Jones3d9667a2014-01-27 23:11:09 -05004816 }
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004817
4818 return need_reconfig;
4819}
4820
4821/**
4822 * i40e_handle_lldp_event - Handle LLDP Change MIB event
4823 * @pf: board private structure
4824 * @e: event info posted on ARQ
4825 **/
4826static int i40e_handle_lldp_event(struct i40e_pf *pf,
4827 struct i40e_arq_event_info *e)
4828{
4829 struct i40e_aqc_lldp_get_mib *mib =
4830 (struct i40e_aqc_lldp_get_mib *)&e->desc.params.raw;
4831 struct i40e_hw *hw = &pf->hw;
4832 struct i40e_dcbx_config *dcbx_cfg = &hw->local_dcbx_config;
4833 struct i40e_dcbx_config tmp_dcbx_cfg;
4834 bool need_reconfig = false;
4835 int ret = 0;
4836 u8 type;
4837
Neerav Parikh4d9b6042014-05-22 06:31:51 +00004838 /* Not DCB capable or capability disabled */
4839 if (!(pf->flags & I40E_FLAG_DCB_CAPABLE))
4840 return ret;
4841
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004842 /* Ignore if event is not for Nearest Bridge */
4843 type = ((mib->type >> I40E_AQ_LLDP_BRIDGE_TYPE_SHIFT)
4844 & I40E_AQ_LLDP_BRIDGE_TYPE_MASK);
4845 if (type != I40E_AQ_LLDP_BRIDGE_TYPE_NEAREST_BRIDGE)
4846 return ret;
4847
4848 /* Check MIB Type and return if event for Remote MIB update */
4849 type = mib->type & I40E_AQ_LLDP_MIB_TYPE_MASK;
4850 if (type == I40E_AQ_LLDP_MIB_REMOTE) {
4851 /* Update the remote cached instance and return */
4852 ret = i40e_aq_get_dcb_config(hw, I40E_AQ_LLDP_MIB_REMOTE,
4853 I40E_AQ_LLDP_BRIDGE_TYPE_NEAREST_BRIDGE,
4854 &hw->remote_dcbx_config);
4855 goto exit;
4856 }
4857
4858 /* Convert/store the DCBX data from LLDPDU temporarily */
4859 memset(&tmp_dcbx_cfg, 0, sizeof(tmp_dcbx_cfg));
4860 ret = i40e_lldp_to_dcb_config(e->msg_buf, &tmp_dcbx_cfg);
4861 if (ret) {
4862 /* Error in LLDPDU parsing return */
4863 dev_info(&pf->pdev->dev, "Failed parsing LLDPDU from event buffer\n");
4864 goto exit;
4865 }
4866
4867 /* No change detected in DCBX configs */
4868 if (!memcmp(&tmp_dcbx_cfg, dcbx_cfg, sizeof(tmp_dcbx_cfg))) {
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00004869 dev_dbg(&pf->pdev->dev, "No change detected in DCBX configuration.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004870 goto exit;
4871 }
4872
4873 need_reconfig = i40e_dcb_need_reconfig(pf, dcbx_cfg, &tmp_dcbx_cfg);
4874
4875 i40e_dcbnl_flush_apps(pf, &tmp_dcbx_cfg);
4876
4877 /* Overwrite the new configuration */
4878 *dcbx_cfg = tmp_dcbx_cfg;
4879
4880 if (!need_reconfig)
4881 goto exit;
4882
Neerav Parikh4d9b6042014-05-22 06:31:51 +00004883 /* Enable DCB tagging only when more than one TC */
4884 if (i40e_dcb_get_num_tc(dcbx_cfg) > 1)
4885 pf->flags |= I40E_FLAG_DCB_ENABLED;
4886 else
4887 pf->flags &= ~I40E_FLAG_DCB_ENABLED;
4888
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004889 /* Reconfiguration needed quiesce all VSIs */
4890 i40e_pf_quiesce_all_vsi(pf);
4891
4892 /* Changes in configuration update VEB/VSI */
4893 i40e_dcb_reconfigure(pf);
4894
4895 i40e_pf_unquiesce_all_vsi(pf);
4896exit:
4897 return ret;
4898}
4899#endif /* CONFIG_I40E_DCB */
4900
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004901/**
Anjali Singhai Jain23326182013-11-26 10:49:22 +00004902 * i40e_do_reset_safe - Protected reset path for userland calls.
4903 * @pf: board private structure
4904 * @reset_flags: which reset is requested
4905 *
4906 **/
4907void i40e_do_reset_safe(struct i40e_pf *pf, u32 reset_flags)
4908{
4909 rtnl_lock();
4910 i40e_do_reset(pf, reset_flags);
4911 rtnl_unlock();
4912}
4913
4914/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004915 * i40e_handle_lan_overflow_event - Handler for LAN queue overflow event
4916 * @pf: board private structure
4917 * @e: event info posted on ARQ
4918 *
4919 * Handler for LAN Queue Overflow Event generated by the firmware for PF
4920 * and VF queues
4921 **/
4922static void i40e_handle_lan_overflow_event(struct i40e_pf *pf,
4923 struct i40e_arq_event_info *e)
4924{
4925 struct i40e_aqc_lan_overflow *data =
4926 (struct i40e_aqc_lan_overflow *)&e->desc.params.raw;
4927 u32 queue = le32_to_cpu(data->prtdcb_rupto);
4928 u32 qtx_ctl = le32_to_cpu(data->otx_ctl);
4929 struct i40e_hw *hw = &pf->hw;
4930 struct i40e_vf *vf;
4931 u16 vf_id;
4932
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00004933 dev_dbg(&pf->pdev->dev, "overflow Rx Queue Number = %d QTX_CTL=0x%08x\n",
4934 queue, qtx_ctl);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004935
4936 /* Queue belongs to VF, find the VF and issue VF reset */
4937 if (((qtx_ctl & I40E_QTX_CTL_PFVF_Q_MASK)
4938 >> I40E_QTX_CTL_PFVF_Q_SHIFT) == I40E_QTX_CTL_VF_QUEUE) {
4939 vf_id = (u16)((qtx_ctl & I40E_QTX_CTL_VFVM_INDX_MASK)
4940 >> I40E_QTX_CTL_VFVM_INDX_SHIFT);
4941 vf_id -= hw->func_caps.vf_base_id;
4942 vf = &pf->vf[vf_id];
4943 i40e_vc_notify_vf_reset(vf);
4944 /* Allow VF to process pending reset notification */
4945 msleep(20);
4946 i40e_reset_vf(vf, false);
4947 }
4948}
4949
4950/**
4951 * i40e_service_event_complete - Finish up the service event
4952 * @pf: board private structure
4953 **/
4954static void i40e_service_event_complete(struct i40e_pf *pf)
4955{
4956 BUG_ON(!test_bit(__I40E_SERVICE_SCHED, &pf->state));
4957
4958 /* flush memory to make sure state is correct before next watchog */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01004959 smp_mb__before_atomic();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004960 clear_bit(__I40E_SERVICE_SCHED, &pf->state);
4961}
4962
4963/**
Anjali Singhai Jain12957382014-06-04 04:22:47 +00004964 * i40e_get_cur_guaranteed_fd_count - Get the consumed guaranteed FD filters
4965 * @pf: board private structure
4966 **/
4967int i40e_get_cur_guaranteed_fd_count(struct i40e_pf *pf)
4968{
4969 int val, fcnt_prog;
4970
4971 val = rd32(&pf->hw, I40E_PFQF_FDSTAT);
4972 fcnt_prog = (val & I40E_PFQF_FDSTAT_GUARANT_CNT_MASK);
4973 return fcnt_prog;
4974}
4975
4976/**
4977 * i40e_get_current_fd_count - Get the count of total FD filters programmed
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00004978 * @pf: board private structure
4979 **/
4980int i40e_get_current_fd_count(struct i40e_pf *pf)
4981{
4982 int val, fcnt_prog;
4983 val = rd32(&pf->hw, I40E_PFQF_FDSTAT);
4984 fcnt_prog = (val & I40E_PFQF_FDSTAT_GUARANT_CNT_MASK) +
4985 ((val & I40E_PFQF_FDSTAT_BEST_CNT_MASK) >>
4986 I40E_PFQF_FDSTAT_BEST_CNT_SHIFT);
4987 return fcnt_prog;
4988}
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00004989/**
4990 * i40e_fdir_check_and_reenable - Function to reenabe FD ATR or SB if disabled
4991 * @pf: board private structure
4992 **/
4993void i40e_fdir_check_and_reenable(struct i40e_pf *pf)
4994{
4995 u32 fcnt_prog, fcnt_avail;
4996
4997 /* Check if, FD SB or ATR was auto disabled and if there is enough room
4998 * to re-enable
4999 */
5000 if ((pf->flags & I40E_FLAG_FD_ATR_ENABLED) &&
5001 (pf->flags & I40E_FLAG_FD_SB_ENABLED))
5002 return;
Anjali Singhai Jain12957382014-06-04 04:22:47 +00005003 fcnt_prog = i40e_get_cur_guaranteed_fd_count(pf);
5004 fcnt_avail = pf->fdir_pf_filter_count;
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005005 if (fcnt_prog < (fcnt_avail - I40E_FDIR_BUFFER_HEAD_ROOM)) {
5006 if ((pf->flags & I40E_FLAG_FD_SB_ENABLED) &&
5007 (pf->auto_disable_flags & I40E_FLAG_FD_SB_ENABLED)) {
5008 pf->auto_disable_flags &= ~I40E_FLAG_FD_SB_ENABLED;
5009 dev_info(&pf->pdev->dev, "FD Sideband/ntuple is being enabled since we have space in the table now\n");
5010 }
5011 }
5012 /* Wait for some more space to be available to turn on ATR */
5013 if (fcnt_prog < (fcnt_avail - I40E_FDIR_BUFFER_HEAD_ROOM * 2)) {
5014 if ((pf->flags & I40E_FLAG_FD_ATR_ENABLED) &&
5015 (pf->auto_disable_flags & I40E_FLAG_FD_ATR_ENABLED)) {
5016 pf->auto_disable_flags &= ~I40E_FLAG_FD_ATR_ENABLED;
5017 dev_info(&pf->pdev->dev, "ATR is being enabled since we have space in the table now\n");
5018 }
5019 }
5020}
5021
5022/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005023 * i40e_fdir_reinit_subtask - Worker thread to reinit FDIR filter table
5024 * @pf: board private structure
5025 **/
5026static void i40e_fdir_reinit_subtask(struct i40e_pf *pf)
5027{
5028 if (!(pf->flags & I40E_FLAG_FDIR_REQUIRES_REINIT))
5029 return;
5030
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005031 /* if interface is down do nothing */
5032 if (test_bit(__I40E_DOWN, &pf->state))
5033 return;
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005034 i40e_fdir_check_and_reenable(pf);
5035
5036 if ((pf->flags & I40E_FLAG_FD_ATR_ENABLED) &&
5037 (pf->flags & I40E_FLAG_FD_SB_ENABLED))
5038 pf->flags &= ~I40E_FLAG_FDIR_REQUIRES_REINIT;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005039}
5040
5041/**
5042 * i40e_vsi_link_event - notify VSI of a link event
5043 * @vsi: vsi to be notified
5044 * @link_up: link up or down
5045 **/
5046static void i40e_vsi_link_event(struct i40e_vsi *vsi, bool link_up)
5047{
5048 if (!vsi)
5049 return;
5050
5051 switch (vsi->type) {
5052 case I40E_VSI_MAIN:
5053 if (!vsi->netdev || !vsi->netdev_registered)
5054 break;
5055
5056 if (link_up) {
5057 netif_carrier_on(vsi->netdev);
5058 netif_tx_wake_all_queues(vsi->netdev);
5059 } else {
5060 netif_carrier_off(vsi->netdev);
5061 netif_tx_stop_all_queues(vsi->netdev);
5062 }
5063 break;
5064
5065 case I40E_VSI_SRIOV:
5066 break;
5067
5068 case I40E_VSI_VMDQ2:
5069 case I40E_VSI_CTRL:
5070 case I40E_VSI_MIRROR:
5071 default:
5072 /* there is no notification for other VSIs */
5073 break;
5074 }
5075}
5076
5077/**
5078 * i40e_veb_link_event - notify elements on the veb of a link event
5079 * @veb: veb to be notified
5080 * @link_up: link up or down
5081 **/
5082static void i40e_veb_link_event(struct i40e_veb *veb, bool link_up)
5083{
5084 struct i40e_pf *pf;
5085 int i;
5086
5087 if (!veb || !veb->pf)
5088 return;
5089 pf = veb->pf;
5090
5091 /* depth first... */
5092 for (i = 0; i < I40E_MAX_VEB; i++)
5093 if (pf->veb[i] && (pf->veb[i]->uplink_seid == veb->seid))
5094 i40e_veb_link_event(pf->veb[i], link_up);
5095
5096 /* ... now the local VSIs */
Mitch Williams505682c2014-05-20 08:01:37 +00005097 for (i = 0; i < pf->num_alloc_vsi; i++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005098 if (pf->vsi[i] && (pf->vsi[i]->uplink_seid == veb->seid))
5099 i40e_vsi_link_event(pf->vsi[i], link_up);
5100}
5101
5102/**
5103 * i40e_link_event - Update netif_carrier status
5104 * @pf: board private structure
5105 **/
5106static void i40e_link_event(struct i40e_pf *pf)
5107{
5108 bool new_link, old_link;
5109
5110 new_link = (pf->hw.phy.link_info.link_info & I40E_AQ_LINK_UP);
5111 old_link = (pf->hw.phy.link_info_old.link_info & I40E_AQ_LINK_UP);
5112
5113 if (new_link == old_link)
5114 return;
Anjali Singhai6d779b42013-09-28 06:00:02 +00005115 if (!test_bit(__I40E_DOWN, &pf->vsi[pf->lan_vsi]->state))
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005116 i40e_print_link_message(pf->vsi[pf->lan_vsi], new_link);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005117
5118 /* Notify the base of the switch tree connected to
5119 * the link. Floating VEBs are not notified.
5120 */
5121 if (pf->lan_veb != I40E_NO_VEB && pf->veb[pf->lan_veb])
5122 i40e_veb_link_event(pf->veb[pf->lan_veb], new_link);
5123 else
5124 i40e_vsi_link_event(pf->vsi[pf->lan_vsi], new_link);
5125
5126 if (pf->vf)
5127 i40e_vc_notify_link_state(pf);
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00005128
5129 if (pf->flags & I40E_FLAG_PTP)
5130 i40e_ptp_set_increment(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005131}
5132
5133/**
5134 * i40e_check_hang_subtask - Check for hung queues and dropped interrupts
5135 * @pf: board private structure
5136 *
5137 * Set the per-queue flags to request a check for stuck queues in the irq
5138 * clean functions, then force interrupts to be sure the irq clean is called.
5139 **/
5140static void i40e_check_hang_subtask(struct i40e_pf *pf)
5141{
5142 int i, v;
5143
5144 /* If we're down or resetting, just bail */
5145 if (test_bit(__I40E_CONFIG_BUSY, &pf->state))
5146 return;
5147
5148 /* for each VSI/netdev
5149 * for each Tx queue
5150 * set the check flag
5151 * for each q_vector
5152 * force an interrupt
5153 */
Mitch Williams505682c2014-05-20 08:01:37 +00005154 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005155 struct i40e_vsi *vsi = pf->vsi[v];
5156 int armed = 0;
5157
5158 if (!pf->vsi[v] ||
5159 test_bit(__I40E_DOWN, &vsi->state) ||
5160 (vsi->netdev && !netif_carrier_ok(vsi->netdev)))
5161 continue;
5162
5163 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00005164 set_check_for_tx_hang(vsi->tx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005165 if (test_bit(__I40E_HANG_CHECK_ARMED,
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00005166 &vsi->tx_rings[i]->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005167 armed++;
5168 }
5169
5170 if (armed) {
5171 if (!(pf->flags & I40E_FLAG_MSIX_ENABLED)) {
5172 wr32(&vsi->back->hw, I40E_PFINT_DYN_CTL0,
5173 (I40E_PFINT_DYN_CTL0_INTENA_MASK |
5174 I40E_PFINT_DYN_CTL0_SWINT_TRIG_MASK));
5175 } else {
5176 u16 vec = vsi->base_vector - 1;
5177 u32 val = (I40E_PFINT_DYN_CTLN_INTENA_MASK |
5178 I40E_PFINT_DYN_CTLN_SWINT_TRIG_MASK);
5179 for (i = 0; i < vsi->num_q_vectors; i++, vec++)
5180 wr32(&vsi->back->hw,
5181 I40E_PFINT_DYN_CTLN(vec), val);
5182 }
5183 i40e_flush(&vsi->back->hw);
5184 }
5185 }
5186}
5187
5188/**
5189 * i40e_watchdog_subtask - Check and bring link up
5190 * @pf: board private structure
5191 **/
5192static void i40e_watchdog_subtask(struct i40e_pf *pf)
5193{
5194 int i;
5195
5196 /* if interface is down do nothing */
5197 if (test_bit(__I40E_DOWN, &pf->state) ||
5198 test_bit(__I40E_CONFIG_BUSY, &pf->state))
5199 return;
5200
5201 /* Update the stats for active netdevs so the network stack
5202 * can look at updated numbers whenever it cares to
5203 */
Mitch Williams505682c2014-05-20 08:01:37 +00005204 for (i = 0; i < pf->num_alloc_vsi; i++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005205 if (pf->vsi[i] && pf->vsi[i]->netdev)
5206 i40e_update_stats(pf->vsi[i]);
5207
5208 /* Update the stats for the active switching components */
5209 for (i = 0; i < I40E_MAX_VEB; i++)
5210 if (pf->veb[i])
5211 i40e_update_veb_stats(pf->veb[i]);
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00005212
5213 i40e_ptp_rx_hang(pf->vsi[pf->lan_vsi]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005214}
5215
5216/**
5217 * i40e_reset_subtask - Set up for resetting the device and driver
5218 * @pf: board private structure
5219 **/
5220static void i40e_reset_subtask(struct i40e_pf *pf)
5221{
5222 u32 reset_flags = 0;
5223
Anjali Singhai Jain23326182013-11-26 10:49:22 +00005224 rtnl_lock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005225 if (test_bit(__I40E_REINIT_REQUESTED, &pf->state)) {
5226 reset_flags |= (1 << __I40E_REINIT_REQUESTED);
5227 clear_bit(__I40E_REINIT_REQUESTED, &pf->state);
5228 }
5229 if (test_bit(__I40E_PF_RESET_REQUESTED, &pf->state)) {
5230 reset_flags |= (1 << __I40E_PF_RESET_REQUESTED);
5231 clear_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
5232 }
5233 if (test_bit(__I40E_CORE_RESET_REQUESTED, &pf->state)) {
5234 reset_flags |= (1 << __I40E_CORE_RESET_REQUESTED);
5235 clear_bit(__I40E_CORE_RESET_REQUESTED, &pf->state);
5236 }
5237 if (test_bit(__I40E_GLOBAL_RESET_REQUESTED, &pf->state)) {
5238 reset_flags |= (1 << __I40E_GLOBAL_RESET_REQUESTED);
5239 clear_bit(__I40E_GLOBAL_RESET_REQUESTED, &pf->state);
5240 }
Neerav Parikhb5d06f02014-06-03 23:50:17 +00005241 if (test_bit(__I40E_DOWN_REQUESTED, &pf->state)) {
5242 reset_flags |= (1 << __I40E_DOWN_REQUESTED);
5243 clear_bit(__I40E_DOWN_REQUESTED, &pf->state);
5244 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005245
5246 /* If there's a recovery already waiting, it takes
5247 * precedence before starting a new reset sequence.
5248 */
5249 if (test_bit(__I40E_RESET_INTR_RECEIVED, &pf->state)) {
5250 i40e_handle_reset_warning(pf);
Anjali Singhai Jain23326182013-11-26 10:49:22 +00005251 goto unlock;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005252 }
5253
5254 /* If we're already down or resetting, just bail */
5255 if (reset_flags &&
5256 !test_bit(__I40E_DOWN, &pf->state) &&
5257 !test_bit(__I40E_CONFIG_BUSY, &pf->state))
5258 i40e_do_reset(pf, reset_flags);
Anjali Singhai Jain23326182013-11-26 10:49:22 +00005259
5260unlock:
5261 rtnl_unlock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005262}
5263
5264/**
5265 * i40e_handle_link_event - Handle link event
5266 * @pf: board private structure
5267 * @e: event info posted on ARQ
5268 **/
5269static void i40e_handle_link_event(struct i40e_pf *pf,
5270 struct i40e_arq_event_info *e)
5271{
5272 struct i40e_hw *hw = &pf->hw;
5273 struct i40e_aqc_get_link_status *status =
5274 (struct i40e_aqc_get_link_status *)&e->desc.params.raw;
5275 struct i40e_link_status *hw_link_info = &hw->phy.link_info;
5276
5277 /* save off old link status information */
5278 memcpy(&pf->hw.phy.link_info_old, hw_link_info,
5279 sizeof(pf->hw.phy.link_info_old));
5280
5281 /* update link status */
5282 hw_link_info->phy_type = (enum i40e_aq_phy_type)status->phy_type;
5283 hw_link_info->link_speed = (enum i40e_aq_link_speed)status->link_speed;
5284 hw_link_info->link_info = status->link_info;
5285 hw_link_info->an_info = status->an_info;
5286 hw_link_info->ext_info = status->ext_info;
5287 hw_link_info->lse_enable =
5288 le16_to_cpu(status->command_flags) &
5289 I40E_AQ_LSE_ENABLE;
5290
5291 /* process the event */
5292 i40e_link_event(pf);
5293
5294 /* Do a new status request to re-enable LSE reporting
5295 * and load new status information into the hw struct,
5296 * then see if the status changed while processing the
5297 * initial event.
5298 */
5299 i40e_aq_get_link_info(&pf->hw, true, NULL, NULL);
5300 i40e_link_event(pf);
5301}
5302
5303/**
5304 * i40e_clean_adminq_subtask - Clean the AdminQ rings
5305 * @pf: board private structure
5306 **/
5307static void i40e_clean_adminq_subtask(struct i40e_pf *pf)
5308{
5309 struct i40e_arq_event_info event;
5310 struct i40e_hw *hw = &pf->hw;
5311 u16 pending, i = 0;
5312 i40e_status ret;
5313 u16 opcode;
Shannon Nelson86df2422014-05-20 08:01:35 +00005314 u32 oldval;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005315 u32 val;
5316
Shannon Nelson86df2422014-05-20 08:01:35 +00005317 /* check for error indications */
5318 val = rd32(&pf->hw, pf->hw.aq.arq.len);
5319 oldval = val;
5320 if (val & I40E_PF_ARQLEN_ARQVFE_MASK) {
5321 dev_info(&pf->pdev->dev, "ARQ VF Error detected\n");
5322 val &= ~I40E_PF_ARQLEN_ARQVFE_MASK;
5323 }
5324 if (val & I40E_PF_ARQLEN_ARQOVFL_MASK) {
5325 dev_info(&pf->pdev->dev, "ARQ Overflow Error detected\n");
5326 val &= ~I40E_PF_ARQLEN_ARQOVFL_MASK;
5327 }
5328 if (val & I40E_PF_ARQLEN_ARQCRIT_MASK) {
5329 dev_info(&pf->pdev->dev, "ARQ Critical Error detected\n");
5330 val &= ~I40E_PF_ARQLEN_ARQCRIT_MASK;
5331 }
5332 if (oldval != val)
5333 wr32(&pf->hw, pf->hw.aq.arq.len, val);
5334
5335 val = rd32(&pf->hw, pf->hw.aq.asq.len);
5336 oldval = val;
5337 if (val & I40E_PF_ATQLEN_ATQVFE_MASK) {
5338 dev_info(&pf->pdev->dev, "ASQ VF Error detected\n");
5339 val &= ~I40E_PF_ATQLEN_ATQVFE_MASK;
5340 }
5341 if (val & I40E_PF_ATQLEN_ATQOVFL_MASK) {
5342 dev_info(&pf->pdev->dev, "ASQ Overflow Error detected\n");
5343 val &= ~I40E_PF_ATQLEN_ATQOVFL_MASK;
5344 }
5345 if (val & I40E_PF_ATQLEN_ATQCRIT_MASK) {
5346 dev_info(&pf->pdev->dev, "ASQ Critical Error detected\n");
5347 val &= ~I40E_PF_ATQLEN_ATQCRIT_MASK;
5348 }
5349 if (oldval != val)
5350 wr32(&pf->hw, pf->hw.aq.asq.len, val);
5351
Mitch Williams3197ce22013-11-28 06:39:39 +00005352 event.msg_size = I40E_MAX_AQ_BUF_SIZE;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005353 event.msg_buf = kzalloc(event.msg_size, GFP_KERNEL);
5354 if (!event.msg_buf)
5355 return;
5356
5357 do {
Mitch Williams2f019122013-11-28 06:39:33 +00005358 event.msg_size = I40E_MAX_AQ_BUF_SIZE; /* reinit each time */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005359 ret = i40e_clean_arq_element(hw, &event, &pending);
Mitch Williams56497972014-06-04 08:45:18 +00005360 if (ret == I40E_ERR_ADMIN_QUEUE_NO_WORK)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005361 break;
Mitch Williams56497972014-06-04 08:45:18 +00005362 else if (ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005363 dev_info(&pf->pdev->dev, "ARQ event error %d\n", ret);
5364 break;
5365 }
5366
5367 opcode = le16_to_cpu(event.desc.opcode);
5368 switch (opcode) {
5369
5370 case i40e_aqc_opc_get_link_status:
5371 i40e_handle_link_event(pf, &event);
5372 break;
5373 case i40e_aqc_opc_send_msg_to_pf:
5374 ret = i40e_vc_process_vf_msg(pf,
5375 le16_to_cpu(event.desc.retval),
5376 le32_to_cpu(event.desc.cookie_high),
5377 le32_to_cpu(event.desc.cookie_low),
5378 event.msg_buf,
5379 event.msg_size);
5380 break;
5381 case i40e_aqc_opc_lldp_update_mib:
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005382 dev_dbg(&pf->pdev->dev, "ARQ: Update LLDP MIB event received\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005383#ifdef CONFIG_I40E_DCB
5384 rtnl_lock();
5385 ret = i40e_handle_lldp_event(pf, &event);
5386 rtnl_unlock();
5387#endif /* CONFIG_I40E_DCB */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005388 break;
5389 case i40e_aqc_opc_event_lan_overflow:
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005390 dev_dbg(&pf->pdev->dev, "ARQ LAN queue overflow event received\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005391 i40e_handle_lan_overflow_event(pf, &event);
5392 break;
Shannon Nelson0467bc92013-12-18 13:45:58 +00005393 case i40e_aqc_opc_send_msg_to_peer:
5394 dev_info(&pf->pdev->dev, "ARQ: Msg from other pf\n");
5395 break;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005396 default:
5397 dev_info(&pf->pdev->dev,
Shannon Nelson0467bc92013-12-18 13:45:58 +00005398 "ARQ Error: Unknown event 0x%04x received\n",
5399 opcode);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005400 break;
5401 }
5402 } while (pending && (i++ < pf->adminq_work_limit));
5403
5404 clear_bit(__I40E_ADMINQ_EVENT_PENDING, &pf->state);
5405 /* re-enable Admin queue interrupt cause */
5406 val = rd32(hw, I40E_PFINT_ICR0_ENA);
5407 val |= I40E_PFINT_ICR0_ENA_ADMINQ_MASK;
5408 wr32(hw, I40E_PFINT_ICR0_ENA, val);
5409 i40e_flush(hw);
5410
5411 kfree(event.msg_buf);
5412}
5413
5414/**
Shannon Nelson4eb3f762014-03-06 08:59:58 +00005415 * i40e_verify_eeprom - make sure eeprom is good to use
5416 * @pf: board private structure
5417 **/
5418static void i40e_verify_eeprom(struct i40e_pf *pf)
5419{
5420 int err;
5421
5422 err = i40e_diag_eeprom_test(&pf->hw);
5423 if (err) {
5424 /* retry in case of garbage read */
5425 err = i40e_diag_eeprom_test(&pf->hw);
5426 if (err) {
5427 dev_info(&pf->pdev->dev, "eeprom check failed (%d), Tx/Rx traffic disabled\n",
5428 err);
5429 set_bit(__I40E_BAD_EEPROM, &pf->state);
5430 }
5431 }
5432
5433 if (!err && test_bit(__I40E_BAD_EEPROM, &pf->state)) {
5434 dev_info(&pf->pdev->dev, "eeprom check passed, Tx/Rx traffic enabled\n");
5435 clear_bit(__I40E_BAD_EEPROM, &pf->state);
5436 }
5437}
5438
5439/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005440 * i40e_reconstitute_veb - rebuild the VEB and anything connected to it
5441 * @veb: pointer to the VEB instance
5442 *
5443 * This is a recursive function that first builds the attached VSIs then
5444 * recurses in to build the next layer of VEB. We track the connections
5445 * through our own index numbers because the seid's from the HW could
5446 * change across the reset.
5447 **/
5448static int i40e_reconstitute_veb(struct i40e_veb *veb)
5449{
5450 struct i40e_vsi *ctl_vsi = NULL;
5451 struct i40e_pf *pf = veb->pf;
5452 int v, veb_idx;
5453 int ret;
5454
5455 /* build VSI that owns this VEB, temporarily attached to base VEB */
Mitch Williams505682c2014-05-20 08:01:37 +00005456 for (v = 0; v < pf->num_alloc_vsi && !ctl_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005457 if (pf->vsi[v] &&
5458 pf->vsi[v]->veb_idx == veb->idx &&
5459 pf->vsi[v]->flags & I40E_VSI_FLAG_VEB_OWNER) {
5460 ctl_vsi = pf->vsi[v];
5461 break;
5462 }
5463 }
5464 if (!ctl_vsi) {
5465 dev_info(&pf->pdev->dev,
5466 "missing owner VSI for veb_idx %d\n", veb->idx);
5467 ret = -ENOENT;
5468 goto end_reconstitute;
5469 }
5470 if (ctl_vsi != pf->vsi[pf->lan_vsi])
5471 ctl_vsi->uplink_seid = pf->vsi[pf->lan_vsi]->uplink_seid;
5472 ret = i40e_add_vsi(ctl_vsi);
5473 if (ret) {
5474 dev_info(&pf->pdev->dev,
5475 "rebuild of owner VSI failed: %d\n", ret);
5476 goto end_reconstitute;
5477 }
5478 i40e_vsi_reset_stats(ctl_vsi);
5479
5480 /* create the VEB in the switch and move the VSI onto the VEB */
5481 ret = i40e_add_veb(veb, ctl_vsi);
5482 if (ret)
5483 goto end_reconstitute;
5484
5485 /* create the remaining VSIs attached to this VEB */
Mitch Williams505682c2014-05-20 08:01:37 +00005486 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005487 if (!pf->vsi[v] || pf->vsi[v] == ctl_vsi)
5488 continue;
5489
5490 if (pf->vsi[v]->veb_idx == veb->idx) {
5491 struct i40e_vsi *vsi = pf->vsi[v];
5492 vsi->uplink_seid = veb->seid;
5493 ret = i40e_add_vsi(vsi);
5494 if (ret) {
5495 dev_info(&pf->pdev->dev,
5496 "rebuild of vsi_idx %d failed: %d\n",
5497 v, ret);
5498 goto end_reconstitute;
5499 }
5500 i40e_vsi_reset_stats(vsi);
5501 }
5502 }
5503
5504 /* create any VEBs attached to this VEB - RECURSION */
5505 for (veb_idx = 0; veb_idx < I40E_MAX_VEB; veb_idx++) {
5506 if (pf->veb[veb_idx] && pf->veb[veb_idx]->veb_idx == veb->idx) {
5507 pf->veb[veb_idx]->uplink_seid = veb->seid;
5508 ret = i40e_reconstitute_veb(pf->veb[veb_idx]);
5509 if (ret)
5510 break;
5511 }
5512 }
5513
5514end_reconstitute:
5515 return ret;
5516}
5517
5518/**
5519 * i40e_get_capabilities - get info about the HW
5520 * @pf: the PF struct
5521 **/
5522static int i40e_get_capabilities(struct i40e_pf *pf)
5523{
5524 struct i40e_aqc_list_capabilities_element_resp *cap_buf;
5525 u16 data_size;
5526 int buf_len;
5527 int err;
5528
5529 buf_len = 40 * sizeof(struct i40e_aqc_list_capabilities_element_resp);
5530 do {
5531 cap_buf = kzalloc(buf_len, GFP_KERNEL);
5532 if (!cap_buf)
5533 return -ENOMEM;
5534
5535 /* this loads the data into the hw struct for us */
5536 err = i40e_aq_discover_capabilities(&pf->hw, cap_buf, buf_len,
5537 &data_size,
5538 i40e_aqc_opc_list_func_capabilities,
5539 NULL);
5540 /* data loaded, buffer no longer needed */
5541 kfree(cap_buf);
5542
5543 if (pf->hw.aq.asq_last_status == I40E_AQ_RC_ENOMEM) {
5544 /* retry with a larger buffer */
5545 buf_len = data_size;
5546 } else if (pf->hw.aq.asq_last_status != I40E_AQ_RC_OK) {
5547 dev_info(&pf->pdev->dev,
5548 "capability discovery failed: aq=%d\n",
5549 pf->hw.aq.asq_last_status);
5550 return -ENODEV;
5551 }
5552 } while (err);
5553
Anjali Singhai Jainac71b7b2014-02-06 05:51:08 +00005554 if (((pf->hw.aq.fw_maj_ver == 2) && (pf->hw.aq.fw_min_ver < 22)) ||
5555 (pf->hw.aq.fw_maj_ver < 2)) {
5556 pf->hw.func_caps.num_msix_vectors++;
5557 pf->hw.func_caps.num_msix_vectors_vf++;
5558 }
5559
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005560 if (pf->hw.debug_mask & I40E_DEBUG_USER)
5561 dev_info(&pf->pdev->dev,
5562 "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",
5563 pf->hw.pf_id, pf->hw.func_caps.num_vfs,
5564 pf->hw.func_caps.num_msix_vectors,
5565 pf->hw.func_caps.num_msix_vectors_vf,
5566 pf->hw.func_caps.fd_filters_guaranteed,
5567 pf->hw.func_caps.fd_filters_best_effort,
5568 pf->hw.func_caps.num_tx_qp,
5569 pf->hw.func_caps.num_vsis);
5570
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00005571#define DEF_NUM_VSI (1 + (pf->hw.func_caps.fcoe ? 1 : 0) \
5572 + pf->hw.func_caps.num_vfs)
5573 if (pf->hw.revision_id == 0 && (DEF_NUM_VSI > pf->hw.func_caps.num_vsis)) {
5574 dev_info(&pf->pdev->dev,
5575 "got num_vsis %d, setting num_vsis to %d\n",
5576 pf->hw.func_caps.num_vsis, DEF_NUM_VSI);
5577 pf->hw.func_caps.num_vsis = DEF_NUM_VSI;
5578 }
5579
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005580 return 0;
5581}
5582
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08005583static int i40e_vsi_clear(struct i40e_vsi *vsi);
5584
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005585/**
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08005586 * i40e_fdir_sb_setup - initialize the Flow Director resources for Sideband
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005587 * @pf: board private structure
5588 **/
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08005589static void i40e_fdir_sb_setup(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005590{
5591 struct i40e_vsi *vsi;
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00005592 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005593
Jesse Brandeburg407e0632014-06-03 23:50:12 +00005594 /* quick workaround for an NVM issue that leaves a critical register
5595 * uninitialized
5596 */
5597 if (!rd32(&pf->hw, I40E_GLQF_HKEY(0))) {
5598 static const u32 hkey[] = {
5599 0xe640d33f, 0xcdfe98ab, 0x73fa7161, 0x0d7a7d36,
5600 0xeacb7d61, 0xaa4f05b6, 0x9c5c89ed, 0xfc425ddb,
5601 0xa4654832, 0xfc7461d4, 0x8f827619, 0xf5c63c21,
5602 0x95b3a76d};
5603
5604 for (i = 0; i <= I40E_GLQF_HKEY_MAX_INDEX; i++)
5605 wr32(&pf->hw, I40E_GLQF_HKEY(i), hkey[i]);
5606 }
5607
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08005608 if (!(pf->flags & I40E_FLAG_FD_SB_ENABLED))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005609 return;
5610
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08005611 /* find existing VSI and see if it needs configuring */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005612 vsi = NULL;
Mitch Williams505682c2014-05-20 08:01:37 +00005613 for (i = 0; i < pf->num_alloc_vsi; i++) {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08005614 if (pf->vsi[i] && pf->vsi[i]->type == I40E_VSI_FDIR) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005615 vsi = pf->vsi[i];
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08005616 break;
5617 }
5618 }
5619
5620 /* create a new VSI if none exists */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005621 if (!vsi) {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08005622 vsi = i40e_vsi_setup(pf, I40E_VSI_FDIR,
5623 pf->vsi[pf->lan_vsi]->seid, 0);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005624 if (!vsi) {
5625 dev_info(&pf->pdev->dev, "Couldn't create FDir VSI\n");
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00005626 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
5627 return;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005628 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005629 }
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00005630
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08005631 i40e_vsi_setup_irqhandler(vsi, i40e_fdir_clean_ring);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005632}
5633
5634/**
5635 * i40e_fdir_teardown - release the Flow Director resources
5636 * @pf: board private structure
5637 **/
5638static void i40e_fdir_teardown(struct i40e_pf *pf)
5639{
5640 int i;
5641
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00005642 i40e_fdir_filter_exit(pf);
Mitch Williams505682c2014-05-20 08:01:37 +00005643 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005644 if (pf->vsi[i] && pf->vsi[i]->type == I40E_VSI_FDIR) {
5645 i40e_vsi_release(pf->vsi[i]);
5646 break;
5647 }
5648 }
5649}
5650
5651/**
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00005652 * i40e_prep_for_reset - prep for the core to reset
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005653 * @pf: board private structure
5654 *
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00005655 * Close up the VFs and other things in prep for pf Reset.
5656 **/
Shannon Nelson23cfbe02014-06-04 01:23:14 +00005657static void i40e_prep_for_reset(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005658{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005659 struct i40e_hw *hw = &pf->hw;
Shannon Nelson60442de2014-04-23 04:50:13 +00005660 i40e_status ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005661 u32 v;
5662
5663 clear_bit(__I40E_RESET_INTR_RECEIVED, &pf->state);
5664 if (test_and_set_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state))
Shannon Nelson23cfbe02014-06-04 01:23:14 +00005665 return;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005666
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005667 dev_dbg(&pf->pdev->dev, "Tearing down internal switch for reset\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005668
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005669 /* quiesce the VSIs and their queues that are not already DOWN */
5670 i40e_pf_quiesce_all_vsi(pf);
5671
Mitch Williams505682c2014-05-20 08:01:37 +00005672 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005673 if (pf->vsi[v])
5674 pf->vsi[v]->seid = 0;
5675 }
5676
5677 i40e_shutdown_adminq(&pf->hw);
5678
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00005679 /* call shutdown HMC */
Shannon Nelson60442de2014-04-23 04:50:13 +00005680 if (hw->hmc.hmc_obj) {
5681 ret = i40e_shutdown_lan_hmc(hw);
Shannon Nelson23cfbe02014-06-04 01:23:14 +00005682 if (ret)
Shannon Nelson60442de2014-04-23 04:50:13 +00005683 dev_warn(&pf->pdev->dev,
5684 "shutdown_lan_hmc failed: %d\n", ret);
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00005685 }
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00005686}
5687
5688/**
Jesse Brandeburg44033fa2014-04-23 04:50:15 +00005689 * i40e_send_version - update firmware with driver version
5690 * @pf: PF struct
5691 */
5692static void i40e_send_version(struct i40e_pf *pf)
5693{
5694 struct i40e_driver_version dv;
5695
5696 dv.major_version = DRV_VERSION_MAJOR;
5697 dv.minor_version = DRV_VERSION_MINOR;
5698 dv.build_version = DRV_VERSION_BUILD;
5699 dv.subbuild_version = 0;
5700 strncpy(dv.driver_string, DRV_VERSION, sizeof(dv.driver_string));
5701 i40e_aq_send_driver_version(&pf->hw, &dv, NULL);
5702}
5703
5704/**
Jesse Brandeburg4dda12e2013-12-18 13:46:01 +00005705 * i40e_reset_and_rebuild - reset and rebuild using a saved config
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00005706 * @pf: board private structure
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00005707 * @reinit: if the Main VSI needs to re-initialized.
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00005708 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00005709static void i40e_reset_and_rebuild(struct i40e_pf *pf, bool reinit)
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00005710{
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00005711 struct i40e_hw *hw = &pf->hw;
5712 i40e_status ret;
5713 u32 v;
5714
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005715 /* Now we wait for GRST to settle out.
5716 * We don't have to delete the VEBs or VSIs from the hw switch
5717 * because the reset will make them disappear.
5718 */
5719 ret = i40e_pf_reset(hw);
Akeem G Abodunrinb5565402014-04-09 05:59:04 +00005720 if (ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005721 dev_info(&pf->pdev->dev, "PF reset failed, %d\n", ret);
Akeem G Abodunrinb5565402014-04-09 05:59:04 +00005722 goto end_core_reset;
5723 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005724 pf->pfr_count++;
5725
5726 if (test_bit(__I40E_DOWN, &pf->state))
5727 goto end_core_reset;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005728 dev_dbg(&pf->pdev->dev, "Rebuilding internal switch\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005729
5730 /* rebuild the basics for the AdminQ, HMC, and initial HW switch */
5731 ret = i40e_init_adminq(&pf->hw);
5732 if (ret) {
5733 dev_info(&pf->pdev->dev, "Rebuild AdminQ failed, %d\n", ret);
5734 goto end_core_reset;
5735 }
5736
Shannon Nelson4eb3f762014-03-06 08:59:58 +00005737 /* re-verify the eeprom if we just had an EMP reset */
5738 if (test_bit(__I40E_EMP_RESET_REQUESTED, &pf->state)) {
5739 clear_bit(__I40E_EMP_RESET_REQUESTED, &pf->state);
5740 i40e_verify_eeprom(pf);
5741 }
5742
Shannon Nelsone78ac4bf2014-05-10 04:49:09 +00005743 i40e_clear_pxe_mode(hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005744 ret = i40e_get_capabilities(pf);
5745 if (ret) {
5746 dev_info(&pf->pdev->dev, "i40e_get_capabilities failed, %d\n",
5747 ret);
5748 goto end_core_reset;
5749 }
5750
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005751 ret = i40e_init_lan_hmc(hw, hw->func_caps.num_tx_qp,
5752 hw->func_caps.num_rx_qp,
5753 pf->fcoe_hmc_cntx_num, pf->fcoe_hmc_filt_num);
5754 if (ret) {
5755 dev_info(&pf->pdev->dev, "init_lan_hmc failed: %d\n", ret);
5756 goto end_core_reset;
5757 }
5758 ret = i40e_configure_lan_hmc(hw, I40E_HMC_MODEL_DIRECT_ONLY);
5759 if (ret) {
5760 dev_info(&pf->pdev->dev, "configure_lan_hmc failed: %d\n", ret);
5761 goto end_core_reset;
5762 }
5763
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005764#ifdef CONFIG_I40E_DCB
5765 ret = i40e_init_pf_dcb(pf);
5766 if (ret) {
5767 dev_info(&pf->pdev->dev, "init_pf_dcb failed: %d\n", ret);
5768 goto end_core_reset;
5769 }
5770#endif /* CONFIG_I40E_DCB */
5771
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005772 /* do basic switch setup */
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00005773 ret = i40e_setup_pf_switch(pf, reinit);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005774 if (ret)
5775 goto end_core_reset;
5776
5777 /* Rebuild the VSIs and VEBs that existed before reset.
5778 * They are still in our local switch element arrays, so only
5779 * need to rebuild the switch model in the HW.
5780 *
5781 * If there were VEBs but the reconstitution failed, we'll try
5782 * try to recover minimal use by getting the basic PF VSI working.
5783 */
5784 if (pf->vsi[pf->lan_vsi]->uplink_seid != pf->mac_seid) {
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005785 dev_dbg(&pf->pdev->dev, "attempting to rebuild switch\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005786 /* find the one VEB connected to the MAC, and find orphans */
5787 for (v = 0; v < I40E_MAX_VEB; v++) {
5788 if (!pf->veb[v])
5789 continue;
5790
5791 if (pf->veb[v]->uplink_seid == pf->mac_seid ||
5792 pf->veb[v]->uplink_seid == 0) {
5793 ret = i40e_reconstitute_veb(pf->veb[v]);
5794
5795 if (!ret)
5796 continue;
5797
5798 /* If Main VEB failed, we're in deep doodoo,
5799 * so give up rebuilding the switch and set up
5800 * for minimal rebuild of PF VSI.
5801 * If orphan failed, we'll report the error
5802 * but try to keep going.
5803 */
5804 if (pf->veb[v]->uplink_seid == pf->mac_seid) {
5805 dev_info(&pf->pdev->dev,
5806 "rebuild of switch failed: %d, will try to set up simple PF connection\n",
5807 ret);
5808 pf->vsi[pf->lan_vsi]->uplink_seid
5809 = pf->mac_seid;
5810 break;
5811 } else if (pf->veb[v]->uplink_seid == 0) {
5812 dev_info(&pf->pdev->dev,
5813 "rebuild of orphan VEB failed: %d\n",
5814 ret);
5815 }
5816 }
5817 }
5818 }
5819
5820 if (pf->vsi[pf->lan_vsi]->uplink_seid == pf->mac_seid) {
Shannon Nelsoncde4cbc2014-06-04 01:23:17 +00005821 dev_dbg(&pf->pdev->dev, "attempting to rebuild PF VSI\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005822 /* no VEB, so rebuild only the Main VSI */
5823 ret = i40e_add_vsi(pf->vsi[pf->lan_vsi]);
5824 if (ret) {
5825 dev_info(&pf->pdev->dev,
5826 "rebuild of Main VSI failed: %d\n", ret);
5827 goto end_core_reset;
5828 }
5829 }
5830
5831 /* reinit the misc interrupt */
5832 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
5833 ret = i40e_setup_misc_vector(pf);
5834
5835 /* restart the VSIs that were rebuilt and running before the reset */
5836 i40e_pf_unquiesce_all_vsi(pf);
5837
Mitch Williams69f64b22014-02-13 03:48:46 -08005838 if (pf->num_alloc_vfs) {
5839 for (v = 0; v < pf->num_alloc_vfs; v++)
5840 i40e_reset_vf(&pf->vf[v], true);
5841 }
5842
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005843 /* tell the firmware that we're starting */
Jesse Brandeburg44033fa2014-04-23 04:50:15 +00005844 i40e_send_version(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005845
5846end_core_reset:
5847 clear_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state);
5848}
5849
5850/**
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00005851 * i40e_handle_reset_warning - prep for the pf to reset, reset and rebuild
5852 * @pf: board private structure
5853 *
5854 * Close up the VFs and other things in prep for a Core Reset,
5855 * then get ready to rebuild the world.
5856 **/
5857static void i40e_handle_reset_warning(struct i40e_pf *pf)
5858{
Shannon Nelson23cfbe02014-06-04 01:23:14 +00005859 i40e_prep_for_reset(pf);
5860 i40e_reset_and_rebuild(pf, false);
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00005861}
5862
5863/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005864 * i40e_handle_mdd_event
5865 * @pf: pointer to the pf structure
5866 *
5867 * Called from the MDD irq handler to identify possibly malicious vfs
5868 **/
5869static void i40e_handle_mdd_event(struct i40e_pf *pf)
5870{
5871 struct i40e_hw *hw = &pf->hw;
5872 bool mdd_detected = false;
Neerav Parikhdf430b12014-06-04 01:23:15 +00005873 bool pf_mdd_detected = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005874 struct i40e_vf *vf;
5875 u32 reg;
5876 int i;
5877
5878 if (!test_bit(__I40E_MDD_EVENT_PENDING, &pf->state))
5879 return;
5880
5881 /* find what triggered the MDD event */
5882 reg = rd32(hw, I40E_GL_MDET_TX);
5883 if (reg & I40E_GL_MDET_TX_VALID_MASK) {
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00005884 u8 pf_num = (reg & I40E_GL_MDET_TX_PF_NUM_MASK) >>
5885 I40E_GL_MDET_TX_PF_NUM_SHIFT;
5886 u8 vf_num = (reg & I40E_GL_MDET_TX_VF_NUM_MASK) >>
5887 I40E_GL_MDET_TX_VF_NUM_SHIFT;
5888 u8 event = (reg & I40E_GL_MDET_TX_EVENT_SHIFT) >>
5889 I40E_GL_MDET_TX_EVENT_SHIFT;
5890 u8 queue = (reg & I40E_GL_MDET_TX_QUEUE_MASK) >>
5891 I40E_GL_MDET_TX_QUEUE_SHIFT;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005892 dev_info(&pf->pdev->dev,
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00005893 "Malicious Driver Detection event 0x%02x on TX queue %d pf number 0x%02x vf number 0x%02x\n",
5894 event, queue, pf_num, vf_num);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005895 wr32(hw, I40E_GL_MDET_TX, 0xffffffff);
5896 mdd_detected = true;
5897 }
5898 reg = rd32(hw, I40E_GL_MDET_RX);
5899 if (reg & I40E_GL_MDET_RX_VALID_MASK) {
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00005900 u8 func = (reg & I40E_GL_MDET_RX_FUNCTION_MASK) >>
5901 I40E_GL_MDET_RX_FUNCTION_SHIFT;
5902 u8 event = (reg & I40E_GL_MDET_RX_EVENT_SHIFT) >>
5903 I40E_GL_MDET_RX_EVENT_SHIFT;
5904 u8 queue = (reg & I40E_GL_MDET_RX_QUEUE_MASK) >>
5905 I40E_GL_MDET_RX_QUEUE_SHIFT;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005906 dev_info(&pf->pdev->dev,
Jesse Brandeburgf29eaa32014-02-11 08:24:12 +00005907 "Malicious Driver Detection event 0x%02x on RX queue %d of function 0x%02x\n",
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005908 event, queue, func);
5909 wr32(hw, I40E_GL_MDET_RX, 0xffffffff);
5910 mdd_detected = true;
5911 }
5912
Neerav Parikhdf430b12014-06-04 01:23:15 +00005913 if (mdd_detected) {
5914 reg = rd32(hw, I40E_PF_MDET_TX);
5915 if (reg & I40E_PF_MDET_TX_VALID_MASK) {
5916 wr32(hw, I40E_PF_MDET_TX, 0xFFFF);
5917 dev_info(&pf->pdev->dev,
5918 "MDD TX event is for this function 0x%08x, requesting PF reset.\n",
5919 reg);
5920 pf_mdd_detected = true;
5921 }
5922 reg = rd32(hw, I40E_PF_MDET_RX);
5923 if (reg & I40E_PF_MDET_RX_VALID_MASK) {
5924 wr32(hw, I40E_PF_MDET_RX, 0xFFFF);
5925 dev_info(&pf->pdev->dev,
5926 "MDD RX event is for this function 0x%08x, requesting PF reset.\n",
5927 reg);
5928 pf_mdd_detected = true;
5929 }
5930 /* Queue belongs to the PF, initiate a reset */
5931 if (pf_mdd_detected) {
5932 set_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
5933 i40e_service_event_schedule(pf);
5934 }
5935 }
5936
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005937 /* see if one of the VFs needs its hand slapped */
5938 for (i = 0; i < pf->num_alloc_vfs && mdd_detected; i++) {
5939 vf = &(pf->vf[i]);
5940 reg = rd32(hw, I40E_VP_MDET_TX(i));
5941 if (reg & I40E_VP_MDET_TX_VALID_MASK) {
5942 wr32(hw, I40E_VP_MDET_TX(i), 0xFFFF);
5943 vf->num_mdd_events++;
5944 dev_info(&pf->pdev->dev, "MDD TX event on VF %d\n", i);
5945 }
5946
5947 reg = rd32(hw, I40E_VP_MDET_RX(i));
5948 if (reg & I40E_VP_MDET_RX_VALID_MASK) {
5949 wr32(hw, I40E_VP_MDET_RX(i), 0xFFFF);
5950 vf->num_mdd_events++;
5951 dev_info(&pf->pdev->dev, "MDD RX event on VF %d\n", i);
5952 }
5953
5954 if (vf->num_mdd_events > I40E_DEFAULT_NUM_MDD_EVENTS_ALLOWED) {
5955 dev_info(&pf->pdev->dev,
5956 "Too many MDD events on VF %d, disabled\n", i);
5957 dev_info(&pf->pdev->dev,
5958 "Use PF Control I/F to re-enable the VF\n");
5959 set_bit(I40E_VF_STAT_DISABLED, &vf->vf_states);
5960 }
5961 }
5962
5963 /* re-enable mdd interrupt cause */
5964 clear_bit(__I40E_MDD_EVENT_PENDING, &pf->state);
5965 reg = rd32(hw, I40E_PFINT_ICR0_ENA);
5966 reg |= I40E_PFINT_ICR0_ENA_MAL_DETECT_MASK;
5967 wr32(hw, I40E_PFINT_ICR0_ENA, reg);
5968 i40e_flush(hw);
5969}
5970
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00005971#ifdef CONFIG_I40E_VXLAN
5972/**
5973 * i40e_sync_vxlan_filters_subtask - Sync the VSI filter list with HW
5974 * @pf: board private structure
5975 **/
5976static void i40e_sync_vxlan_filters_subtask(struct i40e_pf *pf)
5977{
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00005978 struct i40e_hw *hw = &pf->hw;
5979 i40e_status ret;
5980 u8 filter_index;
5981 __be16 port;
5982 int i;
5983
5984 if (!(pf->flags & I40E_FLAG_VXLAN_FILTER_SYNC))
5985 return;
5986
5987 pf->flags &= ~I40E_FLAG_VXLAN_FILTER_SYNC;
5988
5989 for (i = 0; i < I40E_MAX_PF_UDP_OFFLOAD_PORTS; i++) {
5990 if (pf->pending_vxlan_bitmap & (1 << i)) {
5991 pf->pending_vxlan_bitmap &= ~(1 << i);
5992 port = pf->vxlan_ports[i];
5993 ret = port ?
5994 i40e_aq_add_udp_tunnel(hw, ntohs(port),
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00005995 I40E_AQC_TUNNEL_TYPE_VXLAN,
5996 &filter_index, NULL)
5997 : i40e_aq_del_udp_tunnel(hw, i, NULL);
5998
5999 if (ret) {
6000 dev_info(&pf->pdev->dev, "Failed to execute AQ command for %s port %d with index %d\n",
6001 port ? "adding" : "deleting",
6002 ntohs(port), port ? i : i);
6003
6004 pf->vxlan_ports[i] = 0;
6005 } else {
6006 dev_info(&pf->pdev->dev, "%s port %d with AQ command with index %d\n",
6007 port ? "Added" : "Deleted",
6008 ntohs(port), port ? i : filter_index);
6009 }
6010 }
6011 }
6012}
6013
6014#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006015/**
6016 * i40e_service_task - Run the driver's async subtasks
6017 * @work: pointer to work_struct containing our data
6018 **/
6019static void i40e_service_task(struct work_struct *work)
6020{
6021 struct i40e_pf *pf = container_of(work,
6022 struct i40e_pf,
6023 service_task);
6024 unsigned long start_time = jiffies;
6025
Shannon Nelsone57a2fe2014-06-03 23:50:19 +00006026 /* don't bother with service tasks if a reset is in progress */
6027 if (test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state)) {
6028 i40e_service_event_complete(pf);
6029 return;
6030 }
6031
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006032 i40e_reset_subtask(pf);
6033 i40e_handle_mdd_event(pf);
6034 i40e_vc_process_vflr_event(pf);
6035 i40e_watchdog_subtask(pf);
6036 i40e_fdir_reinit_subtask(pf);
6037 i40e_check_hang_subtask(pf);
6038 i40e_sync_filters_subtask(pf);
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00006039#ifdef CONFIG_I40E_VXLAN
6040 i40e_sync_vxlan_filters_subtask(pf);
6041#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006042 i40e_clean_adminq_subtask(pf);
6043
6044 i40e_service_event_complete(pf);
6045
6046 /* If the tasks have taken longer than one timer cycle or there
6047 * is more work to be done, reschedule the service task now
6048 * rather than wait for the timer to tick again.
6049 */
6050 if (time_after(jiffies, (start_time + pf->service_timer_period)) ||
6051 test_bit(__I40E_ADMINQ_EVENT_PENDING, &pf->state) ||
6052 test_bit(__I40E_MDD_EVENT_PENDING, &pf->state) ||
6053 test_bit(__I40E_VFLR_EVENT_PENDING, &pf->state))
6054 i40e_service_event_schedule(pf);
6055}
6056
6057/**
6058 * i40e_service_timer - timer callback
6059 * @data: pointer to PF struct
6060 **/
6061static void i40e_service_timer(unsigned long data)
6062{
6063 struct i40e_pf *pf = (struct i40e_pf *)data;
6064
6065 mod_timer(&pf->service_timer,
6066 round_jiffies(jiffies + pf->service_timer_period));
6067 i40e_service_event_schedule(pf);
6068}
6069
6070/**
6071 * i40e_set_num_rings_in_vsi - Determine number of rings in the VSI
6072 * @vsi: the VSI being configured
6073 **/
6074static int i40e_set_num_rings_in_vsi(struct i40e_vsi *vsi)
6075{
6076 struct i40e_pf *pf = vsi->back;
6077
6078 switch (vsi->type) {
6079 case I40E_VSI_MAIN:
6080 vsi->alloc_queue_pairs = pf->num_lan_qps;
6081 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
6082 I40E_REQ_DESCRIPTOR_MULTIPLE);
6083 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
6084 vsi->num_q_vectors = pf->num_lan_msix;
6085 else
6086 vsi->num_q_vectors = 1;
6087
6088 break;
6089
6090 case I40E_VSI_FDIR:
6091 vsi->alloc_queue_pairs = 1;
6092 vsi->num_desc = ALIGN(I40E_FDIR_RING_COUNT,
6093 I40E_REQ_DESCRIPTOR_MULTIPLE);
6094 vsi->num_q_vectors = 1;
6095 break;
6096
6097 case I40E_VSI_VMDQ2:
6098 vsi->alloc_queue_pairs = pf->num_vmdq_qps;
6099 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
6100 I40E_REQ_DESCRIPTOR_MULTIPLE);
6101 vsi->num_q_vectors = pf->num_vmdq_msix;
6102 break;
6103
6104 case I40E_VSI_SRIOV:
6105 vsi->alloc_queue_pairs = pf->num_vf_qps;
6106 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
6107 I40E_REQ_DESCRIPTOR_MULTIPLE);
6108 break;
6109
6110 default:
6111 WARN_ON(1);
6112 return -ENODATA;
6113 }
6114
6115 return 0;
6116}
6117
6118/**
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006119 * i40e_vsi_alloc_arrays - Allocate queue and vector pointer arrays for the vsi
6120 * @type: VSI pointer
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006121 * @alloc_qvectors: a bool to specify if q_vectors need to be allocated.
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006122 *
6123 * On error: returns error code (negative)
6124 * On success: returns 0
6125 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006126static int i40e_vsi_alloc_arrays(struct i40e_vsi *vsi, bool alloc_qvectors)
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006127{
6128 int size;
6129 int ret = 0;
6130
Shannon Nelsonac6c5e32013-11-20 10:02:57 +00006131 /* allocate memory for both Tx and Rx ring pointers */
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006132 size = sizeof(struct i40e_ring *) * vsi->alloc_queue_pairs * 2;
6133 vsi->tx_rings = kzalloc(size, GFP_KERNEL);
6134 if (!vsi->tx_rings)
6135 return -ENOMEM;
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006136 vsi->rx_rings = &vsi->tx_rings[vsi->alloc_queue_pairs];
6137
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006138 if (alloc_qvectors) {
6139 /* allocate memory for q_vector pointers */
6140 size = sizeof(struct i40e_q_vectors *) * vsi->num_q_vectors;
6141 vsi->q_vectors = kzalloc(size, GFP_KERNEL);
6142 if (!vsi->q_vectors) {
6143 ret = -ENOMEM;
6144 goto err_vectors;
6145 }
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006146 }
6147 return ret;
6148
6149err_vectors:
6150 kfree(vsi->tx_rings);
6151 return ret;
6152}
6153
6154/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006155 * i40e_vsi_mem_alloc - Allocates the next available struct vsi in the PF
6156 * @pf: board private structure
6157 * @type: type of VSI
6158 *
6159 * On error: returns error code (negative)
6160 * On success: returns vsi index in PF (positive)
6161 **/
6162static int i40e_vsi_mem_alloc(struct i40e_pf *pf, enum i40e_vsi_type type)
6163{
6164 int ret = -ENODEV;
6165 struct i40e_vsi *vsi;
6166 int vsi_idx;
6167 int i;
6168
6169 /* Need to protect the allocation of the VSIs at the PF level */
6170 mutex_lock(&pf->switch_mutex);
6171
6172 /* VSI list may be fragmented if VSI creation/destruction has
6173 * been happening. We can afford to do a quick scan to look
6174 * for any free VSIs in the list.
6175 *
6176 * find next empty vsi slot, looping back around if necessary
6177 */
6178 i = pf->next_vsi;
Mitch Williams505682c2014-05-20 08:01:37 +00006179 while (i < pf->num_alloc_vsi && pf->vsi[i])
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006180 i++;
Mitch Williams505682c2014-05-20 08:01:37 +00006181 if (i >= pf->num_alloc_vsi) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006182 i = 0;
6183 while (i < pf->next_vsi && pf->vsi[i])
6184 i++;
6185 }
6186
Mitch Williams505682c2014-05-20 08:01:37 +00006187 if (i < pf->num_alloc_vsi && !pf->vsi[i]) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006188 vsi_idx = i; /* Found one! */
6189 } else {
6190 ret = -ENODEV;
Alexander Duyck493fb302013-09-28 07:01:44 +00006191 goto unlock_pf; /* out of VSI slots! */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006192 }
6193 pf->next_vsi = ++i;
6194
6195 vsi = kzalloc(sizeof(*vsi), GFP_KERNEL);
6196 if (!vsi) {
6197 ret = -ENOMEM;
Alexander Duyck493fb302013-09-28 07:01:44 +00006198 goto unlock_pf;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006199 }
6200 vsi->type = type;
6201 vsi->back = pf;
6202 set_bit(__I40E_DOWN, &vsi->state);
6203 vsi->flags = 0;
6204 vsi->idx = vsi_idx;
6205 vsi->rx_itr_setting = pf->rx_itr_default;
6206 vsi->tx_itr_setting = pf->tx_itr_default;
6207 vsi->netdev_registered = false;
6208 vsi->work_limit = I40E_DEFAULT_IRQ_WORK;
6209 INIT_LIST_HEAD(&vsi->mac_filter_list);
Shannon Nelson63741842014-04-23 04:50:16 +00006210 vsi->irqs_ready = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006211
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006212 ret = i40e_set_num_rings_in_vsi(vsi);
6213 if (ret)
6214 goto err_rings;
6215
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006216 ret = i40e_vsi_alloc_arrays(vsi, true);
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006217 if (ret)
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006218 goto err_rings;
Alexander Duyck493fb302013-09-28 07:01:44 +00006219
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006220 /* Setup default MSIX irq handler for VSI */
6221 i40e_vsi_setup_irqhandler(vsi, i40e_msix_clean_rings);
6222
6223 pf->vsi[vsi_idx] = vsi;
6224 ret = vsi_idx;
Alexander Duyck493fb302013-09-28 07:01:44 +00006225 goto unlock_pf;
6226
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006227err_rings:
Alexander Duyck493fb302013-09-28 07:01:44 +00006228 pf->next_vsi = i - 1;
6229 kfree(vsi);
6230unlock_pf:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006231 mutex_unlock(&pf->switch_mutex);
6232 return ret;
6233}
6234
6235/**
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006236 * i40e_vsi_free_arrays - Free queue and vector pointer arrays for the VSI
6237 * @type: VSI pointer
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006238 * @free_qvectors: a bool to specify if q_vectors need to be freed.
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006239 *
6240 * On error: returns error code (negative)
6241 * On success: returns 0
6242 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006243static void i40e_vsi_free_arrays(struct i40e_vsi *vsi, bool free_qvectors)
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006244{
6245 /* free the ring and vector containers */
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006246 if (free_qvectors) {
6247 kfree(vsi->q_vectors);
6248 vsi->q_vectors = NULL;
6249 }
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006250 kfree(vsi->tx_rings);
6251 vsi->tx_rings = NULL;
6252 vsi->rx_rings = NULL;
6253}
6254
6255/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006256 * i40e_vsi_clear - Deallocate the VSI provided
6257 * @vsi: the VSI being un-configured
6258 **/
6259static int i40e_vsi_clear(struct i40e_vsi *vsi)
6260{
6261 struct i40e_pf *pf;
6262
6263 if (!vsi)
6264 return 0;
6265
6266 if (!vsi->back)
6267 goto free_vsi;
6268 pf = vsi->back;
6269
6270 mutex_lock(&pf->switch_mutex);
6271 if (!pf->vsi[vsi->idx]) {
6272 dev_err(&pf->pdev->dev, "pf->vsi[%d] is NULL, just free vsi[%d](%p,type %d)\n",
6273 vsi->idx, vsi->idx, vsi, vsi->type);
6274 goto unlock_vsi;
6275 }
6276
6277 if (pf->vsi[vsi->idx] != vsi) {
6278 dev_err(&pf->pdev->dev,
6279 "pf->vsi[%d](%p, type %d) != vsi[%d](%p,type %d): no free!\n",
6280 pf->vsi[vsi->idx]->idx,
6281 pf->vsi[vsi->idx],
6282 pf->vsi[vsi->idx]->type,
6283 vsi->idx, vsi, vsi->type);
6284 goto unlock_vsi;
6285 }
6286
6287 /* updates the pf for this cleared vsi */
6288 i40e_put_lump(pf->qp_pile, vsi->base_queue, vsi->idx);
6289 i40e_put_lump(pf->irq_pile, vsi->base_vector, vsi->idx);
6290
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006291 i40e_vsi_free_arrays(vsi, true);
Alexander Duyck493fb302013-09-28 07:01:44 +00006292
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006293 pf->vsi[vsi->idx] = NULL;
6294 if (vsi->idx < pf->next_vsi)
6295 pf->next_vsi = vsi->idx;
6296
6297unlock_vsi:
6298 mutex_unlock(&pf->switch_mutex);
6299free_vsi:
6300 kfree(vsi);
6301
6302 return 0;
6303}
6304
6305/**
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006306 * i40e_vsi_clear_rings - Deallocates the Rx and Tx rings for the provided VSI
6307 * @vsi: the VSI being cleaned
6308 **/
Shannon Nelsonbe1d5ee2013-11-28 06:39:23 +00006309static void i40e_vsi_clear_rings(struct i40e_vsi *vsi)
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006310{
6311 int i;
6312
Greg Rose8e9dca52013-12-18 13:45:53 +00006313 if (vsi->tx_rings && vsi->tx_rings[0]) {
Neerav Parikhd7397642013-11-28 06:39:37 +00006314 for (i = 0; i < vsi->alloc_queue_pairs; i++) {
Mitch Williams00403f02013-09-28 07:13:13 +00006315 kfree_rcu(vsi->tx_rings[i], rcu);
6316 vsi->tx_rings[i] = NULL;
6317 vsi->rx_rings[i] = NULL;
6318 }
Shannon Nelsonbe1d5ee2013-11-28 06:39:23 +00006319 }
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006320}
6321
6322/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006323 * i40e_alloc_rings - Allocates the Rx and Tx rings for the provided VSI
6324 * @vsi: the VSI being configured
6325 **/
6326static int i40e_alloc_rings(struct i40e_vsi *vsi)
6327{
Akeem G Abodunrine7046ee2014-04-09 05:58:58 +00006328 struct i40e_ring *tx_ring, *rx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006329 struct i40e_pf *pf = vsi->back;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006330 int i;
6331
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006332 /* Set basic values in the rings to be used later during open() */
Neerav Parikhd7397642013-11-28 06:39:37 +00006333 for (i = 0; i < vsi->alloc_queue_pairs; i++) {
Shannon Nelsonac6c5e32013-11-20 10:02:57 +00006334 /* allocate space for both Tx and Rx in one shot */
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006335 tx_ring = kzalloc(sizeof(struct i40e_ring) * 2, GFP_KERNEL);
6336 if (!tx_ring)
6337 goto err_out;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006338
6339 tx_ring->queue_index = i;
6340 tx_ring->reg_idx = vsi->base_queue + i;
6341 tx_ring->ring_active = false;
6342 tx_ring->vsi = vsi;
6343 tx_ring->netdev = vsi->netdev;
6344 tx_ring->dev = &pf->pdev->dev;
6345 tx_ring->count = vsi->num_desc;
6346 tx_ring->size = 0;
6347 tx_ring->dcb_tc = 0;
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006348 vsi->tx_rings[i] = tx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006349
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006350 rx_ring = &tx_ring[1];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006351 rx_ring->queue_index = i;
6352 rx_ring->reg_idx = vsi->base_queue + i;
6353 rx_ring->ring_active = false;
6354 rx_ring->vsi = vsi;
6355 rx_ring->netdev = vsi->netdev;
6356 rx_ring->dev = &pf->pdev->dev;
6357 rx_ring->count = vsi->num_desc;
6358 rx_ring->size = 0;
6359 rx_ring->dcb_tc = 0;
6360 if (pf->flags & I40E_FLAG_16BYTE_RX_DESC_ENABLED)
6361 set_ring_16byte_desc_enabled(rx_ring);
6362 else
6363 clear_ring_16byte_desc_enabled(rx_ring);
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006364 vsi->rx_rings[i] = rx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006365 }
6366
6367 return 0;
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006368
6369err_out:
6370 i40e_vsi_clear_rings(vsi);
6371 return -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006372}
6373
6374/**
6375 * i40e_reserve_msix_vectors - Reserve MSI-X vectors in the kernel
6376 * @pf: board private structure
6377 * @vectors: the number of MSI-X vectors to request
6378 *
6379 * Returns the number of vectors reserved, or error
6380 **/
6381static int i40e_reserve_msix_vectors(struct i40e_pf *pf, int vectors)
6382{
Alexander Gordeev7b37f372014-02-18 11:11:42 +01006383 vectors = pci_enable_msix_range(pf->pdev, pf->msix_entries,
6384 I40E_MIN_MSIX, vectors);
6385 if (vectors < 0) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006386 dev_info(&pf->pdev->dev,
Alexander Gordeev7b37f372014-02-18 11:11:42 +01006387 "MSI-X vector reservation failed: %d\n", vectors);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006388 vectors = 0;
6389 }
6390
6391 return vectors;
6392}
6393
6394/**
6395 * i40e_init_msix - Setup the MSIX capability
6396 * @pf: board private structure
6397 *
6398 * Work with the OS to set up the MSIX vectors needed.
6399 *
6400 * Returns 0 on success, negative on failure
6401 **/
6402static int i40e_init_msix(struct i40e_pf *pf)
6403{
6404 i40e_status err = 0;
6405 struct i40e_hw *hw = &pf->hw;
6406 int v_budget, i;
6407 int vec;
6408
6409 if (!(pf->flags & I40E_FLAG_MSIX_ENABLED))
6410 return -ENODEV;
6411
6412 /* The number of vectors we'll request will be comprised of:
6413 * - Add 1 for "other" cause for Admin Queue events, etc.
6414 * - The number of LAN queue pairs
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00006415 * - Queues being used for RSS.
6416 * We don't need as many as max_rss_size vectors.
6417 * use rss_size instead in the calculation since that
6418 * is governed by number of cpus in the system.
6419 * - assumes symmetric Tx/Rx pairing
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006420 * - The number of VMDq pairs
6421 * Once we count this up, try the request.
6422 *
6423 * If we can't get what we want, we'll simplify to nearly nothing
6424 * and try again. If that still fails, we punt.
6425 */
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00006426 pf->num_lan_msix = pf->num_lan_qps - (pf->rss_size_max - pf->rss_size);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006427 pf->num_vmdq_msix = pf->num_vmdq_qps;
6428 v_budget = 1 + pf->num_lan_msix;
6429 v_budget += (pf->num_vmdq_vsis * pf->num_vmdq_msix);
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08006430 if (pf->flags & I40E_FLAG_FD_SB_ENABLED)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006431 v_budget++;
6432
6433 /* Scale down if necessary, and the rings will share vectors */
6434 v_budget = min_t(int, v_budget, hw->func_caps.num_msix_vectors);
6435
6436 pf->msix_entries = kcalloc(v_budget, sizeof(struct msix_entry),
6437 GFP_KERNEL);
6438 if (!pf->msix_entries)
6439 return -ENOMEM;
6440
6441 for (i = 0; i < v_budget; i++)
6442 pf->msix_entries[i].entry = i;
6443 vec = i40e_reserve_msix_vectors(pf, v_budget);
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00006444
6445 if (vec != v_budget) {
6446 /* If we have limited resources, we will start with no vectors
6447 * for the special features and then allocate vectors to some
6448 * of these features based on the policy and at the end disable
6449 * the features that did not get any vectors.
6450 */
6451 pf->num_vmdq_msix = 0;
6452 }
6453
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006454 if (vec < I40E_MIN_MSIX) {
6455 pf->flags &= ~I40E_FLAG_MSIX_ENABLED;
6456 kfree(pf->msix_entries);
6457 pf->msix_entries = NULL;
6458 return -ENODEV;
6459
6460 } else if (vec == I40E_MIN_MSIX) {
6461 /* Adjust for minimal MSIX use */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006462 pf->num_vmdq_vsis = 0;
6463 pf->num_vmdq_qps = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006464 pf->num_lan_qps = 1;
6465 pf->num_lan_msix = 1;
6466
6467 } else if (vec != v_budget) {
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00006468 /* reserve the misc vector */
6469 vec--;
6470
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006471 /* Scale vector usage down */
6472 pf->num_vmdq_msix = 1; /* force VMDqs to only one vector */
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00006473 pf->num_vmdq_vsis = 1;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006474
6475 /* partition out the remaining vectors */
6476 switch (vec) {
6477 case 2:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006478 pf->num_lan_msix = 1;
6479 break;
6480 case 3:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006481 pf->num_lan_msix = 2;
6482 break;
6483 default:
6484 pf->num_lan_msix = min_t(int, (vec / 2),
6485 pf->num_lan_qps);
6486 pf->num_vmdq_vsis = min_t(int, (vec - pf->num_lan_msix),
6487 I40E_DEFAULT_NUM_VMDQ_VSI);
6488 break;
6489 }
6490 }
6491
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00006492 if ((pf->flags & I40E_FLAG_VMDQ_ENABLED) &&
6493 (pf->num_vmdq_msix == 0)) {
6494 dev_info(&pf->pdev->dev, "VMDq disabled, not enough MSI-X vectors\n");
6495 pf->flags &= ~I40E_FLAG_VMDQ_ENABLED;
6496 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006497 return err;
6498}
6499
6500/**
Greg Rose90e04072014-03-06 08:59:57 +00006501 * i40e_vsi_alloc_q_vector - Allocate memory for a single interrupt vector
Alexander Duyck493fb302013-09-28 07:01:44 +00006502 * @vsi: the VSI being configured
6503 * @v_idx: index of the vector in the vsi struct
6504 *
6505 * We allocate one q_vector. If allocation fails we return -ENOMEM.
6506 **/
Greg Rose90e04072014-03-06 08:59:57 +00006507static int i40e_vsi_alloc_q_vector(struct i40e_vsi *vsi, int v_idx)
Alexander Duyck493fb302013-09-28 07:01:44 +00006508{
6509 struct i40e_q_vector *q_vector;
6510
6511 /* allocate q_vector */
6512 q_vector = kzalloc(sizeof(struct i40e_q_vector), GFP_KERNEL);
6513 if (!q_vector)
6514 return -ENOMEM;
6515
6516 q_vector->vsi = vsi;
6517 q_vector->v_idx = v_idx;
6518 cpumask_set_cpu(v_idx, &q_vector->affinity_mask);
6519 if (vsi->netdev)
6520 netif_napi_add(vsi->netdev, &q_vector->napi,
Jesse Brandeburgeefeace2014-05-10 04:49:13 +00006521 i40e_napi_poll, NAPI_POLL_WEIGHT);
Alexander Duyck493fb302013-09-28 07:01:44 +00006522
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00006523 q_vector->rx.latency_range = I40E_LOW_LATENCY;
6524 q_vector->tx.latency_range = I40E_LOW_LATENCY;
6525
Alexander Duyck493fb302013-09-28 07:01:44 +00006526 /* tie q_vector and vsi together */
6527 vsi->q_vectors[v_idx] = q_vector;
6528
6529 return 0;
6530}
6531
6532/**
Greg Rose90e04072014-03-06 08:59:57 +00006533 * i40e_vsi_alloc_q_vectors - Allocate memory for interrupt vectors
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006534 * @vsi: the VSI being configured
6535 *
6536 * We allocate one q_vector per queue interrupt. If allocation fails we
6537 * return -ENOMEM.
6538 **/
Greg Rose90e04072014-03-06 08:59:57 +00006539static int i40e_vsi_alloc_q_vectors(struct i40e_vsi *vsi)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006540{
6541 struct i40e_pf *pf = vsi->back;
6542 int v_idx, num_q_vectors;
Alexander Duyck493fb302013-09-28 07:01:44 +00006543 int err;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006544
6545 /* if not MSIX, give the one vector only to the LAN VSI */
6546 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
6547 num_q_vectors = vsi->num_q_vectors;
6548 else if (vsi == pf->vsi[pf->lan_vsi])
6549 num_q_vectors = 1;
6550 else
6551 return -EINVAL;
6552
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006553 for (v_idx = 0; v_idx < num_q_vectors; v_idx++) {
Greg Rose90e04072014-03-06 08:59:57 +00006554 err = i40e_vsi_alloc_q_vector(vsi, v_idx);
Alexander Duyck493fb302013-09-28 07:01:44 +00006555 if (err)
6556 goto err_out;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006557 }
6558
6559 return 0;
Alexander Duyck493fb302013-09-28 07:01:44 +00006560
6561err_out:
6562 while (v_idx--)
6563 i40e_free_q_vector(vsi, v_idx);
6564
6565 return err;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006566}
6567
6568/**
6569 * i40e_init_interrupt_scheme - Determine proper interrupt scheme
6570 * @pf: board private structure to initialize
6571 **/
6572static void i40e_init_interrupt_scheme(struct i40e_pf *pf)
6573{
6574 int err = 0;
6575
6576 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
6577 err = i40e_init_msix(pf);
6578 if (err) {
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08006579 pf->flags &= ~(I40E_FLAG_MSIX_ENABLED |
6580 I40E_FLAG_RSS_ENABLED |
Neerav Parikh4d9b6042014-05-22 06:31:51 +00006581 I40E_FLAG_DCB_CAPABLE |
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08006582 I40E_FLAG_SRIOV_ENABLED |
6583 I40E_FLAG_FD_SB_ENABLED |
6584 I40E_FLAG_FD_ATR_ENABLED |
6585 I40E_FLAG_VMDQ_ENABLED);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006586
6587 /* rework the queue expectations without MSIX */
6588 i40e_determine_queue_usage(pf);
6589 }
6590 }
6591
6592 if (!(pf->flags & I40E_FLAG_MSIX_ENABLED) &&
6593 (pf->flags & I40E_FLAG_MSI_ENABLED)) {
Catherine Sullivan77fa28b2014-02-20 19:29:17 -08006594 dev_info(&pf->pdev->dev, "MSI-X not available, trying MSI\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006595 err = pci_enable_msi(pf->pdev);
6596 if (err) {
Shannon Nelson958a3e32013-09-28 07:13:28 +00006597 dev_info(&pf->pdev->dev, "MSI init failed - %d\n", err);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006598 pf->flags &= ~I40E_FLAG_MSI_ENABLED;
6599 }
6600 }
6601
Shannon Nelson958a3e32013-09-28 07:13:28 +00006602 if (!(pf->flags & (I40E_FLAG_MSIX_ENABLED | I40E_FLAG_MSI_ENABLED)))
Catherine Sullivan77fa28b2014-02-20 19:29:17 -08006603 dev_info(&pf->pdev->dev, "MSI-X and MSI not available, falling back to Legacy IRQ\n");
Shannon Nelson958a3e32013-09-28 07:13:28 +00006604
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006605 /* track first vector for misc interrupts */
6606 err = i40e_get_lump(pf, pf->irq_pile, 1, I40E_PILE_VALID_BIT-1);
6607}
6608
6609/**
6610 * i40e_setup_misc_vector - Setup the misc vector to handle non queue events
6611 * @pf: board private structure
6612 *
6613 * This sets up the handler for MSIX 0, which is used to manage the
6614 * non-queue interrupts, e.g. AdminQ and errors. This is not used
6615 * when in MSI or Legacy interrupt mode.
6616 **/
6617static int i40e_setup_misc_vector(struct i40e_pf *pf)
6618{
6619 struct i40e_hw *hw = &pf->hw;
6620 int err = 0;
6621
6622 /* Only request the irq if this is the first time through, and
6623 * not when we're rebuilding after a Reset
6624 */
6625 if (!test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state)) {
6626 err = request_irq(pf->msix_entries[0].vector,
6627 i40e_intr, 0, pf->misc_int_name, pf);
6628 if (err) {
6629 dev_info(&pf->pdev->dev,
Catherine Sullivan77fa28b2014-02-20 19:29:17 -08006630 "request_irq for %s failed: %d\n",
6631 pf->misc_int_name, err);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006632 return -EFAULT;
6633 }
6634 }
6635
6636 i40e_enable_misc_int_causes(hw);
6637
6638 /* associate no queues to the misc vector */
6639 wr32(hw, I40E_PFINT_LNKLST0, I40E_QUEUE_END_OF_LIST);
6640 wr32(hw, I40E_PFINT_ITR0(I40E_RX_ITR), I40E_ITR_8K);
6641
6642 i40e_flush(hw);
6643
6644 i40e_irq_dynamic_enable_icr0(pf);
6645
6646 return err;
6647}
6648
6649/**
6650 * i40e_config_rss - Prepare for RSS if used
6651 * @pf: board private structure
6652 **/
6653static int i40e_config_rss(struct i40e_pf *pf)
6654{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006655 /* Set of random keys generated using kernel random number generator */
6656 static const u32 seed[I40E_PFQF_HKEY_MAX_INDEX + 1] = {0x41b01687,
6657 0x183cfd8c, 0xce880440, 0x580cbc3c, 0x35897377,
6658 0x328b25e1, 0x4fa98922, 0xb7d90c14, 0xd5bad70d,
6659 0xcd15a2c1, 0xe8580225, 0x4a1e9d11, 0xfe5731be};
Anjali Singhai Jain4617e8c2013-11-20 10:02:56 +00006660 struct i40e_hw *hw = &pf->hw;
6661 u32 lut = 0;
6662 int i, j;
6663 u64 hena;
Carolyn Wybornye157ea32014-06-03 23:50:22 +00006664 u32 reg_val;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006665
6666 /* Fill out hash function seed */
6667 for (i = 0; i <= I40E_PFQF_HKEY_MAX_INDEX; i++)
6668 wr32(hw, I40E_PFQF_HKEY(i), seed[i]);
6669
6670 /* By default we enable TCP/UDP with IPv4/IPv6 ptypes */
6671 hena = (u64)rd32(hw, I40E_PFQF_HENA(0)) |
6672 ((u64)rd32(hw, I40E_PFQF_HENA(1)) << 32);
Mitch Williams12dc4fe2013-11-28 06:39:32 +00006673 hena |= I40E_DEFAULT_RSS_HENA;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006674 wr32(hw, I40E_PFQF_HENA(0), (u32)hena);
6675 wr32(hw, I40E_PFQF_HENA(1), (u32)(hena >> 32));
6676
Carolyn Wybornye157ea32014-06-03 23:50:22 +00006677 /* Check capability and Set table size and register per hw expectation*/
6678 reg_val = rd32(hw, I40E_PFQF_CTL_0);
6679 if (hw->func_caps.rss_table_size == 512) {
6680 reg_val |= I40E_PFQF_CTL_0_HASHLUTSIZE_512;
6681 pf->rss_table_size = 512;
6682 } else {
6683 pf->rss_table_size = 128;
6684 reg_val &= ~I40E_PFQF_CTL_0_HASHLUTSIZE_512;
6685 }
6686 wr32(hw, I40E_PFQF_CTL_0, reg_val);
6687
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006688 /* Populate the LUT with max no. of queues in round robin fashion */
Carolyn Wybornye157ea32014-06-03 23:50:22 +00006689 for (i = 0, j = 0; i < pf->rss_table_size; i++, j++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006690
6691 /* The assumption is that lan qp count will be the highest
6692 * qp count for any PF VSI that needs RSS.
6693 * If multiple VSIs need RSS support, all the qp counts
6694 * for those VSIs should be a power of 2 for RSS to work.
6695 * If LAN VSI is the only consumer for RSS then this requirement
6696 * is not necessary.
6697 */
6698 if (j == pf->rss_size)
6699 j = 0;
6700 /* lut = 4-byte sliding window of 4 lut entries */
6701 lut = (lut << 8) | (j &
6702 ((0x1 << pf->hw.func_caps.rss_table_entry_width) - 1));
6703 /* On i = 3, we have 4 entries in lut; write to the register */
6704 if ((i & 3) == 3)
6705 wr32(hw, I40E_PFQF_HLUT(i >> 2), lut);
6706 }
6707 i40e_flush(hw);
6708
6709 return 0;
6710}
6711
6712/**
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00006713 * i40e_reconfig_rss_queues - change number of queues for rss and rebuild
6714 * @pf: board private structure
6715 * @queue_count: the requested queue count for rss.
6716 *
6717 * returns 0 if rss is not enabled, if enabled returns the final rss queue
6718 * count which may be different from the requested queue count.
6719 **/
6720int i40e_reconfig_rss_queues(struct i40e_pf *pf, int queue_count)
6721{
6722 if (!(pf->flags & I40E_FLAG_RSS_ENABLED))
6723 return 0;
6724
6725 queue_count = min_t(int, queue_count, pf->rss_size_max);
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00006726
6727 if (queue_count != pf->rss_size) {
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00006728 i40e_prep_for_reset(pf);
6729
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00006730 pf->rss_size = queue_count;
6731
6732 i40e_reset_and_rebuild(pf, true);
6733 i40e_config_rss(pf);
6734 }
6735 dev_info(&pf->pdev->dev, "RSS count: %d\n", pf->rss_size);
6736 return pf->rss_size;
6737}
6738
6739/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006740 * i40e_sw_init - Initialize general software structures (struct i40e_pf)
6741 * @pf: board private structure to initialize
6742 *
6743 * i40e_sw_init initializes the Adapter private data structure.
6744 * Fields are initialized based on PCI device information and
6745 * OS network device settings (MTU size).
6746 **/
6747static int i40e_sw_init(struct i40e_pf *pf)
6748{
6749 int err = 0;
6750 int size;
6751
6752 pf->msg_enable = netif_msg_init(I40E_DEFAULT_MSG_ENABLE,
6753 (NETIF_MSG_DRV|NETIF_MSG_PROBE|NETIF_MSG_LINK));
Shannon Nelson27599972013-11-16 10:00:43 +00006754 pf->hw.debug_mask = pf->msg_enable | I40E_DEBUG_DIAG;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006755 if (debug != -1 && debug != I40E_DEFAULT_MSG_ENABLE) {
6756 if (I40E_DEBUG_USER & debug)
6757 pf->hw.debug_mask = debug;
6758 pf->msg_enable = netif_msg_init((debug & ~I40E_DEBUG_USER),
6759 I40E_DEFAULT_MSG_ENABLE);
6760 }
6761
6762 /* Set default capability flags */
6763 pf->flags = I40E_FLAG_RX_CSUM_ENABLED |
6764 I40E_FLAG_MSI_ENABLED |
6765 I40E_FLAG_MSIX_ENABLED |
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006766 I40E_FLAG_RX_1BUF_ENABLED;
6767
Mitch Williamsca99eb92014-04-04 04:43:07 +00006768 /* Set default ITR */
6769 pf->rx_itr_default = I40E_ITR_DYNAMIC | I40E_ITR_RX_DEF;
6770 pf->tx_itr_default = I40E_ITR_DYNAMIC | I40E_ITR_TX_DEF;
6771
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00006772 /* Depending on PF configurations, it is possible that the RSS
6773 * maximum might end up larger than the available queues
6774 */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006775 pf->rss_size_max = 0x1 << pf->hw.func_caps.rss_table_entry_width;
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00006776 pf->rss_size_max = min_t(int, pf->rss_size_max,
6777 pf->hw.func_caps.num_tx_qp);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006778 if (pf->hw.func_caps.rss) {
6779 pf->flags |= I40E_FLAG_RSS_ENABLED;
Jesse Brandeburgbf051a32013-11-26 10:49:17 +00006780 pf->rss_size = min_t(int, pf->rss_size_max, num_online_cpus());
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006781 } else {
6782 pf->rss_size = 1;
6783 }
6784
Catherine Sullivan2050bc62013-12-18 13:46:03 +00006785 /* MFP mode enabled */
6786 if (pf->hw.func_caps.npar_enable || pf->hw.func_caps.mfp_mode_1) {
6787 pf->flags |= I40E_FLAG_MFP_ENABLED;
6788 dev_info(&pf->pdev->dev, "MFP mode Enabled\n");
6789 }
6790
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006791 /* FW/NVM is not yet fixed in this regard */
6792 if ((pf->hw.func_caps.fd_filters_guaranteed > 0) ||
6793 (pf->hw.func_caps.fd_filters_best_effort > 0)) {
6794 pf->flags |= I40E_FLAG_FD_ATR_ENABLED;
6795 pf->atr_sample_rate = I40E_DEFAULT_ATR_SAMPLE_RATE;
Anjali Singhai Jain433c47d2014-05-22 06:32:17 +00006796 /* Setup a counter for fd_atr per pf */
6797 pf->fd_atr_cnt_idx = I40E_FD_ATR_STAT_IDX(pf->hw.pf_id);
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006798 if (!(pf->flags & I40E_FLAG_MFP_ENABLED)) {
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08006799 pf->flags |= I40E_FLAG_FD_SB_ENABLED;
Anjali Singhai Jain433c47d2014-05-22 06:32:17 +00006800 /* Setup a counter for fd_sb per pf */
6801 pf->fd_sb_cnt_idx = I40E_FD_SB_STAT_IDX(pf->hw.pf_id);
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006802 } else {
6803 dev_info(&pf->pdev->dev,
Anjali Singhai Jain0b675842014-03-06 08:59:51 +00006804 "Flow Director Sideband mode Disabled in MFP mode\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006805 }
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006806 pf->fdir_pf_filter_count =
6807 pf->hw.func_caps.fd_filters_guaranteed;
6808 pf->hw.fdir_shared_filter_count =
6809 pf->hw.func_caps.fd_filters_best_effort;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006810 }
6811
6812 if (pf->hw.func_caps.vmdq) {
6813 pf->flags |= I40E_FLAG_VMDQ_ENABLED;
6814 pf->num_vmdq_vsis = I40E_DEFAULT_NUM_VMDQ_VSI;
6815 pf->num_vmdq_qps = I40E_DEFAULT_QUEUES_PER_VMDQ;
6816 }
6817
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006818#ifdef CONFIG_PCI_IOV
6819 if (pf->hw.func_caps.num_vfs) {
6820 pf->num_vf_qps = I40E_DEFAULT_QUEUES_PER_VF;
6821 pf->flags |= I40E_FLAG_SRIOV_ENABLED;
6822 pf->num_req_vfs = min_t(int,
6823 pf->hw.func_caps.num_vfs,
6824 I40E_MAX_VF_COUNT);
6825 }
6826#endif /* CONFIG_PCI_IOV */
6827 pf->eeprom_version = 0xDEAD;
6828 pf->lan_veb = I40E_NO_VEB;
6829 pf->lan_vsi = I40E_NO_VSI;
6830
6831 /* set up queue assignment tracking */
6832 size = sizeof(struct i40e_lump_tracking)
6833 + (sizeof(u16) * pf->hw.func_caps.num_tx_qp);
6834 pf->qp_pile = kzalloc(size, GFP_KERNEL);
6835 if (!pf->qp_pile) {
6836 err = -ENOMEM;
6837 goto sw_init_done;
6838 }
6839 pf->qp_pile->num_entries = pf->hw.func_caps.num_tx_qp;
6840 pf->qp_pile->search_hint = 0;
6841
6842 /* set up vector assignment tracking */
6843 size = sizeof(struct i40e_lump_tracking)
6844 + (sizeof(u16) * pf->hw.func_caps.num_msix_vectors);
6845 pf->irq_pile = kzalloc(size, GFP_KERNEL);
6846 if (!pf->irq_pile) {
6847 kfree(pf->qp_pile);
6848 err = -ENOMEM;
6849 goto sw_init_done;
6850 }
6851 pf->irq_pile->num_entries = pf->hw.func_caps.num_msix_vectors;
6852 pf->irq_pile->search_hint = 0;
6853
Anjali Singhai Jain327fe042014-06-04 01:23:26 +00006854 pf->tx_timeout_recovery_level = 1;
6855
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006856 mutex_init(&pf->switch_mutex);
6857
6858sw_init_done:
6859 return err;
6860}
6861
6862/**
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00006863 * i40e_set_ntuple - set the ntuple feature flag and take action
6864 * @pf: board private structure to initialize
6865 * @features: the feature set that the stack is suggesting
6866 *
6867 * returns a bool to indicate if reset needs to happen
6868 **/
6869bool i40e_set_ntuple(struct i40e_pf *pf, netdev_features_t features)
6870{
6871 bool need_reset = false;
6872
6873 /* Check if Flow Director n-tuple support was enabled or disabled. If
6874 * the state changed, we need to reset.
6875 */
6876 if (features & NETIF_F_NTUPLE) {
6877 /* Enable filters and mark for reset */
6878 if (!(pf->flags & I40E_FLAG_FD_SB_ENABLED))
6879 need_reset = true;
6880 pf->flags |= I40E_FLAG_FD_SB_ENABLED;
6881 } else {
6882 /* turn off filters, mark for reset and clear SW filter list */
6883 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
6884 need_reset = true;
6885 i40e_fdir_filter_exit(pf);
6886 }
6887 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
Anjali Singhai Jain8a4f34f2014-06-04 08:45:20 +00006888 pf->auto_disable_flags &= ~I40E_FLAG_FD_SB_ENABLED;
6889 /* if ATR was auto disabled it can be re-enabled. */
6890 if ((pf->flags & I40E_FLAG_FD_ATR_ENABLED) &&
6891 (pf->auto_disable_flags & I40E_FLAG_FD_ATR_ENABLED))
6892 pf->auto_disable_flags &= ~I40E_FLAG_FD_ATR_ENABLED;
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00006893 }
6894 return need_reset;
6895}
6896
6897/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006898 * i40e_set_features - set the netdev feature flags
6899 * @netdev: ptr to the netdev being adjusted
6900 * @features: the feature set that the stack is suggesting
6901 **/
6902static int i40e_set_features(struct net_device *netdev,
6903 netdev_features_t features)
6904{
6905 struct i40e_netdev_priv *np = netdev_priv(netdev);
6906 struct i40e_vsi *vsi = np->vsi;
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00006907 struct i40e_pf *pf = vsi->back;
6908 bool need_reset;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006909
6910 if (features & NETIF_F_HW_VLAN_CTAG_RX)
6911 i40e_vlan_stripping_enable(vsi);
6912 else
6913 i40e_vlan_stripping_disable(vsi);
6914
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00006915 need_reset = i40e_set_ntuple(pf, features);
6916
6917 if (need_reset)
6918 i40e_do_reset(pf, (1 << __I40E_PF_RESET_REQUESTED));
6919
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006920 return 0;
6921}
6922
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00006923#ifdef CONFIG_I40E_VXLAN
6924/**
6925 * i40e_get_vxlan_port_idx - Lookup a possibly offloaded for Rx UDP port
6926 * @pf: board private structure
6927 * @port: The UDP port to look up
6928 *
6929 * Returns the index number or I40E_MAX_PF_UDP_OFFLOAD_PORTS if port not found
6930 **/
6931static u8 i40e_get_vxlan_port_idx(struct i40e_pf *pf, __be16 port)
6932{
6933 u8 i;
6934
6935 for (i = 0; i < I40E_MAX_PF_UDP_OFFLOAD_PORTS; i++) {
6936 if (pf->vxlan_ports[i] == port)
6937 return i;
6938 }
6939
6940 return i;
6941}
6942
6943/**
6944 * i40e_add_vxlan_port - Get notifications about VXLAN ports that come up
6945 * @netdev: This physical port's netdev
6946 * @sa_family: Socket Family that VXLAN is notifying us about
6947 * @port: New UDP port number that VXLAN started listening to
6948 **/
6949static void i40e_add_vxlan_port(struct net_device *netdev,
6950 sa_family_t sa_family, __be16 port)
6951{
6952 struct i40e_netdev_priv *np = netdev_priv(netdev);
6953 struct i40e_vsi *vsi = np->vsi;
6954 struct i40e_pf *pf = vsi->back;
6955 u8 next_idx;
6956 u8 idx;
6957
6958 if (sa_family == AF_INET6)
6959 return;
6960
6961 idx = i40e_get_vxlan_port_idx(pf, port);
6962
6963 /* Check if port already exists */
6964 if (idx < I40E_MAX_PF_UDP_OFFLOAD_PORTS) {
6965 netdev_info(netdev, "Port %d already offloaded\n", ntohs(port));
6966 return;
6967 }
6968
6969 /* Now check if there is space to add the new port */
6970 next_idx = i40e_get_vxlan_port_idx(pf, 0);
6971
6972 if (next_idx == I40E_MAX_PF_UDP_OFFLOAD_PORTS) {
6973 netdev_info(netdev, "Maximum number of UDP ports reached, not adding port %d\n",
6974 ntohs(port));
6975 return;
6976 }
6977
6978 /* New port: add it and mark its index in the bitmap */
6979 pf->vxlan_ports[next_idx] = port;
6980 pf->pending_vxlan_bitmap |= (1 << next_idx);
6981
6982 pf->flags |= I40E_FLAG_VXLAN_FILTER_SYNC;
6983}
6984
6985/**
6986 * i40e_del_vxlan_port - Get notifications about VXLAN ports that go away
6987 * @netdev: This physical port's netdev
6988 * @sa_family: Socket Family that VXLAN is notifying us about
6989 * @port: UDP port number that VXLAN stopped listening to
6990 **/
6991static void i40e_del_vxlan_port(struct net_device *netdev,
6992 sa_family_t sa_family, __be16 port)
6993{
6994 struct i40e_netdev_priv *np = netdev_priv(netdev);
6995 struct i40e_vsi *vsi = np->vsi;
6996 struct i40e_pf *pf = vsi->back;
6997 u8 idx;
6998
6999 if (sa_family == AF_INET6)
7000 return;
7001
7002 idx = i40e_get_vxlan_port_idx(pf, port);
7003
7004 /* Check if port already exists */
7005 if (idx < I40E_MAX_PF_UDP_OFFLOAD_PORTS) {
7006 /* if port exists, set it to 0 (mark for deletion)
7007 * and make it pending
7008 */
7009 pf->vxlan_ports[idx] = 0;
7010
7011 pf->pending_vxlan_bitmap |= (1 << idx);
7012
7013 pf->flags |= I40E_FLAG_VXLAN_FILTER_SYNC;
7014 } else {
7015 netdev_warn(netdev, "Port %d was not found, not deleting\n",
7016 ntohs(port));
7017 }
7018}
7019
7020#endif
Greg Rose4ba0dea2014-03-06 08:59:55 +00007021#ifdef HAVE_FDB_OPS
7022#ifdef USE_CONST_DEV_UC_CHAR
7023static int i40e_ndo_fdb_add(struct ndmsg *ndm, struct nlattr *tb[],
7024 struct net_device *dev,
7025 const unsigned char *addr,
7026 u16 flags)
7027#else
7028static int i40e_ndo_fdb_add(struct ndmsg *ndm,
7029 struct net_device *dev,
7030 unsigned char *addr,
7031 u16 flags)
7032#endif
7033{
7034 struct i40e_netdev_priv *np = netdev_priv(dev);
7035 struct i40e_pf *pf = np->vsi->back;
7036 int err = 0;
7037
7038 if (!(pf->flags & I40E_FLAG_SRIOV_ENABLED))
7039 return -EOPNOTSUPP;
7040
7041 /* Hardware does not support aging addresses so if a
7042 * ndm_state is given only allow permanent addresses
7043 */
7044 if (ndm->ndm_state && !(ndm->ndm_state & NUD_PERMANENT)) {
7045 netdev_info(dev, "FDB only supports static addresses\n");
7046 return -EINVAL;
7047 }
7048
7049 if (is_unicast_ether_addr(addr) || is_link_local_ether_addr(addr))
7050 err = dev_uc_add_excl(dev, addr);
7051 else if (is_multicast_ether_addr(addr))
7052 err = dev_mc_add_excl(dev, addr);
7053 else
7054 err = -EINVAL;
7055
7056 /* Only return duplicate errors if NLM_F_EXCL is set */
7057 if (err == -EEXIST && !(flags & NLM_F_EXCL))
7058 err = 0;
7059
7060 return err;
7061}
7062
7063#ifndef USE_DEFAULT_FDB_DEL_DUMP
7064#ifdef USE_CONST_DEV_UC_CHAR
7065static int i40e_ndo_fdb_del(struct ndmsg *ndm,
7066 struct net_device *dev,
7067 const unsigned char *addr)
7068#else
7069static int i40e_ndo_fdb_del(struct ndmsg *ndm,
7070 struct net_device *dev,
7071 unsigned char *addr)
7072#endif
7073{
7074 struct i40e_netdev_priv *np = netdev_priv(dev);
7075 struct i40e_pf *pf = np->vsi->back;
7076 int err = -EOPNOTSUPP;
7077
7078 if (ndm->ndm_state & NUD_PERMANENT) {
7079 netdev_info(dev, "FDB only supports static addresses\n");
7080 return -EINVAL;
7081 }
7082
7083 if (pf->flags & I40E_FLAG_SRIOV_ENABLED) {
7084 if (is_unicast_ether_addr(addr))
7085 err = dev_uc_del(dev, addr);
7086 else if (is_multicast_ether_addr(addr))
7087 err = dev_mc_del(dev, addr);
7088 else
7089 err = -EINVAL;
7090 }
7091
7092 return err;
7093}
7094
7095static int i40e_ndo_fdb_dump(struct sk_buff *skb,
7096 struct netlink_callback *cb,
7097 struct net_device *dev,
7098 int idx)
7099{
7100 struct i40e_netdev_priv *np = netdev_priv(dev);
7101 struct i40e_pf *pf = np->vsi->back;
7102
7103 if (pf->flags & I40E_FLAG_SRIOV_ENABLED)
7104 idx = ndo_dflt_fdb_dump(skb, cb, dev, idx);
7105
7106 return idx;
7107}
7108
7109#endif /* USE_DEFAULT_FDB_DEL_DUMP */
7110#endif /* HAVE_FDB_OPS */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007111static const struct net_device_ops i40e_netdev_ops = {
7112 .ndo_open = i40e_open,
7113 .ndo_stop = i40e_close,
7114 .ndo_start_xmit = i40e_lan_xmit_frame,
7115 .ndo_get_stats64 = i40e_get_netdev_stats_struct,
7116 .ndo_set_rx_mode = i40e_set_rx_mode,
7117 .ndo_validate_addr = eth_validate_addr,
7118 .ndo_set_mac_address = i40e_set_mac,
7119 .ndo_change_mtu = i40e_change_mtu,
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00007120 .ndo_do_ioctl = i40e_ioctl,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007121 .ndo_tx_timeout = i40e_tx_timeout,
7122 .ndo_vlan_rx_add_vid = i40e_vlan_rx_add_vid,
7123 .ndo_vlan_rx_kill_vid = i40e_vlan_rx_kill_vid,
7124#ifdef CONFIG_NET_POLL_CONTROLLER
7125 .ndo_poll_controller = i40e_netpoll,
7126#endif
7127 .ndo_setup_tc = i40e_setup_tc,
7128 .ndo_set_features = i40e_set_features,
7129 .ndo_set_vf_mac = i40e_ndo_set_vf_mac,
7130 .ndo_set_vf_vlan = i40e_ndo_set_vf_port_vlan,
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04007131 .ndo_set_vf_rate = i40e_ndo_set_vf_bw,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007132 .ndo_get_vf_config = i40e_ndo_get_vf_config,
Mitch Williams588aefa2014-02-11 08:27:49 +00007133 .ndo_set_vf_link_state = i40e_ndo_set_vf_link_state,
Mitch Williamsc674d122014-05-20 08:01:40 +00007134 .ndo_set_vf_spoofchk = i40e_ndo_set_vf_spoofck,
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007135#ifdef CONFIG_I40E_VXLAN
7136 .ndo_add_vxlan_port = i40e_add_vxlan_port,
7137 .ndo_del_vxlan_port = i40e_del_vxlan_port,
7138#endif
Greg Rose4ba0dea2014-03-06 08:59:55 +00007139#ifdef HAVE_FDB_OPS
7140 .ndo_fdb_add = i40e_ndo_fdb_add,
7141#ifndef USE_DEFAULT_FDB_DEL_DUMP
7142 .ndo_fdb_del = i40e_ndo_fdb_del,
7143 .ndo_fdb_dump = i40e_ndo_fdb_dump,
7144#endif
7145#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007146};
7147
7148/**
7149 * i40e_config_netdev - Setup the netdev flags
7150 * @vsi: the VSI being configured
7151 *
7152 * Returns 0 on success, negative value on failure
7153 **/
7154static int i40e_config_netdev(struct i40e_vsi *vsi)
7155{
Greg Rose1a103702013-11-28 06:42:39 +00007156 u8 brdcast[ETH_ALEN] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007157 struct i40e_pf *pf = vsi->back;
7158 struct i40e_hw *hw = &pf->hw;
7159 struct i40e_netdev_priv *np;
7160 struct net_device *netdev;
7161 u8 mac_addr[ETH_ALEN];
7162 int etherdev_size;
7163
7164 etherdev_size = sizeof(struct i40e_netdev_priv);
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00007165 netdev = alloc_etherdev_mq(etherdev_size, vsi->alloc_queue_pairs);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007166 if (!netdev)
7167 return -ENOMEM;
7168
7169 vsi->netdev = netdev;
7170 np = netdev_priv(netdev);
7171 np->vsi = vsi;
7172
Or Gerlitzd70e9412014-03-18 10:36:45 +02007173 netdev->hw_enc_features |= NETIF_F_IP_CSUM |
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007174 NETIF_F_GSO_UDP_TUNNEL |
Or Gerlitzd70e9412014-03-18 10:36:45 +02007175 NETIF_F_TSO;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007176
7177 netdev->features = NETIF_F_SG |
7178 NETIF_F_IP_CSUM |
7179 NETIF_F_SCTP_CSUM |
7180 NETIF_F_HIGHDMA |
7181 NETIF_F_GSO_UDP_TUNNEL |
7182 NETIF_F_HW_VLAN_CTAG_TX |
7183 NETIF_F_HW_VLAN_CTAG_RX |
7184 NETIF_F_HW_VLAN_CTAG_FILTER |
7185 NETIF_F_IPV6_CSUM |
7186 NETIF_F_TSO |
Jesse Brandeburg059dab62014-04-01 09:07:20 +00007187 NETIF_F_TSO_ECN |
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007188 NETIF_F_TSO6 |
7189 NETIF_F_RXCSUM |
7190 NETIF_F_RXHASH |
7191 0;
7192
Anjali Singhai Jain2e86a0b2014-04-01 07:11:53 +00007193 if (!(pf->flags & I40E_FLAG_MFP_ENABLED))
7194 netdev->features |= NETIF_F_NTUPLE;
7195
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007196 /* copy netdev features into list of user selectable features */
7197 netdev->hw_features |= netdev->features;
7198
7199 if (vsi->type == I40E_VSI_MAIN) {
7200 SET_NETDEV_DEV(netdev, &pf->pdev->dev);
Greg Rose9a173902014-05-22 06:32:02 +00007201 ether_addr_copy(mac_addr, hw->mac.perm_addr);
Greg Rose8c27d422014-05-22 06:31:56 +00007202 /* The following two steps are necessary to prevent reception
7203 * of tagged packets - by default the NVM loads a MAC-VLAN
7204 * filter that will accept any tagged packet. This is to
7205 * prevent that during normal operations until a specific
7206 * VLAN tag filter has been set.
7207 */
7208 i40e_rm_default_mac_filter(vsi, mac_addr);
7209 i40e_add_filter(vsi, mac_addr, I40E_VLAN_ANY, false, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007210 } else {
7211 /* relate the VSI_VMDQ name to the VSI_MAIN name */
7212 snprintf(netdev->name, IFNAMSIZ, "%sv%%d",
7213 pf->vsi[pf->lan_vsi]->netdev->name);
7214 random_ether_addr(mac_addr);
7215 i40e_add_filter(vsi, mac_addr, I40E_VLAN_ANY, false, false);
7216 }
Greg Rose1a103702013-11-28 06:42:39 +00007217 i40e_add_filter(vsi, brdcast, I40E_VLAN_ANY, false, false);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007218
Greg Rose9a173902014-05-22 06:32:02 +00007219 ether_addr_copy(netdev->dev_addr, mac_addr);
7220 ether_addr_copy(netdev->perm_addr, mac_addr);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007221 /* vlan gets same features (except vlan offload)
7222 * after any tweaks for specific VSI types
7223 */
7224 netdev->vlan_features = netdev->features & ~(NETIF_F_HW_VLAN_CTAG_TX |
7225 NETIF_F_HW_VLAN_CTAG_RX |
7226 NETIF_F_HW_VLAN_CTAG_FILTER);
7227 netdev->priv_flags |= IFF_UNICAST_FLT;
7228 netdev->priv_flags |= IFF_SUPP_NOFCS;
7229 /* Setup netdev TC information */
7230 i40e_vsi_config_netdev_tc(vsi, vsi->tc_config.enabled_tc);
7231
7232 netdev->netdev_ops = &i40e_netdev_ops;
7233 netdev->watchdog_timeo = 5 * HZ;
7234 i40e_set_ethtool_ops(netdev);
7235
7236 return 0;
7237}
7238
7239/**
7240 * i40e_vsi_delete - Delete a VSI from the switch
7241 * @vsi: the VSI being removed
7242 *
7243 * Returns 0 on success, negative value on failure
7244 **/
7245static void i40e_vsi_delete(struct i40e_vsi *vsi)
7246{
7247 /* remove default VSI is not allowed */
7248 if (vsi == vsi->back->vsi[vsi->back->lan_vsi])
7249 return;
7250
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007251 i40e_aq_delete_element(&vsi->back->hw, vsi->seid, NULL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007252}
7253
7254/**
7255 * i40e_add_vsi - Add a VSI to the switch
7256 * @vsi: the VSI being configured
7257 *
7258 * This initializes a VSI context depending on the VSI type to be added and
7259 * passes it down to the add_vsi aq command.
7260 **/
7261static int i40e_add_vsi(struct i40e_vsi *vsi)
7262{
7263 int ret = -ENODEV;
7264 struct i40e_mac_filter *f, *ftmp;
7265 struct i40e_pf *pf = vsi->back;
7266 struct i40e_hw *hw = &pf->hw;
7267 struct i40e_vsi_context ctxt;
7268 u8 enabled_tc = 0x1; /* TC0 enabled */
7269 int f_count = 0;
7270
7271 memset(&ctxt, 0, sizeof(ctxt));
7272 switch (vsi->type) {
7273 case I40E_VSI_MAIN:
7274 /* The PF's main VSI is already setup as part of the
7275 * device initialization, so we'll not bother with
7276 * the add_vsi call, but we will retrieve the current
7277 * VSI context.
7278 */
7279 ctxt.seid = pf->main_vsi_seid;
7280 ctxt.pf_num = pf->hw.pf_id;
7281 ctxt.vf_num = 0;
7282 ret = i40e_aq_get_vsi_params(&pf->hw, &ctxt, NULL);
7283 ctxt.flags = I40E_AQ_VSI_TYPE_PF;
7284 if (ret) {
7285 dev_info(&pf->pdev->dev,
7286 "couldn't get pf vsi config, err %d, aq_err %d\n",
7287 ret, pf->hw.aq.asq_last_status);
7288 return -ENOENT;
7289 }
7290 memcpy(&vsi->info, &ctxt.info, sizeof(ctxt.info));
7291 vsi->info.valid_sections = 0;
7292
7293 vsi->seid = ctxt.seid;
7294 vsi->id = ctxt.vsi_number;
7295
7296 enabled_tc = i40e_pf_get_tc_map(pf);
7297
7298 /* MFP mode setup queue map and update VSI */
7299 if (pf->flags & I40E_FLAG_MFP_ENABLED) {
7300 memset(&ctxt, 0, sizeof(ctxt));
7301 ctxt.seid = pf->main_vsi_seid;
7302 ctxt.pf_num = pf->hw.pf_id;
7303 ctxt.vf_num = 0;
7304 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, false);
7305 ret = i40e_aq_update_vsi_params(hw, &ctxt, NULL);
7306 if (ret) {
7307 dev_info(&pf->pdev->dev,
7308 "update vsi failed, aq_err=%d\n",
7309 pf->hw.aq.asq_last_status);
7310 ret = -ENOENT;
7311 goto err;
7312 }
7313 /* update the local VSI info queue map */
7314 i40e_vsi_update_queue_map(vsi, &ctxt);
7315 vsi->info.valid_sections = 0;
7316 } else {
7317 /* Default/Main VSI is only enabled for TC0
7318 * reconfigure it to enable all TCs that are
7319 * available on the port in SFP mode.
7320 */
7321 ret = i40e_vsi_config_tc(vsi, enabled_tc);
7322 if (ret) {
7323 dev_info(&pf->pdev->dev,
7324 "failed to configure TCs for main VSI tc_map 0x%08x, err %d, aq_err %d\n",
7325 enabled_tc, ret,
7326 pf->hw.aq.asq_last_status);
7327 ret = -ENOENT;
7328 }
7329 }
7330 break;
7331
7332 case I40E_VSI_FDIR:
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08007333 ctxt.pf_num = hw->pf_id;
7334 ctxt.vf_num = 0;
7335 ctxt.uplink_seid = vsi->uplink_seid;
7336 ctxt.connection_type = 0x1; /* regular data port */
7337 ctxt.flags = I40E_AQ_VSI_TYPE_PF;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007338 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007339 break;
7340
7341 case I40E_VSI_VMDQ2:
7342 ctxt.pf_num = hw->pf_id;
7343 ctxt.vf_num = 0;
7344 ctxt.uplink_seid = vsi->uplink_seid;
7345 ctxt.connection_type = 0x1; /* regular data port */
7346 ctxt.flags = I40E_AQ_VSI_TYPE_VMDQ2;
7347
7348 ctxt.info.valid_sections |= cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
7349
7350 /* This VSI is connected to VEB so the switch_id
7351 * should be set to zero by default.
7352 */
7353 ctxt.info.switch_id = 0;
7354 ctxt.info.switch_id |= cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_LOCAL_LB);
7355 ctxt.info.switch_id |= cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
7356
7357 /* Setup the VSI tx/rx queue map for TC0 only for now */
7358 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, true);
7359 break;
7360
7361 case I40E_VSI_SRIOV:
7362 ctxt.pf_num = hw->pf_id;
7363 ctxt.vf_num = vsi->vf_id + hw->func_caps.vf_base_id;
7364 ctxt.uplink_seid = vsi->uplink_seid;
7365 ctxt.connection_type = 0x1; /* regular data port */
7366 ctxt.flags = I40E_AQ_VSI_TYPE_VF;
7367
7368 ctxt.info.valid_sections |= cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
7369
7370 /* This VSI is connected to VEB so the switch_id
7371 * should be set to zero by default.
7372 */
7373 ctxt.info.switch_id = cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
7374
7375 ctxt.info.valid_sections |= cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
7376 ctxt.info.port_vlan_flags |= I40E_AQ_VSI_PVLAN_MODE_ALL;
Mitch Williamsc674d122014-05-20 08:01:40 +00007377 if (pf->vf[vsi->vf_id].spoofchk) {
7378 ctxt.info.valid_sections |=
7379 cpu_to_le16(I40E_AQ_VSI_PROP_SECURITY_VALID);
7380 ctxt.info.sec_flags |=
7381 (I40E_AQ_VSI_SEC_FLAG_ENABLE_VLAN_CHK |
7382 I40E_AQ_VSI_SEC_FLAG_ENABLE_MAC_CHK);
7383 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007384 /* Setup the VSI tx/rx queue map for TC0 only for now */
7385 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, true);
7386 break;
7387
7388 default:
7389 return -ENODEV;
7390 }
7391
7392 if (vsi->type != I40E_VSI_MAIN) {
7393 ret = i40e_aq_add_vsi(hw, &ctxt, NULL);
7394 if (ret) {
7395 dev_info(&vsi->back->pdev->dev,
7396 "add vsi failed, aq_err=%d\n",
7397 vsi->back->hw.aq.asq_last_status);
7398 ret = -ENOENT;
7399 goto err;
7400 }
7401 memcpy(&vsi->info, &ctxt.info, sizeof(ctxt.info));
7402 vsi->info.valid_sections = 0;
7403 vsi->seid = ctxt.seid;
7404 vsi->id = ctxt.vsi_number;
7405 }
7406
7407 /* If macvlan filters already exist, force them to get loaded */
7408 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
7409 f->changed = true;
7410 f_count++;
Shannon Nelson6252c7e2014-06-04 01:23:23 +00007411
7412 if (f->is_laa && vsi->type == I40E_VSI_MAIN) {
7413 i40e_aq_mac_address_write(&vsi->back->hw,
7414 I40E_AQC_WRITE_TYPE_LAA_WOL,
7415 f->macaddr, NULL);
7416 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007417 }
7418 if (f_count) {
7419 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
7420 pf->flags |= I40E_FLAG_FILTER_SYNC;
7421 }
7422
7423 /* Update VSI BW information */
7424 ret = i40e_vsi_get_bw_info(vsi);
7425 if (ret) {
7426 dev_info(&pf->pdev->dev,
7427 "couldn't get vsi bw info, err %d, aq_err %d\n",
7428 ret, pf->hw.aq.asq_last_status);
7429 /* VSI is already added so not tearing that up */
7430 ret = 0;
7431 }
7432
7433err:
7434 return ret;
7435}
7436
7437/**
7438 * i40e_vsi_release - Delete a VSI and free its resources
7439 * @vsi: the VSI being removed
7440 *
7441 * Returns 0 on success or < 0 on error
7442 **/
7443int i40e_vsi_release(struct i40e_vsi *vsi)
7444{
7445 struct i40e_mac_filter *f, *ftmp;
7446 struct i40e_veb *veb = NULL;
7447 struct i40e_pf *pf;
7448 u16 uplink_seid;
7449 int i, n;
7450
7451 pf = vsi->back;
7452
7453 /* release of a VEB-owner or last VSI is not allowed */
7454 if (vsi->flags & I40E_VSI_FLAG_VEB_OWNER) {
7455 dev_info(&pf->pdev->dev, "VSI %d has existing VEB %d\n",
7456 vsi->seid, vsi->uplink_seid);
7457 return -ENODEV;
7458 }
7459 if (vsi == pf->vsi[pf->lan_vsi] &&
7460 !test_bit(__I40E_DOWN, &pf->state)) {
7461 dev_info(&pf->pdev->dev, "Can't remove PF VSI\n");
7462 return -ENODEV;
7463 }
7464
7465 uplink_seid = vsi->uplink_seid;
7466 if (vsi->type != I40E_VSI_SRIOV) {
7467 if (vsi->netdev_registered) {
7468 vsi->netdev_registered = false;
7469 if (vsi->netdev) {
7470 /* results in a call to i40e_close() */
7471 unregister_netdev(vsi->netdev);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007472 }
7473 } else {
Shannon Nelson90ef8d42014-03-14 07:32:26 +00007474 i40e_vsi_close(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007475 }
7476 i40e_vsi_disable_irq(vsi);
7477 }
7478
7479 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list)
7480 i40e_del_filter(vsi, f->macaddr, f->vlan,
7481 f->is_vf, f->is_netdev);
7482 i40e_sync_vsi_filters(vsi);
7483
7484 i40e_vsi_delete(vsi);
7485 i40e_vsi_free_q_vectors(vsi);
Shannon Nelsona4866592014-02-11 08:24:07 +00007486 if (vsi->netdev) {
7487 free_netdev(vsi->netdev);
7488 vsi->netdev = NULL;
7489 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007490 i40e_vsi_clear_rings(vsi);
7491 i40e_vsi_clear(vsi);
7492
7493 /* If this was the last thing on the VEB, except for the
7494 * controlling VSI, remove the VEB, which puts the controlling
7495 * VSI onto the next level down in the switch.
7496 *
7497 * Well, okay, there's one more exception here: don't remove
7498 * the orphan VEBs yet. We'll wait for an explicit remove request
7499 * from up the network stack.
7500 */
Mitch Williams505682c2014-05-20 08:01:37 +00007501 for (n = 0, i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007502 if (pf->vsi[i] &&
7503 pf->vsi[i]->uplink_seid == uplink_seid &&
7504 (pf->vsi[i]->flags & I40E_VSI_FLAG_VEB_OWNER) == 0) {
7505 n++; /* count the VSIs */
7506 }
7507 }
7508 for (i = 0; i < I40E_MAX_VEB; i++) {
7509 if (!pf->veb[i])
7510 continue;
7511 if (pf->veb[i]->uplink_seid == uplink_seid)
7512 n++; /* count the VEBs */
7513 if (pf->veb[i]->seid == uplink_seid)
7514 veb = pf->veb[i];
7515 }
7516 if (n == 0 && veb && veb->uplink_seid != 0)
7517 i40e_veb_release(veb);
7518
7519 return 0;
7520}
7521
7522/**
7523 * i40e_vsi_setup_vectors - Set up the q_vectors for the given VSI
7524 * @vsi: ptr to the VSI
7525 *
7526 * This should only be called after i40e_vsi_mem_alloc() which allocates the
7527 * corresponding SW VSI structure and initializes num_queue_pairs for the
7528 * newly allocated VSI.
7529 *
7530 * Returns 0 on success or negative on failure
7531 **/
7532static int i40e_vsi_setup_vectors(struct i40e_vsi *vsi)
7533{
7534 int ret = -ENOENT;
7535 struct i40e_pf *pf = vsi->back;
7536
Alexander Duyck493fb302013-09-28 07:01:44 +00007537 if (vsi->q_vectors[0]) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007538 dev_info(&pf->pdev->dev, "VSI %d has existing q_vectors\n",
7539 vsi->seid);
7540 return -EEXIST;
7541 }
7542
7543 if (vsi->base_vector) {
Jesse Brandeburgf29eaa32014-02-11 08:24:12 +00007544 dev_info(&pf->pdev->dev, "VSI %d has non-zero base vector %d\n",
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007545 vsi->seid, vsi->base_vector);
7546 return -EEXIST;
7547 }
7548
Greg Rose90e04072014-03-06 08:59:57 +00007549 ret = i40e_vsi_alloc_q_vectors(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007550 if (ret) {
7551 dev_info(&pf->pdev->dev,
7552 "failed to allocate %d q_vector for VSI %d, ret=%d\n",
7553 vsi->num_q_vectors, vsi->seid, ret);
7554 vsi->num_q_vectors = 0;
7555 goto vector_setup_out;
7556 }
7557
Shannon Nelson958a3e32013-09-28 07:13:28 +00007558 if (vsi->num_q_vectors)
7559 vsi->base_vector = i40e_get_lump(pf, pf->irq_pile,
7560 vsi->num_q_vectors, vsi->idx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007561 if (vsi->base_vector < 0) {
7562 dev_info(&pf->pdev->dev,
Jesse Brandeburgf29eaa32014-02-11 08:24:12 +00007563 "failed to get queue tracking for VSI %d, err=%d\n",
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007564 vsi->seid, vsi->base_vector);
7565 i40e_vsi_free_q_vectors(vsi);
7566 ret = -ENOENT;
7567 goto vector_setup_out;
7568 }
7569
7570vector_setup_out:
7571 return ret;
7572}
7573
7574/**
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007575 * i40e_vsi_reinit_setup - return and reallocate resources for a VSI
7576 * @vsi: pointer to the vsi.
7577 *
7578 * This re-allocates a vsi's queue resources.
7579 *
7580 * Returns pointer to the successfully allocated and configured VSI sw struct
7581 * on success, otherwise returns NULL on failure.
7582 **/
7583static struct i40e_vsi *i40e_vsi_reinit_setup(struct i40e_vsi *vsi)
7584{
7585 struct i40e_pf *pf = vsi->back;
7586 u8 enabled_tc;
7587 int ret;
7588
7589 i40e_put_lump(pf->qp_pile, vsi->base_queue, vsi->idx);
7590 i40e_vsi_clear_rings(vsi);
7591
7592 i40e_vsi_free_arrays(vsi, false);
7593 i40e_set_num_rings_in_vsi(vsi);
7594 ret = i40e_vsi_alloc_arrays(vsi, false);
7595 if (ret)
7596 goto err_vsi;
7597
7598 ret = i40e_get_lump(pf, pf->qp_pile, vsi->alloc_queue_pairs, vsi->idx);
7599 if (ret < 0) {
7600 dev_info(&pf->pdev->dev, "VSI %d get_lump failed %d\n",
7601 vsi->seid, ret);
7602 goto err_vsi;
7603 }
7604 vsi->base_queue = ret;
7605
7606 /* Update the FW view of the VSI. Force a reset of TC and queue
7607 * layout configurations.
7608 */
7609 enabled_tc = pf->vsi[pf->lan_vsi]->tc_config.enabled_tc;
7610 pf->vsi[pf->lan_vsi]->tc_config.enabled_tc = 0;
7611 pf->vsi[pf->lan_vsi]->seid = pf->main_vsi_seid;
7612 i40e_vsi_config_tc(pf->vsi[pf->lan_vsi], enabled_tc);
7613
7614 /* assign it some queues */
7615 ret = i40e_alloc_rings(vsi);
7616 if (ret)
7617 goto err_rings;
7618
7619 /* map all of the rings to the q_vectors */
7620 i40e_vsi_map_rings_to_vectors(vsi);
7621 return vsi;
7622
7623err_rings:
7624 i40e_vsi_free_q_vectors(vsi);
7625 if (vsi->netdev_registered) {
7626 vsi->netdev_registered = false;
7627 unregister_netdev(vsi->netdev);
7628 free_netdev(vsi->netdev);
7629 vsi->netdev = NULL;
7630 }
7631 i40e_aq_delete_element(&pf->hw, vsi->seid, NULL);
7632err_vsi:
7633 i40e_vsi_clear(vsi);
7634 return NULL;
7635}
7636
7637/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007638 * i40e_vsi_setup - Set up a VSI by a given type
7639 * @pf: board private structure
7640 * @type: VSI type
7641 * @uplink_seid: the switch element to link to
7642 * @param1: usage depends upon VSI type. For VF types, indicates VF id
7643 *
7644 * This allocates the sw VSI structure and its queue resources, then add a VSI
7645 * to the identified VEB.
7646 *
7647 * Returns pointer to the successfully allocated and configure VSI sw struct on
7648 * success, otherwise returns NULL on failure.
7649 **/
7650struct i40e_vsi *i40e_vsi_setup(struct i40e_pf *pf, u8 type,
7651 u16 uplink_seid, u32 param1)
7652{
7653 struct i40e_vsi *vsi = NULL;
7654 struct i40e_veb *veb = NULL;
7655 int ret, i;
7656 int v_idx;
7657
7658 /* The requested uplink_seid must be either
7659 * - the PF's port seid
7660 * no VEB is needed because this is the PF
7661 * or this is a Flow Director special case VSI
7662 * - seid of an existing VEB
7663 * - seid of a VSI that owns an existing VEB
7664 * - seid of a VSI that doesn't own a VEB
7665 * a new VEB is created and the VSI becomes the owner
7666 * - seid of the PF VSI, which is what creates the first VEB
7667 * this is a special case of the previous
7668 *
7669 * Find which uplink_seid we were given and create a new VEB if needed
7670 */
7671 for (i = 0; i < I40E_MAX_VEB; i++) {
7672 if (pf->veb[i] && pf->veb[i]->seid == uplink_seid) {
7673 veb = pf->veb[i];
7674 break;
7675 }
7676 }
7677
7678 if (!veb && uplink_seid != pf->mac_seid) {
7679
Mitch Williams505682c2014-05-20 08:01:37 +00007680 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007681 if (pf->vsi[i] && pf->vsi[i]->seid == uplink_seid) {
7682 vsi = pf->vsi[i];
7683 break;
7684 }
7685 }
7686 if (!vsi) {
7687 dev_info(&pf->pdev->dev, "no such uplink_seid %d\n",
7688 uplink_seid);
7689 return NULL;
7690 }
7691
7692 if (vsi->uplink_seid == pf->mac_seid)
7693 veb = i40e_veb_setup(pf, 0, pf->mac_seid, vsi->seid,
7694 vsi->tc_config.enabled_tc);
7695 else if ((vsi->flags & I40E_VSI_FLAG_VEB_OWNER) == 0)
7696 veb = i40e_veb_setup(pf, 0, vsi->uplink_seid, vsi->seid,
7697 vsi->tc_config.enabled_tc);
7698
7699 for (i = 0; i < I40E_MAX_VEB && !veb; i++) {
7700 if (pf->veb[i] && pf->veb[i]->seid == vsi->uplink_seid)
7701 veb = pf->veb[i];
7702 }
7703 if (!veb) {
7704 dev_info(&pf->pdev->dev, "couldn't add VEB\n");
7705 return NULL;
7706 }
7707
7708 vsi->flags |= I40E_VSI_FLAG_VEB_OWNER;
7709 uplink_seid = veb->seid;
7710 }
7711
7712 /* get vsi sw struct */
7713 v_idx = i40e_vsi_mem_alloc(pf, type);
7714 if (v_idx < 0)
7715 goto err_alloc;
7716 vsi = pf->vsi[v_idx];
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08007717 if (!vsi)
7718 goto err_alloc;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007719 vsi->type = type;
7720 vsi->veb_idx = (veb ? veb->idx : I40E_NO_VEB);
7721
7722 if (type == I40E_VSI_MAIN)
7723 pf->lan_vsi = v_idx;
7724 else if (type == I40E_VSI_SRIOV)
7725 vsi->vf_id = param1;
7726 /* assign it some queues */
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08007727 ret = i40e_get_lump(pf, pf->qp_pile, vsi->alloc_queue_pairs,
7728 vsi->idx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007729 if (ret < 0) {
7730 dev_info(&pf->pdev->dev, "VSI %d get_lump failed %d\n",
7731 vsi->seid, ret);
7732 goto err_vsi;
7733 }
7734 vsi->base_queue = ret;
7735
7736 /* get a VSI from the hardware */
7737 vsi->uplink_seid = uplink_seid;
7738 ret = i40e_add_vsi(vsi);
7739 if (ret)
7740 goto err_vsi;
7741
7742 switch (vsi->type) {
7743 /* setup the netdev if needed */
7744 case I40E_VSI_MAIN:
7745 case I40E_VSI_VMDQ2:
7746 ret = i40e_config_netdev(vsi);
7747 if (ret)
7748 goto err_netdev;
7749 ret = register_netdev(vsi->netdev);
7750 if (ret)
7751 goto err_netdev;
7752 vsi->netdev_registered = true;
7753 netif_carrier_off(vsi->netdev);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08007754#ifdef CONFIG_I40E_DCB
7755 /* Setup DCB netlink interface */
7756 i40e_dcbnl_setup(vsi);
7757#endif /* CONFIG_I40E_DCB */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007758 /* fall through */
7759
7760 case I40E_VSI_FDIR:
7761 /* set up vectors and rings if needed */
7762 ret = i40e_vsi_setup_vectors(vsi);
7763 if (ret)
7764 goto err_msix;
7765
7766 ret = i40e_alloc_rings(vsi);
7767 if (ret)
7768 goto err_rings;
7769
7770 /* map all of the rings to the q_vectors */
7771 i40e_vsi_map_rings_to_vectors(vsi);
7772
7773 i40e_vsi_reset_stats(vsi);
7774 break;
7775
7776 default:
7777 /* no netdev or rings for the other VSI types */
7778 break;
7779 }
7780
7781 return vsi;
7782
7783err_rings:
7784 i40e_vsi_free_q_vectors(vsi);
7785err_msix:
7786 if (vsi->netdev_registered) {
7787 vsi->netdev_registered = false;
7788 unregister_netdev(vsi->netdev);
7789 free_netdev(vsi->netdev);
7790 vsi->netdev = NULL;
7791 }
7792err_netdev:
7793 i40e_aq_delete_element(&pf->hw, vsi->seid, NULL);
7794err_vsi:
7795 i40e_vsi_clear(vsi);
7796err_alloc:
7797 return NULL;
7798}
7799
7800/**
7801 * i40e_veb_get_bw_info - Query VEB BW information
7802 * @veb: the veb to query
7803 *
7804 * Query the Tx scheduler BW configuration data for given VEB
7805 **/
7806static int i40e_veb_get_bw_info(struct i40e_veb *veb)
7807{
7808 struct i40e_aqc_query_switching_comp_ets_config_resp ets_data;
7809 struct i40e_aqc_query_switching_comp_bw_config_resp bw_data;
7810 struct i40e_pf *pf = veb->pf;
7811 struct i40e_hw *hw = &pf->hw;
7812 u32 tc_bw_max;
7813 int ret = 0;
7814 int i;
7815
7816 ret = i40e_aq_query_switch_comp_bw_config(hw, veb->seid,
7817 &bw_data, NULL);
7818 if (ret) {
7819 dev_info(&pf->pdev->dev,
7820 "query veb bw config failed, aq_err=%d\n",
7821 hw->aq.asq_last_status);
7822 goto out;
7823 }
7824
7825 ret = i40e_aq_query_switch_comp_ets_config(hw, veb->seid,
7826 &ets_data, NULL);
7827 if (ret) {
7828 dev_info(&pf->pdev->dev,
7829 "query veb bw ets config failed, aq_err=%d\n",
7830 hw->aq.asq_last_status);
7831 goto out;
7832 }
7833
7834 veb->bw_limit = le16_to_cpu(ets_data.port_bw_limit);
7835 veb->bw_max_quanta = ets_data.tc_bw_max;
7836 veb->is_abs_credits = bw_data.absolute_credits_enable;
7837 tc_bw_max = le16_to_cpu(bw_data.tc_bw_max[0]) |
7838 (le16_to_cpu(bw_data.tc_bw_max[1]) << 16);
7839 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
7840 veb->bw_tc_share_credits[i] = bw_data.tc_bw_share_credits[i];
7841 veb->bw_tc_limit_credits[i] =
7842 le16_to_cpu(bw_data.tc_bw_limits[i]);
7843 veb->bw_tc_max_quanta[i] = ((tc_bw_max >> (i*4)) & 0x7);
7844 }
7845
7846out:
7847 return ret;
7848}
7849
7850/**
7851 * i40e_veb_mem_alloc - Allocates the next available struct veb in the PF
7852 * @pf: board private structure
7853 *
7854 * On error: returns error code (negative)
7855 * On success: returns vsi index in PF (positive)
7856 **/
7857static int i40e_veb_mem_alloc(struct i40e_pf *pf)
7858{
7859 int ret = -ENOENT;
7860 struct i40e_veb *veb;
7861 int i;
7862
7863 /* Need to protect the allocation of switch elements at the PF level */
7864 mutex_lock(&pf->switch_mutex);
7865
7866 /* VEB list may be fragmented if VEB creation/destruction has
7867 * been happening. We can afford to do a quick scan to look
7868 * for any free slots in the list.
7869 *
7870 * find next empty veb slot, looping back around if necessary
7871 */
7872 i = 0;
7873 while ((i < I40E_MAX_VEB) && (pf->veb[i] != NULL))
7874 i++;
7875 if (i >= I40E_MAX_VEB) {
7876 ret = -ENOMEM;
7877 goto err_alloc_veb; /* out of VEB slots! */
7878 }
7879
7880 veb = kzalloc(sizeof(*veb), GFP_KERNEL);
7881 if (!veb) {
7882 ret = -ENOMEM;
7883 goto err_alloc_veb;
7884 }
7885 veb->pf = pf;
7886 veb->idx = i;
7887 veb->enabled_tc = 1;
7888
7889 pf->veb[i] = veb;
7890 ret = i;
7891err_alloc_veb:
7892 mutex_unlock(&pf->switch_mutex);
7893 return ret;
7894}
7895
7896/**
7897 * i40e_switch_branch_release - Delete a branch of the switch tree
7898 * @branch: where to start deleting
7899 *
7900 * This uses recursion to find the tips of the branch to be
7901 * removed, deleting until we get back to and can delete this VEB.
7902 **/
7903static void i40e_switch_branch_release(struct i40e_veb *branch)
7904{
7905 struct i40e_pf *pf = branch->pf;
7906 u16 branch_seid = branch->seid;
7907 u16 veb_idx = branch->idx;
7908 int i;
7909
7910 /* release any VEBs on this VEB - RECURSION */
7911 for (i = 0; i < I40E_MAX_VEB; i++) {
7912 if (!pf->veb[i])
7913 continue;
7914 if (pf->veb[i]->uplink_seid == branch->seid)
7915 i40e_switch_branch_release(pf->veb[i]);
7916 }
7917
7918 /* Release the VSIs on this VEB, but not the owner VSI.
7919 *
7920 * NOTE: Removing the last VSI on a VEB has the SIDE EFFECT of removing
7921 * the VEB itself, so don't use (*branch) after this loop.
7922 */
Mitch Williams505682c2014-05-20 08:01:37 +00007923 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007924 if (!pf->vsi[i])
7925 continue;
7926 if (pf->vsi[i]->uplink_seid == branch_seid &&
7927 (pf->vsi[i]->flags & I40E_VSI_FLAG_VEB_OWNER) == 0) {
7928 i40e_vsi_release(pf->vsi[i]);
7929 }
7930 }
7931
7932 /* There's one corner case where the VEB might not have been
7933 * removed, so double check it here and remove it if needed.
7934 * This case happens if the veb was created from the debugfs
7935 * commands and no VSIs were added to it.
7936 */
7937 if (pf->veb[veb_idx])
7938 i40e_veb_release(pf->veb[veb_idx]);
7939}
7940
7941/**
7942 * i40e_veb_clear - remove veb struct
7943 * @veb: the veb to remove
7944 **/
7945static void i40e_veb_clear(struct i40e_veb *veb)
7946{
7947 if (!veb)
7948 return;
7949
7950 if (veb->pf) {
7951 struct i40e_pf *pf = veb->pf;
7952
7953 mutex_lock(&pf->switch_mutex);
7954 if (pf->veb[veb->idx] == veb)
7955 pf->veb[veb->idx] = NULL;
7956 mutex_unlock(&pf->switch_mutex);
7957 }
7958
7959 kfree(veb);
7960}
7961
7962/**
7963 * i40e_veb_release - Delete a VEB and free its resources
7964 * @veb: the VEB being removed
7965 **/
7966void i40e_veb_release(struct i40e_veb *veb)
7967{
7968 struct i40e_vsi *vsi = NULL;
7969 struct i40e_pf *pf;
7970 int i, n = 0;
7971
7972 pf = veb->pf;
7973
7974 /* find the remaining VSI and check for extras */
Mitch Williams505682c2014-05-20 08:01:37 +00007975 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007976 if (pf->vsi[i] && pf->vsi[i]->uplink_seid == veb->seid) {
7977 n++;
7978 vsi = pf->vsi[i];
7979 }
7980 }
7981 if (n != 1) {
7982 dev_info(&pf->pdev->dev,
7983 "can't remove VEB %d with %d VSIs left\n",
7984 veb->seid, n);
7985 return;
7986 }
7987
7988 /* move the remaining VSI to uplink veb */
7989 vsi->flags &= ~I40E_VSI_FLAG_VEB_OWNER;
7990 if (veb->uplink_seid) {
7991 vsi->uplink_seid = veb->uplink_seid;
7992 if (veb->uplink_seid == pf->mac_seid)
7993 vsi->veb_idx = I40E_NO_VEB;
7994 else
7995 vsi->veb_idx = veb->veb_idx;
7996 } else {
7997 /* floating VEB */
7998 vsi->uplink_seid = pf->vsi[pf->lan_vsi]->uplink_seid;
7999 vsi->veb_idx = pf->vsi[pf->lan_vsi]->veb_idx;
8000 }
8001
8002 i40e_aq_delete_element(&pf->hw, veb->seid, NULL);
8003 i40e_veb_clear(veb);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008004}
8005
8006/**
8007 * i40e_add_veb - create the VEB in the switch
8008 * @veb: the VEB to be instantiated
8009 * @vsi: the controlling VSI
8010 **/
8011static int i40e_add_veb(struct i40e_veb *veb, struct i40e_vsi *vsi)
8012{
Greg Rose56747262013-11-28 06:39:37 +00008013 bool is_default = false;
Kevin Scotte1c51b952013-11-20 10:02:51 +00008014 bool is_cloud = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008015 int ret;
8016
8017 /* get a VEB from the hardware */
8018 ret = i40e_aq_add_veb(&veb->pf->hw, veb->uplink_seid, vsi->seid,
Kevin Scotte1c51b952013-11-20 10:02:51 +00008019 veb->enabled_tc, is_default,
8020 is_cloud, &veb->seid, NULL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008021 if (ret) {
8022 dev_info(&veb->pf->pdev->dev,
8023 "couldn't add VEB, err %d, aq_err %d\n",
8024 ret, veb->pf->hw.aq.asq_last_status);
8025 return -EPERM;
8026 }
8027
8028 /* get statistics counter */
8029 ret = i40e_aq_get_veb_parameters(&veb->pf->hw, veb->seid, NULL, NULL,
8030 &veb->stats_idx, NULL, NULL, NULL);
8031 if (ret) {
8032 dev_info(&veb->pf->pdev->dev,
8033 "couldn't get VEB statistics idx, err %d, aq_err %d\n",
8034 ret, veb->pf->hw.aq.asq_last_status);
8035 return -EPERM;
8036 }
8037 ret = i40e_veb_get_bw_info(veb);
8038 if (ret) {
8039 dev_info(&veb->pf->pdev->dev,
8040 "couldn't get VEB bw info, err %d, aq_err %d\n",
8041 ret, veb->pf->hw.aq.asq_last_status);
8042 i40e_aq_delete_element(&veb->pf->hw, veb->seid, NULL);
8043 return -ENOENT;
8044 }
8045
8046 vsi->uplink_seid = veb->seid;
8047 vsi->veb_idx = veb->idx;
8048 vsi->flags |= I40E_VSI_FLAG_VEB_OWNER;
8049
8050 return 0;
8051}
8052
8053/**
8054 * i40e_veb_setup - Set up a VEB
8055 * @pf: board private structure
8056 * @flags: VEB setup flags
8057 * @uplink_seid: the switch element to link to
8058 * @vsi_seid: the initial VSI seid
8059 * @enabled_tc: Enabled TC bit-map
8060 *
8061 * This allocates the sw VEB structure and links it into the switch
8062 * It is possible and legal for this to be a duplicate of an already
8063 * existing VEB. It is also possible for both uplink and vsi seids
8064 * to be zero, in order to create a floating VEB.
8065 *
8066 * Returns pointer to the successfully allocated VEB sw struct on
8067 * success, otherwise returns NULL on failure.
8068 **/
8069struct i40e_veb *i40e_veb_setup(struct i40e_pf *pf, u16 flags,
8070 u16 uplink_seid, u16 vsi_seid,
8071 u8 enabled_tc)
8072{
8073 struct i40e_veb *veb, *uplink_veb = NULL;
8074 int vsi_idx, veb_idx;
8075 int ret;
8076
8077 /* if one seid is 0, the other must be 0 to create a floating relay */
8078 if ((uplink_seid == 0 || vsi_seid == 0) &&
8079 (uplink_seid + vsi_seid != 0)) {
8080 dev_info(&pf->pdev->dev,
8081 "one, not both seid's are 0: uplink=%d vsi=%d\n",
8082 uplink_seid, vsi_seid);
8083 return NULL;
8084 }
8085
8086 /* make sure there is such a vsi and uplink */
Mitch Williams505682c2014-05-20 08:01:37 +00008087 for (vsi_idx = 0; vsi_idx < pf->num_alloc_vsi; vsi_idx++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008088 if (pf->vsi[vsi_idx] && pf->vsi[vsi_idx]->seid == vsi_seid)
8089 break;
Mitch Williams505682c2014-05-20 08:01:37 +00008090 if (vsi_idx >= pf->num_alloc_vsi && vsi_seid != 0) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008091 dev_info(&pf->pdev->dev, "vsi seid %d not found\n",
8092 vsi_seid);
8093 return NULL;
8094 }
8095
8096 if (uplink_seid && uplink_seid != pf->mac_seid) {
8097 for (veb_idx = 0; veb_idx < I40E_MAX_VEB; veb_idx++) {
8098 if (pf->veb[veb_idx] &&
8099 pf->veb[veb_idx]->seid == uplink_seid) {
8100 uplink_veb = pf->veb[veb_idx];
8101 break;
8102 }
8103 }
8104 if (!uplink_veb) {
8105 dev_info(&pf->pdev->dev,
8106 "uplink seid %d not found\n", uplink_seid);
8107 return NULL;
8108 }
8109 }
8110
8111 /* get veb sw struct */
8112 veb_idx = i40e_veb_mem_alloc(pf);
8113 if (veb_idx < 0)
8114 goto err_alloc;
8115 veb = pf->veb[veb_idx];
8116 veb->flags = flags;
8117 veb->uplink_seid = uplink_seid;
8118 veb->veb_idx = (uplink_veb ? uplink_veb->idx : I40E_NO_VEB);
8119 veb->enabled_tc = (enabled_tc ? enabled_tc : 0x1);
8120
8121 /* create the VEB in the switch */
8122 ret = i40e_add_veb(veb, pf->vsi[vsi_idx]);
8123 if (ret)
8124 goto err_veb;
Shannon Nelson1bb8b932014-04-23 04:49:54 +00008125 if (vsi_idx == pf->lan_vsi)
8126 pf->lan_veb = veb->idx;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008127
8128 return veb;
8129
8130err_veb:
8131 i40e_veb_clear(veb);
8132err_alloc:
8133 return NULL;
8134}
8135
8136/**
8137 * i40e_setup_pf_switch_element - set pf vars based on switch type
8138 * @pf: board private structure
8139 * @ele: element we are building info from
8140 * @num_reported: total number of elements
8141 * @printconfig: should we print the contents
8142 *
8143 * helper function to assist in extracting a few useful SEID values.
8144 **/
8145static void i40e_setup_pf_switch_element(struct i40e_pf *pf,
8146 struct i40e_aqc_switch_config_element_resp *ele,
8147 u16 num_reported, bool printconfig)
8148{
8149 u16 downlink_seid = le16_to_cpu(ele->downlink_seid);
8150 u16 uplink_seid = le16_to_cpu(ele->uplink_seid);
8151 u8 element_type = ele->element_type;
8152 u16 seid = le16_to_cpu(ele->seid);
8153
8154 if (printconfig)
8155 dev_info(&pf->pdev->dev,
8156 "type=%d seid=%d uplink=%d downlink=%d\n",
8157 element_type, seid, uplink_seid, downlink_seid);
8158
8159 switch (element_type) {
8160 case I40E_SWITCH_ELEMENT_TYPE_MAC:
8161 pf->mac_seid = seid;
8162 break;
8163 case I40E_SWITCH_ELEMENT_TYPE_VEB:
8164 /* Main VEB? */
8165 if (uplink_seid != pf->mac_seid)
8166 break;
8167 if (pf->lan_veb == I40E_NO_VEB) {
8168 int v;
8169
8170 /* find existing or else empty VEB */
8171 for (v = 0; v < I40E_MAX_VEB; v++) {
8172 if (pf->veb[v] && (pf->veb[v]->seid == seid)) {
8173 pf->lan_veb = v;
8174 break;
8175 }
8176 }
8177 if (pf->lan_veb == I40E_NO_VEB) {
8178 v = i40e_veb_mem_alloc(pf);
8179 if (v < 0)
8180 break;
8181 pf->lan_veb = v;
8182 }
8183 }
8184
8185 pf->veb[pf->lan_veb]->seid = seid;
8186 pf->veb[pf->lan_veb]->uplink_seid = pf->mac_seid;
8187 pf->veb[pf->lan_veb]->pf = pf;
8188 pf->veb[pf->lan_veb]->veb_idx = I40E_NO_VEB;
8189 break;
8190 case I40E_SWITCH_ELEMENT_TYPE_VSI:
8191 if (num_reported != 1)
8192 break;
8193 /* This is immediately after a reset so we can assume this is
8194 * the PF's VSI
8195 */
8196 pf->mac_seid = uplink_seid;
8197 pf->pf_seid = downlink_seid;
8198 pf->main_vsi_seid = seid;
8199 if (printconfig)
8200 dev_info(&pf->pdev->dev,
8201 "pf_seid=%d main_vsi_seid=%d\n",
8202 pf->pf_seid, pf->main_vsi_seid);
8203 break;
8204 case I40E_SWITCH_ELEMENT_TYPE_PF:
8205 case I40E_SWITCH_ELEMENT_TYPE_VF:
8206 case I40E_SWITCH_ELEMENT_TYPE_EMP:
8207 case I40E_SWITCH_ELEMENT_TYPE_BMC:
8208 case I40E_SWITCH_ELEMENT_TYPE_PE:
8209 case I40E_SWITCH_ELEMENT_TYPE_PA:
8210 /* ignore these for now */
8211 break;
8212 default:
8213 dev_info(&pf->pdev->dev, "unknown element type=%d seid=%d\n",
8214 element_type, seid);
8215 break;
8216 }
8217}
8218
8219/**
8220 * i40e_fetch_switch_configuration - Get switch config from firmware
8221 * @pf: board private structure
8222 * @printconfig: should we print the contents
8223 *
8224 * Get the current switch configuration from the device and
8225 * extract a few useful SEID values.
8226 **/
8227int i40e_fetch_switch_configuration(struct i40e_pf *pf, bool printconfig)
8228{
8229 struct i40e_aqc_get_switch_config_resp *sw_config;
8230 u16 next_seid = 0;
8231 int ret = 0;
8232 u8 *aq_buf;
8233 int i;
8234
8235 aq_buf = kzalloc(I40E_AQ_LARGE_BUF, GFP_KERNEL);
8236 if (!aq_buf)
8237 return -ENOMEM;
8238
8239 sw_config = (struct i40e_aqc_get_switch_config_resp *)aq_buf;
8240 do {
8241 u16 num_reported, num_total;
8242
8243 ret = i40e_aq_get_switch_config(&pf->hw, sw_config,
8244 I40E_AQ_LARGE_BUF,
8245 &next_seid, NULL);
8246 if (ret) {
8247 dev_info(&pf->pdev->dev,
8248 "get switch config failed %d aq_err=%x\n",
8249 ret, pf->hw.aq.asq_last_status);
8250 kfree(aq_buf);
8251 return -ENOENT;
8252 }
8253
8254 num_reported = le16_to_cpu(sw_config->header.num_reported);
8255 num_total = le16_to_cpu(sw_config->header.num_total);
8256
8257 if (printconfig)
8258 dev_info(&pf->pdev->dev,
8259 "header: %d reported %d total\n",
8260 num_reported, num_total);
8261
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008262 for (i = 0; i < num_reported; i++) {
8263 struct i40e_aqc_switch_config_element_resp *ele =
8264 &sw_config->element[i];
8265
8266 i40e_setup_pf_switch_element(pf, ele, num_reported,
8267 printconfig);
8268 }
8269 } while (next_seid != 0);
8270
8271 kfree(aq_buf);
8272 return ret;
8273}
8274
8275/**
8276 * i40e_setup_pf_switch - Setup the HW switch on startup or after reset
8277 * @pf: board private structure
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00008278 * @reinit: if the Main VSI needs to re-initialized.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008279 *
8280 * Returns 0 on success, negative value on failure
8281 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00008282static int i40e_setup_pf_switch(struct i40e_pf *pf, bool reinit)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008283{
Jesse Brandeburg895106a2013-11-26 10:49:16 +00008284 u32 rxfc = 0, txfc = 0, rxfc_reg;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008285 int ret;
8286
8287 /* find out what's out there already */
8288 ret = i40e_fetch_switch_configuration(pf, false);
8289 if (ret) {
8290 dev_info(&pf->pdev->dev,
8291 "couldn't fetch switch config, err %d, aq_err %d\n",
8292 ret, pf->hw.aq.asq_last_status);
8293 return ret;
8294 }
8295 i40e_pf_reset_stats(pf);
8296
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008297 /* first time setup */
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00008298 if (pf->lan_vsi == I40E_NO_VSI || reinit) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008299 struct i40e_vsi *vsi = NULL;
8300 u16 uplink_seid;
8301
8302 /* Set up the PF VSI associated with the PF's main VSI
8303 * that is already in the HW switch
8304 */
8305 if (pf->lan_veb != I40E_NO_VEB && pf->veb[pf->lan_veb])
8306 uplink_seid = pf->veb[pf->lan_veb]->seid;
8307 else
8308 uplink_seid = pf->mac_seid;
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00008309 if (pf->lan_vsi == I40E_NO_VSI)
8310 vsi = i40e_vsi_setup(pf, I40E_VSI_MAIN, uplink_seid, 0);
8311 else if (reinit)
8312 vsi = i40e_vsi_reinit_setup(pf->vsi[pf->lan_vsi]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008313 if (!vsi) {
8314 dev_info(&pf->pdev->dev, "setup of MAIN VSI failed\n");
8315 i40e_fdir_teardown(pf);
8316 return -EAGAIN;
8317 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008318 } else {
8319 /* force a reset of TC and queue layout configurations */
8320 u8 enabled_tc = pf->vsi[pf->lan_vsi]->tc_config.enabled_tc;
8321 pf->vsi[pf->lan_vsi]->tc_config.enabled_tc = 0;
8322 pf->vsi[pf->lan_vsi]->seid = pf->main_vsi_seid;
8323 i40e_vsi_config_tc(pf->vsi[pf->lan_vsi], enabled_tc);
8324 }
8325 i40e_vlan_stripping_disable(pf->vsi[pf->lan_vsi]);
8326
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008327 i40e_fdir_sb_setup(pf);
8328
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008329 /* Setup static PF queue filter control settings */
8330 ret = i40e_setup_pf_filter_control(pf);
8331 if (ret) {
8332 dev_info(&pf->pdev->dev, "setup_pf_filter_control failed: %d\n",
8333 ret);
8334 /* Failure here should not stop continuing other steps */
8335 }
8336
8337 /* enable RSS in the HW, even for only one queue, as the stack can use
8338 * the hash
8339 */
8340 if ((pf->flags & I40E_FLAG_RSS_ENABLED))
8341 i40e_config_rss(pf);
8342
8343 /* fill in link information and enable LSE reporting */
8344 i40e_aq_get_link_info(&pf->hw, true, NULL, NULL);
8345 i40e_link_event(pf);
8346
Jesse Brandeburgd52c20b2013-11-26 10:49:15 +00008347 /* Initialize user-specific link properties */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008348 pf->fc_autoneg_status = ((pf->hw.phy.link_info.an_info &
8349 I40E_AQ_AN_COMPLETED) ? true : false);
Jesse Brandeburgd52c20b2013-11-26 10:49:15 +00008350 /* requested_mode is set in probe or by ethtool */
8351 if (!pf->fc_autoneg_status)
8352 goto no_autoneg;
8353
8354 if ((pf->hw.phy.link_info.an_info & I40E_AQ_LINK_PAUSE_TX) &&
8355 (pf->hw.phy.link_info.an_info & I40E_AQ_LINK_PAUSE_RX))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008356 pf->hw.fc.current_mode = I40E_FC_FULL;
8357 else if (pf->hw.phy.link_info.an_info & I40E_AQ_LINK_PAUSE_TX)
8358 pf->hw.fc.current_mode = I40E_FC_TX_PAUSE;
8359 else if (pf->hw.phy.link_info.an_info & I40E_AQ_LINK_PAUSE_RX)
8360 pf->hw.fc.current_mode = I40E_FC_RX_PAUSE;
8361 else
Jesse Brandeburgd52c20b2013-11-26 10:49:15 +00008362 pf->hw.fc.current_mode = I40E_FC_NONE;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008363
Jesse Brandeburgd52c20b2013-11-26 10:49:15 +00008364 /* sync the flow control settings with the auto-neg values */
8365 switch (pf->hw.fc.current_mode) {
8366 case I40E_FC_FULL:
8367 txfc = 1;
8368 rxfc = 1;
8369 break;
8370 case I40E_FC_TX_PAUSE:
8371 txfc = 1;
8372 rxfc = 0;
8373 break;
8374 case I40E_FC_RX_PAUSE:
8375 txfc = 0;
8376 rxfc = 1;
8377 break;
8378 case I40E_FC_NONE:
8379 case I40E_FC_DEFAULT:
8380 txfc = 0;
8381 rxfc = 0;
8382 break;
8383 case I40E_FC_PFC:
8384 /* TBD */
8385 break;
8386 /* no default case, we have to handle all possibilities here */
8387 }
8388
8389 wr32(&pf->hw, I40E_PRTDCB_FCCFG, txfc << I40E_PRTDCB_FCCFG_TFCE_SHIFT);
8390
8391 rxfc_reg = rd32(&pf->hw, I40E_PRTDCB_MFLCN) &
8392 ~I40E_PRTDCB_MFLCN_RFCE_MASK;
8393 rxfc_reg |= (rxfc << I40E_PRTDCB_MFLCN_RFCE_SHIFT);
8394
8395 wr32(&pf->hw, I40E_PRTDCB_MFLCN, rxfc_reg);
8396
8397 goto fc_complete;
8398
8399no_autoneg:
8400 /* disable L2 flow control, user can turn it on if they wish */
8401 wr32(&pf->hw, I40E_PRTDCB_FCCFG, 0);
8402 wr32(&pf->hw, I40E_PRTDCB_MFLCN, rd32(&pf->hw, I40E_PRTDCB_MFLCN) &
8403 ~I40E_PRTDCB_MFLCN_RFCE_MASK);
8404
8405fc_complete:
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00008406 i40e_ptp_init(pf);
8407
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008408 return ret;
8409}
8410
8411/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008412 * i40e_determine_queue_usage - Work out queue distribution
8413 * @pf: board private structure
8414 **/
8415static void i40e_determine_queue_usage(struct i40e_pf *pf)
8416{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008417 int queues_left;
8418
8419 pf->num_lan_qps = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008420
8421 /* Find the max queues to be put into basic use. We'll always be
8422 * using TC0, whether or not DCB is running, and TC0 will get the
8423 * big RSS set.
8424 */
8425 queues_left = pf->hw.func_caps.num_tx_qp;
8426
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008427 if ((queues_left == 1) ||
Frank Zhang9aa7e932014-05-20 08:01:42 +00008428 !(pf->flags & I40E_FLAG_MSIX_ENABLED)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008429 /* one qp for PF, no queues for anything else */
8430 queues_left = 0;
8431 pf->rss_size = pf->num_lan_qps = 1;
8432
8433 /* make sure all the fancies are disabled */
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08008434 pf->flags &= ~(I40E_FLAG_RSS_ENABLED |
8435 I40E_FLAG_FD_SB_ENABLED |
8436 I40E_FLAG_FD_ATR_ENABLED |
Neerav Parikh4d9b6042014-05-22 06:31:51 +00008437 I40E_FLAG_DCB_CAPABLE |
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08008438 I40E_FLAG_SRIOV_ENABLED |
8439 I40E_FLAG_VMDQ_ENABLED);
Frank Zhang9aa7e932014-05-20 08:01:42 +00008440 } else if (!(pf->flags & (I40E_FLAG_RSS_ENABLED |
8441 I40E_FLAG_FD_SB_ENABLED |
Anjali Singhai Jainbbe7d0e2014-05-20 08:01:44 +00008442 I40E_FLAG_FD_ATR_ENABLED |
Neerav Parikh4d9b6042014-05-22 06:31:51 +00008443 I40E_FLAG_DCB_CAPABLE))) {
Frank Zhang9aa7e932014-05-20 08:01:42 +00008444 /* one qp for PF */
8445 pf->rss_size = pf->num_lan_qps = 1;
8446 queues_left -= pf->num_lan_qps;
8447
8448 pf->flags &= ~(I40E_FLAG_RSS_ENABLED |
8449 I40E_FLAG_FD_SB_ENABLED |
8450 I40E_FLAG_FD_ATR_ENABLED |
8451 I40E_FLAG_DCB_ENABLED |
8452 I40E_FLAG_VMDQ_ENABLED);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008453 } else {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008454 /* Not enough queues for all TCs */
Neerav Parikh4d9b6042014-05-22 06:31:51 +00008455 if ((pf->flags & I40E_FLAG_DCB_CAPABLE) &&
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008456 (queues_left < I40E_MAX_TRAFFIC_CLASS)) {
Neerav Parikh4d9b6042014-05-22 06:31:51 +00008457 pf->flags &= ~I40E_FLAG_DCB_CAPABLE;
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008458 dev_info(&pf->pdev->dev, "not enough queues for DCB. DCB is disabled.\n");
8459 }
8460 pf->num_lan_qps = pf->rss_size_max;
8461 queues_left -= pf->num_lan_qps;
8462 }
8463
8464 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
8465 if (queues_left > 1) {
8466 queues_left -= 1; /* save 1 queue for FD */
8467 } else {
8468 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
8469 dev_info(&pf->pdev->dev, "not enough queues for Flow Director. Flow Director feature is disabled\n");
8470 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008471 }
8472
8473 if ((pf->flags & I40E_FLAG_SRIOV_ENABLED) &&
8474 pf->num_vf_qps && pf->num_req_vfs && queues_left) {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008475 pf->num_req_vfs = min_t(int, pf->num_req_vfs,
8476 (queues_left / pf->num_vf_qps));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008477 queues_left -= (pf->num_req_vfs * pf->num_vf_qps);
8478 }
8479
8480 if ((pf->flags & I40E_FLAG_VMDQ_ENABLED) &&
8481 pf->num_vmdq_vsis && pf->num_vmdq_qps && queues_left) {
8482 pf->num_vmdq_vsis = min_t(int, pf->num_vmdq_vsis,
8483 (queues_left / pf->num_vmdq_qps));
8484 queues_left -= (pf->num_vmdq_vsis * pf->num_vmdq_qps);
8485 }
8486
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00008487 pf->queues_left = queues_left;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008488}
8489
8490/**
8491 * i40e_setup_pf_filter_control - Setup PF static filter control
8492 * @pf: PF to be setup
8493 *
8494 * i40e_setup_pf_filter_control sets up a pf's initial filter control
8495 * settings. If PE/FCoE are enabled then it will also set the per PF
8496 * based filter sizes required for them. It also enables Flow director,
8497 * ethertype and macvlan type filter settings for the pf.
8498 *
8499 * Returns 0 on success, negative on failure
8500 **/
8501static int i40e_setup_pf_filter_control(struct i40e_pf *pf)
8502{
8503 struct i40e_filter_control_settings *settings = &pf->filter_settings;
8504
8505 settings->hash_lut_size = I40E_HASH_LUT_SIZE_128;
8506
8507 /* Flow Director is enabled */
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08008508 if (pf->flags & (I40E_FLAG_FD_SB_ENABLED | I40E_FLAG_FD_ATR_ENABLED))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008509 settings->enable_fdir = true;
8510
8511 /* Ethtype and MACVLAN filters enabled for PF */
8512 settings->enable_ethtype = true;
8513 settings->enable_macvlan = true;
8514
8515 if (i40e_set_filter_control(&pf->hw, settings))
8516 return -ENOENT;
8517
8518 return 0;
8519}
8520
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00008521#define INFO_STRING_LEN 255
8522static void i40e_print_features(struct i40e_pf *pf)
8523{
8524 struct i40e_hw *hw = &pf->hw;
8525 char *buf, *string;
8526
8527 string = kzalloc(INFO_STRING_LEN, GFP_KERNEL);
8528 if (!string) {
8529 dev_err(&pf->pdev->dev, "Features string allocation failed\n");
8530 return;
8531 }
8532
8533 buf = string;
8534
8535 buf += sprintf(string, "Features: PF-id[%d] ", hw->pf_id);
8536#ifdef CONFIG_PCI_IOV
8537 buf += sprintf(buf, "VFs: %d ", pf->num_req_vfs);
8538#endif
8539 buf += sprintf(buf, "VSIs: %d QP: %d ", pf->hw.func_caps.num_vsis,
8540 pf->vsi[pf->lan_vsi]->num_queue_pairs);
8541
8542 if (pf->flags & I40E_FLAG_RSS_ENABLED)
8543 buf += sprintf(buf, "RSS ");
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00008544 if (pf->flags & I40E_FLAG_FD_ATR_ENABLED)
Akeem G Abodunrinc6423ff2014-05-10 04:49:08 +00008545 buf += sprintf(buf, "FD_ATR ");
8546 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
8547 buf += sprintf(buf, "FD_SB ");
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00008548 buf += sprintf(buf, "NTUPLE ");
Akeem G Abodunrinc6423ff2014-05-10 04:49:08 +00008549 }
Neerav Parikh4d9b6042014-05-22 06:31:51 +00008550 if (pf->flags & I40E_FLAG_DCB_CAPABLE)
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00008551 buf += sprintf(buf, "DCB ");
8552 if (pf->flags & I40E_FLAG_PTP)
8553 buf += sprintf(buf, "PTP ");
8554
8555 BUG_ON(buf > (string + INFO_STRING_LEN));
8556 dev_info(&pf->pdev->dev, "%s\n", string);
8557 kfree(string);
8558}
8559
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008560/**
8561 * i40e_probe - Device initialization routine
8562 * @pdev: PCI device information struct
8563 * @ent: entry in i40e_pci_tbl
8564 *
8565 * i40e_probe initializes a pf identified by a pci_dev structure.
8566 * The OS initialization, configuring of the pf private structure,
8567 * and a hardware reset occur.
8568 *
8569 * Returns 0 on success, negative on failure
8570 **/
8571static int i40e_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
8572{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008573 struct i40e_pf *pf;
8574 struct i40e_hw *hw;
Anjali Singhai Jain93cd7652013-11-20 10:03:01 +00008575 static u16 pfs_found;
Catherine Sullivand4dfb812013-11-28 06:39:21 +00008576 u16 link_status;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008577 int err = 0;
8578 u32 len;
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00008579 u32 i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008580
8581 err = pci_enable_device_mem(pdev);
8582 if (err)
8583 return err;
8584
8585 /* set up for high or low dma */
Mitch Williams64942942014-02-11 08:26:33 +00008586 err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64));
Mitch Williams64942942014-02-11 08:26:33 +00008587 if (err) {
Jean Sacrene3e3bfd2014-03-25 04:30:27 +00008588 err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
8589 if (err) {
8590 dev_err(&pdev->dev,
8591 "DMA configuration failed: 0x%x\n", err);
8592 goto err_dma;
8593 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008594 }
8595
8596 /* set up pci connections */
8597 err = pci_request_selected_regions(pdev, pci_select_bars(pdev,
8598 IORESOURCE_MEM), i40e_driver_name);
8599 if (err) {
8600 dev_info(&pdev->dev,
8601 "pci_request_selected_regions failed %d\n", err);
8602 goto err_pci_reg;
8603 }
8604
8605 pci_enable_pcie_error_reporting(pdev);
8606 pci_set_master(pdev);
8607
8608 /* Now that we have a PCI connection, we need to do the
8609 * low level device setup. This is primarily setting up
8610 * the Admin Queue structures and then querying for the
8611 * device's current profile information.
8612 */
8613 pf = kzalloc(sizeof(*pf), GFP_KERNEL);
8614 if (!pf) {
8615 err = -ENOMEM;
8616 goto err_pf_alloc;
8617 }
8618 pf->next_vsi = 0;
8619 pf->pdev = pdev;
8620 set_bit(__I40E_DOWN, &pf->state);
8621
8622 hw = &pf->hw;
8623 hw->back = pf;
8624 hw->hw_addr = ioremap(pci_resource_start(pdev, 0),
8625 pci_resource_len(pdev, 0));
8626 if (!hw->hw_addr) {
8627 err = -EIO;
8628 dev_info(&pdev->dev, "ioremap(0x%04x, 0x%04x) failed: 0x%x\n",
8629 (unsigned int)pci_resource_start(pdev, 0),
8630 (unsigned int)pci_resource_len(pdev, 0), err);
8631 goto err_ioremap;
8632 }
8633 hw->vendor_id = pdev->vendor;
8634 hw->device_id = pdev->device;
8635 pci_read_config_byte(pdev, PCI_REVISION_ID, &hw->revision_id);
8636 hw->subsystem_vendor_id = pdev->subsystem_vendor;
8637 hw->subsystem_device_id = pdev->subsystem_device;
8638 hw->bus.device = PCI_SLOT(pdev->devfn);
8639 hw->bus.func = PCI_FUNC(pdev->devfn);
Anjali Singhai Jain93cd7652013-11-20 10:03:01 +00008640 pf->instance = pfs_found;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008641
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00008642 /* do a special CORER for clearing PXE mode once at init */
8643 if (hw->revision_id == 0 &&
8644 (rd32(hw, I40E_GLLAN_RCTL_0) & I40E_GLLAN_RCTL_0_PXE_MODE_MASK)) {
8645 wr32(hw, I40E_GLGEN_RTRIG, I40E_GLGEN_RTRIG_CORER_MASK);
8646 i40e_flush(hw);
8647 msleep(200);
8648 pf->corer_count++;
8649
8650 i40e_clear_pxe_mode(hw);
8651 }
8652
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008653 /* Reset here to make sure all is clean and to define PF 'n' */
Shannon Nelson838d41d2014-06-04 20:41:27 +00008654 i40e_clear_hw(hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008655 err = i40e_pf_reset(hw);
8656 if (err) {
8657 dev_info(&pdev->dev, "Initial pf_reset failed: %d\n", err);
8658 goto err_pf_reset;
8659 }
8660 pf->pfr_count++;
8661
8662 hw->aq.num_arq_entries = I40E_AQ_LEN;
8663 hw->aq.num_asq_entries = I40E_AQ_LEN;
8664 hw->aq.arq_buf_size = I40E_MAX_AQ_BUF_SIZE;
8665 hw->aq.asq_buf_size = I40E_MAX_AQ_BUF_SIZE;
8666 pf->adminq_work_limit = I40E_AQ_WORK_LIMIT;
8667 snprintf(pf->misc_int_name, sizeof(pf->misc_int_name) - 1,
8668 "%s-pf%d:misc",
8669 dev_driver_string(&pf->pdev->dev), pf->hw.pf_id);
8670
8671 err = i40e_init_shared_code(hw);
8672 if (err) {
8673 dev_info(&pdev->dev, "init_shared_code failed: %d\n", err);
8674 goto err_pf_reset;
8675 }
8676
Jesse Brandeburgd52c20b2013-11-26 10:49:15 +00008677 /* set up a default setting for link flow control */
8678 pf->hw.fc.requested_mode = I40E_FC_NONE;
8679
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008680 err = i40e_init_adminq(hw);
8681 dev_info(&pdev->dev, "%s\n", i40e_fw_version_str(hw));
8682 if (err) {
8683 dev_info(&pdev->dev,
8684 "init_adminq failed: %d expecting API %02x.%02x\n",
8685 err,
8686 I40E_FW_API_VERSION_MAJOR, I40E_FW_API_VERSION_MINOR);
8687 goto err_pf_reset;
8688 }
8689
Shannon Nelson278b6f62014-06-04 01:41:03 +00008690 if (hw->aq.api_min_ver > I40E_FW_API_VERSION_MINOR)
8691 dev_info(&pdev->dev,
8692 "Note: FW API version %02x.%02x newer than expected %02x.%02x, recommend driver update.\n",
8693 hw->aq.api_maj_ver, hw->aq.api_min_ver,
8694 I40E_FW_API_VERSION_MAJOR, I40E_FW_API_VERSION_MINOR);
8695
8696 if (hw->aq.api_maj_ver < I40E_FW_API_VERSION_MAJOR ||
8697 hw->aq.api_min_ver < (I40E_FW_API_VERSION_MINOR-1))
8698 dev_info(&pdev->dev,
8699 "Note: FW API version %02x.%02x older than expected %02x.%02x, recommend nvm update.\n",
8700 hw->aq.api_maj_ver, hw->aq.api_min_ver,
8701 I40E_FW_API_VERSION_MAJOR, I40E_FW_API_VERSION_MINOR);
8702
8703
Shannon Nelson4eb3f762014-03-06 08:59:58 +00008704 i40e_verify_eeprom(pf);
8705
Jesse Brandeburg2c5fe332014-04-23 04:49:57 +00008706 /* Rev 0 hardware was never productized */
8707 if (hw->revision_id < 1)
8708 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");
8709
Shannon Nelson6ff4ef82013-12-21 05:44:49 +00008710 i40e_clear_pxe_mode(hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008711 err = i40e_get_capabilities(pf);
8712 if (err)
8713 goto err_adminq_setup;
8714
8715 err = i40e_sw_init(pf);
8716 if (err) {
8717 dev_info(&pdev->dev, "sw_init failed: %d\n", err);
8718 goto err_sw_init;
8719 }
8720
8721 err = i40e_init_lan_hmc(hw, hw->func_caps.num_tx_qp,
8722 hw->func_caps.num_rx_qp,
8723 pf->fcoe_hmc_cntx_num, pf->fcoe_hmc_filt_num);
8724 if (err) {
8725 dev_info(&pdev->dev, "init_lan_hmc failed: %d\n", err);
8726 goto err_init_lan_hmc;
8727 }
8728
8729 err = i40e_configure_lan_hmc(hw, I40E_HMC_MODEL_DIRECT_ONLY);
8730 if (err) {
8731 dev_info(&pdev->dev, "configure_lan_hmc failed: %d\n", err);
8732 err = -ENOENT;
8733 goto err_configure_lan_hmc;
8734 }
8735
8736 i40e_get_mac_addr(hw, hw->mac.addr);
Jesse Brandeburgf62b5062013-11-28 06:39:27 +00008737 if (!is_valid_ether_addr(hw->mac.addr)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008738 dev_info(&pdev->dev, "invalid MAC address %pM\n", hw->mac.addr);
8739 err = -EIO;
8740 goto err_mac_addr;
8741 }
8742 dev_info(&pdev->dev, "MAC address: %pM\n", hw->mac.addr);
Greg Rose9a173902014-05-22 06:32:02 +00008743 ether_addr_copy(hw->mac.perm_addr, hw->mac.addr);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008744
8745 pci_set_drvdata(pdev, pf);
8746 pci_save_state(pdev);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08008747#ifdef CONFIG_I40E_DCB
8748 err = i40e_init_pf_dcb(pf);
8749 if (err) {
8750 dev_info(&pdev->dev, "init_pf_dcb failed: %d\n", err);
Neerav Parikh4d9b6042014-05-22 06:31:51 +00008751 pf->flags &= ~I40E_FLAG_DCB_CAPABLE;
Neerav Parikh014269f2014-04-01 07:11:48 +00008752 /* Continue without DCB enabled */
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08008753 }
8754#endif /* CONFIG_I40E_DCB */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008755
8756 /* set up periodic task facility */
8757 setup_timer(&pf->service_timer, i40e_service_timer, (unsigned long)pf);
8758 pf->service_timer_period = HZ;
8759
8760 INIT_WORK(&pf->service_task, i40e_service_task);
8761 clear_bit(__I40E_SERVICE_SCHED, &pf->state);
8762 pf->flags |= I40E_FLAG_NEED_LINK_UPDATE;
8763 pf->link_check_timeout = jiffies;
8764
Shannon Nelson8e2773a2013-11-28 06:39:22 +00008765 /* WoL defaults to disabled */
8766 pf->wol_en = false;
8767 device_set_wakeup_enable(&pf->pdev->dev, pf->wol_en);
8768
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008769 /* set up the main switch operations */
8770 i40e_determine_queue_usage(pf);
8771 i40e_init_interrupt_scheme(pf);
8772
Mitch Williams505682c2014-05-20 08:01:37 +00008773 /* The number of VSIs reported by the FW is the minimum guaranteed
8774 * to us; HW supports far more and we share the remaining pool with
8775 * the other PFs. We allocate space for more than the guarantee with
8776 * the understanding that we might not get them all later.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008777 */
Mitch Williams505682c2014-05-20 08:01:37 +00008778 if (pf->hw.func_caps.num_vsis < I40E_MIN_VSI_ALLOC)
8779 pf->num_alloc_vsi = I40E_MIN_VSI_ALLOC;
8780 else
8781 pf->num_alloc_vsi = pf->hw.func_caps.num_vsis;
8782
8783 /* Set up the *vsi struct and our local tracking of the MAIN PF vsi. */
8784 len = sizeof(struct i40e_vsi *) * pf->num_alloc_vsi;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008785 pf->vsi = kzalloc(len, GFP_KERNEL);
Wei Yongjuned87ac02013-09-24 05:17:25 +00008786 if (!pf->vsi) {
8787 err = -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008788 goto err_switch_setup;
Wei Yongjuned87ac02013-09-24 05:17:25 +00008789 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008790
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00008791 err = i40e_setup_pf_switch(pf, false);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008792 if (err) {
8793 dev_info(&pdev->dev, "setup_pf_switch failed: %d\n", err);
8794 goto err_vsis;
8795 }
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00008796 /* if FDIR VSI was set up, start it now */
Mitch Williams505682c2014-05-20 08:01:37 +00008797 for (i = 0; i < pf->num_alloc_vsi; i++) {
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00008798 if (pf->vsi[i] && pf->vsi[i]->type == I40E_VSI_FDIR) {
8799 i40e_vsi_open(pf->vsi[i]);
8800 break;
8801 }
8802 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008803
8804 /* The main driver is (mostly) up and happy. We need to set this state
8805 * before setting up the misc vector or we get a race and the vector
8806 * ends up disabled forever.
8807 */
8808 clear_bit(__I40E_DOWN, &pf->state);
8809
8810 /* In case of MSIX we are going to setup the misc vector right here
8811 * to handle admin queue events etc. In case of legacy and MSI
8812 * the misc functionality and queue processing is combined in
8813 * the same vector and that gets setup at open.
8814 */
8815 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
8816 err = i40e_setup_misc_vector(pf);
8817 if (err) {
8818 dev_info(&pdev->dev,
8819 "setup of misc vector failed: %d\n", err);
8820 goto err_vsis;
8821 }
8822 }
8823
Greg Rosedf805f62014-04-04 04:43:16 +00008824#ifdef CONFIG_PCI_IOV
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008825 /* prep for VF support */
8826 if ((pf->flags & I40E_FLAG_SRIOV_ENABLED) &&
Shannon Nelson4eb3f762014-03-06 08:59:58 +00008827 (pf->flags & I40E_FLAG_MSIX_ENABLED) &&
8828 !test_bit(__I40E_BAD_EEPROM, &pf->state)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008829 u32 val;
8830
8831 /* disable link interrupts for VFs */
8832 val = rd32(hw, I40E_PFGEN_PORTMDIO_NUM);
8833 val &= ~I40E_PFGEN_PORTMDIO_NUM_VFLINK_STAT_ENA_MASK;
8834 wr32(hw, I40E_PFGEN_PORTMDIO_NUM, val);
8835 i40e_flush(hw);
Mitch Williams4aeec012014-02-13 03:48:47 -08008836
8837 if (pci_num_vf(pdev)) {
8838 dev_info(&pdev->dev,
8839 "Active VFs found, allocating resources.\n");
8840 err = i40e_alloc_vfs(pf, pci_num_vf(pdev));
8841 if (err)
8842 dev_info(&pdev->dev,
8843 "Error %d allocating resources for existing VFs\n",
8844 err);
8845 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008846 }
Greg Rosedf805f62014-04-04 04:43:16 +00008847#endif /* CONFIG_PCI_IOV */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008848
Anjali Singhai Jain93cd7652013-11-20 10:03:01 +00008849 pfs_found++;
8850
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008851 i40e_dbg_pf_init(pf);
8852
8853 /* tell the firmware that we're starting */
Jesse Brandeburg44033fa2014-04-23 04:50:15 +00008854 i40e_send_version(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008855
8856 /* since everything's happy, start the service_task timer */
8857 mod_timer(&pf->service_timer,
8858 round_jiffies(jiffies + pf->service_timer_period));
8859
Catherine Sullivand4dfb812013-11-28 06:39:21 +00008860 /* Get the negotiated link width and speed from PCI config space */
8861 pcie_capability_read_word(pf->pdev, PCI_EXP_LNKSTA, &link_status);
8862
8863 i40e_set_pci_config_data(hw, link_status);
8864
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00008865 dev_info(&pdev->dev, "PCI-Express: %s %s\n",
Catherine Sullivand4dfb812013-11-28 06:39:21 +00008866 (hw->bus.speed == i40e_bus_speed_8000 ? "Speed 8.0GT/s" :
8867 hw->bus.speed == i40e_bus_speed_5000 ? "Speed 5.0GT/s" :
8868 hw->bus.speed == i40e_bus_speed_2500 ? "Speed 2.5GT/s" :
8869 "Unknown"),
8870 (hw->bus.width == i40e_bus_width_pcie_x8 ? "Width x8" :
8871 hw->bus.width == i40e_bus_width_pcie_x4 ? "Width x4" :
8872 hw->bus.width == i40e_bus_width_pcie_x2 ? "Width x2" :
8873 hw->bus.width == i40e_bus_width_pcie_x1 ? "Width x1" :
8874 "Unknown"));
8875
8876 if (hw->bus.width < i40e_bus_width_pcie_x8 ||
8877 hw->bus.speed < i40e_bus_speed_8000) {
8878 dev_warn(&pdev->dev, "PCI-Express bandwidth available for this device may be insufficient for optimal performance.\n");
8879 dev_warn(&pdev->dev, "Please move the device to a different PCI-e link with more lanes and/or higher transfer rate.\n");
8880 }
8881
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00008882 /* print a string summarizing features */
8883 i40e_print_features(pf);
8884
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008885 return 0;
8886
8887 /* Unwind what we've done if something failed in the setup */
8888err_vsis:
8889 set_bit(__I40E_DOWN, &pf->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008890 i40e_clear_interrupt_scheme(pf);
8891 kfree(pf->vsi);
Shannon Nelson04b03012013-11-28 06:39:34 +00008892err_switch_setup:
8893 i40e_reset_interrupt_capability(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008894 del_timer_sync(&pf->service_timer);
8895err_mac_addr:
8896err_configure_lan_hmc:
8897 (void)i40e_shutdown_lan_hmc(hw);
8898err_init_lan_hmc:
8899 kfree(pf->qp_pile);
8900 kfree(pf->irq_pile);
8901err_sw_init:
8902err_adminq_setup:
8903 (void)i40e_shutdown_adminq(hw);
8904err_pf_reset:
8905 iounmap(hw->hw_addr);
8906err_ioremap:
8907 kfree(pf);
8908err_pf_alloc:
8909 pci_disable_pcie_error_reporting(pdev);
8910 pci_release_selected_regions(pdev,
8911 pci_select_bars(pdev, IORESOURCE_MEM));
8912err_pci_reg:
8913err_dma:
8914 pci_disable_device(pdev);
8915 return err;
8916}
8917
8918/**
8919 * i40e_remove - Device removal routine
8920 * @pdev: PCI device information struct
8921 *
8922 * i40e_remove is called by the PCI subsystem to alert the driver
8923 * that is should release a PCI device. This could be caused by a
8924 * Hot-Plug event, or because the driver is going to be removed from
8925 * memory.
8926 **/
8927static void i40e_remove(struct pci_dev *pdev)
8928{
8929 struct i40e_pf *pf = pci_get_drvdata(pdev);
8930 i40e_status ret_code;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008931 int i;
8932
8933 i40e_dbg_pf_exit(pf);
8934
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00008935 i40e_ptp_stop(pf);
8936
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008937 /* no more scheduling of any task */
8938 set_bit(__I40E_DOWN, &pf->state);
8939 del_timer_sync(&pf->service_timer);
8940 cancel_work_sync(&pf->service_task);
8941
Mitch Williamseb2d80b2014-02-13 03:48:48 -08008942 if (pf->flags & I40E_FLAG_SRIOV_ENABLED) {
8943 i40e_free_vfs(pf);
8944 pf->flags &= ~I40E_FLAG_SRIOV_ENABLED;
8945 }
8946
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008947 i40e_fdir_teardown(pf);
8948
8949 /* If there is a switch structure or any orphans, remove them.
8950 * This will leave only the PF's VSI remaining.
8951 */
8952 for (i = 0; i < I40E_MAX_VEB; i++) {
8953 if (!pf->veb[i])
8954 continue;
8955
8956 if (pf->veb[i]->uplink_seid == pf->mac_seid ||
8957 pf->veb[i]->uplink_seid == 0)
8958 i40e_switch_branch_release(pf->veb[i]);
8959 }
8960
8961 /* Now we can shutdown the PF's VSI, just before we kill
8962 * adminq and hmc.
8963 */
8964 if (pf->vsi[pf->lan_vsi])
8965 i40e_vsi_release(pf->vsi[pf->lan_vsi]);
8966
8967 i40e_stop_misc_vector(pf);
8968 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
8969 synchronize_irq(pf->msix_entries[0].vector);
8970 free_irq(pf->msix_entries[0].vector, pf);
8971 }
8972
8973 /* shutdown and destroy the HMC */
Shannon Nelson60442de2014-04-23 04:50:13 +00008974 if (pf->hw.hmc.hmc_obj) {
8975 ret_code = i40e_shutdown_lan_hmc(&pf->hw);
8976 if (ret_code)
8977 dev_warn(&pdev->dev,
8978 "Failed to destroy the HMC resources: %d\n",
8979 ret_code);
8980 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008981
8982 /* shutdown the adminq */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008983 ret_code = i40e_shutdown_adminq(&pf->hw);
8984 if (ret_code)
8985 dev_warn(&pdev->dev,
8986 "Failed to destroy the Admin Queue resources: %d\n",
8987 ret_code);
8988
8989 /* Clear all dynamic memory lists of rings, q_vectors, and VSIs */
8990 i40e_clear_interrupt_scheme(pf);
Mitch Williams505682c2014-05-20 08:01:37 +00008991 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008992 if (pf->vsi[i]) {
8993 i40e_vsi_clear_rings(pf->vsi[i]);
8994 i40e_vsi_clear(pf->vsi[i]);
8995 pf->vsi[i] = NULL;
8996 }
8997 }
8998
8999 for (i = 0; i < I40E_MAX_VEB; i++) {
9000 kfree(pf->veb[i]);
9001 pf->veb[i] = NULL;
9002 }
9003
9004 kfree(pf->qp_pile);
9005 kfree(pf->irq_pile);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009006 kfree(pf->vsi);
9007
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009008 iounmap(pf->hw.hw_addr);
9009 kfree(pf);
9010 pci_release_selected_regions(pdev,
9011 pci_select_bars(pdev, IORESOURCE_MEM));
9012
9013 pci_disable_pcie_error_reporting(pdev);
9014 pci_disable_device(pdev);
9015}
9016
9017/**
9018 * i40e_pci_error_detected - warning that something funky happened in PCI land
9019 * @pdev: PCI device information struct
9020 *
9021 * Called to warn that something happened and the error handling steps
9022 * are in progress. Allows the driver to quiesce things, be ready for
9023 * remediation.
9024 **/
9025static pci_ers_result_t i40e_pci_error_detected(struct pci_dev *pdev,
9026 enum pci_channel_state error)
9027{
9028 struct i40e_pf *pf = pci_get_drvdata(pdev);
9029
9030 dev_info(&pdev->dev, "%s: error %d\n", __func__, error);
9031
9032 /* shutdown all operations */
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009033 if (!test_bit(__I40E_SUSPENDED, &pf->state)) {
9034 rtnl_lock();
9035 i40e_prep_for_reset(pf);
9036 rtnl_unlock();
9037 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009038
9039 /* Request a slot reset */
9040 return PCI_ERS_RESULT_NEED_RESET;
9041}
9042
9043/**
9044 * i40e_pci_error_slot_reset - a PCI slot reset just happened
9045 * @pdev: PCI device information struct
9046 *
9047 * Called to find if the driver can work with the device now that
9048 * the pci slot has been reset. If a basic connection seems good
9049 * (registers are readable and have sane content) then return a
9050 * happy little PCI_ERS_RESULT_xxx.
9051 **/
9052static pci_ers_result_t i40e_pci_error_slot_reset(struct pci_dev *pdev)
9053{
9054 struct i40e_pf *pf = pci_get_drvdata(pdev);
9055 pci_ers_result_t result;
9056 int err;
9057 u32 reg;
9058
9059 dev_info(&pdev->dev, "%s\n", __func__);
9060 if (pci_enable_device_mem(pdev)) {
9061 dev_info(&pdev->dev,
9062 "Cannot re-enable PCI device after reset.\n");
9063 result = PCI_ERS_RESULT_DISCONNECT;
9064 } else {
9065 pci_set_master(pdev);
9066 pci_restore_state(pdev);
9067 pci_save_state(pdev);
9068 pci_wake_from_d3(pdev, false);
9069
9070 reg = rd32(&pf->hw, I40E_GLGEN_RTRIG);
9071 if (reg == 0)
9072 result = PCI_ERS_RESULT_RECOVERED;
9073 else
9074 result = PCI_ERS_RESULT_DISCONNECT;
9075 }
9076
9077 err = pci_cleanup_aer_uncorrect_error_status(pdev);
9078 if (err) {
9079 dev_info(&pdev->dev,
9080 "pci_cleanup_aer_uncorrect_error_status failed 0x%0x\n",
9081 err);
9082 /* non-fatal, continue */
9083 }
9084
9085 return result;
9086}
9087
9088/**
9089 * i40e_pci_error_resume - restart operations after PCI error recovery
9090 * @pdev: PCI device information struct
9091 *
9092 * Called to allow the driver to bring things back up after PCI error
9093 * and/or reset recovery has finished.
9094 **/
9095static void i40e_pci_error_resume(struct pci_dev *pdev)
9096{
9097 struct i40e_pf *pf = pci_get_drvdata(pdev);
9098
9099 dev_info(&pdev->dev, "%s\n", __func__);
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009100 if (test_bit(__I40E_SUSPENDED, &pf->state))
9101 return;
9102
9103 rtnl_lock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009104 i40e_handle_reset_warning(pf);
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009105 rtnl_lock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009106}
9107
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009108/**
9109 * i40e_shutdown - PCI callback for shutting down
9110 * @pdev: PCI device information struct
9111 **/
9112static void i40e_shutdown(struct pci_dev *pdev)
9113{
9114 struct i40e_pf *pf = pci_get_drvdata(pdev);
Shannon Nelson8e2773a2013-11-28 06:39:22 +00009115 struct i40e_hw *hw = &pf->hw;
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009116
9117 set_bit(__I40E_SUSPENDED, &pf->state);
9118 set_bit(__I40E_DOWN, &pf->state);
9119 rtnl_lock();
9120 i40e_prep_for_reset(pf);
9121 rtnl_unlock();
9122
Shannon Nelson8e2773a2013-11-28 06:39:22 +00009123 wr32(hw, I40E_PFPM_APM, (pf->wol_en ? I40E_PFPM_APM_APME_MASK : 0));
9124 wr32(hw, I40E_PFPM_WUFC, (pf->wol_en ? I40E_PFPM_WUFC_MAG_MASK : 0));
9125
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009126 if (system_state == SYSTEM_POWER_OFF) {
Shannon Nelson8e2773a2013-11-28 06:39:22 +00009127 pci_wake_from_d3(pdev, pf->wol_en);
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009128 pci_set_power_state(pdev, PCI_D3hot);
9129 }
9130}
9131
9132#ifdef CONFIG_PM
9133/**
9134 * i40e_suspend - PCI callback for moving to D3
9135 * @pdev: PCI device information struct
9136 **/
9137static int i40e_suspend(struct pci_dev *pdev, pm_message_t state)
9138{
9139 struct i40e_pf *pf = pci_get_drvdata(pdev);
Shannon Nelson8e2773a2013-11-28 06:39:22 +00009140 struct i40e_hw *hw = &pf->hw;
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009141
9142 set_bit(__I40E_SUSPENDED, &pf->state);
9143 set_bit(__I40E_DOWN, &pf->state);
9144 rtnl_lock();
9145 i40e_prep_for_reset(pf);
9146 rtnl_unlock();
9147
Shannon Nelson8e2773a2013-11-28 06:39:22 +00009148 wr32(hw, I40E_PFPM_APM, (pf->wol_en ? I40E_PFPM_APM_APME_MASK : 0));
9149 wr32(hw, I40E_PFPM_WUFC, (pf->wol_en ? I40E_PFPM_WUFC_MAG_MASK : 0));
9150
9151 pci_wake_from_d3(pdev, pf->wol_en);
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009152 pci_set_power_state(pdev, PCI_D3hot);
9153
9154 return 0;
9155}
9156
9157/**
9158 * i40e_resume - PCI callback for waking up from D3
9159 * @pdev: PCI device information struct
9160 **/
9161static int i40e_resume(struct pci_dev *pdev)
9162{
9163 struct i40e_pf *pf = pci_get_drvdata(pdev);
9164 u32 err;
9165
9166 pci_set_power_state(pdev, PCI_D0);
9167 pci_restore_state(pdev);
9168 /* pci_restore_state() clears dev->state_saves, so
9169 * call pci_save_state() again to restore it.
9170 */
9171 pci_save_state(pdev);
9172
9173 err = pci_enable_device_mem(pdev);
9174 if (err) {
9175 dev_err(&pdev->dev,
9176 "%s: Cannot enable PCI device from suspend\n",
9177 __func__);
9178 return err;
9179 }
9180 pci_set_master(pdev);
9181
9182 /* no wakeup events while running */
9183 pci_wake_from_d3(pdev, false);
9184
9185 /* handling the reset will rebuild the device state */
9186 if (test_and_clear_bit(__I40E_SUSPENDED, &pf->state)) {
9187 clear_bit(__I40E_DOWN, &pf->state);
9188 rtnl_lock();
9189 i40e_reset_and_rebuild(pf, false);
9190 rtnl_unlock();
9191 }
9192
9193 return 0;
9194}
9195
9196#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009197static const struct pci_error_handlers i40e_err_handler = {
9198 .error_detected = i40e_pci_error_detected,
9199 .slot_reset = i40e_pci_error_slot_reset,
9200 .resume = i40e_pci_error_resume,
9201};
9202
9203static struct pci_driver i40e_driver = {
9204 .name = i40e_driver_name,
9205 .id_table = i40e_pci_tbl,
9206 .probe = i40e_probe,
9207 .remove = i40e_remove,
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009208#ifdef CONFIG_PM
9209 .suspend = i40e_suspend,
9210 .resume = i40e_resume,
9211#endif
9212 .shutdown = i40e_shutdown,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009213 .err_handler = &i40e_err_handler,
9214 .sriov_configure = i40e_pci_sriov_configure,
9215};
9216
9217/**
9218 * i40e_init_module - Driver registration routine
9219 *
9220 * i40e_init_module is the first routine called when the driver is
9221 * loaded. All it does is register with the PCI subsystem.
9222 **/
9223static int __init i40e_init_module(void)
9224{
9225 pr_info("%s: %s - version %s\n", i40e_driver_name,
9226 i40e_driver_string, i40e_driver_version_str);
9227 pr_info("%s: %s\n", i40e_driver_name, i40e_copyright);
9228 i40e_dbg_init();
9229 return pci_register_driver(&i40e_driver);
9230}
9231module_init(i40e_init_module);
9232
9233/**
9234 * i40e_exit_module - Driver exit cleanup routine
9235 *
9236 * i40e_exit_module is called just before the driver is removed
9237 * from memory.
9238 **/
9239static void __exit i40e_exit_module(void)
9240{
9241 pci_unregister_driver(&i40e_driver);
9242 i40e_dbg_exit();
9243}
9244module_exit(i40e_exit_module);