blob: 10ad1eec21f51f87f1f6e9b683163a57706d14a9 [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 Sullivana36fdd8e2014-11-11 20:07:41 +000041#define DRV_VERSION_MINOR 2
Sravanthi Tangeda300c34c2014-12-14 01:55:17 +000042#define DRV_VERSION_BUILD 6
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
Mitch Williamsa132af22015-01-24 09:58:35 +00002594 if (ring_is_ps_enabled(ring)) {
2595 i40e_alloc_rx_headers(ring);
2596 i40e_alloc_rx_buffers_ps(ring, I40E_DESC_UNUSED(ring));
2597 } else {
2598 i40e_alloc_rx_buffers_1buf(ring, I40E_DESC_UNUSED(ring));
2599 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002600
2601 return 0;
2602}
2603
2604/**
2605 * i40e_vsi_configure_tx - Configure the VSI for Tx
2606 * @vsi: VSI structure describing this set of rings and resources
2607 *
2608 * Configure the Tx VSI for operation.
2609 **/
2610static int i40e_vsi_configure_tx(struct i40e_vsi *vsi)
2611{
2612 int err = 0;
2613 u16 i;
2614
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00002615 for (i = 0; (i < vsi->num_queue_pairs) && !err; i++)
2616 err = i40e_configure_tx_ring(vsi->tx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002617
2618 return err;
2619}
2620
2621/**
2622 * i40e_vsi_configure_rx - Configure the VSI for Rx
2623 * @vsi: the VSI being configured
2624 *
2625 * Configure the Rx VSI for operation.
2626 **/
2627static int i40e_vsi_configure_rx(struct i40e_vsi *vsi)
2628{
2629 int err = 0;
2630 u16 i;
2631
2632 if (vsi->netdev && (vsi->netdev->mtu > ETH_DATA_LEN))
2633 vsi->max_frame = vsi->netdev->mtu + ETH_HLEN
2634 + ETH_FCS_LEN + VLAN_HLEN;
2635 else
2636 vsi->max_frame = I40E_RXBUFFER_2048;
2637
2638 /* figure out correct receive buffer length */
2639 switch (vsi->back->flags & (I40E_FLAG_RX_1BUF_ENABLED |
2640 I40E_FLAG_RX_PS_ENABLED)) {
2641 case I40E_FLAG_RX_1BUF_ENABLED:
2642 vsi->rx_hdr_len = 0;
2643 vsi->rx_buf_len = vsi->max_frame;
2644 vsi->dtype = I40E_RX_DTYPE_NO_SPLIT;
2645 break;
2646 case I40E_FLAG_RX_PS_ENABLED:
2647 vsi->rx_hdr_len = I40E_RX_HDR_SIZE;
2648 vsi->rx_buf_len = I40E_RXBUFFER_2048;
2649 vsi->dtype = I40E_RX_DTYPE_HEADER_SPLIT;
2650 break;
2651 default:
2652 vsi->rx_hdr_len = I40E_RX_HDR_SIZE;
2653 vsi->rx_buf_len = I40E_RXBUFFER_2048;
2654 vsi->dtype = I40E_RX_DTYPE_SPLIT_ALWAYS;
2655 break;
2656 }
2657
Vasu Dev38e00432014-08-01 13:27:03 -07002658#ifdef I40E_FCOE
2659 /* setup rx buffer for FCoE */
2660 if ((vsi->type == I40E_VSI_FCOE) &&
2661 (vsi->back->flags & I40E_FLAG_FCOE_ENABLED)) {
2662 vsi->rx_hdr_len = 0;
2663 vsi->rx_buf_len = I40E_RXBUFFER_3072;
2664 vsi->max_frame = I40E_RXBUFFER_3072;
2665 vsi->dtype = I40E_RX_DTYPE_NO_SPLIT;
2666 }
2667
2668#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002669 /* round up for the chip's needs */
2670 vsi->rx_hdr_len = ALIGN(vsi->rx_hdr_len,
2671 (1 << I40E_RXQ_CTX_HBUFF_SHIFT));
2672 vsi->rx_buf_len = ALIGN(vsi->rx_buf_len,
2673 (1 << I40E_RXQ_CTX_DBUFF_SHIFT));
2674
2675 /* set up individual rings */
2676 for (i = 0; i < vsi->num_queue_pairs && !err; i++)
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00002677 err = i40e_configure_rx_ring(vsi->rx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002678
2679 return err;
2680}
2681
2682/**
2683 * i40e_vsi_config_dcb_rings - Update rings to reflect DCB TC
2684 * @vsi: ptr to the VSI
2685 **/
2686static void i40e_vsi_config_dcb_rings(struct i40e_vsi *vsi)
2687{
Akeem G Abodunrine7046ee2014-04-09 05:58:58 +00002688 struct i40e_ring *tx_ring, *rx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002689 u16 qoffset, qcount;
2690 int i, n;
2691
2692 if (!(vsi->back->flags & I40E_FLAG_DCB_ENABLED))
2693 return;
2694
2695 for (n = 0; n < I40E_MAX_TRAFFIC_CLASS; n++) {
2696 if (!(vsi->tc_config.enabled_tc & (1 << n)))
2697 continue;
2698
2699 qoffset = vsi->tc_config.tc_info[n].qoffset;
2700 qcount = vsi->tc_config.tc_info[n].qcount;
2701 for (i = qoffset; i < (qoffset + qcount); i++) {
Akeem G Abodunrine7046ee2014-04-09 05:58:58 +00002702 rx_ring = vsi->rx_rings[i];
2703 tx_ring = vsi->tx_rings[i];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002704 rx_ring->dcb_tc = n;
2705 tx_ring->dcb_tc = n;
2706 }
2707 }
2708}
2709
2710/**
2711 * i40e_set_vsi_rx_mode - Call set_rx_mode on a VSI
2712 * @vsi: ptr to the VSI
2713 **/
2714static void i40e_set_vsi_rx_mode(struct i40e_vsi *vsi)
2715{
2716 if (vsi->netdev)
2717 i40e_set_rx_mode(vsi->netdev);
2718}
2719
2720/**
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002721 * i40e_fdir_filter_restore - Restore the Sideband Flow Director filters
2722 * @vsi: Pointer to the targeted VSI
2723 *
2724 * This function replays the hlist on the hw where all the SB Flow Director
2725 * filters were saved.
2726 **/
2727static void i40e_fdir_filter_restore(struct i40e_vsi *vsi)
2728{
2729 struct i40e_fdir_filter *filter;
2730 struct i40e_pf *pf = vsi->back;
2731 struct hlist_node *node;
2732
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00002733 if (!(pf->flags & I40E_FLAG_FD_SB_ENABLED))
2734 return;
2735
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002736 hlist_for_each_entry_safe(filter, node,
2737 &pf->fdir_filter_list, fdir_node) {
2738 i40e_add_del_fdir(vsi, filter, true);
2739 }
2740}
2741
2742/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002743 * i40e_vsi_configure - Set up the VSI for action
2744 * @vsi: the VSI being configured
2745 **/
2746static int i40e_vsi_configure(struct i40e_vsi *vsi)
2747{
2748 int err;
2749
2750 i40e_set_vsi_rx_mode(vsi);
2751 i40e_restore_vlan(vsi);
2752 i40e_vsi_config_dcb_rings(vsi);
2753 err = i40e_vsi_configure_tx(vsi);
2754 if (!err)
2755 err = i40e_vsi_configure_rx(vsi);
2756
2757 return err;
2758}
2759
2760/**
2761 * i40e_vsi_configure_msix - MSIX mode Interrupt Config in the HW
2762 * @vsi: the VSI being configured
2763 **/
2764static void i40e_vsi_configure_msix(struct i40e_vsi *vsi)
2765{
2766 struct i40e_pf *pf = vsi->back;
2767 struct i40e_q_vector *q_vector;
2768 struct i40e_hw *hw = &pf->hw;
2769 u16 vector;
2770 int i, q;
2771 u32 val;
2772 u32 qp;
2773
2774 /* The interrupt indexing is offset by 1 in the PFINT_ITRn
2775 * and PFINT_LNKLSTn registers, e.g.:
2776 * PFINT_ITRn[0..n-1] gets msix-1..msix-n (qpair interrupts)
2777 */
2778 qp = vsi->base_queue;
2779 vector = vsi->base_vector;
Alexander Duyck493fb302013-09-28 07:01:44 +00002780 for (i = 0; i < vsi->num_q_vectors; i++, vector++) {
2781 q_vector = vsi->q_vectors[i];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002782 q_vector->rx.itr = ITR_TO_REG(vsi->rx_itr_setting);
2783 q_vector->rx.latency_range = I40E_LOW_LATENCY;
2784 wr32(hw, I40E_PFINT_ITRN(I40E_RX_ITR, vector - 1),
2785 q_vector->rx.itr);
2786 q_vector->tx.itr = ITR_TO_REG(vsi->tx_itr_setting);
2787 q_vector->tx.latency_range = I40E_LOW_LATENCY;
2788 wr32(hw, I40E_PFINT_ITRN(I40E_TX_ITR, vector - 1),
2789 q_vector->tx.itr);
2790
2791 /* Linked list for the queuepairs assigned to this vector */
2792 wr32(hw, I40E_PFINT_LNKLSTN(vector - 1), qp);
2793 for (q = 0; q < q_vector->num_ringpairs; q++) {
2794 val = I40E_QINT_RQCTL_CAUSE_ENA_MASK |
2795 (I40E_RX_ITR << I40E_QINT_RQCTL_ITR_INDX_SHIFT) |
2796 (vector << I40E_QINT_RQCTL_MSIX_INDX_SHIFT) |
2797 (qp << I40E_QINT_RQCTL_NEXTQ_INDX_SHIFT)|
2798 (I40E_QUEUE_TYPE_TX
2799 << I40E_QINT_RQCTL_NEXTQ_TYPE_SHIFT);
2800
2801 wr32(hw, I40E_QINT_RQCTL(qp), val);
2802
2803 val = I40E_QINT_TQCTL_CAUSE_ENA_MASK |
2804 (I40E_TX_ITR << I40E_QINT_TQCTL_ITR_INDX_SHIFT) |
2805 (vector << I40E_QINT_TQCTL_MSIX_INDX_SHIFT) |
2806 ((qp+1) << I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT)|
2807 (I40E_QUEUE_TYPE_RX
2808 << I40E_QINT_TQCTL_NEXTQ_TYPE_SHIFT);
2809
2810 /* Terminate the linked list */
2811 if (q == (q_vector->num_ringpairs - 1))
2812 val |= (I40E_QUEUE_END_OF_LIST
2813 << I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT);
2814
2815 wr32(hw, I40E_QINT_TQCTL(qp), val);
2816 qp++;
2817 }
2818 }
2819
2820 i40e_flush(hw);
2821}
2822
2823/**
2824 * i40e_enable_misc_int_causes - enable the non-queue interrupts
2825 * @hw: ptr to the hardware info
2826 **/
Jacob Kellerab437b52014-12-14 01:55:08 +00002827static void i40e_enable_misc_int_causes(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002828{
Jacob Kellerab437b52014-12-14 01:55:08 +00002829 struct i40e_hw *hw = &pf->hw;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002830 u32 val;
2831
2832 /* clear things first */
2833 wr32(hw, I40E_PFINT_ICR0_ENA, 0); /* disable all */
2834 rd32(hw, I40E_PFINT_ICR0); /* read to clear */
2835
2836 val = I40E_PFINT_ICR0_ENA_ECC_ERR_MASK |
2837 I40E_PFINT_ICR0_ENA_MAL_DETECT_MASK |
2838 I40E_PFINT_ICR0_ENA_GRST_MASK |
2839 I40E_PFINT_ICR0_ENA_PCI_EXCEPTION_MASK |
2840 I40E_PFINT_ICR0_ENA_GPIO_MASK |
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002841 I40E_PFINT_ICR0_ENA_HMC_ERR_MASK |
2842 I40E_PFINT_ICR0_ENA_VFLR_MASK |
2843 I40E_PFINT_ICR0_ENA_ADMINQ_MASK;
2844
Jacob Kellerab437b52014-12-14 01:55:08 +00002845 if (pf->flags & I40E_FLAG_PTP)
2846 val |= I40E_PFINT_ICR0_ENA_TIMESYNC_MASK;
2847
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002848 wr32(hw, I40E_PFINT_ICR0_ENA, val);
2849
2850 /* SW_ITR_IDX = 0, but don't change INTENA */
Anjali Singhai Jain84ed40e2013-11-26 10:49:32 +00002851 wr32(hw, I40E_PFINT_DYN_CTL0, I40E_PFINT_DYN_CTL0_SW_ITR_INDX_MASK |
2852 I40E_PFINT_DYN_CTL0_INTENA_MSK_MASK);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002853
2854 /* OTHER_ITR_IDX = 0 */
2855 wr32(hw, I40E_PFINT_STAT_CTL0, 0);
2856}
2857
2858/**
2859 * i40e_configure_msi_and_legacy - Legacy mode interrupt config in the HW
2860 * @vsi: the VSI being configured
2861 **/
2862static void i40e_configure_msi_and_legacy(struct i40e_vsi *vsi)
2863{
Alexander Duyck493fb302013-09-28 07:01:44 +00002864 struct i40e_q_vector *q_vector = vsi->q_vectors[0];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002865 struct i40e_pf *pf = vsi->back;
2866 struct i40e_hw *hw = &pf->hw;
2867 u32 val;
2868
2869 /* set the ITR configuration */
2870 q_vector->rx.itr = ITR_TO_REG(vsi->rx_itr_setting);
2871 q_vector->rx.latency_range = I40E_LOW_LATENCY;
2872 wr32(hw, I40E_PFINT_ITR0(I40E_RX_ITR), q_vector->rx.itr);
2873 q_vector->tx.itr = ITR_TO_REG(vsi->tx_itr_setting);
2874 q_vector->tx.latency_range = I40E_LOW_LATENCY;
2875 wr32(hw, I40E_PFINT_ITR0(I40E_TX_ITR), q_vector->tx.itr);
2876
Jacob Kellerab437b52014-12-14 01:55:08 +00002877 i40e_enable_misc_int_causes(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002878
2879 /* FIRSTQ_INDX = 0, FIRSTQ_TYPE = 0 (rx) */
2880 wr32(hw, I40E_PFINT_LNKLST0, 0);
2881
Jesse Brandeburgf29eaa32014-02-11 08:24:12 +00002882 /* Associate the queue pair to the vector and enable the queue int */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002883 val = I40E_QINT_RQCTL_CAUSE_ENA_MASK |
2884 (I40E_RX_ITR << I40E_QINT_RQCTL_ITR_INDX_SHIFT) |
2885 (I40E_QUEUE_TYPE_TX << I40E_QINT_TQCTL_NEXTQ_TYPE_SHIFT);
2886
2887 wr32(hw, I40E_QINT_RQCTL(0), val);
2888
2889 val = I40E_QINT_TQCTL_CAUSE_ENA_MASK |
2890 (I40E_TX_ITR << I40E_QINT_TQCTL_ITR_INDX_SHIFT) |
2891 (I40E_QUEUE_END_OF_LIST << I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT);
2892
2893 wr32(hw, I40E_QINT_TQCTL(0), val);
2894 i40e_flush(hw);
2895}
2896
2897/**
Mitch Williams2ef28cf2013-11-28 06:39:32 +00002898 * i40e_irq_dynamic_disable_icr0 - Disable default interrupt generation for icr0
2899 * @pf: board private structure
2900 **/
2901void i40e_irq_dynamic_disable_icr0(struct i40e_pf *pf)
2902{
2903 struct i40e_hw *hw = &pf->hw;
2904
2905 wr32(hw, I40E_PFINT_DYN_CTL0,
2906 I40E_ITR_NONE << I40E_PFINT_DYN_CTLN_ITR_INDX_SHIFT);
2907 i40e_flush(hw);
2908}
2909
2910/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002911 * i40e_irq_dynamic_enable_icr0 - Enable default interrupt generation for icr0
2912 * @pf: board private structure
2913 **/
Shannon Nelson116a57d2013-09-28 07:13:59 +00002914void i40e_irq_dynamic_enable_icr0(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002915{
2916 struct i40e_hw *hw = &pf->hw;
2917 u32 val;
2918
2919 val = I40E_PFINT_DYN_CTL0_INTENA_MASK |
2920 I40E_PFINT_DYN_CTL0_CLEARPBA_MASK |
2921 (I40E_ITR_NONE << I40E_PFINT_DYN_CTL0_ITR_INDX_SHIFT);
2922
2923 wr32(hw, I40E_PFINT_DYN_CTL0, val);
2924 i40e_flush(hw);
2925}
2926
2927/**
2928 * i40e_irq_dynamic_enable - Enable default interrupt generation settings
2929 * @vsi: pointer to a vsi
2930 * @vector: enable a particular Hw Interrupt vector
2931 **/
2932void i40e_irq_dynamic_enable(struct i40e_vsi *vsi, int vector)
2933{
2934 struct i40e_pf *pf = vsi->back;
2935 struct i40e_hw *hw = &pf->hw;
2936 u32 val;
2937
2938 val = I40E_PFINT_DYN_CTLN_INTENA_MASK |
2939 I40E_PFINT_DYN_CTLN_CLEARPBA_MASK |
2940 (I40E_ITR_NONE << I40E_PFINT_DYN_CTLN_ITR_INDX_SHIFT);
2941 wr32(hw, I40E_PFINT_DYN_CTLN(vector - 1), val);
Jesse Brandeburg1022cb62013-09-28 07:13:08 +00002942 /* skip the flush */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002943}
2944
2945/**
Carolyn Wyborny5c2cebd2014-06-04 01:23:18 +00002946 * i40e_irq_dynamic_disable - Disable default interrupt generation settings
2947 * @vsi: pointer to a vsi
Greg Rose03147772015-01-24 09:58:29 +00002948 * @vector: disable a particular Hw Interrupt vector
Carolyn Wyborny5c2cebd2014-06-04 01:23:18 +00002949 **/
2950void i40e_irq_dynamic_disable(struct i40e_vsi *vsi, int vector)
2951{
2952 struct i40e_pf *pf = vsi->back;
2953 struct i40e_hw *hw = &pf->hw;
2954 u32 val;
2955
2956 val = I40E_ITR_NONE << I40E_PFINT_DYN_CTLN_ITR_INDX_SHIFT;
2957 wr32(hw, I40E_PFINT_DYN_CTLN(vector - 1), val);
2958 i40e_flush(hw);
2959}
2960
2961/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002962 * i40e_msix_clean_rings - MSIX mode Interrupt Handler
2963 * @irq: interrupt number
2964 * @data: pointer to a q_vector
2965 **/
2966static irqreturn_t i40e_msix_clean_rings(int irq, void *data)
2967{
2968 struct i40e_q_vector *q_vector = data;
2969
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00002970 if (!q_vector->tx.ring && !q_vector->rx.ring)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002971 return IRQ_HANDLED;
2972
2973 napi_schedule(&q_vector->napi);
2974
2975 return IRQ_HANDLED;
2976}
2977
2978/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002979 * i40e_vsi_request_irq_msix - Initialize MSI-X interrupts
2980 * @vsi: the VSI being configured
2981 * @basename: name for the vector
2982 *
2983 * Allocates MSI-X vectors and requests interrupts from the kernel.
2984 **/
2985static int i40e_vsi_request_irq_msix(struct i40e_vsi *vsi, char *basename)
2986{
2987 int q_vectors = vsi->num_q_vectors;
2988 struct i40e_pf *pf = vsi->back;
2989 int base = vsi->base_vector;
2990 int rx_int_idx = 0;
2991 int tx_int_idx = 0;
2992 int vector, err;
2993
2994 for (vector = 0; vector < q_vectors; vector++) {
Alexander Duyck493fb302013-09-28 07:01:44 +00002995 struct i40e_q_vector *q_vector = vsi->q_vectors[vector];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002996
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00002997 if (q_vector->tx.ring && q_vector->rx.ring) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002998 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
2999 "%s-%s-%d", basename, "TxRx", rx_int_idx++);
3000 tx_int_idx++;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003001 } else if (q_vector->rx.ring) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003002 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
3003 "%s-%s-%d", basename, "rx", rx_int_idx++);
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003004 } else if (q_vector->tx.ring) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003005 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
3006 "%s-%s-%d", basename, "tx", tx_int_idx++);
3007 } else {
3008 /* skip this unused q_vector */
3009 continue;
3010 }
3011 err = request_irq(pf->msix_entries[base + vector].vector,
3012 vsi->irq_handler,
3013 0,
3014 q_vector->name,
3015 q_vector);
3016 if (err) {
3017 dev_info(&pf->pdev->dev,
3018 "%s: request_irq failed, error: %d\n",
3019 __func__, err);
3020 goto free_queue_irqs;
3021 }
3022 /* assign the mask for this irq */
3023 irq_set_affinity_hint(pf->msix_entries[base + vector].vector,
3024 &q_vector->affinity_mask);
3025 }
3026
Shannon Nelson63741842014-04-23 04:50:16 +00003027 vsi->irqs_ready = true;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003028 return 0;
3029
3030free_queue_irqs:
3031 while (vector) {
3032 vector--;
3033 irq_set_affinity_hint(pf->msix_entries[base + vector].vector,
3034 NULL);
3035 free_irq(pf->msix_entries[base + vector].vector,
3036 &(vsi->q_vectors[vector]));
3037 }
3038 return err;
3039}
3040
3041/**
3042 * i40e_vsi_disable_irq - Mask off queue interrupt generation on the VSI
3043 * @vsi: the VSI being un-configured
3044 **/
3045static void i40e_vsi_disable_irq(struct i40e_vsi *vsi)
3046{
3047 struct i40e_pf *pf = vsi->back;
3048 struct i40e_hw *hw = &pf->hw;
3049 int base = vsi->base_vector;
3050 int i;
3051
3052 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00003053 wr32(hw, I40E_QINT_TQCTL(vsi->tx_rings[i]->reg_idx), 0);
3054 wr32(hw, I40E_QINT_RQCTL(vsi->rx_rings[i]->reg_idx), 0);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003055 }
3056
3057 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
3058 for (i = vsi->base_vector;
3059 i < (vsi->num_q_vectors + vsi->base_vector); i++)
3060 wr32(hw, I40E_PFINT_DYN_CTLN(i - 1), 0);
3061
3062 i40e_flush(hw);
3063 for (i = 0; i < vsi->num_q_vectors; i++)
3064 synchronize_irq(pf->msix_entries[i + base].vector);
3065 } else {
3066 /* Legacy and MSI mode - this stops all interrupt handling */
3067 wr32(hw, I40E_PFINT_ICR0_ENA, 0);
3068 wr32(hw, I40E_PFINT_DYN_CTL0, 0);
3069 i40e_flush(hw);
3070 synchronize_irq(pf->pdev->irq);
3071 }
3072}
3073
3074/**
3075 * i40e_vsi_enable_irq - Enable IRQ for the given VSI
3076 * @vsi: the VSI being configured
3077 **/
3078static int i40e_vsi_enable_irq(struct i40e_vsi *vsi)
3079{
3080 struct i40e_pf *pf = vsi->back;
3081 int i;
3082
3083 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
3084 for (i = vsi->base_vector;
3085 i < (vsi->num_q_vectors + vsi->base_vector); i++)
3086 i40e_irq_dynamic_enable(vsi, i);
3087 } else {
3088 i40e_irq_dynamic_enable_icr0(pf);
3089 }
3090
Jesse Brandeburg1022cb62013-09-28 07:13:08 +00003091 i40e_flush(&pf->hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003092 return 0;
3093}
3094
3095/**
3096 * i40e_stop_misc_vector - Stop the vector that handles non-queue events
3097 * @pf: board private structure
3098 **/
3099static void i40e_stop_misc_vector(struct i40e_pf *pf)
3100{
3101 /* Disable ICR 0 */
3102 wr32(&pf->hw, I40E_PFINT_ICR0_ENA, 0);
3103 i40e_flush(&pf->hw);
3104}
3105
3106/**
3107 * i40e_intr - MSI/Legacy and non-queue interrupt handler
3108 * @irq: interrupt number
3109 * @data: pointer to a q_vector
3110 *
3111 * This is the handler used for all MSI/Legacy interrupts, and deals
3112 * with both queue and non-queue interrupts. This is also used in
3113 * MSIX mode to handle the non-queue interrupts.
3114 **/
3115static irqreturn_t i40e_intr(int irq, void *data)
3116{
3117 struct i40e_pf *pf = (struct i40e_pf *)data;
3118 struct i40e_hw *hw = &pf->hw;
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003119 irqreturn_t ret = IRQ_NONE;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003120 u32 icr0, icr0_remaining;
3121 u32 val, ena_mask;
3122
3123 icr0 = rd32(hw, I40E_PFINT_ICR0);
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003124 ena_mask = rd32(hw, I40E_PFINT_ICR0_ENA);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003125
Shannon Nelson116a57d2013-09-28 07:13:59 +00003126 /* if sharing a legacy IRQ, we might get called w/o an intr pending */
3127 if ((icr0 & I40E_PFINT_ICR0_INTEVENT_MASK) == 0)
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003128 goto enable_intr;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003129
Shannon Nelsoncd92e722013-11-16 10:00:44 +00003130 /* if interrupt but no bits showing, must be SWINT */
3131 if (((icr0 & ~I40E_PFINT_ICR0_INTEVENT_MASK) == 0) ||
3132 (icr0 & I40E_PFINT_ICR0_SWINT_MASK))
3133 pf->sw_int_count++;
3134
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003135 /* only q0 is used in MSI/Legacy mode, and none are used in MSIX */
3136 if (icr0 & I40E_PFINT_ICR0_QUEUE_0_MASK) {
3137
3138 /* temporarily disable queue cause for NAPI processing */
3139 u32 qval = rd32(hw, I40E_QINT_RQCTL(0));
3140 qval &= ~I40E_QINT_RQCTL_CAUSE_ENA_MASK;
3141 wr32(hw, I40E_QINT_RQCTL(0), qval);
3142
3143 qval = rd32(hw, I40E_QINT_TQCTL(0));
3144 qval &= ~I40E_QINT_TQCTL_CAUSE_ENA_MASK;
3145 wr32(hw, I40E_QINT_TQCTL(0), qval);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003146
3147 if (!test_bit(__I40E_DOWN, &pf->state))
Alexander Duyck493fb302013-09-28 07:01:44 +00003148 napi_schedule(&pf->vsi[pf->lan_vsi]->q_vectors[0]->napi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003149 }
3150
3151 if (icr0 & I40E_PFINT_ICR0_ADMINQ_MASK) {
3152 ena_mask &= ~I40E_PFINT_ICR0_ENA_ADMINQ_MASK;
3153 set_bit(__I40E_ADMINQ_EVENT_PENDING, &pf->state);
3154 }
3155
3156 if (icr0 & I40E_PFINT_ICR0_MAL_DETECT_MASK) {
3157 ena_mask &= ~I40E_PFINT_ICR0_ENA_MAL_DETECT_MASK;
3158 set_bit(__I40E_MDD_EVENT_PENDING, &pf->state);
3159 }
3160
3161 if (icr0 & I40E_PFINT_ICR0_VFLR_MASK) {
3162 ena_mask &= ~I40E_PFINT_ICR0_ENA_VFLR_MASK;
3163 set_bit(__I40E_VFLR_EVENT_PENDING, &pf->state);
3164 }
3165
3166 if (icr0 & I40E_PFINT_ICR0_GRST_MASK) {
3167 if (!test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state))
3168 set_bit(__I40E_RESET_INTR_RECEIVED, &pf->state);
3169 ena_mask &= ~I40E_PFINT_ICR0_ENA_GRST_MASK;
3170 val = rd32(hw, I40E_GLGEN_RSTAT);
3171 val = (val & I40E_GLGEN_RSTAT_RESET_TYPE_MASK)
3172 >> I40E_GLGEN_RSTAT_RESET_TYPE_SHIFT;
Shannon Nelson4eb3f762014-03-06 08:59:58 +00003173 if (val == I40E_RESET_CORER) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003174 pf->corer_count++;
Shannon Nelson4eb3f762014-03-06 08:59:58 +00003175 } else if (val == I40E_RESET_GLOBR) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003176 pf->globr_count++;
Shannon Nelson4eb3f762014-03-06 08:59:58 +00003177 } else if (val == I40E_RESET_EMPR) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003178 pf->empr_count++;
Shannon Nelson4eb3f762014-03-06 08:59:58 +00003179 set_bit(__I40E_EMP_RESET_REQUESTED, &pf->state);
3180 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003181 }
3182
Anjali Singhai Jain9c010ee2013-11-28 06:39:20 +00003183 if (icr0 & I40E_PFINT_ICR0_HMC_ERR_MASK) {
3184 icr0 &= ~I40E_PFINT_ICR0_HMC_ERR_MASK;
3185 dev_info(&pf->pdev->dev, "HMC error interrupt\n");
3186 }
3187
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00003188 if (icr0 & I40E_PFINT_ICR0_TIMESYNC_MASK) {
3189 u32 prttsyn_stat = rd32(hw, I40E_PRTTSYN_STAT_0);
3190
3191 if (prttsyn_stat & I40E_PRTTSYN_STAT_0_TXTIME_MASK) {
Jacob Kellercafa1fc2014-04-24 18:05:03 -07003192 icr0 &= ~I40E_PFINT_ICR0_ENA_TIMESYNC_MASK;
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00003193 i40e_ptp_tx_hwtstamp(pf);
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00003194 }
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00003195 }
3196
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003197 /* If a critical error is pending we have no choice but to reset the
3198 * device.
3199 * Report and mask out any remaining unexpected interrupts.
3200 */
3201 icr0_remaining = icr0 & ena_mask;
3202 if (icr0_remaining) {
3203 dev_info(&pf->pdev->dev, "unhandled interrupt icr0=0x%08x\n",
3204 icr0_remaining);
Anjali Singhai Jain9c010ee2013-11-28 06:39:20 +00003205 if ((icr0_remaining & I40E_PFINT_ICR0_PE_CRITERR_MASK) ||
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003206 (icr0_remaining & I40E_PFINT_ICR0_PCI_EXCEPTION_MASK) ||
Anjali Singhai Jainc0c28972014-02-12 01:45:34 +00003207 (icr0_remaining & I40E_PFINT_ICR0_ECC_ERR_MASK)) {
Anjali Singhai Jain9c010ee2013-11-28 06:39:20 +00003208 dev_info(&pf->pdev->dev, "device will be reset\n");
3209 set_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
3210 i40e_service_event_schedule(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003211 }
3212 ena_mask &= ~icr0_remaining;
3213 }
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003214 ret = IRQ_HANDLED;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003215
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003216enable_intr:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003217 /* re-enable interrupt causes */
3218 wr32(hw, I40E_PFINT_ICR0_ENA, ena_mask);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003219 if (!test_bit(__I40E_DOWN, &pf->state)) {
3220 i40e_service_event_schedule(pf);
3221 i40e_irq_dynamic_enable_icr0(pf);
3222 }
3223
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003224 return ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003225}
3226
3227/**
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003228 * i40e_clean_fdir_tx_irq - Reclaim resources after transmit completes
3229 * @tx_ring: tx ring to clean
3230 * @budget: how many cleans we're allowed
3231 *
3232 * Returns true if there's any budget left (e.g. the clean is finished)
3233 **/
3234static bool i40e_clean_fdir_tx_irq(struct i40e_ring *tx_ring, int budget)
3235{
3236 struct i40e_vsi *vsi = tx_ring->vsi;
3237 u16 i = tx_ring->next_to_clean;
3238 struct i40e_tx_buffer *tx_buf;
3239 struct i40e_tx_desc *tx_desc;
3240
3241 tx_buf = &tx_ring->tx_bi[i];
3242 tx_desc = I40E_TX_DESC(tx_ring, i);
3243 i -= tx_ring->count;
3244
3245 do {
3246 struct i40e_tx_desc *eop_desc = tx_buf->next_to_watch;
3247
3248 /* if next_to_watch is not set then there is no work pending */
3249 if (!eop_desc)
3250 break;
3251
3252 /* prevent any other reads prior to eop_desc */
3253 read_barrier_depends();
3254
3255 /* if the descriptor isn't done, no work yet to do */
3256 if (!(eop_desc->cmd_type_offset_bsz &
3257 cpu_to_le64(I40E_TX_DESC_DTYPE_DESC_DONE)))
3258 break;
3259
3260 /* clear next_to_watch to prevent false hangs */
3261 tx_buf->next_to_watch = NULL;
3262
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003263 tx_desc->buffer_addr = 0;
3264 tx_desc->cmd_type_offset_bsz = 0;
3265 /* move past filter desc */
3266 tx_buf++;
3267 tx_desc++;
3268 i++;
3269 if (unlikely(!i)) {
3270 i -= tx_ring->count;
3271 tx_buf = tx_ring->tx_bi;
3272 tx_desc = I40E_TX_DESC(tx_ring, 0);
3273 }
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003274 /* unmap skb header data */
3275 dma_unmap_single(tx_ring->dev,
3276 dma_unmap_addr(tx_buf, dma),
3277 dma_unmap_len(tx_buf, len),
3278 DMA_TO_DEVICE);
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003279 if (tx_buf->tx_flags & I40E_TX_FLAGS_FD_SB)
3280 kfree(tx_buf->raw_buf);
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003281
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003282 tx_buf->raw_buf = NULL;
3283 tx_buf->tx_flags = 0;
3284 tx_buf->next_to_watch = NULL;
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003285 dma_unmap_len_set(tx_buf, len, 0);
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003286 tx_desc->buffer_addr = 0;
3287 tx_desc->cmd_type_offset_bsz = 0;
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003288
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003289 /* move us past the eop_desc for start of next FD desc */
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003290 tx_buf++;
3291 tx_desc++;
3292 i++;
3293 if (unlikely(!i)) {
3294 i -= tx_ring->count;
3295 tx_buf = tx_ring->tx_bi;
3296 tx_desc = I40E_TX_DESC(tx_ring, 0);
3297 }
3298
3299 /* update budget accounting */
3300 budget--;
3301 } while (likely(budget));
3302
3303 i += tx_ring->count;
3304 tx_ring->next_to_clean = i;
3305
3306 if (vsi->back->flags & I40E_FLAG_MSIX_ENABLED) {
3307 i40e_irq_dynamic_enable(vsi,
3308 tx_ring->q_vector->v_idx + vsi->base_vector);
3309 }
3310 return budget > 0;
3311}
3312
3313/**
3314 * i40e_fdir_clean_ring - Interrupt Handler for FDIR SB ring
3315 * @irq: interrupt number
3316 * @data: pointer to a q_vector
3317 **/
3318static irqreturn_t i40e_fdir_clean_ring(int irq, void *data)
3319{
3320 struct i40e_q_vector *q_vector = data;
3321 struct i40e_vsi *vsi;
3322
3323 if (!q_vector->tx.ring)
3324 return IRQ_HANDLED;
3325
3326 vsi = q_vector->tx.ring->vsi;
3327 i40e_clean_fdir_tx_irq(q_vector->tx.ring, vsi->work_limit);
3328
3329 return IRQ_HANDLED;
3330}
3331
3332/**
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003333 * i40e_map_vector_to_qp - Assigns the queue pair to the vector
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003334 * @vsi: the VSI being configured
3335 * @v_idx: vector index
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003336 * @qp_idx: queue pair index
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003337 **/
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003338static void map_vector_to_qp(struct i40e_vsi *vsi, int v_idx, int qp_idx)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003339{
Alexander Duyck493fb302013-09-28 07:01:44 +00003340 struct i40e_q_vector *q_vector = vsi->q_vectors[v_idx];
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00003341 struct i40e_ring *tx_ring = vsi->tx_rings[qp_idx];
3342 struct i40e_ring *rx_ring = vsi->rx_rings[qp_idx];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003343
3344 tx_ring->q_vector = q_vector;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003345 tx_ring->next = q_vector->tx.ring;
3346 q_vector->tx.ring = tx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003347 q_vector->tx.count++;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003348
3349 rx_ring->q_vector = q_vector;
3350 rx_ring->next = q_vector->rx.ring;
3351 q_vector->rx.ring = rx_ring;
3352 q_vector->rx.count++;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003353}
3354
3355/**
3356 * i40e_vsi_map_rings_to_vectors - Maps descriptor rings to vectors
3357 * @vsi: the VSI being configured
3358 *
3359 * This function maps descriptor rings to the queue-specific vectors
3360 * we were allotted through the MSI-X enabling code. Ideally, we'd have
3361 * one vector per queue pair, but on a constrained vector budget, we
3362 * group the queue pairs as "efficiently" as possible.
3363 **/
3364static void i40e_vsi_map_rings_to_vectors(struct i40e_vsi *vsi)
3365{
3366 int qp_remaining = vsi->num_queue_pairs;
3367 int q_vectors = vsi->num_q_vectors;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003368 int num_ringpairs;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003369 int v_start = 0;
3370 int qp_idx = 0;
3371
3372 /* If we don't have enough vectors for a 1-to-1 mapping, we'll have to
3373 * group them so there are multiple queues per vector.
Anjali Singhai Jain70114ec2014-06-03 23:50:14 +00003374 * It is also important to go through all the vectors available to be
3375 * sure that if we don't use all the vectors, that the remaining vectors
3376 * are cleared. This is especially important when decreasing the
3377 * number of queues in use.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003378 */
Anjali Singhai Jain70114ec2014-06-03 23:50:14 +00003379 for (; v_start < q_vectors; v_start++) {
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003380 struct i40e_q_vector *q_vector = vsi->q_vectors[v_start];
3381
3382 num_ringpairs = DIV_ROUND_UP(qp_remaining, q_vectors - v_start);
3383
3384 q_vector->num_ringpairs = num_ringpairs;
3385
3386 q_vector->rx.count = 0;
3387 q_vector->tx.count = 0;
3388 q_vector->rx.ring = NULL;
3389 q_vector->tx.ring = NULL;
3390
3391 while (num_ringpairs--) {
3392 map_vector_to_qp(vsi, v_start, qp_idx);
3393 qp_idx++;
3394 qp_remaining--;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003395 }
3396 }
3397}
3398
3399/**
3400 * i40e_vsi_request_irq - Request IRQ from the OS
3401 * @vsi: the VSI being configured
3402 * @basename: name for the vector
3403 **/
3404static int i40e_vsi_request_irq(struct i40e_vsi *vsi, char *basename)
3405{
3406 struct i40e_pf *pf = vsi->back;
3407 int err;
3408
3409 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
3410 err = i40e_vsi_request_irq_msix(vsi, basename);
3411 else if (pf->flags & I40E_FLAG_MSI_ENABLED)
3412 err = request_irq(pf->pdev->irq, i40e_intr, 0,
Carolyn Wybornyb294ac72014-12-11 07:06:39 +00003413 pf->int_name, pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003414 else
3415 err = request_irq(pf->pdev->irq, i40e_intr, IRQF_SHARED,
Carolyn Wybornyb294ac72014-12-11 07:06:39 +00003416 pf->int_name, pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003417
3418 if (err)
3419 dev_info(&pf->pdev->dev, "request_irq failed, Error %d\n", err);
3420
3421 return err;
3422}
3423
3424#ifdef CONFIG_NET_POLL_CONTROLLER
3425/**
3426 * i40e_netpoll - A Polling 'interrupt'handler
3427 * @netdev: network interface device structure
3428 *
3429 * This is used by netconsole to send skbs without having to re-enable
3430 * interrupts. It's not called while the normal interrupt routine is executing.
3431 **/
Vasu Dev38e00432014-08-01 13:27:03 -07003432#ifdef I40E_FCOE
3433void i40e_netpoll(struct net_device *netdev)
3434#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003435static void i40e_netpoll(struct net_device *netdev)
Vasu Dev38e00432014-08-01 13:27:03 -07003436#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003437{
3438 struct i40e_netdev_priv *np = netdev_priv(netdev);
3439 struct i40e_vsi *vsi = np->vsi;
3440 struct i40e_pf *pf = vsi->back;
3441 int i;
3442
3443 /* if interface is down do nothing */
3444 if (test_bit(__I40E_DOWN, &vsi->state))
3445 return;
3446
3447 pf->flags |= I40E_FLAG_IN_NETPOLL;
3448 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
3449 for (i = 0; i < vsi->num_q_vectors; i++)
Alexander Duyck493fb302013-09-28 07:01:44 +00003450 i40e_msix_clean_rings(0, vsi->q_vectors[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003451 } else {
3452 i40e_intr(pf->pdev->irq, netdev);
3453 }
3454 pf->flags &= ~I40E_FLAG_IN_NETPOLL;
3455}
3456#endif
3457
3458/**
Neerav Parikh23527302014-06-03 23:50:15 +00003459 * i40e_pf_txq_wait - Wait for a PF's Tx queue to be enabled or disabled
3460 * @pf: the PF being configured
3461 * @pf_q: the PF queue
3462 * @enable: enable or disable state of the queue
3463 *
3464 * This routine will wait for the given Tx queue of the PF to reach the
3465 * enabled or disabled state.
3466 * Returns -ETIMEDOUT in case of failing to reach the requested state after
3467 * multiple retries; else will return 0 in case of success.
3468 **/
3469static int i40e_pf_txq_wait(struct i40e_pf *pf, int pf_q, bool enable)
3470{
3471 int i;
3472 u32 tx_reg;
3473
3474 for (i = 0; i < I40E_QUEUE_WAIT_RETRY_LIMIT; i++) {
3475 tx_reg = rd32(&pf->hw, I40E_QTX_ENA(pf_q));
3476 if (enable == !!(tx_reg & I40E_QTX_ENA_QENA_STAT_MASK))
3477 break;
3478
Neerav Parikhf98a2002014-09-13 07:40:44 +00003479 usleep_range(10, 20);
Neerav Parikh23527302014-06-03 23:50:15 +00003480 }
3481 if (i >= I40E_QUEUE_WAIT_RETRY_LIMIT)
3482 return -ETIMEDOUT;
3483
3484 return 0;
3485}
3486
3487/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003488 * i40e_vsi_control_tx - Start or stop a VSI's rings
3489 * @vsi: the VSI being configured
3490 * @enable: start or stop the rings
3491 **/
3492static int i40e_vsi_control_tx(struct i40e_vsi *vsi, bool enable)
3493{
3494 struct i40e_pf *pf = vsi->back;
3495 struct i40e_hw *hw = &pf->hw;
Neerav Parikh23527302014-06-03 23:50:15 +00003496 int i, j, pf_q, ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003497 u32 tx_reg;
3498
3499 pf_q = vsi->base_queue;
3500 for (i = 0; i < vsi->num_queue_pairs; i++, pf_q++) {
Matt Jared351499a2014-04-23 04:50:03 +00003501
3502 /* warn the TX unit of coming changes */
3503 i40e_pre_tx_queue_cfg(&pf->hw, pf_q, enable);
3504 if (!enable)
Neerav Parikhf98a2002014-09-13 07:40:44 +00003505 usleep_range(10, 20);
Matt Jared351499a2014-04-23 04:50:03 +00003506
Mitch Williams6c5ef622014-02-20 19:29:16 -08003507 for (j = 0; j < 50; j++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003508 tx_reg = rd32(hw, I40E_QTX_ENA(pf_q));
Mitch Williams6c5ef622014-02-20 19:29:16 -08003509 if (((tx_reg >> I40E_QTX_ENA_QENA_REQ_SHIFT) & 1) ==
3510 ((tx_reg >> I40E_QTX_ENA_QENA_STAT_SHIFT) & 1))
3511 break;
3512 usleep_range(1000, 2000);
3513 }
Mitch Williamsfda972f2013-11-28 06:39:29 +00003514 /* Skip if the queue is already in the requested state */
Catherine Sullivan7c122002014-03-14 07:32:29 +00003515 if (enable == !!(tx_reg & I40E_QTX_ENA_QENA_STAT_MASK))
Mitch Williamsfda972f2013-11-28 06:39:29 +00003516 continue;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003517
3518 /* turn on/off the queue */
Shannon Nelsonc5c9eb92013-12-21 05:44:48 +00003519 if (enable) {
3520 wr32(hw, I40E_QTX_HEAD(pf_q), 0);
Mitch Williams6c5ef622014-02-20 19:29:16 -08003521 tx_reg |= I40E_QTX_ENA_QENA_REQ_MASK;
Shannon Nelsonc5c9eb92013-12-21 05:44:48 +00003522 } else {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003523 tx_reg &= ~I40E_QTX_ENA_QENA_REQ_MASK;
Shannon Nelsonc5c9eb92013-12-21 05:44:48 +00003524 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003525
3526 wr32(hw, I40E_QTX_ENA(pf_q), tx_reg);
Neerav Parikh69129dc2014-11-12 00:18:46 +00003527 /* No waiting for the Tx queue to disable */
3528 if (!enable && test_bit(__I40E_PORT_TX_SUSPENDED, &pf->state))
3529 continue;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003530
3531 /* wait for the change to finish */
Neerav Parikh23527302014-06-03 23:50:15 +00003532 ret = i40e_pf_txq_wait(pf, pf_q, enable);
3533 if (ret) {
3534 dev_info(&pf->pdev->dev,
3535 "%s: VSI seid %d Tx ring %d %sable timeout\n",
3536 __func__, vsi->seid, pf_q,
3537 (enable ? "en" : "dis"));
3538 break;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003539 }
3540 }
3541
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00003542 if (hw->revision_id == 0)
3543 mdelay(50);
Neerav Parikh23527302014-06-03 23:50:15 +00003544 return ret;
3545}
3546
3547/**
3548 * i40e_pf_rxq_wait - Wait for a PF's Rx queue to be enabled or disabled
3549 * @pf: the PF being configured
3550 * @pf_q: the PF queue
3551 * @enable: enable or disable state of the queue
3552 *
3553 * This routine will wait for the given Rx queue of the PF to reach the
3554 * enabled or disabled state.
3555 * Returns -ETIMEDOUT in case of failing to reach the requested state after
3556 * multiple retries; else will return 0 in case of success.
3557 **/
3558static int i40e_pf_rxq_wait(struct i40e_pf *pf, int pf_q, bool enable)
3559{
3560 int i;
3561 u32 rx_reg;
3562
3563 for (i = 0; i < I40E_QUEUE_WAIT_RETRY_LIMIT; i++) {
3564 rx_reg = rd32(&pf->hw, I40E_QRX_ENA(pf_q));
3565 if (enable == !!(rx_reg & I40E_QRX_ENA_QENA_STAT_MASK))
3566 break;
3567
Neerav Parikhf98a2002014-09-13 07:40:44 +00003568 usleep_range(10, 20);
Neerav Parikh23527302014-06-03 23:50:15 +00003569 }
3570 if (i >= I40E_QUEUE_WAIT_RETRY_LIMIT)
3571 return -ETIMEDOUT;
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00003572
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003573 return 0;
3574}
3575
3576/**
3577 * i40e_vsi_control_rx - Start or stop a VSI's rings
3578 * @vsi: the VSI being configured
3579 * @enable: start or stop the rings
3580 **/
3581static int i40e_vsi_control_rx(struct i40e_vsi *vsi, bool enable)
3582{
3583 struct i40e_pf *pf = vsi->back;
3584 struct i40e_hw *hw = &pf->hw;
Neerav Parikh23527302014-06-03 23:50:15 +00003585 int i, j, pf_q, ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003586 u32 rx_reg;
3587
3588 pf_q = vsi->base_queue;
3589 for (i = 0; i < vsi->num_queue_pairs; i++, pf_q++) {
Mitch Williams6c5ef622014-02-20 19:29:16 -08003590 for (j = 0; j < 50; j++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003591 rx_reg = rd32(hw, I40E_QRX_ENA(pf_q));
Mitch Williams6c5ef622014-02-20 19:29:16 -08003592 if (((rx_reg >> I40E_QRX_ENA_QENA_REQ_SHIFT) & 1) ==
3593 ((rx_reg >> I40E_QRX_ENA_QENA_STAT_SHIFT) & 1))
3594 break;
3595 usleep_range(1000, 2000);
3596 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003597
Catherine Sullivan7c122002014-03-14 07:32:29 +00003598 /* Skip if the queue is already in the requested state */
3599 if (enable == !!(rx_reg & I40E_QRX_ENA_QENA_STAT_MASK))
3600 continue;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003601
3602 /* turn on/off the queue */
3603 if (enable)
Mitch Williams6c5ef622014-02-20 19:29:16 -08003604 rx_reg |= I40E_QRX_ENA_QENA_REQ_MASK;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003605 else
Mitch Williams6c5ef622014-02-20 19:29:16 -08003606 rx_reg &= ~I40E_QRX_ENA_QENA_REQ_MASK;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003607 wr32(hw, I40E_QRX_ENA(pf_q), rx_reg);
3608
3609 /* wait for the change to finish */
Neerav Parikh23527302014-06-03 23:50:15 +00003610 ret = i40e_pf_rxq_wait(pf, pf_q, enable);
3611 if (ret) {
3612 dev_info(&pf->pdev->dev,
3613 "%s: VSI seid %d Rx ring %d %sable timeout\n",
3614 __func__, vsi->seid, pf_q,
3615 (enable ? "en" : "dis"));
3616 break;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003617 }
3618 }
3619
Neerav Parikh23527302014-06-03 23:50:15 +00003620 return ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003621}
3622
3623/**
3624 * i40e_vsi_control_rings - Start or stop a VSI's rings
3625 * @vsi: the VSI being configured
3626 * @enable: start or stop the rings
3627 **/
Mitch Williamsfc18eaa2013-11-28 06:39:27 +00003628int i40e_vsi_control_rings(struct i40e_vsi *vsi, bool request)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003629{
Anjali Singhai Jain3b867b22013-12-21 05:44:44 +00003630 int ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003631
3632 /* do rx first for enable and last for disable */
3633 if (request) {
3634 ret = i40e_vsi_control_rx(vsi, request);
3635 if (ret)
3636 return ret;
3637 ret = i40e_vsi_control_tx(vsi, request);
3638 } else {
Anjali Singhai Jain3b867b22013-12-21 05:44:44 +00003639 /* Ignore return value, we need to shutdown whatever we can */
3640 i40e_vsi_control_tx(vsi, request);
3641 i40e_vsi_control_rx(vsi, request);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003642 }
3643
3644 return ret;
3645}
3646
3647/**
3648 * i40e_vsi_free_irq - Free the irq association with the OS
3649 * @vsi: the VSI being configured
3650 **/
3651static void i40e_vsi_free_irq(struct i40e_vsi *vsi)
3652{
3653 struct i40e_pf *pf = vsi->back;
3654 struct i40e_hw *hw = &pf->hw;
3655 int base = vsi->base_vector;
3656 u32 val, qp;
3657 int i;
3658
3659 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
3660 if (!vsi->q_vectors)
3661 return;
3662
Shannon Nelson63741842014-04-23 04:50:16 +00003663 if (!vsi->irqs_ready)
3664 return;
3665
3666 vsi->irqs_ready = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003667 for (i = 0; i < vsi->num_q_vectors; i++) {
3668 u16 vector = i + base;
3669
3670 /* free only the irqs that were actually requested */
Shannon Nelson78681b12013-11-28 06:39:36 +00003671 if (!vsi->q_vectors[i] ||
3672 !vsi->q_vectors[i]->num_ringpairs)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003673 continue;
3674
3675 /* clear the affinity_mask in the IRQ descriptor */
3676 irq_set_affinity_hint(pf->msix_entries[vector].vector,
3677 NULL);
3678 free_irq(pf->msix_entries[vector].vector,
Alexander Duyck493fb302013-09-28 07:01:44 +00003679 vsi->q_vectors[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003680
3681 /* Tear down the interrupt queue link list
3682 *
3683 * We know that they come in pairs and always
3684 * the Rx first, then the Tx. To clear the
3685 * link list, stick the EOL value into the
3686 * next_q field of the registers.
3687 */
3688 val = rd32(hw, I40E_PFINT_LNKLSTN(vector - 1));
3689 qp = (val & I40E_PFINT_LNKLSTN_FIRSTQ_INDX_MASK)
3690 >> I40E_PFINT_LNKLSTN_FIRSTQ_INDX_SHIFT;
3691 val |= I40E_QUEUE_END_OF_LIST
3692 << I40E_PFINT_LNKLSTN_FIRSTQ_INDX_SHIFT;
3693 wr32(hw, I40E_PFINT_LNKLSTN(vector - 1), val);
3694
3695 while (qp != I40E_QUEUE_END_OF_LIST) {
3696 u32 next;
3697
3698 val = rd32(hw, I40E_QINT_RQCTL(qp));
3699
3700 val &= ~(I40E_QINT_RQCTL_MSIX_INDX_MASK |
3701 I40E_QINT_RQCTL_MSIX0_INDX_MASK |
3702 I40E_QINT_RQCTL_CAUSE_ENA_MASK |
3703 I40E_QINT_RQCTL_INTEVENT_MASK);
3704
3705 val |= (I40E_QINT_RQCTL_ITR_INDX_MASK |
3706 I40E_QINT_RQCTL_NEXTQ_INDX_MASK);
3707
3708 wr32(hw, I40E_QINT_RQCTL(qp), val);
3709
3710 val = rd32(hw, I40E_QINT_TQCTL(qp));
3711
3712 next = (val & I40E_QINT_TQCTL_NEXTQ_INDX_MASK)
3713 >> I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT;
3714
3715 val &= ~(I40E_QINT_TQCTL_MSIX_INDX_MASK |
3716 I40E_QINT_TQCTL_MSIX0_INDX_MASK |
3717 I40E_QINT_TQCTL_CAUSE_ENA_MASK |
3718 I40E_QINT_TQCTL_INTEVENT_MASK);
3719
3720 val |= (I40E_QINT_TQCTL_ITR_INDX_MASK |
3721 I40E_QINT_TQCTL_NEXTQ_INDX_MASK);
3722
3723 wr32(hw, I40E_QINT_TQCTL(qp), val);
3724 qp = next;
3725 }
3726 }
3727 } else {
3728 free_irq(pf->pdev->irq, pf);
3729
3730 val = rd32(hw, I40E_PFINT_LNKLST0);
3731 qp = (val & I40E_PFINT_LNKLSTN_FIRSTQ_INDX_MASK)
3732 >> I40E_PFINT_LNKLSTN_FIRSTQ_INDX_SHIFT;
3733 val |= I40E_QUEUE_END_OF_LIST
3734 << I40E_PFINT_LNKLST0_FIRSTQ_INDX_SHIFT;
3735 wr32(hw, I40E_PFINT_LNKLST0, val);
3736
3737 val = rd32(hw, I40E_QINT_RQCTL(qp));
3738 val &= ~(I40E_QINT_RQCTL_MSIX_INDX_MASK |
3739 I40E_QINT_RQCTL_MSIX0_INDX_MASK |
3740 I40E_QINT_RQCTL_CAUSE_ENA_MASK |
3741 I40E_QINT_RQCTL_INTEVENT_MASK);
3742
3743 val |= (I40E_QINT_RQCTL_ITR_INDX_MASK |
3744 I40E_QINT_RQCTL_NEXTQ_INDX_MASK);
3745
3746 wr32(hw, I40E_QINT_RQCTL(qp), val);
3747
3748 val = rd32(hw, I40E_QINT_TQCTL(qp));
3749
3750 val &= ~(I40E_QINT_TQCTL_MSIX_INDX_MASK |
3751 I40E_QINT_TQCTL_MSIX0_INDX_MASK |
3752 I40E_QINT_TQCTL_CAUSE_ENA_MASK |
3753 I40E_QINT_TQCTL_INTEVENT_MASK);
3754
3755 val |= (I40E_QINT_TQCTL_ITR_INDX_MASK |
3756 I40E_QINT_TQCTL_NEXTQ_INDX_MASK);
3757
3758 wr32(hw, I40E_QINT_TQCTL(qp), val);
3759 }
3760}
3761
3762/**
Alexander Duyck493fb302013-09-28 07:01:44 +00003763 * i40e_free_q_vector - Free memory allocated for specific interrupt vector
3764 * @vsi: the VSI being configured
3765 * @v_idx: Index of vector to be freed
3766 *
3767 * This function frees the memory allocated to the q_vector. In addition if
3768 * NAPI is enabled it will delete any references to the NAPI struct prior
3769 * to freeing the q_vector.
3770 **/
3771static void i40e_free_q_vector(struct i40e_vsi *vsi, int v_idx)
3772{
3773 struct i40e_q_vector *q_vector = vsi->q_vectors[v_idx];
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003774 struct i40e_ring *ring;
Alexander Duyck493fb302013-09-28 07:01:44 +00003775
3776 if (!q_vector)
3777 return;
3778
3779 /* disassociate q_vector from rings */
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003780 i40e_for_each_ring(ring, q_vector->tx)
3781 ring->q_vector = NULL;
3782
3783 i40e_for_each_ring(ring, q_vector->rx)
3784 ring->q_vector = NULL;
Alexander Duyck493fb302013-09-28 07:01:44 +00003785
3786 /* only VSI w/ an associated netdev is set up w/ NAPI */
3787 if (vsi->netdev)
3788 netif_napi_del(&q_vector->napi);
3789
3790 vsi->q_vectors[v_idx] = NULL;
3791
3792 kfree_rcu(q_vector, rcu);
3793}
3794
3795/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003796 * i40e_vsi_free_q_vectors - Free memory allocated for interrupt vectors
3797 * @vsi: the VSI being un-configured
3798 *
3799 * This frees the memory allocated to the q_vectors and
3800 * deletes references to the NAPI struct.
3801 **/
3802static void i40e_vsi_free_q_vectors(struct i40e_vsi *vsi)
3803{
3804 int v_idx;
3805
Alexander Duyck493fb302013-09-28 07:01:44 +00003806 for (v_idx = 0; v_idx < vsi->num_q_vectors; v_idx++)
3807 i40e_free_q_vector(vsi, v_idx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003808}
3809
3810/**
3811 * i40e_reset_interrupt_capability - Disable interrupt setup in OS
3812 * @pf: board private structure
3813 **/
3814static void i40e_reset_interrupt_capability(struct i40e_pf *pf)
3815{
3816 /* If we're in Legacy mode, the interrupt was cleaned in vsi_close */
3817 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
3818 pci_disable_msix(pf->pdev);
3819 kfree(pf->msix_entries);
3820 pf->msix_entries = NULL;
3821 } else if (pf->flags & I40E_FLAG_MSI_ENABLED) {
3822 pci_disable_msi(pf->pdev);
3823 }
3824 pf->flags &= ~(I40E_FLAG_MSIX_ENABLED | I40E_FLAG_MSI_ENABLED);
3825}
3826
3827/**
3828 * i40e_clear_interrupt_scheme - Clear the current interrupt scheme settings
3829 * @pf: board private structure
3830 *
3831 * We go through and clear interrupt specific resources and reset the structure
3832 * to pre-load conditions
3833 **/
3834static void i40e_clear_interrupt_scheme(struct i40e_pf *pf)
3835{
3836 int i;
3837
3838 i40e_put_lump(pf->irq_pile, 0, I40E_PILE_VALID_BIT-1);
Mitch Williams505682c2014-05-20 08:01:37 +00003839 for (i = 0; i < pf->num_alloc_vsi; i++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003840 if (pf->vsi[i])
3841 i40e_vsi_free_q_vectors(pf->vsi[i]);
3842 i40e_reset_interrupt_capability(pf);
3843}
3844
3845/**
3846 * i40e_napi_enable_all - Enable NAPI for all q_vectors in the VSI
3847 * @vsi: the VSI being configured
3848 **/
3849static void i40e_napi_enable_all(struct i40e_vsi *vsi)
3850{
3851 int q_idx;
3852
3853 if (!vsi->netdev)
3854 return;
3855
3856 for (q_idx = 0; q_idx < vsi->num_q_vectors; q_idx++)
Alexander Duyck493fb302013-09-28 07:01:44 +00003857 napi_enable(&vsi->q_vectors[q_idx]->napi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003858}
3859
3860/**
3861 * i40e_napi_disable_all - Disable NAPI for all q_vectors in the VSI
3862 * @vsi: the VSI being configured
3863 **/
3864static void i40e_napi_disable_all(struct i40e_vsi *vsi)
3865{
3866 int q_idx;
3867
3868 if (!vsi->netdev)
3869 return;
3870
3871 for (q_idx = 0; q_idx < vsi->num_q_vectors; q_idx++)
Alexander Duyck493fb302013-09-28 07:01:44 +00003872 napi_disable(&vsi->q_vectors[q_idx]->napi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003873}
3874
3875/**
Shannon Nelson90ef8d42014-03-14 07:32:26 +00003876 * i40e_vsi_close - Shut down a VSI
3877 * @vsi: the vsi to be quelled
3878 **/
3879static void i40e_vsi_close(struct i40e_vsi *vsi)
3880{
3881 if (!test_and_set_bit(__I40E_DOWN, &vsi->state))
3882 i40e_down(vsi);
3883 i40e_vsi_free_irq(vsi);
3884 i40e_vsi_free_tx_resources(vsi);
3885 i40e_vsi_free_rx_resources(vsi);
3886}
3887
3888/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003889 * i40e_quiesce_vsi - Pause a given VSI
3890 * @vsi: the VSI being paused
3891 **/
3892static void i40e_quiesce_vsi(struct i40e_vsi *vsi)
3893{
3894 if (test_bit(__I40E_DOWN, &vsi->state))
3895 return;
3896
Neerav Parikhd341b7a2014-11-12 00:18:51 +00003897 /* No need to disable FCoE VSI when Tx suspended */
3898 if ((test_bit(__I40E_PORT_TX_SUSPENDED, &vsi->back->state)) &&
3899 vsi->type == I40E_VSI_FCOE) {
3900 dev_dbg(&vsi->back->pdev->dev,
3901 "%s: VSI seid %d skipping FCoE VSI disable\n",
3902 __func__, vsi->seid);
3903 return;
3904 }
3905
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003906 set_bit(__I40E_NEEDS_RESTART, &vsi->state);
3907 if (vsi->netdev && netif_running(vsi->netdev)) {
3908 vsi->netdev->netdev_ops->ndo_stop(vsi->netdev);
3909 } else {
Shannon Nelson90ef8d42014-03-14 07:32:26 +00003910 i40e_vsi_close(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003911 }
3912}
3913
3914/**
3915 * i40e_unquiesce_vsi - Resume a given VSI
3916 * @vsi: the VSI being resumed
3917 **/
3918static void i40e_unquiesce_vsi(struct i40e_vsi *vsi)
3919{
3920 if (!test_bit(__I40E_NEEDS_RESTART, &vsi->state))
3921 return;
3922
3923 clear_bit(__I40E_NEEDS_RESTART, &vsi->state);
3924 if (vsi->netdev && netif_running(vsi->netdev))
3925 vsi->netdev->netdev_ops->ndo_open(vsi->netdev);
3926 else
Shannon Nelson8276f752014-03-14 07:32:27 +00003927 i40e_vsi_open(vsi); /* this clears the DOWN bit */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003928}
3929
3930/**
3931 * i40e_pf_quiesce_all_vsi - Pause all VSIs on a PF
3932 * @pf: the PF
3933 **/
3934static void i40e_pf_quiesce_all_vsi(struct i40e_pf *pf)
3935{
3936 int v;
3937
Mitch Williams505682c2014-05-20 08:01:37 +00003938 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003939 if (pf->vsi[v])
3940 i40e_quiesce_vsi(pf->vsi[v]);
3941 }
3942}
3943
3944/**
3945 * i40e_pf_unquiesce_all_vsi - Resume all VSIs on a PF
3946 * @pf: the PF
3947 **/
3948static void i40e_pf_unquiesce_all_vsi(struct i40e_pf *pf)
3949{
3950 int v;
3951
Mitch Williams505682c2014-05-20 08:01:37 +00003952 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003953 if (pf->vsi[v])
3954 i40e_unquiesce_vsi(pf->vsi[v]);
3955 }
3956}
3957
Neerav Parikh69129dc2014-11-12 00:18:46 +00003958#ifdef CONFIG_I40E_DCB
3959/**
3960 * i40e_vsi_wait_txq_disabled - Wait for VSI's queues to be disabled
3961 * @vsi: the VSI being configured
3962 *
3963 * This function waits for the given VSI's Tx queues to be disabled.
3964 **/
3965static int i40e_vsi_wait_txq_disabled(struct i40e_vsi *vsi)
3966{
3967 struct i40e_pf *pf = vsi->back;
3968 int i, pf_q, ret;
3969
3970 pf_q = vsi->base_queue;
3971 for (i = 0; i < vsi->num_queue_pairs; i++, pf_q++) {
3972 /* Check and wait for the disable status of the queue */
3973 ret = i40e_pf_txq_wait(pf, pf_q, false);
3974 if (ret) {
3975 dev_info(&pf->pdev->dev,
3976 "%s: VSI seid %d Tx ring %d disable timeout\n",
3977 __func__, vsi->seid, pf_q);
3978 return ret;
3979 }
3980 }
3981
3982 return 0;
3983}
3984
3985/**
3986 * i40e_pf_wait_txq_disabled - Wait for all queues of PF VSIs to be disabled
3987 * @pf: the PF
3988 *
3989 * This function waits for the Tx queues to be in disabled state for all the
3990 * VSIs that are managed by this PF.
3991 **/
3992static int i40e_pf_wait_txq_disabled(struct i40e_pf *pf)
3993{
3994 int v, ret = 0;
3995
3996 for (v = 0; v < pf->hw.func_caps.num_vsis; v++) {
Neerav Parikhd341b7a2014-11-12 00:18:51 +00003997 /* No need to wait for FCoE VSI queues */
3998 if (pf->vsi[v] && pf->vsi[v]->type != I40E_VSI_FCOE) {
Neerav Parikh69129dc2014-11-12 00:18:46 +00003999 ret = i40e_vsi_wait_txq_disabled(pf->vsi[v]);
4000 if (ret)
4001 break;
4002 }
4003 }
4004
4005 return ret;
4006}
4007
4008#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004009/**
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004010 * i40e_get_iscsi_tc_map - Return TC map for iSCSI APP
4011 * @pf: pointer to pf
4012 *
4013 * Get TC map for ISCSI PF type that will include iSCSI TC
4014 * and LAN TC.
4015 **/
4016static u8 i40e_get_iscsi_tc_map(struct i40e_pf *pf)
4017{
4018 struct i40e_dcb_app_priority_table app;
4019 struct i40e_hw *hw = &pf->hw;
4020 u8 enabled_tc = 1; /* TC0 is always enabled */
4021 u8 tc, i;
4022 /* Get the iSCSI APP TLV */
4023 struct i40e_dcbx_config *dcbcfg = &hw->local_dcbx_config;
4024
4025 for (i = 0; i < dcbcfg->numapps; i++) {
4026 app = dcbcfg->app[i];
4027 if (app.selector == I40E_APP_SEL_TCPIP &&
4028 app.protocolid == I40E_APP_PROTOID_ISCSI) {
4029 tc = dcbcfg->etscfg.prioritytable[app.priority];
4030 enabled_tc |= (1 << tc);
4031 break;
4032 }
4033 }
4034
4035 return enabled_tc;
4036}
4037
4038/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004039 * i40e_dcb_get_num_tc - Get the number of TCs from DCBx config
4040 * @dcbcfg: the corresponding DCBx configuration structure
4041 *
4042 * Return the number of TCs from given DCBx configuration
4043 **/
4044static u8 i40e_dcb_get_num_tc(struct i40e_dcbx_config *dcbcfg)
4045{
Jesse Brandeburg078b5872013-09-25 23:41:14 +00004046 u8 num_tc = 0;
4047 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004048
4049 /* Scan the ETS Config Priority Table to find
4050 * traffic class enabled for a given priority
4051 * and use the traffic class index to get the
4052 * number of traffic classes enabled
4053 */
4054 for (i = 0; i < I40E_MAX_USER_PRIORITY; i++) {
4055 if (dcbcfg->etscfg.prioritytable[i] > num_tc)
4056 num_tc = dcbcfg->etscfg.prioritytable[i];
4057 }
4058
4059 /* Traffic class index starts from zero so
4060 * increment to return the actual count
4061 */
Jesse Brandeburg078b5872013-09-25 23:41:14 +00004062 return num_tc + 1;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004063}
4064
4065/**
4066 * i40e_dcb_get_enabled_tc - Get enabled traffic classes
4067 * @dcbcfg: the corresponding DCBx configuration structure
4068 *
4069 * Query the current DCB configuration and return the number of
4070 * traffic classes enabled from the given DCBX config
4071 **/
4072static u8 i40e_dcb_get_enabled_tc(struct i40e_dcbx_config *dcbcfg)
4073{
4074 u8 num_tc = i40e_dcb_get_num_tc(dcbcfg);
4075 u8 enabled_tc = 1;
4076 u8 i;
4077
4078 for (i = 0; i < num_tc; i++)
4079 enabled_tc |= 1 << i;
4080
4081 return enabled_tc;
4082}
4083
4084/**
4085 * i40e_pf_get_num_tc - Get enabled traffic classes for PF
4086 * @pf: PF being queried
4087 *
4088 * Return number of traffic classes enabled for the given PF
4089 **/
4090static u8 i40e_pf_get_num_tc(struct i40e_pf *pf)
4091{
4092 struct i40e_hw *hw = &pf->hw;
4093 u8 i, enabled_tc;
4094 u8 num_tc = 0;
4095 struct i40e_dcbx_config *dcbcfg = &hw->local_dcbx_config;
4096
4097 /* If DCB is not enabled then always in single TC */
4098 if (!(pf->flags & I40E_FLAG_DCB_ENABLED))
4099 return 1;
4100
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004101 /* SFP mode will be enabled for all TCs on port */
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004102 if (!(pf->flags & I40E_FLAG_MFP_ENABLED))
4103 return i40e_dcb_get_num_tc(dcbcfg);
4104
4105 /* MFP mode return count of enabled TCs for this PF */
4106 if (pf->hw.func_caps.iscsi)
4107 enabled_tc = i40e_get_iscsi_tc_map(pf);
4108 else
4109 enabled_tc = pf->hw.func_caps.enabled_tcmap;
4110
4111 /* At least have TC0 */
4112 enabled_tc = (enabled_tc ? enabled_tc : 0x1);
4113 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
4114 if (enabled_tc & (1 << i))
4115 num_tc++;
4116 }
4117 return num_tc;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004118}
4119
4120/**
4121 * i40e_pf_get_default_tc - Get bitmap for first enabled TC
4122 * @pf: PF being queried
4123 *
4124 * Return a bitmap for first enabled traffic class for this PF.
4125 **/
4126static u8 i40e_pf_get_default_tc(struct i40e_pf *pf)
4127{
4128 u8 enabled_tc = pf->hw.func_caps.enabled_tcmap;
4129 u8 i = 0;
4130
4131 if (!enabled_tc)
4132 return 0x1; /* TC0 */
4133
4134 /* Find the first enabled TC */
4135 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
4136 if (enabled_tc & (1 << i))
4137 break;
4138 }
4139
4140 return 1 << i;
4141}
4142
4143/**
4144 * i40e_pf_get_pf_tc_map - Get bitmap for enabled traffic classes
4145 * @pf: PF being queried
4146 *
4147 * Return a bitmap for enabled traffic classes for this PF.
4148 **/
4149static u8 i40e_pf_get_tc_map(struct i40e_pf *pf)
4150{
4151 /* If DCB is not enabled for this PF then just return default TC */
4152 if (!(pf->flags & I40E_FLAG_DCB_ENABLED))
4153 return i40e_pf_get_default_tc(pf);
4154
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004155 /* SFP mode we want PF to be enabled for all TCs */
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004156 if (!(pf->flags & I40E_FLAG_MFP_ENABLED))
4157 return i40e_dcb_get_enabled_tc(&pf->hw.local_dcbx_config);
4158
4159 /* MPF enabled and iSCSI PF type */
4160 if (pf->hw.func_caps.iscsi)
4161 return i40e_get_iscsi_tc_map(pf);
4162 else
4163 return pf->hw.func_caps.enabled_tcmap;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004164}
4165
4166/**
4167 * i40e_vsi_get_bw_info - Query VSI BW Information
4168 * @vsi: the VSI being queried
4169 *
4170 * Returns 0 on success, negative value on failure
4171 **/
4172static int i40e_vsi_get_bw_info(struct i40e_vsi *vsi)
4173{
4174 struct i40e_aqc_query_vsi_ets_sla_config_resp bw_ets_config = {0};
4175 struct i40e_aqc_query_vsi_bw_config_resp bw_config = {0};
4176 struct i40e_pf *pf = vsi->back;
4177 struct i40e_hw *hw = &pf->hw;
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004178 i40e_status aq_ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004179 u32 tc_bw_max;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004180 int i;
4181
4182 /* Get the VSI level BW configuration */
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004183 aq_ret = i40e_aq_query_vsi_bw_config(hw, vsi->seid, &bw_config, NULL);
4184 if (aq_ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004185 dev_info(&pf->pdev->dev,
4186 "couldn't get pf vsi bw config, err %d, aq_err %d\n",
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004187 aq_ret, pf->hw.aq.asq_last_status);
4188 return -EINVAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004189 }
4190
4191 /* Get the VSI level BW configuration per TC */
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004192 aq_ret = i40e_aq_query_vsi_ets_sla_config(hw, vsi->seid, &bw_ets_config,
Jesse Brandeburg6838b532014-01-14 00:49:52 -08004193 NULL);
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004194 if (aq_ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004195 dev_info(&pf->pdev->dev,
4196 "couldn't get pf vsi ets bw config, err %d, aq_err %d\n",
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004197 aq_ret, pf->hw.aq.asq_last_status);
4198 return -EINVAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004199 }
4200
4201 if (bw_config.tc_valid_bits != bw_ets_config.tc_valid_bits) {
4202 dev_info(&pf->pdev->dev,
4203 "Enabled TCs mismatch from querying VSI BW info 0x%08x 0x%08x\n",
4204 bw_config.tc_valid_bits,
4205 bw_ets_config.tc_valid_bits);
4206 /* Still continuing */
4207 }
4208
4209 vsi->bw_limit = le16_to_cpu(bw_config.port_bw_limit);
4210 vsi->bw_max_quanta = bw_config.max_bw;
4211 tc_bw_max = le16_to_cpu(bw_ets_config.tc_bw_max[0]) |
4212 (le16_to_cpu(bw_ets_config.tc_bw_max[1]) << 16);
4213 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
4214 vsi->bw_ets_share_credits[i] = bw_ets_config.share_credits[i];
4215 vsi->bw_ets_limit_credits[i] =
4216 le16_to_cpu(bw_ets_config.credits[i]);
4217 /* 3 bits out of 4 for each TC */
4218 vsi->bw_ets_max_quanta[i] = (u8)((tc_bw_max >> (i*4)) & 0x7);
4219 }
Jesse Brandeburg078b5872013-09-25 23:41:14 +00004220
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004221 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004222}
4223
4224/**
4225 * i40e_vsi_configure_bw_alloc - Configure VSI BW allocation per TC
4226 * @vsi: the VSI being configured
4227 * @enabled_tc: TC bitmap
4228 * @bw_credits: BW shared credits per TC
4229 *
4230 * Returns 0 on success, negative value on failure
4231 **/
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004232static int i40e_vsi_configure_bw_alloc(struct i40e_vsi *vsi, u8 enabled_tc,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004233 u8 *bw_share)
4234{
4235 struct i40e_aqc_configure_vsi_tc_bw_data bw_data;
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004236 i40e_status aq_ret;
4237 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004238
4239 bw_data.tc_valid_bits = enabled_tc;
4240 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++)
4241 bw_data.tc_bw_credits[i] = bw_share[i];
4242
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004243 aq_ret = i40e_aq_config_vsi_tc_bw(&vsi->back->hw, vsi->seid, &bw_data,
4244 NULL);
4245 if (aq_ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004246 dev_info(&vsi->back->pdev->dev,
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00004247 "AQ command Config VSI BW allocation per TC failed = %d\n",
4248 vsi->back->hw.aq.asq_last_status);
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004249 return -EINVAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004250 }
4251
4252 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++)
4253 vsi->info.qs_handle[i] = bw_data.qs_handles[i];
4254
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004255 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004256}
4257
4258/**
4259 * i40e_vsi_config_netdev_tc - Setup the netdev TC configuration
4260 * @vsi: the VSI being configured
4261 * @enabled_tc: TC map to be enabled
4262 *
4263 **/
4264static void i40e_vsi_config_netdev_tc(struct i40e_vsi *vsi, u8 enabled_tc)
4265{
4266 struct net_device *netdev = vsi->netdev;
4267 struct i40e_pf *pf = vsi->back;
4268 struct i40e_hw *hw = &pf->hw;
4269 u8 netdev_tc = 0;
4270 int i;
4271 struct i40e_dcbx_config *dcbcfg = &hw->local_dcbx_config;
4272
4273 if (!netdev)
4274 return;
4275
4276 if (!enabled_tc) {
4277 netdev_reset_tc(netdev);
4278 return;
4279 }
4280
4281 /* Set up actual enabled TCs on the VSI */
4282 if (netdev_set_num_tc(netdev, vsi->tc_config.numtc))
4283 return;
4284
4285 /* set per TC queues for the VSI */
4286 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
4287 /* Only set TC queues for enabled tcs
4288 *
4289 * e.g. For a VSI that has TC0 and TC3 enabled the
4290 * enabled_tc bitmap would be 0x00001001; the driver
4291 * will set the numtc for netdev as 2 that will be
4292 * referenced by the netdev layer as TC 0 and 1.
4293 */
4294 if (vsi->tc_config.enabled_tc & (1 << i))
4295 netdev_set_tc_queue(netdev,
4296 vsi->tc_config.tc_info[i].netdev_tc,
4297 vsi->tc_config.tc_info[i].qcount,
4298 vsi->tc_config.tc_info[i].qoffset);
4299 }
4300
4301 /* Assign UP2TC map for the VSI */
4302 for (i = 0; i < I40E_MAX_USER_PRIORITY; i++) {
4303 /* Get the actual TC# for the UP */
4304 u8 ets_tc = dcbcfg->etscfg.prioritytable[i];
4305 /* Get the mapped netdev TC# for the UP */
4306 netdev_tc = vsi->tc_config.tc_info[ets_tc].netdev_tc;
4307 netdev_set_prio_tc_map(netdev, i, netdev_tc);
4308 }
4309}
4310
4311/**
4312 * i40e_vsi_update_queue_map - Update our copy of VSi info with new queue map
4313 * @vsi: the VSI being configured
4314 * @ctxt: the ctxt buffer returned from AQ VSI update param command
4315 **/
4316static void i40e_vsi_update_queue_map(struct i40e_vsi *vsi,
4317 struct i40e_vsi_context *ctxt)
4318{
4319 /* copy just the sections touched not the entire info
4320 * since not all sections are valid as returned by
4321 * update vsi params
4322 */
4323 vsi->info.mapping_flags = ctxt->info.mapping_flags;
4324 memcpy(&vsi->info.queue_mapping,
4325 &ctxt->info.queue_mapping, sizeof(vsi->info.queue_mapping));
4326 memcpy(&vsi->info.tc_mapping, ctxt->info.tc_mapping,
4327 sizeof(vsi->info.tc_mapping));
4328}
4329
4330/**
4331 * i40e_vsi_config_tc - Configure VSI Tx Scheduler for given TC map
4332 * @vsi: VSI to be configured
4333 * @enabled_tc: TC bitmap
4334 *
4335 * This configures a particular VSI for TCs that are mapped to the
4336 * given TC bitmap. It uses default bandwidth share for TCs across
4337 * VSIs to configure TC for a particular VSI.
4338 *
4339 * NOTE:
4340 * It is expected that the VSI queues have been quisced before calling
4341 * this function.
4342 **/
4343static int i40e_vsi_config_tc(struct i40e_vsi *vsi, u8 enabled_tc)
4344{
4345 u8 bw_share[I40E_MAX_TRAFFIC_CLASS] = {0};
4346 struct i40e_vsi_context ctxt;
4347 int ret = 0;
4348 int i;
4349
4350 /* Check if enabled_tc is same as existing or new TCs */
4351 if (vsi->tc_config.enabled_tc == enabled_tc)
4352 return ret;
4353
4354 /* Enable ETS TCs with equal BW Share for now across all VSIs */
4355 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
4356 if (enabled_tc & (1 << i))
4357 bw_share[i] = 1;
4358 }
4359
4360 ret = i40e_vsi_configure_bw_alloc(vsi, enabled_tc, bw_share);
4361 if (ret) {
4362 dev_info(&vsi->back->pdev->dev,
4363 "Failed configuring TC map %d for VSI %d\n",
4364 enabled_tc, vsi->seid);
4365 goto out;
4366 }
4367
4368 /* Update Queue Pairs Mapping for currently enabled UPs */
4369 ctxt.seid = vsi->seid;
4370 ctxt.pf_num = vsi->back->hw.pf_id;
4371 ctxt.vf_num = 0;
4372 ctxt.uplink_seid = vsi->uplink_seid;
4373 memcpy(&ctxt.info, &vsi->info, sizeof(vsi->info));
4374 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, false);
4375
4376 /* Update the VSI after updating the VSI queue-mapping information */
4377 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
4378 if (ret) {
4379 dev_info(&vsi->back->pdev->dev,
4380 "update vsi failed, aq_err=%d\n",
4381 vsi->back->hw.aq.asq_last_status);
4382 goto out;
4383 }
4384 /* update the local VSI info with updated queue map */
4385 i40e_vsi_update_queue_map(vsi, &ctxt);
4386 vsi->info.valid_sections = 0;
4387
4388 /* Update current VSI BW information */
4389 ret = i40e_vsi_get_bw_info(vsi);
4390 if (ret) {
4391 dev_info(&vsi->back->pdev->dev,
4392 "Failed updating vsi bw info, aq_err=%d\n",
4393 vsi->back->hw.aq.asq_last_status);
4394 goto out;
4395 }
4396
4397 /* Update the netdev TC setup */
4398 i40e_vsi_config_netdev_tc(vsi, enabled_tc);
4399out:
4400 return ret;
4401}
4402
4403/**
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004404 * i40e_veb_config_tc - Configure TCs for given VEB
4405 * @veb: given VEB
4406 * @enabled_tc: TC bitmap
4407 *
4408 * Configures given TC bitmap for VEB (switching) element
4409 **/
4410int i40e_veb_config_tc(struct i40e_veb *veb, u8 enabled_tc)
4411{
4412 struct i40e_aqc_configure_switching_comp_bw_config_data bw_data = {0};
4413 struct i40e_pf *pf = veb->pf;
4414 int ret = 0;
4415 int i;
4416
4417 /* No TCs or already enabled TCs just return */
4418 if (!enabled_tc || veb->enabled_tc == enabled_tc)
4419 return ret;
4420
4421 bw_data.tc_valid_bits = enabled_tc;
4422 /* bw_data.absolute_credits is not set (relative) */
4423
4424 /* Enable ETS TCs with equal BW Share for now */
4425 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
4426 if (enabled_tc & (1 << i))
4427 bw_data.tc_bw_share_credits[i] = 1;
4428 }
4429
4430 ret = i40e_aq_config_switch_comp_bw_config(&pf->hw, veb->seid,
4431 &bw_data, NULL);
4432 if (ret) {
4433 dev_info(&pf->pdev->dev,
4434 "veb bw config failed, aq_err=%d\n",
4435 pf->hw.aq.asq_last_status);
4436 goto out;
4437 }
4438
4439 /* Update the BW information */
4440 ret = i40e_veb_get_bw_info(veb);
4441 if (ret) {
4442 dev_info(&pf->pdev->dev,
4443 "Failed getting veb bw config, aq_err=%d\n",
4444 pf->hw.aq.asq_last_status);
4445 }
4446
4447out:
4448 return ret;
4449}
4450
4451#ifdef CONFIG_I40E_DCB
4452/**
4453 * i40e_dcb_reconfigure - Reconfigure all VEBs and VSIs
4454 * @pf: PF struct
4455 *
4456 * Reconfigure VEB/VSIs on a given PF; it is assumed that
4457 * the caller would've quiesce all the VSIs before calling
4458 * this function
4459 **/
4460static void i40e_dcb_reconfigure(struct i40e_pf *pf)
4461{
4462 u8 tc_map = 0;
4463 int ret;
4464 u8 v;
4465
4466 /* Enable the TCs available on PF to all VEBs */
4467 tc_map = i40e_pf_get_tc_map(pf);
4468 for (v = 0; v < I40E_MAX_VEB; v++) {
4469 if (!pf->veb[v])
4470 continue;
4471 ret = i40e_veb_config_tc(pf->veb[v], tc_map);
4472 if (ret) {
4473 dev_info(&pf->pdev->dev,
4474 "Failed configuring TC for VEB seid=%d\n",
4475 pf->veb[v]->seid);
4476 /* Will try to configure as many components */
4477 }
4478 }
4479
4480 /* Update each VSI */
Mitch Williams505682c2014-05-20 08:01:37 +00004481 for (v = 0; v < pf->num_alloc_vsi; v++) {
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004482 if (!pf->vsi[v])
4483 continue;
4484
4485 /* - Enable all TCs for the LAN VSI
Vasu Dev38e00432014-08-01 13:27:03 -07004486#ifdef I40E_FCOE
4487 * - For FCoE VSI only enable the TC configured
4488 * as per the APP TLV
4489#endif
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004490 * - For all others keep them at TC0 for now
4491 */
4492 if (v == pf->lan_vsi)
4493 tc_map = i40e_pf_get_tc_map(pf);
4494 else
4495 tc_map = i40e_pf_get_default_tc(pf);
Vasu Dev38e00432014-08-01 13:27:03 -07004496#ifdef I40E_FCOE
4497 if (pf->vsi[v]->type == I40E_VSI_FCOE)
4498 tc_map = i40e_get_fcoe_tc_map(pf);
4499#endif /* #ifdef I40E_FCOE */
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004500
4501 ret = i40e_vsi_config_tc(pf->vsi[v], tc_map);
4502 if (ret) {
4503 dev_info(&pf->pdev->dev,
4504 "Failed configuring TC for VSI seid=%d\n",
4505 pf->vsi[v]->seid);
4506 /* Will try to configure as many components */
4507 } else {
Neerav Parikh0672a092014-04-01 07:11:47 +00004508 /* Re-configure VSI vectors based on updated TC map */
4509 i40e_vsi_map_rings_to_vectors(pf->vsi[v]);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004510 if (pf->vsi[v]->netdev)
4511 i40e_dcbnl_set_all(pf->vsi[v]);
4512 }
4513 }
4514}
4515
4516/**
Neerav Parikh2fd75f32014-11-12 00:18:20 +00004517 * i40e_resume_port_tx - Resume port Tx
4518 * @pf: PF struct
4519 *
4520 * Resume a port's Tx and issue a PF reset in case of failure to
4521 * resume.
4522 **/
4523static int i40e_resume_port_tx(struct i40e_pf *pf)
4524{
4525 struct i40e_hw *hw = &pf->hw;
4526 int ret;
4527
4528 ret = i40e_aq_resume_port_tx(hw, NULL);
4529 if (ret) {
4530 dev_info(&pf->pdev->dev,
4531 "AQ command Resume Port Tx failed = %d\n",
4532 pf->hw.aq.asq_last_status);
4533 /* Schedule PF reset to recover */
4534 set_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
4535 i40e_service_event_schedule(pf);
4536 }
4537
4538 return ret;
4539}
4540
4541/**
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004542 * i40e_init_pf_dcb - Initialize DCB configuration
4543 * @pf: PF being configured
4544 *
4545 * Query the current DCB configuration and cache it
4546 * in the hardware structure
4547 **/
4548static int i40e_init_pf_dcb(struct i40e_pf *pf)
4549{
4550 struct i40e_hw *hw = &pf->hw;
4551 int err = 0;
4552
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004553 /* Get the initial DCB configuration */
4554 err = i40e_init_dcb(hw);
4555 if (!err) {
4556 /* Device/Function is not DCBX capable */
4557 if ((!hw->func_caps.dcb) ||
4558 (hw->dcbx_status == I40E_DCBX_STATUS_DISABLED)) {
4559 dev_info(&pf->pdev->dev,
4560 "DCBX offload is not supported or is disabled for this PF.\n");
4561
4562 if (pf->flags & I40E_FLAG_MFP_ENABLED)
4563 goto out;
4564
4565 } else {
4566 /* When status is not DISABLED then DCBX in FW */
4567 pf->dcbx_cap = DCB_CAP_DCBX_LLD_MANAGED |
4568 DCB_CAP_DCBX_VER_IEEE;
Neerav Parikh4d9b6042014-05-22 06:31:51 +00004569
4570 pf->flags |= I40E_FLAG_DCB_CAPABLE;
4571 /* Enable DCB tagging only when more than one TC */
4572 if (i40e_dcb_get_num_tc(&hw->local_dcbx_config) > 1)
4573 pf->flags |= I40E_FLAG_DCB_ENABLED;
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00004574 dev_dbg(&pf->pdev->dev,
4575 "DCBX offload is supported for this PF.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004576 }
Neerav Parikh014269f2014-04-01 07:11:48 +00004577 } else {
Shannon Nelsonaebfc812014-12-11 07:06:38 +00004578 dev_info(&pf->pdev->dev,
4579 "AQ Querying DCB configuration failed: aq_err %d\n",
Neerav Parikh014269f2014-04-01 07:11:48 +00004580 pf->hw.aq.asq_last_status);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004581 }
4582
4583out:
4584 return err;
4585}
4586#endif /* CONFIG_I40E_DCB */
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004587#define SPEED_SIZE 14
4588#define FC_SIZE 8
4589/**
4590 * i40e_print_link_message - print link up or down
4591 * @vsi: the VSI for which link needs a message
4592 */
4593static void i40e_print_link_message(struct i40e_vsi *vsi, bool isup)
4594{
4595 char speed[SPEED_SIZE] = "Unknown";
4596 char fc[FC_SIZE] = "RX/TX";
4597
4598 if (!isup) {
4599 netdev_info(vsi->netdev, "NIC Link is Down\n");
4600 return;
4601 }
4602
Greg Rose148c2d82014-12-11 07:06:27 +00004603 /* Warn user if link speed on NPAR enabled partition is not at
4604 * least 10GB
4605 */
4606 if (vsi->back->hw.func_caps.npar_enable &&
4607 (vsi->back->hw.phy.link_info.link_speed == I40E_LINK_SPEED_1GB ||
4608 vsi->back->hw.phy.link_info.link_speed == I40E_LINK_SPEED_100MB))
4609 netdev_warn(vsi->netdev,
4610 "The partition detected link speed that is less than 10Gbps\n");
4611
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004612 switch (vsi->back->hw.phy.link_info.link_speed) {
4613 case I40E_LINK_SPEED_40GB:
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00004614 strlcpy(speed, "40 Gbps", SPEED_SIZE);
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004615 break;
4616 case I40E_LINK_SPEED_10GB:
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00004617 strlcpy(speed, "10 Gbps", SPEED_SIZE);
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004618 break;
4619 case I40E_LINK_SPEED_1GB:
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00004620 strlcpy(speed, "1000 Mbps", SPEED_SIZE);
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004621 break;
Mitch Williams5960d332014-09-13 07:40:47 +00004622 case I40E_LINK_SPEED_100MB:
4623 strncpy(speed, "100 Mbps", SPEED_SIZE);
4624 break;
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004625 default:
4626 break;
4627 }
4628
4629 switch (vsi->back->hw.fc.current_mode) {
4630 case I40E_FC_FULL:
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00004631 strlcpy(fc, "RX/TX", FC_SIZE);
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004632 break;
4633 case I40E_FC_TX_PAUSE:
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00004634 strlcpy(fc, "TX", FC_SIZE);
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004635 break;
4636 case I40E_FC_RX_PAUSE:
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00004637 strlcpy(fc, "RX", FC_SIZE);
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004638 break;
4639 default:
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00004640 strlcpy(fc, "None", FC_SIZE);
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004641 break;
4642 }
4643
4644 netdev_info(vsi->netdev, "NIC Link is Up %s Full Duplex, Flow Control: %s\n",
4645 speed, fc);
4646}
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004647
4648/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004649 * i40e_up_complete - Finish the last steps of bringing up a connection
4650 * @vsi: the VSI being configured
4651 **/
4652static int i40e_up_complete(struct i40e_vsi *vsi)
4653{
4654 struct i40e_pf *pf = vsi->back;
4655 int err;
4656
4657 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
4658 i40e_vsi_configure_msix(vsi);
4659 else
4660 i40e_configure_msi_and_legacy(vsi);
4661
4662 /* start rings */
4663 err = i40e_vsi_control_rings(vsi, true);
4664 if (err)
4665 return err;
4666
4667 clear_bit(__I40E_DOWN, &vsi->state);
4668 i40e_napi_enable_all(vsi);
4669 i40e_vsi_enable_irq(vsi);
4670
4671 if ((pf->hw.phy.link_info.link_info & I40E_AQ_LINK_UP) &&
4672 (vsi->netdev)) {
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004673 i40e_print_link_message(vsi, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004674 netif_tx_start_all_queues(vsi->netdev);
4675 netif_carrier_on(vsi->netdev);
Anjali Singhai6d779b42013-09-28 06:00:02 +00004676 } else if (vsi->netdev) {
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004677 i40e_print_link_message(vsi, false);
Carolyn Wyborny7b592f62014-07-10 07:58:19 +00004678 /* need to check for qualified module here*/
4679 if ((pf->hw.phy.link_info.link_info &
4680 I40E_AQ_MEDIA_AVAILABLE) &&
4681 (!(pf->hw.phy.link_info.an_info &
4682 I40E_AQ_QUALIFIED_MODULE)))
4683 netdev_err(vsi->netdev,
4684 "the driver failed to link because an unqualified module was detected.");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004685 }
Anjali Singhai Jainca64fa42014-02-11 08:26:30 +00004686
4687 /* replay FDIR SB filters */
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00004688 if (vsi->type == I40E_VSI_FDIR) {
4689 /* reset fd counters */
4690 pf->fd_add_err = pf->fd_atr_cnt = 0;
4691 if (pf->fd_tcp_rule > 0) {
4692 pf->flags &= ~I40E_FLAG_FD_ATR_ENABLED;
4693 dev_info(&pf->pdev->dev, "Forcing ATR off, sideband rules for TCP/IPv4 exist\n");
4694 pf->fd_tcp_rule = 0;
4695 }
Anjali Singhai Jainca64fa42014-02-11 08:26:30 +00004696 i40e_fdir_filter_restore(vsi);
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00004697 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004698 i40e_service_event_schedule(pf);
4699
4700 return 0;
4701}
4702
4703/**
4704 * i40e_vsi_reinit_locked - Reset the VSI
4705 * @vsi: the VSI being configured
4706 *
4707 * Rebuild the ring structs after some configuration
4708 * has changed, e.g. MTU size.
4709 **/
4710static void i40e_vsi_reinit_locked(struct i40e_vsi *vsi)
4711{
4712 struct i40e_pf *pf = vsi->back;
4713
4714 WARN_ON(in_interrupt());
4715 while (test_and_set_bit(__I40E_CONFIG_BUSY, &pf->state))
4716 usleep_range(1000, 2000);
4717 i40e_down(vsi);
4718
4719 /* Give a VF some time to respond to the reset. The
4720 * two second wait is based upon the watchdog cycle in
4721 * the VF driver.
4722 */
4723 if (vsi->type == I40E_VSI_SRIOV)
4724 msleep(2000);
4725 i40e_up(vsi);
4726 clear_bit(__I40E_CONFIG_BUSY, &pf->state);
4727}
4728
4729/**
4730 * i40e_up - Bring the connection back up after being down
4731 * @vsi: the VSI being configured
4732 **/
4733int i40e_up(struct i40e_vsi *vsi)
4734{
4735 int err;
4736
4737 err = i40e_vsi_configure(vsi);
4738 if (!err)
4739 err = i40e_up_complete(vsi);
4740
4741 return err;
4742}
4743
4744/**
4745 * i40e_down - Shutdown the connection processing
4746 * @vsi: the VSI being stopped
4747 **/
4748void i40e_down(struct i40e_vsi *vsi)
4749{
4750 int i;
4751
4752 /* It is assumed that the caller of this function
4753 * sets the vsi->state __I40E_DOWN bit.
4754 */
4755 if (vsi->netdev) {
4756 netif_carrier_off(vsi->netdev);
4757 netif_tx_disable(vsi->netdev);
4758 }
4759 i40e_vsi_disable_irq(vsi);
4760 i40e_vsi_control_rings(vsi, false);
4761 i40e_napi_disable_all(vsi);
4762
4763 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00004764 i40e_clean_tx_ring(vsi->tx_rings[i]);
4765 i40e_clean_rx_ring(vsi->rx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004766 }
4767}
4768
4769/**
4770 * i40e_setup_tc - configure multiple traffic classes
4771 * @netdev: net device to configure
4772 * @tc: number of traffic classes to enable
4773 **/
Vasu Dev38e00432014-08-01 13:27:03 -07004774#ifdef I40E_FCOE
4775int i40e_setup_tc(struct net_device *netdev, u8 tc)
4776#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004777static int i40e_setup_tc(struct net_device *netdev, u8 tc)
Vasu Dev38e00432014-08-01 13:27:03 -07004778#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004779{
4780 struct i40e_netdev_priv *np = netdev_priv(netdev);
4781 struct i40e_vsi *vsi = np->vsi;
4782 struct i40e_pf *pf = vsi->back;
4783 u8 enabled_tc = 0;
4784 int ret = -EINVAL;
4785 int i;
4786
4787 /* Check if DCB enabled to continue */
4788 if (!(pf->flags & I40E_FLAG_DCB_ENABLED)) {
4789 netdev_info(netdev, "DCB is not enabled for adapter\n");
4790 goto exit;
4791 }
4792
4793 /* Check if MFP enabled */
4794 if (pf->flags & I40E_FLAG_MFP_ENABLED) {
4795 netdev_info(netdev, "Configuring TC not supported in MFP mode\n");
4796 goto exit;
4797 }
4798
4799 /* Check whether tc count is within enabled limit */
4800 if (tc > i40e_pf_get_num_tc(pf)) {
4801 netdev_info(netdev, "TC count greater than enabled on link for adapter\n");
4802 goto exit;
4803 }
4804
4805 /* Generate TC map for number of tc requested */
4806 for (i = 0; i < tc; i++)
4807 enabled_tc |= (1 << i);
4808
4809 /* Requesting same TC configuration as already enabled */
4810 if (enabled_tc == vsi->tc_config.enabled_tc)
4811 return 0;
4812
4813 /* Quiesce VSI queues */
4814 i40e_quiesce_vsi(vsi);
4815
4816 /* Configure VSI for enabled TCs */
4817 ret = i40e_vsi_config_tc(vsi, enabled_tc);
4818 if (ret) {
4819 netdev_info(netdev, "Failed configuring TC for VSI seid=%d\n",
4820 vsi->seid);
4821 goto exit;
4822 }
4823
4824 /* Unquiesce VSI */
4825 i40e_unquiesce_vsi(vsi);
4826
4827exit:
4828 return ret;
4829}
4830
4831/**
4832 * i40e_open - Called when a network interface is made active
4833 * @netdev: network interface device structure
4834 *
4835 * The open entry point is called when a network interface is made
4836 * active by the system (IFF_UP). At this point all resources needed
4837 * for transmit and receive operations are allocated, the interrupt
4838 * handler is registered with the OS, the netdev watchdog subtask is
4839 * enabled, and the stack is notified that the interface is ready.
4840 *
4841 * Returns 0 on success, negative value on failure
4842 **/
Vasu Dev38e00432014-08-01 13:27:03 -07004843#ifdef I40E_FCOE
4844int i40e_open(struct net_device *netdev)
4845#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004846static int i40e_open(struct net_device *netdev)
Vasu Dev38e00432014-08-01 13:27:03 -07004847#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004848{
4849 struct i40e_netdev_priv *np = netdev_priv(netdev);
4850 struct i40e_vsi *vsi = np->vsi;
4851 struct i40e_pf *pf = vsi->back;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004852 int err;
4853
Shannon Nelson4eb3f762014-03-06 08:59:58 +00004854 /* disallow open during test or if eeprom is broken */
4855 if (test_bit(__I40E_TESTING, &pf->state) ||
4856 test_bit(__I40E_BAD_EEPROM, &pf->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004857 return -EBUSY;
4858
4859 netif_carrier_off(netdev);
4860
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00004861 err = i40e_vsi_open(vsi);
4862 if (err)
4863 return err;
4864
Jesse Brandeburg059dab62014-04-01 09:07:20 +00004865 /* configure global TSO hardware offload settings */
4866 wr32(&pf->hw, I40E_GLLAN_TSOMSK_F, be32_to_cpu(TCP_FLAG_PSH |
4867 TCP_FLAG_FIN) >> 16);
4868 wr32(&pf->hw, I40E_GLLAN_TSOMSK_M, be32_to_cpu(TCP_FLAG_PSH |
4869 TCP_FLAG_FIN |
4870 TCP_FLAG_CWR) >> 16);
4871 wr32(&pf->hw, I40E_GLLAN_TSOMSK_L, be32_to_cpu(TCP_FLAG_CWR) >> 16);
4872
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00004873#ifdef CONFIG_I40E_VXLAN
4874 vxlan_get_rx_port(netdev);
4875#endif
4876
4877 return 0;
4878}
4879
4880/**
4881 * i40e_vsi_open -
4882 * @vsi: the VSI to open
4883 *
4884 * Finish initialization of the VSI.
4885 *
4886 * Returns 0 on success, negative value on failure
4887 **/
4888int i40e_vsi_open(struct i40e_vsi *vsi)
4889{
4890 struct i40e_pf *pf = vsi->back;
Carolyn Wybornyb294ac72014-12-11 07:06:39 +00004891 char int_name[I40E_INT_NAME_STR_LEN];
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00004892 int err;
4893
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004894 /* allocate descriptors */
4895 err = i40e_vsi_setup_tx_resources(vsi);
4896 if (err)
4897 goto err_setup_tx;
4898 err = i40e_vsi_setup_rx_resources(vsi);
4899 if (err)
4900 goto err_setup_rx;
4901
4902 err = i40e_vsi_configure(vsi);
4903 if (err)
4904 goto err_setup_rx;
4905
Shannon Nelsonc22e3c62014-03-14 07:32:25 +00004906 if (vsi->netdev) {
4907 snprintf(int_name, sizeof(int_name) - 1, "%s-%s",
4908 dev_driver_string(&pf->pdev->dev), vsi->netdev->name);
4909 err = i40e_vsi_request_irq(vsi, int_name);
4910 if (err)
4911 goto err_setup_rx;
4912
4913 /* Notify the stack of the actual queue counts. */
4914 err = netif_set_real_num_tx_queues(vsi->netdev,
4915 vsi->num_queue_pairs);
4916 if (err)
4917 goto err_set_queues;
4918
4919 err = netif_set_real_num_rx_queues(vsi->netdev,
4920 vsi->num_queue_pairs);
4921 if (err)
4922 goto err_set_queues;
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00004923
4924 } else if (vsi->type == I40E_VSI_FDIR) {
Carolyn Wybornye240f672014-12-11 07:06:37 +00004925 snprintf(int_name, sizeof(int_name) - 1, "%s-%s:fdir",
Carolyn Wybornyb2008cb2014-11-11 20:05:26 +00004926 dev_driver_string(&pf->pdev->dev),
4927 dev_name(&pf->pdev->dev));
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00004928 err = i40e_vsi_request_irq(vsi, int_name);
Carolyn Wybornyb2008cb2014-11-11 20:05:26 +00004929
Shannon Nelsonc22e3c62014-03-14 07:32:25 +00004930 } else {
Jean Sacrence9ccb12014-05-01 14:31:18 +00004931 err = -EINVAL;
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00004932 goto err_setup_rx;
4933 }
Anjali Singhai Jain25946dd2013-11-26 10:49:14 +00004934
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004935 err = i40e_up_complete(vsi);
4936 if (err)
4937 goto err_up_complete;
4938
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004939 return 0;
4940
4941err_up_complete:
4942 i40e_down(vsi);
Anjali Singhai Jain25946dd2013-11-26 10:49:14 +00004943err_set_queues:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004944 i40e_vsi_free_irq(vsi);
4945err_setup_rx:
4946 i40e_vsi_free_rx_resources(vsi);
4947err_setup_tx:
4948 i40e_vsi_free_tx_resources(vsi);
4949 if (vsi == pf->vsi[pf->lan_vsi])
4950 i40e_do_reset(pf, (1 << __I40E_PF_RESET_REQUESTED));
4951
4952 return err;
4953}
4954
4955/**
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00004956 * i40e_fdir_filter_exit - Cleans up the Flow Director accounting
4957 * @pf: Pointer to pf
4958 *
4959 * This function destroys the hlist where all the Flow Director
4960 * filters were saved.
4961 **/
4962static void i40e_fdir_filter_exit(struct i40e_pf *pf)
4963{
4964 struct i40e_fdir_filter *filter;
4965 struct hlist_node *node2;
4966
4967 hlist_for_each_entry_safe(filter, node2,
4968 &pf->fdir_filter_list, fdir_node) {
4969 hlist_del(&filter->fdir_node);
4970 kfree(filter);
4971 }
4972 pf->fdir_pf_active_filters = 0;
4973}
4974
4975/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004976 * i40e_close - Disables a network interface
4977 * @netdev: network interface device structure
4978 *
4979 * The close entry point is called when an interface is de-activated
4980 * by the OS. The hardware is still under the driver's control, but
4981 * this netdev interface is disabled.
4982 *
4983 * Returns 0, this is not allowed to fail
4984 **/
Vasu Dev38e00432014-08-01 13:27:03 -07004985#ifdef I40E_FCOE
4986int i40e_close(struct net_device *netdev)
4987#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004988static int i40e_close(struct net_device *netdev)
Vasu Dev38e00432014-08-01 13:27:03 -07004989#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004990{
4991 struct i40e_netdev_priv *np = netdev_priv(netdev);
4992 struct i40e_vsi *vsi = np->vsi;
4993
Shannon Nelson90ef8d42014-03-14 07:32:26 +00004994 i40e_vsi_close(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004995
4996 return 0;
4997}
4998
4999/**
5000 * i40e_do_reset - Start a PF or Core Reset sequence
5001 * @pf: board private structure
5002 * @reset_flags: which reset is requested
5003 *
5004 * The essential difference in resets is that the PF Reset
5005 * doesn't clear the packet buffers, doesn't reset the PE
5006 * firmware, and doesn't bother the other PFs on the chip.
5007 **/
5008void i40e_do_reset(struct i40e_pf *pf, u32 reset_flags)
5009{
5010 u32 val;
5011
5012 WARN_ON(in_interrupt());
5013
Mitch Williams263fc482014-04-23 04:50:11 +00005014 if (i40e_check_asq_alive(&pf->hw))
5015 i40e_vc_notify_reset(pf);
5016
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005017 /* do the biggest reset indicated */
5018 if (reset_flags & (1 << __I40E_GLOBAL_RESET_REQUESTED)) {
5019
5020 /* Request a Global Reset
5021 *
5022 * This will start the chip's countdown to the actual full
5023 * chip reset event, and a warning interrupt to be sent
5024 * to all PFs, including the requestor. Our handler
5025 * for the warning interrupt will deal with the shutdown
5026 * and recovery of the switch setup.
5027 */
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005028 dev_dbg(&pf->pdev->dev, "GlobalR requested\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005029 val = rd32(&pf->hw, I40E_GLGEN_RTRIG);
5030 val |= I40E_GLGEN_RTRIG_GLOBR_MASK;
5031 wr32(&pf->hw, I40E_GLGEN_RTRIG, val);
5032
5033 } else if (reset_flags & (1 << __I40E_CORE_RESET_REQUESTED)) {
5034
5035 /* Request a Core Reset
5036 *
5037 * Same as Global Reset, except does *not* include the MAC/PHY
5038 */
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005039 dev_dbg(&pf->pdev->dev, "CoreR requested\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005040 val = rd32(&pf->hw, I40E_GLGEN_RTRIG);
5041 val |= I40E_GLGEN_RTRIG_CORER_MASK;
5042 wr32(&pf->hw, I40E_GLGEN_RTRIG, val);
5043 i40e_flush(&pf->hw);
5044
Shannon Nelson7823fe32013-11-16 10:00:45 +00005045 } else if (reset_flags & (1 << __I40E_EMP_RESET_REQUESTED)) {
5046
5047 /* Request a Firmware Reset
5048 *
5049 * Same as Global reset, plus restarting the
5050 * embedded firmware engine.
5051 */
5052 /* enable EMP Reset */
5053 val = rd32(&pf->hw, I40E_GLGEN_RSTENA_EMP);
5054 val |= I40E_GLGEN_RSTENA_EMP_EMP_RST_ENA_MASK;
5055 wr32(&pf->hw, I40E_GLGEN_RSTENA_EMP, val);
5056
5057 /* force the reset */
5058 val = rd32(&pf->hw, I40E_GLGEN_RTRIG);
5059 val |= I40E_GLGEN_RTRIG_EMPFWR_MASK;
5060 wr32(&pf->hw, I40E_GLGEN_RTRIG, val);
5061 i40e_flush(&pf->hw);
5062
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005063 } else if (reset_flags & (1 << __I40E_PF_RESET_REQUESTED)) {
5064
5065 /* Request a PF Reset
5066 *
5067 * Resets only the PF-specific registers
5068 *
5069 * This goes directly to the tear-down and rebuild of
5070 * the switch, since we need to do all the recovery as
5071 * for the Core Reset.
5072 */
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005073 dev_dbg(&pf->pdev->dev, "PFR requested\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005074 i40e_handle_reset_warning(pf);
5075
5076 } else if (reset_flags & (1 << __I40E_REINIT_REQUESTED)) {
5077 int v;
5078
5079 /* Find the VSI(s) that requested a re-init */
5080 dev_info(&pf->pdev->dev,
5081 "VSI reinit requested\n");
Mitch Williams505682c2014-05-20 08:01:37 +00005082 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005083 struct i40e_vsi *vsi = pf->vsi[v];
5084 if (vsi != NULL &&
5085 test_bit(__I40E_REINIT_REQUESTED, &vsi->state)) {
5086 i40e_vsi_reinit_locked(pf->vsi[v]);
5087 clear_bit(__I40E_REINIT_REQUESTED, &vsi->state);
5088 }
5089 }
5090
5091 /* no further action needed, so return now */
5092 return;
Neerav Parikhb5d06f02014-06-03 23:50:17 +00005093 } else if (reset_flags & (1 << __I40E_DOWN_REQUESTED)) {
5094 int v;
5095
5096 /* Find the VSI(s) that needs to be brought down */
5097 dev_info(&pf->pdev->dev, "VSI down requested\n");
5098 for (v = 0; v < pf->num_alloc_vsi; v++) {
5099 struct i40e_vsi *vsi = pf->vsi[v];
5100 if (vsi != NULL &&
5101 test_bit(__I40E_DOWN_REQUESTED, &vsi->state)) {
5102 set_bit(__I40E_DOWN, &vsi->state);
5103 i40e_down(vsi);
5104 clear_bit(__I40E_DOWN_REQUESTED, &vsi->state);
5105 }
5106 }
5107
5108 /* no further action needed, so return now */
5109 return;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005110 } else {
5111 dev_info(&pf->pdev->dev,
5112 "bad reset request 0x%08x\n", reset_flags);
5113 return;
5114 }
5115}
5116
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005117#ifdef CONFIG_I40E_DCB
5118/**
5119 * i40e_dcb_need_reconfig - Check if DCB needs reconfig
5120 * @pf: board private structure
5121 * @old_cfg: current DCB config
5122 * @new_cfg: new DCB config
5123 **/
5124bool i40e_dcb_need_reconfig(struct i40e_pf *pf,
5125 struct i40e_dcbx_config *old_cfg,
5126 struct i40e_dcbx_config *new_cfg)
5127{
5128 bool need_reconfig = false;
5129
5130 /* Check if ETS configuration has changed */
5131 if (memcmp(&new_cfg->etscfg,
5132 &old_cfg->etscfg,
5133 sizeof(new_cfg->etscfg))) {
5134 /* If Priority Table has changed reconfig is needed */
5135 if (memcmp(&new_cfg->etscfg.prioritytable,
5136 &old_cfg->etscfg.prioritytable,
5137 sizeof(new_cfg->etscfg.prioritytable))) {
5138 need_reconfig = true;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005139 dev_dbg(&pf->pdev->dev, "ETS UP2TC changed.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005140 }
5141
5142 if (memcmp(&new_cfg->etscfg.tcbwtable,
5143 &old_cfg->etscfg.tcbwtable,
5144 sizeof(new_cfg->etscfg.tcbwtable)))
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005145 dev_dbg(&pf->pdev->dev, "ETS TC BW Table changed.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005146
5147 if (memcmp(&new_cfg->etscfg.tsatable,
5148 &old_cfg->etscfg.tsatable,
5149 sizeof(new_cfg->etscfg.tsatable)))
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005150 dev_dbg(&pf->pdev->dev, "ETS TSA Table changed.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005151 }
5152
5153 /* Check if PFC configuration has changed */
5154 if (memcmp(&new_cfg->pfc,
5155 &old_cfg->pfc,
5156 sizeof(new_cfg->pfc))) {
5157 need_reconfig = true;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005158 dev_dbg(&pf->pdev->dev, "PFC config change detected.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005159 }
5160
5161 /* Check if APP Table has changed */
5162 if (memcmp(&new_cfg->app,
5163 &old_cfg->app,
Dave Jones3d9667a2014-01-27 23:11:09 -05005164 sizeof(new_cfg->app))) {
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005165 need_reconfig = true;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005166 dev_dbg(&pf->pdev->dev, "APP Table change detected.\n");
Dave Jones3d9667a2014-01-27 23:11:09 -05005167 }
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005168
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005169 dev_dbg(&pf->pdev->dev, "%s: need_reconfig=%d\n", __func__,
5170 need_reconfig);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005171 return need_reconfig;
5172}
5173
5174/**
5175 * i40e_handle_lldp_event - Handle LLDP Change MIB event
5176 * @pf: board private structure
5177 * @e: event info posted on ARQ
5178 **/
5179static int i40e_handle_lldp_event(struct i40e_pf *pf,
5180 struct i40e_arq_event_info *e)
5181{
5182 struct i40e_aqc_lldp_get_mib *mib =
5183 (struct i40e_aqc_lldp_get_mib *)&e->desc.params.raw;
5184 struct i40e_hw *hw = &pf->hw;
5185 struct i40e_dcbx_config *dcbx_cfg = &hw->local_dcbx_config;
5186 struct i40e_dcbx_config tmp_dcbx_cfg;
5187 bool need_reconfig = false;
5188 int ret = 0;
5189 u8 type;
5190
Neerav Parikh4d9b6042014-05-22 06:31:51 +00005191 /* Not DCB capable or capability disabled */
5192 if (!(pf->flags & I40E_FLAG_DCB_CAPABLE))
5193 return ret;
5194
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005195 /* Ignore if event is not for Nearest Bridge */
5196 type = ((mib->type >> I40E_AQ_LLDP_BRIDGE_TYPE_SHIFT)
5197 & I40E_AQ_LLDP_BRIDGE_TYPE_MASK);
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005198 dev_dbg(&pf->pdev->dev,
5199 "%s: LLDP event mib bridge type 0x%x\n", __func__, type);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005200 if (type != I40E_AQ_LLDP_BRIDGE_TYPE_NEAREST_BRIDGE)
5201 return ret;
5202
5203 /* Check MIB Type and return if event for Remote MIB update */
5204 type = mib->type & I40E_AQ_LLDP_MIB_TYPE_MASK;
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005205 dev_dbg(&pf->pdev->dev,
5206 "%s: LLDP event mib type %s\n", __func__,
5207 type ? "remote" : "local");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005208 if (type == I40E_AQ_LLDP_MIB_REMOTE) {
5209 /* Update the remote cached instance and return */
5210 ret = i40e_aq_get_dcb_config(hw, I40E_AQ_LLDP_MIB_REMOTE,
5211 I40E_AQ_LLDP_BRIDGE_TYPE_NEAREST_BRIDGE,
5212 &hw->remote_dcbx_config);
5213 goto exit;
5214 }
5215
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005216 memset(&tmp_dcbx_cfg, 0, sizeof(tmp_dcbx_cfg));
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005217 /* Store the old configuration */
5218 tmp_dcbx_cfg = *dcbx_cfg;
5219
5220 /* Get updated DCBX data from firmware */
5221 ret = i40e_get_dcb_config(&pf->hw);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005222 if (ret) {
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005223 dev_info(&pf->pdev->dev, "Failed querying DCB configuration data from firmware.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005224 goto exit;
5225 }
5226
5227 /* No change detected in DCBX configs */
5228 if (!memcmp(&tmp_dcbx_cfg, dcbx_cfg, sizeof(tmp_dcbx_cfg))) {
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005229 dev_dbg(&pf->pdev->dev, "No change detected in DCBX configuration.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005230 goto exit;
5231 }
5232
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005233 need_reconfig = i40e_dcb_need_reconfig(pf, &tmp_dcbx_cfg, dcbx_cfg);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005234
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005235 i40e_dcbnl_flush_apps(pf, dcbx_cfg);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005236
5237 if (!need_reconfig)
5238 goto exit;
5239
Neerav Parikh4d9b6042014-05-22 06:31:51 +00005240 /* Enable DCB tagging only when more than one TC */
5241 if (i40e_dcb_get_num_tc(dcbx_cfg) > 1)
5242 pf->flags |= I40E_FLAG_DCB_ENABLED;
5243 else
5244 pf->flags &= ~I40E_FLAG_DCB_ENABLED;
5245
Neerav Parikh69129dc2014-11-12 00:18:46 +00005246 set_bit(__I40E_PORT_TX_SUSPENDED, &pf->state);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005247 /* Reconfiguration needed quiesce all VSIs */
5248 i40e_pf_quiesce_all_vsi(pf);
5249
5250 /* Changes in configuration update VEB/VSI */
5251 i40e_dcb_reconfigure(pf);
5252
Neerav Parikh2fd75f32014-11-12 00:18:20 +00005253 ret = i40e_resume_port_tx(pf);
5254
Neerav Parikh69129dc2014-11-12 00:18:46 +00005255 clear_bit(__I40E_PORT_TX_SUSPENDED, &pf->state);
Neerav Parikh2fd75f32014-11-12 00:18:20 +00005256 /* In case of error no point in resuming VSIs */
Neerav Parikh69129dc2014-11-12 00:18:46 +00005257 if (ret)
5258 goto exit;
5259
5260 /* Wait for the PF's Tx queues to be disabled */
5261 ret = i40e_pf_wait_txq_disabled(pf);
Neerav Parikh2fd75f32014-11-12 00:18:20 +00005262 if (!ret)
5263 i40e_pf_unquiesce_all_vsi(pf);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005264exit:
5265 return ret;
5266}
5267#endif /* CONFIG_I40E_DCB */
5268
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005269/**
Anjali Singhai Jain23326182013-11-26 10:49:22 +00005270 * i40e_do_reset_safe - Protected reset path for userland calls.
5271 * @pf: board private structure
5272 * @reset_flags: which reset is requested
5273 *
5274 **/
5275void i40e_do_reset_safe(struct i40e_pf *pf, u32 reset_flags)
5276{
5277 rtnl_lock();
5278 i40e_do_reset(pf, reset_flags);
5279 rtnl_unlock();
5280}
5281
5282/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005283 * i40e_handle_lan_overflow_event - Handler for LAN queue overflow event
5284 * @pf: board private structure
5285 * @e: event info posted on ARQ
5286 *
5287 * Handler for LAN Queue Overflow Event generated by the firmware for PF
5288 * and VF queues
5289 **/
5290static void i40e_handle_lan_overflow_event(struct i40e_pf *pf,
5291 struct i40e_arq_event_info *e)
5292{
5293 struct i40e_aqc_lan_overflow *data =
5294 (struct i40e_aqc_lan_overflow *)&e->desc.params.raw;
5295 u32 queue = le32_to_cpu(data->prtdcb_rupto);
5296 u32 qtx_ctl = le32_to_cpu(data->otx_ctl);
5297 struct i40e_hw *hw = &pf->hw;
5298 struct i40e_vf *vf;
5299 u16 vf_id;
5300
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005301 dev_dbg(&pf->pdev->dev, "overflow Rx Queue Number = %d QTX_CTL=0x%08x\n",
5302 queue, qtx_ctl);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005303
5304 /* Queue belongs to VF, find the VF and issue VF reset */
5305 if (((qtx_ctl & I40E_QTX_CTL_PFVF_Q_MASK)
5306 >> I40E_QTX_CTL_PFVF_Q_SHIFT) == I40E_QTX_CTL_VF_QUEUE) {
5307 vf_id = (u16)((qtx_ctl & I40E_QTX_CTL_VFVM_INDX_MASK)
5308 >> I40E_QTX_CTL_VFVM_INDX_SHIFT);
5309 vf_id -= hw->func_caps.vf_base_id;
5310 vf = &pf->vf[vf_id];
5311 i40e_vc_notify_vf_reset(vf);
5312 /* Allow VF to process pending reset notification */
5313 msleep(20);
5314 i40e_reset_vf(vf, false);
5315 }
5316}
5317
5318/**
5319 * i40e_service_event_complete - Finish up the service event
5320 * @pf: board private structure
5321 **/
5322static void i40e_service_event_complete(struct i40e_pf *pf)
5323{
5324 BUG_ON(!test_bit(__I40E_SERVICE_SCHED, &pf->state));
5325
5326 /* flush memory to make sure state is correct before next watchog */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01005327 smp_mb__before_atomic();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005328 clear_bit(__I40E_SERVICE_SCHED, &pf->state);
5329}
5330
5331/**
Anjali Singhai Jain12957382014-06-04 04:22:47 +00005332 * i40e_get_cur_guaranteed_fd_count - Get the consumed guaranteed FD filters
5333 * @pf: board private structure
5334 **/
5335int i40e_get_cur_guaranteed_fd_count(struct i40e_pf *pf)
5336{
5337 int val, fcnt_prog;
5338
5339 val = rd32(&pf->hw, I40E_PFQF_FDSTAT);
5340 fcnt_prog = (val & I40E_PFQF_FDSTAT_GUARANT_CNT_MASK);
5341 return fcnt_prog;
5342}
5343
5344/**
5345 * i40e_get_current_fd_count - Get the count of total FD filters programmed
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005346 * @pf: board private structure
5347 **/
5348int i40e_get_current_fd_count(struct i40e_pf *pf)
5349{
5350 int val, fcnt_prog;
5351 val = rd32(&pf->hw, I40E_PFQF_FDSTAT);
5352 fcnt_prog = (val & I40E_PFQF_FDSTAT_GUARANT_CNT_MASK) +
5353 ((val & I40E_PFQF_FDSTAT_BEST_CNT_MASK) >>
5354 I40E_PFQF_FDSTAT_BEST_CNT_SHIFT);
5355 return fcnt_prog;
5356}
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005357
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005358/**
5359 * i40e_fdir_check_and_reenable - Function to reenabe FD ATR or SB if disabled
5360 * @pf: board private structure
5361 **/
5362void i40e_fdir_check_and_reenable(struct i40e_pf *pf)
5363{
5364 u32 fcnt_prog, fcnt_avail;
5365
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005366 if (test_bit(__I40E_FD_FLUSH_REQUESTED, &pf->state))
5367 return;
5368
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005369 /* Check if, FD SB or ATR was auto disabled and if there is enough room
5370 * to re-enable
5371 */
Anjali Singhai Jain12957382014-06-04 04:22:47 +00005372 fcnt_prog = i40e_get_cur_guaranteed_fd_count(pf);
5373 fcnt_avail = pf->fdir_pf_filter_count;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005374 if ((fcnt_prog < (fcnt_avail - I40E_FDIR_BUFFER_HEAD_ROOM)) ||
5375 (pf->fd_add_err == 0) ||
5376 (i40e_get_current_atr_cnt(pf) < pf->fd_atr_cnt)) {
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005377 if ((pf->flags & I40E_FLAG_FD_SB_ENABLED) &&
5378 (pf->auto_disable_flags & I40E_FLAG_FD_SB_ENABLED)) {
5379 pf->auto_disable_flags &= ~I40E_FLAG_FD_SB_ENABLED;
5380 dev_info(&pf->pdev->dev, "FD Sideband/ntuple is being enabled since we have space in the table now\n");
5381 }
5382 }
5383 /* Wait for some more space to be available to turn on ATR */
5384 if (fcnt_prog < (fcnt_avail - I40E_FDIR_BUFFER_HEAD_ROOM * 2)) {
5385 if ((pf->flags & I40E_FLAG_FD_ATR_ENABLED) &&
5386 (pf->auto_disable_flags & I40E_FLAG_FD_ATR_ENABLED)) {
5387 pf->auto_disable_flags &= ~I40E_FLAG_FD_ATR_ENABLED;
5388 dev_info(&pf->pdev->dev, "ATR is being enabled since we have space in the table now\n");
5389 }
5390 }
5391}
5392
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005393#define I40E_MIN_FD_FLUSH_INTERVAL 10
5394/**
5395 * i40e_fdir_flush_and_replay - Function to flush all FD filters and replay SB
5396 * @pf: board private structure
5397 **/
5398static void i40e_fdir_flush_and_replay(struct i40e_pf *pf)
5399{
5400 int flush_wait_retry = 50;
5401 int reg;
5402
Akeem G Abodunrin1790ed02014-10-17 03:14:41 +00005403 if (!(pf->flags & (I40E_FLAG_FD_SB_ENABLED | I40E_FLAG_FD_ATR_ENABLED)))
5404 return;
5405
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005406 if (time_after(jiffies, pf->fd_flush_timestamp +
5407 (I40E_MIN_FD_FLUSH_INTERVAL * HZ))) {
5408 set_bit(__I40E_FD_FLUSH_REQUESTED, &pf->state);
5409 pf->fd_flush_timestamp = jiffies;
5410 pf->auto_disable_flags |= I40E_FLAG_FD_SB_ENABLED;
5411 pf->flags &= ~I40E_FLAG_FD_ATR_ENABLED;
5412 /* flush all filters */
5413 wr32(&pf->hw, I40E_PFQF_CTL_1,
5414 I40E_PFQF_CTL_1_CLEARFDTABLE_MASK);
5415 i40e_flush(&pf->hw);
Anjali Singhai Jain60793f42014-07-09 07:46:23 +00005416 pf->fd_flush_cnt++;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005417 pf->fd_add_err = 0;
5418 do {
5419 /* Check FD flush status every 5-6msec */
5420 usleep_range(5000, 6000);
5421 reg = rd32(&pf->hw, I40E_PFQF_CTL_1);
5422 if (!(reg & I40E_PFQF_CTL_1_CLEARFDTABLE_MASK))
5423 break;
5424 } while (flush_wait_retry--);
5425 if (reg & I40E_PFQF_CTL_1_CLEARFDTABLE_MASK) {
5426 dev_warn(&pf->pdev->dev, "FD table did not flush, needs more time\n");
5427 } else {
5428 /* replay sideband filters */
5429 i40e_fdir_filter_restore(pf->vsi[pf->lan_vsi]);
5430
5431 pf->flags |= I40E_FLAG_FD_ATR_ENABLED;
5432 pf->auto_disable_flags &= ~I40E_FLAG_FD_ATR_ENABLED;
5433 pf->auto_disable_flags &= ~I40E_FLAG_FD_SB_ENABLED;
5434 clear_bit(__I40E_FD_FLUSH_REQUESTED, &pf->state);
5435 dev_info(&pf->pdev->dev, "FD Filter table flushed and FD-SB replayed.\n");
5436 }
5437 }
5438}
5439
5440/**
5441 * i40e_get_current_atr_count - Get the count of total FD ATR filters programmed
5442 * @pf: board private structure
5443 **/
5444int i40e_get_current_atr_cnt(struct i40e_pf *pf)
5445{
5446 return i40e_get_current_fd_count(pf) - pf->fdir_pf_active_filters;
5447}
5448
5449/* We can see up to 256 filter programming desc in transit if the filters are
5450 * being applied really fast; before we see the first
5451 * filter miss error on Rx queue 0. Accumulating enough error messages before
5452 * reacting will make sure we don't cause flush too often.
5453 */
5454#define I40E_MAX_FD_PROGRAM_ERROR 256
5455
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005456/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005457 * i40e_fdir_reinit_subtask - Worker thread to reinit FDIR filter table
5458 * @pf: board private structure
5459 **/
5460static void i40e_fdir_reinit_subtask(struct i40e_pf *pf)
5461{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005462
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005463 /* if interface is down do nothing */
5464 if (test_bit(__I40E_DOWN, &pf->state))
5465 return;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005466
Akeem G Abodunrin1790ed02014-10-17 03:14:41 +00005467 if (!(pf->flags & (I40E_FLAG_FD_SB_ENABLED | I40E_FLAG_FD_ATR_ENABLED)))
5468 return;
5469
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005470 if ((pf->fd_add_err >= I40E_MAX_FD_PROGRAM_ERROR) &&
5471 (i40e_get_current_atr_cnt(pf) >= pf->fd_atr_cnt) &&
5472 (i40e_get_current_atr_cnt(pf) > pf->fdir_pf_filter_count))
5473 i40e_fdir_flush_and_replay(pf);
5474
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005475 i40e_fdir_check_and_reenable(pf);
5476
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005477}
5478
5479/**
5480 * i40e_vsi_link_event - notify VSI of a link event
5481 * @vsi: vsi to be notified
5482 * @link_up: link up or down
5483 **/
5484static void i40e_vsi_link_event(struct i40e_vsi *vsi, bool link_up)
5485{
Jesse Brandeburg32b5b812014-08-12 06:33:14 +00005486 if (!vsi || test_bit(__I40E_DOWN, &vsi->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005487 return;
5488
5489 switch (vsi->type) {
5490 case I40E_VSI_MAIN:
Vasu Dev38e00432014-08-01 13:27:03 -07005491#ifdef I40E_FCOE
5492 case I40E_VSI_FCOE:
5493#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005494 if (!vsi->netdev || !vsi->netdev_registered)
5495 break;
5496
5497 if (link_up) {
5498 netif_carrier_on(vsi->netdev);
5499 netif_tx_wake_all_queues(vsi->netdev);
5500 } else {
5501 netif_carrier_off(vsi->netdev);
5502 netif_tx_stop_all_queues(vsi->netdev);
5503 }
5504 break;
5505
5506 case I40E_VSI_SRIOV:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005507 case I40E_VSI_VMDQ2:
5508 case I40E_VSI_CTRL:
5509 case I40E_VSI_MIRROR:
5510 default:
5511 /* there is no notification for other VSIs */
5512 break;
5513 }
5514}
5515
5516/**
5517 * i40e_veb_link_event - notify elements on the veb of a link event
5518 * @veb: veb to be notified
5519 * @link_up: link up or down
5520 **/
5521static void i40e_veb_link_event(struct i40e_veb *veb, bool link_up)
5522{
5523 struct i40e_pf *pf;
5524 int i;
5525
5526 if (!veb || !veb->pf)
5527 return;
5528 pf = veb->pf;
5529
5530 /* depth first... */
5531 for (i = 0; i < I40E_MAX_VEB; i++)
5532 if (pf->veb[i] && (pf->veb[i]->uplink_seid == veb->seid))
5533 i40e_veb_link_event(pf->veb[i], link_up);
5534
5535 /* ... now the local VSIs */
Mitch Williams505682c2014-05-20 08:01:37 +00005536 for (i = 0; i < pf->num_alloc_vsi; i++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005537 if (pf->vsi[i] && (pf->vsi[i]->uplink_seid == veb->seid))
5538 i40e_vsi_link_event(pf->vsi[i], link_up);
5539}
5540
5541/**
5542 * i40e_link_event - Update netif_carrier status
5543 * @pf: board private structure
5544 **/
5545static void i40e_link_event(struct i40e_pf *pf)
5546{
5547 bool new_link, old_link;
Mitch Williams320684c2014-10-17 03:14:43 +00005548 struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi];
Catherine Sullivanfef59dd2014-12-11 07:06:33 +00005549 u8 new_link_speed, old_link_speed;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005550
Jesse Brandeburg1e701e02014-09-13 07:40:42 +00005551 /* set this to force the get_link_status call to refresh state */
5552 pf->hw.phy.get_link_info = true;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005553
Jesse Brandeburg1e701e02014-09-13 07:40:42 +00005554 old_link = (pf->hw.phy.link_info_old.link_info & I40E_AQ_LINK_UP);
5555 new_link = i40e_get_link_status(&pf->hw);
Catherine Sullivanfef59dd2014-12-11 07:06:33 +00005556 old_link_speed = pf->hw.phy.link_info_old.link_speed;
5557 new_link_speed = pf->hw.phy.link_info.link_speed;
Jesse Brandeburg1e701e02014-09-13 07:40:42 +00005558
5559 if (new_link == old_link &&
Catherine Sullivanfef59dd2014-12-11 07:06:33 +00005560 new_link_speed == old_link_speed &&
Mitch Williams320684c2014-10-17 03:14:43 +00005561 (test_bit(__I40E_DOWN, &vsi->state) ||
5562 new_link == netif_carrier_ok(vsi->netdev)))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005563 return;
Mitch Williams320684c2014-10-17 03:14:43 +00005564
5565 if (!test_bit(__I40E_DOWN, &vsi->state))
5566 i40e_print_link_message(vsi, new_link);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005567
5568 /* Notify the base of the switch tree connected to
5569 * the link. Floating VEBs are not notified.
5570 */
5571 if (pf->lan_veb != I40E_NO_VEB && pf->veb[pf->lan_veb])
5572 i40e_veb_link_event(pf->veb[pf->lan_veb], new_link);
5573 else
Mitch Williams320684c2014-10-17 03:14:43 +00005574 i40e_vsi_link_event(vsi, new_link);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005575
5576 if (pf->vf)
5577 i40e_vc_notify_link_state(pf);
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00005578
5579 if (pf->flags & I40E_FLAG_PTP)
5580 i40e_ptp_set_increment(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005581}
5582
5583/**
5584 * i40e_check_hang_subtask - Check for hung queues and dropped interrupts
5585 * @pf: board private structure
5586 *
5587 * Set the per-queue flags to request a check for stuck queues in the irq
5588 * clean functions, then force interrupts to be sure the irq clean is called.
5589 **/
5590static void i40e_check_hang_subtask(struct i40e_pf *pf)
5591{
5592 int i, v;
5593
5594 /* If we're down or resetting, just bail */
5595 if (test_bit(__I40E_CONFIG_BUSY, &pf->state))
5596 return;
5597
5598 /* for each VSI/netdev
5599 * for each Tx queue
5600 * set the check flag
5601 * for each q_vector
5602 * force an interrupt
5603 */
Mitch Williams505682c2014-05-20 08:01:37 +00005604 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005605 struct i40e_vsi *vsi = pf->vsi[v];
5606 int armed = 0;
5607
5608 if (!pf->vsi[v] ||
5609 test_bit(__I40E_DOWN, &vsi->state) ||
5610 (vsi->netdev && !netif_carrier_ok(vsi->netdev)))
5611 continue;
5612
5613 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00005614 set_check_for_tx_hang(vsi->tx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005615 if (test_bit(__I40E_HANG_CHECK_ARMED,
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00005616 &vsi->tx_rings[i]->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005617 armed++;
5618 }
5619
5620 if (armed) {
5621 if (!(pf->flags & I40E_FLAG_MSIX_ENABLED)) {
5622 wr32(&vsi->back->hw, I40E_PFINT_DYN_CTL0,
5623 (I40E_PFINT_DYN_CTL0_INTENA_MASK |
Shannon Nelson5d1ff1062014-11-11 20:04:35 +00005624 I40E_PFINT_DYN_CTL0_SWINT_TRIG_MASK |
5625 I40E_PFINT_DYN_CTL0_ITR_INDX_MASK |
5626 I40E_PFINT_DYN_CTL0_SW_ITR_INDX_ENA_MASK |
5627 I40E_PFINT_DYN_CTL0_SW_ITR_INDX_MASK));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005628 } else {
5629 u16 vec = vsi->base_vector - 1;
5630 u32 val = (I40E_PFINT_DYN_CTLN_INTENA_MASK |
Shannon Nelson5d1ff1062014-11-11 20:04:35 +00005631 I40E_PFINT_DYN_CTLN_SWINT_TRIG_MASK |
5632 I40E_PFINT_DYN_CTLN_ITR_INDX_MASK |
5633 I40E_PFINT_DYN_CTLN_SW_ITR_INDX_ENA_MASK |
5634 I40E_PFINT_DYN_CTLN_SW_ITR_INDX_MASK);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005635 for (i = 0; i < vsi->num_q_vectors; i++, vec++)
5636 wr32(&vsi->back->hw,
5637 I40E_PFINT_DYN_CTLN(vec), val);
5638 }
5639 i40e_flush(&vsi->back->hw);
5640 }
5641 }
5642}
5643
5644/**
Shannon Nelson21536712014-10-25 10:35:25 +00005645 * i40e_watchdog_subtask - periodic checks not using event driven response
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005646 * @pf: board private structure
5647 **/
5648static void i40e_watchdog_subtask(struct i40e_pf *pf)
5649{
5650 int i;
5651
5652 /* if interface is down do nothing */
5653 if (test_bit(__I40E_DOWN, &pf->state) ||
5654 test_bit(__I40E_CONFIG_BUSY, &pf->state))
5655 return;
5656
Shannon Nelson21536712014-10-25 10:35:25 +00005657 /* make sure we don't do these things too often */
5658 if (time_before(jiffies, (pf->service_timer_previous +
5659 pf->service_timer_period)))
5660 return;
5661 pf->service_timer_previous = jiffies;
5662
5663 i40e_check_hang_subtask(pf);
5664 i40e_link_event(pf);
5665
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005666 /* Update the stats for active netdevs so the network stack
5667 * can look at updated numbers whenever it cares to
5668 */
Mitch Williams505682c2014-05-20 08:01:37 +00005669 for (i = 0; i < pf->num_alloc_vsi; i++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005670 if (pf->vsi[i] && pf->vsi[i]->netdev)
5671 i40e_update_stats(pf->vsi[i]);
5672
5673 /* Update the stats for the active switching components */
5674 for (i = 0; i < I40E_MAX_VEB; i++)
5675 if (pf->veb[i])
5676 i40e_update_veb_stats(pf->veb[i]);
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00005677
5678 i40e_ptp_rx_hang(pf->vsi[pf->lan_vsi]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005679}
5680
5681/**
5682 * i40e_reset_subtask - Set up for resetting the device and driver
5683 * @pf: board private structure
5684 **/
5685static void i40e_reset_subtask(struct i40e_pf *pf)
5686{
5687 u32 reset_flags = 0;
5688
Anjali Singhai Jain23326182013-11-26 10:49:22 +00005689 rtnl_lock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005690 if (test_bit(__I40E_REINIT_REQUESTED, &pf->state)) {
5691 reset_flags |= (1 << __I40E_REINIT_REQUESTED);
5692 clear_bit(__I40E_REINIT_REQUESTED, &pf->state);
5693 }
5694 if (test_bit(__I40E_PF_RESET_REQUESTED, &pf->state)) {
5695 reset_flags |= (1 << __I40E_PF_RESET_REQUESTED);
5696 clear_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
5697 }
5698 if (test_bit(__I40E_CORE_RESET_REQUESTED, &pf->state)) {
5699 reset_flags |= (1 << __I40E_CORE_RESET_REQUESTED);
5700 clear_bit(__I40E_CORE_RESET_REQUESTED, &pf->state);
5701 }
5702 if (test_bit(__I40E_GLOBAL_RESET_REQUESTED, &pf->state)) {
5703 reset_flags |= (1 << __I40E_GLOBAL_RESET_REQUESTED);
5704 clear_bit(__I40E_GLOBAL_RESET_REQUESTED, &pf->state);
5705 }
Neerav Parikhb5d06f02014-06-03 23:50:17 +00005706 if (test_bit(__I40E_DOWN_REQUESTED, &pf->state)) {
5707 reset_flags |= (1 << __I40E_DOWN_REQUESTED);
5708 clear_bit(__I40E_DOWN_REQUESTED, &pf->state);
5709 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005710
5711 /* If there's a recovery already waiting, it takes
5712 * precedence before starting a new reset sequence.
5713 */
5714 if (test_bit(__I40E_RESET_INTR_RECEIVED, &pf->state)) {
5715 i40e_handle_reset_warning(pf);
Anjali Singhai Jain23326182013-11-26 10:49:22 +00005716 goto unlock;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005717 }
5718
5719 /* If we're already down or resetting, just bail */
5720 if (reset_flags &&
5721 !test_bit(__I40E_DOWN, &pf->state) &&
5722 !test_bit(__I40E_CONFIG_BUSY, &pf->state))
5723 i40e_do_reset(pf, reset_flags);
Anjali Singhai Jain23326182013-11-26 10:49:22 +00005724
5725unlock:
5726 rtnl_unlock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005727}
5728
5729/**
5730 * i40e_handle_link_event - Handle link event
5731 * @pf: board private structure
5732 * @e: event info posted on ARQ
5733 **/
5734static void i40e_handle_link_event(struct i40e_pf *pf,
5735 struct i40e_arq_event_info *e)
5736{
5737 struct i40e_hw *hw = &pf->hw;
5738 struct i40e_aqc_get_link_status *status =
5739 (struct i40e_aqc_get_link_status *)&e->desc.params.raw;
5740 struct i40e_link_status *hw_link_info = &hw->phy.link_info;
5741
5742 /* save off old link status information */
5743 memcpy(&pf->hw.phy.link_info_old, hw_link_info,
5744 sizeof(pf->hw.phy.link_info_old));
5745
Jesse Brandeburg1e701e02014-09-13 07:40:42 +00005746 /* Do a new status request to re-enable LSE reporting
5747 * and load new status information into the hw struct
5748 * This completely ignores any state information
5749 * in the ARQ event info, instead choosing to always
5750 * issue the AQ update link status command.
5751 */
5752 i40e_link_event(pf);
5753
Carolyn Wyborny7b592f62014-07-10 07:58:19 +00005754 /* check for unqualified module, if link is down */
5755 if ((status->link_info & I40E_AQ_MEDIA_AVAILABLE) &&
5756 (!(status->an_info & I40E_AQ_QUALIFIED_MODULE)) &&
5757 (!(status->link_info & I40E_AQ_LINK_UP)))
5758 dev_err(&pf->pdev->dev,
5759 "The driver failed to link because an unqualified module was detected.\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005760}
5761
5762/**
5763 * i40e_clean_adminq_subtask - Clean the AdminQ rings
5764 * @pf: board private structure
5765 **/
5766static void i40e_clean_adminq_subtask(struct i40e_pf *pf)
5767{
5768 struct i40e_arq_event_info event;
5769 struct i40e_hw *hw = &pf->hw;
5770 u16 pending, i = 0;
5771 i40e_status ret;
5772 u16 opcode;
Shannon Nelson86df2422014-05-20 08:01:35 +00005773 u32 oldval;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005774 u32 val;
5775
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00005776 /* Do not run clean AQ when PF reset fails */
5777 if (test_bit(__I40E_RESET_FAILED, &pf->state))
5778 return;
5779
Shannon Nelson86df2422014-05-20 08:01:35 +00005780 /* check for error indications */
5781 val = rd32(&pf->hw, pf->hw.aq.arq.len);
5782 oldval = val;
5783 if (val & I40E_PF_ARQLEN_ARQVFE_MASK) {
5784 dev_info(&pf->pdev->dev, "ARQ VF Error detected\n");
5785 val &= ~I40E_PF_ARQLEN_ARQVFE_MASK;
5786 }
5787 if (val & I40E_PF_ARQLEN_ARQOVFL_MASK) {
5788 dev_info(&pf->pdev->dev, "ARQ Overflow Error detected\n");
5789 val &= ~I40E_PF_ARQLEN_ARQOVFL_MASK;
5790 }
5791 if (val & I40E_PF_ARQLEN_ARQCRIT_MASK) {
5792 dev_info(&pf->pdev->dev, "ARQ Critical Error detected\n");
5793 val &= ~I40E_PF_ARQLEN_ARQCRIT_MASK;
5794 }
5795 if (oldval != val)
5796 wr32(&pf->hw, pf->hw.aq.arq.len, val);
5797
5798 val = rd32(&pf->hw, pf->hw.aq.asq.len);
5799 oldval = val;
5800 if (val & I40E_PF_ATQLEN_ATQVFE_MASK) {
5801 dev_info(&pf->pdev->dev, "ASQ VF Error detected\n");
5802 val &= ~I40E_PF_ATQLEN_ATQVFE_MASK;
5803 }
5804 if (val & I40E_PF_ATQLEN_ATQOVFL_MASK) {
5805 dev_info(&pf->pdev->dev, "ASQ Overflow Error detected\n");
5806 val &= ~I40E_PF_ATQLEN_ATQOVFL_MASK;
5807 }
5808 if (val & I40E_PF_ATQLEN_ATQCRIT_MASK) {
5809 dev_info(&pf->pdev->dev, "ASQ Critical Error detected\n");
5810 val &= ~I40E_PF_ATQLEN_ATQCRIT_MASK;
5811 }
5812 if (oldval != val)
5813 wr32(&pf->hw, pf->hw.aq.asq.len, val);
5814
Mitch Williams1001dc32014-11-11 20:02:19 +00005815 event.buf_len = I40E_MAX_AQ_BUF_SIZE;
5816 event.msg_buf = kzalloc(event.buf_len, GFP_KERNEL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005817 if (!event.msg_buf)
5818 return;
5819
5820 do {
5821 ret = i40e_clean_arq_element(hw, &event, &pending);
Mitch Williams56497972014-06-04 08:45:18 +00005822 if (ret == I40E_ERR_ADMIN_QUEUE_NO_WORK)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005823 break;
Mitch Williams56497972014-06-04 08:45:18 +00005824 else if (ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005825 dev_info(&pf->pdev->dev, "ARQ event error %d\n", ret);
5826 break;
5827 }
5828
5829 opcode = le16_to_cpu(event.desc.opcode);
5830 switch (opcode) {
5831
5832 case i40e_aqc_opc_get_link_status:
5833 i40e_handle_link_event(pf, &event);
5834 break;
5835 case i40e_aqc_opc_send_msg_to_pf:
5836 ret = i40e_vc_process_vf_msg(pf,
5837 le16_to_cpu(event.desc.retval),
5838 le32_to_cpu(event.desc.cookie_high),
5839 le32_to_cpu(event.desc.cookie_low),
5840 event.msg_buf,
Mitch Williams1001dc32014-11-11 20:02:19 +00005841 event.msg_len);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005842 break;
5843 case i40e_aqc_opc_lldp_update_mib:
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005844 dev_dbg(&pf->pdev->dev, "ARQ: Update LLDP MIB event received\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005845#ifdef CONFIG_I40E_DCB
5846 rtnl_lock();
5847 ret = i40e_handle_lldp_event(pf, &event);
5848 rtnl_unlock();
5849#endif /* CONFIG_I40E_DCB */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005850 break;
5851 case i40e_aqc_opc_event_lan_overflow:
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005852 dev_dbg(&pf->pdev->dev, "ARQ LAN queue overflow event received\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005853 i40e_handle_lan_overflow_event(pf, &event);
5854 break;
Shannon Nelson0467bc92013-12-18 13:45:58 +00005855 case i40e_aqc_opc_send_msg_to_peer:
5856 dev_info(&pf->pdev->dev, "ARQ: Msg from other pf\n");
5857 break;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005858 default:
5859 dev_info(&pf->pdev->dev,
Shannon Nelson0467bc92013-12-18 13:45:58 +00005860 "ARQ Error: Unknown event 0x%04x received\n",
5861 opcode);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005862 break;
5863 }
5864 } while (pending && (i++ < pf->adminq_work_limit));
5865
5866 clear_bit(__I40E_ADMINQ_EVENT_PENDING, &pf->state);
5867 /* re-enable Admin queue interrupt cause */
5868 val = rd32(hw, I40E_PFINT_ICR0_ENA);
5869 val |= I40E_PFINT_ICR0_ENA_ADMINQ_MASK;
5870 wr32(hw, I40E_PFINT_ICR0_ENA, val);
5871 i40e_flush(hw);
5872
5873 kfree(event.msg_buf);
5874}
5875
5876/**
Shannon Nelson4eb3f762014-03-06 08:59:58 +00005877 * i40e_verify_eeprom - make sure eeprom is good to use
5878 * @pf: board private structure
5879 **/
5880static void i40e_verify_eeprom(struct i40e_pf *pf)
5881{
5882 int err;
5883
5884 err = i40e_diag_eeprom_test(&pf->hw);
5885 if (err) {
5886 /* retry in case of garbage read */
5887 err = i40e_diag_eeprom_test(&pf->hw);
5888 if (err) {
5889 dev_info(&pf->pdev->dev, "eeprom check failed (%d), Tx/Rx traffic disabled\n",
5890 err);
5891 set_bit(__I40E_BAD_EEPROM, &pf->state);
5892 }
5893 }
5894
5895 if (!err && test_bit(__I40E_BAD_EEPROM, &pf->state)) {
5896 dev_info(&pf->pdev->dev, "eeprom check passed, Tx/Rx traffic enabled\n");
5897 clear_bit(__I40E_BAD_EEPROM, &pf->state);
5898 }
5899}
5900
5901/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005902 * i40e_reconstitute_veb - rebuild the VEB and anything connected to it
5903 * @veb: pointer to the VEB instance
5904 *
5905 * This is a recursive function that first builds the attached VSIs then
5906 * recurses in to build the next layer of VEB. We track the connections
5907 * through our own index numbers because the seid's from the HW could
5908 * change across the reset.
5909 **/
5910static int i40e_reconstitute_veb(struct i40e_veb *veb)
5911{
5912 struct i40e_vsi *ctl_vsi = NULL;
5913 struct i40e_pf *pf = veb->pf;
5914 int v, veb_idx;
5915 int ret;
5916
5917 /* build VSI that owns this VEB, temporarily attached to base VEB */
Mitch Williams505682c2014-05-20 08:01:37 +00005918 for (v = 0; v < pf->num_alloc_vsi && !ctl_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005919 if (pf->vsi[v] &&
5920 pf->vsi[v]->veb_idx == veb->idx &&
5921 pf->vsi[v]->flags & I40E_VSI_FLAG_VEB_OWNER) {
5922 ctl_vsi = pf->vsi[v];
5923 break;
5924 }
5925 }
5926 if (!ctl_vsi) {
5927 dev_info(&pf->pdev->dev,
5928 "missing owner VSI for veb_idx %d\n", veb->idx);
5929 ret = -ENOENT;
5930 goto end_reconstitute;
5931 }
5932 if (ctl_vsi != pf->vsi[pf->lan_vsi])
5933 ctl_vsi->uplink_seid = pf->vsi[pf->lan_vsi]->uplink_seid;
5934 ret = i40e_add_vsi(ctl_vsi);
5935 if (ret) {
5936 dev_info(&pf->pdev->dev,
5937 "rebuild of owner VSI failed: %d\n", ret);
5938 goto end_reconstitute;
5939 }
5940 i40e_vsi_reset_stats(ctl_vsi);
5941
5942 /* create the VEB in the switch and move the VSI onto the VEB */
5943 ret = i40e_add_veb(veb, ctl_vsi);
5944 if (ret)
5945 goto end_reconstitute;
5946
Anjali Singhai Jainb64ba082014-11-13 03:06:15 +00005947 /* Enable LB mode for the main VSI now that it is on a VEB */
5948 i40e_enable_pf_switch_lb(pf);
5949
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005950 /* create the remaining VSIs attached to this VEB */
Mitch Williams505682c2014-05-20 08:01:37 +00005951 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005952 if (!pf->vsi[v] || pf->vsi[v] == ctl_vsi)
5953 continue;
5954
5955 if (pf->vsi[v]->veb_idx == veb->idx) {
5956 struct i40e_vsi *vsi = pf->vsi[v];
5957 vsi->uplink_seid = veb->seid;
5958 ret = i40e_add_vsi(vsi);
5959 if (ret) {
5960 dev_info(&pf->pdev->dev,
5961 "rebuild of vsi_idx %d failed: %d\n",
5962 v, ret);
5963 goto end_reconstitute;
5964 }
5965 i40e_vsi_reset_stats(vsi);
5966 }
5967 }
5968
5969 /* create any VEBs attached to this VEB - RECURSION */
5970 for (veb_idx = 0; veb_idx < I40E_MAX_VEB; veb_idx++) {
5971 if (pf->veb[veb_idx] && pf->veb[veb_idx]->veb_idx == veb->idx) {
5972 pf->veb[veb_idx]->uplink_seid = veb->seid;
5973 ret = i40e_reconstitute_veb(pf->veb[veb_idx]);
5974 if (ret)
5975 break;
5976 }
5977 }
5978
5979end_reconstitute:
5980 return ret;
5981}
5982
5983/**
5984 * i40e_get_capabilities - get info about the HW
5985 * @pf: the PF struct
5986 **/
5987static int i40e_get_capabilities(struct i40e_pf *pf)
5988{
5989 struct i40e_aqc_list_capabilities_element_resp *cap_buf;
5990 u16 data_size;
5991 int buf_len;
5992 int err;
5993
5994 buf_len = 40 * sizeof(struct i40e_aqc_list_capabilities_element_resp);
5995 do {
5996 cap_buf = kzalloc(buf_len, GFP_KERNEL);
5997 if (!cap_buf)
5998 return -ENOMEM;
5999
6000 /* this loads the data into the hw struct for us */
6001 err = i40e_aq_discover_capabilities(&pf->hw, cap_buf, buf_len,
6002 &data_size,
6003 i40e_aqc_opc_list_func_capabilities,
6004 NULL);
6005 /* data loaded, buffer no longer needed */
6006 kfree(cap_buf);
6007
6008 if (pf->hw.aq.asq_last_status == I40E_AQ_RC_ENOMEM) {
6009 /* retry with a larger buffer */
6010 buf_len = data_size;
6011 } else if (pf->hw.aq.asq_last_status != I40E_AQ_RC_OK) {
6012 dev_info(&pf->pdev->dev,
6013 "capability discovery failed: aq=%d\n",
6014 pf->hw.aq.asq_last_status);
6015 return -ENODEV;
6016 }
6017 } while (err);
6018
Anjali Singhai Jainac71b7b2014-02-06 05:51:08 +00006019 if (((pf->hw.aq.fw_maj_ver == 2) && (pf->hw.aq.fw_min_ver < 22)) ||
6020 (pf->hw.aq.fw_maj_ver < 2)) {
6021 pf->hw.func_caps.num_msix_vectors++;
6022 pf->hw.func_caps.num_msix_vectors_vf++;
6023 }
6024
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006025 if (pf->hw.debug_mask & I40E_DEBUG_USER)
6026 dev_info(&pf->pdev->dev,
6027 "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",
6028 pf->hw.pf_id, pf->hw.func_caps.num_vfs,
6029 pf->hw.func_caps.num_msix_vectors,
6030 pf->hw.func_caps.num_msix_vectors_vf,
6031 pf->hw.func_caps.fd_filters_guaranteed,
6032 pf->hw.func_caps.fd_filters_best_effort,
6033 pf->hw.func_caps.num_tx_qp,
6034 pf->hw.func_caps.num_vsis);
6035
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00006036#define DEF_NUM_VSI (1 + (pf->hw.func_caps.fcoe ? 1 : 0) \
6037 + pf->hw.func_caps.num_vfs)
6038 if (pf->hw.revision_id == 0 && (DEF_NUM_VSI > pf->hw.func_caps.num_vsis)) {
6039 dev_info(&pf->pdev->dev,
6040 "got num_vsis %d, setting num_vsis to %d\n",
6041 pf->hw.func_caps.num_vsis, DEF_NUM_VSI);
6042 pf->hw.func_caps.num_vsis = DEF_NUM_VSI;
6043 }
6044
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006045 return 0;
6046}
6047
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006048static int i40e_vsi_clear(struct i40e_vsi *vsi);
6049
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006050/**
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006051 * i40e_fdir_sb_setup - initialize the Flow Director resources for Sideband
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006052 * @pf: board private structure
6053 **/
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006054static void i40e_fdir_sb_setup(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006055{
6056 struct i40e_vsi *vsi;
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00006057 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006058
Jesse Brandeburg407e0632014-06-03 23:50:12 +00006059 /* quick workaround for an NVM issue that leaves a critical register
6060 * uninitialized
6061 */
6062 if (!rd32(&pf->hw, I40E_GLQF_HKEY(0))) {
6063 static const u32 hkey[] = {
6064 0xe640d33f, 0xcdfe98ab, 0x73fa7161, 0x0d7a7d36,
6065 0xeacb7d61, 0xaa4f05b6, 0x9c5c89ed, 0xfc425ddb,
6066 0xa4654832, 0xfc7461d4, 0x8f827619, 0xf5c63c21,
6067 0x95b3a76d};
6068
6069 for (i = 0; i <= I40E_GLQF_HKEY_MAX_INDEX; i++)
6070 wr32(&pf->hw, I40E_GLQF_HKEY(i), hkey[i]);
6071 }
6072
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006073 if (!(pf->flags & I40E_FLAG_FD_SB_ENABLED))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006074 return;
6075
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006076 /* find existing VSI and see if it needs configuring */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006077 vsi = NULL;
Mitch Williams505682c2014-05-20 08:01:37 +00006078 for (i = 0; i < pf->num_alloc_vsi; i++) {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006079 if (pf->vsi[i] && pf->vsi[i]->type == I40E_VSI_FDIR) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006080 vsi = pf->vsi[i];
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006081 break;
6082 }
6083 }
6084
6085 /* create a new VSI if none exists */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006086 if (!vsi) {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006087 vsi = i40e_vsi_setup(pf, I40E_VSI_FDIR,
6088 pf->vsi[pf->lan_vsi]->seid, 0);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006089 if (!vsi) {
6090 dev_info(&pf->pdev->dev, "Couldn't create FDir VSI\n");
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00006091 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
6092 return;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006093 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006094 }
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00006095
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006096 i40e_vsi_setup_irqhandler(vsi, i40e_fdir_clean_ring);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006097}
6098
6099/**
6100 * i40e_fdir_teardown - release the Flow Director resources
6101 * @pf: board private structure
6102 **/
6103static void i40e_fdir_teardown(struct i40e_pf *pf)
6104{
6105 int i;
6106
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00006107 i40e_fdir_filter_exit(pf);
Mitch Williams505682c2014-05-20 08:01:37 +00006108 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006109 if (pf->vsi[i] && pf->vsi[i]->type == I40E_VSI_FDIR) {
6110 i40e_vsi_release(pf->vsi[i]);
6111 break;
6112 }
6113 }
6114}
6115
6116/**
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006117 * i40e_prep_for_reset - prep for the core to reset
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006118 * @pf: board private structure
6119 *
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006120 * Close up the VFs and other things in prep for pf Reset.
6121 **/
Shannon Nelson23cfbe02014-06-04 01:23:14 +00006122static void i40e_prep_for_reset(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006123{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006124 struct i40e_hw *hw = &pf->hw;
Shannon Nelson60442de2014-04-23 04:50:13 +00006125 i40e_status ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006126 u32 v;
6127
6128 clear_bit(__I40E_RESET_INTR_RECEIVED, &pf->state);
6129 if (test_and_set_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state))
Shannon Nelson23cfbe02014-06-04 01:23:14 +00006130 return;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006131
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00006132 dev_dbg(&pf->pdev->dev, "Tearing down internal switch for reset\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006133
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006134 /* quiesce the VSIs and their queues that are not already DOWN */
6135 i40e_pf_quiesce_all_vsi(pf);
6136
Mitch Williams505682c2014-05-20 08:01:37 +00006137 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006138 if (pf->vsi[v])
6139 pf->vsi[v]->seid = 0;
6140 }
6141
6142 i40e_shutdown_adminq(&pf->hw);
6143
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006144 /* call shutdown HMC */
Shannon Nelson60442de2014-04-23 04:50:13 +00006145 if (hw->hmc.hmc_obj) {
6146 ret = i40e_shutdown_lan_hmc(hw);
Shannon Nelson23cfbe02014-06-04 01:23:14 +00006147 if (ret)
Shannon Nelson60442de2014-04-23 04:50:13 +00006148 dev_warn(&pf->pdev->dev,
6149 "shutdown_lan_hmc failed: %d\n", ret);
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006150 }
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006151}
6152
6153/**
Jesse Brandeburg44033fa2014-04-23 04:50:15 +00006154 * i40e_send_version - update firmware with driver version
6155 * @pf: PF struct
6156 */
6157static void i40e_send_version(struct i40e_pf *pf)
6158{
6159 struct i40e_driver_version dv;
6160
6161 dv.major_version = DRV_VERSION_MAJOR;
6162 dv.minor_version = DRV_VERSION_MINOR;
6163 dv.build_version = DRV_VERSION_BUILD;
6164 dv.subbuild_version = 0;
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00006165 strlcpy(dv.driver_string, DRV_VERSION, sizeof(dv.driver_string));
Jesse Brandeburg44033fa2014-04-23 04:50:15 +00006166 i40e_aq_send_driver_version(&pf->hw, &dv, NULL);
6167}
6168
6169/**
Jesse Brandeburg4dda12e2013-12-18 13:46:01 +00006170 * i40e_reset_and_rebuild - reset and rebuild using a saved config
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006171 * @pf: board private structure
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006172 * @reinit: if the Main VSI needs to re-initialized.
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006173 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006174static void i40e_reset_and_rebuild(struct i40e_pf *pf, bool reinit)
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006175{
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006176 struct i40e_hw *hw = &pf->hw;
Anjali Singhai Jaincafa2ee2014-09-13 07:40:45 +00006177 u8 set_fc_aq_fail = 0;
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006178 i40e_status ret;
6179 u32 v;
6180
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006181 /* Now we wait for GRST to settle out.
6182 * We don't have to delete the VEBs or VSIs from the hw switch
6183 * because the reset will make them disappear.
6184 */
6185 ret = i40e_pf_reset(hw);
Akeem G Abodunrinb5565402014-04-09 05:59:04 +00006186 if (ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006187 dev_info(&pf->pdev->dev, "PF reset failed, %d\n", ret);
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00006188 set_bit(__I40E_RESET_FAILED, &pf->state);
6189 goto clear_recovery;
Akeem G Abodunrinb5565402014-04-09 05:59:04 +00006190 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006191 pf->pfr_count++;
6192
6193 if (test_bit(__I40E_DOWN, &pf->state))
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00006194 goto clear_recovery;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00006195 dev_dbg(&pf->pdev->dev, "Rebuilding internal switch\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006196
6197 /* rebuild the basics for the AdminQ, HMC, and initial HW switch */
6198 ret = i40e_init_adminq(&pf->hw);
6199 if (ret) {
6200 dev_info(&pf->pdev->dev, "Rebuild AdminQ failed, %d\n", ret);
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00006201 goto clear_recovery;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006202 }
6203
Shannon Nelson4eb3f762014-03-06 08:59:58 +00006204 /* re-verify the eeprom if we just had an EMP reset */
6205 if (test_bit(__I40E_EMP_RESET_REQUESTED, &pf->state)) {
6206 clear_bit(__I40E_EMP_RESET_REQUESTED, &pf->state);
6207 i40e_verify_eeprom(pf);
6208 }
6209
Shannon Nelsone78ac4bf2014-05-10 04:49:09 +00006210 i40e_clear_pxe_mode(hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006211 ret = i40e_get_capabilities(pf);
6212 if (ret) {
6213 dev_info(&pf->pdev->dev, "i40e_get_capabilities failed, %d\n",
6214 ret);
6215 goto end_core_reset;
6216 }
6217
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006218 ret = i40e_init_lan_hmc(hw, hw->func_caps.num_tx_qp,
6219 hw->func_caps.num_rx_qp,
6220 pf->fcoe_hmc_cntx_num, pf->fcoe_hmc_filt_num);
6221 if (ret) {
6222 dev_info(&pf->pdev->dev, "init_lan_hmc failed: %d\n", ret);
6223 goto end_core_reset;
6224 }
6225 ret = i40e_configure_lan_hmc(hw, I40E_HMC_MODEL_DIRECT_ONLY);
6226 if (ret) {
6227 dev_info(&pf->pdev->dev, "configure_lan_hmc failed: %d\n", ret);
6228 goto end_core_reset;
6229 }
6230
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08006231#ifdef CONFIG_I40E_DCB
6232 ret = i40e_init_pf_dcb(pf);
6233 if (ret) {
Shannon Nelsonaebfc812014-12-11 07:06:38 +00006234 dev_info(&pf->pdev->dev, "DCB init failed %d, disabled\n", ret);
6235 pf->flags &= ~I40E_FLAG_DCB_CAPABLE;
6236 /* Continue without DCB enabled */
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08006237 }
6238#endif /* CONFIG_I40E_DCB */
Vasu Dev38e00432014-08-01 13:27:03 -07006239#ifdef I40E_FCOE
6240 ret = i40e_init_pf_fcoe(pf);
6241 if (ret)
6242 dev_info(&pf->pdev->dev, "init_pf_fcoe failed: %d\n", ret);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08006243
Vasu Dev38e00432014-08-01 13:27:03 -07006244#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006245 /* do basic switch setup */
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006246 ret = i40e_setup_pf_switch(pf, reinit);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006247 if (ret)
6248 goto end_core_reset;
6249
Jesse Brandeburg7e2453f2014-09-13 07:40:41 +00006250 /* driver is only interested in link up/down and module qualification
6251 * reports from firmware
6252 */
6253 ret = i40e_aq_set_phy_int_mask(&pf->hw,
6254 I40E_AQ_EVENT_LINK_UPDOWN |
6255 I40E_AQ_EVENT_MODULE_QUAL_FAIL, NULL);
6256 if (ret)
6257 dev_info(&pf->pdev->dev, "set phy mask fail, aq_err %d\n", ret);
6258
Anjali Singhai Jaincafa2ee2014-09-13 07:40:45 +00006259 /* make sure our flow control settings are restored */
6260 ret = i40e_set_fc(&pf->hw, &set_fc_aq_fail, true);
6261 if (ret)
6262 dev_info(&pf->pdev->dev, "set fc fail, aq_err %d\n", ret);
6263
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006264 /* Rebuild the VSIs and VEBs that existed before reset.
6265 * They are still in our local switch element arrays, so only
6266 * need to rebuild the switch model in the HW.
6267 *
6268 * If there were VEBs but the reconstitution failed, we'll try
6269 * try to recover minimal use by getting the basic PF VSI working.
6270 */
6271 if (pf->vsi[pf->lan_vsi]->uplink_seid != pf->mac_seid) {
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00006272 dev_dbg(&pf->pdev->dev, "attempting to rebuild switch\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006273 /* find the one VEB connected to the MAC, and find orphans */
6274 for (v = 0; v < I40E_MAX_VEB; v++) {
6275 if (!pf->veb[v])
6276 continue;
6277
6278 if (pf->veb[v]->uplink_seid == pf->mac_seid ||
6279 pf->veb[v]->uplink_seid == 0) {
6280 ret = i40e_reconstitute_veb(pf->veb[v]);
6281
6282 if (!ret)
6283 continue;
6284
6285 /* If Main VEB failed, we're in deep doodoo,
6286 * so give up rebuilding the switch and set up
6287 * for minimal rebuild of PF VSI.
6288 * If orphan failed, we'll report the error
6289 * but try to keep going.
6290 */
6291 if (pf->veb[v]->uplink_seid == pf->mac_seid) {
6292 dev_info(&pf->pdev->dev,
6293 "rebuild of switch failed: %d, will try to set up simple PF connection\n",
6294 ret);
6295 pf->vsi[pf->lan_vsi]->uplink_seid
6296 = pf->mac_seid;
6297 break;
6298 } else if (pf->veb[v]->uplink_seid == 0) {
6299 dev_info(&pf->pdev->dev,
6300 "rebuild of orphan VEB failed: %d\n",
6301 ret);
6302 }
6303 }
6304 }
6305 }
6306
6307 if (pf->vsi[pf->lan_vsi]->uplink_seid == pf->mac_seid) {
Shannon Nelsoncde4cbc2014-06-04 01:23:17 +00006308 dev_dbg(&pf->pdev->dev, "attempting to rebuild PF VSI\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006309 /* no VEB, so rebuild only the Main VSI */
6310 ret = i40e_add_vsi(pf->vsi[pf->lan_vsi]);
6311 if (ret) {
6312 dev_info(&pf->pdev->dev,
6313 "rebuild of Main VSI failed: %d\n", ret);
6314 goto end_core_reset;
6315 }
6316 }
6317
Anjali Singhai Jaincafa2ee2014-09-13 07:40:45 +00006318 msleep(75);
6319 ret = i40e_aq_set_link_restart_an(&pf->hw, true, NULL);
6320 if (ret) {
6321 dev_info(&pf->pdev->dev, "link restart failed, aq_err=%d\n",
6322 pf->hw.aq.asq_last_status);
6323 }
6324
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006325 /* reinit the misc interrupt */
6326 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
6327 ret = i40e_setup_misc_vector(pf);
6328
6329 /* restart the VSIs that were rebuilt and running before the reset */
6330 i40e_pf_unquiesce_all_vsi(pf);
6331
Mitch Williams69f64b22014-02-13 03:48:46 -08006332 if (pf->num_alloc_vfs) {
6333 for (v = 0; v < pf->num_alloc_vfs; v++)
6334 i40e_reset_vf(&pf->vf[v], true);
6335 }
6336
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006337 /* tell the firmware that we're starting */
Jesse Brandeburg44033fa2014-04-23 04:50:15 +00006338 i40e_send_version(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006339
6340end_core_reset:
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00006341 clear_bit(__I40E_RESET_FAILED, &pf->state);
6342clear_recovery:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006343 clear_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state);
6344}
6345
6346/**
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006347 * i40e_handle_reset_warning - prep for the pf to reset, reset and rebuild
6348 * @pf: board private structure
6349 *
6350 * Close up the VFs and other things in prep for a Core Reset,
6351 * then get ready to rebuild the world.
6352 **/
6353static void i40e_handle_reset_warning(struct i40e_pf *pf)
6354{
Shannon Nelson23cfbe02014-06-04 01:23:14 +00006355 i40e_prep_for_reset(pf);
6356 i40e_reset_and_rebuild(pf, false);
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006357}
6358
6359/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006360 * i40e_handle_mdd_event
6361 * @pf: pointer to the pf structure
6362 *
6363 * Called from the MDD irq handler to identify possibly malicious vfs
6364 **/
6365static void i40e_handle_mdd_event(struct i40e_pf *pf)
6366{
6367 struct i40e_hw *hw = &pf->hw;
6368 bool mdd_detected = false;
Neerav Parikhdf430b12014-06-04 01:23:15 +00006369 bool pf_mdd_detected = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006370 struct i40e_vf *vf;
6371 u32 reg;
6372 int i;
6373
6374 if (!test_bit(__I40E_MDD_EVENT_PENDING, &pf->state))
6375 return;
6376
6377 /* find what triggered the MDD event */
6378 reg = rd32(hw, I40E_GL_MDET_TX);
6379 if (reg & I40E_GL_MDET_TX_VALID_MASK) {
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00006380 u8 pf_num = (reg & I40E_GL_MDET_TX_PF_NUM_MASK) >>
6381 I40E_GL_MDET_TX_PF_NUM_SHIFT;
Mitch Williams2089ad02014-10-17 03:14:53 +00006382 u16 vf_num = (reg & I40E_GL_MDET_TX_VF_NUM_MASK) >>
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00006383 I40E_GL_MDET_TX_VF_NUM_SHIFT;
Dan Carpenter013f6572014-10-22 20:06:29 -07006384 u8 event = (reg & I40E_GL_MDET_TX_EVENT_MASK) >>
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00006385 I40E_GL_MDET_TX_EVENT_SHIFT;
Mitch Williams2089ad02014-10-17 03:14:53 +00006386 u16 queue = ((reg & I40E_GL_MDET_TX_QUEUE_MASK) >>
6387 I40E_GL_MDET_TX_QUEUE_SHIFT) -
6388 pf->hw.func_caps.base_queue;
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00006389 if (netif_msg_tx_err(pf))
6390 dev_info(&pf->pdev->dev, "Malicious Driver Detection event 0x%02x on TX queue %d pf number 0x%02x vf number 0x%02x\n",
6391 event, queue, pf_num, vf_num);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006392 wr32(hw, I40E_GL_MDET_TX, 0xffffffff);
6393 mdd_detected = true;
6394 }
6395 reg = rd32(hw, I40E_GL_MDET_RX);
6396 if (reg & I40E_GL_MDET_RX_VALID_MASK) {
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00006397 u8 func = (reg & I40E_GL_MDET_RX_FUNCTION_MASK) >>
6398 I40E_GL_MDET_RX_FUNCTION_SHIFT;
Dan Carpenter013f6572014-10-22 20:06:29 -07006399 u8 event = (reg & I40E_GL_MDET_RX_EVENT_MASK) >>
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00006400 I40E_GL_MDET_RX_EVENT_SHIFT;
Mitch Williams2089ad02014-10-17 03:14:53 +00006401 u16 queue = ((reg & I40E_GL_MDET_RX_QUEUE_MASK) >>
6402 I40E_GL_MDET_RX_QUEUE_SHIFT) -
6403 pf->hw.func_caps.base_queue;
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00006404 if (netif_msg_rx_err(pf))
6405 dev_info(&pf->pdev->dev, "Malicious Driver Detection event 0x%02x on RX queue %d of function 0x%02x\n",
6406 event, queue, func);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006407 wr32(hw, I40E_GL_MDET_RX, 0xffffffff);
6408 mdd_detected = true;
6409 }
6410
Neerav Parikhdf430b12014-06-04 01:23:15 +00006411 if (mdd_detected) {
6412 reg = rd32(hw, I40E_PF_MDET_TX);
6413 if (reg & I40E_PF_MDET_TX_VALID_MASK) {
6414 wr32(hw, I40E_PF_MDET_TX, 0xFFFF);
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00006415 dev_info(&pf->pdev->dev, "TX driver issue detected, PF reset issued\n");
Neerav Parikhdf430b12014-06-04 01:23:15 +00006416 pf_mdd_detected = true;
6417 }
6418 reg = rd32(hw, I40E_PF_MDET_RX);
6419 if (reg & I40E_PF_MDET_RX_VALID_MASK) {
6420 wr32(hw, I40E_PF_MDET_RX, 0xFFFF);
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00006421 dev_info(&pf->pdev->dev, "RX driver issue detected, PF reset issued\n");
Neerav Parikhdf430b12014-06-04 01:23:15 +00006422 pf_mdd_detected = true;
6423 }
6424 /* Queue belongs to the PF, initiate a reset */
6425 if (pf_mdd_detected) {
6426 set_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
6427 i40e_service_event_schedule(pf);
6428 }
6429 }
6430
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006431 /* see if one of the VFs needs its hand slapped */
6432 for (i = 0; i < pf->num_alloc_vfs && mdd_detected; i++) {
6433 vf = &(pf->vf[i]);
6434 reg = rd32(hw, I40E_VP_MDET_TX(i));
6435 if (reg & I40E_VP_MDET_TX_VALID_MASK) {
6436 wr32(hw, I40E_VP_MDET_TX(i), 0xFFFF);
6437 vf->num_mdd_events++;
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00006438 dev_info(&pf->pdev->dev, "TX driver issue detected on VF %d\n",
6439 i);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006440 }
6441
6442 reg = rd32(hw, I40E_VP_MDET_RX(i));
6443 if (reg & I40E_VP_MDET_RX_VALID_MASK) {
6444 wr32(hw, I40E_VP_MDET_RX(i), 0xFFFF);
6445 vf->num_mdd_events++;
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00006446 dev_info(&pf->pdev->dev, "RX driver issue detected on VF %d\n",
6447 i);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006448 }
6449
6450 if (vf->num_mdd_events > I40E_DEFAULT_NUM_MDD_EVENTS_ALLOWED) {
6451 dev_info(&pf->pdev->dev,
6452 "Too many MDD events on VF %d, disabled\n", i);
6453 dev_info(&pf->pdev->dev,
6454 "Use PF Control I/F to re-enable the VF\n");
6455 set_bit(I40E_VF_STAT_DISABLED, &vf->vf_states);
6456 }
6457 }
6458
6459 /* re-enable mdd interrupt cause */
6460 clear_bit(__I40E_MDD_EVENT_PENDING, &pf->state);
6461 reg = rd32(hw, I40E_PFINT_ICR0_ENA);
6462 reg |= I40E_PFINT_ICR0_ENA_MAL_DETECT_MASK;
6463 wr32(hw, I40E_PFINT_ICR0_ENA, reg);
6464 i40e_flush(hw);
6465}
6466
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00006467#ifdef CONFIG_I40E_VXLAN
6468/**
6469 * i40e_sync_vxlan_filters_subtask - Sync the VSI filter list with HW
6470 * @pf: board private structure
6471 **/
6472static void i40e_sync_vxlan_filters_subtask(struct i40e_pf *pf)
6473{
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00006474 struct i40e_hw *hw = &pf->hw;
6475 i40e_status ret;
6476 u8 filter_index;
6477 __be16 port;
6478 int i;
6479
6480 if (!(pf->flags & I40E_FLAG_VXLAN_FILTER_SYNC))
6481 return;
6482
6483 pf->flags &= ~I40E_FLAG_VXLAN_FILTER_SYNC;
6484
6485 for (i = 0; i < I40E_MAX_PF_UDP_OFFLOAD_PORTS; i++) {
6486 if (pf->pending_vxlan_bitmap & (1 << i)) {
6487 pf->pending_vxlan_bitmap &= ~(1 << i);
6488 port = pf->vxlan_ports[i];
6489 ret = port ?
6490 i40e_aq_add_udp_tunnel(hw, ntohs(port),
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00006491 I40E_AQC_TUNNEL_TYPE_VXLAN,
6492 &filter_index, NULL)
6493 : i40e_aq_del_udp_tunnel(hw, i, NULL);
6494
6495 if (ret) {
6496 dev_info(&pf->pdev->dev, "Failed to execute AQ command for %s port %d with index %d\n",
6497 port ? "adding" : "deleting",
6498 ntohs(port), port ? i : i);
6499
6500 pf->vxlan_ports[i] = 0;
6501 } else {
6502 dev_info(&pf->pdev->dev, "%s port %d with AQ command with index %d\n",
6503 port ? "Added" : "Deleted",
6504 ntohs(port), port ? i : filter_index);
6505 }
6506 }
6507 }
6508}
6509
6510#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006511/**
6512 * i40e_service_task - Run the driver's async subtasks
6513 * @work: pointer to work_struct containing our data
6514 **/
6515static void i40e_service_task(struct work_struct *work)
6516{
6517 struct i40e_pf *pf = container_of(work,
6518 struct i40e_pf,
6519 service_task);
6520 unsigned long start_time = jiffies;
6521
Shannon Nelsone57a2fe2014-06-03 23:50:19 +00006522 /* don't bother with service tasks if a reset is in progress */
6523 if (test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state)) {
6524 i40e_service_event_complete(pf);
6525 return;
6526 }
6527
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006528 i40e_reset_subtask(pf);
6529 i40e_handle_mdd_event(pf);
6530 i40e_vc_process_vflr_event(pf);
6531 i40e_watchdog_subtask(pf);
6532 i40e_fdir_reinit_subtask(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006533 i40e_sync_filters_subtask(pf);
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00006534#ifdef CONFIG_I40E_VXLAN
6535 i40e_sync_vxlan_filters_subtask(pf);
6536#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006537 i40e_clean_adminq_subtask(pf);
6538
6539 i40e_service_event_complete(pf);
6540
6541 /* If the tasks have taken longer than one timer cycle or there
6542 * is more work to be done, reschedule the service task now
6543 * rather than wait for the timer to tick again.
6544 */
6545 if (time_after(jiffies, (start_time + pf->service_timer_period)) ||
6546 test_bit(__I40E_ADMINQ_EVENT_PENDING, &pf->state) ||
6547 test_bit(__I40E_MDD_EVENT_PENDING, &pf->state) ||
6548 test_bit(__I40E_VFLR_EVENT_PENDING, &pf->state))
6549 i40e_service_event_schedule(pf);
6550}
6551
6552/**
6553 * i40e_service_timer - timer callback
6554 * @data: pointer to PF struct
6555 **/
6556static void i40e_service_timer(unsigned long data)
6557{
6558 struct i40e_pf *pf = (struct i40e_pf *)data;
6559
6560 mod_timer(&pf->service_timer,
6561 round_jiffies(jiffies + pf->service_timer_period));
6562 i40e_service_event_schedule(pf);
6563}
6564
6565/**
6566 * i40e_set_num_rings_in_vsi - Determine number of rings in the VSI
6567 * @vsi: the VSI being configured
6568 **/
6569static int i40e_set_num_rings_in_vsi(struct i40e_vsi *vsi)
6570{
6571 struct i40e_pf *pf = vsi->back;
6572
6573 switch (vsi->type) {
6574 case I40E_VSI_MAIN:
6575 vsi->alloc_queue_pairs = pf->num_lan_qps;
6576 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
6577 I40E_REQ_DESCRIPTOR_MULTIPLE);
6578 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
6579 vsi->num_q_vectors = pf->num_lan_msix;
6580 else
6581 vsi->num_q_vectors = 1;
6582
6583 break;
6584
6585 case I40E_VSI_FDIR:
6586 vsi->alloc_queue_pairs = 1;
6587 vsi->num_desc = ALIGN(I40E_FDIR_RING_COUNT,
6588 I40E_REQ_DESCRIPTOR_MULTIPLE);
6589 vsi->num_q_vectors = 1;
6590 break;
6591
6592 case I40E_VSI_VMDQ2:
6593 vsi->alloc_queue_pairs = pf->num_vmdq_qps;
6594 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
6595 I40E_REQ_DESCRIPTOR_MULTIPLE);
6596 vsi->num_q_vectors = pf->num_vmdq_msix;
6597 break;
6598
6599 case I40E_VSI_SRIOV:
6600 vsi->alloc_queue_pairs = pf->num_vf_qps;
6601 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
6602 I40E_REQ_DESCRIPTOR_MULTIPLE);
6603 break;
6604
Vasu Dev38e00432014-08-01 13:27:03 -07006605#ifdef I40E_FCOE
6606 case I40E_VSI_FCOE:
6607 vsi->alloc_queue_pairs = pf->num_fcoe_qps;
6608 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
6609 I40E_REQ_DESCRIPTOR_MULTIPLE);
6610 vsi->num_q_vectors = pf->num_fcoe_msix;
6611 break;
6612
6613#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006614 default:
6615 WARN_ON(1);
6616 return -ENODATA;
6617 }
6618
6619 return 0;
6620}
6621
6622/**
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006623 * i40e_vsi_alloc_arrays - Allocate queue and vector pointer arrays for the vsi
6624 * @type: VSI pointer
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006625 * @alloc_qvectors: a bool to specify if q_vectors need to be allocated.
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006626 *
6627 * On error: returns error code (negative)
6628 * On success: returns 0
6629 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006630static int i40e_vsi_alloc_arrays(struct i40e_vsi *vsi, bool alloc_qvectors)
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006631{
6632 int size;
6633 int ret = 0;
6634
Shannon Nelsonac6c5e32013-11-20 10:02:57 +00006635 /* allocate memory for both Tx and Rx ring pointers */
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006636 size = sizeof(struct i40e_ring *) * vsi->alloc_queue_pairs * 2;
6637 vsi->tx_rings = kzalloc(size, GFP_KERNEL);
6638 if (!vsi->tx_rings)
6639 return -ENOMEM;
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006640 vsi->rx_rings = &vsi->tx_rings[vsi->alloc_queue_pairs];
6641
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006642 if (alloc_qvectors) {
6643 /* allocate memory for q_vector pointers */
Julia Lawallf57e4fb2014-07-30 03:11:09 +00006644 size = sizeof(struct i40e_q_vector *) * vsi->num_q_vectors;
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006645 vsi->q_vectors = kzalloc(size, GFP_KERNEL);
6646 if (!vsi->q_vectors) {
6647 ret = -ENOMEM;
6648 goto err_vectors;
6649 }
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006650 }
6651 return ret;
6652
6653err_vectors:
6654 kfree(vsi->tx_rings);
6655 return ret;
6656}
6657
6658/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006659 * i40e_vsi_mem_alloc - Allocates the next available struct vsi in the PF
6660 * @pf: board private structure
6661 * @type: type of VSI
6662 *
6663 * On error: returns error code (negative)
6664 * On success: returns vsi index in PF (positive)
6665 **/
6666static int i40e_vsi_mem_alloc(struct i40e_pf *pf, enum i40e_vsi_type type)
6667{
6668 int ret = -ENODEV;
6669 struct i40e_vsi *vsi;
6670 int vsi_idx;
6671 int i;
6672
6673 /* Need to protect the allocation of the VSIs at the PF level */
6674 mutex_lock(&pf->switch_mutex);
6675
6676 /* VSI list may be fragmented if VSI creation/destruction has
6677 * been happening. We can afford to do a quick scan to look
6678 * for any free VSIs in the list.
6679 *
6680 * find next empty vsi slot, looping back around if necessary
6681 */
6682 i = pf->next_vsi;
Mitch Williams505682c2014-05-20 08:01:37 +00006683 while (i < pf->num_alloc_vsi && pf->vsi[i])
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006684 i++;
Mitch Williams505682c2014-05-20 08:01:37 +00006685 if (i >= pf->num_alloc_vsi) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006686 i = 0;
6687 while (i < pf->next_vsi && pf->vsi[i])
6688 i++;
6689 }
6690
Mitch Williams505682c2014-05-20 08:01:37 +00006691 if (i < pf->num_alloc_vsi && !pf->vsi[i]) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006692 vsi_idx = i; /* Found one! */
6693 } else {
6694 ret = -ENODEV;
Alexander Duyck493fb302013-09-28 07:01:44 +00006695 goto unlock_pf; /* out of VSI slots! */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006696 }
6697 pf->next_vsi = ++i;
6698
6699 vsi = kzalloc(sizeof(*vsi), GFP_KERNEL);
6700 if (!vsi) {
6701 ret = -ENOMEM;
Alexander Duyck493fb302013-09-28 07:01:44 +00006702 goto unlock_pf;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006703 }
6704 vsi->type = type;
6705 vsi->back = pf;
6706 set_bit(__I40E_DOWN, &vsi->state);
6707 vsi->flags = 0;
6708 vsi->idx = vsi_idx;
6709 vsi->rx_itr_setting = pf->rx_itr_default;
6710 vsi->tx_itr_setting = pf->tx_itr_default;
6711 vsi->netdev_registered = false;
6712 vsi->work_limit = I40E_DEFAULT_IRQ_WORK;
6713 INIT_LIST_HEAD(&vsi->mac_filter_list);
Shannon Nelson63741842014-04-23 04:50:16 +00006714 vsi->irqs_ready = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006715
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006716 ret = i40e_set_num_rings_in_vsi(vsi);
6717 if (ret)
6718 goto err_rings;
6719
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006720 ret = i40e_vsi_alloc_arrays(vsi, true);
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006721 if (ret)
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006722 goto err_rings;
Alexander Duyck493fb302013-09-28 07:01:44 +00006723
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006724 /* Setup default MSIX irq handler for VSI */
6725 i40e_vsi_setup_irqhandler(vsi, i40e_msix_clean_rings);
6726
6727 pf->vsi[vsi_idx] = vsi;
6728 ret = vsi_idx;
Alexander Duyck493fb302013-09-28 07:01:44 +00006729 goto unlock_pf;
6730
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006731err_rings:
Alexander Duyck493fb302013-09-28 07:01:44 +00006732 pf->next_vsi = i - 1;
6733 kfree(vsi);
6734unlock_pf:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006735 mutex_unlock(&pf->switch_mutex);
6736 return ret;
6737}
6738
6739/**
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006740 * i40e_vsi_free_arrays - Free queue and vector pointer arrays for the VSI
6741 * @type: VSI pointer
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006742 * @free_qvectors: a bool to specify if q_vectors need to be freed.
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006743 *
6744 * On error: returns error code (negative)
6745 * On success: returns 0
6746 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006747static void i40e_vsi_free_arrays(struct i40e_vsi *vsi, bool free_qvectors)
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006748{
6749 /* free the ring and vector containers */
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006750 if (free_qvectors) {
6751 kfree(vsi->q_vectors);
6752 vsi->q_vectors = NULL;
6753 }
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006754 kfree(vsi->tx_rings);
6755 vsi->tx_rings = NULL;
6756 vsi->rx_rings = NULL;
6757}
6758
6759/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006760 * i40e_vsi_clear - Deallocate the VSI provided
6761 * @vsi: the VSI being un-configured
6762 **/
6763static int i40e_vsi_clear(struct i40e_vsi *vsi)
6764{
6765 struct i40e_pf *pf;
6766
6767 if (!vsi)
6768 return 0;
6769
6770 if (!vsi->back)
6771 goto free_vsi;
6772 pf = vsi->back;
6773
6774 mutex_lock(&pf->switch_mutex);
6775 if (!pf->vsi[vsi->idx]) {
6776 dev_err(&pf->pdev->dev, "pf->vsi[%d] is NULL, just free vsi[%d](%p,type %d)\n",
6777 vsi->idx, vsi->idx, vsi, vsi->type);
6778 goto unlock_vsi;
6779 }
6780
6781 if (pf->vsi[vsi->idx] != vsi) {
6782 dev_err(&pf->pdev->dev,
6783 "pf->vsi[%d](%p, type %d) != vsi[%d](%p,type %d): no free!\n",
6784 pf->vsi[vsi->idx]->idx,
6785 pf->vsi[vsi->idx],
6786 pf->vsi[vsi->idx]->type,
6787 vsi->idx, vsi, vsi->type);
6788 goto unlock_vsi;
6789 }
6790
6791 /* updates the pf for this cleared vsi */
6792 i40e_put_lump(pf->qp_pile, vsi->base_queue, vsi->idx);
6793 i40e_put_lump(pf->irq_pile, vsi->base_vector, vsi->idx);
6794
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006795 i40e_vsi_free_arrays(vsi, true);
Alexander Duyck493fb302013-09-28 07:01:44 +00006796
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006797 pf->vsi[vsi->idx] = NULL;
6798 if (vsi->idx < pf->next_vsi)
6799 pf->next_vsi = vsi->idx;
6800
6801unlock_vsi:
6802 mutex_unlock(&pf->switch_mutex);
6803free_vsi:
6804 kfree(vsi);
6805
6806 return 0;
6807}
6808
6809/**
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006810 * i40e_vsi_clear_rings - Deallocates the Rx and Tx rings for the provided VSI
6811 * @vsi: the VSI being cleaned
6812 **/
Shannon Nelsonbe1d5ee2013-11-28 06:39:23 +00006813static void i40e_vsi_clear_rings(struct i40e_vsi *vsi)
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006814{
6815 int i;
6816
Greg Rose8e9dca52013-12-18 13:45:53 +00006817 if (vsi->tx_rings && vsi->tx_rings[0]) {
Neerav Parikhd7397642013-11-28 06:39:37 +00006818 for (i = 0; i < vsi->alloc_queue_pairs; i++) {
Mitch Williams00403f02013-09-28 07:13:13 +00006819 kfree_rcu(vsi->tx_rings[i], rcu);
6820 vsi->tx_rings[i] = NULL;
6821 vsi->rx_rings[i] = NULL;
6822 }
Shannon Nelsonbe1d5ee2013-11-28 06:39:23 +00006823 }
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006824}
6825
6826/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006827 * i40e_alloc_rings - Allocates the Rx and Tx rings for the provided VSI
6828 * @vsi: the VSI being configured
6829 **/
6830static int i40e_alloc_rings(struct i40e_vsi *vsi)
6831{
Akeem G Abodunrine7046ee2014-04-09 05:58:58 +00006832 struct i40e_ring *tx_ring, *rx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006833 struct i40e_pf *pf = vsi->back;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006834 int i;
6835
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006836 /* Set basic values in the rings to be used later during open() */
Neerav Parikhd7397642013-11-28 06:39:37 +00006837 for (i = 0; i < vsi->alloc_queue_pairs; i++) {
Shannon Nelsonac6c5e32013-11-20 10:02:57 +00006838 /* allocate space for both Tx and Rx in one shot */
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006839 tx_ring = kzalloc(sizeof(struct i40e_ring) * 2, GFP_KERNEL);
6840 if (!tx_ring)
6841 goto err_out;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006842
6843 tx_ring->queue_index = i;
6844 tx_ring->reg_idx = vsi->base_queue + i;
6845 tx_ring->ring_active = false;
6846 tx_ring->vsi = vsi;
6847 tx_ring->netdev = vsi->netdev;
6848 tx_ring->dev = &pf->pdev->dev;
6849 tx_ring->count = vsi->num_desc;
6850 tx_ring->size = 0;
6851 tx_ring->dcb_tc = 0;
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006852 vsi->tx_rings[i] = tx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006853
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006854 rx_ring = &tx_ring[1];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006855 rx_ring->queue_index = i;
6856 rx_ring->reg_idx = vsi->base_queue + i;
6857 rx_ring->ring_active = false;
6858 rx_ring->vsi = vsi;
6859 rx_ring->netdev = vsi->netdev;
6860 rx_ring->dev = &pf->pdev->dev;
6861 rx_ring->count = vsi->num_desc;
6862 rx_ring->size = 0;
6863 rx_ring->dcb_tc = 0;
6864 if (pf->flags & I40E_FLAG_16BYTE_RX_DESC_ENABLED)
6865 set_ring_16byte_desc_enabled(rx_ring);
6866 else
6867 clear_ring_16byte_desc_enabled(rx_ring);
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006868 vsi->rx_rings[i] = rx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006869 }
6870
6871 return 0;
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006872
6873err_out:
6874 i40e_vsi_clear_rings(vsi);
6875 return -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006876}
6877
6878/**
6879 * i40e_reserve_msix_vectors - Reserve MSI-X vectors in the kernel
6880 * @pf: board private structure
6881 * @vectors: the number of MSI-X vectors to request
6882 *
6883 * Returns the number of vectors reserved, or error
6884 **/
6885static int i40e_reserve_msix_vectors(struct i40e_pf *pf, int vectors)
6886{
Alexander Gordeev7b37f372014-02-18 11:11:42 +01006887 vectors = pci_enable_msix_range(pf->pdev, pf->msix_entries,
6888 I40E_MIN_MSIX, vectors);
6889 if (vectors < 0) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006890 dev_info(&pf->pdev->dev,
Alexander Gordeev7b37f372014-02-18 11:11:42 +01006891 "MSI-X vector reservation failed: %d\n", vectors);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006892 vectors = 0;
6893 }
6894
6895 return vectors;
6896}
6897
6898/**
6899 * i40e_init_msix - Setup the MSIX capability
6900 * @pf: board private structure
6901 *
6902 * Work with the OS to set up the MSIX vectors needed.
6903 *
6904 * Returns 0 on success, negative on failure
6905 **/
6906static int i40e_init_msix(struct i40e_pf *pf)
6907{
6908 i40e_status err = 0;
6909 struct i40e_hw *hw = &pf->hw;
Shannon Nelsonc135b0d2014-10-17 03:14:49 +00006910 int other_vecs = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006911 int v_budget, i;
6912 int vec;
6913
6914 if (!(pf->flags & I40E_FLAG_MSIX_ENABLED))
6915 return -ENODEV;
6916
6917 /* The number of vectors we'll request will be comprised of:
6918 * - Add 1 for "other" cause for Admin Queue events, etc.
6919 * - The number of LAN queue pairs
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00006920 * - Queues being used for RSS.
6921 * We don't need as many as max_rss_size vectors.
6922 * use rss_size instead in the calculation since that
6923 * is governed by number of cpus in the system.
6924 * - assumes symmetric Tx/Rx pairing
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006925 * - The number of VMDq pairs
Vasu Dev38e00432014-08-01 13:27:03 -07006926#ifdef I40E_FCOE
6927 * - The number of FCOE qps.
6928#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006929 * Once we count this up, try the request.
6930 *
6931 * If we can't get what we want, we'll simplify to nearly nothing
6932 * and try again. If that still fails, we punt.
6933 */
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00006934 pf->num_lan_msix = pf->num_lan_qps - (pf->rss_size_max - pf->rss_size);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006935 pf->num_vmdq_msix = pf->num_vmdq_qps;
Shannon Nelsonc135b0d2014-10-17 03:14:49 +00006936 other_vecs = 1;
6937 other_vecs += (pf->num_vmdq_vsis * pf->num_vmdq_msix);
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08006938 if (pf->flags & I40E_FLAG_FD_SB_ENABLED)
Shannon Nelsonc135b0d2014-10-17 03:14:49 +00006939 other_vecs++;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006940
John W Linville83840e42015-01-14 03:06:28 +00006941 /* Scale down if necessary, and the rings will share vectors */
6942 pf->num_lan_msix = min_t(int, pf->num_lan_msix,
6943 (hw->func_caps.num_msix_vectors - other_vecs));
6944 v_budget = pf->num_lan_msix + other_vecs;
6945
Vasu Dev38e00432014-08-01 13:27:03 -07006946#ifdef I40E_FCOE
6947 if (pf->flags & I40E_FLAG_FCOE_ENABLED) {
6948 pf->num_fcoe_msix = pf->num_fcoe_qps;
6949 v_budget += pf->num_fcoe_msix;
6950 }
Vasu Dev38e00432014-08-01 13:27:03 -07006951#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006952
6953 pf->msix_entries = kcalloc(v_budget, sizeof(struct msix_entry),
6954 GFP_KERNEL);
6955 if (!pf->msix_entries)
6956 return -ENOMEM;
6957
6958 for (i = 0; i < v_budget; i++)
6959 pf->msix_entries[i].entry = i;
6960 vec = i40e_reserve_msix_vectors(pf, v_budget);
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00006961
6962 if (vec != v_budget) {
6963 /* If we have limited resources, we will start with no vectors
6964 * for the special features and then allocate vectors to some
6965 * of these features based on the policy and at the end disable
6966 * the features that did not get any vectors.
6967 */
Vasu Dev38e00432014-08-01 13:27:03 -07006968#ifdef I40E_FCOE
6969 pf->num_fcoe_qps = 0;
6970 pf->num_fcoe_msix = 0;
6971#endif
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00006972 pf->num_vmdq_msix = 0;
6973 }
6974
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006975 if (vec < I40E_MIN_MSIX) {
6976 pf->flags &= ~I40E_FLAG_MSIX_ENABLED;
6977 kfree(pf->msix_entries);
6978 pf->msix_entries = NULL;
6979 return -ENODEV;
6980
6981 } else if (vec == I40E_MIN_MSIX) {
6982 /* Adjust for minimal MSIX use */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006983 pf->num_vmdq_vsis = 0;
6984 pf->num_vmdq_qps = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006985 pf->num_lan_qps = 1;
6986 pf->num_lan_msix = 1;
6987
6988 } else if (vec != v_budget) {
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00006989 /* reserve the misc vector */
6990 vec--;
6991
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006992 /* Scale vector usage down */
6993 pf->num_vmdq_msix = 1; /* force VMDqs to only one vector */
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00006994 pf->num_vmdq_vsis = 1;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006995
6996 /* partition out the remaining vectors */
6997 switch (vec) {
6998 case 2:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006999 pf->num_lan_msix = 1;
7000 break;
7001 case 3:
Vasu Dev38e00432014-08-01 13:27:03 -07007002#ifdef I40E_FCOE
7003 /* give one vector to FCoE */
7004 if (pf->flags & I40E_FLAG_FCOE_ENABLED) {
7005 pf->num_lan_msix = 1;
7006 pf->num_fcoe_msix = 1;
7007 }
7008#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007009 pf->num_lan_msix = 2;
Vasu Dev38e00432014-08-01 13:27:03 -07007010#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007011 break;
7012 default:
Vasu Dev38e00432014-08-01 13:27:03 -07007013#ifdef I40E_FCOE
7014 /* give one vector to FCoE */
7015 if (pf->flags & I40E_FLAG_FCOE_ENABLED) {
7016 pf->num_fcoe_msix = 1;
7017 vec--;
7018 }
7019#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007020 pf->num_lan_msix = min_t(int, (vec / 2),
7021 pf->num_lan_qps);
7022 pf->num_vmdq_vsis = min_t(int, (vec - pf->num_lan_msix),
7023 I40E_DEFAULT_NUM_VMDQ_VSI);
7024 break;
7025 }
7026 }
7027
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00007028 if ((pf->flags & I40E_FLAG_VMDQ_ENABLED) &&
7029 (pf->num_vmdq_msix == 0)) {
7030 dev_info(&pf->pdev->dev, "VMDq disabled, not enough MSI-X vectors\n");
7031 pf->flags &= ~I40E_FLAG_VMDQ_ENABLED;
7032 }
Vasu Dev38e00432014-08-01 13:27:03 -07007033#ifdef I40E_FCOE
7034
7035 if ((pf->flags & I40E_FLAG_FCOE_ENABLED) && (pf->num_fcoe_msix == 0)) {
7036 dev_info(&pf->pdev->dev, "FCOE disabled, not enough MSI-X vectors\n");
7037 pf->flags &= ~I40E_FLAG_FCOE_ENABLED;
7038 }
7039#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007040 return err;
7041}
7042
7043/**
Greg Rose90e04072014-03-06 08:59:57 +00007044 * i40e_vsi_alloc_q_vector - Allocate memory for a single interrupt vector
Alexander Duyck493fb302013-09-28 07:01:44 +00007045 * @vsi: the VSI being configured
7046 * @v_idx: index of the vector in the vsi struct
7047 *
7048 * We allocate one q_vector. If allocation fails we return -ENOMEM.
7049 **/
Greg Rose90e04072014-03-06 08:59:57 +00007050static int i40e_vsi_alloc_q_vector(struct i40e_vsi *vsi, int v_idx)
Alexander Duyck493fb302013-09-28 07:01:44 +00007051{
7052 struct i40e_q_vector *q_vector;
7053
7054 /* allocate q_vector */
7055 q_vector = kzalloc(sizeof(struct i40e_q_vector), GFP_KERNEL);
7056 if (!q_vector)
7057 return -ENOMEM;
7058
7059 q_vector->vsi = vsi;
7060 q_vector->v_idx = v_idx;
7061 cpumask_set_cpu(v_idx, &q_vector->affinity_mask);
7062 if (vsi->netdev)
7063 netif_napi_add(vsi->netdev, &q_vector->napi,
Jesse Brandeburgeefeace2014-05-10 04:49:13 +00007064 i40e_napi_poll, NAPI_POLL_WEIGHT);
Alexander Duyck493fb302013-09-28 07:01:44 +00007065
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00007066 q_vector->rx.latency_range = I40E_LOW_LATENCY;
7067 q_vector->tx.latency_range = I40E_LOW_LATENCY;
7068
Alexander Duyck493fb302013-09-28 07:01:44 +00007069 /* tie q_vector and vsi together */
7070 vsi->q_vectors[v_idx] = q_vector;
7071
7072 return 0;
7073}
7074
7075/**
Greg Rose90e04072014-03-06 08:59:57 +00007076 * i40e_vsi_alloc_q_vectors - Allocate memory for interrupt vectors
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007077 * @vsi: the VSI being configured
7078 *
7079 * We allocate one q_vector per queue interrupt. If allocation fails we
7080 * return -ENOMEM.
7081 **/
Greg Rose90e04072014-03-06 08:59:57 +00007082static int i40e_vsi_alloc_q_vectors(struct i40e_vsi *vsi)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007083{
7084 struct i40e_pf *pf = vsi->back;
7085 int v_idx, num_q_vectors;
Alexander Duyck493fb302013-09-28 07:01:44 +00007086 int err;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007087
7088 /* if not MSIX, give the one vector only to the LAN VSI */
7089 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
7090 num_q_vectors = vsi->num_q_vectors;
7091 else if (vsi == pf->vsi[pf->lan_vsi])
7092 num_q_vectors = 1;
7093 else
7094 return -EINVAL;
7095
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007096 for (v_idx = 0; v_idx < num_q_vectors; v_idx++) {
Greg Rose90e04072014-03-06 08:59:57 +00007097 err = i40e_vsi_alloc_q_vector(vsi, v_idx);
Alexander Duyck493fb302013-09-28 07:01:44 +00007098 if (err)
7099 goto err_out;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007100 }
7101
7102 return 0;
Alexander Duyck493fb302013-09-28 07:01:44 +00007103
7104err_out:
7105 while (v_idx--)
7106 i40e_free_q_vector(vsi, v_idx);
7107
7108 return err;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007109}
7110
7111/**
7112 * i40e_init_interrupt_scheme - Determine proper interrupt scheme
7113 * @pf: board private structure to initialize
7114 **/
7115static void i40e_init_interrupt_scheme(struct i40e_pf *pf)
7116{
7117 int err = 0;
7118
7119 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
7120 err = i40e_init_msix(pf);
7121 if (err) {
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08007122 pf->flags &= ~(I40E_FLAG_MSIX_ENABLED |
Vasu Dev38e00432014-08-01 13:27:03 -07007123#ifdef I40E_FCOE
7124 I40E_FLAG_FCOE_ENABLED |
7125#endif
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08007126 I40E_FLAG_RSS_ENABLED |
Neerav Parikh4d9b6042014-05-22 06:31:51 +00007127 I40E_FLAG_DCB_CAPABLE |
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08007128 I40E_FLAG_SRIOV_ENABLED |
7129 I40E_FLAG_FD_SB_ENABLED |
7130 I40E_FLAG_FD_ATR_ENABLED |
7131 I40E_FLAG_VMDQ_ENABLED);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007132
7133 /* rework the queue expectations without MSIX */
7134 i40e_determine_queue_usage(pf);
7135 }
7136 }
7137
7138 if (!(pf->flags & I40E_FLAG_MSIX_ENABLED) &&
7139 (pf->flags & I40E_FLAG_MSI_ENABLED)) {
Catherine Sullivan77fa28b2014-02-20 19:29:17 -08007140 dev_info(&pf->pdev->dev, "MSI-X not available, trying MSI\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007141 err = pci_enable_msi(pf->pdev);
7142 if (err) {
Shannon Nelson958a3e32013-09-28 07:13:28 +00007143 dev_info(&pf->pdev->dev, "MSI init failed - %d\n", err);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007144 pf->flags &= ~I40E_FLAG_MSI_ENABLED;
7145 }
7146 }
7147
Shannon Nelson958a3e32013-09-28 07:13:28 +00007148 if (!(pf->flags & (I40E_FLAG_MSIX_ENABLED | I40E_FLAG_MSI_ENABLED)))
Catherine Sullivan77fa28b2014-02-20 19:29:17 -08007149 dev_info(&pf->pdev->dev, "MSI-X and MSI not available, falling back to Legacy IRQ\n");
Shannon Nelson958a3e32013-09-28 07:13:28 +00007150
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007151 /* track first vector for misc interrupts */
7152 err = i40e_get_lump(pf, pf->irq_pile, 1, I40E_PILE_VALID_BIT-1);
7153}
7154
7155/**
7156 * i40e_setup_misc_vector - Setup the misc vector to handle non queue events
7157 * @pf: board private structure
7158 *
7159 * This sets up the handler for MSIX 0, which is used to manage the
7160 * non-queue interrupts, e.g. AdminQ and errors. This is not used
7161 * when in MSI or Legacy interrupt mode.
7162 **/
7163static int i40e_setup_misc_vector(struct i40e_pf *pf)
7164{
7165 struct i40e_hw *hw = &pf->hw;
7166 int err = 0;
7167
7168 /* Only request the irq if this is the first time through, and
7169 * not when we're rebuilding after a Reset
7170 */
7171 if (!test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state)) {
7172 err = request_irq(pf->msix_entries[0].vector,
Carolyn Wybornyb294ac72014-12-11 07:06:39 +00007173 i40e_intr, 0, pf->int_name, pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007174 if (err) {
7175 dev_info(&pf->pdev->dev,
Catherine Sullivan77fa28b2014-02-20 19:29:17 -08007176 "request_irq for %s failed: %d\n",
Carolyn Wybornyb294ac72014-12-11 07:06:39 +00007177 pf->int_name, err);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007178 return -EFAULT;
7179 }
7180 }
7181
Jacob Kellerab437b52014-12-14 01:55:08 +00007182 i40e_enable_misc_int_causes(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007183
7184 /* associate no queues to the misc vector */
7185 wr32(hw, I40E_PFINT_LNKLST0, I40E_QUEUE_END_OF_LIST);
7186 wr32(hw, I40E_PFINT_ITR0(I40E_RX_ITR), I40E_ITR_8K);
7187
7188 i40e_flush(hw);
7189
7190 i40e_irq_dynamic_enable_icr0(pf);
7191
7192 return err;
7193}
7194
7195/**
7196 * i40e_config_rss - Prepare for RSS if used
7197 * @pf: board private structure
7198 **/
7199static int i40e_config_rss(struct i40e_pf *pf)
7200{
Eric Dumazet22f258a2014-11-16 06:23:13 -08007201 u32 rss_key[I40E_PFQF_HKEY_MAX_INDEX + 1];
Anjali Singhai Jain4617e8c2013-11-20 10:02:56 +00007202 struct i40e_hw *hw = &pf->hw;
7203 u32 lut = 0;
7204 int i, j;
7205 u64 hena;
Carolyn Wybornye157ea32014-06-03 23:50:22 +00007206 u32 reg_val;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007207
Eric Dumazet22f258a2014-11-16 06:23:13 -08007208 netdev_rss_key_fill(rss_key, sizeof(rss_key));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007209 for (i = 0; i <= I40E_PFQF_HKEY_MAX_INDEX; i++)
Eric Dumazet22f258a2014-11-16 06:23:13 -08007210 wr32(hw, I40E_PFQF_HKEY(i), rss_key[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007211
7212 /* By default we enable TCP/UDP with IPv4/IPv6 ptypes */
7213 hena = (u64)rd32(hw, I40E_PFQF_HENA(0)) |
7214 ((u64)rd32(hw, I40E_PFQF_HENA(1)) << 32);
Mitch Williams12dc4fe2013-11-28 06:39:32 +00007215 hena |= I40E_DEFAULT_RSS_HENA;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007216 wr32(hw, I40E_PFQF_HENA(0), (u32)hena);
7217 wr32(hw, I40E_PFQF_HENA(1), (u32)(hena >> 32));
7218
Carolyn Wybornye157ea32014-06-03 23:50:22 +00007219 /* Check capability and Set table size and register per hw expectation*/
7220 reg_val = rd32(hw, I40E_PFQF_CTL_0);
7221 if (hw->func_caps.rss_table_size == 512) {
7222 reg_val |= I40E_PFQF_CTL_0_HASHLUTSIZE_512;
7223 pf->rss_table_size = 512;
7224 } else {
7225 pf->rss_table_size = 128;
7226 reg_val &= ~I40E_PFQF_CTL_0_HASHLUTSIZE_512;
7227 }
7228 wr32(hw, I40E_PFQF_CTL_0, reg_val);
7229
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007230 /* Populate the LUT with max no. of queues in round robin fashion */
Carolyn Wybornye157ea32014-06-03 23:50:22 +00007231 for (i = 0, j = 0; i < pf->rss_table_size; i++, j++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007232
7233 /* The assumption is that lan qp count will be the highest
7234 * qp count for any PF VSI that needs RSS.
7235 * If multiple VSIs need RSS support, all the qp counts
7236 * for those VSIs should be a power of 2 for RSS to work.
7237 * If LAN VSI is the only consumer for RSS then this requirement
7238 * is not necessary.
7239 */
7240 if (j == pf->rss_size)
7241 j = 0;
7242 /* lut = 4-byte sliding window of 4 lut entries */
7243 lut = (lut << 8) | (j &
7244 ((0x1 << pf->hw.func_caps.rss_table_entry_width) - 1));
7245 /* On i = 3, we have 4 entries in lut; write to the register */
7246 if ((i & 3) == 3)
7247 wr32(hw, I40E_PFQF_HLUT(i >> 2), lut);
7248 }
7249 i40e_flush(hw);
7250
7251 return 0;
7252}
7253
7254/**
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00007255 * i40e_reconfig_rss_queues - change number of queues for rss and rebuild
7256 * @pf: board private structure
7257 * @queue_count: the requested queue count for rss.
7258 *
7259 * returns 0 if rss is not enabled, if enabled returns the final rss queue
7260 * count which may be different from the requested queue count.
7261 **/
7262int i40e_reconfig_rss_queues(struct i40e_pf *pf, int queue_count)
7263{
7264 if (!(pf->flags & I40E_FLAG_RSS_ENABLED))
7265 return 0;
7266
7267 queue_count = min_t(int, queue_count, pf->rss_size_max);
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00007268
7269 if (queue_count != pf->rss_size) {
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00007270 i40e_prep_for_reset(pf);
7271
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00007272 pf->rss_size = queue_count;
7273
7274 i40e_reset_and_rebuild(pf, true);
7275 i40e_config_rss(pf);
7276 }
7277 dev_info(&pf->pdev->dev, "RSS count: %d\n", pf->rss_size);
7278 return pf->rss_size;
7279}
7280
7281/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007282 * i40e_sw_init - Initialize general software structures (struct i40e_pf)
7283 * @pf: board private structure to initialize
7284 *
7285 * i40e_sw_init initializes the Adapter private data structure.
7286 * Fields are initialized based on PCI device information and
7287 * OS network device settings (MTU size).
7288 **/
7289static int i40e_sw_init(struct i40e_pf *pf)
7290{
7291 int err = 0;
7292 int size;
7293
7294 pf->msg_enable = netif_msg_init(I40E_DEFAULT_MSG_ENABLE,
7295 (NETIF_MSG_DRV|NETIF_MSG_PROBE|NETIF_MSG_LINK));
Shannon Nelson27599972013-11-16 10:00:43 +00007296 pf->hw.debug_mask = pf->msg_enable | I40E_DEBUG_DIAG;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007297 if (debug != -1 && debug != I40E_DEFAULT_MSG_ENABLE) {
7298 if (I40E_DEBUG_USER & debug)
7299 pf->hw.debug_mask = debug;
7300 pf->msg_enable = netif_msg_init((debug & ~I40E_DEBUG_USER),
7301 I40E_DEFAULT_MSG_ENABLE);
7302 }
7303
7304 /* Set default capability flags */
7305 pf->flags = I40E_FLAG_RX_CSUM_ENABLED |
7306 I40E_FLAG_MSI_ENABLED |
7307 I40E_FLAG_MSIX_ENABLED |
Mitch Williamsa132af22015-01-24 09:58:35 +00007308 I40E_FLAG_RX_PS_ENABLED;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007309
Mitch Williamsca99eb92014-04-04 04:43:07 +00007310 /* Set default ITR */
7311 pf->rx_itr_default = I40E_ITR_DYNAMIC | I40E_ITR_RX_DEF;
7312 pf->tx_itr_default = I40E_ITR_DYNAMIC | I40E_ITR_TX_DEF;
7313
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00007314 /* Depending on PF configurations, it is possible that the RSS
7315 * maximum might end up larger than the available queues
7316 */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007317 pf->rss_size_max = 0x1 << pf->hw.func_caps.rss_table_entry_width;
Paul M Stillwell Jrec9a7db2014-07-09 07:46:10 +00007318 pf->rss_size = 1;
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00007319 pf->rss_size_max = min_t(int, pf->rss_size_max,
7320 pf->hw.func_caps.num_tx_qp);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007321 if (pf->hw.func_caps.rss) {
7322 pf->flags |= I40E_FLAG_RSS_ENABLED;
Jesse Brandeburgbf051a32013-11-26 10:49:17 +00007323 pf->rss_size = min_t(int, pf->rss_size_max, num_online_cpus());
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007324 }
7325
Catherine Sullivan2050bc62013-12-18 13:46:03 +00007326 /* MFP mode enabled */
7327 if (pf->hw.func_caps.npar_enable || pf->hw.func_caps.mfp_mode_1) {
7328 pf->flags |= I40E_FLAG_MFP_ENABLED;
7329 dev_info(&pf->pdev->dev, "MFP mode Enabled\n");
7330 }
7331
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08007332 /* FW/NVM is not yet fixed in this regard */
7333 if ((pf->hw.func_caps.fd_filters_guaranteed > 0) ||
7334 (pf->hw.func_caps.fd_filters_best_effort > 0)) {
7335 pf->flags |= I40E_FLAG_FD_ATR_ENABLED;
7336 pf->atr_sample_rate = I40E_DEFAULT_ATR_SAMPLE_RATE;
Anjali Singhai Jain433c47d2014-05-22 06:32:17 +00007337 /* Setup a counter for fd_atr per pf */
7338 pf->fd_atr_cnt_idx = I40E_FD_ATR_STAT_IDX(pf->hw.pf_id);
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08007339 if (!(pf->flags & I40E_FLAG_MFP_ENABLED)) {
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08007340 pf->flags |= I40E_FLAG_FD_SB_ENABLED;
Anjali Singhai Jain433c47d2014-05-22 06:32:17 +00007341 /* Setup a counter for fd_sb per pf */
7342 pf->fd_sb_cnt_idx = I40E_FD_SB_STAT_IDX(pf->hw.pf_id);
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08007343 } else {
7344 dev_info(&pf->pdev->dev,
Anjali Singhai Jain0b675842014-03-06 08:59:51 +00007345 "Flow Director Sideband mode Disabled in MFP mode\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007346 }
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08007347 pf->fdir_pf_filter_count =
7348 pf->hw.func_caps.fd_filters_guaranteed;
7349 pf->hw.fdir_shared_filter_count =
7350 pf->hw.func_caps.fd_filters_best_effort;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007351 }
7352
7353 if (pf->hw.func_caps.vmdq) {
7354 pf->flags |= I40E_FLAG_VMDQ_ENABLED;
7355 pf->num_vmdq_vsis = I40E_DEFAULT_NUM_VMDQ_VSI;
7356 pf->num_vmdq_qps = I40E_DEFAULT_QUEUES_PER_VMDQ;
7357 }
7358
Vasu Dev38e00432014-08-01 13:27:03 -07007359#ifdef I40E_FCOE
7360 err = i40e_init_pf_fcoe(pf);
7361 if (err)
7362 dev_info(&pf->pdev->dev, "init_pf_fcoe failed: %d\n", err);
7363
7364#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007365#ifdef CONFIG_PCI_IOV
Shannon Nelsonba252f12014-12-11 07:06:34 +00007366 if (pf->hw.func_caps.num_vfs && pf->hw.partition_id == 1) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007367 pf->num_vf_qps = I40E_DEFAULT_QUEUES_PER_VF;
7368 pf->flags |= I40E_FLAG_SRIOV_ENABLED;
7369 pf->num_req_vfs = min_t(int,
7370 pf->hw.func_caps.num_vfs,
7371 I40E_MAX_VF_COUNT);
7372 }
7373#endif /* CONFIG_PCI_IOV */
7374 pf->eeprom_version = 0xDEAD;
7375 pf->lan_veb = I40E_NO_VEB;
7376 pf->lan_vsi = I40E_NO_VSI;
7377
7378 /* set up queue assignment tracking */
7379 size = sizeof(struct i40e_lump_tracking)
7380 + (sizeof(u16) * pf->hw.func_caps.num_tx_qp);
7381 pf->qp_pile = kzalloc(size, GFP_KERNEL);
7382 if (!pf->qp_pile) {
7383 err = -ENOMEM;
7384 goto sw_init_done;
7385 }
7386 pf->qp_pile->num_entries = pf->hw.func_caps.num_tx_qp;
7387 pf->qp_pile->search_hint = 0;
7388
7389 /* set up vector assignment tracking */
7390 size = sizeof(struct i40e_lump_tracking)
7391 + (sizeof(u16) * pf->hw.func_caps.num_msix_vectors);
7392 pf->irq_pile = kzalloc(size, GFP_KERNEL);
7393 if (!pf->irq_pile) {
7394 kfree(pf->qp_pile);
7395 err = -ENOMEM;
7396 goto sw_init_done;
7397 }
7398 pf->irq_pile->num_entries = pf->hw.func_caps.num_msix_vectors;
7399 pf->irq_pile->search_hint = 0;
7400
Anjali Singhai Jain327fe042014-06-04 01:23:26 +00007401 pf->tx_timeout_recovery_level = 1;
7402
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007403 mutex_init(&pf->switch_mutex);
7404
7405sw_init_done:
7406 return err;
7407}
7408
7409/**
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00007410 * i40e_set_ntuple - set the ntuple feature flag and take action
7411 * @pf: board private structure to initialize
7412 * @features: the feature set that the stack is suggesting
7413 *
7414 * returns a bool to indicate if reset needs to happen
7415 **/
7416bool i40e_set_ntuple(struct i40e_pf *pf, netdev_features_t features)
7417{
7418 bool need_reset = false;
7419
7420 /* Check if Flow Director n-tuple support was enabled or disabled. If
7421 * the state changed, we need to reset.
7422 */
7423 if (features & NETIF_F_NTUPLE) {
7424 /* Enable filters and mark for reset */
7425 if (!(pf->flags & I40E_FLAG_FD_SB_ENABLED))
7426 need_reset = true;
7427 pf->flags |= I40E_FLAG_FD_SB_ENABLED;
7428 } else {
7429 /* turn off filters, mark for reset and clear SW filter list */
7430 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
7431 need_reset = true;
7432 i40e_fdir_filter_exit(pf);
7433 }
7434 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
Anjali Singhai Jain8a4f34f2014-06-04 08:45:20 +00007435 pf->auto_disable_flags &= ~I40E_FLAG_FD_SB_ENABLED;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00007436 /* reset fd counters */
7437 pf->fd_add_err = pf->fd_atr_cnt = pf->fd_tcp_rule = 0;
7438 pf->fdir_pf_active_filters = 0;
7439 pf->flags |= I40E_FLAG_FD_ATR_ENABLED;
7440 dev_info(&pf->pdev->dev, "ATR re-enabled.\n");
Anjali Singhai Jain8a4f34f2014-06-04 08:45:20 +00007441 /* if ATR was auto disabled it can be re-enabled. */
7442 if ((pf->flags & I40E_FLAG_FD_ATR_ENABLED) &&
7443 (pf->auto_disable_flags & I40E_FLAG_FD_ATR_ENABLED))
7444 pf->auto_disable_flags &= ~I40E_FLAG_FD_ATR_ENABLED;
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00007445 }
7446 return need_reset;
7447}
7448
7449/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007450 * i40e_set_features - set the netdev feature flags
7451 * @netdev: ptr to the netdev being adjusted
7452 * @features: the feature set that the stack is suggesting
7453 **/
7454static int i40e_set_features(struct net_device *netdev,
7455 netdev_features_t features)
7456{
7457 struct i40e_netdev_priv *np = netdev_priv(netdev);
7458 struct i40e_vsi *vsi = np->vsi;
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00007459 struct i40e_pf *pf = vsi->back;
7460 bool need_reset;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007461
7462 if (features & NETIF_F_HW_VLAN_CTAG_RX)
7463 i40e_vlan_stripping_enable(vsi);
7464 else
7465 i40e_vlan_stripping_disable(vsi);
7466
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00007467 need_reset = i40e_set_ntuple(pf, features);
7468
7469 if (need_reset)
7470 i40e_do_reset(pf, (1 << __I40E_PF_RESET_REQUESTED));
7471
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007472 return 0;
7473}
7474
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007475#ifdef CONFIG_I40E_VXLAN
7476/**
7477 * i40e_get_vxlan_port_idx - Lookup a possibly offloaded for Rx UDP port
7478 * @pf: board private structure
7479 * @port: The UDP port to look up
7480 *
7481 * Returns the index number or I40E_MAX_PF_UDP_OFFLOAD_PORTS if port not found
7482 **/
7483static u8 i40e_get_vxlan_port_idx(struct i40e_pf *pf, __be16 port)
7484{
7485 u8 i;
7486
7487 for (i = 0; i < I40E_MAX_PF_UDP_OFFLOAD_PORTS; i++) {
7488 if (pf->vxlan_ports[i] == port)
7489 return i;
7490 }
7491
7492 return i;
7493}
7494
7495/**
7496 * i40e_add_vxlan_port - Get notifications about VXLAN ports that come up
7497 * @netdev: This physical port's netdev
7498 * @sa_family: Socket Family that VXLAN is notifying us about
7499 * @port: New UDP port number that VXLAN started listening to
7500 **/
7501static void i40e_add_vxlan_port(struct net_device *netdev,
7502 sa_family_t sa_family, __be16 port)
7503{
7504 struct i40e_netdev_priv *np = netdev_priv(netdev);
7505 struct i40e_vsi *vsi = np->vsi;
7506 struct i40e_pf *pf = vsi->back;
7507 u8 next_idx;
7508 u8 idx;
7509
7510 if (sa_family == AF_INET6)
7511 return;
7512
7513 idx = i40e_get_vxlan_port_idx(pf, port);
7514
7515 /* Check if port already exists */
7516 if (idx < I40E_MAX_PF_UDP_OFFLOAD_PORTS) {
7517 netdev_info(netdev, "Port %d already offloaded\n", ntohs(port));
7518 return;
7519 }
7520
7521 /* Now check if there is space to add the new port */
7522 next_idx = i40e_get_vxlan_port_idx(pf, 0);
7523
7524 if (next_idx == I40E_MAX_PF_UDP_OFFLOAD_PORTS) {
7525 netdev_info(netdev, "Maximum number of UDP ports reached, not adding port %d\n",
7526 ntohs(port));
7527 return;
7528 }
7529
7530 /* New port: add it and mark its index in the bitmap */
7531 pf->vxlan_ports[next_idx] = port;
7532 pf->pending_vxlan_bitmap |= (1 << next_idx);
7533
7534 pf->flags |= I40E_FLAG_VXLAN_FILTER_SYNC;
7535}
7536
7537/**
7538 * i40e_del_vxlan_port - Get notifications about VXLAN ports that go away
7539 * @netdev: This physical port's netdev
7540 * @sa_family: Socket Family that VXLAN is notifying us about
7541 * @port: UDP port number that VXLAN stopped listening to
7542 **/
7543static void i40e_del_vxlan_port(struct net_device *netdev,
7544 sa_family_t sa_family, __be16 port)
7545{
7546 struct i40e_netdev_priv *np = netdev_priv(netdev);
7547 struct i40e_vsi *vsi = np->vsi;
7548 struct i40e_pf *pf = vsi->back;
7549 u8 idx;
7550
7551 if (sa_family == AF_INET6)
7552 return;
7553
7554 idx = i40e_get_vxlan_port_idx(pf, port);
7555
7556 /* Check if port already exists */
7557 if (idx < I40E_MAX_PF_UDP_OFFLOAD_PORTS) {
7558 /* if port exists, set it to 0 (mark for deletion)
7559 * and make it pending
7560 */
7561 pf->vxlan_ports[idx] = 0;
7562
7563 pf->pending_vxlan_bitmap |= (1 << idx);
7564
7565 pf->flags |= I40E_FLAG_VXLAN_FILTER_SYNC;
7566 } else {
7567 netdev_warn(netdev, "Port %d was not found, not deleting\n",
7568 ntohs(port));
7569 }
7570}
7571
7572#endif
Neerav Parikh1f224ad2014-02-12 01:45:31 +00007573static int i40e_get_phys_port_id(struct net_device *netdev,
Jiri Pirko02637fc2014-11-28 14:34:16 +01007574 struct netdev_phys_item_id *ppid)
Neerav Parikh1f224ad2014-02-12 01:45:31 +00007575{
7576 struct i40e_netdev_priv *np = netdev_priv(netdev);
7577 struct i40e_pf *pf = np->vsi->back;
7578 struct i40e_hw *hw = &pf->hw;
7579
7580 if (!(pf->flags & I40E_FLAG_PORT_ID_VALID))
7581 return -EOPNOTSUPP;
7582
7583 ppid->id_len = min_t(int, sizeof(hw->mac.port_addr), sizeof(ppid->id));
7584 memcpy(ppid->id, hw->mac.port_addr, ppid->id_len);
7585
7586 return 0;
7587}
7588
Jesse Brandeburg2f90ade2014-11-20 16:30:02 -08007589/**
7590 * i40e_ndo_fdb_add - add an entry to the hardware database
7591 * @ndm: the input from the stack
7592 * @tb: pointer to array of nladdr (unused)
7593 * @dev: the net device pointer
7594 * @addr: the MAC address entry being added
7595 * @flags: instructions from stack about fdb operation
7596 */
Greg Rose4ba0dea2014-03-06 08:59:55 +00007597static int i40e_ndo_fdb_add(struct ndmsg *ndm, struct nlattr *tb[],
7598 struct net_device *dev,
Jiri Pirkof6f64242014-11-28 14:34:15 +01007599 const unsigned char *addr, u16 vid,
Greg Rose4ba0dea2014-03-06 08:59:55 +00007600 u16 flags)
Greg Rose4ba0dea2014-03-06 08:59:55 +00007601{
7602 struct i40e_netdev_priv *np = netdev_priv(dev);
7603 struct i40e_pf *pf = np->vsi->back;
7604 int err = 0;
7605
7606 if (!(pf->flags & I40E_FLAG_SRIOV_ENABLED))
7607 return -EOPNOTSUPP;
7608
Or Gerlitz65891fe2014-12-14 18:19:05 +02007609 if (vid) {
7610 pr_info("%s: vlans aren't supported yet for dev_uc|mc_add()\n", dev->name);
7611 return -EINVAL;
7612 }
7613
Greg Rose4ba0dea2014-03-06 08:59:55 +00007614 /* Hardware does not support aging addresses so if a
7615 * ndm_state is given only allow permanent addresses
7616 */
7617 if (ndm->ndm_state && !(ndm->ndm_state & NUD_PERMANENT)) {
7618 netdev_info(dev, "FDB only supports static addresses\n");
7619 return -EINVAL;
7620 }
7621
7622 if (is_unicast_ether_addr(addr) || is_link_local_ether_addr(addr))
7623 err = dev_uc_add_excl(dev, addr);
7624 else if (is_multicast_ether_addr(addr))
7625 err = dev_mc_add_excl(dev, addr);
7626 else
7627 err = -EINVAL;
7628
7629 /* Only return duplicate errors if NLM_F_EXCL is set */
7630 if (err == -EEXIST && !(flags & NLM_F_EXCL))
7631 err = 0;
7632
7633 return err;
7634}
7635
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007636static const struct net_device_ops i40e_netdev_ops = {
7637 .ndo_open = i40e_open,
7638 .ndo_stop = i40e_close,
7639 .ndo_start_xmit = i40e_lan_xmit_frame,
7640 .ndo_get_stats64 = i40e_get_netdev_stats_struct,
7641 .ndo_set_rx_mode = i40e_set_rx_mode,
7642 .ndo_validate_addr = eth_validate_addr,
7643 .ndo_set_mac_address = i40e_set_mac,
7644 .ndo_change_mtu = i40e_change_mtu,
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00007645 .ndo_do_ioctl = i40e_ioctl,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007646 .ndo_tx_timeout = i40e_tx_timeout,
7647 .ndo_vlan_rx_add_vid = i40e_vlan_rx_add_vid,
7648 .ndo_vlan_rx_kill_vid = i40e_vlan_rx_kill_vid,
7649#ifdef CONFIG_NET_POLL_CONTROLLER
7650 .ndo_poll_controller = i40e_netpoll,
7651#endif
7652 .ndo_setup_tc = i40e_setup_tc,
Vasu Dev38e00432014-08-01 13:27:03 -07007653#ifdef I40E_FCOE
7654 .ndo_fcoe_enable = i40e_fcoe_enable,
7655 .ndo_fcoe_disable = i40e_fcoe_disable,
7656#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007657 .ndo_set_features = i40e_set_features,
7658 .ndo_set_vf_mac = i40e_ndo_set_vf_mac,
7659 .ndo_set_vf_vlan = i40e_ndo_set_vf_port_vlan,
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04007660 .ndo_set_vf_rate = i40e_ndo_set_vf_bw,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007661 .ndo_get_vf_config = i40e_ndo_get_vf_config,
Mitch Williams588aefa2014-02-11 08:27:49 +00007662 .ndo_set_vf_link_state = i40e_ndo_set_vf_link_state,
Serey Konge6d90042014-07-12 07:28:14 +00007663 .ndo_set_vf_spoofchk = i40e_ndo_set_vf_spoofchk,
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007664#ifdef CONFIG_I40E_VXLAN
7665 .ndo_add_vxlan_port = i40e_add_vxlan_port,
7666 .ndo_del_vxlan_port = i40e_del_vxlan_port,
7667#endif
Neerav Parikh1f224ad2014-02-12 01:45:31 +00007668 .ndo_get_phys_port_id = i40e_get_phys_port_id,
Greg Rose4ba0dea2014-03-06 08:59:55 +00007669 .ndo_fdb_add = i40e_ndo_fdb_add,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007670};
7671
7672/**
7673 * i40e_config_netdev - Setup the netdev flags
7674 * @vsi: the VSI being configured
7675 *
7676 * Returns 0 on success, negative value on failure
7677 **/
7678static int i40e_config_netdev(struct i40e_vsi *vsi)
7679{
Greg Rose1a103702013-11-28 06:42:39 +00007680 u8 brdcast[ETH_ALEN] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007681 struct i40e_pf *pf = vsi->back;
7682 struct i40e_hw *hw = &pf->hw;
7683 struct i40e_netdev_priv *np;
7684 struct net_device *netdev;
7685 u8 mac_addr[ETH_ALEN];
7686 int etherdev_size;
7687
7688 etherdev_size = sizeof(struct i40e_netdev_priv);
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00007689 netdev = alloc_etherdev_mq(etherdev_size, vsi->alloc_queue_pairs);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007690 if (!netdev)
7691 return -ENOMEM;
7692
7693 vsi->netdev = netdev;
7694 np = netdev_priv(netdev);
7695 np->vsi = vsi;
7696
Or Gerlitzd70e9412014-03-18 10:36:45 +02007697 netdev->hw_enc_features |= NETIF_F_IP_CSUM |
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007698 NETIF_F_GSO_UDP_TUNNEL |
Or Gerlitzd70e9412014-03-18 10:36:45 +02007699 NETIF_F_TSO;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007700
7701 netdev->features = NETIF_F_SG |
7702 NETIF_F_IP_CSUM |
7703 NETIF_F_SCTP_CSUM |
7704 NETIF_F_HIGHDMA |
7705 NETIF_F_GSO_UDP_TUNNEL |
7706 NETIF_F_HW_VLAN_CTAG_TX |
7707 NETIF_F_HW_VLAN_CTAG_RX |
7708 NETIF_F_HW_VLAN_CTAG_FILTER |
7709 NETIF_F_IPV6_CSUM |
7710 NETIF_F_TSO |
Jesse Brandeburg059dab62014-04-01 09:07:20 +00007711 NETIF_F_TSO_ECN |
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007712 NETIF_F_TSO6 |
7713 NETIF_F_RXCSUM |
7714 NETIF_F_RXHASH |
7715 0;
7716
Anjali Singhai Jain2e86a0b2014-04-01 07:11:53 +00007717 if (!(pf->flags & I40E_FLAG_MFP_ENABLED))
7718 netdev->features |= NETIF_F_NTUPLE;
7719
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007720 /* copy netdev features into list of user selectable features */
7721 netdev->hw_features |= netdev->features;
7722
7723 if (vsi->type == I40E_VSI_MAIN) {
7724 SET_NETDEV_DEV(netdev, &pf->pdev->dev);
Greg Rose9a173902014-05-22 06:32:02 +00007725 ether_addr_copy(mac_addr, hw->mac.perm_addr);
Shannon Nelson30650cc2014-07-29 04:01:50 +00007726 /* The following steps are necessary to prevent reception
7727 * of tagged packets - some older NVM configurations load a
7728 * default a MAC-VLAN filter that accepts any tagged packet
7729 * which must be replaced by a normal filter.
Greg Rose8c27d422014-05-22 06:31:56 +00007730 */
Shannon Nelson30650cc2014-07-29 04:01:50 +00007731 if (!i40e_rm_default_mac_filter(vsi, mac_addr))
7732 i40e_add_filter(vsi, mac_addr,
7733 I40E_VLAN_ANY, false, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007734 } else {
7735 /* relate the VSI_VMDQ name to the VSI_MAIN name */
7736 snprintf(netdev->name, IFNAMSIZ, "%sv%%d",
7737 pf->vsi[pf->lan_vsi]->netdev->name);
7738 random_ether_addr(mac_addr);
7739 i40e_add_filter(vsi, mac_addr, I40E_VLAN_ANY, false, false);
7740 }
Greg Rose1a103702013-11-28 06:42:39 +00007741 i40e_add_filter(vsi, brdcast, I40E_VLAN_ANY, false, false);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007742
Greg Rose9a173902014-05-22 06:32:02 +00007743 ether_addr_copy(netdev->dev_addr, mac_addr);
7744 ether_addr_copy(netdev->perm_addr, mac_addr);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007745 /* vlan gets same features (except vlan offload)
7746 * after any tweaks for specific VSI types
7747 */
7748 netdev->vlan_features = netdev->features & ~(NETIF_F_HW_VLAN_CTAG_TX |
7749 NETIF_F_HW_VLAN_CTAG_RX |
7750 NETIF_F_HW_VLAN_CTAG_FILTER);
7751 netdev->priv_flags |= IFF_UNICAST_FLT;
7752 netdev->priv_flags |= IFF_SUPP_NOFCS;
7753 /* Setup netdev TC information */
7754 i40e_vsi_config_netdev_tc(vsi, vsi->tc_config.enabled_tc);
7755
7756 netdev->netdev_ops = &i40e_netdev_ops;
7757 netdev->watchdog_timeo = 5 * HZ;
7758 i40e_set_ethtool_ops(netdev);
Vasu Dev38e00432014-08-01 13:27:03 -07007759#ifdef I40E_FCOE
7760 i40e_fcoe_config_netdev(netdev, vsi);
7761#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007762
7763 return 0;
7764}
7765
7766/**
7767 * i40e_vsi_delete - Delete a VSI from the switch
7768 * @vsi: the VSI being removed
7769 *
7770 * Returns 0 on success, negative value on failure
7771 **/
7772static void i40e_vsi_delete(struct i40e_vsi *vsi)
7773{
7774 /* remove default VSI is not allowed */
7775 if (vsi == vsi->back->vsi[vsi->back->lan_vsi])
7776 return;
7777
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007778 i40e_aq_delete_element(&vsi->back->hw, vsi->seid, NULL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007779}
7780
7781/**
7782 * i40e_add_vsi - Add a VSI to the switch
7783 * @vsi: the VSI being configured
7784 *
7785 * This initializes a VSI context depending on the VSI type to be added and
7786 * passes it down to the add_vsi aq command.
7787 **/
7788static int i40e_add_vsi(struct i40e_vsi *vsi)
7789{
7790 int ret = -ENODEV;
7791 struct i40e_mac_filter *f, *ftmp;
7792 struct i40e_pf *pf = vsi->back;
7793 struct i40e_hw *hw = &pf->hw;
7794 struct i40e_vsi_context ctxt;
7795 u8 enabled_tc = 0x1; /* TC0 enabled */
7796 int f_count = 0;
7797
7798 memset(&ctxt, 0, sizeof(ctxt));
7799 switch (vsi->type) {
7800 case I40E_VSI_MAIN:
7801 /* The PF's main VSI is already setup as part of the
7802 * device initialization, so we'll not bother with
7803 * the add_vsi call, but we will retrieve the current
7804 * VSI context.
7805 */
7806 ctxt.seid = pf->main_vsi_seid;
7807 ctxt.pf_num = pf->hw.pf_id;
7808 ctxt.vf_num = 0;
7809 ret = i40e_aq_get_vsi_params(&pf->hw, &ctxt, NULL);
7810 ctxt.flags = I40E_AQ_VSI_TYPE_PF;
7811 if (ret) {
7812 dev_info(&pf->pdev->dev,
7813 "couldn't get pf vsi config, err %d, aq_err %d\n",
7814 ret, pf->hw.aq.asq_last_status);
7815 return -ENOENT;
7816 }
7817 memcpy(&vsi->info, &ctxt.info, sizeof(ctxt.info));
7818 vsi->info.valid_sections = 0;
7819
7820 vsi->seid = ctxt.seid;
7821 vsi->id = ctxt.vsi_number;
7822
7823 enabled_tc = i40e_pf_get_tc_map(pf);
7824
7825 /* MFP mode setup queue map and update VSI */
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00007826 if ((pf->flags & I40E_FLAG_MFP_ENABLED) &&
7827 !(pf->hw.func_caps.iscsi)) { /* NIC type PF */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007828 memset(&ctxt, 0, sizeof(ctxt));
7829 ctxt.seid = pf->main_vsi_seid;
7830 ctxt.pf_num = pf->hw.pf_id;
7831 ctxt.vf_num = 0;
7832 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, false);
7833 ret = i40e_aq_update_vsi_params(hw, &ctxt, NULL);
7834 if (ret) {
7835 dev_info(&pf->pdev->dev,
7836 "update vsi failed, aq_err=%d\n",
7837 pf->hw.aq.asq_last_status);
7838 ret = -ENOENT;
7839 goto err;
7840 }
7841 /* update the local VSI info queue map */
7842 i40e_vsi_update_queue_map(vsi, &ctxt);
7843 vsi->info.valid_sections = 0;
7844 } else {
7845 /* Default/Main VSI is only enabled for TC0
7846 * reconfigure it to enable all TCs that are
7847 * available on the port in SFP mode.
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00007848 * For MFP case the iSCSI PF would use this
7849 * flow to enable LAN+iSCSI TC.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007850 */
7851 ret = i40e_vsi_config_tc(vsi, enabled_tc);
7852 if (ret) {
7853 dev_info(&pf->pdev->dev,
7854 "failed to configure TCs for main VSI tc_map 0x%08x, err %d, aq_err %d\n",
7855 enabled_tc, ret,
7856 pf->hw.aq.asq_last_status);
7857 ret = -ENOENT;
7858 }
7859 }
7860 break;
7861
7862 case I40E_VSI_FDIR:
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08007863 ctxt.pf_num = hw->pf_id;
7864 ctxt.vf_num = 0;
7865 ctxt.uplink_seid = vsi->uplink_seid;
7866 ctxt.connection_type = 0x1; /* regular data port */
7867 ctxt.flags = I40E_AQ_VSI_TYPE_PF;
Anjali Singhai Jain79c21a82014-11-13 03:06:14 +00007868 ctxt.info.valid_sections |=
7869 cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
7870 ctxt.info.switch_id =
7871 cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007872 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007873 break;
7874
7875 case I40E_VSI_VMDQ2:
7876 ctxt.pf_num = hw->pf_id;
7877 ctxt.vf_num = 0;
7878 ctxt.uplink_seid = vsi->uplink_seid;
7879 ctxt.connection_type = 0x1; /* regular data port */
7880 ctxt.flags = I40E_AQ_VSI_TYPE_VMDQ2;
7881
7882 ctxt.info.valid_sections |= cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
7883
7884 /* This VSI is connected to VEB so the switch_id
7885 * should be set to zero by default.
7886 */
7887 ctxt.info.switch_id = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007888 ctxt.info.switch_id |= cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
7889
7890 /* Setup the VSI tx/rx queue map for TC0 only for now */
7891 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, true);
7892 break;
7893
7894 case I40E_VSI_SRIOV:
7895 ctxt.pf_num = hw->pf_id;
7896 ctxt.vf_num = vsi->vf_id + hw->func_caps.vf_base_id;
7897 ctxt.uplink_seid = vsi->uplink_seid;
7898 ctxt.connection_type = 0x1; /* regular data port */
7899 ctxt.flags = I40E_AQ_VSI_TYPE_VF;
7900
7901 ctxt.info.valid_sections |= cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
7902
7903 /* This VSI is connected to VEB so the switch_id
7904 * should be set to zero by default.
7905 */
7906 ctxt.info.switch_id = cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
7907
7908 ctxt.info.valid_sections |= cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
7909 ctxt.info.port_vlan_flags |= I40E_AQ_VSI_PVLAN_MODE_ALL;
Mitch Williamsc674d122014-05-20 08:01:40 +00007910 if (pf->vf[vsi->vf_id].spoofchk) {
7911 ctxt.info.valid_sections |=
7912 cpu_to_le16(I40E_AQ_VSI_PROP_SECURITY_VALID);
7913 ctxt.info.sec_flags |=
7914 (I40E_AQ_VSI_SEC_FLAG_ENABLE_VLAN_CHK |
7915 I40E_AQ_VSI_SEC_FLAG_ENABLE_MAC_CHK);
7916 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007917 /* Setup the VSI tx/rx queue map for TC0 only for now */
7918 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, true);
7919 break;
7920
Vasu Dev38e00432014-08-01 13:27:03 -07007921#ifdef I40E_FCOE
7922 case I40E_VSI_FCOE:
7923 ret = i40e_fcoe_vsi_init(vsi, &ctxt);
7924 if (ret) {
7925 dev_info(&pf->pdev->dev, "failed to initialize FCoE VSI\n");
7926 return ret;
7927 }
7928 break;
7929
7930#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007931 default:
7932 return -ENODEV;
7933 }
7934
7935 if (vsi->type != I40E_VSI_MAIN) {
7936 ret = i40e_aq_add_vsi(hw, &ctxt, NULL);
7937 if (ret) {
7938 dev_info(&vsi->back->pdev->dev,
7939 "add vsi failed, aq_err=%d\n",
7940 vsi->back->hw.aq.asq_last_status);
7941 ret = -ENOENT;
7942 goto err;
7943 }
7944 memcpy(&vsi->info, &ctxt.info, sizeof(ctxt.info));
7945 vsi->info.valid_sections = 0;
7946 vsi->seid = ctxt.seid;
7947 vsi->id = ctxt.vsi_number;
7948 }
7949
7950 /* If macvlan filters already exist, force them to get loaded */
7951 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
7952 f->changed = true;
7953 f_count++;
Shannon Nelson6252c7e2014-06-04 01:23:23 +00007954
7955 if (f->is_laa && vsi->type == I40E_VSI_MAIN) {
Shannon Nelson30650cc2014-07-29 04:01:50 +00007956 struct i40e_aqc_remove_macvlan_element_data element;
7957
7958 memset(&element, 0, sizeof(element));
7959 ether_addr_copy(element.mac_addr, f->macaddr);
7960 element.flags = I40E_AQC_MACVLAN_DEL_PERFECT_MATCH;
7961 ret = i40e_aq_remove_macvlan(hw, vsi->seid,
7962 &element, 1, NULL);
7963 if (ret) {
7964 /* some older FW has a different default */
7965 element.flags |=
7966 I40E_AQC_MACVLAN_DEL_IGNORE_VLAN;
7967 i40e_aq_remove_macvlan(hw, vsi->seid,
7968 &element, 1, NULL);
7969 }
7970
7971 i40e_aq_mac_address_write(hw,
Shannon Nelson6252c7e2014-06-04 01:23:23 +00007972 I40E_AQC_WRITE_TYPE_LAA_WOL,
7973 f->macaddr, NULL);
7974 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007975 }
7976 if (f_count) {
7977 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
7978 pf->flags |= I40E_FLAG_FILTER_SYNC;
7979 }
7980
7981 /* Update VSI BW information */
7982 ret = i40e_vsi_get_bw_info(vsi);
7983 if (ret) {
7984 dev_info(&pf->pdev->dev,
7985 "couldn't get vsi bw info, err %d, aq_err %d\n",
7986 ret, pf->hw.aq.asq_last_status);
7987 /* VSI is already added so not tearing that up */
7988 ret = 0;
7989 }
7990
7991err:
7992 return ret;
7993}
7994
7995/**
7996 * i40e_vsi_release - Delete a VSI and free its resources
7997 * @vsi: the VSI being removed
7998 *
7999 * Returns 0 on success or < 0 on error
8000 **/
8001int i40e_vsi_release(struct i40e_vsi *vsi)
8002{
8003 struct i40e_mac_filter *f, *ftmp;
8004 struct i40e_veb *veb = NULL;
8005 struct i40e_pf *pf;
8006 u16 uplink_seid;
8007 int i, n;
8008
8009 pf = vsi->back;
8010
8011 /* release of a VEB-owner or last VSI is not allowed */
8012 if (vsi->flags & I40E_VSI_FLAG_VEB_OWNER) {
8013 dev_info(&pf->pdev->dev, "VSI %d has existing VEB %d\n",
8014 vsi->seid, vsi->uplink_seid);
8015 return -ENODEV;
8016 }
8017 if (vsi == pf->vsi[pf->lan_vsi] &&
8018 !test_bit(__I40E_DOWN, &pf->state)) {
8019 dev_info(&pf->pdev->dev, "Can't remove PF VSI\n");
8020 return -ENODEV;
8021 }
8022
8023 uplink_seid = vsi->uplink_seid;
8024 if (vsi->type != I40E_VSI_SRIOV) {
8025 if (vsi->netdev_registered) {
8026 vsi->netdev_registered = false;
8027 if (vsi->netdev) {
8028 /* results in a call to i40e_close() */
8029 unregister_netdev(vsi->netdev);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008030 }
8031 } else {
Shannon Nelson90ef8d42014-03-14 07:32:26 +00008032 i40e_vsi_close(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008033 }
8034 i40e_vsi_disable_irq(vsi);
8035 }
8036
8037 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list)
8038 i40e_del_filter(vsi, f->macaddr, f->vlan,
8039 f->is_vf, f->is_netdev);
8040 i40e_sync_vsi_filters(vsi);
8041
8042 i40e_vsi_delete(vsi);
8043 i40e_vsi_free_q_vectors(vsi);
Shannon Nelsona4866592014-02-11 08:24:07 +00008044 if (vsi->netdev) {
8045 free_netdev(vsi->netdev);
8046 vsi->netdev = NULL;
8047 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008048 i40e_vsi_clear_rings(vsi);
8049 i40e_vsi_clear(vsi);
8050
8051 /* If this was the last thing on the VEB, except for the
8052 * controlling VSI, remove the VEB, which puts the controlling
8053 * VSI onto the next level down in the switch.
8054 *
8055 * Well, okay, there's one more exception here: don't remove
8056 * the orphan VEBs yet. We'll wait for an explicit remove request
8057 * from up the network stack.
8058 */
Mitch Williams505682c2014-05-20 08:01:37 +00008059 for (n = 0, i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008060 if (pf->vsi[i] &&
8061 pf->vsi[i]->uplink_seid == uplink_seid &&
8062 (pf->vsi[i]->flags & I40E_VSI_FLAG_VEB_OWNER) == 0) {
8063 n++; /* count the VSIs */
8064 }
8065 }
8066 for (i = 0; i < I40E_MAX_VEB; i++) {
8067 if (!pf->veb[i])
8068 continue;
8069 if (pf->veb[i]->uplink_seid == uplink_seid)
8070 n++; /* count the VEBs */
8071 if (pf->veb[i]->seid == uplink_seid)
8072 veb = pf->veb[i];
8073 }
8074 if (n == 0 && veb && veb->uplink_seid != 0)
8075 i40e_veb_release(veb);
8076
8077 return 0;
8078}
8079
8080/**
8081 * i40e_vsi_setup_vectors - Set up the q_vectors for the given VSI
8082 * @vsi: ptr to the VSI
8083 *
8084 * This should only be called after i40e_vsi_mem_alloc() which allocates the
8085 * corresponding SW VSI structure and initializes num_queue_pairs for the
8086 * newly allocated VSI.
8087 *
8088 * Returns 0 on success or negative on failure
8089 **/
8090static int i40e_vsi_setup_vectors(struct i40e_vsi *vsi)
8091{
8092 int ret = -ENOENT;
8093 struct i40e_pf *pf = vsi->back;
8094
Alexander Duyck493fb302013-09-28 07:01:44 +00008095 if (vsi->q_vectors[0]) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008096 dev_info(&pf->pdev->dev, "VSI %d has existing q_vectors\n",
8097 vsi->seid);
8098 return -EEXIST;
8099 }
8100
8101 if (vsi->base_vector) {
Jesse Brandeburgf29eaa32014-02-11 08:24:12 +00008102 dev_info(&pf->pdev->dev, "VSI %d has non-zero base vector %d\n",
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008103 vsi->seid, vsi->base_vector);
8104 return -EEXIST;
8105 }
8106
Greg Rose90e04072014-03-06 08:59:57 +00008107 ret = i40e_vsi_alloc_q_vectors(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008108 if (ret) {
8109 dev_info(&pf->pdev->dev,
8110 "failed to allocate %d q_vector for VSI %d, ret=%d\n",
8111 vsi->num_q_vectors, vsi->seid, ret);
8112 vsi->num_q_vectors = 0;
8113 goto vector_setup_out;
8114 }
8115
Shannon Nelson958a3e32013-09-28 07:13:28 +00008116 if (vsi->num_q_vectors)
8117 vsi->base_vector = i40e_get_lump(pf, pf->irq_pile,
8118 vsi->num_q_vectors, vsi->idx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008119 if (vsi->base_vector < 0) {
8120 dev_info(&pf->pdev->dev,
Shannon Nelson049a2be2014-10-17 03:14:50 +00008121 "failed to get tracking for %d vectors for VSI %d, err=%d\n",
8122 vsi->num_q_vectors, vsi->seid, vsi->base_vector);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008123 i40e_vsi_free_q_vectors(vsi);
8124 ret = -ENOENT;
8125 goto vector_setup_out;
8126 }
8127
8128vector_setup_out:
8129 return ret;
8130}
8131
8132/**
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00008133 * i40e_vsi_reinit_setup - return and reallocate resources for a VSI
8134 * @vsi: pointer to the vsi.
8135 *
8136 * This re-allocates a vsi's queue resources.
8137 *
8138 * Returns pointer to the successfully allocated and configured VSI sw struct
8139 * on success, otherwise returns NULL on failure.
8140 **/
8141static struct i40e_vsi *i40e_vsi_reinit_setup(struct i40e_vsi *vsi)
8142{
8143 struct i40e_pf *pf = vsi->back;
8144 u8 enabled_tc;
8145 int ret;
8146
8147 i40e_put_lump(pf->qp_pile, vsi->base_queue, vsi->idx);
8148 i40e_vsi_clear_rings(vsi);
8149
8150 i40e_vsi_free_arrays(vsi, false);
8151 i40e_set_num_rings_in_vsi(vsi);
8152 ret = i40e_vsi_alloc_arrays(vsi, false);
8153 if (ret)
8154 goto err_vsi;
8155
8156 ret = i40e_get_lump(pf, pf->qp_pile, vsi->alloc_queue_pairs, vsi->idx);
8157 if (ret < 0) {
Shannon Nelson049a2be2014-10-17 03:14:50 +00008158 dev_info(&pf->pdev->dev,
8159 "failed to get tracking for %d queues for VSI %d err=%d\n",
8160 vsi->alloc_queue_pairs, vsi->seid, ret);
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00008161 goto err_vsi;
8162 }
8163 vsi->base_queue = ret;
8164
8165 /* Update the FW view of the VSI. Force a reset of TC and queue
8166 * layout configurations.
8167 */
8168 enabled_tc = pf->vsi[pf->lan_vsi]->tc_config.enabled_tc;
8169 pf->vsi[pf->lan_vsi]->tc_config.enabled_tc = 0;
8170 pf->vsi[pf->lan_vsi]->seid = pf->main_vsi_seid;
8171 i40e_vsi_config_tc(pf->vsi[pf->lan_vsi], enabled_tc);
8172
8173 /* assign it some queues */
8174 ret = i40e_alloc_rings(vsi);
8175 if (ret)
8176 goto err_rings;
8177
8178 /* map all of the rings to the q_vectors */
8179 i40e_vsi_map_rings_to_vectors(vsi);
8180 return vsi;
8181
8182err_rings:
8183 i40e_vsi_free_q_vectors(vsi);
8184 if (vsi->netdev_registered) {
8185 vsi->netdev_registered = false;
8186 unregister_netdev(vsi->netdev);
8187 free_netdev(vsi->netdev);
8188 vsi->netdev = NULL;
8189 }
8190 i40e_aq_delete_element(&pf->hw, vsi->seid, NULL);
8191err_vsi:
8192 i40e_vsi_clear(vsi);
8193 return NULL;
8194}
8195
8196/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008197 * i40e_vsi_setup - Set up a VSI by a given type
8198 * @pf: board private structure
8199 * @type: VSI type
8200 * @uplink_seid: the switch element to link to
8201 * @param1: usage depends upon VSI type. For VF types, indicates VF id
8202 *
8203 * This allocates the sw VSI structure and its queue resources, then add a VSI
8204 * to the identified VEB.
8205 *
8206 * Returns pointer to the successfully allocated and configure VSI sw struct on
8207 * success, otherwise returns NULL on failure.
8208 **/
8209struct i40e_vsi *i40e_vsi_setup(struct i40e_pf *pf, u8 type,
8210 u16 uplink_seid, u32 param1)
8211{
8212 struct i40e_vsi *vsi = NULL;
8213 struct i40e_veb *veb = NULL;
8214 int ret, i;
8215 int v_idx;
8216
8217 /* The requested uplink_seid must be either
8218 * - the PF's port seid
8219 * no VEB is needed because this is the PF
8220 * or this is a Flow Director special case VSI
8221 * - seid of an existing VEB
8222 * - seid of a VSI that owns an existing VEB
8223 * - seid of a VSI that doesn't own a VEB
8224 * a new VEB is created and the VSI becomes the owner
8225 * - seid of the PF VSI, which is what creates the first VEB
8226 * this is a special case of the previous
8227 *
8228 * Find which uplink_seid we were given and create a new VEB if needed
8229 */
8230 for (i = 0; i < I40E_MAX_VEB; i++) {
8231 if (pf->veb[i] && pf->veb[i]->seid == uplink_seid) {
8232 veb = pf->veb[i];
8233 break;
8234 }
8235 }
8236
8237 if (!veb && uplink_seid != pf->mac_seid) {
8238
Mitch Williams505682c2014-05-20 08:01:37 +00008239 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008240 if (pf->vsi[i] && pf->vsi[i]->seid == uplink_seid) {
8241 vsi = pf->vsi[i];
8242 break;
8243 }
8244 }
8245 if (!vsi) {
8246 dev_info(&pf->pdev->dev, "no such uplink_seid %d\n",
8247 uplink_seid);
8248 return NULL;
8249 }
8250
8251 if (vsi->uplink_seid == pf->mac_seid)
8252 veb = i40e_veb_setup(pf, 0, pf->mac_seid, vsi->seid,
8253 vsi->tc_config.enabled_tc);
8254 else if ((vsi->flags & I40E_VSI_FLAG_VEB_OWNER) == 0)
8255 veb = i40e_veb_setup(pf, 0, vsi->uplink_seid, vsi->seid,
8256 vsi->tc_config.enabled_tc);
Anjali Singhai Jain79c21a82014-11-13 03:06:14 +00008257 if (veb) {
8258 if (vsi->seid != pf->vsi[pf->lan_vsi]->seid) {
8259 dev_info(&vsi->back->pdev->dev,
8260 "%s: New VSI creation error, uplink seid of LAN VSI expected.\n",
8261 __func__);
8262 return NULL;
8263 }
8264 i40e_enable_pf_switch_lb(pf);
8265 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008266 for (i = 0; i < I40E_MAX_VEB && !veb; i++) {
8267 if (pf->veb[i] && pf->veb[i]->seid == vsi->uplink_seid)
8268 veb = pf->veb[i];
8269 }
8270 if (!veb) {
8271 dev_info(&pf->pdev->dev, "couldn't add VEB\n");
8272 return NULL;
8273 }
8274
8275 vsi->flags |= I40E_VSI_FLAG_VEB_OWNER;
8276 uplink_seid = veb->seid;
8277 }
8278
8279 /* get vsi sw struct */
8280 v_idx = i40e_vsi_mem_alloc(pf, type);
8281 if (v_idx < 0)
8282 goto err_alloc;
8283 vsi = pf->vsi[v_idx];
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008284 if (!vsi)
8285 goto err_alloc;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008286 vsi->type = type;
8287 vsi->veb_idx = (veb ? veb->idx : I40E_NO_VEB);
8288
8289 if (type == I40E_VSI_MAIN)
8290 pf->lan_vsi = v_idx;
8291 else if (type == I40E_VSI_SRIOV)
8292 vsi->vf_id = param1;
8293 /* assign it some queues */
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008294 ret = i40e_get_lump(pf, pf->qp_pile, vsi->alloc_queue_pairs,
8295 vsi->idx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008296 if (ret < 0) {
Shannon Nelson049a2be2014-10-17 03:14:50 +00008297 dev_info(&pf->pdev->dev,
8298 "failed to get tracking for %d queues for VSI %d err=%d\n",
8299 vsi->alloc_queue_pairs, vsi->seid, ret);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008300 goto err_vsi;
8301 }
8302 vsi->base_queue = ret;
8303
8304 /* get a VSI from the hardware */
8305 vsi->uplink_seid = uplink_seid;
8306 ret = i40e_add_vsi(vsi);
8307 if (ret)
8308 goto err_vsi;
8309
8310 switch (vsi->type) {
8311 /* setup the netdev if needed */
8312 case I40E_VSI_MAIN:
8313 case I40E_VSI_VMDQ2:
Vasu Dev38e00432014-08-01 13:27:03 -07008314 case I40E_VSI_FCOE:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008315 ret = i40e_config_netdev(vsi);
8316 if (ret)
8317 goto err_netdev;
8318 ret = register_netdev(vsi->netdev);
8319 if (ret)
8320 goto err_netdev;
8321 vsi->netdev_registered = true;
8322 netif_carrier_off(vsi->netdev);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08008323#ifdef CONFIG_I40E_DCB
8324 /* Setup DCB netlink interface */
8325 i40e_dcbnl_setup(vsi);
8326#endif /* CONFIG_I40E_DCB */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008327 /* fall through */
8328
8329 case I40E_VSI_FDIR:
8330 /* set up vectors and rings if needed */
8331 ret = i40e_vsi_setup_vectors(vsi);
8332 if (ret)
8333 goto err_msix;
8334
8335 ret = i40e_alloc_rings(vsi);
8336 if (ret)
8337 goto err_rings;
8338
8339 /* map all of the rings to the q_vectors */
8340 i40e_vsi_map_rings_to_vectors(vsi);
8341
8342 i40e_vsi_reset_stats(vsi);
8343 break;
8344
8345 default:
8346 /* no netdev or rings for the other VSI types */
8347 break;
8348 }
8349
8350 return vsi;
8351
8352err_rings:
8353 i40e_vsi_free_q_vectors(vsi);
8354err_msix:
8355 if (vsi->netdev_registered) {
8356 vsi->netdev_registered = false;
8357 unregister_netdev(vsi->netdev);
8358 free_netdev(vsi->netdev);
8359 vsi->netdev = NULL;
8360 }
8361err_netdev:
8362 i40e_aq_delete_element(&pf->hw, vsi->seid, NULL);
8363err_vsi:
8364 i40e_vsi_clear(vsi);
8365err_alloc:
8366 return NULL;
8367}
8368
8369/**
8370 * i40e_veb_get_bw_info - Query VEB BW information
8371 * @veb: the veb to query
8372 *
8373 * Query the Tx scheduler BW configuration data for given VEB
8374 **/
8375static int i40e_veb_get_bw_info(struct i40e_veb *veb)
8376{
8377 struct i40e_aqc_query_switching_comp_ets_config_resp ets_data;
8378 struct i40e_aqc_query_switching_comp_bw_config_resp bw_data;
8379 struct i40e_pf *pf = veb->pf;
8380 struct i40e_hw *hw = &pf->hw;
8381 u32 tc_bw_max;
8382 int ret = 0;
8383 int i;
8384
8385 ret = i40e_aq_query_switch_comp_bw_config(hw, veb->seid,
8386 &bw_data, NULL);
8387 if (ret) {
8388 dev_info(&pf->pdev->dev,
8389 "query veb bw config failed, aq_err=%d\n",
8390 hw->aq.asq_last_status);
8391 goto out;
8392 }
8393
8394 ret = i40e_aq_query_switch_comp_ets_config(hw, veb->seid,
8395 &ets_data, NULL);
8396 if (ret) {
8397 dev_info(&pf->pdev->dev,
8398 "query veb bw ets config failed, aq_err=%d\n",
8399 hw->aq.asq_last_status);
8400 goto out;
8401 }
8402
8403 veb->bw_limit = le16_to_cpu(ets_data.port_bw_limit);
8404 veb->bw_max_quanta = ets_data.tc_bw_max;
8405 veb->is_abs_credits = bw_data.absolute_credits_enable;
Neerav Parikh23cd1f02014-11-12 00:18:41 +00008406 veb->enabled_tc = ets_data.tc_valid_bits;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008407 tc_bw_max = le16_to_cpu(bw_data.tc_bw_max[0]) |
8408 (le16_to_cpu(bw_data.tc_bw_max[1]) << 16);
8409 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
8410 veb->bw_tc_share_credits[i] = bw_data.tc_bw_share_credits[i];
8411 veb->bw_tc_limit_credits[i] =
8412 le16_to_cpu(bw_data.tc_bw_limits[i]);
8413 veb->bw_tc_max_quanta[i] = ((tc_bw_max >> (i*4)) & 0x7);
8414 }
8415
8416out:
8417 return ret;
8418}
8419
8420/**
8421 * i40e_veb_mem_alloc - Allocates the next available struct veb in the PF
8422 * @pf: board private structure
8423 *
8424 * On error: returns error code (negative)
8425 * On success: returns vsi index in PF (positive)
8426 **/
8427static int i40e_veb_mem_alloc(struct i40e_pf *pf)
8428{
8429 int ret = -ENOENT;
8430 struct i40e_veb *veb;
8431 int i;
8432
8433 /* Need to protect the allocation of switch elements at the PF level */
8434 mutex_lock(&pf->switch_mutex);
8435
8436 /* VEB list may be fragmented if VEB creation/destruction has
8437 * been happening. We can afford to do a quick scan to look
8438 * for any free slots in the list.
8439 *
8440 * find next empty veb slot, looping back around if necessary
8441 */
8442 i = 0;
8443 while ((i < I40E_MAX_VEB) && (pf->veb[i] != NULL))
8444 i++;
8445 if (i >= I40E_MAX_VEB) {
8446 ret = -ENOMEM;
8447 goto err_alloc_veb; /* out of VEB slots! */
8448 }
8449
8450 veb = kzalloc(sizeof(*veb), GFP_KERNEL);
8451 if (!veb) {
8452 ret = -ENOMEM;
8453 goto err_alloc_veb;
8454 }
8455 veb->pf = pf;
8456 veb->idx = i;
8457 veb->enabled_tc = 1;
8458
8459 pf->veb[i] = veb;
8460 ret = i;
8461err_alloc_veb:
8462 mutex_unlock(&pf->switch_mutex);
8463 return ret;
8464}
8465
8466/**
8467 * i40e_switch_branch_release - Delete a branch of the switch tree
8468 * @branch: where to start deleting
8469 *
8470 * This uses recursion to find the tips of the branch to be
8471 * removed, deleting until we get back to and can delete this VEB.
8472 **/
8473static void i40e_switch_branch_release(struct i40e_veb *branch)
8474{
8475 struct i40e_pf *pf = branch->pf;
8476 u16 branch_seid = branch->seid;
8477 u16 veb_idx = branch->idx;
8478 int i;
8479
8480 /* release any VEBs on this VEB - RECURSION */
8481 for (i = 0; i < I40E_MAX_VEB; i++) {
8482 if (!pf->veb[i])
8483 continue;
8484 if (pf->veb[i]->uplink_seid == branch->seid)
8485 i40e_switch_branch_release(pf->veb[i]);
8486 }
8487
8488 /* Release the VSIs on this VEB, but not the owner VSI.
8489 *
8490 * NOTE: Removing the last VSI on a VEB has the SIDE EFFECT of removing
8491 * the VEB itself, so don't use (*branch) after this loop.
8492 */
Mitch Williams505682c2014-05-20 08:01:37 +00008493 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008494 if (!pf->vsi[i])
8495 continue;
8496 if (pf->vsi[i]->uplink_seid == branch_seid &&
8497 (pf->vsi[i]->flags & I40E_VSI_FLAG_VEB_OWNER) == 0) {
8498 i40e_vsi_release(pf->vsi[i]);
8499 }
8500 }
8501
8502 /* There's one corner case where the VEB might not have been
8503 * removed, so double check it here and remove it if needed.
8504 * This case happens if the veb was created from the debugfs
8505 * commands and no VSIs were added to it.
8506 */
8507 if (pf->veb[veb_idx])
8508 i40e_veb_release(pf->veb[veb_idx]);
8509}
8510
8511/**
8512 * i40e_veb_clear - remove veb struct
8513 * @veb: the veb to remove
8514 **/
8515static void i40e_veb_clear(struct i40e_veb *veb)
8516{
8517 if (!veb)
8518 return;
8519
8520 if (veb->pf) {
8521 struct i40e_pf *pf = veb->pf;
8522
8523 mutex_lock(&pf->switch_mutex);
8524 if (pf->veb[veb->idx] == veb)
8525 pf->veb[veb->idx] = NULL;
8526 mutex_unlock(&pf->switch_mutex);
8527 }
8528
8529 kfree(veb);
8530}
8531
8532/**
8533 * i40e_veb_release - Delete a VEB and free its resources
8534 * @veb: the VEB being removed
8535 **/
8536void i40e_veb_release(struct i40e_veb *veb)
8537{
8538 struct i40e_vsi *vsi = NULL;
8539 struct i40e_pf *pf;
8540 int i, n = 0;
8541
8542 pf = veb->pf;
8543
8544 /* find the remaining VSI and check for extras */
Mitch Williams505682c2014-05-20 08:01:37 +00008545 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008546 if (pf->vsi[i] && pf->vsi[i]->uplink_seid == veb->seid) {
8547 n++;
8548 vsi = pf->vsi[i];
8549 }
8550 }
8551 if (n != 1) {
8552 dev_info(&pf->pdev->dev,
8553 "can't remove VEB %d with %d VSIs left\n",
8554 veb->seid, n);
8555 return;
8556 }
8557
8558 /* move the remaining VSI to uplink veb */
8559 vsi->flags &= ~I40E_VSI_FLAG_VEB_OWNER;
8560 if (veb->uplink_seid) {
8561 vsi->uplink_seid = veb->uplink_seid;
8562 if (veb->uplink_seid == pf->mac_seid)
8563 vsi->veb_idx = I40E_NO_VEB;
8564 else
8565 vsi->veb_idx = veb->veb_idx;
8566 } else {
8567 /* floating VEB */
8568 vsi->uplink_seid = pf->vsi[pf->lan_vsi]->uplink_seid;
8569 vsi->veb_idx = pf->vsi[pf->lan_vsi]->veb_idx;
8570 }
8571
8572 i40e_aq_delete_element(&pf->hw, veb->seid, NULL);
8573 i40e_veb_clear(veb);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008574}
8575
8576/**
8577 * i40e_add_veb - create the VEB in the switch
8578 * @veb: the VEB to be instantiated
8579 * @vsi: the controlling VSI
8580 **/
8581static int i40e_add_veb(struct i40e_veb *veb, struct i40e_vsi *vsi)
8582{
Greg Rose56747262013-11-28 06:39:37 +00008583 bool is_default = false;
Kevin Scotte1c51b952013-11-20 10:02:51 +00008584 bool is_cloud = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008585 int ret;
8586
8587 /* get a VEB from the hardware */
8588 ret = i40e_aq_add_veb(&veb->pf->hw, veb->uplink_seid, vsi->seid,
Kevin Scotte1c51b952013-11-20 10:02:51 +00008589 veb->enabled_tc, is_default,
8590 is_cloud, &veb->seid, NULL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008591 if (ret) {
8592 dev_info(&veb->pf->pdev->dev,
8593 "couldn't add VEB, err %d, aq_err %d\n",
8594 ret, veb->pf->hw.aq.asq_last_status);
8595 return -EPERM;
8596 }
8597
8598 /* get statistics counter */
8599 ret = i40e_aq_get_veb_parameters(&veb->pf->hw, veb->seid, NULL, NULL,
8600 &veb->stats_idx, NULL, NULL, NULL);
8601 if (ret) {
8602 dev_info(&veb->pf->pdev->dev,
8603 "couldn't get VEB statistics idx, err %d, aq_err %d\n",
8604 ret, veb->pf->hw.aq.asq_last_status);
8605 return -EPERM;
8606 }
8607 ret = i40e_veb_get_bw_info(veb);
8608 if (ret) {
8609 dev_info(&veb->pf->pdev->dev,
8610 "couldn't get VEB bw info, err %d, aq_err %d\n",
8611 ret, veb->pf->hw.aq.asq_last_status);
8612 i40e_aq_delete_element(&veb->pf->hw, veb->seid, NULL);
8613 return -ENOENT;
8614 }
8615
8616 vsi->uplink_seid = veb->seid;
8617 vsi->veb_idx = veb->idx;
8618 vsi->flags |= I40E_VSI_FLAG_VEB_OWNER;
8619
8620 return 0;
8621}
8622
8623/**
8624 * i40e_veb_setup - Set up a VEB
8625 * @pf: board private structure
8626 * @flags: VEB setup flags
8627 * @uplink_seid: the switch element to link to
8628 * @vsi_seid: the initial VSI seid
8629 * @enabled_tc: Enabled TC bit-map
8630 *
8631 * This allocates the sw VEB structure and links it into the switch
8632 * It is possible and legal for this to be a duplicate of an already
8633 * existing VEB. It is also possible for both uplink and vsi seids
8634 * to be zero, in order to create a floating VEB.
8635 *
8636 * Returns pointer to the successfully allocated VEB sw struct on
8637 * success, otherwise returns NULL on failure.
8638 **/
8639struct i40e_veb *i40e_veb_setup(struct i40e_pf *pf, u16 flags,
8640 u16 uplink_seid, u16 vsi_seid,
8641 u8 enabled_tc)
8642{
8643 struct i40e_veb *veb, *uplink_veb = NULL;
8644 int vsi_idx, veb_idx;
8645 int ret;
8646
8647 /* if one seid is 0, the other must be 0 to create a floating relay */
8648 if ((uplink_seid == 0 || vsi_seid == 0) &&
8649 (uplink_seid + vsi_seid != 0)) {
8650 dev_info(&pf->pdev->dev,
8651 "one, not both seid's are 0: uplink=%d vsi=%d\n",
8652 uplink_seid, vsi_seid);
8653 return NULL;
8654 }
8655
8656 /* make sure there is such a vsi and uplink */
Mitch Williams505682c2014-05-20 08:01:37 +00008657 for (vsi_idx = 0; vsi_idx < pf->num_alloc_vsi; vsi_idx++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008658 if (pf->vsi[vsi_idx] && pf->vsi[vsi_idx]->seid == vsi_seid)
8659 break;
Mitch Williams505682c2014-05-20 08:01:37 +00008660 if (vsi_idx >= pf->num_alloc_vsi && vsi_seid != 0) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008661 dev_info(&pf->pdev->dev, "vsi seid %d not found\n",
8662 vsi_seid);
8663 return NULL;
8664 }
8665
8666 if (uplink_seid && uplink_seid != pf->mac_seid) {
8667 for (veb_idx = 0; veb_idx < I40E_MAX_VEB; veb_idx++) {
8668 if (pf->veb[veb_idx] &&
8669 pf->veb[veb_idx]->seid == uplink_seid) {
8670 uplink_veb = pf->veb[veb_idx];
8671 break;
8672 }
8673 }
8674 if (!uplink_veb) {
8675 dev_info(&pf->pdev->dev,
8676 "uplink seid %d not found\n", uplink_seid);
8677 return NULL;
8678 }
8679 }
8680
8681 /* get veb sw struct */
8682 veb_idx = i40e_veb_mem_alloc(pf);
8683 if (veb_idx < 0)
8684 goto err_alloc;
8685 veb = pf->veb[veb_idx];
8686 veb->flags = flags;
8687 veb->uplink_seid = uplink_seid;
8688 veb->veb_idx = (uplink_veb ? uplink_veb->idx : I40E_NO_VEB);
8689 veb->enabled_tc = (enabled_tc ? enabled_tc : 0x1);
8690
8691 /* create the VEB in the switch */
8692 ret = i40e_add_veb(veb, pf->vsi[vsi_idx]);
8693 if (ret)
8694 goto err_veb;
Shannon Nelson1bb8b932014-04-23 04:49:54 +00008695 if (vsi_idx == pf->lan_vsi)
8696 pf->lan_veb = veb->idx;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008697
8698 return veb;
8699
8700err_veb:
8701 i40e_veb_clear(veb);
8702err_alloc:
8703 return NULL;
8704}
8705
8706/**
8707 * i40e_setup_pf_switch_element - set pf vars based on switch type
8708 * @pf: board private structure
8709 * @ele: element we are building info from
8710 * @num_reported: total number of elements
8711 * @printconfig: should we print the contents
8712 *
8713 * helper function to assist in extracting a few useful SEID values.
8714 **/
8715static void i40e_setup_pf_switch_element(struct i40e_pf *pf,
8716 struct i40e_aqc_switch_config_element_resp *ele,
8717 u16 num_reported, bool printconfig)
8718{
8719 u16 downlink_seid = le16_to_cpu(ele->downlink_seid);
8720 u16 uplink_seid = le16_to_cpu(ele->uplink_seid);
8721 u8 element_type = ele->element_type;
8722 u16 seid = le16_to_cpu(ele->seid);
8723
8724 if (printconfig)
8725 dev_info(&pf->pdev->dev,
8726 "type=%d seid=%d uplink=%d downlink=%d\n",
8727 element_type, seid, uplink_seid, downlink_seid);
8728
8729 switch (element_type) {
8730 case I40E_SWITCH_ELEMENT_TYPE_MAC:
8731 pf->mac_seid = seid;
8732 break;
8733 case I40E_SWITCH_ELEMENT_TYPE_VEB:
8734 /* Main VEB? */
8735 if (uplink_seid != pf->mac_seid)
8736 break;
8737 if (pf->lan_veb == I40E_NO_VEB) {
8738 int v;
8739
8740 /* find existing or else empty VEB */
8741 for (v = 0; v < I40E_MAX_VEB; v++) {
8742 if (pf->veb[v] && (pf->veb[v]->seid == seid)) {
8743 pf->lan_veb = v;
8744 break;
8745 }
8746 }
8747 if (pf->lan_veb == I40E_NO_VEB) {
8748 v = i40e_veb_mem_alloc(pf);
8749 if (v < 0)
8750 break;
8751 pf->lan_veb = v;
8752 }
8753 }
8754
8755 pf->veb[pf->lan_veb]->seid = seid;
8756 pf->veb[pf->lan_veb]->uplink_seid = pf->mac_seid;
8757 pf->veb[pf->lan_veb]->pf = pf;
8758 pf->veb[pf->lan_veb]->veb_idx = I40E_NO_VEB;
8759 break;
8760 case I40E_SWITCH_ELEMENT_TYPE_VSI:
8761 if (num_reported != 1)
8762 break;
8763 /* This is immediately after a reset so we can assume this is
8764 * the PF's VSI
8765 */
8766 pf->mac_seid = uplink_seid;
8767 pf->pf_seid = downlink_seid;
8768 pf->main_vsi_seid = seid;
8769 if (printconfig)
8770 dev_info(&pf->pdev->dev,
8771 "pf_seid=%d main_vsi_seid=%d\n",
8772 pf->pf_seid, pf->main_vsi_seid);
8773 break;
8774 case I40E_SWITCH_ELEMENT_TYPE_PF:
8775 case I40E_SWITCH_ELEMENT_TYPE_VF:
8776 case I40E_SWITCH_ELEMENT_TYPE_EMP:
8777 case I40E_SWITCH_ELEMENT_TYPE_BMC:
8778 case I40E_SWITCH_ELEMENT_TYPE_PE:
8779 case I40E_SWITCH_ELEMENT_TYPE_PA:
8780 /* ignore these for now */
8781 break;
8782 default:
8783 dev_info(&pf->pdev->dev, "unknown element type=%d seid=%d\n",
8784 element_type, seid);
8785 break;
8786 }
8787}
8788
8789/**
8790 * i40e_fetch_switch_configuration - Get switch config from firmware
8791 * @pf: board private structure
8792 * @printconfig: should we print the contents
8793 *
8794 * Get the current switch configuration from the device and
8795 * extract a few useful SEID values.
8796 **/
8797int i40e_fetch_switch_configuration(struct i40e_pf *pf, bool printconfig)
8798{
8799 struct i40e_aqc_get_switch_config_resp *sw_config;
8800 u16 next_seid = 0;
8801 int ret = 0;
8802 u8 *aq_buf;
8803 int i;
8804
8805 aq_buf = kzalloc(I40E_AQ_LARGE_BUF, GFP_KERNEL);
8806 if (!aq_buf)
8807 return -ENOMEM;
8808
8809 sw_config = (struct i40e_aqc_get_switch_config_resp *)aq_buf;
8810 do {
8811 u16 num_reported, num_total;
8812
8813 ret = i40e_aq_get_switch_config(&pf->hw, sw_config,
8814 I40E_AQ_LARGE_BUF,
8815 &next_seid, NULL);
8816 if (ret) {
8817 dev_info(&pf->pdev->dev,
8818 "get switch config failed %d aq_err=%x\n",
8819 ret, pf->hw.aq.asq_last_status);
8820 kfree(aq_buf);
8821 return -ENOENT;
8822 }
8823
8824 num_reported = le16_to_cpu(sw_config->header.num_reported);
8825 num_total = le16_to_cpu(sw_config->header.num_total);
8826
8827 if (printconfig)
8828 dev_info(&pf->pdev->dev,
8829 "header: %d reported %d total\n",
8830 num_reported, num_total);
8831
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008832 for (i = 0; i < num_reported; i++) {
8833 struct i40e_aqc_switch_config_element_resp *ele =
8834 &sw_config->element[i];
8835
8836 i40e_setup_pf_switch_element(pf, ele, num_reported,
8837 printconfig);
8838 }
8839 } while (next_seid != 0);
8840
8841 kfree(aq_buf);
8842 return ret;
8843}
8844
8845/**
8846 * i40e_setup_pf_switch - Setup the HW switch on startup or after reset
8847 * @pf: board private structure
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00008848 * @reinit: if the Main VSI needs to re-initialized.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008849 *
8850 * Returns 0 on success, negative value on failure
8851 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00008852static int i40e_setup_pf_switch(struct i40e_pf *pf, bool reinit)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008853{
8854 int ret;
8855
8856 /* find out what's out there already */
8857 ret = i40e_fetch_switch_configuration(pf, false);
8858 if (ret) {
8859 dev_info(&pf->pdev->dev,
8860 "couldn't fetch switch config, err %d, aq_err %d\n",
8861 ret, pf->hw.aq.asq_last_status);
8862 return ret;
8863 }
8864 i40e_pf_reset_stats(pf);
8865
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008866 /* first time setup */
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00008867 if (pf->lan_vsi == I40E_NO_VSI || reinit) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008868 struct i40e_vsi *vsi = NULL;
8869 u16 uplink_seid;
8870
8871 /* Set up the PF VSI associated with the PF's main VSI
8872 * that is already in the HW switch
8873 */
8874 if (pf->lan_veb != I40E_NO_VEB && pf->veb[pf->lan_veb])
8875 uplink_seid = pf->veb[pf->lan_veb]->seid;
8876 else
8877 uplink_seid = pf->mac_seid;
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00008878 if (pf->lan_vsi == I40E_NO_VSI)
8879 vsi = i40e_vsi_setup(pf, I40E_VSI_MAIN, uplink_seid, 0);
8880 else if (reinit)
8881 vsi = i40e_vsi_reinit_setup(pf->vsi[pf->lan_vsi]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008882 if (!vsi) {
8883 dev_info(&pf->pdev->dev, "setup of MAIN VSI failed\n");
8884 i40e_fdir_teardown(pf);
8885 return -EAGAIN;
8886 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008887 } else {
8888 /* force a reset of TC and queue layout configurations */
8889 u8 enabled_tc = pf->vsi[pf->lan_vsi]->tc_config.enabled_tc;
8890 pf->vsi[pf->lan_vsi]->tc_config.enabled_tc = 0;
8891 pf->vsi[pf->lan_vsi]->seid = pf->main_vsi_seid;
8892 i40e_vsi_config_tc(pf->vsi[pf->lan_vsi], enabled_tc);
8893 }
8894 i40e_vlan_stripping_disable(pf->vsi[pf->lan_vsi]);
8895
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008896 i40e_fdir_sb_setup(pf);
8897
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008898 /* Setup static PF queue filter control settings */
8899 ret = i40e_setup_pf_filter_control(pf);
8900 if (ret) {
8901 dev_info(&pf->pdev->dev, "setup_pf_filter_control failed: %d\n",
8902 ret);
8903 /* Failure here should not stop continuing other steps */
8904 }
8905
8906 /* enable RSS in the HW, even for only one queue, as the stack can use
8907 * the hash
8908 */
8909 if ((pf->flags & I40E_FLAG_RSS_ENABLED))
8910 i40e_config_rss(pf);
8911
8912 /* fill in link information and enable LSE reporting */
Catherine Sullivan8109e122014-06-04 08:45:24 +00008913 i40e_update_link_info(&pf->hw, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008914 i40e_link_event(pf);
8915
Jesse Brandeburgd52c20b2013-11-26 10:49:15 +00008916 /* Initialize user-specific link properties */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008917 pf->fc_autoneg_status = ((pf->hw.phy.link_info.an_info &
8918 I40E_AQ_AN_COMPLETED) ? true : false);
Jesse Brandeburgd52c20b2013-11-26 10:49:15 +00008919
Mitch Williamsa34a6712014-09-13 07:40:46 +00008920 /* fill in link information and enable LSE reporting */
8921 i40e_update_link_info(&pf->hw, true);
8922 i40e_link_event(pf);
8923
8924 /* Initialize user-specific link properties */
8925 pf->fc_autoneg_status = ((pf->hw.phy.link_info.an_info &
8926 I40E_AQ_AN_COMPLETED) ? true : false);
8927
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00008928 i40e_ptp_init(pf);
8929
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008930 return ret;
8931}
8932
8933/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008934 * i40e_determine_queue_usage - Work out queue distribution
8935 * @pf: board private structure
8936 **/
8937static void i40e_determine_queue_usage(struct i40e_pf *pf)
8938{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008939 int queues_left;
8940
8941 pf->num_lan_qps = 0;
Vasu Dev38e00432014-08-01 13:27:03 -07008942#ifdef I40E_FCOE
8943 pf->num_fcoe_qps = 0;
8944#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008945
8946 /* Find the max queues to be put into basic use. We'll always be
8947 * using TC0, whether or not DCB is running, and TC0 will get the
8948 * big RSS set.
8949 */
8950 queues_left = pf->hw.func_caps.num_tx_qp;
8951
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008952 if ((queues_left == 1) ||
Frank Zhang9aa7e932014-05-20 08:01:42 +00008953 !(pf->flags & I40E_FLAG_MSIX_ENABLED)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008954 /* one qp for PF, no queues for anything else */
8955 queues_left = 0;
8956 pf->rss_size = pf->num_lan_qps = 1;
8957
8958 /* make sure all the fancies are disabled */
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08008959 pf->flags &= ~(I40E_FLAG_RSS_ENABLED |
Vasu Dev38e00432014-08-01 13:27:03 -07008960#ifdef I40E_FCOE
8961 I40E_FLAG_FCOE_ENABLED |
8962#endif
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08008963 I40E_FLAG_FD_SB_ENABLED |
8964 I40E_FLAG_FD_ATR_ENABLED |
Neerav Parikh4d9b6042014-05-22 06:31:51 +00008965 I40E_FLAG_DCB_CAPABLE |
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08008966 I40E_FLAG_SRIOV_ENABLED |
8967 I40E_FLAG_VMDQ_ENABLED);
Frank Zhang9aa7e932014-05-20 08:01:42 +00008968 } else if (!(pf->flags & (I40E_FLAG_RSS_ENABLED |
8969 I40E_FLAG_FD_SB_ENABLED |
Anjali Singhai Jainbbe7d0e2014-05-20 08:01:44 +00008970 I40E_FLAG_FD_ATR_ENABLED |
Neerav Parikh4d9b6042014-05-22 06:31:51 +00008971 I40E_FLAG_DCB_CAPABLE))) {
Frank Zhang9aa7e932014-05-20 08:01:42 +00008972 /* one qp for PF */
8973 pf->rss_size = pf->num_lan_qps = 1;
8974 queues_left -= pf->num_lan_qps;
8975
8976 pf->flags &= ~(I40E_FLAG_RSS_ENABLED |
Vasu Dev38e00432014-08-01 13:27:03 -07008977#ifdef I40E_FCOE
8978 I40E_FLAG_FCOE_ENABLED |
8979#endif
Frank Zhang9aa7e932014-05-20 08:01:42 +00008980 I40E_FLAG_FD_SB_ENABLED |
8981 I40E_FLAG_FD_ATR_ENABLED |
8982 I40E_FLAG_DCB_ENABLED |
8983 I40E_FLAG_VMDQ_ENABLED);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008984 } else {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008985 /* Not enough queues for all TCs */
Neerav Parikh4d9b6042014-05-22 06:31:51 +00008986 if ((pf->flags & I40E_FLAG_DCB_CAPABLE) &&
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008987 (queues_left < I40E_MAX_TRAFFIC_CLASS)) {
Neerav Parikh4d9b6042014-05-22 06:31:51 +00008988 pf->flags &= ~I40E_FLAG_DCB_CAPABLE;
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008989 dev_info(&pf->pdev->dev, "not enough queues for DCB. DCB is disabled.\n");
8990 }
8991 pf->num_lan_qps = pf->rss_size_max;
8992 queues_left -= pf->num_lan_qps;
8993 }
8994
Vasu Dev38e00432014-08-01 13:27:03 -07008995#ifdef I40E_FCOE
8996 if (pf->flags & I40E_FLAG_FCOE_ENABLED) {
8997 if (I40E_DEFAULT_FCOE <= queues_left) {
8998 pf->num_fcoe_qps = I40E_DEFAULT_FCOE;
8999 } else if (I40E_MINIMUM_FCOE <= queues_left) {
9000 pf->num_fcoe_qps = I40E_MINIMUM_FCOE;
9001 } else {
9002 pf->num_fcoe_qps = 0;
9003 pf->flags &= ~I40E_FLAG_FCOE_ENABLED;
9004 dev_info(&pf->pdev->dev, "not enough queues for FCoE. FCoE feature will be disabled\n");
9005 }
9006
9007 queues_left -= pf->num_fcoe_qps;
9008 }
9009
9010#endif
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08009011 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
9012 if (queues_left > 1) {
9013 queues_left -= 1; /* save 1 queue for FD */
9014 } else {
9015 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
9016 dev_info(&pf->pdev->dev, "not enough queues for Flow Director. Flow Director feature is disabled\n");
9017 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009018 }
9019
9020 if ((pf->flags & I40E_FLAG_SRIOV_ENABLED) &&
9021 pf->num_vf_qps && pf->num_req_vfs && queues_left) {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08009022 pf->num_req_vfs = min_t(int, pf->num_req_vfs,
9023 (queues_left / pf->num_vf_qps));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009024 queues_left -= (pf->num_req_vfs * pf->num_vf_qps);
9025 }
9026
9027 if ((pf->flags & I40E_FLAG_VMDQ_ENABLED) &&
9028 pf->num_vmdq_vsis && pf->num_vmdq_qps && queues_left) {
9029 pf->num_vmdq_vsis = min_t(int, pf->num_vmdq_vsis,
9030 (queues_left / pf->num_vmdq_qps));
9031 queues_left -= (pf->num_vmdq_vsis * pf->num_vmdq_qps);
9032 }
9033
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00009034 pf->queues_left = queues_left;
Vasu Dev38e00432014-08-01 13:27:03 -07009035#ifdef I40E_FCOE
9036 dev_info(&pf->pdev->dev, "fcoe queues = %d\n", pf->num_fcoe_qps);
9037#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009038}
9039
9040/**
9041 * i40e_setup_pf_filter_control - Setup PF static filter control
9042 * @pf: PF to be setup
9043 *
9044 * i40e_setup_pf_filter_control sets up a pf's initial filter control
9045 * settings. If PE/FCoE are enabled then it will also set the per PF
9046 * based filter sizes required for them. It also enables Flow director,
9047 * ethertype and macvlan type filter settings for the pf.
9048 *
9049 * Returns 0 on success, negative on failure
9050 **/
9051static int i40e_setup_pf_filter_control(struct i40e_pf *pf)
9052{
9053 struct i40e_filter_control_settings *settings = &pf->filter_settings;
9054
9055 settings->hash_lut_size = I40E_HASH_LUT_SIZE_128;
9056
9057 /* Flow Director is enabled */
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08009058 if (pf->flags & (I40E_FLAG_FD_SB_ENABLED | I40E_FLAG_FD_ATR_ENABLED))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009059 settings->enable_fdir = true;
9060
9061 /* Ethtype and MACVLAN filters enabled for PF */
9062 settings->enable_ethtype = true;
9063 settings->enable_macvlan = true;
9064
9065 if (i40e_set_filter_control(&pf->hw, settings))
9066 return -ENOENT;
9067
9068 return 0;
9069}
9070
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00009071#define INFO_STRING_LEN 255
9072static void i40e_print_features(struct i40e_pf *pf)
9073{
9074 struct i40e_hw *hw = &pf->hw;
9075 char *buf, *string;
9076
9077 string = kzalloc(INFO_STRING_LEN, GFP_KERNEL);
9078 if (!string) {
9079 dev_err(&pf->pdev->dev, "Features string allocation failed\n");
9080 return;
9081 }
9082
9083 buf = string;
9084
9085 buf += sprintf(string, "Features: PF-id[%d] ", hw->pf_id);
9086#ifdef CONFIG_PCI_IOV
9087 buf += sprintf(buf, "VFs: %d ", pf->num_req_vfs);
9088#endif
9089 buf += sprintf(buf, "VSIs: %d QP: %d ", pf->hw.func_caps.num_vsis,
9090 pf->vsi[pf->lan_vsi]->num_queue_pairs);
9091
9092 if (pf->flags & I40E_FLAG_RSS_ENABLED)
9093 buf += sprintf(buf, "RSS ");
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00009094 if (pf->flags & I40E_FLAG_FD_ATR_ENABLED)
Akeem G Abodunrinc6423ff2014-05-10 04:49:08 +00009095 buf += sprintf(buf, "FD_ATR ");
9096 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
9097 buf += sprintf(buf, "FD_SB ");
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00009098 buf += sprintf(buf, "NTUPLE ");
Akeem G Abodunrinc6423ff2014-05-10 04:49:08 +00009099 }
Neerav Parikh4d9b6042014-05-22 06:31:51 +00009100 if (pf->flags & I40E_FLAG_DCB_CAPABLE)
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00009101 buf += sprintf(buf, "DCB ");
9102 if (pf->flags & I40E_FLAG_PTP)
9103 buf += sprintf(buf, "PTP ");
Vasu Dev38e00432014-08-01 13:27:03 -07009104#ifdef I40E_FCOE
9105 if (pf->flags & I40E_FLAG_FCOE_ENABLED)
9106 buf += sprintf(buf, "FCOE ");
9107#endif
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00009108
9109 BUG_ON(buf > (string + INFO_STRING_LEN));
9110 dev_info(&pf->pdev->dev, "%s\n", string);
9111 kfree(string);
9112}
9113
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009114/**
9115 * i40e_probe - Device initialization routine
9116 * @pdev: PCI device information struct
9117 * @ent: entry in i40e_pci_tbl
9118 *
9119 * i40e_probe initializes a pf identified by a pci_dev structure.
9120 * The OS initialization, configuring of the pf private structure,
9121 * and a hardware reset occur.
9122 *
9123 * Returns 0 on success, negative on failure
9124 **/
9125static int i40e_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
9126{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009127 struct i40e_pf *pf;
9128 struct i40e_hw *hw;
Anjali Singhai Jain93cd7652013-11-20 10:03:01 +00009129 static u16 pfs_found;
Catherine Sullivand4dfb812013-11-28 06:39:21 +00009130 u16 link_status;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009131 int err = 0;
9132 u32 len;
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00009133 u32 i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009134
9135 err = pci_enable_device_mem(pdev);
9136 if (err)
9137 return err;
9138
9139 /* set up for high or low dma */
Mitch Williams64942942014-02-11 08:26:33 +00009140 err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64));
Mitch Williams64942942014-02-11 08:26:33 +00009141 if (err) {
Jean Sacrene3e3bfd2014-03-25 04:30:27 +00009142 err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
9143 if (err) {
9144 dev_err(&pdev->dev,
9145 "DMA configuration failed: 0x%x\n", err);
9146 goto err_dma;
9147 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009148 }
9149
9150 /* set up pci connections */
9151 err = pci_request_selected_regions(pdev, pci_select_bars(pdev,
9152 IORESOURCE_MEM), i40e_driver_name);
9153 if (err) {
9154 dev_info(&pdev->dev,
9155 "pci_request_selected_regions failed %d\n", err);
9156 goto err_pci_reg;
9157 }
9158
9159 pci_enable_pcie_error_reporting(pdev);
9160 pci_set_master(pdev);
9161
9162 /* Now that we have a PCI connection, we need to do the
9163 * low level device setup. This is primarily setting up
9164 * the Admin Queue structures and then querying for the
9165 * device's current profile information.
9166 */
9167 pf = kzalloc(sizeof(*pf), GFP_KERNEL);
9168 if (!pf) {
9169 err = -ENOMEM;
9170 goto err_pf_alloc;
9171 }
9172 pf->next_vsi = 0;
9173 pf->pdev = pdev;
9174 set_bit(__I40E_DOWN, &pf->state);
9175
9176 hw = &pf->hw;
9177 hw->back = pf;
9178 hw->hw_addr = ioremap(pci_resource_start(pdev, 0),
9179 pci_resource_len(pdev, 0));
9180 if (!hw->hw_addr) {
9181 err = -EIO;
9182 dev_info(&pdev->dev, "ioremap(0x%04x, 0x%04x) failed: 0x%x\n",
9183 (unsigned int)pci_resource_start(pdev, 0),
9184 (unsigned int)pci_resource_len(pdev, 0), err);
9185 goto err_ioremap;
9186 }
9187 hw->vendor_id = pdev->vendor;
9188 hw->device_id = pdev->device;
9189 pci_read_config_byte(pdev, PCI_REVISION_ID, &hw->revision_id);
9190 hw->subsystem_vendor_id = pdev->subsystem_vendor;
9191 hw->subsystem_device_id = pdev->subsystem_device;
9192 hw->bus.device = PCI_SLOT(pdev->devfn);
9193 hw->bus.func = PCI_FUNC(pdev->devfn);
Anjali Singhai Jain93cd7652013-11-20 10:03:01 +00009194 pf->instance = pfs_found;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009195
Shannon Nelson5b5faa42014-10-17 03:14:51 +00009196 if (debug != -1) {
9197 pf->msg_enable = pf->hw.debug_mask;
9198 pf->msg_enable = debug;
9199 }
9200
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00009201 /* do a special CORER for clearing PXE mode once at init */
9202 if (hw->revision_id == 0 &&
9203 (rd32(hw, I40E_GLLAN_RCTL_0) & I40E_GLLAN_RCTL_0_PXE_MODE_MASK)) {
9204 wr32(hw, I40E_GLGEN_RTRIG, I40E_GLGEN_RTRIG_CORER_MASK);
9205 i40e_flush(hw);
9206 msleep(200);
9207 pf->corer_count++;
9208
9209 i40e_clear_pxe_mode(hw);
9210 }
9211
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009212 /* Reset here to make sure all is clean and to define PF 'n' */
Shannon Nelson838d41d2014-06-04 20:41:27 +00009213 i40e_clear_hw(hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009214 err = i40e_pf_reset(hw);
9215 if (err) {
9216 dev_info(&pdev->dev, "Initial pf_reset failed: %d\n", err);
9217 goto err_pf_reset;
9218 }
9219 pf->pfr_count++;
9220
9221 hw->aq.num_arq_entries = I40E_AQ_LEN;
9222 hw->aq.num_asq_entries = I40E_AQ_LEN;
9223 hw->aq.arq_buf_size = I40E_MAX_AQ_BUF_SIZE;
9224 hw->aq.asq_buf_size = I40E_MAX_AQ_BUF_SIZE;
9225 pf->adminq_work_limit = I40E_AQ_WORK_LIMIT;
Carolyn Wybornyb2008cb2014-11-11 20:05:26 +00009226
Carolyn Wybornyb294ac72014-12-11 07:06:39 +00009227 snprintf(pf->int_name, sizeof(pf->int_name) - 1,
Carolyn Wybornyb2008cb2014-11-11 20:05:26 +00009228 "%s-%s:misc",
9229 dev_driver_string(&pf->pdev->dev), dev_name(&pdev->dev));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009230
9231 err = i40e_init_shared_code(hw);
9232 if (err) {
9233 dev_info(&pdev->dev, "init_shared_code failed: %d\n", err);
9234 goto err_pf_reset;
9235 }
9236
Jesse Brandeburgd52c20b2013-11-26 10:49:15 +00009237 /* set up a default setting for link flow control */
9238 pf->hw.fc.requested_mode = I40E_FC_NONE;
9239
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009240 err = i40e_init_adminq(hw);
9241 dev_info(&pdev->dev, "%s\n", i40e_fw_version_str(hw));
9242 if (err) {
9243 dev_info(&pdev->dev,
Catherine Sullivan7aa67612014-07-09 07:46:17 +00009244 "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 +00009245 goto err_pf_reset;
9246 }
9247
Catherine Sullivan7aa67612014-07-09 07:46:17 +00009248 if (hw->aq.api_maj_ver == I40E_FW_API_VERSION_MAJOR &&
9249 hw->aq.api_min_ver > I40E_FW_API_VERSION_MINOR)
Shannon Nelson278b6f62014-06-04 01:41:03 +00009250 dev_info(&pdev->dev,
Catherine Sullivan7aa67612014-07-09 07:46:17 +00009251 "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");
9252 else if (hw->aq.api_maj_ver < I40E_FW_API_VERSION_MAJOR ||
9253 hw->aq.api_min_ver < (I40E_FW_API_VERSION_MINOR - 1))
Shannon Nelson278b6f62014-06-04 01:41:03 +00009254 dev_info(&pdev->dev,
Catherine Sullivan7aa67612014-07-09 07:46:17 +00009255 "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 +00009256
9257
Shannon Nelson4eb3f762014-03-06 08:59:58 +00009258 i40e_verify_eeprom(pf);
9259
Jesse Brandeburg2c5fe332014-04-23 04:49:57 +00009260 /* Rev 0 hardware was never productized */
9261 if (hw->revision_id < 1)
9262 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");
9263
Shannon Nelson6ff4ef82013-12-21 05:44:49 +00009264 i40e_clear_pxe_mode(hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009265 err = i40e_get_capabilities(pf);
9266 if (err)
9267 goto err_adminq_setup;
9268
9269 err = i40e_sw_init(pf);
9270 if (err) {
9271 dev_info(&pdev->dev, "sw_init failed: %d\n", err);
9272 goto err_sw_init;
9273 }
9274
9275 err = i40e_init_lan_hmc(hw, hw->func_caps.num_tx_qp,
9276 hw->func_caps.num_rx_qp,
9277 pf->fcoe_hmc_cntx_num, pf->fcoe_hmc_filt_num);
9278 if (err) {
9279 dev_info(&pdev->dev, "init_lan_hmc failed: %d\n", err);
9280 goto err_init_lan_hmc;
9281 }
9282
9283 err = i40e_configure_lan_hmc(hw, I40E_HMC_MODEL_DIRECT_ONLY);
9284 if (err) {
9285 dev_info(&pdev->dev, "configure_lan_hmc failed: %d\n", err);
9286 err = -ENOENT;
9287 goto err_configure_lan_hmc;
9288 }
9289
Neerav Parikhb686ece2014-12-14 01:55:11 +00009290 /* Disable LLDP for NICs that have firmware versions lower than v4.3.
9291 * Ignore error return codes because if it was already disabled via
9292 * hardware settings this will fail
9293 */
9294 if (((pf->hw.aq.fw_maj_ver == 4) && (pf->hw.aq.fw_min_ver < 3)) ||
9295 (pf->hw.aq.fw_maj_ver < 4)) {
9296 dev_info(&pdev->dev, "Stopping firmware LLDP agent.\n");
9297 i40e_aq_stop_lldp(hw, true, NULL);
9298 }
9299
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009300 i40e_get_mac_addr(hw, hw->mac.addr);
Jesse Brandeburgf62b5062013-11-28 06:39:27 +00009301 if (!is_valid_ether_addr(hw->mac.addr)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009302 dev_info(&pdev->dev, "invalid MAC address %pM\n", hw->mac.addr);
9303 err = -EIO;
9304 goto err_mac_addr;
9305 }
9306 dev_info(&pdev->dev, "MAC address: %pM\n", hw->mac.addr);
Greg Rose9a173902014-05-22 06:32:02 +00009307 ether_addr_copy(hw->mac.perm_addr, hw->mac.addr);
Neerav Parikh1f224ad2014-02-12 01:45:31 +00009308 i40e_get_port_mac_addr(hw, hw->mac.port_addr);
9309 if (is_valid_ether_addr(hw->mac.port_addr))
9310 pf->flags |= I40E_FLAG_PORT_ID_VALID;
Vasu Dev38e00432014-08-01 13:27:03 -07009311#ifdef I40E_FCOE
9312 err = i40e_get_san_mac_addr(hw, hw->mac.san_addr);
9313 if (err)
9314 dev_info(&pdev->dev,
9315 "(non-fatal) SAN MAC retrieval failed: %d\n", err);
9316 if (!is_valid_ether_addr(hw->mac.san_addr)) {
9317 dev_warn(&pdev->dev, "invalid SAN MAC address %pM, falling back to LAN MAC\n",
9318 hw->mac.san_addr);
9319 ether_addr_copy(hw->mac.san_addr, hw->mac.addr);
9320 }
9321 dev_info(&pf->pdev->dev, "SAN MAC: %pM\n", hw->mac.san_addr);
9322#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009323
9324 pci_set_drvdata(pdev, pf);
9325 pci_save_state(pdev);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08009326#ifdef CONFIG_I40E_DCB
9327 err = i40e_init_pf_dcb(pf);
9328 if (err) {
Shannon Nelsonaebfc812014-12-11 07:06:38 +00009329 dev_info(&pdev->dev, "DCB init failed %d, disabled\n", err);
Neerav Parikh4d9b6042014-05-22 06:31:51 +00009330 pf->flags &= ~I40E_FLAG_DCB_CAPABLE;
Neerav Parikh014269f2014-04-01 07:11:48 +00009331 /* Continue without DCB enabled */
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08009332 }
9333#endif /* CONFIG_I40E_DCB */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009334
9335 /* set up periodic task facility */
9336 setup_timer(&pf->service_timer, i40e_service_timer, (unsigned long)pf);
9337 pf->service_timer_period = HZ;
9338
9339 INIT_WORK(&pf->service_task, i40e_service_task);
9340 clear_bit(__I40E_SERVICE_SCHED, &pf->state);
9341 pf->flags |= I40E_FLAG_NEED_LINK_UPDATE;
9342 pf->link_check_timeout = jiffies;
9343
Shannon Nelson8e2773a2013-11-28 06:39:22 +00009344 /* WoL defaults to disabled */
9345 pf->wol_en = false;
9346 device_set_wakeup_enable(&pf->pdev->dev, pf->wol_en);
9347
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009348 /* set up the main switch operations */
9349 i40e_determine_queue_usage(pf);
9350 i40e_init_interrupt_scheme(pf);
9351
Mitch Williams505682c2014-05-20 08:01:37 +00009352 /* The number of VSIs reported by the FW is the minimum guaranteed
9353 * to us; HW supports far more and we share the remaining pool with
9354 * the other PFs. We allocate space for more than the guarantee with
9355 * the understanding that we might not get them all later.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009356 */
Mitch Williams505682c2014-05-20 08:01:37 +00009357 if (pf->hw.func_caps.num_vsis < I40E_MIN_VSI_ALLOC)
9358 pf->num_alloc_vsi = I40E_MIN_VSI_ALLOC;
9359 else
9360 pf->num_alloc_vsi = pf->hw.func_caps.num_vsis;
9361
9362 /* Set up the *vsi struct and our local tracking of the MAIN PF vsi. */
9363 len = sizeof(struct i40e_vsi *) * pf->num_alloc_vsi;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009364 pf->vsi = kzalloc(len, GFP_KERNEL);
Wei Yongjuned87ac02013-09-24 05:17:25 +00009365 if (!pf->vsi) {
9366 err = -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009367 goto err_switch_setup;
Wei Yongjuned87ac02013-09-24 05:17:25 +00009368 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009369
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00009370 err = i40e_setup_pf_switch(pf, false);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009371 if (err) {
9372 dev_info(&pdev->dev, "setup_pf_switch failed: %d\n", err);
9373 goto err_vsis;
9374 }
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00009375 /* if FDIR VSI was set up, start it now */
Mitch Williams505682c2014-05-20 08:01:37 +00009376 for (i = 0; i < pf->num_alloc_vsi; i++) {
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00009377 if (pf->vsi[i] && pf->vsi[i]->type == I40E_VSI_FDIR) {
9378 i40e_vsi_open(pf->vsi[i]);
9379 break;
9380 }
9381 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009382
Jesse Brandeburg7e2453f2014-09-13 07:40:41 +00009383 /* driver is only interested in link up/down and module qualification
9384 * reports from firmware
9385 */
9386 err = i40e_aq_set_phy_int_mask(&pf->hw,
9387 I40E_AQ_EVENT_LINK_UPDOWN |
9388 I40E_AQ_EVENT_MODULE_QUAL_FAIL, NULL);
9389 if (err)
9390 dev_info(&pf->pdev->dev, "set phy mask fail, aq_err %d\n", err);
9391
Anjali Singhai Jaincafa2ee2014-09-13 07:40:45 +00009392 msleep(75);
9393 err = i40e_aq_set_link_restart_an(&pf->hw, true, NULL);
9394 if (err) {
9395 dev_info(&pf->pdev->dev, "link restart failed, aq_err=%d\n",
9396 pf->hw.aq.asq_last_status);
9397 }
9398
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009399 /* The main driver is (mostly) up and happy. We need to set this state
9400 * before setting up the misc vector or we get a race and the vector
9401 * ends up disabled forever.
9402 */
9403 clear_bit(__I40E_DOWN, &pf->state);
9404
9405 /* In case of MSIX we are going to setup the misc vector right here
9406 * to handle admin queue events etc. In case of legacy and MSI
9407 * the misc functionality and queue processing is combined in
9408 * the same vector and that gets setup at open.
9409 */
9410 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
9411 err = i40e_setup_misc_vector(pf);
9412 if (err) {
9413 dev_info(&pdev->dev,
9414 "setup of misc vector failed: %d\n", err);
9415 goto err_vsis;
9416 }
9417 }
9418
Greg Rosedf805f62014-04-04 04:43:16 +00009419#ifdef CONFIG_PCI_IOV
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009420 /* prep for VF support */
9421 if ((pf->flags & I40E_FLAG_SRIOV_ENABLED) &&
Shannon Nelson4eb3f762014-03-06 08:59:58 +00009422 (pf->flags & I40E_FLAG_MSIX_ENABLED) &&
9423 !test_bit(__I40E_BAD_EEPROM, &pf->state)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009424 u32 val;
9425
9426 /* disable link interrupts for VFs */
9427 val = rd32(hw, I40E_PFGEN_PORTMDIO_NUM);
9428 val &= ~I40E_PFGEN_PORTMDIO_NUM_VFLINK_STAT_ENA_MASK;
9429 wr32(hw, I40E_PFGEN_PORTMDIO_NUM, val);
9430 i40e_flush(hw);
Mitch Williams4aeec012014-02-13 03:48:47 -08009431
9432 if (pci_num_vf(pdev)) {
9433 dev_info(&pdev->dev,
9434 "Active VFs found, allocating resources.\n");
9435 err = i40e_alloc_vfs(pf, pci_num_vf(pdev));
9436 if (err)
9437 dev_info(&pdev->dev,
9438 "Error %d allocating resources for existing VFs\n",
9439 err);
9440 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009441 }
Greg Rosedf805f62014-04-04 04:43:16 +00009442#endif /* CONFIG_PCI_IOV */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009443
Anjali Singhai Jain93cd7652013-11-20 10:03:01 +00009444 pfs_found++;
9445
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009446 i40e_dbg_pf_init(pf);
9447
9448 /* tell the firmware that we're starting */
Jesse Brandeburg44033fa2014-04-23 04:50:15 +00009449 i40e_send_version(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009450
9451 /* since everything's happy, start the service_task timer */
9452 mod_timer(&pf->service_timer,
9453 round_jiffies(jiffies + pf->service_timer_period));
9454
Vasu Dev38e00432014-08-01 13:27:03 -07009455#ifdef I40E_FCOE
9456 /* create FCoE interface */
9457 i40e_fcoe_vsi_setup(pf);
9458
9459#endif
Catherine Sullivand4dfb812013-11-28 06:39:21 +00009460 /* Get the negotiated link width and speed from PCI config space */
9461 pcie_capability_read_word(pf->pdev, PCI_EXP_LNKSTA, &link_status);
9462
9463 i40e_set_pci_config_data(hw, link_status);
9464
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00009465 dev_info(&pdev->dev, "PCI-Express: %s %s\n",
Catherine Sullivand4dfb812013-11-28 06:39:21 +00009466 (hw->bus.speed == i40e_bus_speed_8000 ? "Speed 8.0GT/s" :
9467 hw->bus.speed == i40e_bus_speed_5000 ? "Speed 5.0GT/s" :
9468 hw->bus.speed == i40e_bus_speed_2500 ? "Speed 2.5GT/s" :
9469 "Unknown"),
9470 (hw->bus.width == i40e_bus_width_pcie_x8 ? "Width x8" :
9471 hw->bus.width == i40e_bus_width_pcie_x4 ? "Width x4" :
9472 hw->bus.width == i40e_bus_width_pcie_x2 ? "Width x2" :
9473 hw->bus.width == i40e_bus_width_pcie_x1 ? "Width x1" :
9474 "Unknown"));
9475
9476 if (hw->bus.width < i40e_bus_width_pcie_x8 ||
9477 hw->bus.speed < i40e_bus_speed_8000) {
9478 dev_warn(&pdev->dev, "PCI-Express bandwidth available for this device may be insufficient for optimal performance.\n");
9479 dev_warn(&pdev->dev, "Please move the device to a different PCI-e link with more lanes and/or higher transfer rate.\n");
9480 }
9481
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00009482 /* print a string summarizing features */
9483 i40e_print_features(pf);
9484
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009485 return 0;
9486
9487 /* Unwind what we've done if something failed in the setup */
9488err_vsis:
9489 set_bit(__I40E_DOWN, &pf->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009490 i40e_clear_interrupt_scheme(pf);
9491 kfree(pf->vsi);
Shannon Nelson04b03012013-11-28 06:39:34 +00009492err_switch_setup:
9493 i40e_reset_interrupt_capability(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009494 del_timer_sync(&pf->service_timer);
9495err_mac_addr:
9496err_configure_lan_hmc:
9497 (void)i40e_shutdown_lan_hmc(hw);
9498err_init_lan_hmc:
9499 kfree(pf->qp_pile);
9500 kfree(pf->irq_pile);
9501err_sw_init:
9502err_adminq_setup:
9503 (void)i40e_shutdown_adminq(hw);
9504err_pf_reset:
9505 iounmap(hw->hw_addr);
9506err_ioremap:
9507 kfree(pf);
9508err_pf_alloc:
9509 pci_disable_pcie_error_reporting(pdev);
9510 pci_release_selected_regions(pdev,
9511 pci_select_bars(pdev, IORESOURCE_MEM));
9512err_pci_reg:
9513err_dma:
9514 pci_disable_device(pdev);
9515 return err;
9516}
9517
9518/**
9519 * i40e_remove - Device removal routine
9520 * @pdev: PCI device information struct
9521 *
9522 * i40e_remove is called by the PCI subsystem to alert the driver
9523 * that is should release a PCI device. This could be caused by a
9524 * Hot-Plug event, or because the driver is going to be removed from
9525 * memory.
9526 **/
9527static void i40e_remove(struct pci_dev *pdev)
9528{
9529 struct i40e_pf *pf = pci_get_drvdata(pdev);
9530 i40e_status ret_code;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009531 int i;
9532
9533 i40e_dbg_pf_exit(pf);
9534
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00009535 i40e_ptp_stop(pf);
9536
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009537 /* no more scheduling of any task */
9538 set_bit(__I40E_DOWN, &pf->state);
9539 del_timer_sync(&pf->service_timer);
9540 cancel_work_sync(&pf->service_task);
9541
Mitch Williamseb2d80b2014-02-13 03:48:48 -08009542 if (pf->flags & I40E_FLAG_SRIOV_ENABLED) {
9543 i40e_free_vfs(pf);
9544 pf->flags &= ~I40E_FLAG_SRIOV_ENABLED;
9545 }
9546
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009547 i40e_fdir_teardown(pf);
9548
9549 /* If there is a switch structure or any orphans, remove them.
9550 * This will leave only the PF's VSI remaining.
9551 */
9552 for (i = 0; i < I40E_MAX_VEB; i++) {
9553 if (!pf->veb[i])
9554 continue;
9555
9556 if (pf->veb[i]->uplink_seid == pf->mac_seid ||
9557 pf->veb[i]->uplink_seid == 0)
9558 i40e_switch_branch_release(pf->veb[i]);
9559 }
9560
9561 /* Now we can shutdown the PF's VSI, just before we kill
9562 * adminq and hmc.
9563 */
9564 if (pf->vsi[pf->lan_vsi])
9565 i40e_vsi_release(pf->vsi[pf->lan_vsi]);
9566
9567 i40e_stop_misc_vector(pf);
9568 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
9569 synchronize_irq(pf->msix_entries[0].vector);
9570 free_irq(pf->msix_entries[0].vector, pf);
9571 }
9572
9573 /* shutdown and destroy the HMC */
Shannon Nelson60442de2014-04-23 04:50:13 +00009574 if (pf->hw.hmc.hmc_obj) {
9575 ret_code = i40e_shutdown_lan_hmc(&pf->hw);
9576 if (ret_code)
9577 dev_warn(&pdev->dev,
9578 "Failed to destroy the HMC resources: %d\n",
9579 ret_code);
9580 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009581
9582 /* shutdown the adminq */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009583 ret_code = i40e_shutdown_adminq(&pf->hw);
9584 if (ret_code)
9585 dev_warn(&pdev->dev,
9586 "Failed to destroy the Admin Queue resources: %d\n",
9587 ret_code);
9588
9589 /* Clear all dynamic memory lists of rings, q_vectors, and VSIs */
9590 i40e_clear_interrupt_scheme(pf);
Mitch Williams505682c2014-05-20 08:01:37 +00009591 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009592 if (pf->vsi[i]) {
9593 i40e_vsi_clear_rings(pf->vsi[i]);
9594 i40e_vsi_clear(pf->vsi[i]);
9595 pf->vsi[i] = NULL;
9596 }
9597 }
9598
9599 for (i = 0; i < I40E_MAX_VEB; i++) {
9600 kfree(pf->veb[i]);
9601 pf->veb[i] = NULL;
9602 }
9603
9604 kfree(pf->qp_pile);
9605 kfree(pf->irq_pile);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009606 kfree(pf->vsi);
9607
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009608 iounmap(pf->hw.hw_addr);
9609 kfree(pf);
9610 pci_release_selected_regions(pdev,
9611 pci_select_bars(pdev, IORESOURCE_MEM));
9612
9613 pci_disable_pcie_error_reporting(pdev);
9614 pci_disable_device(pdev);
9615}
9616
9617/**
9618 * i40e_pci_error_detected - warning that something funky happened in PCI land
9619 * @pdev: PCI device information struct
9620 *
9621 * Called to warn that something happened and the error handling steps
9622 * are in progress. Allows the driver to quiesce things, be ready for
9623 * remediation.
9624 **/
9625static pci_ers_result_t i40e_pci_error_detected(struct pci_dev *pdev,
9626 enum pci_channel_state error)
9627{
9628 struct i40e_pf *pf = pci_get_drvdata(pdev);
9629
9630 dev_info(&pdev->dev, "%s: error %d\n", __func__, error);
9631
9632 /* shutdown all operations */
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009633 if (!test_bit(__I40E_SUSPENDED, &pf->state)) {
9634 rtnl_lock();
9635 i40e_prep_for_reset(pf);
9636 rtnl_unlock();
9637 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009638
9639 /* Request a slot reset */
9640 return PCI_ERS_RESULT_NEED_RESET;
9641}
9642
9643/**
9644 * i40e_pci_error_slot_reset - a PCI slot reset just happened
9645 * @pdev: PCI device information struct
9646 *
9647 * Called to find if the driver can work with the device now that
9648 * the pci slot has been reset. If a basic connection seems good
9649 * (registers are readable and have sane content) then return a
9650 * happy little PCI_ERS_RESULT_xxx.
9651 **/
9652static pci_ers_result_t i40e_pci_error_slot_reset(struct pci_dev *pdev)
9653{
9654 struct i40e_pf *pf = pci_get_drvdata(pdev);
9655 pci_ers_result_t result;
9656 int err;
9657 u32 reg;
9658
9659 dev_info(&pdev->dev, "%s\n", __func__);
9660 if (pci_enable_device_mem(pdev)) {
9661 dev_info(&pdev->dev,
9662 "Cannot re-enable PCI device after reset.\n");
9663 result = PCI_ERS_RESULT_DISCONNECT;
9664 } else {
9665 pci_set_master(pdev);
9666 pci_restore_state(pdev);
9667 pci_save_state(pdev);
9668 pci_wake_from_d3(pdev, false);
9669
9670 reg = rd32(&pf->hw, I40E_GLGEN_RTRIG);
9671 if (reg == 0)
9672 result = PCI_ERS_RESULT_RECOVERED;
9673 else
9674 result = PCI_ERS_RESULT_DISCONNECT;
9675 }
9676
9677 err = pci_cleanup_aer_uncorrect_error_status(pdev);
9678 if (err) {
9679 dev_info(&pdev->dev,
9680 "pci_cleanup_aer_uncorrect_error_status failed 0x%0x\n",
9681 err);
9682 /* non-fatal, continue */
9683 }
9684
9685 return result;
9686}
9687
9688/**
9689 * i40e_pci_error_resume - restart operations after PCI error recovery
9690 * @pdev: PCI device information struct
9691 *
9692 * Called to allow the driver to bring things back up after PCI error
9693 * and/or reset recovery has finished.
9694 **/
9695static void i40e_pci_error_resume(struct pci_dev *pdev)
9696{
9697 struct i40e_pf *pf = pci_get_drvdata(pdev);
9698
9699 dev_info(&pdev->dev, "%s\n", __func__);
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009700 if (test_bit(__I40E_SUSPENDED, &pf->state))
9701 return;
9702
9703 rtnl_lock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009704 i40e_handle_reset_warning(pf);
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009705 rtnl_lock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009706}
9707
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009708/**
9709 * i40e_shutdown - PCI callback for shutting down
9710 * @pdev: PCI device information struct
9711 **/
9712static void i40e_shutdown(struct pci_dev *pdev)
9713{
9714 struct i40e_pf *pf = pci_get_drvdata(pdev);
Shannon Nelson8e2773a2013-11-28 06:39:22 +00009715 struct i40e_hw *hw = &pf->hw;
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009716
9717 set_bit(__I40E_SUSPENDED, &pf->state);
9718 set_bit(__I40E_DOWN, &pf->state);
9719 rtnl_lock();
9720 i40e_prep_for_reset(pf);
9721 rtnl_unlock();
9722
Shannon Nelson8e2773a2013-11-28 06:39:22 +00009723 wr32(hw, I40E_PFPM_APM, (pf->wol_en ? I40E_PFPM_APM_APME_MASK : 0));
9724 wr32(hw, I40E_PFPM_WUFC, (pf->wol_en ? I40E_PFPM_WUFC_MAG_MASK : 0));
9725
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009726 if (system_state == SYSTEM_POWER_OFF) {
Shannon Nelson8e2773a2013-11-28 06:39:22 +00009727 pci_wake_from_d3(pdev, pf->wol_en);
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009728 pci_set_power_state(pdev, PCI_D3hot);
9729 }
9730}
9731
9732#ifdef CONFIG_PM
9733/**
9734 * i40e_suspend - PCI callback for moving to D3
9735 * @pdev: PCI device information struct
9736 **/
9737static int i40e_suspend(struct pci_dev *pdev, pm_message_t state)
9738{
9739 struct i40e_pf *pf = pci_get_drvdata(pdev);
Shannon Nelson8e2773a2013-11-28 06:39:22 +00009740 struct i40e_hw *hw = &pf->hw;
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009741
9742 set_bit(__I40E_SUSPENDED, &pf->state);
9743 set_bit(__I40E_DOWN, &pf->state);
Mitch Williams88086e5d2015-01-09 11:18:19 +00009744 del_timer_sync(&pf->service_timer);
9745 cancel_work_sync(&pf->service_task);
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009746 rtnl_lock();
9747 i40e_prep_for_reset(pf);
9748 rtnl_unlock();
9749
Shannon Nelson8e2773a2013-11-28 06:39:22 +00009750 wr32(hw, I40E_PFPM_APM, (pf->wol_en ? I40E_PFPM_APM_APME_MASK : 0));
9751 wr32(hw, I40E_PFPM_WUFC, (pf->wol_en ? I40E_PFPM_WUFC_MAG_MASK : 0));
9752
9753 pci_wake_from_d3(pdev, pf->wol_en);
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009754 pci_set_power_state(pdev, PCI_D3hot);
9755
9756 return 0;
9757}
9758
9759/**
9760 * i40e_resume - PCI callback for waking up from D3
9761 * @pdev: PCI device information struct
9762 **/
9763static int i40e_resume(struct pci_dev *pdev)
9764{
9765 struct i40e_pf *pf = pci_get_drvdata(pdev);
9766 u32 err;
9767
9768 pci_set_power_state(pdev, PCI_D0);
9769 pci_restore_state(pdev);
9770 /* pci_restore_state() clears dev->state_saves, so
9771 * call pci_save_state() again to restore it.
9772 */
9773 pci_save_state(pdev);
9774
9775 err = pci_enable_device_mem(pdev);
9776 if (err) {
9777 dev_err(&pdev->dev,
9778 "%s: Cannot enable PCI device from suspend\n",
9779 __func__);
9780 return err;
9781 }
9782 pci_set_master(pdev);
9783
9784 /* no wakeup events while running */
9785 pci_wake_from_d3(pdev, false);
9786
9787 /* handling the reset will rebuild the device state */
9788 if (test_and_clear_bit(__I40E_SUSPENDED, &pf->state)) {
9789 clear_bit(__I40E_DOWN, &pf->state);
9790 rtnl_lock();
9791 i40e_reset_and_rebuild(pf, false);
9792 rtnl_unlock();
9793 }
9794
9795 return 0;
9796}
9797
9798#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009799static const struct pci_error_handlers i40e_err_handler = {
9800 .error_detected = i40e_pci_error_detected,
9801 .slot_reset = i40e_pci_error_slot_reset,
9802 .resume = i40e_pci_error_resume,
9803};
9804
9805static struct pci_driver i40e_driver = {
9806 .name = i40e_driver_name,
9807 .id_table = i40e_pci_tbl,
9808 .probe = i40e_probe,
9809 .remove = i40e_remove,
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009810#ifdef CONFIG_PM
9811 .suspend = i40e_suspend,
9812 .resume = i40e_resume,
9813#endif
9814 .shutdown = i40e_shutdown,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009815 .err_handler = &i40e_err_handler,
9816 .sriov_configure = i40e_pci_sriov_configure,
9817};
9818
9819/**
9820 * i40e_init_module - Driver registration routine
9821 *
9822 * i40e_init_module is the first routine called when the driver is
9823 * loaded. All it does is register with the PCI subsystem.
9824 **/
9825static int __init i40e_init_module(void)
9826{
9827 pr_info("%s: %s - version %s\n", i40e_driver_name,
9828 i40e_driver_string, i40e_driver_version_str);
9829 pr_info("%s: %s\n", i40e_driver_name, i40e_copyright);
9830 i40e_dbg_init();
9831 return pci_register_driver(&i40e_driver);
9832}
9833module_init(i40e_init_module);
9834
9835/**
9836 * i40e_exit_module - Driver exit cleanup routine
9837 *
9838 * i40e_exit_module is called just before the driver is removed
9839 * from memory.
9840 **/
9841static void __exit i40e_exit_module(void)
9842{
9843 pci_unregister_driver(&i40e_driver);
9844 i40e_dbg_exit();
9845}
9846module_exit(i40e_exit_module);