blob: c3107dca24da38eb2c4ad1dc80a40d3fa75f6aef [file] [log] [blame]
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001/*******************************************************************************
2 *
3 * Intel Ethernet Controller XL710 Family Linux Driver
Greg Rosedc641b72013-12-18 13:45:51 +00004 * Copyright(c) 2013 - 2014 Intel Corporation.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms and conditions of the GNU General Public License,
8 * version 2, as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * more details.
14 *
Greg Rosedc641b72013-12-18 13:45:51 +000015 * You should have received a copy of the GNU General Public License along
16 * with this program. If not, see <http://www.gnu.org/licenses/>.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000017 *
18 * The full GNU General Public License is included in this distribution in
19 * the file called "COPYING".
20 *
21 * Contact Information:
22 * e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
23 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
24 *
25 ******************************************************************************/
26
27/* Local includes */
28#include "i40e.h"
Shannon Nelson4eb3f762014-03-06 08:59:58 +000029#include "i40e_diag.h"
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +000030#ifdef CONFIG_I40E_VXLAN
31#include <net/vxlan.h>
32#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000033
34const char i40e_driver_name[] = "i40e";
35static const char i40e_driver_string[] =
36 "Intel(R) Ethernet Connection XL710 Network Driver";
37
38#define DRV_KERN "-k"
39
Catherine Sullivane8e724d2014-07-10 07:58:26 +000040#define DRV_VERSION_MAJOR 1
Catherine Sullivan7bda87c2014-11-11 03:15:06 +000041#define DRV_VERSION_MINOR 1
42#define DRV_VERSION_BUILD 23
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000043#define DRV_VERSION __stringify(DRV_VERSION_MAJOR) "." \
44 __stringify(DRV_VERSION_MINOR) "." \
45 __stringify(DRV_VERSION_BUILD) DRV_KERN
46const char i40e_driver_version_str[] = DRV_VERSION;
Jesse Brandeburg8fb905b2014-01-17 15:36:33 -080047static const char i40e_copyright[] = "Copyright (c) 2013 - 2014 Intel Corporation.";
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000048
49/* a bit of forward declarations */
50static void i40e_vsi_reinit_locked(struct i40e_vsi *vsi);
51static void i40e_handle_reset_warning(struct i40e_pf *pf);
52static int i40e_add_vsi(struct i40e_vsi *vsi);
53static int i40e_add_veb(struct i40e_veb *veb, struct i40e_vsi *vsi);
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +000054static int i40e_setup_pf_switch(struct i40e_pf *pf, bool reinit);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000055static int i40e_setup_misc_vector(struct i40e_pf *pf);
56static void i40e_determine_queue_usage(struct i40e_pf *pf);
57static int i40e_setup_pf_filter_control(struct i40e_pf *pf);
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080058static void i40e_fdir_sb_setup(struct i40e_pf *pf);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -080059static int i40e_veb_get_bw_info(struct i40e_veb *veb);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000060
61/* i40e_pci_tbl - PCI Device ID Table
62 *
63 * Last entry must be all 0s
64 *
65 * { Vendor ID, Device ID, SubVendor ID, SubDevice ID,
66 * Class, Class Mask, private data (not used) }
67 */
Benoit Taine9baa3c32014-08-08 15:56:03 +020068static const struct pci_device_id i40e_pci_tbl[] = {
Shannon Nelsonab600852014-01-17 15:36:39 -080069 {PCI_VDEVICE(INTEL, I40E_DEV_ID_SFP_XL710), 0},
Shannon Nelsonab600852014-01-17 15:36:39 -080070 {PCI_VDEVICE(INTEL, I40E_DEV_ID_QEMU), 0},
71 {PCI_VDEVICE(INTEL, I40E_DEV_ID_KX_A), 0},
72 {PCI_VDEVICE(INTEL, I40E_DEV_ID_KX_B), 0},
73 {PCI_VDEVICE(INTEL, I40E_DEV_ID_KX_C), 0},
Shannon Nelsonab600852014-01-17 15:36:39 -080074 {PCI_VDEVICE(INTEL, I40E_DEV_ID_QSFP_A), 0},
75 {PCI_VDEVICE(INTEL, I40E_DEV_ID_QSFP_B), 0},
76 {PCI_VDEVICE(INTEL, I40E_DEV_ID_QSFP_C), 0},
Mitch Williams5960d332014-09-13 07:40:47 +000077 {PCI_VDEVICE(INTEL, I40E_DEV_ID_10G_BASE_T), 0},
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000078 /* required last entry */
79 {0, }
80};
81MODULE_DEVICE_TABLE(pci, i40e_pci_tbl);
82
83#define I40E_MAX_VF_COUNT 128
84static int debug = -1;
85module_param(debug, int, 0);
86MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all)");
87
88MODULE_AUTHOR("Intel Corporation, <e1000-devel@lists.sourceforge.net>");
89MODULE_DESCRIPTION("Intel(R) Ethernet Connection XL710 Network Driver");
90MODULE_LICENSE("GPL");
91MODULE_VERSION(DRV_VERSION);
92
93/**
94 * i40e_allocate_dma_mem_d - OS specific memory alloc for shared code
95 * @hw: pointer to the HW structure
96 * @mem: ptr to mem struct to fill out
97 * @size: size of memory requested
98 * @alignment: what to align the allocation to
99 **/
100int i40e_allocate_dma_mem_d(struct i40e_hw *hw, struct i40e_dma_mem *mem,
101 u64 size, u32 alignment)
102{
103 struct i40e_pf *pf = (struct i40e_pf *)hw->back;
104
105 mem->size = ALIGN(size, alignment);
106 mem->va = dma_zalloc_coherent(&pf->pdev->dev, mem->size,
107 &mem->pa, GFP_KERNEL);
Jesse Brandeburg93bc73b2013-09-13 08:23:18 +0000108 if (!mem->va)
109 return -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000110
Jesse Brandeburg93bc73b2013-09-13 08:23:18 +0000111 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000112}
113
114/**
115 * i40e_free_dma_mem_d - OS specific memory free for shared code
116 * @hw: pointer to the HW structure
117 * @mem: ptr to mem struct to free
118 **/
119int i40e_free_dma_mem_d(struct i40e_hw *hw, struct i40e_dma_mem *mem)
120{
121 struct i40e_pf *pf = (struct i40e_pf *)hw->back;
122
123 dma_free_coherent(&pf->pdev->dev, mem->size, mem->va, mem->pa);
124 mem->va = NULL;
125 mem->pa = 0;
126 mem->size = 0;
127
128 return 0;
129}
130
131/**
132 * i40e_allocate_virt_mem_d - OS specific memory alloc for shared code
133 * @hw: pointer to the HW structure
134 * @mem: ptr to mem struct to fill out
135 * @size: size of memory requested
136 **/
137int i40e_allocate_virt_mem_d(struct i40e_hw *hw, struct i40e_virt_mem *mem,
138 u32 size)
139{
140 mem->size = size;
141 mem->va = kzalloc(size, GFP_KERNEL);
142
Jesse Brandeburg93bc73b2013-09-13 08:23:18 +0000143 if (!mem->va)
144 return -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000145
Jesse Brandeburg93bc73b2013-09-13 08:23:18 +0000146 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000147}
148
149/**
150 * i40e_free_virt_mem_d - OS specific memory free for shared code
151 * @hw: pointer to the HW structure
152 * @mem: ptr to mem struct to free
153 **/
154int i40e_free_virt_mem_d(struct i40e_hw *hw, struct i40e_virt_mem *mem)
155{
156 /* it's ok to kfree a NULL pointer */
157 kfree(mem->va);
158 mem->va = NULL;
159 mem->size = 0;
160
161 return 0;
162}
163
164/**
165 * i40e_get_lump - find a lump of free generic resource
166 * @pf: board private structure
167 * @pile: the pile of resource to search
168 * @needed: the number of items needed
169 * @id: an owner id to stick on the items assigned
170 *
171 * Returns the base item index of the lump, or negative for error
172 *
173 * The search_hint trick and lack of advanced fit-finding only work
174 * because we're highly likely to have all the same size lump requests.
175 * Linear search time and any fragmentation should be minimal.
176 **/
177static int i40e_get_lump(struct i40e_pf *pf, struct i40e_lump_tracking *pile,
178 u16 needed, u16 id)
179{
180 int ret = -ENOMEM;
Jesse Brandeburgddf434a2013-09-13 08:23:19 +0000181 int i, j;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000182
183 if (!pile || needed == 0 || id >= I40E_PILE_VALID_BIT) {
184 dev_info(&pf->pdev->dev,
185 "param err: pile=%p needed=%d id=0x%04x\n",
186 pile, needed, id);
187 return -EINVAL;
188 }
189
190 /* start the linear search with an imperfect hint */
191 i = pile->search_hint;
Jesse Brandeburgddf434a2013-09-13 08:23:19 +0000192 while (i < pile->num_entries) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000193 /* skip already allocated entries */
194 if (pile->list[i] & I40E_PILE_VALID_BIT) {
195 i++;
196 continue;
197 }
198
199 /* do we have enough in this lump? */
200 for (j = 0; (j < needed) && ((i+j) < pile->num_entries); j++) {
201 if (pile->list[i+j] & I40E_PILE_VALID_BIT)
202 break;
203 }
204
205 if (j == needed) {
206 /* there was enough, so assign it to the requestor */
207 for (j = 0; j < needed; j++)
208 pile->list[i+j] = id | I40E_PILE_VALID_BIT;
209 ret = i;
210 pile->search_hint = i + j;
Jesse Brandeburgddf434a2013-09-13 08:23:19 +0000211 break;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000212 } else {
213 /* not enough, so skip over it and continue looking */
214 i += j;
215 }
216 }
217
218 return ret;
219}
220
221/**
222 * i40e_put_lump - return a lump of generic resource
223 * @pile: the pile of resource to search
224 * @index: the base item index
225 * @id: the owner id of the items assigned
226 *
227 * Returns the count of items in the lump
228 **/
229static int i40e_put_lump(struct i40e_lump_tracking *pile, u16 index, u16 id)
230{
231 int valid_id = (id | I40E_PILE_VALID_BIT);
232 int count = 0;
233 int i;
234
235 if (!pile || index >= pile->num_entries)
236 return -EINVAL;
237
238 for (i = index;
239 i < pile->num_entries && pile->list[i] == valid_id;
240 i++) {
241 pile->list[i] = 0;
242 count++;
243 }
244
245 if (count && index < pile->search_hint)
246 pile->search_hint = index;
247
248 return count;
249}
250
251/**
252 * i40e_service_event_schedule - Schedule the service task to wake up
253 * @pf: board private structure
254 *
255 * If not already scheduled, this puts the task into the work queue
256 **/
257static void i40e_service_event_schedule(struct i40e_pf *pf)
258{
259 if (!test_bit(__I40E_DOWN, &pf->state) &&
260 !test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state) &&
261 !test_and_set_bit(__I40E_SERVICE_SCHED, &pf->state))
262 schedule_work(&pf->service_task);
263}
264
265/**
266 * i40e_tx_timeout - Respond to a Tx Hang
267 * @netdev: network interface device structure
268 *
269 * If any port has noticed a Tx timeout, it is likely that the whole
270 * device is munged, not just the one netdev port, so go for the full
271 * reset.
272 **/
Vasu Dev38e00432014-08-01 13:27:03 -0700273#ifdef I40E_FCOE
274void i40e_tx_timeout(struct net_device *netdev)
275#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000276static void i40e_tx_timeout(struct net_device *netdev)
Vasu Dev38e00432014-08-01 13:27:03 -0700277#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000278{
279 struct i40e_netdev_priv *np = netdev_priv(netdev);
280 struct i40e_vsi *vsi = np->vsi;
281 struct i40e_pf *pf = vsi->back;
282
283 pf->tx_timeout_count++;
284
285 if (time_after(jiffies, (pf->tx_timeout_last_recovery + HZ*20)))
Anjali Singhai Jain327fe042014-06-04 01:23:26 +0000286 pf->tx_timeout_recovery_level = 1;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000287 pf->tx_timeout_last_recovery = jiffies;
288 netdev_info(netdev, "tx_timeout recovery level %d\n",
289 pf->tx_timeout_recovery_level);
290
291 switch (pf->tx_timeout_recovery_level) {
292 case 0:
293 /* disable and re-enable queues for the VSI */
294 if (in_interrupt()) {
295 set_bit(__I40E_REINIT_REQUESTED, &pf->state);
296 set_bit(__I40E_REINIT_REQUESTED, &vsi->state);
297 } else {
298 i40e_vsi_reinit_locked(vsi);
299 }
300 break;
301 case 1:
302 set_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
303 break;
304 case 2:
305 set_bit(__I40E_CORE_RESET_REQUESTED, &pf->state);
306 break;
307 case 3:
308 set_bit(__I40E_GLOBAL_RESET_REQUESTED, &pf->state);
309 break;
310 default:
311 netdev_err(netdev, "tx_timeout recovery unsuccessful\n");
Neerav Parikhb5d06f02014-06-03 23:50:17 +0000312 set_bit(__I40E_DOWN_REQUESTED, &pf->state);
313 set_bit(__I40E_DOWN_REQUESTED, &vsi->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000314 break;
315 }
316 i40e_service_event_schedule(pf);
317 pf->tx_timeout_recovery_level++;
318}
319
320/**
321 * i40e_release_rx_desc - Store the new tail and head values
322 * @rx_ring: ring to bump
323 * @val: new head index
324 **/
325static inline void i40e_release_rx_desc(struct i40e_ring *rx_ring, u32 val)
326{
327 rx_ring->next_to_use = val;
328
329 /* Force memory writes to complete before letting h/w
330 * know there are new descriptors to fetch. (Only
331 * applicable for weak-ordered memory model archs,
332 * such as IA-64).
333 */
334 wmb();
335 writel(val, rx_ring->tail);
336}
337
338/**
339 * i40e_get_vsi_stats_struct - Get System Network Statistics
340 * @vsi: the VSI we care about
341 *
342 * Returns the address of the device statistics structure.
343 * The statistics are actually updated from the service task.
344 **/
345struct rtnl_link_stats64 *i40e_get_vsi_stats_struct(struct i40e_vsi *vsi)
346{
347 return &vsi->net_stats;
348}
349
350/**
351 * i40e_get_netdev_stats_struct - Get statistics for netdev interface
352 * @netdev: network interface device structure
353 *
354 * Returns the address of the device statistics structure.
355 * The statistics are actually updated from the service task.
356 **/
Vasu Dev38e00432014-08-01 13:27:03 -0700357#ifdef I40E_FCOE
358struct rtnl_link_stats64 *i40e_get_netdev_stats_struct(
359 struct net_device *netdev,
360 struct rtnl_link_stats64 *stats)
361#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000362static struct rtnl_link_stats64 *i40e_get_netdev_stats_struct(
363 struct net_device *netdev,
Alexander Duyck980e9b12013-09-28 06:01:03 +0000364 struct rtnl_link_stats64 *stats)
Vasu Dev38e00432014-08-01 13:27:03 -0700365#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000366{
367 struct i40e_netdev_priv *np = netdev_priv(netdev);
Akeem G Abodunrine7046ee2014-04-09 05:58:58 +0000368 struct i40e_ring *tx_ring, *rx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000369 struct i40e_vsi *vsi = np->vsi;
Alexander Duyck980e9b12013-09-28 06:01:03 +0000370 struct rtnl_link_stats64 *vsi_stats = i40e_get_vsi_stats_struct(vsi);
371 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000372
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +0000373 if (test_bit(__I40E_DOWN, &vsi->state))
374 return stats;
375
Jesse Brandeburg3c325ce2013-12-14 03:26:45 -0800376 if (!vsi->tx_rings)
377 return stats;
378
Alexander Duyck980e9b12013-09-28 06:01:03 +0000379 rcu_read_lock();
380 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck980e9b12013-09-28 06:01:03 +0000381 u64 bytes, packets;
382 unsigned int start;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000383
Alexander Duyck980e9b12013-09-28 06:01:03 +0000384 tx_ring = ACCESS_ONCE(vsi->tx_rings[i]);
385 if (!tx_ring)
386 continue;
387
388 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -0700389 start = u64_stats_fetch_begin_irq(&tx_ring->syncp);
Alexander Duyck980e9b12013-09-28 06:01:03 +0000390 packets = tx_ring->stats.packets;
391 bytes = tx_ring->stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -0700392 } while (u64_stats_fetch_retry_irq(&tx_ring->syncp, start));
Alexander Duyck980e9b12013-09-28 06:01:03 +0000393
394 stats->tx_packets += packets;
395 stats->tx_bytes += bytes;
396 rx_ring = &tx_ring[1];
397
398 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -0700399 start = u64_stats_fetch_begin_irq(&rx_ring->syncp);
Alexander Duyck980e9b12013-09-28 06:01:03 +0000400 packets = rx_ring->stats.packets;
401 bytes = rx_ring->stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -0700402 } while (u64_stats_fetch_retry_irq(&rx_ring->syncp, start));
Alexander Duyck980e9b12013-09-28 06:01:03 +0000403
404 stats->rx_packets += packets;
405 stats->rx_bytes += bytes;
406 }
407 rcu_read_unlock();
408
Akeem G Abodunrina5282f42014-05-10 04:49:03 +0000409 /* following stats updated by i40e_watchdog_subtask() */
Alexander Duyck980e9b12013-09-28 06:01:03 +0000410 stats->multicast = vsi_stats->multicast;
411 stats->tx_errors = vsi_stats->tx_errors;
412 stats->tx_dropped = vsi_stats->tx_dropped;
413 stats->rx_errors = vsi_stats->rx_errors;
414 stats->rx_crc_errors = vsi_stats->rx_crc_errors;
415 stats->rx_length_errors = vsi_stats->rx_length_errors;
416
417 return stats;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000418}
419
420/**
421 * i40e_vsi_reset_stats - Resets all stats of the given vsi
422 * @vsi: the VSI to have its stats reset
423 **/
424void i40e_vsi_reset_stats(struct i40e_vsi *vsi)
425{
426 struct rtnl_link_stats64 *ns;
427 int i;
428
429 if (!vsi)
430 return;
431
432 ns = i40e_get_vsi_stats_struct(vsi);
433 memset(ns, 0, sizeof(*ns));
434 memset(&vsi->net_stats_offsets, 0, sizeof(vsi->net_stats_offsets));
435 memset(&vsi->eth_stats, 0, sizeof(vsi->eth_stats));
436 memset(&vsi->eth_stats_offsets, 0, sizeof(vsi->eth_stats_offsets));
Greg Rose8e9dca52013-12-18 13:45:53 +0000437 if (vsi->rx_rings && vsi->rx_rings[0]) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000438 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e15b2013-09-28 06:00:58 +0000439 memset(&vsi->rx_rings[i]->stats, 0 ,
440 sizeof(vsi->rx_rings[i]->stats));
441 memset(&vsi->rx_rings[i]->rx_stats, 0 ,
442 sizeof(vsi->rx_rings[i]->rx_stats));
443 memset(&vsi->tx_rings[i]->stats, 0 ,
444 sizeof(vsi->tx_rings[i]->stats));
445 memset(&vsi->tx_rings[i]->tx_stats, 0,
446 sizeof(vsi->tx_rings[i]->tx_stats));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000447 }
Greg Rose8e9dca52013-12-18 13:45:53 +0000448 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000449 vsi->stat_offsets_loaded = false;
450}
451
452/**
453 * i40e_pf_reset_stats - Reset all of the stats for the given pf
454 * @pf: the PF to be reset
455 **/
456void i40e_pf_reset_stats(struct i40e_pf *pf)
457{
Shannon Nelsone91fdf72014-06-03 23:50:18 +0000458 int i;
459
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000460 memset(&pf->stats, 0, sizeof(pf->stats));
461 memset(&pf->stats_offsets, 0, sizeof(pf->stats_offsets));
462 pf->stat_offsets_loaded = false;
Shannon Nelsone91fdf72014-06-03 23:50:18 +0000463
464 for (i = 0; i < I40E_MAX_VEB; i++) {
465 if (pf->veb[i]) {
466 memset(&pf->veb[i]->stats, 0,
467 sizeof(pf->veb[i]->stats));
468 memset(&pf->veb[i]->stats_offsets, 0,
469 sizeof(pf->veb[i]->stats_offsets));
470 pf->veb[i]->stat_offsets_loaded = false;
471 }
472 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000473}
474
475/**
476 * i40e_stat_update48 - read and update a 48 bit stat from the chip
477 * @hw: ptr to the hardware info
478 * @hireg: the high 32 bit reg to read
479 * @loreg: the low 32 bit reg to read
480 * @offset_loaded: has the initial offset been loaded yet
481 * @offset: ptr to current offset value
482 * @stat: ptr to the stat
483 *
484 * Since the device stats are not reset at PFReset, they likely will not
485 * be zeroed when the driver starts. We'll save the first values read
486 * and use them as offsets to be subtracted from the raw values in order
487 * to report stats that count from zero. In the process, we also manage
488 * the potential roll-over.
489 **/
490static void i40e_stat_update48(struct i40e_hw *hw, u32 hireg, u32 loreg,
491 bool offset_loaded, u64 *offset, u64 *stat)
492{
493 u64 new_data;
494
Shannon Nelsonab600852014-01-17 15:36:39 -0800495 if (hw->device_id == I40E_DEV_ID_QEMU) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000496 new_data = rd32(hw, loreg);
497 new_data |= ((u64)(rd32(hw, hireg) & 0xFFFF)) << 32;
498 } else {
499 new_data = rd64(hw, loreg);
500 }
501 if (!offset_loaded)
502 *offset = new_data;
503 if (likely(new_data >= *offset))
504 *stat = new_data - *offset;
505 else
506 *stat = (new_data + ((u64)1 << 48)) - *offset;
507 *stat &= 0xFFFFFFFFFFFFULL;
508}
509
510/**
511 * i40e_stat_update32 - read and update a 32 bit stat from the chip
512 * @hw: ptr to the hardware info
513 * @reg: the hw reg to read
514 * @offset_loaded: has the initial offset been loaded yet
515 * @offset: ptr to current offset value
516 * @stat: ptr to the stat
517 **/
518static void i40e_stat_update32(struct i40e_hw *hw, u32 reg,
519 bool offset_loaded, u64 *offset, u64 *stat)
520{
521 u32 new_data;
522
523 new_data = rd32(hw, reg);
524 if (!offset_loaded)
525 *offset = new_data;
526 if (likely(new_data >= *offset))
527 *stat = (u32)(new_data - *offset);
528 else
529 *stat = (u32)((new_data + ((u64)1 << 32)) - *offset);
530}
531
532/**
533 * i40e_update_eth_stats - Update VSI-specific ethernet statistics counters.
534 * @vsi: the VSI to be updated
535 **/
536void i40e_update_eth_stats(struct i40e_vsi *vsi)
537{
538 int stat_idx = le16_to_cpu(vsi->info.stat_counter_idx);
539 struct i40e_pf *pf = vsi->back;
540 struct i40e_hw *hw = &pf->hw;
541 struct i40e_eth_stats *oes;
542 struct i40e_eth_stats *es; /* device's eth stats */
543
544 es = &vsi->eth_stats;
545 oes = &vsi->eth_stats_offsets;
546
547 /* Gather up the stats that the hw collects */
548 i40e_stat_update32(hw, I40E_GLV_TEPC(stat_idx),
549 vsi->stat_offsets_loaded,
550 &oes->tx_errors, &es->tx_errors);
551 i40e_stat_update32(hw, I40E_GLV_RDPC(stat_idx),
552 vsi->stat_offsets_loaded,
553 &oes->rx_discards, &es->rx_discards);
Shannon Nelson41a9e552014-04-23 04:50:20 +0000554 i40e_stat_update32(hw, I40E_GLV_RUPP(stat_idx),
555 vsi->stat_offsets_loaded,
556 &oes->rx_unknown_protocol, &es->rx_unknown_protocol);
557 i40e_stat_update32(hw, I40E_GLV_TEPC(stat_idx),
558 vsi->stat_offsets_loaded,
559 &oes->tx_errors, &es->tx_errors);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000560
561 i40e_stat_update48(hw, I40E_GLV_GORCH(stat_idx),
562 I40E_GLV_GORCL(stat_idx),
563 vsi->stat_offsets_loaded,
564 &oes->rx_bytes, &es->rx_bytes);
565 i40e_stat_update48(hw, I40E_GLV_UPRCH(stat_idx),
566 I40E_GLV_UPRCL(stat_idx),
567 vsi->stat_offsets_loaded,
568 &oes->rx_unicast, &es->rx_unicast);
569 i40e_stat_update48(hw, I40E_GLV_MPRCH(stat_idx),
570 I40E_GLV_MPRCL(stat_idx),
571 vsi->stat_offsets_loaded,
572 &oes->rx_multicast, &es->rx_multicast);
573 i40e_stat_update48(hw, I40E_GLV_BPRCH(stat_idx),
574 I40E_GLV_BPRCL(stat_idx),
575 vsi->stat_offsets_loaded,
576 &oes->rx_broadcast, &es->rx_broadcast);
577
578 i40e_stat_update48(hw, I40E_GLV_GOTCH(stat_idx),
579 I40E_GLV_GOTCL(stat_idx),
580 vsi->stat_offsets_loaded,
581 &oes->tx_bytes, &es->tx_bytes);
582 i40e_stat_update48(hw, I40E_GLV_UPTCH(stat_idx),
583 I40E_GLV_UPTCL(stat_idx),
584 vsi->stat_offsets_loaded,
585 &oes->tx_unicast, &es->tx_unicast);
586 i40e_stat_update48(hw, I40E_GLV_MPTCH(stat_idx),
587 I40E_GLV_MPTCL(stat_idx),
588 vsi->stat_offsets_loaded,
589 &oes->tx_multicast, &es->tx_multicast);
590 i40e_stat_update48(hw, I40E_GLV_BPTCH(stat_idx),
591 I40E_GLV_BPTCL(stat_idx),
592 vsi->stat_offsets_loaded,
593 &oes->tx_broadcast, &es->tx_broadcast);
594 vsi->stat_offsets_loaded = true;
595}
596
597/**
598 * i40e_update_veb_stats - Update Switch component statistics
599 * @veb: the VEB being updated
600 **/
601static void i40e_update_veb_stats(struct i40e_veb *veb)
602{
603 struct i40e_pf *pf = veb->pf;
604 struct i40e_hw *hw = &pf->hw;
605 struct i40e_eth_stats *oes;
606 struct i40e_eth_stats *es; /* device's eth stats */
607 int idx = 0;
608
609 idx = veb->stats_idx;
610 es = &veb->stats;
611 oes = &veb->stats_offsets;
612
613 /* Gather up the stats that the hw collects */
614 i40e_stat_update32(hw, I40E_GLSW_TDPC(idx),
615 veb->stat_offsets_loaded,
616 &oes->tx_discards, &es->tx_discards);
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +0000617 if (hw->revision_id > 0)
618 i40e_stat_update32(hw, I40E_GLSW_RUPP(idx),
619 veb->stat_offsets_loaded,
620 &oes->rx_unknown_protocol,
621 &es->rx_unknown_protocol);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000622 i40e_stat_update48(hw, I40E_GLSW_GORCH(idx), I40E_GLSW_GORCL(idx),
623 veb->stat_offsets_loaded,
624 &oes->rx_bytes, &es->rx_bytes);
625 i40e_stat_update48(hw, I40E_GLSW_UPRCH(idx), I40E_GLSW_UPRCL(idx),
626 veb->stat_offsets_loaded,
627 &oes->rx_unicast, &es->rx_unicast);
628 i40e_stat_update48(hw, I40E_GLSW_MPRCH(idx), I40E_GLSW_MPRCL(idx),
629 veb->stat_offsets_loaded,
630 &oes->rx_multicast, &es->rx_multicast);
631 i40e_stat_update48(hw, I40E_GLSW_BPRCH(idx), I40E_GLSW_BPRCL(idx),
632 veb->stat_offsets_loaded,
633 &oes->rx_broadcast, &es->rx_broadcast);
634
635 i40e_stat_update48(hw, I40E_GLSW_GOTCH(idx), I40E_GLSW_GOTCL(idx),
636 veb->stat_offsets_loaded,
637 &oes->tx_bytes, &es->tx_bytes);
638 i40e_stat_update48(hw, I40E_GLSW_UPTCH(idx), I40E_GLSW_UPTCL(idx),
639 veb->stat_offsets_loaded,
640 &oes->tx_unicast, &es->tx_unicast);
641 i40e_stat_update48(hw, I40E_GLSW_MPTCH(idx), I40E_GLSW_MPTCL(idx),
642 veb->stat_offsets_loaded,
643 &oes->tx_multicast, &es->tx_multicast);
644 i40e_stat_update48(hw, I40E_GLSW_BPTCH(idx), I40E_GLSW_BPTCL(idx),
645 veb->stat_offsets_loaded,
646 &oes->tx_broadcast, &es->tx_broadcast);
647 veb->stat_offsets_loaded = true;
648}
649
Vasu Dev38e00432014-08-01 13:27:03 -0700650#ifdef I40E_FCOE
651/**
652 * i40e_update_fcoe_stats - Update FCoE-specific ethernet statistics counters.
653 * @vsi: the VSI that is capable of doing FCoE
654 **/
655static void i40e_update_fcoe_stats(struct i40e_vsi *vsi)
656{
657 struct i40e_pf *pf = vsi->back;
658 struct i40e_hw *hw = &pf->hw;
659 struct i40e_fcoe_stats *ofs;
660 struct i40e_fcoe_stats *fs; /* device's eth stats */
661 int idx;
662
663 if (vsi->type != I40E_VSI_FCOE)
664 return;
665
666 idx = (pf->pf_seid - I40E_BASE_PF_SEID) + I40E_FCOE_PF_STAT_OFFSET;
667 fs = &vsi->fcoe_stats;
668 ofs = &vsi->fcoe_stats_offsets;
669
670 i40e_stat_update32(hw, I40E_GL_FCOEPRC(idx),
671 vsi->fcoe_stat_offsets_loaded,
672 &ofs->rx_fcoe_packets, &fs->rx_fcoe_packets);
673 i40e_stat_update48(hw, I40E_GL_FCOEDWRCH(idx), I40E_GL_FCOEDWRCL(idx),
674 vsi->fcoe_stat_offsets_loaded,
675 &ofs->rx_fcoe_dwords, &fs->rx_fcoe_dwords);
676 i40e_stat_update32(hw, I40E_GL_FCOERPDC(idx),
677 vsi->fcoe_stat_offsets_loaded,
678 &ofs->rx_fcoe_dropped, &fs->rx_fcoe_dropped);
679 i40e_stat_update32(hw, I40E_GL_FCOEPTC(idx),
680 vsi->fcoe_stat_offsets_loaded,
681 &ofs->tx_fcoe_packets, &fs->tx_fcoe_packets);
682 i40e_stat_update48(hw, I40E_GL_FCOEDWTCH(idx), I40E_GL_FCOEDWTCL(idx),
683 vsi->fcoe_stat_offsets_loaded,
684 &ofs->tx_fcoe_dwords, &fs->tx_fcoe_dwords);
685 i40e_stat_update32(hw, I40E_GL_FCOECRC(idx),
686 vsi->fcoe_stat_offsets_loaded,
687 &ofs->fcoe_bad_fccrc, &fs->fcoe_bad_fccrc);
688 i40e_stat_update32(hw, I40E_GL_FCOELAST(idx),
689 vsi->fcoe_stat_offsets_loaded,
690 &ofs->fcoe_last_error, &fs->fcoe_last_error);
691 i40e_stat_update32(hw, I40E_GL_FCOEDDPC(idx),
692 vsi->fcoe_stat_offsets_loaded,
693 &ofs->fcoe_ddp_count, &fs->fcoe_ddp_count);
694
695 vsi->fcoe_stat_offsets_loaded = true;
696}
697
698#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000699/**
700 * i40e_update_link_xoff_rx - Update XOFF received in link flow control mode
701 * @pf: the corresponding PF
702 *
703 * Update the Rx XOFF counter (PAUSE frames) in link flow control mode
704 **/
705static void i40e_update_link_xoff_rx(struct i40e_pf *pf)
706{
707 struct i40e_hw_port_stats *osd = &pf->stats_offsets;
708 struct i40e_hw_port_stats *nsd = &pf->stats;
709 struct i40e_hw *hw = &pf->hw;
710 u64 xoff = 0;
711 u16 i, v;
712
713 if ((hw->fc.current_mode != I40E_FC_FULL) &&
714 (hw->fc.current_mode != I40E_FC_RX_PAUSE))
715 return;
716
717 xoff = nsd->link_xoff_rx;
718 i40e_stat_update32(hw, I40E_GLPRT_LXOFFRXC(hw->port),
719 pf->stat_offsets_loaded,
720 &osd->link_xoff_rx, &nsd->link_xoff_rx);
721
722 /* No new LFC xoff rx */
723 if (!(nsd->link_xoff_rx - xoff))
724 return;
725
726 /* Clear the __I40E_HANG_CHECK_ARMED bit for all Tx rings */
Mitch Williams505682c2014-05-20 08:01:37 +0000727 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000728 struct i40e_vsi *vsi = pf->vsi[v];
729
Mitch Williamsddfda802014-05-10 04:49:10 +0000730 if (!vsi || !vsi->tx_rings[0])
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000731 continue;
732
733 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e15b2013-09-28 06:00:58 +0000734 struct i40e_ring *ring = vsi->tx_rings[i];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000735 clear_bit(__I40E_HANG_CHECK_ARMED, &ring->state);
736 }
737 }
738}
739
740/**
741 * i40e_update_prio_xoff_rx - Update XOFF received in PFC mode
742 * @pf: the corresponding PF
743 *
744 * Update the Rx XOFF counter (PAUSE frames) in PFC mode
745 **/
746static void i40e_update_prio_xoff_rx(struct i40e_pf *pf)
747{
748 struct i40e_hw_port_stats *osd = &pf->stats_offsets;
749 struct i40e_hw_port_stats *nsd = &pf->stats;
750 bool xoff[I40E_MAX_TRAFFIC_CLASS] = {false};
751 struct i40e_dcbx_config *dcb_cfg;
752 struct i40e_hw *hw = &pf->hw;
753 u16 i, v;
754 u8 tc;
755
756 dcb_cfg = &hw->local_dcbx_config;
757
758 /* See if DCB enabled with PFC TC */
759 if (!(pf->flags & I40E_FLAG_DCB_ENABLED) ||
760 !(dcb_cfg->pfc.pfcenable)) {
761 i40e_update_link_xoff_rx(pf);
762 return;
763 }
764
765 for (i = 0; i < I40E_MAX_USER_PRIORITY; i++) {
766 u64 prio_xoff = nsd->priority_xoff_rx[i];
767 i40e_stat_update32(hw, I40E_GLPRT_PXOFFRXC(hw->port, i),
768 pf->stat_offsets_loaded,
769 &osd->priority_xoff_rx[i],
770 &nsd->priority_xoff_rx[i]);
771
772 /* No new PFC xoff rx */
773 if (!(nsd->priority_xoff_rx[i] - prio_xoff))
774 continue;
775 /* Get the TC for given priority */
776 tc = dcb_cfg->etscfg.prioritytable[i];
777 xoff[tc] = true;
778 }
779
780 /* Clear the __I40E_HANG_CHECK_ARMED bit for Tx rings */
Mitch Williams505682c2014-05-20 08:01:37 +0000781 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000782 struct i40e_vsi *vsi = pf->vsi[v];
783
Mitch Williamsddfda802014-05-10 04:49:10 +0000784 if (!vsi || !vsi->tx_rings[0])
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000785 continue;
786
787 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e15b2013-09-28 06:00:58 +0000788 struct i40e_ring *ring = vsi->tx_rings[i];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000789
790 tc = ring->dcb_tc;
791 if (xoff[tc])
792 clear_bit(__I40E_HANG_CHECK_ARMED,
793 &ring->state);
794 }
795 }
796}
797
798/**
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000799 * i40e_update_vsi_stats - Update the vsi statistics counters.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000800 * @vsi: the VSI to be updated
801 *
802 * There are a few instances where we store the same stat in a
803 * couple of different structs. This is partly because we have
804 * the netdev stats that need to be filled out, which is slightly
805 * different from the "eth_stats" defined by the chip and used in
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000806 * VF communications. We sort it out here.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000807 **/
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000808static void i40e_update_vsi_stats(struct i40e_vsi *vsi)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000809{
810 struct i40e_pf *pf = vsi->back;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000811 struct rtnl_link_stats64 *ons;
812 struct rtnl_link_stats64 *ns; /* netdev stats */
813 struct i40e_eth_stats *oes;
814 struct i40e_eth_stats *es; /* device's eth stats */
815 u32 tx_restart, tx_busy;
Akeem G Abodunrinbf00b372014-10-17 03:14:39 +0000816 struct i40e_ring *p;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000817 u32 rx_page, rx_buf;
Akeem G Abodunrinbf00b372014-10-17 03:14:39 +0000818 u64 bytes, packets;
819 unsigned int start;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000820 u64 rx_p, rx_b;
821 u64 tx_p, tx_b;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000822 u16 q;
823
824 if (test_bit(__I40E_DOWN, &vsi->state) ||
825 test_bit(__I40E_CONFIG_BUSY, &pf->state))
826 return;
827
828 ns = i40e_get_vsi_stats_struct(vsi);
829 ons = &vsi->net_stats_offsets;
830 es = &vsi->eth_stats;
831 oes = &vsi->eth_stats_offsets;
832
833 /* Gather up the netdev and vsi stats that the driver collects
834 * on the fly during packet processing
835 */
836 rx_b = rx_p = 0;
837 tx_b = tx_p = 0;
838 tx_restart = tx_busy = 0;
839 rx_page = 0;
840 rx_buf = 0;
Alexander Duyck980e9b12013-09-28 06:01:03 +0000841 rcu_read_lock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000842 for (q = 0; q < vsi->num_queue_pairs; q++) {
Alexander Duyck980e9b12013-09-28 06:01:03 +0000843 /* locate Tx ring */
844 p = ACCESS_ONCE(vsi->tx_rings[q]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000845
Alexander Duyck980e9b12013-09-28 06:01:03 +0000846 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -0700847 start = u64_stats_fetch_begin_irq(&p->syncp);
Alexander Duyck980e9b12013-09-28 06:01:03 +0000848 packets = p->stats.packets;
849 bytes = p->stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -0700850 } while (u64_stats_fetch_retry_irq(&p->syncp, start));
Alexander Duyck980e9b12013-09-28 06:01:03 +0000851 tx_b += bytes;
852 tx_p += packets;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000853 tx_restart += p->tx_stats.restart_queue;
854 tx_busy += p->tx_stats.tx_busy;
Alexander Duyck980e9b12013-09-28 06:01:03 +0000855
856 /* Rx queue is part of the same block as Tx queue */
857 p = &p[1];
858 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -0700859 start = u64_stats_fetch_begin_irq(&p->syncp);
Alexander Duyck980e9b12013-09-28 06:01:03 +0000860 packets = p->stats.packets;
861 bytes = p->stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -0700862 } while (u64_stats_fetch_retry_irq(&p->syncp, start));
Alexander Duyck980e9b12013-09-28 06:01:03 +0000863 rx_b += bytes;
864 rx_p += packets;
Mitch Williams420136c2013-12-18 13:45:59 +0000865 rx_buf += p->rx_stats.alloc_buff_failed;
866 rx_page += p->rx_stats.alloc_page_failed;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000867 }
Alexander Duyck980e9b12013-09-28 06:01:03 +0000868 rcu_read_unlock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000869 vsi->tx_restart = tx_restart;
870 vsi->tx_busy = tx_busy;
871 vsi->rx_page_failed = rx_page;
872 vsi->rx_buf_failed = rx_buf;
873
874 ns->rx_packets = rx_p;
875 ns->rx_bytes = rx_b;
876 ns->tx_packets = tx_p;
877 ns->tx_bytes = tx_b;
878
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000879 /* update netdev stats from eth stats */
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000880 i40e_update_eth_stats(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000881 ons->tx_errors = oes->tx_errors;
882 ns->tx_errors = es->tx_errors;
883 ons->multicast = oes->rx_multicast;
884 ns->multicast = es->rx_multicast;
Shannon Nelson41a9e552014-04-23 04:50:20 +0000885 ons->rx_dropped = oes->rx_discards;
886 ns->rx_dropped = es->rx_discards;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000887 ons->tx_dropped = oes->tx_discards;
888 ns->tx_dropped = es->tx_discards;
889
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000890 /* pull in a couple PF stats if this is the main vsi */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000891 if (vsi == pf->vsi[pf->lan_vsi]) {
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000892 ns->rx_crc_errors = pf->stats.crc_errors;
893 ns->rx_errors = pf->stats.crc_errors + pf->stats.illegal_bytes;
894 ns->rx_length_errors = pf->stats.rx_length_errors;
895 }
896}
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000897
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000898/**
899 * i40e_update_pf_stats - Update the pf statistics counters.
900 * @pf: the PF to be updated
901 **/
902static void i40e_update_pf_stats(struct i40e_pf *pf)
903{
904 struct i40e_hw_port_stats *osd = &pf->stats_offsets;
905 struct i40e_hw_port_stats *nsd = &pf->stats;
906 struct i40e_hw *hw = &pf->hw;
907 u32 val;
908 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000909
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000910 i40e_stat_update48(hw, I40E_GLPRT_GORCH(hw->port),
911 I40E_GLPRT_GORCL(hw->port),
912 pf->stat_offsets_loaded,
913 &osd->eth.rx_bytes, &nsd->eth.rx_bytes);
914 i40e_stat_update48(hw, I40E_GLPRT_GOTCH(hw->port),
915 I40E_GLPRT_GOTCL(hw->port),
916 pf->stat_offsets_loaded,
917 &osd->eth.tx_bytes, &nsd->eth.tx_bytes);
918 i40e_stat_update32(hw, I40E_GLPRT_RDPC(hw->port),
919 pf->stat_offsets_loaded,
920 &osd->eth.rx_discards,
921 &nsd->eth.rx_discards);
922 i40e_stat_update32(hw, I40E_GLPRT_TDPC(hw->port),
923 pf->stat_offsets_loaded,
924 &osd->eth.tx_discards,
925 &nsd->eth.tx_discards);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000926
Shannon Nelson532d2832014-04-23 04:50:09 +0000927 i40e_stat_update48(hw, I40E_GLPRT_UPRCH(hw->port),
928 I40E_GLPRT_UPRCL(hw->port),
929 pf->stat_offsets_loaded,
930 &osd->eth.rx_unicast,
931 &nsd->eth.rx_unicast);
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000932 i40e_stat_update48(hw, I40E_GLPRT_MPRCH(hw->port),
933 I40E_GLPRT_MPRCL(hw->port),
934 pf->stat_offsets_loaded,
935 &osd->eth.rx_multicast,
936 &nsd->eth.rx_multicast);
Shannon Nelson532d2832014-04-23 04:50:09 +0000937 i40e_stat_update48(hw, I40E_GLPRT_BPRCH(hw->port),
938 I40E_GLPRT_BPRCL(hw->port),
939 pf->stat_offsets_loaded,
940 &osd->eth.rx_broadcast,
941 &nsd->eth.rx_broadcast);
942 i40e_stat_update48(hw, I40E_GLPRT_UPTCH(hw->port),
943 I40E_GLPRT_UPTCL(hw->port),
944 pf->stat_offsets_loaded,
945 &osd->eth.tx_unicast,
946 &nsd->eth.tx_unicast);
947 i40e_stat_update48(hw, I40E_GLPRT_MPTCH(hw->port),
948 I40E_GLPRT_MPTCL(hw->port),
949 pf->stat_offsets_loaded,
950 &osd->eth.tx_multicast,
951 &nsd->eth.tx_multicast);
952 i40e_stat_update48(hw, I40E_GLPRT_BPTCH(hw->port),
953 I40E_GLPRT_BPTCL(hw->port),
954 pf->stat_offsets_loaded,
955 &osd->eth.tx_broadcast,
956 &nsd->eth.tx_broadcast);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000957
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000958 i40e_stat_update32(hw, I40E_GLPRT_TDOLD(hw->port),
959 pf->stat_offsets_loaded,
960 &osd->tx_dropped_link_down,
961 &nsd->tx_dropped_link_down);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000962
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000963 i40e_stat_update32(hw, I40E_GLPRT_CRCERRS(hw->port),
964 pf->stat_offsets_loaded,
965 &osd->crc_errors, &nsd->crc_errors);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000966
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000967 i40e_stat_update32(hw, I40E_GLPRT_ILLERRC(hw->port),
968 pf->stat_offsets_loaded,
969 &osd->illegal_bytes, &nsd->illegal_bytes);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000970
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000971 i40e_stat_update32(hw, I40E_GLPRT_MLFC(hw->port),
972 pf->stat_offsets_loaded,
973 &osd->mac_local_faults,
974 &nsd->mac_local_faults);
975 i40e_stat_update32(hw, I40E_GLPRT_MRFC(hw->port),
976 pf->stat_offsets_loaded,
977 &osd->mac_remote_faults,
978 &nsd->mac_remote_faults);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000979
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000980 i40e_stat_update32(hw, I40E_GLPRT_RLEC(hw->port),
981 pf->stat_offsets_loaded,
982 &osd->rx_length_errors,
983 &nsd->rx_length_errors);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000984
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000985 i40e_stat_update32(hw, I40E_GLPRT_LXONRXC(hw->port),
986 pf->stat_offsets_loaded,
987 &osd->link_xon_rx, &nsd->link_xon_rx);
988 i40e_stat_update32(hw, I40E_GLPRT_LXONTXC(hw->port),
989 pf->stat_offsets_loaded,
990 &osd->link_xon_tx, &nsd->link_xon_tx);
991 i40e_update_prio_xoff_rx(pf); /* handles I40E_GLPRT_LXOFFRXC */
992 i40e_stat_update32(hw, I40E_GLPRT_LXOFFTXC(hw->port),
993 pf->stat_offsets_loaded,
994 &osd->link_xoff_tx, &nsd->link_xoff_tx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000995
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000996 for (i = 0; i < 8; i++) {
997 i40e_stat_update32(hw, I40E_GLPRT_PXONRXC(hw->port, i),
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000998 pf->stat_offsets_loaded,
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000999 &osd->priority_xon_rx[i],
1000 &nsd->priority_xon_rx[i]);
1001 i40e_stat_update32(hw, I40E_GLPRT_PXONTXC(hw->port, i),
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001002 pf->stat_offsets_loaded,
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001003 &osd->priority_xon_tx[i],
1004 &nsd->priority_xon_tx[i]);
1005 i40e_stat_update32(hw, I40E_GLPRT_PXOFFTXC(hw->port, i),
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001006 pf->stat_offsets_loaded,
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001007 &osd->priority_xoff_tx[i],
1008 &nsd->priority_xoff_tx[i]);
1009 i40e_stat_update32(hw,
1010 I40E_GLPRT_RXON2OFFCNT(hw->port, i),
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001011 pf->stat_offsets_loaded,
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001012 &osd->priority_xon_2_xoff[i],
1013 &nsd->priority_xon_2_xoff[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001014 }
1015
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001016 i40e_stat_update48(hw, I40E_GLPRT_PRC64H(hw->port),
1017 I40E_GLPRT_PRC64L(hw->port),
1018 pf->stat_offsets_loaded,
1019 &osd->rx_size_64, &nsd->rx_size_64);
1020 i40e_stat_update48(hw, I40E_GLPRT_PRC127H(hw->port),
1021 I40E_GLPRT_PRC127L(hw->port),
1022 pf->stat_offsets_loaded,
1023 &osd->rx_size_127, &nsd->rx_size_127);
1024 i40e_stat_update48(hw, I40E_GLPRT_PRC255H(hw->port),
1025 I40E_GLPRT_PRC255L(hw->port),
1026 pf->stat_offsets_loaded,
1027 &osd->rx_size_255, &nsd->rx_size_255);
1028 i40e_stat_update48(hw, I40E_GLPRT_PRC511H(hw->port),
1029 I40E_GLPRT_PRC511L(hw->port),
1030 pf->stat_offsets_loaded,
1031 &osd->rx_size_511, &nsd->rx_size_511);
1032 i40e_stat_update48(hw, I40E_GLPRT_PRC1023H(hw->port),
1033 I40E_GLPRT_PRC1023L(hw->port),
1034 pf->stat_offsets_loaded,
1035 &osd->rx_size_1023, &nsd->rx_size_1023);
1036 i40e_stat_update48(hw, I40E_GLPRT_PRC1522H(hw->port),
1037 I40E_GLPRT_PRC1522L(hw->port),
1038 pf->stat_offsets_loaded,
1039 &osd->rx_size_1522, &nsd->rx_size_1522);
1040 i40e_stat_update48(hw, I40E_GLPRT_PRC9522H(hw->port),
1041 I40E_GLPRT_PRC9522L(hw->port),
1042 pf->stat_offsets_loaded,
1043 &osd->rx_size_big, &nsd->rx_size_big);
1044
1045 i40e_stat_update48(hw, I40E_GLPRT_PTC64H(hw->port),
1046 I40E_GLPRT_PTC64L(hw->port),
1047 pf->stat_offsets_loaded,
1048 &osd->tx_size_64, &nsd->tx_size_64);
1049 i40e_stat_update48(hw, I40E_GLPRT_PTC127H(hw->port),
1050 I40E_GLPRT_PTC127L(hw->port),
1051 pf->stat_offsets_loaded,
1052 &osd->tx_size_127, &nsd->tx_size_127);
1053 i40e_stat_update48(hw, I40E_GLPRT_PTC255H(hw->port),
1054 I40E_GLPRT_PTC255L(hw->port),
1055 pf->stat_offsets_loaded,
1056 &osd->tx_size_255, &nsd->tx_size_255);
1057 i40e_stat_update48(hw, I40E_GLPRT_PTC511H(hw->port),
1058 I40E_GLPRT_PTC511L(hw->port),
1059 pf->stat_offsets_loaded,
1060 &osd->tx_size_511, &nsd->tx_size_511);
1061 i40e_stat_update48(hw, I40E_GLPRT_PTC1023H(hw->port),
1062 I40E_GLPRT_PTC1023L(hw->port),
1063 pf->stat_offsets_loaded,
1064 &osd->tx_size_1023, &nsd->tx_size_1023);
1065 i40e_stat_update48(hw, I40E_GLPRT_PTC1522H(hw->port),
1066 I40E_GLPRT_PTC1522L(hw->port),
1067 pf->stat_offsets_loaded,
1068 &osd->tx_size_1522, &nsd->tx_size_1522);
1069 i40e_stat_update48(hw, I40E_GLPRT_PTC9522H(hw->port),
1070 I40E_GLPRT_PTC9522L(hw->port),
1071 pf->stat_offsets_loaded,
1072 &osd->tx_size_big, &nsd->tx_size_big);
1073
1074 i40e_stat_update32(hw, I40E_GLPRT_RUC(hw->port),
1075 pf->stat_offsets_loaded,
1076 &osd->rx_undersize, &nsd->rx_undersize);
1077 i40e_stat_update32(hw, I40E_GLPRT_RFC(hw->port),
1078 pf->stat_offsets_loaded,
1079 &osd->rx_fragments, &nsd->rx_fragments);
1080 i40e_stat_update32(hw, I40E_GLPRT_ROC(hw->port),
1081 pf->stat_offsets_loaded,
1082 &osd->rx_oversize, &nsd->rx_oversize);
1083 i40e_stat_update32(hw, I40E_GLPRT_RJC(hw->port),
1084 pf->stat_offsets_loaded,
1085 &osd->rx_jabber, &nsd->rx_jabber);
1086
Anjali Singhai Jain433c47d2014-05-22 06:32:17 +00001087 /* FDIR stats */
1088 i40e_stat_update32(hw, I40E_GLQF_PCNT(pf->fd_atr_cnt_idx),
1089 pf->stat_offsets_loaded,
1090 &osd->fd_atr_match, &nsd->fd_atr_match);
1091 i40e_stat_update32(hw, I40E_GLQF_PCNT(pf->fd_sb_cnt_idx),
1092 pf->stat_offsets_loaded,
1093 &osd->fd_sb_match, &nsd->fd_sb_match);
1094
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001095 val = rd32(hw, I40E_PRTPM_EEE_STAT);
1096 nsd->tx_lpi_status =
1097 (val & I40E_PRTPM_EEE_STAT_TX_LPI_STATUS_MASK) >>
1098 I40E_PRTPM_EEE_STAT_TX_LPI_STATUS_SHIFT;
1099 nsd->rx_lpi_status =
1100 (val & I40E_PRTPM_EEE_STAT_RX_LPI_STATUS_MASK) >>
1101 I40E_PRTPM_EEE_STAT_RX_LPI_STATUS_SHIFT;
1102 i40e_stat_update32(hw, I40E_PRTPM_TLPIC,
1103 pf->stat_offsets_loaded,
1104 &osd->tx_lpi_count, &nsd->tx_lpi_count);
1105 i40e_stat_update32(hw, I40E_PRTPM_RLPIC,
1106 pf->stat_offsets_loaded,
1107 &osd->rx_lpi_count, &nsd->rx_lpi_count);
1108
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001109 pf->stat_offsets_loaded = true;
1110}
1111
1112/**
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001113 * i40e_update_stats - Update the various statistics counters.
1114 * @vsi: the VSI to be updated
1115 *
1116 * Update the various stats for this VSI and its related entities.
1117 **/
1118void i40e_update_stats(struct i40e_vsi *vsi)
1119{
1120 struct i40e_pf *pf = vsi->back;
1121
1122 if (vsi == pf->vsi[pf->lan_vsi])
1123 i40e_update_pf_stats(pf);
1124
1125 i40e_update_vsi_stats(vsi);
Vasu Dev38e00432014-08-01 13:27:03 -07001126#ifdef I40E_FCOE
1127 i40e_update_fcoe_stats(vsi);
1128#endif
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001129}
1130
1131/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001132 * i40e_find_filter - Search VSI filter list for specific mac/vlan filter
1133 * @vsi: the VSI to be searched
1134 * @macaddr: the MAC address
1135 * @vlan: the vlan
1136 * @is_vf: make sure its a vf filter, else doesn't matter
1137 * @is_netdev: make sure its a netdev filter, else doesn't matter
1138 *
1139 * Returns ptr to the filter object or NULL
1140 **/
1141static struct i40e_mac_filter *i40e_find_filter(struct i40e_vsi *vsi,
1142 u8 *macaddr, s16 vlan,
1143 bool is_vf, bool is_netdev)
1144{
1145 struct i40e_mac_filter *f;
1146
1147 if (!vsi || !macaddr)
1148 return NULL;
1149
1150 list_for_each_entry(f, &vsi->mac_filter_list, list) {
1151 if ((ether_addr_equal(macaddr, f->macaddr)) &&
1152 (vlan == f->vlan) &&
1153 (!is_vf || f->is_vf) &&
1154 (!is_netdev || f->is_netdev))
1155 return f;
1156 }
1157 return NULL;
1158}
1159
1160/**
1161 * i40e_find_mac - Find a mac addr in the macvlan filters list
1162 * @vsi: the VSI to be searched
1163 * @macaddr: the MAC address we are searching for
1164 * @is_vf: make sure its a vf filter, else doesn't matter
1165 * @is_netdev: make sure its a netdev filter, else doesn't matter
1166 *
1167 * Returns the first filter with the provided MAC address or NULL if
1168 * MAC address was not found
1169 **/
1170struct i40e_mac_filter *i40e_find_mac(struct i40e_vsi *vsi, u8 *macaddr,
1171 bool is_vf, bool is_netdev)
1172{
1173 struct i40e_mac_filter *f;
1174
1175 if (!vsi || !macaddr)
1176 return NULL;
1177
1178 list_for_each_entry(f, &vsi->mac_filter_list, list) {
1179 if ((ether_addr_equal(macaddr, f->macaddr)) &&
1180 (!is_vf || f->is_vf) &&
1181 (!is_netdev || f->is_netdev))
1182 return f;
1183 }
1184 return NULL;
1185}
1186
1187/**
1188 * i40e_is_vsi_in_vlan - Check if VSI is in vlan mode
1189 * @vsi: the VSI to be searched
1190 *
1191 * Returns true if VSI is in vlan mode or false otherwise
1192 **/
1193bool i40e_is_vsi_in_vlan(struct i40e_vsi *vsi)
1194{
1195 struct i40e_mac_filter *f;
1196
1197 /* Only -1 for all the filters denotes not in vlan mode
1198 * so we have to go through all the list in order to make sure
1199 */
1200 list_for_each_entry(f, &vsi->mac_filter_list, list) {
1201 if (f->vlan >= 0)
1202 return true;
1203 }
1204
1205 return false;
1206}
1207
1208/**
1209 * i40e_put_mac_in_vlan - Make macvlan filters from macaddrs and vlans
1210 * @vsi: the VSI to be searched
1211 * @macaddr: the mac address to be filtered
1212 * @is_vf: true if it is a vf
1213 * @is_netdev: true if it is a netdev
1214 *
1215 * Goes through all the macvlan filters and adds a
1216 * macvlan filter for each unique vlan that already exists
1217 *
1218 * Returns first filter found on success, else NULL
1219 **/
1220struct i40e_mac_filter *i40e_put_mac_in_vlan(struct i40e_vsi *vsi, u8 *macaddr,
1221 bool is_vf, bool is_netdev)
1222{
1223 struct i40e_mac_filter *f;
1224
1225 list_for_each_entry(f, &vsi->mac_filter_list, list) {
1226 if (!i40e_find_filter(vsi, macaddr, f->vlan,
1227 is_vf, is_netdev)) {
1228 if (!i40e_add_filter(vsi, macaddr, f->vlan,
Jesse Brandeburg8fb905b2014-01-17 15:36:33 -08001229 is_vf, is_netdev))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001230 return NULL;
1231 }
1232 }
1233
1234 return list_first_entry_or_null(&vsi->mac_filter_list,
1235 struct i40e_mac_filter, list);
1236}
1237
1238/**
Greg Rose8c27d422014-05-22 06:31:56 +00001239 * i40e_rm_default_mac_filter - Remove the default MAC filter set by NVM
1240 * @vsi: the PF Main VSI - inappropriate for any other VSI
1241 * @macaddr: the MAC address
Shannon Nelson30650cc2014-07-29 04:01:50 +00001242 *
1243 * Some older firmware configurations set up a default promiscuous VLAN
1244 * filter that needs to be removed.
Greg Rose8c27d422014-05-22 06:31:56 +00001245 **/
Shannon Nelson30650cc2014-07-29 04:01:50 +00001246static int i40e_rm_default_mac_filter(struct i40e_vsi *vsi, u8 *macaddr)
Greg Rose8c27d422014-05-22 06:31:56 +00001247{
1248 struct i40e_aqc_remove_macvlan_element_data element;
1249 struct i40e_pf *pf = vsi->back;
1250 i40e_status aq_ret;
1251
1252 /* Only appropriate for the PF main VSI */
1253 if (vsi->type != I40E_VSI_MAIN)
Shannon Nelson30650cc2014-07-29 04:01:50 +00001254 return -EINVAL;
Greg Rose8c27d422014-05-22 06:31:56 +00001255
Shannon Nelson30650cc2014-07-29 04:01:50 +00001256 memset(&element, 0, sizeof(element));
Greg Rose8c27d422014-05-22 06:31:56 +00001257 ether_addr_copy(element.mac_addr, macaddr);
1258 element.vlan_tag = 0;
1259 element.flags = I40E_AQC_MACVLAN_DEL_PERFECT_MATCH |
1260 I40E_AQC_MACVLAN_DEL_IGNORE_VLAN;
1261 aq_ret = i40e_aq_remove_macvlan(&pf->hw, vsi->seid, &element, 1, NULL);
1262 if (aq_ret)
Shannon Nelson30650cc2014-07-29 04:01:50 +00001263 return -ENOENT;
1264
1265 return 0;
Greg Rose8c27d422014-05-22 06:31:56 +00001266}
1267
1268/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001269 * i40e_add_filter - Add a mac/vlan filter to the VSI
1270 * @vsi: the VSI to be searched
1271 * @macaddr: the MAC address
1272 * @vlan: the vlan
1273 * @is_vf: make sure its a vf filter, else doesn't matter
1274 * @is_netdev: make sure its a netdev filter, else doesn't matter
1275 *
1276 * Returns ptr to the filter object or NULL when no memory available.
1277 **/
1278struct i40e_mac_filter *i40e_add_filter(struct i40e_vsi *vsi,
1279 u8 *macaddr, s16 vlan,
1280 bool is_vf, bool is_netdev)
1281{
1282 struct i40e_mac_filter *f;
1283
1284 if (!vsi || !macaddr)
1285 return NULL;
1286
1287 f = i40e_find_filter(vsi, macaddr, vlan, is_vf, is_netdev);
1288 if (!f) {
1289 f = kzalloc(sizeof(*f), GFP_ATOMIC);
1290 if (!f)
1291 goto add_filter_out;
1292
Greg Rose9a173902014-05-22 06:32:02 +00001293 ether_addr_copy(f->macaddr, macaddr);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001294 f->vlan = vlan;
1295 f->changed = true;
1296
1297 INIT_LIST_HEAD(&f->list);
1298 list_add(&f->list, &vsi->mac_filter_list);
1299 }
1300
1301 /* increment counter and add a new flag if needed */
1302 if (is_vf) {
1303 if (!f->is_vf) {
1304 f->is_vf = true;
1305 f->counter++;
1306 }
1307 } else if (is_netdev) {
1308 if (!f->is_netdev) {
1309 f->is_netdev = true;
1310 f->counter++;
1311 }
1312 } else {
1313 f->counter++;
1314 }
1315
1316 /* changed tells sync_filters_subtask to
1317 * push the filter down to the firmware
1318 */
1319 if (f->changed) {
1320 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
1321 vsi->back->flags |= I40E_FLAG_FILTER_SYNC;
1322 }
1323
1324add_filter_out:
1325 return f;
1326}
1327
1328/**
1329 * i40e_del_filter - Remove a mac/vlan filter from the VSI
1330 * @vsi: the VSI to be searched
1331 * @macaddr: the MAC address
1332 * @vlan: the vlan
1333 * @is_vf: make sure it's a vf filter, else doesn't matter
1334 * @is_netdev: make sure it's a netdev filter, else doesn't matter
1335 **/
1336void i40e_del_filter(struct i40e_vsi *vsi,
1337 u8 *macaddr, s16 vlan,
1338 bool is_vf, bool is_netdev)
1339{
1340 struct i40e_mac_filter *f;
1341
1342 if (!vsi || !macaddr)
1343 return;
1344
1345 f = i40e_find_filter(vsi, macaddr, vlan, is_vf, is_netdev);
1346 if (!f || f->counter == 0)
1347 return;
1348
1349 if (is_vf) {
1350 if (f->is_vf) {
1351 f->is_vf = false;
1352 f->counter--;
1353 }
1354 } else if (is_netdev) {
1355 if (f->is_netdev) {
1356 f->is_netdev = false;
1357 f->counter--;
1358 }
1359 } else {
1360 /* make sure we don't remove a filter in use by vf or netdev */
1361 int min_f = 0;
1362 min_f += (f->is_vf ? 1 : 0);
1363 min_f += (f->is_netdev ? 1 : 0);
1364
1365 if (f->counter > min_f)
1366 f->counter--;
1367 }
1368
1369 /* counter == 0 tells sync_filters_subtask to
1370 * remove the filter from the firmware's list
1371 */
1372 if (f->counter == 0) {
1373 f->changed = true;
1374 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
1375 vsi->back->flags |= I40E_FLAG_FILTER_SYNC;
1376 }
1377}
1378
1379/**
1380 * i40e_set_mac - NDO callback to set mac address
1381 * @netdev: network interface device structure
1382 * @p: pointer to an address structure
1383 *
1384 * Returns 0 on success, negative on failure
1385 **/
Vasu Dev38e00432014-08-01 13:27:03 -07001386#ifdef I40E_FCOE
1387int i40e_set_mac(struct net_device *netdev, void *p)
1388#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001389static int i40e_set_mac(struct net_device *netdev, void *p)
Vasu Dev38e00432014-08-01 13:27:03 -07001390#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001391{
1392 struct i40e_netdev_priv *np = netdev_priv(netdev);
1393 struct i40e_vsi *vsi = np->vsi;
Shannon Nelson30650cc2014-07-29 04:01:50 +00001394 struct i40e_pf *pf = vsi->back;
1395 struct i40e_hw *hw = &pf->hw;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001396 struct sockaddr *addr = p;
1397 struct i40e_mac_filter *f;
1398
1399 if (!is_valid_ether_addr(addr->sa_data))
1400 return -EADDRNOTAVAIL;
1401
Shannon Nelson30650cc2014-07-29 04:01:50 +00001402 if (ether_addr_equal(netdev->dev_addr, addr->sa_data)) {
1403 netdev_info(netdev, "already using mac address %pM\n",
1404 addr->sa_data);
1405 return 0;
1406 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001407
Anjali Singhai Jain80f64282013-11-28 06:39:47 +00001408 if (test_bit(__I40E_DOWN, &vsi->back->state) ||
1409 test_bit(__I40E_RESET_RECOVERY_PENDING, &vsi->back->state))
1410 return -EADDRNOTAVAIL;
1411
Shannon Nelson30650cc2014-07-29 04:01:50 +00001412 if (ether_addr_equal(hw->mac.addr, addr->sa_data))
1413 netdev_info(netdev, "returning to hw mac address %pM\n",
1414 hw->mac.addr);
1415 else
1416 netdev_info(netdev, "set new mac address %pM\n", addr->sa_data);
1417
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001418 if (vsi->type == I40E_VSI_MAIN) {
1419 i40e_status ret;
1420 ret = i40e_aq_mac_address_write(&vsi->back->hw,
Shannon Nelsoncc412222014-06-04 01:23:21 +00001421 I40E_AQC_WRITE_TYPE_LAA_WOL,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001422 addr->sa_data, NULL);
1423 if (ret) {
1424 netdev_info(netdev,
1425 "Addr change for Main VSI failed: %d\n",
1426 ret);
1427 return -EADDRNOTAVAIL;
1428 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001429 }
1430
Shannon Nelson30650cc2014-07-29 04:01:50 +00001431 if (ether_addr_equal(netdev->dev_addr, hw->mac.addr)) {
1432 struct i40e_aqc_remove_macvlan_element_data element;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001433
Shannon Nelson30650cc2014-07-29 04:01:50 +00001434 memset(&element, 0, sizeof(element));
1435 ether_addr_copy(element.mac_addr, netdev->dev_addr);
1436 element.flags = I40E_AQC_MACVLAN_DEL_PERFECT_MATCH;
1437 i40e_aq_remove_macvlan(&pf->hw, vsi->seid, &element, 1, NULL);
1438 } else {
Shannon Nelson6c8ad1b2014-06-04 01:23:22 +00001439 i40e_del_filter(vsi, netdev->dev_addr, I40E_VLAN_ANY,
1440 false, false);
Shannon Nelson6c8ad1b2014-06-04 01:23:22 +00001441 }
1442
Shannon Nelson30650cc2014-07-29 04:01:50 +00001443 if (ether_addr_equal(addr->sa_data, hw->mac.addr)) {
1444 struct i40e_aqc_add_macvlan_element_data element;
1445
1446 memset(&element, 0, sizeof(element));
1447 ether_addr_copy(element.mac_addr, hw->mac.addr);
1448 element.flags = cpu_to_le16(I40E_AQC_MACVLAN_ADD_PERFECT_MATCH);
1449 i40e_aq_add_macvlan(&pf->hw, vsi->seid, &element, 1, NULL);
1450 } else {
1451 f = i40e_add_filter(vsi, addr->sa_data, I40E_VLAN_ANY,
1452 false, false);
1453 if (f)
1454 f->is_laa = true;
1455 }
1456
1457 i40e_sync_vsi_filters(vsi);
1458 ether_addr_copy(netdev->dev_addr, addr->sa_data);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001459
1460 return 0;
1461}
1462
1463/**
1464 * i40e_vsi_setup_queue_map - Setup a VSI queue map based on enabled_tc
1465 * @vsi: the VSI being setup
1466 * @ctxt: VSI context structure
1467 * @enabled_tc: Enabled TCs bitmap
1468 * @is_add: True if called before Add VSI
1469 *
1470 * Setup VSI queue mapping for enabled traffic classes.
1471 **/
Vasu Dev38e00432014-08-01 13:27:03 -07001472#ifdef I40E_FCOE
1473void i40e_vsi_setup_queue_map(struct i40e_vsi *vsi,
1474 struct i40e_vsi_context *ctxt,
1475 u8 enabled_tc,
1476 bool is_add)
1477#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001478static void i40e_vsi_setup_queue_map(struct i40e_vsi *vsi,
1479 struct i40e_vsi_context *ctxt,
1480 u8 enabled_tc,
1481 bool is_add)
Vasu Dev38e00432014-08-01 13:27:03 -07001482#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001483{
1484 struct i40e_pf *pf = vsi->back;
1485 u16 sections = 0;
1486 u8 netdev_tc = 0;
1487 u16 numtc = 0;
1488 u16 qcount;
1489 u8 offset;
1490 u16 qmap;
1491 int i;
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001492 u16 num_tc_qps = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001493
1494 sections = I40E_AQ_VSI_PROP_QUEUE_MAP_VALID;
1495 offset = 0;
1496
1497 if (enabled_tc && (vsi->back->flags & I40E_FLAG_DCB_ENABLED)) {
1498 /* Find numtc from enabled TC bitmap */
1499 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
1500 if (enabled_tc & (1 << i)) /* TC is enabled */
1501 numtc++;
1502 }
1503 if (!numtc) {
1504 dev_warn(&pf->pdev->dev, "DCB is enabled but no TC enabled, forcing TC0\n");
1505 numtc = 1;
1506 }
1507 } else {
1508 /* At least TC0 is enabled in case of non-DCB case */
1509 numtc = 1;
1510 }
1511
1512 vsi->tc_config.numtc = numtc;
1513 vsi->tc_config.enabled_tc = enabled_tc ? enabled_tc : 1;
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001514 /* Number of queues per enabled TC */
Anjali Singhai Jaineb051af2014-05-20 08:01:46 +00001515 num_tc_qps = vsi->alloc_queue_pairs/numtc;
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001516 num_tc_qps = min_t(int, num_tc_qps, I40E_MAX_QUEUES_PER_TC);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001517
1518 /* Setup queue offset/count for all TCs for given VSI */
1519 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
1520 /* See if the given TC is enabled for the given VSI */
1521 if (vsi->tc_config.enabled_tc & (1 << i)) { /* TC is enabled */
1522 int pow, num_qps;
1523
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001524 switch (vsi->type) {
1525 case I40E_VSI_MAIN:
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001526 qcount = min_t(int, pf->rss_size, num_tc_qps);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001527 break;
Vasu Dev38e00432014-08-01 13:27:03 -07001528#ifdef I40E_FCOE
1529 case I40E_VSI_FCOE:
1530 qcount = num_tc_qps;
1531 break;
1532#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001533 case I40E_VSI_FDIR:
1534 case I40E_VSI_SRIOV:
1535 case I40E_VSI_VMDQ2:
1536 default:
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001537 qcount = num_tc_qps;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001538 WARN_ON(i != 0);
1539 break;
1540 }
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001541 vsi->tc_config.tc_info[i].qoffset = offset;
1542 vsi->tc_config.tc_info[i].qcount = qcount;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001543
1544 /* find the power-of-2 of the number of queue pairs */
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001545 num_qps = qcount;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001546 pow = 0;
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001547 while (num_qps && ((1 << pow) < qcount)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001548 pow++;
1549 num_qps >>= 1;
1550 }
1551
1552 vsi->tc_config.tc_info[i].netdev_tc = netdev_tc++;
1553 qmap =
1554 (offset << I40E_AQ_VSI_TC_QUE_OFFSET_SHIFT) |
1555 (pow << I40E_AQ_VSI_TC_QUE_NUMBER_SHIFT);
1556
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001557 offset += qcount;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001558 } else {
1559 /* TC is not enabled so set the offset to
1560 * default queue and allocate one queue
1561 * for the given TC.
1562 */
1563 vsi->tc_config.tc_info[i].qoffset = 0;
1564 vsi->tc_config.tc_info[i].qcount = 1;
1565 vsi->tc_config.tc_info[i].netdev_tc = 0;
1566
1567 qmap = 0;
1568 }
1569 ctxt->info.tc_mapping[i] = cpu_to_le16(qmap);
1570 }
1571
1572 /* Set actual Tx/Rx queue pairs */
1573 vsi->num_queue_pairs = offset;
1574
1575 /* Scheduler section valid can only be set for ADD VSI */
1576 if (is_add) {
1577 sections |= I40E_AQ_VSI_PROP_SCHED_VALID;
1578
1579 ctxt->info.up_enable_bits = enabled_tc;
1580 }
1581 if (vsi->type == I40E_VSI_SRIOV) {
1582 ctxt->info.mapping_flags |=
1583 cpu_to_le16(I40E_AQ_VSI_QUE_MAP_NONCONTIG);
1584 for (i = 0; i < vsi->num_queue_pairs; i++)
1585 ctxt->info.queue_mapping[i] =
1586 cpu_to_le16(vsi->base_queue + i);
1587 } else {
1588 ctxt->info.mapping_flags |=
1589 cpu_to_le16(I40E_AQ_VSI_QUE_MAP_CONTIG);
1590 ctxt->info.queue_mapping[0] = cpu_to_le16(vsi->base_queue);
1591 }
1592 ctxt->info.valid_sections |= cpu_to_le16(sections);
1593}
1594
1595/**
1596 * i40e_set_rx_mode - NDO callback to set the netdev filters
1597 * @netdev: network interface device structure
1598 **/
Vasu Dev38e00432014-08-01 13:27:03 -07001599#ifdef I40E_FCOE
1600void i40e_set_rx_mode(struct net_device *netdev)
1601#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001602static void i40e_set_rx_mode(struct net_device *netdev)
Vasu Dev38e00432014-08-01 13:27:03 -07001603#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001604{
1605 struct i40e_netdev_priv *np = netdev_priv(netdev);
1606 struct i40e_mac_filter *f, *ftmp;
1607 struct i40e_vsi *vsi = np->vsi;
1608 struct netdev_hw_addr *uca;
1609 struct netdev_hw_addr *mca;
1610 struct netdev_hw_addr *ha;
1611
1612 /* add addr if not already in the filter list */
1613 netdev_for_each_uc_addr(uca, netdev) {
1614 if (!i40e_find_mac(vsi, uca->addr, false, true)) {
1615 if (i40e_is_vsi_in_vlan(vsi))
1616 i40e_put_mac_in_vlan(vsi, uca->addr,
1617 false, true);
1618 else
1619 i40e_add_filter(vsi, uca->addr, I40E_VLAN_ANY,
1620 false, true);
1621 }
1622 }
1623
1624 netdev_for_each_mc_addr(mca, netdev) {
1625 if (!i40e_find_mac(vsi, mca->addr, false, true)) {
1626 if (i40e_is_vsi_in_vlan(vsi))
1627 i40e_put_mac_in_vlan(vsi, mca->addr,
1628 false, true);
1629 else
1630 i40e_add_filter(vsi, mca->addr, I40E_VLAN_ANY,
1631 false, true);
1632 }
1633 }
1634
1635 /* remove filter if not in netdev list */
1636 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
1637 bool found = false;
1638
1639 if (!f->is_netdev)
1640 continue;
1641
1642 if (is_multicast_ether_addr(f->macaddr)) {
1643 netdev_for_each_mc_addr(mca, netdev) {
1644 if (ether_addr_equal(mca->addr, f->macaddr)) {
1645 found = true;
1646 break;
1647 }
1648 }
1649 } else {
1650 netdev_for_each_uc_addr(uca, netdev) {
1651 if (ether_addr_equal(uca->addr, f->macaddr)) {
1652 found = true;
1653 break;
1654 }
1655 }
1656
1657 for_each_dev_addr(netdev, ha) {
1658 if (ether_addr_equal(ha->addr, f->macaddr)) {
1659 found = true;
1660 break;
1661 }
1662 }
1663 }
1664 if (!found)
1665 i40e_del_filter(
1666 vsi, f->macaddr, I40E_VLAN_ANY, false, true);
1667 }
1668
1669 /* check for other flag changes */
1670 if (vsi->current_netdev_flags != vsi->netdev->flags) {
1671 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
1672 vsi->back->flags |= I40E_FLAG_FILTER_SYNC;
1673 }
1674}
1675
1676/**
1677 * i40e_sync_vsi_filters - Update the VSI filter list to the HW
1678 * @vsi: ptr to the VSI
1679 *
1680 * Push any outstanding VSI filter changes through the AdminQ.
1681 *
1682 * Returns 0 or error value
1683 **/
1684int i40e_sync_vsi_filters(struct i40e_vsi *vsi)
1685{
1686 struct i40e_mac_filter *f, *ftmp;
1687 bool promisc_forced_on = false;
1688 bool add_happened = false;
1689 int filter_list_len = 0;
1690 u32 changed_flags = 0;
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001691 i40e_status aq_ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001692 struct i40e_pf *pf;
1693 int num_add = 0;
1694 int num_del = 0;
1695 u16 cmd_flags;
1696
1697 /* empty array typed pointers, kcalloc later */
1698 struct i40e_aqc_add_macvlan_element_data *add_list;
1699 struct i40e_aqc_remove_macvlan_element_data *del_list;
1700
1701 while (test_and_set_bit(__I40E_CONFIG_BUSY, &vsi->state))
1702 usleep_range(1000, 2000);
1703 pf = vsi->back;
1704
1705 if (vsi->netdev) {
1706 changed_flags = vsi->current_netdev_flags ^ vsi->netdev->flags;
1707 vsi->current_netdev_flags = vsi->netdev->flags;
1708 }
1709
1710 if (vsi->flags & I40E_VSI_FLAG_FILTER_CHANGED) {
1711 vsi->flags &= ~I40E_VSI_FLAG_FILTER_CHANGED;
1712
1713 filter_list_len = pf->hw.aq.asq_buf_size /
1714 sizeof(struct i40e_aqc_remove_macvlan_element_data);
1715 del_list = kcalloc(filter_list_len,
1716 sizeof(struct i40e_aqc_remove_macvlan_element_data),
1717 GFP_KERNEL);
1718 if (!del_list)
1719 return -ENOMEM;
1720
1721 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
1722 if (!f->changed)
1723 continue;
1724
1725 if (f->counter != 0)
1726 continue;
1727 f->changed = false;
1728 cmd_flags = 0;
1729
1730 /* add to delete list */
Greg Rose9a173902014-05-22 06:32:02 +00001731 ether_addr_copy(del_list[num_del].mac_addr, f->macaddr);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001732 del_list[num_del].vlan_tag =
1733 cpu_to_le16((u16)(f->vlan ==
1734 I40E_VLAN_ANY ? 0 : f->vlan));
1735
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001736 cmd_flags |= I40E_AQC_MACVLAN_DEL_PERFECT_MATCH;
1737 del_list[num_del].flags = cmd_flags;
1738 num_del++;
1739
1740 /* unlink from filter list */
1741 list_del(&f->list);
1742 kfree(f);
1743
1744 /* flush a full buffer */
1745 if (num_del == filter_list_len) {
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001746 aq_ret = i40e_aq_remove_macvlan(&pf->hw,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001747 vsi->seid, del_list, num_del,
1748 NULL);
1749 num_del = 0;
1750 memset(del_list, 0, sizeof(*del_list));
1751
Shannon Nelsonfdfe9cb2014-05-20 08:01:39 +00001752 if (aq_ret &&
1753 pf->hw.aq.asq_last_status !=
1754 I40E_AQ_RC_ENOENT)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001755 dev_info(&pf->pdev->dev,
1756 "ignoring delete macvlan error, err %d, aq_err %d while flushing a full buffer\n",
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001757 aq_ret,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001758 pf->hw.aq.asq_last_status);
1759 }
1760 }
1761 if (num_del) {
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001762 aq_ret = i40e_aq_remove_macvlan(&pf->hw, vsi->seid,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001763 del_list, num_del, NULL);
1764 num_del = 0;
1765
Shannon Nelsonfdfe9cb2014-05-20 08:01:39 +00001766 if (aq_ret &&
1767 pf->hw.aq.asq_last_status != I40E_AQ_RC_ENOENT)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001768 dev_info(&pf->pdev->dev,
1769 "ignoring delete macvlan error, err %d, aq_err %d\n",
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001770 aq_ret, pf->hw.aq.asq_last_status);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001771 }
1772
1773 kfree(del_list);
1774 del_list = NULL;
1775
1776 /* do all the adds now */
1777 filter_list_len = pf->hw.aq.asq_buf_size /
1778 sizeof(struct i40e_aqc_add_macvlan_element_data),
1779 add_list = kcalloc(filter_list_len,
1780 sizeof(struct i40e_aqc_add_macvlan_element_data),
1781 GFP_KERNEL);
1782 if (!add_list)
1783 return -ENOMEM;
1784
1785 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
1786 if (!f->changed)
1787 continue;
1788
1789 if (f->counter == 0)
1790 continue;
1791 f->changed = false;
1792 add_happened = true;
1793 cmd_flags = 0;
1794
1795 /* add to add array */
Greg Rose9a173902014-05-22 06:32:02 +00001796 ether_addr_copy(add_list[num_add].mac_addr, f->macaddr);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001797 add_list[num_add].vlan_tag =
1798 cpu_to_le16(
1799 (u16)(f->vlan == I40E_VLAN_ANY ? 0 : f->vlan));
1800 add_list[num_add].queue_number = 0;
1801
1802 cmd_flags |= I40E_AQC_MACVLAN_ADD_PERFECT_MATCH;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001803 add_list[num_add].flags = cpu_to_le16(cmd_flags);
1804 num_add++;
1805
1806 /* flush a full buffer */
1807 if (num_add == filter_list_len) {
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001808 aq_ret = i40e_aq_add_macvlan(&pf->hw, vsi->seid,
1809 add_list, num_add,
1810 NULL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001811 num_add = 0;
1812
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001813 if (aq_ret)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001814 break;
1815 memset(add_list, 0, sizeof(*add_list));
1816 }
1817 }
1818 if (num_add) {
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001819 aq_ret = i40e_aq_add_macvlan(&pf->hw, vsi->seid,
1820 add_list, num_add, NULL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001821 num_add = 0;
1822 }
1823 kfree(add_list);
1824 add_list = NULL;
1825
Shannon Nelson30650cc2014-07-29 04:01:50 +00001826 if (add_happened && aq_ret &&
1827 pf->hw.aq.asq_last_status != I40E_AQ_RC_EINVAL) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001828 dev_info(&pf->pdev->dev,
1829 "add filter failed, err %d, aq_err %d\n",
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001830 aq_ret, pf->hw.aq.asq_last_status);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001831 if ((pf->hw.aq.asq_last_status == I40E_AQ_RC_ENOSPC) &&
1832 !test_bit(__I40E_FILTER_OVERFLOW_PROMISC,
1833 &vsi->state)) {
1834 promisc_forced_on = true;
1835 set_bit(__I40E_FILTER_OVERFLOW_PROMISC,
1836 &vsi->state);
1837 dev_info(&pf->pdev->dev, "promiscuous mode forced on\n");
1838 }
1839 }
1840 }
1841
1842 /* check for changes in promiscuous modes */
1843 if (changed_flags & IFF_ALLMULTI) {
1844 bool cur_multipromisc;
1845 cur_multipromisc = !!(vsi->current_netdev_flags & IFF_ALLMULTI);
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001846 aq_ret = i40e_aq_set_vsi_multicast_promiscuous(&vsi->back->hw,
1847 vsi->seid,
1848 cur_multipromisc,
1849 NULL);
1850 if (aq_ret)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001851 dev_info(&pf->pdev->dev,
1852 "set multi promisc failed, err %d, aq_err %d\n",
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001853 aq_ret, pf->hw.aq.asq_last_status);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001854 }
1855 if ((changed_flags & IFF_PROMISC) || promisc_forced_on) {
1856 bool cur_promisc;
1857 cur_promisc = (!!(vsi->current_netdev_flags & IFF_PROMISC) ||
1858 test_bit(__I40E_FILTER_OVERFLOW_PROMISC,
1859 &vsi->state));
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001860 aq_ret = i40e_aq_set_vsi_unicast_promiscuous(&vsi->back->hw,
1861 vsi->seid,
1862 cur_promisc, NULL);
1863 if (aq_ret)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001864 dev_info(&pf->pdev->dev,
1865 "set uni promisc failed, err %d, aq_err %d\n",
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001866 aq_ret, pf->hw.aq.asq_last_status);
Greg Rose1a103702013-11-28 06:42:39 +00001867 aq_ret = i40e_aq_set_vsi_broadcast(&vsi->back->hw,
1868 vsi->seid,
1869 cur_promisc, NULL);
1870 if (aq_ret)
1871 dev_info(&pf->pdev->dev,
1872 "set brdcast promisc failed, err %d, aq_err %d\n",
1873 aq_ret, pf->hw.aq.asq_last_status);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001874 }
1875
1876 clear_bit(__I40E_CONFIG_BUSY, &vsi->state);
1877 return 0;
1878}
1879
1880/**
1881 * i40e_sync_filters_subtask - Sync the VSI filter list with HW
1882 * @pf: board private structure
1883 **/
1884static void i40e_sync_filters_subtask(struct i40e_pf *pf)
1885{
1886 int v;
1887
1888 if (!pf || !(pf->flags & I40E_FLAG_FILTER_SYNC))
1889 return;
1890 pf->flags &= ~I40E_FLAG_FILTER_SYNC;
1891
Mitch Williams505682c2014-05-20 08:01:37 +00001892 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001893 if (pf->vsi[v] &&
1894 (pf->vsi[v]->flags & I40E_VSI_FLAG_FILTER_CHANGED))
1895 i40e_sync_vsi_filters(pf->vsi[v]);
1896 }
1897}
1898
1899/**
1900 * i40e_change_mtu - NDO callback to change the Maximum Transfer Unit
1901 * @netdev: network interface device structure
1902 * @new_mtu: new value for maximum frame size
1903 *
1904 * Returns 0 on success, negative on failure
1905 **/
1906static int i40e_change_mtu(struct net_device *netdev, int new_mtu)
1907{
1908 struct i40e_netdev_priv *np = netdev_priv(netdev);
Jesse Brandeburg61a46a42014-04-23 04:50:05 +00001909 int max_frame = new_mtu + ETH_HLEN + ETH_FCS_LEN + VLAN_HLEN;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001910 struct i40e_vsi *vsi = np->vsi;
1911
1912 /* MTU < 68 is an error and causes problems on some kernels */
1913 if ((new_mtu < 68) || (max_frame > I40E_MAX_RXBUFFER))
1914 return -EINVAL;
1915
1916 netdev_info(netdev, "changing MTU from %d to %d\n",
1917 netdev->mtu, new_mtu);
1918 netdev->mtu = new_mtu;
1919 if (netif_running(netdev))
1920 i40e_vsi_reinit_locked(vsi);
1921
1922 return 0;
1923}
1924
1925/**
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00001926 * i40e_ioctl - Access the hwtstamp interface
1927 * @netdev: network interface device structure
1928 * @ifr: interface request data
1929 * @cmd: ioctl command
1930 **/
1931int i40e_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd)
1932{
1933 struct i40e_netdev_priv *np = netdev_priv(netdev);
1934 struct i40e_pf *pf = np->vsi->back;
1935
1936 switch (cmd) {
1937 case SIOCGHWTSTAMP:
1938 return i40e_ptp_get_ts_config(pf, ifr);
1939 case SIOCSHWTSTAMP:
1940 return i40e_ptp_set_ts_config(pf, ifr);
1941 default:
1942 return -EOPNOTSUPP;
1943 }
1944}
1945
1946/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001947 * i40e_vlan_stripping_enable - Turn on vlan stripping for the VSI
1948 * @vsi: the vsi being adjusted
1949 **/
1950void i40e_vlan_stripping_enable(struct i40e_vsi *vsi)
1951{
1952 struct i40e_vsi_context ctxt;
1953 i40e_status ret;
1954
1955 if ((vsi->info.valid_sections &
1956 cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID)) &&
1957 ((vsi->info.port_vlan_flags & I40E_AQ_VSI_PVLAN_MODE_MASK) == 0))
1958 return; /* already enabled */
1959
1960 vsi->info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
1961 vsi->info.port_vlan_flags = I40E_AQ_VSI_PVLAN_MODE_ALL |
1962 I40E_AQ_VSI_PVLAN_EMOD_STR_BOTH;
1963
1964 ctxt.seid = vsi->seid;
1965 memcpy(&ctxt.info, &vsi->info, sizeof(vsi->info));
1966 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
1967 if (ret) {
1968 dev_info(&vsi->back->pdev->dev,
1969 "%s: update vsi failed, aq_err=%d\n",
1970 __func__, vsi->back->hw.aq.asq_last_status);
1971 }
1972}
1973
1974/**
1975 * i40e_vlan_stripping_disable - Turn off vlan stripping for the VSI
1976 * @vsi: the vsi being adjusted
1977 **/
1978void i40e_vlan_stripping_disable(struct i40e_vsi *vsi)
1979{
1980 struct i40e_vsi_context ctxt;
1981 i40e_status ret;
1982
1983 if ((vsi->info.valid_sections &
1984 cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID)) &&
1985 ((vsi->info.port_vlan_flags & I40E_AQ_VSI_PVLAN_EMOD_MASK) ==
1986 I40E_AQ_VSI_PVLAN_EMOD_MASK))
1987 return; /* already disabled */
1988
1989 vsi->info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
1990 vsi->info.port_vlan_flags = I40E_AQ_VSI_PVLAN_MODE_ALL |
1991 I40E_AQ_VSI_PVLAN_EMOD_NOTHING;
1992
1993 ctxt.seid = vsi->seid;
1994 memcpy(&ctxt.info, &vsi->info, sizeof(vsi->info));
1995 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
1996 if (ret) {
1997 dev_info(&vsi->back->pdev->dev,
1998 "%s: update vsi failed, aq_err=%d\n",
1999 __func__, vsi->back->hw.aq.asq_last_status);
2000 }
2001}
2002
2003/**
2004 * i40e_vlan_rx_register - Setup or shutdown vlan offload
2005 * @netdev: network interface to be adjusted
2006 * @features: netdev features to test if VLAN offload is enabled or not
2007 **/
2008static void i40e_vlan_rx_register(struct net_device *netdev, u32 features)
2009{
2010 struct i40e_netdev_priv *np = netdev_priv(netdev);
2011 struct i40e_vsi *vsi = np->vsi;
2012
2013 if (features & NETIF_F_HW_VLAN_CTAG_RX)
2014 i40e_vlan_stripping_enable(vsi);
2015 else
2016 i40e_vlan_stripping_disable(vsi);
2017}
2018
2019/**
2020 * i40e_vsi_add_vlan - Add vsi membership for given vlan
2021 * @vsi: the vsi being configured
2022 * @vid: vlan id to be added (0 = untagged only , -1 = any)
2023 **/
2024int i40e_vsi_add_vlan(struct i40e_vsi *vsi, s16 vid)
2025{
2026 struct i40e_mac_filter *f, *add_f;
2027 bool is_netdev, is_vf;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002028
2029 is_vf = (vsi->type == I40E_VSI_SRIOV);
2030 is_netdev = !!(vsi->netdev);
2031
2032 if (is_netdev) {
2033 add_f = i40e_add_filter(vsi, vsi->netdev->dev_addr, vid,
2034 is_vf, is_netdev);
2035 if (!add_f) {
2036 dev_info(&vsi->back->pdev->dev,
2037 "Could not add vlan filter %d for %pM\n",
2038 vid, vsi->netdev->dev_addr);
2039 return -ENOMEM;
2040 }
2041 }
2042
2043 list_for_each_entry(f, &vsi->mac_filter_list, list) {
2044 add_f = i40e_add_filter(vsi, f->macaddr, vid, is_vf, is_netdev);
2045 if (!add_f) {
2046 dev_info(&vsi->back->pdev->dev,
2047 "Could not add vlan filter %d for %pM\n",
2048 vid, f->macaddr);
2049 return -ENOMEM;
2050 }
2051 }
2052
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002053 /* Now if we add a vlan tag, make sure to check if it is the first
2054 * tag (i.e. a "tag" -1 does exist) and if so replace the -1 "tag"
2055 * with 0, so we now accept untagged and specified tagged traffic
2056 * (and not any taged and untagged)
2057 */
2058 if (vid > 0) {
2059 if (is_netdev && i40e_find_filter(vsi, vsi->netdev->dev_addr,
2060 I40E_VLAN_ANY,
2061 is_vf, is_netdev)) {
2062 i40e_del_filter(vsi, vsi->netdev->dev_addr,
2063 I40E_VLAN_ANY, is_vf, is_netdev);
2064 add_f = i40e_add_filter(vsi, vsi->netdev->dev_addr, 0,
2065 is_vf, is_netdev);
2066 if (!add_f) {
2067 dev_info(&vsi->back->pdev->dev,
2068 "Could not add filter 0 for %pM\n",
2069 vsi->netdev->dev_addr);
2070 return -ENOMEM;
2071 }
2072 }
Greg Rose8d82a7c2014-01-13 16:13:04 -08002073 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002074
Greg Rose8d82a7c2014-01-13 16:13:04 -08002075 /* Do not assume that I40E_VLAN_ANY should be reset to VLAN 0 */
2076 if (vid > 0 && !vsi->info.pvid) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002077 list_for_each_entry(f, &vsi->mac_filter_list, list) {
2078 if (i40e_find_filter(vsi, f->macaddr, I40E_VLAN_ANY,
2079 is_vf, is_netdev)) {
2080 i40e_del_filter(vsi, f->macaddr, I40E_VLAN_ANY,
2081 is_vf, is_netdev);
2082 add_f = i40e_add_filter(vsi, f->macaddr,
2083 0, is_vf, is_netdev);
2084 if (!add_f) {
2085 dev_info(&vsi->back->pdev->dev,
2086 "Could not add filter 0 for %pM\n",
2087 f->macaddr);
2088 return -ENOMEM;
2089 }
2090 }
2091 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002092 }
2093
Anjali Singhai Jain80f64282013-11-28 06:39:47 +00002094 if (test_bit(__I40E_DOWN, &vsi->back->state) ||
2095 test_bit(__I40E_RESET_RECOVERY_PENDING, &vsi->back->state))
2096 return 0;
2097
2098 return i40e_sync_vsi_filters(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002099}
2100
2101/**
2102 * i40e_vsi_kill_vlan - Remove vsi membership for given vlan
2103 * @vsi: the vsi being configured
2104 * @vid: vlan id to be removed (0 = untagged only , -1 = any)
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002105 *
2106 * Return: 0 on success or negative otherwise
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002107 **/
2108int i40e_vsi_kill_vlan(struct i40e_vsi *vsi, s16 vid)
2109{
2110 struct net_device *netdev = vsi->netdev;
2111 struct i40e_mac_filter *f, *add_f;
2112 bool is_vf, is_netdev;
2113 int filter_count = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002114
2115 is_vf = (vsi->type == I40E_VSI_SRIOV);
2116 is_netdev = !!(netdev);
2117
2118 if (is_netdev)
2119 i40e_del_filter(vsi, netdev->dev_addr, vid, is_vf, is_netdev);
2120
2121 list_for_each_entry(f, &vsi->mac_filter_list, list)
2122 i40e_del_filter(vsi, f->macaddr, vid, is_vf, is_netdev);
2123
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002124 /* go through all the filters for this VSI and if there is only
2125 * vid == 0 it means there are no other filters, so vid 0 must
2126 * be replaced with -1. This signifies that we should from now
2127 * on accept any traffic (with any tag present, or untagged)
2128 */
2129 list_for_each_entry(f, &vsi->mac_filter_list, list) {
2130 if (is_netdev) {
2131 if (f->vlan &&
2132 ether_addr_equal(netdev->dev_addr, f->macaddr))
2133 filter_count++;
2134 }
2135
2136 if (f->vlan)
2137 filter_count++;
2138 }
2139
2140 if (!filter_count && is_netdev) {
2141 i40e_del_filter(vsi, netdev->dev_addr, 0, is_vf, is_netdev);
2142 f = i40e_add_filter(vsi, netdev->dev_addr, I40E_VLAN_ANY,
2143 is_vf, is_netdev);
2144 if (!f) {
2145 dev_info(&vsi->back->pdev->dev,
2146 "Could not add filter %d for %pM\n",
2147 I40E_VLAN_ANY, netdev->dev_addr);
2148 return -ENOMEM;
2149 }
2150 }
2151
2152 if (!filter_count) {
2153 list_for_each_entry(f, &vsi->mac_filter_list, list) {
2154 i40e_del_filter(vsi, f->macaddr, 0, is_vf, is_netdev);
2155 add_f = i40e_add_filter(vsi, f->macaddr, I40E_VLAN_ANY,
2156 is_vf, is_netdev);
2157 if (!add_f) {
2158 dev_info(&vsi->back->pdev->dev,
2159 "Could not add filter %d for %pM\n",
2160 I40E_VLAN_ANY, f->macaddr);
2161 return -ENOMEM;
2162 }
2163 }
2164 }
2165
Anjali Singhai Jain80f64282013-11-28 06:39:47 +00002166 if (test_bit(__I40E_DOWN, &vsi->back->state) ||
2167 test_bit(__I40E_RESET_RECOVERY_PENDING, &vsi->back->state))
2168 return 0;
2169
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002170 return i40e_sync_vsi_filters(vsi);
2171}
2172
2173/**
2174 * i40e_vlan_rx_add_vid - Add a vlan id filter to HW offload
2175 * @netdev: network interface to be adjusted
2176 * @vid: vlan id to be added
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002177 *
2178 * net_device_ops implementation for adding vlan ids
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002179 **/
Vasu Dev38e00432014-08-01 13:27:03 -07002180#ifdef I40E_FCOE
2181int i40e_vlan_rx_add_vid(struct net_device *netdev,
2182 __always_unused __be16 proto, u16 vid)
2183#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002184static int i40e_vlan_rx_add_vid(struct net_device *netdev,
2185 __always_unused __be16 proto, u16 vid)
Vasu Dev38e00432014-08-01 13:27:03 -07002186#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002187{
2188 struct i40e_netdev_priv *np = netdev_priv(netdev);
2189 struct i40e_vsi *vsi = np->vsi;
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002190 int ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002191
2192 if (vid > 4095)
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002193 return -EINVAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002194
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002195 netdev_info(netdev, "adding %pM vid=%d\n", netdev->dev_addr, vid);
2196
Anjali Singhai Jain6982d422014-02-06 05:51:10 +00002197 /* If the network stack called us with vid = 0 then
2198 * it is asking to receive priority tagged packets with
2199 * vlan id 0. Our HW receives them by default when configured
2200 * to receive untagged packets so there is no need to add an
2201 * extra filter for vlan 0 tagged packets.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002202 */
Anjali Singhai Jain6982d422014-02-06 05:51:10 +00002203 if (vid)
2204 ret = i40e_vsi_add_vlan(vsi, vid);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002205
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002206 if (!ret && (vid < VLAN_N_VID))
2207 set_bit(vid, vsi->active_vlans);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002208
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002209 return ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002210}
2211
2212/**
2213 * i40e_vlan_rx_kill_vid - Remove a vlan id filter from HW offload
2214 * @netdev: network interface to be adjusted
2215 * @vid: vlan id to be removed
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002216 *
Akeem G Abodunrinfdfd9432014-02-11 08:24:15 +00002217 * net_device_ops implementation for removing vlan ids
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002218 **/
Vasu Dev38e00432014-08-01 13:27:03 -07002219#ifdef I40E_FCOE
2220int i40e_vlan_rx_kill_vid(struct net_device *netdev,
2221 __always_unused __be16 proto, u16 vid)
2222#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002223static int i40e_vlan_rx_kill_vid(struct net_device *netdev,
2224 __always_unused __be16 proto, u16 vid)
Vasu Dev38e00432014-08-01 13:27:03 -07002225#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002226{
2227 struct i40e_netdev_priv *np = netdev_priv(netdev);
2228 struct i40e_vsi *vsi = np->vsi;
2229
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002230 netdev_info(netdev, "removing %pM vid=%d\n", netdev->dev_addr, vid);
2231
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002232 /* return code is ignored as there is nothing a user
2233 * can do about failure to remove and a log message was
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002234 * already printed from the other function
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002235 */
2236 i40e_vsi_kill_vlan(vsi, vid);
2237
2238 clear_bit(vid, vsi->active_vlans);
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002239
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002240 return 0;
2241}
2242
2243/**
2244 * i40e_restore_vlan - Reinstate vlans when vsi/netdev comes back up
2245 * @vsi: the vsi being brought back up
2246 **/
2247static void i40e_restore_vlan(struct i40e_vsi *vsi)
2248{
2249 u16 vid;
2250
2251 if (!vsi->netdev)
2252 return;
2253
2254 i40e_vlan_rx_register(vsi->netdev, vsi->netdev->features);
2255
2256 for_each_set_bit(vid, vsi->active_vlans, VLAN_N_VID)
2257 i40e_vlan_rx_add_vid(vsi->netdev, htons(ETH_P_8021Q),
2258 vid);
2259}
2260
2261/**
2262 * i40e_vsi_add_pvid - Add pvid for the VSI
2263 * @vsi: the vsi being adjusted
2264 * @vid: the vlan id to set as a PVID
2265 **/
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00002266int i40e_vsi_add_pvid(struct i40e_vsi *vsi, u16 vid)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002267{
2268 struct i40e_vsi_context ctxt;
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00002269 i40e_status aq_ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002270
2271 vsi->info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
2272 vsi->info.pvid = cpu_to_le16(vid);
Greg Rose6c12fcb2013-11-28 06:39:34 +00002273 vsi->info.port_vlan_flags = I40E_AQ_VSI_PVLAN_MODE_TAGGED |
2274 I40E_AQ_VSI_PVLAN_INSERT_PVID |
Greg Roseb774c7d2013-11-28 06:39:44 +00002275 I40E_AQ_VSI_PVLAN_EMOD_STR;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002276
2277 ctxt.seid = vsi->seid;
2278 memcpy(&ctxt.info, &vsi->info, sizeof(vsi->info));
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00002279 aq_ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
2280 if (aq_ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002281 dev_info(&vsi->back->pdev->dev,
2282 "%s: update vsi failed, aq_err=%d\n",
2283 __func__, vsi->back->hw.aq.asq_last_status);
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00002284 return -ENOENT;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002285 }
2286
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00002287 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002288}
2289
2290/**
2291 * i40e_vsi_remove_pvid - Remove the pvid from the VSI
2292 * @vsi: the vsi being adjusted
2293 *
2294 * Just use the vlan_rx_register() service to put it back to normal
2295 **/
2296void i40e_vsi_remove_pvid(struct i40e_vsi *vsi)
2297{
Greg Rose6c12fcb2013-11-28 06:39:34 +00002298 i40e_vlan_stripping_disable(vsi);
2299
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002300 vsi->info.pvid = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002301}
2302
2303/**
2304 * i40e_vsi_setup_tx_resources - Allocate VSI Tx queue resources
2305 * @vsi: ptr to the VSI
2306 *
2307 * If this function returns with an error, then it's possible one or
2308 * more of the rings is populated (while the rest are not). It is the
2309 * callers duty to clean those orphaned rings.
2310 *
2311 * Return 0 on success, negative on failure
2312 **/
2313static int i40e_vsi_setup_tx_resources(struct i40e_vsi *vsi)
2314{
2315 int i, err = 0;
2316
2317 for (i = 0; i < vsi->num_queue_pairs && !err; i++)
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00002318 err = i40e_setup_tx_descriptors(vsi->tx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002319
2320 return err;
2321}
2322
2323/**
2324 * i40e_vsi_free_tx_resources - Free Tx resources for VSI queues
2325 * @vsi: ptr to the VSI
2326 *
2327 * Free VSI's transmit software resources
2328 **/
2329static void i40e_vsi_free_tx_resources(struct i40e_vsi *vsi)
2330{
2331 int i;
2332
Greg Rose8e9dca52013-12-18 13:45:53 +00002333 if (!vsi->tx_rings)
2334 return;
2335
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002336 for (i = 0; i < vsi->num_queue_pairs; i++)
Greg Rose8e9dca52013-12-18 13:45:53 +00002337 if (vsi->tx_rings[i] && vsi->tx_rings[i]->desc)
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00002338 i40e_free_tx_resources(vsi->tx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002339}
2340
2341/**
2342 * i40e_vsi_setup_rx_resources - Allocate VSI queues Rx resources
2343 * @vsi: ptr to the VSI
2344 *
2345 * If this function returns with an error, then it's possible one or
2346 * more of the rings is populated (while the rest are not). It is the
2347 * callers duty to clean those orphaned rings.
2348 *
2349 * Return 0 on success, negative on failure
2350 **/
2351static int i40e_vsi_setup_rx_resources(struct i40e_vsi *vsi)
2352{
2353 int i, err = 0;
2354
2355 for (i = 0; i < vsi->num_queue_pairs && !err; i++)
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00002356 err = i40e_setup_rx_descriptors(vsi->rx_rings[i]);
Vasu Dev38e00432014-08-01 13:27:03 -07002357#ifdef I40E_FCOE
2358 i40e_fcoe_setup_ddp_resources(vsi);
2359#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002360 return err;
2361}
2362
2363/**
2364 * i40e_vsi_free_rx_resources - Free Rx Resources for VSI queues
2365 * @vsi: ptr to the VSI
2366 *
2367 * Free all receive software resources
2368 **/
2369static void i40e_vsi_free_rx_resources(struct i40e_vsi *vsi)
2370{
2371 int i;
2372
Greg Rose8e9dca52013-12-18 13:45:53 +00002373 if (!vsi->rx_rings)
2374 return;
2375
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002376 for (i = 0; i < vsi->num_queue_pairs; i++)
Greg Rose8e9dca52013-12-18 13:45:53 +00002377 if (vsi->rx_rings[i] && vsi->rx_rings[i]->desc)
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00002378 i40e_free_rx_resources(vsi->rx_rings[i]);
Vasu Dev38e00432014-08-01 13:27:03 -07002379#ifdef I40E_FCOE
2380 i40e_fcoe_free_ddp_resources(vsi);
2381#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002382}
2383
2384/**
2385 * i40e_configure_tx_ring - Configure a transmit ring context and rest
2386 * @ring: The Tx ring to configure
2387 *
2388 * Configure the Tx descriptor ring in the HMC context.
2389 **/
2390static int i40e_configure_tx_ring(struct i40e_ring *ring)
2391{
2392 struct i40e_vsi *vsi = ring->vsi;
2393 u16 pf_q = vsi->base_queue + ring->queue_index;
2394 struct i40e_hw *hw = &vsi->back->hw;
2395 struct i40e_hmc_obj_txq tx_ctx;
2396 i40e_status err = 0;
2397 u32 qtx_ctl = 0;
2398
2399 /* some ATR related tx ring init */
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08002400 if (vsi->back->flags & I40E_FLAG_FD_ATR_ENABLED) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002401 ring->atr_sample_rate = vsi->back->atr_sample_rate;
2402 ring->atr_count = 0;
2403 } else {
2404 ring->atr_sample_rate = 0;
2405 }
2406
2407 /* initialize XPS */
2408 if (ring->q_vector && ring->netdev &&
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08002409 vsi->tc_config.numtc <= 1 &&
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002410 !test_and_set_bit(__I40E_TX_XPS_INIT_DONE, &ring->state))
2411 netif_set_xps_queue(ring->netdev,
2412 &ring->q_vector->affinity_mask,
2413 ring->queue_index);
2414
2415 /* clear the context structure first */
2416 memset(&tx_ctx, 0, sizeof(tx_ctx));
2417
2418 tx_ctx.new_context = 1;
2419 tx_ctx.base = (ring->dma / 128);
2420 tx_ctx.qlen = ring->count;
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08002421 tx_ctx.fd_ena = !!(vsi->back->flags & (I40E_FLAG_FD_SB_ENABLED |
2422 I40E_FLAG_FD_ATR_ENABLED));
Vasu Dev38e00432014-08-01 13:27:03 -07002423#ifdef I40E_FCOE
2424 tx_ctx.fc_ena = (vsi->type == I40E_VSI_FCOE);
2425#endif
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00002426 tx_ctx.timesync_ena = !!(vsi->back->flags & I40E_FLAG_PTP);
Jesse Brandeburg1943d8b2014-02-14 02:14:40 +00002427 /* FDIR VSI tx ring can still use RS bit and writebacks */
2428 if (vsi->type != I40E_VSI_FDIR)
2429 tx_ctx.head_wb_ena = 1;
2430 tx_ctx.head_wb_addr = ring->dma +
2431 (ring->count * sizeof(struct i40e_tx_desc));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002432
2433 /* As part of VSI creation/update, FW allocates certain
2434 * Tx arbitration queue sets for each TC enabled for
2435 * the VSI. The FW returns the handles to these queue
2436 * sets as part of the response buffer to Add VSI,
2437 * Update VSI, etc. AQ commands. It is expected that
2438 * these queue set handles be associated with the Tx
2439 * queues by the driver as part of the TX queue context
2440 * initialization. This has to be done regardless of
2441 * DCB as by default everything is mapped to TC0.
2442 */
2443 tx_ctx.rdylist = le16_to_cpu(vsi->info.qs_handle[ring->dcb_tc]);
2444 tx_ctx.rdylist_act = 0;
2445
2446 /* clear the context in the HMC */
2447 err = i40e_clear_lan_tx_queue_context(hw, pf_q);
2448 if (err) {
2449 dev_info(&vsi->back->pdev->dev,
2450 "Failed to clear LAN Tx queue context on Tx ring %d (pf_q %d), error: %d\n",
2451 ring->queue_index, pf_q, err);
2452 return -ENOMEM;
2453 }
2454
2455 /* set the context in the HMC */
2456 err = i40e_set_lan_tx_queue_context(hw, pf_q, &tx_ctx);
2457 if (err) {
2458 dev_info(&vsi->back->pdev->dev,
2459 "Failed to set LAN Tx queue context on Tx ring %d (pf_q %d, error: %d\n",
2460 ring->queue_index, pf_q, err);
2461 return -ENOMEM;
2462 }
2463
2464 /* Now associate this queue with this PCI function */
Mitch Williams7a28d882014-10-17 03:14:52 +00002465 if (vsi->type == I40E_VSI_VMDQ2) {
Shannon Nelson9d8bf542014-01-14 00:49:50 -08002466 qtx_ctl = I40E_QTX_CTL_VM_QUEUE;
Mitch Williams7a28d882014-10-17 03:14:52 +00002467 qtx_ctl |= ((vsi->id) << I40E_QTX_CTL_VFVM_INDX_SHIFT) &
2468 I40E_QTX_CTL_VFVM_INDX_MASK;
2469 } else {
Shannon Nelson9d8bf542014-01-14 00:49:50 -08002470 qtx_ctl = I40E_QTX_CTL_PF_QUEUE;
Mitch Williams7a28d882014-10-17 03:14:52 +00002471 }
2472
Shannon Nelson13fd9772013-09-28 07:14:19 +00002473 qtx_ctl |= ((hw->pf_id << I40E_QTX_CTL_PF_INDX_SHIFT) &
2474 I40E_QTX_CTL_PF_INDX_MASK);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002475 wr32(hw, I40E_QTX_CTL(pf_q), qtx_ctl);
2476 i40e_flush(hw);
2477
2478 clear_bit(__I40E_HANG_CHECK_ARMED, &ring->state);
2479
2480 /* cache tail off for easier writes later */
2481 ring->tail = hw->hw_addr + I40E_QTX_TAIL(pf_q);
2482
2483 return 0;
2484}
2485
2486/**
2487 * i40e_configure_rx_ring - Configure a receive ring context
2488 * @ring: The Rx ring to configure
2489 *
2490 * Configure the Rx descriptor ring in the HMC context.
2491 **/
2492static int i40e_configure_rx_ring(struct i40e_ring *ring)
2493{
2494 struct i40e_vsi *vsi = ring->vsi;
2495 u32 chain_len = vsi->back->hw.func_caps.rx_buf_chain_len;
2496 u16 pf_q = vsi->base_queue + ring->queue_index;
2497 struct i40e_hw *hw = &vsi->back->hw;
2498 struct i40e_hmc_obj_rxq rx_ctx;
2499 i40e_status err = 0;
2500
2501 ring->state = 0;
2502
2503 /* clear the context structure first */
2504 memset(&rx_ctx, 0, sizeof(rx_ctx));
2505
2506 ring->rx_buf_len = vsi->rx_buf_len;
2507 ring->rx_hdr_len = vsi->rx_hdr_len;
2508
2509 rx_ctx.dbuff = ring->rx_buf_len >> I40E_RXQ_CTX_DBUFF_SHIFT;
2510 rx_ctx.hbuff = ring->rx_hdr_len >> I40E_RXQ_CTX_HBUFF_SHIFT;
2511
2512 rx_ctx.base = (ring->dma / 128);
2513 rx_ctx.qlen = ring->count;
2514
2515 if (vsi->back->flags & I40E_FLAG_16BYTE_RX_DESC_ENABLED) {
2516 set_ring_16byte_desc_enabled(ring);
2517 rx_ctx.dsize = 0;
2518 } else {
2519 rx_ctx.dsize = 1;
2520 }
2521
2522 rx_ctx.dtype = vsi->dtype;
2523 if (vsi->dtype) {
2524 set_ring_ps_enabled(ring);
2525 rx_ctx.hsplit_0 = I40E_RX_SPLIT_L2 |
2526 I40E_RX_SPLIT_IP |
2527 I40E_RX_SPLIT_TCP_UDP |
2528 I40E_RX_SPLIT_SCTP;
2529 } else {
2530 rx_ctx.hsplit_0 = 0;
2531 }
2532
2533 rx_ctx.rxmax = min_t(u16, vsi->max_frame,
2534 (chain_len * ring->rx_buf_len));
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00002535 if (hw->revision_id == 0)
2536 rx_ctx.lrxqthresh = 0;
2537 else
2538 rx_ctx.lrxqthresh = 2;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002539 rx_ctx.crcstrip = 1;
2540 rx_ctx.l2tsel = 1;
2541 rx_ctx.showiv = 1;
Vasu Dev38e00432014-08-01 13:27:03 -07002542#ifdef I40E_FCOE
2543 rx_ctx.fc_ena = (vsi->type == I40E_VSI_FCOE);
2544#endif
Catherine Sullivanacb36762014-03-06 09:02:30 +00002545 /* set the prefena field to 1 because the manual says to */
2546 rx_ctx.prefena = 1;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002547
2548 /* clear the context in the HMC */
2549 err = i40e_clear_lan_rx_queue_context(hw, pf_q);
2550 if (err) {
2551 dev_info(&vsi->back->pdev->dev,
2552 "Failed to clear LAN Rx queue context on Rx ring %d (pf_q %d), error: %d\n",
2553 ring->queue_index, pf_q, err);
2554 return -ENOMEM;
2555 }
2556
2557 /* set the context in the HMC */
2558 err = i40e_set_lan_rx_queue_context(hw, pf_q, &rx_ctx);
2559 if (err) {
2560 dev_info(&vsi->back->pdev->dev,
2561 "Failed to set LAN Rx queue context on Rx ring %d (pf_q %d), error: %d\n",
2562 ring->queue_index, pf_q, err);
2563 return -ENOMEM;
2564 }
2565
2566 /* cache tail for quicker writes, and clear the reg before use */
2567 ring->tail = hw->hw_addr + I40E_QRX_TAIL(pf_q);
2568 writel(0, ring->tail);
2569
2570 i40e_alloc_rx_buffers(ring, I40E_DESC_UNUSED(ring));
2571
2572 return 0;
2573}
2574
2575/**
2576 * i40e_vsi_configure_tx - Configure the VSI for Tx
2577 * @vsi: VSI structure describing this set of rings and resources
2578 *
2579 * Configure the Tx VSI for operation.
2580 **/
2581static int i40e_vsi_configure_tx(struct i40e_vsi *vsi)
2582{
2583 int err = 0;
2584 u16 i;
2585
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00002586 for (i = 0; (i < vsi->num_queue_pairs) && !err; i++)
2587 err = i40e_configure_tx_ring(vsi->tx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002588
2589 return err;
2590}
2591
2592/**
2593 * i40e_vsi_configure_rx - Configure the VSI for Rx
2594 * @vsi: the VSI being configured
2595 *
2596 * Configure the Rx VSI for operation.
2597 **/
2598static int i40e_vsi_configure_rx(struct i40e_vsi *vsi)
2599{
2600 int err = 0;
2601 u16 i;
2602
2603 if (vsi->netdev && (vsi->netdev->mtu > ETH_DATA_LEN))
2604 vsi->max_frame = vsi->netdev->mtu + ETH_HLEN
2605 + ETH_FCS_LEN + VLAN_HLEN;
2606 else
2607 vsi->max_frame = I40E_RXBUFFER_2048;
2608
2609 /* figure out correct receive buffer length */
2610 switch (vsi->back->flags & (I40E_FLAG_RX_1BUF_ENABLED |
2611 I40E_FLAG_RX_PS_ENABLED)) {
2612 case I40E_FLAG_RX_1BUF_ENABLED:
2613 vsi->rx_hdr_len = 0;
2614 vsi->rx_buf_len = vsi->max_frame;
2615 vsi->dtype = I40E_RX_DTYPE_NO_SPLIT;
2616 break;
2617 case I40E_FLAG_RX_PS_ENABLED:
2618 vsi->rx_hdr_len = I40E_RX_HDR_SIZE;
2619 vsi->rx_buf_len = I40E_RXBUFFER_2048;
2620 vsi->dtype = I40E_RX_DTYPE_HEADER_SPLIT;
2621 break;
2622 default:
2623 vsi->rx_hdr_len = I40E_RX_HDR_SIZE;
2624 vsi->rx_buf_len = I40E_RXBUFFER_2048;
2625 vsi->dtype = I40E_RX_DTYPE_SPLIT_ALWAYS;
2626 break;
2627 }
2628
Vasu Dev38e00432014-08-01 13:27:03 -07002629#ifdef I40E_FCOE
2630 /* setup rx buffer for FCoE */
2631 if ((vsi->type == I40E_VSI_FCOE) &&
2632 (vsi->back->flags & I40E_FLAG_FCOE_ENABLED)) {
2633 vsi->rx_hdr_len = 0;
2634 vsi->rx_buf_len = I40E_RXBUFFER_3072;
2635 vsi->max_frame = I40E_RXBUFFER_3072;
2636 vsi->dtype = I40E_RX_DTYPE_NO_SPLIT;
2637 }
2638
2639#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002640 /* round up for the chip's needs */
2641 vsi->rx_hdr_len = ALIGN(vsi->rx_hdr_len,
2642 (1 << I40E_RXQ_CTX_HBUFF_SHIFT));
2643 vsi->rx_buf_len = ALIGN(vsi->rx_buf_len,
2644 (1 << I40E_RXQ_CTX_DBUFF_SHIFT));
2645
2646 /* set up individual rings */
2647 for (i = 0; i < vsi->num_queue_pairs && !err; i++)
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00002648 err = i40e_configure_rx_ring(vsi->rx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002649
2650 return err;
2651}
2652
2653/**
2654 * i40e_vsi_config_dcb_rings - Update rings to reflect DCB TC
2655 * @vsi: ptr to the VSI
2656 **/
2657static void i40e_vsi_config_dcb_rings(struct i40e_vsi *vsi)
2658{
Akeem G Abodunrine7046ee2014-04-09 05:58:58 +00002659 struct i40e_ring *tx_ring, *rx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002660 u16 qoffset, qcount;
2661 int i, n;
2662
2663 if (!(vsi->back->flags & I40E_FLAG_DCB_ENABLED))
2664 return;
2665
2666 for (n = 0; n < I40E_MAX_TRAFFIC_CLASS; n++) {
2667 if (!(vsi->tc_config.enabled_tc & (1 << n)))
2668 continue;
2669
2670 qoffset = vsi->tc_config.tc_info[n].qoffset;
2671 qcount = vsi->tc_config.tc_info[n].qcount;
2672 for (i = qoffset; i < (qoffset + qcount); i++) {
Akeem G Abodunrine7046ee2014-04-09 05:58:58 +00002673 rx_ring = vsi->rx_rings[i];
2674 tx_ring = vsi->tx_rings[i];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002675 rx_ring->dcb_tc = n;
2676 tx_ring->dcb_tc = n;
2677 }
2678 }
2679}
2680
2681/**
2682 * i40e_set_vsi_rx_mode - Call set_rx_mode on a VSI
2683 * @vsi: ptr to the VSI
2684 **/
2685static void i40e_set_vsi_rx_mode(struct i40e_vsi *vsi)
2686{
2687 if (vsi->netdev)
2688 i40e_set_rx_mode(vsi->netdev);
2689}
2690
2691/**
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002692 * i40e_fdir_filter_restore - Restore the Sideband Flow Director filters
2693 * @vsi: Pointer to the targeted VSI
2694 *
2695 * This function replays the hlist on the hw where all the SB Flow Director
2696 * filters were saved.
2697 **/
2698static void i40e_fdir_filter_restore(struct i40e_vsi *vsi)
2699{
2700 struct i40e_fdir_filter *filter;
2701 struct i40e_pf *pf = vsi->back;
2702 struct hlist_node *node;
2703
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00002704 if (!(pf->flags & I40E_FLAG_FD_SB_ENABLED))
2705 return;
2706
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002707 hlist_for_each_entry_safe(filter, node,
2708 &pf->fdir_filter_list, fdir_node) {
2709 i40e_add_del_fdir(vsi, filter, true);
2710 }
2711}
2712
2713/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002714 * i40e_vsi_configure - Set up the VSI for action
2715 * @vsi: the VSI being configured
2716 **/
2717static int i40e_vsi_configure(struct i40e_vsi *vsi)
2718{
2719 int err;
2720
2721 i40e_set_vsi_rx_mode(vsi);
2722 i40e_restore_vlan(vsi);
2723 i40e_vsi_config_dcb_rings(vsi);
2724 err = i40e_vsi_configure_tx(vsi);
2725 if (!err)
2726 err = i40e_vsi_configure_rx(vsi);
2727
2728 return err;
2729}
2730
2731/**
2732 * i40e_vsi_configure_msix - MSIX mode Interrupt Config in the HW
2733 * @vsi: the VSI being configured
2734 **/
2735static void i40e_vsi_configure_msix(struct i40e_vsi *vsi)
2736{
2737 struct i40e_pf *pf = vsi->back;
2738 struct i40e_q_vector *q_vector;
2739 struct i40e_hw *hw = &pf->hw;
2740 u16 vector;
2741 int i, q;
2742 u32 val;
2743 u32 qp;
2744
2745 /* The interrupt indexing is offset by 1 in the PFINT_ITRn
2746 * and PFINT_LNKLSTn registers, e.g.:
2747 * PFINT_ITRn[0..n-1] gets msix-1..msix-n (qpair interrupts)
2748 */
2749 qp = vsi->base_queue;
2750 vector = vsi->base_vector;
Alexander Duyck493fb302013-09-28 07:01:44 +00002751 for (i = 0; i < vsi->num_q_vectors; i++, vector++) {
2752 q_vector = vsi->q_vectors[i];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002753 q_vector->rx.itr = ITR_TO_REG(vsi->rx_itr_setting);
2754 q_vector->rx.latency_range = I40E_LOW_LATENCY;
2755 wr32(hw, I40E_PFINT_ITRN(I40E_RX_ITR, vector - 1),
2756 q_vector->rx.itr);
2757 q_vector->tx.itr = ITR_TO_REG(vsi->tx_itr_setting);
2758 q_vector->tx.latency_range = I40E_LOW_LATENCY;
2759 wr32(hw, I40E_PFINT_ITRN(I40E_TX_ITR, vector - 1),
2760 q_vector->tx.itr);
2761
2762 /* Linked list for the queuepairs assigned to this vector */
2763 wr32(hw, I40E_PFINT_LNKLSTN(vector - 1), qp);
2764 for (q = 0; q < q_vector->num_ringpairs; q++) {
2765 val = I40E_QINT_RQCTL_CAUSE_ENA_MASK |
2766 (I40E_RX_ITR << I40E_QINT_RQCTL_ITR_INDX_SHIFT) |
2767 (vector << I40E_QINT_RQCTL_MSIX_INDX_SHIFT) |
2768 (qp << I40E_QINT_RQCTL_NEXTQ_INDX_SHIFT)|
2769 (I40E_QUEUE_TYPE_TX
2770 << I40E_QINT_RQCTL_NEXTQ_TYPE_SHIFT);
2771
2772 wr32(hw, I40E_QINT_RQCTL(qp), val);
2773
2774 val = I40E_QINT_TQCTL_CAUSE_ENA_MASK |
2775 (I40E_TX_ITR << I40E_QINT_TQCTL_ITR_INDX_SHIFT) |
2776 (vector << I40E_QINT_TQCTL_MSIX_INDX_SHIFT) |
2777 ((qp+1) << I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT)|
2778 (I40E_QUEUE_TYPE_RX
2779 << I40E_QINT_TQCTL_NEXTQ_TYPE_SHIFT);
2780
2781 /* Terminate the linked list */
2782 if (q == (q_vector->num_ringpairs - 1))
2783 val |= (I40E_QUEUE_END_OF_LIST
2784 << I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT);
2785
2786 wr32(hw, I40E_QINT_TQCTL(qp), val);
2787 qp++;
2788 }
2789 }
2790
2791 i40e_flush(hw);
2792}
2793
2794/**
2795 * i40e_enable_misc_int_causes - enable the non-queue interrupts
2796 * @hw: ptr to the hardware info
2797 **/
2798static void i40e_enable_misc_int_causes(struct i40e_hw *hw)
2799{
2800 u32 val;
2801
2802 /* clear things first */
2803 wr32(hw, I40E_PFINT_ICR0_ENA, 0); /* disable all */
2804 rd32(hw, I40E_PFINT_ICR0); /* read to clear */
2805
2806 val = I40E_PFINT_ICR0_ENA_ECC_ERR_MASK |
2807 I40E_PFINT_ICR0_ENA_MAL_DETECT_MASK |
2808 I40E_PFINT_ICR0_ENA_GRST_MASK |
2809 I40E_PFINT_ICR0_ENA_PCI_EXCEPTION_MASK |
2810 I40E_PFINT_ICR0_ENA_GPIO_MASK |
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00002811 I40E_PFINT_ICR0_ENA_TIMESYNC_MASK |
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002812 I40E_PFINT_ICR0_ENA_HMC_ERR_MASK |
2813 I40E_PFINT_ICR0_ENA_VFLR_MASK |
2814 I40E_PFINT_ICR0_ENA_ADMINQ_MASK;
2815
2816 wr32(hw, I40E_PFINT_ICR0_ENA, val);
2817
2818 /* SW_ITR_IDX = 0, but don't change INTENA */
Anjali Singhai Jain84ed40e2013-11-26 10:49:32 +00002819 wr32(hw, I40E_PFINT_DYN_CTL0, I40E_PFINT_DYN_CTL0_SW_ITR_INDX_MASK |
2820 I40E_PFINT_DYN_CTL0_INTENA_MSK_MASK);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002821
2822 /* OTHER_ITR_IDX = 0 */
2823 wr32(hw, I40E_PFINT_STAT_CTL0, 0);
2824}
2825
2826/**
2827 * i40e_configure_msi_and_legacy - Legacy mode interrupt config in the HW
2828 * @vsi: the VSI being configured
2829 **/
2830static void i40e_configure_msi_and_legacy(struct i40e_vsi *vsi)
2831{
Alexander Duyck493fb302013-09-28 07:01:44 +00002832 struct i40e_q_vector *q_vector = vsi->q_vectors[0];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002833 struct i40e_pf *pf = vsi->back;
2834 struct i40e_hw *hw = &pf->hw;
2835 u32 val;
2836
2837 /* set the ITR configuration */
2838 q_vector->rx.itr = ITR_TO_REG(vsi->rx_itr_setting);
2839 q_vector->rx.latency_range = I40E_LOW_LATENCY;
2840 wr32(hw, I40E_PFINT_ITR0(I40E_RX_ITR), q_vector->rx.itr);
2841 q_vector->tx.itr = ITR_TO_REG(vsi->tx_itr_setting);
2842 q_vector->tx.latency_range = I40E_LOW_LATENCY;
2843 wr32(hw, I40E_PFINT_ITR0(I40E_TX_ITR), q_vector->tx.itr);
2844
2845 i40e_enable_misc_int_causes(hw);
2846
2847 /* FIRSTQ_INDX = 0, FIRSTQ_TYPE = 0 (rx) */
2848 wr32(hw, I40E_PFINT_LNKLST0, 0);
2849
Jesse Brandeburgf29eaa32014-02-11 08:24:12 +00002850 /* Associate the queue pair to the vector and enable the queue int */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002851 val = I40E_QINT_RQCTL_CAUSE_ENA_MASK |
2852 (I40E_RX_ITR << I40E_QINT_RQCTL_ITR_INDX_SHIFT) |
2853 (I40E_QUEUE_TYPE_TX << I40E_QINT_TQCTL_NEXTQ_TYPE_SHIFT);
2854
2855 wr32(hw, I40E_QINT_RQCTL(0), val);
2856
2857 val = I40E_QINT_TQCTL_CAUSE_ENA_MASK |
2858 (I40E_TX_ITR << I40E_QINT_TQCTL_ITR_INDX_SHIFT) |
2859 (I40E_QUEUE_END_OF_LIST << I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT);
2860
2861 wr32(hw, I40E_QINT_TQCTL(0), val);
2862 i40e_flush(hw);
2863}
2864
2865/**
Mitch Williams2ef28cf2013-11-28 06:39:32 +00002866 * i40e_irq_dynamic_disable_icr0 - Disable default interrupt generation for icr0
2867 * @pf: board private structure
2868 **/
2869void i40e_irq_dynamic_disable_icr0(struct i40e_pf *pf)
2870{
2871 struct i40e_hw *hw = &pf->hw;
2872
2873 wr32(hw, I40E_PFINT_DYN_CTL0,
2874 I40E_ITR_NONE << I40E_PFINT_DYN_CTLN_ITR_INDX_SHIFT);
2875 i40e_flush(hw);
2876}
2877
2878/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002879 * i40e_irq_dynamic_enable_icr0 - Enable default interrupt generation for icr0
2880 * @pf: board private structure
2881 **/
Shannon Nelson116a57d2013-09-28 07:13:59 +00002882void i40e_irq_dynamic_enable_icr0(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002883{
2884 struct i40e_hw *hw = &pf->hw;
2885 u32 val;
2886
2887 val = I40E_PFINT_DYN_CTL0_INTENA_MASK |
2888 I40E_PFINT_DYN_CTL0_CLEARPBA_MASK |
2889 (I40E_ITR_NONE << I40E_PFINT_DYN_CTL0_ITR_INDX_SHIFT);
2890
2891 wr32(hw, I40E_PFINT_DYN_CTL0, val);
2892 i40e_flush(hw);
2893}
2894
2895/**
2896 * i40e_irq_dynamic_enable - Enable default interrupt generation settings
2897 * @vsi: pointer to a vsi
2898 * @vector: enable a particular Hw Interrupt vector
2899 **/
2900void i40e_irq_dynamic_enable(struct i40e_vsi *vsi, int vector)
2901{
2902 struct i40e_pf *pf = vsi->back;
2903 struct i40e_hw *hw = &pf->hw;
2904 u32 val;
2905
2906 val = I40E_PFINT_DYN_CTLN_INTENA_MASK |
2907 I40E_PFINT_DYN_CTLN_CLEARPBA_MASK |
2908 (I40E_ITR_NONE << I40E_PFINT_DYN_CTLN_ITR_INDX_SHIFT);
2909 wr32(hw, I40E_PFINT_DYN_CTLN(vector - 1), val);
Jesse Brandeburg1022cb62013-09-28 07:13:08 +00002910 /* skip the flush */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002911}
2912
2913/**
Carolyn Wyborny5c2cebd2014-06-04 01:23:18 +00002914 * i40e_irq_dynamic_disable - Disable default interrupt generation settings
2915 * @vsi: pointer to a vsi
2916 * @vector: enable a particular Hw Interrupt vector
2917 **/
2918void i40e_irq_dynamic_disable(struct i40e_vsi *vsi, int vector)
2919{
2920 struct i40e_pf *pf = vsi->back;
2921 struct i40e_hw *hw = &pf->hw;
2922 u32 val;
2923
2924 val = I40E_ITR_NONE << I40E_PFINT_DYN_CTLN_ITR_INDX_SHIFT;
2925 wr32(hw, I40E_PFINT_DYN_CTLN(vector - 1), val);
2926 i40e_flush(hw);
2927}
2928
2929/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002930 * i40e_msix_clean_rings - MSIX mode Interrupt Handler
2931 * @irq: interrupt number
2932 * @data: pointer to a q_vector
2933 **/
2934static irqreturn_t i40e_msix_clean_rings(int irq, void *data)
2935{
2936 struct i40e_q_vector *q_vector = data;
2937
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00002938 if (!q_vector->tx.ring && !q_vector->rx.ring)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002939 return IRQ_HANDLED;
2940
2941 napi_schedule(&q_vector->napi);
2942
2943 return IRQ_HANDLED;
2944}
2945
2946/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002947 * i40e_vsi_request_irq_msix - Initialize MSI-X interrupts
2948 * @vsi: the VSI being configured
2949 * @basename: name for the vector
2950 *
2951 * Allocates MSI-X vectors and requests interrupts from the kernel.
2952 **/
2953static int i40e_vsi_request_irq_msix(struct i40e_vsi *vsi, char *basename)
2954{
2955 int q_vectors = vsi->num_q_vectors;
2956 struct i40e_pf *pf = vsi->back;
2957 int base = vsi->base_vector;
2958 int rx_int_idx = 0;
2959 int tx_int_idx = 0;
2960 int vector, err;
2961
2962 for (vector = 0; vector < q_vectors; vector++) {
Alexander Duyck493fb302013-09-28 07:01:44 +00002963 struct i40e_q_vector *q_vector = vsi->q_vectors[vector];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002964
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00002965 if (q_vector->tx.ring && q_vector->rx.ring) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002966 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
2967 "%s-%s-%d", basename, "TxRx", rx_int_idx++);
2968 tx_int_idx++;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00002969 } else if (q_vector->rx.ring) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002970 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
2971 "%s-%s-%d", basename, "rx", rx_int_idx++);
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00002972 } else if (q_vector->tx.ring) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002973 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
2974 "%s-%s-%d", basename, "tx", tx_int_idx++);
2975 } else {
2976 /* skip this unused q_vector */
2977 continue;
2978 }
2979 err = request_irq(pf->msix_entries[base + vector].vector,
2980 vsi->irq_handler,
2981 0,
2982 q_vector->name,
2983 q_vector);
2984 if (err) {
2985 dev_info(&pf->pdev->dev,
2986 "%s: request_irq failed, error: %d\n",
2987 __func__, err);
2988 goto free_queue_irqs;
2989 }
2990 /* assign the mask for this irq */
2991 irq_set_affinity_hint(pf->msix_entries[base + vector].vector,
2992 &q_vector->affinity_mask);
2993 }
2994
Shannon Nelson63741842014-04-23 04:50:16 +00002995 vsi->irqs_ready = true;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002996 return 0;
2997
2998free_queue_irqs:
2999 while (vector) {
3000 vector--;
3001 irq_set_affinity_hint(pf->msix_entries[base + vector].vector,
3002 NULL);
3003 free_irq(pf->msix_entries[base + vector].vector,
3004 &(vsi->q_vectors[vector]));
3005 }
3006 return err;
3007}
3008
3009/**
3010 * i40e_vsi_disable_irq - Mask off queue interrupt generation on the VSI
3011 * @vsi: the VSI being un-configured
3012 **/
3013static void i40e_vsi_disable_irq(struct i40e_vsi *vsi)
3014{
3015 struct i40e_pf *pf = vsi->back;
3016 struct i40e_hw *hw = &pf->hw;
3017 int base = vsi->base_vector;
3018 int i;
3019
3020 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00003021 wr32(hw, I40E_QINT_TQCTL(vsi->tx_rings[i]->reg_idx), 0);
3022 wr32(hw, I40E_QINT_RQCTL(vsi->rx_rings[i]->reg_idx), 0);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003023 }
3024
3025 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
3026 for (i = vsi->base_vector;
3027 i < (vsi->num_q_vectors + vsi->base_vector); i++)
3028 wr32(hw, I40E_PFINT_DYN_CTLN(i - 1), 0);
3029
3030 i40e_flush(hw);
3031 for (i = 0; i < vsi->num_q_vectors; i++)
3032 synchronize_irq(pf->msix_entries[i + base].vector);
3033 } else {
3034 /* Legacy and MSI mode - this stops all interrupt handling */
3035 wr32(hw, I40E_PFINT_ICR0_ENA, 0);
3036 wr32(hw, I40E_PFINT_DYN_CTL0, 0);
3037 i40e_flush(hw);
3038 synchronize_irq(pf->pdev->irq);
3039 }
3040}
3041
3042/**
3043 * i40e_vsi_enable_irq - Enable IRQ for the given VSI
3044 * @vsi: the VSI being configured
3045 **/
3046static int i40e_vsi_enable_irq(struct i40e_vsi *vsi)
3047{
3048 struct i40e_pf *pf = vsi->back;
3049 int i;
3050
3051 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
3052 for (i = vsi->base_vector;
3053 i < (vsi->num_q_vectors + vsi->base_vector); i++)
3054 i40e_irq_dynamic_enable(vsi, i);
3055 } else {
3056 i40e_irq_dynamic_enable_icr0(pf);
3057 }
3058
Jesse Brandeburg1022cb62013-09-28 07:13:08 +00003059 i40e_flush(&pf->hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003060 return 0;
3061}
3062
3063/**
3064 * i40e_stop_misc_vector - Stop the vector that handles non-queue events
3065 * @pf: board private structure
3066 **/
3067static void i40e_stop_misc_vector(struct i40e_pf *pf)
3068{
3069 /* Disable ICR 0 */
3070 wr32(&pf->hw, I40E_PFINT_ICR0_ENA, 0);
3071 i40e_flush(&pf->hw);
3072}
3073
3074/**
3075 * i40e_intr - MSI/Legacy and non-queue interrupt handler
3076 * @irq: interrupt number
3077 * @data: pointer to a q_vector
3078 *
3079 * This is the handler used for all MSI/Legacy interrupts, and deals
3080 * with both queue and non-queue interrupts. This is also used in
3081 * MSIX mode to handle the non-queue interrupts.
3082 **/
3083static irqreturn_t i40e_intr(int irq, void *data)
3084{
3085 struct i40e_pf *pf = (struct i40e_pf *)data;
3086 struct i40e_hw *hw = &pf->hw;
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003087 irqreturn_t ret = IRQ_NONE;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003088 u32 icr0, icr0_remaining;
3089 u32 val, ena_mask;
3090
3091 icr0 = rd32(hw, I40E_PFINT_ICR0);
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003092 ena_mask = rd32(hw, I40E_PFINT_ICR0_ENA);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003093
Shannon Nelson116a57d2013-09-28 07:13:59 +00003094 /* if sharing a legacy IRQ, we might get called w/o an intr pending */
3095 if ((icr0 & I40E_PFINT_ICR0_INTEVENT_MASK) == 0)
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003096 goto enable_intr;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003097
Shannon Nelsoncd92e722013-11-16 10:00:44 +00003098 /* if interrupt but no bits showing, must be SWINT */
3099 if (((icr0 & ~I40E_PFINT_ICR0_INTEVENT_MASK) == 0) ||
3100 (icr0 & I40E_PFINT_ICR0_SWINT_MASK))
3101 pf->sw_int_count++;
3102
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003103 /* only q0 is used in MSI/Legacy mode, and none are used in MSIX */
3104 if (icr0 & I40E_PFINT_ICR0_QUEUE_0_MASK) {
3105
3106 /* temporarily disable queue cause for NAPI processing */
3107 u32 qval = rd32(hw, I40E_QINT_RQCTL(0));
3108 qval &= ~I40E_QINT_RQCTL_CAUSE_ENA_MASK;
3109 wr32(hw, I40E_QINT_RQCTL(0), qval);
3110
3111 qval = rd32(hw, I40E_QINT_TQCTL(0));
3112 qval &= ~I40E_QINT_TQCTL_CAUSE_ENA_MASK;
3113 wr32(hw, I40E_QINT_TQCTL(0), qval);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003114
3115 if (!test_bit(__I40E_DOWN, &pf->state))
Alexander Duyck493fb302013-09-28 07:01:44 +00003116 napi_schedule(&pf->vsi[pf->lan_vsi]->q_vectors[0]->napi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003117 }
3118
3119 if (icr0 & I40E_PFINT_ICR0_ADMINQ_MASK) {
3120 ena_mask &= ~I40E_PFINT_ICR0_ENA_ADMINQ_MASK;
3121 set_bit(__I40E_ADMINQ_EVENT_PENDING, &pf->state);
3122 }
3123
3124 if (icr0 & I40E_PFINT_ICR0_MAL_DETECT_MASK) {
3125 ena_mask &= ~I40E_PFINT_ICR0_ENA_MAL_DETECT_MASK;
3126 set_bit(__I40E_MDD_EVENT_PENDING, &pf->state);
3127 }
3128
3129 if (icr0 & I40E_PFINT_ICR0_VFLR_MASK) {
3130 ena_mask &= ~I40E_PFINT_ICR0_ENA_VFLR_MASK;
3131 set_bit(__I40E_VFLR_EVENT_PENDING, &pf->state);
3132 }
3133
3134 if (icr0 & I40E_PFINT_ICR0_GRST_MASK) {
3135 if (!test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state))
3136 set_bit(__I40E_RESET_INTR_RECEIVED, &pf->state);
3137 ena_mask &= ~I40E_PFINT_ICR0_ENA_GRST_MASK;
3138 val = rd32(hw, I40E_GLGEN_RSTAT);
3139 val = (val & I40E_GLGEN_RSTAT_RESET_TYPE_MASK)
3140 >> I40E_GLGEN_RSTAT_RESET_TYPE_SHIFT;
Shannon Nelson4eb3f762014-03-06 08:59:58 +00003141 if (val == I40E_RESET_CORER) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003142 pf->corer_count++;
Shannon Nelson4eb3f762014-03-06 08:59:58 +00003143 } else if (val == I40E_RESET_GLOBR) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003144 pf->globr_count++;
Shannon Nelson4eb3f762014-03-06 08:59:58 +00003145 } else if (val == I40E_RESET_EMPR) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003146 pf->empr_count++;
Shannon Nelson4eb3f762014-03-06 08:59:58 +00003147 set_bit(__I40E_EMP_RESET_REQUESTED, &pf->state);
3148 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003149 }
3150
Anjali Singhai Jain9c010ee2013-11-28 06:39:20 +00003151 if (icr0 & I40E_PFINT_ICR0_HMC_ERR_MASK) {
3152 icr0 &= ~I40E_PFINT_ICR0_HMC_ERR_MASK;
3153 dev_info(&pf->pdev->dev, "HMC error interrupt\n");
3154 }
3155
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00003156 if (icr0 & I40E_PFINT_ICR0_TIMESYNC_MASK) {
3157 u32 prttsyn_stat = rd32(hw, I40E_PRTTSYN_STAT_0);
3158
3159 if (prttsyn_stat & I40E_PRTTSYN_STAT_0_TXTIME_MASK) {
Jacob Kellercafa1fc2014-04-24 18:05:03 -07003160 icr0 &= ~I40E_PFINT_ICR0_ENA_TIMESYNC_MASK;
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00003161 i40e_ptp_tx_hwtstamp(pf);
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00003162 }
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00003163 }
3164
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003165 /* If a critical error is pending we have no choice but to reset the
3166 * device.
3167 * Report and mask out any remaining unexpected interrupts.
3168 */
3169 icr0_remaining = icr0 & ena_mask;
3170 if (icr0_remaining) {
3171 dev_info(&pf->pdev->dev, "unhandled interrupt icr0=0x%08x\n",
3172 icr0_remaining);
Anjali Singhai Jain9c010ee2013-11-28 06:39:20 +00003173 if ((icr0_remaining & I40E_PFINT_ICR0_PE_CRITERR_MASK) ||
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003174 (icr0_remaining & I40E_PFINT_ICR0_PCI_EXCEPTION_MASK) ||
Anjali Singhai Jainc0c28972014-02-12 01:45:34 +00003175 (icr0_remaining & I40E_PFINT_ICR0_ECC_ERR_MASK)) {
Anjali Singhai Jain9c010ee2013-11-28 06:39:20 +00003176 dev_info(&pf->pdev->dev, "device will be reset\n");
3177 set_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
3178 i40e_service_event_schedule(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003179 }
3180 ena_mask &= ~icr0_remaining;
3181 }
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003182 ret = IRQ_HANDLED;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003183
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003184enable_intr:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003185 /* re-enable interrupt causes */
3186 wr32(hw, I40E_PFINT_ICR0_ENA, ena_mask);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003187 if (!test_bit(__I40E_DOWN, &pf->state)) {
3188 i40e_service_event_schedule(pf);
3189 i40e_irq_dynamic_enable_icr0(pf);
3190 }
3191
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003192 return ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003193}
3194
3195/**
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003196 * i40e_clean_fdir_tx_irq - Reclaim resources after transmit completes
3197 * @tx_ring: tx ring to clean
3198 * @budget: how many cleans we're allowed
3199 *
3200 * Returns true if there's any budget left (e.g. the clean is finished)
3201 **/
3202static bool i40e_clean_fdir_tx_irq(struct i40e_ring *tx_ring, int budget)
3203{
3204 struct i40e_vsi *vsi = tx_ring->vsi;
3205 u16 i = tx_ring->next_to_clean;
3206 struct i40e_tx_buffer *tx_buf;
3207 struct i40e_tx_desc *tx_desc;
3208
3209 tx_buf = &tx_ring->tx_bi[i];
3210 tx_desc = I40E_TX_DESC(tx_ring, i);
3211 i -= tx_ring->count;
3212
3213 do {
3214 struct i40e_tx_desc *eop_desc = tx_buf->next_to_watch;
3215
3216 /* if next_to_watch is not set then there is no work pending */
3217 if (!eop_desc)
3218 break;
3219
3220 /* prevent any other reads prior to eop_desc */
3221 read_barrier_depends();
3222
3223 /* if the descriptor isn't done, no work yet to do */
3224 if (!(eop_desc->cmd_type_offset_bsz &
3225 cpu_to_le64(I40E_TX_DESC_DTYPE_DESC_DONE)))
3226 break;
3227
3228 /* clear next_to_watch to prevent false hangs */
3229 tx_buf->next_to_watch = NULL;
3230
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003231 tx_desc->buffer_addr = 0;
3232 tx_desc->cmd_type_offset_bsz = 0;
3233 /* move past filter desc */
3234 tx_buf++;
3235 tx_desc++;
3236 i++;
3237 if (unlikely(!i)) {
3238 i -= tx_ring->count;
3239 tx_buf = tx_ring->tx_bi;
3240 tx_desc = I40E_TX_DESC(tx_ring, 0);
3241 }
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003242 /* unmap skb header data */
3243 dma_unmap_single(tx_ring->dev,
3244 dma_unmap_addr(tx_buf, dma),
3245 dma_unmap_len(tx_buf, len),
3246 DMA_TO_DEVICE);
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003247 if (tx_buf->tx_flags & I40E_TX_FLAGS_FD_SB)
3248 kfree(tx_buf->raw_buf);
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003249
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003250 tx_buf->raw_buf = NULL;
3251 tx_buf->tx_flags = 0;
3252 tx_buf->next_to_watch = NULL;
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003253 dma_unmap_len_set(tx_buf, len, 0);
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003254 tx_desc->buffer_addr = 0;
3255 tx_desc->cmd_type_offset_bsz = 0;
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003256
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003257 /* move us past the eop_desc for start of next FD desc */
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003258 tx_buf++;
3259 tx_desc++;
3260 i++;
3261 if (unlikely(!i)) {
3262 i -= tx_ring->count;
3263 tx_buf = tx_ring->tx_bi;
3264 tx_desc = I40E_TX_DESC(tx_ring, 0);
3265 }
3266
3267 /* update budget accounting */
3268 budget--;
3269 } while (likely(budget));
3270
3271 i += tx_ring->count;
3272 tx_ring->next_to_clean = i;
3273
3274 if (vsi->back->flags & I40E_FLAG_MSIX_ENABLED) {
3275 i40e_irq_dynamic_enable(vsi,
3276 tx_ring->q_vector->v_idx + vsi->base_vector);
3277 }
3278 return budget > 0;
3279}
3280
3281/**
3282 * i40e_fdir_clean_ring - Interrupt Handler for FDIR SB ring
3283 * @irq: interrupt number
3284 * @data: pointer to a q_vector
3285 **/
3286static irqreturn_t i40e_fdir_clean_ring(int irq, void *data)
3287{
3288 struct i40e_q_vector *q_vector = data;
3289 struct i40e_vsi *vsi;
3290
3291 if (!q_vector->tx.ring)
3292 return IRQ_HANDLED;
3293
3294 vsi = q_vector->tx.ring->vsi;
3295 i40e_clean_fdir_tx_irq(q_vector->tx.ring, vsi->work_limit);
3296
3297 return IRQ_HANDLED;
3298}
3299
3300/**
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003301 * i40e_map_vector_to_qp - Assigns the queue pair to the vector
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003302 * @vsi: the VSI being configured
3303 * @v_idx: vector index
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003304 * @qp_idx: queue pair index
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003305 **/
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003306static void map_vector_to_qp(struct i40e_vsi *vsi, int v_idx, int qp_idx)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003307{
Alexander Duyck493fb302013-09-28 07:01:44 +00003308 struct i40e_q_vector *q_vector = vsi->q_vectors[v_idx];
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00003309 struct i40e_ring *tx_ring = vsi->tx_rings[qp_idx];
3310 struct i40e_ring *rx_ring = vsi->rx_rings[qp_idx];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003311
3312 tx_ring->q_vector = q_vector;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003313 tx_ring->next = q_vector->tx.ring;
3314 q_vector->tx.ring = tx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003315 q_vector->tx.count++;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003316
3317 rx_ring->q_vector = q_vector;
3318 rx_ring->next = q_vector->rx.ring;
3319 q_vector->rx.ring = rx_ring;
3320 q_vector->rx.count++;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003321}
3322
3323/**
3324 * i40e_vsi_map_rings_to_vectors - Maps descriptor rings to vectors
3325 * @vsi: the VSI being configured
3326 *
3327 * This function maps descriptor rings to the queue-specific vectors
3328 * we were allotted through the MSI-X enabling code. Ideally, we'd have
3329 * one vector per queue pair, but on a constrained vector budget, we
3330 * group the queue pairs as "efficiently" as possible.
3331 **/
3332static void i40e_vsi_map_rings_to_vectors(struct i40e_vsi *vsi)
3333{
3334 int qp_remaining = vsi->num_queue_pairs;
3335 int q_vectors = vsi->num_q_vectors;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003336 int num_ringpairs;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003337 int v_start = 0;
3338 int qp_idx = 0;
3339
3340 /* If we don't have enough vectors for a 1-to-1 mapping, we'll have to
3341 * group them so there are multiple queues per vector.
Anjali Singhai Jain70114ec2014-06-03 23:50:14 +00003342 * It is also important to go through all the vectors available to be
3343 * sure that if we don't use all the vectors, that the remaining vectors
3344 * are cleared. This is especially important when decreasing the
3345 * number of queues in use.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003346 */
Anjali Singhai Jain70114ec2014-06-03 23:50:14 +00003347 for (; v_start < q_vectors; v_start++) {
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003348 struct i40e_q_vector *q_vector = vsi->q_vectors[v_start];
3349
3350 num_ringpairs = DIV_ROUND_UP(qp_remaining, q_vectors - v_start);
3351
3352 q_vector->num_ringpairs = num_ringpairs;
3353
3354 q_vector->rx.count = 0;
3355 q_vector->tx.count = 0;
3356 q_vector->rx.ring = NULL;
3357 q_vector->tx.ring = NULL;
3358
3359 while (num_ringpairs--) {
3360 map_vector_to_qp(vsi, v_start, qp_idx);
3361 qp_idx++;
3362 qp_remaining--;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003363 }
3364 }
3365}
3366
3367/**
3368 * i40e_vsi_request_irq - Request IRQ from the OS
3369 * @vsi: the VSI being configured
3370 * @basename: name for the vector
3371 **/
3372static int i40e_vsi_request_irq(struct i40e_vsi *vsi, char *basename)
3373{
3374 struct i40e_pf *pf = vsi->back;
3375 int err;
3376
3377 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
3378 err = i40e_vsi_request_irq_msix(vsi, basename);
3379 else if (pf->flags & I40E_FLAG_MSI_ENABLED)
3380 err = request_irq(pf->pdev->irq, i40e_intr, 0,
3381 pf->misc_int_name, pf);
3382 else
3383 err = request_irq(pf->pdev->irq, i40e_intr, IRQF_SHARED,
3384 pf->misc_int_name, pf);
3385
3386 if (err)
3387 dev_info(&pf->pdev->dev, "request_irq failed, Error %d\n", err);
3388
3389 return err;
3390}
3391
3392#ifdef CONFIG_NET_POLL_CONTROLLER
3393/**
3394 * i40e_netpoll - A Polling 'interrupt'handler
3395 * @netdev: network interface device structure
3396 *
3397 * This is used by netconsole to send skbs without having to re-enable
3398 * interrupts. It's not called while the normal interrupt routine is executing.
3399 **/
Vasu Dev38e00432014-08-01 13:27:03 -07003400#ifdef I40E_FCOE
3401void i40e_netpoll(struct net_device *netdev)
3402#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003403static void i40e_netpoll(struct net_device *netdev)
Vasu Dev38e00432014-08-01 13:27:03 -07003404#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003405{
3406 struct i40e_netdev_priv *np = netdev_priv(netdev);
3407 struct i40e_vsi *vsi = np->vsi;
3408 struct i40e_pf *pf = vsi->back;
3409 int i;
3410
3411 /* if interface is down do nothing */
3412 if (test_bit(__I40E_DOWN, &vsi->state))
3413 return;
3414
3415 pf->flags |= I40E_FLAG_IN_NETPOLL;
3416 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
3417 for (i = 0; i < vsi->num_q_vectors; i++)
Alexander Duyck493fb302013-09-28 07:01:44 +00003418 i40e_msix_clean_rings(0, vsi->q_vectors[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003419 } else {
3420 i40e_intr(pf->pdev->irq, netdev);
3421 }
3422 pf->flags &= ~I40E_FLAG_IN_NETPOLL;
3423}
3424#endif
3425
3426/**
Neerav Parikh23527302014-06-03 23:50:15 +00003427 * i40e_pf_txq_wait - Wait for a PF's Tx queue to be enabled or disabled
3428 * @pf: the PF being configured
3429 * @pf_q: the PF queue
3430 * @enable: enable or disable state of the queue
3431 *
3432 * This routine will wait for the given Tx queue of the PF to reach the
3433 * enabled or disabled state.
3434 * Returns -ETIMEDOUT in case of failing to reach the requested state after
3435 * multiple retries; else will return 0 in case of success.
3436 **/
3437static int i40e_pf_txq_wait(struct i40e_pf *pf, int pf_q, bool enable)
3438{
3439 int i;
3440 u32 tx_reg;
3441
3442 for (i = 0; i < I40E_QUEUE_WAIT_RETRY_LIMIT; i++) {
3443 tx_reg = rd32(&pf->hw, I40E_QTX_ENA(pf_q));
3444 if (enable == !!(tx_reg & I40E_QTX_ENA_QENA_STAT_MASK))
3445 break;
3446
Neerav Parikhf98a2002014-09-13 07:40:44 +00003447 usleep_range(10, 20);
Neerav Parikh23527302014-06-03 23:50:15 +00003448 }
3449 if (i >= I40E_QUEUE_WAIT_RETRY_LIMIT)
3450 return -ETIMEDOUT;
3451
3452 return 0;
3453}
3454
3455/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003456 * i40e_vsi_control_tx - Start or stop a VSI's rings
3457 * @vsi: the VSI being configured
3458 * @enable: start or stop the rings
3459 **/
3460static int i40e_vsi_control_tx(struct i40e_vsi *vsi, bool enable)
3461{
3462 struct i40e_pf *pf = vsi->back;
3463 struct i40e_hw *hw = &pf->hw;
Neerav Parikh23527302014-06-03 23:50:15 +00003464 int i, j, pf_q, ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003465 u32 tx_reg;
3466
3467 pf_q = vsi->base_queue;
3468 for (i = 0; i < vsi->num_queue_pairs; i++, pf_q++) {
Matt Jared351499a2014-04-23 04:50:03 +00003469
3470 /* warn the TX unit of coming changes */
3471 i40e_pre_tx_queue_cfg(&pf->hw, pf_q, enable);
3472 if (!enable)
Neerav Parikhf98a2002014-09-13 07:40:44 +00003473 usleep_range(10, 20);
Matt Jared351499a2014-04-23 04:50:03 +00003474
Mitch Williams6c5ef622014-02-20 19:29:16 -08003475 for (j = 0; j < 50; j++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003476 tx_reg = rd32(hw, I40E_QTX_ENA(pf_q));
Mitch Williams6c5ef622014-02-20 19:29:16 -08003477 if (((tx_reg >> I40E_QTX_ENA_QENA_REQ_SHIFT) & 1) ==
3478 ((tx_reg >> I40E_QTX_ENA_QENA_STAT_SHIFT) & 1))
3479 break;
3480 usleep_range(1000, 2000);
3481 }
Mitch Williamsfda972f2013-11-28 06:39:29 +00003482 /* Skip if the queue is already in the requested state */
Catherine Sullivan7c122002014-03-14 07:32:29 +00003483 if (enable == !!(tx_reg & I40E_QTX_ENA_QENA_STAT_MASK))
Mitch Williamsfda972f2013-11-28 06:39:29 +00003484 continue;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003485
3486 /* turn on/off the queue */
Shannon Nelsonc5c9eb92013-12-21 05:44:48 +00003487 if (enable) {
3488 wr32(hw, I40E_QTX_HEAD(pf_q), 0);
Mitch Williams6c5ef622014-02-20 19:29:16 -08003489 tx_reg |= I40E_QTX_ENA_QENA_REQ_MASK;
Shannon Nelsonc5c9eb92013-12-21 05:44:48 +00003490 } else {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003491 tx_reg &= ~I40E_QTX_ENA_QENA_REQ_MASK;
Shannon Nelsonc5c9eb92013-12-21 05:44:48 +00003492 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003493
3494 wr32(hw, I40E_QTX_ENA(pf_q), tx_reg);
Neerav Parikh69129dc2014-11-12 00:18:46 +00003495 /* No waiting for the Tx queue to disable */
3496 if (!enable && test_bit(__I40E_PORT_TX_SUSPENDED, &pf->state))
3497 continue;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003498
3499 /* wait for the change to finish */
Neerav Parikh23527302014-06-03 23:50:15 +00003500 ret = i40e_pf_txq_wait(pf, pf_q, enable);
3501 if (ret) {
3502 dev_info(&pf->pdev->dev,
3503 "%s: VSI seid %d Tx ring %d %sable timeout\n",
3504 __func__, vsi->seid, pf_q,
3505 (enable ? "en" : "dis"));
3506 break;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003507 }
3508 }
3509
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00003510 if (hw->revision_id == 0)
3511 mdelay(50);
Neerav Parikh23527302014-06-03 23:50:15 +00003512 return ret;
3513}
3514
3515/**
3516 * i40e_pf_rxq_wait - Wait for a PF's Rx queue to be enabled or disabled
3517 * @pf: the PF being configured
3518 * @pf_q: the PF queue
3519 * @enable: enable or disable state of the queue
3520 *
3521 * This routine will wait for the given Rx queue of the PF to reach the
3522 * enabled or disabled state.
3523 * Returns -ETIMEDOUT in case of failing to reach the requested state after
3524 * multiple retries; else will return 0 in case of success.
3525 **/
3526static int i40e_pf_rxq_wait(struct i40e_pf *pf, int pf_q, bool enable)
3527{
3528 int i;
3529 u32 rx_reg;
3530
3531 for (i = 0; i < I40E_QUEUE_WAIT_RETRY_LIMIT; i++) {
3532 rx_reg = rd32(&pf->hw, I40E_QRX_ENA(pf_q));
3533 if (enable == !!(rx_reg & I40E_QRX_ENA_QENA_STAT_MASK))
3534 break;
3535
Neerav Parikhf98a2002014-09-13 07:40:44 +00003536 usleep_range(10, 20);
Neerav Parikh23527302014-06-03 23:50:15 +00003537 }
3538 if (i >= I40E_QUEUE_WAIT_RETRY_LIMIT)
3539 return -ETIMEDOUT;
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00003540
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003541 return 0;
3542}
3543
3544/**
3545 * i40e_vsi_control_rx - Start or stop a VSI's rings
3546 * @vsi: the VSI being configured
3547 * @enable: start or stop the rings
3548 **/
3549static int i40e_vsi_control_rx(struct i40e_vsi *vsi, bool enable)
3550{
3551 struct i40e_pf *pf = vsi->back;
3552 struct i40e_hw *hw = &pf->hw;
Neerav Parikh23527302014-06-03 23:50:15 +00003553 int i, j, pf_q, ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003554 u32 rx_reg;
3555
3556 pf_q = vsi->base_queue;
3557 for (i = 0; i < vsi->num_queue_pairs; i++, pf_q++) {
Mitch Williams6c5ef622014-02-20 19:29:16 -08003558 for (j = 0; j < 50; j++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003559 rx_reg = rd32(hw, I40E_QRX_ENA(pf_q));
Mitch Williams6c5ef622014-02-20 19:29:16 -08003560 if (((rx_reg >> I40E_QRX_ENA_QENA_REQ_SHIFT) & 1) ==
3561 ((rx_reg >> I40E_QRX_ENA_QENA_STAT_SHIFT) & 1))
3562 break;
3563 usleep_range(1000, 2000);
3564 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003565
Catherine Sullivan7c122002014-03-14 07:32:29 +00003566 /* Skip if the queue is already in the requested state */
3567 if (enable == !!(rx_reg & I40E_QRX_ENA_QENA_STAT_MASK))
3568 continue;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003569
3570 /* turn on/off the queue */
3571 if (enable)
Mitch Williams6c5ef622014-02-20 19:29:16 -08003572 rx_reg |= I40E_QRX_ENA_QENA_REQ_MASK;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003573 else
Mitch Williams6c5ef622014-02-20 19:29:16 -08003574 rx_reg &= ~I40E_QRX_ENA_QENA_REQ_MASK;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003575 wr32(hw, I40E_QRX_ENA(pf_q), rx_reg);
3576
3577 /* wait for the change to finish */
Neerav Parikh23527302014-06-03 23:50:15 +00003578 ret = i40e_pf_rxq_wait(pf, pf_q, enable);
3579 if (ret) {
3580 dev_info(&pf->pdev->dev,
3581 "%s: VSI seid %d Rx ring %d %sable timeout\n",
3582 __func__, vsi->seid, pf_q,
3583 (enable ? "en" : "dis"));
3584 break;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003585 }
3586 }
3587
Neerav Parikh23527302014-06-03 23:50:15 +00003588 return ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003589}
3590
3591/**
3592 * i40e_vsi_control_rings - Start or stop a VSI's rings
3593 * @vsi: the VSI being configured
3594 * @enable: start or stop the rings
3595 **/
Mitch Williamsfc18eaa2013-11-28 06:39:27 +00003596int i40e_vsi_control_rings(struct i40e_vsi *vsi, bool request)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003597{
Anjali Singhai Jain3b867b22013-12-21 05:44:44 +00003598 int ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003599
3600 /* do rx first for enable and last for disable */
3601 if (request) {
3602 ret = i40e_vsi_control_rx(vsi, request);
3603 if (ret)
3604 return ret;
3605 ret = i40e_vsi_control_tx(vsi, request);
3606 } else {
Anjali Singhai Jain3b867b22013-12-21 05:44:44 +00003607 /* Ignore return value, we need to shutdown whatever we can */
3608 i40e_vsi_control_tx(vsi, request);
3609 i40e_vsi_control_rx(vsi, request);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003610 }
3611
3612 return ret;
3613}
3614
3615/**
3616 * i40e_vsi_free_irq - Free the irq association with the OS
3617 * @vsi: the VSI being configured
3618 **/
3619static void i40e_vsi_free_irq(struct i40e_vsi *vsi)
3620{
3621 struct i40e_pf *pf = vsi->back;
3622 struct i40e_hw *hw = &pf->hw;
3623 int base = vsi->base_vector;
3624 u32 val, qp;
3625 int i;
3626
3627 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
3628 if (!vsi->q_vectors)
3629 return;
3630
Shannon Nelson63741842014-04-23 04:50:16 +00003631 if (!vsi->irqs_ready)
3632 return;
3633
3634 vsi->irqs_ready = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003635 for (i = 0; i < vsi->num_q_vectors; i++) {
3636 u16 vector = i + base;
3637
3638 /* free only the irqs that were actually requested */
Shannon Nelson78681b12013-11-28 06:39:36 +00003639 if (!vsi->q_vectors[i] ||
3640 !vsi->q_vectors[i]->num_ringpairs)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003641 continue;
3642
3643 /* clear the affinity_mask in the IRQ descriptor */
3644 irq_set_affinity_hint(pf->msix_entries[vector].vector,
3645 NULL);
3646 free_irq(pf->msix_entries[vector].vector,
Alexander Duyck493fb302013-09-28 07:01:44 +00003647 vsi->q_vectors[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003648
3649 /* Tear down the interrupt queue link list
3650 *
3651 * We know that they come in pairs and always
3652 * the Rx first, then the Tx. To clear the
3653 * link list, stick the EOL value into the
3654 * next_q field of the registers.
3655 */
3656 val = rd32(hw, I40E_PFINT_LNKLSTN(vector - 1));
3657 qp = (val & I40E_PFINT_LNKLSTN_FIRSTQ_INDX_MASK)
3658 >> I40E_PFINT_LNKLSTN_FIRSTQ_INDX_SHIFT;
3659 val |= I40E_QUEUE_END_OF_LIST
3660 << I40E_PFINT_LNKLSTN_FIRSTQ_INDX_SHIFT;
3661 wr32(hw, I40E_PFINT_LNKLSTN(vector - 1), val);
3662
3663 while (qp != I40E_QUEUE_END_OF_LIST) {
3664 u32 next;
3665
3666 val = rd32(hw, I40E_QINT_RQCTL(qp));
3667
3668 val &= ~(I40E_QINT_RQCTL_MSIX_INDX_MASK |
3669 I40E_QINT_RQCTL_MSIX0_INDX_MASK |
3670 I40E_QINT_RQCTL_CAUSE_ENA_MASK |
3671 I40E_QINT_RQCTL_INTEVENT_MASK);
3672
3673 val |= (I40E_QINT_RQCTL_ITR_INDX_MASK |
3674 I40E_QINT_RQCTL_NEXTQ_INDX_MASK);
3675
3676 wr32(hw, I40E_QINT_RQCTL(qp), val);
3677
3678 val = rd32(hw, I40E_QINT_TQCTL(qp));
3679
3680 next = (val & I40E_QINT_TQCTL_NEXTQ_INDX_MASK)
3681 >> I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT;
3682
3683 val &= ~(I40E_QINT_TQCTL_MSIX_INDX_MASK |
3684 I40E_QINT_TQCTL_MSIX0_INDX_MASK |
3685 I40E_QINT_TQCTL_CAUSE_ENA_MASK |
3686 I40E_QINT_TQCTL_INTEVENT_MASK);
3687
3688 val |= (I40E_QINT_TQCTL_ITR_INDX_MASK |
3689 I40E_QINT_TQCTL_NEXTQ_INDX_MASK);
3690
3691 wr32(hw, I40E_QINT_TQCTL(qp), val);
3692 qp = next;
3693 }
3694 }
3695 } else {
3696 free_irq(pf->pdev->irq, pf);
3697
3698 val = rd32(hw, I40E_PFINT_LNKLST0);
3699 qp = (val & I40E_PFINT_LNKLSTN_FIRSTQ_INDX_MASK)
3700 >> I40E_PFINT_LNKLSTN_FIRSTQ_INDX_SHIFT;
3701 val |= I40E_QUEUE_END_OF_LIST
3702 << I40E_PFINT_LNKLST0_FIRSTQ_INDX_SHIFT;
3703 wr32(hw, I40E_PFINT_LNKLST0, val);
3704
3705 val = rd32(hw, I40E_QINT_RQCTL(qp));
3706 val &= ~(I40E_QINT_RQCTL_MSIX_INDX_MASK |
3707 I40E_QINT_RQCTL_MSIX0_INDX_MASK |
3708 I40E_QINT_RQCTL_CAUSE_ENA_MASK |
3709 I40E_QINT_RQCTL_INTEVENT_MASK);
3710
3711 val |= (I40E_QINT_RQCTL_ITR_INDX_MASK |
3712 I40E_QINT_RQCTL_NEXTQ_INDX_MASK);
3713
3714 wr32(hw, I40E_QINT_RQCTL(qp), val);
3715
3716 val = rd32(hw, I40E_QINT_TQCTL(qp));
3717
3718 val &= ~(I40E_QINT_TQCTL_MSIX_INDX_MASK |
3719 I40E_QINT_TQCTL_MSIX0_INDX_MASK |
3720 I40E_QINT_TQCTL_CAUSE_ENA_MASK |
3721 I40E_QINT_TQCTL_INTEVENT_MASK);
3722
3723 val |= (I40E_QINT_TQCTL_ITR_INDX_MASK |
3724 I40E_QINT_TQCTL_NEXTQ_INDX_MASK);
3725
3726 wr32(hw, I40E_QINT_TQCTL(qp), val);
3727 }
3728}
3729
3730/**
Alexander Duyck493fb302013-09-28 07:01:44 +00003731 * i40e_free_q_vector - Free memory allocated for specific interrupt vector
3732 * @vsi: the VSI being configured
3733 * @v_idx: Index of vector to be freed
3734 *
3735 * This function frees the memory allocated to the q_vector. In addition if
3736 * NAPI is enabled it will delete any references to the NAPI struct prior
3737 * to freeing the q_vector.
3738 **/
3739static void i40e_free_q_vector(struct i40e_vsi *vsi, int v_idx)
3740{
3741 struct i40e_q_vector *q_vector = vsi->q_vectors[v_idx];
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003742 struct i40e_ring *ring;
Alexander Duyck493fb302013-09-28 07:01:44 +00003743
3744 if (!q_vector)
3745 return;
3746
3747 /* disassociate q_vector from rings */
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003748 i40e_for_each_ring(ring, q_vector->tx)
3749 ring->q_vector = NULL;
3750
3751 i40e_for_each_ring(ring, q_vector->rx)
3752 ring->q_vector = NULL;
Alexander Duyck493fb302013-09-28 07:01:44 +00003753
3754 /* only VSI w/ an associated netdev is set up w/ NAPI */
3755 if (vsi->netdev)
3756 netif_napi_del(&q_vector->napi);
3757
3758 vsi->q_vectors[v_idx] = NULL;
3759
3760 kfree_rcu(q_vector, rcu);
3761}
3762
3763/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003764 * i40e_vsi_free_q_vectors - Free memory allocated for interrupt vectors
3765 * @vsi: the VSI being un-configured
3766 *
3767 * This frees the memory allocated to the q_vectors and
3768 * deletes references to the NAPI struct.
3769 **/
3770static void i40e_vsi_free_q_vectors(struct i40e_vsi *vsi)
3771{
3772 int v_idx;
3773
Alexander Duyck493fb302013-09-28 07:01:44 +00003774 for (v_idx = 0; v_idx < vsi->num_q_vectors; v_idx++)
3775 i40e_free_q_vector(vsi, v_idx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003776}
3777
3778/**
3779 * i40e_reset_interrupt_capability - Disable interrupt setup in OS
3780 * @pf: board private structure
3781 **/
3782static void i40e_reset_interrupt_capability(struct i40e_pf *pf)
3783{
3784 /* If we're in Legacy mode, the interrupt was cleaned in vsi_close */
3785 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
3786 pci_disable_msix(pf->pdev);
3787 kfree(pf->msix_entries);
3788 pf->msix_entries = NULL;
3789 } else if (pf->flags & I40E_FLAG_MSI_ENABLED) {
3790 pci_disable_msi(pf->pdev);
3791 }
3792 pf->flags &= ~(I40E_FLAG_MSIX_ENABLED | I40E_FLAG_MSI_ENABLED);
3793}
3794
3795/**
3796 * i40e_clear_interrupt_scheme - Clear the current interrupt scheme settings
3797 * @pf: board private structure
3798 *
3799 * We go through and clear interrupt specific resources and reset the structure
3800 * to pre-load conditions
3801 **/
3802static void i40e_clear_interrupt_scheme(struct i40e_pf *pf)
3803{
3804 int i;
3805
3806 i40e_put_lump(pf->irq_pile, 0, I40E_PILE_VALID_BIT-1);
Mitch Williams505682c2014-05-20 08:01:37 +00003807 for (i = 0; i < pf->num_alloc_vsi; i++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003808 if (pf->vsi[i])
3809 i40e_vsi_free_q_vectors(pf->vsi[i]);
3810 i40e_reset_interrupt_capability(pf);
3811}
3812
3813/**
3814 * i40e_napi_enable_all - Enable NAPI for all q_vectors in the VSI
3815 * @vsi: the VSI being configured
3816 **/
3817static void i40e_napi_enable_all(struct i40e_vsi *vsi)
3818{
3819 int q_idx;
3820
3821 if (!vsi->netdev)
3822 return;
3823
3824 for (q_idx = 0; q_idx < vsi->num_q_vectors; q_idx++)
Alexander Duyck493fb302013-09-28 07:01:44 +00003825 napi_enable(&vsi->q_vectors[q_idx]->napi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003826}
3827
3828/**
3829 * i40e_napi_disable_all - Disable NAPI for all q_vectors in the VSI
3830 * @vsi: the VSI being configured
3831 **/
3832static void i40e_napi_disable_all(struct i40e_vsi *vsi)
3833{
3834 int q_idx;
3835
3836 if (!vsi->netdev)
3837 return;
3838
3839 for (q_idx = 0; q_idx < vsi->num_q_vectors; q_idx++)
Alexander Duyck493fb302013-09-28 07:01:44 +00003840 napi_disable(&vsi->q_vectors[q_idx]->napi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003841}
3842
3843/**
Shannon Nelson90ef8d42014-03-14 07:32:26 +00003844 * i40e_vsi_close - Shut down a VSI
3845 * @vsi: the vsi to be quelled
3846 **/
3847static void i40e_vsi_close(struct i40e_vsi *vsi)
3848{
3849 if (!test_and_set_bit(__I40E_DOWN, &vsi->state))
3850 i40e_down(vsi);
3851 i40e_vsi_free_irq(vsi);
3852 i40e_vsi_free_tx_resources(vsi);
3853 i40e_vsi_free_rx_resources(vsi);
3854}
3855
3856/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003857 * i40e_quiesce_vsi - Pause a given VSI
3858 * @vsi: the VSI being paused
3859 **/
3860static void i40e_quiesce_vsi(struct i40e_vsi *vsi)
3861{
3862 if (test_bit(__I40E_DOWN, &vsi->state))
3863 return;
3864
Neerav Parikhd341b7a2014-11-12 00:18:51 +00003865 /* No need to disable FCoE VSI when Tx suspended */
3866 if ((test_bit(__I40E_PORT_TX_SUSPENDED, &vsi->back->state)) &&
3867 vsi->type == I40E_VSI_FCOE) {
3868 dev_dbg(&vsi->back->pdev->dev,
3869 "%s: VSI seid %d skipping FCoE VSI disable\n",
3870 __func__, vsi->seid);
3871 return;
3872 }
3873
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003874 set_bit(__I40E_NEEDS_RESTART, &vsi->state);
3875 if (vsi->netdev && netif_running(vsi->netdev)) {
3876 vsi->netdev->netdev_ops->ndo_stop(vsi->netdev);
3877 } else {
Shannon Nelson90ef8d42014-03-14 07:32:26 +00003878 i40e_vsi_close(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003879 }
3880}
3881
3882/**
3883 * i40e_unquiesce_vsi - Resume a given VSI
3884 * @vsi: the VSI being resumed
3885 **/
3886static void i40e_unquiesce_vsi(struct i40e_vsi *vsi)
3887{
3888 if (!test_bit(__I40E_NEEDS_RESTART, &vsi->state))
3889 return;
3890
3891 clear_bit(__I40E_NEEDS_RESTART, &vsi->state);
3892 if (vsi->netdev && netif_running(vsi->netdev))
3893 vsi->netdev->netdev_ops->ndo_open(vsi->netdev);
3894 else
Shannon Nelson8276f752014-03-14 07:32:27 +00003895 i40e_vsi_open(vsi); /* this clears the DOWN bit */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003896}
3897
3898/**
3899 * i40e_pf_quiesce_all_vsi - Pause all VSIs on a PF
3900 * @pf: the PF
3901 **/
3902static void i40e_pf_quiesce_all_vsi(struct i40e_pf *pf)
3903{
3904 int v;
3905
Mitch Williams505682c2014-05-20 08:01:37 +00003906 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003907 if (pf->vsi[v])
3908 i40e_quiesce_vsi(pf->vsi[v]);
3909 }
3910}
3911
3912/**
3913 * i40e_pf_unquiesce_all_vsi - Resume all VSIs on a PF
3914 * @pf: the PF
3915 **/
3916static void i40e_pf_unquiesce_all_vsi(struct i40e_pf *pf)
3917{
3918 int v;
3919
Mitch Williams505682c2014-05-20 08:01:37 +00003920 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003921 if (pf->vsi[v])
3922 i40e_unquiesce_vsi(pf->vsi[v]);
3923 }
3924}
3925
Neerav Parikh69129dc2014-11-12 00:18:46 +00003926#ifdef CONFIG_I40E_DCB
3927/**
3928 * i40e_vsi_wait_txq_disabled - Wait for VSI's queues to be disabled
3929 * @vsi: the VSI being configured
3930 *
3931 * This function waits for the given VSI's Tx queues to be disabled.
3932 **/
3933static int i40e_vsi_wait_txq_disabled(struct i40e_vsi *vsi)
3934{
3935 struct i40e_pf *pf = vsi->back;
3936 int i, pf_q, ret;
3937
3938 pf_q = vsi->base_queue;
3939 for (i = 0; i < vsi->num_queue_pairs; i++, pf_q++) {
3940 /* Check and wait for the disable status of the queue */
3941 ret = i40e_pf_txq_wait(pf, pf_q, false);
3942 if (ret) {
3943 dev_info(&pf->pdev->dev,
3944 "%s: VSI seid %d Tx ring %d disable timeout\n",
3945 __func__, vsi->seid, pf_q);
3946 return ret;
3947 }
3948 }
3949
3950 return 0;
3951}
3952
3953/**
3954 * i40e_pf_wait_txq_disabled - Wait for all queues of PF VSIs to be disabled
3955 * @pf: the PF
3956 *
3957 * This function waits for the Tx queues to be in disabled state for all the
3958 * VSIs that are managed by this PF.
3959 **/
3960static int i40e_pf_wait_txq_disabled(struct i40e_pf *pf)
3961{
3962 int v, ret = 0;
3963
3964 for (v = 0; v < pf->hw.func_caps.num_vsis; v++) {
Neerav Parikhd341b7a2014-11-12 00:18:51 +00003965 /* No need to wait for FCoE VSI queues */
3966 if (pf->vsi[v] && pf->vsi[v]->type != I40E_VSI_FCOE) {
Neerav Parikh69129dc2014-11-12 00:18:46 +00003967 ret = i40e_vsi_wait_txq_disabled(pf->vsi[v]);
3968 if (ret)
3969 break;
3970 }
3971 }
3972
3973 return ret;
3974}
3975
3976#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003977/**
3978 * i40e_dcb_get_num_tc - Get the number of TCs from DCBx config
3979 * @dcbcfg: the corresponding DCBx configuration structure
3980 *
3981 * Return the number of TCs from given DCBx configuration
3982 **/
3983static u8 i40e_dcb_get_num_tc(struct i40e_dcbx_config *dcbcfg)
3984{
Jesse Brandeburg078b5872013-09-25 23:41:14 +00003985 u8 num_tc = 0;
3986 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003987
3988 /* Scan the ETS Config Priority Table to find
3989 * traffic class enabled for a given priority
3990 * and use the traffic class index to get the
3991 * number of traffic classes enabled
3992 */
3993 for (i = 0; i < I40E_MAX_USER_PRIORITY; i++) {
3994 if (dcbcfg->etscfg.prioritytable[i] > num_tc)
3995 num_tc = dcbcfg->etscfg.prioritytable[i];
3996 }
3997
3998 /* Traffic class index starts from zero so
3999 * increment to return the actual count
4000 */
Jesse Brandeburg078b5872013-09-25 23:41:14 +00004001 return num_tc + 1;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004002}
4003
4004/**
4005 * i40e_dcb_get_enabled_tc - Get enabled traffic classes
4006 * @dcbcfg: the corresponding DCBx configuration structure
4007 *
4008 * Query the current DCB configuration and return the number of
4009 * traffic classes enabled from the given DCBX config
4010 **/
4011static u8 i40e_dcb_get_enabled_tc(struct i40e_dcbx_config *dcbcfg)
4012{
4013 u8 num_tc = i40e_dcb_get_num_tc(dcbcfg);
4014 u8 enabled_tc = 1;
4015 u8 i;
4016
4017 for (i = 0; i < num_tc; i++)
4018 enabled_tc |= 1 << i;
4019
4020 return enabled_tc;
4021}
4022
4023/**
4024 * i40e_pf_get_num_tc - Get enabled traffic classes for PF
4025 * @pf: PF being queried
4026 *
4027 * Return number of traffic classes enabled for the given PF
4028 **/
4029static u8 i40e_pf_get_num_tc(struct i40e_pf *pf)
4030{
4031 struct i40e_hw *hw = &pf->hw;
4032 u8 i, enabled_tc;
4033 u8 num_tc = 0;
4034 struct i40e_dcbx_config *dcbcfg = &hw->local_dcbx_config;
4035
4036 /* If DCB is not enabled then always in single TC */
4037 if (!(pf->flags & I40E_FLAG_DCB_ENABLED))
4038 return 1;
4039
4040 /* MFP mode return count of enabled TCs for this PF */
4041 if (pf->flags & I40E_FLAG_MFP_ENABLED) {
4042 enabled_tc = pf->hw.func_caps.enabled_tcmap;
4043 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
4044 if (enabled_tc & (1 << i))
4045 num_tc++;
4046 }
4047 return num_tc;
4048 }
4049
4050 /* SFP mode will be enabled for all TCs on port */
4051 return i40e_dcb_get_num_tc(dcbcfg);
4052}
4053
4054/**
4055 * i40e_pf_get_default_tc - Get bitmap for first enabled TC
4056 * @pf: PF being queried
4057 *
4058 * Return a bitmap for first enabled traffic class for this PF.
4059 **/
4060static u8 i40e_pf_get_default_tc(struct i40e_pf *pf)
4061{
4062 u8 enabled_tc = pf->hw.func_caps.enabled_tcmap;
4063 u8 i = 0;
4064
4065 if (!enabled_tc)
4066 return 0x1; /* TC0 */
4067
4068 /* Find the first enabled TC */
4069 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
4070 if (enabled_tc & (1 << i))
4071 break;
4072 }
4073
4074 return 1 << i;
4075}
4076
4077/**
4078 * i40e_pf_get_pf_tc_map - Get bitmap for enabled traffic classes
4079 * @pf: PF being queried
4080 *
4081 * Return a bitmap for enabled traffic classes for this PF.
4082 **/
4083static u8 i40e_pf_get_tc_map(struct i40e_pf *pf)
4084{
4085 /* If DCB is not enabled for this PF then just return default TC */
4086 if (!(pf->flags & I40E_FLAG_DCB_ENABLED))
4087 return i40e_pf_get_default_tc(pf);
4088
4089 /* MFP mode will have enabled TCs set by FW */
4090 if (pf->flags & I40E_FLAG_MFP_ENABLED)
4091 return pf->hw.func_caps.enabled_tcmap;
4092
4093 /* SFP mode we want PF to be enabled for all TCs */
4094 return i40e_dcb_get_enabled_tc(&pf->hw.local_dcbx_config);
4095}
4096
4097/**
4098 * i40e_vsi_get_bw_info - Query VSI BW Information
4099 * @vsi: the VSI being queried
4100 *
4101 * Returns 0 on success, negative value on failure
4102 **/
4103static int i40e_vsi_get_bw_info(struct i40e_vsi *vsi)
4104{
4105 struct i40e_aqc_query_vsi_ets_sla_config_resp bw_ets_config = {0};
4106 struct i40e_aqc_query_vsi_bw_config_resp bw_config = {0};
4107 struct i40e_pf *pf = vsi->back;
4108 struct i40e_hw *hw = &pf->hw;
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004109 i40e_status aq_ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004110 u32 tc_bw_max;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004111 int i;
4112
4113 /* Get the VSI level BW configuration */
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004114 aq_ret = i40e_aq_query_vsi_bw_config(hw, vsi->seid, &bw_config, NULL);
4115 if (aq_ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004116 dev_info(&pf->pdev->dev,
4117 "couldn't get pf vsi bw config, err %d, aq_err %d\n",
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004118 aq_ret, pf->hw.aq.asq_last_status);
4119 return -EINVAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004120 }
4121
4122 /* Get the VSI level BW configuration per TC */
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004123 aq_ret = i40e_aq_query_vsi_ets_sla_config(hw, vsi->seid, &bw_ets_config,
Jesse Brandeburg6838b532014-01-14 00:49:52 -08004124 NULL);
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004125 if (aq_ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004126 dev_info(&pf->pdev->dev,
4127 "couldn't get pf vsi ets bw config, err %d, aq_err %d\n",
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004128 aq_ret, pf->hw.aq.asq_last_status);
4129 return -EINVAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004130 }
4131
4132 if (bw_config.tc_valid_bits != bw_ets_config.tc_valid_bits) {
4133 dev_info(&pf->pdev->dev,
4134 "Enabled TCs mismatch from querying VSI BW info 0x%08x 0x%08x\n",
4135 bw_config.tc_valid_bits,
4136 bw_ets_config.tc_valid_bits);
4137 /* Still continuing */
4138 }
4139
4140 vsi->bw_limit = le16_to_cpu(bw_config.port_bw_limit);
4141 vsi->bw_max_quanta = bw_config.max_bw;
4142 tc_bw_max = le16_to_cpu(bw_ets_config.tc_bw_max[0]) |
4143 (le16_to_cpu(bw_ets_config.tc_bw_max[1]) << 16);
4144 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
4145 vsi->bw_ets_share_credits[i] = bw_ets_config.share_credits[i];
4146 vsi->bw_ets_limit_credits[i] =
4147 le16_to_cpu(bw_ets_config.credits[i]);
4148 /* 3 bits out of 4 for each TC */
4149 vsi->bw_ets_max_quanta[i] = (u8)((tc_bw_max >> (i*4)) & 0x7);
4150 }
Jesse Brandeburg078b5872013-09-25 23:41:14 +00004151
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004152 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004153}
4154
4155/**
4156 * i40e_vsi_configure_bw_alloc - Configure VSI BW allocation per TC
4157 * @vsi: the VSI being configured
4158 * @enabled_tc: TC bitmap
4159 * @bw_credits: BW shared credits per TC
4160 *
4161 * Returns 0 on success, negative value on failure
4162 **/
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004163static int i40e_vsi_configure_bw_alloc(struct i40e_vsi *vsi, u8 enabled_tc,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004164 u8 *bw_share)
4165{
4166 struct i40e_aqc_configure_vsi_tc_bw_data bw_data;
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004167 i40e_status aq_ret;
4168 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004169
4170 bw_data.tc_valid_bits = enabled_tc;
4171 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++)
4172 bw_data.tc_bw_credits[i] = bw_share[i];
4173
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004174 aq_ret = i40e_aq_config_vsi_tc_bw(&vsi->back->hw, vsi->seid, &bw_data,
4175 NULL);
4176 if (aq_ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004177 dev_info(&vsi->back->pdev->dev,
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00004178 "AQ command Config VSI BW allocation per TC failed = %d\n",
4179 vsi->back->hw.aq.asq_last_status);
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004180 return -EINVAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004181 }
4182
4183 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++)
4184 vsi->info.qs_handle[i] = bw_data.qs_handles[i];
4185
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004186 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004187}
4188
4189/**
4190 * i40e_vsi_config_netdev_tc - Setup the netdev TC configuration
4191 * @vsi: the VSI being configured
4192 * @enabled_tc: TC map to be enabled
4193 *
4194 **/
4195static void i40e_vsi_config_netdev_tc(struct i40e_vsi *vsi, u8 enabled_tc)
4196{
4197 struct net_device *netdev = vsi->netdev;
4198 struct i40e_pf *pf = vsi->back;
4199 struct i40e_hw *hw = &pf->hw;
4200 u8 netdev_tc = 0;
4201 int i;
4202 struct i40e_dcbx_config *dcbcfg = &hw->local_dcbx_config;
4203
4204 if (!netdev)
4205 return;
4206
4207 if (!enabled_tc) {
4208 netdev_reset_tc(netdev);
4209 return;
4210 }
4211
4212 /* Set up actual enabled TCs on the VSI */
4213 if (netdev_set_num_tc(netdev, vsi->tc_config.numtc))
4214 return;
4215
4216 /* set per TC queues for the VSI */
4217 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
4218 /* Only set TC queues for enabled tcs
4219 *
4220 * e.g. For a VSI that has TC0 and TC3 enabled the
4221 * enabled_tc bitmap would be 0x00001001; the driver
4222 * will set the numtc for netdev as 2 that will be
4223 * referenced by the netdev layer as TC 0 and 1.
4224 */
4225 if (vsi->tc_config.enabled_tc & (1 << i))
4226 netdev_set_tc_queue(netdev,
4227 vsi->tc_config.tc_info[i].netdev_tc,
4228 vsi->tc_config.tc_info[i].qcount,
4229 vsi->tc_config.tc_info[i].qoffset);
4230 }
4231
4232 /* Assign UP2TC map for the VSI */
4233 for (i = 0; i < I40E_MAX_USER_PRIORITY; i++) {
4234 /* Get the actual TC# for the UP */
4235 u8 ets_tc = dcbcfg->etscfg.prioritytable[i];
4236 /* Get the mapped netdev TC# for the UP */
4237 netdev_tc = vsi->tc_config.tc_info[ets_tc].netdev_tc;
4238 netdev_set_prio_tc_map(netdev, i, netdev_tc);
4239 }
4240}
4241
4242/**
4243 * i40e_vsi_update_queue_map - Update our copy of VSi info with new queue map
4244 * @vsi: the VSI being configured
4245 * @ctxt: the ctxt buffer returned from AQ VSI update param command
4246 **/
4247static void i40e_vsi_update_queue_map(struct i40e_vsi *vsi,
4248 struct i40e_vsi_context *ctxt)
4249{
4250 /* copy just the sections touched not the entire info
4251 * since not all sections are valid as returned by
4252 * update vsi params
4253 */
4254 vsi->info.mapping_flags = ctxt->info.mapping_flags;
4255 memcpy(&vsi->info.queue_mapping,
4256 &ctxt->info.queue_mapping, sizeof(vsi->info.queue_mapping));
4257 memcpy(&vsi->info.tc_mapping, ctxt->info.tc_mapping,
4258 sizeof(vsi->info.tc_mapping));
4259}
4260
4261/**
4262 * i40e_vsi_config_tc - Configure VSI Tx Scheduler for given TC map
4263 * @vsi: VSI to be configured
4264 * @enabled_tc: TC bitmap
4265 *
4266 * This configures a particular VSI for TCs that are mapped to the
4267 * given TC bitmap. It uses default bandwidth share for TCs across
4268 * VSIs to configure TC for a particular VSI.
4269 *
4270 * NOTE:
4271 * It is expected that the VSI queues have been quisced before calling
4272 * this function.
4273 **/
4274static int i40e_vsi_config_tc(struct i40e_vsi *vsi, u8 enabled_tc)
4275{
4276 u8 bw_share[I40E_MAX_TRAFFIC_CLASS] = {0};
4277 struct i40e_vsi_context ctxt;
4278 int ret = 0;
4279 int i;
4280
4281 /* Check if enabled_tc is same as existing or new TCs */
4282 if (vsi->tc_config.enabled_tc == enabled_tc)
4283 return ret;
4284
4285 /* Enable ETS TCs with equal BW Share for now across all VSIs */
4286 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
4287 if (enabled_tc & (1 << i))
4288 bw_share[i] = 1;
4289 }
4290
4291 ret = i40e_vsi_configure_bw_alloc(vsi, enabled_tc, bw_share);
4292 if (ret) {
4293 dev_info(&vsi->back->pdev->dev,
4294 "Failed configuring TC map %d for VSI %d\n",
4295 enabled_tc, vsi->seid);
4296 goto out;
4297 }
4298
4299 /* Update Queue Pairs Mapping for currently enabled UPs */
4300 ctxt.seid = vsi->seid;
4301 ctxt.pf_num = vsi->back->hw.pf_id;
4302 ctxt.vf_num = 0;
4303 ctxt.uplink_seid = vsi->uplink_seid;
4304 memcpy(&ctxt.info, &vsi->info, sizeof(vsi->info));
4305 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, false);
4306
4307 /* Update the VSI after updating the VSI queue-mapping information */
4308 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
4309 if (ret) {
4310 dev_info(&vsi->back->pdev->dev,
4311 "update vsi failed, aq_err=%d\n",
4312 vsi->back->hw.aq.asq_last_status);
4313 goto out;
4314 }
4315 /* update the local VSI info with updated queue map */
4316 i40e_vsi_update_queue_map(vsi, &ctxt);
4317 vsi->info.valid_sections = 0;
4318
4319 /* Update current VSI BW information */
4320 ret = i40e_vsi_get_bw_info(vsi);
4321 if (ret) {
4322 dev_info(&vsi->back->pdev->dev,
4323 "Failed updating vsi bw info, aq_err=%d\n",
4324 vsi->back->hw.aq.asq_last_status);
4325 goto out;
4326 }
4327
4328 /* Update the netdev TC setup */
4329 i40e_vsi_config_netdev_tc(vsi, enabled_tc);
4330out:
4331 return ret;
4332}
4333
4334/**
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004335 * i40e_veb_config_tc - Configure TCs for given VEB
4336 * @veb: given VEB
4337 * @enabled_tc: TC bitmap
4338 *
4339 * Configures given TC bitmap for VEB (switching) element
4340 **/
4341int i40e_veb_config_tc(struct i40e_veb *veb, u8 enabled_tc)
4342{
4343 struct i40e_aqc_configure_switching_comp_bw_config_data bw_data = {0};
4344 struct i40e_pf *pf = veb->pf;
4345 int ret = 0;
4346 int i;
4347
4348 /* No TCs or already enabled TCs just return */
4349 if (!enabled_tc || veb->enabled_tc == enabled_tc)
4350 return ret;
4351
4352 bw_data.tc_valid_bits = enabled_tc;
4353 /* bw_data.absolute_credits is not set (relative) */
4354
4355 /* Enable ETS TCs with equal BW Share for now */
4356 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
4357 if (enabled_tc & (1 << i))
4358 bw_data.tc_bw_share_credits[i] = 1;
4359 }
4360
4361 ret = i40e_aq_config_switch_comp_bw_config(&pf->hw, veb->seid,
4362 &bw_data, NULL);
4363 if (ret) {
4364 dev_info(&pf->pdev->dev,
4365 "veb bw config failed, aq_err=%d\n",
4366 pf->hw.aq.asq_last_status);
4367 goto out;
4368 }
4369
4370 /* Update the BW information */
4371 ret = i40e_veb_get_bw_info(veb);
4372 if (ret) {
4373 dev_info(&pf->pdev->dev,
4374 "Failed getting veb bw config, aq_err=%d\n",
4375 pf->hw.aq.asq_last_status);
4376 }
4377
4378out:
4379 return ret;
4380}
4381
4382#ifdef CONFIG_I40E_DCB
4383/**
4384 * i40e_dcb_reconfigure - Reconfigure all VEBs and VSIs
4385 * @pf: PF struct
4386 *
4387 * Reconfigure VEB/VSIs on a given PF; it is assumed that
4388 * the caller would've quiesce all the VSIs before calling
4389 * this function
4390 **/
4391static void i40e_dcb_reconfigure(struct i40e_pf *pf)
4392{
4393 u8 tc_map = 0;
4394 int ret;
4395 u8 v;
4396
4397 /* Enable the TCs available on PF to all VEBs */
4398 tc_map = i40e_pf_get_tc_map(pf);
4399 for (v = 0; v < I40E_MAX_VEB; v++) {
4400 if (!pf->veb[v])
4401 continue;
4402 ret = i40e_veb_config_tc(pf->veb[v], tc_map);
4403 if (ret) {
4404 dev_info(&pf->pdev->dev,
4405 "Failed configuring TC for VEB seid=%d\n",
4406 pf->veb[v]->seid);
4407 /* Will try to configure as many components */
4408 }
4409 }
4410
4411 /* Update each VSI */
Mitch Williams505682c2014-05-20 08:01:37 +00004412 for (v = 0; v < pf->num_alloc_vsi; v++) {
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004413 if (!pf->vsi[v])
4414 continue;
4415
4416 /* - Enable all TCs for the LAN VSI
Vasu Dev38e00432014-08-01 13:27:03 -07004417#ifdef I40E_FCOE
4418 * - For FCoE VSI only enable the TC configured
4419 * as per the APP TLV
4420#endif
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004421 * - For all others keep them at TC0 for now
4422 */
4423 if (v == pf->lan_vsi)
4424 tc_map = i40e_pf_get_tc_map(pf);
4425 else
4426 tc_map = i40e_pf_get_default_tc(pf);
Vasu Dev38e00432014-08-01 13:27:03 -07004427#ifdef I40E_FCOE
4428 if (pf->vsi[v]->type == I40E_VSI_FCOE)
4429 tc_map = i40e_get_fcoe_tc_map(pf);
4430#endif /* #ifdef I40E_FCOE */
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004431
4432 ret = i40e_vsi_config_tc(pf->vsi[v], tc_map);
4433 if (ret) {
4434 dev_info(&pf->pdev->dev,
4435 "Failed configuring TC for VSI seid=%d\n",
4436 pf->vsi[v]->seid);
4437 /* Will try to configure as many components */
4438 } else {
Neerav Parikh0672a092014-04-01 07:11:47 +00004439 /* Re-configure VSI vectors based on updated TC map */
4440 i40e_vsi_map_rings_to_vectors(pf->vsi[v]);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004441 if (pf->vsi[v]->netdev)
4442 i40e_dcbnl_set_all(pf->vsi[v]);
4443 }
4444 }
4445}
4446
4447/**
Neerav Parikh2fd75f32014-11-12 00:18:20 +00004448 * i40e_resume_port_tx - Resume port Tx
4449 * @pf: PF struct
4450 *
4451 * Resume a port's Tx and issue a PF reset in case of failure to
4452 * resume.
4453 **/
4454static int i40e_resume_port_tx(struct i40e_pf *pf)
4455{
4456 struct i40e_hw *hw = &pf->hw;
4457 int ret;
4458
4459 ret = i40e_aq_resume_port_tx(hw, NULL);
4460 if (ret) {
4461 dev_info(&pf->pdev->dev,
4462 "AQ command Resume Port Tx failed = %d\n",
4463 pf->hw.aq.asq_last_status);
4464 /* Schedule PF reset to recover */
4465 set_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
4466 i40e_service_event_schedule(pf);
4467 }
4468
4469 return ret;
4470}
4471
4472/**
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004473 * i40e_init_pf_dcb - Initialize DCB configuration
4474 * @pf: PF being configured
4475 *
4476 * Query the current DCB configuration and cache it
4477 * in the hardware structure
4478 **/
4479static int i40e_init_pf_dcb(struct i40e_pf *pf)
4480{
4481 struct i40e_hw *hw = &pf->hw;
4482 int err = 0;
4483
4484 if (pf->hw.func_caps.npar_enable)
4485 goto out;
4486
4487 /* Get the initial DCB configuration */
4488 err = i40e_init_dcb(hw);
4489 if (!err) {
4490 /* Device/Function is not DCBX capable */
4491 if ((!hw->func_caps.dcb) ||
4492 (hw->dcbx_status == I40E_DCBX_STATUS_DISABLED)) {
4493 dev_info(&pf->pdev->dev,
4494 "DCBX offload is not supported or is disabled for this PF.\n");
4495
4496 if (pf->flags & I40E_FLAG_MFP_ENABLED)
4497 goto out;
4498
4499 } else {
4500 /* When status is not DISABLED then DCBX in FW */
4501 pf->dcbx_cap = DCB_CAP_DCBX_LLD_MANAGED |
4502 DCB_CAP_DCBX_VER_IEEE;
Neerav Parikh4d9b6042014-05-22 06:31:51 +00004503
4504 pf->flags |= I40E_FLAG_DCB_CAPABLE;
4505 /* Enable DCB tagging only when more than one TC */
4506 if (i40e_dcb_get_num_tc(&hw->local_dcbx_config) > 1)
4507 pf->flags |= I40E_FLAG_DCB_ENABLED;
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00004508 dev_dbg(&pf->pdev->dev,
4509 "DCBX offload is supported for this PF.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004510 }
Neerav Parikh014269f2014-04-01 07:11:48 +00004511 } else {
4512 dev_info(&pf->pdev->dev, "AQ Querying DCB configuration failed: %d\n",
4513 pf->hw.aq.asq_last_status);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004514 }
4515
4516out:
4517 return err;
4518}
4519#endif /* CONFIG_I40E_DCB */
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004520#define SPEED_SIZE 14
4521#define FC_SIZE 8
4522/**
4523 * i40e_print_link_message - print link up or down
4524 * @vsi: the VSI for which link needs a message
4525 */
4526static void i40e_print_link_message(struct i40e_vsi *vsi, bool isup)
4527{
4528 char speed[SPEED_SIZE] = "Unknown";
4529 char fc[FC_SIZE] = "RX/TX";
4530
4531 if (!isup) {
4532 netdev_info(vsi->netdev, "NIC Link is Down\n");
4533 return;
4534 }
4535
4536 switch (vsi->back->hw.phy.link_info.link_speed) {
4537 case I40E_LINK_SPEED_40GB:
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00004538 strlcpy(speed, "40 Gbps", SPEED_SIZE);
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004539 break;
4540 case I40E_LINK_SPEED_10GB:
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00004541 strlcpy(speed, "10 Gbps", SPEED_SIZE);
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004542 break;
4543 case I40E_LINK_SPEED_1GB:
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00004544 strlcpy(speed, "1000 Mbps", SPEED_SIZE);
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004545 break;
Mitch Williams5960d332014-09-13 07:40:47 +00004546 case I40E_LINK_SPEED_100MB:
4547 strncpy(speed, "100 Mbps", SPEED_SIZE);
4548 break;
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004549 default:
4550 break;
4551 }
4552
4553 switch (vsi->back->hw.fc.current_mode) {
4554 case I40E_FC_FULL:
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00004555 strlcpy(fc, "RX/TX", FC_SIZE);
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004556 break;
4557 case I40E_FC_TX_PAUSE:
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00004558 strlcpy(fc, "TX", FC_SIZE);
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004559 break;
4560 case I40E_FC_RX_PAUSE:
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00004561 strlcpy(fc, "RX", FC_SIZE);
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004562 break;
4563 default:
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00004564 strlcpy(fc, "None", FC_SIZE);
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004565 break;
4566 }
4567
4568 netdev_info(vsi->netdev, "NIC Link is Up %s Full Duplex, Flow Control: %s\n",
4569 speed, fc);
4570}
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004571
4572/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004573 * i40e_up_complete - Finish the last steps of bringing up a connection
4574 * @vsi: the VSI being configured
4575 **/
4576static int i40e_up_complete(struct i40e_vsi *vsi)
4577{
4578 struct i40e_pf *pf = vsi->back;
4579 int err;
4580
4581 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
4582 i40e_vsi_configure_msix(vsi);
4583 else
4584 i40e_configure_msi_and_legacy(vsi);
4585
4586 /* start rings */
4587 err = i40e_vsi_control_rings(vsi, true);
4588 if (err)
4589 return err;
4590
4591 clear_bit(__I40E_DOWN, &vsi->state);
4592 i40e_napi_enable_all(vsi);
4593 i40e_vsi_enable_irq(vsi);
4594
4595 if ((pf->hw.phy.link_info.link_info & I40E_AQ_LINK_UP) &&
4596 (vsi->netdev)) {
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004597 i40e_print_link_message(vsi, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004598 netif_tx_start_all_queues(vsi->netdev);
4599 netif_carrier_on(vsi->netdev);
Anjali Singhai6d779b42013-09-28 06:00:02 +00004600 } else if (vsi->netdev) {
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004601 i40e_print_link_message(vsi, false);
Carolyn Wyborny7b592f62014-07-10 07:58:19 +00004602 /* need to check for qualified module here*/
4603 if ((pf->hw.phy.link_info.link_info &
4604 I40E_AQ_MEDIA_AVAILABLE) &&
4605 (!(pf->hw.phy.link_info.an_info &
4606 I40E_AQ_QUALIFIED_MODULE)))
4607 netdev_err(vsi->netdev,
4608 "the driver failed to link because an unqualified module was detected.");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004609 }
Anjali Singhai Jainca64fa42014-02-11 08:26:30 +00004610
4611 /* replay FDIR SB filters */
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00004612 if (vsi->type == I40E_VSI_FDIR) {
4613 /* reset fd counters */
4614 pf->fd_add_err = pf->fd_atr_cnt = 0;
4615 if (pf->fd_tcp_rule > 0) {
4616 pf->flags &= ~I40E_FLAG_FD_ATR_ENABLED;
4617 dev_info(&pf->pdev->dev, "Forcing ATR off, sideband rules for TCP/IPv4 exist\n");
4618 pf->fd_tcp_rule = 0;
4619 }
Anjali Singhai Jainca64fa42014-02-11 08:26:30 +00004620 i40e_fdir_filter_restore(vsi);
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00004621 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004622 i40e_service_event_schedule(pf);
4623
4624 return 0;
4625}
4626
4627/**
4628 * i40e_vsi_reinit_locked - Reset the VSI
4629 * @vsi: the VSI being configured
4630 *
4631 * Rebuild the ring structs after some configuration
4632 * has changed, e.g. MTU size.
4633 **/
4634static void i40e_vsi_reinit_locked(struct i40e_vsi *vsi)
4635{
4636 struct i40e_pf *pf = vsi->back;
4637
4638 WARN_ON(in_interrupt());
4639 while (test_and_set_bit(__I40E_CONFIG_BUSY, &pf->state))
4640 usleep_range(1000, 2000);
4641 i40e_down(vsi);
4642
4643 /* Give a VF some time to respond to the reset. The
4644 * two second wait is based upon the watchdog cycle in
4645 * the VF driver.
4646 */
4647 if (vsi->type == I40E_VSI_SRIOV)
4648 msleep(2000);
4649 i40e_up(vsi);
4650 clear_bit(__I40E_CONFIG_BUSY, &pf->state);
4651}
4652
4653/**
4654 * i40e_up - Bring the connection back up after being down
4655 * @vsi: the VSI being configured
4656 **/
4657int i40e_up(struct i40e_vsi *vsi)
4658{
4659 int err;
4660
4661 err = i40e_vsi_configure(vsi);
4662 if (!err)
4663 err = i40e_up_complete(vsi);
4664
4665 return err;
4666}
4667
4668/**
4669 * i40e_down - Shutdown the connection processing
4670 * @vsi: the VSI being stopped
4671 **/
4672void i40e_down(struct i40e_vsi *vsi)
4673{
4674 int i;
4675
4676 /* It is assumed that the caller of this function
4677 * sets the vsi->state __I40E_DOWN bit.
4678 */
4679 if (vsi->netdev) {
4680 netif_carrier_off(vsi->netdev);
4681 netif_tx_disable(vsi->netdev);
4682 }
4683 i40e_vsi_disable_irq(vsi);
4684 i40e_vsi_control_rings(vsi, false);
4685 i40e_napi_disable_all(vsi);
4686
4687 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00004688 i40e_clean_tx_ring(vsi->tx_rings[i]);
4689 i40e_clean_rx_ring(vsi->rx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004690 }
4691}
4692
4693/**
4694 * i40e_setup_tc - configure multiple traffic classes
4695 * @netdev: net device to configure
4696 * @tc: number of traffic classes to enable
4697 **/
Vasu Dev38e00432014-08-01 13:27:03 -07004698#ifdef I40E_FCOE
4699int i40e_setup_tc(struct net_device *netdev, u8 tc)
4700#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004701static int i40e_setup_tc(struct net_device *netdev, u8 tc)
Vasu Dev38e00432014-08-01 13:27:03 -07004702#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004703{
4704 struct i40e_netdev_priv *np = netdev_priv(netdev);
4705 struct i40e_vsi *vsi = np->vsi;
4706 struct i40e_pf *pf = vsi->back;
4707 u8 enabled_tc = 0;
4708 int ret = -EINVAL;
4709 int i;
4710
4711 /* Check if DCB enabled to continue */
4712 if (!(pf->flags & I40E_FLAG_DCB_ENABLED)) {
4713 netdev_info(netdev, "DCB is not enabled for adapter\n");
4714 goto exit;
4715 }
4716
4717 /* Check if MFP enabled */
4718 if (pf->flags & I40E_FLAG_MFP_ENABLED) {
4719 netdev_info(netdev, "Configuring TC not supported in MFP mode\n");
4720 goto exit;
4721 }
4722
4723 /* Check whether tc count is within enabled limit */
4724 if (tc > i40e_pf_get_num_tc(pf)) {
4725 netdev_info(netdev, "TC count greater than enabled on link for adapter\n");
4726 goto exit;
4727 }
4728
4729 /* Generate TC map for number of tc requested */
4730 for (i = 0; i < tc; i++)
4731 enabled_tc |= (1 << i);
4732
4733 /* Requesting same TC configuration as already enabled */
4734 if (enabled_tc == vsi->tc_config.enabled_tc)
4735 return 0;
4736
4737 /* Quiesce VSI queues */
4738 i40e_quiesce_vsi(vsi);
4739
4740 /* Configure VSI for enabled TCs */
4741 ret = i40e_vsi_config_tc(vsi, enabled_tc);
4742 if (ret) {
4743 netdev_info(netdev, "Failed configuring TC for VSI seid=%d\n",
4744 vsi->seid);
4745 goto exit;
4746 }
4747
4748 /* Unquiesce VSI */
4749 i40e_unquiesce_vsi(vsi);
4750
4751exit:
4752 return ret;
4753}
4754
4755/**
4756 * i40e_open - Called when a network interface is made active
4757 * @netdev: network interface device structure
4758 *
4759 * The open entry point is called when a network interface is made
4760 * active by the system (IFF_UP). At this point all resources needed
4761 * for transmit and receive operations are allocated, the interrupt
4762 * handler is registered with the OS, the netdev watchdog subtask is
4763 * enabled, and the stack is notified that the interface is ready.
4764 *
4765 * Returns 0 on success, negative value on failure
4766 **/
Vasu Dev38e00432014-08-01 13:27:03 -07004767#ifdef I40E_FCOE
4768int i40e_open(struct net_device *netdev)
4769#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004770static int i40e_open(struct net_device *netdev)
Vasu Dev38e00432014-08-01 13:27:03 -07004771#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004772{
4773 struct i40e_netdev_priv *np = netdev_priv(netdev);
4774 struct i40e_vsi *vsi = np->vsi;
4775 struct i40e_pf *pf = vsi->back;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004776 int err;
4777
Shannon Nelson4eb3f762014-03-06 08:59:58 +00004778 /* disallow open during test or if eeprom is broken */
4779 if (test_bit(__I40E_TESTING, &pf->state) ||
4780 test_bit(__I40E_BAD_EEPROM, &pf->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004781 return -EBUSY;
4782
4783 netif_carrier_off(netdev);
4784
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00004785 err = i40e_vsi_open(vsi);
4786 if (err)
4787 return err;
4788
Jesse Brandeburg059dab62014-04-01 09:07:20 +00004789 /* configure global TSO hardware offload settings */
4790 wr32(&pf->hw, I40E_GLLAN_TSOMSK_F, be32_to_cpu(TCP_FLAG_PSH |
4791 TCP_FLAG_FIN) >> 16);
4792 wr32(&pf->hw, I40E_GLLAN_TSOMSK_M, be32_to_cpu(TCP_FLAG_PSH |
4793 TCP_FLAG_FIN |
4794 TCP_FLAG_CWR) >> 16);
4795 wr32(&pf->hw, I40E_GLLAN_TSOMSK_L, be32_to_cpu(TCP_FLAG_CWR) >> 16);
4796
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00004797#ifdef CONFIG_I40E_VXLAN
4798 vxlan_get_rx_port(netdev);
4799#endif
4800
4801 return 0;
4802}
4803
4804/**
4805 * i40e_vsi_open -
4806 * @vsi: the VSI to open
4807 *
4808 * Finish initialization of the VSI.
4809 *
4810 * Returns 0 on success, negative value on failure
4811 **/
4812int i40e_vsi_open(struct i40e_vsi *vsi)
4813{
4814 struct i40e_pf *pf = vsi->back;
4815 char int_name[IFNAMSIZ];
4816 int err;
4817
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004818 /* allocate descriptors */
4819 err = i40e_vsi_setup_tx_resources(vsi);
4820 if (err)
4821 goto err_setup_tx;
4822 err = i40e_vsi_setup_rx_resources(vsi);
4823 if (err)
4824 goto err_setup_rx;
4825
4826 err = i40e_vsi_configure(vsi);
4827 if (err)
4828 goto err_setup_rx;
4829
Shannon Nelsonc22e3c62014-03-14 07:32:25 +00004830 if (vsi->netdev) {
4831 snprintf(int_name, sizeof(int_name) - 1, "%s-%s",
4832 dev_driver_string(&pf->pdev->dev), vsi->netdev->name);
4833 err = i40e_vsi_request_irq(vsi, int_name);
4834 if (err)
4835 goto err_setup_rx;
4836
4837 /* Notify the stack of the actual queue counts. */
4838 err = netif_set_real_num_tx_queues(vsi->netdev,
4839 vsi->num_queue_pairs);
4840 if (err)
4841 goto err_set_queues;
4842
4843 err = netif_set_real_num_rx_queues(vsi->netdev,
4844 vsi->num_queue_pairs);
4845 if (err)
4846 goto err_set_queues;
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00004847
4848 } else if (vsi->type == I40E_VSI_FDIR) {
4849 snprintf(int_name, sizeof(int_name) - 1, "%s-fdir",
4850 dev_driver_string(&pf->pdev->dev));
4851 err = i40e_vsi_request_irq(vsi, int_name);
Shannon Nelsonc22e3c62014-03-14 07:32:25 +00004852 } else {
Jean Sacrence9ccb12014-05-01 14:31:18 +00004853 err = -EINVAL;
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00004854 goto err_setup_rx;
4855 }
Anjali Singhai Jain25946dd2013-11-26 10:49:14 +00004856
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004857 err = i40e_up_complete(vsi);
4858 if (err)
4859 goto err_up_complete;
4860
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004861 return 0;
4862
4863err_up_complete:
4864 i40e_down(vsi);
Anjali Singhai Jain25946dd2013-11-26 10:49:14 +00004865err_set_queues:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004866 i40e_vsi_free_irq(vsi);
4867err_setup_rx:
4868 i40e_vsi_free_rx_resources(vsi);
4869err_setup_tx:
4870 i40e_vsi_free_tx_resources(vsi);
4871 if (vsi == pf->vsi[pf->lan_vsi])
4872 i40e_do_reset(pf, (1 << __I40E_PF_RESET_REQUESTED));
4873
4874 return err;
4875}
4876
4877/**
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00004878 * i40e_fdir_filter_exit - Cleans up the Flow Director accounting
4879 * @pf: Pointer to pf
4880 *
4881 * This function destroys the hlist where all the Flow Director
4882 * filters were saved.
4883 **/
4884static void i40e_fdir_filter_exit(struct i40e_pf *pf)
4885{
4886 struct i40e_fdir_filter *filter;
4887 struct hlist_node *node2;
4888
4889 hlist_for_each_entry_safe(filter, node2,
4890 &pf->fdir_filter_list, fdir_node) {
4891 hlist_del(&filter->fdir_node);
4892 kfree(filter);
4893 }
4894 pf->fdir_pf_active_filters = 0;
4895}
4896
4897/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004898 * i40e_close - Disables a network interface
4899 * @netdev: network interface device structure
4900 *
4901 * The close entry point is called when an interface is de-activated
4902 * by the OS. The hardware is still under the driver's control, but
4903 * this netdev interface is disabled.
4904 *
4905 * Returns 0, this is not allowed to fail
4906 **/
Vasu Dev38e00432014-08-01 13:27:03 -07004907#ifdef I40E_FCOE
4908int i40e_close(struct net_device *netdev)
4909#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004910static int i40e_close(struct net_device *netdev)
Vasu Dev38e00432014-08-01 13:27:03 -07004911#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004912{
4913 struct i40e_netdev_priv *np = netdev_priv(netdev);
4914 struct i40e_vsi *vsi = np->vsi;
4915
Shannon Nelson90ef8d42014-03-14 07:32:26 +00004916 i40e_vsi_close(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004917
4918 return 0;
4919}
4920
4921/**
4922 * i40e_do_reset - Start a PF or Core Reset sequence
4923 * @pf: board private structure
4924 * @reset_flags: which reset is requested
4925 *
4926 * The essential difference in resets is that the PF Reset
4927 * doesn't clear the packet buffers, doesn't reset the PE
4928 * firmware, and doesn't bother the other PFs on the chip.
4929 **/
4930void i40e_do_reset(struct i40e_pf *pf, u32 reset_flags)
4931{
4932 u32 val;
4933
4934 WARN_ON(in_interrupt());
4935
Mitch Williams263fc482014-04-23 04:50:11 +00004936 if (i40e_check_asq_alive(&pf->hw))
4937 i40e_vc_notify_reset(pf);
4938
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004939 /* do the biggest reset indicated */
4940 if (reset_flags & (1 << __I40E_GLOBAL_RESET_REQUESTED)) {
4941
4942 /* Request a Global Reset
4943 *
4944 * This will start the chip's countdown to the actual full
4945 * chip reset event, and a warning interrupt to be sent
4946 * to all PFs, including the requestor. Our handler
4947 * for the warning interrupt will deal with the shutdown
4948 * and recovery of the switch setup.
4949 */
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00004950 dev_dbg(&pf->pdev->dev, "GlobalR requested\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004951 val = rd32(&pf->hw, I40E_GLGEN_RTRIG);
4952 val |= I40E_GLGEN_RTRIG_GLOBR_MASK;
4953 wr32(&pf->hw, I40E_GLGEN_RTRIG, val);
4954
4955 } else if (reset_flags & (1 << __I40E_CORE_RESET_REQUESTED)) {
4956
4957 /* Request a Core Reset
4958 *
4959 * Same as Global Reset, except does *not* include the MAC/PHY
4960 */
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00004961 dev_dbg(&pf->pdev->dev, "CoreR requested\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004962 val = rd32(&pf->hw, I40E_GLGEN_RTRIG);
4963 val |= I40E_GLGEN_RTRIG_CORER_MASK;
4964 wr32(&pf->hw, I40E_GLGEN_RTRIG, val);
4965 i40e_flush(&pf->hw);
4966
Shannon Nelson7823fe32013-11-16 10:00:45 +00004967 } else if (reset_flags & (1 << __I40E_EMP_RESET_REQUESTED)) {
4968
4969 /* Request a Firmware Reset
4970 *
4971 * Same as Global reset, plus restarting the
4972 * embedded firmware engine.
4973 */
4974 /* enable EMP Reset */
4975 val = rd32(&pf->hw, I40E_GLGEN_RSTENA_EMP);
4976 val |= I40E_GLGEN_RSTENA_EMP_EMP_RST_ENA_MASK;
4977 wr32(&pf->hw, I40E_GLGEN_RSTENA_EMP, val);
4978
4979 /* force the reset */
4980 val = rd32(&pf->hw, I40E_GLGEN_RTRIG);
4981 val |= I40E_GLGEN_RTRIG_EMPFWR_MASK;
4982 wr32(&pf->hw, I40E_GLGEN_RTRIG, val);
4983 i40e_flush(&pf->hw);
4984
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004985 } else if (reset_flags & (1 << __I40E_PF_RESET_REQUESTED)) {
4986
4987 /* Request a PF Reset
4988 *
4989 * Resets only the PF-specific registers
4990 *
4991 * This goes directly to the tear-down and rebuild of
4992 * the switch, since we need to do all the recovery as
4993 * for the Core Reset.
4994 */
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00004995 dev_dbg(&pf->pdev->dev, "PFR requested\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004996 i40e_handle_reset_warning(pf);
4997
4998 } else if (reset_flags & (1 << __I40E_REINIT_REQUESTED)) {
4999 int v;
5000
5001 /* Find the VSI(s) that requested a re-init */
5002 dev_info(&pf->pdev->dev,
5003 "VSI reinit requested\n");
Mitch Williams505682c2014-05-20 08:01:37 +00005004 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005005 struct i40e_vsi *vsi = pf->vsi[v];
5006 if (vsi != NULL &&
5007 test_bit(__I40E_REINIT_REQUESTED, &vsi->state)) {
5008 i40e_vsi_reinit_locked(pf->vsi[v]);
5009 clear_bit(__I40E_REINIT_REQUESTED, &vsi->state);
5010 }
5011 }
5012
5013 /* no further action needed, so return now */
5014 return;
Neerav Parikhb5d06f02014-06-03 23:50:17 +00005015 } else if (reset_flags & (1 << __I40E_DOWN_REQUESTED)) {
5016 int v;
5017
5018 /* Find the VSI(s) that needs to be brought down */
5019 dev_info(&pf->pdev->dev, "VSI down requested\n");
5020 for (v = 0; v < pf->num_alloc_vsi; v++) {
5021 struct i40e_vsi *vsi = pf->vsi[v];
5022 if (vsi != NULL &&
5023 test_bit(__I40E_DOWN_REQUESTED, &vsi->state)) {
5024 set_bit(__I40E_DOWN, &vsi->state);
5025 i40e_down(vsi);
5026 clear_bit(__I40E_DOWN_REQUESTED, &vsi->state);
5027 }
5028 }
5029
5030 /* no further action needed, so return now */
5031 return;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005032 } else {
5033 dev_info(&pf->pdev->dev,
5034 "bad reset request 0x%08x\n", reset_flags);
5035 return;
5036 }
5037}
5038
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005039#ifdef CONFIG_I40E_DCB
5040/**
5041 * i40e_dcb_need_reconfig - Check if DCB needs reconfig
5042 * @pf: board private structure
5043 * @old_cfg: current DCB config
5044 * @new_cfg: new DCB config
5045 **/
5046bool i40e_dcb_need_reconfig(struct i40e_pf *pf,
5047 struct i40e_dcbx_config *old_cfg,
5048 struct i40e_dcbx_config *new_cfg)
5049{
5050 bool need_reconfig = false;
5051
5052 /* Check if ETS configuration has changed */
5053 if (memcmp(&new_cfg->etscfg,
5054 &old_cfg->etscfg,
5055 sizeof(new_cfg->etscfg))) {
5056 /* If Priority Table has changed reconfig is needed */
5057 if (memcmp(&new_cfg->etscfg.prioritytable,
5058 &old_cfg->etscfg.prioritytable,
5059 sizeof(new_cfg->etscfg.prioritytable))) {
5060 need_reconfig = true;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005061 dev_dbg(&pf->pdev->dev, "ETS UP2TC changed.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005062 }
5063
5064 if (memcmp(&new_cfg->etscfg.tcbwtable,
5065 &old_cfg->etscfg.tcbwtable,
5066 sizeof(new_cfg->etscfg.tcbwtable)))
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005067 dev_dbg(&pf->pdev->dev, "ETS TC BW Table changed.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005068
5069 if (memcmp(&new_cfg->etscfg.tsatable,
5070 &old_cfg->etscfg.tsatable,
5071 sizeof(new_cfg->etscfg.tsatable)))
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005072 dev_dbg(&pf->pdev->dev, "ETS TSA Table changed.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005073 }
5074
5075 /* Check if PFC configuration has changed */
5076 if (memcmp(&new_cfg->pfc,
5077 &old_cfg->pfc,
5078 sizeof(new_cfg->pfc))) {
5079 need_reconfig = true;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005080 dev_dbg(&pf->pdev->dev, "PFC config change detected.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005081 }
5082
5083 /* Check if APP Table has changed */
5084 if (memcmp(&new_cfg->app,
5085 &old_cfg->app,
Dave Jones3d9667a2014-01-27 23:11:09 -05005086 sizeof(new_cfg->app))) {
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005087 need_reconfig = true;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005088 dev_dbg(&pf->pdev->dev, "APP Table change detected.\n");
Dave Jones3d9667a2014-01-27 23:11:09 -05005089 }
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005090
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005091 dev_dbg(&pf->pdev->dev, "%s: need_reconfig=%d\n", __func__,
5092 need_reconfig);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005093 return need_reconfig;
5094}
5095
5096/**
5097 * i40e_handle_lldp_event - Handle LLDP Change MIB event
5098 * @pf: board private structure
5099 * @e: event info posted on ARQ
5100 **/
5101static int i40e_handle_lldp_event(struct i40e_pf *pf,
5102 struct i40e_arq_event_info *e)
5103{
5104 struct i40e_aqc_lldp_get_mib *mib =
5105 (struct i40e_aqc_lldp_get_mib *)&e->desc.params.raw;
5106 struct i40e_hw *hw = &pf->hw;
5107 struct i40e_dcbx_config *dcbx_cfg = &hw->local_dcbx_config;
5108 struct i40e_dcbx_config tmp_dcbx_cfg;
5109 bool need_reconfig = false;
5110 int ret = 0;
5111 u8 type;
5112
Neerav Parikh4d9b6042014-05-22 06:31:51 +00005113 /* Not DCB capable or capability disabled */
5114 if (!(pf->flags & I40E_FLAG_DCB_CAPABLE))
5115 return ret;
5116
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005117 /* Ignore if event is not for Nearest Bridge */
5118 type = ((mib->type >> I40E_AQ_LLDP_BRIDGE_TYPE_SHIFT)
5119 & I40E_AQ_LLDP_BRIDGE_TYPE_MASK);
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005120 dev_dbg(&pf->pdev->dev,
5121 "%s: LLDP event mib bridge type 0x%x\n", __func__, type);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005122 if (type != I40E_AQ_LLDP_BRIDGE_TYPE_NEAREST_BRIDGE)
5123 return ret;
5124
5125 /* Check MIB Type and return if event for Remote MIB update */
5126 type = mib->type & I40E_AQ_LLDP_MIB_TYPE_MASK;
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005127 dev_dbg(&pf->pdev->dev,
5128 "%s: LLDP event mib type %s\n", __func__,
5129 type ? "remote" : "local");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005130 if (type == I40E_AQ_LLDP_MIB_REMOTE) {
5131 /* Update the remote cached instance and return */
5132 ret = i40e_aq_get_dcb_config(hw, I40E_AQ_LLDP_MIB_REMOTE,
5133 I40E_AQ_LLDP_BRIDGE_TYPE_NEAREST_BRIDGE,
5134 &hw->remote_dcbx_config);
5135 goto exit;
5136 }
5137
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005138 memset(&tmp_dcbx_cfg, 0, sizeof(tmp_dcbx_cfg));
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005139 /* Store the old configuration */
5140 tmp_dcbx_cfg = *dcbx_cfg;
5141
5142 /* Get updated DCBX data from firmware */
5143 ret = i40e_get_dcb_config(&pf->hw);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005144 if (ret) {
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005145 dev_info(&pf->pdev->dev, "Failed querying DCB configuration data from firmware.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005146 goto exit;
5147 }
5148
5149 /* No change detected in DCBX configs */
5150 if (!memcmp(&tmp_dcbx_cfg, dcbx_cfg, sizeof(tmp_dcbx_cfg))) {
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005151 dev_dbg(&pf->pdev->dev, "No change detected in DCBX configuration.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005152 goto exit;
5153 }
5154
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005155 need_reconfig = i40e_dcb_need_reconfig(pf, &tmp_dcbx_cfg, dcbx_cfg);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005156
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005157 i40e_dcbnl_flush_apps(pf, dcbx_cfg);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005158
5159 if (!need_reconfig)
5160 goto exit;
5161
Neerav Parikh4d9b6042014-05-22 06:31:51 +00005162 /* Enable DCB tagging only when more than one TC */
5163 if (i40e_dcb_get_num_tc(dcbx_cfg) > 1)
5164 pf->flags |= I40E_FLAG_DCB_ENABLED;
5165 else
5166 pf->flags &= ~I40E_FLAG_DCB_ENABLED;
5167
Neerav Parikh69129dc2014-11-12 00:18:46 +00005168 set_bit(__I40E_PORT_TX_SUSPENDED, &pf->state);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005169 /* Reconfiguration needed quiesce all VSIs */
5170 i40e_pf_quiesce_all_vsi(pf);
5171
5172 /* Changes in configuration update VEB/VSI */
5173 i40e_dcb_reconfigure(pf);
5174
Neerav Parikh2fd75f32014-11-12 00:18:20 +00005175 ret = i40e_resume_port_tx(pf);
5176
Neerav Parikh69129dc2014-11-12 00:18:46 +00005177 clear_bit(__I40E_PORT_TX_SUSPENDED, &pf->state);
Neerav Parikh2fd75f32014-11-12 00:18:20 +00005178 /* In case of error no point in resuming VSIs */
Neerav Parikh69129dc2014-11-12 00:18:46 +00005179 if (ret)
5180 goto exit;
5181
5182 /* Wait for the PF's Tx queues to be disabled */
5183 ret = i40e_pf_wait_txq_disabled(pf);
Neerav Parikh2fd75f32014-11-12 00:18:20 +00005184 if (!ret)
5185 i40e_pf_unquiesce_all_vsi(pf);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005186exit:
5187 return ret;
5188}
5189#endif /* CONFIG_I40E_DCB */
5190
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005191/**
Anjali Singhai Jain23326182013-11-26 10:49:22 +00005192 * i40e_do_reset_safe - Protected reset path for userland calls.
5193 * @pf: board private structure
5194 * @reset_flags: which reset is requested
5195 *
5196 **/
5197void i40e_do_reset_safe(struct i40e_pf *pf, u32 reset_flags)
5198{
5199 rtnl_lock();
5200 i40e_do_reset(pf, reset_flags);
5201 rtnl_unlock();
5202}
5203
5204/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005205 * i40e_handle_lan_overflow_event - Handler for LAN queue overflow event
5206 * @pf: board private structure
5207 * @e: event info posted on ARQ
5208 *
5209 * Handler for LAN Queue Overflow Event generated by the firmware for PF
5210 * and VF queues
5211 **/
5212static void i40e_handle_lan_overflow_event(struct i40e_pf *pf,
5213 struct i40e_arq_event_info *e)
5214{
5215 struct i40e_aqc_lan_overflow *data =
5216 (struct i40e_aqc_lan_overflow *)&e->desc.params.raw;
5217 u32 queue = le32_to_cpu(data->prtdcb_rupto);
5218 u32 qtx_ctl = le32_to_cpu(data->otx_ctl);
5219 struct i40e_hw *hw = &pf->hw;
5220 struct i40e_vf *vf;
5221 u16 vf_id;
5222
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005223 dev_dbg(&pf->pdev->dev, "overflow Rx Queue Number = %d QTX_CTL=0x%08x\n",
5224 queue, qtx_ctl);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005225
5226 /* Queue belongs to VF, find the VF and issue VF reset */
5227 if (((qtx_ctl & I40E_QTX_CTL_PFVF_Q_MASK)
5228 >> I40E_QTX_CTL_PFVF_Q_SHIFT) == I40E_QTX_CTL_VF_QUEUE) {
5229 vf_id = (u16)((qtx_ctl & I40E_QTX_CTL_VFVM_INDX_MASK)
5230 >> I40E_QTX_CTL_VFVM_INDX_SHIFT);
5231 vf_id -= hw->func_caps.vf_base_id;
5232 vf = &pf->vf[vf_id];
5233 i40e_vc_notify_vf_reset(vf);
5234 /* Allow VF to process pending reset notification */
5235 msleep(20);
5236 i40e_reset_vf(vf, false);
5237 }
5238}
5239
5240/**
5241 * i40e_service_event_complete - Finish up the service event
5242 * @pf: board private structure
5243 **/
5244static void i40e_service_event_complete(struct i40e_pf *pf)
5245{
5246 BUG_ON(!test_bit(__I40E_SERVICE_SCHED, &pf->state));
5247
5248 /* flush memory to make sure state is correct before next watchog */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01005249 smp_mb__before_atomic();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005250 clear_bit(__I40E_SERVICE_SCHED, &pf->state);
5251}
5252
5253/**
Anjali Singhai Jain12957382014-06-04 04:22:47 +00005254 * i40e_get_cur_guaranteed_fd_count - Get the consumed guaranteed FD filters
5255 * @pf: board private structure
5256 **/
5257int i40e_get_cur_guaranteed_fd_count(struct i40e_pf *pf)
5258{
5259 int val, fcnt_prog;
5260
5261 val = rd32(&pf->hw, I40E_PFQF_FDSTAT);
5262 fcnt_prog = (val & I40E_PFQF_FDSTAT_GUARANT_CNT_MASK);
5263 return fcnt_prog;
5264}
5265
5266/**
5267 * i40e_get_current_fd_count - Get the count of total FD filters programmed
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005268 * @pf: board private structure
5269 **/
5270int i40e_get_current_fd_count(struct i40e_pf *pf)
5271{
5272 int val, fcnt_prog;
5273 val = rd32(&pf->hw, I40E_PFQF_FDSTAT);
5274 fcnt_prog = (val & I40E_PFQF_FDSTAT_GUARANT_CNT_MASK) +
5275 ((val & I40E_PFQF_FDSTAT_BEST_CNT_MASK) >>
5276 I40E_PFQF_FDSTAT_BEST_CNT_SHIFT);
5277 return fcnt_prog;
5278}
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005279
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005280/**
5281 * i40e_fdir_check_and_reenable - Function to reenabe FD ATR or SB if disabled
5282 * @pf: board private structure
5283 **/
5284void i40e_fdir_check_and_reenable(struct i40e_pf *pf)
5285{
5286 u32 fcnt_prog, fcnt_avail;
5287
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005288 if (test_bit(__I40E_FD_FLUSH_REQUESTED, &pf->state))
5289 return;
5290
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005291 /* Check if, FD SB or ATR was auto disabled and if there is enough room
5292 * to re-enable
5293 */
Anjali Singhai Jain12957382014-06-04 04:22:47 +00005294 fcnt_prog = i40e_get_cur_guaranteed_fd_count(pf);
5295 fcnt_avail = pf->fdir_pf_filter_count;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005296 if ((fcnt_prog < (fcnt_avail - I40E_FDIR_BUFFER_HEAD_ROOM)) ||
5297 (pf->fd_add_err == 0) ||
5298 (i40e_get_current_atr_cnt(pf) < pf->fd_atr_cnt)) {
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005299 if ((pf->flags & I40E_FLAG_FD_SB_ENABLED) &&
5300 (pf->auto_disable_flags & I40E_FLAG_FD_SB_ENABLED)) {
5301 pf->auto_disable_flags &= ~I40E_FLAG_FD_SB_ENABLED;
5302 dev_info(&pf->pdev->dev, "FD Sideband/ntuple is being enabled since we have space in the table now\n");
5303 }
5304 }
5305 /* Wait for some more space to be available to turn on ATR */
5306 if (fcnt_prog < (fcnt_avail - I40E_FDIR_BUFFER_HEAD_ROOM * 2)) {
5307 if ((pf->flags & I40E_FLAG_FD_ATR_ENABLED) &&
5308 (pf->auto_disable_flags & I40E_FLAG_FD_ATR_ENABLED)) {
5309 pf->auto_disable_flags &= ~I40E_FLAG_FD_ATR_ENABLED;
5310 dev_info(&pf->pdev->dev, "ATR is being enabled since we have space in the table now\n");
5311 }
5312 }
5313}
5314
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005315#define I40E_MIN_FD_FLUSH_INTERVAL 10
5316/**
5317 * i40e_fdir_flush_and_replay - Function to flush all FD filters and replay SB
5318 * @pf: board private structure
5319 **/
5320static void i40e_fdir_flush_and_replay(struct i40e_pf *pf)
5321{
5322 int flush_wait_retry = 50;
5323 int reg;
5324
Akeem G Abodunrin1790ed02014-10-17 03:14:41 +00005325 if (!(pf->flags & (I40E_FLAG_FD_SB_ENABLED | I40E_FLAG_FD_ATR_ENABLED)))
5326 return;
5327
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005328 if (time_after(jiffies, pf->fd_flush_timestamp +
5329 (I40E_MIN_FD_FLUSH_INTERVAL * HZ))) {
5330 set_bit(__I40E_FD_FLUSH_REQUESTED, &pf->state);
5331 pf->fd_flush_timestamp = jiffies;
5332 pf->auto_disable_flags |= I40E_FLAG_FD_SB_ENABLED;
5333 pf->flags &= ~I40E_FLAG_FD_ATR_ENABLED;
5334 /* flush all filters */
5335 wr32(&pf->hw, I40E_PFQF_CTL_1,
5336 I40E_PFQF_CTL_1_CLEARFDTABLE_MASK);
5337 i40e_flush(&pf->hw);
Anjali Singhai Jain60793f42014-07-09 07:46:23 +00005338 pf->fd_flush_cnt++;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005339 pf->fd_add_err = 0;
5340 do {
5341 /* Check FD flush status every 5-6msec */
5342 usleep_range(5000, 6000);
5343 reg = rd32(&pf->hw, I40E_PFQF_CTL_1);
5344 if (!(reg & I40E_PFQF_CTL_1_CLEARFDTABLE_MASK))
5345 break;
5346 } while (flush_wait_retry--);
5347 if (reg & I40E_PFQF_CTL_1_CLEARFDTABLE_MASK) {
5348 dev_warn(&pf->pdev->dev, "FD table did not flush, needs more time\n");
5349 } else {
5350 /* replay sideband filters */
5351 i40e_fdir_filter_restore(pf->vsi[pf->lan_vsi]);
5352
5353 pf->flags |= I40E_FLAG_FD_ATR_ENABLED;
5354 pf->auto_disable_flags &= ~I40E_FLAG_FD_ATR_ENABLED;
5355 pf->auto_disable_flags &= ~I40E_FLAG_FD_SB_ENABLED;
5356 clear_bit(__I40E_FD_FLUSH_REQUESTED, &pf->state);
5357 dev_info(&pf->pdev->dev, "FD Filter table flushed and FD-SB replayed.\n");
5358 }
5359 }
5360}
5361
5362/**
5363 * i40e_get_current_atr_count - Get the count of total FD ATR filters programmed
5364 * @pf: board private structure
5365 **/
5366int i40e_get_current_atr_cnt(struct i40e_pf *pf)
5367{
5368 return i40e_get_current_fd_count(pf) - pf->fdir_pf_active_filters;
5369}
5370
5371/* We can see up to 256 filter programming desc in transit if the filters are
5372 * being applied really fast; before we see the first
5373 * filter miss error on Rx queue 0. Accumulating enough error messages before
5374 * reacting will make sure we don't cause flush too often.
5375 */
5376#define I40E_MAX_FD_PROGRAM_ERROR 256
5377
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005378/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005379 * i40e_fdir_reinit_subtask - Worker thread to reinit FDIR filter table
5380 * @pf: board private structure
5381 **/
5382static void i40e_fdir_reinit_subtask(struct i40e_pf *pf)
5383{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005384
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005385 /* if interface is down do nothing */
5386 if (test_bit(__I40E_DOWN, &pf->state))
5387 return;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005388
Akeem G Abodunrin1790ed02014-10-17 03:14:41 +00005389 if (!(pf->flags & (I40E_FLAG_FD_SB_ENABLED | I40E_FLAG_FD_ATR_ENABLED)))
5390 return;
5391
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005392 if ((pf->fd_add_err >= I40E_MAX_FD_PROGRAM_ERROR) &&
5393 (i40e_get_current_atr_cnt(pf) >= pf->fd_atr_cnt) &&
5394 (i40e_get_current_atr_cnt(pf) > pf->fdir_pf_filter_count))
5395 i40e_fdir_flush_and_replay(pf);
5396
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005397 i40e_fdir_check_and_reenable(pf);
5398
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005399}
5400
5401/**
5402 * i40e_vsi_link_event - notify VSI of a link event
5403 * @vsi: vsi to be notified
5404 * @link_up: link up or down
5405 **/
5406static void i40e_vsi_link_event(struct i40e_vsi *vsi, bool link_up)
5407{
Jesse Brandeburg32b5b812014-08-12 06:33:14 +00005408 if (!vsi || test_bit(__I40E_DOWN, &vsi->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005409 return;
5410
5411 switch (vsi->type) {
5412 case I40E_VSI_MAIN:
Vasu Dev38e00432014-08-01 13:27:03 -07005413#ifdef I40E_FCOE
5414 case I40E_VSI_FCOE:
5415#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005416 if (!vsi->netdev || !vsi->netdev_registered)
5417 break;
5418
5419 if (link_up) {
5420 netif_carrier_on(vsi->netdev);
5421 netif_tx_wake_all_queues(vsi->netdev);
5422 } else {
5423 netif_carrier_off(vsi->netdev);
5424 netif_tx_stop_all_queues(vsi->netdev);
5425 }
5426 break;
5427
5428 case I40E_VSI_SRIOV:
5429 break;
5430
5431 case I40E_VSI_VMDQ2:
5432 case I40E_VSI_CTRL:
5433 case I40E_VSI_MIRROR:
5434 default:
5435 /* there is no notification for other VSIs */
5436 break;
5437 }
5438}
5439
5440/**
5441 * i40e_veb_link_event - notify elements on the veb of a link event
5442 * @veb: veb to be notified
5443 * @link_up: link up or down
5444 **/
5445static void i40e_veb_link_event(struct i40e_veb *veb, bool link_up)
5446{
5447 struct i40e_pf *pf;
5448 int i;
5449
5450 if (!veb || !veb->pf)
5451 return;
5452 pf = veb->pf;
5453
5454 /* depth first... */
5455 for (i = 0; i < I40E_MAX_VEB; i++)
5456 if (pf->veb[i] && (pf->veb[i]->uplink_seid == veb->seid))
5457 i40e_veb_link_event(pf->veb[i], link_up);
5458
5459 /* ... now the local VSIs */
Mitch Williams505682c2014-05-20 08:01:37 +00005460 for (i = 0; i < pf->num_alloc_vsi; i++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005461 if (pf->vsi[i] && (pf->vsi[i]->uplink_seid == veb->seid))
5462 i40e_vsi_link_event(pf->vsi[i], link_up);
5463}
5464
5465/**
5466 * i40e_link_event - Update netif_carrier status
5467 * @pf: board private structure
5468 **/
5469static void i40e_link_event(struct i40e_pf *pf)
5470{
5471 bool new_link, old_link;
Mitch Williams320684c2014-10-17 03:14:43 +00005472 struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005473
Jesse Brandeburg1e701e02014-09-13 07:40:42 +00005474 /* set this to force the get_link_status call to refresh state */
5475 pf->hw.phy.get_link_info = true;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005476
Jesse Brandeburg1e701e02014-09-13 07:40:42 +00005477 old_link = (pf->hw.phy.link_info_old.link_info & I40E_AQ_LINK_UP);
5478 new_link = i40e_get_link_status(&pf->hw);
5479
5480 if (new_link == old_link &&
Mitch Williams320684c2014-10-17 03:14:43 +00005481 (test_bit(__I40E_DOWN, &vsi->state) ||
5482 new_link == netif_carrier_ok(vsi->netdev)))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005483 return;
Mitch Williams320684c2014-10-17 03:14:43 +00005484
5485 if (!test_bit(__I40E_DOWN, &vsi->state))
5486 i40e_print_link_message(vsi, new_link);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005487
5488 /* Notify the base of the switch tree connected to
5489 * the link. Floating VEBs are not notified.
5490 */
5491 if (pf->lan_veb != I40E_NO_VEB && pf->veb[pf->lan_veb])
5492 i40e_veb_link_event(pf->veb[pf->lan_veb], new_link);
5493 else
Mitch Williams320684c2014-10-17 03:14:43 +00005494 i40e_vsi_link_event(vsi, new_link);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005495
5496 if (pf->vf)
5497 i40e_vc_notify_link_state(pf);
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00005498
5499 if (pf->flags & I40E_FLAG_PTP)
5500 i40e_ptp_set_increment(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005501}
5502
5503/**
5504 * i40e_check_hang_subtask - Check for hung queues and dropped interrupts
5505 * @pf: board private structure
5506 *
5507 * Set the per-queue flags to request a check for stuck queues in the irq
5508 * clean functions, then force interrupts to be sure the irq clean is called.
5509 **/
5510static void i40e_check_hang_subtask(struct i40e_pf *pf)
5511{
5512 int i, v;
5513
5514 /* If we're down or resetting, just bail */
5515 if (test_bit(__I40E_CONFIG_BUSY, &pf->state))
5516 return;
5517
5518 /* for each VSI/netdev
5519 * for each Tx queue
5520 * set the check flag
5521 * for each q_vector
5522 * force an interrupt
5523 */
Mitch Williams505682c2014-05-20 08:01:37 +00005524 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005525 struct i40e_vsi *vsi = pf->vsi[v];
5526 int armed = 0;
5527
5528 if (!pf->vsi[v] ||
5529 test_bit(__I40E_DOWN, &vsi->state) ||
5530 (vsi->netdev && !netif_carrier_ok(vsi->netdev)))
5531 continue;
5532
5533 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00005534 set_check_for_tx_hang(vsi->tx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005535 if (test_bit(__I40E_HANG_CHECK_ARMED,
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00005536 &vsi->tx_rings[i]->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005537 armed++;
5538 }
5539
5540 if (armed) {
5541 if (!(pf->flags & I40E_FLAG_MSIX_ENABLED)) {
5542 wr32(&vsi->back->hw, I40E_PFINT_DYN_CTL0,
5543 (I40E_PFINT_DYN_CTL0_INTENA_MASK |
5544 I40E_PFINT_DYN_CTL0_SWINT_TRIG_MASK));
5545 } else {
5546 u16 vec = vsi->base_vector - 1;
5547 u32 val = (I40E_PFINT_DYN_CTLN_INTENA_MASK |
5548 I40E_PFINT_DYN_CTLN_SWINT_TRIG_MASK);
5549 for (i = 0; i < vsi->num_q_vectors; i++, vec++)
5550 wr32(&vsi->back->hw,
5551 I40E_PFINT_DYN_CTLN(vec), val);
5552 }
5553 i40e_flush(&vsi->back->hw);
5554 }
5555 }
5556}
5557
5558/**
Shannon Nelson21536712014-10-25 10:35:25 +00005559 * i40e_watchdog_subtask - periodic checks not using event driven response
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005560 * @pf: board private structure
5561 **/
5562static void i40e_watchdog_subtask(struct i40e_pf *pf)
5563{
5564 int i;
5565
5566 /* if interface is down do nothing */
5567 if (test_bit(__I40E_DOWN, &pf->state) ||
5568 test_bit(__I40E_CONFIG_BUSY, &pf->state))
5569 return;
5570
Shannon Nelson21536712014-10-25 10:35:25 +00005571 /* make sure we don't do these things too often */
5572 if (time_before(jiffies, (pf->service_timer_previous +
5573 pf->service_timer_period)))
5574 return;
5575 pf->service_timer_previous = jiffies;
5576
5577 i40e_check_hang_subtask(pf);
5578 i40e_link_event(pf);
5579
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005580 /* Update the stats for active netdevs so the network stack
5581 * can look at updated numbers whenever it cares to
5582 */
Mitch Williams505682c2014-05-20 08:01:37 +00005583 for (i = 0; i < pf->num_alloc_vsi; i++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005584 if (pf->vsi[i] && pf->vsi[i]->netdev)
5585 i40e_update_stats(pf->vsi[i]);
5586
5587 /* Update the stats for the active switching components */
5588 for (i = 0; i < I40E_MAX_VEB; i++)
5589 if (pf->veb[i])
5590 i40e_update_veb_stats(pf->veb[i]);
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00005591
5592 i40e_ptp_rx_hang(pf->vsi[pf->lan_vsi]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005593}
5594
5595/**
5596 * i40e_reset_subtask - Set up for resetting the device and driver
5597 * @pf: board private structure
5598 **/
5599static void i40e_reset_subtask(struct i40e_pf *pf)
5600{
5601 u32 reset_flags = 0;
5602
Anjali Singhai Jain23326182013-11-26 10:49:22 +00005603 rtnl_lock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005604 if (test_bit(__I40E_REINIT_REQUESTED, &pf->state)) {
5605 reset_flags |= (1 << __I40E_REINIT_REQUESTED);
5606 clear_bit(__I40E_REINIT_REQUESTED, &pf->state);
5607 }
5608 if (test_bit(__I40E_PF_RESET_REQUESTED, &pf->state)) {
5609 reset_flags |= (1 << __I40E_PF_RESET_REQUESTED);
5610 clear_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
5611 }
5612 if (test_bit(__I40E_CORE_RESET_REQUESTED, &pf->state)) {
5613 reset_flags |= (1 << __I40E_CORE_RESET_REQUESTED);
5614 clear_bit(__I40E_CORE_RESET_REQUESTED, &pf->state);
5615 }
5616 if (test_bit(__I40E_GLOBAL_RESET_REQUESTED, &pf->state)) {
5617 reset_flags |= (1 << __I40E_GLOBAL_RESET_REQUESTED);
5618 clear_bit(__I40E_GLOBAL_RESET_REQUESTED, &pf->state);
5619 }
Neerav Parikhb5d06f02014-06-03 23:50:17 +00005620 if (test_bit(__I40E_DOWN_REQUESTED, &pf->state)) {
5621 reset_flags |= (1 << __I40E_DOWN_REQUESTED);
5622 clear_bit(__I40E_DOWN_REQUESTED, &pf->state);
5623 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005624
5625 /* If there's a recovery already waiting, it takes
5626 * precedence before starting a new reset sequence.
5627 */
5628 if (test_bit(__I40E_RESET_INTR_RECEIVED, &pf->state)) {
5629 i40e_handle_reset_warning(pf);
Anjali Singhai Jain23326182013-11-26 10:49:22 +00005630 goto unlock;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005631 }
5632
5633 /* If we're already down or resetting, just bail */
5634 if (reset_flags &&
5635 !test_bit(__I40E_DOWN, &pf->state) &&
5636 !test_bit(__I40E_CONFIG_BUSY, &pf->state))
5637 i40e_do_reset(pf, reset_flags);
Anjali Singhai Jain23326182013-11-26 10:49:22 +00005638
5639unlock:
5640 rtnl_unlock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005641}
5642
5643/**
5644 * i40e_handle_link_event - Handle link event
5645 * @pf: board private structure
5646 * @e: event info posted on ARQ
5647 **/
5648static void i40e_handle_link_event(struct i40e_pf *pf,
5649 struct i40e_arq_event_info *e)
5650{
5651 struct i40e_hw *hw = &pf->hw;
5652 struct i40e_aqc_get_link_status *status =
5653 (struct i40e_aqc_get_link_status *)&e->desc.params.raw;
5654 struct i40e_link_status *hw_link_info = &hw->phy.link_info;
5655
5656 /* save off old link status information */
5657 memcpy(&pf->hw.phy.link_info_old, hw_link_info,
5658 sizeof(pf->hw.phy.link_info_old));
5659
Jesse Brandeburg1e701e02014-09-13 07:40:42 +00005660 /* Do a new status request to re-enable LSE reporting
5661 * and load new status information into the hw struct
5662 * This completely ignores any state information
5663 * in the ARQ event info, instead choosing to always
5664 * issue the AQ update link status command.
5665 */
5666 i40e_link_event(pf);
5667
Carolyn Wyborny7b592f62014-07-10 07:58:19 +00005668 /* check for unqualified module, if link is down */
5669 if ((status->link_info & I40E_AQ_MEDIA_AVAILABLE) &&
5670 (!(status->an_info & I40E_AQ_QUALIFIED_MODULE)) &&
5671 (!(status->link_info & I40E_AQ_LINK_UP)))
5672 dev_err(&pf->pdev->dev,
5673 "The driver failed to link because an unqualified module was detected.\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005674}
5675
5676/**
5677 * i40e_clean_adminq_subtask - Clean the AdminQ rings
5678 * @pf: board private structure
5679 **/
5680static void i40e_clean_adminq_subtask(struct i40e_pf *pf)
5681{
5682 struct i40e_arq_event_info event;
5683 struct i40e_hw *hw = &pf->hw;
5684 u16 pending, i = 0;
5685 i40e_status ret;
5686 u16 opcode;
Shannon Nelson86df2422014-05-20 08:01:35 +00005687 u32 oldval;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005688 u32 val;
5689
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00005690 /* Do not run clean AQ when PF reset fails */
5691 if (test_bit(__I40E_RESET_FAILED, &pf->state))
5692 return;
5693
Shannon Nelson86df2422014-05-20 08:01:35 +00005694 /* check for error indications */
5695 val = rd32(&pf->hw, pf->hw.aq.arq.len);
5696 oldval = val;
5697 if (val & I40E_PF_ARQLEN_ARQVFE_MASK) {
5698 dev_info(&pf->pdev->dev, "ARQ VF Error detected\n");
5699 val &= ~I40E_PF_ARQLEN_ARQVFE_MASK;
5700 }
5701 if (val & I40E_PF_ARQLEN_ARQOVFL_MASK) {
5702 dev_info(&pf->pdev->dev, "ARQ Overflow Error detected\n");
5703 val &= ~I40E_PF_ARQLEN_ARQOVFL_MASK;
5704 }
5705 if (val & I40E_PF_ARQLEN_ARQCRIT_MASK) {
5706 dev_info(&pf->pdev->dev, "ARQ Critical Error detected\n");
5707 val &= ~I40E_PF_ARQLEN_ARQCRIT_MASK;
5708 }
5709 if (oldval != val)
5710 wr32(&pf->hw, pf->hw.aq.arq.len, val);
5711
5712 val = rd32(&pf->hw, pf->hw.aq.asq.len);
5713 oldval = val;
5714 if (val & I40E_PF_ATQLEN_ATQVFE_MASK) {
5715 dev_info(&pf->pdev->dev, "ASQ VF Error detected\n");
5716 val &= ~I40E_PF_ATQLEN_ATQVFE_MASK;
5717 }
5718 if (val & I40E_PF_ATQLEN_ATQOVFL_MASK) {
5719 dev_info(&pf->pdev->dev, "ASQ Overflow Error detected\n");
5720 val &= ~I40E_PF_ATQLEN_ATQOVFL_MASK;
5721 }
5722 if (val & I40E_PF_ATQLEN_ATQCRIT_MASK) {
5723 dev_info(&pf->pdev->dev, "ASQ Critical Error detected\n");
5724 val &= ~I40E_PF_ATQLEN_ATQCRIT_MASK;
5725 }
5726 if (oldval != val)
5727 wr32(&pf->hw, pf->hw.aq.asq.len, val);
5728
Mitch Williams3197ce22013-11-28 06:39:39 +00005729 event.msg_size = I40E_MAX_AQ_BUF_SIZE;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005730 event.msg_buf = kzalloc(event.msg_size, GFP_KERNEL);
5731 if (!event.msg_buf)
5732 return;
5733
5734 do {
Mitch Williams2f019122013-11-28 06:39:33 +00005735 event.msg_size = I40E_MAX_AQ_BUF_SIZE; /* reinit each time */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005736 ret = i40e_clean_arq_element(hw, &event, &pending);
Mitch Williams56497972014-06-04 08:45:18 +00005737 if (ret == I40E_ERR_ADMIN_QUEUE_NO_WORK)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005738 break;
Mitch Williams56497972014-06-04 08:45:18 +00005739 else if (ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005740 dev_info(&pf->pdev->dev, "ARQ event error %d\n", ret);
5741 break;
5742 }
5743
5744 opcode = le16_to_cpu(event.desc.opcode);
5745 switch (opcode) {
5746
5747 case i40e_aqc_opc_get_link_status:
5748 i40e_handle_link_event(pf, &event);
5749 break;
5750 case i40e_aqc_opc_send_msg_to_pf:
5751 ret = i40e_vc_process_vf_msg(pf,
5752 le16_to_cpu(event.desc.retval),
5753 le32_to_cpu(event.desc.cookie_high),
5754 le32_to_cpu(event.desc.cookie_low),
5755 event.msg_buf,
5756 event.msg_size);
5757 break;
5758 case i40e_aqc_opc_lldp_update_mib:
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005759 dev_dbg(&pf->pdev->dev, "ARQ: Update LLDP MIB event received\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005760#ifdef CONFIG_I40E_DCB
5761 rtnl_lock();
5762 ret = i40e_handle_lldp_event(pf, &event);
5763 rtnl_unlock();
5764#endif /* CONFIG_I40E_DCB */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005765 break;
5766 case i40e_aqc_opc_event_lan_overflow:
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005767 dev_dbg(&pf->pdev->dev, "ARQ LAN queue overflow event received\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005768 i40e_handle_lan_overflow_event(pf, &event);
5769 break;
Shannon Nelson0467bc92013-12-18 13:45:58 +00005770 case i40e_aqc_opc_send_msg_to_peer:
5771 dev_info(&pf->pdev->dev, "ARQ: Msg from other pf\n");
5772 break;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005773 default:
5774 dev_info(&pf->pdev->dev,
Shannon Nelson0467bc92013-12-18 13:45:58 +00005775 "ARQ Error: Unknown event 0x%04x received\n",
5776 opcode);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005777 break;
5778 }
5779 } while (pending && (i++ < pf->adminq_work_limit));
5780
5781 clear_bit(__I40E_ADMINQ_EVENT_PENDING, &pf->state);
5782 /* re-enable Admin queue interrupt cause */
5783 val = rd32(hw, I40E_PFINT_ICR0_ENA);
5784 val |= I40E_PFINT_ICR0_ENA_ADMINQ_MASK;
5785 wr32(hw, I40E_PFINT_ICR0_ENA, val);
5786 i40e_flush(hw);
5787
5788 kfree(event.msg_buf);
5789}
5790
5791/**
Shannon Nelson4eb3f762014-03-06 08:59:58 +00005792 * i40e_verify_eeprom - make sure eeprom is good to use
5793 * @pf: board private structure
5794 **/
5795static void i40e_verify_eeprom(struct i40e_pf *pf)
5796{
5797 int err;
5798
5799 err = i40e_diag_eeprom_test(&pf->hw);
5800 if (err) {
5801 /* retry in case of garbage read */
5802 err = i40e_diag_eeprom_test(&pf->hw);
5803 if (err) {
5804 dev_info(&pf->pdev->dev, "eeprom check failed (%d), Tx/Rx traffic disabled\n",
5805 err);
5806 set_bit(__I40E_BAD_EEPROM, &pf->state);
5807 }
5808 }
5809
5810 if (!err && test_bit(__I40E_BAD_EEPROM, &pf->state)) {
5811 dev_info(&pf->pdev->dev, "eeprom check passed, Tx/Rx traffic enabled\n");
5812 clear_bit(__I40E_BAD_EEPROM, &pf->state);
5813 }
5814}
5815
5816/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005817 * i40e_reconstitute_veb - rebuild the VEB and anything connected to it
5818 * @veb: pointer to the VEB instance
5819 *
5820 * This is a recursive function that first builds the attached VSIs then
5821 * recurses in to build the next layer of VEB. We track the connections
5822 * through our own index numbers because the seid's from the HW could
5823 * change across the reset.
5824 **/
5825static int i40e_reconstitute_veb(struct i40e_veb *veb)
5826{
5827 struct i40e_vsi *ctl_vsi = NULL;
5828 struct i40e_pf *pf = veb->pf;
5829 int v, veb_idx;
5830 int ret;
5831
5832 /* build VSI that owns this VEB, temporarily attached to base VEB */
Mitch Williams505682c2014-05-20 08:01:37 +00005833 for (v = 0; v < pf->num_alloc_vsi && !ctl_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005834 if (pf->vsi[v] &&
5835 pf->vsi[v]->veb_idx == veb->idx &&
5836 pf->vsi[v]->flags & I40E_VSI_FLAG_VEB_OWNER) {
5837 ctl_vsi = pf->vsi[v];
5838 break;
5839 }
5840 }
5841 if (!ctl_vsi) {
5842 dev_info(&pf->pdev->dev,
5843 "missing owner VSI for veb_idx %d\n", veb->idx);
5844 ret = -ENOENT;
5845 goto end_reconstitute;
5846 }
5847 if (ctl_vsi != pf->vsi[pf->lan_vsi])
5848 ctl_vsi->uplink_seid = pf->vsi[pf->lan_vsi]->uplink_seid;
5849 ret = i40e_add_vsi(ctl_vsi);
5850 if (ret) {
5851 dev_info(&pf->pdev->dev,
5852 "rebuild of owner VSI failed: %d\n", ret);
5853 goto end_reconstitute;
5854 }
5855 i40e_vsi_reset_stats(ctl_vsi);
5856
5857 /* create the VEB in the switch and move the VSI onto the VEB */
5858 ret = i40e_add_veb(veb, ctl_vsi);
5859 if (ret)
5860 goto end_reconstitute;
5861
5862 /* create the remaining VSIs attached to this VEB */
Mitch Williams505682c2014-05-20 08:01:37 +00005863 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005864 if (!pf->vsi[v] || pf->vsi[v] == ctl_vsi)
5865 continue;
5866
5867 if (pf->vsi[v]->veb_idx == veb->idx) {
5868 struct i40e_vsi *vsi = pf->vsi[v];
5869 vsi->uplink_seid = veb->seid;
5870 ret = i40e_add_vsi(vsi);
5871 if (ret) {
5872 dev_info(&pf->pdev->dev,
5873 "rebuild of vsi_idx %d failed: %d\n",
5874 v, ret);
5875 goto end_reconstitute;
5876 }
5877 i40e_vsi_reset_stats(vsi);
5878 }
5879 }
5880
5881 /* create any VEBs attached to this VEB - RECURSION */
5882 for (veb_idx = 0; veb_idx < I40E_MAX_VEB; veb_idx++) {
5883 if (pf->veb[veb_idx] && pf->veb[veb_idx]->veb_idx == veb->idx) {
5884 pf->veb[veb_idx]->uplink_seid = veb->seid;
5885 ret = i40e_reconstitute_veb(pf->veb[veb_idx]);
5886 if (ret)
5887 break;
5888 }
5889 }
5890
5891end_reconstitute:
5892 return ret;
5893}
5894
5895/**
5896 * i40e_get_capabilities - get info about the HW
5897 * @pf: the PF struct
5898 **/
5899static int i40e_get_capabilities(struct i40e_pf *pf)
5900{
5901 struct i40e_aqc_list_capabilities_element_resp *cap_buf;
5902 u16 data_size;
5903 int buf_len;
5904 int err;
5905
5906 buf_len = 40 * sizeof(struct i40e_aqc_list_capabilities_element_resp);
5907 do {
5908 cap_buf = kzalloc(buf_len, GFP_KERNEL);
5909 if (!cap_buf)
5910 return -ENOMEM;
5911
5912 /* this loads the data into the hw struct for us */
5913 err = i40e_aq_discover_capabilities(&pf->hw, cap_buf, buf_len,
5914 &data_size,
5915 i40e_aqc_opc_list_func_capabilities,
5916 NULL);
5917 /* data loaded, buffer no longer needed */
5918 kfree(cap_buf);
5919
5920 if (pf->hw.aq.asq_last_status == I40E_AQ_RC_ENOMEM) {
5921 /* retry with a larger buffer */
5922 buf_len = data_size;
5923 } else if (pf->hw.aq.asq_last_status != I40E_AQ_RC_OK) {
5924 dev_info(&pf->pdev->dev,
5925 "capability discovery failed: aq=%d\n",
5926 pf->hw.aq.asq_last_status);
5927 return -ENODEV;
5928 }
5929 } while (err);
5930
Anjali Singhai Jainac71b7b2014-02-06 05:51:08 +00005931 if (((pf->hw.aq.fw_maj_ver == 2) && (pf->hw.aq.fw_min_ver < 22)) ||
5932 (pf->hw.aq.fw_maj_ver < 2)) {
5933 pf->hw.func_caps.num_msix_vectors++;
5934 pf->hw.func_caps.num_msix_vectors_vf++;
5935 }
5936
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005937 if (pf->hw.debug_mask & I40E_DEBUG_USER)
5938 dev_info(&pf->pdev->dev,
5939 "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",
5940 pf->hw.pf_id, pf->hw.func_caps.num_vfs,
5941 pf->hw.func_caps.num_msix_vectors,
5942 pf->hw.func_caps.num_msix_vectors_vf,
5943 pf->hw.func_caps.fd_filters_guaranteed,
5944 pf->hw.func_caps.fd_filters_best_effort,
5945 pf->hw.func_caps.num_tx_qp,
5946 pf->hw.func_caps.num_vsis);
5947
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00005948#define DEF_NUM_VSI (1 + (pf->hw.func_caps.fcoe ? 1 : 0) \
5949 + pf->hw.func_caps.num_vfs)
5950 if (pf->hw.revision_id == 0 && (DEF_NUM_VSI > pf->hw.func_caps.num_vsis)) {
5951 dev_info(&pf->pdev->dev,
5952 "got num_vsis %d, setting num_vsis to %d\n",
5953 pf->hw.func_caps.num_vsis, DEF_NUM_VSI);
5954 pf->hw.func_caps.num_vsis = DEF_NUM_VSI;
5955 }
5956
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005957 return 0;
5958}
5959
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08005960static int i40e_vsi_clear(struct i40e_vsi *vsi);
5961
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005962/**
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08005963 * i40e_fdir_sb_setup - initialize the Flow Director resources for Sideband
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005964 * @pf: board private structure
5965 **/
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08005966static void i40e_fdir_sb_setup(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005967{
5968 struct i40e_vsi *vsi;
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00005969 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005970
Jesse Brandeburg407e0632014-06-03 23:50:12 +00005971 /* quick workaround for an NVM issue that leaves a critical register
5972 * uninitialized
5973 */
5974 if (!rd32(&pf->hw, I40E_GLQF_HKEY(0))) {
5975 static const u32 hkey[] = {
5976 0xe640d33f, 0xcdfe98ab, 0x73fa7161, 0x0d7a7d36,
5977 0xeacb7d61, 0xaa4f05b6, 0x9c5c89ed, 0xfc425ddb,
5978 0xa4654832, 0xfc7461d4, 0x8f827619, 0xf5c63c21,
5979 0x95b3a76d};
5980
5981 for (i = 0; i <= I40E_GLQF_HKEY_MAX_INDEX; i++)
5982 wr32(&pf->hw, I40E_GLQF_HKEY(i), hkey[i]);
5983 }
5984
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08005985 if (!(pf->flags & I40E_FLAG_FD_SB_ENABLED))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005986 return;
5987
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08005988 /* find existing VSI and see if it needs configuring */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005989 vsi = NULL;
Mitch Williams505682c2014-05-20 08:01:37 +00005990 for (i = 0; i < pf->num_alloc_vsi; i++) {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08005991 if (pf->vsi[i] && pf->vsi[i]->type == I40E_VSI_FDIR) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005992 vsi = pf->vsi[i];
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08005993 break;
5994 }
5995 }
5996
5997 /* create a new VSI if none exists */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005998 if (!vsi) {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08005999 vsi = i40e_vsi_setup(pf, I40E_VSI_FDIR,
6000 pf->vsi[pf->lan_vsi]->seid, 0);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006001 if (!vsi) {
6002 dev_info(&pf->pdev->dev, "Couldn't create FDir VSI\n");
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00006003 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
6004 return;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006005 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006006 }
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00006007
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006008 i40e_vsi_setup_irqhandler(vsi, i40e_fdir_clean_ring);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006009}
6010
6011/**
6012 * i40e_fdir_teardown - release the Flow Director resources
6013 * @pf: board private structure
6014 **/
6015static void i40e_fdir_teardown(struct i40e_pf *pf)
6016{
6017 int i;
6018
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00006019 i40e_fdir_filter_exit(pf);
Mitch Williams505682c2014-05-20 08:01:37 +00006020 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006021 if (pf->vsi[i] && pf->vsi[i]->type == I40E_VSI_FDIR) {
6022 i40e_vsi_release(pf->vsi[i]);
6023 break;
6024 }
6025 }
6026}
6027
6028/**
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006029 * i40e_prep_for_reset - prep for the core to reset
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006030 * @pf: board private structure
6031 *
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006032 * Close up the VFs and other things in prep for pf Reset.
6033 **/
Shannon Nelson23cfbe02014-06-04 01:23:14 +00006034static void i40e_prep_for_reset(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006035{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006036 struct i40e_hw *hw = &pf->hw;
Shannon Nelson60442de2014-04-23 04:50:13 +00006037 i40e_status ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006038 u32 v;
6039
6040 clear_bit(__I40E_RESET_INTR_RECEIVED, &pf->state);
6041 if (test_and_set_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state))
Shannon Nelson23cfbe02014-06-04 01:23:14 +00006042 return;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006043
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00006044 dev_dbg(&pf->pdev->dev, "Tearing down internal switch for reset\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006045
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006046 /* quiesce the VSIs and their queues that are not already DOWN */
6047 i40e_pf_quiesce_all_vsi(pf);
6048
Mitch Williams505682c2014-05-20 08:01:37 +00006049 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006050 if (pf->vsi[v])
6051 pf->vsi[v]->seid = 0;
6052 }
6053
6054 i40e_shutdown_adminq(&pf->hw);
6055
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006056 /* call shutdown HMC */
Shannon Nelson60442de2014-04-23 04:50:13 +00006057 if (hw->hmc.hmc_obj) {
6058 ret = i40e_shutdown_lan_hmc(hw);
Shannon Nelson23cfbe02014-06-04 01:23:14 +00006059 if (ret)
Shannon Nelson60442de2014-04-23 04:50:13 +00006060 dev_warn(&pf->pdev->dev,
6061 "shutdown_lan_hmc failed: %d\n", ret);
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006062 }
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006063}
6064
6065/**
Jesse Brandeburg44033fa2014-04-23 04:50:15 +00006066 * i40e_send_version - update firmware with driver version
6067 * @pf: PF struct
6068 */
6069static void i40e_send_version(struct i40e_pf *pf)
6070{
6071 struct i40e_driver_version dv;
6072
6073 dv.major_version = DRV_VERSION_MAJOR;
6074 dv.minor_version = DRV_VERSION_MINOR;
6075 dv.build_version = DRV_VERSION_BUILD;
6076 dv.subbuild_version = 0;
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00006077 strlcpy(dv.driver_string, DRV_VERSION, sizeof(dv.driver_string));
Jesse Brandeburg44033fa2014-04-23 04:50:15 +00006078 i40e_aq_send_driver_version(&pf->hw, &dv, NULL);
6079}
6080
6081/**
Jesse Brandeburg4dda12e2013-12-18 13:46:01 +00006082 * i40e_reset_and_rebuild - reset and rebuild using a saved config
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006083 * @pf: board private structure
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006084 * @reinit: if the Main VSI needs to re-initialized.
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006085 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006086static void i40e_reset_and_rebuild(struct i40e_pf *pf, bool reinit)
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006087{
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006088 struct i40e_hw *hw = &pf->hw;
Anjali Singhai Jaincafa2ee2014-09-13 07:40:45 +00006089 u8 set_fc_aq_fail = 0;
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006090 i40e_status ret;
6091 u32 v;
6092
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006093 /* Now we wait for GRST to settle out.
6094 * We don't have to delete the VEBs or VSIs from the hw switch
6095 * because the reset will make them disappear.
6096 */
6097 ret = i40e_pf_reset(hw);
Akeem G Abodunrinb5565402014-04-09 05:59:04 +00006098 if (ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006099 dev_info(&pf->pdev->dev, "PF reset failed, %d\n", ret);
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00006100 set_bit(__I40E_RESET_FAILED, &pf->state);
6101 goto clear_recovery;
Akeem G Abodunrinb5565402014-04-09 05:59:04 +00006102 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006103 pf->pfr_count++;
6104
6105 if (test_bit(__I40E_DOWN, &pf->state))
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00006106 goto clear_recovery;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00006107 dev_dbg(&pf->pdev->dev, "Rebuilding internal switch\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006108
6109 /* rebuild the basics for the AdminQ, HMC, and initial HW switch */
6110 ret = i40e_init_adminq(&pf->hw);
6111 if (ret) {
6112 dev_info(&pf->pdev->dev, "Rebuild AdminQ failed, %d\n", ret);
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00006113 goto clear_recovery;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006114 }
6115
Shannon Nelson4eb3f762014-03-06 08:59:58 +00006116 /* re-verify the eeprom if we just had an EMP reset */
6117 if (test_bit(__I40E_EMP_RESET_REQUESTED, &pf->state)) {
6118 clear_bit(__I40E_EMP_RESET_REQUESTED, &pf->state);
6119 i40e_verify_eeprom(pf);
6120 }
6121
Shannon Nelsone78ac4bf2014-05-10 04:49:09 +00006122 i40e_clear_pxe_mode(hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006123 ret = i40e_get_capabilities(pf);
6124 if (ret) {
6125 dev_info(&pf->pdev->dev, "i40e_get_capabilities failed, %d\n",
6126 ret);
6127 goto end_core_reset;
6128 }
6129
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006130 ret = i40e_init_lan_hmc(hw, hw->func_caps.num_tx_qp,
6131 hw->func_caps.num_rx_qp,
6132 pf->fcoe_hmc_cntx_num, pf->fcoe_hmc_filt_num);
6133 if (ret) {
6134 dev_info(&pf->pdev->dev, "init_lan_hmc failed: %d\n", ret);
6135 goto end_core_reset;
6136 }
6137 ret = i40e_configure_lan_hmc(hw, I40E_HMC_MODEL_DIRECT_ONLY);
6138 if (ret) {
6139 dev_info(&pf->pdev->dev, "configure_lan_hmc failed: %d\n", ret);
6140 goto end_core_reset;
6141 }
6142
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08006143#ifdef CONFIG_I40E_DCB
6144 ret = i40e_init_pf_dcb(pf);
6145 if (ret) {
6146 dev_info(&pf->pdev->dev, "init_pf_dcb failed: %d\n", ret);
6147 goto end_core_reset;
6148 }
6149#endif /* CONFIG_I40E_DCB */
Vasu Dev38e00432014-08-01 13:27:03 -07006150#ifdef I40E_FCOE
6151 ret = i40e_init_pf_fcoe(pf);
6152 if (ret)
6153 dev_info(&pf->pdev->dev, "init_pf_fcoe failed: %d\n", ret);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08006154
Vasu Dev38e00432014-08-01 13:27:03 -07006155#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006156 /* do basic switch setup */
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006157 ret = i40e_setup_pf_switch(pf, reinit);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006158 if (ret)
6159 goto end_core_reset;
6160
Jesse Brandeburg7e2453f2014-09-13 07:40:41 +00006161 /* driver is only interested in link up/down and module qualification
6162 * reports from firmware
6163 */
6164 ret = i40e_aq_set_phy_int_mask(&pf->hw,
6165 I40E_AQ_EVENT_LINK_UPDOWN |
6166 I40E_AQ_EVENT_MODULE_QUAL_FAIL, NULL);
6167 if (ret)
6168 dev_info(&pf->pdev->dev, "set phy mask fail, aq_err %d\n", ret);
6169
Anjali Singhai Jaincafa2ee2014-09-13 07:40:45 +00006170 /* make sure our flow control settings are restored */
6171 ret = i40e_set_fc(&pf->hw, &set_fc_aq_fail, true);
6172 if (ret)
6173 dev_info(&pf->pdev->dev, "set fc fail, aq_err %d\n", ret);
6174
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006175 /* Rebuild the VSIs and VEBs that existed before reset.
6176 * They are still in our local switch element arrays, so only
6177 * need to rebuild the switch model in the HW.
6178 *
6179 * If there were VEBs but the reconstitution failed, we'll try
6180 * try to recover minimal use by getting the basic PF VSI working.
6181 */
6182 if (pf->vsi[pf->lan_vsi]->uplink_seid != pf->mac_seid) {
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00006183 dev_dbg(&pf->pdev->dev, "attempting to rebuild switch\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006184 /* find the one VEB connected to the MAC, and find orphans */
6185 for (v = 0; v < I40E_MAX_VEB; v++) {
6186 if (!pf->veb[v])
6187 continue;
6188
6189 if (pf->veb[v]->uplink_seid == pf->mac_seid ||
6190 pf->veb[v]->uplink_seid == 0) {
6191 ret = i40e_reconstitute_veb(pf->veb[v]);
6192
6193 if (!ret)
6194 continue;
6195
6196 /* If Main VEB failed, we're in deep doodoo,
6197 * so give up rebuilding the switch and set up
6198 * for minimal rebuild of PF VSI.
6199 * If orphan failed, we'll report the error
6200 * but try to keep going.
6201 */
6202 if (pf->veb[v]->uplink_seid == pf->mac_seid) {
6203 dev_info(&pf->pdev->dev,
6204 "rebuild of switch failed: %d, will try to set up simple PF connection\n",
6205 ret);
6206 pf->vsi[pf->lan_vsi]->uplink_seid
6207 = pf->mac_seid;
6208 break;
6209 } else if (pf->veb[v]->uplink_seid == 0) {
6210 dev_info(&pf->pdev->dev,
6211 "rebuild of orphan VEB failed: %d\n",
6212 ret);
6213 }
6214 }
6215 }
6216 }
6217
6218 if (pf->vsi[pf->lan_vsi]->uplink_seid == pf->mac_seid) {
Shannon Nelsoncde4cbc2014-06-04 01:23:17 +00006219 dev_dbg(&pf->pdev->dev, "attempting to rebuild PF VSI\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006220 /* no VEB, so rebuild only the Main VSI */
6221 ret = i40e_add_vsi(pf->vsi[pf->lan_vsi]);
6222 if (ret) {
6223 dev_info(&pf->pdev->dev,
6224 "rebuild of Main VSI failed: %d\n", ret);
6225 goto end_core_reset;
6226 }
6227 }
6228
Anjali Singhai Jaincafa2ee2014-09-13 07:40:45 +00006229 msleep(75);
6230 ret = i40e_aq_set_link_restart_an(&pf->hw, true, NULL);
6231 if (ret) {
6232 dev_info(&pf->pdev->dev, "link restart failed, aq_err=%d\n",
6233 pf->hw.aq.asq_last_status);
6234 }
6235
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006236 /* reinit the misc interrupt */
6237 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
6238 ret = i40e_setup_misc_vector(pf);
6239
6240 /* restart the VSIs that were rebuilt and running before the reset */
6241 i40e_pf_unquiesce_all_vsi(pf);
6242
Mitch Williams69f64b22014-02-13 03:48:46 -08006243 if (pf->num_alloc_vfs) {
6244 for (v = 0; v < pf->num_alloc_vfs; v++)
6245 i40e_reset_vf(&pf->vf[v], true);
6246 }
6247
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006248 /* tell the firmware that we're starting */
Jesse Brandeburg44033fa2014-04-23 04:50:15 +00006249 i40e_send_version(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006250
6251end_core_reset:
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00006252 clear_bit(__I40E_RESET_FAILED, &pf->state);
6253clear_recovery:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006254 clear_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state);
6255}
6256
6257/**
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006258 * i40e_handle_reset_warning - prep for the pf to reset, reset and rebuild
6259 * @pf: board private structure
6260 *
6261 * Close up the VFs and other things in prep for a Core Reset,
6262 * then get ready to rebuild the world.
6263 **/
6264static void i40e_handle_reset_warning(struct i40e_pf *pf)
6265{
Shannon Nelson23cfbe02014-06-04 01:23:14 +00006266 i40e_prep_for_reset(pf);
6267 i40e_reset_and_rebuild(pf, false);
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006268}
6269
6270/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006271 * i40e_handle_mdd_event
6272 * @pf: pointer to the pf structure
6273 *
6274 * Called from the MDD irq handler to identify possibly malicious vfs
6275 **/
6276static void i40e_handle_mdd_event(struct i40e_pf *pf)
6277{
6278 struct i40e_hw *hw = &pf->hw;
6279 bool mdd_detected = false;
Neerav Parikhdf430b12014-06-04 01:23:15 +00006280 bool pf_mdd_detected = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006281 struct i40e_vf *vf;
6282 u32 reg;
6283 int i;
6284
6285 if (!test_bit(__I40E_MDD_EVENT_PENDING, &pf->state))
6286 return;
6287
6288 /* find what triggered the MDD event */
6289 reg = rd32(hw, I40E_GL_MDET_TX);
6290 if (reg & I40E_GL_MDET_TX_VALID_MASK) {
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00006291 u8 pf_num = (reg & I40E_GL_MDET_TX_PF_NUM_MASK) >>
6292 I40E_GL_MDET_TX_PF_NUM_SHIFT;
Mitch Williams2089ad02014-10-17 03:14:53 +00006293 u16 vf_num = (reg & I40E_GL_MDET_TX_VF_NUM_MASK) >>
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00006294 I40E_GL_MDET_TX_VF_NUM_SHIFT;
Dan Carpenter013f6572014-10-22 20:06:29 -07006295 u8 event = (reg & I40E_GL_MDET_TX_EVENT_MASK) >>
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00006296 I40E_GL_MDET_TX_EVENT_SHIFT;
Mitch Williams2089ad02014-10-17 03:14:53 +00006297 u16 queue = ((reg & I40E_GL_MDET_TX_QUEUE_MASK) >>
6298 I40E_GL_MDET_TX_QUEUE_SHIFT) -
6299 pf->hw.func_caps.base_queue;
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00006300 if (netif_msg_tx_err(pf))
6301 dev_info(&pf->pdev->dev, "Malicious Driver Detection event 0x%02x on TX queue %d pf number 0x%02x vf number 0x%02x\n",
6302 event, queue, pf_num, vf_num);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006303 wr32(hw, I40E_GL_MDET_TX, 0xffffffff);
6304 mdd_detected = true;
6305 }
6306 reg = rd32(hw, I40E_GL_MDET_RX);
6307 if (reg & I40E_GL_MDET_RX_VALID_MASK) {
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00006308 u8 func = (reg & I40E_GL_MDET_RX_FUNCTION_MASK) >>
6309 I40E_GL_MDET_RX_FUNCTION_SHIFT;
Dan Carpenter013f6572014-10-22 20:06:29 -07006310 u8 event = (reg & I40E_GL_MDET_RX_EVENT_MASK) >>
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00006311 I40E_GL_MDET_RX_EVENT_SHIFT;
Mitch Williams2089ad02014-10-17 03:14:53 +00006312 u16 queue = ((reg & I40E_GL_MDET_RX_QUEUE_MASK) >>
6313 I40E_GL_MDET_RX_QUEUE_SHIFT) -
6314 pf->hw.func_caps.base_queue;
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00006315 if (netif_msg_rx_err(pf))
6316 dev_info(&pf->pdev->dev, "Malicious Driver Detection event 0x%02x on RX queue %d of function 0x%02x\n",
6317 event, queue, func);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006318 wr32(hw, I40E_GL_MDET_RX, 0xffffffff);
6319 mdd_detected = true;
6320 }
6321
Neerav Parikhdf430b12014-06-04 01:23:15 +00006322 if (mdd_detected) {
6323 reg = rd32(hw, I40E_PF_MDET_TX);
6324 if (reg & I40E_PF_MDET_TX_VALID_MASK) {
6325 wr32(hw, I40E_PF_MDET_TX, 0xFFFF);
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00006326 dev_info(&pf->pdev->dev, "TX driver issue detected, PF reset issued\n");
Neerav Parikhdf430b12014-06-04 01:23:15 +00006327 pf_mdd_detected = true;
6328 }
6329 reg = rd32(hw, I40E_PF_MDET_RX);
6330 if (reg & I40E_PF_MDET_RX_VALID_MASK) {
6331 wr32(hw, I40E_PF_MDET_RX, 0xFFFF);
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00006332 dev_info(&pf->pdev->dev, "RX driver issue detected, PF reset issued\n");
Neerav Parikhdf430b12014-06-04 01:23:15 +00006333 pf_mdd_detected = true;
6334 }
6335 /* Queue belongs to the PF, initiate a reset */
6336 if (pf_mdd_detected) {
6337 set_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
6338 i40e_service_event_schedule(pf);
6339 }
6340 }
6341
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006342 /* see if one of the VFs needs its hand slapped */
6343 for (i = 0; i < pf->num_alloc_vfs && mdd_detected; i++) {
6344 vf = &(pf->vf[i]);
6345 reg = rd32(hw, I40E_VP_MDET_TX(i));
6346 if (reg & I40E_VP_MDET_TX_VALID_MASK) {
6347 wr32(hw, I40E_VP_MDET_TX(i), 0xFFFF);
6348 vf->num_mdd_events++;
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00006349 dev_info(&pf->pdev->dev, "TX driver issue detected on VF %d\n",
6350 i);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006351 }
6352
6353 reg = rd32(hw, I40E_VP_MDET_RX(i));
6354 if (reg & I40E_VP_MDET_RX_VALID_MASK) {
6355 wr32(hw, I40E_VP_MDET_RX(i), 0xFFFF);
6356 vf->num_mdd_events++;
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00006357 dev_info(&pf->pdev->dev, "RX driver issue detected on VF %d\n",
6358 i);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006359 }
6360
6361 if (vf->num_mdd_events > I40E_DEFAULT_NUM_MDD_EVENTS_ALLOWED) {
6362 dev_info(&pf->pdev->dev,
6363 "Too many MDD events on VF %d, disabled\n", i);
6364 dev_info(&pf->pdev->dev,
6365 "Use PF Control I/F to re-enable the VF\n");
6366 set_bit(I40E_VF_STAT_DISABLED, &vf->vf_states);
6367 }
6368 }
6369
6370 /* re-enable mdd interrupt cause */
6371 clear_bit(__I40E_MDD_EVENT_PENDING, &pf->state);
6372 reg = rd32(hw, I40E_PFINT_ICR0_ENA);
6373 reg |= I40E_PFINT_ICR0_ENA_MAL_DETECT_MASK;
6374 wr32(hw, I40E_PFINT_ICR0_ENA, reg);
6375 i40e_flush(hw);
6376}
6377
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00006378#ifdef CONFIG_I40E_VXLAN
6379/**
6380 * i40e_sync_vxlan_filters_subtask - Sync the VSI filter list with HW
6381 * @pf: board private structure
6382 **/
6383static void i40e_sync_vxlan_filters_subtask(struct i40e_pf *pf)
6384{
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00006385 struct i40e_hw *hw = &pf->hw;
6386 i40e_status ret;
6387 u8 filter_index;
6388 __be16 port;
6389 int i;
6390
6391 if (!(pf->flags & I40E_FLAG_VXLAN_FILTER_SYNC))
6392 return;
6393
6394 pf->flags &= ~I40E_FLAG_VXLAN_FILTER_SYNC;
6395
6396 for (i = 0; i < I40E_MAX_PF_UDP_OFFLOAD_PORTS; i++) {
6397 if (pf->pending_vxlan_bitmap & (1 << i)) {
6398 pf->pending_vxlan_bitmap &= ~(1 << i);
6399 port = pf->vxlan_ports[i];
6400 ret = port ?
6401 i40e_aq_add_udp_tunnel(hw, ntohs(port),
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00006402 I40E_AQC_TUNNEL_TYPE_VXLAN,
6403 &filter_index, NULL)
6404 : i40e_aq_del_udp_tunnel(hw, i, NULL);
6405
6406 if (ret) {
6407 dev_info(&pf->pdev->dev, "Failed to execute AQ command for %s port %d with index %d\n",
6408 port ? "adding" : "deleting",
6409 ntohs(port), port ? i : i);
6410
6411 pf->vxlan_ports[i] = 0;
6412 } else {
6413 dev_info(&pf->pdev->dev, "%s port %d with AQ command with index %d\n",
6414 port ? "Added" : "Deleted",
6415 ntohs(port), port ? i : filter_index);
6416 }
6417 }
6418 }
6419}
6420
6421#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006422/**
6423 * i40e_service_task - Run the driver's async subtasks
6424 * @work: pointer to work_struct containing our data
6425 **/
6426static void i40e_service_task(struct work_struct *work)
6427{
6428 struct i40e_pf *pf = container_of(work,
6429 struct i40e_pf,
6430 service_task);
6431 unsigned long start_time = jiffies;
6432
Shannon Nelsone57a2fe2014-06-03 23:50:19 +00006433 /* don't bother with service tasks if a reset is in progress */
6434 if (test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state)) {
6435 i40e_service_event_complete(pf);
6436 return;
6437 }
6438
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006439 i40e_reset_subtask(pf);
6440 i40e_handle_mdd_event(pf);
6441 i40e_vc_process_vflr_event(pf);
6442 i40e_watchdog_subtask(pf);
6443 i40e_fdir_reinit_subtask(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006444 i40e_sync_filters_subtask(pf);
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00006445#ifdef CONFIG_I40E_VXLAN
6446 i40e_sync_vxlan_filters_subtask(pf);
6447#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006448 i40e_clean_adminq_subtask(pf);
6449
6450 i40e_service_event_complete(pf);
6451
6452 /* If the tasks have taken longer than one timer cycle or there
6453 * is more work to be done, reschedule the service task now
6454 * rather than wait for the timer to tick again.
6455 */
6456 if (time_after(jiffies, (start_time + pf->service_timer_period)) ||
6457 test_bit(__I40E_ADMINQ_EVENT_PENDING, &pf->state) ||
6458 test_bit(__I40E_MDD_EVENT_PENDING, &pf->state) ||
6459 test_bit(__I40E_VFLR_EVENT_PENDING, &pf->state))
6460 i40e_service_event_schedule(pf);
6461}
6462
6463/**
6464 * i40e_service_timer - timer callback
6465 * @data: pointer to PF struct
6466 **/
6467static void i40e_service_timer(unsigned long data)
6468{
6469 struct i40e_pf *pf = (struct i40e_pf *)data;
6470
6471 mod_timer(&pf->service_timer,
6472 round_jiffies(jiffies + pf->service_timer_period));
6473 i40e_service_event_schedule(pf);
6474}
6475
6476/**
6477 * i40e_set_num_rings_in_vsi - Determine number of rings in the VSI
6478 * @vsi: the VSI being configured
6479 **/
6480static int i40e_set_num_rings_in_vsi(struct i40e_vsi *vsi)
6481{
6482 struct i40e_pf *pf = vsi->back;
6483
6484 switch (vsi->type) {
6485 case I40E_VSI_MAIN:
6486 vsi->alloc_queue_pairs = pf->num_lan_qps;
6487 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
6488 I40E_REQ_DESCRIPTOR_MULTIPLE);
6489 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
6490 vsi->num_q_vectors = pf->num_lan_msix;
6491 else
6492 vsi->num_q_vectors = 1;
6493
6494 break;
6495
6496 case I40E_VSI_FDIR:
6497 vsi->alloc_queue_pairs = 1;
6498 vsi->num_desc = ALIGN(I40E_FDIR_RING_COUNT,
6499 I40E_REQ_DESCRIPTOR_MULTIPLE);
6500 vsi->num_q_vectors = 1;
6501 break;
6502
6503 case I40E_VSI_VMDQ2:
6504 vsi->alloc_queue_pairs = pf->num_vmdq_qps;
6505 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
6506 I40E_REQ_DESCRIPTOR_MULTIPLE);
6507 vsi->num_q_vectors = pf->num_vmdq_msix;
6508 break;
6509
6510 case I40E_VSI_SRIOV:
6511 vsi->alloc_queue_pairs = pf->num_vf_qps;
6512 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
6513 I40E_REQ_DESCRIPTOR_MULTIPLE);
6514 break;
6515
Vasu Dev38e00432014-08-01 13:27:03 -07006516#ifdef I40E_FCOE
6517 case I40E_VSI_FCOE:
6518 vsi->alloc_queue_pairs = pf->num_fcoe_qps;
6519 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
6520 I40E_REQ_DESCRIPTOR_MULTIPLE);
6521 vsi->num_q_vectors = pf->num_fcoe_msix;
6522 break;
6523
6524#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006525 default:
6526 WARN_ON(1);
6527 return -ENODATA;
6528 }
6529
6530 return 0;
6531}
6532
6533/**
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006534 * i40e_vsi_alloc_arrays - Allocate queue and vector pointer arrays for the vsi
6535 * @type: VSI pointer
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006536 * @alloc_qvectors: a bool to specify if q_vectors need to be allocated.
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006537 *
6538 * On error: returns error code (negative)
6539 * On success: returns 0
6540 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006541static int i40e_vsi_alloc_arrays(struct i40e_vsi *vsi, bool alloc_qvectors)
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006542{
6543 int size;
6544 int ret = 0;
6545
Shannon Nelsonac6c5e32013-11-20 10:02:57 +00006546 /* allocate memory for both Tx and Rx ring pointers */
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006547 size = sizeof(struct i40e_ring *) * vsi->alloc_queue_pairs * 2;
6548 vsi->tx_rings = kzalloc(size, GFP_KERNEL);
6549 if (!vsi->tx_rings)
6550 return -ENOMEM;
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006551 vsi->rx_rings = &vsi->tx_rings[vsi->alloc_queue_pairs];
6552
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006553 if (alloc_qvectors) {
6554 /* allocate memory for q_vector pointers */
Julia Lawallf57e4fb2014-07-30 03:11:09 +00006555 size = sizeof(struct i40e_q_vector *) * vsi->num_q_vectors;
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006556 vsi->q_vectors = kzalloc(size, GFP_KERNEL);
6557 if (!vsi->q_vectors) {
6558 ret = -ENOMEM;
6559 goto err_vectors;
6560 }
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006561 }
6562 return ret;
6563
6564err_vectors:
6565 kfree(vsi->tx_rings);
6566 return ret;
6567}
6568
6569/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006570 * i40e_vsi_mem_alloc - Allocates the next available struct vsi in the PF
6571 * @pf: board private structure
6572 * @type: type of VSI
6573 *
6574 * On error: returns error code (negative)
6575 * On success: returns vsi index in PF (positive)
6576 **/
6577static int i40e_vsi_mem_alloc(struct i40e_pf *pf, enum i40e_vsi_type type)
6578{
6579 int ret = -ENODEV;
6580 struct i40e_vsi *vsi;
6581 int vsi_idx;
6582 int i;
6583
6584 /* Need to protect the allocation of the VSIs at the PF level */
6585 mutex_lock(&pf->switch_mutex);
6586
6587 /* VSI list may be fragmented if VSI creation/destruction has
6588 * been happening. We can afford to do a quick scan to look
6589 * for any free VSIs in the list.
6590 *
6591 * find next empty vsi slot, looping back around if necessary
6592 */
6593 i = pf->next_vsi;
Mitch Williams505682c2014-05-20 08:01:37 +00006594 while (i < pf->num_alloc_vsi && pf->vsi[i])
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006595 i++;
Mitch Williams505682c2014-05-20 08:01:37 +00006596 if (i >= pf->num_alloc_vsi) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006597 i = 0;
6598 while (i < pf->next_vsi && pf->vsi[i])
6599 i++;
6600 }
6601
Mitch Williams505682c2014-05-20 08:01:37 +00006602 if (i < pf->num_alloc_vsi && !pf->vsi[i]) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006603 vsi_idx = i; /* Found one! */
6604 } else {
6605 ret = -ENODEV;
Alexander Duyck493fb302013-09-28 07:01:44 +00006606 goto unlock_pf; /* out of VSI slots! */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006607 }
6608 pf->next_vsi = ++i;
6609
6610 vsi = kzalloc(sizeof(*vsi), GFP_KERNEL);
6611 if (!vsi) {
6612 ret = -ENOMEM;
Alexander Duyck493fb302013-09-28 07:01:44 +00006613 goto unlock_pf;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006614 }
6615 vsi->type = type;
6616 vsi->back = pf;
6617 set_bit(__I40E_DOWN, &vsi->state);
6618 vsi->flags = 0;
6619 vsi->idx = vsi_idx;
6620 vsi->rx_itr_setting = pf->rx_itr_default;
6621 vsi->tx_itr_setting = pf->tx_itr_default;
6622 vsi->netdev_registered = false;
6623 vsi->work_limit = I40E_DEFAULT_IRQ_WORK;
6624 INIT_LIST_HEAD(&vsi->mac_filter_list);
Shannon Nelson63741842014-04-23 04:50:16 +00006625 vsi->irqs_ready = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006626
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006627 ret = i40e_set_num_rings_in_vsi(vsi);
6628 if (ret)
6629 goto err_rings;
6630
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006631 ret = i40e_vsi_alloc_arrays(vsi, true);
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006632 if (ret)
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006633 goto err_rings;
Alexander Duyck493fb302013-09-28 07:01:44 +00006634
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006635 /* Setup default MSIX irq handler for VSI */
6636 i40e_vsi_setup_irqhandler(vsi, i40e_msix_clean_rings);
6637
6638 pf->vsi[vsi_idx] = vsi;
6639 ret = vsi_idx;
Alexander Duyck493fb302013-09-28 07:01:44 +00006640 goto unlock_pf;
6641
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006642err_rings:
Alexander Duyck493fb302013-09-28 07:01:44 +00006643 pf->next_vsi = i - 1;
6644 kfree(vsi);
6645unlock_pf:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006646 mutex_unlock(&pf->switch_mutex);
6647 return ret;
6648}
6649
6650/**
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006651 * i40e_vsi_free_arrays - Free queue and vector pointer arrays for the VSI
6652 * @type: VSI pointer
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006653 * @free_qvectors: a bool to specify if q_vectors need to be freed.
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006654 *
6655 * On error: returns error code (negative)
6656 * On success: returns 0
6657 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006658static void i40e_vsi_free_arrays(struct i40e_vsi *vsi, bool free_qvectors)
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006659{
6660 /* free the ring and vector containers */
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006661 if (free_qvectors) {
6662 kfree(vsi->q_vectors);
6663 vsi->q_vectors = NULL;
6664 }
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006665 kfree(vsi->tx_rings);
6666 vsi->tx_rings = NULL;
6667 vsi->rx_rings = NULL;
6668}
6669
6670/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006671 * i40e_vsi_clear - Deallocate the VSI provided
6672 * @vsi: the VSI being un-configured
6673 **/
6674static int i40e_vsi_clear(struct i40e_vsi *vsi)
6675{
6676 struct i40e_pf *pf;
6677
6678 if (!vsi)
6679 return 0;
6680
6681 if (!vsi->back)
6682 goto free_vsi;
6683 pf = vsi->back;
6684
6685 mutex_lock(&pf->switch_mutex);
6686 if (!pf->vsi[vsi->idx]) {
6687 dev_err(&pf->pdev->dev, "pf->vsi[%d] is NULL, just free vsi[%d](%p,type %d)\n",
6688 vsi->idx, vsi->idx, vsi, vsi->type);
6689 goto unlock_vsi;
6690 }
6691
6692 if (pf->vsi[vsi->idx] != vsi) {
6693 dev_err(&pf->pdev->dev,
6694 "pf->vsi[%d](%p, type %d) != vsi[%d](%p,type %d): no free!\n",
6695 pf->vsi[vsi->idx]->idx,
6696 pf->vsi[vsi->idx],
6697 pf->vsi[vsi->idx]->type,
6698 vsi->idx, vsi, vsi->type);
6699 goto unlock_vsi;
6700 }
6701
6702 /* updates the pf for this cleared vsi */
6703 i40e_put_lump(pf->qp_pile, vsi->base_queue, vsi->idx);
6704 i40e_put_lump(pf->irq_pile, vsi->base_vector, vsi->idx);
6705
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006706 i40e_vsi_free_arrays(vsi, true);
Alexander Duyck493fb302013-09-28 07:01:44 +00006707
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006708 pf->vsi[vsi->idx] = NULL;
6709 if (vsi->idx < pf->next_vsi)
6710 pf->next_vsi = vsi->idx;
6711
6712unlock_vsi:
6713 mutex_unlock(&pf->switch_mutex);
6714free_vsi:
6715 kfree(vsi);
6716
6717 return 0;
6718}
6719
6720/**
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006721 * i40e_vsi_clear_rings - Deallocates the Rx and Tx rings for the provided VSI
6722 * @vsi: the VSI being cleaned
6723 **/
Shannon Nelsonbe1d5ee2013-11-28 06:39:23 +00006724static void i40e_vsi_clear_rings(struct i40e_vsi *vsi)
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006725{
6726 int i;
6727
Greg Rose8e9dca52013-12-18 13:45:53 +00006728 if (vsi->tx_rings && vsi->tx_rings[0]) {
Neerav Parikhd7397642013-11-28 06:39:37 +00006729 for (i = 0; i < vsi->alloc_queue_pairs; i++) {
Mitch Williams00403f02013-09-28 07:13:13 +00006730 kfree_rcu(vsi->tx_rings[i], rcu);
6731 vsi->tx_rings[i] = NULL;
6732 vsi->rx_rings[i] = NULL;
6733 }
Shannon Nelsonbe1d5ee2013-11-28 06:39:23 +00006734 }
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006735}
6736
6737/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006738 * i40e_alloc_rings - Allocates the Rx and Tx rings for the provided VSI
6739 * @vsi: the VSI being configured
6740 **/
6741static int i40e_alloc_rings(struct i40e_vsi *vsi)
6742{
Akeem G Abodunrine7046ee2014-04-09 05:58:58 +00006743 struct i40e_ring *tx_ring, *rx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006744 struct i40e_pf *pf = vsi->back;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006745 int i;
6746
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006747 /* Set basic values in the rings to be used later during open() */
Neerav Parikhd7397642013-11-28 06:39:37 +00006748 for (i = 0; i < vsi->alloc_queue_pairs; i++) {
Shannon Nelsonac6c5e32013-11-20 10:02:57 +00006749 /* allocate space for both Tx and Rx in one shot */
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006750 tx_ring = kzalloc(sizeof(struct i40e_ring) * 2, GFP_KERNEL);
6751 if (!tx_ring)
6752 goto err_out;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006753
6754 tx_ring->queue_index = i;
6755 tx_ring->reg_idx = vsi->base_queue + i;
6756 tx_ring->ring_active = false;
6757 tx_ring->vsi = vsi;
6758 tx_ring->netdev = vsi->netdev;
6759 tx_ring->dev = &pf->pdev->dev;
6760 tx_ring->count = vsi->num_desc;
6761 tx_ring->size = 0;
6762 tx_ring->dcb_tc = 0;
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006763 vsi->tx_rings[i] = tx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006764
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006765 rx_ring = &tx_ring[1];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006766 rx_ring->queue_index = i;
6767 rx_ring->reg_idx = vsi->base_queue + i;
6768 rx_ring->ring_active = false;
6769 rx_ring->vsi = vsi;
6770 rx_ring->netdev = vsi->netdev;
6771 rx_ring->dev = &pf->pdev->dev;
6772 rx_ring->count = vsi->num_desc;
6773 rx_ring->size = 0;
6774 rx_ring->dcb_tc = 0;
6775 if (pf->flags & I40E_FLAG_16BYTE_RX_DESC_ENABLED)
6776 set_ring_16byte_desc_enabled(rx_ring);
6777 else
6778 clear_ring_16byte_desc_enabled(rx_ring);
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006779 vsi->rx_rings[i] = rx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006780 }
6781
6782 return 0;
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006783
6784err_out:
6785 i40e_vsi_clear_rings(vsi);
6786 return -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006787}
6788
6789/**
6790 * i40e_reserve_msix_vectors - Reserve MSI-X vectors in the kernel
6791 * @pf: board private structure
6792 * @vectors: the number of MSI-X vectors to request
6793 *
6794 * Returns the number of vectors reserved, or error
6795 **/
6796static int i40e_reserve_msix_vectors(struct i40e_pf *pf, int vectors)
6797{
Alexander Gordeev7b37f372014-02-18 11:11:42 +01006798 vectors = pci_enable_msix_range(pf->pdev, pf->msix_entries,
6799 I40E_MIN_MSIX, vectors);
6800 if (vectors < 0) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006801 dev_info(&pf->pdev->dev,
Alexander Gordeev7b37f372014-02-18 11:11:42 +01006802 "MSI-X vector reservation failed: %d\n", vectors);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006803 vectors = 0;
6804 }
6805
6806 return vectors;
6807}
6808
6809/**
6810 * i40e_init_msix - Setup the MSIX capability
6811 * @pf: board private structure
6812 *
6813 * Work with the OS to set up the MSIX vectors needed.
6814 *
6815 * Returns 0 on success, negative on failure
6816 **/
6817static int i40e_init_msix(struct i40e_pf *pf)
6818{
6819 i40e_status err = 0;
6820 struct i40e_hw *hw = &pf->hw;
Shannon Nelsonc135b0d2014-10-17 03:14:49 +00006821 int other_vecs = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006822 int v_budget, i;
6823 int vec;
6824
6825 if (!(pf->flags & I40E_FLAG_MSIX_ENABLED))
6826 return -ENODEV;
6827
6828 /* The number of vectors we'll request will be comprised of:
6829 * - Add 1 for "other" cause for Admin Queue events, etc.
6830 * - The number of LAN queue pairs
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00006831 * - Queues being used for RSS.
6832 * We don't need as many as max_rss_size vectors.
6833 * use rss_size instead in the calculation since that
6834 * is governed by number of cpus in the system.
6835 * - assumes symmetric Tx/Rx pairing
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006836 * - The number of VMDq pairs
Vasu Dev38e00432014-08-01 13:27:03 -07006837#ifdef I40E_FCOE
6838 * - The number of FCOE qps.
6839#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006840 * Once we count this up, try the request.
6841 *
6842 * If we can't get what we want, we'll simplify to nearly nothing
6843 * and try again. If that still fails, we punt.
6844 */
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00006845 pf->num_lan_msix = pf->num_lan_qps - (pf->rss_size_max - pf->rss_size);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006846 pf->num_vmdq_msix = pf->num_vmdq_qps;
Shannon Nelsonc135b0d2014-10-17 03:14:49 +00006847 other_vecs = 1;
6848 other_vecs += (pf->num_vmdq_vsis * pf->num_vmdq_msix);
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08006849 if (pf->flags & I40E_FLAG_FD_SB_ENABLED)
Shannon Nelsonc135b0d2014-10-17 03:14:49 +00006850 other_vecs++;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006851
Vasu Dev38e00432014-08-01 13:27:03 -07006852#ifdef I40E_FCOE
6853 if (pf->flags & I40E_FLAG_FCOE_ENABLED) {
6854 pf->num_fcoe_msix = pf->num_fcoe_qps;
6855 v_budget += pf->num_fcoe_msix;
6856 }
6857
6858#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006859 /* Scale down if necessary, and the rings will share vectors */
Shannon Nelsonc135b0d2014-10-17 03:14:49 +00006860 pf->num_lan_msix = min_t(int, pf->num_lan_msix,
6861 (hw->func_caps.num_msix_vectors - other_vecs));
6862 v_budget = pf->num_lan_msix + other_vecs;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006863
6864 pf->msix_entries = kcalloc(v_budget, sizeof(struct msix_entry),
6865 GFP_KERNEL);
6866 if (!pf->msix_entries)
6867 return -ENOMEM;
6868
6869 for (i = 0; i < v_budget; i++)
6870 pf->msix_entries[i].entry = i;
6871 vec = i40e_reserve_msix_vectors(pf, v_budget);
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00006872
6873 if (vec != v_budget) {
6874 /* If we have limited resources, we will start with no vectors
6875 * for the special features and then allocate vectors to some
6876 * of these features based on the policy and at the end disable
6877 * the features that did not get any vectors.
6878 */
Vasu Dev38e00432014-08-01 13:27:03 -07006879#ifdef I40E_FCOE
6880 pf->num_fcoe_qps = 0;
6881 pf->num_fcoe_msix = 0;
6882#endif
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00006883 pf->num_vmdq_msix = 0;
6884 }
6885
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006886 if (vec < I40E_MIN_MSIX) {
6887 pf->flags &= ~I40E_FLAG_MSIX_ENABLED;
6888 kfree(pf->msix_entries);
6889 pf->msix_entries = NULL;
6890 return -ENODEV;
6891
6892 } else if (vec == I40E_MIN_MSIX) {
6893 /* Adjust for minimal MSIX use */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006894 pf->num_vmdq_vsis = 0;
6895 pf->num_vmdq_qps = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006896 pf->num_lan_qps = 1;
6897 pf->num_lan_msix = 1;
6898
6899 } else if (vec != v_budget) {
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00006900 /* reserve the misc vector */
6901 vec--;
6902
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006903 /* Scale vector usage down */
6904 pf->num_vmdq_msix = 1; /* force VMDqs to only one vector */
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00006905 pf->num_vmdq_vsis = 1;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006906
6907 /* partition out the remaining vectors */
6908 switch (vec) {
6909 case 2:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006910 pf->num_lan_msix = 1;
6911 break;
6912 case 3:
Vasu Dev38e00432014-08-01 13:27:03 -07006913#ifdef I40E_FCOE
6914 /* give one vector to FCoE */
6915 if (pf->flags & I40E_FLAG_FCOE_ENABLED) {
6916 pf->num_lan_msix = 1;
6917 pf->num_fcoe_msix = 1;
6918 }
6919#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006920 pf->num_lan_msix = 2;
Vasu Dev38e00432014-08-01 13:27:03 -07006921#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006922 break;
6923 default:
Vasu Dev38e00432014-08-01 13:27:03 -07006924#ifdef I40E_FCOE
6925 /* give one vector to FCoE */
6926 if (pf->flags & I40E_FLAG_FCOE_ENABLED) {
6927 pf->num_fcoe_msix = 1;
6928 vec--;
6929 }
6930#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006931 pf->num_lan_msix = min_t(int, (vec / 2),
6932 pf->num_lan_qps);
6933 pf->num_vmdq_vsis = min_t(int, (vec - pf->num_lan_msix),
6934 I40E_DEFAULT_NUM_VMDQ_VSI);
6935 break;
6936 }
6937 }
6938
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00006939 if ((pf->flags & I40E_FLAG_VMDQ_ENABLED) &&
6940 (pf->num_vmdq_msix == 0)) {
6941 dev_info(&pf->pdev->dev, "VMDq disabled, not enough MSI-X vectors\n");
6942 pf->flags &= ~I40E_FLAG_VMDQ_ENABLED;
6943 }
Vasu Dev38e00432014-08-01 13:27:03 -07006944#ifdef I40E_FCOE
6945
6946 if ((pf->flags & I40E_FLAG_FCOE_ENABLED) && (pf->num_fcoe_msix == 0)) {
6947 dev_info(&pf->pdev->dev, "FCOE disabled, not enough MSI-X vectors\n");
6948 pf->flags &= ~I40E_FLAG_FCOE_ENABLED;
6949 }
6950#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006951 return err;
6952}
6953
6954/**
Greg Rose90e04072014-03-06 08:59:57 +00006955 * i40e_vsi_alloc_q_vector - Allocate memory for a single interrupt vector
Alexander Duyck493fb302013-09-28 07:01:44 +00006956 * @vsi: the VSI being configured
6957 * @v_idx: index of the vector in the vsi struct
6958 *
6959 * We allocate one q_vector. If allocation fails we return -ENOMEM.
6960 **/
Greg Rose90e04072014-03-06 08:59:57 +00006961static int i40e_vsi_alloc_q_vector(struct i40e_vsi *vsi, int v_idx)
Alexander Duyck493fb302013-09-28 07:01:44 +00006962{
6963 struct i40e_q_vector *q_vector;
6964
6965 /* allocate q_vector */
6966 q_vector = kzalloc(sizeof(struct i40e_q_vector), GFP_KERNEL);
6967 if (!q_vector)
6968 return -ENOMEM;
6969
6970 q_vector->vsi = vsi;
6971 q_vector->v_idx = v_idx;
6972 cpumask_set_cpu(v_idx, &q_vector->affinity_mask);
6973 if (vsi->netdev)
6974 netif_napi_add(vsi->netdev, &q_vector->napi,
Jesse Brandeburgeefeace2014-05-10 04:49:13 +00006975 i40e_napi_poll, NAPI_POLL_WEIGHT);
Alexander Duyck493fb302013-09-28 07:01:44 +00006976
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00006977 q_vector->rx.latency_range = I40E_LOW_LATENCY;
6978 q_vector->tx.latency_range = I40E_LOW_LATENCY;
6979
Alexander Duyck493fb302013-09-28 07:01:44 +00006980 /* tie q_vector and vsi together */
6981 vsi->q_vectors[v_idx] = q_vector;
6982
6983 return 0;
6984}
6985
6986/**
Greg Rose90e04072014-03-06 08:59:57 +00006987 * i40e_vsi_alloc_q_vectors - Allocate memory for interrupt vectors
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006988 * @vsi: the VSI being configured
6989 *
6990 * We allocate one q_vector per queue interrupt. If allocation fails we
6991 * return -ENOMEM.
6992 **/
Greg Rose90e04072014-03-06 08:59:57 +00006993static int i40e_vsi_alloc_q_vectors(struct i40e_vsi *vsi)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006994{
6995 struct i40e_pf *pf = vsi->back;
6996 int v_idx, num_q_vectors;
Alexander Duyck493fb302013-09-28 07:01:44 +00006997 int err;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006998
6999 /* if not MSIX, give the one vector only to the LAN VSI */
7000 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
7001 num_q_vectors = vsi->num_q_vectors;
7002 else if (vsi == pf->vsi[pf->lan_vsi])
7003 num_q_vectors = 1;
7004 else
7005 return -EINVAL;
7006
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007007 for (v_idx = 0; v_idx < num_q_vectors; v_idx++) {
Greg Rose90e04072014-03-06 08:59:57 +00007008 err = i40e_vsi_alloc_q_vector(vsi, v_idx);
Alexander Duyck493fb302013-09-28 07:01:44 +00007009 if (err)
7010 goto err_out;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007011 }
7012
7013 return 0;
Alexander Duyck493fb302013-09-28 07:01:44 +00007014
7015err_out:
7016 while (v_idx--)
7017 i40e_free_q_vector(vsi, v_idx);
7018
7019 return err;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007020}
7021
7022/**
7023 * i40e_init_interrupt_scheme - Determine proper interrupt scheme
7024 * @pf: board private structure to initialize
7025 **/
7026static void i40e_init_interrupt_scheme(struct i40e_pf *pf)
7027{
7028 int err = 0;
7029
7030 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
7031 err = i40e_init_msix(pf);
7032 if (err) {
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08007033 pf->flags &= ~(I40E_FLAG_MSIX_ENABLED |
Vasu Dev38e00432014-08-01 13:27:03 -07007034#ifdef I40E_FCOE
7035 I40E_FLAG_FCOE_ENABLED |
7036#endif
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08007037 I40E_FLAG_RSS_ENABLED |
Neerav Parikh4d9b6042014-05-22 06:31:51 +00007038 I40E_FLAG_DCB_CAPABLE |
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08007039 I40E_FLAG_SRIOV_ENABLED |
7040 I40E_FLAG_FD_SB_ENABLED |
7041 I40E_FLAG_FD_ATR_ENABLED |
7042 I40E_FLAG_VMDQ_ENABLED);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007043
7044 /* rework the queue expectations without MSIX */
7045 i40e_determine_queue_usage(pf);
7046 }
7047 }
7048
7049 if (!(pf->flags & I40E_FLAG_MSIX_ENABLED) &&
7050 (pf->flags & I40E_FLAG_MSI_ENABLED)) {
Catherine Sullivan77fa28b2014-02-20 19:29:17 -08007051 dev_info(&pf->pdev->dev, "MSI-X not available, trying MSI\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007052 err = pci_enable_msi(pf->pdev);
7053 if (err) {
Shannon Nelson958a3e32013-09-28 07:13:28 +00007054 dev_info(&pf->pdev->dev, "MSI init failed - %d\n", err);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007055 pf->flags &= ~I40E_FLAG_MSI_ENABLED;
7056 }
7057 }
7058
Shannon Nelson958a3e32013-09-28 07:13:28 +00007059 if (!(pf->flags & (I40E_FLAG_MSIX_ENABLED | I40E_FLAG_MSI_ENABLED)))
Catherine Sullivan77fa28b2014-02-20 19:29:17 -08007060 dev_info(&pf->pdev->dev, "MSI-X and MSI not available, falling back to Legacy IRQ\n");
Shannon Nelson958a3e32013-09-28 07:13:28 +00007061
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007062 /* track first vector for misc interrupts */
7063 err = i40e_get_lump(pf, pf->irq_pile, 1, I40E_PILE_VALID_BIT-1);
7064}
7065
7066/**
7067 * i40e_setup_misc_vector - Setup the misc vector to handle non queue events
7068 * @pf: board private structure
7069 *
7070 * This sets up the handler for MSIX 0, which is used to manage the
7071 * non-queue interrupts, e.g. AdminQ and errors. This is not used
7072 * when in MSI or Legacy interrupt mode.
7073 **/
7074static int i40e_setup_misc_vector(struct i40e_pf *pf)
7075{
7076 struct i40e_hw *hw = &pf->hw;
7077 int err = 0;
7078
7079 /* Only request the irq if this is the first time through, and
7080 * not when we're rebuilding after a Reset
7081 */
7082 if (!test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state)) {
7083 err = request_irq(pf->msix_entries[0].vector,
7084 i40e_intr, 0, pf->misc_int_name, pf);
7085 if (err) {
7086 dev_info(&pf->pdev->dev,
Catherine Sullivan77fa28b2014-02-20 19:29:17 -08007087 "request_irq for %s failed: %d\n",
7088 pf->misc_int_name, err);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007089 return -EFAULT;
7090 }
7091 }
7092
7093 i40e_enable_misc_int_causes(hw);
7094
7095 /* associate no queues to the misc vector */
7096 wr32(hw, I40E_PFINT_LNKLST0, I40E_QUEUE_END_OF_LIST);
7097 wr32(hw, I40E_PFINT_ITR0(I40E_RX_ITR), I40E_ITR_8K);
7098
7099 i40e_flush(hw);
7100
7101 i40e_irq_dynamic_enable_icr0(pf);
7102
7103 return err;
7104}
7105
7106/**
7107 * i40e_config_rss - Prepare for RSS if used
7108 * @pf: board private structure
7109 **/
7110static int i40e_config_rss(struct i40e_pf *pf)
7111{
Eric Dumazet22f258a2014-11-16 06:23:13 -08007112 u32 rss_key[I40E_PFQF_HKEY_MAX_INDEX + 1];
Anjali Singhai Jain4617e8c2013-11-20 10:02:56 +00007113 struct i40e_hw *hw = &pf->hw;
7114 u32 lut = 0;
7115 int i, j;
7116 u64 hena;
Carolyn Wybornye157ea32014-06-03 23:50:22 +00007117 u32 reg_val;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007118
Eric Dumazet22f258a2014-11-16 06:23:13 -08007119 netdev_rss_key_fill(rss_key, sizeof(rss_key));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007120 for (i = 0; i <= I40E_PFQF_HKEY_MAX_INDEX; i++)
Eric Dumazet22f258a2014-11-16 06:23:13 -08007121 wr32(hw, I40E_PFQF_HKEY(i), rss_key[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007122
7123 /* By default we enable TCP/UDP with IPv4/IPv6 ptypes */
7124 hena = (u64)rd32(hw, I40E_PFQF_HENA(0)) |
7125 ((u64)rd32(hw, I40E_PFQF_HENA(1)) << 32);
Mitch Williams12dc4fe2013-11-28 06:39:32 +00007126 hena |= I40E_DEFAULT_RSS_HENA;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007127 wr32(hw, I40E_PFQF_HENA(0), (u32)hena);
7128 wr32(hw, I40E_PFQF_HENA(1), (u32)(hena >> 32));
7129
Carolyn Wybornye157ea32014-06-03 23:50:22 +00007130 /* Check capability and Set table size and register per hw expectation*/
7131 reg_val = rd32(hw, I40E_PFQF_CTL_0);
7132 if (hw->func_caps.rss_table_size == 512) {
7133 reg_val |= I40E_PFQF_CTL_0_HASHLUTSIZE_512;
7134 pf->rss_table_size = 512;
7135 } else {
7136 pf->rss_table_size = 128;
7137 reg_val &= ~I40E_PFQF_CTL_0_HASHLUTSIZE_512;
7138 }
7139 wr32(hw, I40E_PFQF_CTL_0, reg_val);
7140
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007141 /* Populate the LUT with max no. of queues in round robin fashion */
Carolyn Wybornye157ea32014-06-03 23:50:22 +00007142 for (i = 0, j = 0; i < pf->rss_table_size; i++, j++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007143
7144 /* The assumption is that lan qp count will be the highest
7145 * qp count for any PF VSI that needs RSS.
7146 * If multiple VSIs need RSS support, all the qp counts
7147 * for those VSIs should be a power of 2 for RSS to work.
7148 * If LAN VSI is the only consumer for RSS then this requirement
7149 * is not necessary.
7150 */
7151 if (j == pf->rss_size)
7152 j = 0;
7153 /* lut = 4-byte sliding window of 4 lut entries */
7154 lut = (lut << 8) | (j &
7155 ((0x1 << pf->hw.func_caps.rss_table_entry_width) - 1));
7156 /* On i = 3, we have 4 entries in lut; write to the register */
7157 if ((i & 3) == 3)
7158 wr32(hw, I40E_PFQF_HLUT(i >> 2), lut);
7159 }
7160 i40e_flush(hw);
7161
7162 return 0;
7163}
7164
7165/**
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00007166 * i40e_reconfig_rss_queues - change number of queues for rss and rebuild
7167 * @pf: board private structure
7168 * @queue_count: the requested queue count for rss.
7169 *
7170 * returns 0 if rss is not enabled, if enabled returns the final rss queue
7171 * count which may be different from the requested queue count.
7172 **/
7173int i40e_reconfig_rss_queues(struct i40e_pf *pf, int queue_count)
7174{
7175 if (!(pf->flags & I40E_FLAG_RSS_ENABLED))
7176 return 0;
7177
7178 queue_count = min_t(int, queue_count, pf->rss_size_max);
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00007179
7180 if (queue_count != pf->rss_size) {
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00007181 i40e_prep_for_reset(pf);
7182
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00007183 pf->rss_size = queue_count;
7184
7185 i40e_reset_and_rebuild(pf, true);
7186 i40e_config_rss(pf);
7187 }
7188 dev_info(&pf->pdev->dev, "RSS count: %d\n", pf->rss_size);
7189 return pf->rss_size;
7190}
7191
7192/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007193 * i40e_sw_init - Initialize general software structures (struct i40e_pf)
7194 * @pf: board private structure to initialize
7195 *
7196 * i40e_sw_init initializes the Adapter private data structure.
7197 * Fields are initialized based on PCI device information and
7198 * OS network device settings (MTU size).
7199 **/
7200static int i40e_sw_init(struct i40e_pf *pf)
7201{
7202 int err = 0;
7203 int size;
7204
7205 pf->msg_enable = netif_msg_init(I40E_DEFAULT_MSG_ENABLE,
7206 (NETIF_MSG_DRV|NETIF_MSG_PROBE|NETIF_MSG_LINK));
Shannon Nelson27599972013-11-16 10:00:43 +00007207 pf->hw.debug_mask = pf->msg_enable | I40E_DEBUG_DIAG;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007208 if (debug != -1 && debug != I40E_DEFAULT_MSG_ENABLE) {
7209 if (I40E_DEBUG_USER & debug)
7210 pf->hw.debug_mask = debug;
7211 pf->msg_enable = netif_msg_init((debug & ~I40E_DEBUG_USER),
7212 I40E_DEFAULT_MSG_ENABLE);
7213 }
7214
7215 /* Set default capability flags */
7216 pf->flags = I40E_FLAG_RX_CSUM_ENABLED |
7217 I40E_FLAG_MSI_ENABLED |
7218 I40E_FLAG_MSIX_ENABLED |
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007219 I40E_FLAG_RX_1BUF_ENABLED;
7220
Mitch Williamsca99eb92014-04-04 04:43:07 +00007221 /* Set default ITR */
7222 pf->rx_itr_default = I40E_ITR_DYNAMIC | I40E_ITR_RX_DEF;
7223 pf->tx_itr_default = I40E_ITR_DYNAMIC | I40E_ITR_TX_DEF;
7224
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00007225 /* Depending on PF configurations, it is possible that the RSS
7226 * maximum might end up larger than the available queues
7227 */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007228 pf->rss_size_max = 0x1 << pf->hw.func_caps.rss_table_entry_width;
Paul M Stillwell Jrec9a7db2014-07-09 07:46:10 +00007229 pf->rss_size = 1;
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00007230 pf->rss_size_max = min_t(int, pf->rss_size_max,
7231 pf->hw.func_caps.num_tx_qp);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007232 if (pf->hw.func_caps.rss) {
7233 pf->flags |= I40E_FLAG_RSS_ENABLED;
Jesse Brandeburgbf051a32013-11-26 10:49:17 +00007234 pf->rss_size = min_t(int, pf->rss_size_max, num_online_cpus());
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007235 }
7236
Catherine Sullivan2050bc62013-12-18 13:46:03 +00007237 /* MFP mode enabled */
7238 if (pf->hw.func_caps.npar_enable || pf->hw.func_caps.mfp_mode_1) {
7239 pf->flags |= I40E_FLAG_MFP_ENABLED;
7240 dev_info(&pf->pdev->dev, "MFP mode Enabled\n");
7241 }
7242
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08007243 /* FW/NVM is not yet fixed in this regard */
7244 if ((pf->hw.func_caps.fd_filters_guaranteed > 0) ||
7245 (pf->hw.func_caps.fd_filters_best_effort > 0)) {
7246 pf->flags |= I40E_FLAG_FD_ATR_ENABLED;
7247 pf->atr_sample_rate = I40E_DEFAULT_ATR_SAMPLE_RATE;
Anjali Singhai Jain433c47d2014-05-22 06:32:17 +00007248 /* Setup a counter for fd_atr per pf */
7249 pf->fd_atr_cnt_idx = I40E_FD_ATR_STAT_IDX(pf->hw.pf_id);
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08007250 if (!(pf->flags & I40E_FLAG_MFP_ENABLED)) {
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08007251 pf->flags |= I40E_FLAG_FD_SB_ENABLED;
Anjali Singhai Jain433c47d2014-05-22 06:32:17 +00007252 /* Setup a counter for fd_sb per pf */
7253 pf->fd_sb_cnt_idx = I40E_FD_SB_STAT_IDX(pf->hw.pf_id);
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08007254 } else {
7255 dev_info(&pf->pdev->dev,
Anjali Singhai Jain0b675842014-03-06 08:59:51 +00007256 "Flow Director Sideband mode Disabled in MFP mode\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007257 }
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08007258 pf->fdir_pf_filter_count =
7259 pf->hw.func_caps.fd_filters_guaranteed;
7260 pf->hw.fdir_shared_filter_count =
7261 pf->hw.func_caps.fd_filters_best_effort;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007262 }
7263
7264 if (pf->hw.func_caps.vmdq) {
7265 pf->flags |= I40E_FLAG_VMDQ_ENABLED;
7266 pf->num_vmdq_vsis = I40E_DEFAULT_NUM_VMDQ_VSI;
7267 pf->num_vmdq_qps = I40E_DEFAULT_QUEUES_PER_VMDQ;
7268 }
7269
Vasu Dev38e00432014-08-01 13:27:03 -07007270#ifdef I40E_FCOE
7271 err = i40e_init_pf_fcoe(pf);
7272 if (err)
7273 dev_info(&pf->pdev->dev, "init_pf_fcoe failed: %d\n", err);
7274
7275#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007276#ifdef CONFIG_PCI_IOV
7277 if (pf->hw.func_caps.num_vfs) {
7278 pf->num_vf_qps = I40E_DEFAULT_QUEUES_PER_VF;
7279 pf->flags |= I40E_FLAG_SRIOV_ENABLED;
7280 pf->num_req_vfs = min_t(int,
7281 pf->hw.func_caps.num_vfs,
7282 I40E_MAX_VF_COUNT);
7283 }
7284#endif /* CONFIG_PCI_IOV */
7285 pf->eeprom_version = 0xDEAD;
7286 pf->lan_veb = I40E_NO_VEB;
7287 pf->lan_vsi = I40E_NO_VSI;
7288
7289 /* set up queue assignment tracking */
7290 size = sizeof(struct i40e_lump_tracking)
7291 + (sizeof(u16) * pf->hw.func_caps.num_tx_qp);
7292 pf->qp_pile = kzalloc(size, GFP_KERNEL);
7293 if (!pf->qp_pile) {
7294 err = -ENOMEM;
7295 goto sw_init_done;
7296 }
7297 pf->qp_pile->num_entries = pf->hw.func_caps.num_tx_qp;
7298 pf->qp_pile->search_hint = 0;
7299
7300 /* set up vector assignment tracking */
7301 size = sizeof(struct i40e_lump_tracking)
7302 + (sizeof(u16) * pf->hw.func_caps.num_msix_vectors);
7303 pf->irq_pile = kzalloc(size, GFP_KERNEL);
7304 if (!pf->irq_pile) {
7305 kfree(pf->qp_pile);
7306 err = -ENOMEM;
7307 goto sw_init_done;
7308 }
7309 pf->irq_pile->num_entries = pf->hw.func_caps.num_msix_vectors;
7310 pf->irq_pile->search_hint = 0;
7311
Anjali Singhai Jain327fe042014-06-04 01:23:26 +00007312 pf->tx_timeout_recovery_level = 1;
7313
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007314 mutex_init(&pf->switch_mutex);
7315
7316sw_init_done:
7317 return err;
7318}
7319
7320/**
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00007321 * i40e_set_ntuple - set the ntuple feature flag and take action
7322 * @pf: board private structure to initialize
7323 * @features: the feature set that the stack is suggesting
7324 *
7325 * returns a bool to indicate if reset needs to happen
7326 **/
7327bool i40e_set_ntuple(struct i40e_pf *pf, netdev_features_t features)
7328{
7329 bool need_reset = false;
7330
7331 /* Check if Flow Director n-tuple support was enabled or disabled. If
7332 * the state changed, we need to reset.
7333 */
7334 if (features & NETIF_F_NTUPLE) {
7335 /* Enable filters and mark for reset */
7336 if (!(pf->flags & I40E_FLAG_FD_SB_ENABLED))
7337 need_reset = true;
7338 pf->flags |= I40E_FLAG_FD_SB_ENABLED;
7339 } else {
7340 /* turn off filters, mark for reset and clear SW filter list */
7341 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
7342 need_reset = true;
7343 i40e_fdir_filter_exit(pf);
7344 }
7345 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
Anjali Singhai Jain8a4f34f2014-06-04 08:45:20 +00007346 pf->auto_disable_flags &= ~I40E_FLAG_FD_SB_ENABLED;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00007347 /* reset fd counters */
7348 pf->fd_add_err = pf->fd_atr_cnt = pf->fd_tcp_rule = 0;
7349 pf->fdir_pf_active_filters = 0;
7350 pf->flags |= I40E_FLAG_FD_ATR_ENABLED;
7351 dev_info(&pf->pdev->dev, "ATR re-enabled.\n");
Anjali Singhai Jain8a4f34f2014-06-04 08:45:20 +00007352 /* if ATR was auto disabled it can be re-enabled. */
7353 if ((pf->flags & I40E_FLAG_FD_ATR_ENABLED) &&
7354 (pf->auto_disable_flags & I40E_FLAG_FD_ATR_ENABLED))
7355 pf->auto_disable_flags &= ~I40E_FLAG_FD_ATR_ENABLED;
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00007356 }
7357 return need_reset;
7358}
7359
7360/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007361 * i40e_set_features - set the netdev feature flags
7362 * @netdev: ptr to the netdev being adjusted
7363 * @features: the feature set that the stack is suggesting
7364 **/
7365static int i40e_set_features(struct net_device *netdev,
7366 netdev_features_t features)
7367{
7368 struct i40e_netdev_priv *np = netdev_priv(netdev);
7369 struct i40e_vsi *vsi = np->vsi;
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00007370 struct i40e_pf *pf = vsi->back;
7371 bool need_reset;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007372
7373 if (features & NETIF_F_HW_VLAN_CTAG_RX)
7374 i40e_vlan_stripping_enable(vsi);
7375 else
7376 i40e_vlan_stripping_disable(vsi);
7377
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00007378 need_reset = i40e_set_ntuple(pf, features);
7379
7380 if (need_reset)
7381 i40e_do_reset(pf, (1 << __I40E_PF_RESET_REQUESTED));
7382
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007383 return 0;
7384}
7385
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007386#ifdef CONFIG_I40E_VXLAN
7387/**
7388 * i40e_get_vxlan_port_idx - Lookup a possibly offloaded for Rx UDP port
7389 * @pf: board private structure
7390 * @port: The UDP port to look up
7391 *
7392 * Returns the index number or I40E_MAX_PF_UDP_OFFLOAD_PORTS if port not found
7393 **/
7394static u8 i40e_get_vxlan_port_idx(struct i40e_pf *pf, __be16 port)
7395{
7396 u8 i;
7397
7398 for (i = 0; i < I40E_MAX_PF_UDP_OFFLOAD_PORTS; i++) {
7399 if (pf->vxlan_ports[i] == port)
7400 return i;
7401 }
7402
7403 return i;
7404}
7405
7406/**
7407 * i40e_add_vxlan_port - Get notifications about VXLAN ports that come up
7408 * @netdev: This physical port's netdev
7409 * @sa_family: Socket Family that VXLAN is notifying us about
7410 * @port: New UDP port number that VXLAN started listening to
7411 **/
7412static void i40e_add_vxlan_port(struct net_device *netdev,
7413 sa_family_t sa_family, __be16 port)
7414{
7415 struct i40e_netdev_priv *np = netdev_priv(netdev);
7416 struct i40e_vsi *vsi = np->vsi;
7417 struct i40e_pf *pf = vsi->back;
7418 u8 next_idx;
7419 u8 idx;
7420
7421 if (sa_family == AF_INET6)
7422 return;
7423
7424 idx = i40e_get_vxlan_port_idx(pf, port);
7425
7426 /* Check if port already exists */
7427 if (idx < I40E_MAX_PF_UDP_OFFLOAD_PORTS) {
7428 netdev_info(netdev, "Port %d already offloaded\n", ntohs(port));
7429 return;
7430 }
7431
7432 /* Now check if there is space to add the new port */
7433 next_idx = i40e_get_vxlan_port_idx(pf, 0);
7434
7435 if (next_idx == I40E_MAX_PF_UDP_OFFLOAD_PORTS) {
7436 netdev_info(netdev, "Maximum number of UDP ports reached, not adding port %d\n",
7437 ntohs(port));
7438 return;
7439 }
7440
7441 /* New port: add it and mark its index in the bitmap */
7442 pf->vxlan_ports[next_idx] = port;
7443 pf->pending_vxlan_bitmap |= (1 << next_idx);
7444
7445 pf->flags |= I40E_FLAG_VXLAN_FILTER_SYNC;
7446}
7447
7448/**
7449 * i40e_del_vxlan_port - Get notifications about VXLAN ports that go away
7450 * @netdev: This physical port's netdev
7451 * @sa_family: Socket Family that VXLAN is notifying us about
7452 * @port: UDP port number that VXLAN stopped listening to
7453 **/
7454static void i40e_del_vxlan_port(struct net_device *netdev,
7455 sa_family_t sa_family, __be16 port)
7456{
7457 struct i40e_netdev_priv *np = netdev_priv(netdev);
7458 struct i40e_vsi *vsi = np->vsi;
7459 struct i40e_pf *pf = vsi->back;
7460 u8 idx;
7461
7462 if (sa_family == AF_INET6)
7463 return;
7464
7465 idx = i40e_get_vxlan_port_idx(pf, port);
7466
7467 /* Check if port already exists */
7468 if (idx < I40E_MAX_PF_UDP_OFFLOAD_PORTS) {
7469 /* if port exists, set it to 0 (mark for deletion)
7470 * and make it pending
7471 */
7472 pf->vxlan_ports[idx] = 0;
7473
7474 pf->pending_vxlan_bitmap |= (1 << idx);
7475
7476 pf->flags |= I40E_FLAG_VXLAN_FILTER_SYNC;
7477 } else {
7478 netdev_warn(netdev, "Port %d was not found, not deleting\n",
7479 ntohs(port));
7480 }
7481}
7482
7483#endif
Neerav Parikh1f224ad2014-02-12 01:45:31 +00007484static int i40e_get_phys_port_id(struct net_device *netdev,
7485 struct netdev_phys_port_id *ppid)
7486{
7487 struct i40e_netdev_priv *np = netdev_priv(netdev);
7488 struct i40e_pf *pf = np->vsi->back;
7489 struct i40e_hw *hw = &pf->hw;
7490
7491 if (!(pf->flags & I40E_FLAG_PORT_ID_VALID))
7492 return -EOPNOTSUPP;
7493
7494 ppid->id_len = min_t(int, sizeof(hw->mac.port_addr), sizeof(ppid->id));
7495 memcpy(ppid->id, hw->mac.port_addr, ppid->id_len);
7496
7497 return 0;
7498}
7499
Greg Rose4ba0dea2014-03-06 08:59:55 +00007500#ifdef HAVE_FDB_OPS
7501#ifdef USE_CONST_DEV_UC_CHAR
7502static int i40e_ndo_fdb_add(struct ndmsg *ndm, struct nlattr *tb[],
7503 struct net_device *dev,
7504 const unsigned char *addr,
7505 u16 flags)
7506#else
7507static int i40e_ndo_fdb_add(struct ndmsg *ndm,
7508 struct net_device *dev,
7509 unsigned char *addr,
7510 u16 flags)
7511#endif
7512{
7513 struct i40e_netdev_priv *np = netdev_priv(dev);
7514 struct i40e_pf *pf = np->vsi->back;
7515 int err = 0;
7516
7517 if (!(pf->flags & I40E_FLAG_SRIOV_ENABLED))
7518 return -EOPNOTSUPP;
7519
7520 /* Hardware does not support aging addresses so if a
7521 * ndm_state is given only allow permanent addresses
7522 */
7523 if (ndm->ndm_state && !(ndm->ndm_state & NUD_PERMANENT)) {
7524 netdev_info(dev, "FDB only supports static addresses\n");
7525 return -EINVAL;
7526 }
7527
7528 if (is_unicast_ether_addr(addr) || is_link_local_ether_addr(addr))
7529 err = dev_uc_add_excl(dev, addr);
7530 else if (is_multicast_ether_addr(addr))
7531 err = dev_mc_add_excl(dev, addr);
7532 else
7533 err = -EINVAL;
7534
7535 /* Only return duplicate errors if NLM_F_EXCL is set */
7536 if (err == -EEXIST && !(flags & NLM_F_EXCL))
7537 err = 0;
7538
7539 return err;
7540}
7541
7542#ifndef USE_DEFAULT_FDB_DEL_DUMP
7543#ifdef USE_CONST_DEV_UC_CHAR
7544static int i40e_ndo_fdb_del(struct ndmsg *ndm,
7545 struct net_device *dev,
7546 const unsigned char *addr)
7547#else
7548static int i40e_ndo_fdb_del(struct ndmsg *ndm,
7549 struct net_device *dev,
7550 unsigned char *addr)
7551#endif
7552{
7553 struct i40e_netdev_priv *np = netdev_priv(dev);
7554 struct i40e_pf *pf = np->vsi->back;
7555 int err = -EOPNOTSUPP;
7556
7557 if (ndm->ndm_state & NUD_PERMANENT) {
7558 netdev_info(dev, "FDB only supports static addresses\n");
7559 return -EINVAL;
7560 }
7561
7562 if (pf->flags & I40E_FLAG_SRIOV_ENABLED) {
7563 if (is_unicast_ether_addr(addr))
7564 err = dev_uc_del(dev, addr);
7565 else if (is_multicast_ether_addr(addr))
7566 err = dev_mc_del(dev, addr);
7567 else
7568 err = -EINVAL;
7569 }
7570
7571 return err;
7572}
7573
7574static int i40e_ndo_fdb_dump(struct sk_buff *skb,
7575 struct netlink_callback *cb,
7576 struct net_device *dev,
Jamal Hadi Salim5d5eacb2014-07-10 07:01:58 -04007577 struct net_device *filter_dev,
Greg Rose4ba0dea2014-03-06 08:59:55 +00007578 int idx)
7579{
7580 struct i40e_netdev_priv *np = netdev_priv(dev);
7581 struct i40e_pf *pf = np->vsi->back;
7582
7583 if (pf->flags & I40E_FLAG_SRIOV_ENABLED)
Jamal Hadi Salim5d5eacb2014-07-10 07:01:58 -04007584 idx = ndo_dflt_fdb_dump(skb, cb, dev, filter_dev, idx);
Greg Rose4ba0dea2014-03-06 08:59:55 +00007585
7586 return idx;
7587}
7588
7589#endif /* USE_DEFAULT_FDB_DEL_DUMP */
7590#endif /* HAVE_FDB_OPS */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007591static const struct net_device_ops i40e_netdev_ops = {
7592 .ndo_open = i40e_open,
7593 .ndo_stop = i40e_close,
7594 .ndo_start_xmit = i40e_lan_xmit_frame,
7595 .ndo_get_stats64 = i40e_get_netdev_stats_struct,
7596 .ndo_set_rx_mode = i40e_set_rx_mode,
7597 .ndo_validate_addr = eth_validate_addr,
7598 .ndo_set_mac_address = i40e_set_mac,
7599 .ndo_change_mtu = i40e_change_mtu,
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00007600 .ndo_do_ioctl = i40e_ioctl,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007601 .ndo_tx_timeout = i40e_tx_timeout,
7602 .ndo_vlan_rx_add_vid = i40e_vlan_rx_add_vid,
7603 .ndo_vlan_rx_kill_vid = i40e_vlan_rx_kill_vid,
7604#ifdef CONFIG_NET_POLL_CONTROLLER
7605 .ndo_poll_controller = i40e_netpoll,
7606#endif
7607 .ndo_setup_tc = i40e_setup_tc,
Vasu Dev38e00432014-08-01 13:27:03 -07007608#ifdef I40E_FCOE
7609 .ndo_fcoe_enable = i40e_fcoe_enable,
7610 .ndo_fcoe_disable = i40e_fcoe_disable,
7611#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007612 .ndo_set_features = i40e_set_features,
7613 .ndo_set_vf_mac = i40e_ndo_set_vf_mac,
7614 .ndo_set_vf_vlan = i40e_ndo_set_vf_port_vlan,
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04007615 .ndo_set_vf_rate = i40e_ndo_set_vf_bw,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007616 .ndo_get_vf_config = i40e_ndo_get_vf_config,
Mitch Williams588aefa2014-02-11 08:27:49 +00007617 .ndo_set_vf_link_state = i40e_ndo_set_vf_link_state,
Serey Konge6d90042014-07-12 07:28:14 +00007618 .ndo_set_vf_spoofchk = i40e_ndo_set_vf_spoofchk,
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007619#ifdef CONFIG_I40E_VXLAN
7620 .ndo_add_vxlan_port = i40e_add_vxlan_port,
7621 .ndo_del_vxlan_port = i40e_del_vxlan_port,
7622#endif
Neerav Parikh1f224ad2014-02-12 01:45:31 +00007623 .ndo_get_phys_port_id = i40e_get_phys_port_id,
Greg Rose4ba0dea2014-03-06 08:59:55 +00007624#ifdef HAVE_FDB_OPS
7625 .ndo_fdb_add = i40e_ndo_fdb_add,
7626#ifndef USE_DEFAULT_FDB_DEL_DUMP
7627 .ndo_fdb_del = i40e_ndo_fdb_del,
7628 .ndo_fdb_dump = i40e_ndo_fdb_dump,
7629#endif
7630#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007631};
7632
7633/**
7634 * i40e_config_netdev - Setup the netdev flags
7635 * @vsi: the VSI being configured
7636 *
7637 * Returns 0 on success, negative value on failure
7638 **/
7639static int i40e_config_netdev(struct i40e_vsi *vsi)
7640{
Greg Rose1a103702013-11-28 06:42:39 +00007641 u8 brdcast[ETH_ALEN] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007642 struct i40e_pf *pf = vsi->back;
7643 struct i40e_hw *hw = &pf->hw;
7644 struct i40e_netdev_priv *np;
7645 struct net_device *netdev;
7646 u8 mac_addr[ETH_ALEN];
7647 int etherdev_size;
7648
7649 etherdev_size = sizeof(struct i40e_netdev_priv);
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00007650 netdev = alloc_etherdev_mq(etherdev_size, vsi->alloc_queue_pairs);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007651 if (!netdev)
7652 return -ENOMEM;
7653
7654 vsi->netdev = netdev;
7655 np = netdev_priv(netdev);
7656 np->vsi = vsi;
7657
Or Gerlitzd70e9412014-03-18 10:36:45 +02007658 netdev->hw_enc_features |= NETIF_F_IP_CSUM |
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007659 NETIF_F_GSO_UDP_TUNNEL |
Or Gerlitzd70e9412014-03-18 10:36:45 +02007660 NETIF_F_TSO;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007661
7662 netdev->features = NETIF_F_SG |
7663 NETIF_F_IP_CSUM |
7664 NETIF_F_SCTP_CSUM |
7665 NETIF_F_HIGHDMA |
7666 NETIF_F_GSO_UDP_TUNNEL |
7667 NETIF_F_HW_VLAN_CTAG_TX |
7668 NETIF_F_HW_VLAN_CTAG_RX |
7669 NETIF_F_HW_VLAN_CTAG_FILTER |
7670 NETIF_F_IPV6_CSUM |
7671 NETIF_F_TSO |
Jesse Brandeburg059dab62014-04-01 09:07:20 +00007672 NETIF_F_TSO_ECN |
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007673 NETIF_F_TSO6 |
7674 NETIF_F_RXCSUM |
7675 NETIF_F_RXHASH |
7676 0;
7677
Anjali Singhai Jain2e86a0b2014-04-01 07:11:53 +00007678 if (!(pf->flags & I40E_FLAG_MFP_ENABLED))
7679 netdev->features |= NETIF_F_NTUPLE;
7680
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007681 /* copy netdev features into list of user selectable features */
7682 netdev->hw_features |= netdev->features;
7683
7684 if (vsi->type == I40E_VSI_MAIN) {
7685 SET_NETDEV_DEV(netdev, &pf->pdev->dev);
Greg Rose9a173902014-05-22 06:32:02 +00007686 ether_addr_copy(mac_addr, hw->mac.perm_addr);
Shannon Nelson30650cc2014-07-29 04:01:50 +00007687 /* The following steps are necessary to prevent reception
7688 * of tagged packets - some older NVM configurations load a
7689 * default a MAC-VLAN filter that accepts any tagged packet
7690 * which must be replaced by a normal filter.
Greg Rose8c27d422014-05-22 06:31:56 +00007691 */
Shannon Nelson30650cc2014-07-29 04:01:50 +00007692 if (!i40e_rm_default_mac_filter(vsi, mac_addr))
7693 i40e_add_filter(vsi, mac_addr,
7694 I40E_VLAN_ANY, false, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007695 } else {
7696 /* relate the VSI_VMDQ name to the VSI_MAIN name */
7697 snprintf(netdev->name, IFNAMSIZ, "%sv%%d",
7698 pf->vsi[pf->lan_vsi]->netdev->name);
7699 random_ether_addr(mac_addr);
7700 i40e_add_filter(vsi, mac_addr, I40E_VLAN_ANY, false, false);
7701 }
Greg Rose1a103702013-11-28 06:42:39 +00007702 i40e_add_filter(vsi, brdcast, I40E_VLAN_ANY, false, false);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007703
Greg Rose9a173902014-05-22 06:32:02 +00007704 ether_addr_copy(netdev->dev_addr, mac_addr);
7705 ether_addr_copy(netdev->perm_addr, mac_addr);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007706 /* vlan gets same features (except vlan offload)
7707 * after any tweaks for specific VSI types
7708 */
7709 netdev->vlan_features = netdev->features & ~(NETIF_F_HW_VLAN_CTAG_TX |
7710 NETIF_F_HW_VLAN_CTAG_RX |
7711 NETIF_F_HW_VLAN_CTAG_FILTER);
7712 netdev->priv_flags |= IFF_UNICAST_FLT;
7713 netdev->priv_flags |= IFF_SUPP_NOFCS;
7714 /* Setup netdev TC information */
7715 i40e_vsi_config_netdev_tc(vsi, vsi->tc_config.enabled_tc);
7716
7717 netdev->netdev_ops = &i40e_netdev_ops;
7718 netdev->watchdog_timeo = 5 * HZ;
7719 i40e_set_ethtool_ops(netdev);
Vasu Dev38e00432014-08-01 13:27:03 -07007720#ifdef I40E_FCOE
7721 i40e_fcoe_config_netdev(netdev, vsi);
7722#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007723
7724 return 0;
7725}
7726
7727/**
7728 * i40e_vsi_delete - Delete a VSI from the switch
7729 * @vsi: the VSI being removed
7730 *
7731 * Returns 0 on success, negative value on failure
7732 **/
7733static void i40e_vsi_delete(struct i40e_vsi *vsi)
7734{
7735 /* remove default VSI is not allowed */
7736 if (vsi == vsi->back->vsi[vsi->back->lan_vsi])
7737 return;
7738
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007739 i40e_aq_delete_element(&vsi->back->hw, vsi->seid, NULL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007740}
7741
7742/**
7743 * i40e_add_vsi - Add a VSI to the switch
7744 * @vsi: the VSI being configured
7745 *
7746 * This initializes a VSI context depending on the VSI type to be added and
7747 * passes it down to the add_vsi aq command.
7748 **/
7749static int i40e_add_vsi(struct i40e_vsi *vsi)
7750{
7751 int ret = -ENODEV;
7752 struct i40e_mac_filter *f, *ftmp;
7753 struct i40e_pf *pf = vsi->back;
7754 struct i40e_hw *hw = &pf->hw;
7755 struct i40e_vsi_context ctxt;
7756 u8 enabled_tc = 0x1; /* TC0 enabled */
7757 int f_count = 0;
7758
7759 memset(&ctxt, 0, sizeof(ctxt));
7760 switch (vsi->type) {
7761 case I40E_VSI_MAIN:
7762 /* The PF's main VSI is already setup as part of the
7763 * device initialization, so we'll not bother with
7764 * the add_vsi call, but we will retrieve the current
7765 * VSI context.
7766 */
7767 ctxt.seid = pf->main_vsi_seid;
7768 ctxt.pf_num = pf->hw.pf_id;
7769 ctxt.vf_num = 0;
7770 ret = i40e_aq_get_vsi_params(&pf->hw, &ctxt, NULL);
7771 ctxt.flags = I40E_AQ_VSI_TYPE_PF;
7772 if (ret) {
7773 dev_info(&pf->pdev->dev,
7774 "couldn't get pf vsi config, err %d, aq_err %d\n",
7775 ret, pf->hw.aq.asq_last_status);
7776 return -ENOENT;
7777 }
7778 memcpy(&vsi->info, &ctxt.info, sizeof(ctxt.info));
7779 vsi->info.valid_sections = 0;
7780
7781 vsi->seid = ctxt.seid;
7782 vsi->id = ctxt.vsi_number;
7783
7784 enabled_tc = i40e_pf_get_tc_map(pf);
7785
7786 /* MFP mode setup queue map and update VSI */
7787 if (pf->flags & I40E_FLAG_MFP_ENABLED) {
7788 memset(&ctxt, 0, sizeof(ctxt));
7789 ctxt.seid = pf->main_vsi_seid;
7790 ctxt.pf_num = pf->hw.pf_id;
7791 ctxt.vf_num = 0;
7792 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, false);
7793 ret = i40e_aq_update_vsi_params(hw, &ctxt, NULL);
7794 if (ret) {
7795 dev_info(&pf->pdev->dev,
7796 "update vsi failed, aq_err=%d\n",
7797 pf->hw.aq.asq_last_status);
7798 ret = -ENOENT;
7799 goto err;
7800 }
7801 /* update the local VSI info queue map */
7802 i40e_vsi_update_queue_map(vsi, &ctxt);
7803 vsi->info.valid_sections = 0;
7804 } else {
7805 /* Default/Main VSI is only enabled for TC0
7806 * reconfigure it to enable all TCs that are
7807 * available on the port in SFP mode.
7808 */
7809 ret = i40e_vsi_config_tc(vsi, enabled_tc);
7810 if (ret) {
7811 dev_info(&pf->pdev->dev,
7812 "failed to configure TCs for main VSI tc_map 0x%08x, err %d, aq_err %d\n",
7813 enabled_tc, ret,
7814 pf->hw.aq.asq_last_status);
7815 ret = -ENOENT;
7816 }
7817 }
7818 break;
7819
7820 case I40E_VSI_FDIR:
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08007821 ctxt.pf_num = hw->pf_id;
7822 ctxt.vf_num = 0;
7823 ctxt.uplink_seid = vsi->uplink_seid;
7824 ctxt.connection_type = 0x1; /* regular data port */
7825 ctxt.flags = I40E_AQ_VSI_TYPE_PF;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007826 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007827 break;
7828
7829 case I40E_VSI_VMDQ2:
7830 ctxt.pf_num = hw->pf_id;
7831 ctxt.vf_num = 0;
7832 ctxt.uplink_seid = vsi->uplink_seid;
7833 ctxt.connection_type = 0x1; /* regular data port */
7834 ctxt.flags = I40E_AQ_VSI_TYPE_VMDQ2;
7835
7836 ctxt.info.valid_sections |= cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
7837
7838 /* This VSI is connected to VEB so the switch_id
7839 * should be set to zero by default.
7840 */
7841 ctxt.info.switch_id = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007842 ctxt.info.switch_id |= cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
7843
7844 /* Setup the VSI tx/rx queue map for TC0 only for now */
7845 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, true);
7846 break;
7847
7848 case I40E_VSI_SRIOV:
7849 ctxt.pf_num = hw->pf_id;
7850 ctxt.vf_num = vsi->vf_id + hw->func_caps.vf_base_id;
7851 ctxt.uplink_seid = vsi->uplink_seid;
7852 ctxt.connection_type = 0x1; /* regular data port */
7853 ctxt.flags = I40E_AQ_VSI_TYPE_VF;
7854
7855 ctxt.info.valid_sections |= cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
7856
7857 /* This VSI is connected to VEB so the switch_id
7858 * should be set to zero by default.
7859 */
7860 ctxt.info.switch_id = cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
7861
7862 ctxt.info.valid_sections |= cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
7863 ctxt.info.port_vlan_flags |= I40E_AQ_VSI_PVLAN_MODE_ALL;
Mitch Williamsc674d122014-05-20 08:01:40 +00007864 if (pf->vf[vsi->vf_id].spoofchk) {
7865 ctxt.info.valid_sections |=
7866 cpu_to_le16(I40E_AQ_VSI_PROP_SECURITY_VALID);
7867 ctxt.info.sec_flags |=
7868 (I40E_AQ_VSI_SEC_FLAG_ENABLE_VLAN_CHK |
7869 I40E_AQ_VSI_SEC_FLAG_ENABLE_MAC_CHK);
7870 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007871 /* Setup the VSI tx/rx queue map for TC0 only for now */
7872 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, true);
7873 break;
7874
Vasu Dev38e00432014-08-01 13:27:03 -07007875#ifdef I40E_FCOE
7876 case I40E_VSI_FCOE:
7877 ret = i40e_fcoe_vsi_init(vsi, &ctxt);
7878 if (ret) {
7879 dev_info(&pf->pdev->dev, "failed to initialize FCoE VSI\n");
7880 return ret;
7881 }
7882 break;
7883
7884#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007885 default:
7886 return -ENODEV;
7887 }
7888
7889 if (vsi->type != I40E_VSI_MAIN) {
7890 ret = i40e_aq_add_vsi(hw, &ctxt, NULL);
7891 if (ret) {
7892 dev_info(&vsi->back->pdev->dev,
7893 "add vsi failed, aq_err=%d\n",
7894 vsi->back->hw.aq.asq_last_status);
7895 ret = -ENOENT;
7896 goto err;
7897 }
7898 memcpy(&vsi->info, &ctxt.info, sizeof(ctxt.info));
7899 vsi->info.valid_sections = 0;
7900 vsi->seid = ctxt.seid;
7901 vsi->id = ctxt.vsi_number;
7902 }
7903
7904 /* If macvlan filters already exist, force them to get loaded */
7905 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
7906 f->changed = true;
7907 f_count++;
Shannon Nelson6252c7e2014-06-04 01:23:23 +00007908
7909 if (f->is_laa && vsi->type == I40E_VSI_MAIN) {
Shannon Nelson30650cc2014-07-29 04:01:50 +00007910 struct i40e_aqc_remove_macvlan_element_data element;
7911
7912 memset(&element, 0, sizeof(element));
7913 ether_addr_copy(element.mac_addr, f->macaddr);
7914 element.flags = I40E_AQC_MACVLAN_DEL_PERFECT_MATCH;
7915 ret = i40e_aq_remove_macvlan(hw, vsi->seid,
7916 &element, 1, NULL);
7917 if (ret) {
7918 /* some older FW has a different default */
7919 element.flags |=
7920 I40E_AQC_MACVLAN_DEL_IGNORE_VLAN;
7921 i40e_aq_remove_macvlan(hw, vsi->seid,
7922 &element, 1, NULL);
7923 }
7924
7925 i40e_aq_mac_address_write(hw,
Shannon Nelson6252c7e2014-06-04 01:23:23 +00007926 I40E_AQC_WRITE_TYPE_LAA_WOL,
7927 f->macaddr, NULL);
7928 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007929 }
7930 if (f_count) {
7931 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
7932 pf->flags |= I40E_FLAG_FILTER_SYNC;
7933 }
7934
7935 /* Update VSI BW information */
7936 ret = i40e_vsi_get_bw_info(vsi);
7937 if (ret) {
7938 dev_info(&pf->pdev->dev,
7939 "couldn't get vsi bw info, err %d, aq_err %d\n",
7940 ret, pf->hw.aq.asq_last_status);
7941 /* VSI is already added so not tearing that up */
7942 ret = 0;
7943 }
7944
7945err:
7946 return ret;
7947}
7948
7949/**
7950 * i40e_vsi_release - Delete a VSI and free its resources
7951 * @vsi: the VSI being removed
7952 *
7953 * Returns 0 on success or < 0 on error
7954 **/
7955int i40e_vsi_release(struct i40e_vsi *vsi)
7956{
7957 struct i40e_mac_filter *f, *ftmp;
7958 struct i40e_veb *veb = NULL;
7959 struct i40e_pf *pf;
7960 u16 uplink_seid;
7961 int i, n;
7962
7963 pf = vsi->back;
7964
7965 /* release of a VEB-owner or last VSI is not allowed */
7966 if (vsi->flags & I40E_VSI_FLAG_VEB_OWNER) {
7967 dev_info(&pf->pdev->dev, "VSI %d has existing VEB %d\n",
7968 vsi->seid, vsi->uplink_seid);
7969 return -ENODEV;
7970 }
7971 if (vsi == pf->vsi[pf->lan_vsi] &&
7972 !test_bit(__I40E_DOWN, &pf->state)) {
7973 dev_info(&pf->pdev->dev, "Can't remove PF VSI\n");
7974 return -ENODEV;
7975 }
7976
7977 uplink_seid = vsi->uplink_seid;
7978 if (vsi->type != I40E_VSI_SRIOV) {
7979 if (vsi->netdev_registered) {
7980 vsi->netdev_registered = false;
7981 if (vsi->netdev) {
7982 /* results in a call to i40e_close() */
7983 unregister_netdev(vsi->netdev);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007984 }
7985 } else {
Shannon Nelson90ef8d42014-03-14 07:32:26 +00007986 i40e_vsi_close(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007987 }
7988 i40e_vsi_disable_irq(vsi);
7989 }
7990
7991 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list)
7992 i40e_del_filter(vsi, f->macaddr, f->vlan,
7993 f->is_vf, f->is_netdev);
7994 i40e_sync_vsi_filters(vsi);
7995
7996 i40e_vsi_delete(vsi);
7997 i40e_vsi_free_q_vectors(vsi);
Shannon Nelsona4866592014-02-11 08:24:07 +00007998 if (vsi->netdev) {
7999 free_netdev(vsi->netdev);
8000 vsi->netdev = NULL;
8001 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008002 i40e_vsi_clear_rings(vsi);
8003 i40e_vsi_clear(vsi);
8004
8005 /* If this was the last thing on the VEB, except for the
8006 * controlling VSI, remove the VEB, which puts the controlling
8007 * VSI onto the next level down in the switch.
8008 *
8009 * Well, okay, there's one more exception here: don't remove
8010 * the orphan VEBs yet. We'll wait for an explicit remove request
8011 * from up the network stack.
8012 */
Mitch Williams505682c2014-05-20 08:01:37 +00008013 for (n = 0, i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008014 if (pf->vsi[i] &&
8015 pf->vsi[i]->uplink_seid == uplink_seid &&
8016 (pf->vsi[i]->flags & I40E_VSI_FLAG_VEB_OWNER) == 0) {
8017 n++; /* count the VSIs */
8018 }
8019 }
8020 for (i = 0; i < I40E_MAX_VEB; i++) {
8021 if (!pf->veb[i])
8022 continue;
8023 if (pf->veb[i]->uplink_seid == uplink_seid)
8024 n++; /* count the VEBs */
8025 if (pf->veb[i]->seid == uplink_seid)
8026 veb = pf->veb[i];
8027 }
8028 if (n == 0 && veb && veb->uplink_seid != 0)
8029 i40e_veb_release(veb);
8030
8031 return 0;
8032}
8033
8034/**
8035 * i40e_vsi_setup_vectors - Set up the q_vectors for the given VSI
8036 * @vsi: ptr to the VSI
8037 *
8038 * This should only be called after i40e_vsi_mem_alloc() which allocates the
8039 * corresponding SW VSI structure and initializes num_queue_pairs for the
8040 * newly allocated VSI.
8041 *
8042 * Returns 0 on success or negative on failure
8043 **/
8044static int i40e_vsi_setup_vectors(struct i40e_vsi *vsi)
8045{
8046 int ret = -ENOENT;
8047 struct i40e_pf *pf = vsi->back;
8048
Alexander Duyck493fb302013-09-28 07:01:44 +00008049 if (vsi->q_vectors[0]) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008050 dev_info(&pf->pdev->dev, "VSI %d has existing q_vectors\n",
8051 vsi->seid);
8052 return -EEXIST;
8053 }
8054
8055 if (vsi->base_vector) {
Jesse Brandeburgf29eaa32014-02-11 08:24:12 +00008056 dev_info(&pf->pdev->dev, "VSI %d has non-zero base vector %d\n",
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008057 vsi->seid, vsi->base_vector);
8058 return -EEXIST;
8059 }
8060
Greg Rose90e04072014-03-06 08:59:57 +00008061 ret = i40e_vsi_alloc_q_vectors(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008062 if (ret) {
8063 dev_info(&pf->pdev->dev,
8064 "failed to allocate %d q_vector for VSI %d, ret=%d\n",
8065 vsi->num_q_vectors, vsi->seid, ret);
8066 vsi->num_q_vectors = 0;
8067 goto vector_setup_out;
8068 }
8069
Shannon Nelson958a3e32013-09-28 07:13:28 +00008070 if (vsi->num_q_vectors)
8071 vsi->base_vector = i40e_get_lump(pf, pf->irq_pile,
8072 vsi->num_q_vectors, vsi->idx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008073 if (vsi->base_vector < 0) {
8074 dev_info(&pf->pdev->dev,
Shannon Nelson049a2be2014-10-17 03:14:50 +00008075 "failed to get tracking for %d vectors for VSI %d, err=%d\n",
8076 vsi->num_q_vectors, vsi->seid, vsi->base_vector);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008077 i40e_vsi_free_q_vectors(vsi);
8078 ret = -ENOENT;
8079 goto vector_setup_out;
8080 }
8081
8082vector_setup_out:
8083 return ret;
8084}
8085
8086/**
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00008087 * i40e_vsi_reinit_setup - return and reallocate resources for a VSI
8088 * @vsi: pointer to the vsi.
8089 *
8090 * This re-allocates a vsi's queue resources.
8091 *
8092 * Returns pointer to the successfully allocated and configured VSI sw struct
8093 * on success, otherwise returns NULL on failure.
8094 **/
8095static struct i40e_vsi *i40e_vsi_reinit_setup(struct i40e_vsi *vsi)
8096{
8097 struct i40e_pf *pf = vsi->back;
8098 u8 enabled_tc;
8099 int ret;
8100
8101 i40e_put_lump(pf->qp_pile, vsi->base_queue, vsi->idx);
8102 i40e_vsi_clear_rings(vsi);
8103
8104 i40e_vsi_free_arrays(vsi, false);
8105 i40e_set_num_rings_in_vsi(vsi);
8106 ret = i40e_vsi_alloc_arrays(vsi, false);
8107 if (ret)
8108 goto err_vsi;
8109
8110 ret = i40e_get_lump(pf, pf->qp_pile, vsi->alloc_queue_pairs, vsi->idx);
8111 if (ret < 0) {
Shannon Nelson049a2be2014-10-17 03:14:50 +00008112 dev_info(&pf->pdev->dev,
8113 "failed to get tracking for %d queues for VSI %d err=%d\n",
8114 vsi->alloc_queue_pairs, vsi->seid, ret);
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00008115 goto err_vsi;
8116 }
8117 vsi->base_queue = ret;
8118
8119 /* Update the FW view of the VSI. Force a reset of TC and queue
8120 * layout configurations.
8121 */
8122 enabled_tc = pf->vsi[pf->lan_vsi]->tc_config.enabled_tc;
8123 pf->vsi[pf->lan_vsi]->tc_config.enabled_tc = 0;
8124 pf->vsi[pf->lan_vsi]->seid = pf->main_vsi_seid;
8125 i40e_vsi_config_tc(pf->vsi[pf->lan_vsi], enabled_tc);
8126
8127 /* assign it some queues */
8128 ret = i40e_alloc_rings(vsi);
8129 if (ret)
8130 goto err_rings;
8131
8132 /* map all of the rings to the q_vectors */
8133 i40e_vsi_map_rings_to_vectors(vsi);
8134 return vsi;
8135
8136err_rings:
8137 i40e_vsi_free_q_vectors(vsi);
8138 if (vsi->netdev_registered) {
8139 vsi->netdev_registered = false;
8140 unregister_netdev(vsi->netdev);
8141 free_netdev(vsi->netdev);
8142 vsi->netdev = NULL;
8143 }
8144 i40e_aq_delete_element(&pf->hw, vsi->seid, NULL);
8145err_vsi:
8146 i40e_vsi_clear(vsi);
8147 return NULL;
8148}
8149
8150/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008151 * i40e_vsi_setup - Set up a VSI by a given type
8152 * @pf: board private structure
8153 * @type: VSI type
8154 * @uplink_seid: the switch element to link to
8155 * @param1: usage depends upon VSI type. For VF types, indicates VF id
8156 *
8157 * This allocates the sw VSI structure and its queue resources, then add a VSI
8158 * to the identified VEB.
8159 *
8160 * Returns pointer to the successfully allocated and configure VSI sw struct on
8161 * success, otherwise returns NULL on failure.
8162 **/
8163struct i40e_vsi *i40e_vsi_setup(struct i40e_pf *pf, u8 type,
8164 u16 uplink_seid, u32 param1)
8165{
8166 struct i40e_vsi *vsi = NULL;
8167 struct i40e_veb *veb = NULL;
8168 int ret, i;
8169 int v_idx;
8170
8171 /* The requested uplink_seid must be either
8172 * - the PF's port seid
8173 * no VEB is needed because this is the PF
8174 * or this is a Flow Director special case VSI
8175 * - seid of an existing VEB
8176 * - seid of a VSI that owns an existing VEB
8177 * - seid of a VSI that doesn't own a VEB
8178 * a new VEB is created and the VSI becomes the owner
8179 * - seid of the PF VSI, which is what creates the first VEB
8180 * this is a special case of the previous
8181 *
8182 * Find which uplink_seid we were given and create a new VEB if needed
8183 */
8184 for (i = 0; i < I40E_MAX_VEB; i++) {
8185 if (pf->veb[i] && pf->veb[i]->seid == uplink_seid) {
8186 veb = pf->veb[i];
8187 break;
8188 }
8189 }
8190
8191 if (!veb && uplink_seid != pf->mac_seid) {
8192
Mitch Williams505682c2014-05-20 08:01:37 +00008193 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008194 if (pf->vsi[i] && pf->vsi[i]->seid == uplink_seid) {
8195 vsi = pf->vsi[i];
8196 break;
8197 }
8198 }
8199 if (!vsi) {
8200 dev_info(&pf->pdev->dev, "no such uplink_seid %d\n",
8201 uplink_seid);
8202 return NULL;
8203 }
8204
8205 if (vsi->uplink_seid == pf->mac_seid)
8206 veb = i40e_veb_setup(pf, 0, pf->mac_seid, vsi->seid,
8207 vsi->tc_config.enabled_tc);
8208 else if ((vsi->flags & I40E_VSI_FLAG_VEB_OWNER) == 0)
8209 veb = i40e_veb_setup(pf, 0, vsi->uplink_seid, vsi->seid,
8210 vsi->tc_config.enabled_tc);
8211
8212 for (i = 0; i < I40E_MAX_VEB && !veb; i++) {
8213 if (pf->veb[i] && pf->veb[i]->seid == vsi->uplink_seid)
8214 veb = pf->veb[i];
8215 }
8216 if (!veb) {
8217 dev_info(&pf->pdev->dev, "couldn't add VEB\n");
8218 return NULL;
8219 }
8220
8221 vsi->flags |= I40E_VSI_FLAG_VEB_OWNER;
8222 uplink_seid = veb->seid;
8223 }
8224
8225 /* get vsi sw struct */
8226 v_idx = i40e_vsi_mem_alloc(pf, type);
8227 if (v_idx < 0)
8228 goto err_alloc;
8229 vsi = pf->vsi[v_idx];
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008230 if (!vsi)
8231 goto err_alloc;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008232 vsi->type = type;
8233 vsi->veb_idx = (veb ? veb->idx : I40E_NO_VEB);
8234
8235 if (type == I40E_VSI_MAIN)
8236 pf->lan_vsi = v_idx;
8237 else if (type == I40E_VSI_SRIOV)
8238 vsi->vf_id = param1;
8239 /* assign it some queues */
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008240 ret = i40e_get_lump(pf, pf->qp_pile, vsi->alloc_queue_pairs,
8241 vsi->idx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008242 if (ret < 0) {
Shannon Nelson049a2be2014-10-17 03:14:50 +00008243 dev_info(&pf->pdev->dev,
8244 "failed to get tracking for %d queues for VSI %d err=%d\n",
8245 vsi->alloc_queue_pairs, vsi->seid, ret);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008246 goto err_vsi;
8247 }
8248 vsi->base_queue = ret;
8249
8250 /* get a VSI from the hardware */
8251 vsi->uplink_seid = uplink_seid;
8252 ret = i40e_add_vsi(vsi);
8253 if (ret)
8254 goto err_vsi;
8255
8256 switch (vsi->type) {
8257 /* setup the netdev if needed */
8258 case I40E_VSI_MAIN:
8259 case I40E_VSI_VMDQ2:
Vasu Dev38e00432014-08-01 13:27:03 -07008260 case I40E_VSI_FCOE:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008261 ret = i40e_config_netdev(vsi);
8262 if (ret)
8263 goto err_netdev;
8264 ret = register_netdev(vsi->netdev);
8265 if (ret)
8266 goto err_netdev;
8267 vsi->netdev_registered = true;
8268 netif_carrier_off(vsi->netdev);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08008269#ifdef CONFIG_I40E_DCB
8270 /* Setup DCB netlink interface */
8271 i40e_dcbnl_setup(vsi);
8272#endif /* CONFIG_I40E_DCB */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008273 /* fall through */
8274
8275 case I40E_VSI_FDIR:
8276 /* set up vectors and rings if needed */
8277 ret = i40e_vsi_setup_vectors(vsi);
8278 if (ret)
8279 goto err_msix;
8280
8281 ret = i40e_alloc_rings(vsi);
8282 if (ret)
8283 goto err_rings;
8284
8285 /* map all of the rings to the q_vectors */
8286 i40e_vsi_map_rings_to_vectors(vsi);
8287
8288 i40e_vsi_reset_stats(vsi);
8289 break;
8290
8291 default:
8292 /* no netdev or rings for the other VSI types */
8293 break;
8294 }
8295
8296 return vsi;
8297
8298err_rings:
8299 i40e_vsi_free_q_vectors(vsi);
8300err_msix:
8301 if (vsi->netdev_registered) {
8302 vsi->netdev_registered = false;
8303 unregister_netdev(vsi->netdev);
8304 free_netdev(vsi->netdev);
8305 vsi->netdev = NULL;
8306 }
8307err_netdev:
8308 i40e_aq_delete_element(&pf->hw, vsi->seid, NULL);
8309err_vsi:
8310 i40e_vsi_clear(vsi);
8311err_alloc:
8312 return NULL;
8313}
8314
8315/**
8316 * i40e_veb_get_bw_info - Query VEB BW information
8317 * @veb: the veb to query
8318 *
8319 * Query the Tx scheduler BW configuration data for given VEB
8320 **/
8321static int i40e_veb_get_bw_info(struct i40e_veb *veb)
8322{
8323 struct i40e_aqc_query_switching_comp_ets_config_resp ets_data;
8324 struct i40e_aqc_query_switching_comp_bw_config_resp bw_data;
8325 struct i40e_pf *pf = veb->pf;
8326 struct i40e_hw *hw = &pf->hw;
8327 u32 tc_bw_max;
8328 int ret = 0;
8329 int i;
8330
8331 ret = i40e_aq_query_switch_comp_bw_config(hw, veb->seid,
8332 &bw_data, NULL);
8333 if (ret) {
8334 dev_info(&pf->pdev->dev,
8335 "query veb bw config failed, aq_err=%d\n",
8336 hw->aq.asq_last_status);
8337 goto out;
8338 }
8339
8340 ret = i40e_aq_query_switch_comp_ets_config(hw, veb->seid,
8341 &ets_data, NULL);
8342 if (ret) {
8343 dev_info(&pf->pdev->dev,
8344 "query veb bw ets config failed, aq_err=%d\n",
8345 hw->aq.asq_last_status);
8346 goto out;
8347 }
8348
8349 veb->bw_limit = le16_to_cpu(ets_data.port_bw_limit);
8350 veb->bw_max_quanta = ets_data.tc_bw_max;
8351 veb->is_abs_credits = bw_data.absolute_credits_enable;
Neerav Parikh23cd1f02014-11-12 00:18:41 +00008352 veb->enabled_tc = ets_data.tc_valid_bits;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008353 tc_bw_max = le16_to_cpu(bw_data.tc_bw_max[0]) |
8354 (le16_to_cpu(bw_data.tc_bw_max[1]) << 16);
8355 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
8356 veb->bw_tc_share_credits[i] = bw_data.tc_bw_share_credits[i];
8357 veb->bw_tc_limit_credits[i] =
8358 le16_to_cpu(bw_data.tc_bw_limits[i]);
8359 veb->bw_tc_max_quanta[i] = ((tc_bw_max >> (i*4)) & 0x7);
8360 }
8361
8362out:
8363 return ret;
8364}
8365
8366/**
8367 * i40e_veb_mem_alloc - Allocates the next available struct veb in the PF
8368 * @pf: board private structure
8369 *
8370 * On error: returns error code (negative)
8371 * On success: returns vsi index in PF (positive)
8372 **/
8373static int i40e_veb_mem_alloc(struct i40e_pf *pf)
8374{
8375 int ret = -ENOENT;
8376 struct i40e_veb *veb;
8377 int i;
8378
8379 /* Need to protect the allocation of switch elements at the PF level */
8380 mutex_lock(&pf->switch_mutex);
8381
8382 /* VEB list may be fragmented if VEB creation/destruction has
8383 * been happening. We can afford to do a quick scan to look
8384 * for any free slots in the list.
8385 *
8386 * find next empty veb slot, looping back around if necessary
8387 */
8388 i = 0;
8389 while ((i < I40E_MAX_VEB) && (pf->veb[i] != NULL))
8390 i++;
8391 if (i >= I40E_MAX_VEB) {
8392 ret = -ENOMEM;
8393 goto err_alloc_veb; /* out of VEB slots! */
8394 }
8395
8396 veb = kzalloc(sizeof(*veb), GFP_KERNEL);
8397 if (!veb) {
8398 ret = -ENOMEM;
8399 goto err_alloc_veb;
8400 }
8401 veb->pf = pf;
8402 veb->idx = i;
8403 veb->enabled_tc = 1;
8404
8405 pf->veb[i] = veb;
8406 ret = i;
8407err_alloc_veb:
8408 mutex_unlock(&pf->switch_mutex);
8409 return ret;
8410}
8411
8412/**
8413 * i40e_switch_branch_release - Delete a branch of the switch tree
8414 * @branch: where to start deleting
8415 *
8416 * This uses recursion to find the tips of the branch to be
8417 * removed, deleting until we get back to and can delete this VEB.
8418 **/
8419static void i40e_switch_branch_release(struct i40e_veb *branch)
8420{
8421 struct i40e_pf *pf = branch->pf;
8422 u16 branch_seid = branch->seid;
8423 u16 veb_idx = branch->idx;
8424 int i;
8425
8426 /* release any VEBs on this VEB - RECURSION */
8427 for (i = 0; i < I40E_MAX_VEB; i++) {
8428 if (!pf->veb[i])
8429 continue;
8430 if (pf->veb[i]->uplink_seid == branch->seid)
8431 i40e_switch_branch_release(pf->veb[i]);
8432 }
8433
8434 /* Release the VSIs on this VEB, but not the owner VSI.
8435 *
8436 * NOTE: Removing the last VSI on a VEB has the SIDE EFFECT of removing
8437 * the VEB itself, so don't use (*branch) after this loop.
8438 */
Mitch Williams505682c2014-05-20 08:01:37 +00008439 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008440 if (!pf->vsi[i])
8441 continue;
8442 if (pf->vsi[i]->uplink_seid == branch_seid &&
8443 (pf->vsi[i]->flags & I40E_VSI_FLAG_VEB_OWNER) == 0) {
8444 i40e_vsi_release(pf->vsi[i]);
8445 }
8446 }
8447
8448 /* There's one corner case where the VEB might not have been
8449 * removed, so double check it here and remove it if needed.
8450 * This case happens if the veb was created from the debugfs
8451 * commands and no VSIs were added to it.
8452 */
8453 if (pf->veb[veb_idx])
8454 i40e_veb_release(pf->veb[veb_idx]);
8455}
8456
8457/**
8458 * i40e_veb_clear - remove veb struct
8459 * @veb: the veb to remove
8460 **/
8461static void i40e_veb_clear(struct i40e_veb *veb)
8462{
8463 if (!veb)
8464 return;
8465
8466 if (veb->pf) {
8467 struct i40e_pf *pf = veb->pf;
8468
8469 mutex_lock(&pf->switch_mutex);
8470 if (pf->veb[veb->idx] == veb)
8471 pf->veb[veb->idx] = NULL;
8472 mutex_unlock(&pf->switch_mutex);
8473 }
8474
8475 kfree(veb);
8476}
8477
8478/**
8479 * i40e_veb_release - Delete a VEB and free its resources
8480 * @veb: the VEB being removed
8481 **/
8482void i40e_veb_release(struct i40e_veb *veb)
8483{
8484 struct i40e_vsi *vsi = NULL;
8485 struct i40e_pf *pf;
8486 int i, n = 0;
8487
8488 pf = veb->pf;
8489
8490 /* find the remaining VSI and check for extras */
Mitch Williams505682c2014-05-20 08:01:37 +00008491 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008492 if (pf->vsi[i] && pf->vsi[i]->uplink_seid == veb->seid) {
8493 n++;
8494 vsi = pf->vsi[i];
8495 }
8496 }
8497 if (n != 1) {
8498 dev_info(&pf->pdev->dev,
8499 "can't remove VEB %d with %d VSIs left\n",
8500 veb->seid, n);
8501 return;
8502 }
8503
8504 /* move the remaining VSI to uplink veb */
8505 vsi->flags &= ~I40E_VSI_FLAG_VEB_OWNER;
8506 if (veb->uplink_seid) {
8507 vsi->uplink_seid = veb->uplink_seid;
8508 if (veb->uplink_seid == pf->mac_seid)
8509 vsi->veb_idx = I40E_NO_VEB;
8510 else
8511 vsi->veb_idx = veb->veb_idx;
8512 } else {
8513 /* floating VEB */
8514 vsi->uplink_seid = pf->vsi[pf->lan_vsi]->uplink_seid;
8515 vsi->veb_idx = pf->vsi[pf->lan_vsi]->veb_idx;
8516 }
8517
8518 i40e_aq_delete_element(&pf->hw, veb->seid, NULL);
8519 i40e_veb_clear(veb);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008520}
8521
8522/**
8523 * i40e_add_veb - create the VEB in the switch
8524 * @veb: the VEB to be instantiated
8525 * @vsi: the controlling VSI
8526 **/
8527static int i40e_add_veb(struct i40e_veb *veb, struct i40e_vsi *vsi)
8528{
Greg Rose56747262013-11-28 06:39:37 +00008529 bool is_default = false;
Kevin Scotte1c51b952013-11-20 10:02:51 +00008530 bool is_cloud = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008531 int ret;
8532
8533 /* get a VEB from the hardware */
8534 ret = i40e_aq_add_veb(&veb->pf->hw, veb->uplink_seid, vsi->seid,
Kevin Scotte1c51b952013-11-20 10:02:51 +00008535 veb->enabled_tc, is_default,
8536 is_cloud, &veb->seid, NULL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008537 if (ret) {
8538 dev_info(&veb->pf->pdev->dev,
8539 "couldn't add VEB, err %d, aq_err %d\n",
8540 ret, veb->pf->hw.aq.asq_last_status);
8541 return -EPERM;
8542 }
8543
8544 /* get statistics counter */
8545 ret = i40e_aq_get_veb_parameters(&veb->pf->hw, veb->seid, NULL, NULL,
8546 &veb->stats_idx, NULL, NULL, NULL);
8547 if (ret) {
8548 dev_info(&veb->pf->pdev->dev,
8549 "couldn't get VEB statistics idx, err %d, aq_err %d\n",
8550 ret, veb->pf->hw.aq.asq_last_status);
8551 return -EPERM;
8552 }
8553 ret = i40e_veb_get_bw_info(veb);
8554 if (ret) {
8555 dev_info(&veb->pf->pdev->dev,
8556 "couldn't get VEB bw info, err %d, aq_err %d\n",
8557 ret, veb->pf->hw.aq.asq_last_status);
8558 i40e_aq_delete_element(&veb->pf->hw, veb->seid, NULL);
8559 return -ENOENT;
8560 }
8561
8562 vsi->uplink_seid = veb->seid;
8563 vsi->veb_idx = veb->idx;
8564 vsi->flags |= I40E_VSI_FLAG_VEB_OWNER;
8565
8566 return 0;
8567}
8568
8569/**
8570 * i40e_veb_setup - Set up a VEB
8571 * @pf: board private structure
8572 * @flags: VEB setup flags
8573 * @uplink_seid: the switch element to link to
8574 * @vsi_seid: the initial VSI seid
8575 * @enabled_tc: Enabled TC bit-map
8576 *
8577 * This allocates the sw VEB structure and links it into the switch
8578 * It is possible and legal for this to be a duplicate of an already
8579 * existing VEB. It is also possible for both uplink and vsi seids
8580 * to be zero, in order to create a floating VEB.
8581 *
8582 * Returns pointer to the successfully allocated VEB sw struct on
8583 * success, otherwise returns NULL on failure.
8584 **/
8585struct i40e_veb *i40e_veb_setup(struct i40e_pf *pf, u16 flags,
8586 u16 uplink_seid, u16 vsi_seid,
8587 u8 enabled_tc)
8588{
8589 struct i40e_veb *veb, *uplink_veb = NULL;
8590 int vsi_idx, veb_idx;
8591 int ret;
8592
8593 /* if one seid is 0, the other must be 0 to create a floating relay */
8594 if ((uplink_seid == 0 || vsi_seid == 0) &&
8595 (uplink_seid + vsi_seid != 0)) {
8596 dev_info(&pf->pdev->dev,
8597 "one, not both seid's are 0: uplink=%d vsi=%d\n",
8598 uplink_seid, vsi_seid);
8599 return NULL;
8600 }
8601
8602 /* make sure there is such a vsi and uplink */
Mitch Williams505682c2014-05-20 08:01:37 +00008603 for (vsi_idx = 0; vsi_idx < pf->num_alloc_vsi; vsi_idx++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008604 if (pf->vsi[vsi_idx] && pf->vsi[vsi_idx]->seid == vsi_seid)
8605 break;
Mitch Williams505682c2014-05-20 08:01:37 +00008606 if (vsi_idx >= pf->num_alloc_vsi && vsi_seid != 0) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008607 dev_info(&pf->pdev->dev, "vsi seid %d not found\n",
8608 vsi_seid);
8609 return NULL;
8610 }
8611
8612 if (uplink_seid && uplink_seid != pf->mac_seid) {
8613 for (veb_idx = 0; veb_idx < I40E_MAX_VEB; veb_idx++) {
8614 if (pf->veb[veb_idx] &&
8615 pf->veb[veb_idx]->seid == uplink_seid) {
8616 uplink_veb = pf->veb[veb_idx];
8617 break;
8618 }
8619 }
8620 if (!uplink_veb) {
8621 dev_info(&pf->pdev->dev,
8622 "uplink seid %d not found\n", uplink_seid);
8623 return NULL;
8624 }
8625 }
8626
8627 /* get veb sw struct */
8628 veb_idx = i40e_veb_mem_alloc(pf);
8629 if (veb_idx < 0)
8630 goto err_alloc;
8631 veb = pf->veb[veb_idx];
8632 veb->flags = flags;
8633 veb->uplink_seid = uplink_seid;
8634 veb->veb_idx = (uplink_veb ? uplink_veb->idx : I40E_NO_VEB);
8635 veb->enabled_tc = (enabled_tc ? enabled_tc : 0x1);
8636
8637 /* create the VEB in the switch */
8638 ret = i40e_add_veb(veb, pf->vsi[vsi_idx]);
8639 if (ret)
8640 goto err_veb;
Shannon Nelson1bb8b932014-04-23 04:49:54 +00008641 if (vsi_idx == pf->lan_vsi)
8642 pf->lan_veb = veb->idx;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008643
8644 return veb;
8645
8646err_veb:
8647 i40e_veb_clear(veb);
8648err_alloc:
8649 return NULL;
8650}
8651
8652/**
8653 * i40e_setup_pf_switch_element - set pf vars based on switch type
8654 * @pf: board private structure
8655 * @ele: element we are building info from
8656 * @num_reported: total number of elements
8657 * @printconfig: should we print the contents
8658 *
8659 * helper function to assist in extracting a few useful SEID values.
8660 **/
8661static void i40e_setup_pf_switch_element(struct i40e_pf *pf,
8662 struct i40e_aqc_switch_config_element_resp *ele,
8663 u16 num_reported, bool printconfig)
8664{
8665 u16 downlink_seid = le16_to_cpu(ele->downlink_seid);
8666 u16 uplink_seid = le16_to_cpu(ele->uplink_seid);
8667 u8 element_type = ele->element_type;
8668 u16 seid = le16_to_cpu(ele->seid);
8669
8670 if (printconfig)
8671 dev_info(&pf->pdev->dev,
8672 "type=%d seid=%d uplink=%d downlink=%d\n",
8673 element_type, seid, uplink_seid, downlink_seid);
8674
8675 switch (element_type) {
8676 case I40E_SWITCH_ELEMENT_TYPE_MAC:
8677 pf->mac_seid = seid;
8678 break;
8679 case I40E_SWITCH_ELEMENT_TYPE_VEB:
8680 /* Main VEB? */
8681 if (uplink_seid != pf->mac_seid)
8682 break;
8683 if (pf->lan_veb == I40E_NO_VEB) {
8684 int v;
8685
8686 /* find existing or else empty VEB */
8687 for (v = 0; v < I40E_MAX_VEB; v++) {
8688 if (pf->veb[v] && (pf->veb[v]->seid == seid)) {
8689 pf->lan_veb = v;
8690 break;
8691 }
8692 }
8693 if (pf->lan_veb == I40E_NO_VEB) {
8694 v = i40e_veb_mem_alloc(pf);
8695 if (v < 0)
8696 break;
8697 pf->lan_veb = v;
8698 }
8699 }
8700
8701 pf->veb[pf->lan_veb]->seid = seid;
8702 pf->veb[pf->lan_veb]->uplink_seid = pf->mac_seid;
8703 pf->veb[pf->lan_veb]->pf = pf;
8704 pf->veb[pf->lan_veb]->veb_idx = I40E_NO_VEB;
8705 break;
8706 case I40E_SWITCH_ELEMENT_TYPE_VSI:
8707 if (num_reported != 1)
8708 break;
8709 /* This is immediately after a reset so we can assume this is
8710 * the PF's VSI
8711 */
8712 pf->mac_seid = uplink_seid;
8713 pf->pf_seid = downlink_seid;
8714 pf->main_vsi_seid = seid;
8715 if (printconfig)
8716 dev_info(&pf->pdev->dev,
8717 "pf_seid=%d main_vsi_seid=%d\n",
8718 pf->pf_seid, pf->main_vsi_seid);
8719 break;
8720 case I40E_SWITCH_ELEMENT_TYPE_PF:
8721 case I40E_SWITCH_ELEMENT_TYPE_VF:
8722 case I40E_SWITCH_ELEMENT_TYPE_EMP:
8723 case I40E_SWITCH_ELEMENT_TYPE_BMC:
8724 case I40E_SWITCH_ELEMENT_TYPE_PE:
8725 case I40E_SWITCH_ELEMENT_TYPE_PA:
8726 /* ignore these for now */
8727 break;
8728 default:
8729 dev_info(&pf->pdev->dev, "unknown element type=%d seid=%d\n",
8730 element_type, seid);
8731 break;
8732 }
8733}
8734
8735/**
8736 * i40e_fetch_switch_configuration - Get switch config from firmware
8737 * @pf: board private structure
8738 * @printconfig: should we print the contents
8739 *
8740 * Get the current switch configuration from the device and
8741 * extract a few useful SEID values.
8742 **/
8743int i40e_fetch_switch_configuration(struct i40e_pf *pf, bool printconfig)
8744{
8745 struct i40e_aqc_get_switch_config_resp *sw_config;
8746 u16 next_seid = 0;
8747 int ret = 0;
8748 u8 *aq_buf;
8749 int i;
8750
8751 aq_buf = kzalloc(I40E_AQ_LARGE_BUF, GFP_KERNEL);
8752 if (!aq_buf)
8753 return -ENOMEM;
8754
8755 sw_config = (struct i40e_aqc_get_switch_config_resp *)aq_buf;
8756 do {
8757 u16 num_reported, num_total;
8758
8759 ret = i40e_aq_get_switch_config(&pf->hw, sw_config,
8760 I40E_AQ_LARGE_BUF,
8761 &next_seid, NULL);
8762 if (ret) {
8763 dev_info(&pf->pdev->dev,
8764 "get switch config failed %d aq_err=%x\n",
8765 ret, pf->hw.aq.asq_last_status);
8766 kfree(aq_buf);
8767 return -ENOENT;
8768 }
8769
8770 num_reported = le16_to_cpu(sw_config->header.num_reported);
8771 num_total = le16_to_cpu(sw_config->header.num_total);
8772
8773 if (printconfig)
8774 dev_info(&pf->pdev->dev,
8775 "header: %d reported %d total\n",
8776 num_reported, num_total);
8777
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008778 for (i = 0; i < num_reported; i++) {
8779 struct i40e_aqc_switch_config_element_resp *ele =
8780 &sw_config->element[i];
8781
8782 i40e_setup_pf_switch_element(pf, ele, num_reported,
8783 printconfig);
8784 }
8785 } while (next_seid != 0);
8786
8787 kfree(aq_buf);
8788 return ret;
8789}
8790
8791/**
8792 * i40e_setup_pf_switch - Setup the HW switch on startup or after reset
8793 * @pf: board private structure
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00008794 * @reinit: if the Main VSI needs to re-initialized.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008795 *
8796 * Returns 0 on success, negative value on failure
8797 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00008798static int i40e_setup_pf_switch(struct i40e_pf *pf, bool reinit)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008799{
8800 int ret;
8801
8802 /* find out what's out there already */
8803 ret = i40e_fetch_switch_configuration(pf, false);
8804 if (ret) {
8805 dev_info(&pf->pdev->dev,
8806 "couldn't fetch switch config, err %d, aq_err %d\n",
8807 ret, pf->hw.aq.asq_last_status);
8808 return ret;
8809 }
8810 i40e_pf_reset_stats(pf);
8811
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008812 /* first time setup */
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00008813 if (pf->lan_vsi == I40E_NO_VSI || reinit) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008814 struct i40e_vsi *vsi = NULL;
8815 u16 uplink_seid;
8816
8817 /* Set up the PF VSI associated with the PF's main VSI
8818 * that is already in the HW switch
8819 */
8820 if (pf->lan_veb != I40E_NO_VEB && pf->veb[pf->lan_veb])
8821 uplink_seid = pf->veb[pf->lan_veb]->seid;
8822 else
8823 uplink_seid = pf->mac_seid;
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00008824 if (pf->lan_vsi == I40E_NO_VSI)
8825 vsi = i40e_vsi_setup(pf, I40E_VSI_MAIN, uplink_seid, 0);
8826 else if (reinit)
8827 vsi = i40e_vsi_reinit_setup(pf->vsi[pf->lan_vsi]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008828 if (!vsi) {
8829 dev_info(&pf->pdev->dev, "setup of MAIN VSI failed\n");
8830 i40e_fdir_teardown(pf);
8831 return -EAGAIN;
8832 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008833 } else {
8834 /* force a reset of TC and queue layout configurations */
8835 u8 enabled_tc = pf->vsi[pf->lan_vsi]->tc_config.enabled_tc;
8836 pf->vsi[pf->lan_vsi]->tc_config.enabled_tc = 0;
8837 pf->vsi[pf->lan_vsi]->seid = pf->main_vsi_seid;
8838 i40e_vsi_config_tc(pf->vsi[pf->lan_vsi], enabled_tc);
8839 }
8840 i40e_vlan_stripping_disable(pf->vsi[pf->lan_vsi]);
8841
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008842 i40e_fdir_sb_setup(pf);
8843
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008844 /* Setup static PF queue filter control settings */
8845 ret = i40e_setup_pf_filter_control(pf);
8846 if (ret) {
8847 dev_info(&pf->pdev->dev, "setup_pf_filter_control failed: %d\n",
8848 ret);
8849 /* Failure here should not stop continuing other steps */
8850 }
8851
8852 /* enable RSS in the HW, even for only one queue, as the stack can use
8853 * the hash
8854 */
8855 if ((pf->flags & I40E_FLAG_RSS_ENABLED))
8856 i40e_config_rss(pf);
8857
8858 /* fill in link information and enable LSE reporting */
Catherine Sullivan8109e122014-06-04 08:45:24 +00008859 i40e_update_link_info(&pf->hw, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008860 i40e_link_event(pf);
8861
Jesse Brandeburgd52c20b2013-11-26 10:49:15 +00008862 /* Initialize user-specific link properties */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008863 pf->fc_autoneg_status = ((pf->hw.phy.link_info.an_info &
8864 I40E_AQ_AN_COMPLETED) ? true : false);
Jesse Brandeburgd52c20b2013-11-26 10:49:15 +00008865
Mitch Williamsa34a6712014-09-13 07:40:46 +00008866 /* fill in link information and enable LSE reporting */
8867 i40e_update_link_info(&pf->hw, true);
8868 i40e_link_event(pf);
8869
8870 /* Initialize user-specific link properties */
8871 pf->fc_autoneg_status = ((pf->hw.phy.link_info.an_info &
8872 I40E_AQ_AN_COMPLETED) ? true : false);
8873
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00008874 i40e_ptp_init(pf);
8875
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008876 return ret;
8877}
8878
8879/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008880 * i40e_determine_queue_usage - Work out queue distribution
8881 * @pf: board private structure
8882 **/
8883static void i40e_determine_queue_usage(struct i40e_pf *pf)
8884{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008885 int queues_left;
8886
8887 pf->num_lan_qps = 0;
Vasu Dev38e00432014-08-01 13:27:03 -07008888#ifdef I40E_FCOE
8889 pf->num_fcoe_qps = 0;
8890#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008891
8892 /* Find the max queues to be put into basic use. We'll always be
8893 * using TC0, whether or not DCB is running, and TC0 will get the
8894 * big RSS set.
8895 */
8896 queues_left = pf->hw.func_caps.num_tx_qp;
8897
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008898 if ((queues_left == 1) ||
Frank Zhang9aa7e932014-05-20 08:01:42 +00008899 !(pf->flags & I40E_FLAG_MSIX_ENABLED)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008900 /* one qp for PF, no queues for anything else */
8901 queues_left = 0;
8902 pf->rss_size = pf->num_lan_qps = 1;
8903
8904 /* make sure all the fancies are disabled */
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08008905 pf->flags &= ~(I40E_FLAG_RSS_ENABLED |
Vasu Dev38e00432014-08-01 13:27:03 -07008906#ifdef I40E_FCOE
8907 I40E_FLAG_FCOE_ENABLED |
8908#endif
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08008909 I40E_FLAG_FD_SB_ENABLED |
8910 I40E_FLAG_FD_ATR_ENABLED |
Neerav Parikh4d9b6042014-05-22 06:31:51 +00008911 I40E_FLAG_DCB_CAPABLE |
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08008912 I40E_FLAG_SRIOV_ENABLED |
8913 I40E_FLAG_VMDQ_ENABLED);
Frank Zhang9aa7e932014-05-20 08:01:42 +00008914 } else if (!(pf->flags & (I40E_FLAG_RSS_ENABLED |
8915 I40E_FLAG_FD_SB_ENABLED |
Anjali Singhai Jainbbe7d0e2014-05-20 08:01:44 +00008916 I40E_FLAG_FD_ATR_ENABLED |
Neerav Parikh4d9b6042014-05-22 06:31:51 +00008917 I40E_FLAG_DCB_CAPABLE))) {
Frank Zhang9aa7e932014-05-20 08:01:42 +00008918 /* one qp for PF */
8919 pf->rss_size = pf->num_lan_qps = 1;
8920 queues_left -= pf->num_lan_qps;
8921
8922 pf->flags &= ~(I40E_FLAG_RSS_ENABLED |
Vasu Dev38e00432014-08-01 13:27:03 -07008923#ifdef I40E_FCOE
8924 I40E_FLAG_FCOE_ENABLED |
8925#endif
Frank Zhang9aa7e932014-05-20 08:01:42 +00008926 I40E_FLAG_FD_SB_ENABLED |
8927 I40E_FLAG_FD_ATR_ENABLED |
8928 I40E_FLAG_DCB_ENABLED |
8929 I40E_FLAG_VMDQ_ENABLED);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008930 } else {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008931 /* Not enough queues for all TCs */
Neerav Parikh4d9b6042014-05-22 06:31:51 +00008932 if ((pf->flags & I40E_FLAG_DCB_CAPABLE) &&
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008933 (queues_left < I40E_MAX_TRAFFIC_CLASS)) {
Neerav Parikh4d9b6042014-05-22 06:31:51 +00008934 pf->flags &= ~I40E_FLAG_DCB_CAPABLE;
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008935 dev_info(&pf->pdev->dev, "not enough queues for DCB. DCB is disabled.\n");
8936 }
8937 pf->num_lan_qps = pf->rss_size_max;
8938 queues_left -= pf->num_lan_qps;
8939 }
8940
Vasu Dev38e00432014-08-01 13:27:03 -07008941#ifdef I40E_FCOE
8942 if (pf->flags & I40E_FLAG_FCOE_ENABLED) {
8943 if (I40E_DEFAULT_FCOE <= queues_left) {
8944 pf->num_fcoe_qps = I40E_DEFAULT_FCOE;
8945 } else if (I40E_MINIMUM_FCOE <= queues_left) {
8946 pf->num_fcoe_qps = I40E_MINIMUM_FCOE;
8947 } else {
8948 pf->num_fcoe_qps = 0;
8949 pf->flags &= ~I40E_FLAG_FCOE_ENABLED;
8950 dev_info(&pf->pdev->dev, "not enough queues for FCoE. FCoE feature will be disabled\n");
8951 }
8952
8953 queues_left -= pf->num_fcoe_qps;
8954 }
8955
8956#endif
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008957 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
8958 if (queues_left > 1) {
8959 queues_left -= 1; /* save 1 queue for FD */
8960 } else {
8961 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
8962 dev_info(&pf->pdev->dev, "not enough queues for Flow Director. Flow Director feature is disabled\n");
8963 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008964 }
8965
8966 if ((pf->flags & I40E_FLAG_SRIOV_ENABLED) &&
8967 pf->num_vf_qps && pf->num_req_vfs && queues_left) {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008968 pf->num_req_vfs = min_t(int, pf->num_req_vfs,
8969 (queues_left / pf->num_vf_qps));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008970 queues_left -= (pf->num_req_vfs * pf->num_vf_qps);
8971 }
8972
8973 if ((pf->flags & I40E_FLAG_VMDQ_ENABLED) &&
8974 pf->num_vmdq_vsis && pf->num_vmdq_qps && queues_left) {
8975 pf->num_vmdq_vsis = min_t(int, pf->num_vmdq_vsis,
8976 (queues_left / pf->num_vmdq_qps));
8977 queues_left -= (pf->num_vmdq_vsis * pf->num_vmdq_qps);
8978 }
8979
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00008980 pf->queues_left = queues_left;
Vasu Dev38e00432014-08-01 13:27:03 -07008981#ifdef I40E_FCOE
8982 dev_info(&pf->pdev->dev, "fcoe queues = %d\n", pf->num_fcoe_qps);
8983#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008984}
8985
8986/**
8987 * i40e_setup_pf_filter_control - Setup PF static filter control
8988 * @pf: PF to be setup
8989 *
8990 * i40e_setup_pf_filter_control sets up a pf's initial filter control
8991 * settings. If PE/FCoE are enabled then it will also set the per PF
8992 * based filter sizes required for them. It also enables Flow director,
8993 * ethertype and macvlan type filter settings for the pf.
8994 *
8995 * Returns 0 on success, negative on failure
8996 **/
8997static int i40e_setup_pf_filter_control(struct i40e_pf *pf)
8998{
8999 struct i40e_filter_control_settings *settings = &pf->filter_settings;
9000
9001 settings->hash_lut_size = I40E_HASH_LUT_SIZE_128;
9002
9003 /* Flow Director is enabled */
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08009004 if (pf->flags & (I40E_FLAG_FD_SB_ENABLED | I40E_FLAG_FD_ATR_ENABLED))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009005 settings->enable_fdir = true;
9006
9007 /* Ethtype and MACVLAN filters enabled for PF */
9008 settings->enable_ethtype = true;
9009 settings->enable_macvlan = true;
9010
9011 if (i40e_set_filter_control(&pf->hw, settings))
9012 return -ENOENT;
9013
9014 return 0;
9015}
9016
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00009017#define INFO_STRING_LEN 255
9018static void i40e_print_features(struct i40e_pf *pf)
9019{
9020 struct i40e_hw *hw = &pf->hw;
9021 char *buf, *string;
9022
9023 string = kzalloc(INFO_STRING_LEN, GFP_KERNEL);
9024 if (!string) {
9025 dev_err(&pf->pdev->dev, "Features string allocation failed\n");
9026 return;
9027 }
9028
9029 buf = string;
9030
9031 buf += sprintf(string, "Features: PF-id[%d] ", hw->pf_id);
9032#ifdef CONFIG_PCI_IOV
9033 buf += sprintf(buf, "VFs: %d ", pf->num_req_vfs);
9034#endif
9035 buf += sprintf(buf, "VSIs: %d QP: %d ", pf->hw.func_caps.num_vsis,
9036 pf->vsi[pf->lan_vsi]->num_queue_pairs);
9037
9038 if (pf->flags & I40E_FLAG_RSS_ENABLED)
9039 buf += sprintf(buf, "RSS ");
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00009040 if (pf->flags & I40E_FLAG_FD_ATR_ENABLED)
Akeem G Abodunrinc6423ff2014-05-10 04:49:08 +00009041 buf += sprintf(buf, "FD_ATR ");
9042 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
9043 buf += sprintf(buf, "FD_SB ");
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00009044 buf += sprintf(buf, "NTUPLE ");
Akeem G Abodunrinc6423ff2014-05-10 04:49:08 +00009045 }
Neerav Parikh4d9b6042014-05-22 06:31:51 +00009046 if (pf->flags & I40E_FLAG_DCB_CAPABLE)
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00009047 buf += sprintf(buf, "DCB ");
9048 if (pf->flags & I40E_FLAG_PTP)
9049 buf += sprintf(buf, "PTP ");
Vasu Dev38e00432014-08-01 13:27:03 -07009050#ifdef I40E_FCOE
9051 if (pf->flags & I40E_FLAG_FCOE_ENABLED)
9052 buf += sprintf(buf, "FCOE ");
9053#endif
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00009054
9055 BUG_ON(buf > (string + INFO_STRING_LEN));
9056 dev_info(&pf->pdev->dev, "%s\n", string);
9057 kfree(string);
9058}
9059
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009060/**
9061 * i40e_probe - Device initialization routine
9062 * @pdev: PCI device information struct
9063 * @ent: entry in i40e_pci_tbl
9064 *
9065 * i40e_probe initializes a pf identified by a pci_dev structure.
9066 * The OS initialization, configuring of the pf private structure,
9067 * and a hardware reset occur.
9068 *
9069 * Returns 0 on success, negative on failure
9070 **/
9071static int i40e_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
9072{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009073 struct i40e_pf *pf;
9074 struct i40e_hw *hw;
Anjali Singhai Jain93cd7652013-11-20 10:03:01 +00009075 static u16 pfs_found;
Catherine Sullivand4dfb812013-11-28 06:39:21 +00009076 u16 link_status;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009077 int err = 0;
9078 u32 len;
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00009079 u32 i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009080
9081 err = pci_enable_device_mem(pdev);
9082 if (err)
9083 return err;
9084
9085 /* set up for high or low dma */
Mitch Williams64942942014-02-11 08:26:33 +00009086 err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64));
Mitch Williams64942942014-02-11 08:26:33 +00009087 if (err) {
Jean Sacrene3e3bfd2014-03-25 04:30:27 +00009088 err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
9089 if (err) {
9090 dev_err(&pdev->dev,
9091 "DMA configuration failed: 0x%x\n", err);
9092 goto err_dma;
9093 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009094 }
9095
9096 /* set up pci connections */
9097 err = pci_request_selected_regions(pdev, pci_select_bars(pdev,
9098 IORESOURCE_MEM), i40e_driver_name);
9099 if (err) {
9100 dev_info(&pdev->dev,
9101 "pci_request_selected_regions failed %d\n", err);
9102 goto err_pci_reg;
9103 }
9104
9105 pci_enable_pcie_error_reporting(pdev);
9106 pci_set_master(pdev);
9107
9108 /* Now that we have a PCI connection, we need to do the
9109 * low level device setup. This is primarily setting up
9110 * the Admin Queue structures and then querying for the
9111 * device's current profile information.
9112 */
9113 pf = kzalloc(sizeof(*pf), GFP_KERNEL);
9114 if (!pf) {
9115 err = -ENOMEM;
9116 goto err_pf_alloc;
9117 }
9118 pf->next_vsi = 0;
9119 pf->pdev = pdev;
9120 set_bit(__I40E_DOWN, &pf->state);
9121
9122 hw = &pf->hw;
9123 hw->back = pf;
9124 hw->hw_addr = ioremap(pci_resource_start(pdev, 0),
9125 pci_resource_len(pdev, 0));
9126 if (!hw->hw_addr) {
9127 err = -EIO;
9128 dev_info(&pdev->dev, "ioremap(0x%04x, 0x%04x) failed: 0x%x\n",
9129 (unsigned int)pci_resource_start(pdev, 0),
9130 (unsigned int)pci_resource_len(pdev, 0), err);
9131 goto err_ioremap;
9132 }
9133 hw->vendor_id = pdev->vendor;
9134 hw->device_id = pdev->device;
9135 pci_read_config_byte(pdev, PCI_REVISION_ID, &hw->revision_id);
9136 hw->subsystem_vendor_id = pdev->subsystem_vendor;
9137 hw->subsystem_device_id = pdev->subsystem_device;
9138 hw->bus.device = PCI_SLOT(pdev->devfn);
9139 hw->bus.func = PCI_FUNC(pdev->devfn);
Anjali Singhai Jain93cd7652013-11-20 10:03:01 +00009140 pf->instance = pfs_found;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009141
Shannon Nelson5b5faa42014-10-17 03:14:51 +00009142 if (debug != -1) {
9143 pf->msg_enable = pf->hw.debug_mask;
9144 pf->msg_enable = debug;
9145 }
9146
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00009147 /* do a special CORER for clearing PXE mode once at init */
9148 if (hw->revision_id == 0 &&
9149 (rd32(hw, I40E_GLLAN_RCTL_0) & I40E_GLLAN_RCTL_0_PXE_MODE_MASK)) {
9150 wr32(hw, I40E_GLGEN_RTRIG, I40E_GLGEN_RTRIG_CORER_MASK);
9151 i40e_flush(hw);
9152 msleep(200);
9153 pf->corer_count++;
9154
9155 i40e_clear_pxe_mode(hw);
9156 }
9157
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009158 /* Reset here to make sure all is clean and to define PF 'n' */
Shannon Nelson838d41d2014-06-04 20:41:27 +00009159 i40e_clear_hw(hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009160 err = i40e_pf_reset(hw);
9161 if (err) {
9162 dev_info(&pdev->dev, "Initial pf_reset failed: %d\n", err);
9163 goto err_pf_reset;
9164 }
9165 pf->pfr_count++;
9166
9167 hw->aq.num_arq_entries = I40E_AQ_LEN;
9168 hw->aq.num_asq_entries = I40E_AQ_LEN;
9169 hw->aq.arq_buf_size = I40E_MAX_AQ_BUF_SIZE;
9170 hw->aq.asq_buf_size = I40E_MAX_AQ_BUF_SIZE;
9171 pf->adminq_work_limit = I40E_AQ_WORK_LIMIT;
9172 snprintf(pf->misc_int_name, sizeof(pf->misc_int_name) - 1,
9173 "%s-pf%d:misc",
9174 dev_driver_string(&pf->pdev->dev), pf->hw.pf_id);
9175
9176 err = i40e_init_shared_code(hw);
9177 if (err) {
9178 dev_info(&pdev->dev, "init_shared_code failed: %d\n", err);
9179 goto err_pf_reset;
9180 }
9181
Jesse Brandeburgd52c20b2013-11-26 10:49:15 +00009182 /* set up a default setting for link flow control */
9183 pf->hw.fc.requested_mode = I40E_FC_NONE;
9184
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009185 err = i40e_init_adminq(hw);
9186 dev_info(&pdev->dev, "%s\n", i40e_fw_version_str(hw));
9187 if (err) {
9188 dev_info(&pdev->dev,
Catherine Sullivan7aa67612014-07-09 07:46:17 +00009189 "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 +00009190 goto err_pf_reset;
9191 }
9192
Catherine Sullivan7aa67612014-07-09 07:46:17 +00009193 if (hw->aq.api_maj_ver == I40E_FW_API_VERSION_MAJOR &&
9194 hw->aq.api_min_ver > I40E_FW_API_VERSION_MINOR)
Shannon Nelson278b6f62014-06-04 01:41:03 +00009195 dev_info(&pdev->dev,
Catherine Sullivan7aa67612014-07-09 07:46:17 +00009196 "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");
9197 else if (hw->aq.api_maj_ver < I40E_FW_API_VERSION_MAJOR ||
9198 hw->aq.api_min_ver < (I40E_FW_API_VERSION_MINOR - 1))
Shannon Nelson278b6f62014-06-04 01:41:03 +00009199 dev_info(&pdev->dev,
Catherine Sullivan7aa67612014-07-09 07:46:17 +00009200 "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 +00009201
9202
Shannon Nelson4eb3f762014-03-06 08:59:58 +00009203 i40e_verify_eeprom(pf);
9204
Jesse Brandeburg2c5fe332014-04-23 04:49:57 +00009205 /* Rev 0 hardware was never productized */
9206 if (hw->revision_id < 1)
9207 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");
9208
Shannon Nelson6ff4ef82013-12-21 05:44:49 +00009209 i40e_clear_pxe_mode(hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009210 err = i40e_get_capabilities(pf);
9211 if (err)
9212 goto err_adminq_setup;
9213
9214 err = i40e_sw_init(pf);
9215 if (err) {
9216 dev_info(&pdev->dev, "sw_init failed: %d\n", err);
9217 goto err_sw_init;
9218 }
9219
9220 err = i40e_init_lan_hmc(hw, hw->func_caps.num_tx_qp,
9221 hw->func_caps.num_rx_qp,
9222 pf->fcoe_hmc_cntx_num, pf->fcoe_hmc_filt_num);
9223 if (err) {
9224 dev_info(&pdev->dev, "init_lan_hmc failed: %d\n", err);
9225 goto err_init_lan_hmc;
9226 }
9227
9228 err = i40e_configure_lan_hmc(hw, I40E_HMC_MODEL_DIRECT_ONLY);
9229 if (err) {
9230 dev_info(&pdev->dev, "configure_lan_hmc failed: %d\n", err);
9231 err = -ENOENT;
9232 goto err_configure_lan_hmc;
9233 }
9234
9235 i40e_get_mac_addr(hw, hw->mac.addr);
Jesse Brandeburgf62b5062013-11-28 06:39:27 +00009236 if (!is_valid_ether_addr(hw->mac.addr)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009237 dev_info(&pdev->dev, "invalid MAC address %pM\n", hw->mac.addr);
9238 err = -EIO;
9239 goto err_mac_addr;
9240 }
9241 dev_info(&pdev->dev, "MAC address: %pM\n", hw->mac.addr);
Greg Rose9a173902014-05-22 06:32:02 +00009242 ether_addr_copy(hw->mac.perm_addr, hw->mac.addr);
Neerav Parikh1f224ad2014-02-12 01:45:31 +00009243 i40e_get_port_mac_addr(hw, hw->mac.port_addr);
9244 if (is_valid_ether_addr(hw->mac.port_addr))
9245 pf->flags |= I40E_FLAG_PORT_ID_VALID;
Vasu Dev38e00432014-08-01 13:27:03 -07009246#ifdef I40E_FCOE
9247 err = i40e_get_san_mac_addr(hw, hw->mac.san_addr);
9248 if (err)
9249 dev_info(&pdev->dev,
9250 "(non-fatal) SAN MAC retrieval failed: %d\n", err);
9251 if (!is_valid_ether_addr(hw->mac.san_addr)) {
9252 dev_warn(&pdev->dev, "invalid SAN MAC address %pM, falling back to LAN MAC\n",
9253 hw->mac.san_addr);
9254 ether_addr_copy(hw->mac.san_addr, hw->mac.addr);
9255 }
9256 dev_info(&pf->pdev->dev, "SAN MAC: %pM\n", hw->mac.san_addr);
9257#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009258
9259 pci_set_drvdata(pdev, pf);
9260 pci_save_state(pdev);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08009261#ifdef CONFIG_I40E_DCB
9262 err = i40e_init_pf_dcb(pf);
9263 if (err) {
9264 dev_info(&pdev->dev, "init_pf_dcb failed: %d\n", err);
Neerav Parikh4d9b6042014-05-22 06:31:51 +00009265 pf->flags &= ~I40E_FLAG_DCB_CAPABLE;
Neerav Parikh014269f2014-04-01 07:11:48 +00009266 /* Continue without DCB enabled */
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08009267 }
9268#endif /* CONFIG_I40E_DCB */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009269
9270 /* set up periodic task facility */
9271 setup_timer(&pf->service_timer, i40e_service_timer, (unsigned long)pf);
9272 pf->service_timer_period = HZ;
9273
9274 INIT_WORK(&pf->service_task, i40e_service_task);
9275 clear_bit(__I40E_SERVICE_SCHED, &pf->state);
9276 pf->flags |= I40E_FLAG_NEED_LINK_UPDATE;
9277 pf->link_check_timeout = jiffies;
9278
Shannon Nelson8e2773a2013-11-28 06:39:22 +00009279 /* WoL defaults to disabled */
9280 pf->wol_en = false;
9281 device_set_wakeup_enable(&pf->pdev->dev, pf->wol_en);
9282
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009283 /* set up the main switch operations */
9284 i40e_determine_queue_usage(pf);
9285 i40e_init_interrupt_scheme(pf);
9286
Mitch Williams505682c2014-05-20 08:01:37 +00009287 /* The number of VSIs reported by the FW is the minimum guaranteed
9288 * to us; HW supports far more and we share the remaining pool with
9289 * the other PFs. We allocate space for more than the guarantee with
9290 * the understanding that we might not get them all later.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009291 */
Mitch Williams505682c2014-05-20 08:01:37 +00009292 if (pf->hw.func_caps.num_vsis < I40E_MIN_VSI_ALLOC)
9293 pf->num_alloc_vsi = I40E_MIN_VSI_ALLOC;
9294 else
9295 pf->num_alloc_vsi = pf->hw.func_caps.num_vsis;
9296
9297 /* Set up the *vsi struct and our local tracking of the MAIN PF vsi. */
9298 len = sizeof(struct i40e_vsi *) * pf->num_alloc_vsi;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009299 pf->vsi = kzalloc(len, GFP_KERNEL);
Wei Yongjuned87ac02013-09-24 05:17:25 +00009300 if (!pf->vsi) {
9301 err = -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009302 goto err_switch_setup;
Wei Yongjuned87ac02013-09-24 05:17:25 +00009303 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009304
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00009305 err = i40e_setup_pf_switch(pf, false);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009306 if (err) {
9307 dev_info(&pdev->dev, "setup_pf_switch failed: %d\n", err);
9308 goto err_vsis;
9309 }
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00009310 /* if FDIR VSI was set up, start it now */
Mitch Williams505682c2014-05-20 08:01:37 +00009311 for (i = 0; i < pf->num_alloc_vsi; i++) {
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00009312 if (pf->vsi[i] && pf->vsi[i]->type == I40E_VSI_FDIR) {
9313 i40e_vsi_open(pf->vsi[i]);
9314 break;
9315 }
9316 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009317
Jesse Brandeburg7e2453f2014-09-13 07:40:41 +00009318 /* driver is only interested in link up/down and module qualification
9319 * reports from firmware
9320 */
9321 err = i40e_aq_set_phy_int_mask(&pf->hw,
9322 I40E_AQ_EVENT_LINK_UPDOWN |
9323 I40E_AQ_EVENT_MODULE_QUAL_FAIL, NULL);
9324 if (err)
9325 dev_info(&pf->pdev->dev, "set phy mask fail, aq_err %d\n", err);
9326
Anjali Singhai Jaincafa2ee2014-09-13 07:40:45 +00009327 msleep(75);
9328 err = i40e_aq_set_link_restart_an(&pf->hw, true, NULL);
9329 if (err) {
9330 dev_info(&pf->pdev->dev, "link restart failed, aq_err=%d\n",
9331 pf->hw.aq.asq_last_status);
9332 }
9333
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009334 /* The main driver is (mostly) up and happy. We need to set this state
9335 * before setting up the misc vector or we get a race and the vector
9336 * ends up disabled forever.
9337 */
9338 clear_bit(__I40E_DOWN, &pf->state);
9339
9340 /* In case of MSIX we are going to setup the misc vector right here
9341 * to handle admin queue events etc. In case of legacy and MSI
9342 * the misc functionality and queue processing is combined in
9343 * the same vector and that gets setup at open.
9344 */
9345 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
9346 err = i40e_setup_misc_vector(pf);
9347 if (err) {
9348 dev_info(&pdev->dev,
9349 "setup of misc vector failed: %d\n", err);
9350 goto err_vsis;
9351 }
9352 }
9353
Greg Rosedf805f62014-04-04 04:43:16 +00009354#ifdef CONFIG_PCI_IOV
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009355 /* prep for VF support */
9356 if ((pf->flags & I40E_FLAG_SRIOV_ENABLED) &&
Shannon Nelson4eb3f762014-03-06 08:59:58 +00009357 (pf->flags & I40E_FLAG_MSIX_ENABLED) &&
9358 !test_bit(__I40E_BAD_EEPROM, &pf->state)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009359 u32 val;
9360
9361 /* disable link interrupts for VFs */
9362 val = rd32(hw, I40E_PFGEN_PORTMDIO_NUM);
9363 val &= ~I40E_PFGEN_PORTMDIO_NUM_VFLINK_STAT_ENA_MASK;
9364 wr32(hw, I40E_PFGEN_PORTMDIO_NUM, val);
9365 i40e_flush(hw);
Mitch Williams4aeec012014-02-13 03:48:47 -08009366
9367 if (pci_num_vf(pdev)) {
9368 dev_info(&pdev->dev,
9369 "Active VFs found, allocating resources.\n");
9370 err = i40e_alloc_vfs(pf, pci_num_vf(pdev));
9371 if (err)
9372 dev_info(&pdev->dev,
9373 "Error %d allocating resources for existing VFs\n",
9374 err);
9375 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009376 }
Greg Rosedf805f62014-04-04 04:43:16 +00009377#endif /* CONFIG_PCI_IOV */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009378
Anjali Singhai Jain93cd7652013-11-20 10:03:01 +00009379 pfs_found++;
9380
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009381 i40e_dbg_pf_init(pf);
9382
9383 /* tell the firmware that we're starting */
Jesse Brandeburg44033fa2014-04-23 04:50:15 +00009384 i40e_send_version(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009385
9386 /* since everything's happy, start the service_task timer */
9387 mod_timer(&pf->service_timer,
9388 round_jiffies(jiffies + pf->service_timer_period));
9389
Vasu Dev38e00432014-08-01 13:27:03 -07009390#ifdef I40E_FCOE
9391 /* create FCoE interface */
9392 i40e_fcoe_vsi_setup(pf);
9393
9394#endif
Catherine Sullivand4dfb812013-11-28 06:39:21 +00009395 /* Get the negotiated link width and speed from PCI config space */
9396 pcie_capability_read_word(pf->pdev, PCI_EXP_LNKSTA, &link_status);
9397
9398 i40e_set_pci_config_data(hw, link_status);
9399
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00009400 dev_info(&pdev->dev, "PCI-Express: %s %s\n",
Catherine Sullivand4dfb812013-11-28 06:39:21 +00009401 (hw->bus.speed == i40e_bus_speed_8000 ? "Speed 8.0GT/s" :
9402 hw->bus.speed == i40e_bus_speed_5000 ? "Speed 5.0GT/s" :
9403 hw->bus.speed == i40e_bus_speed_2500 ? "Speed 2.5GT/s" :
9404 "Unknown"),
9405 (hw->bus.width == i40e_bus_width_pcie_x8 ? "Width x8" :
9406 hw->bus.width == i40e_bus_width_pcie_x4 ? "Width x4" :
9407 hw->bus.width == i40e_bus_width_pcie_x2 ? "Width x2" :
9408 hw->bus.width == i40e_bus_width_pcie_x1 ? "Width x1" :
9409 "Unknown"));
9410
9411 if (hw->bus.width < i40e_bus_width_pcie_x8 ||
9412 hw->bus.speed < i40e_bus_speed_8000) {
9413 dev_warn(&pdev->dev, "PCI-Express bandwidth available for this device may be insufficient for optimal performance.\n");
9414 dev_warn(&pdev->dev, "Please move the device to a different PCI-e link with more lanes and/or higher transfer rate.\n");
9415 }
9416
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00009417 /* print a string summarizing features */
9418 i40e_print_features(pf);
9419
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009420 return 0;
9421
9422 /* Unwind what we've done if something failed in the setup */
9423err_vsis:
9424 set_bit(__I40E_DOWN, &pf->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009425 i40e_clear_interrupt_scheme(pf);
9426 kfree(pf->vsi);
Shannon Nelson04b03012013-11-28 06:39:34 +00009427err_switch_setup:
9428 i40e_reset_interrupt_capability(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009429 del_timer_sync(&pf->service_timer);
9430err_mac_addr:
9431err_configure_lan_hmc:
9432 (void)i40e_shutdown_lan_hmc(hw);
9433err_init_lan_hmc:
9434 kfree(pf->qp_pile);
9435 kfree(pf->irq_pile);
9436err_sw_init:
9437err_adminq_setup:
9438 (void)i40e_shutdown_adminq(hw);
9439err_pf_reset:
9440 iounmap(hw->hw_addr);
9441err_ioremap:
9442 kfree(pf);
9443err_pf_alloc:
9444 pci_disable_pcie_error_reporting(pdev);
9445 pci_release_selected_regions(pdev,
9446 pci_select_bars(pdev, IORESOURCE_MEM));
9447err_pci_reg:
9448err_dma:
9449 pci_disable_device(pdev);
9450 return err;
9451}
9452
9453/**
9454 * i40e_remove - Device removal routine
9455 * @pdev: PCI device information struct
9456 *
9457 * i40e_remove is called by the PCI subsystem to alert the driver
9458 * that is should release a PCI device. This could be caused by a
9459 * Hot-Plug event, or because the driver is going to be removed from
9460 * memory.
9461 **/
9462static void i40e_remove(struct pci_dev *pdev)
9463{
9464 struct i40e_pf *pf = pci_get_drvdata(pdev);
9465 i40e_status ret_code;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009466 int i;
9467
9468 i40e_dbg_pf_exit(pf);
9469
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00009470 i40e_ptp_stop(pf);
9471
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009472 /* no more scheduling of any task */
9473 set_bit(__I40E_DOWN, &pf->state);
9474 del_timer_sync(&pf->service_timer);
9475 cancel_work_sync(&pf->service_task);
9476
Mitch Williamseb2d80b2014-02-13 03:48:48 -08009477 if (pf->flags & I40E_FLAG_SRIOV_ENABLED) {
9478 i40e_free_vfs(pf);
9479 pf->flags &= ~I40E_FLAG_SRIOV_ENABLED;
9480 }
9481
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009482 i40e_fdir_teardown(pf);
9483
9484 /* If there is a switch structure or any orphans, remove them.
9485 * This will leave only the PF's VSI remaining.
9486 */
9487 for (i = 0; i < I40E_MAX_VEB; i++) {
9488 if (!pf->veb[i])
9489 continue;
9490
9491 if (pf->veb[i]->uplink_seid == pf->mac_seid ||
9492 pf->veb[i]->uplink_seid == 0)
9493 i40e_switch_branch_release(pf->veb[i]);
9494 }
9495
9496 /* Now we can shutdown the PF's VSI, just before we kill
9497 * adminq and hmc.
9498 */
9499 if (pf->vsi[pf->lan_vsi])
9500 i40e_vsi_release(pf->vsi[pf->lan_vsi]);
9501
9502 i40e_stop_misc_vector(pf);
9503 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
9504 synchronize_irq(pf->msix_entries[0].vector);
9505 free_irq(pf->msix_entries[0].vector, pf);
9506 }
9507
9508 /* shutdown and destroy the HMC */
Shannon Nelson60442de2014-04-23 04:50:13 +00009509 if (pf->hw.hmc.hmc_obj) {
9510 ret_code = i40e_shutdown_lan_hmc(&pf->hw);
9511 if (ret_code)
9512 dev_warn(&pdev->dev,
9513 "Failed to destroy the HMC resources: %d\n",
9514 ret_code);
9515 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009516
9517 /* shutdown the adminq */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009518 ret_code = i40e_shutdown_adminq(&pf->hw);
9519 if (ret_code)
9520 dev_warn(&pdev->dev,
9521 "Failed to destroy the Admin Queue resources: %d\n",
9522 ret_code);
9523
9524 /* Clear all dynamic memory lists of rings, q_vectors, and VSIs */
9525 i40e_clear_interrupt_scheme(pf);
Mitch Williams505682c2014-05-20 08:01:37 +00009526 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009527 if (pf->vsi[i]) {
9528 i40e_vsi_clear_rings(pf->vsi[i]);
9529 i40e_vsi_clear(pf->vsi[i]);
9530 pf->vsi[i] = NULL;
9531 }
9532 }
9533
9534 for (i = 0; i < I40E_MAX_VEB; i++) {
9535 kfree(pf->veb[i]);
9536 pf->veb[i] = NULL;
9537 }
9538
9539 kfree(pf->qp_pile);
9540 kfree(pf->irq_pile);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009541 kfree(pf->vsi);
9542
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009543 iounmap(pf->hw.hw_addr);
9544 kfree(pf);
9545 pci_release_selected_regions(pdev,
9546 pci_select_bars(pdev, IORESOURCE_MEM));
9547
9548 pci_disable_pcie_error_reporting(pdev);
9549 pci_disable_device(pdev);
9550}
9551
9552/**
9553 * i40e_pci_error_detected - warning that something funky happened in PCI land
9554 * @pdev: PCI device information struct
9555 *
9556 * Called to warn that something happened and the error handling steps
9557 * are in progress. Allows the driver to quiesce things, be ready for
9558 * remediation.
9559 **/
9560static pci_ers_result_t i40e_pci_error_detected(struct pci_dev *pdev,
9561 enum pci_channel_state error)
9562{
9563 struct i40e_pf *pf = pci_get_drvdata(pdev);
9564
9565 dev_info(&pdev->dev, "%s: error %d\n", __func__, error);
9566
9567 /* shutdown all operations */
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009568 if (!test_bit(__I40E_SUSPENDED, &pf->state)) {
9569 rtnl_lock();
9570 i40e_prep_for_reset(pf);
9571 rtnl_unlock();
9572 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009573
9574 /* Request a slot reset */
9575 return PCI_ERS_RESULT_NEED_RESET;
9576}
9577
9578/**
9579 * i40e_pci_error_slot_reset - a PCI slot reset just happened
9580 * @pdev: PCI device information struct
9581 *
9582 * Called to find if the driver can work with the device now that
9583 * the pci slot has been reset. If a basic connection seems good
9584 * (registers are readable and have sane content) then return a
9585 * happy little PCI_ERS_RESULT_xxx.
9586 **/
9587static pci_ers_result_t i40e_pci_error_slot_reset(struct pci_dev *pdev)
9588{
9589 struct i40e_pf *pf = pci_get_drvdata(pdev);
9590 pci_ers_result_t result;
9591 int err;
9592 u32 reg;
9593
9594 dev_info(&pdev->dev, "%s\n", __func__);
9595 if (pci_enable_device_mem(pdev)) {
9596 dev_info(&pdev->dev,
9597 "Cannot re-enable PCI device after reset.\n");
9598 result = PCI_ERS_RESULT_DISCONNECT;
9599 } else {
9600 pci_set_master(pdev);
9601 pci_restore_state(pdev);
9602 pci_save_state(pdev);
9603 pci_wake_from_d3(pdev, false);
9604
9605 reg = rd32(&pf->hw, I40E_GLGEN_RTRIG);
9606 if (reg == 0)
9607 result = PCI_ERS_RESULT_RECOVERED;
9608 else
9609 result = PCI_ERS_RESULT_DISCONNECT;
9610 }
9611
9612 err = pci_cleanup_aer_uncorrect_error_status(pdev);
9613 if (err) {
9614 dev_info(&pdev->dev,
9615 "pci_cleanup_aer_uncorrect_error_status failed 0x%0x\n",
9616 err);
9617 /* non-fatal, continue */
9618 }
9619
9620 return result;
9621}
9622
9623/**
9624 * i40e_pci_error_resume - restart operations after PCI error recovery
9625 * @pdev: PCI device information struct
9626 *
9627 * Called to allow the driver to bring things back up after PCI error
9628 * and/or reset recovery has finished.
9629 **/
9630static void i40e_pci_error_resume(struct pci_dev *pdev)
9631{
9632 struct i40e_pf *pf = pci_get_drvdata(pdev);
9633
9634 dev_info(&pdev->dev, "%s\n", __func__);
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009635 if (test_bit(__I40E_SUSPENDED, &pf->state))
9636 return;
9637
9638 rtnl_lock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009639 i40e_handle_reset_warning(pf);
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009640 rtnl_lock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009641}
9642
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009643/**
9644 * i40e_shutdown - PCI callback for shutting down
9645 * @pdev: PCI device information struct
9646 **/
9647static void i40e_shutdown(struct pci_dev *pdev)
9648{
9649 struct i40e_pf *pf = pci_get_drvdata(pdev);
Shannon Nelson8e2773a2013-11-28 06:39:22 +00009650 struct i40e_hw *hw = &pf->hw;
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009651
9652 set_bit(__I40E_SUSPENDED, &pf->state);
9653 set_bit(__I40E_DOWN, &pf->state);
9654 rtnl_lock();
9655 i40e_prep_for_reset(pf);
9656 rtnl_unlock();
9657
Shannon Nelson8e2773a2013-11-28 06:39:22 +00009658 wr32(hw, I40E_PFPM_APM, (pf->wol_en ? I40E_PFPM_APM_APME_MASK : 0));
9659 wr32(hw, I40E_PFPM_WUFC, (pf->wol_en ? I40E_PFPM_WUFC_MAG_MASK : 0));
9660
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009661 if (system_state == SYSTEM_POWER_OFF) {
Shannon Nelson8e2773a2013-11-28 06:39:22 +00009662 pci_wake_from_d3(pdev, pf->wol_en);
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009663 pci_set_power_state(pdev, PCI_D3hot);
9664 }
9665}
9666
9667#ifdef CONFIG_PM
9668/**
9669 * i40e_suspend - PCI callback for moving to D3
9670 * @pdev: PCI device information struct
9671 **/
9672static int i40e_suspend(struct pci_dev *pdev, pm_message_t state)
9673{
9674 struct i40e_pf *pf = pci_get_drvdata(pdev);
Shannon Nelson8e2773a2013-11-28 06:39:22 +00009675 struct i40e_hw *hw = &pf->hw;
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009676
9677 set_bit(__I40E_SUSPENDED, &pf->state);
9678 set_bit(__I40E_DOWN, &pf->state);
9679 rtnl_lock();
9680 i40e_prep_for_reset(pf);
9681 rtnl_unlock();
9682
Shannon Nelson8e2773a2013-11-28 06:39:22 +00009683 wr32(hw, I40E_PFPM_APM, (pf->wol_en ? I40E_PFPM_APM_APME_MASK : 0));
9684 wr32(hw, I40E_PFPM_WUFC, (pf->wol_en ? I40E_PFPM_WUFC_MAG_MASK : 0));
9685
9686 pci_wake_from_d3(pdev, pf->wol_en);
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009687 pci_set_power_state(pdev, PCI_D3hot);
9688
9689 return 0;
9690}
9691
9692/**
9693 * i40e_resume - PCI callback for waking up from D3
9694 * @pdev: PCI device information struct
9695 **/
9696static int i40e_resume(struct pci_dev *pdev)
9697{
9698 struct i40e_pf *pf = pci_get_drvdata(pdev);
9699 u32 err;
9700
9701 pci_set_power_state(pdev, PCI_D0);
9702 pci_restore_state(pdev);
9703 /* pci_restore_state() clears dev->state_saves, so
9704 * call pci_save_state() again to restore it.
9705 */
9706 pci_save_state(pdev);
9707
9708 err = pci_enable_device_mem(pdev);
9709 if (err) {
9710 dev_err(&pdev->dev,
9711 "%s: Cannot enable PCI device from suspend\n",
9712 __func__);
9713 return err;
9714 }
9715 pci_set_master(pdev);
9716
9717 /* no wakeup events while running */
9718 pci_wake_from_d3(pdev, false);
9719
9720 /* handling the reset will rebuild the device state */
9721 if (test_and_clear_bit(__I40E_SUSPENDED, &pf->state)) {
9722 clear_bit(__I40E_DOWN, &pf->state);
9723 rtnl_lock();
9724 i40e_reset_and_rebuild(pf, false);
9725 rtnl_unlock();
9726 }
9727
9728 return 0;
9729}
9730
9731#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009732static const struct pci_error_handlers i40e_err_handler = {
9733 .error_detected = i40e_pci_error_detected,
9734 .slot_reset = i40e_pci_error_slot_reset,
9735 .resume = i40e_pci_error_resume,
9736};
9737
9738static struct pci_driver i40e_driver = {
9739 .name = i40e_driver_name,
9740 .id_table = i40e_pci_tbl,
9741 .probe = i40e_probe,
9742 .remove = i40e_remove,
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009743#ifdef CONFIG_PM
9744 .suspend = i40e_suspend,
9745 .resume = i40e_resume,
9746#endif
9747 .shutdown = i40e_shutdown,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009748 .err_handler = &i40e_err_handler,
9749 .sriov_configure = i40e_pci_sriov_configure,
9750};
9751
9752/**
9753 * i40e_init_module - Driver registration routine
9754 *
9755 * i40e_init_module is the first routine called when the driver is
9756 * loaded. All it does is register with the PCI subsystem.
9757 **/
9758static int __init i40e_init_module(void)
9759{
9760 pr_info("%s: %s - version %s\n", i40e_driver_name,
9761 i40e_driver_string, i40e_driver_version_str);
9762 pr_info("%s: %s\n", i40e_driver_name, i40e_copyright);
9763 i40e_dbg_init();
9764 return pci_register_driver(&i40e_driver);
9765}
9766module_init(i40e_init_module);
9767
9768/**
9769 * i40e_exit_module - Driver exit cleanup routine
9770 *
9771 * i40e_exit_module is called just before the driver is removed
9772 * from memory.
9773 **/
9774static void __exit i40e_exit_module(void)
9775{
9776 pci_unregister_driver(&i40e_driver);
9777 i40e_dbg_exit();
9778}
9779module_exit(i40e_exit_module);