blob: c998d82da0fc0986a01635332ffa2d5561dce7b4 [file] [log] [blame]
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001/*******************************************************************************
2 *
3 * Intel Ethernet Controller XL710 Family Linux Driver
Greg Rosedc641b72013-12-18 13:45:51 +00004 * Copyright(c) 2013 - 2014 Intel Corporation.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms and conditions of the GNU General Public License,
8 * version 2, as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * more details.
14 *
Greg Rosedc641b72013-12-18 13:45:51 +000015 * You should have received a copy of the GNU General Public License along
16 * with this program. If not, see <http://www.gnu.org/licenses/>.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000017 *
18 * The full GNU General Public License is included in this distribution in
19 * the file called "COPYING".
20 *
21 * Contact Information:
22 * e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
23 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
24 *
25 ******************************************************************************/
26
27/* Local includes */
28#include "i40e.h"
Shannon Nelson4eb3f762014-03-06 08:59:58 +000029#include "i40e_diag.h"
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +000030#ifdef CONFIG_I40E_VXLAN
31#include <net/vxlan.h>
32#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000033
34const char i40e_driver_name[] = "i40e";
35static const char i40e_driver_string[] =
36 "Intel(R) Ethernet Connection XL710 Network Driver";
37
38#define DRV_KERN "-k"
39
Catherine Sullivane8e724d2014-07-10 07:58:26 +000040#define DRV_VERSION_MAJOR 1
Catherine Sullivan7bda87c2014-11-11 03:15:06 +000041#define DRV_VERSION_MINOR 1
42#define DRV_VERSION_BUILD 23
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000043#define DRV_VERSION __stringify(DRV_VERSION_MAJOR) "." \
44 __stringify(DRV_VERSION_MINOR) "." \
45 __stringify(DRV_VERSION_BUILD) DRV_KERN
46const char i40e_driver_version_str[] = DRV_VERSION;
Jesse Brandeburg8fb905b2014-01-17 15:36:33 -080047static const char i40e_copyright[] = "Copyright (c) 2013 - 2014 Intel Corporation.";
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000048
49/* a bit of forward declarations */
50static void i40e_vsi_reinit_locked(struct i40e_vsi *vsi);
51static void i40e_handle_reset_warning(struct i40e_pf *pf);
52static int i40e_add_vsi(struct i40e_vsi *vsi);
53static int i40e_add_veb(struct i40e_veb *veb, struct i40e_vsi *vsi);
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +000054static int i40e_setup_pf_switch(struct i40e_pf *pf, bool reinit);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000055static int i40e_setup_misc_vector(struct i40e_pf *pf);
56static void i40e_determine_queue_usage(struct i40e_pf *pf);
57static int i40e_setup_pf_filter_control(struct i40e_pf *pf);
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080058static void i40e_fdir_sb_setup(struct i40e_pf *pf);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -080059static int i40e_veb_get_bw_info(struct i40e_veb *veb);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000060
61/* i40e_pci_tbl - PCI Device ID Table
62 *
63 * Last entry must be all 0s
64 *
65 * { Vendor ID, Device ID, SubVendor ID, SubDevice ID,
66 * Class, Class Mask, private data (not used) }
67 */
Benoit Taine9baa3c32014-08-08 15:56:03 +020068static const struct pci_device_id i40e_pci_tbl[] = {
Shannon Nelsonab600852014-01-17 15:36:39 -080069 {PCI_VDEVICE(INTEL, I40E_DEV_ID_SFP_XL710), 0},
Shannon Nelsonab600852014-01-17 15:36:39 -080070 {PCI_VDEVICE(INTEL, I40E_DEV_ID_QEMU), 0},
71 {PCI_VDEVICE(INTEL, I40E_DEV_ID_KX_A), 0},
72 {PCI_VDEVICE(INTEL, I40E_DEV_ID_KX_B), 0},
73 {PCI_VDEVICE(INTEL, I40E_DEV_ID_KX_C), 0},
Shannon Nelsonab600852014-01-17 15:36:39 -080074 {PCI_VDEVICE(INTEL, I40E_DEV_ID_QSFP_A), 0},
75 {PCI_VDEVICE(INTEL, I40E_DEV_ID_QSFP_B), 0},
76 {PCI_VDEVICE(INTEL, I40E_DEV_ID_QSFP_C), 0},
Mitch Williams5960d332014-09-13 07:40:47 +000077 {PCI_VDEVICE(INTEL, I40E_DEV_ID_10G_BASE_T), 0},
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000078 /* required last entry */
79 {0, }
80};
81MODULE_DEVICE_TABLE(pci, i40e_pci_tbl);
82
83#define I40E_MAX_VF_COUNT 128
84static int debug = -1;
85module_param(debug, int, 0);
86MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all)");
87
88MODULE_AUTHOR("Intel Corporation, <e1000-devel@lists.sourceforge.net>");
89MODULE_DESCRIPTION("Intel(R) Ethernet Connection XL710 Network Driver");
90MODULE_LICENSE("GPL");
91MODULE_VERSION(DRV_VERSION);
92
93/**
94 * i40e_allocate_dma_mem_d - OS specific memory alloc for shared code
95 * @hw: pointer to the HW structure
96 * @mem: ptr to mem struct to fill out
97 * @size: size of memory requested
98 * @alignment: what to align the allocation to
99 **/
100int i40e_allocate_dma_mem_d(struct i40e_hw *hw, struct i40e_dma_mem *mem,
101 u64 size, u32 alignment)
102{
103 struct i40e_pf *pf = (struct i40e_pf *)hw->back;
104
105 mem->size = ALIGN(size, alignment);
106 mem->va = dma_zalloc_coherent(&pf->pdev->dev, mem->size,
107 &mem->pa, GFP_KERNEL);
Jesse Brandeburg93bc73b2013-09-13 08:23:18 +0000108 if (!mem->va)
109 return -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000110
Jesse Brandeburg93bc73b2013-09-13 08:23:18 +0000111 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000112}
113
114/**
115 * i40e_free_dma_mem_d - OS specific memory free for shared code
116 * @hw: pointer to the HW structure
117 * @mem: ptr to mem struct to free
118 **/
119int i40e_free_dma_mem_d(struct i40e_hw *hw, struct i40e_dma_mem *mem)
120{
121 struct i40e_pf *pf = (struct i40e_pf *)hw->back;
122
123 dma_free_coherent(&pf->pdev->dev, mem->size, mem->va, mem->pa);
124 mem->va = NULL;
125 mem->pa = 0;
126 mem->size = 0;
127
128 return 0;
129}
130
131/**
132 * i40e_allocate_virt_mem_d - OS specific memory alloc for shared code
133 * @hw: pointer to the HW structure
134 * @mem: ptr to mem struct to fill out
135 * @size: size of memory requested
136 **/
137int i40e_allocate_virt_mem_d(struct i40e_hw *hw, struct i40e_virt_mem *mem,
138 u32 size)
139{
140 mem->size = size;
141 mem->va = kzalloc(size, GFP_KERNEL);
142
Jesse Brandeburg93bc73b2013-09-13 08:23:18 +0000143 if (!mem->va)
144 return -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000145
Jesse Brandeburg93bc73b2013-09-13 08:23:18 +0000146 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000147}
148
149/**
150 * i40e_free_virt_mem_d - OS specific memory free for shared code
151 * @hw: pointer to the HW structure
152 * @mem: ptr to mem struct to free
153 **/
154int i40e_free_virt_mem_d(struct i40e_hw *hw, struct i40e_virt_mem *mem)
155{
156 /* it's ok to kfree a NULL pointer */
157 kfree(mem->va);
158 mem->va = NULL;
159 mem->size = 0;
160
161 return 0;
162}
163
164/**
165 * i40e_get_lump - find a lump of free generic resource
166 * @pf: board private structure
167 * @pile: the pile of resource to search
168 * @needed: the number of items needed
169 * @id: an owner id to stick on the items assigned
170 *
171 * Returns the base item index of the lump, or negative for error
172 *
173 * The search_hint trick and lack of advanced fit-finding only work
174 * because we're highly likely to have all the same size lump requests.
175 * Linear search time and any fragmentation should be minimal.
176 **/
177static int i40e_get_lump(struct i40e_pf *pf, struct i40e_lump_tracking *pile,
178 u16 needed, u16 id)
179{
180 int ret = -ENOMEM;
Jesse Brandeburgddf434a2013-09-13 08:23:19 +0000181 int i, j;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000182
183 if (!pile || needed == 0 || id >= I40E_PILE_VALID_BIT) {
184 dev_info(&pf->pdev->dev,
185 "param err: pile=%p needed=%d id=0x%04x\n",
186 pile, needed, id);
187 return -EINVAL;
188 }
189
190 /* start the linear search with an imperfect hint */
191 i = pile->search_hint;
Jesse Brandeburgddf434a2013-09-13 08:23:19 +0000192 while (i < pile->num_entries) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000193 /* skip already allocated entries */
194 if (pile->list[i] & I40E_PILE_VALID_BIT) {
195 i++;
196 continue;
197 }
198
199 /* do we have enough in this lump? */
200 for (j = 0; (j < needed) && ((i+j) < pile->num_entries); j++) {
201 if (pile->list[i+j] & I40E_PILE_VALID_BIT)
202 break;
203 }
204
205 if (j == needed) {
206 /* there was enough, so assign it to the requestor */
207 for (j = 0; j < needed; j++)
208 pile->list[i+j] = id | I40E_PILE_VALID_BIT;
209 ret = i;
210 pile->search_hint = i + j;
Jesse Brandeburgddf434a2013-09-13 08:23:19 +0000211 break;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000212 } else {
213 /* not enough, so skip over it and continue looking */
214 i += j;
215 }
216 }
217
218 return ret;
219}
220
221/**
222 * i40e_put_lump - return a lump of generic resource
223 * @pile: the pile of resource to search
224 * @index: the base item index
225 * @id: the owner id of the items assigned
226 *
227 * Returns the count of items in the lump
228 **/
229static int i40e_put_lump(struct i40e_lump_tracking *pile, u16 index, u16 id)
230{
231 int valid_id = (id | I40E_PILE_VALID_BIT);
232 int count = 0;
233 int i;
234
235 if (!pile || index >= pile->num_entries)
236 return -EINVAL;
237
238 for (i = index;
239 i < pile->num_entries && pile->list[i] == valid_id;
240 i++) {
241 pile->list[i] = 0;
242 count++;
243 }
244
245 if (count && index < pile->search_hint)
246 pile->search_hint = index;
247
248 return count;
249}
250
251/**
252 * i40e_service_event_schedule - Schedule the service task to wake up
253 * @pf: board private structure
254 *
255 * If not already scheduled, this puts the task into the work queue
256 **/
257static void i40e_service_event_schedule(struct i40e_pf *pf)
258{
259 if (!test_bit(__I40E_DOWN, &pf->state) &&
260 !test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state) &&
261 !test_and_set_bit(__I40E_SERVICE_SCHED, &pf->state))
262 schedule_work(&pf->service_task);
263}
264
265/**
266 * i40e_tx_timeout - Respond to a Tx Hang
267 * @netdev: network interface device structure
268 *
269 * If any port has noticed a Tx timeout, it is likely that the whole
270 * device is munged, not just the one netdev port, so go for the full
271 * reset.
272 **/
Vasu Dev38e00432014-08-01 13:27:03 -0700273#ifdef I40E_FCOE
274void i40e_tx_timeout(struct net_device *netdev)
275#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000276static void i40e_tx_timeout(struct net_device *netdev)
Vasu Dev38e00432014-08-01 13:27:03 -0700277#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000278{
279 struct i40e_netdev_priv *np = netdev_priv(netdev);
280 struct i40e_vsi *vsi = np->vsi;
281 struct i40e_pf *pf = vsi->back;
282
283 pf->tx_timeout_count++;
284
285 if (time_after(jiffies, (pf->tx_timeout_last_recovery + HZ*20)))
Anjali Singhai Jain327fe042014-06-04 01:23:26 +0000286 pf->tx_timeout_recovery_level = 1;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000287 pf->tx_timeout_last_recovery = jiffies;
288 netdev_info(netdev, "tx_timeout recovery level %d\n",
289 pf->tx_timeout_recovery_level);
290
291 switch (pf->tx_timeout_recovery_level) {
292 case 0:
293 /* disable and re-enable queues for the VSI */
294 if (in_interrupt()) {
295 set_bit(__I40E_REINIT_REQUESTED, &pf->state);
296 set_bit(__I40E_REINIT_REQUESTED, &vsi->state);
297 } else {
298 i40e_vsi_reinit_locked(vsi);
299 }
300 break;
301 case 1:
302 set_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
303 break;
304 case 2:
305 set_bit(__I40E_CORE_RESET_REQUESTED, &pf->state);
306 break;
307 case 3:
308 set_bit(__I40E_GLOBAL_RESET_REQUESTED, &pf->state);
309 break;
310 default:
311 netdev_err(netdev, "tx_timeout recovery unsuccessful\n");
Neerav Parikhb5d06f02014-06-03 23:50:17 +0000312 set_bit(__I40E_DOWN_REQUESTED, &pf->state);
313 set_bit(__I40E_DOWN_REQUESTED, &vsi->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000314 break;
315 }
316 i40e_service_event_schedule(pf);
317 pf->tx_timeout_recovery_level++;
318}
319
320/**
321 * i40e_release_rx_desc - Store the new tail and head values
322 * @rx_ring: ring to bump
323 * @val: new head index
324 **/
325static inline void i40e_release_rx_desc(struct i40e_ring *rx_ring, u32 val)
326{
327 rx_ring->next_to_use = val;
328
329 /* Force memory writes to complete before letting h/w
330 * know there are new descriptors to fetch. (Only
331 * applicable for weak-ordered memory model archs,
332 * such as IA-64).
333 */
334 wmb();
335 writel(val, rx_ring->tail);
336}
337
338/**
339 * i40e_get_vsi_stats_struct - Get System Network Statistics
340 * @vsi: the VSI we care about
341 *
342 * Returns the address of the device statistics structure.
343 * The statistics are actually updated from the service task.
344 **/
345struct rtnl_link_stats64 *i40e_get_vsi_stats_struct(struct i40e_vsi *vsi)
346{
347 return &vsi->net_stats;
348}
349
350/**
351 * i40e_get_netdev_stats_struct - Get statistics for netdev interface
352 * @netdev: network interface device structure
353 *
354 * Returns the address of the device statistics structure.
355 * The statistics are actually updated from the service task.
356 **/
Vasu Dev38e00432014-08-01 13:27:03 -0700357#ifdef I40E_FCOE
358struct rtnl_link_stats64 *i40e_get_netdev_stats_struct(
359 struct net_device *netdev,
360 struct rtnl_link_stats64 *stats)
361#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000362static struct rtnl_link_stats64 *i40e_get_netdev_stats_struct(
363 struct net_device *netdev,
Alexander Duyck980e9b12013-09-28 06:01:03 +0000364 struct rtnl_link_stats64 *stats)
Vasu Dev38e00432014-08-01 13:27:03 -0700365#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000366{
367 struct i40e_netdev_priv *np = netdev_priv(netdev);
Akeem G Abodunrine7046ee2014-04-09 05:58:58 +0000368 struct i40e_ring *tx_ring, *rx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000369 struct i40e_vsi *vsi = np->vsi;
Alexander Duyck980e9b12013-09-28 06:01:03 +0000370 struct rtnl_link_stats64 *vsi_stats = i40e_get_vsi_stats_struct(vsi);
371 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000372
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +0000373 if (test_bit(__I40E_DOWN, &vsi->state))
374 return stats;
375
Jesse Brandeburg3c325ce2013-12-14 03:26:45 -0800376 if (!vsi->tx_rings)
377 return stats;
378
Alexander Duyck980e9b12013-09-28 06:01:03 +0000379 rcu_read_lock();
380 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck980e9b12013-09-28 06:01:03 +0000381 u64 bytes, packets;
382 unsigned int start;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000383
Alexander Duyck980e9b12013-09-28 06:01:03 +0000384 tx_ring = ACCESS_ONCE(vsi->tx_rings[i]);
385 if (!tx_ring)
386 continue;
387
388 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -0700389 start = u64_stats_fetch_begin_irq(&tx_ring->syncp);
Alexander Duyck980e9b12013-09-28 06:01:03 +0000390 packets = tx_ring->stats.packets;
391 bytes = tx_ring->stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -0700392 } while (u64_stats_fetch_retry_irq(&tx_ring->syncp, start));
Alexander Duyck980e9b12013-09-28 06:01:03 +0000393
394 stats->tx_packets += packets;
395 stats->tx_bytes += bytes;
396 rx_ring = &tx_ring[1];
397
398 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -0700399 start = u64_stats_fetch_begin_irq(&rx_ring->syncp);
Alexander Duyck980e9b12013-09-28 06:01:03 +0000400 packets = rx_ring->stats.packets;
401 bytes = rx_ring->stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -0700402 } while (u64_stats_fetch_retry_irq(&rx_ring->syncp, start));
Alexander Duyck980e9b12013-09-28 06:01:03 +0000403
404 stats->rx_packets += packets;
405 stats->rx_bytes += bytes;
406 }
407 rcu_read_unlock();
408
Akeem G Abodunrina5282f42014-05-10 04:49:03 +0000409 /* following stats updated by i40e_watchdog_subtask() */
Alexander Duyck980e9b12013-09-28 06:01:03 +0000410 stats->multicast = vsi_stats->multicast;
411 stats->tx_errors = vsi_stats->tx_errors;
412 stats->tx_dropped = vsi_stats->tx_dropped;
413 stats->rx_errors = vsi_stats->rx_errors;
414 stats->rx_crc_errors = vsi_stats->rx_crc_errors;
415 stats->rx_length_errors = vsi_stats->rx_length_errors;
416
417 return stats;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000418}
419
420/**
421 * i40e_vsi_reset_stats - Resets all stats of the given vsi
422 * @vsi: the VSI to have its stats reset
423 **/
424void i40e_vsi_reset_stats(struct i40e_vsi *vsi)
425{
426 struct rtnl_link_stats64 *ns;
427 int i;
428
429 if (!vsi)
430 return;
431
432 ns = i40e_get_vsi_stats_struct(vsi);
433 memset(ns, 0, sizeof(*ns));
434 memset(&vsi->net_stats_offsets, 0, sizeof(vsi->net_stats_offsets));
435 memset(&vsi->eth_stats, 0, sizeof(vsi->eth_stats));
436 memset(&vsi->eth_stats_offsets, 0, sizeof(vsi->eth_stats_offsets));
Greg Rose8e9dca52013-12-18 13:45:53 +0000437 if (vsi->rx_rings && vsi->rx_rings[0]) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000438 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e15b2013-09-28 06:00:58 +0000439 memset(&vsi->rx_rings[i]->stats, 0 ,
440 sizeof(vsi->rx_rings[i]->stats));
441 memset(&vsi->rx_rings[i]->rx_stats, 0 ,
442 sizeof(vsi->rx_rings[i]->rx_stats));
443 memset(&vsi->tx_rings[i]->stats, 0 ,
444 sizeof(vsi->tx_rings[i]->stats));
445 memset(&vsi->tx_rings[i]->tx_stats, 0,
446 sizeof(vsi->tx_rings[i]->tx_stats));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000447 }
Greg Rose8e9dca52013-12-18 13:45:53 +0000448 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000449 vsi->stat_offsets_loaded = false;
450}
451
452/**
453 * i40e_pf_reset_stats - Reset all of the stats for the given pf
454 * @pf: the PF to be reset
455 **/
456void i40e_pf_reset_stats(struct i40e_pf *pf)
457{
Shannon Nelsone91fdf72014-06-03 23:50:18 +0000458 int i;
459
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000460 memset(&pf->stats, 0, sizeof(pf->stats));
461 memset(&pf->stats_offsets, 0, sizeof(pf->stats_offsets));
462 pf->stat_offsets_loaded = false;
Shannon Nelsone91fdf72014-06-03 23:50:18 +0000463
464 for (i = 0; i < I40E_MAX_VEB; i++) {
465 if (pf->veb[i]) {
466 memset(&pf->veb[i]->stats, 0,
467 sizeof(pf->veb[i]->stats));
468 memset(&pf->veb[i]->stats_offsets, 0,
469 sizeof(pf->veb[i]->stats_offsets));
470 pf->veb[i]->stat_offsets_loaded = false;
471 }
472 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000473}
474
475/**
476 * i40e_stat_update48 - read and update a 48 bit stat from the chip
477 * @hw: ptr to the hardware info
478 * @hireg: the high 32 bit reg to read
479 * @loreg: the low 32 bit reg to read
480 * @offset_loaded: has the initial offset been loaded yet
481 * @offset: ptr to current offset value
482 * @stat: ptr to the stat
483 *
484 * Since the device stats are not reset at PFReset, they likely will not
485 * be zeroed when the driver starts. We'll save the first values read
486 * and use them as offsets to be subtracted from the raw values in order
487 * to report stats that count from zero. In the process, we also manage
488 * the potential roll-over.
489 **/
490static void i40e_stat_update48(struct i40e_hw *hw, u32 hireg, u32 loreg,
491 bool offset_loaded, u64 *offset, u64 *stat)
492{
493 u64 new_data;
494
Shannon Nelsonab600852014-01-17 15:36:39 -0800495 if (hw->device_id == I40E_DEV_ID_QEMU) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000496 new_data = rd32(hw, loreg);
497 new_data |= ((u64)(rd32(hw, hireg) & 0xFFFF)) << 32;
498 } else {
499 new_data = rd64(hw, loreg);
500 }
501 if (!offset_loaded)
502 *offset = new_data;
503 if (likely(new_data >= *offset))
504 *stat = new_data - *offset;
505 else
506 *stat = (new_data + ((u64)1 << 48)) - *offset;
507 *stat &= 0xFFFFFFFFFFFFULL;
508}
509
510/**
511 * i40e_stat_update32 - read and update a 32 bit stat from the chip
512 * @hw: ptr to the hardware info
513 * @reg: the hw reg to read
514 * @offset_loaded: has the initial offset been loaded yet
515 * @offset: ptr to current offset value
516 * @stat: ptr to the stat
517 **/
518static void i40e_stat_update32(struct i40e_hw *hw, u32 reg,
519 bool offset_loaded, u64 *offset, u64 *stat)
520{
521 u32 new_data;
522
523 new_data = rd32(hw, reg);
524 if (!offset_loaded)
525 *offset = new_data;
526 if (likely(new_data >= *offset))
527 *stat = (u32)(new_data - *offset);
528 else
529 *stat = (u32)((new_data + ((u64)1 << 32)) - *offset);
530}
531
532/**
533 * i40e_update_eth_stats - Update VSI-specific ethernet statistics counters.
534 * @vsi: the VSI to be updated
535 **/
536void i40e_update_eth_stats(struct i40e_vsi *vsi)
537{
538 int stat_idx = le16_to_cpu(vsi->info.stat_counter_idx);
539 struct i40e_pf *pf = vsi->back;
540 struct i40e_hw *hw = &pf->hw;
541 struct i40e_eth_stats *oes;
542 struct i40e_eth_stats *es; /* device's eth stats */
543
544 es = &vsi->eth_stats;
545 oes = &vsi->eth_stats_offsets;
546
547 /* Gather up the stats that the hw collects */
548 i40e_stat_update32(hw, I40E_GLV_TEPC(stat_idx),
549 vsi->stat_offsets_loaded,
550 &oes->tx_errors, &es->tx_errors);
551 i40e_stat_update32(hw, I40E_GLV_RDPC(stat_idx),
552 vsi->stat_offsets_loaded,
553 &oes->rx_discards, &es->rx_discards);
Shannon Nelson41a9e552014-04-23 04:50:20 +0000554 i40e_stat_update32(hw, I40E_GLV_RUPP(stat_idx),
555 vsi->stat_offsets_loaded,
556 &oes->rx_unknown_protocol, &es->rx_unknown_protocol);
557 i40e_stat_update32(hw, I40E_GLV_TEPC(stat_idx),
558 vsi->stat_offsets_loaded,
559 &oes->tx_errors, &es->tx_errors);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000560
561 i40e_stat_update48(hw, I40E_GLV_GORCH(stat_idx),
562 I40E_GLV_GORCL(stat_idx),
563 vsi->stat_offsets_loaded,
564 &oes->rx_bytes, &es->rx_bytes);
565 i40e_stat_update48(hw, I40E_GLV_UPRCH(stat_idx),
566 I40E_GLV_UPRCL(stat_idx),
567 vsi->stat_offsets_loaded,
568 &oes->rx_unicast, &es->rx_unicast);
569 i40e_stat_update48(hw, I40E_GLV_MPRCH(stat_idx),
570 I40E_GLV_MPRCL(stat_idx),
571 vsi->stat_offsets_loaded,
572 &oes->rx_multicast, &es->rx_multicast);
573 i40e_stat_update48(hw, I40E_GLV_BPRCH(stat_idx),
574 I40E_GLV_BPRCL(stat_idx),
575 vsi->stat_offsets_loaded,
576 &oes->rx_broadcast, &es->rx_broadcast);
577
578 i40e_stat_update48(hw, I40E_GLV_GOTCH(stat_idx),
579 I40E_GLV_GOTCL(stat_idx),
580 vsi->stat_offsets_loaded,
581 &oes->tx_bytes, &es->tx_bytes);
582 i40e_stat_update48(hw, I40E_GLV_UPTCH(stat_idx),
583 I40E_GLV_UPTCL(stat_idx),
584 vsi->stat_offsets_loaded,
585 &oes->tx_unicast, &es->tx_unicast);
586 i40e_stat_update48(hw, I40E_GLV_MPTCH(stat_idx),
587 I40E_GLV_MPTCL(stat_idx),
588 vsi->stat_offsets_loaded,
589 &oes->tx_multicast, &es->tx_multicast);
590 i40e_stat_update48(hw, I40E_GLV_BPTCH(stat_idx),
591 I40E_GLV_BPTCL(stat_idx),
592 vsi->stat_offsets_loaded,
593 &oes->tx_broadcast, &es->tx_broadcast);
594 vsi->stat_offsets_loaded = true;
595}
596
597/**
598 * i40e_update_veb_stats - Update Switch component statistics
599 * @veb: the VEB being updated
600 **/
601static void i40e_update_veb_stats(struct i40e_veb *veb)
602{
603 struct i40e_pf *pf = veb->pf;
604 struct i40e_hw *hw = &pf->hw;
605 struct i40e_eth_stats *oes;
606 struct i40e_eth_stats *es; /* device's eth stats */
607 int idx = 0;
608
609 idx = veb->stats_idx;
610 es = &veb->stats;
611 oes = &veb->stats_offsets;
612
613 /* Gather up the stats that the hw collects */
614 i40e_stat_update32(hw, I40E_GLSW_TDPC(idx),
615 veb->stat_offsets_loaded,
616 &oes->tx_discards, &es->tx_discards);
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +0000617 if (hw->revision_id > 0)
618 i40e_stat_update32(hw, I40E_GLSW_RUPP(idx),
619 veb->stat_offsets_loaded,
620 &oes->rx_unknown_protocol,
621 &es->rx_unknown_protocol);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000622 i40e_stat_update48(hw, I40E_GLSW_GORCH(idx), I40E_GLSW_GORCL(idx),
623 veb->stat_offsets_loaded,
624 &oes->rx_bytes, &es->rx_bytes);
625 i40e_stat_update48(hw, I40E_GLSW_UPRCH(idx), I40E_GLSW_UPRCL(idx),
626 veb->stat_offsets_loaded,
627 &oes->rx_unicast, &es->rx_unicast);
628 i40e_stat_update48(hw, I40E_GLSW_MPRCH(idx), I40E_GLSW_MPRCL(idx),
629 veb->stat_offsets_loaded,
630 &oes->rx_multicast, &es->rx_multicast);
631 i40e_stat_update48(hw, I40E_GLSW_BPRCH(idx), I40E_GLSW_BPRCL(idx),
632 veb->stat_offsets_loaded,
633 &oes->rx_broadcast, &es->rx_broadcast);
634
635 i40e_stat_update48(hw, I40E_GLSW_GOTCH(idx), I40E_GLSW_GOTCL(idx),
636 veb->stat_offsets_loaded,
637 &oes->tx_bytes, &es->tx_bytes);
638 i40e_stat_update48(hw, I40E_GLSW_UPTCH(idx), I40E_GLSW_UPTCL(idx),
639 veb->stat_offsets_loaded,
640 &oes->tx_unicast, &es->tx_unicast);
641 i40e_stat_update48(hw, I40E_GLSW_MPTCH(idx), I40E_GLSW_MPTCL(idx),
642 veb->stat_offsets_loaded,
643 &oes->tx_multicast, &es->tx_multicast);
644 i40e_stat_update48(hw, I40E_GLSW_BPTCH(idx), I40E_GLSW_BPTCL(idx),
645 veb->stat_offsets_loaded,
646 &oes->tx_broadcast, &es->tx_broadcast);
647 veb->stat_offsets_loaded = true;
648}
649
Vasu Dev38e00432014-08-01 13:27:03 -0700650#ifdef I40E_FCOE
651/**
652 * i40e_update_fcoe_stats - Update FCoE-specific ethernet statistics counters.
653 * @vsi: the VSI that is capable of doing FCoE
654 **/
655static void i40e_update_fcoe_stats(struct i40e_vsi *vsi)
656{
657 struct i40e_pf *pf = vsi->back;
658 struct i40e_hw *hw = &pf->hw;
659 struct i40e_fcoe_stats *ofs;
660 struct i40e_fcoe_stats *fs; /* device's eth stats */
661 int idx;
662
663 if (vsi->type != I40E_VSI_FCOE)
664 return;
665
666 idx = (pf->pf_seid - I40E_BASE_PF_SEID) + I40E_FCOE_PF_STAT_OFFSET;
667 fs = &vsi->fcoe_stats;
668 ofs = &vsi->fcoe_stats_offsets;
669
670 i40e_stat_update32(hw, I40E_GL_FCOEPRC(idx),
671 vsi->fcoe_stat_offsets_loaded,
672 &ofs->rx_fcoe_packets, &fs->rx_fcoe_packets);
673 i40e_stat_update48(hw, I40E_GL_FCOEDWRCH(idx), I40E_GL_FCOEDWRCL(idx),
674 vsi->fcoe_stat_offsets_loaded,
675 &ofs->rx_fcoe_dwords, &fs->rx_fcoe_dwords);
676 i40e_stat_update32(hw, I40E_GL_FCOERPDC(idx),
677 vsi->fcoe_stat_offsets_loaded,
678 &ofs->rx_fcoe_dropped, &fs->rx_fcoe_dropped);
679 i40e_stat_update32(hw, I40E_GL_FCOEPTC(idx),
680 vsi->fcoe_stat_offsets_loaded,
681 &ofs->tx_fcoe_packets, &fs->tx_fcoe_packets);
682 i40e_stat_update48(hw, I40E_GL_FCOEDWTCH(idx), I40E_GL_FCOEDWTCL(idx),
683 vsi->fcoe_stat_offsets_loaded,
684 &ofs->tx_fcoe_dwords, &fs->tx_fcoe_dwords);
685 i40e_stat_update32(hw, I40E_GL_FCOECRC(idx),
686 vsi->fcoe_stat_offsets_loaded,
687 &ofs->fcoe_bad_fccrc, &fs->fcoe_bad_fccrc);
688 i40e_stat_update32(hw, I40E_GL_FCOELAST(idx),
689 vsi->fcoe_stat_offsets_loaded,
690 &ofs->fcoe_last_error, &fs->fcoe_last_error);
691 i40e_stat_update32(hw, I40E_GL_FCOEDDPC(idx),
692 vsi->fcoe_stat_offsets_loaded,
693 &ofs->fcoe_ddp_count, &fs->fcoe_ddp_count);
694
695 vsi->fcoe_stat_offsets_loaded = true;
696}
697
698#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000699/**
700 * i40e_update_link_xoff_rx - Update XOFF received in link flow control mode
701 * @pf: the corresponding PF
702 *
703 * Update the Rx XOFF counter (PAUSE frames) in link flow control mode
704 **/
705static void i40e_update_link_xoff_rx(struct i40e_pf *pf)
706{
707 struct i40e_hw_port_stats *osd = &pf->stats_offsets;
708 struct i40e_hw_port_stats *nsd = &pf->stats;
709 struct i40e_hw *hw = &pf->hw;
710 u64 xoff = 0;
711 u16 i, v;
712
713 if ((hw->fc.current_mode != I40E_FC_FULL) &&
714 (hw->fc.current_mode != I40E_FC_RX_PAUSE))
715 return;
716
717 xoff = nsd->link_xoff_rx;
718 i40e_stat_update32(hw, I40E_GLPRT_LXOFFRXC(hw->port),
719 pf->stat_offsets_loaded,
720 &osd->link_xoff_rx, &nsd->link_xoff_rx);
721
722 /* No new LFC xoff rx */
723 if (!(nsd->link_xoff_rx - xoff))
724 return;
725
726 /* Clear the __I40E_HANG_CHECK_ARMED bit for all Tx rings */
Mitch Williams505682c2014-05-20 08:01:37 +0000727 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000728 struct i40e_vsi *vsi = pf->vsi[v];
729
Mitch Williamsddfda802014-05-10 04:49:10 +0000730 if (!vsi || !vsi->tx_rings[0])
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000731 continue;
732
733 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e15b2013-09-28 06:00:58 +0000734 struct i40e_ring *ring = vsi->tx_rings[i];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000735 clear_bit(__I40E_HANG_CHECK_ARMED, &ring->state);
736 }
737 }
738}
739
740/**
741 * i40e_update_prio_xoff_rx - Update XOFF received in PFC mode
742 * @pf: the corresponding PF
743 *
744 * Update the Rx XOFF counter (PAUSE frames) in PFC mode
745 **/
746static void i40e_update_prio_xoff_rx(struct i40e_pf *pf)
747{
748 struct i40e_hw_port_stats *osd = &pf->stats_offsets;
749 struct i40e_hw_port_stats *nsd = &pf->stats;
750 bool xoff[I40E_MAX_TRAFFIC_CLASS] = {false};
751 struct i40e_dcbx_config *dcb_cfg;
752 struct i40e_hw *hw = &pf->hw;
753 u16 i, v;
754 u8 tc;
755
756 dcb_cfg = &hw->local_dcbx_config;
757
758 /* See if DCB enabled with PFC TC */
759 if (!(pf->flags & I40E_FLAG_DCB_ENABLED) ||
760 !(dcb_cfg->pfc.pfcenable)) {
761 i40e_update_link_xoff_rx(pf);
762 return;
763 }
764
765 for (i = 0; i < I40E_MAX_USER_PRIORITY; i++) {
766 u64 prio_xoff = nsd->priority_xoff_rx[i];
767 i40e_stat_update32(hw, I40E_GLPRT_PXOFFRXC(hw->port, i),
768 pf->stat_offsets_loaded,
769 &osd->priority_xoff_rx[i],
770 &nsd->priority_xoff_rx[i]);
771
772 /* No new PFC xoff rx */
773 if (!(nsd->priority_xoff_rx[i] - prio_xoff))
774 continue;
775 /* Get the TC for given priority */
776 tc = dcb_cfg->etscfg.prioritytable[i];
777 xoff[tc] = true;
778 }
779
780 /* Clear the __I40E_HANG_CHECK_ARMED bit for Tx rings */
Mitch Williams505682c2014-05-20 08:01:37 +0000781 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000782 struct i40e_vsi *vsi = pf->vsi[v];
783
Mitch Williamsddfda802014-05-10 04:49:10 +0000784 if (!vsi || !vsi->tx_rings[0])
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000785 continue;
786
787 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e15b2013-09-28 06:00:58 +0000788 struct i40e_ring *ring = vsi->tx_rings[i];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000789
790 tc = ring->dcb_tc;
791 if (xoff[tc])
792 clear_bit(__I40E_HANG_CHECK_ARMED,
793 &ring->state);
794 }
795 }
796}
797
798/**
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000799 * i40e_update_vsi_stats - Update the vsi statistics counters.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000800 * @vsi: the VSI to be updated
801 *
802 * There are a few instances where we store the same stat in a
803 * couple of different structs. This is partly because we have
804 * the netdev stats that need to be filled out, which is slightly
805 * different from the "eth_stats" defined by the chip and used in
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000806 * VF communications. We sort it out here.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000807 **/
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000808static void i40e_update_vsi_stats(struct i40e_vsi *vsi)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000809{
810 struct i40e_pf *pf = vsi->back;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000811 struct rtnl_link_stats64 *ons;
812 struct rtnl_link_stats64 *ns; /* netdev stats */
813 struct i40e_eth_stats *oes;
814 struct i40e_eth_stats *es; /* device's eth stats */
815 u32 tx_restart, tx_busy;
Akeem G Abodunrinbf00b372014-10-17 03:14:39 +0000816 struct i40e_ring *p;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000817 u32 rx_page, rx_buf;
Akeem G Abodunrinbf00b372014-10-17 03:14:39 +0000818 u64 bytes, packets;
819 unsigned int start;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000820 u64 rx_p, rx_b;
821 u64 tx_p, tx_b;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000822 u16 q;
823
824 if (test_bit(__I40E_DOWN, &vsi->state) ||
825 test_bit(__I40E_CONFIG_BUSY, &pf->state))
826 return;
827
828 ns = i40e_get_vsi_stats_struct(vsi);
829 ons = &vsi->net_stats_offsets;
830 es = &vsi->eth_stats;
831 oes = &vsi->eth_stats_offsets;
832
833 /* Gather up the netdev and vsi stats that the driver collects
834 * on the fly during packet processing
835 */
836 rx_b = rx_p = 0;
837 tx_b = tx_p = 0;
838 tx_restart = tx_busy = 0;
839 rx_page = 0;
840 rx_buf = 0;
Alexander Duyck980e9b12013-09-28 06:01:03 +0000841 rcu_read_lock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000842 for (q = 0; q < vsi->num_queue_pairs; q++) {
Alexander Duyck980e9b12013-09-28 06:01:03 +0000843 /* locate Tx ring */
844 p = ACCESS_ONCE(vsi->tx_rings[q]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000845
Alexander Duyck980e9b12013-09-28 06:01:03 +0000846 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -0700847 start = u64_stats_fetch_begin_irq(&p->syncp);
Alexander Duyck980e9b12013-09-28 06:01:03 +0000848 packets = p->stats.packets;
849 bytes = p->stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -0700850 } while (u64_stats_fetch_retry_irq(&p->syncp, start));
Alexander Duyck980e9b12013-09-28 06:01:03 +0000851 tx_b += bytes;
852 tx_p += packets;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000853 tx_restart += p->tx_stats.restart_queue;
854 tx_busy += p->tx_stats.tx_busy;
Alexander Duyck980e9b12013-09-28 06:01:03 +0000855
856 /* Rx queue is part of the same block as Tx queue */
857 p = &p[1];
858 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -0700859 start = u64_stats_fetch_begin_irq(&p->syncp);
Alexander Duyck980e9b12013-09-28 06:01:03 +0000860 packets = p->stats.packets;
861 bytes = p->stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -0700862 } while (u64_stats_fetch_retry_irq(&p->syncp, start));
Alexander Duyck980e9b12013-09-28 06:01:03 +0000863 rx_b += bytes;
864 rx_p += packets;
Mitch Williams420136c2013-12-18 13:45:59 +0000865 rx_buf += p->rx_stats.alloc_buff_failed;
866 rx_page += p->rx_stats.alloc_page_failed;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000867 }
Alexander Duyck980e9b12013-09-28 06:01:03 +0000868 rcu_read_unlock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000869 vsi->tx_restart = tx_restart;
870 vsi->tx_busy = tx_busy;
871 vsi->rx_page_failed = rx_page;
872 vsi->rx_buf_failed = rx_buf;
873
874 ns->rx_packets = rx_p;
875 ns->rx_bytes = rx_b;
876 ns->tx_packets = tx_p;
877 ns->tx_bytes = tx_b;
878
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000879 /* update netdev stats from eth stats */
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000880 i40e_update_eth_stats(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000881 ons->tx_errors = oes->tx_errors;
882 ns->tx_errors = es->tx_errors;
883 ons->multicast = oes->rx_multicast;
884 ns->multicast = es->rx_multicast;
Shannon Nelson41a9e552014-04-23 04:50:20 +0000885 ons->rx_dropped = oes->rx_discards;
886 ns->rx_dropped = es->rx_discards;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000887 ons->tx_dropped = oes->tx_discards;
888 ns->tx_dropped = es->tx_discards;
889
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000890 /* pull in a couple PF stats if this is the main vsi */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000891 if (vsi == pf->vsi[pf->lan_vsi]) {
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000892 ns->rx_crc_errors = pf->stats.crc_errors;
893 ns->rx_errors = pf->stats.crc_errors + pf->stats.illegal_bytes;
894 ns->rx_length_errors = pf->stats.rx_length_errors;
895 }
896}
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000897
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000898/**
899 * i40e_update_pf_stats - Update the pf statistics counters.
900 * @pf: the PF to be updated
901 **/
902static void i40e_update_pf_stats(struct i40e_pf *pf)
903{
904 struct i40e_hw_port_stats *osd = &pf->stats_offsets;
905 struct i40e_hw_port_stats *nsd = &pf->stats;
906 struct i40e_hw *hw = &pf->hw;
907 u32 val;
908 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000909
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000910 i40e_stat_update48(hw, I40E_GLPRT_GORCH(hw->port),
911 I40E_GLPRT_GORCL(hw->port),
912 pf->stat_offsets_loaded,
913 &osd->eth.rx_bytes, &nsd->eth.rx_bytes);
914 i40e_stat_update48(hw, I40E_GLPRT_GOTCH(hw->port),
915 I40E_GLPRT_GOTCL(hw->port),
916 pf->stat_offsets_loaded,
917 &osd->eth.tx_bytes, &nsd->eth.tx_bytes);
918 i40e_stat_update32(hw, I40E_GLPRT_RDPC(hw->port),
919 pf->stat_offsets_loaded,
920 &osd->eth.rx_discards,
921 &nsd->eth.rx_discards);
922 i40e_stat_update32(hw, I40E_GLPRT_TDPC(hw->port),
923 pf->stat_offsets_loaded,
924 &osd->eth.tx_discards,
925 &nsd->eth.tx_discards);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000926
Shannon Nelson532d2832014-04-23 04:50:09 +0000927 i40e_stat_update48(hw, I40E_GLPRT_UPRCH(hw->port),
928 I40E_GLPRT_UPRCL(hw->port),
929 pf->stat_offsets_loaded,
930 &osd->eth.rx_unicast,
931 &nsd->eth.rx_unicast);
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000932 i40e_stat_update48(hw, I40E_GLPRT_MPRCH(hw->port),
933 I40E_GLPRT_MPRCL(hw->port),
934 pf->stat_offsets_loaded,
935 &osd->eth.rx_multicast,
936 &nsd->eth.rx_multicast);
Shannon Nelson532d2832014-04-23 04:50:09 +0000937 i40e_stat_update48(hw, I40E_GLPRT_BPRCH(hw->port),
938 I40E_GLPRT_BPRCL(hw->port),
939 pf->stat_offsets_loaded,
940 &osd->eth.rx_broadcast,
941 &nsd->eth.rx_broadcast);
942 i40e_stat_update48(hw, I40E_GLPRT_UPTCH(hw->port),
943 I40E_GLPRT_UPTCL(hw->port),
944 pf->stat_offsets_loaded,
945 &osd->eth.tx_unicast,
946 &nsd->eth.tx_unicast);
947 i40e_stat_update48(hw, I40E_GLPRT_MPTCH(hw->port),
948 I40E_GLPRT_MPTCL(hw->port),
949 pf->stat_offsets_loaded,
950 &osd->eth.tx_multicast,
951 &nsd->eth.tx_multicast);
952 i40e_stat_update48(hw, I40E_GLPRT_BPTCH(hw->port),
953 I40E_GLPRT_BPTCL(hw->port),
954 pf->stat_offsets_loaded,
955 &osd->eth.tx_broadcast,
956 &nsd->eth.tx_broadcast);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000957
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000958 i40e_stat_update32(hw, I40E_GLPRT_TDOLD(hw->port),
959 pf->stat_offsets_loaded,
960 &osd->tx_dropped_link_down,
961 &nsd->tx_dropped_link_down);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000962
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000963 i40e_stat_update32(hw, I40E_GLPRT_CRCERRS(hw->port),
964 pf->stat_offsets_loaded,
965 &osd->crc_errors, &nsd->crc_errors);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000966
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000967 i40e_stat_update32(hw, I40E_GLPRT_ILLERRC(hw->port),
968 pf->stat_offsets_loaded,
969 &osd->illegal_bytes, &nsd->illegal_bytes);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000970
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000971 i40e_stat_update32(hw, I40E_GLPRT_MLFC(hw->port),
972 pf->stat_offsets_loaded,
973 &osd->mac_local_faults,
974 &nsd->mac_local_faults);
975 i40e_stat_update32(hw, I40E_GLPRT_MRFC(hw->port),
976 pf->stat_offsets_loaded,
977 &osd->mac_remote_faults,
978 &nsd->mac_remote_faults);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000979
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000980 i40e_stat_update32(hw, I40E_GLPRT_RLEC(hw->port),
981 pf->stat_offsets_loaded,
982 &osd->rx_length_errors,
983 &nsd->rx_length_errors);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000984
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000985 i40e_stat_update32(hw, I40E_GLPRT_LXONRXC(hw->port),
986 pf->stat_offsets_loaded,
987 &osd->link_xon_rx, &nsd->link_xon_rx);
988 i40e_stat_update32(hw, I40E_GLPRT_LXONTXC(hw->port),
989 pf->stat_offsets_loaded,
990 &osd->link_xon_tx, &nsd->link_xon_tx);
991 i40e_update_prio_xoff_rx(pf); /* handles I40E_GLPRT_LXOFFRXC */
992 i40e_stat_update32(hw, I40E_GLPRT_LXOFFTXC(hw->port),
993 pf->stat_offsets_loaded,
994 &osd->link_xoff_tx, &nsd->link_xoff_tx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000995
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000996 for (i = 0; i < 8; i++) {
997 i40e_stat_update32(hw, I40E_GLPRT_PXONRXC(hw->port, i),
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000998 pf->stat_offsets_loaded,
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000999 &osd->priority_xon_rx[i],
1000 &nsd->priority_xon_rx[i]);
1001 i40e_stat_update32(hw, I40E_GLPRT_PXONTXC(hw->port, i),
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001002 pf->stat_offsets_loaded,
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001003 &osd->priority_xon_tx[i],
1004 &nsd->priority_xon_tx[i]);
1005 i40e_stat_update32(hw, I40E_GLPRT_PXOFFTXC(hw->port, i),
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001006 pf->stat_offsets_loaded,
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001007 &osd->priority_xoff_tx[i],
1008 &nsd->priority_xoff_tx[i]);
1009 i40e_stat_update32(hw,
1010 I40E_GLPRT_RXON2OFFCNT(hw->port, i),
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001011 pf->stat_offsets_loaded,
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001012 &osd->priority_xon_2_xoff[i],
1013 &nsd->priority_xon_2_xoff[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001014 }
1015
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001016 i40e_stat_update48(hw, I40E_GLPRT_PRC64H(hw->port),
1017 I40E_GLPRT_PRC64L(hw->port),
1018 pf->stat_offsets_loaded,
1019 &osd->rx_size_64, &nsd->rx_size_64);
1020 i40e_stat_update48(hw, I40E_GLPRT_PRC127H(hw->port),
1021 I40E_GLPRT_PRC127L(hw->port),
1022 pf->stat_offsets_loaded,
1023 &osd->rx_size_127, &nsd->rx_size_127);
1024 i40e_stat_update48(hw, I40E_GLPRT_PRC255H(hw->port),
1025 I40E_GLPRT_PRC255L(hw->port),
1026 pf->stat_offsets_loaded,
1027 &osd->rx_size_255, &nsd->rx_size_255);
1028 i40e_stat_update48(hw, I40E_GLPRT_PRC511H(hw->port),
1029 I40E_GLPRT_PRC511L(hw->port),
1030 pf->stat_offsets_loaded,
1031 &osd->rx_size_511, &nsd->rx_size_511);
1032 i40e_stat_update48(hw, I40E_GLPRT_PRC1023H(hw->port),
1033 I40E_GLPRT_PRC1023L(hw->port),
1034 pf->stat_offsets_loaded,
1035 &osd->rx_size_1023, &nsd->rx_size_1023);
1036 i40e_stat_update48(hw, I40E_GLPRT_PRC1522H(hw->port),
1037 I40E_GLPRT_PRC1522L(hw->port),
1038 pf->stat_offsets_loaded,
1039 &osd->rx_size_1522, &nsd->rx_size_1522);
1040 i40e_stat_update48(hw, I40E_GLPRT_PRC9522H(hw->port),
1041 I40E_GLPRT_PRC9522L(hw->port),
1042 pf->stat_offsets_loaded,
1043 &osd->rx_size_big, &nsd->rx_size_big);
1044
1045 i40e_stat_update48(hw, I40E_GLPRT_PTC64H(hw->port),
1046 I40E_GLPRT_PTC64L(hw->port),
1047 pf->stat_offsets_loaded,
1048 &osd->tx_size_64, &nsd->tx_size_64);
1049 i40e_stat_update48(hw, I40E_GLPRT_PTC127H(hw->port),
1050 I40E_GLPRT_PTC127L(hw->port),
1051 pf->stat_offsets_loaded,
1052 &osd->tx_size_127, &nsd->tx_size_127);
1053 i40e_stat_update48(hw, I40E_GLPRT_PTC255H(hw->port),
1054 I40E_GLPRT_PTC255L(hw->port),
1055 pf->stat_offsets_loaded,
1056 &osd->tx_size_255, &nsd->tx_size_255);
1057 i40e_stat_update48(hw, I40E_GLPRT_PTC511H(hw->port),
1058 I40E_GLPRT_PTC511L(hw->port),
1059 pf->stat_offsets_loaded,
1060 &osd->tx_size_511, &nsd->tx_size_511);
1061 i40e_stat_update48(hw, I40E_GLPRT_PTC1023H(hw->port),
1062 I40E_GLPRT_PTC1023L(hw->port),
1063 pf->stat_offsets_loaded,
1064 &osd->tx_size_1023, &nsd->tx_size_1023);
1065 i40e_stat_update48(hw, I40E_GLPRT_PTC1522H(hw->port),
1066 I40E_GLPRT_PTC1522L(hw->port),
1067 pf->stat_offsets_loaded,
1068 &osd->tx_size_1522, &nsd->tx_size_1522);
1069 i40e_stat_update48(hw, I40E_GLPRT_PTC9522H(hw->port),
1070 I40E_GLPRT_PTC9522L(hw->port),
1071 pf->stat_offsets_loaded,
1072 &osd->tx_size_big, &nsd->tx_size_big);
1073
1074 i40e_stat_update32(hw, I40E_GLPRT_RUC(hw->port),
1075 pf->stat_offsets_loaded,
1076 &osd->rx_undersize, &nsd->rx_undersize);
1077 i40e_stat_update32(hw, I40E_GLPRT_RFC(hw->port),
1078 pf->stat_offsets_loaded,
1079 &osd->rx_fragments, &nsd->rx_fragments);
1080 i40e_stat_update32(hw, I40E_GLPRT_ROC(hw->port),
1081 pf->stat_offsets_loaded,
1082 &osd->rx_oversize, &nsd->rx_oversize);
1083 i40e_stat_update32(hw, I40E_GLPRT_RJC(hw->port),
1084 pf->stat_offsets_loaded,
1085 &osd->rx_jabber, &nsd->rx_jabber);
1086
Anjali Singhai Jain433c47d2014-05-22 06:32:17 +00001087 /* FDIR stats */
1088 i40e_stat_update32(hw, I40E_GLQF_PCNT(pf->fd_atr_cnt_idx),
1089 pf->stat_offsets_loaded,
1090 &osd->fd_atr_match, &nsd->fd_atr_match);
1091 i40e_stat_update32(hw, I40E_GLQF_PCNT(pf->fd_sb_cnt_idx),
1092 pf->stat_offsets_loaded,
1093 &osd->fd_sb_match, &nsd->fd_sb_match);
1094
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001095 val = rd32(hw, I40E_PRTPM_EEE_STAT);
1096 nsd->tx_lpi_status =
1097 (val & I40E_PRTPM_EEE_STAT_TX_LPI_STATUS_MASK) >>
1098 I40E_PRTPM_EEE_STAT_TX_LPI_STATUS_SHIFT;
1099 nsd->rx_lpi_status =
1100 (val & I40E_PRTPM_EEE_STAT_RX_LPI_STATUS_MASK) >>
1101 I40E_PRTPM_EEE_STAT_RX_LPI_STATUS_SHIFT;
1102 i40e_stat_update32(hw, I40E_PRTPM_TLPIC,
1103 pf->stat_offsets_loaded,
1104 &osd->tx_lpi_count, &nsd->tx_lpi_count);
1105 i40e_stat_update32(hw, I40E_PRTPM_RLPIC,
1106 pf->stat_offsets_loaded,
1107 &osd->rx_lpi_count, &nsd->rx_lpi_count);
1108
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001109 pf->stat_offsets_loaded = true;
1110}
1111
1112/**
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001113 * i40e_update_stats - Update the various statistics counters.
1114 * @vsi: the VSI to be updated
1115 *
1116 * Update the various stats for this VSI and its related entities.
1117 **/
1118void i40e_update_stats(struct i40e_vsi *vsi)
1119{
1120 struct i40e_pf *pf = vsi->back;
1121
1122 if (vsi == pf->vsi[pf->lan_vsi])
1123 i40e_update_pf_stats(pf);
1124
1125 i40e_update_vsi_stats(vsi);
Vasu Dev38e00432014-08-01 13:27:03 -07001126#ifdef I40E_FCOE
1127 i40e_update_fcoe_stats(vsi);
1128#endif
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001129}
1130
1131/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001132 * i40e_find_filter - Search VSI filter list for specific mac/vlan filter
1133 * @vsi: the VSI to be searched
1134 * @macaddr: the MAC address
1135 * @vlan: the vlan
1136 * @is_vf: make sure its a vf filter, else doesn't matter
1137 * @is_netdev: make sure its a netdev filter, else doesn't matter
1138 *
1139 * Returns ptr to the filter object or NULL
1140 **/
1141static struct i40e_mac_filter *i40e_find_filter(struct i40e_vsi *vsi,
1142 u8 *macaddr, s16 vlan,
1143 bool is_vf, bool is_netdev)
1144{
1145 struct i40e_mac_filter *f;
1146
1147 if (!vsi || !macaddr)
1148 return NULL;
1149
1150 list_for_each_entry(f, &vsi->mac_filter_list, list) {
1151 if ((ether_addr_equal(macaddr, f->macaddr)) &&
1152 (vlan == f->vlan) &&
1153 (!is_vf || f->is_vf) &&
1154 (!is_netdev || f->is_netdev))
1155 return f;
1156 }
1157 return NULL;
1158}
1159
1160/**
1161 * i40e_find_mac - Find a mac addr in the macvlan filters list
1162 * @vsi: the VSI to be searched
1163 * @macaddr: the MAC address we are searching for
1164 * @is_vf: make sure its a vf filter, else doesn't matter
1165 * @is_netdev: make sure its a netdev filter, else doesn't matter
1166 *
1167 * Returns the first filter with the provided MAC address or NULL if
1168 * MAC address was not found
1169 **/
1170struct i40e_mac_filter *i40e_find_mac(struct i40e_vsi *vsi, u8 *macaddr,
1171 bool is_vf, bool is_netdev)
1172{
1173 struct i40e_mac_filter *f;
1174
1175 if (!vsi || !macaddr)
1176 return NULL;
1177
1178 list_for_each_entry(f, &vsi->mac_filter_list, list) {
1179 if ((ether_addr_equal(macaddr, f->macaddr)) &&
1180 (!is_vf || f->is_vf) &&
1181 (!is_netdev || f->is_netdev))
1182 return f;
1183 }
1184 return NULL;
1185}
1186
1187/**
1188 * i40e_is_vsi_in_vlan - Check if VSI is in vlan mode
1189 * @vsi: the VSI to be searched
1190 *
1191 * Returns true if VSI is in vlan mode or false otherwise
1192 **/
1193bool i40e_is_vsi_in_vlan(struct i40e_vsi *vsi)
1194{
1195 struct i40e_mac_filter *f;
1196
1197 /* Only -1 for all the filters denotes not in vlan mode
1198 * so we have to go through all the list in order to make sure
1199 */
1200 list_for_each_entry(f, &vsi->mac_filter_list, list) {
1201 if (f->vlan >= 0)
1202 return true;
1203 }
1204
1205 return false;
1206}
1207
1208/**
1209 * i40e_put_mac_in_vlan - Make macvlan filters from macaddrs and vlans
1210 * @vsi: the VSI to be searched
1211 * @macaddr: the mac address to be filtered
1212 * @is_vf: true if it is a vf
1213 * @is_netdev: true if it is a netdev
1214 *
1215 * Goes through all the macvlan filters and adds a
1216 * macvlan filter for each unique vlan that already exists
1217 *
1218 * Returns first filter found on success, else NULL
1219 **/
1220struct i40e_mac_filter *i40e_put_mac_in_vlan(struct i40e_vsi *vsi, u8 *macaddr,
1221 bool is_vf, bool is_netdev)
1222{
1223 struct i40e_mac_filter *f;
1224
1225 list_for_each_entry(f, &vsi->mac_filter_list, list) {
1226 if (!i40e_find_filter(vsi, macaddr, f->vlan,
1227 is_vf, is_netdev)) {
1228 if (!i40e_add_filter(vsi, macaddr, f->vlan,
Jesse Brandeburg8fb905b2014-01-17 15:36:33 -08001229 is_vf, is_netdev))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001230 return NULL;
1231 }
1232 }
1233
1234 return list_first_entry_or_null(&vsi->mac_filter_list,
1235 struct i40e_mac_filter, list);
1236}
1237
1238/**
Greg Rose8c27d422014-05-22 06:31:56 +00001239 * i40e_rm_default_mac_filter - Remove the default MAC filter set by NVM
1240 * @vsi: the PF Main VSI - inappropriate for any other VSI
1241 * @macaddr: the MAC address
Shannon Nelson30650cc2014-07-29 04:01:50 +00001242 *
1243 * Some older firmware configurations set up a default promiscuous VLAN
1244 * filter that needs to be removed.
Greg Rose8c27d422014-05-22 06:31:56 +00001245 **/
Shannon Nelson30650cc2014-07-29 04:01:50 +00001246static int i40e_rm_default_mac_filter(struct i40e_vsi *vsi, u8 *macaddr)
Greg Rose8c27d422014-05-22 06:31:56 +00001247{
1248 struct i40e_aqc_remove_macvlan_element_data element;
1249 struct i40e_pf *pf = vsi->back;
1250 i40e_status aq_ret;
1251
1252 /* Only appropriate for the PF main VSI */
1253 if (vsi->type != I40E_VSI_MAIN)
Shannon Nelson30650cc2014-07-29 04:01:50 +00001254 return -EINVAL;
Greg Rose8c27d422014-05-22 06:31:56 +00001255
Shannon Nelson30650cc2014-07-29 04:01:50 +00001256 memset(&element, 0, sizeof(element));
Greg Rose8c27d422014-05-22 06:31:56 +00001257 ether_addr_copy(element.mac_addr, macaddr);
1258 element.vlan_tag = 0;
1259 element.flags = I40E_AQC_MACVLAN_DEL_PERFECT_MATCH |
1260 I40E_AQC_MACVLAN_DEL_IGNORE_VLAN;
1261 aq_ret = i40e_aq_remove_macvlan(&pf->hw, vsi->seid, &element, 1, NULL);
1262 if (aq_ret)
Shannon Nelson30650cc2014-07-29 04:01:50 +00001263 return -ENOENT;
1264
1265 return 0;
Greg Rose8c27d422014-05-22 06:31:56 +00001266}
1267
1268/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001269 * i40e_add_filter - Add a mac/vlan filter to the VSI
1270 * @vsi: the VSI to be searched
1271 * @macaddr: the MAC address
1272 * @vlan: the vlan
1273 * @is_vf: make sure its a vf filter, else doesn't matter
1274 * @is_netdev: make sure its a netdev filter, else doesn't matter
1275 *
1276 * Returns ptr to the filter object or NULL when no memory available.
1277 **/
1278struct i40e_mac_filter *i40e_add_filter(struct i40e_vsi *vsi,
1279 u8 *macaddr, s16 vlan,
1280 bool is_vf, bool is_netdev)
1281{
1282 struct i40e_mac_filter *f;
1283
1284 if (!vsi || !macaddr)
1285 return NULL;
1286
1287 f = i40e_find_filter(vsi, macaddr, vlan, is_vf, is_netdev);
1288 if (!f) {
1289 f = kzalloc(sizeof(*f), GFP_ATOMIC);
1290 if (!f)
1291 goto add_filter_out;
1292
Greg Rose9a173902014-05-22 06:32:02 +00001293 ether_addr_copy(f->macaddr, macaddr);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001294 f->vlan = vlan;
1295 f->changed = true;
1296
1297 INIT_LIST_HEAD(&f->list);
1298 list_add(&f->list, &vsi->mac_filter_list);
1299 }
1300
1301 /* increment counter and add a new flag if needed */
1302 if (is_vf) {
1303 if (!f->is_vf) {
1304 f->is_vf = true;
1305 f->counter++;
1306 }
1307 } else if (is_netdev) {
1308 if (!f->is_netdev) {
1309 f->is_netdev = true;
1310 f->counter++;
1311 }
1312 } else {
1313 f->counter++;
1314 }
1315
1316 /* changed tells sync_filters_subtask to
1317 * push the filter down to the firmware
1318 */
1319 if (f->changed) {
1320 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
1321 vsi->back->flags |= I40E_FLAG_FILTER_SYNC;
1322 }
1323
1324add_filter_out:
1325 return f;
1326}
1327
1328/**
1329 * i40e_del_filter - Remove a mac/vlan filter from the VSI
1330 * @vsi: the VSI to be searched
1331 * @macaddr: the MAC address
1332 * @vlan: the vlan
1333 * @is_vf: make sure it's a vf filter, else doesn't matter
1334 * @is_netdev: make sure it's a netdev filter, else doesn't matter
1335 **/
1336void i40e_del_filter(struct i40e_vsi *vsi,
1337 u8 *macaddr, s16 vlan,
1338 bool is_vf, bool is_netdev)
1339{
1340 struct i40e_mac_filter *f;
1341
1342 if (!vsi || !macaddr)
1343 return;
1344
1345 f = i40e_find_filter(vsi, macaddr, vlan, is_vf, is_netdev);
1346 if (!f || f->counter == 0)
1347 return;
1348
1349 if (is_vf) {
1350 if (f->is_vf) {
1351 f->is_vf = false;
1352 f->counter--;
1353 }
1354 } else if (is_netdev) {
1355 if (f->is_netdev) {
1356 f->is_netdev = false;
1357 f->counter--;
1358 }
1359 } else {
1360 /* make sure we don't remove a filter in use by vf or netdev */
1361 int min_f = 0;
1362 min_f += (f->is_vf ? 1 : 0);
1363 min_f += (f->is_netdev ? 1 : 0);
1364
1365 if (f->counter > min_f)
1366 f->counter--;
1367 }
1368
1369 /* counter == 0 tells sync_filters_subtask to
1370 * remove the filter from the firmware's list
1371 */
1372 if (f->counter == 0) {
1373 f->changed = true;
1374 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
1375 vsi->back->flags |= I40E_FLAG_FILTER_SYNC;
1376 }
1377}
1378
1379/**
1380 * i40e_set_mac - NDO callback to set mac address
1381 * @netdev: network interface device structure
1382 * @p: pointer to an address structure
1383 *
1384 * Returns 0 on success, negative on failure
1385 **/
Vasu Dev38e00432014-08-01 13:27:03 -07001386#ifdef I40E_FCOE
1387int i40e_set_mac(struct net_device *netdev, void *p)
1388#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001389static int i40e_set_mac(struct net_device *netdev, void *p)
Vasu Dev38e00432014-08-01 13:27:03 -07001390#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001391{
1392 struct i40e_netdev_priv *np = netdev_priv(netdev);
1393 struct i40e_vsi *vsi = np->vsi;
Shannon Nelson30650cc2014-07-29 04:01:50 +00001394 struct i40e_pf *pf = vsi->back;
1395 struct i40e_hw *hw = &pf->hw;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001396 struct sockaddr *addr = p;
1397 struct i40e_mac_filter *f;
1398
1399 if (!is_valid_ether_addr(addr->sa_data))
1400 return -EADDRNOTAVAIL;
1401
Shannon Nelson30650cc2014-07-29 04:01:50 +00001402 if (ether_addr_equal(netdev->dev_addr, addr->sa_data)) {
1403 netdev_info(netdev, "already using mac address %pM\n",
1404 addr->sa_data);
1405 return 0;
1406 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001407
Anjali Singhai Jain80f64282013-11-28 06:39:47 +00001408 if (test_bit(__I40E_DOWN, &vsi->back->state) ||
1409 test_bit(__I40E_RESET_RECOVERY_PENDING, &vsi->back->state))
1410 return -EADDRNOTAVAIL;
1411
Shannon Nelson30650cc2014-07-29 04:01:50 +00001412 if (ether_addr_equal(hw->mac.addr, addr->sa_data))
1413 netdev_info(netdev, "returning to hw mac address %pM\n",
1414 hw->mac.addr);
1415 else
1416 netdev_info(netdev, "set new mac address %pM\n", addr->sa_data);
1417
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001418 if (vsi->type == I40E_VSI_MAIN) {
1419 i40e_status ret;
1420 ret = i40e_aq_mac_address_write(&vsi->back->hw,
Shannon Nelsoncc412222014-06-04 01:23:21 +00001421 I40E_AQC_WRITE_TYPE_LAA_WOL,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001422 addr->sa_data, NULL);
1423 if (ret) {
1424 netdev_info(netdev,
1425 "Addr change for Main VSI failed: %d\n",
1426 ret);
1427 return -EADDRNOTAVAIL;
1428 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001429 }
1430
Shannon Nelson30650cc2014-07-29 04:01:50 +00001431 if (ether_addr_equal(netdev->dev_addr, hw->mac.addr)) {
1432 struct i40e_aqc_remove_macvlan_element_data element;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001433
Shannon Nelson30650cc2014-07-29 04:01:50 +00001434 memset(&element, 0, sizeof(element));
1435 ether_addr_copy(element.mac_addr, netdev->dev_addr);
1436 element.flags = I40E_AQC_MACVLAN_DEL_PERFECT_MATCH;
1437 i40e_aq_remove_macvlan(&pf->hw, vsi->seid, &element, 1, NULL);
1438 } else {
Shannon Nelson6c8ad1b2014-06-04 01:23:22 +00001439 i40e_del_filter(vsi, netdev->dev_addr, I40E_VLAN_ANY,
1440 false, false);
Shannon Nelson6c8ad1b2014-06-04 01:23:22 +00001441 }
1442
Shannon Nelson30650cc2014-07-29 04:01:50 +00001443 if (ether_addr_equal(addr->sa_data, hw->mac.addr)) {
1444 struct i40e_aqc_add_macvlan_element_data element;
1445
1446 memset(&element, 0, sizeof(element));
1447 ether_addr_copy(element.mac_addr, hw->mac.addr);
1448 element.flags = cpu_to_le16(I40E_AQC_MACVLAN_ADD_PERFECT_MATCH);
1449 i40e_aq_add_macvlan(&pf->hw, vsi->seid, &element, 1, NULL);
1450 } else {
1451 f = i40e_add_filter(vsi, addr->sa_data, I40E_VLAN_ANY,
1452 false, false);
1453 if (f)
1454 f->is_laa = true;
1455 }
1456
1457 i40e_sync_vsi_filters(vsi);
1458 ether_addr_copy(netdev->dev_addr, addr->sa_data);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001459
1460 return 0;
1461}
1462
1463/**
1464 * i40e_vsi_setup_queue_map - Setup a VSI queue map based on enabled_tc
1465 * @vsi: the VSI being setup
1466 * @ctxt: VSI context structure
1467 * @enabled_tc: Enabled TCs bitmap
1468 * @is_add: True if called before Add VSI
1469 *
1470 * Setup VSI queue mapping for enabled traffic classes.
1471 **/
Vasu Dev38e00432014-08-01 13:27:03 -07001472#ifdef I40E_FCOE
1473void i40e_vsi_setup_queue_map(struct i40e_vsi *vsi,
1474 struct i40e_vsi_context *ctxt,
1475 u8 enabled_tc,
1476 bool is_add)
1477#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001478static void i40e_vsi_setup_queue_map(struct i40e_vsi *vsi,
1479 struct i40e_vsi_context *ctxt,
1480 u8 enabled_tc,
1481 bool is_add)
Vasu Dev38e00432014-08-01 13:27:03 -07001482#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001483{
1484 struct i40e_pf *pf = vsi->back;
1485 u16 sections = 0;
1486 u8 netdev_tc = 0;
1487 u16 numtc = 0;
1488 u16 qcount;
1489 u8 offset;
1490 u16 qmap;
1491 int i;
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001492 u16 num_tc_qps = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001493
1494 sections = I40E_AQ_VSI_PROP_QUEUE_MAP_VALID;
1495 offset = 0;
1496
1497 if (enabled_tc && (vsi->back->flags & I40E_FLAG_DCB_ENABLED)) {
1498 /* Find numtc from enabled TC bitmap */
1499 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
1500 if (enabled_tc & (1 << i)) /* TC is enabled */
1501 numtc++;
1502 }
1503 if (!numtc) {
1504 dev_warn(&pf->pdev->dev, "DCB is enabled but no TC enabled, forcing TC0\n");
1505 numtc = 1;
1506 }
1507 } else {
1508 /* At least TC0 is enabled in case of non-DCB case */
1509 numtc = 1;
1510 }
1511
1512 vsi->tc_config.numtc = numtc;
1513 vsi->tc_config.enabled_tc = enabled_tc ? enabled_tc : 1;
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001514 /* Number of queues per enabled TC */
Anjali Singhai Jaineb051af2014-05-20 08:01:46 +00001515 num_tc_qps = vsi->alloc_queue_pairs/numtc;
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001516 num_tc_qps = min_t(int, num_tc_qps, I40E_MAX_QUEUES_PER_TC);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001517
1518 /* Setup queue offset/count for all TCs for given VSI */
1519 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
1520 /* See if the given TC is enabled for the given VSI */
1521 if (vsi->tc_config.enabled_tc & (1 << i)) { /* TC is enabled */
1522 int pow, num_qps;
1523
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001524 switch (vsi->type) {
1525 case I40E_VSI_MAIN:
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001526 qcount = min_t(int, pf->rss_size, num_tc_qps);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001527 break;
Vasu Dev38e00432014-08-01 13:27:03 -07001528#ifdef I40E_FCOE
1529 case I40E_VSI_FCOE:
1530 qcount = num_tc_qps;
1531 break;
1532#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001533 case I40E_VSI_FDIR:
1534 case I40E_VSI_SRIOV:
1535 case I40E_VSI_VMDQ2:
1536 default:
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001537 qcount = num_tc_qps;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001538 WARN_ON(i != 0);
1539 break;
1540 }
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001541 vsi->tc_config.tc_info[i].qoffset = offset;
1542 vsi->tc_config.tc_info[i].qcount = qcount;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001543
1544 /* find the power-of-2 of the number of queue pairs */
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001545 num_qps = qcount;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001546 pow = 0;
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001547 while (num_qps && ((1 << pow) < qcount)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001548 pow++;
1549 num_qps >>= 1;
1550 }
1551
1552 vsi->tc_config.tc_info[i].netdev_tc = netdev_tc++;
1553 qmap =
1554 (offset << I40E_AQ_VSI_TC_QUE_OFFSET_SHIFT) |
1555 (pow << I40E_AQ_VSI_TC_QUE_NUMBER_SHIFT);
1556
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001557 offset += qcount;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001558 } else {
1559 /* TC is not enabled so set the offset to
1560 * default queue and allocate one queue
1561 * for the given TC.
1562 */
1563 vsi->tc_config.tc_info[i].qoffset = 0;
1564 vsi->tc_config.tc_info[i].qcount = 1;
1565 vsi->tc_config.tc_info[i].netdev_tc = 0;
1566
1567 qmap = 0;
1568 }
1569 ctxt->info.tc_mapping[i] = cpu_to_le16(qmap);
1570 }
1571
1572 /* Set actual Tx/Rx queue pairs */
1573 vsi->num_queue_pairs = offset;
1574
1575 /* Scheduler section valid can only be set for ADD VSI */
1576 if (is_add) {
1577 sections |= I40E_AQ_VSI_PROP_SCHED_VALID;
1578
1579 ctxt->info.up_enable_bits = enabled_tc;
1580 }
1581 if (vsi->type == I40E_VSI_SRIOV) {
1582 ctxt->info.mapping_flags |=
1583 cpu_to_le16(I40E_AQ_VSI_QUE_MAP_NONCONTIG);
1584 for (i = 0; i < vsi->num_queue_pairs; i++)
1585 ctxt->info.queue_mapping[i] =
1586 cpu_to_le16(vsi->base_queue + i);
1587 } else {
1588 ctxt->info.mapping_flags |=
1589 cpu_to_le16(I40E_AQ_VSI_QUE_MAP_CONTIG);
1590 ctxt->info.queue_mapping[0] = cpu_to_le16(vsi->base_queue);
1591 }
1592 ctxt->info.valid_sections |= cpu_to_le16(sections);
1593}
1594
1595/**
1596 * i40e_set_rx_mode - NDO callback to set the netdev filters
1597 * @netdev: network interface device structure
1598 **/
Vasu Dev38e00432014-08-01 13:27:03 -07001599#ifdef I40E_FCOE
1600void i40e_set_rx_mode(struct net_device *netdev)
1601#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001602static void i40e_set_rx_mode(struct net_device *netdev)
Vasu Dev38e00432014-08-01 13:27:03 -07001603#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001604{
1605 struct i40e_netdev_priv *np = netdev_priv(netdev);
1606 struct i40e_mac_filter *f, *ftmp;
1607 struct i40e_vsi *vsi = np->vsi;
1608 struct netdev_hw_addr *uca;
1609 struct netdev_hw_addr *mca;
1610 struct netdev_hw_addr *ha;
1611
1612 /* add addr if not already in the filter list */
1613 netdev_for_each_uc_addr(uca, netdev) {
1614 if (!i40e_find_mac(vsi, uca->addr, false, true)) {
1615 if (i40e_is_vsi_in_vlan(vsi))
1616 i40e_put_mac_in_vlan(vsi, uca->addr,
1617 false, true);
1618 else
1619 i40e_add_filter(vsi, uca->addr, I40E_VLAN_ANY,
1620 false, true);
1621 }
1622 }
1623
1624 netdev_for_each_mc_addr(mca, netdev) {
1625 if (!i40e_find_mac(vsi, mca->addr, false, true)) {
1626 if (i40e_is_vsi_in_vlan(vsi))
1627 i40e_put_mac_in_vlan(vsi, mca->addr,
1628 false, true);
1629 else
1630 i40e_add_filter(vsi, mca->addr, I40E_VLAN_ANY,
1631 false, true);
1632 }
1633 }
1634
1635 /* remove filter if not in netdev list */
1636 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
1637 bool found = false;
1638
1639 if (!f->is_netdev)
1640 continue;
1641
1642 if (is_multicast_ether_addr(f->macaddr)) {
1643 netdev_for_each_mc_addr(mca, netdev) {
1644 if (ether_addr_equal(mca->addr, f->macaddr)) {
1645 found = true;
1646 break;
1647 }
1648 }
1649 } else {
1650 netdev_for_each_uc_addr(uca, netdev) {
1651 if (ether_addr_equal(uca->addr, f->macaddr)) {
1652 found = true;
1653 break;
1654 }
1655 }
1656
1657 for_each_dev_addr(netdev, ha) {
1658 if (ether_addr_equal(ha->addr, f->macaddr)) {
1659 found = true;
1660 break;
1661 }
1662 }
1663 }
1664 if (!found)
1665 i40e_del_filter(
1666 vsi, f->macaddr, I40E_VLAN_ANY, false, true);
1667 }
1668
1669 /* check for other flag changes */
1670 if (vsi->current_netdev_flags != vsi->netdev->flags) {
1671 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
1672 vsi->back->flags |= I40E_FLAG_FILTER_SYNC;
1673 }
1674}
1675
1676/**
1677 * i40e_sync_vsi_filters - Update the VSI filter list to the HW
1678 * @vsi: ptr to the VSI
1679 *
1680 * Push any outstanding VSI filter changes through the AdminQ.
1681 *
1682 * Returns 0 or error value
1683 **/
1684int i40e_sync_vsi_filters(struct i40e_vsi *vsi)
1685{
1686 struct i40e_mac_filter *f, *ftmp;
1687 bool promisc_forced_on = false;
1688 bool add_happened = false;
1689 int filter_list_len = 0;
1690 u32 changed_flags = 0;
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001691 i40e_status aq_ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001692 struct i40e_pf *pf;
1693 int num_add = 0;
1694 int num_del = 0;
1695 u16 cmd_flags;
1696
1697 /* empty array typed pointers, kcalloc later */
1698 struct i40e_aqc_add_macvlan_element_data *add_list;
1699 struct i40e_aqc_remove_macvlan_element_data *del_list;
1700
1701 while (test_and_set_bit(__I40E_CONFIG_BUSY, &vsi->state))
1702 usleep_range(1000, 2000);
1703 pf = vsi->back;
1704
1705 if (vsi->netdev) {
1706 changed_flags = vsi->current_netdev_flags ^ vsi->netdev->flags;
1707 vsi->current_netdev_flags = vsi->netdev->flags;
1708 }
1709
1710 if (vsi->flags & I40E_VSI_FLAG_FILTER_CHANGED) {
1711 vsi->flags &= ~I40E_VSI_FLAG_FILTER_CHANGED;
1712
1713 filter_list_len = pf->hw.aq.asq_buf_size /
1714 sizeof(struct i40e_aqc_remove_macvlan_element_data);
1715 del_list = kcalloc(filter_list_len,
1716 sizeof(struct i40e_aqc_remove_macvlan_element_data),
1717 GFP_KERNEL);
1718 if (!del_list)
1719 return -ENOMEM;
1720
1721 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
1722 if (!f->changed)
1723 continue;
1724
1725 if (f->counter != 0)
1726 continue;
1727 f->changed = false;
1728 cmd_flags = 0;
1729
1730 /* add to delete list */
Greg Rose9a173902014-05-22 06:32:02 +00001731 ether_addr_copy(del_list[num_del].mac_addr, f->macaddr);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001732 del_list[num_del].vlan_tag =
1733 cpu_to_le16((u16)(f->vlan ==
1734 I40E_VLAN_ANY ? 0 : f->vlan));
1735
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001736 cmd_flags |= I40E_AQC_MACVLAN_DEL_PERFECT_MATCH;
1737 del_list[num_del].flags = cmd_flags;
1738 num_del++;
1739
1740 /* unlink from filter list */
1741 list_del(&f->list);
1742 kfree(f);
1743
1744 /* flush a full buffer */
1745 if (num_del == filter_list_len) {
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001746 aq_ret = i40e_aq_remove_macvlan(&pf->hw,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001747 vsi->seid, del_list, num_del,
1748 NULL);
1749 num_del = 0;
1750 memset(del_list, 0, sizeof(*del_list));
1751
Shannon Nelsonfdfe9cb2014-05-20 08:01:39 +00001752 if (aq_ret &&
1753 pf->hw.aq.asq_last_status !=
1754 I40E_AQ_RC_ENOENT)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001755 dev_info(&pf->pdev->dev,
1756 "ignoring delete macvlan error, err %d, aq_err %d while flushing a full buffer\n",
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001757 aq_ret,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001758 pf->hw.aq.asq_last_status);
1759 }
1760 }
1761 if (num_del) {
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001762 aq_ret = i40e_aq_remove_macvlan(&pf->hw, vsi->seid,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001763 del_list, num_del, NULL);
1764 num_del = 0;
1765
Shannon Nelsonfdfe9cb2014-05-20 08:01:39 +00001766 if (aq_ret &&
1767 pf->hw.aq.asq_last_status != I40E_AQ_RC_ENOENT)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001768 dev_info(&pf->pdev->dev,
1769 "ignoring delete macvlan error, err %d, aq_err %d\n",
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001770 aq_ret, pf->hw.aq.asq_last_status);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001771 }
1772
1773 kfree(del_list);
1774 del_list = NULL;
1775
1776 /* do all the adds now */
1777 filter_list_len = pf->hw.aq.asq_buf_size /
1778 sizeof(struct i40e_aqc_add_macvlan_element_data),
1779 add_list = kcalloc(filter_list_len,
1780 sizeof(struct i40e_aqc_add_macvlan_element_data),
1781 GFP_KERNEL);
1782 if (!add_list)
1783 return -ENOMEM;
1784
1785 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
1786 if (!f->changed)
1787 continue;
1788
1789 if (f->counter == 0)
1790 continue;
1791 f->changed = false;
1792 add_happened = true;
1793 cmd_flags = 0;
1794
1795 /* add to add array */
Greg Rose9a173902014-05-22 06:32:02 +00001796 ether_addr_copy(add_list[num_add].mac_addr, f->macaddr);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001797 add_list[num_add].vlan_tag =
1798 cpu_to_le16(
1799 (u16)(f->vlan == I40E_VLAN_ANY ? 0 : f->vlan));
1800 add_list[num_add].queue_number = 0;
1801
1802 cmd_flags |= I40E_AQC_MACVLAN_ADD_PERFECT_MATCH;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001803 add_list[num_add].flags = cpu_to_le16(cmd_flags);
1804 num_add++;
1805
1806 /* flush a full buffer */
1807 if (num_add == filter_list_len) {
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001808 aq_ret = i40e_aq_add_macvlan(&pf->hw, vsi->seid,
1809 add_list, num_add,
1810 NULL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001811 num_add = 0;
1812
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001813 if (aq_ret)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001814 break;
1815 memset(add_list, 0, sizeof(*add_list));
1816 }
1817 }
1818 if (num_add) {
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001819 aq_ret = i40e_aq_add_macvlan(&pf->hw, vsi->seid,
1820 add_list, num_add, NULL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001821 num_add = 0;
1822 }
1823 kfree(add_list);
1824 add_list = NULL;
1825
Shannon Nelson30650cc2014-07-29 04:01:50 +00001826 if (add_happened && aq_ret &&
1827 pf->hw.aq.asq_last_status != I40E_AQ_RC_EINVAL) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001828 dev_info(&pf->pdev->dev,
1829 "add filter failed, err %d, aq_err %d\n",
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001830 aq_ret, pf->hw.aq.asq_last_status);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001831 if ((pf->hw.aq.asq_last_status == I40E_AQ_RC_ENOSPC) &&
1832 !test_bit(__I40E_FILTER_OVERFLOW_PROMISC,
1833 &vsi->state)) {
1834 promisc_forced_on = true;
1835 set_bit(__I40E_FILTER_OVERFLOW_PROMISC,
1836 &vsi->state);
1837 dev_info(&pf->pdev->dev, "promiscuous mode forced on\n");
1838 }
1839 }
1840 }
1841
1842 /* check for changes in promiscuous modes */
1843 if (changed_flags & IFF_ALLMULTI) {
1844 bool cur_multipromisc;
1845 cur_multipromisc = !!(vsi->current_netdev_flags & IFF_ALLMULTI);
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001846 aq_ret = i40e_aq_set_vsi_multicast_promiscuous(&vsi->back->hw,
1847 vsi->seid,
1848 cur_multipromisc,
1849 NULL);
1850 if (aq_ret)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001851 dev_info(&pf->pdev->dev,
1852 "set multi promisc failed, err %d, aq_err %d\n",
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001853 aq_ret, pf->hw.aq.asq_last_status);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001854 }
1855 if ((changed_flags & IFF_PROMISC) || promisc_forced_on) {
1856 bool cur_promisc;
1857 cur_promisc = (!!(vsi->current_netdev_flags & IFF_PROMISC) ||
1858 test_bit(__I40E_FILTER_OVERFLOW_PROMISC,
1859 &vsi->state));
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001860 aq_ret = i40e_aq_set_vsi_unicast_promiscuous(&vsi->back->hw,
1861 vsi->seid,
1862 cur_promisc, NULL);
1863 if (aq_ret)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001864 dev_info(&pf->pdev->dev,
1865 "set uni promisc failed, err %d, aq_err %d\n",
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001866 aq_ret, pf->hw.aq.asq_last_status);
Greg Rose1a103702013-11-28 06:42:39 +00001867 aq_ret = i40e_aq_set_vsi_broadcast(&vsi->back->hw,
1868 vsi->seid,
1869 cur_promisc, NULL);
1870 if (aq_ret)
1871 dev_info(&pf->pdev->dev,
1872 "set brdcast promisc failed, err %d, aq_err %d\n",
1873 aq_ret, pf->hw.aq.asq_last_status);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001874 }
1875
1876 clear_bit(__I40E_CONFIG_BUSY, &vsi->state);
1877 return 0;
1878}
1879
1880/**
1881 * i40e_sync_filters_subtask - Sync the VSI filter list with HW
1882 * @pf: board private structure
1883 **/
1884static void i40e_sync_filters_subtask(struct i40e_pf *pf)
1885{
1886 int v;
1887
1888 if (!pf || !(pf->flags & I40E_FLAG_FILTER_SYNC))
1889 return;
1890 pf->flags &= ~I40E_FLAG_FILTER_SYNC;
1891
Mitch Williams505682c2014-05-20 08:01:37 +00001892 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001893 if (pf->vsi[v] &&
1894 (pf->vsi[v]->flags & I40E_VSI_FLAG_FILTER_CHANGED))
1895 i40e_sync_vsi_filters(pf->vsi[v]);
1896 }
1897}
1898
1899/**
1900 * i40e_change_mtu - NDO callback to change the Maximum Transfer Unit
1901 * @netdev: network interface device structure
1902 * @new_mtu: new value for maximum frame size
1903 *
1904 * Returns 0 on success, negative on failure
1905 **/
1906static int i40e_change_mtu(struct net_device *netdev, int new_mtu)
1907{
1908 struct i40e_netdev_priv *np = netdev_priv(netdev);
Jesse Brandeburg61a46a42014-04-23 04:50:05 +00001909 int max_frame = new_mtu + ETH_HLEN + ETH_FCS_LEN + VLAN_HLEN;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001910 struct i40e_vsi *vsi = np->vsi;
1911
1912 /* MTU < 68 is an error and causes problems on some kernels */
1913 if ((new_mtu < 68) || (max_frame > I40E_MAX_RXBUFFER))
1914 return -EINVAL;
1915
1916 netdev_info(netdev, "changing MTU from %d to %d\n",
1917 netdev->mtu, new_mtu);
1918 netdev->mtu = new_mtu;
1919 if (netif_running(netdev))
1920 i40e_vsi_reinit_locked(vsi);
1921
1922 return 0;
1923}
1924
1925/**
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00001926 * i40e_ioctl - Access the hwtstamp interface
1927 * @netdev: network interface device structure
1928 * @ifr: interface request data
1929 * @cmd: ioctl command
1930 **/
1931int i40e_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd)
1932{
1933 struct i40e_netdev_priv *np = netdev_priv(netdev);
1934 struct i40e_pf *pf = np->vsi->back;
1935
1936 switch (cmd) {
1937 case SIOCGHWTSTAMP:
1938 return i40e_ptp_get_ts_config(pf, ifr);
1939 case SIOCSHWTSTAMP:
1940 return i40e_ptp_set_ts_config(pf, ifr);
1941 default:
1942 return -EOPNOTSUPP;
1943 }
1944}
1945
1946/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001947 * i40e_vlan_stripping_enable - Turn on vlan stripping for the VSI
1948 * @vsi: the vsi being adjusted
1949 **/
1950void i40e_vlan_stripping_enable(struct i40e_vsi *vsi)
1951{
1952 struct i40e_vsi_context ctxt;
1953 i40e_status ret;
1954
1955 if ((vsi->info.valid_sections &
1956 cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID)) &&
1957 ((vsi->info.port_vlan_flags & I40E_AQ_VSI_PVLAN_MODE_MASK) == 0))
1958 return; /* already enabled */
1959
1960 vsi->info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
1961 vsi->info.port_vlan_flags = I40E_AQ_VSI_PVLAN_MODE_ALL |
1962 I40E_AQ_VSI_PVLAN_EMOD_STR_BOTH;
1963
1964 ctxt.seid = vsi->seid;
1965 memcpy(&ctxt.info, &vsi->info, sizeof(vsi->info));
1966 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
1967 if (ret) {
1968 dev_info(&vsi->back->pdev->dev,
1969 "%s: update vsi failed, aq_err=%d\n",
1970 __func__, vsi->back->hw.aq.asq_last_status);
1971 }
1972}
1973
1974/**
1975 * i40e_vlan_stripping_disable - Turn off vlan stripping for the VSI
1976 * @vsi: the vsi being adjusted
1977 **/
1978void i40e_vlan_stripping_disable(struct i40e_vsi *vsi)
1979{
1980 struct i40e_vsi_context ctxt;
1981 i40e_status ret;
1982
1983 if ((vsi->info.valid_sections &
1984 cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID)) &&
1985 ((vsi->info.port_vlan_flags & I40E_AQ_VSI_PVLAN_EMOD_MASK) ==
1986 I40E_AQ_VSI_PVLAN_EMOD_MASK))
1987 return; /* already disabled */
1988
1989 vsi->info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
1990 vsi->info.port_vlan_flags = I40E_AQ_VSI_PVLAN_MODE_ALL |
1991 I40E_AQ_VSI_PVLAN_EMOD_NOTHING;
1992
1993 ctxt.seid = vsi->seid;
1994 memcpy(&ctxt.info, &vsi->info, sizeof(vsi->info));
1995 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
1996 if (ret) {
1997 dev_info(&vsi->back->pdev->dev,
1998 "%s: update vsi failed, aq_err=%d\n",
1999 __func__, vsi->back->hw.aq.asq_last_status);
2000 }
2001}
2002
2003/**
2004 * i40e_vlan_rx_register - Setup or shutdown vlan offload
2005 * @netdev: network interface to be adjusted
2006 * @features: netdev features to test if VLAN offload is enabled or not
2007 **/
2008static void i40e_vlan_rx_register(struct net_device *netdev, u32 features)
2009{
2010 struct i40e_netdev_priv *np = netdev_priv(netdev);
2011 struct i40e_vsi *vsi = np->vsi;
2012
2013 if (features & NETIF_F_HW_VLAN_CTAG_RX)
2014 i40e_vlan_stripping_enable(vsi);
2015 else
2016 i40e_vlan_stripping_disable(vsi);
2017}
2018
2019/**
2020 * i40e_vsi_add_vlan - Add vsi membership for given vlan
2021 * @vsi: the vsi being configured
2022 * @vid: vlan id to be added (0 = untagged only , -1 = any)
2023 **/
2024int i40e_vsi_add_vlan(struct i40e_vsi *vsi, s16 vid)
2025{
2026 struct i40e_mac_filter *f, *add_f;
2027 bool is_netdev, is_vf;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002028
2029 is_vf = (vsi->type == I40E_VSI_SRIOV);
2030 is_netdev = !!(vsi->netdev);
2031
2032 if (is_netdev) {
2033 add_f = i40e_add_filter(vsi, vsi->netdev->dev_addr, vid,
2034 is_vf, is_netdev);
2035 if (!add_f) {
2036 dev_info(&vsi->back->pdev->dev,
2037 "Could not add vlan filter %d for %pM\n",
2038 vid, vsi->netdev->dev_addr);
2039 return -ENOMEM;
2040 }
2041 }
2042
2043 list_for_each_entry(f, &vsi->mac_filter_list, list) {
2044 add_f = i40e_add_filter(vsi, f->macaddr, vid, is_vf, is_netdev);
2045 if (!add_f) {
2046 dev_info(&vsi->back->pdev->dev,
2047 "Could not add vlan filter %d for %pM\n",
2048 vid, f->macaddr);
2049 return -ENOMEM;
2050 }
2051 }
2052
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002053 /* Now if we add a vlan tag, make sure to check if it is the first
2054 * tag (i.e. a "tag" -1 does exist) and if so replace the -1 "tag"
2055 * with 0, so we now accept untagged and specified tagged traffic
2056 * (and not any taged and untagged)
2057 */
2058 if (vid > 0) {
2059 if (is_netdev && i40e_find_filter(vsi, vsi->netdev->dev_addr,
2060 I40E_VLAN_ANY,
2061 is_vf, is_netdev)) {
2062 i40e_del_filter(vsi, vsi->netdev->dev_addr,
2063 I40E_VLAN_ANY, is_vf, is_netdev);
2064 add_f = i40e_add_filter(vsi, vsi->netdev->dev_addr, 0,
2065 is_vf, is_netdev);
2066 if (!add_f) {
2067 dev_info(&vsi->back->pdev->dev,
2068 "Could not add filter 0 for %pM\n",
2069 vsi->netdev->dev_addr);
2070 return -ENOMEM;
2071 }
2072 }
Greg Rose8d82a7c2014-01-13 16:13:04 -08002073 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002074
Greg Rose8d82a7c2014-01-13 16:13:04 -08002075 /* Do not assume that I40E_VLAN_ANY should be reset to VLAN 0 */
2076 if (vid > 0 && !vsi->info.pvid) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002077 list_for_each_entry(f, &vsi->mac_filter_list, list) {
2078 if (i40e_find_filter(vsi, f->macaddr, I40E_VLAN_ANY,
2079 is_vf, is_netdev)) {
2080 i40e_del_filter(vsi, f->macaddr, I40E_VLAN_ANY,
2081 is_vf, is_netdev);
2082 add_f = i40e_add_filter(vsi, f->macaddr,
2083 0, is_vf, is_netdev);
2084 if (!add_f) {
2085 dev_info(&vsi->back->pdev->dev,
2086 "Could not add filter 0 for %pM\n",
2087 f->macaddr);
2088 return -ENOMEM;
2089 }
2090 }
2091 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002092 }
2093
Anjali Singhai Jain80f64282013-11-28 06:39:47 +00002094 if (test_bit(__I40E_DOWN, &vsi->back->state) ||
2095 test_bit(__I40E_RESET_RECOVERY_PENDING, &vsi->back->state))
2096 return 0;
2097
2098 return i40e_sync_vsi_filters(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002099}
2100
2101/**
2102 * i40e_vsi_kill_vlan - Remove vsi membership for given vlan
2103 * @vsi: the vsi being configured
2104 * @vid: vlan id to be removed (0 = untagged only , -1 = any)
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002105 *
2106 * Return: 0 on success or negative otherwise
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002107 **/
2108int i40e_vsi_kill_vlan(struct i40e_vsi *vsi, s16 vid)
2109{
2110 struct net_device *netdev = vsi->netdev;
2111 struct i40e_mac_filter *f, *add_f;
2112 bool is_vf, is_netdev;
2113 int filter_count = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002114
2115 is_vf = (vsi->type == I40E_VSI_SRIOV);
2116 is_netdev = !!(netdev);
2117
2118 if (is_netdev)
2119 i40e_del_filter(vsi, netdev->dev_addr, vid, is_vf, is_netdev);
2120
2121 list_for_each_entry(f, &vsi->mac_filter_list, list)
2122 i40e_del_filter(vsi, f->macaddr, vid, is_vf, is_netdev);
2123
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002124 /* go through all the filters for this VSI and if there is only
2125 * vid == 0 it means there are no other filters, so vid 0 must
2126 * be replaced with -1. This signifies that we should from now
2127 * on accept any traffic (with any tag present, or untagged)
2128 */
2129 list_for_each_entry(f, &vsi->mac_filter_list, list) {
2130 if (is_netdev) {
2131 if (f->vlan &&
2132 ether_addr_equal(netdev->dev_addr, f->macaddr))
2133 filter_count++;
2134 }
2135
2136 if (f->vlan)
2137 filter_count++;
2138 }
2139
2140 if (!filter_count && is_netdev) {
2141 i40e_del_filter(vsi, netdev->dev_addr, 0, is_vf, is_netdev);
2142 f = i40e_add_filter(vsi, netdev->dev_addr, I40E_VLAN_ANY,
2143 is_vf, is_netdev);
2144 if (!f) {
2145 dev_info(&vsi->back->pdev->dev,
2146 "Could not add filter %d for %pM\n",
2147 I40E_VLAN_ANY, netdev->dev_addr);
2148 return -ENOMEM;
2149 }
2150 }
2151
2152 if (!filter_count) {
2153 list_for_each_entry(f, &vsi->mac_filter_list, list) {
2154 i40e_del_filter(vsi, f->macaddr, 0, is_vf, is_netdev);
2155 add_f = i40e_add_filter(vsi, f->macaddr, I40E_VLAN_ANY,
2156 is_vf, is_netdev);
2157 if (!add_f) {
2158 dev_info(&vsi->back->pdev->dev,
2159 "Could not add filter %d for %pM\n",
2160 I40E_VLAN_ANY, f->macaddr);
2161 return -ENOMEM;
2162 }
2163 }
2164 }
2165
Anjali Singhai Jain80f64282013-11-28 06:39:47 +00002166 if (test_bit(__I40E_DOWN, &vsi->back->state) ||
2167 test_bit(__I40E_RESET_RECOVERY_PENDING, &vsi->back->state))
2168 return 0;
2169
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002170 return i40e_sync_vsi_filters(vsi);
2171}
2172
2173/**
2174 * i40e_vlan_rx_add_vid - Add a vlan id filter to HW offload
2175 * @netdev: network interface to be adjusted
2176 * @vid: vlan id to be added
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002177 *
2178 * net_device_ops implementation for adding vlan ids
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002179 **/
Vasu Dev38e00432014-08-01 13:27:03 -07002180#ifdef I40E_FCOE
2181int i40e_vlan_rx_add_vid(struct net_device *netdev,
2182 __always_unused __be16 proto, u16 vid)
2183#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002184static int i40e_vlan_rx_add_vid(struct net_device *netdev,
2185 __always_unused __be16 proto, u16 vid)
Vasu Dev38e00432014-08-01 13:27:03 -07002186#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002187{
2188 struct i40e_netdev_priv *np = netdev_priv(netdev);
2189 struct i40e_vsi *vsi = np->vsi;
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002190 int ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002191
2192 if (vid > 4095)
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002193 return -EINVAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002194
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002195 netdev_info(netdev, "adding %pM vid=%d\n", netdev->dev_addr, vid);
2196
Anjali Singhai Jain6982d422014-02-06 05:51:10 +00002197 /* If the network stack called us with vid = 0 then
2198 * it is asking to receive priority tagged packets with
2199 * vlan id 0. Our HW receives them by default when configured
2200 * to receive untagged packets so there is no need to add an
2201 * extra filter for vlan 0 tagged packets.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002202 */
Anjali Singhai Jain6982d422014-02-06 05:51:10 +00002203 if (vid)
2204 ret = i40e_vsi_add_vlan(vsi, vid);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002205
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002206 if (!ret && (vid < VLAN_N_VID))
2207 set_bit(vid, vsi->active_vlans);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002208
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002209 return ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002210}
2211
2212/**
2213 * i40e_vlan_rx_kill_vid - Remove a vlan id filter from HW offload
2214 * @netdev: network interface to be adjusted
2215 * @vid: vlan id to be removed
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002216 *
Akeem G Abodunrinfdfd9432014-02-11 08:24:15 +00002217 * net_device_ops implementation for removing vlan ids
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002218 **/
Vasu Dev38e00432014-08-01 13:27:03 -07002219#ifdef I40E_FCOE
2220int i40e_vlan_rx_kill_vid(struct net_device *netdev,
2221 __always_unused __be16 proto, u16 vid)
2222#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002223static int i40e_vlan_rx_kill_vid(struct net_device *netdev,
2224 __always_unused __be16 proto, u16 vid)
Vasu Dev38e00432014-08-01 13:27:03 -07002225#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002226{
2227 struct i40e_netdev_priv *np = netdev_priv(netdev);
2228 struct i40e_vsi *vsi = np->vsi;
2229
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002230 netdev_info(netdev, "removing %pM vid=%d\n", netdev->dev_addr, vid);
2231
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002232 /* return code is ignored as there is nothing a user
2233 * can do about failure to remove and a log message was
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002234 * already printed from the other function
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002235 */
2236 i40e_vsi_kill_vlan(vsi, vid);
2237
2238 clear_bit(vid, vsi->active_vlans);
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002239
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002240 return 0;
2241}
2242
2243/**
2244 * i40e_restore_vlan - Reinstate vlans when vsi/netdev comes back up
2245 * @vsi: the vsi being brought back up
2246 **/
2247static void i40e_restore_vlan(struct i40e_vsi *vsi)
2248{
2249 u16 vid;
2250
2251 if (!vsi->netdev)
2252 return;
2253
2254 i40e_vlan_rx_register(vsi->netdev, vsi->netdev->features);
2255
2256 for_each_set_bit(vid, vsi->active_vlans, VLAN_N_VID)
2257 i40e_vlan_rx_add_vid(vsi->netdev, htons(ETH_P_8021Q),
2258 vid);
2259}
2260
2261/**
2262 * i40e_vsi_add_pvid - Add pvid for the VSI
2263 * @vsi: the vsi being adjusted
2264 * @vid: the vlan id to set as a PVID
2265 **/
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00002266int i40e_vsi_add_pvid(struct i40e_vsi *vsi, u16 vid)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002267{
2268 struct i40e_vsi_context ctxt;
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00002269 i40e_status aq_ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002270
2271 vsi->info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
2272 vsi->info.pvid = cpu_to_le16(vid);
Greg Rose6c12fcb2013-11-28 06:39:34 +00002273 vsi->info.port_vlan_flags = I40E_AQ_VSI_PVLAN_MODE_TAGGED |
2274 I40E_AQ_VSI_PVLAN_INSERT_PVID |
Greg Roseb774c7d2013-11-28 06:39:44 +00002275 I40E_AQ_VSI_PVLAN_EMOD_STR;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002276
2277 ctxt.seid = vsi->seid;
2278 memcpy(&ctxt.info, &vsi->info, sizeof(vsi->info));
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00002279 aq_ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
2280 if (aq_ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002281 dev_info(&vsi->back->pdev->dev,
2282 "%s: update vsi failed, aq_err=%d\n",
2283 __func__, vsi->back->hw.aq.asq_last_status);
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00002284 return -ENOENT;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002285 }
2286
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00002287 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002288}
2289
2290/**
2291 * i40e_vsi_remove_pvid - Remove the pvid from the VSI
2292 * @vsi: the vsi being adjusted
2293 *
2294 * Just use the vlan_rx_register() service to put it back to normal
2295 **/
2296void i40e_vsi_remove_pvid(struct i40e_vsi *vsi)
2297{
Greg Rose6c12fcb2013-11-28 06:39:34 +00002298 i40e_vlan_stripping_disable(vsi);
2299
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002300 vsi->info.pvid = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002301}
2302
2303/**
2304 * i40e_vsi_setup_tx_resources - Allocate VSI Tx queue resources
2305 * @vsi: ptr to the VSI
2306 *
2307 * If this function returns with an error, then it's possible one or
2308 * more of the rings is populated (while the rest are not). It is the
2309 * callers duty to clean those orphaned rings.
2310 *
2311 * Return 0 on success, negative on failure
2312 **/
2313static int i40e_vsi_setup_tx_resources(struct i40e_vsi *vsi)
2314{
2315 int i, err = 0;
2316
2317 for (i = 0; i < vsi->num_queue_pairs && !err; i++)
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00002318 err = i40e_setup_tx_descriptors(vsi->tx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002319
2320 return err;
2321}
2322
2323/**
2324 * i40e_vsi_free_tx_resources - Free Tx resources for VSI queues
2325 * @vsi: ptr to the VSI
2326 *
2327 * Free VSI's transmit software resources
2328 **/
2329static void i40e_vsi_free_tx_resources(struct i40e_vsi *vsi)
2330{
2331 int i;
2332
Greg Rose8e9dca52013-12-18 13:45:53 +00002333 if (!vsi->tx_rings)
2334 return;
2335
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002336 for (i = 0; i < vsi->num_queue_pairs; i++)
Greg Rose8e9dca52013-12-18 13:45:53 +00002337 if (vsi->tx_rings[i] && vsi->tx_rings[i]->desc)
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00002338 i40e_free_tx_resources(vsi->tx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002339}
2340
2341/**
2342 * i40e_vsi_setup_rx_resources - Allocate VSI queues Rx resources
2343 * @vsi: ptr to the VSI
2344 *
2345 * If this function returns with an error, then it's possible one or
2346 * more of the rings is populated (while the rest are not). It is the
2347 * callers duty to clean those orphaned rings.
2348 *
2349 * Return 0 on success, negative on failure
2350 **/
2351static int i40e_vsi_setup_rx_resources(struct i40e_vsi *vsi)
2352{
2353 int i, err = 0;
2354
2355 for (i = 0; i < vsi->num_queue_pairs && !err; i++)
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00002356 err = i40e_setup_rx_descriptors(vsi->rx_rings[i]);
Vasu Dev38e00432014-08-01 13:27:03 -07002357#ifdef I40E_FCOE
2358 i40e_fcoe_setup_ddp_resources(vsi);
2359#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002360 return err;
2361}
2362
2363/**
2364 * i40e_vsi_free_rx_resources - Free Rx Resources for VSI queues
2365 * @vsi: ptr to the VSI
2366 *
2367 * Free all receive software resources
2368 **/
2369static void i40e_vsi_free_rx_resources(struct i40e_vsi *vsi)
2370{
2371 int i;
2372
Greg Rose8e9dca52013-12-18 13:45:53 +00002373 if (!vsi->rx_rings)
2374 return;
2375
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002376 for (i = 0; i < vsi->num_queue_pairs; i++)
Greg Rose8e9dca52013-12-18 13:45:53 +00002377 if (vsi->rx_rings[i] && vsi->rx_rings[i]->desc)
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00002378 i40e_free_rx_resources(vsi->rx_rings[i]);
Vasu Dev38e00432014-08-01 13:27:03 -07002379#ifdef I40E_FCOE
2380 i40e_fcoe_free_ddp_resources(vsi);
2381#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002382}
2383
2384/**
Neerav Parikh3ffa0372014-11-12 00:19:02 +00002385 * i40e_config_xps_tx_ring - Configure XPS for a Tx ring
2386 * @ring: The Tx ring to configure
2387 *
2388 * This enables/disables XPS for a given Tx descriptor ring
2389 * based on the TCs enabled for the VSI that ring belongs to.
2390 **/
2391static void i40e_config_xps_tx_ring(struct i40e_ring *ring)
2392{
2393 struct i40e_vsi *vsi = ring->vsi;
2394 cpumask_var_t mask;
2395
2396 if (ring->q_vector && ring->netdev) {
2397 /* Single TC mode enable XPS */
2398 if (vsi->tc_config.numtc <= 1 &&
2399 !test_and_set_bit(__I40E_TX_XPS_INIT_DONE, &ring->state)) {
2400 netif_set_xps_queue(ring->netdev,
2401 &ring->q_vector->affinity_mask,
2402 ring->queue_index);
2403 } else if (alloc_cpumask_var(&mask, GFP_KERNEL)) {
2404 /* Disable XPS to allow selection based on TC */
2405 bitmap_zero(cpumask_bits(mask), nr_cpumask_bits);
2406 netif_set_xps_queue(ring->netdev, mask,
2407 ring->queue_index);
2408 free_cpumask_var(mask);
2409 }
2410 }
2411}
2412
2413/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002414 * i40e_configure_tx_ring - Configure a transmit ring context and rest
2415 * @ring: The Tx ring to configure
2416 *
2417 * Configure the Tx descriptor ring in the HMC context.
2418 **/
2419static int i40e_configure_tx_ring(struct i40e_ring *ring)
2420{
2421 struct i40e_vsi *vsi = ring->vsi;
2422 u16 pf_q = vsi->base_queue + ring->queue_index;
2423 struct i40e_hw *hw = &vsi->back->hw;
2424 struct i40e_hmc_obj_txq tx_ctx;
2425 i40e_status err = 0;
2426 u32 qtx_ctl = 0;
2427
2428 /* some ATR related tx ring init */
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08002429 if (vsi->back->flags & I40E_FLAG_FD_ATR_ENABLED) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002430 ring->atr_sample_rate = vsi->back->atr_sample_rate;
2431 ring->atr_count = 0;
2432 } else {
2433 ring->atr_sample_rate = 0;
2434 }
2435
Neerav Parikh3ffa0372014-11-12 00:19:02 +00002436 /* configure XPS */
2437 i40e_config_xps_tx_ring(ring);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002438
2439 /* clear the context structure first */
2440 memset(&tx_ctx, 0, sizeof(tx_ctx));
2441
2442 tx_ctx.new_context = 1;
2443 tx_ctx.base = (ring->dma / 128);
2444 tx_ctx.qlen = ring->count;
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08002445 tx_ctx.fd_ena = !!(vsi->back->flags & (I40E_FLAG_FD_SB_ENABLED |
2446 I40E_FLAG_FD_ATR_ENABLED));
Vasu Dev38e00432014-08-01 13:27:03 -07002447#ifdef I40E_FCOE
2448 tx_ctx.fc_ena = (vsi->type == I40E_VSI_FCOE);
2449#endif
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00002450 tx_ctx.timesync_ena = !!(vsi->back->flags & I40E_FLAG_PTP);
Jesse Brandeburg1943d8b2014-02-14 02:14:40 +00002451 /* FDIR VSI tx ring can still use RS bit and writebacks */
2452 if (vsi->type != I40E_VSI_FDIR)
2453 tx_ctx.head_wb_ena = 1;
2454 tx_ctx.head_wb_addr = ring->dma +
2455 (ring->count * sizeof(struct i40e_tx_desc));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002456
2457 /* As part of VSI creation/update, FW allocates certain
2458 * Tx arbitration queue sets for each TC enabled for
2459 * the VSI. The FW returns the handles to these queue
2460 * sets as part of the response buffer to Add VSI,
2461 * Update VSI, etc. AQ commands. It is expected that
2462 * these queue set handles be associated with the Tx
2463 * queues by the driver as part of the TX queue context
2464 * initialization. This has to be done regardless of
2465 * DCB as by default everything is mapped to TC0.
2466 */
2467 tx_ctx.rdylist = le16_to_cpu(vsi->info.qs_handle[ring->dcb_tc]);
2468 tx_ctx.rdylist_act = 0;
2469
2470 /* clear the context in the HMC */
2471 err = i40e_clear_lan_tx_queue_context(hw, pf_q);
2472 if (err) {
2473 dev_info(&vsi->back->pdev->dev,
2474 "Failed to clear LAN Tx queue context on Tx ring %d (pf_q %d), error: %d\n",
2475 ring->queue_index, pf_q, err);
2476 return -ENOMEM;
2477 }
2478
2479 /* set the context in the HMC */
2480 err = i40e_set_lan_tx_queue_context(hw, pf_q, &tx_ctx);
2481 if (err) {
2482 dev_info(&vsi->back->pdev->dev,
2483 "Failed to set LAN Tx queue context on Tx ring %d (pf_q %d, error: %d\n",
2484 ring->queue_index, pf_q, err);
2485 return -ENOMEM;
2486 }
2487
2488 /* Now associate this queue with this PCI function */
Mitch Williams7a28d882014-10-17 03:14:52 +00002489 if (vsi->type == I40E_VSI_VMDQ2) {
Shannon Nelson9d8bf542014-01-14 00:49:50 -08002490 qtx_ctl = I40E_QTX_CTL_VM_QUEUE;
Mitch Williams7a28d882014-10-17 03:14:52 +00002491 qtx_ctl |= ((vsi->id) << I40E_QTX_CTL_VFVM_INDX_SHIFT) &
2492 I40E_QTX_CTL_VFVM_INDX_MASK;
2493 } else {
Shannon Nelson9d8bf542014-01-14 00:49:50 -08002494 qtx_ctl = I40E_QTX_CTL_PF_QUEUE;
Mitch Williams7a28d882014-10-17 03:14:52 +00002495 }
2496
Shannon Nelson13fd9772013-09-28 07:14:19 +00002497 qtx_ctl |= ((hw->pf_id << I40E_QTX_CTL_PF_INDX_SHIFT) &
2498 I40E_QTX_CTL_PF_INDX_MASK);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002499 wr32(hw, I40E_QTX_CTL(pf_q), qtx_ctl);
2500 i40e_flush(hw);
2501
2502 clear_bit(__I40E_HANG_CHECK_ARMED, &ring->state);
2503
2504 /* cache tail off for easier writes later */
2505 ring->tail = hw->hw_addr + I40E_QTX_TAIL(pf_q);
2506
2507 return 0;
2508}
2509
2510/**
2511 * i40e_configure_rx_ring - Configure a receive ring context
2512 * @ring: The Rx ring to configure
2513 *
2514 * Configure the Rx descriptor ring in the HMC context.
2515 **/
2516static int i40e_configure_rx_ring(struct i40e_ring *ring)
2517{
2518 struct i40e_vsi *vsi = ring->vsi;
2519 u32 chain_len = vsi->back->hw.func_caps.rx_buf_chain_len;
2520 u16 pf_q = vsi->base_queue + ring->queue_index;
2521 struct i40e_hw *hw = &vsi->back->hw;
2522 struct i40e_hmc_obj_rxq rx_ctx;
2523 i40e_status err = 0;
2524
2525 ring->state = 0;
2526
2527 /* clear the context structure first */
2528 memset(&rx_ctx, 0, sizeof(rx_ctx));
2529
2530 ring->rx_buf_len = vsi->rx_buf_len;
2531 ring->rx_hdr_len = vsi->rx_hdr_len;
2532
2533 rx_ctx.dbuff = ring->rx_buf_len >> I40E_RXQ_CTX_DBUFF_SHIFT;
2534 rx_ctx.hbuff = ring->rx_hdr_len >> I40E_RXQ_CTX_HBUFF_SHIFT;
2535
2536 rx_ctx.base = (ring->dma / 128);
2537 rx_ctx.qlen = ring->count;
2538
2539 if (vsi->back->flags & I40E_FLAG_16BYTE_RX_DESC_ENABLED) {
2540 set_ring_16byte_desc_enabled(ring);
2541 rx_ctx.dsize = 0;
2542 } else {
2543 rx_ctx.dsize = 1;
2544 }
2545
2546 rx_ctx.dtype = vsi->dtype;
2547 if (vsi->dtype) {
2548 set_ring_ps_enabled(ring);
2549 rx_ctx.hsplit_0 = I40E_RX_SPLIT_L2 |
2550 I40E_RX_SPLIT_IP |
2551 I40E_RX_SPLIT_TCP_UDP |
2552 I40E_RX_SPLIT_SCTP;
2553 } else {
2554 rx_ctx.hsplit_0 = 0;
2555 }
2556
2557 rx_ctx.rxmax = min_t(u16, vsi->max_frame,
2558 (chain_len * ring->rx_buf_len));
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00002559 if (hw->revision_id == 0)
2560 rx_ctx.lrxqthresh = 0;
2561 else
2562 rx_ctx.lrxqthresh = 2;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002563 rx_ctx.crcstrip = 1;
2564 rx_ctx.l2tsel = 1;
2565 rx_ctx.showiv = 1;
Vasu Dev38e00432014-08-01 13:27:03 -07002566#ifdef I40E_FCOE
2567 rx_ctx.fc_ena = (vsi->type == I40E_VSI_FCOE);
2568#endif
Catherine Sullivanacb36762014-03-06 09:02:30 +00002569 /* set the prefena field to 1 because the manual says to */
2570 rx_ctx.prefena = 1;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002571
2572 /* clear the context in the HMC */
2573 err = i40e_clear_lan_rx_queue_context(hw, pf_q);
2574 if (err) {
2575 dev_info(&vsi->back->pdev->dev,
2576 "Failed to clear LAN Rx queue context on Rx ring %d (pf_q %d), error: %d\n",
2577 ring->queue_index, pf_q, err);
2578 return -ENOMEM;
2579 }
2580
2581 /* set the context in the HMC */
2582 err = i40e_set_lan_rx_queue_context(hw, pf_q, &rx_ctx);
2583 if (err) {
2584 dev_info(&vsi->back->pdev->dev,
2585 "Failed to set LAN Rx queue context on Rx ring %d (pf_q %d), error: %d\n",
2586 ring->queue_index, pf_q, err);
2587 return -ENOMEM;
2588 }
2589
2590 /* cache tail for quicker writes, and clear the reg before use */
2591 ring->tail = hw->hw_addr + I40E_QRX_TAIL(pf_q);
2592 writel(0, ring->tail);
2593
2594 i40e_alloc_rx_buffers(ring, I40E_DESC_UNUSED(ring));
2595
2596 return 0;
2597}
2598
2599/**
2600 * i40e_vsi_configure_tx - Configure the VSI for Tx
2601 * @vsi: VSI structure describing this set of rings and resources
2602 *
2603 * Configure the Tx VSI for operation.
2604 **/
2605static int i40e_vsi_configure_tx(struct i40e_vsi *vsi)
2606{
2607 int err = 0;
2608 u16 i;
2609
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00002610 for (i = 0; (i < vsi->num_queue_pairs) && !err; i++)
2611 err = i40e_configure_tx_ring(vsi->tx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002612
2613 return err;
2614}
2615
2616/**
2617 * i40e_vsi_configure_rx - Configure the VSI for Rx
2618 * @vsi: the VSI being configured
2619 *
2620 * Configure the Rx VSI for operation.
2621 **/
2622static int i40e_vsi_configure_rx(struct i40e_vsi *vsi)
2623{
2624 int err = 0;
2625 u16 i;
2626
2627 if (vsi->netdev && (vsi->netdev->mtu > ETH_DATA_LEN))
2628 vsi->max_frame = vsi->netdev->mtu + ETH_HLEN
2629 + ETH_FCS_LEN + VLAN_HLEN;
2630 else
2631 vsi->max_frame = I40E_RXBUFFER_2048;
2632
2633 /* figure out correct receive buffer length */
2634 switch (vsi->back->flags & (I40E_FLAG_RX_1BUF_ENABLED |
2635 I40E_FLAG_RX_PS_ENABLED)) {
2636 case I40E_FLAG_RX_1BUF_ENABLED:
2637 vsi->rx_hdr_len = 0;
2638 vsi->rx_buf_len = vsi->max_frame;
2639 vsi->dtype = I40E_RX_DTYPE_NO_SPLIT;
2640 break;
2641 case I40E_FLAG_RX_PS_ENABLED:
2642 vsi->rx_hdr_len = I40E_RX_HDR_SIZE;
2643 vsi->rx_buf_len = I40E_RXBUFFER_2048;
2644 vsi->dtype = I40E_RX_DTYPE_HEADER_SPLIT;
2645 break;
2646 default:
2647 vsi->rx_hdr_len = I40E_RX_HDR_SIZE;
2648 vsi->rx_buf_len = I40E_RXBUFFER_2048;
2649 vsi->dtype = I40E_RX_DTYPE_SPLIT_ALWAYS;
2650 break;
2651 }
2652
Vasu Dev38e00432014-08-01 13:27:03 -07002653#ifdef I40E_FCOE
2654 /* setup rx buffer for FCoE */
2655 if ((vsi->type == I40E_VSI_FCOE) &&
2656 (vsi->back->flags & I40E_FLAG_FCOE_ENABLED)) {
2657 vsi->rx_hdr_len = 0;
2658 vsi->rx_buf_len = I40E_RXBUFFER_3072;
2659 vsi->max_frame = I40E_RXBUFFER_3072;
2660 vsi->dtype = I40E_RX_DTYPE_NO_SPLIT;
2661 }
2662
2663#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002664 /* round up for the chip's needs */
2665 vsi->rx_hdr_len = ALIGN(vsi->rx_hdr_len,
2666 (1 << I40E_RXQ_CTX_HBUFF_SHIFT));
2667 vsi->rx_buf_len = ALIGN(vsi->rx_buf_len,
2668 (1 << I40E_RXQ_CTX_DBUFF_SHIFT));
2669
2670 /* set up individual rings */
2671 for (i = 0; i < vsi->num_queue_pairs && !err; i++)
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00002672 err = i40e_configure_rx_ring(vsi->rx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002673
2674 return err;
2675}
2676
2677/**
2678 * i40e_vsi_config_dcb_rings - Update rings to reflect DCB TC
2679 * @vsi: ptr to the VSI
2680 **/
2681static void i40e_vsi_config_dcb_rings(struct i40e_vsi *vsi)
2682{
Akeem G Abodunrine7046ee2014-04-09 05:58:58 +00002683 struct i40e_ring *tx_ring, *rx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002684 u16 qoffset, qcount;
2685 int i, n;
2686
2687 if (!(vsi->back->flags & I40E_FLAG_DCB_ENABLED))
2688 return;
2689
2690 for (n = 0; n < I40E_MAX_TRAFFIC_CLASS; n++) {
2691 if (!(vsi->tc_config.enabled_tc & (1 << n)))
2692 continue;
2693
2694 qoffset = vsi->tc_config.tc_info[n].qoffset;
2695 qcount = vsi->tc_config.tc_info[n].qcount;
2696 for (i = qoffset; i < (qoffset + qcount); i++) {
Akeem G Abodunrine7046ee2014-04-09 05:58:58 +00002697 rx_ring = vsi->rx_rings[i];
2698 tx_ring = vsi->tx_rings[i];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002699 rx_ring->dcb_tc = n;
2700 tx_ring->dcb_tc = n;
2701 }
2702 }
2703}
2704
2705/**
2706 * i40e_set_vsi_rx_mode - Call set_rx_mode on a VSI
2707 * @vsi: ptr to the VSI
2708 **/
2709static void i40e_set_vsi_rx_mode(struct i40e_vsi *vsi)
2710{
2711 if (vsi->netdev)
2712 i40e_set_rx_mode(vsi->netdev);
2713}
2714
2715/**
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002716 * i40e_fdir_filter_restore - Restore the Sideband Flow Director filters
2717 * @vsi: Pointer to the targeted VSI
2718 *
2719 * This function replays the hlist on the hw where all the SB Flow Director
2720 * filters were saved.
2721 **/
2722static void i40e_fdir_filter_restore(struct i40e_vsi *vsi)
2723{
2724 struct i40e_fdir_filter *filter;
2725 struct i40e_pf *pf = vsi->back;
2726 struct hlist_node *node;
2727
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00002728 if (!(pf->flags & I40E_FLAG_FD_SB_ENABLED))
2729 return;
2730
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002731 hlist_for_each_entry_safe(filter, node,
2732 &pf->fdir_filter_list, fdir_node) {
2733 i40e_add_del_fdir(vsi, filter, true);
2734 }
2735}
2736
2737/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002738 * i40e_vsi_configure - Set up the VSI for action
2739 * @vsi: the VSI being configured
2740 **/
2741static int i40e_vsi_configure(struct i40e_vsi *vsi)
2742{
2743 int err;
2744
2745 i40e_set_vsi_rx_mode(vsi);
2746 i40e_restore_vlan(vsi);
2747 i40e_vsi_config_dcb_rings(vsi);
2748 err = i40e_vsi_configure_tx(vsi);
2749 if (!err)
2750 err = i40e_vsi_configure_rx(vsi);
2751
2752 return err;
2753}
2754
2755/**
2756 * i40e_vsi_configure_msix - MSIX mode Interrupt Config in the HW
2757 * @vsi: the VSI being configured
2758 **/
2759static void i40e_vsi_configure_msix(struct i40e_vsi *vsi)
2760{
2761 struct i40e_pf *pf = vsi->back;
2762 struct i40e_q_vector *q_vector;
2763 struct i40e_hw *hw = &pf->hw;
2764 u16 vector;
2765 int i, q;
2766 u32 val;
2767 u32 qp;
2768
2769 /* The interrupt indexing is offset by 1 in the PFINT_ITRn
2770 * and PFINT_LNKLSTn registers, e.g.:
2771 * PFINT_ITRn[0..n-1] gets msix-1..msix-n (qpair interrupts)
2772 */
2773 qp = vsi->base_queue;
2774 vector = vsi->base_vector;
Alexander Duyck493fb302013-09-28 07:01:44 +00002775 for (i = 0; i < vsi->num_q_vectors; i++, vector++) {
2776 q_vector = vsi->q_vectors[i];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002777 q_vector->rx.itr = ITR_TO_REG(vsi->rx_itr_setting);
2778 q_vector->rx.latency_range = I40E_LOW_LATENCY;
2779 wr32(hw, I40E_PFINT_ITRN(I40E_RX_ITR, vector - 1),
2780 q_vector->rx.itr);
2781 q_vector->tx.itr = ITR_TO_REG(vsi->tx_itr_setting);
2782 q_vector->tx.latency_range = I40E_LOW_LATENCY;
2783 wr32(hw, I40E_PFINT_ITRN(I40E_TX_ITR, vector - 1),
2784 q_vector->tx.itr);
2785
2786 /* Linked list for the queuepairs assigned to this vector */
2787 wr32(hw, I40E_PFINT_LNKLSTN(vector - 1), qp);
2788 for (q = 0; q < q_vector->num_ringpairs; q++) {
2789 val = I40E_QINT_RQCTL_CAUSE_ENA_MASK |
2790 (I40E_RX_ITR << I40E_QINT_RQCTL_ITR_INDX_SHIFT) |
2791 (vector << I40E_QINT_RQCTL_MSIX_INDX_SHIFT) |
2792 (qp << I40E_QINT_RQCTL_NEXTQ_INDX_SHIFT)|
2793 (I40E_QUEUE_TYPE_TX
2794 << I40E_QINT_RQCTL_NEXTQ_TYPE_SHIFT);
2795
2796 wr32(hw, I40E_QINT_RQCTL(qp), val);
2797
2798 val = I40E_QINT_TQCTL_CAUSE_ENA_MASK |
2799 (I40E_TX_ITR << I40E_QINT_TQCTL_ITR_INDX_SHIFT) |
2800 (vector << I40E_QINT_TQCTL_MSIX_INDX_SHIFT) |
2801 ((qp+1) << I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT)|
2802 (I40E_QUEUE_TYPE_RX
2803 << I40E_QINT_TQCTL_NEXTQ_TYPE_SHIFT);
2804
2805 /* Terminate the linked list */
2806 if (q == (q_vector->num_ringpairs - 1))
2807 val |= (I40E_QUEUE_END_OF_LIST
2808 << I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT);
2809
2810 wr32(hw, I40E_QINT_TQCTL(qp), val);
2811 qp++;
2812 }
2813 }
2814
2815 i40e_flush(hw);
2816}
2817
2818/**
2819 * i40e_enable_misc_int_causes - enable the non-queue interrupts
2820 * @hw: ptr to the hardware info
2821 **/
2822static void i40e_enable_misc_int_causes(struct i40e_hw *hw)
2823{
2824 u32 val;
2825
2826 /* clear things first */
2827 wr32(hw, I40E_PFINT_ICR0_ENA, 0); /* disable all */
2828 rd32(hw, I40E_PFINT_ICR0); /* read to clear */
2829
2830 val = I40E_PFINT_ICR0_ENA_ECC_ERR_MASK |
2831 I40E_PFINT_ICR0_ENA_MAL_DETECT_MASK |
2832 I40E_PFINT_ICR0_ENA_GRST_MASK |
2833 I40E_PFINT_ICR0_ENA_PCI_EXCEPTION_MASK |
2834 I40E_PFINT_ICR0_ENA_GPIO_MASK |
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00002835 I40E_PFINT_ICR0_ENA_TIMESYNC_MASK |
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002836 I40E_PFINT_ICR0_ENA_HMC_ERR_MASK |
2837 I40E_PFINT_ICR0_ENA_VFLR_MASK |
2838 I40E_PFINT_ICR0_ENA_ADMINQ_MASK;
2839
2840 wr32(hw, I40E_PFINT_ICR0_ENA, val);
2841
2842 /* SW_ITR_IDX = 0, but don't change INTENA */
Anjali Singhai Jain84ed40e2013-11-26 10:49:32 +00002843 wr32(hw, I40E_PFINT_DYN_CTL0, I40E_PFINT_DYN_CTL0_SW_ITR_INDX_MASK |
2844 I40E_PFINT_DYN_CTL0_INTENA_MSK_MASK);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002845
2846 /* OTHER_ITR_IDX = 0 */
2847 wr32(hw, I40E_PFINT_STAT_CTL0, 0);
2848}
2849
2850/**
2851 * i40e_configure_msi_and_legacy - Legacy mode interrupt config in the HW
2852 * @vsi: the VSI being configured
2853 **/
2854static void i40e_configure_msi_and_legacy(struct i40e_vsi *vsi)
2855{
Alexander Duyck493fb302013-09-28 07:01:44 +00002856 struct i40e_q_vector *q_vector = vsi->q_vectors[0];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002857 struct i40e_pf *pf = vsi->back;
2858 struct i40e_hw *hw = &pf->hw;
2859 u32 val;
2860
2861 /* set the ITR configuration */
2862 q_vector->rx.itr = ITR_TO_REG(vsi->rx_itr_setting);
2863 q_vector->rx.latency_range = I40E_LOW_LATENCY;
2864 wr32(hw, I40E_PFINT_ITR0(I40E_RX_ITR), q_vector->rx.itr);
2865 q_vector->tx.itr = ITR_TO_REG(vsi->tx_itr_setting);
2866 q_vector->tx.latency_range = I40E_LOW_LATENCY;
2867 wr32(hw, I40E_PFINT_ITR0(I40E_TX_ITR), q_vector->tx.itr);
2868
2869 i40e_enable_misc_int_causes(hw);
2870
2871 /* FIRSTQ_INDX = 0, FIRSTQ_TYPE = 0 (rx) */
2872 wr32(hw, I40E_PFINT_LNKLST0, 0);
2873
Jesse Brandeburgf29eaa32014-02-11 08:24:12 +00002874 /* Associate the queue pair to the vector and enable the queue int */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002875 val = I40E_QINT_RQCTL_CAUSE_ENA_MASK |
2876 (I40E_RX_ITR << I40E_QINT_RQCTL_ITR_INDX_SHIFT) |
2877 (I40E_QUEUE_TYPE_TX << I40E_QINT_TQCTL_NEXTQ_TYPE_SHIFT);
2878
2879 wr32(hw, I40E_QINT_RQCTL(0), val);
2880
2881 val = I40E_QINT_TQCTL_CAUSE_ENA_MASK |
2882 (I40E_TX_ITR << I40E_QINT_TQCTL_ITR_INDX_SHIFT) |
2883 (I40E_QUEUE_END_OF_LIST << I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT);
2884
2885 wr32(hw, I40E_QINT_TQCTL(0), val);
2886 i40e_flush(hw);
2887}
2888
2889/**
Mitch Williams2ef28cf2013-11-28 06:39:32 +00002890 * i40e_irq_dynamic_disable_icr0 - Disable default interrupt generation for icr0
2891 * @pf: board private structure
2892 **/
2893void i40e_irq_dynamic_disable_icr0(struct i40e_pf *pf)
2894{
2895 struct i40e_hw *hw = &pf->hw;
2896
2897 wr32(hw, I40E_PFINT_DYN_CTL0,
2898 I40E_ITR_NONE << I40E_PFINT_DYN_CTLN_ITR_INDX_SHIFT);
2899 i40e_flush(hw);
2900}
2901
2902/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002903 * i40e_irq_dynamic_enable_icr0 - Enable default interrupt generation for icr0
2904 * @pf: board private structure
2905 **/
Shannon Nelson116a57d2013-09-28 07:13:59 +00002906void i40e_irq_dynamic_enable_icr0(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002907{
2908 struct i40e_hw *hw = &pf->hw;
2909 u32 val;
2910
2911 val = I40E_PFINT_DYN_CTL0_INTENA_MASK |
2912 I40E_PFINT_DYN_CTL0_CLEARPBA_MASK |
2913 (I40E_ITR_NONE << I40E_PFINT_DYN_CTL0_ITR_INDX_SHIFT);
2914
2915 wr32(hw, I40E_PFINT_DYN_CTL0, val);
2916 i40e_flush(hw);
2917}
2918
2919/**
2920 * i40e_irq_dynamic_enable - Enable default interrupt generation settings
2921 * @vsi: pointer to a vsi
2922 * @vector: enable a particular Hw Interrupt vector
2923 **/
2924void i40e_irq_dynamic_enable(struct i40e_vsi *vsi, int vector)
2925{
2926 struct i40e_pf *pf = vsi->back;
2927 struct i40e_hw *hw = &pf->hw;
2928 u32 val;
2929
2930 val = I40E_PFINT_DYN_CTLN_INTENA_MASK |
2931 I40E_PFINT_DYN_CTLN_CLEARPBA_MASK |
2932 (I40E_ITR_NONE << I40E_PFINT_DYN_CTLN_ITR_INDX_SHIFT);
2933 wr32(hw, I40E_PFINT_DYN_CTLN(vector - 1), val);
Jesse Brandeburg1022cb62013-09-28 07:13:08 +00002934 /* skip the flush */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002935}
2936
2937/**
Carolyn Wyborny5c2cebd2014-06-04 01:23:18 +00002938 * i40e_irq_dynamic_disable - Disable default interrupt generation settings
2939 * @vsi: pointer to a vsi
2940 * @vector: enable a particular Hw Interrupt vector
2941 **/
2942void i40e_irq_dynamic_disable(struct i40e_vsi *vsi, int vector)
2943{
2944 struct i40e_pf *pf = vsi->back;
2945 struct i40e_hw *hw = &pf->hw;
2946 u32 val;
2947
2948 val = I40E_ITR_NONE << I40E_PFINT_DYN_CTLN_ITR_INDX_SHIFT;
2949 wr32(hw, I40E_PFINT_DYN_CTLN(vector - 1), val);
2950 i40e_flush(hw);
2951}
2952
2953/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002954 * i40e_msix_clean_rings - MSIX mode Interrupt Handler
2955 * @irq: interrupt number
2956 * @data: pointer to a q_vector
2957 **/
2958static irqreturn_t i40e_msix_clean_rings(int irq, void *data)
2959{
2960 struct i40e_q_vector *q_vector = data;
2961
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00002962 if (!q_vector->tx.ring && !q_vector->rx.ring)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002963 return IRQ_HANDLED;
2964
2965 napi_schedule(&q_vector->napi);
2966
2967 return IRQ_HANDLED;
2968}
2969
2970/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002971 * i40e_vsi_request_irq_msix - Initialize MSI-X interrupts
2972 * @vsi: the VSI being configured
2973 * @basename: name for the vector
2974 *
2975 * Allocates MSI-X vectors and requests interrupts from the kernel.
2976 **/
2977static int i40e_vsi_request_irq_msix(struct i40e_vsi *vsi, char *basename)
2978{
2979 int q_vectors = vsi->num_q_vectors;
2980 struct i40e_pf *pf = vsi->back;
2981 int base = vsi->base_vector;
2982 int rx_int_idx = 0;
2983 int tx_int_idx = 0;
2984 int vector, err;
2985
2986 for (vector = 0; vector < q_vectors; vector++) {
Alexander Duyck493fb302013-09-28 07:01:44 +00002987 struct i40e_q_vector *q_vector = vsi->q_vectors[vector];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002988
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00002989 if (q_vector->tx.ring && q_vector->rx.ring) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002990 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
2991 "%s-%s-%d", basename, "TxRx", rx_int_idx++);
2992 tx_int_idx++;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00002993 } else if (q_vector->rx.ring) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002994 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
2995 "%s-%s-%d", basename, "rx", rx_int_idx++);
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00002996 } else if (q_vector->tx.ring) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002997 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
2998 "%s-%s-%d", basename, "tx", tx_int_idx++);
2999 } else {
3000 /* skip this unused q_vector */
3001 continue;
3002 }
3003 err = request_irq(pf->msix_entries[base + vector].vector,
3004 vsi->irq_handler,
3005 0,
3006 q_vector->name,
3007 q_vector);
3008 if (err) {
3009 dev_info(&pf->pdev->dev,
3010 "%s: request_irq failed, error: %d\n",
3011 __func__, err);
3012 goto free_queue_irqs;
3013 }
3014 /* assign the mask for this irq */
3015 irq_set_affinity_hint(pf->msix_entries[base + vector].vector,
3016 &q_vector->affinity_mask);
3017 }
3018
Shannon Nelson63741842014-04-23 04:50:16 +00003019 vsi->irqs_ready = true;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003020 return 0;
3021
3022free_queue_irqs:
3023 while (vector) {
3024 vector--;
3025 irq_set_affinity_hint(pf->msix_entries[base + vector].vector,
3026 NULL);
3027 free_irq(pf->msix_entries[base + vector].vector,
3028 &(vsi->q_vectors[vector]));
3029 }
3030 return err;
3031}
3032
3033/**
3034 * i40e_vsi_disable_irq - Mask off queue interrupt generation on the VSI
3035 * @vsi: the VSI being un-configured
3036 **/
3037static void i40e_vsi_disable_irq(struct i40e_vsi *vsi)
3038{
3039 struct i40e_pf *pf = vsi->back;
3040 struct i40e_hw *hw = &pf->hw;
3041 int base = vsi->base_vector;
3042 int i;
3043
3044 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00003045 wr32(hw, I40E_QINT_TQCTL(vsi->tx_rings[i]->reg_idx), 0);
3046 wr32(hw, I40E_QINT_RQCTL(vsi->rx_rings[i]->reg_idx), 0);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003047 }
3048
3049 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
3050 for (i = vsi->base_vector;
3051 i < (vsi->num_q_vectors + vsi->base_vector); i++)
3052 wr32(hw, I40E_PFINT_DYN_CTLN(i - 1), 0);
3053
3054 i40e_flush(hw);
3055 for (i = 0; i < vsi->num_q_vectors; i++)
3056 synchronize_irq(pf->msix_entries[i + base].vector);
3057 } else {
3058 /* Legacy and MSI mode - this stops all interrupt handling */
3059 wr32(hw, I40E_PFINT_ICR0_ENA, 0);
3060 wr32(hw, I40E_PFINT_DYN_CTL0, 0);
3061 i40e_flush(hw);
3062 synchronize_irq(pf->pdev->irq);
3063 }
3064}
3065
3066/**
3067 * i40e_vsi_enable_irq - Enable IRQ for the given VSI
3068 * @vsi: the VSI being configured
3069 **/
3070static int i40e_vsi_enable_irq(struct i40e_vsi *vsi)
3071{
3072 struct i40e_pf *pf = vsi->back;
3073 int i;
3074
3075 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
3076 for (i = vsi->base_vector;
3077 i < (vsi->num_q_vectors + vsi->base_vector); i++)
3078 i40e_irq_dynamic_enable(vsi, i);
3079 } else {
3080 i40e_irq_dynamic_enable_icr0(pf);
3081 }
3082
Jesse Brandeburg1022cb62013-09-28 07:13:08 +00003083 i40e_flush(&pf->hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003084 return 0;
3085}
3086
3087/**
3088 * i40e_stop_misc_vector - Stop the vector that handles non-queue events
3089 * @pf: board private structure
3090 **/
3091static void i40e_stop_misc_vector(struct i40e_pf *pf)
3092{
3093 /* Disable ICR 0 */
3094 wr32(&pf->hw, I40E_PFINT_ICR0_ENA, 0);
3095 i40e_flush(&pf->hw);
3096}
3097
3098/**
3099 * i40e_intr - MSI/Legacy and non-queue interrupt handler
3100 * @irq: interrupt number
3101 * @data: pointer to a q_vector
3102 *
3103 * This is the handler used for all MSI/Legacy interrupts, and deals
3104 * with both queue and non-queue interrupts. This is also used in
3105 * MSIX mode to handle the non-queue interrupts.
3106 **/
3107static irqreturn_t i40e_intr(int irq, void *data)
3108{
3109 struct i40e_pf *pf = (struct i40e_pf *)data;
3110 struct i40e_hw *hw = &pf->hw;
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003111 irqreturn_t ret = IRQ_NONE;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003112 u32 icr0, icr0_remaining;
3113 u32 val, ena_mask;
3114
3115 icr0 = rd32(hw, I40E_PFINT_ICR0);
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003116 ena_mask = rd32(hw, I40E_PFINT_ICR0_ENA);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003117
Shannon Nelson116a57d2013-09-28 07:13:59 +00003118 /* if sharing a legacy IRQ, we might get called w/o an intr pending */
3119 if ((icr0 & I40E_PFINT_ICR0_INTEVENT_MASK) == 0)
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003120 goto enable_intr;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003121
Shannon Nelsoncd92e722013-11-16 10:00:44 +00003122 /* if interrupt but no bits showing, must be SWINT */
3123 if (((icr0 & ~I40E_PFINT_ICR0_INTEVENT_MASK) == 0) ||
3124 (icr0 & I40E_PFINT_ICR0_SWINT_MASK))
3125 pf->sw_int_count++;
3126
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003127 /* only q0 is used in MSI/Legacy mode, and none are used in MSIX */
3128 if (icr0 & I40E_PFINT_ICR0_QUEUE_0_MASK) {
3129
3130 /* temporarily disable queue cause for NAPI processing */
3131 u32 qval = rd32(hw, I40E_QINT_RQCTL(0));
3132 qval &= ~I40E_QINT_RQCTL_CAUSE_ENA_MASK;
3133 wr32(hw, I40E_QINT_RQCTL(0), qval);
3134
3135 qval = rd32(hw, I40E_QINT_TQCTL(0));
3136 qval &= ~I40E_QINT_TQCTL_CAUSE_ENA_MASK;
3137 wr32(hw, I40E_QINT_TQCTL(0), qval);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003138
3139 if (!test_bit(__I40E_DOWN, &pf->state))
Alexander Duyck493fb302013-09-28 07:01:44 +00003140 napi_schedule(&pf->vsi[pf->lan_vsi]->q_vectors[0]->napi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003141 }
3142
3143 if (icr0 & I40E_PFINT_ICR0_ADMINQ_MASK) {
3144 ena_mask &= ~I40E_PFINT_ICR0_ENA_ADMINQ_MASK;
3145 set_bit(__I40E_ADMINQ_EVENT_PENDING, &pf->state);
3146 }
3147
3148 if (icr0 & I40E_PFINT_ICR0_MAL_DETECT_MASK) {
3149 ena_mask &= ~I40E_PFINT_ICR0_ENA_MAL_DETECT_MASK;
3150 set_bit(__I40E_MDD_EVENT_PENDING, &pf->state);
3151 }
3152
3153 if (icr0 & I40E_PFINT_ICR0_VFLR_MASK) {
3154 ena_mask &= ~I40E_PFINT_ICR0_ENA_VFLR_MASK;
3155 set_bit(__I40E_VFLR_EVENT_PENDING, &pf->state);
3156 }
3157
3158 if (icr0 & I40E_PFINT_ICR0_GRST_MASK) {
3159 if (!test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state))
3160 set_bit(__I40E_RESET_INTR_RECEIVED, &pf->state);
3161 ena_mask &= ~I40E_PFINT_ICR0_ENA_GRST_MASK;
3162 val = rd32(hw, I40E_GLGEN_RSTAT);
3163 val = (val & I40E_GLGEN_RSTAT_RESET_TYPE_MASK)
3164 >> I40E_GLGEN_RSTAT_RESET_TYPE_SHIFT;
Shannon Nelson4eb3f762014-03-06 08:59:58 +00003165 if (val == I40E_RESET_CORER) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003166 pf->corer_count++;
Shannon Nelson4eb3f762014-03-06 08:59:58 +00003167 } else if (val == I40E_RESET_GLOBR) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003168 pf->globr_count++;
Shannon Nelson4eb3f762014-03-06 08:59:58 +00003169 } else if (val == I40E_RESET_EMPR) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003170 pf->empr_count++;
Shannon Nelson4eb3f762014-03-06 08:59:58 +00003171 set_bit(__I40E_EMP_RESET_REQUESTED, &pf->state);
3172 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003173 }
3174
Anjali Singhai Jain9c010ee2013-11-28 06:39:20 +00003175 if (icr0 & I40E_PFINT_ICR0_HMC_ERR_MASK) {
3176 icr0 &= ~I40E_PFINT_ICR0_HMC_ERR_MASK;
3177 dev_info(&pf->pdev->dev, "HMC error interrupt\n");
3178 }
3179
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00003180 if (icr0 & I40E_PFINT_ICR0_TIMESYNC_MASK) {
3181 u32 prttsyn_stat = rd32(hw, I40E_PRTTSYN_STAT_0);
3182
3183 if (prttsyn_stat & I40E_PRTTSYN_STAT_0_TXTIME_MASK) {
Jacob Kellercafa1fc2014-04-24 18:05:03 -07003184 icr0 &= ~I40E_PFINT_ICR0_ENA_TIMESYNC_MASK;
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00003185 i40e_ptp_tx_hwtstamp(pf);
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00003186 }
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00003187 }
3188
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003189 /* If a critical error is pending we have no choice but to reset the
3190 * device.
3191 * Report and mask out any remaining unexpected interrupts.
3192 */
3193 icr0_remaining = icr0 & ena_mask;
3194 if (icr0_remaining) {
3195 dev_info(&pf->pdev->dev, "unhandled interrupt icr0=0x%08x\n",
3196 icr0_remaining);
Anjali Singhai Jain9c010ee2013-11-28 06:39:20 +00003197 if ((icr0_remaining & I40E_PFINT_ICR0_PE_CRITERR_MASK) ||
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003198 (icr0_remaining & I40E_PFINT_ICR0_PCI_EXCEPTION_MASK) ||
Anjali Singhai Jainc0c28972014-02-12 01:45:34 +00003199 (icr0_remaining & I40E_PFINT_ICR0_ECC_ERR_MASK)) {
Anjali Singhai Jain9c010ee2013-11-28 06:39:20 +00003200 dev_info(&pf->pdev->dev, "device will be reset\n");
3201 set_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
3202 i40e_service_event_schedule(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003203 }
3204 ena_mask &= ~icr0_remaining;
3205 }
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003206 ret = IRQ_HANDLED;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003207
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003208enable_intr:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003209 /* re-enable interrupt causes */
3210 wr32(hw, I40E_PFINT_ICR0_ENA, ena_mask);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003211 if (!test_bit(__I40E_DOWN, &pf->state)) {
3212 i40e_service_event_schedule(pf);
3213 i40e_irq_dynamic_enable_icr0(pf);
3214 }
3215
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003216 return ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003217}
3218
3219/**
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003220 * i40e_clean_fdir_tx_irq - Reclaim resources after transmit completes
3221 * @tx_ring: tx ring to clean
3222 * @budget: how many cleans we're allowed
3223 *
3224 * Returns true if there's any budget left (e.g. the clean is finished)
3225 **/
3226static bool i40e_clean_fdir_tx_irq(struct i40e_ring *tx_ring, int budget)
3227{
3228 struct i40e_vsi *vsi = tx_ring->vsi;
3229 u16 i = tx_ring->next_to_clean;
3230 struct i40e_tx_buffer *tx_buf;
3231 struct i40e_tx_desc *tx_desc;
3232
3233 tx_buf = &tx_ring->tx_bi[i];
3234 tx_desc = I40E_TX_DESC(tx_ring, i);
3235 i -= tx_ring->count;
3236
3237 do {
3238 struct i40e_tx_desc *eop_desc = tx_buf->next_to_watch;
3239
3240 /* if next_to_watch is not set then there is no work pending */
3241 if (!eop_desc)
3242 break;
3243
3244 /* prevent any other reads prior to eop_desc */
3245 read_barrier_depends();
3246
3247 /* if the descriptor isn't done, no work yet to do */
3248 if (!(eop_desc->cmd_type_offset_bsz &
3249 cpu_to_le64(I40E_TX_DESC_DTYPE_DESC_DONE)))
3250 break;
3251
3252 /* clear next_to_watch to prevent false hangs */
3253 tx_buf->next_to_watch = NULL;
3254
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003255 tx_desc->buffer_addr = 0;
3256 tx_desc->cmd_type_offset_bsz = 0;
3257 /* move past filter desc */
3258 tx_buf++;
3259 tx_desc++;
3260 i++;
3261 if (unlikely(!i)) {
3262 i -= tx_ring->count;
3263 tx_buf = tx_ring->tx_bi;
3264 tx_desc = I40E_TX_DESC(tx_ring, 0);
3265 }
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003266 /* unmap skb header data */
3267 dma_unmap_single(tx_ring->dev,
3268 dma_unmap_addr(tx_buf, dma),
3269 dma_unmap_len(tx_buf, len),
3270 DMA_TO_DEVICE);
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003271 if (tx_buf->tx_flags & I40E_TX_FLAGS_FD_SB)
3272 kfree(tx_buf->raw_buf);
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003273
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003274 tx_buf->raw_buf = NULL;
3275 tx_buf->tx_flags = 0;
3276 tx_buf->next_to_watch = NULL;
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003277 dma_unmap_len_set(tx_buf, len, 0);
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003278 tx_desc->buffer_addr = 0;
3279 tx_desc->cmd_type_offset_bsz = 0;
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003280
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003281 /* move us past the eop_desc for start of next FD desc */
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003282 tx_buf++;
3283 tx_desc++;
3284 i++;
3285 if (unlikely(!i)) {
3286 i -= tx_ring->count;
3287 tx_buf = tx_ring->tx_bi;
3288 tx_desc = I40E_TX_DESC(tx_ring, 0);
3289 }
3290
3291 /* update budget accounting */
3292 budget--;
3293 } while (likely(budget));
3294
3295 i += tx_ring->count;
3296 tx_ring->next_to_clean = i;
3297
3298 if (vsi->back->flags & I40E_FLAG_MSIX_ENABLED) {
3299 i40e_irq_dynamic_enable(vsi,
3300 tx_ring->q_vector->v_idx + vsi->base_vector);
3301 }
3302 return budget > 0;
3303}
3304
3305/**
3306 * i40e_fdir_clean_ring - Interrupt Handler for FDIR SB ring
3307 * @irq: interrupt number
3308 * @data: pointer to a q_vector
3309 **/
3310static irqreturn_t i40e_fdir_clean_ring(int irq, void *data)
3311{
3312 struct i40e_q_vector *q_vector = data;
3313 struct i40e_vsi *vsi;
3314
3315 if (!q_vector->tx.ring)
3316 return IRQ_HANDLED;
3317
3318 vsi = q_vector->tx.ring->vsi;
3319 i40e_clean_fdir_tx_irq(q_vector->tx.ring, vsi->work_limit);
3320
3321 return IRQ_HANDLED;
3322}
3323
3324/**
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003325 * i40e_map_vector_to_qp - Assigns the queue pair to the vector
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003326 * @vsi: the VSI being configured
3327 * @v_idx: vector index
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003328 * @qp_idx: queue pair index
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003329 **/
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003330static void map_vector_to_qp(struct i40e_vsi *vsi, int v_idx, int qp_idx)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003331{
Alexander Duyck493fb302013-09-28 07:01:44 +00003332 struct i40e_q_vector *q_vector = vsi->q_vectors[v_idx];
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00003333 struct i40e_ring *tx_ring = vsi->tx_rings[qp_idx];
3334 struct i40e_ring *rx_ring = vsi->rx_rings[qp_idx];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003335
3336 tx_ring->q_vector = q_vector;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003337 tx_ring->next = q_vector->tx.ring;
3338 q_vector->tx.ring = tx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003339 q_vector->tx.count++;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003340
3341 rx_ring->q_vector = q_vector;
3342 rx_ring->next = q_vector->rx.ring;
3343 q_vector->rx.ring = rx_ring;
3344 q_vector->rx.count++;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003345}
3346
3347/**
3348 * i40e_vsi_map_rings_to_vectors - Maps descriptor rings to vectors
3349 * @vsi: the VSI being configured
3350 *
3351 * This function maps descriptor rings to the queue-specific vectors
3352 * we were allotted through the MSI-X enabling code. Ideally, we'd have
3353 * one vector per queue pair, but on a constrained vector budget, we
3354 * group the queue pairs as "efficiently" as possible.
3355 **/
3356static void i40e_vsi_map_rings_to_vectors(struct i40e_vsi *vsi)
3357{
3358 int qp_remaining = vsi->num_queue_pairs;
3359 int q_vectors = vsi->num_q_vectors;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003360 int num_ringpairs;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003361 int v_start = 0;
3362 int qp_idx = 0;
3363
3364 /* If we don't have enough vectors for a 1-to-1 mapping, we'll have to
3365 * group them so there are multiple queues per vector.
Anjali Singhai Jain70114ec2014-06-03 23:50:14 +00003366 * It is also important to go through all the vectors available to be
3367 * sure that if we don't use all the vectors, that the remaining vectors
3368 * are cleared. This is especially important when decreasing the
3369 * number of queues in use.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003370 */
Anjali Singhai Jain70114ec2014-06-03 23:50:14 +00003371 for (; v_start < q_vectors; v_start++) {
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003372 struct i40e_q_vector *q_vector = vsi->q_vectors[v_start];
3373
3374 num_ringpairs = DIV_ROUND_UP(qp_remaining, q_vectors - v_start);
3375
3376 q_vector->num_ringpairs = num_ringpairs;
3377
3378 q_vector->rx.count = 0;
3379 q_vector->tx.count = 0;
3380 q_vector->rx.ring = NULL;
3381 q_vector->tx.ring = NULL;
3382
3383 while (num_ringpairs--) {
3384 map_vector_to_qp(vsi, v_start, qp_idx);
3385 qp_idx++;
3386 qp_remaining--;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003387 }
3388 }
3389}
3390
3391/**
3392 * i40e_vsi_request_irq - Request IRQ from the OS
3393 * @vsi: the VSI being configured
3394 * @basename: name for the vector
3395 **/
3396static int i40e_vsi_request_irq(struct i40e_vsi *vsi, char *basename)
3397{
3398 struct i40e_pf *pf = vsi->back;
3399 int err;
3400
3401 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
3402 err = i40e_vsi_request_irq_msix(vsi, basename);
3403 else if (pf->flags & I40E_FLAG_MSI_ENABLED)
3404 err = request_irq(pf->pdev->irq, i40e_intr, 0,
3405 pf->misc_int_name, pf);
3406 else
3407 err = request_irq(pf->pdev->irq, i40e_intr, IRQF_SHARED,
3408 pf->misc_int_name, pf);
3409
3410 if (err)
3411 dev_info(&pf->pdev->dev, "request_irq failed, Error %d\n", err);
3412
3413 return err;
3414}
3415
3416#ifdef CONFIG_NET_POLL_CONTROLLER
3417/**
3418 * i40e_netpoll - A Polling 'interrupt'handler
3419 * @netdev: network interface device structure
3420 *
3421 * This is used by netconsole to send skbs without having to re-enable
3422 * interrupts. It's not called while the normal interrupt routine is executing.
3423 **/
Vasu Dev38e00432014-08-01 13:27:03 -07003424#ifdef I40E_FCOE
3425void i40e_netpoll(struct net_device *netdev)
3426#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003427static void i40e_netpoll(struct net_device *netdev)
Vasu Dev38e00432014-08-01 13:27:03 -07003428#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003429{
3430 struct i40e_netdev_priv *np = netdev_priv(netdev);
3431 struct i40e_vsi *vsi = np->vsi;
3432 struct i40e_pf *pf = vsi->back;
3433 int i;
3434
3435 /* if interface is down do nothing */
3436 if (test_bit(__I40E_DOWN, &vsi->state))
3437 return;
3438
3439 pf->flags |= I40E_FLAG_IN_NETPOLL;
3440 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
3441 for (i = 0; i < vsi->num_q_vectors; i++)
Alexander Duyck493fb302013-09-28 07:01:44 +00003442 i40e_msix_clean_rings(0, vsi->q_vectors[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003443 } else {
3444 i40e_intr(pf->pdev->irq, netdev);
3445 }
3446 pf->flags &= ~I40E_FLAG_IN_NETPOLL;
3447}
3448#endif
3449
3450/**
Neerav Parikh23527302014-06-03 23:50:15 +00003451 * i40e_pf_txq_wait - Wait for a PF's Tx queue to be enabled or disabled
3452 * @pf: the PF being configured
3453 * @pf_q: the PF queue
3454 * @enable: enable or disable state of the queue
3455 *
3456 * This routine will wait for the given Tx queue of the PF to reach the
3457 * enabled or disabled state.
3458 * Returns -ETIMEDOUT in case of failing to reach the requested state after
3459 * multiple retries; else will return 0 in case of success.
3460 **/
3461static int i40e_pf_txq_wait(struct i40e_pf *pf, int pf_q, bool enable)
3462{
3463 int i;
3464 u32 tx_reg;
3465
3466 for (i = 0; i < I40E_QUEUE_WAIT_RETRY_LIMIT; i++) {
3467 tx_reg = rd32(&pf->hw, I40E_QTX_ENA(pf_q));
3468 if (enable == !!(tx_reg & I40E_QTX_ENA_QENA_STAT_MASK))
3469 break;
3470
Neerav Parikhf98a2002014-09-13 07:40:44 +00003471 usleep_range(10, 20);
Neerav Parikh23527302014-06-03 23:50:15 +00003472 }
3473 if (i >= I40E_QUEUE_WAIT_RETRY_LIMIT)
3474 return -ETIMEDOUT;
3475
3476 return 0;
3477}
3478
3479/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003480 * i40e_vsi_control_tx - Start or stop a VSI's rings
3481 * @vsi: the VSI being configured
3482 * @enable: start or stop the rings
3483 **/
3484static int i40e_vsi_control_tx(struct i40e_vsi *vsi, bool enable)
3485{
3486 struct i40e_pf *pf = vsi->back;
3487 struct i40e_hw *hw = &pf->hw;
Neerav Parikh23527302014-06-03 23:50:15 +00003488 int i, j, pf_q, ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003489 u32 tx_reg;
3490
3491 pf_q = vsi->base_queue;
3492 for (i = 0; i < vsi->num_queue_pairs; i++, pf_q++) {
Matt Jared351499a2014-04-23 04:50:03 +00003493
3494 /* warn the TX unit of coming changes */
3495 i40e_pre_tx_queue_cfg(&pf->hw, pf_q, enable);
3496 if (!enable)
Neerav Parikhf98a2002014-09-13 07:40:44 +00003497 usleep_range(10, 20);
Matt Jared351499a2014-04-23 04:50:03 +00003498
Mitch Williams6c5ef622014-02-20 19:29:16 -08003499 for (j = 0; j < 50; j++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003500 tx_reg = rd32(hw, I40E_QTX_ENA(pf_q));
Mitch Williams6c5ef622014-02-20 19:29:16 -08003501 if (((tx_reg >> I40E_QTX_ENA_QENA_REQ_SHIFT) & 1) ==
3502 ((tx_reg >> I40E_QTX_ENA_QENA_STAT_SHIFT) & 1))
3503 break;
3504 usleep_range(1000, 2000);
3505 }
Mitch Williamsfda972f2013-11-28 06:39:29 +00003506 /* Skip if the queue is already in the requested state */
Catherine Sullivan7c122002014-03-14 07:32:29 +00003507 if (enable == !!(tx_reg & I40E_QTX_ENA_QENA_STAT_MASK))
Mitch Williamsfda972f2013-11-28 06:39:29 +00003508 continue;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003509
3510 /* turn on/off the queue */
Shannon Nelsonc5c9eb92013-12-21 05:44:48 +00003511 if (enable) {
3512 wr32(hw, I40E_QTX_HEAD(pf_q), 0);
Mitch Williams6c5ef622014-02-20 19:29:16 -08003513 tx_reg |= I40E_QTX_ENA_QENA_REQ_MASK;
Shannon Nelsonc5c9eb92013-12-21 05:44:48 +00003514 } else {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003515 tx_reg &= ~I40E_QTX_ENA_QENA_REQ_MASK;
Shannon Nelsonc5c9eb92013-12-21 05:44:48 +00003516 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003517
3518 wr32(hw, I40E_QTX_ENA(pf_q), tx_reg);
Neerav Parikh69129dc2014-11-12 00:18:46 +00003519 /* No waiting for the Tx queue to disable */
3520 if (!enable && test_bit(__I40E_PORT_TX_SUSPENDED, &pf->state))
3521 continue;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003522
3523 /* wait for the change to finish */
Neerav Parikh23527302014-06-03 23:50:15 +00003524 ret = i40e_pf_txq_wait(pf, pf_q, enable);
3525 if (ret) {
3526 dev_info(&pf->pdev->dev,
3527 "%s: VSI seid %d Tx ring %d %sable timeout\n",
3528 __func__, vsi->seid, pf_q,
3529 (enable ? "en" : "dis"));
3530 break;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003531 }
3532 }
3533
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00003534 if (hw->revision_id == 0)
3535 mdelay(50);
Neerav Parikh23527302014-06-03 23:50:15 +00003536 return ret;
3537}
3538
3539/**
3540 * i40e_pf_rxq_wait - Wait for a PF's Rx queue to be enabled or disabled
3541 * @pf: the PF being configured
3542 * @pf_q: the PF queue
3543 * @enable: enable or disable state of the queue
3544 *
3545 * This routine will wait for the given Rx queue of the PF to reach the
3546 * enabled or disabled state.
3547 * Returns -ETIMEDOUT in case of failing to reach the requested state after
3548 * multiple retries; else will return 0 in case of success.
3549 **/
3550static int i40e_pf_rxq_wait(struct i40e_pf *pf, int pf_q, bool enable)
3551{
3552 int i;
3553 u32 rx_reg;
3554
3555 for (i = 0; i < I40E_QUEUE_WAIT_RETRY_LIMIT; i++) {
3556 rx_reg = rd32(&pf->hw, I40E_QRX_ENA(pf_q));
3557 if (enable == !!(rx_reg & I40E_QRX_ENA_QENA_STAT_MASK))
3558 break;
3559
Neerav Parikhf98a2002014-09-13 07:40:44 +00003560 usleep_range(10, 20);
Neerav Parikh23527302014-06-03 23:50:15 +00003561 }
3562 if (i >= I40E_QUEUE_WAIT_RETRY_LIMIT)
3563 return -ETIMEDOUT;
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00003564
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003565 return 0;
3566}
3567
3568/**
3569 * i40e_vsi_control_rx - Start or stop a VSI's rings
3570 * @vsi: the VSI being configured
3571 * @enable: start or stop the rings
3572 **/
3573static int i40e_vsi_control_rx(struct i40e_vsi *vsi, bool enable)
3574{
3575 struct i40e_pf *pf = vsi->back;
3576 struct i40e_hw *hw = &pf->hw;
Neerav Parikh23527302014-06-03 23:50:15 +00003577 int i, j, pf_q, ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003578 u32 rx_reg;
3579
3580 pf_q = vsi->base_queue;
3581 for (i = 0; i < vsi->num_queue_pairs; i++, pf_q++) {
Mitch Williams6c5ef622014-02-20 19:29:16 -08003582 for (j = 0; j < 50; j++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003583 rx_reg = rd32(hw, I40E_QRX_ENA(pf_q));
Mitch Williams6c5ef622014-02-20 19:29:16 -08003584 if (((rx_reg >> I40E_QRX_ENA_QENA_REQ_SHIFT) & 1) ==
3585 ((rx_reg >> I40E_QRX_ENA_QENA_STAT_SHIFT) & 1))
3586 break;
3587 usleep_range(1000, 2000);
3588 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003589
Catherine Sullivan7c122002014-03-14 07:32:29 +00003590 /* Skip if the queue is already in the requested state */
3591 if (enable == !!(rx_reg & I40E_QRX_ENA_QENA_STAT_MASK))
3592 continue;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003593
3594 /* turn on/off the queue */
3595 if (enable)
Mitch Williams6c5ef622014-02-20 19:29:16 -08003596 rx_reg |= I40E_QRX_ENA_QENA_REQ_MASK;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003597 else
Mitch Williams6c5ef622014-02-20 19:29:16 -08003598 rx_reg &= ~I40E_QRX_ENA_QENA_REQ_MASK;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003599 wr32(hw, I40E_QRX_ENA(pf_q), rx_reg);
3600
3601 /* wait for the change to finish */
Neerav Parikh23527302014-06-03 23:50:15 +00003602 ret = i40e_pf_rxq_wait(pf, pf_q, enable);
3603 if (ret) {
3604 dev_info(&pf->pdev->dev,
3605 "%s: VSI seid %d Rx ring %d %sable timeout\n",
3606 __func__, vsi->seid, pf_q,
3607 (enable ? "en" : "dis"));
3608 break;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003609 }
3610 }
3611
Neerav Parikh23527302014-06-03 23:50:15 +00003612 return ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003613}
3614
3615/**
3616 * i40e_vsi_control_rings - Start or stop a VSI's rings
3617 * @vsi: the VSI being configured
3618 * @enable: start or stop the rings
3619 **/
Mitch Williamsfc18eaa2013-11-28 06:39:27 +00003620int i40e_vsi_control_rings(struct i40e_vsi *vsi, bool request)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003621{
Anjali Singhai Jain3b867b22013-12-21 05:44:44 +00003622 int ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003623
3624 /* do rx first for enable and last for disable */
3625 if (request) {
3626 ret = i40e_vsi_control_rx(vsi, request);
3627 if (ret)
3628 return ret;
3629 ret = i40e_vsi_control_tx(vsi, request);
3630 } else {
Anjali Singhai Jain3b867b22013-12-21 05:44:44 +00003631 /* Ignore return value, we need to shutdown whatever we can */
3632 i40e_vsi_control_tx(vsi, request);
3633 i40e_vsi_control_rx(vsi, request);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003634 }
3635
3636 return ret;
3637}
3638
3639/**
3640 * i40e_vsi_free_irq - Free the irq association with the OS
3641 * @vsi: the VSI being configured
3642 **/
3643static void i40e_vsi_free_irq(struct i40e_vsi *vsi)
3644{
3645 struct i40e_pf *pf = vsi->back;
3646 struct i40e_hw *hw = &pf->hw;
3647 int base = vsi->base_vector;
3648 u32 val, qp;
3649 int i;
3650
3651 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
3652 if (!vsi->q_vectors)
3653 return;
3654
Shannon Nelson63741842014-04-23 04:50:16 +00003655 if (!vsi->irqs_ready)
3656 return;
3657
3658 vsi->irqs_ready = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003659 for (i = 0; i < vsi->num_q_vectors; i++) {
3660 u16 vector = i + base;
3661
3662 /* free only the irqs that were actually requested */
Shannon Nelson78681b12013-11-28 06:39:36 +00003663 if (!vsi->q_vectors[i] ||
3664 !vsi->q_vectors[i]->num_ringpairs)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003665 continue;
3666
3667 /* clear the affinity_mask in the IRQ descriptor */
3668 irq_set_affinity_hint(pf->msix_entries[vector].vector,
3669 NULL);
3670 free_irq(pf->msix_entries[vector].vector,
Alexander Duyck493fb302013-09-28 07:01:44 +00003671 vsi->q_vectors[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003672
3673 /* Tear down the interrupt queue link list
3674 *
3675 * We know that they come in pairs and always
3676 * the Rx first, then the Tx. To clear the
3677 * link list, stick the EOL value into the
3678 * next_q field of the registers.
3679 */
3680 val = rd32(hw, I40E_PFINT_LNKLSTN(vector - 1));
3681 qp = (val & I40E_PFINT_LNKLSTN_FIRSTQ_INDX_MASK)
3682 >> I40E_PFINT_LNKLSTN_FIRSTQ_INDX_SHIFT;
3683 val |= I40E_QUEUE_END_OF_LIST
3684 << I40E_PFINT_LNKLSTN_FIRSTQ_INDX_SHIFT;
3685 wr32(hw, I40E_PFINT_LNKLSTN(vector - 1), val);
3686
3687 while (qp != I40E_QUEUE_END_OF_LIST) {
3688 u32 next;
3689
3690 val = rd32(hw, I40E_QINT_RQCTL(qp));
3691
3692 val &= ~(I40E_QINT_RQCTL_MSIX_INDX_MASK |
3693 I40E_QINT_RQCTL_MSIX0_INDX_MASK |
3694 I40E_QINT_RQCTL_CAUSE_ENA_MASK |
3695 I40E_QINT_RQCTL_INTEVENT_MASK);
3696
3697 val |= (I40E_QINT_RQCTL_ITR_INDX_MASK |
3698 I40E_QINT_RQCTL_NEXTQ_INDX_MASK);
3699
3700 wr32(hw, I40E_QINT_RQCTL(qp), val);
3701
3702 val = rd32(hw, I40E_QINT_TQCTL(qp));
3703
3704 next = (val & I40E_QINT_TQCTL_NEXTQ_INDX_MASK)
3705 >> I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT;
3706
3707 val &= ~(I40E_QINT_TQCTL_MSIX_INDX_MASK |
3708 I40E_QINT_TQCTL_MSIX0_INDX_MASK |
3709 I40E_QINT_TQCTL_CAUSE_ENA_MASK |
3710 I40E_QINT_TQCTL_INTEVENT_MASK);
3711
3712 val |= (I40E_QINT_TQCTL_ITR_INDX_MASK |
3713 I40E_QINT_TQCTL_NEXTQ_INDX_MASK);
3714
3715 wr32(hw, I40E_QINT_TQCTL(qp), val);
3716 qp = next;
3717 }
3718 }
3719 } else {
3720 free_irq(pf->pdev->irq, pf);
3721
3722 val = rd32(hw, I40E_PFINT_LNKLST0);
3723 qp = (val & I40E_PFINT_LNKLSTN_FIRSTQ_INDX_MASK)
3724 >> I40E_PFINT_LNKLSTN_FIRSTQ_INDX_SHIFT;
3725 val |= I40E_QUEUE_END_OF_LIST
3726 << I40E_PFINT_LNKLST0_FIRSTQ_INDX_SHIFT;
3727 wr32(hw, I40E_PFINT_LNKLST0, val);
3728
3729 val = rd32(hw, I40E_QINT_RQCTL(qp));
3730 val &= ~(I40E_QINT_RQCTL_MSIX_INDX_MASK |
3731 I40E_QINT_RQCTL_MSIX0_INDX_MASK |
3732 I40E_QINT_RQCTL_CAUSE_ENA_MASK |
3733 I40E_QINT_RQCTL_INTEVENT_MASK);
3734
3735 val |= (I40E_QINT_RQCTL_ITR_INDX_MASK |
3736 I40E_QINT_RQCTL_NEXTQ_INDX_MASK);
3737
3738 wr32(hw, I40E_QINT_RQCTL(qp), val);
3739
3740 val = rd32(hw, I40E_QINT_TQCTL(qp));
3741
3742 val &= ~(I40E_QINT_TQCTL_MSIX_INDX_MASK |
3743 I40E_QINT_TQCTL_MSIX0_INDX_MASK |
3744 I40E_QINT_TQCTL_CAUSE_ENA_MASK |
3745 I40E_QINT_TQCTL_INTEVENT_MASK);
3746
3747 val |= (I40E_QINT_TQCTL_ITR_INDX_MASK |
3748 I40E_QINT_TQCTL_NEXTQ_INDX_MASK);
3749
3750 wr32(hw, I40E_QINT_TQCTL(qp), val);
3751 }
3752}
3753
3754/**
Alexander Duyck493fb302013-09-28 07:01:44 +00003755 * i40e_free_q_vector - Free memory allocated for specific interrupt vector
3756 * @vsi: the VSI being configured
3757 * @v_idx: Index of vector to be freed
3758 *
3759 * This function frees the memory allocated to the q_vector. In addition if
3760 * NAPI is enabled it will delete any references to the NAPI struct prior
3761 * to freeing the q_vector.
3762 **/
3763static void i40e_free_q_vector(struct i40e_vsi *vsi, int v_idx)
3764{
3765 struct i40e_q_vector *q_vector = vsi->q_vectors[v_idx];
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003766 struct i40e_ring *ring;
Alexander Duyck493fb302013-09-28 07:01:44 +00003767
3768 if (!q_vector)
3769 return;
3770
3771 /* disassociate q_vector from rings */
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003772 i40e_for_each_ring(ring, q_vector->tx)
3773 ring->q_vector = NULL;
3774
3775 i40e_for_each_ring(ring, q_vector->rx)
3776 ring->q_vector = NULL;
Alexander Duyck493fb302013-09-28 07:01:44 +00003777
3778 /* only VSI w/ an associated netdev is set up w/ NAPI */
3779 if (vsi->netdev)
3780 netif_napi_del(&q_vector->napi);
3781
3782 vsi->q_vectors[v_idx] = NULL;
3783
3784 kfree_rcu(q_vector, rcu);
3785}
3786
3787/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003788 * i40e_vsi_free_q_vectors - Free memory allocated for interrupt vectors
3789 * @vsi: the VSI being un-configured
3790 *
3791 * This frees the memory allocated to the q_vectors and
3792 * deletes references to the NAPI struct.
3793 **/
3794static void i40e_vsi_free_q_vectors(struct i40e_vsi *vsi)
3795{
3796 int v_idx;
3797
Alexander Duyck493fb302013-09-28 07:01:44 +00003798 for (v_idx = 0; v_idx < vsi->num_q_vectors; v_idx++)
3799 i40e_free_q_vector(vsi, v_idx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003800}
3801
3802/**
3803 * i40e_reset_interrupt_capability - Disable interrupt setup in OS
3804 * @pf: board private structure
3805 **/
3806static void i40e_reset_interrupt_capability(struct i40e_pf *pf)
3807{
3808 /* If we're in Legacy mode, the interrupt was cleaned in vsi_close */
3809 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
3810 pci_disable_msix(pf->pdev);
3811 kfree(pf->msix_entries);
3812 pf->msix_entries = NULL;
3813 } else if (pf->flags & I40E_FLAG_MSI_ENABLED) {
3814 pci_disable_msi(pf->pdev);
3815 }
3816 pf->flags &= ~(I40E_FLAG_MSIX_ENABLED | I40E_FLAG_MSI_ENABLED);
3817}
3818
3819/**
3820 * i40e_clear_interrupt_scheme - Clear the current interrupt scheme settings
3821 * @pf: board private structure
3822 *
3823 * We go through and clear interrupt specific resources and reset the structure
3824 * to pre-load conditions
3825 **/
3826static void i40e_clear_interrupt_scheme(struct i40e_pf *pf)
3827{
3828 int i;
3829
3830 i40e_put_lump(pf->irq_pile, 0, I40E_PILE_VALID_BIT-1);
Mitch Williams505682c2014-05-20 08:01:37 +00003831 for (i = 0; i < pf->num_alloc_vsi; i++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003832 if (pf->vsi[i])
3833 i40e_vsi_free_q_vectors(pf->vsi[i]);
3834 i40e_reset_interrupt_capability(pf);
3835}
3836
3837/**
3838 * i40e_napi_enable_all - Enable NAPI for all q_vectors in the VSI
3839 * @vsi: the VSI being configured
3840 **/
3841static void i40e_napi_enable_all(struct i40e_vsi *vsi)
3842{
3843 int q_idx;
3844
3845 if (!vsi->netdev)
3846 return;
3847
3848 for (q_idx = 0; q_idx < vsi->num_q_vectors; q_idx++)
Alexander Duyck493fb302013-09-28 07:01:44 +00003849 napi_enable(&vsi->q_vectors[q_idx]->napi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003850}
3851
3852/**
3853 * i40e_napi_disable_all - Disable NAPI for all q_vectors in the VSI
3854 * @vsi: the VSI being configured
3855 **/
3856static void i40e_napi_disable_all(struct i40e_vsi *vsi)
3857{
3858 int q_idx;
3859
3860 if (!vsi->netdev)
3861 return;
3862
3863 for (q_idx = 0; q_idx < vsi->num_q_vectors; q_idx++)
Alexander Duyck493fb302013-09-28 07:01:44 +00003864 napi_disable(&vsi->q_vectors[q_idx]->napi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003865}
3866
3867/**
Shannon Nelson90ef8d42014-03-14 07:32:26 +00003868 * i40e_vsi_close - Shut down a VSI
3869 * @vsi: the vsi to be quelled
3870 **/
3871static void i40e_vsi_close(struct i40e_vsi *vsi)
3872{
3873 if (!test_and_set_bit(__I40E_DOWN, &vsi->state))
3874 i40e_down(vsi);
3875 i40e_vsi_free_irq(vsi);
3876 i40e_vsi_free_tx_resources(vsi);
3877 i40e_vsi_free_rx_resources(vsi);
3878}
3879
3880/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003881 * i40e_quiesce_vsi - Pause a given VSI
3882 * @vsi: the VSI being paused
3883 **/
3884static void i40e_quiesce_vsi(struct i40e_vsi *vsi)
3885{
3886 if (test_bit(__I40E_DOWN, &vsi->state))
3887 return;
3888
Neerav Parikhd341b7a2014-11-12 00:18:51 +00003889 /* No need to disable FCoE VSI when Tx suspended */
3890 if ((test_bit(__I40E_PORT_TX_SUSPENDED, &vsi->back->state)) &&
3891 vsi->type == I40E_VSI_FCOE) {
3892 dev_dbg(&vsi->back->pdev->dev,
3893 "%s: VSI seid %d skipping FCoE VSI disable\n",
3894 __func__, vsi->seid);
3895 return;
3896 }
3897
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003898 set_bit(__I40E_NEEDS_RESTART, &vsi->state);
3899 if (vsi->netdev && netif_running(vsi->netdev)) {
3900 vsi->netdev->netdev_ops->ndo_stop(vsi->netdev);
3901 } else {
Shannon Nelson90ef8d42014-03-14 07:32:26 +00003902 i40e_vsi_close(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003903 }
3904}
3905
3906/**
3907 * i40e_unquiesce_vsi - Resume a given VSI
3908 * @vsi: the VSI being resumed
3909 **/
3910static void i40e_unquiesce_vsi(struct i40e_vsi *vsi)
3911{
3912 if (!test_bit(__I40E_NEEDS_RESTART, &vsi->state))
3913 return;
3914
3915 clear_bit(__I40E_NEEDS_RESTART, &vsi->state);
3916 if (vsi->netdev && netif_running(vsi->netdev))
3917 vsi->netdev->netdev_ops->ndo_open(vsi->netdev);
3918 else
Shannon Nelson8276f752014-03-14 07:32:27 +00003919 i40e_vsi_open(vsi); /* this clears the DOWN bit */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003920}
3921
3922/**
3923 * i40e_pf_quiesce_all_vsi - Pause all VSIs on a PF
3924 * @pf: the PF
3925 **/
3926static void i40e_pf_quiesce_all_vsi(struct i40e_pf *pf)
3927{
3928 int v;
3929
Mitch Williams505682c2014-05-20 08:01:37 +00003930 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003931 if (pf->vsi[v])
3932 i40e_quiesce_vsi(pf->vsi[v]);
3933 }
3934}
3935
3936/**
3937 * i40e_pf_unquiesce_all_vsi - Resume all VSIs on a PF
3938 * @pf: the PF
3939 **/
3940static void i40e_pf_unquiesce_all_vsi(struct i40e_pf *pf)
3941{
3942 int v;
3943
Mitch Williams505682c2014-05-20 08:01:37 +00003944 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003945 if (pf->vsi[v])
3946 i40e_unquiesce_vsi(pf->vsi[v]);
3947 }
3948}
3949
Neerav Parikh69129dc2014-11-12 00:18:46 +00003950#ifdef CONFIG_I40E_DCB
3951/**
3952 * i40e_vsi_wait_txq_disabled - Wait for VSI's queues to be disabled
3953 * @vsi: the VSI being configured
3954 *
3955 * This function waits for the given VSI's Tx queues to be disabled.
3956 **/
3957static int i40e_vsi_wait_txq_disabled(struct i40e_vsi *vsi)
3958{
3959 struct i40e_pf *pf = vsi->back;
3960 int i, pf_q, ret;
3961
3962 pf_q = vsi->base_queue;
3963 for (i = 0; i < vsi->num_queue_pairs; i++, pf_q++) {
3964 /* Check and wait for the disable status of the queue */
3965 ret = i40e_pf_txq_wait(pf, pf_q, false);
3966 if (ret) {
3967 dev_info(&pf->pdev->dev,
3968 "%s: VSI seid %d Tx ring %d disable timeout\n",
3969 __func__, vsi->seid, pf_q);
3970 return ret;
3971 }
3972 }
3973
3974 return 0;
3975}
3976
3977/**
3978 * i40e_pf_wait_txq_disabled - Wait for all queues of PF VSIs to be disabled
3979 * @pf: the PF
3980 *
3981 * This function waits for the Tx queues to be in disabled state for all the
3982 * VSIs that are managed by this PF.
3983 **/
3984static int i40e_pf_wait_txq_disabled(struct i40e_pf *pf)
3985{
3986 int v, ret = 0;
3987
3988 for (v = 0; v < pf->hw.func_caps.num_vsis; v++) {
Neerav Parikhd341b7a2014-11-12 00:18:51 +00003989 /* No need to wait for FCoE VSI queues */
3990 if (pf->vsi[v] && pf->vsi[v]->type != I40E_VSI_FCOE) {
Neerav Parikh69129dc2014-11-12 00:18:46 +00003991 ret = i40e_vsi_wait_txq_disabled(pf->vsi[v]);
3992 if (ret)
3993 break;
3994 }
3995 }
3996
3997 return ret;
3998}
3999
4000#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004001/**
4002 * i40e_dcb_get_num_tc - Get the number of TCs from DCBx config
4003 * @dcbcfg: the corresponding DCBx configuration structure
4004 *
4005 * Return the number of TCs from given DCBx configuration
4006 **/
4007static u8 i40e_dcb_get_num_tc(struct i40e_dcbx_config *dcbcfg)
4008{
Jesse Brandeburg078b5872013-09-25 23:41:14 +00004009 u8 num_tc = 0;
4010 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004011
4012 /* Scan the ETS Config Priority Table to find
4013 * traffic class enabled for a given priority
4014 * and use the traffic class index to get the
4015 * number of traffic classes enabled
4016 */
4017 for (i = 0; i < I40E_MAX_USER_PRIORITY; i++) {
4018 if (dcbcfg->etscfg.prioritytable[i] > num_tc)
4019 num_tc = dcbcfg->etscfg.prioritytable[i];
4020 }
4021
4022 /* Traffic class index starts from zero so
4023 * increment to return the actual count
4024 */
Jesse Brandeburg078b5872013-09-25 23:41:14 +00004025 return num_tc + 1;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004026}
4027
4028/**
4029 * i40e_dcb_get_enabled_tc - Get enabled traffic classes
4030 * @dcbcfg: the corresponding DCBx configuration structure
4031 *
4032 * Query the current DCB configuration and return the number of
4033 * traffic classes enabled from the given DCBX config
4034 **/
4035static u8 i40e_dcb_get_enabled_tc(struct i40e_dcbx_config *dcbcfg)
4036{
4037 u8 num_tc = i40e_dcb_get_num_tc(dcbcfg);
4038 u8 enabled_tc = 1;
4039 u8 i;
4040
4041 for (i = 0; i < num_tc; i++)
4042 enabled_tc |= 1 << i;
4043
4044 return enabled_tc;
4045}
4046
4047/**
4048 * i40e_pf_get_num_tc - Get enabled traffic classes for PF
4049 * @pf: PF being queried
4050 *
4051 * Return number of traffic classes enabled for the given PF
4052 **/
4053static u8 i40e_pf_get_num_tc(struct i40e_pf *pf)
4054{
4055 struct i40e_hw *hw = &pf->hw;
4056 u8 i, enabled_tc;
4057 u8 num_tc = 0;
4058 struct i40e_dcbx_config *dcbcfg = &hw->local_dcbx_config;
4059
4060 /* If DCB is not enabled then always in single TC */
4061 if (!(pf->flags & I40E_FLAG_DCB_ENABLED))
4062 return 1;
4063
4064 /* MFP mode return count of enabled TCs for this PF */
4065 if (pf->flags & I40E_FLAG_MFP_ENABLED) {
4066 enabled_tc = pf->hw.func_caps.enabled_tcmap;
4067 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
4068 if (enabled_tc & (1 << i))
4069 num_tc++;
4070 }
4071 return num_tc;
4072 }
4073
4074 /* SFP mode will be enabled for all TCs on port */
4075 return i40e_dcb_get_num_tc(dcbcfg);
4076}
4077
4078/**
4079 * i40e_pf_get_default_tc - Get bitmap for first enabled TC
4080 * @pf: PF being queried
4081 *
4082 * Return a bitmap for first enabled traffic class for this PF.
4083 **/
4084static u8 i40e_pf_get_default_tc(struct i40e_pf *pf)
4085{
4086 u8 enabled_tc = pf->hw.func_caps.enabled_tcmap;
4087 u8 i = 0;
4088
4089 if (!enabled_tc)
4090 return 0x1; /* TC0 */
4091
4092 /* Find the first enabled TC */
4093 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
4094 if (enabled_tc & (1 << i))
4095 break;
4096 }
4097
4098 return 1 << i;
4099}
4100
4101/**
4102 * i40e_pf_get_pf_tc_map - Get bitmap for enabled traffic classes
4103 * @pf: PF being queried
4104 *
4105 * Return a bitmap for enabled traffic classes for this PF.
4106 **/
4107static u8 i40e_pf_get_tc_map(struct i40e_pf *pf)
4108{
4109 /* If DCB is not enabled for this PF then just return default TC */
4110 if (!(pf->flags & I40E_FLAG_DCB_ENABLED))
4111 return i40e_pf_get_default_tc(pf);
4112
4113 /* MFP mode will have enabled TCs set by FW */
4114 if (pf->flags & I40E_FLAG_MFP_ENABLED)
4115 return pf->hw.func_caps.enabled_tcmap;
4116
4117 /* SFP mode we want PF to be enabled for all TCs */
4118 return i40e_dcb_get_enabled_tc(&pf->hw.local_dcbx_config);
4119}
4120
4121/**
4122 * i40e_vsi_get_bw_info - Query VSI BW Information
4123 * @vsi: the VSI being queried
4124 *
4125 * Returns 0 on success, negative value on failure
4126 **/
4127static int i40e_vsi_get_bw_info(struct i40e_vsi *vsi)
4128{
4129 struct i40e_aqc_query_vsi_ets_sla_config_resp bw_ets_config = {0};
4130 struct i40e_aqc_query_vsi_bw_config_resp bw_config = {0};
4131 struct i40e_pf *pf = vsi->back;
4132 struct i40e_hw *hw = &pf->hw;
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004133 i40e_status aq_ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004134 u32 tc_bw_max;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004135 int i;
4136
4137 /* Get the VSI level BW configuration */
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004138 aq_ret = i40e_aq_query_vsi_bw_config(hw, vsi->seid, &bw_config, NULL);
4139 if (aq_ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004140 dev_info(&pf->pdev->dev,
4141 "couldn't get pf vsi bw config, err %d, aq_err %d\n",
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004142 aq_ret, pf->hw.aq.asq_last_status);
4143 return -EINVAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004144 }
4145
4146 /* Get the VSI level BW configuration per TC */
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004147 aq_ret = i40e_aq_query_vsi_ets_sla_config(hw, vsi->seid, &bw_ets_config,
Jesse Brandeburg6838b532014-01-14 00:49:52 -08004148 NULL);
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004149 if (aq_ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004150 dev_info(&pf->pdev->dev,
4151 "couldn't get pf vsi ets bw config, err %d, aq_err %d\n",
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004152 aq_ret, pf->hw.aq.asq_last_status);
4153 return -EINVAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004154 }
4155
4156 if (bw_config.tc_valid_bits != bw_ets_config.tc_valid_bits) {
4157 dev_info(&pf->pdev->dev,
4158 "Enabled TCs mismatch from querying VSI BW info 0x%08x 0x%08x\n",
4159 bw_config.tc_valid_bits,
4160 bw_ets_config.tc_valid_bits);
4161 /* Still continuing */
4162 }
4163
4164 vsi->bw_limit = le16_to_cpu(bw_config.port_bw_limit);
4165 vsi->bw_max_quanta = bw_config.max_bw;
4166 tc_bw_max = le16_to_cpu(bw_ets_config.tc_bw_max[0]) |
4167 (le16_to_cpu(bw_ets_config.tc_bw_max[1]) << 16);
4168 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
4169 vsi->bw_ets_share_credits[i] = bw_ets_config.share_credits[i];
4170 vsi->bw_ets_limit_credits[i] =
4171 le16_to_cpu(bw_ets_config.credits[i]);
4172 /* 3 bits out of 4 for each TC */
4173 vsi->bw_ets_max_quanta[i] = (u8)((tc_bw_max >> (i*4)) & 0x7);
4174 }
Jesse Brandeburg078b5872013-09-25 23:41:14 +00004175
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004176 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004177}
4178
4179/**
4180 * i40e_vsi_configure_bw_alloc - Configure VSI BW allocation per TC
4181 * @vsi: the VSI being configured
4182 * @enabled_tc: TC bitmap
4183 * @bw_credits: BW shared credits per TC
4184 *
4185 * Returns 0 on success, negative value on failure
4186 **/
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004187static int i40e_vsi_configure_bw_alloc(struct i40e_vsi *vsi, u8 enabled_tc,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004188 u8 *bw_share)
4189{
4190 struct i40e_aqc_configure_vsi_tc_bw_data bw_data;
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004191 i40e_status aq_ret;
4192 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004193
4194 bw_data.tc_valid_bits = enabled_tc;
4195 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++)
4196 bw_data.tc_bw_credits[i] = bw_share[i];
4197
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004198 aq_ret = i40e_aq_config_vsi_tc_bw(&vsi->back->hw, vsi->seid, &bw_data,
4199 NULL);
4200 if (aq_ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004201 dev_info(&vsi->back->pdev->dev,
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00004202 "AQ command Config VSI BW allocation per TC failed = %d\n",
4203 vsi->back->hw.aq.asq_last_status);
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004204 return -EINVAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004205 }
4206
4207 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++)
4208 vsi->info.qs_handle[i] = bw_data.qs_handles[i];
4209
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004210 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004211}
4212
4213/**
4214 * i40e_vsi_config_netdev_tc - Setup the netdev TC configuration
4215 * @vsi: the VSI being configured
4216 * @enabled_tc: TC map to be enabled
4217 *
4218 **/
4219static void i40e_vsi_config_netdev_tc(struct i40e_vsi *vsi, u8 enabled_tc)
4220{
4221 struct net_device *netdev = vsi->netdev;
4222 struct i40e_pf *pf = vsi->back;
4223 struct i40e_hw *hw = &pf->hw;
4224 u8 netdev_tc = 0;
4225 int i;
4226 struct i40e_dcbx_config *dcbcfg = &hw->local_dcbx_config;
4227
4228 if (!netdev)
4229 return;
4230
4231 if (!enabled_tc) {
4232 netdev_reset_tc(netdev);
4233 return;
4234 }
4235
4236 /* Set up actual enabled TCs on the VSI */
4237 if (netdev_set_num_tc(netdev, vsi->tc_config.numtc))
4238 return;
4239
4240 /* set per TC queues for the VSI */
4241 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
4242 /* Only set TC queues for enabled tcs
4243 *
4244 * e.g. For a VSI that has TC0 and TC3 enabled the
4245 * enabled_tc bitmap would be 0x00001001; the driver
4246 * will set the numtc for netdev as 2 that will be
4247 * referenced by the netdev layer as TC 0 and 1.
4248 */
4249 if (vsi->tc_config.enabled_tc & (1 << i))
4250 netdev_set_tc_queue(netdev,
4251 vsi->tc_config.tc_info[i].netdev_tc,
4252 vsi->tc_config.tc_info[i].qcount,
4253 vsi->tc_config.tc_info[i].qoffset);
4254 }
4255
4256 /* Assign UP2TC map for the VSI */
4257 for (i = 0; i < I40E_MAX_USER_PRIORITY; i++) {
4258 /* Get the actual TC# for the UP */
4259 u8 ets_tc = dcbcfg->etscfg.prioritytable[i];
4260 /* Get the mapped netdev TC# for the UP */
4261 netdev_tc = vsi->tc_config.tc_info[ets_tc].netdev_tc;
4262 netdev_set_prio_tc_map(netdev, i, netdev_tc);
4263 }
4264}
4265
4266/**
4267 * i40e_vsi_update_queue_map - Update our copy of VSi info with new queue map
4268 * @vsi: the VSI being configured
4269 * @ctxt: the ctxt buffer returned from AQ VSI update param command
4270 **/
4271static void i40e_vsi_update_queue_map(struct i40e_vsi *vsi,
4272 struct i40e_vsi_context *ctxt)
4273{
4274 /* copy just the sections touched not the entire info
4275 * since not all sections are valid as returned by
4276 * update vsi params
4277 */
4278 vsi->info.mapping_flags = ctxt->info.mapping_flags;
4279 memcpy(&vsi->info.queue_mapping,
4280 &ctxt->info.queue_mapping, sizeof(vsi->info.queue_mapping));
4281 memcpy(&vsi->info.tc_mapping, ctxt->info.tc_mapping,
4282 sizeof(vsi->info.tc_mapping));
4283}
4284
4285/**
4286 * i40e_vsi_config_tc - Configure VSI Tx Scheduler for given TC map
4287 * @vsi: VSI to be configured
4288 * @enabled_tc: TC bitmap
4289 *
4290 * This configures a particular VSI for TCs that are mapped to the
4291 * given TC bitmap. It uses default bandwidth share for TCs across
4292 * VSIs to configure TC for a particular VSI.
4293 *
4294 * NOTE:
4295 * It is expected that the VSI queues have been quisced before calling
4296 * this function.
4297 **/
4298static int i40e_vsi_config_tc(struct i40e_vsi *vsi, u8 enabled_tc)
4299{
4300 u8 bw_share[I40E_MAX_TRAFFIC_CLASS] = {0};
4301 struct i40e_vsi_context ctxt;
4302 int ret = 0;
4303 int i;
4304
4305 /* Check if enabled_tc is same as existing or new TCs */
4306 if (vsi->tc_config.enabled_tc == enabled_tc)
4307 return ret;
4308
4309 /* Enable ETS TCs with equal BW Share for now across all VSIs */
4310 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
4311 if (enabled_tc & (1 << i))
4312 bw_share[i] = 1;
4313 }
4314
4315 ret = i40e_vsi_configure_bw_alloc(vsi, enabled_tc, bw_share);
4316 if (ret) {
4317 dev_info(&vsi->back->pdev->dev,
4318 "Failed configuring TC map %d for VSI %d\n",
4319 enabled_tc, vsi->seid);
4320 goto out;
4321 }
4322
4323 /* Update Queue Pairs Mapping for currently enabled UPs */
4324 ctxt.seid = vsi->seid;
4325 ctxt.pf_num = vsi->back->hw.pf_id;
4326 ctxt.vf_num = 0;
4327 ctxt.uplink_seid = vsi->uplink_seid;
4328 memcpy(&ctxt.info, &vsi->info, sizeof(vsi->info));
4329 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, false);
4330
4331 /* Update the VSI after updating the VSI queue-mapping information */
4332 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
4333 if (ret) {
4334 dev_info(&vsi->back->pdev->dev,
4335 "update vsi failed, aq_err=%d\n",
4336 vsi->back->hw.aq.asq_last_status);
4337 goto out;
4338 }
4339 /* update the local VSI info with updated queue map */
4340 i40e_vsi_update_queue_map(vsi, &ctxt);
4341 vsi->info.valid_sections = 0;
4342
4343 /* Update current VSI BW information */
4344 ret = i40e_vsi_get_bw_info(vsi);
4345 if (ret) {
4346 dev_info(&vsi->back->pdev->dev,
4347 "Failed updating vsi bw info, aq_err=%d\n",
4348 vsi->back->hw.aq.asq_last_status);
4349 goto out;
4350 }
4351
4352 /* Update the netdev TC setup */
4353 i40e_vsi_config_netdev_tc(vsi, enabled_tc);
4354out:
4355 return ret;
4356}
4357
4358/**
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004359 * i40e_veb_config_tc - Configure TCs for given VEB
4360 * @veb: given VEB
4361 * @enabled_tc: TC bitmap
4362 *
4363 * Configures given TC bitmap for VEB (switching) element
4364 **/
4365int i40e_veb_config_tc(struct i40e_veb *veb, u8 enabled_tc)
4366{
4367 struct i40e_aqc_configure_switching_comp_bw_config_data bw_data = {0};
4368 struct i40e_pf *pf = veb->pf;
4369 int ret = 0;
4370 int i;
4371
4372 /* No TCs or already enabled TCs just return */
4373 if (!enabled_tc || veb->enabled_tc == enabled_tc)
4374 return ret;
4375
4376 bw_data.tc_valid_bits = enabled_tc;
4377 /* bw_data.absolute_credits is not set (relative) */
4378
4379 /* Enable ETS TCs with equal BW Share for now */
4380 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
4381 if (enabled_tc & (1 << i))
4382 bw_data.tc_bw_share_credits[i] = 1;
4383 }
4384
4385 ret = i40e_aq_config_switch_comp_bw_config(&pf->hw, veb->seid,
4386 &bw_data, NULL);
4387 if (ret) {
4388 dev_info(&pf->pdev->dev,
4389 "veb bw config failed, aq_err=%d\n",
4390 pf->hw.aq.asq_last_status);
4391 goto out;
4392 }
4393
4394 /* Update the BW information */
4395 ret = i40e_veb_get_bw_info(veb);
4396 if (ret) {
4397 dev_info(&pf->pdev->dev,
4398 "Failed getting veb bw config, aq_err=%d\n",
4399 pf->hw.aq.asq_last_status);
4400 }
4401
4402out:
4403 return ret;
4404}
4405
4406#ifdef CONFIG_I40E_DCB
4407/**
4408 * i40e_dcb_reconfigure - Reconfigure all VEBs and VSIs
4409 * @pf: PF struct
4410 *
4411 * Reconfigure VEB/VSIs on a given PF; it is assumed that
4412 * the caller would've quiesce all the VSIs before calling
4413 * this function
4414 **/
4415static void i40e_dcb_reconfigure(struct i40e_pf *pf)
4416{
4417 u8 tc_map = 0;
4418 int ret;
4419 u8 v;
4420
4421 /* Enable the TCs available on PF to all VEBs */
4422 tc_map = i40e_pf_get_tc_map(pf);
4423 for (v = 0; v < I40E_MAX_VEB; v++) {
4424 if (!pf->veb[v])
4425 continue;
4426 ret = i40e_veb_config_tc(pf->veb[v], tc_map);
4427 if (ret) {
4428 dev_info(&pf->pdev->dev,
4429 "Failed configuring TC for VEB seid=%d\n",
4430 pf->veb[v]->seid);
4431 /* Will try to configure as many components */
4432 }
4433 }
4434
4435 /* Update each VSI */
Mitch Williams505682c2014-05-20 08:01:37 +00004436 for (v = 0; v < pf->num_alloc_vsi; v++) {
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004437 if (!pf->vsi[v])
4438 continue;
4439
4440 /* - Enable all TCs for the LAN VSI
Vasu Dev38e00432014-08-01 13:27:03 -07004441#ifdef I40E_FCOE
4442 * - For FCoE VSI only enable the TC configured
4443 * as per the APP TLV
4444#endif
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004445 * - For all others keep them at TC0 for now
4446 */
4447 if (v == pf->lan_vsi)
4448 tc_map = i40e_pf_get_tc_map(pf);
4449 else
4450 tc_map = i40e_pf_get_default_tc(pf);
Vasu Dev38e00432014-08-01 13:27:03 -07004451#ifdef I40E_FCOE
4452 if (pf->vsi[v]->type == I40E_VSI_FCOE)
4453 tc_map = i40e_get_fcoe_tc_map(pf);
4454#endif /* #ifdef I40E_FCOE */
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004455
4456 ret = i40e_vsi_config_tc(pf->vsi[v], tc_map);
4457 if (ret) {
4458 dev_info(&pf->pdev->dev,
4459 "Failed configuring TC for VSI seid=%d\n",
4460 pf->vsi[v]->seid);
4461 /* Will try to configure as many components */
4462 } else {
Neerav Parikh0672a092014-04-01 07:11:47 +00004463 /* Re-configure VSI vectors based on updated TC map */
4464 i40e_vsi_map_rings_to_vectors(pf->vsi[v]);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004465 if (pf->vsi[v]->netdev)
4466 i40e_dcbnl_set_all(pf->vsi[v]);
4467 }
4468 }
4469}
4470
4471/**
Neerav Parikh2fd75f32014-11-12 00:18:20 +00004472 * i40e_resume_port_tx - Resume port Tx
4473 * @pf: PF struct
4474 *
4475 * Resume a port's Tx and issue a PF reset in case of failure to
4476 * resume.
4477 **/
4478static int i40e_resume_port_tx(struct i40e_pf *pf)
4479{
4480 struct i40e_hw *hw = &pf->hw;
4481 int ret;
4482
4483 ret = i40e_aq_resume_port_tx(hw, NULL);
4484 if (ret) {
4485 dev_info(&pf->pdev->dev,
4486 "AQ command Resume Port Tx failed = %d\n",
4487 pf->hw.aq.asq_last_status);
4488 /* Schedule PF reset to recover */
4489 set_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
4490 i40e_service_event_schedule(pf);
4491 }
4492
4493 return ret;
4494}
4495
4496/**
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004497 * i40e_init_pf_dcb - Initialize DCB configuration
4498 * @pf: PF being configured
4499 *
4500 * Query the current DCB configuration and cache it
4501 * in the hardware structure
4502 **/
4503static int i40e_init_pf_dcb(struct i40e_pf *pf)
4504{
4505 struct i40e_hw *hw = &pf->hw;
4506 int err = 0;
4507
4508 if (pf->hw.func_caps.npar_enable)
4509 goto out;
4510
4511 /* Get the initial DCB configuration */
4512 err = i40e_init_dcb(hw);
4513 if (!err) {
4514 /* Device/Function is not DCBX capable */
4515 if ((!hw->func_caps.dcb) ||
4516 (hw->dcbx_status == I40E_DCBX_STATUS_DISABLED)) {
4517 dev_info(&pf->pdev->dev,
4518 "DCBX offload is not supported or is disabled for this PF.\n");
4519
4520 if (pf->flags & I40E_FLAG_MFP_ENABLED)
4521 goto out;
4522
4523 } else {
4524 /* When status is not DISABLED then DCBX in FW */
4525 pf->dcbx_cap = DCB_CAP_DCBX_LLD_MANAGED |
4526 DCB_CAP_DCBX_VER_IEEE;
Neerav Parikh4d9b6042014-05-22 06:31:51 +00004527
4528 pf->flags |= I40E_FLAG_DCB_CAPABLE;
4529 /* Enable DCB tagging only when more than one TC */
4530 if (i40e_dcb_get_num_tc(&hw->local_dcbx_config) > 1)
4531 pf->flags |= I40E_FLAG_DCB_ENABLED;
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00004532 dev_dbg(&pf->pdev->dev,
4533 "DCBX offload is supported for this PF.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004534 }
Neerav Parikh014269f2014-04-01 07:11:48 +00004535 } else {
4536 dev_info(&pf->pdev->dev, "AQ Querying DCB configuration failed: %d\n",
4537 pf->hw.aq.asq_last_status);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004538 }
4539
4540out:
4541 return err;
4542}
4543#endif /* CONFIG_I40E_DCB */
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004544#define SPEED_SIZE 14
4545#define FC_SIZE 8
4546/**
4547 * i40e_print_link_message - print link up or down
4548 * @vsi: the VSI for which link needs a message
4549 */
4550static void i40e_print_link_message(struct i40e_vsi *vsi, bool isup)
4551{
4552 char speed[SPEED_SIZE] = "Unknown";
4553 char fc[FC_SIZE] = "RX/TX";
4554
4555 if (!isup) {
4556 netdev_info(vsi->netdev, "NIC Link is Down\n");
4557 return;
4558 }
4559
4560 switch (vsi->back->hw.phy.link_info.link_speed) {
4561 case I40E_LINK_SPEED_40GB:
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00004562 strlcpy(speed, "40 Gbps", SPEED_SIZE);
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004563 break;
4564 case I40E_LINK_SPEED_10GB:
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00004565 strlcpy(speed, "10 Gbps", SPEED_SIZE);
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004566 break;
4567 case I40E_LINK_SPEED_1GB:
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00004568 strlcpy(speed, "1000 Mbps", SPEED_SIZE);
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004569 break;
Mitch Williams5960d332014-09-13 07:40:47 +00004570 case I40E_LINK_SPEED_100MB:
4571 strncpy(speed, "100 Mbps", SPEED_SIZE);
4572 break;
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004573 default:
4574 break;
4575 }
4576
4577 switch (vsi->back->hw.fc.current_mode) {
4578 case I40E_FC_FULL:
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00004579 strlcpy(fc, "RX/TX", FC_SIZE);
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004580 break;
4581 case I40E_FC_TX_PAUSE:
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00004582 strlcpy(fc, "TX", FC_SIZE);
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004583 break;
4584 case I40E_FC_RX_PAUSE:
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00004585 strlcpy(fc, "RX", FC_SIZE);
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004586 break;
4587 default:
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00004588 strlcpy(fc, "None", FC_SIZE);
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004589 break;
4590 }
4591
4592 netdev_info(vsi->netdev, "NIC Link is Up %s Full Duplex, Flow Control: %s\n",
4593 speed, fc);
4594}
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004595
4596/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004597 * i40e_up_complete - Finish the last steps of bringing up a connection
4598 * @vsi: the VSI being configured
4599 **/
4600static int i40e_up_complete(struct i40e_vsi *vsi)
4601{
4602 struct i40e_pf *pf = vsi->back;
4603 int err;
4604
4605 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
4606 i40e_vsi_configure_msix(vsi);
4607 else
4608 i40e_configure_msi_and_legacy(vsi);
4609
4610 /* start rings */
4611 err = i40e_vsi_control_rings(vsi, true);
4612 if (err)
4613 return err;
4614
4615 clear_bit(__I40E_DOWN, &vsi->state);
4616 i40e_napi_enable_all(vsi);
4617 i40e_vsi_enable_irq(vsi);
4618
4619 if ((pf->hw.phy.link_info.link_info & I40E_AQ_LINK_UP) &&
4620 (vsi->netdev)) {
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004621 i40e_print_link_message(vsi, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004622 netif_tx_start_all_queues(vsi->netdev);
4623 netif_carrier_on(vsi->netdev);
Anjali Singhai6d779b42013-09-28 06:00:02 +00004624 } else if (vsi->netdev) {
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004625 i40e_print_link_message(vsi, false);
Carolyn Wyborny7b592f62014-07-10 07:58:19 +00004626 /* need to check for qualified module here*/
4627 if ((pf->hw.phy.link_info.link_info &
4628 I40E_AQ_MEDIA_AVAILABLE) &&
4629 (!(pf->hw.phy.link_info.an_info &
4630 I40E_AQ_QUALIFIED_MODULE)))
4631 netdev_err(vsi->netdev,
4632 "the driver failed to link because an unqualified module was detected.");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004633 }
Anjali Singhai Jainca64fa42014-02-11 08:26:30 +00004634
4635 /* replay FDIR SB filters */
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00004636 if (vsi->type == I40E_VSI_FDIR) {
4637 /* reset fd counters */
4638 pf->fd_add_err = pf->fd_atr_cnt = 0;
4639 if (pf->fd_tcp_rule > 0) {
4640 pf->flags &= ~I40E_FLAG_FD_ATR_ENABLED;
4641 dev_info(&pf->pdev->dev, "Forcing ATR off, sideband rules for TCP/IPv4 exist\n");
4642 pf->fd_tcp_rule = 0;
4643 }
Anjali Singhai Jainca64fa42014-02-11 08:26:30 +00004644 i40e_fdir_filter_restore(vsi);
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00004645 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004646 i40e_service_event_schedule(pf);
4647
4648 return 0;
4649}
4650
4651/**
4652 * i40e_vsi_reinit_locked - Reset the VSI
4653 * @vsi: the VSI being configured
4654 *
4655 * Rebuild the ring structs after some configuration
4656 * has changed, e.g. MTU size.
4657 **/
4658static void i40e_vsi_reinit_locked(struct i40e_vsi *vsi)
4659{
4660 struct i40e_pf *pf = vsi->back;
4661
4662 WARN_ON(in_interrupt());
4663 while (test_and_set_bit(__I40E_CONFIG_BUSY, &pf->state))
4664 usleep_range(1000, 2000);
4665 i40e_down(vsi);
4666
4667 /* Give a VF some time to respond to the reset. The
4668 * two second wait is based upon the watchdog cycle in
4669 * the VF driver.
4670 */
4671 if (vsi->type == I40E_VSI_SRIOV)
4672 msleep(2000);
4673 i40e_up(vsi);
4674 clear_bit(__I40E_CONFIG_BUSY, &pf->state);
4675}
4676
4677/**
4678 * i40e_up - Bring the connection back up after being down
4679 * @vsi: the VSI being configured
4680 **/
4681int i40e_up(struct i40e_vsi *vsi)
4682{
4683 int err;
4684
4685 err = i40e_vsi_configure(vsi);
4686 if (!err)
4687 err = i40e_up_complete(vsi);
4688
4689 return err;
4690}
4691
4692/**
4693 * i40e_down - Shutdown the connection processing
4694 * @vsi: the VSI being stopped
4695 **/
4696void i40e_down(struct i40e_vsi *vsi)
4697{
4698 int i;
4699
4700 /* It is assumed that the caller of this function
4701 * sets the vsi->state __I40E_DOWN bit.
4702 */
4703 if (vsi->netdev) {
4704 netif_carrier_off(vsi->netdev);
4705 netif_tx_disable(vsi->netdev);
4706 }
4707 i40e_vsi_disable_irq(vsi);
4708 i40e_vsi_control_rings(vsi, false);
4709 i40e_napi_disable_all(vsi);
4710
4711 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00004712 i40e_clean_tx_ring(vsi->tx_rings[i]);
4713 i40e_clean_rx_ring(vsi->rx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004714 }
4715}
4716
4717/**
4718 * i40e_setup_tc - configure multiple traffic classes
4719 * @netdev: net device to configure
4720 * @tc: number of traffic classes to enable
4721 **/
Vasu Dev38e00432014-08-01 13:27:03 -07004722#ifdef I40E_FCOE
4723int i40e_setup_tc(struct net_device *netdev, u8 tc)
4724#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004725static int i40e_setup_tc(struct net_device *netdev, u8 tc)
Vasu Dev38e00432014-08-01 13:27:03 -07004726#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004727{
4728 struct i40e_netdev_priv *np = netdev_priv(netdev);
4729 struct i40e_vsi *vsi = np->vsi;
4730 struct i40e_pf *pf = vsi->back;
4731 u8 enabled_tc = 0;
4732 int ret = -EINVAL;
4733 int i;
4734
4735 /* Check if DCB enabled to continue */
4736 if (!(pf->flags & I40E_FLAG_DCB_ENABLED)) {
4737 netdev_info(netdev, "DCB is not enabled for adapter\n");
4738 goto exit;
4739 }
4740
4741 /* Check if MFP enabled */
4742 if (pf->flags & I40E_FLAG_MFP_ENABLED) {
4743 netdev_info(netdev, "Configuring TC not supported in MFP mode\n");
4744 goto exit;
4745 }
4746
4747 /* Check whether tc count is within enabled limit */
4748 if (tc > i40e_pf_get_num_tc(pf)) {
4749 netdev_info(netdev, "TC count greater than enabled on link for adapter\n");
4750 goto exit;
4751 }
4752
4753 /* Generate TC map for number of tc requested */
4754 for (i = 0; i < tc; i++)
4755 enabled_tc |= (1 << i);
4756
4757 /* Requesting same TC configuration as already enabled */
4758 if (enabled_tc == vsi->tc_config.enabled_tc)
4759 return 0;
4760
4761 /* Quiesce VSI queues */
4762 i40e_quiesce_vsi(vsi);
4763
4764 /* Configure VSI for enabled TCs */
4765 ret = i40e_vsi_config_tc(vsi, enabled_tc);
4766 if (ret) {
4767 netdev_info(netdev, "Failed configuring TC for VSI seid=%d\n",
4768 vsi->seid);
4769 goto exit;
4770 }
4771
4772 /* Unquiesce VSI */
4773 i40e_unquiesce_vsi(vsi);
4774
4775exit:
4776 return ret;
4777}
4778
4779/**
4780 * i40e_open - Called when a network interface is made active
4781 * @netdev: network interface device structure
4782 *
4783 * The open entry point is called when a network interface is made
4784 * active by the system (IFF_UP). At this point all resources needed
4785 * for transmit and receive operations are allocated, the interrupt
4786 * handler is registered with the OS, the netdev watchdog subtask is
4787 * enabled, and the stack is notified that the interface is ready.
4788 *
4789 * Returns 0 on success, negative value on failure
4790 **/
Vasu Dev38e00432014-08-01 13:27:03 -07004791#ifdef I40E_FCOE
4792int i40e_open(struct net_device *netdev)
4793#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004794static int i40e_open(struct net_device *netdev)
Vasu Dev38e00432014-08-01 13:27:03 -07004795#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004796{
4797 struct i40e_netdev_priv *np = netdev_priv(netdev);
4798 struct i40e_vsi *vsi = np->vsi;
4799 struct i40e_pf *pf = vsi->back;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004800 int err;
4801
Shannon Nelson4eb3f762014-03-06 08:59:58 +00004802 /* disallow open during test or if eeprom is broken */
4803 if (test_bit(__I40E_TESTING, &pf->state) ||
4804 test_bit(__I40E_BAD_EEPROM, &pf->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004805 return -EBUSY;
4806
4807 netif_carrier_off(netdev);
4808
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00004809 err = i40e_vsi_open(vsi);
4810 if (err)
4811 return err;
4812
Jesse Brandeburg059dab62014-04-01 09:07:20 +00004813 /* configure global TSO hardware offload settings */
4814 wr32(&pf->hw, I40E_GLLAN_TSOMSK_F, be32_to_cpu(TCP_FLAG_PSH |
4815 TCP_FLAG_FIN) >> 16);
4816 wr32(&pf->hw, I40E_GLLAN_TSOMSK_M, be32_to_cpu(TCP_FLAG_PSH |
4817 TCP_FLAG_FIN |
4818 TCP_FLAG_CWR) >> 16);
4819 wr32(&pf->hw, I40E_GLLAN_TSOMSK_L, be32_to_cpu(TCP_FLAG_CWR) >> 16);
4820
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00004821#ifdef CONFIG_I40E_VXLAN
4822 vxlan_get_rx_port(netdev);
4823#endif
4824
4825 return 0;
4826}
4827
4828/**
4829 * i40e_vsi_open -
4830 * @vsi: the VSI to open
4831 *
4832 * Finish initialization of the VSI.
4833 *
4834 * Returns 0 on success, negative value on failure
4835 **/
4836int i40e_vsi_open(struct i40e_vsi *vsi)
4837{
4838 struct i40e_pf *pf = vsi->back;
4839 char int_name[IFNAMSIZ];
4840 int err;
4841
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004842 /* allocate descriptors */
4843 err = i40e_vsi_setup_tx_resources(vsi);
4844 if (err)
4845 goto err_setup_tx;
4846 err = i40e_vsi_setup_rx_resources(vsi);
4847 if (err)
4848 goto err_setup_rx;
4849
4850 err = i40e_vsi_configure(vsi);
4851 if (err)
4852 goto err_setup_rx;
4853
Shannon Nelsonc22e3c62014-03-14 07:32:25 +00004854 if (vsi->netdev) {
4855 snprintf(int_name, sizeof(int_name) - 1, "%s-%s",
4856 dev_driver_string(&pf->pdev->dev), vsi->netdev->name);
4857 err = i40e_vsi_request_irq(vsi, int_name);
4858 if (err)
4859 goto err_setup_rx;
4860
4861 /* Notify the stack of the actual queue counts. */
4862 err = netif_set_real_num_tx_queues(vsi->netdev,
4863 vsi->num_queue_pairs);
4864 if (err)
4865 goto err_set_queues;
4866
4867 err = netif_set_real_num_rx_queues(vsi->netdev,
4868 vsi->num_queue_pairs);
4869 if (err)
4870 goto err_set_queues;
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00004871
4872 } else if (vsi->type == I40E_VSI_FDIR) {
4873 snprintf(int_name, sizeof(int_name) - 1, "%s-fdir",
4874 dev_driver_string(&pf->pdev->dev));
4875 err = i40e_vsi_request_irq(vsi, int_name);
Shannon Nelsonc22e3c62014-03-14 07:32:25 +00004876 } else {
Jean Sacrence9ccb12014-05-01 14:31:18 +00004877 err = -EINVAL;
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00004878 goto err_setup_rx;
4879 }
Anjali Singhai Jain25946dd2013-11-26 10:49:14 +00004880
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004881 err = i40e_up_complete(vsi);
4882 if (err)
4883 goto err_up_complete;
4884
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004885 return 0;
4886
4887err_up_complete:
4888 i40e_down(vsi);
Anjali Singhai Jain25946dd2013-11-26 10:49:14 +00004889err_set_queues:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004890 i40e_vsi_free_irq(vsi);
4891err_setup_rx:
4892 i40e_vsi_free_rx_resources(vsi);
4893err_setup_tx:
4894 i40e_vsi_free_tx_resources(vsi);
4895 if (vsi == pf->vsi[pf->lan_vsi])
4896 i40e_do_reset(pf, (1 << __I40E_PF_RESET_REQUESTED));
4897
4898 return err;
4899}
4900
4901/**
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00004902 * i40e_fdir_filter_exit - Cleans up the Flow Director accounting
4903 * @pf: Pointer to pf
4904 *
4905 * This function destroys the hlist where all the Flow Director
4906 * filters were saved.
4907 **/
4908static void i40e_fdir_filter_exit(struct i40e_pf *pf)
4909{
4910 struct i40e_fdir_filter *filter;
4911 struct hlist_node *node2;
4912
4913 hlist_for_each_entry_safe(filter, node2,
4914 &pf->fdir_filter_list, fdir_node) {
4915 hlist_del(&filter->fdir_node);
4916 kfree(filter);
4917 }
4918 pf->fdir_pf_active_filters = 0;
4919}
4920
4921/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004922 * i40e_close - Disables a network interface
4923 * @netdev: network interface device structure
4924 *
4925 * The close entry point is called when an interface is de-activated
4926 * by the OS. The hardware is still under the driver's control, but
4927 * this netdev interface is disabled.
4928 *
4929 * Returns 0, this is not allowed to fail
4930 **/
Vasu Dev38e00432014-08-01 13:27:03 -07004931#ifdef I40E_FCOE
4932int i40e_close(struct net_device *netdev)
4933#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004934static int i40e_close(struct net_device *netdev)
Vasu Dev38e00432014-08-01 13:27:03 -07004935#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004936{
4937 struct i40e_netdev_priv *np = netdev_priv(netdev);
4938 struct i40e_vsi *vsi = np->vsi;
4939
Shannon Nelson90ef8d42014-03-14 07:32:26 +00004940 i40e_vsi_close(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004941
4942 return 0;
4943}
4944
4945/**
4946 * i40e_do_reset - Start a PF or Core Reset sequence
4947 * @pf: board private structure
4948 * @reset_flags: which reset is requested
4949 *
4950 * The essential difference in resets is that the PF Reset
4951 * doesn't clear the packet buffers, doesn't reset the PE
4952 * firmware, and doesn't bother the other PFs on the chip.
4953 **/
4954void i40e_do_reset(struct i40e_pf *pf, u32 reset_flags)
4955{
4956 u32 val;
4957
4958 WARN_ON(in_interrupt());
4959
Mitch Williams263fc482014-04-23 04:50:11 +00004960 if (i40e_check_asq_alive(&pf->hw))
4961 i40e_vc_notify_reset(pf);
4962
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004963 /* do the biggest reset indicated */
4964 if (reset_flags & (1 << __I40E_GLOBAL_RESET_REQUESTED)) {
4965
4966 /* Request a Global Reset
4967 *
4968 * This will start the chip's countdown to the actual full
4969 * chip reset event, and a warning interrupt to be sent
4970 * to all PFs, including the requestor. Our handler
4971 * for the warning interrupt will deal with the shutdown
4972 * and recovery of the switch setup.
4973 */
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00004974 dev_dbg(&pf->pdev->dev, "GlobalR requested\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004975 val = rd32(&pf->hw, I40E_GLGEN_RTRIG);
4976 val |= I40E_GLGEN_RTRIG_GLOBR_MASK;
4977 wr32(&pf->hw, I40E_GLGEN_RTRIG, val);
4978
4979 } else if (reset_flags & (1 << __I40E_CORE_RESET_REQUESTED)) {
4980
4981 /* Request a Core Reset
4982 *
4983 * Same as Global Reset, except does *not* include the MAC/PHY
4984 */
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00004985 dev_dbg(&pf->pdev->dev, "CoreR requested\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004986 val = rd32(&pf->hw, I40E_GLGEN_RTRIG);
4987 val |= I40E_GLGEN_RTRIG_CORER_MASK;
4988 wr32(&pf->hw, I40E_GLGEN_RTRIG, val);
4989 i40e_flush(&pf->hw);
4990
Shannon Nelson7823fe32013-11-16 10:00:45 +00004991 } else if (reset_flags & (1 << __I40E_EMP_RESET_REQUESTED)) {
4992
4993 /* Request a Firmware Reset
4994 *
4995 * Same as Global reset, plus restarting the
4996 * embedded firmware engine.
4997 */
4998 /* enable EMP Reset */
4999 val = rd32(&pf->hw, I40E_GLGEN_RSTENA_EMP);
5000 val |= I40E_GLGEN_RSTENA_EMP_EMP_RST_ENA_MASK;
5001 wr32(&pf->hw, I40E_GLGEN_RSTENA_EMP, val);
5002
5003 /* force the reset */
5004 val = rd32(&pf->hw, I40E_GLGEN_RTRIG);
5005 val |= I40E_GLGEN_RTRIG_EMPFWR_MASK;
5006 wr32(&pf->hw, I40E_GLGEN_RTRIG, val);
5007 i40e_flush(&pf->hw);
5008
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005009 } else if (reset_flags & (1 << __I40E_PF_RESET_REQUESTED)) {
5010
5011 /* Request a PF Reset
5012 *
5013 * Resets only the PF-specific registers
5014 *
5015 * This goes directly to the tear-down and rebuild of
5016 * the switch, since we need to do all the recovery as
5017 * for the Core Reset.
5018 */
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005019 dev_dbg(&pf->pdev->dev, "PFR requested\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005020 i40e_handle_reset_warning(pf);
5021
5022 } else if (reset_flags & (1 << __I40E_REINIT_REQUESTED)) {
5023 int v;
5024
5025 /* Find the VSI(s) that requested a re-init */
5026 dev_info(&pf->pdev->dev,
5027 "VSI reinit requested\n");
Mitch Williams505682c2014-05-20 08:01:37 +00005028 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005029 struct i40e_vsi *vsi = pf->vsi[v];
5030 if (vsi != NULL &&
5031 test_bit(__I40E_REINIT_REQUESTED, &vsi->state)) {
5032 i40e_vsi_reinit_locked(pf->vsi[v]);
5033 clear_bit(__I40E_REINIT_REQUESTED, &vsi->state);
5034 }
5035 }
5036
5037 /* no further action needed, so return now */
5038 return;
Neerav Parikhb5d06f02014-06-03 23:50:17 +00005039 } else if (reset_flags & (1 << __I40E_DOWN_REQUESTED)) {
5040 int v;
5041
5042 /* Find the VSI(s) that needs to be brought down */
5043 dev_info(&pf->pdev->dev, "VSI down requested\n");
5044 for (v = 0; v < pf->num_alloc_vsi; v++) {
5045 struct i40e_vsi *vsi = pf->vsi[v];
5046 if (vsi != NULL &&
5047 test_bit(__I40E_DOWN_REQUESTED, &vsi->state)) {
5048 set_bit(__I40E_DOWN, &vsi->state);
5049 i40e_down(vsi);
5050 clear_bit(__I40E_DOWN_REQUESTED, &vsi->state);
5051 }
5052 }
5053
5054 /* no further action needed, so return now */
5055 return;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005056 } else {
5057 dev_info(&pf->pdev->dev,
5058 "bad reset request 0x%08x\n", reset_flags);
5059 return;
5060 }
5061}
5062
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005063#ifdef CONFIG_I40E_DCB
5064/**
5065 * i40e_dcb_need_reconfig - Check if DCB needs reconfig
5066 * @pf: board private structure
5067 * @old_cfg: current DCB config
5068 * @new_cfg: new DCB config
5069 **/
5070bool i40e_dcb_need_reconfig(struct i40e_pf *pf,
5071 struct i40e_dcbx_config *old_cfg,
5072 struct i40e_dcbx_config *new_cfg)
5073{
5074 bool need_reconfig = false;
5075
5076 /* Check if ETS configuration has changed */
5077 if (memcmp(&new_cfg->etscfg,
5078 &old_cfg->etscfg,
5079 sizeof(new_cfg->etscfg))) {
5080 /* If Priority Table has changed reconfig is needed */
5081 if (memcmp(&new_cfg->etscfg.prioritytable,
5082 &old_cfg->etscfg.prioritytable,
5083 sizeof(new_cfg->etscfg.prioritytable))) {
5084 need_reconfig = true;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005085 dev_dbg(&pf->pdev->dev, "ETS UP2TC changed.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005086 }
5087
5088 if (memcmp(&new_cfg->etscfg.tcbwtable,
5089 &old_cfg->etscfg.tcbwtable,
5090 sizeof(new_cfg->etscfg.tcbwtable)))
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005091 dev_dbg(&pf->pdev->dev, "ETS TC BW Table changed.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005092
5093 if (memcmp(&new_cfg->etscfg.tsatable,
5094 &old_cfg->etscfg.tsatable,
5095 sizeof(new_cfg->etscfg.tsatable)))
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005096 dev_dbg(&pf->pdev->dev, "ETS TSA Table changed.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005097 }
5098
5099 /* Check if PFC configuration has changed */
5100 if (memcmp(&new_cfg->pfc,
5101 &old_cfg->pfc,
5102 sizeof(new_cfg->pfc))) {
5103 need_reconfig = true;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005104 dev_dbg(&pf->pdev->dev, "PFC config change detected.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005105 }
5106
5107 /* Check if APP Table has changed */
5108 if (memcmp(&new_cfg->app,
5109 &old_cfg->app,
Dave Jones3d9667a2014-01-27 23:11:09 -05005110 sizeof(new_cfg->app))) {
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005111 need_reconfig = true;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005112 dev_dbg(&pf->pdev->dev, "APP Table change detected.\n");
Dave Jones3d9667a2014-01-27 23:11:09 -05005113 }
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005114
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005115 dev_dbg(&pf->pdev->dev, "%s: need_reconfig=%d\n", __func__,
5116 need_reconfig);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005117 return need_reconfig;
5118}
5119
5120/**
5121 * i40e_handle_lldp_event - Handle LLDP Change MIB event
5122 * @pf: board private structure
5123 * @e: event info posted on ARQ
5124 **/
5125static int i40e_handle_lldp_event(struct i40e_pf *pf,
5126 struct i40e_arq_event_info *e)
5127{
5128 struct i40e_aqc_lldp_get_mib *mib =
5129 (struct i40e_aqc_lldp_get_mib *)&e->desc.params.raw;
5130 struct i40e_hw *hw = &pf->hw;
5131 struct i40e_dcbx_config *dcbx_cfg = &hw->local_dcbx_config;
5132 struct i40e_dcbx_config tmp_dcbx_cfg;
5133 bool need_reconfig = false;
5134 int ret = 0;
5135 u8 type;
5136
Neerav Parikh4d9b6042014-05-22 06:31:51 +00005137 /* Not DCB capable or capability disabled */
5138 if (!(pf->flags & I40E_FLAG_DCB_CAPABLE))
5139 return ret;
5140
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005141 /* Ignore if event is not for Nearest Bridge */
5142 type = ((mib->type >> I40E_AQ_LLDP_BRIDGE_TYPE_SHIFT)
5143 & I40E_AQ_LLDP_BRIDGE_TYPE_MASK);
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005144 dev_dbg(&pf->pdev->dev,
5145 "%s: LLDP event mib bridge type 0x%x\n", __func__, type);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005146 if (type != I40E_AQ_LLDP_BRIDGE_TYPE_NEAREST_BRIDGE)
5147 return ret;
5148
5149 /* Check MIB Type and return if event for Remote MIB update */
5150 type = mib->type & I40E_AQ_LLDP_MIB_TYPE_MASK;
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005151 dev_dbg(&pf->pdev->dev,
5152 "%s: LLDP event mib type %s\n", __func__,
5153 type ? "remote" : "local");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005154 if (type == I40E_AQ_LLDP_MIB_REMOTE) {
5155 /* Update the remote cached instance and return */
5156 ret = i40e_aq_get_dcb_config(hw, I40E_AQ_LLDP_MIB_REMOTE,
5157 I40E_AQ_LLDP_BRIDGE_TYPE_NEAREST_BRIDGE,
5158 &hw->remote_dcbx_config);
5159 goto exit;
5160 }
5161
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005162 memset(&tmp_dcbx_cfg, 0, sizeof(tmp_dcbx_cfg));
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005163 /* Store the old configuration */
5164 tmp_dcbx_cfg = *dcbx_cfg;
5165
5166 /* Get updated DCBX data from firmware */
5167 ret = i40e_get_dcb_config(&pf->hw);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005168 if (ret) {
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005169 dev_info(&pf->pdev->dev, "Failed querying DCB configuration data from firmware.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005170 goto exit;
5171 }
5172
5173 /* No change detected in DCBX configs */
5174 if (!memcmp(&tmp_dcbx_cfg, dcbx_cfg, sizeof(tmp_dcbx_cfg))) {
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005175 dev_dbg(&pf->pdev->dev, "No change detected in DCBX configuration.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005176 goto exit;
5177 }
5178
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005179 need_reconfig = i40e_dcb_need_reconfig(pf, &tmp_dcbx_cfg, dcbx_cfg);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005180
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005181 i40e_dcbnl_flush_apps(pf, dcbx_cfg);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005182
5183 if (!need_reconfig)
5184 goto exit;
5185
Neerav Parikh4d9b6042014-05-22 06:31:51 +00005186 /* Enable DCB tagging only when more than one TC */
5187 if (i40e_dcb_get_num_tc(dcbx_cfg) > 1)
5188 pf->flags |= I40E_FLAG_DCB_ENABLED;
5189 else
5190 pf->flags &= ~I40E_FLAG_DCB_ENABLED;
5191
Neerav Parikh69129dc2014-11-12 00:18:46 +00005192 set_bit(__I40E_PORT_TX_SUSPENDED, &pf->state);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005193 /* Reconfiguration needed quiesce all VSIs */
5194 i40e_pf_quiesce_all_vsi(pf);
5195
5196 /* Changes in configuration update VEB/VSI */
5197 i40e_dcb_reconfigure(pf);
5198
Neerav Parikh2fd75f32014-11-12 00:18:20 +00005199 ret = i40e_resume_port_tx(pf);
5200
Neerav Parikh69129dc2014-11-12 00:18:46 +00005201 clear_bit(__I40E_PORT_TX_SUSPENDED, &pf->state);
Neerav Parikh2fd75f32014-11-12 00:18:20 +00005202 /* In case of error no point in resuming VSIs */
Neerav Parikh69129dc2014-11-12 00:18:46 +00005203 if (ret)
5204 goto exit;
5205
5206 /* Wait for the PF's Tx queues to be disabled */
5207 ret = i40e_pf_wait_txq_disabled(pf);
Neerav Parikh2fd75f32014-11-12 00:18:20 +00005208 if (!ret)
5209 i40e_pf_unquiesce_all_vsi(pf);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005210exit:
5211 return ret;
5212}
5213#endif /* CONFIG_I40E_DCB */
5214
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005215/**
Anjali Singhai Jain23326182013-11-26 10:49:22 +00005216 * i40e_do_reset_safe - Protected reset path for userland calls.
5217 * @pf: board private structure
5218 * @reset_flags: which reset is requested
5219 *
5220 **/
5221void i40e_do_reset_safe(struct i40e_pf *pf, u32 reset_flags)
5222{
5223 rtnl_lock();
5224 i40e_do_reset(pf, reset_flags);
5225 rtnl_unlock();
5226}
5227
5228/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005229 * i40e_handle_lan_overflow_event - Handler for LAN queue overflow event
5230 * @pf: board private structure
5231 * @e: event info posted on ARQ
5232 *
5233 * Handler for LAN Queue Overflow Event generated by the firmware for PF
5234 * and VF queues
5235 **/
5236static void i40e_handle_lan_overflow_event(struct i40e_pf *pf,
5237 struct i40e_arq_event_info *e)
5238{
5239 struct i40e_aqc_lan_overflow *data =
5240 (struct i40e_aqc_lan_overflow *)&e->desc.params.raw;
5241 u32 queue = le32_to_cpu(data->prtdcb_rupto);
5242 u32 qtx_ctl = le32_to_cpu(data->otx_ctl);
5243 struct i40e_hw *hw = &pf->hw;
5244 struct i40e_vf *vf;
5245 u16 vf_id;
5246
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005247 dev_dbg(&pf->pdev->dev, "overflow Rx Queue Number = %d QTX_CTL=0x%08x\n",
5248 queue, qtx_ctl);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005249
5250 /* Queue belongs to VF, find the VF and issue VF reset */
5251 if (((qtx_ctl & I40E_QTX_CTL_PFVF_Q_MASK)
5252 >> I40E_QTX_CTL_PFVF_Q_SHIFT) == I40E_QTX_CTL_VF_QUEUE) {
5253 vf_id = (u16)((qtx_ctl & I40E_QTX_CTL_VFVM_INDX_MASK)
5254 >> I40E_QTX_CTL_VFVM_INDX_SHIFT);
5255 vf_id -= hw->func_caps.vf_base_id;
5256 vf = &pf->vf[vf_id];
5257 i40e_vc_notify_vf_reset(vf);
5258 /* Allow VF to process pending reset notification */
5259 msleep(20);
5260 i40e_reset_vf(vf, false);
5261 }
5262}
5263
5264/**
5265 * i40e_service_event_complete - Finish up the service event
5266 * @pf: board private structure
5267 **/
5268static void i40e_service_event_complete(struct i40e_pf *pf)
5269{
5270 BUG_ON(!test_bit(__I40E_SERVICE_SCHED, &pf->state));
5271
5272 /* flush memory to make sure state is correct before next watchog */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01005273 smp_mb__before_atomic();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005274 clear_bit(__I40E_SERVICE_SCHED, &pf->state);
5275}
5276
5277/**
Anjali Singhai Jain12957382014-06-04 04:22:47 +00005278 * i40e_get_cur_guaranteed_fd_count - Get the consumed guaranteed FD filters
5279 * @pf: board private structure
5280 **/
5281int i40e_get_cur_guaranteed_fd_count(struct i40e_pf *pf)
5282{
5283 int val, fcnt_prog;
5284
5285 val = rd32(&pf->hw, I40E_PFQF_FDSTAT);
5286 fcnt_prog = (val & I40E_PFQF_FDSTAT_GUARANT_CNT_MASK);
5287 return fcnt_prog;
5288}
5289
5290/**
5291 * i40e_get_current_fd_count - Get the count of total FD filters programmed
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005292 * @pf: board private structure
5293 **/
5294int i40e_get_current_fd_count(struct i40e_pf *pf)
5295{
5296 int val, fcnt_prog;
5297 val = rd32(&pf->hw, I40E_PFQF_FDSTAT);
5298 fcnt_prog = (val & I40E_PFQF_FDSTAT_GUARANT_CNT_MASK) +
5299 ((val & I40E_PFQF_FDSTAT_BEST_CNT_MASK) >>
5300 I40E_PFQF_FDSTAT_BEST_CNT_SHIFT);
5301 return fcnt_prog;
5302}
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005303
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005304/**
5305 * i40e_fdir_check_and_reenable - Function to reenabe FD ATR or SB if disabled
5306 * @pf: board private structure
5307 **/
5308void i40e_fdir_check_and_reenable(struct i40e_pf *pf)
5309{
5310 u32 fcnt_prog, fcnt_avail;
5311
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005312 if (test_bit(__I40E_FD_FLUSH_REQUESTED, &pf->state))
5313 return;
5314
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005315 /* Check if, FD SB or ATR was auto disabled and if there is enough room
5316 * to re-enable
5317 */
Anjali Singhai Jain12957382014-06-04 04:22:47 +00005318 fcnt_prog = i40e_get_cur_guaranteed_fd_count(pf);
5319 fcnt_avail = pf->fdir_pf_filter_count;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005320 if ((fcnt_prog < (fcnt_avail - I40E_FDIR_BUFFER_HEAD_ROOM)) ||
5321 (pf->fd_add_err == 0) ||
5322 (i40e_get_current_atr_cnt(pf) < pf->fd_atr_cnt)) {
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005323 if ((pf->flags & I40E_FLAG_FD_SB_ENABLED) &&
5324 (pf->auto_disable_flags & I40E_FLAG_FD_SB_ENABLED)) {
5325 pf->auto_disable_flags &= ~I40E_FLAG_FD_SB_ENABLED;
5326 dev_info(&pf->pdev->dev, "FD Sideband/ntuple is being enabled since we have space in the table now\n");
5327 }
5328 }
5329 /* Wait for some more space to be available to turn on ATR */
5330 if (fcnt_prog < (fcnt_avail - I40E_FDIR_BUFFER_HEAD_ROOM * 2)) {
5331 if ((pf->flags & I40E_FLAG_FD_ATR_ENABLED) &&
5332 (pf->auto_disable_flags & I40E_FLAG_FD_ATR_ENABLED)) {
5333 pf->auto_disable_flags &= ~I40E_FLAG_FD_ATR_ENABLED;
5334 dev_info(&pf->pdev->dev, "ATR is being enabled since we have space in the table now\n");
5335 }
5336 }
5337}
5338
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005339#define I40E_MIN_FD_FLUSH_INTERVAL 10
5340/**
5341 * i40e_fdir_flush_and_replay - Function to flush all FD filters and replay SB
5342 * @pf: board private structure
5343 **/
5344static void i40e_fdir_flush_and_replay(struct i40e_pf *pf)
5345{
5346 int flush_wait_retry = 50;
5347 int reg;
5348
Akeem G Abodunrin1790ed02014-10-17 03:14:41 +00005349 if (!(pf->flags & (I40E_FLAG_FD_SB_ENABLED | I40E_FLAG_FD_ATR_ENABLED)))
5350 return;
5351
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005352 if (time_after(jiffies, pf->fd_flush_timestamp +
5353 (I40E_MIN_FD_FLUSH_INTERVAL * HZ))) {
5354 set_bit(__I40E_FD_FLUSH_REQUESTED, &pf->state);
5355 pf->fd_flush_timestamp = jiffies;
5356 pf->auto_disable_flags |= I40E_FLAG_FD_SB_ENABLED;
5357 pf->flags &= ~I40E_FLAG_FD_ATR_ENABLED;
5358 /* flush all filters */
5359 wr32(&pf->hw, I40E_PFQF_CTL_1,
5360 I40E_PFQF_CTL_1_CLEARFDTABLE_MASK);
5361 i40e_flush(&pf->hw);
Anjali Singhai Jain60793f42014-07-09 07:46:23 +00005362 pf->fd_flush_cnt++;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005363 pf->fd_add_err = 0;
5364 do {
5365 /* Check FD flush status every 5-6msec */
5366 usleep_range(5000, 6000);
5367 reg = rd32(&pf->hw, I40E_PFQF_CTL_1);
5368 if (!(reg & I40E_PFQF_CTL_1_CLEARFDTABLE_MASK))
5369 break;
5370 } while (flush_wait_retry--);
5371 if (reg & I40E_PFQF_CTL_1_CLEARFDTABLE_MASK) {
5372 dev_warn(&pf->pdev->dev, "FD table did not flush, needs more time\n");
5373 } else {
5374 /* replay sideband filters */
5375 i40e_fdir_filter_restore(pf->vsi[pf->lan_vsi]);
5376
5377 pf->flags |= I40E_FLAG_FD_ATR_ENABLED;
5378 pf->auto_disable_flags &= ~I40E_FLAG_FD_ATR_ENABLED;
5379 pf->auto_disable_flags &= ~I40E_FLAG_FD_SB_ENABLED;
5380 clear_bit(__I40E_FD_FLUSH_REQUESTED, &pf->state);
5381 dev_info(&pf->pdev->dev, "FD Filter table flushed and FD-SB replayed.\n");
5382 }
5383 }
5384}
5385
5386/**
5387 * i40e_get_current_atr_count - Get the count of total FD ATR filters programmed
5388 * @pf: board private structure
5389 **/
5390int i40e_get_current_atr_cnt(struct i40e_pf *pf)
5391{
5392 return i40e_get_current_fd_count(pf) - pf->fdir_pf_active_filters;
5393}
5394
5395/* We can see up to 256 filter programming desc in transit if the filters are
5396 * being applied really fast; before we see the first
5397 * filter miss error on Rx queue 0. Accumulating enough error messages before
5398 * reacting will make sure we don't cause flush too often.
5399 */
5400#define I40E_MAX_FD_PROGRAM_ERROR 256
5401
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005402/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005403 * i40e_fdir_reinit_subtask - Worker thread to reinit FDIR filter table
5404 * @pf: board private structure
5405 **/
5406static void i40e_fdir_reinit_subtask(struct i40e_pf *pf)
5407{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005408
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005409 /* if interface is down do nothing */
5410 if (test_bit(__I40E_DOWN, &pf->state))
5411 return;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005412
Akeem G Abodunrin1790ed02014-10-17 03:14:41 +00005413 if (!(pf->flags & (I40E_FLAG_FD_SB_ENABLED | I40E_FLAG_FD_ATR_ENABLED)))
5414 return;
5415
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005416 if ((pf->fd_add_err >= I40E_MAX_FD_PROGRAM_ERROR) &&
5417 (i40e_get_current_atr_cnt(pf) >= pf->fd_atr_cnt) &&
5418 (i40e_get_current_atr_cnt(pf) > pf->fdir_pf_filter_count))
5419 i40e_fdir_flush_and_replay(pf);
5420
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005421 i40e_fdir_check_and_reenable(pf);
5422
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005423}
5424
5425/**
5426 * i40e_vsi_link_event - notify VSI of a link event
5427 * @vsi: vsi to be notified
5428 * @link_up: link up or down
5429 **/
5430static void i40e_vsi_link_event(struct i40e_vsi *vsi, bool link_up)
5431{
Jesse Brandeburg32b5b812014-08-12 06:33:14 +00005432 if (!vsi || test_bit(__I40E_DOWN, &vsi->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005433 return;
5434
5435 switch (vsi->type) {
5436 case I40E_VSI_MAIN:
Vasu Dev38e00432014-08-01 13:27:03 -07005437#ifdef I40E_FCOE
5438 case I40E_VSI_FCOE:
5439#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005440 if (!vsi->netdev || !vsi->netdev_registered)
5441 break;
5442
5443 if (link_up) {
5444 netif_carrier_on(vsi->netdev);
5445 netif_tx_wake_all_queues(vsi->netdev);
5446 } else {
5447 netif_carrier_off(vsi->netdev);
5448 netif_tx_stop_all_queues(vsi->netdev);
5449 }
5450 break;
5451
5452 case I40E_VSI_SRIOV:
5453 break;
5454
5455 case I40E_VSI_VMDQ2:
5456 case I40E_VSI_CTRL:
5457 case I40E_VSI_MIRROR:
5458 default:
5459 /* there is no notification for other VSIs */
5460 break;
5461 }
5462}
5463
5464/**
5465 * i40e_veb_link_event - notify elements on the veb of a link event
5466 * @veb: veb to be notified
5467 * @link_up: link up or down
5468 **/
5469static void i40e_veb_link_event(struct i40e_veb *veb, bool link_up)
5470{
5471 struct i40e_pf *pf;
5472 int i;
5473
5474 if (!veb || !veb->pf)
5475 return;
5476 pf = veb->pf;
5477
5478 /* depth first... */
5479 for (i = 0; i < I40E_MAX_VEB; i++)
5480 if (pf->veb[i] && (pf->veb[i]->uplink_seid == veb->seid))
5481 i40e_veb_link_event(pf->veb[i], link_up);
5482
5483 /* ... now the local VSIs */
Mitch Williams505682c2014-05-20 08:01:37 +00005484 for (i = 0; i < pf->num_alloc_vsi; i++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005485 if (pf->vsi[i] && (pf->vsi[i]->uplink_seid == veb->seid))
5486 i40e_vsi_link_event(pf->vsi[i], link_up);
5487}
5488
5489/**
5490 * i40e_link_event - Update netif_carrier status
5491 * @pf: board private structure
5492 **/
5493static void i40e_link_event(struct i40e_pf *pf)
5494{
5495 bool new_link, old_link;
Mitch Williams320684c2014-10-17 03:14:43 +00005496 struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005497
Jesse Brandeburg1e701e02014-09-13 07:40:42 +00005498 /* set this to force the get_link_status call to refresh state */
5499 pf->hw.phy.get_link_info = true;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005500
Jesse Brandeburg1e701e02014-09-13 07:40:42 +00005501 old_link = (pf->hw.phy.link_info_old.link_info & I40E_AQ_LINK_UP);
5502 new_link = i40e_get_link_status(&pf->hw);
5503
5504 if (new_link == old_link &&
Mitch Williams320684c2014-10-17 03:14:43 +00005505 (test_bit(__I40E_DOWN, &vsi->state) ||
5506 new_link == netif_carrier_ok(vsi->netdev)))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005507 return;
Mitch Williams320684c2014-10-17 03:14:43 +00005508
5509 if (!test_bit(__I40E_DOWN, &vsi->state))
5510 i40e_print_link_message(vsi, new_link);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005511
5512 /* Notify the base of the switch tree connected to
5513 * the link. Floating VEBs are not notified.
5514 */
5515 if (pf->lan_veb != I40E_NO_VEB && pf->veb[pf->lan_veb])
5516 i40e_veb_link_event(pf->veb[pf->lan_veb], new_link);
5517 else
Mitch Williams320684c2014-10-17 03:14:43 +00005518 i40e_vsi_link_event(vsi, new_link);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005519
5520 if (pf->vf)
5521 i40e_vc_notify_link_state(pf);
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00005522
5523 if (pf->flags & I40E_FLAG_PTP)
5524 i40e_ptp_set_increment(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005525}
5526
5527/**
5528 * i40e_check_hang_subtask - Check for hung queues and dropped interrupts
5529 * @pf: board private structure
5530 *
5531 * Set the per-queue flags to request a check for stuck queues in the irq
5532 * clean functions, then force interrupts to be sure the irq clean is called.
5533 **/
5534static void i40e_check_hang_subtask(struct i40e_pf *pf)
5535{
5536 int i, v;
5537
5538 /* If we're down or resetting, just bail */
5539 if (test_bit(__I40E_CONFIG_BUSY, &pf->state))
5540 return;
5541
5542 /* for each VSI/netdev
5543 * for each Tx queue
5544 * set the check flag
5545 * for each q_vector
5546 * force an interrupt
5547 */
Mitch Williams505682c2014-05-20 08:01:37 +00005548 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005549 struct i40e_vsi *vsi = pf->vsi[v];
5550 int armed = 0;
5551
5552 if (!pf->vsi[v] ||
5553 test_bit(__I40E_DOWN, &vsi->state) ||
5554 (vsi->netdev && !netif_carrier_ok(vsi->netdev)))
5555 continue;
5556
5557 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00005558 set_check_for_tx_hang(vsi->tx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005559 if (test_bit(__I40E_HANG_CHECK_ARMED,
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00005560 &vsi->tx_rings[i]->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005561 armed++;
5562 }
5563
5564 if (armed) {
5565 if (!(pf->flags & I40E_FLAG_MSIX_ENABLED)) {
5566 wr32(&vsi->back->hw, I40E_PFINT_DYN_CTL0,
5567 (I40E_PFINT_DYN_CTL0_INTENA_MASK |
5568 I40E_PFINT_DYN_CTL0_SWINT_TRIG_MASK));
5569 } else {
5570 u16 vec = vsi->base_vector - 1;
5571 u32 val = (I40E_PFINT_DYN_CTLN_INTENA_MASK |
5572 I40E_PFINT_DYN_CTLN_SWINT_TRIG_MASK);
5573 for (i = 0; i < vsi->num_q_vectors; i++, vec++)
5574 wr32(&vsi->back->hw,
5575 I40E_PFINT_DYN_CTLN(vec), val);
5576 }
5577 i40e_flush(&vsi->back->hw);
5578 }
5579 }
5580}
5581
5582/**
Shannon Nelson21536712014-10-25 10:35:25 +00005583 * i40e_watchdog_subtask - periodic checks not using event driven response
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005584 * @pf: board private structure
5585 **/
5586static void i40e_watchdog_subtask(struct i40e_pf *pf)
5587{
5588 int i;
5589
5590 /* if interface is down do nothing */
5591 if (test_bit(__I40E_DOWN, &pf->state) ||
5592 test_bit(__I40E_CONFIG_BUSY, &pf->state))
5593 return;
5594
Shannon Nelson21536712014-10-25 10:35:25 +00005595 /* make sure we don't do these things too often */
5596 if (time_before(jiffies, (pf->service_timer_previous +
5597 pf->service_timer_period)))
5598 return;
5599 pf->service_timer_previous = jiffies;
5600
5601 i40e_check_hang_subtask(pf);
5602 i40e_link_event(pf);
5603
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005604 /* Update the stats for active netdevs so the network stack
5605 * can look at updated numbers whenever it cares to
5606 */
Mitch Williams505682c2014-05-20 08:01:37 +00005607 for (i = 0; i < pf->num_alloc_vsi; i++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005608 if (pf->vsi[i] && pf->vsi[i]->netdev)
5609 i40e_update_stats(pf->vsi[i]);
5610
5611 /* Update the stats for the active switching components */
5612 for (i = 0; i < I40E_MAX_VEB; i++)
5613 if (pf->veb[i])
5614 i40e_update_veb_stats(pf->veb[i]);
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00005615
5616 i40e_ptp_rx_hang(pf->vsi[pf->lan_vsi]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005617}
5618
5619/**
5620 * i40e_reset_subtask - Set up for resetting the device and driver
5621 * @pf: board private structure
5622 **/
5623static void i40e_reset_subtask(struct i40e_pf *pf)
5624{
5625 u32 reset_flags = 0;
5626
Anjali Singhai Jain23326182013-11-26 10:49:22 +00005627 rtnl_lock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005628 if (test_bit(__I40E_REINIT_REQUESTED, &pf->state)) {
5629 reset_flags |= (1 << __I40E_REINIT_REQUESTED);
5630 clear_bit(__I40E_REINIT_REQUESTED, &pf->state);
5631 }
5632 if (test_bit(__I40E_PF_RESET_REQUESTED, &pf->state)) {
5633 reset_flags |= (1 << __I40E_PF_RESET_REQUESTED);
5634 clear_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
5635 }
5636 if (test_bit(__I40E_CORE_RESET_REQUESTED, &pf->state)) {
5637 reset_flags |= (1 << __I40E_CORE_RESET_REQUESTED);
5638 clear_bit(__I40E_CORE_RESET_REQUESTED, &pf->state);
5639 }
5640 if (test_bit(__I40E_GLOBAL_RESET_REQUESTED, &pf->state)) {
5641 reset_flags |= (1 << __I40E_GLOBAL_RESET_REQUESTED);
5642 clear_bit(__I40E_GLOBAL_RESET_REQUESTED, &pf->state);
5643 }
Neerav Parikhb5d06f02014-06-03 23:50:17 +00005644 if (test_bit(__I40E_DOWN_REQUESTED, &pf->state)) {
5645 reset_flags |= (1 << __I40E_DOWN_REQUESTED);
5646 clear_bit(__I40E_DOWN_REQUESTED, &pf->state);
5647 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005648
5649 /* If there's a recovery already waiting, it takes
5650 * precedence before starting a new reset sequence.
5651 */
5652 if (test_bit(__I40E_RESET_INTR_RECEIVED, &pf->state)) {
5653 i40e_handle_reset_warning(pf);
Anjali Singhai Jain23326182013-11-26 10:49:22 +00005654 goto unlock;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005655 }
5656
5657 /* If we're already down or resetting, just bail */
5658 if (reset_flags &&
5659 !test_bit(__I40E_DOWN, &pf->state) &&
5660 !test_bit(__I40E_CONFIG_BUSY, &pf->state))
5661 i40e_do_reset(pf, reset_flags);
Anjali Singhai Jain23326182013-11-26 10:49:22 +00005662
5663unlock:
5664 rtnl_unlock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005665}
5666
5667/**
5668 * i40e_handle_link_event - Handle link event
5669 * @pf: board private structure
5670 * @e: event info posted on ARQ
5671 **/
5672static void i40e_handle_link_event(struct i40e_pf *pf,
5673 struct i40e_arq_event_info *e)
5674{
5675 struct i40e_hw *hw = &pf->hw;
5676 struct i40e_aqc_get_link_status *status =
5677 (struct i40e_aqc_get_link_status *)&e->desc.params.raw;
5678 struct i40e_link_status *hw_link_info = &hw->phy.link_info;
5679
5680 /* save off old link status information */
5681 memcpy(&pf->hw.phy.link_info_old, hw_link_info,
5682 sizeof(pf->hw.phy.link_info_old));
5683
Jesse Brandeburg1e701e02014-09-13 07:40:42 +00005684 /* Do a new status request to re-enable LSE reporting
5685 * and load new status information into the hw struct
5686 * This completely ignores any state information
5687 * in the ARQ event info, instead choosing to always
5688 * issue the AQ update link status command.
5689 */
5690 i40e_link_event(pf);
5691
Carolyn Wyborny7b592f62014-07-10 07:58:19 +00005692 /* check for unqualified module, if link is down */
5693 if ((status->link_info & I40E_AQ_MEDIA_AVAILABLE) &&
5694 (!(status->an_info & I40E_AQ_QUALIFIED_MODULE)) &&
5695 (!(status->link_info & I40E_AQ_LINK_UP)))
5696 dev_err(&pf->pdev->dev,
5697 "The driver failed to link because an unqualified module was detected.\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005698}
5699
5700/**
5701 * i40e_clean_adminq_subtask - Clean the AdminQ rings
5702 * @pf: board private structure
5703 **/
5704static void i40e_clean_adminq_subtask(struct i40e_pf *pf)
5705{
5706 struct i40e_arq_event_info event;
5707 struct i40e_hw *hw = &pf->hw;
5708 u16 pending, i = 0;
5709 i40e_status ret;
5710 u16 opcode;
Shannon Nelson86df2422014-05-20 08:01:35 +00005711 u32 oldval;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005712 u32 val;
5713
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00005714 /* Do not run clean AQ when PF reset fails */
5715 if (test_bit(__I40E_RESET_FAILED, &pf->state))
5716 return;
5717
Shannon Nelson86df2422014-05-20 08:01:35 +00005718 /* check for error indications */
5719 val = rd32(&pf->hw, pf->hw.aq.arq.len);
5720 oldval = val;
5721 if (val & I40E_PF_ARQLEN_ARQVFE_MASK) {
5722 dev_info(&pf->pdev->dev, "ARQ VF Error detected\n");
5723 val &= ~I40E_PF_ARQLEN_ARQVFE_MASK;
5724 }
5725 if (val & I40E_PF_ARQLEN_ARQOVFL_MASK) {
5726 dev_info(&pf->pdev->dev, "ARQ Overflow Error detected\n");
5727 val &= ~I40E_PF_ARQLEN_ARQOVFL_MASK;
5728 }
5729 if (val & I40E_PF_ARQLEN_ARQCRIT_MASK) {
5730 dev_info(&pf->pdev->dev, "ARQ Critical Error detected\n");
5731 val &= ~I40E_PF_ARQLEN_ARQCRIT_MASK;
5732 }
5733 if (oldval != val)
5734 wr32(&pf->hw, pf->hw.aq.arq.len, val);
5735
5736 val = rd32(&pf->hw, pf->hw.aq.asq.len);
5737 oldval = val;
5738 if (val & I40E_PF_ATQLEN_ATQVFE_MASK) {
5739 dev_info(&pf->pdev->dev, "ASQ VF Error detected\n");
5740 val &= ~I40E_PF_ATQLEN_ATQVFE_MASK;
5741 }
5742 if (val & I40E_PF_ATQLEN_ATQOVFL_MASK) {
5743 dev_info(&pf->pdev->dev, "ASQ Overflow Error detected\n");
5744 val &= ~I40E_PF_ATQLEN_ATQOVFL_MASK;
5745 }
5746 if (val & I40E_PF_ATQLEN_ATQCRIT_MASK) {
5747 dev_info(&pf->pdev->dev, "ASQ Critical Error detected\n");
5748 val &= ~I40E_PF_ATQLEN_ATQCRIT_MASK;
5749 }
5750 if (oldval != val)
5751 wr32(&pf->hw, pf->hw.aq.asq.len, val);
5752
Mitch Williams3197ce22013-11-28 06:39:39 +00005753 event.msg_size = I40E_MAX_AQ_BUF_SIZE;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005754 event.msg_buf = kzalloc(event.msg_size, GFP_KERNEL);
5755 if (!event.msg_buf)
5756 return;
5757
5758 do {
Mitch Williams2f019122013-11-28 06:39:33 +00005759 event.msg_size = I40E_MAX_AQ_BUF_SIZE; /* reinit each time */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005760 ret = i40e_clean_arq_element(hw, &event, &pending);
Mitch Williams56497972014-06-04 08:45:18 +00005761 if (ret == I40E_ERR_ADMIN_QUEUE_NO_WORK)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005762 break;
Mitch Williams56497972014-06-04 08:45:18 +00005763 else if (ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005764 dev_info(&pf->pdev->dev, "ARQ event error %d\n", ret);
5765 break;
5766 }
5767
5768 opcode = le16_to_cpu(event.desc.opcode);
5769 switch (opcode) {
5770
5771 case i40e_aqc_opc_get_link_status:
5772 i40e_handle_link_event(pf, &event);
5773 break;
5774 case i40e_aqc_opc_send_msg_to_pf:
5775 ret = i40e_vc_process_vf_msg(pf,
5776 le16_to_cpu(event.desc.retval),
5777 le32_to_cpu(event.desc.cookie_high),
5778 le32_to_cpu(event.desc.cookie_low),
5779 event.msg_buf,
5780 event.msg_size);
5781 break;
5782 case i40e_aqc_opc_lldp_update_mib:
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005783 dev_dbg(&pf->pdev->dev, "ARQ: Update LLDP MIB event received\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005784#ifdef CONFIG_I40E_DCB
5785 rtnl_lock();
5786 ret = i40e_handle_lldp_event(pf, &event);
5787 rtnl_unlock();
5788#endif /* CONFIG_I40E_DCB */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005789 break;
5790 case i40e_aqc_opc_event_lan_overflow:
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005791 dev_dbg(&pf->pdev->dev, "ARQ LAN queue overflow event received\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005792 i40e_handle_lan_overflow_event(pf, &event);
5793 break;
Shannon Nelson0467bc92013-12-18 13:45:58 +00005794 case i40e_aqc_opc_send_msg_to_peer:
5795 dev_info(&pf->pdev->dev, "ARQ: Msg from other pf\n");
5796 break;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005797 default:
5798 dev_info(&pf->pdev->dev,
Shannon Nelson0467bc92013-12-18 13:45:58 +00005799 "ARQ Error: Unknown event 0x%04x received\n",
5800 opcode);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005801 break;
5802 }
5803 } while (pending && (i++ < pf->adminq_work_limit));
5804
5805 clear_bit(__I40E_ADMINQ_EVENT_PENDING, &pf->state);
5806 /* re-enable Admin queue interrupt cause */
5807 val = rd32(hw, I40E_PFINT_ICR0_ENA);
5808 val |= I40E_PFINT_ICR0_ENA_ADMINQ_MASK;
5809 wr32(hw, I40E_PFINT_ICR0_ENA, val);
5810 i40e_flush(hw);
5811
5812 kfree(event.msg_buf);
5813}
5814
5815/**
Shannon Nelson4eb3f762014-03-06 08:59:58 +00005816 * i40e_verify_eeprom - make sure eeprom is good to use
5817 * @pf: board private structure
5818 **/
5819static void i40e_verify_eeprom(struct i40e_pf *pf)
5820{
5821 int err;
5822
5823 err = i40e_diag_eeprom_test(&pf->hw);
5824 if (err) {
5825 /* retry in case of garbage read */
5826 err = i40e_diag_eeprom_test(&pf->hw);
5827 if (err) {
5828 dev_info(&pf->pdev->dev, "eeprom check failed (%d), Tx/Rx traffic disabled\n",
5829 err);
5830 set_bit(__I40E_BAD_EEPROM, &pf->state);
5831 }
5832 }
5833
5834 if (!err && test_bit(__I40E_BAD_EEPROM, &pf->state)) {
5835 dev_info(&pf->pdev->dev, "eeprom check passed, Tx/Rx traffic enabled\n");
5836 clear_bit(__I40E_BAD_EEPROM, &pf->state);
5837 }
5838}
5839
5840/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005841 * i40e_reconstitute_veb - rebuild the VEB and anything connected to it
5842 * @veb: pointer to the VEB instance
5843 *
5844 * This is a recursive function that first builds the attached VSIs then
5845 * recurses in to build the next layer of VEB. We track the connections
5846 * through our own index numbers because the seid's from the HW could
5847 * change across the reset.
5848 **/
5849static int i40e_reconstitute_veb(struct i40e_veb *veb)
5850{
5851 struct i40e_vsi *ctl_vsi = NULL;
5852 struct i40e_pf *pf = veb->pf;
5853 int v, veb_idx;
5854 int ret;
5855
5856 /* build VSI that owns this VEB, temporarily attached to base VEB */
Mitch Williams505682c2014-05-20 08:01:37 +00005857 for (v = 0; v < pf->num_alloc_vsi && !ctl_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005858 if (pf->vsi[v] &&
5859 pf->vsi[v]->veb_idx == veb->idx &&
5860 pf->vsi[v]->flags & I40E_VSI_FLAG_VEB_OWNER) {
5861 ctl_vsi = pf->vsi[v];
5862 break;
5863 }
5864 }
5865 if (!ctl_vsi) {
5866 dev_info(&pf->pdev->dev,
5867 "missing owner VSI for veb_idx %d\n", veb->idx);
5868 ret = -ENOENT;
5869 goto end_reconstitute;
5870 }
5871 if (ctl_vsi != pf->vsi[pf->lan_vsi])
5872 ctl_vsi->uplink_seid = pf->vsi[pf->lan_vsi]->uplink_seid;
5873 ret = i40e_add_vsi(ctl_vsi);
5874 if (ret) {
5875 dev_info(&pf->pdev->dev,
5876 "rebuild of owner VSI failed: %d\n", ret);
5877 goto end_reconstitute;
5878 }
5879 i40e_vsi_reset_stats(ctl_vsi);
5880
5881 /* create the VEB in the switch and move the VSI onto the VEB */
5882 ret = i40e_add_veb(veb, ctl_vsi);
5883 if (ret)
5884 goto end_reconstitute;
5885
5886 /* create the remaining VSIs attached to this VEB */
Mitch Williams505682c2014-05-20 08:01:37 +00005887 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005888 if (!pf->vsi[v] || pf->vsi[v] == ctl_vsi)
5889 continue;
5890
5891 if (pf->vsi[v]->veb_idx == veb->idx) {
5892 struct i40e_vsi *vsi = pf->vsi[v];
5893 vsi->uplink_seid = veb->seid;
5894 ret = i40e_add_vsi(vsi);
5895 if (ret) {
5896 dev_info(&pf->pdev->dev,
5897 "rebuild of vsi_idx %d failed: %d\n",
5898 v, ret);
5899 goto end_reconstitute;
5900 }
5901 i40e_vsi_reset_stats(vsi);
5902 }
5903 }
5904
5905 /* create any VEBs attached to this VEB - RECURSION */
5906 for (veb_idx = 0; veb_idx < I40E_MAX_VEB; veb_idx++) {
5907 if (pf->veb[veb_idx] && pf->veb[veb_idx]->veb_idx == veb->idx) {
5908 pf->veb[veb_idx]->uplink_seid = veb->seid;
5909 ret = i40e_reconstitute_veb(pf->veb[veb_idx]);
5910 if (ret)
5911 break;
5912 }
5913 }
5914
5915end_reconstitute:
5916 return ret;
5917}
5918
5919/**
5920 * i40e_get_capabilities - get info about the HW
5921 * @pf: the PF struct
5922 **/
5923static int i40e_get_capabilities(struct i40e_pf *pf)
5924{
5925 struct i40e_aqc_list_capabilities_element_resp *cap_buf;
5926 u16 data_size;
5927 int buf_len;
5928 int err;
5929
5930 buf_len = 40 * sizeof(struct i40e_aqc_list_capabilities_element_resp);
5931 do {
5932 cap_buf = kzalloc(buf_len, GFP_KERNEL);
5933 if (!cap_buf)
5934 return -ENOMEM;
5935
5936 /* this loads the data into the hw struct for us */
5937 err = i40e_aq_discover_capabilities(&pf->hw, cap_buf, buf_len,
5938 &data_size,
5939 i40e_aqc_opc_list_func_capabilities,
5940 NULL);
5941 /* data loaded, buffer no longer needed */
5942 kfree(cap_buf);
5943
5944 if (pf->hw.aq.asq_last_status == I40E_AQ_RC_ENOMEM) {
5945 /* retry with a larger buffer */
5946 buf_len = data_size;
5947 } else if (pf->hw.aq.asq_last_status != I40E_AQ_RC_OK) {
5948 dev_info(&pf->pdev->dev,
5949 "capability discovery failed: aq=%d\n",
5950 pf->hw.aq.asq_last_status);
5951 return -ENODEV;
5952 }
5953 } while (err);
5954
Anjali Singhai Jainac71b7b2014-02-06 05:51:08 +00005955 if (((pf->hw.aq.fw_maj_ver == 2) && (pf->hw.aq.fw_min_ver < 22)) ||
5956 (pf->hw.aq.fw_maj_ver < 2)) {
5957 pf->hw.func_caps.num_msix_vectors++;
5958 pf->hw.func_caps.num_msix_vectors_vf++;
5959 }
5960
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005961 if (pf->hw.debug_mask & I40E_DEBUG_USER)
5962 dev_info(&pf->pdev->dev,
5963 "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",
5964 pf->hw.pf_id, pf->hw.func_caps.num_vfs,
5965 pf->hw.func_caps.num_msix_vectors,
5966 pf->hw.func_caps.num_msix_vectors_vf,
5967 pf->hw.func_caps.fd_filters_guaranteed,
5968 pf->hw.func_caps.fd_filters_best_effort,
5969 pf->hw.func_caps.num_tx_qp,
5970 pf->hw.func_caps.num_vsis);
5971
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00005972#define DEF_NUM_VSI (1 + (pf->hw.func_caps.fcoe ? 1 : 0) \
5973 + pf->hw.func_caps.num_vfs)
5974 if (pf->hw.revision_id == 0 && (DEF_NUM_VSI > pf->hw.func_caps.num_vsis)) {
5975 dev_info(&pf->pdev->dev,
5976 "got num_vsis %d, setting num_vsis to %d\n",
5977 pf->hw.func_caps.num_vsis, DEF_NUM_VSI);
5978 pf->hw.func_caps.num_vsis = DEF_NUM_VSI;
5979 }
5980
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005981 return 0;
5982}
5983
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08005984static int i40e_vsi_clear(struct i40e_vsi *vsi);
5985
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005986/**
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08005987 * i40e_fdir_sb_setup - initialize the Flow Director resources for Sideband
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005988 * @pf: board private structure
5989 **/
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08005990static void i40e_fdir_sb_setup(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005991{
5992 struct i40e_vsi *vsi;
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00005993 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005994
Jesse Brandeburg407e0632014-06-03 23:50:12 +00005995 /* quick workaround for an NVM issue that leaves a critical register
5996 * uninitialized
5997 */
5998 if (!rd32(&pf->hw, I40E_GLQF_HKEY(0))) {
5999 static const u32 hkey[] = {
6000 0xe640d33f, 0xcdfe98ab, 0x73fa7161, 0x0d7a7d36,
6001 0xeacb7d61, 0xaa4f05b6, 0x9c5c89ed, 0xfc425ddb,
6002 0xa4654832, 0xfc7461d4, 0x8f827619, 0xf5c63c21,
6003 0x95b3a76d};
6004
6005 for (i = 0; i <= I40E_GLQF_HKEY_MAX_INDEX; i++)
6006 wr32(&pf->hw, I40E_GLQF_HKEY(i), hkey[i]);
6007 }
6008
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006009 if (!(pf->flags & I40E_FLAG_FD_SB_ENABLED))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006010 return;
6011
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006012 /* find existing VSI and see if it needs configuring */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006013 vsi = NULL;
Mitch Williams505682c2014-05-20 08:01:37 +00006014 for (i = 0; i < pf->num_alloc_vsi; i++) {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006015 if (pf->vsi[i] && pf->vsi[i]->type == I40E_VSI_FDIR) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006016 vsi = pf->vsi[i];
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006017 break;
6018 }
6019 }
6020
6021 /* create a new VSI if none exists */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006022 if (!vsi) {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006023 vsi = i40e_vsi_setup(pf, I40E_VSI_FDIR,
6024 pf->vsi[pf->lan_vsi]->seid, 0);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006025 if (!vsi) {
6026 dev_info(&pf->pdev->dev, "Couldn't create FDir VSI\n");
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00006027 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
6028 return;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006029 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006030 }
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00006031
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006032 i40e_vsi_setup_irqhandler(vsi, i40e_fdir_clean_ring);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006033}
6034
6035/**
6036 * i40e_fdir_teardown - release the Flow Director resources
6037 * @pf: board private structure
6038 **/
6039static void i40e_fdir_teardown(struct i40e_pf *pf)
6040{
6041 int i;
6042
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00006043 i40e_fdir_filter_exit(pf);
Mitch Williams505682c2014-05-20 08:01:37 +00006044 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006045 if (pf->vsi[i] && pf->vsi[i]->type == I40E_VSI_FDIR) {
6046 i40e_vsi_release(pf->vsi[i]);
6047 break;
6048 }
6049 }
6050}
6051
6052/**
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006053 * i40e_prep_for_reset - prep for the core to reset
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006054 * @pf: board private structure
6055 *
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006056 * Close up the VFs and other things in prep for pf Reset.
6057 **/
Shannon Nelson23cfbe02014-06-04 01:23:14 +00006058static void i40e_prep_for_reset(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006059{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006060 struct i40e_hw *hw = &pf->hw;
Shannon Nelson60442de2014-04-23 04:50:13 +00006061 i40e_status ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006062 u32 v;
6063
6064 clear_bit(__I40E_RESET_INTR_RECEIVED, &pf->state);
6065 if (test_and_set_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state))
Shannon Nelson23cfbe02014-06-04 01:23:14 +00006066 return;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006067
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00006068 dev_dbg(&pf->pdev->dev, "Tearing down internal switch for reset\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006069
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006070 /* quiesce the VSIs and their queues that are not already DOWN */
6071 i40e_pf_quiesce_all_vsi(pf);
6072
Mitch Williams505682c2014-05-20 08:01:37 +00006073 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006074 if (pf->vsi[v])
6075 pf->vsi[v]->seid = 0;
6076 }
6077
6078 i40e_shutdown_adminq(&pf->hw);
6079
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006080 /* call shutdown HMC */
Shannon Nelson60442de2014-04-23 04:50:13 +00006081 if (hw->hmc.hmc_obj) {
6082 ret = i40e_shutdown_lan_hmc(hw);
Shannon Nelson23cfbe02014-06-04 01:23:14 +00006083 if (ret)
Shannon Nelson60442de2014-04-23 04:50:13 +00006084 dev_warn(&pf->pdev->dev,
6085 "shutdown_lan_hmc failed: %d\n", ret);
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006086 }
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006087}
6088
6089/**
Jesse Brandeburg44033fa2014-04-23 04:50:15 +00006090 * i40e_send_version - update firmware with driver version
6091 * @pf: PF struct
6092 */
6093static void i40e_send_version(struct i40e_pf *pf)
6094{
6095 struct i40e_driver_version dv;
6096
6097 dv.major_version = DRV_VERSION_MAJOR;
6098 dv.minor_version = DRV_VERSION_MINOR;
6099 dv.build_version = DRV_VERSION_BUILD;
6100 dv.subbuild_version = 0;
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00006101 strlcpy(dv.driver_string, DRV_VERSION, sizeof(dv.driver_string));
Jesse Brandeburg44033fa2014-04-23 04:50:15 +00006102 i40e_aq_send_driver_version(&pf->hw, &dv, NULL);
6103}
6104
6105/**
Jesse Brandeburg4dda12e2013-12-18 13:46:01 +00006106 * i40e_reset_and_rebuild - reset and rebuild using a saved config
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006107 * @pf: board private structure
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006108 * @reinit: if the Main VSI needs to re-initialized.
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006109 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006110static void i40e_reset_and_rebuild(struct i40e_pf *pf, bool reinit)
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006111{
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006112 struct i40e_hw *hw = &pf->hw;
Anjali Singhai Jaincafa2ee2014-09-13 07:40:45 +00006113 u8 set_fc_aq_fail = 0;
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006114 i40e_status ret;
6115 u32 v;
6116
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006117 /* Now we wait for GRST to settle out.
6118 * We don't have to delete the VEBs or VSIs from the hw switch
6119 * because the reset will make them disappear.
6120 */
6121 ret = i40e_pf_reset(hw);
Akeem G Abodunrinb5565402014-04-09 05:59:04 +00006122 if (ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006123 dev_info(&pf->pdev->dev, "PF reset failed, %d\n", ret);
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00006124 set_bit(__I40E_RESET_FAILED, &pf->state);
6125 goto clear_recovery;
Akeem G Abodunrinb5565402014-04-09 05:59:04 +00006126 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006127 pf->pfr_count++;
6128
6129 if (test_bit(__I40E_DOWN, &pf->state))
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00006130 goto clear_recovery;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00006131 dev_dbg(&pf->pdev->dev, "Rebuilding internal switch\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006132
6133 /* rebuild the basics for the AdminQ, HMC, and initial HW switch */
6134 ret = i40e_init_adminq(&pf->hw);
6135 if (ret) {
6136 dev_info(&pf->pdev->dev, "Rebuild AdminQ failed, %d\n", ret);
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00006137 goto clear_recovery;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006138 }
6139
Shannon Nelson4eb3f762014-03-06 08:59:58 +00006140 /* re-verify the eeprom if we just had an EMP reset */
6141 if (test_bit(__I40E_EMP_RESET_REQUESTED, &pf->state)) {
6142 clear_bit(__I40E_EMP_RESET_REQUESTED, &pf->state);
6143 i40e_verify_eeprom(pf);
6144 }
6145
Shannon Nelsone78ac4bf2014-05-10 04:49:09 +00006146 i40e_clear_pxe_mode(hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006147 ret = i40e_get_capabilities(pf);
6148 if (ret) {
6149 dev_info(&pf->pdev->dev, "i40e_get_capabilities failed, %d\n",
6150 ret);
6151 goto end_core_reset;
6152 }
6153
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006154 ret = i40e_init_lan_hmc(hw, hw->func_caps.num_tx_qp,
6155 hw->func_caps.num_rx_qp,
6156 pf->fcoe_hmc_cntx_num, pf->fcoe_hmc_filt_num);
6157 if (ret) {
6158 dev_info(&pf->pdev->dev, "init_lan_hmc failed: %d\n", ret);
6159 goto end_core_reset;
6160 }
6161 ret = i40e_configure_lan_hmc(hw, I40E_HMC_MODEL_DIRECT_ONLY);
6162 if (ret) {
6163 dev_info(&pf->pdev->dev, "configure_lan_hmc failed: %d\n", ret);
6164 goto end_core_reset;
6165 }
6166
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08006167#ifdef CONFIG_I40E_DCB
6168 ret = i40e_init_pf_dcb(pf);
6169 if (ret) {
6170 dev_info(&pf->pdev->dev, "init_pf_dcb failed: %d\n", ret);
6171 goto end_core_reset;
6172 }
6173#endif /* CONFIG_I40E_DCB */
Vasu Dev38e00432014-08-01 13:27:03 -07006174#ifdef I40E_FCOE
6175 ret = i40e_init_pf_fcoe(pf);
6176 if (ret)
6177 dev_info(&pf->pdev->dev, "init_pf_fcoe failed: %d\n", ret);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08006178
Vasu Dev38e00432014-08-01 13:27:03 -07006179#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006180 /* do basic switch setup */
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006181 ret = i40e_setup_pf_switch(pf, reinit);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006182 if (ret)
6183 goto end_core_reset;
6184
Jesse Brandeburg7e2453f2014-09-13 07:40:41 +00006185 /* driver is only interested in link up/down and module qualification
6186 * reports from firmware
6187 */
6188 ret = i40e_aq_set_phy_int_mask(&pf->hw,
6189 I40E_AQ_EVENT_LINK_UPDOWN |
6190 I40E_AQ_EVENT_MODULE_QUAL_FAIL, NULL);
6191 if (ret)
6192 dev_info(&pf->pdev->dev, "set phy mask fail, aq_err %d\n", ret);
6193
Anjali Singhai Jaincafa2ee2014-09-13 07:40:45 +00006194 /* make sure our flow control settings are restored */
6195 ret = i40e_set_fc(&pf->hw, &set_fc_aq_fail, true);
6196 if (ret)
6197 dev_info(&pf->pdev->dev, "set fc fail, aq_err %d\n", ret);
6198
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006199 /* Rebuild the VSIs and VEBs that existed before reset.
6200 * They are still in our local switch element arrays, so only
6201 * need to rebuild the switch model in the HW.
6202 *
6203 * If there were VEBs but the reconstitution failed, we'll try
6204 * try to recover minimal use by getting the basic PF VSI working.
6205 */
6206 if (pf->vsi[pf->lan_vsi]->uplink_seid != pf->mac_seid) {
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00006207 dev_dbg(&pf->pdev->dev, "attempting to rebuild switch\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006208 /* find the one VEB connected to the MAC, and find orphans */
6209 for (v = 0; v < I40E_MAX_VEB; v++) {
6210 if (!pf->veb[v])
6211 continue;
6212
6213 if (pf->veb[v]->uplink_seid == pf->mac_seid ||
6214 pf->veb[v]->uplink_seid == 0) {
6215 ret = i40e_reconstitute_veb(pf->veb[v]);
6216
6217 if (!ret)
6218 continue;
6219
6220 /* If Main VEB failed, we're in deep doodoo,
6221 * so give up rebuilding the switch and set up
6222 * for minimal rebuild of PF VSI.
6223 * If orphan failed, we'll report the error
6224 * but try to keep going.
6225 */
6226 if (pf->veb[v]->uplink_seid == pf->mac_seid) {
6227 dev_info(&pf->pdev->dev,
6228 "rebuild of switch failed: %d, will try to set up simple PF connection\n",
6229 ret);
6230 pf->vsi[pf->lan_vsi]->uplink_seid
6231 = pf->mac_seid;
6232 break;
6233 } else if (pf->veb[v]->uplink_seid == 0) {
6234 dev_info(&pf->pdev->dev,
6235 "rebuild of orphan VEB failed: %d\n",
6236 ret);
6237 }
6238 }
6239 }
6240 }
6241
6242 if (pf->vsi[pf->lan_vsi]->uplink_seid == pf->mac_seid) {
Shannon Nelsoncde4cbc2014-06-04 01:23:17 +00006243 dev_dbg(&pf->pdev->dev, "attempting to rebuild PF VSI\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006244 /* no VEB, so rebuild only the Main VSI */
6245 ret = i40e_add_vsi(pf->vsi[pf->lan_vsi]);
6246 if (ret) {
6247 dev_info(&pf->pdev->dev,
6248 "rebuild of Main VSI failed: %d\n", ret);
6249 goto end_core_reset;
6250 }
6251 }
6252
Anjali Singhai Jaincafa2ee2014-09-13 07:40:45 +00006253 msleep(75);
6254 ret = i40e_aq_set_link_restart_an(&pf->hw, true, NULL);
6255 if (ret) {
6256 dev_info(&pf->pdev->dev, "link restart failed, aq_err=%d\n",
6257 pf->hw.aq.asq_last_status);
6258 }
6259
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006260 /* reinit the misc interrupt */
6261 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
6262 ret = i40e_setup_misc_vector(pf);
6263
6264 /* restart the VSIs that were rebuilt and running before the reset */
6265 i40e_pf_unquiesce_all_vsi(pf);
6266
Mitch Williams69f64b22014-02-13 03:48:46 -08006267 if (pf->num_alloc_vfs) {
6268 for (v = 0; v < pf->num_alloc_vfs; v++)
6269 i40e_reset_vf(&pf->vf[v], true);
6270 }
6271
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006272 /* tell the firmware that we're starting */
Jesse Brandeburg44033fa2014-04-23 04:50:15 +00006273 i40e_send_version(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006274
6275end_core_reset:
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00006276 clear_bit(__I40E_RESET_FAILED, &pf->state);
6277clear_recovery:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006278 clear_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state);
6279}
6280
6281/**
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006282 * i40e_handle_reset_warning - prep for the pf to reset, reset and rebuild
6283 * @pf: board private structure
6284 *
6285 * Close up the VFs and other things in prep for a Core Reset,
6286 * then get ready to rebuild the world.
6287 **/
6288static void i40e_handle_reset_warning(struct i40e_pf *pf)
6289{
Shannon Nelson23cfbe02014-06-04 01:23:14 +00006290 i40e_prep_for_reset(pf);
6291 i40e_reset_and_rebuild(pf, false);
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006292}
6293
6294/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006295 * i40e_handle_mdd_event
6296 * @pf: pointer to the pf structure
6297 *
6298 * Called from the MDD irq handler to identify possibly malicious vfs
6299 **/
6300static void i40e_handle_mdd_event(struct i40e_pf *pf)
6301{
6302 struct i40e_hw *hw = &pf->hw;
6303 bool mdd_detected = false;
Neerav Parikhdf430b12014-06-04 01:23:15 +00006304 bool pf_mdd_detected = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006305 struct i40e_vf *vf;
6306 u32 reg;
6307 int i;
6308
6309 if (!test_bit(__I40E_MDD_EVENT_PENDING, &pf->state))
6310 return;
6311
6312 /* find what triggered the MDD event */
6313 reg = rd32(hw, I40E_GL_MDET_TX);
6314 if (reg & I40E_GL_MDET_TX_VALID_MASK) {
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00006315 u8 pf_num = (reg & I40E_GL_MDET_TX_PF_NUM_MASK) >>
6316 I40E_GL_MDET_TX_PF_NUM_SHIFT;
Mitch Williams2089ad02014-10-17 03:14:53 +00006317 u16 vf_num = (reg & I40E_GL_MDET_TX_VF_NUM_MASK) >>
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00006318 I40E_GL_MDET_TX_VF_NUM_SHIFT;
Dan Carpenter013f6572014-10-22 20:06:29 -07006319 u8 event = (reg & I40E_GL_MDET_TX_EVENT_MASK) >>
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00006320 I40E_GL_MDET_TX_EVENT_SHIFT;
Mitch Williams2089ad02014-10-17 03:14:53 +00006321 u16 queue = ((reg & I40E_GL_MDET_TX_QUEUE_MASK) >>
6322 I40E_GL_MDET_TX_QUEUE_SHIFT) -
6323 pf->hw.func_caps.base_queue;
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00006324 if (netif_msg_tx_err(pf))
6325 dev_info(&pf->pdev->dev, "Malicious Driver Detection event 0x%02x on TX queue %d pf number 0x%02x vf number 0x%02x\n",
6326 event, queue, pf_num, vf_num);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006327 wr32(hw, I40E_GL_MDET_TX, 0xffffffff);
6328 mdd_detected = true;
6329 }
6330 reg = rd32(hw, I40E_GL_MDET_RX);
6331 if (reg & I40E_GL_MDET_RX_VALID_MASK) {
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00006332 u8 func = (reg & I40E_GL_MDET_RX_FUNCTION_MASK) >>
6333 I40E_GL_MDET_RX_FUNCTION_SHIFT;
Dan Carpenter013f6572014-10-22 20:06:29 -07006334 u8 event = (reg & I40E_GL_MDET_RX_EVENT_MASK) >>
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00006335 I40E_GL_MDET_RX_EVENT_SHIFT;
Mitch Williams2089ad02014-10-17 03:14:53 +00006336 u16 queue = ((reg & I40E_GL_MDET_RX_QUEUE_MASK) >>
6337 I40E_GL_MDET_RX_QUEUE_SHIFT) -
6338 pf->hw.func_caps.base_queue;
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00006339 if (netif_msg_rx_err(pf))
6340 dev_info(&pf->pdev->dev, "Malicious Driver Detection event 0x%02x on RX queue %d of function 0x%02x\n",
6341 event, queue, func);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006342 wr32(hw, I40E_GL_MDET_RX, 0xffffffff);
6343 mdd_detected = true;
6344 }
6345
Neerav Parikhdf430b12014-06-04 01:23:15 +00006346 if (mdd_detected) {
6347 reg = rd32(hw, I40E_PF_MDET_TX);
6348 if (reg & I40E_PF_MDET_TX_VALID_MASK) {
6349 wr32(hw, I40E_PF_MDET_TX, 0xFFFF);
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00006350 dev_info(&pf->pdev->dev, "TX driver issue detected, PF reset issued\n");
Neerav Parikhdf430b12014-06-04 01:23:15 +00006351 pf_mdd_detected = true;
6352 }
6353 reg = rd32(hw, I40E_PF_MDET_RX);
6354 if (reg & I40E_PF_MDET_RX_VALID_MASK) {
6355 wr32(hw, I40E_PF_MDET_RX, 0xFFFF);
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00006356 dev_info(&pf->pdev->dev, "RX driver issue detected, PF reset issued\n");
Neerav Parikhdf430b12014-06-04 01:23:15 +00006357 pf_mdd_detected = true;
6358 }
6359 /* Queue belongs to the PF, initiate a reset */
6360 if (pf_mdd_detected) {
6361 set_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
6362 i40e_service_event_schedule(pf);
6363 }
6364 }
6365
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006366 /* see if one of the VFs needs its hand slapped */
6367 for (i = 0; i < pf->num_alloc_vfs && mdd_detected; i++) {
6368 vf = &(pf->vf[i]);
6369 reg = rd32(hw, I40E_VP_MDET_TX(i));
6370 if (reg & I40E_VP_MDET_TX_VALID_MASK) {
6371 wr32(hw, I40E_VP_MDET_TX(i), 0xFFFF);
6372 vf->num_mdd_events++;
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00006373 dev_info(&pf->pdev->dev, "TX driver issue detected on VF %d\n",
6374 i);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006375 }
6376
6377 reg = rd32(hw, I40E_VP_MDET_RX(i));
6378 if (reg & I40E_VP_MDET_RX_VALID_MASK) {
6379 wr32(hw, I40E_VP_MDET_RX(i), 0xFFFF);
6380 vf->num_mdd_events++;
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00006381 dev_info(&pf->pdev->dev, "RX driver issue detected on VF %d\n",
6382 i);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006383 }
6384
6385 if (vf->num_mdd_events > I40E_DEFAULT_NUM_MDD_EVENTS_ALLOWED) {
6386 dev_info(&pf->pdev->dev,
6387 "Too many MDD events on VF %d, disabled\n", i);
6388 dev_info(&pf->pdev->dev,
6389 "Use PF Control I/F to re-enable the VF\n");
6390 set_bit(I40E_VF_STAT_DISABLED, &vf->vf_states);
6391 }
6392 }
6393
6394 /* re-enable mdd interrupt cause */
6395 clear_bit(__I40E_MDD_EVENT_PENDING, &pf->state);
6396 reg = rd32(hw, I40E_PFINT_ICR0_ENA);
6397 reg |= I40E_PFINT_ICR0_ENA_MAL_DETECT_MASK;
6398 wr32(hw, I40E_PFINT_ICR0_ENA, reg);
6399 i40e_flush(hw);
6400}
6401
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00006402#ifdef CONFIG_I40E_VXLAN
6403/**
6404 * i40e_sync_vxlan_filters_subtask - Sync the VSI filter list with HW
6405 * @pf: board private structure
6406 **/
6407static void i40e_sync_vxlan_filters_subtask(struct i40e_pf *pf)
6408{
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00006409 struct i40e_hw *hw = &pf->hw;
6410 i40e_status ret;
6411 u8 filter_index;
6412 __be16 port;
6413 int i;
6414
6415 if (!(pf->flags & I40E_FLAG_VXLAN_FILTER_SYNC))
6416 return;
6417
6418 pf->flags &= ~I40E_FLAG_VXLAN_FILTER_SYNC;
6419
6420 for (i = 0; i < I40E_MAX_PF_UDP_OFFLOAD_PORTS; i++) {
6421 if (pf->pending_vxlan_bitmap & (1 << i)) {
6422 pf->pending_vxlan_bitmap &= ~(1 << i);
6423 port = pf->vxlan_ports[i];
6424 ret = port ?
6425 i40e_aq_add_udp_tunnel(hw, ntohs(port),
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00006426 I40E_AQC_TUNNEL_TYPE_VXLAN,
6427 &filter_index, NULL)
6428 : i40e_aq_del_udp_tunnel(hw, i, NULL);
6429
6430 if (ret) {
6431 dev_info(&pf->pdev->dev, "Failed to execute AQ command for %s port %d with index %d\n",
6432 port ? "adding" : "deleting",
6433 ntohs(port), port ? i : i);
6434
6435 pf->vxlan_ports[i] = 0;
6436 } else {
6437 dev_info(&pf->pdev->dev, "%s port %d with AQ command with index %d\n",
6438 port ? "Added" : "Deleted",
6439 ntohs(port), port ? i : filter_index);
6440 }
6441 }
6442 }
6443}
6444
6445#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006446/**
6447 * i40e_service_task - Run the driver's async subtasks
6448 * @work: pointer to work_struct containing our data
6449 **/
6450static void i40e_service_task(struct work_struct *work)
6451{
6452 struct i40e_pf *pf = container_of(work,
6453 struct i40e_pf,
6454 service_task);
6455 unsigned long start_time = jiffies;
6456
Shannon Nelsone57a2fe2014-06-03 23:50:19 +00006457 /* don't bother with service tasks if a reset is in progress */
6458 if (test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state)) {
6459 i40e_service_event_complete(pf);
6460 return;
6461 }
6462
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006463 i40e_reset_subtask(pf);
6464 i40e_handle_mdd_event(pf);
6465 i40e_vc_process_vflr_event(pf);
6466 i40e_watchdog_subtask(pf);
6467 i40e_fdir_reinit_subtask(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006468 i40e_sync_filters_subtask(pf);
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00006469#ifdef CONFIG_I40E_VXLAN
6470 i40e_sync_vxlan_filters_subtask(pf);
6471#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006472 i40e_clean_adminq_subtask(pf);
6473
6474 i40e_service_event_complete(pf);
6475
6476 /* If the tasks have taken longer than one timer cycle or there
6477 * is more work to be done, reschedule the service task now
6478 * rather than wait for the timer to tick again.
6479 */
6480 if (time_after(jiffies, (start_time + pf->service_timer_period)) ||
6481 test_bit(__I40E_ADMINQ_EVENT_PENDING, &pf->state) ||
6482 test_bit(__I40E_MDD_EVENT_PENDING, &pf->state) ||
6483 test_bit(__I40E_VFLR_EVENT_PENDING, &pf->state))
6484 i40e_service_event_schedule(pf);
6485}
6486
6487/**
6488 * i40e_service_timer - timer callback
6489 * @data: pointer to PF struct
6490 **/
6491static void i40e_service_timer(unsigned long data)
6492{
6493 struct i40e_pf *pf = (struct i40e_pf *)data;
6494
6495 mod_timer(&pf->service_timer,
6496 round_jiffies(jiffies + pf->service_timer_period));
6497 i40e_service_event_schedule(pf);
6498}
6499
6500/**
6501 * i40e_set_num_rings_in_vsi - Determine number of rings in the VSI
6502 * @vsi: the VSI being configured
6503 **/
6504static int i40e_set_num_rings_in_vsi(struct i40e_vsi *vsi)
6505{
6506 struct i40e_pf *pf = vsi->back;
6507
6508 switch (vsi->type) {
6509 case I40E_VSI_MAIN:
6510 vsi->alloc_queue_pairs = pf->num_lan_qps;
6511 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
6512 I40E_REQ_DESCRIPTOR_MULTIPLE);
6513 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
6514 vsi->num_q_vectors = pf->num_lan_msix;
6515 else
6516 vsi->num_q_vectors = 1;
6517
6518 break;
6519
6520 case I40E_VSI_FDIR:
6521 vsi->alloc_queue_pairs = 1;
6522 vsi->num_desc = ALIGN(I40E_FDIR_RING_COUNT,
6523 I40E_REQ_DESCRIPTOR_MULTIPLE);
6524 vsi->num_q_vectors = 1;
6525 break;
6526
6527 case I40E_VSI_VMDQ2:
6528 vsi->alloc_queue_pairs = pf->num_vmdq_qps;
6529 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
6530 I40E_REQ_DESCRIPTOR_MULTIPLE);
6531 vsi->num_q_vectors = pf->num_vmdq_msix;
6532 break;
6533
6534 case I40E_VSI_SRIOV:
6535 vsi->alloc_queue_pairs = pf->num_vf_qps;
6536 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
6537 I40E_REQ_DESCRIPTOR_MULTIPLE);
6538 break;
6539
Vasu Dev38e00432014-08-01 13:27:03 -07006540#ifdef I40E_FCOE
6541 case I40E_VSI_FCOE:
6542 vsi->alloc_queue_pairs = pf->num_fcoe_qps;
6543 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
6544 I40E_REQ_DESCRIPTOR_MULTIPLE);
6545 vsi->num_q_vectors = pf->num_fcoe_msix;
6546 break;
6547
6548#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006549 default:
6550 WARN_ON(1);
6551 return -ENODATA;
6552 }
6553
6554 return 0;
6555}
6556
6557/**
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006558 * i40e_vsi_alloc_arrays - Allocate queue and vector pointer arrays for the vsi
6559 * @type: VSI pointer
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006560 * @alloc_qvectors: a bool to specify if q_vectors need to be allocated.
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006561 *
6562 * On error: returns error code (negative)
6563 * On success: returns 0
6564 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006565static int i40e_vsi_alloc_arrays(struct i40e_vsi *vsi, bool alloc_qvectors)
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006566{
6567 int size;
6568 int ret = 0;
6569
Shannon Nelsonac6c5e32013-11-20 10:02:57 +00006570 /* allocate memory for both Tx and Rx ring pointers */
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006571 size = sizeof(struct i40e_ring *) * vsi->alloc_queue_pairs * 2;
6572 vsi->tx_rings = kzalloc(size, GFP_KERNEL);
6573 if (!vsi->tx_rings)
6574 return -ENOMEM;
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006575 vsi->rx_rings = &vsi->tx_rings[vsi->alloc_queue_pairs];
6576
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006577 if (alloc_qvectors) {
6578 /* allocate memory for q_vector pointers */
Julia Lawallf57e4fb2014-07-30 03:11:09 +00006579 size = sizeof(struct i40e_q_vector *) * vsi->num_q_vectors;
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006580 vsi->q_vectors = kzalloc(size, GFP_KERNEL);
6581 if (!vsi->q_vectors) {
6582 ret = -ENOMEM;
6583 goto err_vectors;
6584 }
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006585 }
6586 return ret;
6587
6588err_vectors:
6589 kfree(vsi->tx_rings);
6590 return ret;
6591}
6592
6593/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006594 * i40e_vsi_mem_alloc - Allocates the next available struct vsi in the PF
6595 * @pf: board private structure
6596 * @type: type of VSI
6597 *
6598 * On error: returns error code (negative)
6599 * On success: returns vsi index in PF (positive)
6600 **/
6601static int i40e_vsi_mem_alloc(struct i40e_pf *pf, enum i40e_vsi_type type)
6602{
6603 int ret = -ENODEV;
6604 struct i40e_vsi *vsi;
6605 int vsi_idx;
6606 int i;
6607
6608 /* Need to protect the allocation of the VSIs at the PF level */
6609 mutex_lock(&pf->switch_mutex);
6610
6611 /* VSI list may be fragmented if VSI creation/destruction has
6612 * been happening. We can afford to do a quick scan to look
6613 * for any free VSIs in the list.
6614 *
6615 * find next empty vsi slot, looping back around if necessary
6616 */
6617 i = pf->next_vsi;
Mitch Williams505682c2014-05-20 08:01:37 +00006618 while (i < pf->num_alloc_vsi && pf->vsi[i])
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006619 i++;
Mitch Williams505682c2014-05-20 08:01:37 +00006620 if (i >= pf->num_alloc_vsi) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006621 i = 0;
6622 while (i < pf->next_vsi && pf->vsi[i])
6623 i++;
6624 }
6625
Mitch Williams505682c2014-05-20 08:01:37 +00006626 if (i < pf->num_alloc_vsi && !pf->vsi[i]) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006627 vsi_idx = i; /* Found one! */
6628 } else {
6629 ret = -ENODEV;
Alexander Duyck493fb302013-09-28 07:01:44 +00006630 goto unlock_pf; /* out of VSI slots! */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006631 }
6632 pf->next_vsi = ++i;
6633
6634 vsi = kzalloc(sizeof(*vsi), GFP_KERNEL);
6635 if (!vsi) {
6636 ret = -ENOMEM;
Alexander Duyck493fb302013-09-28 07:01:44 +00006637 goto unlock_pf;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006638 }
6639 vsi->type = type;
6640 vsi->back = pf;
6641 set_bit(__I40E_DOWN, &vsi->state);
6642 vsi->flags = 0;
6643 vsi->idx = vsi_idx;
6644 vsi->rx_itr_setting = pf->rx_itr_default;
6645 vsi->tx_itr_setting = pf->tx_itr_default;
6646 vsi->netdev_registered = false;
6647 vsi->work_limit = I40E_DEFAULT_IRQ_WORK;
6648 INIT_LIST_HEAD(&vsi->mac_filter_list);
Shannon Nelson63741842014-04-23 04:50:16 +00006649 vsi->irqs_ready = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006650
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006651 ret = i40e_set_num_rings_in_vsi(vsi);
6652 if (ret)
6653 goto err_rings;
6654
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006655 ret = i40e_vsi_alloc_arrays(vsi, true);
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006656 if (ret)
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006657 goto err_rings;
Alexander Duyck493fb302013-09-28 07:01:44 +00006658
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006659 /* Setup default MSIX irq handler for VSI */
6660 i40e_vsi_setup_irqhandler(vsi, i40e_msix_clean_rings);
6661
6662 pf->vsi[vsi_idx] = vsi;
6663 ret = vsi_idx;
Alexander Duyck493fb302013-09-28 07:01:44 +00006664 goto unlock_pf;
6665
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006666err_rings:
Alexander Duyck493fb302013-09-28 07:01:44 +00006667 pf->next_vsi = i - 1;
6668 kfree(vsi);
6669unlock_pf:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006670 mutex_unlock(&pf->switch_mutex);
6671 return ret;
6672}
6673
6674/**
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006675 * i40e_vsi_free_arrays - Free queue and vector pointer arrays for the VSI
6676 * @type: VSI pointer
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006677 * @free_qvectors: a bool to specify if q_vectors need to be freed.
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006678 *
6679 * On error: returns error code (negative)
6680 * On success: returns 0
6681 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006682static void i40e_vsi_free_arrays(struct i40e_vsi *vsi, bool free_qvectors)
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006683{
6684 /* free the ring and vector containers */
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006685 if (free_qvectors) {
6686 kfree(vsi->q_vectors);
6687 vsi->q_vectors = NULL;
6688 }
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006689 kfree(vsi->tx_rings);
6690 vsi->tx_rings = NULL;
6691 vsi->rx_rings = NULL;
6692}
6693
6694/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006695 * i40e_vsi_clear - Deallocate the VSI provided
6696 * @vsi: the VSI being un-configured
6697 **/
6698static int i40e_vsi_clear(struct i40e_vsi *vsi)
6699{
6700 struct i40e_pf *pf;
6701
6702 if (!vsi)
6703 return 0;
6704
6705 if (!vsi->back)
6706 goto free_vsi;
6707 pf = vsi->back;
6708
6709 mutex_lock(&pf->switch_mutex);
6710 if (!pf->vsi[vsi->idx]) {
6711 dev_err(&pf->pdev->dev, "pf->vsi[%d] is NULL, just free vsi[%d](%p,type %d)\n",
6712 vsi->idx, vsi->idx, vsi, vsi->type);
6713 goto unlock_vsi;
6714 }
6715
6716 if (pf->vsi[vsi->idx] != vsi) {
6717 dev_err(&pf->pdev->dev,
6718 "pf->vsi[%d](%p, type %d) != vsi[%d](%p,type %d): no free!\n",
6719 pf->vsi[vsi->idx]->idx,
6720 pf->vsi[vsi->idx],
6721 pf->vsi[vsi->idx]->type,
6722 vsi->idx, vsi, vsi->type);
6723 goto unlock_vsi;
6724 }
6725
6726 /* updates the pf for this cleared vsi */
6727 i40e_put_lump(pf->qp_pile, vsi->base_queue, vsi->idx);
6728 i40e_put_lump(pf->irq_pile, vsi->base_vector, vsi->idx);
6729
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006730 i40e_vsi_free_arrays(vsi, true);
Alexander Duyck493fb302013-09-28 07:01:44 +00006731
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006732 pf->vsi[vsi->idx] = NULL;
6733 if (vsi->idx < pf->next_vsi)
6734 pf->next_vsi = vsi->idx;
6735
6736unlock_vsi:
6737 mutex_unlock(&pf->switch_mutex);
6738free_vsi:
6739 kfree(vsi);
6740
6741 return 0;
6742}
6743
6744/**
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006745 * i40e_vsi_clear_rings - Deallocates the Rx and Tx rings for the provided VSI
6746 * @vsi: the VSI being cleaned
6747 **/
Shannon Nelsonbe1d5ee2013-11-28 06:39:23 +00006748static void i40e_vsi_clear_rings(struct i40e_vsi *vsi)
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006749{
6750 int i;
6751
Greg Rose8e9dca52013-12-18 13:45:53 +00006752 if (vsi->tx_rings && vsi->tx_rings[0]) {
Neerav Parikhd7397642013-11-28 06:39:37 +00006753 for (i = 0; i < vsi->alloc_queue_pairs; i++) {
Mitch Williams00403f02013-09-28 07:13:13 +00006754 kfree_rcu(vsi->tx_rings[i], rcu);
6755 vsi->tx_rings[i] = NULL;
6756 vsi->rx_rings[i] = NULL;
6757 }
Shannon Nelsonbe1d5ee2013-11-28 06:39:23 +00006758 }
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006759}
6760
6761/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006762 * i40e_alloc_rings - Allocates the Rx and Tx rings for the provided VSI
6763 * @vsi: the VSI being configured
6764 **/
6765static int i40e_alloc_rings(struct i40e_vsi *vsi)
6766{
Akeem G Abodunrine7046ee2014-04-09 05:58:58 +00006767 struct i40e_ring *tx_ring, *rx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006768 struct i40e_pf *pf = vsi->back;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006769 int i;
6770
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006771 /* Set basic values in the rings to be used later during open() */
Neerav Parikhd7397642013-11-28 06:39:37 +00006772 for (i = 0; i < vsi->alloc_queue_pairs; i++) {
Shannon Nelsonac6c5e32013-11-20 10:02:57 +00006773 /* allocate space for both Tx and Rx in one shot */
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006774 tx_ring = kzalloc(sizeof(struct i40e_ring) * 2, GFP_KERNEL);
6775 if (!tx_ring)
6776 goto err_out;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006777
6778 tx_ring->queue_index = i;
6779 tx_ring->reg_idx = vsi->base_queue + i;
6780 tx_ring->ring_active = false;
6781 tx_ring->vsi = vsi;
6782 tx_ring->netdev = vsi->netdev;
6783 tx_ring->dev = &pf->pdev->dev;
6784 tx_ring->count = vsi->num_desc;
6785 tx_ring->size = 0;
6786 tx_ring->dcb_tc = 0;
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006787 vsi->tx_rings[i] = tx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006788
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006789 rx_ring = &tx_ring[1];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006790 rx_ring->queue_index = i;
6791 rx_ring->reg_idx = vsi->base_queue + i;
6792 rx_ring->ring_active = false;
6793 rx_ring->vsi = vsi;
6794 rx_ring->netdev = vsi->netdev;
6795 rx_ring->dev = &pf->pdev->dev;
6796 rx_ring->count = vsi->num_desc;
6797 rx_ring->size = 0;
6798 rx_ring->dcb_tc = 0;
6799 if (pf->flags & I40E_FLAG_16BYTE_RX_DESC_ENABLED)
6800 set_ring_16byte_desc_enabled(rx_ring);
6801 else
6802 clear_ring_16byte_desc_enabled(rx_ring);
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006803 vsi->rx_rings[i] = rx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006804 }
6805
6806 return 0;
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006807
6808err_out:
6809 i40e_vsi_clear_rings(vsi);
6810 return -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006811}
6812
6813/**
6814 * i40e_reserve_msix_vectors - Reserve MSI-X vectors in the kernel
6815 * @pf: board private structure
6816 * @vectors: the number of MSI-X vectors to request
6817 *
6818 * Returns the number of vectors reserved, or error
6819 **/
6820static int i40e_reserve_msix_vectors(struct i40e_pf *pf, int vectors)
6821{
Alexander Gordeev7b37f372014-02-18 11:11:42 +01006822 vectors = pci_enable_msix_range(pf->pdev, pf->msix_entries,
6823 I40E_MIN_MSIX, vectors);
6824 if (vectors < 0) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006825 dev_info(&pf->pdev->dev,
Alexander Gordeev7b37f372014-02-18 11:11:42 +01006826 "MSI-X vector reservation failed: %d\n", vectors);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006827 vectors = 0;
6828 }
6829
6830 return vectors;
6831}
6832
6833/**
6834 * i40e_init_msix - Setup the MSIX capability
6835 * @pf: board private structure
6836 *
6837 * Work with the OS to set up the MSIX vectors needed.
6838 *
6839 * Returns 0 on success, negative on failure
6840 **/
6841static int i40e_init_msix(struct i40e_pf *pf)
6842{
6843 i40e_status err = 0;
6844 struct i40e_hw *hw = &pf->hw;
Shannon Nelsonc135b0d2014-10-17 03:14:49 +00006845 int other_vecs = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006846 int v_budget, i;
6847 int vec;
6848
6849 if (!(pf->flags & I40E_FLAG_MSIX_ENABLED))
6850 return -ENODEV;
6851
6852 /* The number of vectors we'll request will be comprised of:
6853 * - Add 1 for "other" cause for Admin Queue events, etc.
6854 * - The number of LAN queue pairs
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00006855 * - Queues being used for RSS.
6856 * We don't need as many as max_rss_size vectors.
6857 * use rss_size instead in the calculation since that
6858 * is governed by number of cpus in the system.
6859 * - assumes symmetric Tx/Rx pairing
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006860 * - The number of VMDq pairs
Vasu Dev38e00432014-08-01 13:27:03 -07006861#ifdef I40E_FCOE
6862 * - The number of FCOE qps.
6863#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006864 * Once we count this up, try the request.
6865 *
6866 * If we can't get what we want, we'll simplify to nearly nothing
6867 * and try again. If that still fails, we punt.
6868 */
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00006869 pf->num_lan_msix = pf->num_lan_qps - (pf->rss_size_max - pf->rss_size);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006870 pf->num_vmdq_msix = pf->num_vmdq_qps;
Shannon Nelsonc135b0d2014-10-17 03:14:49 +00006871 other_vecs = 1;
6872 other_vecs += (pf->num_vmdq_vsis * pf->num_vmdq_msix);
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08006873 if (pf->flags & I40E_FLAG_FD_SB_ENABLED)
Shannon Nelsonc135b0d2014-10-17 03:14:49 +00006874 other_vecs++;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006875
Vasu Dev38e00432014-08-01 13:27:03 -07006876#ifdef I40E_FCOE
6877 if (pf->flags & I40E_FLAG_FCOE_ENABLED) {
6878 pf->num_fcoe_msix = pf->num_fcoe_qps;
6879 v_budget += pf->num_fcoe_msix;
6880 }
6881
6882#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006883 /* Scale down if necessary, and the rings will share vectors */
Shannon Nelsonc135b0d2014-10-17 03:14:49 +00006884 pf->num_lan_msix = min_t(int, pf->num_lan_msix,
6885 (hw->func_caps.num_msix_vectors - other_vecs));
6886 v_budget = pf->num_lan_msix + other_vecs;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006887
6888 pf->msix_entries = kcalloc(v_budget, sizeof(struct msix_entry),
6889 GFP_KERNEL);
6890 if (!pf->msix_entries)
6891 return -ENOMEM;
6892
6893 for (i = 0; i < v_budget; i++)
6894 pf->msix_entries[i].entry = i;
6895 vec = i40e_reserve_msix_vectors(pf, v_budget);
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00006896
6897 if (vec != v_budget) {
6898 /* If we have limited resources, we will start with no vectors
6899 * for the special features and then allocate vectors to some
6900 * of these features based on the policy and at the end disable
6901 * the features that did not get any vectors.
6902 */
Vasu Dev38e00432014-08-01 13:27:03 -07006903#ifdef I40E_FCOE
6904 pf->num_fcoe_qps = 0;
6905 pf->num_fcoe_msix = 0;
6906#endif
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00006907 pf->num_vmdq_msix = 0;
6908 }
6909
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006910 if (vec < I40E_MIN_MSIX) {
6911 pf->flags &= ~I40E_FLAG_MSIX_ENABLED;
6912 kfree(pf->msix_entries);
6913 pf->msix_entries = NULL;
6914 return -ENODEV;
6915
6916 } else if (vec == I40E_MIN_MSIX) {
6917 /* Adjust for minimal MSIX use */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006918 pf->num_vmdq_vsis = 0;
6919 pf->num_vmdq_qps = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006920 pf->num_lan_qps = 1;
6921 pf->num_lan_msix = 1;
6922
6923 } else if (vec != v_budget) {
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00006924 /* reserve the misc vector */
6925 vec--;
6926
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006927 /* Scale vector usage down */
6928 pf->num_vmdq_msix = 1; /* force VMDqs to only one vector */
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00006929 pf->num_vmdq_vsis = 1;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006930
6931 /* partition out the remaining vectors */
6932 switch (vec) {
6933 case 2:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006934 pf->num_lan_msix = 1;
6935 break;
6936 case 3:
Vasu Dev38e00432014-08-01 13:27:03 -07006937#ifdef I40E_FCOE
6938 /* give one vector to FCoE */
6939 if (pf->flags & I40E_FLAG_FCOE_ENABLED) {
6940 pf->num_lan_msix = 1;
6941 pf->num_fcoe_msix = 1;
6942 }
6943#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006944 pf->num_lan_msix = 2;
Vasu Dev38e00432014-08-01 13:27:03 -07006945#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006946 break;
6947 default:
Vasu Dev38e00432014-08-01 13:27:03 -07006948#ifdef I40E_FCOE
6949 /* give one vector to FCoE */
6950 if (pf->flags & I40E_FLAG_FCOE_ENABLED) {
6951 pf->num_fcoe_msix = 1;
6952 vec--;
6953 }
6954#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006955 pf->num_lan_msix = min_t(int, (vec / 2),
6956 pf->num_lan_qps);
6957 pf->num_vmdq_vsis = min_t(int, (vec - pf->num_lan_msix),
6958 I40E_DEFAULT_NUM_VMDQ_VSI);
6959 break;
6960 }
6961 }
6962
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00006963 if ((pf->flags & I40E_FLAG_VMDQ_ENABLED) &&
6964 (pf->num_vmdq_msix == 0)) {
6965 dev_info(&pf->pdev->dev, "VMDq disabled, not enough MSI-X vectors\n");
6966 pf->flags &= ~I40E_FLAG_VMDQ_ENABLED;
6967 }
Vasu Dev38e00432014-08-01 13:27:03 -07006968#ifdef I40E_FCOE
6969
6970 if ((pf->flags & I40E_FLAG_FCOE_ENABLED) && (pf->num_fcoe_msix == 0)) {
6971 dev_info(&pf->pdev->dev, "FCOE disabled, not enough MSI-X vectors\n");
6972 pf->flags &= ~I40E_FLAG_FCOE_ENABLED;
6973 }
6974#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006975 return err;
6976}
6977
6978/**
Greg Rose90e04072014-03-06 08:59:57 +00006979 * i40e_vsi_alloc_q_vector - Allocate memory for a single interrupt vector
Alexander Duyck493fb302013-09-28 07:01:44 +00006980 * @vsi: the VSI being configured
6981 * @v_idx: index of the vector in the vsi struct
6982 *
6983 * We allocate one q_vector. If allocation fails we return -ENOMEM.
6984 **/
Greg Rose90e04072014-03-06 08:59:57 +00006985static int i40e_vsi_alloc_q_vector(struct i40e_vsi *vsi, int v_idx)
Alexander Duyck493fb302013-09-28 07:01:44 +00006986{
6987 struct i40e_q_vector *q_vector;
6988
6989 /* allocate q_vector */
6990 q_vector = kzalloc(sizeof(struct i40e_q_vector), GFP_KERNEL);
6991 if (!q_vector)
6992 return -ENOMEM;
6993
6994 q_vector->vsi = vsi;
6995 q_vector->v_idx = v_idx;
6996 cpumask_set_cpu(v_idx, &q_vector->affinity_mask);
6997 if (vsi->netdev)
6998 netif_napi_add(vsi->netdev, &q_vector->napi,
Jesse Brandeburgeefeace2014-05-10 04:49:13 +00006999 i40e_napi_poll, NAPI_POLL_WEIGHT);
Alexander Duyck493fb302013-09-28 07:01:44 +00007000
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00007001 q_vector->rx.latency_range = I40E_LOW_LATENCY;
7002 q_vector->tx.latency_range = I40E_LOW_LATENCY;
7003
Alexander Duyck493fb302013-09-28 07:01:44 +00007004 /* tie q_vector and vsi together */
7005 vsi->q_vectors[v_idx] = q_vector;
7006
7007 return 0;
7008}
7009
7010/**
Greg Rose90e04072014-03-06 08:59:57 +00007011 * i40e_vsi_alloc_q_vectors - Allocate memory for interrupt vectors
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007012 * @vsi: the VSI being configured
7013 *
7014 * We allocate one q_vector per queue interrupt. If allocation fails we
7015 * return -ENOMEM.
7016 **/
Greg Rose90e04072014-03-06 08:59:57 +00007017static int i40e_vsi_alloc_q_vectors(struct i40e_vsi *vsi)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007018{
7019 struct i40e_pf *pf = vsi->back;
7020 int v_idx, num_q_vectors;
Alexander Duyck493fb302013-09-28 07:01:44 +00007021 int err;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007022
7023 /* if not MSIX, give the one vector only to the LAN VSI */
7024 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
7025 num_q_vectors = vsi->num_q_vectors;
7026 else if (vsi == pf->vsi[pf->lan_vsi])
7027 num_q_vectors = 1;
7028 else
7029 return -EINVAL;
7030
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007031 for (v_idx = 0; v_idx < num_q_vectors; v_idx++) {
Greg Rose90e04072014-03-06 08:59:57 +00007032 err = i40e_vsi_alloc_q_vector(vsi, v_idx);
Alexander Duyck493fb302013-09-28 07:01:44 +00007033 if (err)
7034 goto err_out;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007035 }
7036
7037 return 0;
Alexander Duyck493fb302013-09-28 07:01:44 +00007038
7039err_out:
7040 while (v_idx--)
7041 i40e_free_q_vector(vsi, v_idx);
7042
7043 return err;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007044}
7045
7046/**
7047 * i40e_init_interrupt_scheme - Determine proper interrupt scheme
7048 * @pf: board private structure to initialize
7049 **/
7050static void i40e_init_interrupt_scheme(struct i40e_pf *pf)
7051{
7052 int err = 0;
7053
7054 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
7055 err = i40e_init_msix(pf);
7056 if (err) {
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08007057 pf->flags &= ~(I40E_FLAG_MSIX_ENABLED |
Vasu Dev38e00432014-08-01 13:27:03 -07007058#ifdef I40E_FCOE
7059 I40E_FLAG_FCOE_ENABLED |
7060#endif
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08007061 I40E_FLAG_RSS_ENABLED |
Neerav Parikh4d9b6042014-05-22 06:31:51 +00007062 I40E_FLAG_DCB_CAPABLE |
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08007063 I40E_FLAG_SRIOV_ENABLED |
7064 I40E_FLAG_FD_SB_ENABLED |
7065 I40E_FLAG_FD_ATR_ENABLED |
7066 I40E_FLAG_VMDQ_ENABLED);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007067
7068 /* rework the queue expectations without MSIX */
7069 i40e_determine_queue_usage(pf);
7070 }
7071 }
7072
7073 if (!(pf->flags & I40E_FLAG_MSIX_ENABLED) &&
7074 (pf->flags & I40E_FLAG_MSI_ENABLED)) {
Catherine Sullivan77fa28b2014-02-20 19:29:17 -08007075 dev_info(&pf->pdev->dev, "MSI-X not available, trying MSI\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007076 err = pci_enable_msi(pf->pdev);
7077 if (err) {
Shannon Nelson958a3e32013-09-28 07:13:28 +00007078 dev_info(&pf->pdev->dev, "MSI init failed - %d\n", err);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007079 pf->flags &= ~I40E_FLAG_MSI_ENABLED;
7080 }
7081 }
7082
Shannon Nelson958a3e32013-09-28 07:13:28 +00007083 if (!(pf->flags & (I40E_FLAG_MSIX_ENABLED | I40E_FLAG_MSI_ENABLED)))
Catherine Sullivan77fa28b2014-02-20 19:29:17 -08007084 dev_info(&pf->pdev->dev, "MSI-X and MSI not available, falling back to Legacy IRQ\n");
Shannon Nelson958a3e32013-09-28 07:13:28 +00007085
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007086 /* track first vector for misc interrupts */
7087 err = i40e_get_lump(pf, pf->irq_pile, 1, I40E_PILE_VALID_BIT-1);
7088}
7089
7090/**
7091 * i40e_setup_misc_vector - Setup the misc vector to handle non queue events
7092 * @pf: board private structure
7093 *
7094 * This sets up the handler for MSIX 0, which is used to manage the
7095 * non-queue interrupts, e.g. AdminQ and errors. This is not used
7096 * when in MSI or Legacy interrupt mode.
7097 **/
7098static int i40e_setup_misc_vector(struct i40e_pf *pf)
7099{
7100 struct i40e_hw *hw = &pf->hw;
7101 int err = 0;
7102
7103 /* Only request the irq if this is the first time through, and
7104 * not when we're rebuilding after a Reset
7105 */
7106 if (!test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state)) {
7107 err = request_irq(pf->msix_entries[0].vector,
7108 i40e_intr, 0, pf->misc_int_name, pf);
7109 if (err) {
7110 dev_info(&pf->pdev->dev,
Catherine Sullivan77fa28b2014-02-20 19:29:17 -08007111 "request_irq for %s failed: %d\n",
7112 pf->misc_int_name, err);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007113 return -EFAULT;
7114 }
7115 }
7116
7117 i40e_enable_misc_int_causes(hw);
7118
7119 /* associate no queues to the misc vector */
7120 wr32(hw, I40E_PFINT_LNKLST0, I40E_QUEUE_END_OF_LIST);
7121 wr32(hw, I40E_PFINT_ITR0(I40E_RX_ITR), I40E_ITR_8K);
7122
7123 i40e_flush(hw);
7124
7125 i40e_irq_dynamic_enable_icr0(pf);
7126
7127 return err;
7128}
7129
7130/**
7131 * i40e_config_rss - Prepare for RSS if used
7132 * @pf: board private structure
7133 **/
7134static int i40e_config_rss(struct i40e_pf *pf)
7135{
Eric Dumazet22f258a2014-11-16 06:23:13 -08007136 u32 rss_key[I40E_PFQF_HKEY_MAX_INDEX + 1];
Anjali Singhai Jain4617e8c2013-11-20 10:02:56 +00007137 struct i40e_hw *hw = &pf->hw;
7138 u32 lut = 0;
7139 int i, j;
7140 u64 hena;
Carolyn Wybornye157ea32014-06-03 23:50:22 +00007141 u32 reg_val;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007142
Eric Dumazet22f258a2014-11-16 06:23:13 -08007143 netdev_rss_key_fill(rss_key, sizeof(rss_key));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007144 for (i = 0; i <= I40E_PFQF_HKEY_MAX_INDEX; i++)
Eric Dumazet22f258a2014-11-16 06:23:13 -08007145 wr32(hw, I40E_PFQF_HKEY(i), rss_key[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007146
7147 /* By default we enable TCP/UDP with IPv4/IPv6 ptypes */
7148 hena = (u64)rd32(hw, I40E_PFQF_HENA(0)) |
7149 ((u64)rd32(hw, I40E_PFQF_HENA(1)) << 32);
Mitch Williams12dc4fe2013-11-28 06:39:32 +00007150 hena |= I40E_DEFAULT_RSS_HENA;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007151 wr32(hw, I40E_PFQF_HENA(0), (u32)hena);
7152 wr32(hw, I40E_PFQF_HENA(1), (u32)(hena >> 32));
7153
Carolyn Wybornye157ea32014-06-03 23:50:22 +00007154 /* Check capability and Set table size and register per hw expectation*/
7155 reg_val = rd32(hw, I40E_PFQF_CTL_0);
7156 if (hw->func_caps.rss_table_size == 512) {
7157 reg_val |= I40E_PFQF_CTL_0_HASHLUTSIZE_512;
7158 pf->rss_table_size = 512;
7159 } else {
7160 pf->rss_table_size = 128;
7161 reg_val &= ~I40E_PFQF_CTL_0_HASHLUTSIZE_512;
7162 }
7163 wr32(hw, I40E_PFQF_CTL_0, reg_val);
7164
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007165 /* Populate the LUT with max no. of queues in round robin fashion */
Carolyn Wybornye157ea32014-06-03 23:50:22 +00007166 for (i = 0, j = 0; i < pf->rss_table_size; i++, j++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007167
7168 /* The assumption is that lan qp count will be the highest
7169 * qp count for any PF VSI that needs RSS.
7170 * If multiple VSIs need RSS support, all the qp counts
7171 * for those VSIs should be a power of 2 for RSS to work.
7172 * If LAN VSI is the only consumer for RSS then this requirement
7173 * is not necessary.
7174 */
7175 if (j == pf->rss_size)
7176 j = 0;
7177 /* lut = 4-byte sliding window of 4 lut entries */
7178 lut = (lut << 8) | (j &
7179 ((0x1 << pf->hw.func_caps.rss_table_entry_width) - 1));
7180 /* On i = 3, we have 4 entries in lut; write to the register */
7181 if ((i & 3) == 3)
7182 wr32(hw, I40E_PFQF_HLUT(i >> 2), lut);
7183 }
7184 i40e_flush(hw);
7185
7186 return 0;
7187}
7188
7189/**
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00007190 * i40e_reconfig_rss_queues - change number of queues for rss and rebuild
7191 * @pf: board private structure
7192 * @queue_count: the requested queue count for rss.
7193 *
7194 * returns 0 if rss is not enabled, if enabled returns the final rss queue
7195 * count which may be different from the requested queue count.
7196 **/
7197int i40e_reconfig_rss_queues(struct i40e_pf *pf, int queue_count)
7198{
7199 if (!(pf->flags & I40E_FLAG_RSS_ENABLED))
7200 return 0;
7201
7202 queue_count = min_t(int, queue_count, pf->rss_size_max);
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00007203
7204 if (queue_count != pf->rss_size) {
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00007205 i40e_prep_for_reset(pf);
7206
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00007207 pf->rss_size = queue_count;
7208
7209 i40e_reset_and_rebuild(pf, true);
7210 i40e_config_rss(pf);
7211 }
7212 dev_info(&pf->pdev->dev, "RSS count: %d\n", pf->rss_size);
7213 return pf->rss_size;
7214}
7215
7216/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007217 * i40e_sw_init - Initialize general software structures (struct i40e_pf)
7218 * @pf: board private structure to initialize
7219 *
7220 * i40e_sw_init initializes the Adapter private data structure.
7221 * Fields are initialized based on PCI device information and
7222 * OS network device settings (MTU size).
7223 **/
7224static int i40e_sw_init(struct i40e_pf *pf)
7225{
7226 int err = 0;
7227 int size;
7228
7229 pf->msg_enable = netif_msg_init(I40E_DEFAULT_MSG_ENABLE,
7230 (NETIF_MSG_DRV|NETIF_MSG_PROBE|NETIF_MSG_LINK));
Shannon Nelson27599972013-11-16 10:00:43 +00007231 pf->hw.debug_mask = pf->msg_enable | I40E_DEBUG_DIAG;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007232 if (debug != -1 && debug != I40E_DEFAULT_MSG_ENABLE) {
7233 if (I40E_DEBUG_USER & debug)
7234 pf->hw.debug_mask = debug;
7235 pf->msg_enable = netif_msg_init((debug & ~I40E_DEBUG_USER),
7236 I40E_DEFAULT_MSG_ENABLE);
7237 }
7238
7239 /* Set default capability flags */
7240 pf->flags = I40E_FLAG_RX_CSUM_ENABLED |
7241 I40E_FLAG_MSI_ENABLED |
7242 I40E_FLAG_MSIX_ENABLED |
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007243 I40E_FLAG_RX_1BUF_ENABLED;
7244
Mitch Williamsca99eb92014-04-04 04:43:07 +00007245 /* Set default ITR */
7246 pf->rx_itr_default = I40E_ITR_DYNAMIC | I40E_ITR_RX_DEF;
7247 pf->tx_itr_default = I40E_ITR_DYNAMIC | I40E_ITR_TX_DEF;
7248
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00007249 /* Depending on PF configurations, it is possible that the RSS
7250 * maximum might end up larger than the available queues
7251 */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007252 pf->rss_size_max = 0x1 << pf->hw.func_caps.rss_table_entry_width;
Paul M Stillwell Jrec9a7db2014-07-09 07:46:10 +00007253 pf->rss_size = 1;
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00007254 pf->rss_size_max = min_t(int, pf->rss_size_max,
7255 pf->hw.func_caps.num_tx_qp);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007256 if (pf->hw.func_caps.rss) {
7257 pf->flags |= I40E_FLAG_RSS_ENABLED;
Jesse Brandeburgbf051a32013-11-26 10:49:17 +00007258 pf->rss_size = min_t(int, pf->rss_size_max, num_online_cpus());
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007259 }
7260
Catherine Sullivan2050bc62013-12-18 13:46:03 +00007261 /* MFP mode enabled */
7262 if (pf->hw.func_caps.npar_enable || pf->hw.func_caps.mfp_mode_1) {
7263 pf->flags |= I40E_FLAG_MFP_ENABLED;
7264 dev_info(&pf->pdev->dev, "MFP mode Enabled\n");
7265 }
7266
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08007267 /* FW/NVM is not yet fixed in this regard */
7268 if ((pf->hw.func_caps.fd_filters_guaranteed > 0) ||
7269 (pf->hw.func_caps.fd_filters_best_effort > 0)) {
7270 pf->flags |= I40E_FLAG_FD_ATR_ENABLED;
7271 pf->atr_sample_rate = I40E_DEFAULT_ATR_SAMPLE_RATE;
Anjali Singhai Jain433c47d2014-05-22 06:32:17 +00007272 /* Setup a counter for fd_atr per pf */
7273 pf->fd_atr_cnt_idx = I40E_FD_ATR_STAT_IDX(pf->hw.pf_id);
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08007274 if (!(pf->flags & I40E_FLAG_MFP_ENABLED)) {
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08007275 pf->flags |= I40E_FLAG_FD_SB_ENABLED;
Anjali Singhai Jain433c47d2014-05-22 06:32:17 +00007276 /* Setup a counter for fd_sb per pf */
7277 pf->fd_sb_cnt_idx = I40E_FD_SB_STAT_IDX(pf->hw.pf_id);
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08007278 } else {
7279 dev_info(&pf->pdev->dev,
Anjali Singhai Jain0b675842014-03-06 08:59:51 +00007280 "Flow Director Sideband mode Disabled in MFP mode\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007281 }
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08007282 pf->fdir_pf_filter_count =
7283 pf->hw.func_caps.fd_filters_guaranteed;
7284 pf->hw.fdir_shared_filter_count =
7285 pf->hw.func_caps.fd_filters_best_effort;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007286 }
7287
7288 if (pf->hw.func_caps.vmdq) {
7289 pf->flags |= I40E_FLAG_VMDQ_ENABLED;
7290 pf->num_vmdq_vsis = I40E_DEFAULT_NUM_VMDQ_VSI;
7291 pf->num_vmdq_qps = I40E_DEFAULT_QUEUES_PER_VMDQ;
7292 }
7293
Vasu Dev38e00432014-08-01 13:27:03 -07007294#ifdef I40E_FCOE
7295 err = i40e_init_pf_fcoe(pf);
7296 if (err)
7297 dev_info(&pf->pdev->dev, "init_pf_fcoe failed: %d\n", err);
7298
7299#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007300#ifdef CONFIG_PCI_IOV
7301 if (pf->hw.func_caps.num_vfs) {
7302 pf->num_vf_qps = I40E_DEFAULT_QUEUES_PER_VF;
7303 pf->flags |= I40E_FLAG_SRIOV_ENABLED;
7304 pf->num_req_vfs = min_t(int,
7305 pf->hw.func_caps.num_vfs,
7306 I40E_MAX_VF_COUNT);
7307 }
7308#endif /* CONFIG_PCI_IOV */
7309 pf->eeprom_version = 0xDEAD;
7310 pf->lan_veb = I40E_NO_VEB;
7311 pf->lan_vsi = I40E_NO_VSI;
7312
7313 /* set up queue assignment tracking */
7314 size = sizeof(struct i40e_lump_tracking)
7315 + (sizeof(u16) * pf->hw.func_caps.num_tx_qp);
7316 pf->qp_pile = kzalloc(size, GFP_KERNEL);
7317 if (!pf->qp_pile) {
7318 err = -ENOMEM;
7319 goto sw_init_done;
7320 }
7321 pf->qp_pile->num_entries = pf->hw.func_caps.num_tx_qp;
7322 pf->qp_pile->search_hint = 0;
7323
7324 /* set up vector assignment tracking */
7325 size = sizeof(struct i40e_lump_tracking)
7326 + (sizeof(u16) * pf->hw.func_caps.num_msix_vectors);
7327 pf->irq_pile = kzalloc(size, GFP_KERNEL);
7328 if (!pf->irq_pile) {
7329 kfree(pf->qp_pile);
7330 err = -ENOMEM;
7331 goto sw_init_done;
7332 }
7333 pf->irq_pile->num_entries = pf->hw.func_caps.num_msix_vectors;
7334 pf->irq_pile->search_hint = 0;
7335
Anjali Singhai Jain327fe042014-06-04 01:23:26 +00007336 pf->tx_timeout_recovery_level = 1;
7337
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007338 mutex_init(&pf->switch_mutex);
7339
7340sw_init_done:
7341 return err;
7342}
7343
7344/**
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00007345 * i40e_set_ntuple - set the ntuple feature flag and take action
7346 * @pf: board private structure to initialize
7347 * @features: the feature set that the stack is suggesting
7348 *
7349 * returns a bool to indicate if reset needs to happen
7350 **/
7351bool i40e_set_ntuple(struct i40e_pf *pf, netdev_features_t features)
7352{
7353 bool need_reset = false;
7354
7355 /* Check if Flow Director n-tuple support was enabled or disabled. If
7356 * the state changed, we need to reset.
7357 */
7358 if (features & NETIF_F_NTUPLE) {
7359 /* Enable filters and mark for reset */
7360 if (!(pf->flags & I40E_FLAG_FD_SB_ENABLED))
7361 need_reset = true;
7362 pf->flags |= I40E_FLAG_FD_SB_ENABLED;
7363 } else {
7364 /* turn off filters, mark for reset and clear SW filter list */
7365 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
7366 need_reset = true;
7367 i40e_fdir_filter_exit(pf);
7368 }
7369 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
Anjali Singhai Jain8a4f34f2014-06-04 08:45:20 +00007370 pf->auto_disable_flags &= ~I40E_FLAG_FD_SB_ENABLED;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00007371 /* reset fd counters */
7372 pf->fd_add_err = pf->fd_atr_cnt = pf->fd_tcp_rule = 0;
7373 pf->fdir_pf_active_filters = 0;
7374 pf->flags |= I40E_FLAG_FD_ATR_ENABLED;
7375 dev_info(&pf->pdev->dev, "ATR re-enabled.\n");
Anjali Singhai Jain8a4f34f2014-06-04 08:45:20 +00007376 /* if ATR was auto disabled it can be re-enabled. */
7377 if ((pf->flags & I40E_FLAG_FD_ATR_ENABLED) &&
7378 (pf->auto_disable_flags & I40E_FLAG_FD_ATR_ENABLED))
7379 pf->auto_disable_flags &= ~I40E_FLAG_FD_ATR_ENABLED;
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00007380 }
7381 return need_reset;
7382}
7383
7384/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007385 * i40e_set_features - set the netdev feature flags
7386 * @netdev: ptr to the netdev being adjusted
7387 * @features: the feature set that the stack is suggesting
7388 **/
7389static int i40e_set_features(struct net_device *netdev,
7390 netdev_features_t features)
7391{
7392 struct i40e_netdev_priv *np = netdev_priv(netdev);
7393 struct i40e_vsi *vsi = np->vsi;
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00007394 struct i40e_pf *pf = vsi->back;
7395 bool need_reset;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007396
7397 if (features & NETIF_F_HW_VLAN_CTAG_RX)
7398 i40e_vlan_stripping_enable(vsi);
7399 else
7400 i40e_vlan_stripping_disable(vsi);
7401
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00007402 need_reset = i40e_set_ntuple(pf, features);
7403
7404 if (need_reset)
7405 i40e_do_reset(pf, (1 << __I40E_PF_RESET_REQUESTED));
7406
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007407 return 0;
7408}
7409
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007410#ifdef CONFIG_I40E_VXLAN
7411/**
7412 * i40e_get_vxlan_port_idx - Lookup a possibly offloaded for Rx UDP port
7413 * @pf: board private structure
7414 * @port: The UDP port to look up
7415 *
7416 * Returns the index number or I40E_MAX_PF_UDP_OFFLOAD_PORTS if port not found
7417 **/
7418static u8 i40e_get_vxlan_port_idx(struct i40e_pf *pf, __be16 port)
7419{
7420 u8 i;
7421
7422 for (i = 0; i < I40E_MAX_PF_UDP_OFFLOAD_PORTS; i++) {
7423 if (pf->vxlan_ports[i] == port)
7424 return i;
7425 }
7426
7427 return i;
7428}
7429
7430/**
7431 * i40e_add_vxlan_port - Get notifications about VXLAN ports that come up
7432 * @netdev: This physical port's netdev
7433 * @sa_family: Socket Family that VXLAN is notifying us about
7434 * @port: New UDP port number that VXLAN started listening to
7435 **/
7436static void i40e_add_vxlan_port(struct net_device *netdev,
7437 sa_family_t sa_family, __be16 port)
7438{
7439 struct i40e_netdev_priv *np = netdev_priv(netdev);
7440 struct i40e_vsi *vsi = np->vsi;
7441 struct i40e_pf *pf = vsi->back;
7442 u8 next_idx;
7443 u8 idx;
7444
7445 if (sa_family == AF_INET6)
7446 return;
7447
7448 idx = i40e_get_vxlan_port_idx(pf, port);
7449
7450 /* Check if port already exists */
7451 if (idx < I40E_MAX_PF_UDP_OFFLOAD_PORTS) {
7452 netdev_info(netdev, "Port %d already offloaded\n", ntohs(port));
7453 return;
7454 }
7455
7456 /* Now check if there is space to add the new port */
7457 next_idx = i40e_get_vxlan_port_idx(pf, 0);
7458
7459 if (next_idx == I40E_MAX_PF_UDP_OFFLOAD_PORTS) {
7460 netdev_info(netdev, "Maximum number of UDP ports reached, not adding port %d\n",
7461 ntohs(port));
7462 return;
7463 }
7464
7465 /* New port: add it and mark its index in the bitmap */
7466 pf->vxlan_ports[next_idx] = port;
7467 pf->pending_vxlan_bitmap |= (1 << next_idx);
7468
7469 pf->flags |= I40E_FLAG_VXLAN_FILTER_SYNC;
7470}
7471
7472/**
7473 * i40e_del_vxlan_port - Get notifications about VXLAN ports that go away
7474 * @netdev: This physical port's netdev
7475 * @sa_family: Socket Family that VXLAN is notifying us about
7476 * @port: UDP port number that VXLAN stopped listening to
7477 **/
7478static void i40e_del_vxlan_port(struct net_device *netdev,
7479 sa_family_t sa_family, __be16 port)
7480{
7481 struct i40e_netdev_priv *np = netdev_priv(netdev);
7482 struct i40e_vsi *vsi = np->vsi;
7483 struct i40e_pf *pf = vsi->back;
7484 u8 idx;
7485
7486 if (sa_family == AF_INET6)
7487 return;
7488
7489 idx = i40e_get_vxlan_port_idx(pf, port);
7490
7491 /* Check if port already exists */
7492 if (idx < I40E_MAX_PF_UDP_OFFLOAD_PORTS) {
7493 /* if port exists, set it to 0 (mark for deletion)
7494 * and make it pending
7495 */
7496 pf->vxlan_ports[idx] = 0;
7497
7498 pf->pending_vxlan_bitmap |= (1 << idx);
7499
7500 pf->flags |= I40E_FLAG_VXLAN_FILTER_SYNC;
7501 } else {
7502 netdev_warn(netdev, "Port %d was not found, not deleting\n",
7503 ntohs(port));
7504 }
7505}
7506
7507#endif
Neerav Parikh1f224ad2014-02-12 01:45:31 +00007508static int i40e_get_phys_port_id(struct net_device *netdev,
7509 struct netdev_phys_port_id *ppid)
7510{
7511 struct i40e_netdev_priv *np = netdev_priv(netdev);
7512 struct i40e_pf *pf = np->vsi->back;
7513 struct i40e_hw *hw = &pf->hw;
7514
7515 if (!(pf->flags & I40E_FLAG_PORT_ID_VALID))
7516 return -EOPNOTSUPP;
7517
7518 ppid->id_len = min_t(int, sizeof(hw->mac.port_addr), sizeof(ppid->id));
7519 memcpy(ppid->id, hw->mac.port_addr, ppid->id_len);
7520
7521 return 0;
7522}
7523
Greg Rose4ba0dea2014-03-06 08:59:55 +00007524#ifdef HAVE_FDB_OPS
7525#ifdef USE_CONST_DEV_UC_CHAR
7526static int i40e_ndo_fdb_add(struct ndmsg *ndm, struct nlattr *tb[],
7527 struct net_device *dev,
7528 const unsigned char *addr,
7529 u16 flags)
7530#else
7531static int i40e_ndo_fdb_add(struct ndmsg *ndm,
7532 struct net_device *dev,
7533 unsigned char *addr,
7534 u16 flags)
7535#endif
7536{
7537 struct i40e_netdev_priv *np = netdev_priv(dev);
7538 struct i40e_pf *pf = np->vsi->back;
7539 int err = 0;
7540
7541 if (!(pf->flags & I40E_FLAG_SRIOV_ENABLED))
7542 return -EOPNOTSUPP;
7543
7544 /* Hardware does not support aging addresses so if a
7545 * ndm_state is given only allow permanent addresses
7546 */
7547 if (ndm->ndm_state && !(ndm->ndm_state & NUD_PERMANENT)) {
7548 netdev_info(dev, "FDB only supports static addresses\n");
7549 return -EINVAL;
7550 }
7551
7552 if (is_unicast_ether_addr(addr) || is_link_local_ether_addr(addr))
7553 err = dev_uc_add_excl(dev, addr);
7554 else if (is_multicast_ether_addr(addr))
7555 err = dev_mc_add_excl(dev, addr);
7556 else
7557 err = -EINVAL;
7558
7559 /* Only return duplicate errors if NLM_F_EXCL is set */
7560 if (err == -EEXIST && !(flags & NLM_F_EXCL))
7561 err = 0;
7562
7563 return err;
7564}
7565
7566#ifndef USE_DEFAULT_FDB_DEL_DUMP
7567#ifdef USE_CONST_DEV_UC_CHAR
7568static int i40e_ndo_fdb_del(struct ndmsg *ndm,
7569 struct net_device *dev,
7570 const unsigned char *addr)
7571#else
7572static int i40e_ndo_fdb_del(struct ndmsg *ndm,
7573 struct net_device *dev,
7574 unsigned char *addr)
7575#endif
7576{
7577 struct i40e_netdev_priv *np = netdev_priv(dev);
7578 struct i40e_pf *pf = np->vsi->back;
7579 int err = -EOPNOTSUPP;
7580
7581 if (ndm->ndm_state & NUD_PERMANENT) {
7582 netdev_info(dev, "FDB only supports static addresses\n");
7583 return -EINVAL;
7584 }
7585
7586 if (pf->flags & I40E_FLAG_SRIOV_ENABLED) {
7587 if (is_unicast_ether_addr(addr))
7588 err = dev_uc_del(dev, addr);
7589 else if (is_multicast_ether_addr(addr))
7590 err = dev_mc_del(dev, addr);
7591 else
7592 err = -EINVAL;
7593 }
7594
7595 return err;
7596}
7597
7598static int i40e_ndo_fdb_dump(struct sk_buff *skb,
7599 struct netlink_callback *cb,
7600 struct net_device *dev,
Jamal Hadi Salim5d5eacb2014-07-10 07:01:58 -04007601 struct net_device *filter_dev,
Greg Rose4ba0dea2014-03-06 08:59:55 +00007602 int idx)
7603{
7604 struct i40e_netdev_priv *np = netdev_priv(dev);
7605 struct i40e_pf *pf = np->vsi->back;
7606
7607 if (pf->flags & I40E_FLAG_SRIOV_ENABLED)
Jamal Hadi Salim5d5eacb2014-07-10 07:01:58 -04007608 idx = ndo_dflt_fdb_dump(skb, cb, dev, filter_dev, idx);
Greg Rose4ba0dea2014-03-06 08:59:55 +00007609
7610 return idx;
7611}
7612
7613#endif /* USE_DEFAULT_FDB_DEL_DUMP */
7614#endif /* HAVE_FDB_OPS */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007615static const struct net_device_ops i40e_netdev_ops = {
7616 .ndo_open = i40e_open,
7617 .ndo_stop = i40e_close,
7618 .ndo_start_xmit = i40e_lan_xmit_frame,
7619 .ndo_get_stats64 = i40e_get_netdev_stats_struct,
7620 .ndo_set_rx_mode = i40e_set_rx_mode,
7621 .ndo_validate_addr = eth_validate_addr,
7622 .ndo_set_mac_address = i40e_set_mac,
7623 .ndo_change_mtu = i40e_change_mtu,
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00007624 .ndo_do_ioctl = i40e_ioctl,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007625 .ndo_tx_timeout = i40e_tx_timeout,
7626 .ndo_vlan_rx_add_vid = i40e_vlan_rx_add_vid,
7627 .ndo_vlan_rx_kill_vid = i40e_vlan_rx_kill_vid,
7628#ifdef CONFIG_NET_POLL_CONTROLLER
7629 .ndo_poll_controller = i40e_netpoll,
7630#endif
7631 .ndo_setup_tc = i40e_setup_tc,
Vasu Dev38e00432014-08-01 13:27:03 -07007632#ifdef I40E_FCOE
7633 .ndo_fcoe_enable = i40e_fcoe_enable,
7634 .ndo_fcoe_disable = i40e_fcoe_disable,
7635#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007636 .ndo_set_features = i40e_set_features,
7637 .ndo_set_vf_mac = i40e_ndo_set_vf_mac,
7638 .ndo_set_vf_vlan = i40e_ndo_set_vf_port_vlan,
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04007639 .ndo_set_vf_rate = i40e_ndo_set_vf_bw,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007640 .ndo_get_vf_config = i40e_ndo_get_vf_config,
Mitch Williams588aefa2014-02-11 08:27:49 +00007641 .ndo_set_vf_link_state = i40e_ndo_set_vf_link_state,
Serey Konge6d90042014-07-12 07:28:14 +00007642 .ndo_set_vf_spoofchk = i40e_ndo_set_vf_spoofchk,
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007643#ifdef CONFIG_I40E_VXLAN
7644 .ndo_add_vxlan_port = i40e_add_vxlan_port,
7645 .ndo_del_vxlan_port = i40e_del_vxlan_port,
7646#endif
Neerav Parikh1f224ad2014-02-12 01:45:31 +00007647 .ndo_get_phys_port_id = i40e_get_phys_port_id,
Greg Rose4ba0dea2014-03-06 08:59:55 +00007648#ifdef HAVE_FDB_OPS
7649 .ndo_fdb_add = i40e_ndo_fdb_add,
7650#ifndef USE_DEFAULT_FDB_DEL_DUMP
7651 .ndo_fdb_del = i40e_ndo_fdb_del,
7652 .ndo_fdb_dump = i40e_ndo_fdb_dump,
7653#endif
7654#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007655};
7656
7657/**
7658 * i40e_config_netdev - Setup the netdev flags
7659 * @vsi: the VSI being configured
7660 *
7661 * Returns 0 on success, negative value on failure
7662 **/
7663static int i40e_config_netdev(struct i40e_vsi *vsi)
7664{
Greg Rose1a103702013-11-28 06:42:39 +00007665 u8 brdcast[ETH_ALEN] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007666 struct i40e_pf *pf = vsi->back;
7667 struct i40e_hw *hw = &pf->hw;
7668 struct i40e_netdev_priv *np;
7669 struct net_device *netdev;
7670 u8 mac_addr[ETH_ALEN];
7671 int etherdev_size;
7672
7673 etherdev_size = sizeof(struct i40e_netdev_priv);
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00007674 netdev = alloc_etherdev_mq(etherdev_size, vsi->alloc_queue_pairs);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007675 if (!netdev)
7676 return -ENOMEM;
7677
7678 vsi->netdev = netdev;
7679 np = netdev_priv(netdev);
7680 np->vsi = vsi;
7681
Or Gerlitzd70e9412014-03-18 10:36:45 +02007682 netdev->hw_enc_features |= NETIF_F_IP_CSUM |
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007683 NETIF_F_GSO_UDP_TUNNEL |
Or Gerlitzd70e9412014-03-18 10:36:45 +02007684 NETIF_F_TSO;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007685
7686 netdev->features = NETIF_F_SG |
7687 NETIF_F_IP_CSUM |
7688 NETIF_F_SCTP_CSUM |
7689 NETIF_F_HIGHDMA |
7690 NETIF_F_GSO_UDP_TUNNEL |
7691 NETIF_F_HW_VLAN_CTAG_TX |
7692 NETIF_F_HW_VLAN_CTAG_RX |
7693 NETIF_F_HW_VLAN_CTAG_FILTER |
7694 NETIF_F_IPV6_CSUM |
7695 NETIF_F_TSO |
Jesse Brandeburg059dab62014-04-01 09:07:20 +00007696 NETIF_F_TSO_ECN |
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007697 NETIF_F_TSO6 |
7698 NETIF_F_RXCSUM |
7699 NETIF_F_RXHASH |
7700 0;
7701
Anjali Singhai Jain2e86a0b2014-04-01 07:11:53 +00007702 if (!(pf->flags & I40E_FLAG_MFP_ENABLED))
7703 netdev->features |= NETIF_F_NTUPLE;
7704
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007705 /* copy netdev features into list of user selectable features */
7706 netdev->hw_features |= netdev->features;
7707
7708 if (vsi->type == I40E_VSI_MAIN) {
7709 SET_NETDEV_DEV(netdev, &pf->pdev->dev);
Greg Rose9a173902014-05-22 06:32:02 +00007710 ether_addr_copy(mac_addr, hw->mac.perm_addr);
Shannon Nelson30650cc2014-07-29 04:01:50 +00007711 /* The following steps are necessary to prevent reception
7712 * of tagged packets - some older NVM configurations load a
7713 * default a MAC-VLAN filter that accepts any tagged packet
7714 * which must be replaced by a normal filter.
Greg Rose8c27d422014-05-22 06:31:56 +00007715 */
Shannon Nelson30650cc2014-07-29 04:01:50 +00007716 if (!i40e_rm_default_mac_filter(vsi, mac_addr))
7717 i40e_add_filter(vsi, mac_addr,
7718 I40E_VLAN_ANY, false, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007719 } else {
7720 /* relate the VSI_VMDQ name to the VSI_MAIN name */
7721 snprintf(netdev->name, IFNAMSIZ, "%sv%%d",
7722 pf->vsi[pf->lan_vsi]->netdev->name);
7723 random_ether_addr(mac_addr);
7724 i40e_add_filter(vsi, mac_addr, I40E_VLAN_ANY, false, false);
7725 }
Greg Rose1a103702013-11-28 06:42:39 +00007726 i40e_add_filter(vsi, brdcast, I40E_VLAN_ANY, false, false);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007727
Greg Rose9a173902014-05-22 06:32:02 +00007728 ether_addr_copy(netdev->dev_addr, mac_addr);
7729 ether_addr_copy(netdev->perm_addr, mac_addr);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007730 /* vlan gets same features (except vlan offload)
7731 * after any tweaks for specific VSI types
7732 */
7733 netdev->vlan_features = netdev->features & ~(NETIF_F_HW_VLAN_CTAG_TX |
7734 NETIF_F_HW_VLAN_CTAG_RX |
7735 NETIF_F_HW_VLAN_CTAG_FILTER);
7736 netdev->priv_flags |= IFF_UNICAST_FLT;
7737 netdev->priv_flags |= IFF_SUPP_NOFCS;
7738 /* Setup netdev TC information */
7739 i40e_vsi_config_netdev_tc(vsi, vsi->tc_config.enabled_tc);
7740
7741 netdev->netdev_ops = &i40e_netdev_ops;
7742 netdev->watchdog_timeo = 5 * HZ;
7743 i40e_set_ethtool_ops(netdev);
Vasu Dev38e00432014-08-01 13:27:03 -07007744#ifdef I40E_FCOE
7745 i40e_fcoe_config_netdev(netdev, vsi);
7746#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007747
7748 return 0;
7749}
7750
7751/**
7752 * i40e_vsi_delete - Delete a VSI from the switch
7753 * @vsi: the VSI being removed
7754 *
7755 * Returns 0 on success, negative value on failure
7756 **/
7757static void i40e_vsi_delete(struct i40e_vsi *vsi)
7758{
7759 /* remove default VSI is not allowed */
7760 if (vsi == vsi->back->vsi[vsi->back->lan_vsi])
7761 return;
7762
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007763 i40e_aq_delete_element(&vsi->back->hw, vsi->seid, NULL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007764}
7765
7766/**
7767 * i40e_add_vsi - Add a VSI to the switch
7768 * @vsi: the VSI being configured
7769 *
7770 * This initializes a VSI context depending on the VSI type to be added and
7771 * passes it down to the add_vsi aq command.
7772 **/
7773static int i40e_add_vsi(struct i40e_vsi *vsi)
7774{
7775 int ret = -ENODEV;
7776 struct i40e_mac_filter *f, *ftmp;
7777 struct i40e_pf *pf = vsi->back;
7778 struct i40e_hw *hw = &pf->hw;
7779 struct i40e_vsi_context ctxt;
7780 u8 enabled_tc = 0x1; /* TC0 enabled */
7781 int f_count = 0;
7782
7783 memset(&ctxt, 0, sizeof(ctxt));
7784 switch (vsi->type) {
7785 case I40E_VSI_MAIN:
7786 /* The PF's main VSI is already setup as part of the
7787 * device initialization, so we'll not bother with
7788 * the add_vsi call, but we will retrieve the current
7789 * VSI context.
7790 */
7791 ctxt.seid = pf->main_vsi_seid;
7792 ctxt.pf_num = pf->hw.pf_id;
7793 ctxt.vf_num = 0;
7794 ret = i40e_aq_get_vsi_params(&pf->hw, &ctxt, NULL);
7795 ctxt.flags = I40E_AQ_VSI_TYPE_PF;
7796 if (ret) {
7797 dev_info(&pf->pdev->dev,
7798 "couldn't get pf vsi config, err %d, aq_err %d\n",
7799 ret, pf->hw.aq.asq_last_status);
7800 return -ENOENT;
7801 }
7802 memcpy(&vsi->info, &ctxt.info, sizeof(ctxt.info));
7803 vsi->info.valid_sections = 0;
7804
7805 vsi->seid = ctxt.seid;
7806 vsi->id = ctxt.vsi_number;
7807
7808 enabled_tc = i40e_pf_get_tc_map(pf);
7809
7810 /* MFP mode setup queue map and update VSI */
7811 if (pf->flags & I40E_FLAG_MFP_ENABLED) {
7812 memset(&ctxt, 0, sizeof(ctxt));
7813 ctxt.seid = pf->main_vsi_seid;
7814 ctxt.pf_num = pf->hw.pf_id;
7815 ctxt.vf_num = 0;
7816 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, false);
7817 ret = i40e_aq_update_vsi_params(hw, &ctxt, NULL);
7818 if (ret) {
7819 dev_info(&pf->pdev->dev,
7820 "update vsi failed, aq_err=%d\n",
7821 pf->hw.aq.asq_last_status);
7822 ret = -ENOENT;
7823 goto err;
7824 }
7825 /* update the local VSI info queue map */
7826 i40e_vsi_update_queue_map(vsi, &ctxt);
7827 vsi->info.valid_sections = 0;
7828 } else {
7829 /* Default/Main VSI is only enabled for TC0
7830 * reconfigure it to enable all TCs that are
7831 * available on the port in SFP mode.
7832 */
7833 ret = i40e_vsi_config_tc(vsi, enabled_tc);
7834 if (ret) {
7835 dev_info(&pf->pdev->dev,
7836 "failed to configure TCs for main VSI tc_map 0x%08x, err %d, aq_err %d\n",
7837 enabled_tc, ret,
7838 pf->hw.aq.asq_last_status);
7839 ret = -ENOENT;
7840 }
7841 }
7842 break;
7843
7844 case I40E_VSI_FDIR:
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08007845 ctxt.pf_num = hw->pf_id;
7846 ctxt.vf_num = 0;
7847 ctxt.uplink_seid = vsi->uplink_seid;
7848 ctxt.connection_type = 0x1; /* regular data port */
7849 ctxt.flags = I40E_AQ_VSI_TYPE_PF;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007850 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007851 break;
7852
7853 case I40E_VSI_VMDQ2:
7854 ctxt.pf_num = hw->pf_id;
7855 ctxt.vf_num = 0;
7856 ctxt.uplink_seid = vsi->uplink_seid;
7857 ctxt.connection_type = 0x1; /* regular data port */
7858 ctxt.flags = I40E_AQ_VSI_TYPE_VMDQ2;
7859
7860 ctxt.info.valid_sections |= cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
7861
7862 /* This VSI is connected to VEB so the switch_id
7863 * should be set to zero by default.
7864 */
7865 ctxt.info.switch_id = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007866 ctxt.info.switch_id |= cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
7867
7868 /* Setup the VSI tx/rx queue map for TC0 only for now */
7869 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, true);
7870 break;
7871
7872 case I40E_VSI_SRIOV:
7873 ctxt.pf_num = hw->pf_id;
7874 ctxt.vf_num = vsi->vf_id + hw->func_caps.vf_base_id;
7875 ctxt.uplink_seid = vsi->uplink_seid;
7876 ctxt.connection_type = 0x1; /* regular data port */
7877 ctxt.flags = I40E_AQ_VSI_TYPE_VF;
7878
7879 ctxt.info.valid_sections |= cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
7880
7881 /* This VSI is connected to VEB so the switch_id
7882 * should be set to zero by default.
7883 */
7884 ctxt.info.switch_id = cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
7885
7886 ctxt.info.valid_sections |= cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
7887 ctxt.info.port_vlan_flags |= I40E_AQ_VSI_PVLAN_MODE_ALL;
Mitch Williamsc674d122014-05-20 08:01:40 +00007888 if (pf->vf[vsi->vf_id].spoofchk) {
7889 ctxt.info.valid_sections |=
7890 cpu_to_le16(I40E_AQ_VSI_PROP_SECURITY_VALID);
7891 ctxt.info.sec_flags |=
7892 (I40E_AQ_VSI_SEC_FLAG_ENABLE_VLAN_CHK |
7893 I40E_AQ_VSI_SEC_FLAG_ENABLE_MAC_CHK);
7894 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007895 /* Setup the VSI tx/rx queue map for TC0 only for now */
7896 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, true);
7897 break;
7898
Vasu Dev38e00432014-08-01 13:27:03 -07007899#ifdef I40E_FCOE
7900 case I40E_VSI_FCOE:
7901 ret = i40e_fcoe_vsi_init(vsi, &ctxt);
7902 if (ret) {
7903 dev_info(&pf->pdev->dev, "failed to initialize FCoE VSI\n");
7904 return ret;
7905 }
7906 break;
7907
7908#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007909 default:
7910 return -ENODEV;
7911 }
7912
7913 if (vsi->type != I40E_VSI_MAIN) {
7914 ret = i40e_aq_add_vsi(hw, &ctxt, NULL);
7915 if (ret) {
7916 dev_info(&vsi->back->pdev->dev,
7917 "add vsi failed, aq_err=%d\n",
7918 vsi->back->hw.aq.asq_last_status);
7919 ret = -ENOENT;
7920 goto err;
7921 }
7922 memcpy(&vsi->info, &ctxt.info, sizeof(ctxt.info));
7923 vsi->info.valid_sections = 0;
7924 vsi->seid = ctxt.seid;
7925 vsi->id = ctxt.vsi_number;
7926 }
7927
7928 /* If macvlan filters already exist, force them to get loaded */
7929 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
7930 f->changed = true;
7931 f_count++;
Shannon Nelson6252c7e2014-06-04 01:23:23 +00007932
7933 if (f->is_laa && vsi->type == I40E_VSI_MAIN) {
Shannon Nelson30650cc2014-07-29 04:01:50 +00007934 struct i40e_aqc_remove_macvlan_element_data element;
7935
7936 memset(&element, 0, sizeof(element));
7937 ether_addr_copy(element.mac_addr, f->macaddr);
7938 element.flags = I40E_AQC_MACVLAN_DEL_PERFECT_MATCH;
7939 ret = i40e_aq_remove_macvlan(hw, vsi->seid,
7940 &element, 1, NULL);
7941 if (ret) {
7942 /* some older FW has a different default */
7943 element.flags |=
7944 I40E_AQC_MACVLAN_DEL_IGNORE_VLAN;
7945 i40e_aq_remove_macvlan(hw, vsi->seid,
7946 &element, 1, NULL);
7947 }
7948
7949 i40e_aq_mac_address_write(hw,
Shannon Nelson6252c7e2014-06-04 01:23:23 +00007950 I40E_AQC_WRITE_TYPE_LAA_WOL,
7951 f->macaddr, NULL);
7952 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007953 }
7954 if (f_count) {
7955 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
7956 pf->flags |= I40E_FLAG_FILTER_SYNC;
7957 }
7958
7959 /* Update VSI BW information */
7960 ret = i40e_vsi_get_bw_info(vsi);
7961 if (ret) {
7962 dev_info(&pf->pdev->dev,
7963 "couldn't get vsi bw info, err %d, aq_err %d\n",
7964 ret, pf->hw.aq.asq_last_status);
7965 /* VSI is already added so not tearing that up */
7966 ret = 0;
7967 }
7968
7969err:
7970 return ret;
7971}
7972
7973/**
7974 * i40e_vsi_release - Delete a VSI and free its resources
7975 * @vsi: the VSI being removed
7976 *
7977 * Returns 0 on success or < 0 on error
7978 **/
7979int i40e_vsi_release(struct i40e_vsi *vsi)
7980{
7981 struct i40e_mac_filter *f, *ftmp;
7982 struct i40e_veb *veb = NULL;
7983 struct i40e_pf *pf;
7984 u16 uplink_seid;
7985 int i, n;
7986
7987 pf = vsi->back;
7988
7989 /* release of a VEB-owner or last VSI is not allowed */
7990 if (vsi->flags & I40E_VSI_FLAG_VEB_OWNER) {
7991 dev_info(&pf->pdev->dev, "VSI %d has existing VEB %d\n",
7992 vsi->seid, vsi->uplink_seid);
7993 return -ENODEV;
7994 }
7995 if (vsi == pf->vsi[pf->lan_vsi] &&
7996 !test_bit(__I40E_DOWN, &pf->state)) {
7997 dev_info(&pf->pdev->dev, "Can't remove PF VSI\n");
7998 return -ENODEV;
7999 }
8000
8001 uplink_seid = vsi->uplink_seid;
8002 if (vsi->type != I40E_VSI_SRIOV) {
8003 if (vsi->netdev_registered) {
8004 vsi->netdev_registered = false;
8005 if (vsi->netdev) {
8006 /* results in a call to i40e_close() */
8007 unregister_netdev(vsi->netdev);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008008 }
8009 } else {
Shannon Nelson90ef8d42014-03-14 07:32:26 +00008010 i40e_vsi_close(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008011 }
8012 i40e_vsi_disable_irq(vsi);
8013 }
8014
8015 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list)
8016 i40e_del_filter(vsi, f->macaddr, f->vlan,
8017 f->is_vf, f->is_netdev);
8018 i40e_sync_vsi_filters(vsi);
8019
8020 i40e_vsi_delete(vsi);
8021 i40e_vsi_free_q_vectors(vsi);
Shannon Nelsona4866592014-02-11 08:24:07 +00008022 if (vsi->netdev) {
8023 free_netdev(vsi->netdev);
8024 vsi->netdev = NULL;
8025 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008026 i40e_vsi_clear_rings(vsi);
8027 i40e_vsi_clear(vsi);
8028
8029 /* If this was the last thing on the VEB, except for the
8030 * controlling VSI, remove the VEB, which puts the controlling
8031 * VSI onto the next level down in the switch.
8032 *
8033 * Well, okay, there's one more exception here: don't remove
8034 * the orphan VEBs yet. We'll wait for an explicit remove request
8035 * from up the network stack.
8036 */
Mitch Williams505682c2014-05-20 08:01:37 +00008037 for (n = 0, i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008038 if (pf->vsi[i] &&
8039 pf->vsi[i]->uplink_seid == uplink_seid &&
8040 (pf->vsi[i]->flags & I40E_VSI_FLAG_VEB_OWNER) == 0) {
8041 n++; /* count the VSIs */
8042 }
8043 }
8044 for (i = 0; i < I40E_MAX_VEB; i++) {
8045 if (!pf->veb[i])
8046 continue;
8047 if (pf->veb[i]->uplink_seid == uplink_seid)
8048 n++; /* count the VEBs */
8049 if (pf->veb[i]->seid == uplink_seid)
8050 veb = pf->veb[i];
8051 }
8052 if (n == 0 && veb && veb->uplink_seid != 0)
8053 i40e_veb_release(veb);
8054
8055 return 0;
8056}
8057
8058/**
8059 * i40e_vsi_setup_vectors - Set up the q_vectors for the given VSI
8060 * @vsi: ptr to the VSI
8061 *
8062 * This should only be called after i40e_vsi_mem_alloc() which allocates the
8063 * corresponding SW VSI structure and initializes num_queue_pairs for the
8064 * newly allocated VSI.
8065 *
8066 * Returns 0 on success or negative on failure
8067 **/
8068static int i40e_vsi_setup_vectors(struct i40e_vsi *vsi)
8069{
8070 int ret = -ENOENT;
8071 struct i40e_pf *pf = vsi->back;
8072
Alexander Duyck493fb302013-09-28 07:01:44 +00008073 if (vsi->q_vectors[0]) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008074 dev_info(&pf->pdev->dev, "VSI %d has existing q_vectors\n",
8075 vsi->seid);
8076 return -EEXIST;
8077 }
8078
8079 if (vsi->base_vector) {
Jesse Brandeburgf29eaa32014-02-11 08:24:12 +00008080 dev_info(&pf->pdev->dev, "VSI %d has non-zero base vector %d\n",
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008081 vsi->seid, vsi->base_vector);
8082 return -EEXIST;
8083 }
8084
Greg Rose90e04072014-03-06 08:59:57 +00008085 ret = i40e_vsi_alloc_q_vectors(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008086 if (ret) {
8087 dev_info(&pf->pdev->dev,
8088 "failed to allocate %d q_vector for VSI %d, ret=%d\n",
8089 vsi->num_q_vectors, vsi->seid, ret);
8090 vsi->num_q_vectors = 0;
8091 goto vector_setup_out;
8092 }
8093
Shannon Nelson958a3e32013-09-28 07:13:28 +00008094 if (vsi->num_q_vectors)
8095 vsi->base_vector = i40e_get_lump(pf, pf->irq_pile,
8096 vsi->num_q_vectors, vsi->idx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008097 if (vsi->base_vector < 0) {
8098 dev_info(&pf->pdev->dev,
Shannon Nelson049a2be2014-10-17 03:14:50 +00008099 "failed to get tracking for %d vectors for VSI %d, err=%d\n",
8100 vsi->num_q_vectors, vsi->seid, vsi->base_vector);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008101 i40e_vsi_free_q_vectors(vsi);
8102 ret = -ENOENT;
8103 goto vector_setup_out;
8104 }
8105
8106vector_setup_out:
8107 return ret;
8108}
8109
8110/**
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00008111 * i40e_vsi_reinit_setup - return and reallocate resources for a VSI
8112 * @vsi: pointer to the vsi.
8113 *
8114 * This re-allocates a vsi's queue resources.
8115 *
8116 * Returns pointer to the successfully allocated and configured VSI sw struct
8117 * on success, otherwise returns NULL on failure.
8118 **/
8119static struct i40e_vsi *i40e_vsi_reinit_setup(struct i40e_vsi *vsi)
8120{
8121 struct i40e_pf *pf = vsi->back;
8122 u8 enabled_tc;
8123 int ret;
8124
8125 i40e_put_lump(pf->qp_pile, vsi->base_queue, vsi->idx);
8126 i40e_vsi_clear_rings(vsi);
8127
8128 i40e_vsi_free_arrays(vsi, false);
8129 i40e_set_num_rings_in_vsi(vsi);
8130 ret = i40e_vsi_alloc_arrays(vsi, false);
8131 if (ret)
8132 goto err_vsi;
8133
8134 ret = i40e_get_lump(pf, pf->qp_pile, vsi->alloc_queue_pairs, vsi->idx);
8135 if (ret < 0) {
Shannon Nelson049a2be2014-10-17 03:14:50 +00008136 dev_info(&pf->pdev->dev,
8137 "failed to get tracking for %d queues for VSI %d err=%d\n",
8138 vsi->alloc_queue_pairs, vsi->seid, ret);
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00008139 goto err_vsi;
8140 }
8141 vsi->base_queue = ret;
8142
8143 /* Update the FW view of the VSI. Force a reset of TC and queue
8144 * layout configurations.
8145 */
8146 enabled_tc = pf->vsi[pf->lan_vsi]->tc_config.enabled_tc;
8147 pf->vsi[pf->lan_vsi]->tc_config.enabled_tc = 0;
8148 pf->vsi[pf->lan_vsi]->seid = pf->main_vsi_seid;
8149 i40e_vsi_config_tc(pf->vsi[pf->lan_vsi], enabled_tc);
8150
8151 /* assign it some queues */
8152 ret = i40e_alloc_rings(vsi);
8153 if (ret)
8154 goto err_rings;
8155
8156 /* map all of the rings to the q_vectors */
8157 i40e_vsi_map_rings_to_vectors(vsi);
8158 return vsi;
8159
8160err_rings:
8161 i40e_vsi_free_q_vectors(vsi);
8162 if (vsi->netdev_registered) {
8163 vsi->netdev_registered = false;
8164 unregister_netdev(vsi->netdev);
8165 free_netdev(vsi->netdev);
8166 vsi->netdev = NULL;
8167 }
8168 i40e_aq_delete_element(&pf->hw, vsi->seid, NULL);
8169err_vsi:
8170 i40e_vsi_clear(vsi);
8171 return NULL;
8172}
8173
8174/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008175 * i40e_vsi_setup - Set up a VSI by a given type
8176 * @pf: board private structure
8177 * @type: VSI type
8178 * @uplink_seid: the switch element to link to
8179 * @param1: usage depends upon VSI type. For VF types, indicates VF id
8180 *
8181 * This allocates the sw VSI structure and its queue resources, then add a VSI
8182 * to the identified VEB.
8183 *
8184 * Returns pointer to the successfully allocated and configure VSI sw struct on
8185 * success, otherwise returns NULL on failure.
8186 **/
8187struct i40e_vsi *i40e_vsi_setup(struct i40e_pf *pf, u8 type,
8188 u16 uplink_seid, u32 param1)
8189{
8190 struct i40e_vsi *vsi = NULL;
8191 struct i40e_veb *veb = NULL;
8192 int ret, i;
8193 int v_idx;
8194
8195 /* The requested uplink_seid must be either
8196 * - the PF's port seid
8197 * no VEB is needed because this is the PF
8198 * or this is a Flow Director special case VSI
8199 * - seid of an existing VEB
8200 * - seid of a VSI that owns an existing VEB
8201 * - seid of a VSI that doesn't own a VEB
8202 * a new VEB is created and the VSI becomes the owner
8203 * - seid of the PF VSI, which is what creates the first VEB
8204 * this is a special case of the previous
8205 *
8206 * Find which uplink_seid we were given and create a new VEB if needed
8207 */
8208 for (i = 0; i < I40E_MAX_VEB; i++) {
8209 if (pf->veb[i] && pf->veb[i]->seid == uplink_seid) {
8210 veb = pf->veb[i];
8211 break;
8212 }
8213 }
8214
8215 if (!veb && uplink_seid != pf->mac_seid) {
8216
Mitch Williams505682c2014-05-20 08:01:37 +00008217 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008218 if (pf->vsi[i] && pf->vsi[i]->seid == uplink_seid) {
8219 vsi = pf->vsi[i];
8220 break;
8221 }
8222 }
8223 if (!vsi) {
8224 dev_info(&pf->pdev->dev, "no such uplink_seid %d\n",
8225 uplink_seid);
8226 return NULL;
8227 }
8228
8229 if (vsi->uplink_seid == pf->mac_seid)
8230 veb = i40e_veb_setup(pf, 0, pf->mac_seid, vsi->seid,
8231 vsi->tc_config.enabled_tc);
8232 else if ((vsi->flags & I40E_VSI_FLAG_VEB_OWNER) == 0)
8233 veb = i40e_veb_setup(pf, 0, vsi->uplink_seid, vsi->seid,
8234 vsi->tc_config.enabled_tc);
8235
8236 for (i = 0; i < I40E_MAX_VEB && !veb; i++) {
8237 if (pf->veb[i] && pf->veb[i]->seid == vsi->uplink_seid)
8238 veb = pf->veb[i];
8239 }
8240 if (!veb) {
8241 dev_info(&pf->pdev->dev, "couldn't add VEB\n");
8242 return NULL;
8243 }
8244
8245 vsi->flags |= I40E_VSI_FLAG_VEB_OWNER;
8246 uplink_seid = veb->seid;
8247 }
8248
8249 /* get vsi sw struct */
8250 v_idx = i40e_vsi_mem_alloc(pf, type);
8251 if (v_idx < 0)
8252 goto err_alloc;
8253 vsi = pf->vsi[v_idx];
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008254 if (!vsi)
8255 goto err_alloc;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008256 vsi->type = type;
8257 vsi->veb_idx = (veb ? veb->idx : I40E_NO_VEB);
8258
8259 if (type == I40E_VSI_MAIN)
8260 pf->lan_vsi = v_idx;
8261 else if (type == I40E_VSI_SRIOV)
8262 vsi->vf_id = param1;
8263 /* assign it some queues */
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008264 ret = i40e_get_lump(pf, pf->qp_pile, vsi->alloc_queue_pairs,
8265 vsi->idx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008266 if (ret < 0) {
Shannon Nelson049a2be2014-10-17 03:14:50 +00008267 dev_info(&pf->pdev->dev,
8268 "failed to get tracking for %d queues for VSI %d err=%d\n",
8269 vsi->alloc_queue_pairs, vsi->seid, ret);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008270 goto err_vsi;
8271 }
8272 vsi->base_queue = ret;
8273
8274 /* get a VSI from the hardware */
8275 vsi->uplink_seid = uplink_seid;
8276 ret = i40e_add_vsi(vsi);
8277 if (ret)
8278 goto err_vsi;
8279
8280 switch (vsi->type) {
8281 /* setup the netdev if needed */
8282 case I40E_VSI_MAIN:
8283 case I40E_VSI_VMDQ2:
Vasu Dev38e00432014-08-01 13:27:03 -07008284 case I40E_VSI_FCOE:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008285 ret = i40e_config_netdev(vsi);
8286 if (ret)
8287 goto err_netdev;
8288 ret = register_netdev(vsi->netdev);
8289 if (ret)
8290 goto err_netdev;
8291 vsi->netdev_registered = true;
8292 netif_carrier_off(vsi->netdev);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08008293#ifdef CONFIG_I40E_DCB
8294 /* Setup DCB netlink interface */
8295 i40e_dcbnl_setup(vsi);
8296#endif /* CONFIG_I40E_DCB */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008297 /* fall through */
8298
8299 case I40E_VSI_FDIR:
8300 /* set up vectors and rings if needed */
8301 ret = i40e_vsi_setup_vectors(vsi);
8302 if (ret)
8303 goto err_msix;
8304
8305 ret = i40e_alloc_rings(vsi);
8306 if (ret)
8307 goto err_rings;
8308
8309 /* map all of the rings to the q_vectors */
8310 i40e_vsi_map_rings_to_vectors(vsi);
8311
8312 i40e_vsi_reset_stats(vsi);
8313 break;
8314
8315 default:
8316 /* no netdev or rings for the other VSI types */
8317 break;
8318 }
8319
8320 return vsi;
8321
8322err_rings:
8323 i40e_vsi_free_q_vectors(vsi);
8324err_msix:
8325 if (vsi->netdev_registered) {
8326 vsi->netdev_registered = false;
8327 unregister_netdev(vsi->netdev);
8328 free_netdev(vsi->netdev);
8329 vsi->netdev = NULL;
8330 }
8331err_netdev:
8332 i40e_aq_delete_element(&pf->hw, vsi->seid, NULL);
8333err_vsi:
8334 i40e_vsi_clear(vsi);
8335err_alloc:
8336 return NULL;
8337}
8338
8339/**
8340 * i40e_veb_get_bw_info - Query VEB BW information
8341 * @veb: the veb to query
8342 *
8343 * Query the Tx scheduler BW configuration data for given VEB
8344 **/
8345static int i40e_veb_get_bw_info(struct i40e_veb *veb)
8346{
8347 struct i40e_aqc_query_switching_comp_ets_config_resp ets_data;
8348 struct i40e_aqc_query_switching_comp_bw_config_resp bw_data;
8349 struct i40e_pf *pf = veb->pf;
8350 struct i40e_hw *hw = &pf->hw;
8351 u32 tc_bw_max;
8352 int ret = 0;
8353 int i;
8354
8355 ret = i40e_aq_query_switch_comp_bw_config(hw, veb->seid,
8356 &bw_data, NULL);
8357 if (ret) {
8358 dev_info(&pf->pdev->dev,
8359 "query veb bw config failed, aq_err=%d\n",
8360 hw->aq.asq_last_status);
8361 goto out;
8362 }
8363
8364 ret = i40e_aq_query_switch_comp_ets_config(hw, veb->seid,
8365 &ets_data, NULL);
8366 if (ret) {
8367 dev_info(&pf->pdev->dev,
8368 "query veb bw ets config failed, aq_err=%d\n",
8369 hw->aq.asq_last_status);
8370 goto out;
8371 }
8372
8373 veb->bw_limit = le16_to_cpu(ets_data.port_bw_limit);
8374 veb->bw_max_quanta = ets_data.tc_bw_max;
8375 veb->is_abs_credits = bw_data.absolute_credits_enable;
Neerav Parikh23cd1f02014-11-12 00:18:41 +00008376 veb->enabled_tc = ets_data.tc_valid_bits;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008377 tc_bw_max = le16_to_cpu(bw_data.tc_bw_max[0]) |
8378 (le16_to_cpu(bw_data.tc_bw_max[1]) << 16);
8379 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
8380 veb->bw_tc_share_credits[i] = bw_data.tc_bw_share_credits[i];
8381 veb->bw_tc_limit_credits[i] =
8382 le16_to_cpu(bw_data.tc_bw_limits[i]);
8383 veb->bw_tc_max_quanta[i] = ((tc_bw_max >> (i*4)) & 0x7);
8384 }
8385
8386out:
8387 return ret;
8388}
8389
8390/**
8391 * i40e_veb_mem_alloc - Allocates the next available struct veb in the PF
8392 * @pf: board private structure
8393 *
8394 * On error: returns error code (negative)
8395 * On success: returns vsi index in PF (positive)
8396 **/
8397static int i40e_veb_mem_alloc(struct i40e_pf *pf)
8398{
8399 int ret = -ENOENT;
8400 struct i40e_veb *veb;
8401 int i;
8402
8403 /* Need to protect the allocation of switch elements at the PF level */
8404 mutex_lock(&pf->switch_mutex);
8405
8406 /* VEB list may be fragmented if VEB creation/destruction has
8407 * been happening. We can afford to do a quick scan to look
8408 * for any free slots in the list.
8409 *
8410 * find next empty veb slot, looping back around if necessary
8411 */
8412 i = 0;
8413 while ((i < I40E_MAX_VEB) && (pf->veb[i] != NULL))
8414 i++;
8415 if (i >= I40E_MAX_VEB) {
8416 ret = -ENOMEM;
8417 goto err_alloc_veb; /* out of VEB slots! */
8418 }
8419
8420 veb = kzalloc(sizeof(*veb), GFP_KERNEL);
8421 if (!veb) {
8422 ret = -ENOMEM;
8423 goto err_alloc_veb;
8424 }
8425 veb->pf = pf;
8426 veb->idx = i;
8427 veb->enabled_tc = 1;
8428
8429 pf->veb[i] = veb;
8430 ret = i;
8431err_alloc_veb:
8432 mutex_unlock(&pf->switch_mutex);
8433 return ret;
8434}
8435
8436/**
8437 * i40e_switch_branch_release - Delete a branch of the switch tree
8438 * @branch: where to start deleting
8439 *
8440 * This uses recursion to find the tips of the branch to be
8441 * removed, deleting until we get back to and can delete this VEB.
8442 **/
8443static void i40e_switch_branch_release(struct i40e_veb *branch)
8444{
8445 struct i40e_pf *pf = branch->pf;
8446 u16 branch_seid = branch->seid;
8447 u16 veb_idx = branch->idx;
8448 int i;
8449
8450 /* release any VEBs on this VEB - RECURSION */
8451 for (i = 0; i < I40E_MAX_VEB; i++) {
8452 if (!pf->veb[i])
8453 continue;
8454 if (pf->veb[i]->uplink_seid == branch->seid)
8455 i40e_switch_branch_release(pf->veb[i]);
8456 }
8457
8458 /* Release the VSIs on this VEB, but not the owner VSI.
8459 *
8460 * NOTE: Removing the last VSI on a VEB has the SIDE EFFECT of removing
8461 * the VEB itself, so don't use (*branch) after this loop.
8462 */
Mitch Williams505682c2014-05-20 08:01:37 +00008463 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008464 if (!pf->vsi[i])
8465 continue;
8466 if (pf->vsi[i]->uplink_seid == branch_seid &&
8467 (pf->vsi[i]->flags & I40E_VSI_FLAG_VEB_OWNER) == 0) {
8468 i40e_vsi_release(pf->vsi[i]);
8469 }
8470 }
8471
8472 /* There's one corner case where the VEB might not have been
8473 * removed, so double check it here and remove it if needed.
8474 * This case happens if the veb was created from the debugfs
8475 * commands and no VSIs were added to it.
8476 */
8477 if (pf->veb[veb_idx])
8478 i40e_veb_release(pf->veb[veb_idx]);
8479}
8480
8481/**
8482 * i40e_veb_clear - remove veb struct
8483 * @veb: the veb to remove
8484 **/
8485static void i40e_veb_clear(struct i40e_veb *veb)
8486{
8487 if (!veb)
8488 return;
8489
8490 if (veb->pf) {
8491 struct i40e_pf *pf = veb->pf;
8492
8493 mutex_lock(&pf->switch_mutex);
8494 if (pf->veb[veb->idx] == veb)
8495 pf->veb[veb->idx] = NULL;
8496 mutex_unlock(&pf->switch_mutex);
8497 }
8498
8499 kfree(veb);
8500}
8501
8502/**
8503 * i40e_veb_release - Delete a VEB and free its resources
8504 * @veb: the VEB being removed
8505 **/
8506void i40e_veb_release(struct i40e_veb *veb)
8507{
8508 struct i40e_vsi *vsi = NULL;
8509 struct i40e_pf *pf;
8510 int i, n = 0;
8511
8512 pf = veb->pf;
8513
8514 /* find the remaining VSI and check for extras */
Mitch Williams505682c2014-05-20 08:01:37 +00008515 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008516 if (pf->vsi[i] && pf->vsi[i]->uplink_seid == veb->seid) {
8517 n++;
8518 vsi = pf->vsi[i];
8519 }
8520 }
8521 if (n != 1) {
8522 dev_info(&pf->pdev->dev,
8523 "can't remove VEB %d with %d VSIs left\n",
8524 veb->seid, n);
8525 return;
8526 }
8527
8528 /* move the remaining VSI to uplink veb */
8529 vsi->flags &= ~I40E_VSI_FLAG_VEB_OWNER;
8530 if (veb->uplink_seid) {
8531 vsi->uplink_seid = veb->uplink_seid;
8532 if (veb->uplink_seid == pf->mac_seid)
8533 vsi->veb_idx = I40E_NO_VEB;
8534 else
8535 vsi->veb_idx = veb->veb_idx;
8536 } else {
8537 /* floating VEB */
8538 vsi->uplink_seid = pf->vsi[pf->lan_vsi]->uplink_seid;
8539 vsi->veb_idx = pf->vsi[pf->lan_vsi]->veb_idx;
8540 }
8541
8542 i40e_aq_delete_element(&pf->hw, veb->seid, NULL);
8543 i40e_veb_clear(veb);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008544}
8545
8546/**
8547 * i40e_add_veb - create the VEB in the switch
8548 * @veb: the VEB to be instantiated
8549 * @vsi: the controlling VSI
8550 **/
8551static int i40e_add_veb(struct i40e_veb *veb, struct i40e_vsi *vsi)
8552{
Greg Rose56747262013-11-28 06:39:37 +00008553 bool is_default = false;
Kevin Scotte1c51b952013-11-20 10:02:51 +00008554 bool is_cloud = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008555 int ret;
8556
8557 /* get a VEB from the hardware */
8558 ret = i40e_aq_add_veb(&veb->pf->hw, veb->uplink_seid, vsi->seid,
Kevin Scotte1c51b952013-11-20 10:02:51 +00008559 veb->enabled_tc, is_default,
8560 is_cloud, &veb->seid, NULL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008561 if (ret) {
8562 dev_info(&veb->pf->pdev->dev,
8563 "couldn't add VEB, err %d, aq_err %d\n",
8564 ret, veb->pf->hw.aq.asq_last_status);
8565 return -EPERM;
8566 }
8567
8568 /* get statistics counter */
8569 ret = i40e_aq_get_veb_parameters(&veb->pf->hw, veb->seid, NULL, NULL,
8570 &veb->stats_idx, NULL, NULL, NULL);
8571 if (ret) {
8572 dev_info(&veb->pf->pdev->dev,
8573 "couldn't get VEB statistics idx, err %d, aq_err %d\n",
8574 ret, veb->pf->hw.aq.asq_last_status);
8575 return -EPERM;
8576 }
8577 ret = i40e_veb_get_bw_info(veb);
8578 if (ret) {
8579 dev_info(&veb->pf->pdev->dev,
8580 "couldn't get VEB bw info, err %d, aq_err %d\n",
8581 ret, veb->pf->hw.aq.asq_last_status);
8582 i40e_aq_delete_element(&veb->pf->hw, veb->seid, NULL);
8583 return -ENOENT;
8584 }
8585
8586 vsi->uplink_seid = veb->seid;
8587 vsi->veb_idx = veb->idx;
8588 vsi->flags |= I40E_VSI_FLAG_VEB_OWNER;
8589
8590 return 0;
8591}
8592
8593/**
8594 * i40e_veb_setup - Set up a VEB
8595 * @pf: board private structure
8596 * @flags: VEB setup flags
8597 * @uplink_seid: the switch element to link to
8598 * @vsi_seid: the initial VSI seid
8599 * @enabled_tc: Enabled TC bit-map
8600 *
8601 * This allocates the sw VEB structure and links it into the switch
8602 * It is possible and legal for this to be a duplicate of an already
8603 * existing VEB. It is also possible for both uplink and vsi seids
8604 * to be zero, in order to create a floating VEB.
8605 *
8606 * Returns pointer to the successfully allocated VEB sw struct on
8607 * success, otherwise returns NULL on failure.
8608 **/
8609struct i40e_veb *i40e_veb_setup(struct i40e_pf *pf, u16 flags,
8610 u16 uplink_seid, u16 vsi_seid,
8611 u8 enabled_tc)
8612{
8613 struct i40e_veb *veb, *uplink_veb = NULL;
8614 int vsi_idx, veb_idx;
8615 int ret;
8616
8617 /* if one seid is 0, the other must be 0 to create a floating relay */
8618 if ((uplink_seid == 0 || vsi_seid == 0) &&
8619 (uplink_seid + vsi_seid != 0)) {
8620 dev_info(&pf->pdev->dev,
8621 "one, not both seid's are 0: uplink=%d vsi=%d\n",
8622 uplink_seid, vsi_seid);
8623 return NULL;
8624 }
8625
8626 /* make sure there is such a vsi and uplink */
Mitch Williams505682c2014-05-20 08:01:37 +00008627 for (vsi_idx = 0; vsi_idx < pf->num_alloc_vsi; vsi_idx++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008628 if (pf->vsi[vsi_idx] && pf->vsi[vsi_idx]->seid == vsi_seid)
8629 break;
Mitch Williams505682c2014-05-20 08:01:37 +00008630 if (vsi_idx >= pf->num_alloc_vsi && vsi_seid != 0) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008631 dev_info(&pf->pdev->dev, "vsi seid %d not found\n",
8632 vsi_seid);
8633 return NULL;
8634 }
8635
8636 if (uplink_seid && uplink_seid != pf->mac_seid) {
8637 for (veb_idx = 0; veb_idx < I40E_MAX_VEB; veb_idx++) {
8638 if (pf->veb[veb_idx] &&
8639 pf->veb[veb_idx]->seid == uplink_seid) {
8640 uplink_veb = pf->veb[veb_idx];
8641 break;
8642 }
8643 }
8644 if (!uplink_veb) {
8645 dev_info(&pf->pdev->dev,
8646 "uplink seid %d not found\n", uplink_seid);
8647 return NULL;
8648 }
8649 }
8650
8651 /* get veb sw struct */
8652 veb_idx = i40e_veb_mem_alloc(pf);
8653 if (veb_idx < 0)
8654 goto err_alloc;
8655 veb = pf->veb[veb_idx];
8656 veb->flags = flags;
8657 veb->uplink_seid = uplink_seid;
8658 veb->veb_idx = (uplink_veb ? uplink_veb->idx : I40E_NO_VEB);
8659 veb->enabled_tc = (enabled_tc ? enabled_tc : 0x1);
8660
8661 /* create the VEB in the switch */
8662 ret = i40e_add_veb(veb, pf->vsi[vsi_idx]);
8663 if (ret)
8664 goto err_veb;
Shannon Nelson1bb8b932014-04-23 04:49:54 +00008665 if (vsi_idx == pf->lan_vsi)
8666 pf->lan_veb = veb->idx;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008667
8668 return veb;
8669
8670err_veb:
8671 i40e_veb_clear(veb);
8672err_alloc:
8673 return NULL;
8674}
8675
8676/**
8677 * i40e_setup_pf_switch_element - set pf vars based on switch type
8678 * @pf: board private structure
8679 * @ele: element we are building info from
8680 * @num_reported: total number of elements
8681 * @printconfig: should we print the contents
8682 *
8683 * helper function to assist in extracting a few useful SEID values.
8684 **/
8685static void i40e_setup_pf_switch_element(struct i40e_pf *pf,
8686 struct i40e_aqc_switch_config_element_resp *ele,
8687 u16 num_reported, bool printconfig)
8688{
8689 u16 downlink_seid = le16_to_cpu(ele->downlink_seid);
8690 u16 uplink_seid = le16_to_cpu(ele->uplink_seid);
8691 u8 element_type = ele->element_type;
8692 u16 seid = le16_to_cpu(ele->seid);
8693
8694 if (printconfig)
8695 dev_info(&pf->pdev->dev,
8696 "type=%d seid=%d uplink=%d downlink=%d\n",
8697 element_type, seid, uplink_seid, downlink_seid);
8698
8699 switch (element_type) {
8700 case I40E_SWITCH_ELEMENT_TYPE_MAC:
8701 pf->mac_seid = seid;
8702 break;
8703 case I40E_SWITCH_ELEMENT_TYPE_VEB:
8704 /* Main VEB? */
8705 if (uplink_seid != pf->mac_seid)
8706 break;
8707 if (pf->lan_veb == I40E_NO_VEB) {
8708 int v;
8709
8710 /* find existing or else empty VEB */
8711 for (v = 0; v < I40E_MAX_VEB; v++) {
8712 if (pf->veb[v] && (pf->veb[v]->seid == seid)) {
8713 pf->lan_veb = v;
8714 break;
8715 }
8716 }
8717 if (pf->lan_veb == I40E_NO_VEB) {
8718 v = i40e_veb_mem_alloc(pf);
8719 if (v < 0)
8720 break;
8721 pf->lan_veb = v;
8722 }
8723 }
8724
8725 pf->veb[pf->lan_veb]->seid = seid;
8726 pf->veb[pf->lan_veb]->uplink_seid = pf->mac_seid;
8727 pf->veb[pf->lan_veb]->pf = pf;
8728 pf->veb[pf->lan_veb]->veb_idx = I40E_NO_VEB;
8729 break;
8730 case I40E_SWITCH_ELEMENT_TYPE_VSI:
8731 if (num_reported != 1)
8732 break;
8733 /* This is immediately after a reset so we can assume this is
8734 * the PF's VSI
8735 */
8736 pf->mac_seid = uplink_seid;
8737 pf->pf_seid = downlink_seid;
8738 pf->main_vsi_seid = seid;
8739 if (printconfig)
8740 dev_info(&pf->pdev->dev,
8741 "pf_seid=%d main_vsi_seid=%d\n",
8742 pf->pf_seid, pf->main_vsi_seid);
8743 break;
8744 case I40E_SWITCH_ELEMENT_TYPE_PF:
8745 case I40E_SWITCH_ELEMENT_TYPE_VF:
8746 case I40E_SWITCH_ELEMENT_TYPE_EMP:
8747 case I40E_SWITCH_ELEMENT_TYPE_BMC:
8748 case I40E_SWITCH_ELEMENT_TYPE_PE:
8749 case I40E_SWITCH_ELEMENT_TYPE_PA:
8750 /* ignore these for now */
8751 break;
8752 default:
8753 dev_info(&pf->pdev->dev, "unknown element type=%d seid=%d\n",
8754 element_type, seid);
8755 break;
8756 }
8757}
8758
8759/**
8760 * i40e_fetch_switch_configuration - Get switch config from firmware
8761 * @pf: board private structure
8762 * @printconfig: should we print the contents
8763 *
8764 * Get the current switch configuration from the device and
8765 * extract a few useful SEID values.
8766 **/
8767int i40e_fetch_switch_configuration(struct i40e_pf *pf, bool printconfig)
8768{
8769 struct i40e_aqc_get_switch_config_resp *sw_config;
8770 u16 next_seid = 0;
8771 int ret = 0;
8772 u8 *aq_buf;
8773 int i;
8774
8775 aq_buf = kzalloc(I40E_AQ_LARGE_BUF, GFP_KERNEL);
8776 if (!aq_buf)
8777 return -ENOMEM;
8778
8779 sw_config = (struct i40e_aqc_get_switch_config_resp *)aq_buf;
8780 do {
8781 u16 num_reported, num_total;
8782
8783 ret = i40e_aq_get_switch_config(&pf->hw, sw_config,
8784 I40E_AQ_LARGE_BUF,
8785 &next_seid, NULL);
8786 if (ret) {
8787 dev_info(&pf->pdev->dev,
8788 "get switch config failed %d aq_err=%x\n",
8789 ret, pf->hw.aq.asq_last_status);
8790 kfree(aq_buf);
8791 return -ENOENT;
8792 }
8793
8794 num_reported = le16_to_cpu(sw_config->header.num_reported);
8795 num_total = le16_to_cpu(sw_config->header.num_total);
8796
8797 if (printconfig)
8798 dev_info(&pf->pdev->dev,
8799 "header: %d reported %d total\n",
8800 num_reported, num_total);
8801
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008802 for (i = 0; i < num_reported; i++) {
8803 struct i40e_aqc_switch_config_element_resp *ele =
8804 &sw_config->element[i];
8805
8806 i40e_setup_pf_switch_element(pf, ele, num_reported,
8807 printconfig);
8808 }
8809 } while (next_seid != 0);
8810
8811 kfree(aq_buf);
8812 return ret;
8813}
8814
8815/**
8816 * i40e_setup_pf_switch - Setup the HW switch on startup or after reset
8817 * @pf: board private structure
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00008818 * @reinit: if the Main VSI needs to re-initialized.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008819 *
8820 * Returns 0 on success, negative value on failure
8821 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00008822static int i40e_setup_pf_switch(struct i40e_pf *pf, bool reinit)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008823{
8824 int ret;
8825
8826 /* find out what's out there already */
8827 ret = i40e_fetch_switch_configuration(pf, false);
8828 if (ret) {
8829 dev_info(&pf->pdev->dev,
8830 "couldn't fetch switch config, err %d, aq_err %d\n",
8831 ret, pf->hw.aq.asq_last_status);
8832 return ret;
8833 }
8834 i40e_pf_reset_stats(pf);
8835
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008836 /* first time setup */
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00008837 if (pf->lan_vsi == I40E_NO_VSI || reinit) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008838 struct i40e_vsi *vsi = NULL;
8839 u16 uplink_seid;
8840
8841 /* Set up the PF VSI associated with the PF's main VSI
8842 * that is already in the HW switch
8843 */
8844 if (pf->lan_veb != I40E_NO_VEB && pf->veb[pf->lan_veb])
8845 uplink_seid = pf->veb[pf->lan_veb]->seid;
8846 else
8847 uplink_seid = pf->mac_seid;
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00008848 if (pf->lan_vsi == I40E_NO_VSI)
8849 vsi = i40e_vsi_setup(pf, I40E_VSI_MAIN, uplink_seid, 0);
8850 else if (reinit)
8851 vsi = i40e_vsi_reinit_setup(pf->vsi[pf->lan_vsi]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008852 if (!vsi) {
8853 dev_info(&pf->pdev->dev, "setup of MAIN VSI failed\n");
8854 i40e_fdir_teardown(pf);
8855 return -EAGAIN;
8856 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008857 } else {
8858 /* force a reset of TC and queue layout configurations */
8859 u8 enabled_tc = pf->vsi[pf->lan_vsi]->tc_config.enabled_tc;
8860 pf->vsi[pf->lan_vsi]->tc_config.enabled_tc = 0;
8861 pf->vsi[pf->lan_vsi]->seid = pf->main_vsi_seid;
8862 i40e_vsi_config_tc(pf->vsi[pf->lan_vsi], enabled_tc);
8863 }
8864 i40e_vlan_stripping_disable(pf->vsi[pf->lan_vsi]);
8865
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008866 i40e_fdir_sb_setup(pf);
8867
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008868 /* Setup static PF queue filter control settings */
8869 ret = i40e_setup_pf_filter_control(pf);
8870 if (ret) {
8871 dev_info(&pf->pdev->dev, "setup_pf_filter_control failed: %d\n",
8872 ret);
8873 /* Failure here should not stop continuing other steps */
8874 }
8875
8876 /* enable RSS in the HW, even for only one queue, as the stack can use
8877 * the hash
8878 */
8879 if ((pf->flags & I40E_FLAG_RSS_ENABLED))
8880 i40e_config_rss(pf);
8881
8882 /* fill in link information and enable LSE reporting */
Catherine Sullivan8109e122014-06-04 08:45:24 +00008883 i40e_update_link_info(&pf->hw, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008884 i40e_link_event(pf);
8885
Jesse Brandeburgd52c20b2013-11-26 10:49:15 +00008886 /* Initialize user-specific link properties */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008887 pf->fc_autoneg_status = ((pf->hw.phy.link_info.an_info &
8888 I40E_AQ_AN_COMPLETED) ? true : false);
Jesse Brandeburgd52c20b2013-11-26 10:49:15 +00008889
Mitch Williamsa34a6712014-09-13 07:40:46 +00008890 /* fill in link information and enable LSE reporting */
8891 i40e_update_link_info(&pf->hw, true);
8892 i40e_link_event(pf);
8893
8894 /* Initialize user-specific link properties */
8895 pf->fc_autoneg_status = ((pf->hw.phy.link_info.an_info &
8896 I40E_AQ_AN_COMPLETED) ? true : false);
8897
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00008898 i40e_ptp_init(pf);
8899
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008900 return ret;
8901}
8902
8903/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008904 * i40e_determine_queue_usage - Work out queue distribution
8905 * @pf: board private structure
8906 **/
8907static void i40e_determine_queue_usage(struct i40e_pf *pf)
8908{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008909 int queues_left;
8910
8911 pf->num_lan_qps = 0;
Vasu Dev38e00432014-08-01 13:27:03 -07008912#ifdef I40E_FCOE
8913 pf->num_fcoe_qps = 0;
8914#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008915
8916 /* Find the max queues to be put into basic use. We'll always be
8917 * using TC0, whether or not DCB is running, and TC0 will get the
8918 * big RSS set.
8919 */
8920 queues_left = pf->hw.func_caps.num_tx_qp;
8921
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008922 if ((queues_left == 1) ||
Frank Zhang9aa7e932014-05-20 08:01:42 +00008923 !(pf->flags & I40E_FLAG_MSIX_ENABLED)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008924 /* one qp for PF, no queues for anything else */
8925 queues_left = 0;
8926 pf->rss_size = pf->num_lan_qps = 1;
8927
8928 /* make sure all the fancies are disabled */
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08008929 pf->flags &= ~(I40E_FLAG_RSS_ENABLED |
Vasu Dev38e00432014-08-01 13:27:03 -07008930#ifdef I40E_FCOE
8931 I40E_FLAG_FCOE_ENABLED |
8932#endif
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08008933 I40E_FLAG_FD_SB_ENABLED |
8934 I40E_FLAG_FD_ATR_ENABLED |
Neerav Parikh4d9b6042014-05-22 06:31:51 +00008935 I40E_FLAG_DCB_CAPABLE |
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08008936 I40E_FLAG_SRIOV_ENABLED |
8937 I40E_FLAG_VMDQ_ENABLED);
Frank Zhang9aa7e932014-05-20 08:01:42 +00008938 } else if (!(pf->flags & (I40E_FLAG_RSS_ENABLED |
8939 I40E_FLAG_FD_SB_ENABLED |
Anjali Singhai Jainbbe7d0e2014-05-20 08:01:44 +00008940 I40E_FLAG_FD_ATR_ENABLED |
Neerav Parikh4d9b6042014-05-22 06:31:51 +00008941 I40E_FLAG_DCB_CAPABLE))) {
Frank Zhang9aa7e932014-05-20 08:01:42 +00008942 /* one qp for PF */
8943 pf->rss_size = pf->num_lan_qps = 1;
8944 queues_left -= pf->num_lan_qps;
8945
8946 pf->flags &= ~(I40E_FLAG_RSS_ENABLED |
Vasu Dev38e00432014-08-01 13:27:03 -07008947#ifdef I40E_FCOE
8948 I40E_FLAG_FCOE_ENABLED |
8949#endif
Frank Zhang9aa7e932014-05-20 08:01:42 +00008950 I40E_FLAG_FD_SB_ENABLED |
8951 I40E_FLAG_FD_ATR_ENABLED |
8952 I40E_FLAG_DCB_ENABLED |
8953 I40E_FLAG_VMDQ_ENABLED);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008954 } else {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008955 /* Not enough queues for all TCs */
Neerav Parikh4d9b6042014-05-22 06:31:51 +00008956 if ((pf->flags & I40E_FLAG_DCB_CAPABLE) &&
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008957 (queues_left < I40E_MAX_TRAFFIC_CLASS)) {
Neerav Parikh4d9b6042014-05-22 06:31:51 +00008958 pf->flags &= ~I40E_FLAG_DCB_CAPABLE;
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008959 dev_info(&pf->pdev->dev, "not enough queues for DCB. DCB is disabled.\n");
8960 }
8961 pf->num_lan_qps = pf->rss_size_max;
8962 queues_left -= pf->num_lan_qps;
8963 }
8964
Vasu Dev38e00432014-08-01 13:27:03 -07008965#ifdef I40E_FCOE
8966 if (pf->flags & I40E_FLAG_FCOE_ENABLED) {
8967 if (I40E_DEFAULT_FCOE <= queues_left) {
8968 pf->num_fcoe_qps = I40E_DEFAULT_FCOE;
8969 } else if (I40E_MINIMUM_FCOE <= queues_left) {
8970 pf->num_fcoe_qps = I40E_MINIMUM_FCOE;
8971 } else {
8972 pf->num_fcoe_qps = 0;
8973 pf->flags &= ~I40E_FLAG_FCOE_ENABLED;
8974 dev_info(&pf->pdev->dev, "not enough queues for FCoE. FCoE feature will be disabled\n");
8975 }
8976
8977 queues_left -= pf->num_fcoe_qps;
8978 }
8979
8980#endif
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008981 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
8982 if (queues_left > 1) {
8983 queues_left -= 1; /* save 1 queue for FD */
8984 } else {
8985 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
8986 dev_info(&pf->pdev->dev, "not enough queues for Flow Director. Flow Director feature is disabled\n");
8987 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008988 }
8989
8990 if ((pf->flags & I40E_FLAG_SRIOV_ENABLED) &&
8991 pf->num_vf_qps && pf->num_req_vfs && queues_left) {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008992 pf->num_req_vfs = min_t(int, pf->num_req_vfs,
8993 (queues_left / pf->num_vf_qps));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008994 queues_left -= (pf->num_req_vfs * pf->num_vf_qps);
8995 }
8996
8997 if ((pf->flags & I40E_FLAG_VMDQ_ENABLED) &&
8998 pf->num_vmdq_vsis && pf->num_vmdq_qps && queues_left) {
8999 pf->num_vmdq_vsis = min_t(int, pf->num_vmdq_vsis,
9000 (queues_left / pf->num_vmdq_qps));
9001 queues_left -= (pf->num_vmdq_vsis * pf->num_vmdq_qps);
9002 }
9003
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00009004 pf->queues_left = queues_left;
Vasu Dev38e00432014-08-01 13:27:03 -07009005#ifdef I40E_FCOE
9006 dev_info(&pf->pdev->dev, "fcoe queues = %d\n", pf->num_fcoe_qps);
9007#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009008}
9009
9010/**
9011 * i40e_setup_pf_filter_control - Setup PF static filter control
9012 * @pf: PF to be setup
9013 *
9014 * i40e_setup_pf_filter_control sets up a pf's initial filter control
9015 * settings. If PE/FCoE are enabled then it will also set the per PF
9016 * based filter sizes required for them. It also enables Flow director,
9017 * ethertype and macvlan type filter settings for the pf.
9018 *
9019 * Returns 0 on success, negative on failure
9020 **/
9021static int i40e_setup_pf_filter_control(struct i40e_pf *pf)
9022{
9023 struct i40e_filter_control_settings *settings = &pf->filter_settings;
9024
9025 settings->hash_lut_size = I40E_HASH_LUT_SIZE_128;
9026
9027 /* Flow Director is enabled */
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08009028 if (pf->flags & (I40E_FLAG_FD_SB_ENABLED | I40E_FLAG_FD_ATR_ENABLED))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009029 settings->enable_fdir = true;
9030
9031 /* Ethtype and MACVLAN filters enabled for PF */
9032 settings->enable_ethtype = true;
9033 settings->enable_macvlan = true;
9034
9035 if (i40e_set_filter_control(&pf->hw, settings))
9036 return -ENOENT;
9037
9038 return 0;
9039}
9040
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00009041#define INFO_STRING_LEN 255
9042static void i40e_print_features(struct i40e_pf *pf)
9043{
9044 struct i40e_hw *hw = &pf->hw;
9045 char *buf, *string;
9046
9047 string = kzalloc(INFO_STRING_LEN, GFP_KERNEL);
9048 if (!string) {
9049 dev_err(&pf->pdev->dev, "Features string allocation failed\n");
9050 return;
9051 }
9052
9053 buf = string;
9054
9055 buf += sprintf(string, "Features: PF-id[%d] ", hw->pf_id);
9056#ifdef CONFIG_PCI_IOV
9057 buf += sprintf(buf, "VFs: %d ", pf->num_req_vfs);
9058#endif
9059 buf += sprintf(buf, "VSIs: %d QP: %d ", pf->hw.func_caps.num_vsis,
9060 pf->vsi[pf->lan_vsi]->num_queue_pairs);
9061
9062 if (pf->flags & I40E_FLAG_RSS_ENABLED)
9063 buf += sprintf(buf, "RSS ");
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00009064 if (pf->flags & I40E_FLAG_FD_ATR_ENABLED)
Akeem G Abodunrinc6423ff2014-05-10 04:49:08 +00009065 buf += sprintf(buf, "FD_ATR ");
9066 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
9067 buf += sprintf(buf, "FD_SB ");
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00009068 buf += sprintf(buf, "NTUPLE ");
Akeem G Abodunrinc6423ff2014-05-10 04:49:08 +00009069 }
Neerav Parikh4d9b6042014-05-22 06:31:51 +00009070 if (pf->flags & I40E_FLAG_DCB_CAPABLE)
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00009071 buf += sprintf(buf, "DCB ");
9072 if (pf->flags & I40E_FLAG_PTP)
9073 buf += sprintf(buf, "PTP ");
Vasu Dev38e00432014-08-01 13:27:03 -07009074#ifdef I40E_FCOE
9075 if (pf->flags & I40E_FLAG_FCOE_ENABLED)
9076 buf += sprintf(buf, "FCOE ");
9077#endif
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00009078
9079 BUG_ON(buf > (string + INFO_STRING_LEN));
9080 dev_info(&pf->pdev->dev, "%s\n", string);
9081 kfree(string);
9082}
9083
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009084/**
9085 * i40e_probe - Device initialization routine
9086 * @pdev: PCI device information struct
9087 * @ent: entry in i40e_pci_tbl
9088 *
9089 * i40e_probe initializes a pf identified by a pci_dev structure.
9090 * The OS initialization, configuring of the pf private structure,
9091 * and a hardware reset occur.
9092 *
9093 * Returns 0 on success, negative on failure
9094 **/
9095static int i40e_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
9096{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009097 struct i40e_pf *pf;
9098 struct i40e_hw *hw;
Anjali Singhai Jain93cd7652013-11-20 10:03:01 +00009099 static u16 pfs_found;
Catherine Sullivand4dfb812013-11-28 06:39:21 +00009100 u16 link_status;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009101 int err = 0;
9102 u32 len;
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00009103 u32 i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009104
9105 err = pci_enable_device_mem(pdev);
9106 if (err)
9107 return err;
9108
9109 /* set up for high or low dma */
Mitch Williams64942942014-02-11 08:26:33 +00009110 err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64));
Mitch Williams64942942014-02-11 08:26:33 +00009111 if (err) {
Jean Sacrene3e3bfd2014-03-25 04:30:27 +00009112 err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
9113 if (err) {
9114 dev_err(&pdev->dev,
9115 "DMA configuration failed: 0x%x\n", err);
9116 goto err_dma;
9117 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009118 }
9119
9120 /* set up pci connections */
9121 err = pci_request_selected_regions(pdev, pci_select_bars(pdev,
9122 IORESOURCE_MEM), i40e_driver_name);
9123 if (err) {
9124 dev_info(&pdev->dev,
9125 "pci_request_selected_regions failed %d\n", err);
9126 goto err_pci_reg;
9127 }
9128
9129 pci_enable_pcie_error_reporting(pdev);
9130 pci_set_master(pdev);
9131
9132 /* Now that we have a PCI connection, we need to do the
9133 * low level device setup. This is primarily setting up
9134 * the Admin Queue structures and then querying for the
9135 * device's current profile information.
9136 */
9137 pf = kzalloc(sizeof(*pf), GFP_KERNEL);
9138 if (!pf) {
9139 err = -ENOMEM;
9140 goto err_pf_alloc;
9141 }
9142 pf->next_vsi = 0;
9143 pf->pdev = pdev;
9144 set_bit(__I40E_DOWN, &pf->state);
9145
9146 hw = &pf->hw;
9147 hw->back = pf;
9148 hw->hw_addr = ioremap(pci_resource_start(pdev, 0),
9149 pci_resource_len(pdev, 0));
9150 if (!hw->hw_addr) {
9151 err = -EIO;
9152 dev_info(&pdev->dev, "ioremap(0x%04x, 0x%04x) failed: 0x%x\n",
9153 (unsigned int)pci_resource_start(pdev, 0),
9154 (unsigned int)pci_resource_len(pdev, 0), err);
9155 goto err_ioremap;
9156 }
9157 hw->vendor_id = pdev->vendor;
9158 hw->device_id = pdev->device;
9159 pci_read_config_byte(pdev, PCI_REVISION_ID, &hw->revision_id);
9160 hw->subsystem_vendor_id = pdev->subsystem_vendor;
9161 hw->subsystem_device_id = pdev->subsystem_device;
9162 hw->bus.device = PCI_SLOT(pdev->devfn);
9163 hw->bus.func = PCI_FUNC(pdev->devfn);
Anjali Singhai Jain93cd7652013-11-20 10:03:01 +00009164 pf->instance = pfs_found;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009165
Shannon Nelson5b5faa42014-10-17 03:14:51 +00009166 if (debug != -1) {
9167 pf->msg_enable = pf->hw.debug_mask;
9168 pf->msg_enable = debug;
9169 }
9170
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00009171 /* do a special CORER for clearing PXE mode once at init */
9172 if (hw->revision_id == 0 &&
9173 (rd32(hw, I40E_GLLAN_RCTL_0) & I40E_GLLAN_RCTL_0_PXE_MODE_MASK)) {
9174 wr32(hw, I40E_GLGEN_RTRIG, I40E_GLGEN_RTRIG_CORER_MASK);
9175 i40e_flush(hw);
9176 msleep(200);
9177 pf->corer_count++;
9178
9179 i40e_clear_pxe_mode(hw);
9180 }
9181
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009182 /* Reset here to make sure all is clean and to define PF 'n' */
Shannon Nelson838d41d2014-06-04 20:41:27 +00009183 i40e_clear_hw(hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009184 err = i40e_pf_reset(hw);
9185 if (err) {
9186 dev_info(&pdev->dev, "Initial pf_reset failed: %d\n", err);
9187 goto err_pf_reset;
9188 }
9189 pf->pfr_count++;
9190
9191 hw->aq.num_arq_entries = I40E_AQ_LEN;
9192 hw->aq.num_asq_entries = I40E_AQ_LEN;
9193 hw->aq.arq_buf_size = I40E_MAX_AQ_BUF_SIZE;
9194 hw->aq.asq_buf_size = I40E_MAX_AQ_BUF_SIZE;
9195 pf->adminq_work_limit = I40E_AQ_WORK_LIMIT;
9196 snprintf(pf->misc_int_name, sizeof(pf->misc_int_name) - 1,
9197 "%s-pf%d:misc",
9198 dev_driver_string(&pf->pdev->dev), pf->hw.pf_id);
9199
9200 err = i40e_init_shared_code(hw);
9201 if (err) {
9202 dev_info(&pdev->dev, "init_shared_code failed: %d\n", err);
9203 goto err_pf_reset;
9204 }
9205
Jesse Brandeburgd52c20b2013-11-26 10:49:15 +00009206 /* set up a default setting for link flow control */
9207 pf->hw.fc.requested_mode = I40E_FC_NONE;
9208
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009209 err = i40e_init_adminq(hw);
9210 dev_info(&pdev->dev, "%s\n", i40e_fw_version_str(hw));
9211 if (err) {
9212 dev_info(&pdev->dev,
Catherine Sullivan7aa67612014-07-09 07:46:17 +00009213 "The driver for the device stopped because the NVM image is newer than expected. You must install the most recent version of the network driver.\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009214 goto err_pf_reset;
9215 }
9216
Catherine Sullivan7aa67612014-07-09 07:46:17 +00009217 if (hw->aq.api_maj_ver == I40E_FW_API_VERSION_MAJOR &&
9218 hw->aq.api_min_ver > I40E_FW_API_VERSION_MINOR)
Shannon Nelson278b6f62014-06-04 01:41:03 +00009219 dev_info(&pdev->dev,
Catherine Sullivan7aa67612014-07-09 07:46:17 +00009220 "The driver for the device detected a newer version of the NVM image than expected. Please install the most recent version of the network driver.\n");
9221 else if (hw->aq.api_maj_ver < I40E_FW_API_VERSION_MAJOR ||
9222 hw->aq.api_min_ver < (I40E_FW_API_VERSION_MINOR - 1))
Shannon Nelson278b6f62014-06-04 01:41:03 +00009223 dev_info(&pdev->dev,
Catherine Sullivan7aa67612014-07-09 07:46:17 +00009224 "The driver for the device detected an older version of the NVM image than expected. Please update the NVM image.\n");
Shannon Nelson278b6f62014-06-04 01:41:03 +00009225
9226
Shannon Nelson4eb3f762014-03-06 08:59:58 +00009227 i40e_verify_eeprom(pf);
9228
Jesse Brandeburg2c5fe332014-04-23 04:49:57 +00009229 /* Rev 0 hardware was never productized */
9230 if (hw->revision_id < 1)
9231 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");
9232
Shannon Nelson6ff4ef82013-12-21 05:44:49 +00009233 i40e_clear_pxe_mode(hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009234 err = i40e_get_capabilities(pf);
9235 if (err)
9236 goto err_adminq_setup;
9237
9238 err = i40e_sw_init(pf);
9239 if (err) {
9240 dev_info(&pdev->dev, "sw_init failed: %d\n", err);
9241 goto err_sw_init;
9242 }
9243
9244 err = i40e_init_lan_hmc(hw, hw->func_caps.num_tx_qp,
9245 hw->func_caps.num_rx_qp,
9246 pf->fcoe_hmc_cntx_num, pf->fcoe_hmc_filt_num);
9247 if (err) {
9248 dev_info(&pdev->dev, "init_lan_hmc failed: %d\n", err);
9249 goto err_init_lan_hmc;
9250 }
9251
9252 err = i40e_configure_lan_hmc(hw, I40E_HMC_MODEL_DIRECT_ONLY);
9253 if (err) {
9254 dev_info(&pdev->dev, "configure_lan_hmc failed: %d\n", err);
9255 err = -ENOENT;
9256 goto err_configure_lan_hmc;
9257 }
9258
9259 i40e_get_mac_addr(hw, hw->mac.addr);
Jesse Brandeburgf62b5062013-11-28 06:39:27 +00009260 if (!is_valid_ether_addr(hw->mac.addr)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009261 dev_info(&pdev->dev, "invalid MAC address %pM\n", hw->mac.addr);
9262 err = -EIO;
9263 goto err_mac_addr;
9264 }
9265 dev_info(&pdev->dev, "MAC address: %pM\n", hw->mac.addr);
Greg Rose9a173902014-05-22 06:32:02 +00009266 ether_addr_copy(hw->mac.perm_addr, hw->mac.addr);
Neerav Parikh1f224ad2014-02-12 01:45:31 +00009267 i40e_get_port_mac_addr(hw, hw->mac.port_addr);
9268 if (is_valid_ether_addr(hw->mac.port_addr))
9269 pf->flags |= I40E_FLAG_PORT_ID_VALID;
Vasu Dev38e00432014-08-01 13:27:03 -07009270#ifdef I40E_FCOE
9271 err = i40e_get_san_mac_addr(hw, hw->mac.san_addr);
9272 if (err)
9273 dev_info(&pdev->dev,
9274 "(non-fatal) SAN MAC retrieval failed: %d\n", err);
9275 if (!is_valid_ether_addr(hw->mac.san_addr)) {
9276 dev_warn(&pdev->dev, "invalid SAN MAC address %pM, falling back to LAN MAC\n",
9277 hw->mac.san_addr);
9278 ether_addr_copy(hw->mac.san_addr, hw->mac.addr);
9279 }
9280 dev_info(&pf->pdev->dev, "SAN MAC: %pM\n", hw->mac.san_addr);
9281#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009282
9283 pci_set_drvdata(pdev, pf);
9284 pci_save_state(pdev);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08009285#ifdef CONFIG_I40E_DCB
9286 err = i40e_init_pf_dcb(pf);
9287 if (err) {
9288 dev_info(&pdev->dev, "init_pf_dcb failed: %d\n", err);
Neerav Parikh4d9b6042014-05-22 06:31:51 +00009289 pf->flags &= ~I40E_FLAG_DCB_CAPABLE;
Neerav Parikh014269f2014-04-01 07:11:48 +00009290 /* Continue without DCB enabled */
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08009291 }
9292#endif /* CONFIG_I40E_DCB */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009293
9294 /* set up periodic task facility */
9295 setup_timer(&pf->service_timer, i40e_service_timer, (unsigned long)pf);
9296 pf->service_timer_period = HZ;
9297
9298 INIT_WORK(&pf->service_task, i40e_service_task);
9299 clear_bit(__I40E_SERVICE_SCHED, &pf->state);
9300 pf->flags |= I40E_FLAG_NEED_LINK_UPDATE;
9301 pf->link_check_timeout = jiffies;
9302
Shannon Nelson8e2773a2013-11-28 06:39:22 +00009303 /* WoL defaults to disabled */
9304 pf->wol_en = false;
9305 device_set_wakeup_enable(&pf->pdev->dev, pf->wol_en);
9306
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009307 /* set up the main switch operations */
9308 i40e_determine_queue_usage(pf);
9309 i40e_init_interrupt_scheme(pf);
9310
Mitch Williams505682c2014-05-20 08:01:37 +00009311 /* The number of VSIs reported by the FW is the minimum guaranteed
9312 * to us; HW supports far more and we share the remaining pool with
9313 * the other PFs. We allocate space for more than the guarantee with
9314 * the understanding that we might not get them all later.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009315 */
Mitch Williams505682c2014-05-20 08:01:37 +00009316 if (pf->hw.func_caps.num_vsis < I40E_MIN_VSI_ALLOC)
9317 pf->num_alloc_vsi = I40E_MIN_VSI_ALLOC;
9318 else
9319 pf->num_alloc_vsi = pf->hw.func_caps.num_vsis;
9320
9321 /* Set up the *vsi struct and our local tracking of the MAIN PF vsi. */
9322 len = sizeof(struct i40e_vsi *) * pf->num_alloc_vsi;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009323 pf->vsi = kzalloc(len, GFP_KERNEL);
Wei Yongjuned87ac02013-09-24 05:17:25 +00009324 if (!pf->vsi) {
9325 err = -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009326 goto err_switch_setup;
Wei Yongjuned87ac02013-09-24 05:17:25 +00009327 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009328
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00009329 err = i40e_setup_pf_switch(pf, false);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009330 if (err) {
9331 dev_info(&pdev->dev, "setup_pf_switch failed: %d\n", err);
9332 goto err_vsis;
9333 }
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00009334 /* if FDIR VSI was set up, start it now */
Mitch Williams505682c2014-05-20 08:01:37 +00009335 for (i = 0; i < pf->num_alloc_vsi; i++) {
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00009336 if (pf->vsi[i] && pf->vsi[i]->type == I40E_VSI_FDIR) {
9337 i40e_vsi_open(pf->vsi[i]);
9338 break;
9339 }
9340 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009341
Jesse Brandeburg7e2453f2014-09-13 07:40:41 +00009342 /* driver is only interested in link up/down and module qualification
9343 * reports from firmware
9344 */
9345 err = i40e_aq_set_phy_int_mask(&pf->hw,
9346 I40E_AQ_EVENT_LINK_UPDOWN |
9347 I40E_AQ_EVENT_MODULE_QUAL_FAIL, NULL);
9348 if (err)
9349 dev_info(&pf->pdev->dev, "set phy mask fail, aq_err %d\n", err);
9350
Anjali Singhai Jaincafa2ee2014-09-13 07:40:45 +00009351 msleep(75);
9352 err = i40e_aq_set_link_restart_an(&pf->hw, true, NULL);
9353 if (err) {
9354 dev_info(&pf->pdev->dev, "link restart failed, aq_err=%d\n",
9355 pf->hw.aq.asq_last_status);
9356 }
9357
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009358 /* The main driver is (mostly) up and happy. We need to set this state
9359 * before setting up the misc vector or we get a race and the vector
9360 * ends up disabled forever.
9361 */
9362 clear_bit(__I40E_DOWN, &pf->state);
9363
9364 /* In case of MSIX we are going to setup the misc vector right here
9365 * to handle admin queue events etc. In case of legacy and MSI
9366 * the misc functionality and queue processing is combined in
9367 * the same vector and that gets setup at open.
9368 */
9369 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
9370 err = i40e_setup_misc_vector(pf);
9371 if (err) {
9372 dev_info(&pdev->dev,
9373 "setup of misc vector failed: %d\n", err);
9374 goto err_vsis;
9375 }
9376 }
9377
Greg Rosedf805f62014-04-04 04:43:16 +00009378#ifdef CONFIG_PCI_IOV
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009379 /* prep for VF support */
9380 if ((pf->flags & I40E_FLAG_SRIOV_ENABLED) &&
Shannon Nelson4eb3f762014-03-06 08:59:58 +00009381 (pf->flags & I40E_FLAG_MSIX_ENABLED) &&
9382 !test_bit(__I40E_BAD_EEPROM, &pf->state)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009383 u32 val;
9384
9385 /* disable link interrupts for VFs */
9386 val = rd32(hw, I40E_PFGEN_PORTMDIO_NUM);
9387 val &= ~I40E_PFGEN_PORTMDIO_NUM_VFLINK_STAT_ENA_MASK;
9388 wr32(hw, I40E_PFGEN_PORTMDIO_NUM, val);
9389 i40e_flush(hw);
Mitch Williams4aeec012014-02-13 03:48:47 -08009390
9391 if (pci_num_vf(pdev)) {
9392 dev_info(&pdev->dev,
9393 "Active VFs found, allocating resources.\n");
9394 err = i40e_alloc_vfs(pf, pci_num_vf(pdev));
9395 if (err)
9396 dev_info(&pdev->dev,
9397 "Error %d allocating resources for existing VFs\n",
9398 err);
9399 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009400 }
Greg Rosedf805f62014-04-04 04:43:16 +00009401#endif /* CONFIG_PCI_IOV */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009402
Anjali Singhai Jain93cd7652013-11-20 10:03:01 +00009403 pfs_found++;
9404
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009405 i40e_dbg_pf_init(pf);
9406
9407 /* tell the firmware that we're starting */
Jesse Brandeburg44033fa2014-04-23 04:50:15 +00009408 i40e_send_version(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009409
9410 /* since everything's happy, start the service_task timer */
9411 mod_timer(&pf->service_timer,
9412 round_jiffies(jiffies + pf->service_timer_period));
9413
Vasu Dev38e00432014-08-01 13:27:03 -07009414#ifdef I40E_FCOE
9415 /* create FCoE interface */
9416 i40e_fcoe_vsi_setup(pf);
9417
9418#endif
Catherine Sullivand4dfb812013-11-28 06:39:21 +00009419 /* Get the negotiated link width and speed from PCI config space */
9420 pcie_capability_read_word(pf->pdev, PCI_EXP_LNKSTA, &link_status);
9421
9422 i40e_set_pci_config_data(hw, link_status);
9423
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00009424 dev_info(&pdev->dev, "PCI-Express: %s %s\n",
Catherine Sullivand4dfb812013-11-28 06:39:21 +00009425 (hw->bus.speed == i40e_bus_speed_8000 ? "Speed 8.0GT/s" :
9426 hw->bus.speed == i40e_bus_speed_5000 ? "Speed 5.0GT/s" :
9427 hw->bus.speed == i40e_bus_speed_2500 ? "Speed 2.5GT/s" :
9428 "Unknown"),
9429 (hw->bus.width == i40e_bus_width_pcie_x8 ? "Width x8" :
9430 hw->bus.width == i40e_bus_width_pcie_x4 ? "Width x4" :
9431 hw->bus.width == i40e_bus_width_pcie_x2 ? "Width x2" :
9432 hw->bus.width == i40e_bus_width_pcie_x1 ? "Width x1" :
9433 "Unknown"));
9434
9435 if (hw->bus.width < i40e_bus_width_pcie_x8 ||
9436 hw->bus.speed < i40e_bus_speed_8000) {
9437 dev_warn(&pdev->dev, "PCI-Express bandwidth available for this device may be insufficient for optimal performance.\n");
9438 dev_warn(&pdev->dev, "Please move the device to a different PCI-e link with more lanes and/or higher transfer rate.\n");
9439 }
9440
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00009441 /* print a string summarizing features */
9442 i40e_print_features(pf);
9443
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009444 return 0;
9445
9446 /* Unwind what we've done if something failed in the setup */
9447err_vsis:
9448 set_bit(__I40E_DOWN, &pf->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009449 i40e_clear_interrupt_scheme(pf);
9450 kfree(pf->vsi);
Shannon Nelson04b03012013-11-28 06:39:34 +00009451err_switch_setup:
9452 i40e_reset_interrupt_capability(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009453 del_timer_sync(&pf->service_timer);
9454err_mac_addr:
9455err_configure_lan_hmc:
9456 (void)i40e_shutdown_lan_hmc(hw);
9457err_init_lan_hmc:
9458 kfree(pf->qp_pile);
9459 kfree(pf->irq_pile);
9460err_sw_init:
9461err_adminq_setup:
9462 (void)i40e_shutdown_adminq(hw);
9463err_pf_reset:
9464 iounmap(hw->hw_addr);
9465err_ioremap:
9466 kfree(pf);
9467err_pf_alloc:
9468 pci_disable_pcie_error_reporting(pdev);
9469 pci_release_selected_regions(pdev,
9470 pci_select_bars(pdev, IORESOURCE_MEM));
9471err_pci_reg:
9472err_dma:
9473 pci_disable_device(pdev);
9474 return err;
9475}
9476
9477/**
9478 * i40e_remove - Device removal routine
9479 * @pdev: PCI device information struct
9480 *
9481 * i40e_remove is called by the PCI subsystem to alert the driver
9482 * that is should release a PCI device. This could be caused by a
9483 * Hot-Plug event, or because the driver is going to be removed from
9484 * memory.
9485 **/
9486static void i40e_remove(struct pci_dev *pdev)
9487{
9488 struct i40e_pf *pf = pci_get_drvdata(pdev);
9489 i40e_status ret_code;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009490 int i;
9491
9492 i40e_dbg_pf_exit(pf);
9493
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00009494 i40e_ptp_stop(pf);
9495
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009496 /* no more scheduling of any task */
9497 set_bit(__I40E_DOWN, &pf->state);
9498 del_timer_sync(&pf->service_timer);
9499 cancel_work_sync(&pf->service_task);
9500
Mitch Williamseb2d80b2014-02-13 03:48:48 -08009501 if (pf->flags & I40E_FLAG_SRIOV_ENABLED) {
9502 i40e_free_vfs(pf);
9503 pf->flags &= ~I40E_FLAG_SRIOV_ENABLED;
9504 }
9505
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009506 i40e_fdir_teardown(pf);
9507
9508 /* If there is a switch structure or any orphans, remove them.
9509 * This will leave only the PF's VSI remaining.
9510 */
9511 for (i = 0; i < I40E_MAX_VEB; i++) {
9512 if (!pf->veb[i])
9513 continue;
9514
9515 if (pf->veb[i]->uplink_seid == pf->mac_seid ||
9516 pf->veb[i]->uplink_seid == 0)
9517 i40e_switch_branch_release(pf->veb[i]);
9518 }
9519
9520 /* Now we can shutdown the PF's VSI, just before we kill
9521 * adminq and hmc.
9522 */
9523 if (pf->vsi[pf->lan_vsi])
9524 i40e_vsi_release(pf->vsi[pf->lan_vsi]);
9525
9526 i40e_stop_misc_vector(pf);
9527 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
9528 synchronize_irq(pf->msix_entries[0].vector);
9529 free_irq(pf->msix_entries[0].vector, pf);
9530 }
9531
9532 /* shutdown and destroy the HMC */
Shannon Nelson60442de2014-04-23 04:50:13 +00009533 if (pf->hw.hmc.hmc_obj) {
9534 ret_code = i40e_shutdown_lan_hmc(&pf->hw);
9535 if (ret_code)
9536 dev_warn(&pdev->dev,
9537 "Failed to destroy the HMC resources: %d\n",
9538 ret_code);
9539 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009540
9541 /* shutdown the adminq */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009542 ret_code = i40e_shutdown_adminq(&pf->hw);
9543 if (ret_code)
9544 dev_warn(&pdev->dev,
9545 "Failed to destroy the Admin Queue resources: %d\n",
9546 ret_code);
9547
9548 /* Clear all dynamic memory lists of rings, q_vectors, and VSIs */
9549 i40e_clear_interrupt_scheme(pf);
Mitch Williams505682c2014-05-20 08:01:37 +00009550 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009551 if (pf->vsi[i]) {
9552 i40e_vsi_clear_rings(pf->vsi[i]);
9553 i40e_vsi_clear(pf->vsi[i]);
9554 pf->vsi[i] = NULL;
9555 }
9556 }
9557
9558 for (i = 0; i < I40E_MAX_VEB; i++) {
9559 kfree(pf->veb[i]);
9560 pf->veb[i] = NULL;
9561 }
9562
9563 kfree(pf->qp_pile);
9564 kfree(pf->irq_pile);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009565 kfree(pf->vsi);
9566
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009567 iounmap(pf->hw.hw_addr);
9568 kfree(pf);
9569 pci_release_selected_regions(pdev,
9570 pci_select_bars(pdev, IORESOURCE_MEM));
9571
9572 pci_disable_pcie_error_reporting(pdev);
9573 pci_disable_device(pdev);
9574}
9575
9576/**
9577 * i40e_pci_error_detected - warning that something funky happened in PCI land
9578 * @pdev: PCI device information struct
9579 *
9580 * Called to warn that something happened and the error handling steps
9581 * are in progress. Allows the driver to quiesce things, be ready for
9582 * remediation.
9583 **/
9584static pci_ers_result_t i40e_pci_error_detected(struct pci_dev *pdev,
9585 enum pci_channel_state error)
9586{
9587 struct i40e_pf *pf = pci_get_drvdata(pdev);
9588
9589 dev_info(&pdev->dev, "%s: error %d\n", __func__, error);
9590
9591 /* shutdown all operations */
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009592 if (!test_bit(__I40E_SUSPENDED, &pf->state)) {
9593 rtnl_lock();
9594 i40e_prep_for_reset(pf);
9595 rtnl_unlock();
9596 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009597
9598 /* Request a slot reset */
9599 return PCI_ERS_RESULT_NEED_RESET;
9600}
9601
9602/**
9603 * i40e_pci_error_slot_reset - a PCI slot reset just happened
9604 * @pdev: PCI device information struct
9605 *
9606 * Called to find if the driver can work with the device now that
9607 * the pci slot has been reset. If a basic connection seems good
9608 * (registers are readable and have sane content) then return a
9609 * happy little PCI_ERS_RESULT_xxx.
9610 **/
9611static pci_ers_result_t i40e_pci_error_slot_reset(struct pci_dev *pdev)
9612{
9613 struct i40e_pf *pf = pci_get_drvdata(pdev);
9614 pci_ers_result_t result;
9615 int err;
9616 u32 reg;
9617
9618 dev_info(&pdev->dev, "%s\n", __func__);
9619 if (pci_enable_device_mem(pdev)) {
9620 dev_info(&pdev->dev,
9621 "Cannot re-enable PCI device after reset.\n");
9622 result = PCI_ERS_RESULT_DISCONNECT;
9623 } else {
9624 pci_set_master(pdev);
9625 pci_restore_state(pdev);
9626 pci_save_state(pdev);
9627 pci_wake_from_d3(pdev, false);
9628
9629 reg = rd32(&pf->hw, I40E_GLGEN_RTRIG);
9630 if (reg == 0)
9631 result = PCI_ERS_RESULT_RECOVERED;
9632 else
9633 result = PCI_ERS_RESULT_DISCONNECT;
9634 }
9635
9636 err = pci_cleanup_aer_uncorrect_error_status(pdev);
9637 if (err) {
9638 dev_info(&pdev->dev,
9639 "pci_cleanup_aer_uncorrect_error_status failed 0x%0x\n",
9640 err);
9641 /* non-fatal, continue */
9642 }
9643
9644 return result;
9645}
9646
9647/**
9648 * i40e_pci_error_resume - restart operations after PCI error recovery
9649 * @pdev: PCI device information struct
9650 *
9651 * Called to allow the driver to bring things back up after PCI error
9652 * and/or reset recovery has finished.
9653 **/
9654static void i40e_pci_error_resume(struct pci_dev *pdev)
9655{
9656 struct i40e_pf *pf = pci_get_drvdata(pdev);
9657
9658 dev_info(&pdev->dev, "%s\n", __func__);
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009659 if (test_bit(__I40E_SUSPENDED, &pf->state))
9660 return;
9661
9662 rtnl_lock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009663 i40e_handle_reset_warning(pf);
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009664 rtnl_lock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009665}
9666
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009667/**
9668 * i40e_shutdown - PCI callback for shutting down
9669 * @pdev: PCI device information struct
9670 **/
9671static void i40e_shutdown(struct pci_dev *pdev)
9672{
9673 struct i40e_pf *pf = pci_get_drvdata(pdev);
Shannon Nelson8e2773a2013-11-28 06:39:22 +00009674 struct i40e_hw *hw = &pf->hw;
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009675
9676 set_bit(__I40E_SUSPENDED, &pf->state);
9677 set_bit(__I40E_DOWN, &pf->state);
9678 rtnl_lock();
9679 i40e_prep_for_reset(pf);
9680 rtnl_unlock();
9681
Shannon Nelson8e2773a2013-11-28 06:39:22 +00009682 wr32(hw, I40E_PFPM_APM, (pf->wol_en ? I40E_PFPM_APM_APME_MASK : 0));
9683 wr32(hw, I40E_PFPM_WUFC, (pf->wol_en ? I40E_PFPM_WUFC_MAG_MASK : 0));
9684
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009685 if (system_state == SYSTEM_POWER_OFF) {
Shannon Nelson8e2773a2013-11-28 06:39:22 +00009686 pci_wake_from_d3(pdev, pf->wol_en);
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009687 pci_set_power_state(pdev, PCI_D3hot);
9688 }
9689}
9690
9691#ifdef CONFIG_PM
9692/**
9693 * i40e_suspend - PCI callback for moving to D3
9694 * @pdev: PCI device information struct
9695 **/
9696static int i40e_suspend(struct pci_dev *pdev, pm_message_t state)
9697{
9698 struct i40e_pf *pf = pci_get_drvdata(pdev);
Shannon Nelson8e2773a2013-11-28 06:39:22 +00009699 struct i40e_hw *hw = &pf->hw;
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009700
9701 set_bit(__I40E_SUSPENDED, &pf->state);
9702 set_bit(__I40E_DOWN, &pf->state);
9703 rtnl_lock();
9704 i40e_prep_for_reset(pf);
9705 rtnl_unlock();
9706
Shannon Nelson8e2773a2013-11-28 06:39:22 +00009707 wr32(hw, I40E_PFPM_APM, (pf->wol_en ? I40E_PFPM_APM_APME_MASK : 0));
9708 wr32(hw, I40E_PFPM_WUFC, (pf->wol_en ? I40E_PFPM_WUFC_MAG_MASK : 0));
9709
9710 pci_wake_from_d3(pdev, pf->wol_en);
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009711 pci_set_power_state(pdev, PCI_D3hot);
9712
9713 return 0;
9714}
9715
9716/**
9717 * i40e_resume - PCI callback for waking up from D3
9718 * @pdev: PCI device information struct
9719 **/
9720static int i40e_resume(struct pci_dev *pdev)
9721{
9722 struct i40e_pf *pf = pci_get_drvdata(pdev);
9723 u32 err;
9724
9725 pci_set_power_state(pdev, PCI_D0);
9726 pci_restore_state(pdev);
9727 /* pci_restore_state() clears dev->state_saves, so
9728 * call pci_save_state() again to restore it.
9729 */
9730 pci_save_state(pdev);
9731
9732 err = pci_enable_device_mem(pdev);
9733 if (err) {
9734 dev_err(&pdev->dev,
9735 "%s: Cannot enable PCI device from suspend\n",
9736 __func__);
9737 return err;
9738 }
9739 pci_set_master(pdev);
9740
9741 /* no wakeup events while running */
9742 pci_wake_from_d3(pdev, false);
9743
9744 /* handling the reset will rebuild the device state */
9745 if (test_and_clear_bit(__I40E_SUSPENDED, &pf->state)) {
9746 clear_bit(__I40E_DOWN, &pf->state);
9747 rtnl_lock();
9748 i40e_reset_and_rebuild(pf, false);
9749 rtnl_unlock();
9750 }
9751
9752 return 0;
9753}
9754
9755#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009756static const struct pci_error_handlers i40e_err_handler = {
9757 .error_detected = i40e_pci_error_detected,
9758 .slot_reset = i40e_pci_error_slot_reset,
9759 .resume = i40e_pci_error_resume,
9760};
9761
9762static struct pci_driver i40e_driver = {
9763 .name = i40e_driver_name,
9764 .id_table = i40e_pci_tbl,
9765 .probe = i40e_probe,
9766 .remove = i40e_remove,
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009767#ifdef CONFIG_PM
9768 .suspend = i40e_suspend,
9769 .resume = i40e_resume,
9770#endif
9771 .shutdown = i40e_shutdown,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009772 .err_handler = &i40e_err_handler,
9773 .sriov_configure = i40e_pci_sriov_configure,
9774};
9775
9776/**
9777 * i40e_init_module - Driver registration routine
9778 *
9779 * i40e_init_module is the first routine called when the driver is
9780 * loaded. All it does is register with the PCI subsystem.
9781 **/
9782static int __init i40e_init_module(void)
9783{
9784 pr_info("%s: %s - version %s\n", i40e_driver_name,
9785 i40e_driver_string, i40e_driver_version_str);
9786 pr_info("%s: %s\n", i40e_driver_name, i40e_copyright);
9787 i40e_dbg_init();
9788 return pci_register_driver(&i40e_driver);
9789}
9790module_init(i40e_init_module);
9791
9792/**
9793 * i40e_exit_module - Driver exit cleanup routine
9794 *
9795 * i40e_exit_module is called just before the driver is removed
9796 * from memory.
9797 **/
9798static void __exit i40e_exit_module(void)
9799{
9800 pci_unregister_driver(&i40e_driver);
9801 i40e_dbg_exit();
9802}
9803module_exit(i40e_exit_module);