blob: 9751465f29c71ab2c28a6a2ac57787ba4e92328a [file] [log] [blame]
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001/*******************************************************************************
2 *
3 * Intel Ethernet Controller XL710 Family Linux Driver
Greg Rosedc641b72013-12-18 13:45:51 +00004 * Copyright(c) 2013 - 2014 Intel Corporation.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms and conditions of the GNU General Public License,
8 * version 2, as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * more details.
14 *
Greg Rosedc641b72013-12-18 13:45:51 +000015 * You should have received a copy of the GNU General Public License along
16 * with this program. If not, see <http://www.gnu.org/licenses/>.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000017 *
18 * The full GNU General Public License is included in this distribution in
19 * the file called "COPYING".
20 *
21 * Contact Information:
22 * e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
23 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
24 *
25 ******************************************************************************/
26
27/* Local includes */
28#include "i40e.h"
Shannon Nelson4eb3f762014-03-06 08:59:58 +000029#include "i40e_diag.h"
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +000030#ifdef CONFIG_I40E_VXLAN
31#include <net/vxlan.h>
32#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000033
34const char i40e_driver_name[] = "i40e";
35static const char i40e_driver_string[] =
36 "Intel(R) Ethernet Connection XL710 Network Driver";
37
38#define DRV_KERN "-k"
39
Catherine Sullivane8e724d2014-07-10 07:58:26 +000040#define DRV_VERSION_MAJOR 1
Catherine Sullivana36fdd8e2014-11-11 20:07:41 +000041#define DRV_VERSION_MINOR 2
Sravanthi Tangeda300c34c2014-12-14 01:55:17 +000042#define DRV_VERSION_BUILD 6
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000043#define DRV_VERSION __stringify(DRV_VERSION_MAJOR) "." \
44 __stringify(DRV_VERSION_MINOR) "." \
45 __stringify(DRV_VERSION_BUILD) DRV_KERN
46const char i40e_driver_version_str[] = DRV_VERSION;
Jesse Brandeburg8fb905b2014-01-17 15:36:33 -080047static const char i40e_copyright[] = "Copyright (c) 2013 - 2014 Intel Corporation.";
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000048
49/* a bit of forward declarations */
50static void i40e_vsi_reinit_locked(struct i40e_vsi *vsi);
51static void i40e_handle_reset_warning(struct i40e_pf *pf);
52static int i40e_add_vsi(struct i40e_vsi *vsi);
53static int i40e_add_veb(struct i40e_veb *veb, struct i40e_vsi *vsi);
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +000054static int i40e_setup_pf_switch(struct i40e_pf *pf, bool reinit);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000055static int i40e_setup_misc_vector(struct i40e_pf *pf);
56static void i40e_determine_queue_usage(struct i40e_pf *pf);
57static int i40e_setup_pf_filter_control(struct i40e_pf *pf);
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080058static void i40e_fdir_sb_setup(struct i40e_pf *pf);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -080059static int i40e_veb_get_bw_info(struct i40e_veb *veb);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000060
61/* i40e_pci_tbl - PCI Device ID Table
62 *
63 * Last entry must be all 0s
64 *
65 * { Vendor ID, Device ID, SubVendor ID, SubDevice ID,
66 * Class, Class Mask, private data (not used) }
67 */
Benoit Taine9baa3c32014-08-08 15:56:03 +020068static const struct pci_device_id i40e_pci_tbl[] = {
Shannon Nelsonab600852014-01-17 15:36:39 -080069 {PCI_VDEVICE(INTEL, I40E_DEV_ID_SFP_XL710), 0},
Shannon Nelsonab600852014-01-17 15:36:39 -080070 {PCI_VDEVICE(INTEL, I40E_DEV_ID_QEMU), 0},
71 {PCI_VDEVICE(INTEL, I40E_DEV_ID_KX_A), 0},
72 {PCI_VDEVICE(INTEL, I40E_DEV_ID_KX_B), 0},
73 {PCI_VDEVICE(INTEL, I40E_DEV_ID_KX_C), 0},
Shannon Nelsonab600852014-01-17 15:36:39 -080074 {PCI_VDEVICE(INTEL, I40E_DEV_ID_QSFP_A), 0},
75 {PCI_VDEVICE(INTEL, I40E_DEV_ID_QSFP_B), 0},
76 {PCI_VDEVICE(INTEL, I40E_DEV_ID_QSFP_C), 0},
Mitch Williams5960d332014-09-13 07:40:47 +000077 {PCI_VDEVICE(INTEL, I40E_DEV_ID_10G_BASE_T), 0},
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000078 /* required last entry */
79 {0, }
80};
81MODULE_DEVICE_TABLE(pci, i40e_pci_tbl);
82
83#define I40E_MAX_VF_COUNT 128
84static int debug = -1;
85module_param(debug, int, 0);
86MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all)");
87
88MODULE_AUTHOR("Intel Corporation, <e1000-devel@lists.sourceforge.net>");
89MODULE_DESCRIPTION("Intel(R) Ethernet Connection XL710 Network Driver");
90MODULE_LICENSE("GPL");
91MODULE_VERSION(DRV_VERSION);
92
93/**
94 * i40e_allocate_dma_mem_d - OS specific memory alloc for shared code
95 * @hw: pointer to the HW structure
96 * @mem: ptr to mem struct to fill out
97 * @size: size of memory requested
98 * @alignment: what to align the allocation to
99 **/
100int i40e_allocate_dma_mem_d(struct i40e_hw *hw, struct i40e_dma_mem *mem,
101 u64 size, u32 alignment)
102{
103 struct i40e_pf *pf = (struct i40e_pf *)hw->back;
104
105 mem->size = ALIGN(size, alignment);
106 mem->va = dma_zalloc_coherent(&pf->pdev->dev, mem->size,
107 &mem->pa, GFP_KERNEL);
Jesse Brandeburg93bc73b2013-09-13 08:23:18 +0000108 if (!mem->va)
109 return -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000110
Jesse Brandeburg93bc73b2013-09-13 08:23:18 +0000111 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000112}
113
114/**
115 * i40e_free_dma_mem_d - OS specific memory free for shared code
116 * @hw: pointer to the HW structure
117 * @mem: ptr to mem struct to free
118 **/
119int i40e_free_dma_mem_d(struct i40e_hw *hw, struct i40e_dma_mem *mem)
120{
121 struct i40e_pf *pf = (struct i40e_pf *)hw->back;
122
123 dma_free_coherent(&pf->pdev->dev, mem->size, mem->va, mem->pa);
124 mem->va = NULL;
125 mem->pa = 0;
126 mem->size = 0;
127
128 return 0;
129}
130
131/**
132 * i40e_allocate_virt_mem_d - OS specific memory alloc for shared code
133 * @hw: pointer to the HW structure
134 * @mem: ptr to mem struct to fill out
135 * @size: size of memory requested
136 **/
137int i40e_allocate_virt_mem_d(struct i40e_hw *hw, struct i40e_virt_mem *mem,
138 u32 size)
139{
140 mem->size = size;
141 mem->va = kzalloc(size, GFP_KERNEL);
142
Jesse Brandeburg93bc73b2013-09-13 08:23:18 +0000143 if (!mem->va)
144 return -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000145
Jesse Brandeburg93bc73b2013-09-13 08:23:18 +0000146 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000147}
148
149/**
150 * i40e_free_virt_mem_d - OS specific memory free for shared code
151 * @hw: pointer to the HW structure
152 * @mem: ptr to mem struct to free
153 **/
154int i40e_free_virt_mem_d(struct i40e_hw *hw, struct i40e_virt_mem *mem)
155{
156 /* it's ok to kfree a NULL pointer */
157 kfree(mem->va);
158 mem->va = NULL;
159 mem->size = 0;
160
161 return 0;
162}
163
164/**
165 * i40e_get_lump - find a lump of free generic resource
166 * @pf: board private structure
167 * @pile: the pile of resource to search
168 * @needed: the number of items needed
169 * @id: an owner id to stick on the items assigned
170 *
171 * Returns the base item index of the lump, or negative for error
172 *
173 * The search_hint trick and lack of advanced fit-finding only work
174 * because we're highly likely to have all the same size lump requests.
175 * Linear search time and any fragmentation should be minimal.
176 **/
177static int i40e_get_lump(struct i40e_pf *pf, struct i40e_lump_tracking *pile,
178 u16 needed, u16 id)
179{
180 int ret = -ENOMEM;
Jesse Brandeburgddf434a2013-09-13 08:23:19 +0000181 int i, j;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000182
183 if (!pile || needed == 0 || id >= I40E_PILE_VALID_BIT) {
184 dev_info(&pf->pdev->dev,
185 "param err: pile=%p needed=%d id=0x%04x\n",
186 pile, needed, id);
187 return -EINVAL;
188 }
189
190 /* start the linear search with an imperfect hint */
191 i = pile->search_hint;
Jesse Brandeburgddf434a2013-09-13 08:23:19 +0000192 while (i < pile->num_entries) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000193 /* skip already allocated entries */
194 if (pile->list[i] & I40E_PILE_VALID_BIT) {
195 i++;
196 continue;
197 }
198
199 /* do we have enough in this lump? */
200 for (j = 0; (j < needed) && ((i+j) < pile->num_entries); j++) {
201 if (pile->list[i+j] & I40E_PILE_VALID_BIT)
202 break;
203 }
204
205 if (j == needed) {
206 /* there was enough, so assign it to the requestor */
207 for (j = 0; j < needed; j++)
208 pile->list[i+j] = id | I40E_PILE_VALID_BIT;
209 ret = i;
210 pile->search_hint = i + j;
Jesse Brandeburgddf434a2013-09-13 08:23:19 +0000211 break;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000212 } else {
213 /* not enough, so skip over it and continue looking */
214 i += j;
215 }
216 }
217
218 return ret;
219}
220
221/**
222 * i40e_put_lump - return a lump of generic resource
223 * @pile: the pile of resource to search
224 * @index: the base item index
225 * @id: the owner id of the items assigned
226 *
227 * Returns the count of items in the lump
228 **/
229static int i40e_put_lump(struct i40e_lump_tracking *pile, u16 index, u16 id)
230{
231 int valid_id = (id | I40E_PILE_VALID_BIT);
232 int count = 0;
233 int i;
234
235 if (!pile || index >= pile->num_entries)
236 return -EINVAL;
237
238 for (i = index;
239 i < pile->num_entries && pile->list[i] == valid_id;
240 i++) {
241 pile->list[i] = 0;
242 count++;
243 }
244
245 if (count && index < pile->search_hint)
246 pile->search_hint = index;
247
248 return count;
249}
250
251/**
252 * i40e_service_event_schedule - Schedule the service task to wake up
253 * @pf: board private structure
254 *
255 * If not already scheduled, this puts the task into the work queue
256 **/
257static void i40e_service_event_schedule(struct i40e_pf *pf)
258{
259 if (!test_bit(__I40E_DOWN, &pf->state) &&
260 !test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state) &&
261 !test_and_set_bit(__I40E_SERVICE_SCHED, &pf->state))
262 schedule_work(&pf->service_task);
263}
264
265/**
266 * i40e_tx_timeout - Respond to a Tx Hang
267 * @netdev: network interface device structure
268 *
269 * If any port has noticed a Tx timeout, it is likely that the whole
270 * device is munged, not just the one netdev port, so go for the full
271 * reset.
272 **/
Vasu Dev38e00432014-08-01 13:27:03 -0700273#ifdef I40E_FCOE
274void i40e_tx_timeout(struct net_device *netdev)
275#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000276static void i40e_tx_timeout(struct net_device *netdev)
Vasu Dev38e00432014-08-01 13:27:03 -0700277#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000278{
279 struct i40e_netdev_priv *np = netdev_priv(netdev);
280 struct i40e_vsi *vsi = np->vsi;
281 struct i40e_pf *pf = vsi->back;
282
283 pf->tx_timeout_count++;
284
285 if (time_after(jiffies, (pf->tx_timeout_last_recovery + HZ*20)))
Anjali Singhai Jain327fe042014-06-04 01:23:26 +0000286 pf->tx_timeout_recovery_level = 1;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000287 pf->tx_timeout_last_recovery = jiffies;
288 netdev_info(netdev, "tx_timeout recovery level %d\n",
289 pf->tx_timeout_recovery_level);
290
291 switch (pf->tx_timeout_recovery_level) {
292 case 0:
293 /* disable and re-enable queues for the VSI */
294 if (in_interrupt()) {
295 set_bit(__I40E_REINIT_REQUESTED, &pf->state);
296 set_bit(__I40E_REINIT_REQUESTED, &vsi->state);
297 } else {
298 i40e_vsi_reinit_locked(vsi);
299 }
300 break;
301 case 1:
302 set_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
303 break;
304 case 2:
305 set_bit(__I40E_CORE_RESET_REQUESTED, &pf->state);
306 break;
307 case 3:
308 set_bit(__I40E_GLOBAL_RESET_REQUESTED, &pf->state);
309 break;
310 default:
311 netdev_err(netdev, "tx_timeout recovery unsuccessful\n");
Neerav Parikhb5d06f02014-06-03 23:50:17 +0000312 set_bit(__I40E_DOWN_REQUESTED, &pf->state);
313 set_bit(__I40E_DOWN_REQUESTED, &vsi->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000314 break;
315 }
316 i40e_service_event_schedule(pf);
317 pf->tx_timeout_recovery_level++;
318}
319
320/**
321 * i40e_release_rx_desc - Store the new tail and head values
322 * @rx_ring: ring to bump
323 * @val: new head index
324 **/
325static inline void i40e_release_rx_desc(struct i40e_ring *rx_ring, u32 val)
326{
327 rx_ring->next_to_use = val;
328
329 /* Force memory writes to complete before letting h/w
330 * know there are new descriptors to fetch. (Only
331 * applicable for weak-ordered memory model archs,
332 * such as IA-64).
333 */
334 wmb();
335 writel(val, rx_ring->tail);
336}
337
338/**
339 * i40e_get_vsi_stats_struct - Get System Network Statistics
340 * @vsi: the VSI we care about
341 *
342 * Returns the address of the device statistics structure.
343 * The statistics are actually updated from the service task.
344 **/
345struct rtnl_link_stats64 *i40e_get_vsi_stats_struct(struct i40e_vsi *vsi)
346{
347 return &vsi->net_stats;
348}
349
350/**
351 * i40e_get_netdev_stats_struct - Get statistics for netdev interface
352 * @netdev: network interface device structure
353 *
354 * Returns the address of the device statistics structure.
355 * The statistics are actually updated from the service task.
356 **/
Vasu Dev38e00432014-08-01 13:27:03 -0700357#ifdef I40E_FCOE
358struct rtnl_link_stats64 *i40e_get_netdev_stats_struct(
359 struct net_device *netdev,
360 struct rtnl_link_stats64 *stats)
361#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000362static struct rtnl_link_stats64 *i40e_get_netdev_stats_struct(
363 struct net_device *netdev,
Alexander Duyck980e9b12013-09-28 06:01:03 +0000364 struct rtnl_link_stats64 *stats)
Vasu Dev38e00432014-08-01 13:27:03 -0700365#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000366{
367 struct i40e_netdev_priv *np = netdev_priv(netdev);
Akeem G Abodunrine7046ee2014-04-09 05:58:58 +0000368 struct i40e_ring *tx_ring, *rx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000369 struct i40e_vsi *vsi = np->vsi;
Alexander Duyck980e9b12013-09-28 06:01:03 +0000370 struct rtnl_link_stats64 *vsi_stats = i40e_get_vsi_stats_struct(vsi);
371 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000372
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +0000373 if (test_bit(__I40E_DOWN, &vsi->state))
374 return stats;
375
Jesse Brandeburg3c325ce2013-12-14 03:26:45 -0800376 if (!vsi->tx_rings)
377 return stats;
378
Alexander Duyck980e9b12013-09-28 06:01:03 +0000379 rcu_read_lock();
380 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck980e9b12013-09-28 06:01:03 +0000381 u64 bytes, packets;
382 unsigned int start;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000383
Alexander Duyck980e9b12013-09-28 06:01:03 +0000384 tx_ring = ACCESS_ONCE(vsi->tx_rings[i]);
385 if (!tx_ring)
386 continue;
387
388 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -0700389 start = u64_stats_fetch_begin_irq(&tx_ring->syncp);
Alexander Duyck980e9b12013-09-28 06:01:03 +0000390 packets = tx_ring->stats.packets;
391 bytes = tx_ring->stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -0700392 } while (u64_stats_fetch_retry_irq(&tx_ring->syncp, start));
Alexander Duyck980e9b12013-09-28 06:01:03 +0000393
394 stats->tx_packets += packets;
395 stats->tx_bytes += bytes;
396 rx_ring = &tx_ring[1];
397
398 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -0700399 start = u64_stats_fetch_begin_irq(&rx_ring->syncp);
Alexander Duyck980e9b12013-09-28 06:01:03 +0000400 packets = rx_ring->stats.packets;
401 bytes = rx_ring->stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -0700402 } while (u64_stats_fetch_retry_irq(&rx_ring->syncp, start));
Alexander Duyck980e9b12013-09-28 06:01:03 +0000403
404 stats->rx_packets += packets;
405 stats->rx_bytes += bytes;
406 }
407 rcu_read_unlock();
408
Akeem G Abodunrina5282f42014-05-10 04:49:03 +0000409 /* following stats updated by i40e_watchdog_subtask() */
Alexander Duyck980e9b12013-09-28 06:01:03 +0000410 stats->multicast = vsi_stats->multicast;
411 stats->tx_errors = vsi_stats->tx_errors;
412 stats->tx_dropped = vsi_stats->tx_dropped;
413 stats->rx_errors = vsi_stats->rx_errors;
414 stats->rx_crc_errors = vsi_stats->rx_crc_errors;
415 stats->rx_length_errors = vsi_stats->rx_length_errors;
416
417 return stats;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000418}
419
420/**
421 * i40e_vsi_reset_stats - Resets all stats of the given vsi
422 * @vsi: the VSI to have its stats reset
423 **/
424void i40e_vsi_reset_stats(struct i40e_vsi *vsi)
425{
426 struct rtnl_link_stats64 *ns;
427 int i;
428
429 if (!vsi)
430 return;
431
432 ns = i40e_get_vsi_stats_struct(vsi);
433 memset(ns, 0, sizeof(*ns));
434 memset(&vsi->net_stats_offsets, 0, sizeof(vsi->net_stats_offsets));
435 memset(&vsi->eth_stats, 0, sizeof(vsi->eth_stats));
436 memset(&vsi->eth_stats_offsets, 0, sizeof(vsi->eth_stats_offsets));
Greg Rose8e9dca52013-12-18 13:45:53 +0000437 if (vsi->rx_rings && vsi->rx_rings[0]) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000438 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e15b2013-09-28 06:00:58 +0000439 memset(&vsi->rx_rings[i]->stats, 0 ,
440 sizeof(vsi->rx_rings[i]->stats));
441 memset(&vsi->rx_rings[i]->rx_stats, 0 ,
442 sizeof(vsi->rx_rings[i]->rx_stats));
443 memset(&vsi->tx_rings[i]->stats, 0 ,
444 sizeof(vsi->tx_rings[i]->stats));
445 memset(&vsi->tx_rings[i]->tx_stats, 0,
446 sizeof(vsi->tx_rings[i]->tx_stats));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000447 }
Greg Rose8e9dca52013-12-18 13:45:53 +0000448 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000449 vsi->stat_offsets_loaded = false;
450}
451
452/**
453 * i40e_pf_reset_stats - Reset all of the stats for the given pf
454 * @pf: the PF to be reset
455 **/
456void i40e_pf_reset_stats(struct i40e_pf *pf)
457{
Shannon Nelsone91fdf72014-06-03 23:50:18 +0000458 int i;
459
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000460 memset(&pf->stats, 0, sizeof(pf->stats));
461 memset(&pf->stats_offsets, 0, sizeof(pf->stats_offsets));
462 pf->stat_offsets_loaded = false;
Shannon Nelsone91fdf72014-06-03 23:50:18 +0000463
464 for (i = 0; i < I40E_MAX_VEB; i++) {
465 if (pf->veb[i]) {
466 memset(&pf->veb[i]->stats, 0,
467 sizeof(pf->veb[i]->stats));
468 memset(&pf->veb[i]->stats_offsets, 0,
469 sizeof(pf->veb[i]->stats_offsets));
470 pf->veb[i]->stat_offsets_loaded = false;
471 }
472 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000473}
474
475/**
476 * i40e_stat_update48 - read and update a 48 bit stat from the chip
477 * @hw: ptr to the hardware info
478 * @hireg: the high 32 bit reg to read
479 * @loreg: the low 32 bit reg to read
480 * @offset_loaded: has the initial offset been loaded yet
481 * @offset: ptr to current offset value
482 * @stat: ptr to the stat
483 *
484 * Since the device stats are not reset at PFReset, they likely will not
485 * be zeroed when the driver starts. We'll save the first values read
486 * and use them as offsets to be subtracted from the raw values in order
487 * to report stats that count from zero. In the process, we also manage
488 * the potential roll-over.
489 **/
490static void i40e_stat_update48(struct i40e_hw *hw, u32 hireg, u32 loreg,
491 bool offset_loaded, u64 *offset, u64 *stat)
492{
493 u64 new_data;
494
Shannon Nelsonab600852014-01-17 15:36:39 -0800495 if (hw->device_id == I40E_DEV_ID_QEMU) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000496 new_data = rd32(hw, loreg);
497 new_data |= ((u64)(rd32(hw, hireg) & 0xFFFF)) << 32;
498 } else {
499 new_data = rd64(hw, loreg);
500 }
501 if (!offset_loaded)
502 *offset = new_data;
503 if (likely(new_data >= *offset))
504 *stat = new_data - *offset;
505 else
506 *stat = (new_data + ((u64)1 << 48)) - *offset;
507 *stat &= 0xFFFFFFFFFFFFULL;
508}
509
510/**
511 * i40e_stat_update32 - read and update a 32 bit stat from the chip
512 * @hw: ptr to the hardware info
513 * @reg: the hw reg to read
514 * @offset_loaded: has the initial offset been loaded yet
515 * @offset: ptr to current offset value
516 * @stat: ptr to the stat
517 **/
518static void i40e_stat_update32(struct i40e_hw *hw, u32 reg,
519 bool offset_loaded, u64 *offset, u64 *stat)
520{
521 u32 new_data;
522
523 new_data = rd32(hw, reg);
524 if (!offset_loaded)
525 *offset = new_data;
526 if (likely(new_data >= *offset))
527 *stat = (u32)(new_data - *offset);
528 else
529 *stat = (u32)((new_data + ((u64)1 << 32)) - *offset);
530}
531
532/**
533 * i40e_update_eth_stats - Update VSI-specific ethernet statistics counters.
534 * @vsi: the VSI to be updated
535 **/
536void i40e_update_eth_stats(struct i40e_vsi *vsi)
537{
538 int stat_idx = le16_to_cpu(vsi->info.stat_counter_idx);
539 struct i40e_pf *pf = vsi->back;
540 struct i40e_hw *hw = &pf->hw;
541 struct i40e_eth_stats *oes;
542 struct i40e_eth_stats *es; /* device's eth stats */
543
544 es = &vsi->eth_stats;
545 oes = &vsi->eth_stats_offsets;
546
547 /* Gather up the stats that the hw collects */
548 i40e_stat_update32(hw, I40E_GLV_TEPC(stat_idx),
549 vsi->stat_offsets_loaded,
550 &oes->tx_errors, &es->tx_errors);
551 i40e_stat_update32(hw, I40E_GLV_RDPC(stat_idx),
552 vsi->stat_offsets_loaded,
553 &oes->rx_discards, &es->rx_discards);
Shannon Nelson41a9e552014-04-23 04:50:20 +0000554 i40e_stat_update32(hw, I40E_GLV_RUPP(stat_idx),
555 vsi->stat_offsets_loaded,
556 &oes->rx_unknown_protocol, &es->rx_unknown_protocol);
557 i40e_stat_update32(hw, I40E_GLV_TEPC(stat_idx),
558 vsi->stat_offsets_loaded,
559 &oes->tx_errors, &es->tx_errors);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000560
561 i40e_stat_update48(hw, I40E_GLV_GORCH(stat_idx),
562 I40E_GLV_GORCL(stat_idx),
563 vsi->stat_offsets_loaded,
564 &oes->rx_bytes, &es->rx_bytes);
565 i40e_stat_update48(hw, I40E_GLV_UPRCH(stat_idx),
566 I40E_GLV_UPRCL(stat_idx),
567 vsi->stat_offsets_loaded,
568 &oes->rx_unicast, &es->rx_unicast);
569 i40e_stat_update48(hw, I40E_GLV_MPRCH(stat_idx),
570 I40E_GLV_MPRCL(stat_idx),
571 vsi->stat_offsets_loaded,
572 &oes->rx_multicast, &es->rx_multicast);
573 i40e_stat_update48(hw, I40E_GLV_BPRCH(stat_idx),
574 I40E_GLV_BPRCL(stat_idx),
575 vsi->stat_offsets_loaded,
576 &oes->rx_broadcast, &es->rx_broadcast);
577
578 i40e_stat_update48(hw, I40E_GLV_GOTCH(stat_idx),
579 I40E_GLV_GOTCL(stat_idx),
580 vsi->stat_offsets_loaded,
581 &oes->tx_bytes, &es->tx_bytes);
582 i40e_stat_update48(hw, I40E_GLV_UPTCH(stat_idx),
583 I40E_GLV_UPTCL(stat_idx),
584 vsi->stat_offsets_loaded,
585 &oes->tx_unicast, &es->tx_unicast);
586 i40e_stat_update48(hw, I40E_GLV_MPTCH(stat_idx),
587 I40E_GLV_MPTCL(stat_idx),
588 vsi->stat_offsets_loaded,
589 &oes->tx_multicast, &es->tx_multicast);
590 i40e_stat_update48(hw, I40E_GLV_BPTCH(stat_idx),
591 I40E_GLV_BPTCL(stat_idx),
592 vsi->stat_offsets_loaded,
593 &oes->tx_broadcast, &es->tx_broadcast);
594 vsi->stat_offsets_loaded = true;
595}
596
597/**
598 * i40e_update_veb_stats - Update Switch component statistics
599 * @veb: the VEB being updated
600 **/
601static void i40e_update_veb_stats(struct i40e_veb *veb)
602{
603 struct i40e_pf *pf = veb->pf;
604 struct i40e_hw *hw = &pf->hw;
605 struct i40e_eth_stats *oes;
606 struct i40e_eth_stats *es; /* device's eth stats */
607 int idx = 0;
608
609 idx = veb->stats_idx;
610 es = &veb->stats;
611 oes = &veb->stats_offsets;
612
613 /* Gather up the stats that the hw collects */
614 i40e_stat_update32(hw, I40E_GLSW_TDPC(idx),
615 veb->stat_offsets_loaded,
616 &oes->tx_discards, &es->tx_discards);
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +0000617 if (hw->revision_id > 0)
618 i40e_stat_update32(hw, I40E_GLSW_RUPP(idx),
619 veb->stat_offsets_loaded,
620 &oes->rx_unknown_protocol,
621 &es->rx_unknown_protocol);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000622 i40e_stat_update48(hw, I40E_GLSW_GORCH(idx), I40E_GLSW_GORCL(idx),
623 veb->stat_offsets_loaded,
624 &oes->rx_bytes, &es->rx_bytes);
625 i40e_stat_update48(hw, I40E_GLSW_UPRCH(idx), I40E_GLSW_UPRCL(idx),
626 veb->stat_offsets_loaded,
627 &oes->rx_unicast, &es->rx_unicast);
628 i40e_stat_update48(hw, I40E_GLSW_MPRCH(idx), I40E_GLSW_MPRCL(idx),
629 veb->stat_offsets_loaded,
630 &oes->rx_multicast, &es->rx_multicast);
631 i40e_stat_update48(hw, I40E_GLSW_BPRCH(idx), I40E_GLSW_BPRCL(idx),
632 veb->stat_offsets_loaded,
633 &oes->rx_broadcast, &es->rx_broadcast);
634
635 i40e_stat_update48(hw, I40E_GLSW_GOTCH(idx), I40E_GLSW_GOTCL(idx),
636 veb->stat_offsets_loaded,
637 &oes->tx_bytes, &es->tx_bytes);
638 i40e_stat_update48(hw, I40E_GLSW_UPTCH(idx), I40E_GLSW_UPTCL(idx),
639 veb->stat_offsets_loaded,
640 &oes->tx_unicast, &es->tx_unicast);
641 i40e_stat_update48(hw, I40E_GLSW_MPTCH(idx), I40E_GLSW_MPTCL(idx),
642 veb->stat_offsets_loaded,
643 &oes->tx_multicast, &es->tx_multicast);
644 i40e_stat_update48(hw, I40E_GLSW_BPTCH(idx), I40E_GLSW_BPTCL(idx),
645 veb->stat_offsets_loaded,
646 &oes->tx_broadcast, &es->tx_broadcast);
647 veb->stat_offsets_loaded = true;
648}
649
Vasu Dev38e00432014-08-01 13:27:03 -0700650#ifdef I40E_FCOE
651/**
652 * i40e_update_fcoe_stats - Update FCoE-specific ethernet statistics counters.
653 * @vsi: the VSI that is capable of doing FCoE
654 **/
655static void i40e_update_fcoe_stats(struct i40e_vsi *vsi)
656{
657 struct i40e_pf *pf = vsi->back;
658 struct i40e_hw *hw = &pf->hw;
659 struct i40e_fcoe_stats *ofs;
660 struct i40e_fcoe_stats *fs; /* device's eth stats */
661 int idx;
662
663 if (vsi->type != I40E_VSI_FCOE)
664 return;
665
666 idx = (pf->pf_seid - I40E_BASE_PF_SEID) + I40E_FCOE_PF_STAT_OFFSET;
667 fs = &vsi->fcoe_stats;
668 ofs = &vsi->fcoe_stats_offsets;
669
670 i40e_stat_update32(hw, I40E_GL_FCOEPRC(idx),
671 vsi->fcoe_stat_offsets_loaded,
672 &ofs->rx_fcoe_packets, &fs->rx_fcoe_packets);
673 i40e_stat_update48(hw, I40E_GL_FCOEDWRCH(idx), I40E_GL_FCOEDWRCL(idx),
674 vsi->fcoe_stat_offsets_loaded,
675 &ofs->rx_fcoe_dwords, &fs->rx_fcoe_dwords);
676 i40e_stat_update32(hw, I40E_GL_FCOERPDC(idx),
677 vsi->fcoe_stat_offsets_loaded,
678 &ofs->rx_fcoe_dropped, &fs->rx_fcoe_dropped);
679 i40e_stat_update32(hw, I40E_GL_FCOEPTC(idx),
680 vsi->fcoe_stat_offsets_loaded,
681 &ofs->tx_fcoe_packets, &fs->tx_fcoe_packets);
682 i40e_stat_update48(hw, I40E_GL_FCOEDWTCH(idx), I40E_GL_FCOEDWTCL(idx),
683 vsi->fcoe_stat_offsets_loaded,
684 &ofs->tx_fcoe_dwords, &fs->tx_fcoe_dwords);
685 i40e_stat_update32(hw, I40E_GL_FCOECRC(idx),
686 vsi->fcoe_stat_offsets_loaded,
687 &ofs->fcoe_bad_fccrc, &fs->fcoe_bad_fccrc);
688 i40e_stat_update32(hw, I40E_GL_FCOELAST(idx),
689 vsi->fcoe_stat_offsets_loaded,
690 &ofs->fcoe_last_error, &fs->fcoe_last_error);
691 i40e_stat_update32(hw, I40E_GL_FCOEDDPC(idx),
692 vsi->fcoe_stat_offsets_loaded,
693 &ofs->fcoe_ddp_count, &fs->fcoe_ddp_count);
694
695 vsi->fcoe_stat_offsets_loaded = true;
696}
697
698#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000699/**
700 * i40e_update_link_xoff_rx - Update XOFF received in link flow control mode
701 * @pf: the corresponding PF
702 *
703 * Update the Rx XOFF counter (PAUSE frames) in link flow control mode
704 **/
705static void i40e_update_link_xoff_rx(struct i40e_pf *pf)
706{
707 struct i40e_hw_port_stats *osd = &pf->stats_offsets;
708 struct i40e_hw_port_stats *nsd = &pf->stats;
709 struct i40e_hw *hw = &pf->hw;
710 u64 xoff = 0;
711 u16 i, v;
712
713 if ((hw->fc.current_mode != I40E_FC_FULL) &&
714 (hw->fc.current_mode != I40E_FC_RX_PAUSE))
715 return;
716
717 xoff = nsd->link_xoff_rx;
718 i40e_stat_update32(hw, I40E_GLPRT_LXOFFRXC(hw->port),
719 pf->stat_offsets_loaded,
720 &osd->link_xoff_rx, &nsd->link_xoff_rx);
721
722 /* No new LFC xoff rx */
723 if (!(nsd->link_xoff_rx - xoff))
724 return;
725
726 /* Clear the __I40E_HANG_CHECK_ARMED bit for all Tx rings */
Mitch Williams505682c2014-05-20 08:01:37 +0000727 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000728 struct i40e_vsi *vsi = pf->vsi[v];
729
Mitch Williamsddfda802014-05-10 04:49:10 +0000730 if (!vsi || !vsi->tx_rings[0])
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000731 continue;
732
733 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e15b2013-09-28 06:00:58 +0000734 struct i40e_ring *ring = vsi->tx_rings[i];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000735 clear_bit(__I40E_HANG_CHECK_ARMED, &ring->state);
736 }
737 }
738}
739
740/**
741 * i40e_update_prio_xoff_rx - Update XOFF received in PFC mode
742 * @pf: the corresponding PF
743 *
744 * Update the Rx XOFF counter (PAUSE frames) in PFC mode
745 **/
746static void i40e_update_prio_xoff_rx(struct i40e_pf *pf)
747{
748 struct i40e_hw_port_stats *osd = &pf->stats_offsets;
749 struct i40e_hw_port_stats *nsd = &pf->stats;
750 bool xoff[I40E_MAX_TRAFFIC_CLASS] = {false};
751 struct i40e_dcbx_config *dcb_cfg;
752 struct i40e_hw *hw = &pf->hw;
753 u16 i, v;
754 u8 tc;
755
756 dcb_cfg = &hw->local_dcbx_config;
757
758 /* See if DCB enabled with PFC TC */
759 if (!(pf->flags & I40E_FLAG_DCB_ENABLED) ||
760 !(dcb_cfg->pfc.pfcenable)) {
761 i40e_update_link_xoff_rx(pf);
762 return;
763 }
764
765 for (i = 0; i < I40E_MAX_USER_PRIORITY; i++) {
766 u64 prio_xoff = nsd->priority_xoff_rx[i];
767 i40e_stat_update32(hw, I40E_GLPRT_PXOFFRXC(hw->port, i),
768 pf->stat_offsets_loaded,
769 &osd->priority_xoff_rx[i],
770 &nsd->priority_xoff_rx[i]);
771
772 /* No new PFC xoff rx */
773 if (!(nsd->priority_xoff_rx[i] - prio_xoff))
774 continue;
775 /* Get the TC for given priority */
776 tc = dcb_cfg->etscfg.prioritytable[i];
777 xoff[tc] = true;
778 }
779
780 /* Clear the __I40E_HANG_CHECK_ARMED bit for Tx rings */
Mitch Williams505682c2014-05-20 08:01:37 +0000781 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000782 struct i40e_vsi *vsi = pf->vsi[v];
783
Mitch Williamsddfda802014-05-10 04:49:10 +0000784 if (!vsi || !vsi->tx_rings[0])
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000785 continue;
786
787 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e15b2013-09-28 06:00:58 +0000788 struct i40e_ring *ring = vsi->tx_rings[i];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000789
790 tc = ring->dcb_tc;
791 if (xoff[tc])
792 clear_bit(__I40E_HANG_CHECK_ARMED,
793 &ring->state);
794 }
795 }
796}
797
798/**
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000799 * i40e_update_vsi_stats - Update the vsi statistics counters.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000800 * @vsi: the VSI to be updated
801 *
802 * There are a few instances where we store the same stat in a
803 * couple of different structs. This is partly because we have
804 * the netdev stats that need to be filled out, which is slightly
805 * different from the "eth_stats" defined by the chip and used in
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000806 * VF communications. We sort it out here.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000807 **/
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000808static void i40e_update_vsi_stats(struct i40e_vsi *vsi)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000809{
810 struct i40e_pf *pf = vsi->back;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000811 struct rtnl_link_stats64 *ons;
812 struct rtnl_link_stats64 *ns; /* netdev stats */
813 struct i40e_eth_stats *oes;
814 struct i40e_eth_stats *es; /* device's eth stats */
815 u32 tx_restart, tx_busy;
Akeem G Abodunrinbf00b372014-10-17 03:14:39 +0000816 struct i40e_ring *p;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000817 u32 rx_page, rx_buf;
Akeem G Abodunrinbf00b372014-10-17 03:14:39 +0000818 u64 bytes, packets;
819 unsigned int start;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000820 u64 rx_p, rx_b;
821 u64 tx_p, tx_b;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000822 u16 q;
823
824 if (test_bit(__I40E_DOWN, &vsi->state) ||
825 test_bit(__I40E_CONFIG_BUSY, &pf->state))
826 return;
827
828 ns = i40e_get_vsi_stats_struct(vsi);
829 ons = &vsi->net_stats_offsets;
830 es = &vsi->eth_stats;
831 oes = &vsi->eth_stats_offsets;
832
833 /* Gather up the netdev and vsi stats that the driver collects
834 * on the fly during packet processing
835 */
836 rx_b = rx_p = 0;
837 tx_b = tx_p = 0;
838 tx_restart = tx_busy = 0;
839 rx_page = 0;
840 rx_buf = 0;
Alexander Duyck980e9b12013-09-28 06:01:03 +0000841 rcu_read_lock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000842 for (q = 0; q < vsi->num_queue_pairs; q++) {
Alexander Duyck980e9b12013-09-28 06:01:03 +0000843 /* locate Tx ring */
844 p = ACCESS_ONCE(vsi->tx_rings[q]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000845
Alexander Duyck980e9b12013-09-28 06:01:03 +0000846 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -0700847 start = u64_stats_fetch_begin_irq(&p->syncp);
Alexander Duyck980e9b12013-09-28 06:01:03 +0000848 packets = p->stats.packets;
849 bytes = p->stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -0700850 } while (u64_stats_fetch_retry_irq(&p->syncp, start));
Alexander Duyck980e9b12013-09-28 06:01:03 +0000851 tx_b += bytes;
852 tx_p += packets;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000853 tx_restart += p->tx_stats.restart_queue;
854 tx_busy += p->tx_stats.tx_busy;
Alexander Duyck980e9b12013-09-28 06:01:03 +0000855
856 /* Rx queue is part of the same block as Tx queue */
857 p = &p[1];
858 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -0700859 start = u64_stats_fetch_begin_irq(&p->syncp);
Alexander Duyck980e9b12013-09-28 06:01:03 +0000860 packets = p->stats.packets;
861 bytes = p->stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -0700862 } while (u64_stats_fetch_retry_irq(&p->syncp, start));
Alexander Duyck980e9b12013-09-28 06:01:03 +0000863 rx_b += bytes;
864 rx_p += packets;
Mitch Williams420136c2013-12-18 13:45:59 +0000865 rx_buf += p->rx_stats.alloc_buff_failed;
866 rx_page += p->rx_stats.alloc_page_failed;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000867 }
Alexander Duyck980e9b12013-09-28 06:01:03 +0000868 rcu_read_unlock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000869 vsi->tx_restart = tx_restart;
870 vsi->tx_busy = tx_busy;
871 vsi->rx_page_failed = rx_page;
872 vsi->rx_buf_failed = rx_buf;
873
874 ns->rx_packets = rx_p;
875 ns->rx_bytes = rx_b;
876 ns->tx_packets = tx_p;
877 ns->tx_bytes = tx_b;
878
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000879 /* update netdev stats from eth stats */
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000880 i40e_update_eth_stats(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000881 ons->tx_errors = oes->tx_errors;
882 ns->tx_errors = es->tx_errors;
883 ons->multicast = oes->rx_multicast;
884 ns->multicast = es->rx_multicast;
Shannon Nelson41a9e552014-04-23 04:50:20 +0000885 ons->rx_dropped = oes->rx_discards;
886 ns->rx_dropped = es->rx_discards;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000887 ons->tx_dropped = oes->tx_discards;
888 ns->tx_dropped = es->tx_discards;
889
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000890 /* pull in a couple PF stats if this is the main vsi */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000891 if (vsi == pf->vsi[pf->lan_vsi]) {
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000892 ns->rx_crc_errors = pf->stats.crc_errors;
893 ns->rx_errors = pf->stats.crc_errors + pf->stats.illegal_bytes;
894 ns->rx_length_errors = pf->stats.rx_length_errors;
895 }
896}
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000897
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000898/**
899 * i40e_update_pf_stats - Update the pf statistics counters.
900 * @pf: the PF to be updated
901 **/
902static void i40e_update_pf_stats(struct i40e_pf *pf)
903{
904 struct i40e_hw_port_stats *osd = &pf->stats_offsets;
905 struct i40e_hw_port_stats *nsd = &pf->stats;
906 struct i40e_hw *hw = &pf->hw;
907 u32 val;
908 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000909
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000910 i40e_stat_update48(hw, I40E_GLPRT_GORCH(hw->port),
911 I40E_GLPRT_GORCL(hw->port),
912 pf->stat_offsets_loaded,
913 &osd->eth.rx_bytes, &nsd->eth.rx_bytes);
914 i40e_stat_update48(hw, I40E_GLPRT_GOTCH(hw->port),
915 I40E_GLPRT_GOTCL(hw->port),
916 pf->stat_offsets_loaded,
917 &osd->eth.tx_bytes, &nsd->eth.tx_bytes);
918 i40e_stat_update32(hw, I40E_GLPRT_RDPC(hw->port),
919 pf->stat_offsets_loaded,
920 &osd->eth.rx_discards,
921 &nsd->eth.rx_discards);
922 i40e_stat_update32(hw, I40E_GLPRT_TDPC(hw->port),
923 pf->stat_offsets_loaded,
924 &osd->eth.tx_discards,
925 &nsd->eth.tx_discards);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000926
Shannon Nelson532d2832014-04-23 04:50:09 +0000927 i40e_stat_update48(hw, I40E_GLPRT_UPRCH(hw->port),
928 I40E_GLPRT_UPRCL(hw->port),
929 pf->stat_offsets_loaded,
930 &osd->eth.rx_unicast,
931 &nsd->eth.rx_unicast);
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000932 i40e_stat_update48(hw, I40E_GLPRT_MPRCH(hw->port),
933 I40E_GLPRT_MPRCL(hw->port),
934 pf->stat_offsets_loaded,
935 &osd->eth.rx_multicast,
936 &nsd->eth.rx_multicast);
Shannon Nelson532d2832014-04-23 04:50:09 +0000937 i40e_stat_update48(hw, I40E_GLPRT_BPRCH(hw->port),
938 I40E_GLPRT_BPRCL(hw->port),
939 pf->stat_offsets_loaded,
940 &osd->eth.rx_broadcast,
941 &nsd->eth.rx_broadcast);
942 i40e_stat_update48(hw, I40E_GLPRT_UPTCH(hw->port),
943 I40E_GLPRT_UPTCL(hw->port),
944 pf->stat_offsets_loaded,
945 &osd->eth.tx_unicast,
946 &nsd->eth.tx_unicast);
947 i40e_stat_update48(hw, I40E_GLPRT_MPTCH(hw->port),
948 I40E_GLPRT_MPTCL(hw->port),
949 pf->stat_offsets_loaded,
950 &osd->eth.tx_multicast,
951 &nsd->eth.tx_multicast);
952 i40e_stat_update48(hw, I40E_GLPRT_BPTCH(hw->port),
953 I40E_GLPRT_BPTCL(hw->port),
954 pf->stat_offsets_loaded,
955 &osd->eth.tx_broadcast,
956 &nsd->eth.tx_broadcast);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000957
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000958 i40e_stat_update32(hw, I40E_GLPRT_TDOLD(hw->port),
959 pf->stat_offsets_loaded,
960 &osd->tx_dropped_link_down,
961 &nsd->tx_dropped_link_down);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000962
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000963 i40e_stat_update32(hw, I40E_GLPRT_CRCERRS(hw->port),
964 pf->stat_offsets_loaded,
965 &osd->crc_errors, &nsd->crc_errors);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000966
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000967 i40e_stat_update32(hw, I40E_GLPRT_ILLERRC(hw->port),
968 pf->stat_offsets_loaded,
969 &osd->illegal_bytes, &nsd->illegal_bytes);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000970
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000971 i40e_stat_update32(hw, I40E_GLPRT_MLFC(hw->port),
972 pf->stat_offsets_loaded,
973 &osd->mac_local_faults,
974 &nsd->mac_local_faults);
975 i40e_stat_update32(hw, I40E_GLPRT_MRFC(hw->port),
976 pf->stat_offsets_loaded,
977 &osd->mac_remote_faults,
978 &nsd->mac_remote_faults);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000979
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000980 i40e_stat_update32(hw, I40E_GLPRT_RLEC(hw->port),
981 pf->stat_offsets_loaded,
982 &osd->rx_length_errors,
983 &nsd->rx_length_errors);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000984
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000985 i40e_stat_update32(hw, I40E_GLPRT_LXONRXC(hw->port),
986 pf->stat_offsets_loaded,
987 &osd->link_xon_rx, &nsd->link_xon_rx);
988 i40e_stat_update32(hw, I40E_GLPRT_LXONTXC(hw->port),
989 pf->stat_offsets_loaded,
990 &osd->link_xon_tx, &nsd->link_xon_tx);
991 i40e_update_prio_xoff_rx(pf); /* handles I40E_GLPRT_LXOFFRXC */
992 i40e_stat_update32(hw, I40E_GLPRT_LXOFFTXC(hw->port),
993 pf->stat_offsets_loaded,
994 &osd->link_xoff_tx, &nsd->link_xoff_tx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000995
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000996 for (i = 0; i < 8; i++) {
997 i40e_stat_update32(hw, I40E_GLPRT_PXONRXC(hw->port, i),
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000998 pf->stat_offsets_loaded,
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000999 &osd->priority_xon_rx[i],
1000 &nsd->priority_xon_rx[i]);
1001 i40e_stat_update32(hw, I40E_GLPRT_PXONTXC(hw->port, i),
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001002 pf->stat_offsets_loaded,
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001003 &osd->priority_xon_tx[i],
1004 &nsd->priority_xon_tx[i]);
1005 i40e_stat_update32(hw, I40E_GLPRT_PXOFFTXC(hw->port, i),
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001006 pf->stat_offsets_loaded,
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001007 &osd->priority_xoff_tx[i],
1008 &nsd->priority_xoff_tx[i]);
1009 i40e_stat_update32(hw,
1010 I40E_GLPRT_RXON2OFFCNT(hw->port, i),
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001011 pf->stat_offsets_loaded,
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001012 &osd->priority_xon_2_xoff[i],
1013 &nsd->priority_xon_2_xoff[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001014 }
1015
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001016 i40e_stat_update48(hw, I40E_GLPRT_PRC64H(hw->port),
1017 I40E_GLPRT_PRC64L(hw->port),
1018 pf->stat_offsets_loaded,
1019 &osd->rx_size_64, &nsd->rx_size_64);
1020 i40e_stat_update48(hw, I40E_GLPRT_PRC127H(hw->port),
1021 I40E_GLPRT_PRC127L(hw->port),
1022 pf->stat_offsets_loaded,
1023 &osd->rx_size_127, &nsd->rx_size_127);
1024 i40e_stat_update48(hw, I40E_GLPRT_PRC255H(hw->port),
1025 I40E_GLPRT_PRC255L(hw->port),
1026 pf->stat_offsets_loaded,
1027 &osd->rx_size_255, &nsd->rx_size_255);
1028 i40e_stat_update48(hw, I40E_GLPRT_PRC511H(hw->port),
1029 I40E_GLPRT_PRC511L(hw->port),
1030 pf->stat_offsets_loaded,
1031 &osd->rx_size_511, &nsd->rx_size_511);
1032 i40e_stat_update48(hw, I40E_GLPRT_PRC1023H(hw->port),
1033 I40E_GLPRT_PRC1023L(hw->port),
1034 pf->stat_offsets_loaded,
1035 &osd->rx_size_1023, &nsd->rx_size_1023);
1036 i40e_stat_update48(hw, I40E_GLPRT_PRC1522H(hw->port),
1037 I40E_GLPRT_PRC1522L(hw->port),
1038 pf->stat_offsets_loaded,
1039 &osd->rx_size_1522, &nsd->rx_size_1522);
1040 i40e_stat_update48(hw, I40E_GLPRT_PRC9522H(hw->port),
1041 I40E_GLPRT_PRC9522L(hw->port),
1042 pf->stat_offsets_loaded,
1043 &osd->rx_size_big, &nsd->rx_size_big);
1044
1045 i40e_stat_update48(hw, I40E_GLPRT_PTC64H(hw->port),
1046 I40E_GLPRT_PTC64L(hw->port),
1047 pf->stat_offsets_loaded,
1048 &osd->tx_size_64, &nsd->tx_size_64);
1049 i40e_stat_update48(hw, I40E_GLPRT_PTC127H(hw->port),
1050 I40E_GLPRT_PTC127L(hw->port),
1051 pf->stat_offsets_loaded,
1052 &osd->tx_size_127, &nsd->tx_size_127);
1053 i40e_stat_update48(hw, I40E_GLPRT_PTC255H(hw->port),
1054 I40E_GLPRT_PTC255L(hw->port),
1055 pf->stat_offsets_loaded,
1056 &osd->tx_size_255, &nsd->tx_size_255);
1057 i40e_stat_update48(hw, I40E_GLPRT_PTC511H(hw->port),
1058 I40E_GLPRT_PTC511L(hw->port),
1059 pf->stat_offsets_loaded,
1060 &osd->tx_size_511, &nsd->tx_size_511);
1061 i40e_stat_update48(hw, I40E_GLPRT_PTC1023H(hw->port),
1062 I40E_GLPRT_PTC1023L(hw->port),
1063 pf->stat_offsets_loaded,
1064 &osd->tx_size_1023, &nsd->tx_size_1023);
1065 i40e_stat_update48(hw, I40E_GLPRT_PTC1522H(hw->port),
1066 I40E_GLPRT_PTC1522L(hw->port),
1067 pf->stat_offsets_loaded,
1068 &osd->tx_size_1522, &nsd->tx_size_1522);
1069 i40e_stat_update48(hw, I40E_GLPRT_PTC9522H(hw->port),
1070 I40E_GLPRT_PTC9522L(hw->port),
1071 pf->stat_offsets_loaded,
1072 &osd->tx_size_big, &nsd->tx_size_big);
1073
1074 i40e_stat_update32(hw, I40E_GLPRT_RUC(hw->port),
1075 pf->stat_offsets_loaded,
1076 &osd->rx_undersize, &nsd->rx_undersize);
1077 i40e_stat_update32(hw, I40E_GLPRT_RFC(hw->port),
1078 pf->stat_offsets_loaded,
1079 &osd->rx_fragments, &nsd->rx_fragments);
1080 i40e_stat_update32(hw, I40E_GLPRT_ROC(hw->port),
1081 pf->stat_offsets_loaded,
1082 &osd->rx_oversize, &nsd->rx_oversize);
1083 i40e_stat_update32(hw, I40E_GLPRT_RJC(hw->port),
1084 pf->stat_offsets_loaded,
1085 &osd->rx_jabber, &nsd->rx_jabber);
1086
Anjali Singhai Jain433c47d2014-05-22 06:32:17 +00001087 /* FDIR stats */
1088 i40e_stat_update32(hw, I40E_GLQF_PCNT(pf->fd_atr_cnt_idx),
1089 pf->stat_offsets_loaded,
1090 &osd->fd_atr_match, &nsd->fd_atr_match);
1091 i40e_stat_update32(hw, I40E_GLQF_PCNT(pf->fd_sb_cnt_idx),
1092 pf->stat_offsets_loaded,
1093 &osd->fd_sb_match, &nsd->fd_sb_match);
1094
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001095 val = rd32(hw, I40E_PRTPM_EEE_STAT);
1096 nsd->tx_lpi_status =
1097 (val & I40E_PRTPM_EEE_STAT_TX_LPI_STATUS_MASK) >>
1098 I40E_PRTPM_EEE_STAT_TX_LPI_STATUS_SHIFT;
1099 nsd->rx_lpi_status =
1100 (val & I40E_PRTPM_EEE_STAT_RX_LPI_STATUS_MASK) >>
1101 I40E_PRTPM_EEE_STAT_RX_LPI_STATUS_SHIFT;
1102 i40e_stat_update32(hw, I40E_PRTPM_TLPIC,
1103 pf->stat_offsets_loaded,
1104 &osd->tx_lpi_count, &nsd->tx_lpi_count);
1105 i40e_stat_update32(hw, I40E_PRTPM_RLPIC,
1106 pf->stat_offsets_loaded,
1107 &osd->rx_lpi_count, &nsd->rx_lpi_count);
1108
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001109 pf->stat_offsets_loaded = true;
1110}
1111
1112/**
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001113 * i40e_update_stats - Update the various statistics counters.
1114 * @vsi: the VSI to be updated
1115 *
1116 * Update the various stats for this VSI and its related entities.
1117 **/
1118void i40e_update_stats(struct i40e_vsi *vsi)
1119{
1120 struct i40e_pf *pf = vsi->back;
1121
1122 if (vsi == pf->vsi[pf->lan_vsi])
1123 i40e_update_pf_stats(pf);
1124
1125 i40e_update_vsi_stats(vsi);
Vasu Dev38e00432014-08-01 13:27:03 -07001126#ifdef I40E_FCOE
1127 i40e_update_fcoe_stats(vsi);
1128#endif
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001129}
1130
1131/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001132 * i40e_find_filter - Search VSI filter list for specific mac/vlan filter
1133 * @vsi: the VSI to be searched
1134 * @macaddr: the MAC address
1135 * @vlan: the vlan
1136 * @is_vf: make sure its a vf filter, else doesn't matter
1137 * @is_netdev: make sure its a netdev filter, else doesn't matter
1138 *
1139 * Returns ptr to the filter object or NULL
1140 **/
1141static struct i40e_mac_filter *i40e_find_filter(struct i40e_vsi *vsi,
1142 u8 *macaddr, s16 vlan,
1143 bool is_vf, bool is_netdev)
1144{
1145 struct i40e_mac_filter *f;
1146
1147 if (!vsi || !macaddr)
1148 return NULL;
1149
1150 list_for_each_entry(f, &vsi->mac_filter_list, list) {
1151 if ((ether_addr_equal(macaddr, f->macaddr)) &&
1152 (vlan == f->vlan) &&
1153 (!is_vf || f->is_vf) &&
1154 (!is_netdev || f->is_netdev))
1155 return f;
1156 }
1157 return NULL;
1158}
1159
1160/**
1161 * i40e_find_mac - Find a mac addr in the macvlan filters list
1162 * @vsi: the VSI to be searched
1163 * @macaddr: the MAC address we are searching for
1164 * @is_vf: make sure its a vf filter, else doesn't matter
1165 * @is_netdev: make sure its a netdev filter, else doesn't matter
1166 *
1167 * Returns the first filter with the provided MAC address or NULL if
1168 * MAC address was not found
1169 **/
1170struct i40e_mac_filter *i40e_find_mac(struct i40e_vsi *vsi, u8 *macaddr,
1171 bool is_vf, bool is_netdev)
1172{
1173 struct i40e_mac_filter *f;
1174
1175 if (!vsi || !macaddr)
1176 return NULL;
1177
1178 list_for_each_entry(f, &vsi->mac_filter_list, list) {
1179 if ((ether_addr_equal(macaddr, f->macaddr)) &&
1180 (!is_vf || f->is_vf) &&
1181 (!is_netdev || f->is_netdev))
1182 return f;
1183 }
1184 return NULL;
1185}
1186
1187/**
1188 * i40e_is_vsi_in_vlan - Check if VSI is in vlan mode
1189 * @vsi: the VSI to be searched
1190 *
1191 * Returns true if VSI is in vlan mode or false otherwise
1192 **/
1193bool i40e_is_vsi_in_vlan(struct i40e_vsi *vsi)
1194{
1195 struct i40e_mac_filter *f;
1196
1197 /* Only -1 for all the filters denotes not in vlan mode
1198 * so we have to go through all the list in order to make sure
1199 */
1200 list_for_each_entry(f, &vsi->mac_filter_list, list) {
1201 if (f->vlan >= 0)
1202 return true;
1203 }
1204
1205 return false;
1206}
1207
1208/**
1209 * i40e_put_mac_in_vlan - Make macvlan filters from macaddrs and vlans
1210 * @vsi: the VSI to be searched
1211 * @macaddr: the mac address to be filtered
1212 * @is_vf: true if it is a vf
1213 * @is_netdev: true if it is a netdev
1214 *
1215 * Goes through all the macvlan filters and adds a
1216 * macvlan filter for each unique vlan that already exists
1217 *
1218 * Returns first filter found on success, else NULL
1219 **/
1220struct i40e_mac_filter *i40e_put_mac_in_vlan(struct i40e_vsi *vsi, u8 *macaddr,
1221 bool is_vf, bool is_netdev)
1222{
1223 struct i40e_mac_filter *f;
1224
1225 list_for_each_entry(f, &vsi->mac_filter_list, list) {
1226 if (!i40e_find_filter(vsi, macaddr, f->vlan,
1227 is_vf, is_netdev)) {
1228 if (!i40e_add_filter(vsi, macaddr, f->vlan,
Jesse Brandeburg8fb905b2014-01-17 15:36:33 -08001229 is_vf, is_netdev))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001230 return NULL;
1231 }
1232 }
1233
1234 return list_first_entry_or_null(&vsi->mac_filter_list,
1235 struct i40e_mac_filter, list);
1236}
1237
1238/**
Greg Rose8c27d422014-05-22 06:31:56 +00001239 * i40e_rm_default_mac_filter - Remove the default MAC filter set by NVM
1240 * @vsi: the PF Main VSI - inappropriate for any other VSI
1241 * @macaddr: the MAC address
Shannon Nelson30650cc2014-07-29 04:01:50 +00001242 *
1243 * Some older firmware configurations set up a default promiscuous VLAN
1244 * filter that needs to be removed.
Greg Rose8c27d422014-05-22 06:31:56 +00001245 **/
Shannon Nelson30650cc2014-07-29 04:01:50 +00001246static int i40e_rm_default_mac_filter(struct i40e_vsi *vsi, u8 *macaddr)
Greg Rose8c27d422014-05-22 06:31:56 +00001247{
1248 struct i40e_aqc_remove_macvlan_element_data element;
1249 struct i40e_pf *pf = vsi->back;
1250 i40e_status aq_ret;
1251
1252 /* Only appropriate for the PF main VSI */
1253 if (vsi->type != I40E_VSI_MAIN)
Shannon Nelson30650cc2014-07-29 04:01:50 +00001254 return -EINVAL;
Greg Rose8c27d422014-05-22 06:31:56 +00001255
Shannon Nelson30650cc2014-07-29 04:01:50 +00001256 memset(&element, 0, sizeof(element));
Greg Rose8c27d422014-05-22 06:31:56 +00001257 ether_addr_copy(element.mac_addr, macaddr);
1258 element.vlan_tag = 0;
1259 element.flags = I40E_AQC_MACVLAN_DEL_PERFECT_MATCH |
1260 I40E_AQC_MACVLAN_DEL_IGNORE_VLAN;
1261 aq_ret = i40e_aq_remove_macvlan(&pf->hw, vsi->seid, &element, 1, NULL);
1262 if (aq_ret)
Shannon Nelson30650cc2014-07-29 04:01:50 +00001263 return -ENOENT;
1264
1265 return 0;
Greg Rose8c27d422014-05-22 06:31:56 +00001266}
1267
1268/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001269 * i40e_add_filter - Add a mac/vlan filter to the VSI
1270 * @vsi: the VSI to be searched
1271 * @macaddr: the MAC address
1272 * @vlan: the vlan
1273 * @is_vf: make sure its a vf filter, else doesn't matter
1274 * @is_netdev: make sure its a netdev filter, else doesn't matter
1275 *
1276 * Returns ptr to the filter object or NULL when no memory available.
1277 **/
1278struct i40e_mac_filter *i40e_add_filter(struct i40e_vsi *vsi,
1279 u8 *macaddr, s16 vlan,
1280 bool is_vf, bool is_netdev)
1281{
1282 struct i40e_mac_filter *f;
1283
1284 if (!vsi || !macaddr)
1285 return NULL;
1286
1287 f = i40e_find_filter(vsi, macaddr, vlan, is_vf, is_netdev);
1288 if (!f) {
1289 f = kzalloc(sizeof(*f), GFP_ATOMIC);
1290 if (!f)
1291 goto add_filter_out;
1292
Greg Rose9a173902014-05-22 06:32:02 +00001293 ether_addr_copy(f->macaddr, macaddr);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001294 f->vlan = vlan;
1295 f->changed = true;
1296
1297 INIT_LIST_HEAD(&f->list);
1298 list_add(&f->list, &vsi->mac_filter_list);
1299 }
1300
1301 /* increment counter and add a new flag if needed */
1302 if (is_vf) {
1303 if (!f->is_vf) {
1304 f->is_vf = true;
1305 f->counter++;
1306 }
1307 } else if (is_netdev) {
1308 if (!f->is_netdev) {
1309 f->is_netdev = true;
1310 f->counter++;
1311 }
1312 } else {
1313 f->counter++;
1314 }
1315
1316 /* changed tells sync_filters_subtask to
1317 * push the filter down to the firmware
1318 */
1319 if (f->changed) {
1320 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
1321 vsi->back->flags |= I40E_FLAG_FILTER_SYNC;
1322 }
1323
1324add_filter_out:
1325 return f;
1326}
1327
1328/**
1329 * i40e_del_filter - Remove a mac/vlan filter from the VSI
1330 * @vsi: the VSI to be searched
1331 * @macaddr: the MAC address
1332 * @vlan: the vlan
1333 * @is_vf: make sure it's a vf filter, else doesn't matter
1334 * @is_netdev: make sure it's a netdev filter, else doesn't matter
1335 **/
1336void i40e_del_filter(struct i40e_vsi *vsi,
1337 u8 *macaddr, s16 vlan,
1338 bool is_vf, bool is_netdev)
1339{
1340 struct i40e_mac_filter *f;
1341
1342 if (!vsi || !macaddr)
1343 return;
1344
1345 f = i40e_find_filter(vsi, macaddr, vlan, is_vf, is_netdev);
1346 if (!f || f->counter == 0)
1347 return;
1348
1349 if (is_vf) {
1350 if (f->is_vf) {
1351 f->is_vf = false;
1352 f->counter--;
1353 }
1354 } else if (is_netdev) {
1355 if (f->is_netdev) {
1356 f->is_netdev = false;
1357 f->counter--;
1358 }
1359 } else {
1360 /* make sure we don't remove a filter in use by vf or netdev */
1361 int min_f = 0;
1362 min_f += (f->is_vf ? 1 : 0);
1363 min_f += (f->is_netdev ? 1 : 0);
1364
1365 if (f->counter > min_f)
1366 f->counter--;
1367 }
1368
1369 /* counter == 0 tells sync_filters_subtask to
1370 * remove the filter from the firmware's list
1371 */
1372 if (f->counter == 0) {
1373 f->changed = true;
1374 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
1375 vsi->back->flags |= I40E_FLAG_FILTER_SYNC;
1376 }
1377}
1378
1379/**
1380 * i40e_set_mac - NDO callback to set mac address
1381 * @netdev: network interface device structure
1382 * @p: pointer to an address structure
1383 *
1384 * Returns 0 on success, negative on failure
1385 **/
Vasu Dev38e00432014-08-01 13:27:03 -07001386#ifdef I40E_FCOE
1387int i40e_set_mac(struct net_device *netdev, void *p)
1388#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001389static int i40e_set_mac(struct net_device *netdev, void *p)
Vasu Dev38e00432014-08-01 13:27:03 -07001390#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001391{
1392 struct i40e_netdev_priv *np = netdev_priv(netdev);
1393 struct i40e_vsi *vsi = np->vsi;
Shannon Nelson30650cc2014-07-29 04:01:50 +00001394 struct i40e_pf *pf = vsi->back;
1395 struct i40e_hw *hw = &pf->hw;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001396 struct sockaddr *addr = p;
1397 struct i40e_mac_filter *f;
1398
1399 if (!is_valid_ether_addr(addr->sa_data))
1400 return -EADDRNOTAVAIL;
1401
Shannon Nelson30650cc2014-07-29 04:01:50 +00001402 if (ether_addr_equal(netdev->dev_addr, addr->sa_data)) {
1403 netdev_info(netdev, "already using mac address %pM\n",
1404 addr->sa_data);
1405 return 0;
1406 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001407
Anjali Singhai Jain80f64282013-11-28 06:39:47 +00001408 if (test_bit(__I40E_DOWN, &vsi->back->state) ||
1409 test_bit(__I40E_RESET_RECOVERY_PENDING, &vsi->back->state))
1410 return -EADDRNOTAVAIL;
1411
Shannon Nelson30650cc2014-07-29 04:01:50 +00001412 if (ether_addr_equal(hw->mac.addr, addr->sa_data))
1413 netdev_info(netdev, "returning to hw mac address %pM\n",
1414 hw->mac.addr);
1415 else
1416 netdev_info(netdev, "set new mac address %pM\n", addr->sa_data);
1417
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001418 if (vsi->type == I40E_VSI_MAIN) {
1419 i40e_status ret;
1420 ret = i40e_aq_mac_address_write(&vsi->back->hw,
Shannon Nelsoncc412222014-06-04 01:23:21 +00001421 I40E_AQC_WRITE_TYPE_LAA_WOL,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001422 addr->sa_data, NULL);
1423 if (ret) {
1424 netdev_info(netdev,
1425 "Addr change for Main VSI failed: %d\n",
1426 ret);
1427 return -EADDRNOTAVAIL;
1428 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001429 }
1430
Shannon Nelson30650cc2014-07-29 04:01:50 +00001431 if (ether_addr_equal(netdev->dev_addr, hw->mac.addr)) {
1432 struct i40e_aqc_remove_macvlan_element_data element;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001433
Shannon Nelson30650cc2014-07-29 04:01:50 +00001434 memset(&element, 0, sizeof(element));
1435 ether_addr_copy(element.mac_addr, netdev->dev_addr);
1436 element.flags = I40E_AQC_MACVLAN_DEL_PERFECT_MATCH;
1437 i40e_aq_remove_macvlan(&pf->hw, vsi->seid, &element, 1, NULL);
1438 } else {
Shannon Nelson6c8ad1b2014-06-04 01:23:22 +00001439 i40e_del_filter(vsi, netdev->dev_addr, I40E_VLAN_ANY,
1440 false, false);
Shannon Nelson6c8ad1b2014-06-04 01:23:22 +00001441 }
1442
Shannon Nelson30650cc2014-07-29 04:01:50 +00001443 if (ether_addr_equal(addr->sa_data, hw->mac.addr)) {
1444 struct i40e_aqc_add_macvlan_element_data element;
1445
1446 memset(&element, 0, sizeof(element));
1447 ether_addr_copy(element.mac_addr, hw->mac.addr);
1448 element.flags = cpu_to_le16(I40E_AQC_MACVLAN_ADD_PERFECT_MATCH);
1449 i40e_aq_add_macvlan(&pf->hw, vsi->seid, &element, 1, NULL);
1450 } else {
1451 f = i40e_add_filter(vsi, addr->sa_data, I40E_VLAN_ANY,
1452 false, false);
1453 if (f)
1454 f->is_laa = true;
1455 }
1456
1457 i40e_sync_vsi_filters(vsi);
1458 ether_addr_copy(netdev->dev_addr, addr->sa_data);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001459
1460 return 0;
1461}
1462
1463/**
1464 * i40e_vsi_setup_queue_map - Setup a VSI queue map based on enabled_tc
1465 * @vsi: the VSI being setup
1466 * @ctxt: VSI context structure
1467 * @enabled_tc: Enabled TCs bitmap
1468 * @is_add: True if called before Add VSI
1469 *
1470 * Setup VSI queue mapping for enabled traffic classes.
1471 **/
Vasu Dev38e00432014-08-01 13:27:03 -07001472#ifdef I40E_FCOE
1473void i40e_vsi_setup_queue_map(struct i40e_vsi *vsi,
1474 struct i40e_vsi_context *ctxt,
1475 u8 enabled_tc,
1476 bool is_add)
1477#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001478static void i40e_vsi_setup_queue_map(struct i40e_vsi *vsi,
1479 struct i40e_vsi_context *ctxt,
1480 u8 enabled_tc,
1481 bool is_add)
Vasu Dev38e00432014-08-01 13:27:03 -07001482#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001483{
1484 struct i40e_pf *pf = vsi->back;
1485 u16 sections = 0;
1486 u8 netdev_tc = 0;
1487 u16 numtc = 0;
1488 u16 qcount;
1489 u8 offset;
1490 u16 qmap;
1491 int i;
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001492 u16 num_tc_qps = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001493
1494 sections = I40E_AQ_VSI_PROP_QUEUE_MAP_VALID;
1495 offset = 0;
1496
1497 if (enabled_tc && (vsi->back->flags & I40E_FLAG_DCB_ENABLED)) {
1498 /* Find numtc from enabled TC bitmap */
1499 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
1500 if (enabled_tc & (1 << i)) /* TC is enabled */
1501 numtc++;
1502 }
1503 if (!numtc) {
1504 dev_warn(&pf->pdev->dev, "DCB is enabled but no TC enabled, forcing TC0\n");
1505 numtc = 1;
1506 }
1507 } else {
1508 /* At least TC0 is enabled in case of non-DCB case */
1509 numtc = 1;
1510 }
1511
1512 vsi->tc_config.numtc = numtc;
1513 vsi->tc_config.enabled_tc = enabled_tc ? enabled_tc : 1;
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001514 /* Number of queues per enabled TC */
Anjali Singhai7f9ff472015-02-21 06:43:19 +00001515 /* In MFP case we can have a much lower count of MSIx
1516 * vectors available and so we need to lower the used
1517 * q count.
1518 */
1519 qcount = min_t(int, vsi->alloc_queue_pairs, pf->num_lan_msix);
1520 num_tc_qps = qcount / numtc;
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001521 num_tc_qps = min_t(int, num_tc_qps, I40E_MAX_QUEUES_PER_TC);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001522
1523 /* Setup queue offset/count for all TCs for given VSI */
1524 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
1525 /* See if the given TC is enabled for the given VSI */
1526 if (vsi->tc_config.enabled_tc & (1 << i)) { /* TC is enabled */
1527 int pow, num_qps;
1528
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001529 switch (vsi->type) {
1530 case I40E_VSI_MAIN:
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001531 qcount = min_t(int, pf->rss_size, num_tc_qps);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001532 break;
Vasu Dev38e00432014-08-01 13:27:03 -07001533#ifdef I40E_FCOE
1534 case I40E_VSI_FCOE:
1535 qcount = num_tc_qps;
1536 break;
1537#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001538 case I40E_VSI_FDIR:
1539 case I40E_VSI_SRIOV:
1540 case I40E_VSI_VMDQ2:
1541 default:
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001542 qcount = num_tc_qps;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001543 WARN_ON(i != 0);
1544 break;
1545 }
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001546 vsi->tc_config.tc_info[i].qoffset = offset;
1547 vsi->tc_config.tc_info[i].qcount = qcount;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001548
1549 /* find the power-of-2 of the number of queue pairs */
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001550 num_qps = qcount;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001551 pow = 0;
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001552 while (num_qps && ((1 << pow) < qcount)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001553 pow++;
1554 num_qps >>= 1;
1555 }
1556
1557 vsi->tc_config.tc_info[i].netdev_tc = netdev_tc++;
1558 qmap =
1559 (offset << I40E_AQ_VSI_TC_QUE_OFFSET_SHIFT) |
1560 (pow << I40E_AQ_VSI_TC_QUE_NUMBER_SHIFT);
1561
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001562 offset += qcount;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001563 } else {
1564 /* TC is not enabled so set the offset to
1565 * default queue and allocate one queue
1566 * for the given TC.
1567 */
1568 vsi->tc_config.tc_info[i].qoffset = 0;
1569 vsi->tc_config.tc_info[i].qcount = 1;
1570 vsi->tc_config.tc_info[i].netdev_tc = 0;
1571
1572 qmap = 0;
1573 }
1574 ctxt->info.tc_mapping[i] = cpu_to_le16(qmap);
1575 }
1576
1577 /* Set actual Tx/Rx queue pairs */
1578 vsi->num_queue_pairs = offset;
1579
1580 /* Scheduler section valid can only be set for ADD VSI */
1581 if (is_add) {
1582 sections |= I40E_AQ_VSI_PROP_SCHED_VALID;
1583
1584 ctxt->info.up_enable_bits = enabled_tc;
1585 }
1586 if (vsi->type == I40E_VSI_SRIOV) {
1587 ctxt->info.mapping_flags |=
1588 cpu_to_le16(I40E_AQ_VSI_QUE_MAP_NONCONTIG);
1589 for (i = 0; i < vsi->num_queue_pairs; i++)
1590 ctxt->info.queue_mapping[i] =
1591 cpu_to_le16(vsi->base_queue + i);
1592 } else {
1593 ctxt->info.mapping_flags |=
1594 cpu_to_le16(I40E_AQ_VSI_QUE_MAP_CONTIG);
1595 ctxt->info.queue_mapping[0] = cpu_to_le16(vsi->base_queue);
1596 }
1597 ctxt->info.valid_sections |= cpu_to_le16(sections);
1598}
1599
1600/**
1601 * i40e_set_rx_mode - NDO callback to set the netdev filters
1602 * @netdev: network interface device structure
1603 **/
Vasu Dev38e00432014-08-01 13:27:03 -07001604#ifdef I40E_FCOE
1605void i40e_set_rx_mode(struct net_device *netdev)
1606#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001607static void i40e_set_rx_mode(struct net_device *netdev)
Vasu Dev38e00432014-08-01 13:27:03 -07001608#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001609{
1610 struct i40e_netdev_priv *np = netdev_priv(netdev);
1611 struct i40e_mac_filter *f, *ftmp;
1612 struct i40e_vsi *vsi = np->vsi;
1613 struct netdev_hw_addr *uca;
1614 struct netdev_hw_addr *mca;
1615 struct netdev_hw_addr *ha;
1616
1617 /* add addr if not already in the filter list */
1618 netdev_for_each_uc_addr(uca, netdev) {
1619 if (!i40e_find_mac(vsi, uca->addr, false, true)) {
1620 if (i40e_is_vsi_in_vlan(vsi))
1621 i40e_put_mac_in_vlan(vsi, uca->addr,
1622 false, true);
1623 else
1624 i40e_add_filter(vsi, uca->addr, I40E_VLAN_ANY,
1625 false, true);
1626 }
1627 }
1628
1629 netdev_for_each_mc_addr(mca, netdev) {
1630 if (!i40e_find_mac(vsi, mca->addr, false, true)) {
1631 if (i40e_is_vsi_in_vlan(vsi))
1632 i40e_put_mac_in_vlan(vsi, mca->addr,
1633 false, true);
1634 else
1635 i40e_add_filter(vsi, mca->addr, I40E_VLAN_ANY,
1636 false, true);
1637 }
1638 }
1639
1640 /* remove filter if not in netdev list */
1641 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
1642 bool found = false;
1643
1644 if (!f->is_netdev)
1645 continue;
1646
1647 if (is_multicast_ether_addr(f->macaddr)) {
1648 netdev_for_each_mc_addr(mca, netdev) {
1649 if (ether_addr_equal(mca->addr, f->macaddr)) {
1650 found = true;
1651 break;
1652 }
1653 }
1654 } else {
1655 netdev_for_each_uc_addr(uca, netdev) {
1656 if (ether_addr_equal(uca->addr, f->macaddr)) {
1657 found = true;
1658 break;
1659 }
1660 }
1661
1662 for_each_dev_addr(netdev, ha) {
1663 if (ether_addr_equal(ha->addr, f->macaddr)) {
1664 found = true;
1665 break;
1666 }
1667 }
1668 }
1669 if (!found)
1670 i40e_del_filter(
1671 vsi, f->macaddr, I40E_VLAN_ANY, false, true);
1672 }
1673
1674 /* check for other flag changes */
1675 if (vsi->current_netdev_flags != vsi->netdev->flags) {
1676 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
1677 vsi->back->flags |= I40E_FLAG_FILTER_SYNC;
1678 }
1679}
1680
1681/**
1682 * i40e_sync_vsi_filters - Update the VSI filter list to the HW
1683 * @vsi: ptr to the VSI
1684 *
1685 * Push any outstanding VSI filter changes through the AdminQ.
1686 *
1687 * Returns 0 or error value
1688 **/
1689int i40e_sync_vsi_filters(struct i40e_vsi *vsi)
1690{
1691 struct i40e_mac_filter *f, *ftmp;
1692 bool promisc_forced_on = false;
1693 bool add_happened = false;
1694 int filter_list_len = 0;
1695 u32 changed_flags = 0;
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001696 i40e_status aq_ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001697 struct i40e_pf *pf;
1698 int num_add = 0;
1699 int num_del = 0;
1700 u16 cmd_flags;
1701
1702 /* empty array typed pointers, kcalloc later */
1703 struct i40e_aqc_add_macvlan_element_data *add_list;
1704 struct i40e_aqc_remove_macvlan_element_data *del_list;
1705
1706 while (test_and_set_bit(__I40E_CONFIG_BUSY, &vsi->state))
1707 usleep_range(1000, 2000);
1708 pf = vsi->back;
1709
1710 if (vsi->netdev) {
1711 changed_flags = vsi->current_netdev_flags ^ vsi->netdev->flags;
1712 vsi->current_netdev_flags = vsi->netdev->flags;
1713 }
1714
1715 if (vsi->flags & I40E_VSI_FLAG_FILTER_CHANGED) {
1716 vsi->flags &= ~I40E_VSI_FLAG_FILTER_CHANGED;
1717
1718 filter_list_len = pf->hw.aq.asq_buf_size /
1719 sizeof(struct i40e_aqc_remove_macvlan_element_data);
1720 del_list = kcalloc(filter_list_len,
1721 sizeof(struct i40e_aqc_remove_macvlan_element_data),
1722 GFP_KERNEL);
1723 if (!del_list)
1724 return -ENOMEM;
1725
1726 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
1727 if (!f->changed)
1728 continue;
1729
1730 if (f->counter != 0)
1731 continue;
1732 f->changed = false;
1733 cmd_flags = 0;
1734
1735 /* add to delete list */
Greg Rose9a173902014-05-22 06:32:02 +00001736 ether_addr_copy(del_list[num_del].mac_addr, f->macaddr);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001737 del_list[num_del].vlan_tag =
1738 cpu_to_le16((u16)(f->vlan ==
1739 I40E_VLAN_ANY ? 0 : f->vlan));
1740
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001741 cmd_flags |= I40E_AQC_MACVLAN_DEL_PERFECT_MATCH;
1742 del_list[num_del].flags = cmd_flags;
1743 num_del++;
1744
1745 /* unlink from filter list */
1746 list_del(&f->list);
1747 kfree(f);
1748
1749 /* flush a full buffer */
1750 if (num_del == filter_list_len) {
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001751 aq_ret = i40e_aq_remove_macvlan(&pf->hw,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001752 vsi->seid, del_list, num_del,
1753 NULL);
1754 num_del = 0;
1755 memset(del_list, 0, sizeof(*del_list));
1756
Shannon Nelsonfdfe9cb2014-05-20 08:01:39 +00001757 if (aq_ret &&
1758 pf->hw.aq.asq_last_status !=
1759 I40E_AQ_RC_ENOENT)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001760 dev_info(&pf->pdev->dev,
1761 "ignoring delete macvlan error, err %d, aq_err %d while flushing a full buffer\n",
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001762 aq_ret,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001763 pf->hw.aq.asq_last_status);
1764 }
1765 }
1766 if (num_del) {
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001767 aq_ret = i40e_aq_remove_macvlan(&pf->hw, vsi->seid,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001768 del_list, num_del, NULL);
1769 num_del = 0;
1770
Shannon Nelsonfdfe9cb2014-05-20 08:01:39 +00001771 if (aq_ret &&
1772 pf->hw.aq.asq_last_status != I40E_AQ_RC_ENOENT)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001773 dev_info(&pf->pdev->dev,
1774 "ignoring delete macvlan error, err %d, aq_err %d\n",
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001775 aq_ret, pf->hw.aq.asq_last_status);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001776 }
1777
1778 kfree(del_list);
1779 del_list = NULL;
1780
1781 /* do all the adds now */
1782 filter_list_len = pf->hw.aq.asq_buf_size /
1783 sizeof(struct i40e_aqc_add_macvlan_element_data),
1784 add_list = kcalloc(filter_list_len,
1785 sizeof(struct i40e_aqc_add_macvlan_element_data),
1786 GFP_KERNEL);
1787 if (!add_list)
1788 return -ENOMEM;
1789
1790 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
1791 if (!f->changed)
1792 continue;
1793
1794 if (f->counter == 0)
1795 continue;
1796 f->changed = false;
1797 add_happened = true;
1798 cmd_flags = 0;
1799
1800 /* add to add array */
Greg Rose9a173902014-05-22 06:32:02 +00001801 ether_addr_copy(add_list[num_add].mac_addr, f->macaddr);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001802 add_list[num_add].vlan_tag =
1803 cpu_to_le16(
1804 (u16)(f->vlan == I40E_VLAN_ANY ? 0 : f->vlan));
1805 add_list[num_add].queue_number = 0;
1806
1807 cmd_flags |= I40E_AQC_MACVLAN_ADD_PERFECT_MATCH;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001808 add_list[num_add].flags = cpu_to_le16(cmd_flags);
1809 num_add++;
1810
1811 /* flush a full buffer */
1812 if (num_add == filter_list_len) {
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001813 aq_ret = i40e_aq_add_macvlan(&pf->hw, vsi->seid,
1814 add_list, num_add,
1815 NULL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001816 num_add = 0;
1817
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001818 if (aq_ret)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001819 break;
1820 memset(add_list, 0, sizeof(*add_list));
1821 }
1822 }
1823 if (num_add) {
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001824 aq_ret = i40e_aq_add_macvlan(&pf->hw, vsi->seid,
1825 add_list, num_add, NULL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001826 num_add = 0;
1827 }
1828 kfree(add_list);
1829 add_list = NULL;
1830
Shannon Nelson30650cc2014-07-29 04:01:50 +00001831 if (add_happened && aq_ret &&
1832 pf->hw.aq.asq_last_status != I40E_AQ_RC_EINVAL) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001833 dev_info(&pf->pdev->dev,
1834 "add filter failed, err %d, aq_err %d\n",
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001835 aq_ret, pf->hw.aq.asq_last_status);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001836 if ((pf->hw.aq.asq_last_status == I40E_AQ_RC_ENOSPC) &&
1837 !test_bit(__I40E_FILTER_OVERFLOW_PROMISC,
1838 &vsi->state)) {
1839 promisc_forced_on = true;
1840 set_bit(__I40E_FILTER_OVERFLOW_PROMISC,
1841 &vsi->state);
1842 dev_info(&pf->pdev->dev, "promiscuous mode forced on\n");
1843 }
1844 }
1845 }
1846
1847 /* check for changes in promiscuous modes */
1848 if (changed_flags & IFF_ALLMULTI) {
1849 bool cur_multipromisc;
1850 cur_multipromisc = !!(vsi->current_netdev_flags & IFF_ALLMULTI);
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001851 aq_ret = i40e_aq_set_vsi_multicast_promiscuous(&vsi->back->hw,
1852 vsi->seid,
1853 cur_multipromisc,
1854 NULL);
1855 if (aq_ret)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001856 dev_info(&pf->pdev->dev,
1857 "set multi promisc failed, err %d, aq_err %d\n",
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001858 aq_ret, pf->hw.aq.asq_last_status);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001859 }
1860 if ((changed_flags & IFF_PROMISC) || promisc_forced_on) {
1861 bool cur_promisc;
1862 cur_promisc = (!!(vsi->current_netdev_flags & IFF_PROMISC) ||
1863 test_bit(__I40E_FILTER_OVERFLOW_PROMISC,
1864 &vsi->state));
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001865 aq_ret = i40e_aq_set_vsi_unicast_promiscuous(&vsi->back->hw,
1866 vsi->seid,
1867 cur_promisc, NULL);
1868 if (aq_ret)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001869 dev_info(&pf->pdev->dev,
1870 "set uni promisc failed, err %d, aq_err %d\n",
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001871 aq_ret, pf->hw.aq.asq_last_status);
Greg Rose1a103702013-11-28 06:42:39 +00001872 aq_ret = i40e_aq_set_vsi_broadcast(&vsi->back->hw,
1873 vsi->seid,
1874 cur_promisc, NULL);
1875 if (aq_ret)
1876 dev_info(&pf->pdev->dev,
1877 "set brdcast promisc failed, err %d, aq_err %d\n",
1878 aq_ret, pf->hw.aq.asq_last_status);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001879 }
1880
1881 clear_bit(__I40E_CONFIG_BUSY, &vsi->state);
1882 return 0;
1883}
1884
1885/**
1886 * i40e_sync_filters_subtask - Sync the VSI filter list with HW
1887 * @pf: board private structure
1888 **/
1889static void i40e_sync_filters_subtask(struct i40e_pf *pf)
1890{
1891 int v;
1892
1893 if (!pf || !(pf->flags & I40E_FLAG_FILTER_SYNC))
1894 return;
1895 pf->flags &= ~I40E_FLAG_FILTER_SYNC;
1896
Mitch Williams505682c2014-05-20 08:01:37 +00001897 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001898 if (pf->vsi[v] &&
1899 (pf->vsi[v]->flags & I40E_VSI_FLAG_FILTER_CHANGED))
1900 i40e_sync_vsi_filters(pf->vsi[v]);
1901 }
1902}
1903
1904/**
1905 * i40e_change_mtu - NDO callback to change the Maximum Transfer Unit
1906 * @netdev: network interface device structure
1907 * @new_mtu: new value for maximum frame size
1908 *
1909 * Returns 0 on success, negative on failure
1910 **/
1911static int i40e_change_mtu(struct net_device *netdev, int new_mtu)
1912{
1913 struct i40e_netdev_priv *np = netdev_priv(netdev);
Jesse Brandeburg61a46a42014-04-23 04:50:05 +00001914 int max_frame = new_mtu + ETH_HLEN + ETH_FCS_LEN + VLAN_HLEN;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001915 struct i40e_vsi *vsi = np->vsi;
1916
1917 /* MTU < 68 is an error and causes problems on some kernels */
1918 if ((new_mtu < 68) || (max_frame > I40E_MAX_RXBUFFER))
1919 return -EINVAL;
1920
1921 netdev_info(netdev, "changing MTU from %d to %d\n",
1922 netdev->mtu, new_mtu);
1923 netdev->mtu = new_mtu;
1924 if (netif_running(netdev))
1925 i40e_vsi_reinit_locked(vsi);
1926
1927 return 0;
1928}
1929
1930/**
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00001931 * i40e_ioctl - Access the hwtstamp interface
1932 * @netdev: network interface device structure
1933 * @ifr: interface request data
1934 * @cmd: ioctl command
1935 **/
1936int i40e_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd)
1937{
1938 struct i40e_netdev_priv *np = netdev_priv(netdev);
1939 struct i40e_pf *pf = np->vsi->back;
1940
1941 switch (cmd) {
1942 case SIOCGHWTSTAMP:
1943 return i40e_ptp_get_ts_config(pf, ifr);
1944 case SIOCSHWTSTAMP:
1945 return i40e_ptp_set_ts_config(pf, ifr);
1946 default:
1947 return -EOPNOTSUPP;
1948 }
1949}
1950
1951/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001952 * i40e_vlan_stripping_enable - Turn on vlan stripping for the VSI
1953 * @vsi: the vsi being adjusted
1954 **/
1955void i40e_vlan_stripping_enable(struct i40e_vsi *vsi)
1956{
1957 struct i40e_vsi_context ctxt;
1958 i40e_status ret;
1959
1960 if ((vsi->info.valid_sections &
1961 cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID)) &&
1962 ((vsi->info.port_vlan_flags & I40E_AQ_VSI_PVLAN_MODE_MASK) == 0))
1963 return; /* already enabled */
1964
1965 vsi->info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
1966 vsi->info.port_vlan_flags = I40E_AQ_VSI_PVLAN_MODE_ALL |
1967 I40E_AQ_VSI_PVLAN_EMOD_STR_BOTH;
1968
1969 ctxt.seid = vsi->seid;
1970 memcpy(&ctxt.info, &vsi->info, sizeof(vsi->info));
1971 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
1972 if (ret) {
1973 dev_info(&vsi->back->pdev->dev,
1974 "%s: update vsi failed, aq_err=%d\n",
1975 __func__, vsi->back->hw.aq.asq_last_status);
1976 }
1977}
1978
1979/**
1980 * i40e_vlan_stripping_disable - Turn off vlan stripping for the VSI
1981 * @vsi: the vsi being adjusted
1982 **/
1983void i40e_vlan_stripping_disable(struct i40e_vsi *vsi)
1984{
1985 struct i40e_vsi_context ctxt;
1986 i40e_status ret;
1987
1988 if ((vsi->info.valid_sections &
1989 cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID)) &&
1990 ((vsi->info.port_vlan_flags & I40E_AQ_VSI_PVLAN_EMOD_MASK) ==
1991 I40E_AQ_VSI_PVLAN_EMOD_MASK))
1992 return; /* already disabled */
1993
1994 vsi->info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
1995 vsi->info.port_vlan_flags = I40E_AQ_VSI_PVLAN_MODE_ALL |
1996 I40E_AQ_VSI_PVLAN_EMOD_NOTHING;
1997
1998 ctxt.seid = vsi->seid;
1999 memcpy(&ctxt.info, &vsi->info, sizeof(vsi->info));
2000 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
2001 if (ret) {
2002 dev_info(&vsi->back->pdev->dev,
2003 "%s: update vsi failed, aq_err=%d\n",
2004 __func__, vsi->back->hw.aq.asq_last_status);
2005 }
2006}
2007
2008/**
2009 * i40e_vlan_rx_register - Setup or shutdown vlan offload
2010 * @netdev: network interface to be adjusted
2011 * @features: netdev features to test if VLAN offload is enabled or not
2012 **/
2013static void i40e_vlan_rx_register(struct net_device *netdev, u32 features)
2014{
2015 struct i40e_netdev_priv *np = netdev_priv(netdev);
2016 struct i40e_vsi *vsi = np->vsi;
2017
2018 if (features & NETIF_F_HW_VLAN_CTAG_RX)
2019 i40e_vlan_stripping_enable(vsi);
2020 else
2021 i40e_vlan_stripping_disable(vsi);
2022}
2023
2024/**
2025 * i40e_vsi_add_vlan - Add vsi membership for given vlan
2026 * @vsi: the vsi being configured
2027 * @vid: vlan id to be added (0 = untagged only , -1 = any)
2028 **/
2029int i40e_vsi_add_vlan(struct i40e_vsi *vsi, s16 vid)
2030{
2031 struct i40e_mac_filter *f, *add_f;
2032 bool is_netdev, is_vf;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002033
2034 is_vf = (vsi->type == I40E_VSI_SRIOV);
2035 is_netdev = !!(vsi->netdev);
2036
2037 if (is_netdev) {
2038 add_f = i40e_add_filter(vsi, vsi->netdev->dev_addr, vid,
2039 is_vf, is_netdev);
2040 if (!add_f) {
2041 dev_info(&vsi->back->pdev->dev,
2042 "Could not add vlan filter %d for %pM\n",
2043 vid, vsi->netdev->dev_addr);
2044 return -ENOMEM;
2045 }
2046 }
2047
2048 list_for_each_entry(f, &vsi->mac_filter_list, list) {
2049 add_f = i40e_add_filter(vsi, f->macaddr, vid, is_vf, is_netdev);
2050 if (!add_f) {
2051 dev_info(&vsi->back->pdev->dev,
2052 "Could not add vlan filter %d for %pM\n",
2053 vid, f->macaddr);
2054 return -ENOMEM;
2055 }
2056 }
2057
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002058 /* Now if we add a vlan tag, make sure to check if it is the first
2059 * tag (i.e. a "tag" -1 does exist) and if so replace the -1 "tag"
2060 * with 0, so we now accept untagged and specified tagged traffic
2061 * (and not any taged and untagged)
2062 */
2063 if (vid > 0) {
2064 if (is_netdev && i40e_find_filter(vsi, vsi->netdev->dev_addr,
2065 I40E_VLAN_ANY,
2066 is_vf, is_netdev)) {
2067 i40e_del_filter(vsi, vsi->netdev->dev_addr,
2068 I40E_VLAN_ANY, is_vf, is_netdev);
2069 add_f = i40e_add_filter(vsi, vsi->netdev->dev_addr, 0,
2070 is_vf, is_netdev);
2071 if (!add_f) {
2072 dev_info(&vsi->back->pdev->dev,
2073 "Could not add filter 0 for %pM\n",
2074 vsi->netdev->dev_addr);
2075 return -ENOMEM;
2076 }
2077 }
Greg Rose8d82a7c2014-01-13 16:13:04 -08002078 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002079
Greg Rose8d82a7c2014-01-13 16:13:04 -08002080 /* Do not assume that I40E_VLAN_ANY should be reset to VLAN 0 */
2081 if (vid > 0 && !vsi->info.pvid) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002082 list_for_each_entry(f, &vsi->mac_filter_list, list) {
2083 if (i40e_find_filter(vsi, f->macaddr, I40E_VLAN_ANY,
2084 is_vf, is_netdev)) {
2085 i40e_del_filter(vsi, f->macaddr, I40E_VLAN_ANY,
2086 is_vf, is_netdev);
2087 add_f = i40e_add_filter(vsi, f->macaddr,
2088 0, is_vf, is_netdev);
2089 if (!add_f) {
2090 dev_info(&vsi->back->pdev->dev,
2091 "Could not add filter 0 for %pM\n",
2092 f->macaddr);
2093 return -ENOMEM;
2094 }
2095 }
2096 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002097 }
2098
Anjali Singhai Jain80f64282013-11-28 06:39:47 +00002099 if (test_bit(__I40E_DOWN, &vsi->back->state) ||
2100 test_bit(__I40E_RESET_RECOVERY_PENDING, &vsi->back->state))
2101 return 0;
2102
2103 return i40e_sync_vsi_filters(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002104}
2105
2106/**
2107 * i40e_vsi_kill_vlan - Remove vsi membership for given vlan
2108 * @vsi: the vsi being configured
2109 * @vid: vlan id to be removed (0 = untagged only , -1 = any)
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002110 *
2111 * Return: 0 on success or negative otherwise
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002112 **/
2113int i40e_vsi_kill_vlan(struct i40e_vsi *vsi, s16 vid)
2114{
2115 struct net_device *netdev = vsi->netdev;
2116 struct i40e_mac_filter *f, *add_f;
2117 bool is_vf, is_netdev;
2118 int filter_count = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002119
2120 is_vf = (vsi->type == I40E_VSI_SRIOV);
2121 is_netdev = !!(netdev);
2122
2123 if (is_netdev)
2124 i40e_del_filter(vsi, netdev->dev_addr, vid, is_vf, is_netdev);
2125
2126 list_for_each_entry(f, &vsi->mac_filter_list, list)
2127 i40e_del_filter(vsi, f->macaddr, vid, is_vf, is_netdev);
2128
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002129 /* go through all the filters for this VSI and if there is only
2130 * vid == 0 it means there are no other filters, so vid 0 must
2131 * be replaced with -1. This signifies that we should from now
2132 * on accept any traffic (with any tag present, or untagged)
2133 */
2134 list_for_each_entry(f, &vsi->mac_filter_list, list) {
2135 if (is_netdev) {
2136 if (f->vlan &&
2137 ether_addr_equal(netdev->dev_addr, f->macaddr))
2138 filter_count++;
2139 }
2140
2141 if (f->vlan)
2142 filter_count++;
2143 }
2144
2145 if (!filter_count && is_netdev) {
2146 i40e_del_filter(vsi, netdev->dev_addr, 0, is_vf, is_netdev);
2147 f = i40e_add_filter(vsi, netdev->dev_addr, I40E_VLAN_ANY,
2148 is_vf, is_netdev);
2149 if (!f) {
2150 dev_info(&vsi->back->pdev->dev,
2151 "Could not add filter %d for %pM\n",
2152 I40E_VLAN_ANY, netdev->dev_addr);
2153 return -ENOMEM;
2154 }
2155 }
2156
2157 if (!filter_count) {
2158 list_for_each_entry(f, &vsi->mac_filter_list, list) {
2159 i40e_del_filter(vsi, f->macaddr, 0, is_vf, is_netdev);
2160 add_f = i40e_add_filter(vsi, f->macaddr, I40E_VLAN_ANY,
2161 is_vf, is_netdev);
2162 if (!add_f) {
2163 dev_info(&vsi->back->pdev->dev,
2164 "Could not add filter %d for %pM\n",
2165 I40E_VLAN_ANY, f->macaddr);
2166 return -ENOMEM;
2167 }
2168 }
2169 }
2170
Anjali Singhai Jain80f64282013-11-28 06:39:47 +00002171 if (test_bit(__I40E_DOWN, &vsi->back->state) ||
2172 test_bit(__I40E_RESET_RECOVERY_PENDING, &vsi->back->state))
2173 return 0;
2174
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002175 return i40e_sync_vsi_filters(vsi);
2176}
2177
2178/**
2179 * i40e_vlan_rx_add_vid - Add a vlan id filter to HW offload
2180 * @netdev: network interface to be adjusted
2181 * @vid: vlan id to be added
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002182 *
2183 * net_device_ops implementation for adding vlan ids
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002184 **/
Vasu Dev38e00432014-08-01 13:27:03 -07002185#ifdef I40E_FCOE
2186int i40e_vlan_rx_add_vid(struct net_device *netdev,
2187 __always_unused __be16 proto, u16 vid)
2188#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002189static int i40e_vlan_rx_add_vid(struct net_device *netdev,
2190 __always_unused __be16 proto, u16 vid)
Vasu Dev38e00432014-08-01 13:27:03 -07002191#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002192{
2193 struct i40e_netdev_priv *np = netdev_priv(netdev);
2194 struct i40e_vsi *vsi = np->vsi;
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002195 int ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002196
2197 if (vid > 4095)
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002198 return -EINVAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002199
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002200 netdev_info(netdev, "adding %pM vid=%d\n", netdev->dev_addr, vid);
2201
Anjali Singhai Jain6982d422014-02-06 05:51:10 +00002202 /* If the network stack called us with vid = 0 then
2203 * it is asking to receive priority tagged packets with
2204 * vlan id 0. Our HW receives them by default when configured
2205 * to receive untagged packets so there is no need to add an
2206 * extra filter for vlan 0 tagged packets.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002207 */
Anjali Singhai Jain6982d422014-02-06 05:51:10 +00002208 if (vid)
2209 ret = i40e_vsi_add_vlan(vsi, vid);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002210
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002211 if (!ret && (vid < VLAN_N_VID))
2212 set_bit(vid, vsi->active_vlans);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002213
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002214 return ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002215}
2216
2217/**
2218 * i40e_vlan_rx_kill_vid - Remove a vlan id filter from HW offload
2219 * @netdev: network interface to be adjusted
2220 * @vid: vlan id to be removed
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002221 *
Akeem G Abodunrinfdfd9432014-02-11 08:24:15 +00002222 * net_device_ops implementation for removing vlan ids
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002223 **/
Vasu Dev38e00432014-08-01 13:27:03 -07002224#ifdef I40E_FCOE
2225int i40e_vlan_rx_kill_vid(struct net_device *netdev,
2226 __always_unused __be16 proto, u16 vid)
2227#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002228static int i40e_vlan_rx_kill_vid(struct net_device *netdev,
2229 __always_unused __be16 proto, u16 vid)
Vasu Dev38e00432014-08-01 13:27:03 -07002230#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002231{
2232 struct i40e_netdev_priv *np = netdev_priv(netdev);
2233 struct i40e_vsi *vsi = np->vsi;
2234
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002235 netdev_info(netdev, "removing %pM vid=%d\n", netdev->dev_addr, vid);
2236
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002237 /* return code is ignored as there is nothing a user
2238 * can do about failure to remove and a log message was
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002239 * already printed from the other function
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002240 */
2241 i40e_vsi_kill_vlan(vsi, vid);
2242
2243 clear_bit(vid, vsi->active_vlans);
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002244
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002245 return 0;
2246}
2247
2248/**
2249 * i40e_restore_vlan - Reinstate vlans when vsi/netdev comes back up
2250 * @vsi: the vsi being brought back up
2251 **/
2252static void i40e_restore_vlan(struct i40e_vsi *vsi)
2253{
2254 u16 vid;
2255
2256 if (!vsi->netdev)
2257 return;
2258
2259 i40e_vlan_rx_register(vsi->netdev, vsi->netdev->features);
2260
2261 for_each_set_bit(vid, vsi->active_vlans, VLAN_N_VID)
2262 i40e_vlan_rx_add_vid(vsi->netdev, htons(ETH_P_8021Q),
2263 vid);
2264}
2265
2266/**
2267 * i40e_vsi_add_pvid - Add pvid for the VSI
2268 * @vsi: the vsi being adjusted
2269 * @vid: the vlan id to set as a PVID
2270 **/
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00002271int i40e_vsi_add_pvid(struct i40e_vsi *vsi, u16 vid)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002272{
2273 struct i40e_vsi_context ctxt;
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00002274 i40e_status aq_ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002275
2276 vsi->info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
2277 vsi->info.pvid = cpu_to_le16(vid);
Greg Rose6c12fcb2013-11-28 06:39:34 +00002278 vsi->info.port_vlan_flags = I40E_AQ_VSI_PVLAN_MODE_TAGGED |
2279 I40E_AQ_VSI_PVLAN_INSERT_PVID |
Greg Roseb774c7d2013-11-28 06:39:44 +00002280 I40E_AQ_VSI_PVLAN_EMOD_STR;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002281
2282 ctxt.seid = vsi->seid;
2283 memcpy(&ctxt.info, &vsi->info, sizeof(vsi->info));
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00002284 aq_ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
2285 if (aq_ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002286 dev_info(&vsi->back->pdev->dev,
2287 "%s: update vsi failed, aq_err=%d\n",
2288 __func__, vsi->back->hw.aq.asq_last_status);
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00002289 return -ENOENT;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002290 }
2291
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00002292 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002293}
2294
2295/**
2296 * i40e_vsi_remove_pvid - Remove the pvid from the VSI
2297 * @vsi: the vsi being adjusted
2298 *
2299 * Just use the vlan_rx_register() service to put it back to normal
2300 **/
2301void i40e_vsi_remove_pvid(struct i40e_vsi *vsi)
2302{
Greg Rose6c12fcb2013-11-28 06:39:34 +00002303 i40e_vlan_stripping_disable(vsi);
2304
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002305 vsi->info.pvid = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002306}
2307
2308/**
2309 * i40e_vsi_setup_tx_resources - Allocate VSI Tx queue resources
2310 * @vsi: ptr to the VSI
2311 *
2312 * If this function returns with an error, then it's possible one or
2313 * more of the rings is populated (while the rest are not). It is the
2314 * callers duty to clean those orphaned rings.
2315 *
2316 * Return 0 on success, negative on failure
2317 **/
2318static int i40e_vsi_setup_tx_resources(struct i40e_vsi *vsi)
2319{
2320 int i, err = 0;
2321
2322 for (i = 0; i < vsi->num_queue_pairs && !err; i++)
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00002323 err = i40e_setup_tx_descriptors(vsi->tx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002324
2325 return err;
2326}
2327
2328/**
2329 * i40e_vsi_free_tx_resources - Free Tx resources for VSI queues
2330 * @vsi: ptr to the VSI
2331 *
2332 * Free VSI's transmit software resources
2333 **/
2334static void i40e_vsi_free_tx_resources(struct i40e_vsi *vsi)
2335{
2336 int i;
2337
Greg Rose8e9dca52013-12-18 13:45:53 +00002338 if (!vsi->tx_rings)
2339 return;
2340
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002341 for (i = 0; i < vsi->num_queue_pairs; i++)
Greg Rose8e9dca52013-12-18 13:45:53 +00002342 if (vsi->tx_rings[i] && vsi->tx_rings[i]->desc)
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00002343 i40e_free_tx_resources(vsi->tx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002344}
2345
2346/**
2347 * i40e_vsi_setup_rx_resources - Allocate VSI queues Rx resources
2348 * @vsi: ptr to the VSI
2349 *
2350 * If this function returns with an error, then it's possible one or
2351 * more of the rings is populated (while the rest are not). It is the
2352 * callers duty to clean those orphaned rings.
2353 *
2354 * Return 0 on success, negative on failure
2355 **/
2356static int i40e_vsi_setup_rx_resources(struct i40e_vsi *vsi)
2357{
2358 int i, err = 0;
2359
2360 for (i = 0; i < vsi->num_queue_pairs && !err; i++)
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00002361 err = i40e_setup_rx_descriptors(vsi->rx_rings[i]);
Vasu Dev38e00432014-08-01 13:27:03 -07002362#ifdef I40E_FCOE
2363 i40e_fcoe_setup_ddp_resources(vsi);
2364#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002365 return err;
2366}
2367
2368/**
2369 * i40e_vsi_free_rx_resources - Free Rx Resources for VSI queues
2370 * @vsi: ptr to the VSI
2371 *
2372 * Free all receive software resources
2373 **/
2374static void i40e_vsi_free_rx_resources(struct i40e_vsi *vsi)
2375{
2376 int i;
2377
Greg Rose8e9dca52013-12-18 13:45:53 +00002378 if (!vsi->rx_rings)
2379 return;
2380
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002381 for (i = 0; i < vsi->num_queue_pairs; i++)
Greg Rose8e9dca52013-12-18 13:45:53 +00002382 if (vsi->rx_rings[i] && vsi->rx_rings[i]->desc)
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00002383 i40e_free_rx_resources(vsi->rx_rings[i]);
Vasu Dev38e00432014-08-01 13:27:03 -07002384#ifdef I40E_FCOE
2385 i40e_fcoe_free_ddp_resources(vsi);
2386#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002387}
2388
2389/**
Neerav Parikh3ffa0372014-11-12 00:19:02 +00002390 * i40e_config_xps_tx_ring - Configure XPS for a Tx ring
2391 * @ring: The Tx ring to configure
2392 *
2393 * This enables/disables XPS for a given Tx descriptor ring
2394 * based on the TCs enabled for the VSI that ring belongs to.
2395 **/
2396static void i40e_config_xps_tx_ring(struct i40e_ring *ring)
2397{
2398 struct i40e_vsi *vsi = ring->vsi;
2399 cpumask_var_t mask;
2400
2401 if (ring->q_vector && ring->netdev) {
2402 /* Single TC mode enable XPS */
2403 if (vsi->tc_config.numtc <= 1 &&
2404 !test_and_set_bit(__I40E_TX_XPS_INIT_DONE, &ring->state)) {
2405 netif_set_xps_queue(ring->netdev,
2406 &ring->q_vector->affinity_mask,
2407 ring->queue_index);
2408 } else if (alloc_cpumask_var(&mask, GFP_KERNEL)) {
2409 /* Disable XPS to allow selection based on TC */
2410 bitmap_zero(cpumask_bits(mask), nr_cpumask_bits);
2411 netif_set_xps_queue(ring->netdev, mask,
2412 ring->queue_index);
2413 free_cpumask_var(mask);
2414 }
2415 }
2416}
2417
2418/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002419 * i40e_configure_tx_ring - Configure a transmit ring context and rest
2420 * @ring: The Tx ring to configure
2421 *
2422 * Configure the Tx descriptor ring in the HMC context.
2423 **/
2424static int i40e_configure_tx_ring(struct i40e_ring *ring)
2425{
2426 struct i40e_vsi *vsi = ring->vsi;
2427 u16 pf_q = vsi->base_queue + ring->queue_index;
2428 struct i40e_hw *hw = &vsi->back->hw;
2429 struct i40e_hmc_obj_txq tx_ctx;
2430 i40e_status err = 0;
2431 u32 qtx_ctl = 0;
2432
2433 /* some ATR related tx ring init */
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08002434 if (vsi->back->flags & I40E_FLAG_FD_ATR_ENABLED) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002435 ring->atr_sample_rate = vsi->back->atr_sample_rate;
2436 ring->atr_count = 0;
2437 } else {
2438 ring->atr_sample_rate = 0;
2439 }
2440
Neerav Parikh3ffa0372014-11-12 00:19:02 +00002441 /* configure XPS */
2442 i40e_config_xps_tx_ring(ring);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002443
2444 /* clear the context structure first */
2445 memset(&tx_ctx, 0, sizeof(tx_ctx));
2446
2447 tx_ctx.new_context = 1;
2448 tx_ctx.base = (ring->dma / 128);
2449 tx_ctx.qlen = ring->count;
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08002450 tx_ctx.fd_ena = !!(vsi->back->flags & (I40E_FLAG_FD_SB_ENABLED |
2451 I40E_FLAG_FD_ATR_ENABLED));
Vasu Dev38e00432014-08-01 13:27:03 -07002452#ifdef I40E_FCOE
2453 tx_ctx.fc_ena = (vsi->type == I40E_VSI_FCOE);
2454#endif
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00002455 tx_ctx.timesync_ena = !!(vsi->back->flags & I40E_FLAG_PTP);
Jesse Brandeburg1943d8b2014-02-14 02:14:40 +00002456 /* FDIR VSI tx ring can still use RS bit and writebacks */
2457 if (vsi->type != I40E_VSI_FDIR)
2458 tx_ctx.head_wb_ena = 1;
2459 tx_ctx.head_wb_addr = ring->dma +
2460 (ring->count * sizeof(struct i40e_tx_desc));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002461
2462 /* As part of VSI creation/update, FW allocates certain
2463 * Tx arbitration queue sets for each TC enabled for
2464 * the VSI. The FW returns the handles to these queue
2465 * sets as part of the response buffer to Add VSI,
2466 * Update VSI, etc. AQ commands. It is expected that
2467 * these queue set handles be associated with the Tx
2468 * queues by the driver as part of the TX queue context
2469 * initialization. This has to be done regardless of
2470 * DCB as by default everything is mapped to TC0.
2471 */
2472 tx_ctx.rdylist = le16_to_cpu(vsi->info.qs_handle[ring->dcb_tc]);
2473 tx_ctx.rdylist_act = 0;
2474
2475 /* clear the context in the HMC */
2476 err = i40e_clear_lan_tx_queue_context(hw, pf_q);
2477 if (err) {
2478 dev_info(&vsi->back->pdev->dev,
2479 "Failed to clear LAN Tx queue context on Tx ring %d (pf_q %d), error: %d\n",
2480 ring->queue_index, pf_q, err);
2481 return -ENOMEM;
2482 }
2483
2484 /* set the context in the HMC */
2485 err = i40e_set_lan_tx_queue_context(hw, pf_q, &tx_ctx);
2486 if (err) {
2487 dev_info(&vsi->back->pdev->dev,
2488 "Failed to set LAN Tx queue context on Tx ring %d (pf_q %d, error: %d\n",
2489 ring->queue_index, pf_q, err);
2490 return -ENOMEM;
2491 }
2492
2493 /* Now associate this queue with this PCI function */
Mitch Williams7a28d882014-10-17 03:14:52 +00002494 if (vsi->type == I40E_VSI_VMDQ2) {
Shannon Nelson9d8bf542014-01-14 00:49:50 -08002495 qtx_ctl = I40E_QTX_CTL_VM_QUEUE;
Mitch Williams7a28d882014-10-17 03:14:52 +00002496 qtx_ctl |= ((vsi->id) << I40E_QTX_CTL_VFVM_INDX_SHIFT) &
2497 I40E_QTX_CTL_VFVM_INDX_MASK;
2498 } else {
Shannon Nelson9d8bf542014-01-14 00:49:50 -08002499 qtx_ctl = I40E_QTX_CTL_PF_QUEUE;
Mitch Williams7a28d882014-10-17 03:14:52 +00002500 }
2501
Shannon Nelson13fd9772013-09-28 07:14:19 +00002502 qtx_ctl |= ((hw->pf_id << I40E_QTX_CTL_PF_INDX_SHIFT) &
2503 I40E_QTX_CTL_PF_INDX_MASK);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002504 wr32(hw, I40E_QTX_CTL(pf_q), qtx_ctl);
2505 i40e_flush(hw);
2506
2507 clear_bit(__I40E_HANG_CHECK_ARMED, &ring->state);
2508
2509 /* cache tail off for easier writes later */
2510 ring->tail = hw->hw_addr + I40E_QTX_TAIL(pf_q);
2511
2512 return 0;
2513}
2514
2515/**
2516 * i40e_configure_rx_ring - Configure a receive ring context
2517 * @ring: The Rx ring to configure
2518 *
2519 * Configure the Rx descriptor ring in the HMC context.
2520 **/
2521static int i40e_configure_rx_ring(struct i40e_ring *ring)
2522{
2523 struct i40e_vsi *vsi = ring->vsi;
2524 u32 chain_len = vsi->back->hw.func_caps.rx_buf_chain_len;
2525 u16 pf_q = vsi->base_queue + ring->queue_index;
2526 struct i40e_hw *hw = &vsi->back->hw;
2527 struct i40e_hmc_obj_rxq rx_ctx;
2528 i40e_status err = 0;
2529
2530 ring->state = 0;
2531
2532 /* clear the context structure first */
2533 memset(&rx_ctx, 0, sizeof(rx_ctx));
2534
2535 ring->rx_buf_len = vsi->rx_buf_len;
2536 ring->rx_hdr_len = vsi->rx_hdr_len;
2537
2538 rx_ctx.dbuff = ring->rx_buf_len >> I40E_RXQ_CTX_DBUFF_SHIFT;
2539 rx_ctx.hbuff = ring->rx_hdr_len >> I40E_RXQ_CTX_HBUFF_SHIFT;
2540
2541 rx_ctx.base = (ring->dma / 128);
2542 rx_ctx.qlen = ring->count;
2543
2544 if (vsi->back->flags & I40E_FLAG_16BYTE_RX_DESC_ENABLED) {
2545 set_ring_16byte_desc_enabled(ring);
2546 rx_ctx.dsize = 0;
2547 } else {
2548 rx_ctx.dsize = 1;
2549 }
2550
2551 rx_ctx.dtype = vsi->dtype;
2552 if (vsi->dtype) {
2553 set_ring_ps_enabled(ring);
2554 rx_ctx.hsplit_0 = I40E_RX_SPLIT_L2 |
2555 I40E_RX_SPLIT_IP |
2556 I40E_RX_SPLIT_TCP_UDP |
2557 I40E_RX_SPLIT_SCTP;
2558 } else {
2559 rx_ctx.hsplit_0 = 0;
2560 }
2561
2562 rx_ctx.rxmax = min_t(u16, vsi->max_frame,
2563 (chain_len * ring->rx_buf_len));
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00002564 if (hw->revision_id == 0)
2565 rx_ctx.lrxqthresh = 0;
2566 else
2567 rx_ctx.lrxqthresh = 2;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002568 rx_ctx.crcstrip = 1;
2569 rx_ctx.l2tsel = 1;
2570 rx_ctx.showiv = 1;
Vasu Dev38e00432014-08-01 13:27:03 -07002571#ifdef I40E_FCOE
2572 rx_ctx.fc_ena = (vsi->type == I40E_VSI_FCOE);
2573#endif
Catherine Sullivanacb36762014-03-06 09:02:30 +00002574 /* set the prefena field to 1 because the manual says to */
2575 rx_ctx.prefena = 1;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002576
2577 /* clear the context in the HMC */
2578 err = i40e_clear_lan_rx_queue_context(hw, pf_q);
2579 if (err) {
2580 dev_info(&vsi->back->pdev->dev,
2581 "Failed to clear LAN Rx queue context on Rx ring %d (pf_q %d), error: %d\n",
2582 ring->queue_index, pf_q, err);
2583 return -ENOMEM;
2584 }
2585
2586 /* set the context in the HMC */
2587 err = i40e_set_lan_rx_queue_context(hw, pf_q, &rx_ctx);
2588 if (err) {
2589 dev_info(&vsi->back->pdev->dev,
2590 "Failed to set LAN Rx queue context on Rx ring %d (pf_q %d), error: %d\n",
2591 ring->queue_index, pf_q, err);
2592 return -ENOMEM;
2593 }
2594
2595 /* cache tail for quicker writes, and clear the reg before use */
2596 ring->tail = hw->hw_addr + I40E_QRX_TAIL(pf_q);
2597 writel(0, ring->tail);
2598
2599 i40e_alloc_rx_buffers(ring, I40E_DESC_UNUSED(ring));
2600
2601 return 0;
2602}
2603
2604/**
2605 * i40e_vsi_configure_tx - Configure the VSI for Tx
2606 * @vsi: VSI structure describing this set of rings and resources
2607 *
2608 * Configure the Tx VSI for operation.
2609 **/
2610static int i40e_vsi_configure_tx(struct i40e_vsi *vsi)
2611{
2612 int err = 0;
2613 u16 i;
2614
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00002615 for (i = 0; (i < vsi->num_queue_pairs) && !err; i++)
2616 err = i40e_configure_tx_ring(vsi->tx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002617
2618 return err;
2619}
2620
2621/**
2622 * i40e_vsi_configure_rx - Configure the VSI for Rx
2623 * @vsi: the VSI being configured
2624 *
2625 * Configure the Rx VSI for operation.
2626 **/
2627static int i40e_vsi_configure_rx(struct i40e_vsi *vsi)
2628{
2629 int err = 0;
2630 u16 i;
2631
2632 if (vsi->netdev && (vsi->netdev->mtu > ETH_DATA_LEN))
2633 vsi->max_frame = vsi->netdev->mtu + ETH_HLEN
2634 + ETH_FCS_LEN + VLAN_HLEN;
2635 else
2636 vsi->max_frame = I40E_RXBUFFER_2048;
2637
2638 /* figure out correct receive buffer length */
2639 switch (vsi->back->flags & (I40E_FLAG_RX_1BUF_ENABLED |
2640 I40E_FLAG_RX_PS_ENABLED)) {
2641 case I40E_FLAG_RX_1BUF_ENABLED:
2642 vsi->rx_hdr_len = 0;
2643 vsi->rx_buf_len = vsi->max_frame;
2644 vsi->dtype = I40E_RX_DTYPE_NO_SPLIT;
2645 break;
2646 case I40E_FLAG_RX_PS_ENABLED:
2647 vsi->rx_hdr_len = I40E_RX_HDR_SIZE;
2648 vsi->rx_buf_len = I40E_RXBUFFER_2048;
2649 vsi->dtype = I40E_RX_DTYPE_HEADER_SPLIT;
2650 break;
2651 default:
2652 vsi->rx_hdr_len = I40E_RX_HDR_SIZE;
2653 vsi->rx_buf_len = I40E_RXBUFFER_2048;
2654 vsi->dtype = I40E_RX_DTYPE_SPLIT_ALWAYS;
2655 break;
2656 }
2657
Vasu Dev38e00432014-08-01 13:27:03 -07002658#ifdef I40E_FCOE
2659 /* setup rx buffer for FCoE */
2660 if ((vsi->type == I40E_VSI_FCOE) &&
2661 (vsi->back->flags & I40E_FLAG_FCOE_ENABLED)) {
2662 vsi->rx_hdr_len = 0;
2663 vsi->rx_buf_len = I40E_RXBUFFER_3072;
2664 vsi->max_frame = I40E_RXBUFFER_3072;
2665 vsi->dtype = I40E_RX_DTYPE_NO_SPLIT;
2666 }
2667
2668#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002669 /* round up for the chip's needs */
2670 vsi->rx_hdr_len = ALIGN(vsi->rx_hdr_len,
2671 (1 << I40E_RXQ_CTX_HBUFF_SHIFT));
2672 vsi->rx_buf_len = ALIGN(vsi->rx_buf_len,
2673 (1 << I40E_RXQ_CTX_DBUFF_SHIFT));
2674
2675 /* set up individual rings */
2676 for (i = 0; i < vsi->num_queue_pairs && !err; i++)
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00002677 err = i40e_configure_rx_ring(vsi->rx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002678
2679 return err;
2680}
2681
2682/**
2683 * i40e_vsi_config_dcb_rings - Update rings to reflect DCB TC
2684 * @vsi: ptr to the VSI
2685 **/
2686static void i40e_vsi_config_dcb_rings(struct i40e_vsi *vsi)
2687{
Akeem G Abodunrine7046ee2014-04-09 05:58:58 +00002688 struct i40e_ring *tx_ring, *rx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002689 u16 qoffset, qcount;
2690 int i, n;
2691
Parikh, Neeravcd238a32015-02-21 06:43:37 +00002692 if (!(vsi->back->flags & I40E_FLAG_DCB_ENABLED)) {
2693 /* Reset the TC information */
2694 for (i = 0; i < vsi->num_queue_pairs; i++) {
2695 rx_ring = vsi->rx_rings[i];
2696 tx_ring = vsi->tx_rings[i];
2697 rx_ring->dcb_tc = 0;
2698 tx_ring->dcb_tc = 0;
2699 }
2700 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002701
2702 for (n = 0; n < I40E_MAX_TRAFFIC_CLASS; n++) {
2703 if (!(vsi->tc_config.enabled_tc & (1 << n)))
2704 continue;
2705
2706 qoffset = vsi->tc_config.tc_info[n].qoffset;
2707 qcount = vsi->tc_config.tc_info[n].qcount;
2708 for (i = qoffset; i < (qoffset + qcount); i++) {
Akeem G Abodunrine7046ee2014-04-09 05:58:58 +00002709 rx_ring = vsi->rx_rings[i];
2710 tx_ring = vsi->tx_rings[i];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002711 rx_ring->dcb_tc = n;
2712 tx_ring->dcb_tc = n;
2713 }
2714 }
2715}
2716
2717/**
2718 * i40e_set_vsi_rx_mode - Call set_rx_mode on a VSI
2719 * @vsi: ptr to the VSI
2720 **/
2721static void i40e_set_vsi_rx_mode(struct i40e_vsi *vsi)
2722{
2723 if (vsi->netdev)
2724 i40e_set_rx_mode(vsi->netdev);
2725}
2726
2727/**
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002728 * i40e_fdir_filter_restore - Restore the Sideband Flow Director filters
2729 * @vsi: Pointer to the targeted VSI
2730 *
2731 * This function replays the hlist on the hw where all the SB Flow Director
2732 * filters were saved.
2733 **/
2734static void i40e_fdir_filter_restore(struct i40e_vsi *vsi)
2735{
2736 struct i40e_fdir_filter *filter;
2737 struct i40e_pf *pf = vsi->back;
2738 struct hlist_node *node;
2739
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00002740 if (!(pf->flags & I40E_FLAG_FD_SB_ENABLED))
2741 return;
2742
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002743 hlist_for_each_entry_safe(filter, node,
2744 &pf->fdir_filter_list, fdir_node) {
2745 i40e_add_del_fdir(vsi, filter, true);
2746 }
2747}
2748
2749/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002750 * i40e_vsi_configure - Set up the VSI for action
2751 * @vsi: the VSI being configured
2752 **/
2753static int i40e_vsi_configure(struct i40e_vsi *vsi)
2754{
2755 int err;
2756
2757 i40e_set_vsi_rx_mode(vsi);
2758 i40e_restore_vlan(vsi);
2759 i40e_vsi_config_dcb_rings(vsi);
2760 err = i40e_vsi_configure_tx(vsi);
2761 if (!err)
2762 err = i40e_vsi_configure_rx(vsi);
2763
2764 return err;
2765}
2766
2767/**
2768 * i40e_vsi_configure_msix - MSIX mode Interrupt Config in the HW
2769 * @vsi: the VSI being configured
2770 **/
2771static void i40e_vsi_configure_msix(struct i40e_vsi *vsi)
2772{
2773 struct i40e_pf *pf = vsi->back;
2774 struct i40e_q_vector *q_vector;
2775 struct i40e_hw *hw = &pf->hw;
2776 u16 vector;
2777 int i, q;
2778 u32 val;
2779 u32 qp;
2780
2781 /* The interrupt indexing is offset by 1 in the PFINT_ITRn
2782 * and PFINT_LNKLSTn registers, e.g.:
2783 * PFINT_ITRn[0..n-1] gets msix-1..msix-n (qpair interrupts)
2784 */
2785 qp = vsi->base_queue;
2786 vector = vsi->base_vector;
Alexander Duyck493fb302013-09-28 07:01:44 +00002787 for (i = 0; i < vsi->num_q_vectors; i++, vector++) {
2788 q_vector = vsi->q_vectors[i];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002789 q_vector->rx.itr = ITR_TO_REG(vsi->rx_itr_setting);
2790 q_vector->rx.latency_range = I40E_LOW_LATENCY;
2791 wr32(hw, I40E_PFINT_ITRN(I40E_RX_ITR, vector - 1),
2792 q_vector->rx.itr);
2793 q_vector->tx.itr = ITR_TO_REG(vsi->tx_itr_setting);
2794 q_vector->tx.latency_range = I40E_LOW_LATENCY;
2795 wr32(hw, I40E_PFINT_ITRN(I40E_TX_ITR, vector - 1),
2796 q_vector->tx.itr);
2797
2798 /* Linked list for the queuepairs assigned to this vector */
2799 wr32(hw, I40E_PFINT_LNKLSTN(vector - 1), qp);
2800 for (q = 0; q < q_vector->num_ringpairs; q++) {
2801 val = I40E_QINT_RQCTL_CAUSE_ENA_MASK |
2802 (I40E_RX_ITR << I40E_QINT_RQCTL_ITR_INDX_SHIFT) |
2803 (vector << I40E_QINT_RQCTL_MSIX_INDX_SHIFT) |
2804 (qp << I40E_QINT_RQCTL_NEXTQ_INDX_SHIFT)|
2805 (I40E_QUEUE_TYPE_TX
2806 << I40E_QINT_RQCTL_NEXTQ_TYPE_SHIFT);
2807
2808 wr32(hw, I40E_QINT_RQCTL(qp), val);
2809
2810 val = I40E_QINT_TQCTL_CAUSE_ENA_MASK |
2811 (I40E_TX_ITR << I40E_QINT_TQCTL_ITR_INDX_SHIFT) |
2812 (vector << I40E_QINT_TQCTL_MSIX_INDX_SHIFT) |
2813 ((qp+1) << I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT)|
2814 (I40E_QUEUE_TYPE_RX
2815 << I40E_QINT_TQCTL_NEXTQ_TYPE_SHIFT);
2816
2817 /* Terminate the linked list */
2818 if (q == (q_vector->num_ringpairs - 1))
2819 val |= (I40E_QUEUE_END_OF_LIST
2820 << I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT);
2821
2822 wr32(hw, I40E_QINT_TQCTL(qp), val);
2823 qp++;
2824 }
2825 }
2826
2827 i40e_flush(hw);
2828}
2829
2830/**
2831 * i40e_enable_misc_int_causes - enable the non-queue interrupts
2832 * @hw: ptr to the hardware info
2833 **/
Jacob Kellerab437b52014-12-14 01:55:08 +00002834static void i40e_enable_misc_int_causes(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002835{
Jacob Kellerab437b52014-12-14 01:55:08 +00002836 struct i40e_hw *hw = &pf->hw;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002837 u32 val;
2838
2839 /* clear things first */
2840 wr32(hw, I40E_PFINT_ICR0_ENA, 0); /* disable all */
2841 rd32(hw, I40E_PFINT_ICR0); /* read to clear */
2842
2843 val = I40E_PFINT_ICR0_ENA_ECC_ERR_MASK |
2844 I40E_PFINT_ICR0_ENA_MAL_DETECT_MASK |
2845 I40E_PFINT_ICR0_ENA_GRST_MASK |
2846 I40E_PFINT_ICR0_ENA_PCI_EXCEPTION_MASK |
2847 I40E_PFINT_ICR0_ENA_GPIO_MASK |
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002848 I40E_PFINT_ICR0_ENA_HMC_ERR_MASK |
2849 I40E_PFINT_ICR0_ENA_VFLR_MASK |
2850 I40E_PFINT_ICR0_ENA_ADMINQ_MASK;
2851
Jacob Kellerab437b52014-12-14 01:55:08 +00002852 if (pf->flags & I40E_FLAG_PTP)
2853 val |= I40E_PFINT_ICR0_ENA_TIMESYNC_MASK;
2854
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002855 wr32(hw, I40E_PFINT_ICR0_ENA, val);
2856
2857 /* SW_ITR_IDX = 0, but don't change INTENA */
Anjali Singhai Jain84ed40e2013-11-26 10:49:32 +00002858 wr32(hw, I40E_PFINT_DYN_CTL0, I40E_PFINT_DYN_CTL0_SW_ITR_INDX_MASK |
2859 I40E_PFINT_DYN_CTL0_INTENA_MSK_MASK);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002860
2861 /* OTHER_ITR_IDX = 0 */
2862 wr32(hw, I40E_PFINT_STAT_CTL0, 0);
2863}
2864
2865/**
2866 * i40e_configure_msi_and_legacy - Legacy mode interrupt config in the HW
2867 * @vsi: the VSI being configured
2868 **/
2869static void i40e_configure_msi_and_legacy(struct i40e_vsi *vsi)
2870{
Alexander Duyck493fb302013-09-28 07:01:44 +00002871 struct i40e_q_vector *q_vector = vsi->q_vectors[0];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002872 struct i40e_pf *pf = vsi->back;
2873 struct i40e_hw *hw = &pf->hw;
2874 u32 val;
2875
2876 /* set the ITR configuration */
2877 q_vector->rx.itr = ITR_TO_REG(vsi->rx_itr_setting);
2878 q_vector->rx.latency_range = I40E_LOW_LATENCY;
2879 wr32(hw, I40E_PFINT_ITR0(I40E_RX_ITR), q_vector->rx.itr);
2880 q_vector->tx.itr = ITR_TO_REG(vsi->tx_itr_setting);
2881 q_vector->tx.latency_range = I40E_LOW_LATENCY;
2882 wr32(hw, I40E_PFINT_ITR0(I40E_TX_ITR), q_vector->tx.itr);
2883
Jacob Kellerab437b52014-12-14 01:55:08 +00002884 i40e_enable_misc_int_causes(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002885
2886 /* FIRSTQ_INDX = 0, FIRSTQ_TYPE = 0 (rx) */
2887 wr32(hw, I40E_PFINT_LNKLST0, 0);
2888
Jesse Brandeburgf29eaa32014-02-11 08:24:12 +00002889 /* Associate the queue pair to the vector and enable the queue int */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002890 val = I40E_QINT_RQCTL_CAUSE_ENA_MASK |
2891 (I40E_RX_ITR << I40E_QINT_RQCTL_ITR_INDX_SHIFT) |
2892 (I40E_QUEUE_TYPE_TX << I40E_QINT_TQCTL_NEXTQ_TYPE_SHIFT);
2893
2894 wr32(hw, I40E_QINT_RQCTL(0), val);
2895
2896 val = I40E_QINT_TQCTL_CAUSE_ENA_MASK |
2897 (I40E_TX_ITR << I40E_QINT_TQCTL_ITR_INDX_SHIFT) |
2898 (I40E_QUEUE_END_OF_LIST << I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT);
2899
2900 wr32(hw, I40E_QINT_TQCTL(0), val);
2901 i40e_flush(hw);
2902}
2903
2904/**
Mitch Williams2ef28cf2013-11-28 06:39:32 +00002905 * i40e_irq_dynamic_disable_icr0 - Disable default interrupt generation for icr0
2906 * @pf: board private structure
2907 **/
2908void i40e_irq_dynamic_disable_icr0(struct i40e_pf *pf)
2909{
2910 struct i40e_hw *hw = &pf->hw;
2911
2912 wr32(hw, I40E_PFINT_DYN_CTL0,
2913 I40E_ITR_NONE << I40E_PFINT_DYN_CTLN_ITR_INDX_SHIFT);
2914 i40e_flush(hw);
2915}
2916
2917/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002918 * i40e_irq_dynamic_enable_icr0 - Enable default interrupt generation for icr0
2919 * @pf: board private structure
2920 **/
Shannon Nelson116a57d2013-09-28 07:13:59 +00002921void i40e_irq_dynamic_enable_icr0(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002922{
2923 struct i40e_hw *hw = &pf->hw;
2924 u32 val;
2925
2926 val = I40E_PFINT_DYN_CTL0_INTENA_MASK |
2927 I40E_PFINT_DYN_CTL0_CLEARPBA_MASK |
2928 (I40E_ITR_NONE << I40E_PFINT_DYN_CTL0_ITR_INDX_SHIFT);
2929
2930 wr32(hw, I40E_PFINT_DYN_CTL0, val);
2931 i40e_flush(hw);
2932}
2933
2934/**
2935 * i40e_irq_dynamic_enable - Enable default interrupt generation settings
2936 * @vsi: pointer to a vsi
2937 * @vector: enable a particular Hw Interrupt vector
2938 **/
2939void i40e_irq_dynamic_enable(struct i40e_vsi *vsi, int vector)
2940{
2941 struct i40e_pf *pf = vsi->back;
2942 struct i40e_hw *hw = &pf->hw;
2943 u32 val;
2944
2945 val = I40E_PFINT_DYN_CTLN_INTENA_MASK |
2946 I40E_PFINT_DYN_CTLN_CLEARPBA_MASK |
2947 (I40E_ITR_NONE << I40E_PFINT_DYN_CTLN_ITR_INDX_SHIFT);
2948 wr32(hw, I40E_PFINT_DYN_CTLN(vector - 1), val);
Jesse Brandeburg1022cb62013-09-28 07:13:08 +00002949 /* skip the flush */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002950}
2951
2952/**
Carolyn Wyborny5c2cebd2014-06-04 01:23:18 +00002953 * i40e_irq_dynamic_disable - Disable default interrupt generation settings
2954 * @vsi: pointer to a vsi
Greg Rose03147772015-01-24 09:58:29 +00002955 * @vector: disable a particular Hw Interrupt vector
Carolyn Wyborny5c2cebd2014-06-04 01:23:18 +00002956 **/
2957void i40e_irq_dynamic_disable(struct i40e_vsi *vsi, int vector)
2958{
2959 struct i40e_pf *pf = vsi->back;
2960 struct i40e_hw *hw = &pf->hw;
2961 u32 val;
2962
2963 val = I40E_ITR_NONE << I40E_PFINT_DYN_CTLN_ITR_INDX_SHIFT;
2964 wr32(hw, I40E_PFINT_DYN_CTLN(vector - 1), val);
2965 i40e_flush(hw);
2966}
2967
2968/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002969 * i40e_msix_clean_rings - MSIX mode Interrupt Handler
2970 * @irq: interrupt number
2971 * @data: pointer to a q_vector
2972 **/
2973static irqreturn_t i40e_msix_clean_rings(int irq, void *data)
2974{
2975 struct i40e_q_vector *q_vector = data;
2976
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00002977 if (!q_vector->tx.ring && !q_vector->rx.ring)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002978 return IRQ_HANDLED;
2979
2980 napi_schedule(&q_vector->napi);
2981
2982 return IRQ_HANDLED;
2983}
2984
2985/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002986 * i40e_vsi_request_irq_msix - Initialize MSI-X interrupts
2987 * @vsi: the VSI being configured
2988 * @basename: name for the vector
2989 *
2990 * Allocates MSI-X vectors and requests interrupts from the kernel.
2991 **/
2992static int i40e_vsi_request_irq_msix(struct i40e_vsi *vsi, char *basename)
2993{
2994 int q_vectors = vsi->num_q_vectors;
2995 struct i40e_pf *pf = vsi->back;
2996 int base = vsi->base_vector;
2997 int rx_int_idx = 0;
2998 int tx_int_idx = 0;
2999 int vector, err;
3000
3001 for (vector = 0; vector < q_vectors; vector++) {
Alexander Duyck493fb302013-09-28 07:01:44 +00003002 struct i40e_q_vector *q_vector = vsi->q_vectors[vector];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003003
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003004 if (q_vector->tx.ring && q_vector->rx.ring) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003005 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
3006 "%s-%s-%d", basename, "TxRx", rx_int_idx++);
3007 tx_int_idx++;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003008 } else if (q_vector->rx.ring) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003009 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
3010 "%s-%s-%d", basename, "rx", rx_int_idx++);
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003011 } else if (q_vector->tx.ring) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003012 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
3013 "%s-%s-%d", basename, "tx", tx_int_idx++);
3014 } else {
3015 /* skip this unused q_vector */
3016 continue;
3017 }
3018 err = request_irq(pf->msix_entries[base + vector].vector,
3019 vsi->irq_handler,
3020 0,
3021 q_vector->name,
3022 q_vector);
3023 if (err) {
3024 dev_info(&pf->pdev->dev,
3025 "%s: request_irq failed, error: %d\n",
3026 __func__, err);
3027 goto free_queue_irqs;
3028 }
3029 /* assign the mask for this irq */
3030 irq_set_affinity_hint(pf->msix_entries[base + vector].vector,
3031 &q_vector->affinity_mask);
3032 }
3033
Shannon Nelson63741842014-04-23 04:50:16 +00003034 vsi->irqs_ready = true;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003035 return 0;
3036
3037free_queue_irqs:
3038 while (vector) {
3039 vector--;
3040 irq_set_affinity_hint(pf->msix_entries[base + vector].vector,
3041 NULL);
3042 free_irq(pf->msix_entries[base + vector].vector,
3043 &(vsi->q_vectors[vector]));
3044 }
3045 return err;
3046}
3047
3048/**
3049 * i40e_vsi_disable_irq - Mask off queue interrupt generation on the VSI
3050 * @vsi: the VSI being un-configured
3051 **/
3052static void i40e_vsi_disable_irq(struct i40e_vsi *vsi)
3053{
3054 struct i40e_pf *pf = vsi->back;
3055 struct i40e_hw *hw = &pf->hw;
3056 int base = vsi->base_vector;
3057 int i;
3058
3059 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00003060 wr32(hw, I40E_QINT_TQCTL(vsi->tx_rings[i]->reg_idx), 0);
3061 wr32(hw, I40E_QINT_RQCTL(vsi->rx_rings[i]->reg_idx), 0);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003062 }
3063
3064 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
3065 for (i = vsi->base_vector;
3066 i < (vsi->num_q_vectors + vsi->base_vector); i++)
3067 wr32(hw, I40E_PFINT_DYN_CTLN(i - 1), 0);
3068
3069 i40e_flush(hw);
3070 for (i = 0; i < vsi->num_q_vectors; i++)
3071 synchronize_irq(pf->msix_entries[i + base].vector);
3072 } else {
3073 /* Legacy and MSI mode - this stops all interrupt handling */
3074 wr32(hw, I40E_PFINT_ICR0_ENA, 0);
3075 wr32(hw, I40E_PFINT_DYN_CTL0, 0);
3076 i40e_flush(hw);
3077 synchronize_irq(pf->pdev->irq);
3078 }
3079}
3080
3081/**
3082 * i40e_vsi_enable_irq - Enable IRQ for the given VSI
3083 * @vsi: the VSI being configured
3084 **/
3085static int i40e_vsi_enable_irq(struct i40e_vsi *vsi)
3086{
3087 struct i40e_pf *pf = vsi->back;
3088 int i;
3089
3090 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
3091 for (i = vsi->base_vector;
3092 i < (vsi->num_q_vectors + vsi->base_vector); i++)
3093 i40e_irq_dynamic_enable(vsi, i);
3094 } else {
3095 i40e_irq_dynamic_enable_icr0(pf);
3096 }
3097
Jesse Brandeburg1022cb62013-09-28 07:13:08 +00003098 i40e_flush(&pf->hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003099 return 0;
3100}
3101
3102/**
3103 * i40e_stop_misc_vector - Stop the vector that handles non-queue events
3104 * @pf: board private structure
3105 **/
3106static void i40e_stop_misc_vector(struct i40e_pf *pf)
3107{
3108 /* Disable ICR 0 */
3109 wr32(&pf->hw, I40E_PFINT_ICR0_ENA, 0);
3110 i40e_flush(&pf->hw);
3111}
3112
3113/**
3114 * i40e_intr - MSI/Legacy and non-queue interrupt handler
3115 * @irq: interrupt number
3116 * @data: pointer to a q_vector
3117 *
3118 * This is the handler used for all MSI/Legacy interrupts, and deals
3119 * with both queue and non-queue interrupts. This is also used in
3120 * MSIX mode to handle the non-queue interrupts.
3121 **/
3122static irqreturn_t i40e_intr(int irq, void *data)
3123{
3124 struct i40e_pf *pf = (struct i40e_pf *)data;
3125 struct i40e_hw *hw = &pf->hw;
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003126 irqreturn_t ret = IRQ_NONE;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003127 u32 icr0, icr0_remaining;
3128 u32 val, ena_mask;
3129
3130 icr0 = rd32(hw, I40E_PFINT_ICR0);
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003131 ena_mask = rd32(hw, I40E_PFINT_ICR0_ENA);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003132
Shannon Nelson116a57d2013-09-28 07:13:59 +00003133 /* if sharing a legacy IRQ, we might get called w/o an intr pending */
3134 if ((icr0 & I40E_PFINT_ICR0_INTEVENT_MASK) == 0)
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003135 goto enable_intr;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003136
Shannon Nelsoncd92e722013-11-16 10:00:44 +00003137 /* if interrupt but no bits showing, must be SWINT */
3138 if (((icr0 & ~I40E_PFINT_ICR0_INTEVENT_MASK) == 0) ||
3139 (icr0 & I40E_PFINT_ICR0_SWINT_MASK))
3140 pf->sw_int_count++;
3141
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003142 /* only q0 is used in MSI/Legacy mode, and none are used in MSIX */
3143 if (icr0 & I40E_PFINT_ICR0_QUEUE_0_MASK) {
3144
3145 /* temporarily disable queue cause for NAPI processing */
3146 u32 qval = rd32(hw, I40E_QINT_RQCTL(0));
3147 qval &= ~I40E_QINT_RQCTL_CAUSE_ENA_MASK;
3148 wr32(hw, I40E_QINT_RQCTL(0), qval);
3149
3150 qval = rd32(hw, I40E_QINT_TQCTL(0));
3151 qval &= ~I40E_QINT_TQCTL_CAUSE_ENA_MASK;
3152 wr32(hw, I40E_QINT_TQCTL(0), qval);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003153
3154 if (!test_bit(__I40E_DOWN, &pf->state))
Alexander Duyck493fb302013-09-28 07:01:44 +00003155 napi_schedule(&pf->vsi[pf->lan_vsi]->q_vectors[0]->napi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003156 }
3157
3158 if (icr0 & I40E_PFINT_ICR0_ADMINQ_MASK) {
3159 ena_mask &= ~I40E_PFINT_ICR0_ENA_ADMINQ_MASK;
3160 set_bit(__I40E_ADMINQ_EVENT_PENDING, &pf->state);
3161 }
3162
3163 if (icr0 & I40E_PFINT_ICR0_MAL_DETECT_MASK) {
3164 ena_mask &= ~I40E_PFINT_ICR0_ENA_MAL_DETECT_MASK;
3165 set_bit(__I40E_MDD_EVENT_PENDING, &pf->state);
3166 }
3167
3168 if (icr0 & I40E_PFINT_ICR0_VFLR_MASK) {
3169 ena_mask &= ~I40E_PFINT_ICR0_ENA_VFLR_MASK;
3170 set_bit(__I40E_VFLR_EVENT_PENDING, &pf->state);
3171 }
3172
3173 if (icr0 & I40E_PFINT_ICR0_GRST_MASK) {
3174 if (!test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state))
3175 set_bit(__I40E_RESET_INTR_RECEIVED, &pf->state);
3176 ena_mask &= ~I40E_PFINT_ICR0_ENA_GRST_MASK;
3177 val = rd32(hw, I40E_GLGEN_RSTAT);
3178 val = (val & I40E_GLGEN_RSTAT_RESET_TYPE_MASK)
3179 >> I40E_GLGEN_RSTAT_RESET_TYPE_SHIFT;
Shannon Nelson4eb3f762014-03-06 08:59:58 +00003180 if (val == I40E_RESET_CORER) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003181 pf->corer_count++;
Shannon Nelson4eb3f762014-03-06 08:59:58 +00003182 } else if (val == I40E_RESET_GLOBR) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003183 pf->globr_count++;
Shannon Nelson4eb3f762014-03-06 08:59:58 +00003184 } else if (val == I40E_RESET_EMPR) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003185 pf->empr_count++;
Shannon Nelson4eb3f762014-03-06 08:59:58 +00003186 set_bit(__I40E_EMP_RESET_REQUESTED, &pf->state);
3187 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003188 }
3189
Anjali Singhai Jain9c010ee2013-11-28 06:39:20 +00003190 if (icr0 & I40E_PFINT_ICR0_HMC_ERR_MASK) {
3191 icr0 &= ~I40E_PFINT_ICR0_HMC_ERR_MASK;
3192 dev_info(&pf->pdev->dev, "HMC error interrupt\n");
3193 }
3194
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00003195 if (icr0 & I40E_PFINT_ICR0_TIMESYNC_MASK) {
3196 u32 prttsyn_stat = rd32(hw, I40E_PRTTSYN_STAT_0);
3197
3198 if (prttsyn_stat & I40E_PRTTSYN_STAT_0_TXTIME_MASK) {
Jacob Kellercafa1fc2014-04-24 18:05:03 -07003199 icr0 &= ~I40E_PFINT_ICR0_ENA_TIMESYNC_MASK;
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00003200 i40e_ptp_tx_hwtstamp(pf);
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00003201 }
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00003202 }
3203
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003204 /* If a critical error is pending we have no choice but to reset the
3205 * device.
3206 * Report and mask out any remaining unexpected interrupts.
3207 */
3208 icr0_remaining = icr0 & ena_mask;
3209 if (icr0_remaining) {
3210 dev_info(&pf->pdev->dev, "unhandled interrupt icr0=0x%08x\n",
3211 icr0_remaining);
Anjali Singhai Jain9c010ee2013-11-28 06:39:20 +00003212 if ((icr0_remaining & I40E_PFINT_ICR0_PE_CRITERR_MASK) ||
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003213 (icr0_remaining & I40E_PFINT_ICR0_PCI_EXCEPTION_MASK) ||
Anjali Singhai Jainc0c28972014-02-12 01:45:34 +00003214 (icr0_remaining & I40E_PFINT_ICR0_ECC_ERR_MASK)) {
Anjali Singhai Jain9c010ee2013-11-28 06:39:20 +00003215 dev_info(&pf->pdev->dev, "device will be reset\n");
3216 set_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
3217 i40e_service_event_schedule(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003218 }
3219 ena_mask &= ~icr0_remaining;
3220 }
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003221 ret = IRQ_HANDLED;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003222
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003223enable_intr:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003224 /* re-enable interrupt causes */
3225 wr32(hw, I40E_PFINT_ICR0_ENA, ena_mask);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003226 if (!test_bit(__I40E_DOWN, &pf->state)) {
3227 i40e_service_event_schedule(pf);
3228 i40e_irq_dynamic_enable_icr0(pf);
3229 }
3230
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003231 return ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003232}
3233
3234/**
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003235 * i40e_clean_fdir_tx_irq - Reclaim resources after transmit completes
3236 * @tx_ring: tx ring to clean
3237 * @budget: how many cleans we're allowed
3238 *
3239 * Returns true if there's any budget left (e.g. the clean is finished)
3240 **/
3241static bool i40e_clean_fdir_tx_irq(struct i40e_ring *tx_ring, int budget)
3242{
3243 struct i40e_vsi *vsi = tx_ring->vsi;
3244 u16 i = tx_ring->next_to_clean;
3245 struct i40e_tx_buffer *tx_buf;
3246 struct i40e_tx_desc *tx_desc;
3247
3248 tx_buf = &tx_ring->tx_bi[i];
3249 tx_desc = I40E_TX_DESC(tx_ring, i);
3250 i -= tx_ring->count;
3251
3252 do {
3253 struct i40e_tx_desc *eop_desc = tx_buf->next_to_watch;
3254
3255 /* if next_to_watch is not set then there is no work pending */
3256 if (!eop_desc)
3257 break;
3258
3259 /* prevent any other reads prior to eop_desc */
3260 read_barrier_depends();
3261
3262 /* if the descriptor isn't done, no work yet to do */
3263 if (!(eop_desc->cmd_type_offset_bsz &
3264 cpu_to_le64(I40E_TX_DESC_DTYPE_DESC_DONE)))
3265 break;
3266
3267 /* clear next_to_watch to prevent false hangs */
3268 tx_buf->next_to_watch = NULL;
3269
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003270 tx_desc->buffer_addr = 0;
3271 tx_desc->cmd_type_offset_bsz = 0;
3272 /* move past filter desc */
3273 tx_buf++;
3274 tx_desc++;
3275 i++;
3276 if (unlikely(!i)) {
3277 i -= tx_ring->count;
3278 tx_buf = tx_ring->tx_bi;
3279 tx_desc = I40E_TX_DESC(tx_ring, 0);
3280 }
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003281 /* unmap skb header data */
3282 dma_unmap_single(tx_ring->dev,
3283 dma_unmap_addr(tx_buf, dma),
3284 dma_unmap_len(tx_buf, len),
3285 DMA_TO_DEVICE);
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003286 if (tx_buf->tx_flags & I40E_TX_FLAGS_FD_SB)
3287 kfree(tx_buf->raw_buf);
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003288
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003289 tx_buf->raw_buf = NULL;
3290 tx_buf->tx_flags = 0;
3291 tx_buf->next_to_watch = NULL;
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003292 dma_unmap_len_set(tx_buf, len, 0);
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003293 tx_desc->buffer_addr = 0;
3294 tx_desc->cmd_type_offset_bsz = 0;
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003295
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003296 /* move us past the eop_desc for start of next FD desc */
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003297 tx_buf++;
3298 tx_desc++;
3299 i++;
3300 if (unlikely(!i)) {
3301 i -= tx_ring->count;
3302 tx_buf = tx_ring->tx_bi;
3303 tx_desc = I40E_TX_DESC(tx_ring, 0);
3304 }
3305
3306 /* update budget accounting */
3307 budget--;
3308 } while (likely(budget));
3309
3310 i += tx_ring->count;
3311 tx_ring->next_to_clean = i;
3312
3313 if (vsi->back->flags & I40E_FLAG_MSIX_ENABLED) {
3314 i40e_irq_dynamic_enable(vsi,
3315 tx_ring->q_vector->v_idx + vsi->base_vector);
3316 }
3317 return budget > 0;
3318}
3319
3320/**
3321 * i40e_fdir_clean_ring - Interrupt Handler for FDIR SB ring
3322 * @irq: interrupt number
3323 * @data: pointer to a q_vector
3324 **/
3325static irqreturn_t i40e_fdir_clean_ring(int irq, void *data)
3326{
3327 struct i40e_q_vector *q_vector = data;
3328 struct i40e_vsi *vsi;
3329
3330 if (!q_vector->tx.ring)
3331 return IRQ_HANDLED;
3332
3333 vsi = q_vector->tx.ring->vsi;
3334 i40e_clean_fdir_tx_irq(q_vector->tx.ring, vsi->work_limit);
3335
3336 return IRQ_HANDLED;
3337}
3338
3339/**
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003340 * i40e_map_vector_to_qp - Assigns the queue pair to the vector
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003341 * @vsi: the VSI being configured
3342 * @v_idx: vector index
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003343 * @qp_idx: queue pair index
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003344 **/
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003345static void map_vector_to_qp(struct i40e_vsi *vsi, int v_idx, int qp_idx)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003346{
Alexander Duyck493fb302013-09-28 07:01:44 +00003347 struct i40e_q_vector *q_vector = vsi->q_vectors[v_idx];
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00003348 struct i40e_ring *tx_ring = vsi->tx_rings[qp_idx];
3349 struct i40e_ring *rx_ring = vsi->rx_rings[qp_idx];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003350
3351 tx_ring->q_vector = q_vector;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003352 tx_ring->next = q_vector->tx.ring;
3353 q_vector->tx.ring = tx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003354 q_vector->tx.count++;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003355
3356 rx_ring->q_vector = q_vector;
3357 rx_ring->next = q_vector->rx.ring;
3358 q_vector->rx.ring = rx_ring;
3359 q_vector->rx.count++;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003360}
3361
3362/**
3363 * i40e_vsi_map_rings_to_vectors - Maps descriptor rings to vectors
3364 * @vsi: the VSI being configured
3365 *
3366 * This function maps descriptor rings to the queue-specific vectors
3367 * we were allotted through the MSI-X enabling code. Ideally, we'd have
3368 * one vector per queue pair, but on a constrained vector budget, we
3369 * group the queue pairs as "efficiently" as possible.
3370 **/
3371static void i40e_vsi_map_rings_to_vectors(struct i40e_vsi *vsi)
3372{
3373 int qp_remaining = vsi->num_queue_pairs;
3374 int q_vectors = vsi->num_q_vectors;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003375 int num_ringpairs;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003376 int v_start = 0;
3377 int qp_idx = 0;
3378
3379 /* If we don't have enough vectors for a 1-to-1 mapping, we'll have to
3380 * group them so there are multiple queues per vector.
Anjali Singhai Jain70114ec2014-06-03 23:50:14 +00003381 * It is also important to go through all the vectors available to be
3382 * sure that if we don't use all the vectors, that the remaining vectors
3383 * are cleared. This is especially important when decreasing the
3384 * number of queues in use.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003385 */
Anjali Singhai Jain70114ec2014-06-03 23:50:14 +00003386 for (; v_start < q_vectors; v_start++) {
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003387 struct i40e_q_vector *q_vector = vsi->q_vectors[v_start];
3388
3389 num_ringpairs = DIV_ROUND_UP(qp_remaining, q_vectors - v_start);
3390
3391 q_vector->num_ringpairs = num_ringpairs;
3392
3393 q_vector->rx.count = 0;
3394 q_vector->tx.count = 0;
3395 q_vector->rx.ring = NULL;
3396 q_vector->tx.ring = NULL;
3397
3398 while (num_ringpairs--) {
3399 map_vector_to_qp(vsi, v_start, qp_idx);
3400 qp_idx++;
3401 qp_remaining--;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003402 }
3403 }
3404}
3405
3406/**
3407 * i40e_vsi_request_irq - Request IRQ from the OS
3408 * @vsi: the VSI being configured
3409 * @basename: name for the vector
3410 **/
3411static int i40e_vsi_request_irq(struct i40e_vsi *vsi, char *basename)
3412{
3413 struct i40e_pf *pf = vsi->back;
3414 int err;
3415
3416 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
3417 err = i40e_vsi_request_irq_msix(vsi, basename);
3418 else if (pf->flags & I40E_FLAG_MSI_ENABLED)
3419 err = request_irq(pf->pdev->irq, i40e_intr, 0,
Carolyn Wybornyb294ac72014-12-11 07:06:39 +00003420 pf->int_name, pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003421 else
3422 err = request_irq(pf->pdev->irq, i40e_intr, IRQF_SHARED,
Carolyn Wybornyb294ac72014-12-11 07:06:39 +00003423 pf->int_name, pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003424
3425 if (err)
3426 dev_info(&pf->pdev->dev, "request_irq failed, Error %d\n", err);
3427
3428 return err;
3429}
3430
3431#ifdef CONFIG_NET_POLL_CONTROLLER
3432/**
3433 * i40e_netpoll - A Polling 'interrupt'handler
3434 * @netdev: network interface device structure
3435 *
3436 * This is used by netconsole to send skbs without having to re-enable
3437 * interrupts. It's not called while the normal interrupt routine is executing.
3438 **/
Vasu Dev38e00432014-08-01 13:27:03 -07003439#ifdef I40E_FCOE
3440void i40e_netpoll(struct net_device *netdev)
3441#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003442static void i40e_netpoll(struct net_device *netdev)
Vasu Dev38e00432014-08-01 13:27:03 -07003443#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003444{
3445 struct i40e_netdev_priv *np = netdev_priv(netdev);
3446 struct i40e_vsi *vsi = np->vsi;
3447 struct i40e_pf *pf = vsi->back;
3448 int i;
3449
3450 /* if interface is down do nothing */
3451 if (test_bit(__I40E_DOWN, &vsi->state))
3452 return;
3453
3454 pf->flags |= I40E_FLAG_IN_NETPOLL;
3455 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
3456 for (i = 0; i < vsi->num_q_vectors; i++)
Alexander Duyck493fb302013-09-28 07:01:44 +00003457 i40e_msix_clean_rings(0, vsi->q_vectors[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003458 } else {
3459 i40e_intr(pf->pdev->irq, netdev);
3460 }
3461 pf->flags &= ~I40E_FLAG_IN_NETPOLL;
3462}
3463#endif
3464
3465/**
Neerav Parikh23527302014-06-03 23:50:15 +00003466 * i40e_pf_txq_wait - Wait for a PF's Tx queue to be enabled or disabled
3467 * @pf: the PF being configured
3468 * @pf_q: the PF queue
3469 * @enable: enable or disable state of the queue
3470 *
3471 * This routine will wait for the given Tx queue of the PF to reach the
3472 * enabled or disabled state.
3473 * Returns -ETIMEDOUT in case of failing to reach the requested state after
3474 * multiple retries; else will return 0 in case of success.
3475 **/
3476static int i40e_pf_txq_wait(struct i40e_pf *pf, int pf_q, bool enable)
3477{
3478 int i;
3479 u32 tx_reg;
3480
3481 for (i = 0; i < I40E_QUEUE_WAIT_RETRY_LIMIT; i++) {
3482 tx_reg = rd32(&pf->hw, I40E_QTX_ENA(pf_q));
3483 if (enable == !!(tx_reg & I40E_QTX_ENA_QENA_STAT_MASK))
3484 break;
3485
Neerav Parikhf98a2002014-09-13 07:40:44 +00003486 usleep_range(10, 20);
Neerav Parikh23527302014-06-03 23:50:15 +00003487 }
3488 if (i >= I40E_QUEUE_WAIT_RETRY_LIMIT)
3489 return -ETIMEDOUT;
3490
3491 return 0;
3492}
3493
3494/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003495 * i40e_vsi_control_tx - Start or stop a VSI's rings
3496 * @vsi: the VSI being configured
3497 * @enable: start or stop the rings
3498 **/
3499static int i40e_vsi_control_tx(struct i40e_vsi *vsi, bool enable)
3500{
3501 struct i40e_pf *pf = vsi->back;
3502 struct i40e_hw *hw = &pf->hw;
Neerav Parikh23527302014-06-03 23:50:15 +00003503 int i, j, pf_q, ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003504 u32 tx_reg;
3505
3506 pf_q = vsi->base_queue;
3507 for (i = 0; i < vsi->num_queue_pairs; i++, pf_q++) {
Matt Jared351499a2014-04-23 04:50:03 +00003508
3509 /* warn the TX unit of coming changes */
3510 i40e_pre_tx_queue_cfg(&pf->hw, pf_q, enable);
3511 if (!enable)
Neerav Parikhf98a2002014-09-13 07:40:44 +00003512 usleep_range(10, 20);
Matt Jared351499a2014-04-23 04:50:03 +00003513
Mitch Williams6c5ef622014-02-20 19:29:16 -08003514 for (j = 0; j < 50; j++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003515 tx_reg = rd32(hw, I40E_QTX_ENA(pf_q));
Mitch Williams6c5ef622014-02-20 19:29:16 -08003516 if (((tx_reg >> I40E_QTX_ENA_QENA_REQ_SHIFT) & 1) ==
3517 ((tx_reg >> I40E_QTX_ENA_QENA_STAT_SHIFT) & 1))
3518 break;
3519 usleep_range(1000, 2000);
3520 }
Mitch Williamsfda972f2013-11-28 06:39:29 +00003521 /* Skip if the queue is already in the requested state */
Catherine Sullivan7c122002014-03-14 07:32:29 +00003522 if (enable == !!(tx_reg & I40E_QTX_ENA_QENA_STAT_MASK))
Mitch Williamsfda972f2013-11-28 06:39:29 +00003523 continue;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003524
3525 /* turn on/off the queue */
Shannon Nelsonc5c9eb92013-12-21 05:44:48 +00003526 if (enable) {
3527 wr32(hw, I40E_QTX_HEAD(pf_q), 0);
Mitch Williams6c5ef622014-02-20 19:29:16 -08003528 tx_reg |= I40E_QTX_ENA_QENA_REQ_MASK;
Shannon Nelsonc5c9eb92013-12-21 05:44:48 +00003529 } else {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003530 tx_reg &= ~I40E_QTX_ENA_QENA_REQ_MASK;
Shannon Nelsonc5c9eb92013-12-21 05:44:48 +00003531 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003532
3533 wr32(hw, I40E_QTX_ENA(pf_q), tx_reg);
Neerav Parikh69129dc2014-11-12 00:18:46 +00003534 /* No waiting for the Tx queue to disable */
3535 if (!enable && test_bit(__I40E_PORT_TX_SUSPENDED, &pf->state))
3536 continue;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003537
3538 /* wait for the change to finish */
Neerav Parikh23527302014-06-03 23:50:15 +00003539 ret = i40e_pf_txq_wait(pf, pf_q, enable);
3540 if (ret) {
3541 dev_info(&pf->pdev->dev,
3542 "%s: VSI seid %d Tx ring %d %sable timeout\n",
3543 __func__, vsi->seid, pf_q,
3544 (enable ? "en" : "dis"));
3545 break;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003546 }
3547 }
3548
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00003549 if (hw->revision_id == 0)
3550 mdelay(50);
Neerav Parikh23527302014-06-03 23:50:15 +00003551 return ret;
3552}
3553
3554/**
3555 * i40e_pf_rxq_wait - Wait for a PF's Rx queue to be enabled or disabled
3556 * @pf: the PF being configured
3557 * @pf_q: the PF queue
3558 * @enable: enable or disable state of the queue
3559 *
3560 * This routine will wait for the given Rx queue of the PF to reach the
3561 * enabled or disabled state.
3562 * Returns -ETIMEDOUT in case of failing to reach the requested state after
3563 * multiple retries; else will return 0 in case of success.
3564 **/
3565static int i40e_pf_rxq_wait(struct i40e_pf *pf, int pf_q, bool enable)
3566{
3567 int i;
3568 u32 rx_reg;
3569
3570 for (i = 0; i < I40E_QUEUE_WAIT_RETRY_LIMIT; i++) {
3571 rx_reg = rd32(&pf->hw, I40E_QRX_ENA(pf_q));
3572 if (enable == !!(rx_reg & I40E_QRX_ENA_QENA_STAT_MASK))
3573 break;
3574
Neerav Parikhf98a2002014-09-13 07:40:44 +00003575 usleep_range(10, 20);
Neerav Parikh23527302014-06-03 23:50:15 +00003576 }
3577 if (i >= I40E_QUEUE_WAIT_RETRY_LIMIT)
3578 return -ETIMEDOUT;
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00003579
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003580 return 0;
3581}
3582
3583/**
3584 * i40e_vsi_control_rx - Start or stop a VSI's rings
3585 * @vsi: the VSI being configured
3586 * @enable: start or stop the rings
3587 **/
3588static int i40e_vsi_control_rx(struct i40e_vsi *vsi, bool enable)
3589{
3590 struct i40e_pf *pf = vsi->back;
3591 struct i40e_hw *hw = &pf->hw;
Neerav Parikh23527302014-06-03 23:50:15 +00003592 int i, j, pf_q, ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003593 u32 rx_reg;
3594
3595 pf_q = vsi->base_queue;
3596 for (i = 0; i < vsi->num_queue_pairs; i++, pf_q++) {
Mitch Williams6c5ef622014-02-20 19:29:16 -08003597 for (j = 0; j < 50; j++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003598 rx_reg = rd32(hw, I40E_QRX_ENA(pf_q));
Mitch Williams6c5ef622014-02-20 19:29:16 -08003599 if (((rx_reg >> I40E_QRX_ENA_QENA_REQ_SHIFT) & 1) ==
3600 ((rx_reg >> I40E_QRX_ENA_QENA_STAT_SHIFT) & 1))
3601 break;
3602 usleep_range(1000, 2000);
3603 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003604
Catherine Sullivan7c122002014-03-14 07:32:29 +00003605 /* Skip if the queue is already in the requested state */
3606 if (enable == !!(rx_reg & I40E_QRX_ENA_QENA_STAT_MASK))
3607 continue;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003608
3609 /* turn on/off the queue */
3610 if (enable)
Mitch Williams6c5ef622014-02-20 19:29:16 -08003611 rx_reg |= I40E_QRX_ENA_QENA_REQ_MASK;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003612 else
Mitch Williams6c5ef622014-02-20 19:29:16 -08003613 rx_reg &= ~I40E_QRX_ENA_QENA_REQ_MASK;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003614 wr32(hw, I40E_QRX_ENA(pf_q), rx_reg);
3615
3616 /* wait for the change to finish */
Neerav Parikh23527302014-06-03 23:50:15 +00003617 ret = i40e_pf_rxq_wait(pf, pf_q, enable);
3618 if (ret) {
3619 dev_info(&pf->pdev->dev,
3620 "%s: VSI seid %d Rx ring %d %sable timeout\n",
3621 __func__, vsi->seid, pf_q,
3622 (enable ? "en" : "dis"));
3623 break;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003624 }
3625 }
3626
Neerav Parikh23527302014-06-03 23:50:15 +00003627 return ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003628}
3629
3630/**
3631 * i40e_vsi_control_rings - Start or stop a VSI's rings
3632 * @vsi: the VSI being configured
3633 * @enable: start or stop the rings
3634 **/
Mitch Williamsfc18eaa2013-11-28 06:39:27 +00003635int i40e_vsi_control_rings(struct i40e_vsi *vsi, bool request)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003636{
Anjali Singhai Jain3b867b22013-12-21 05:44:44 +00003637 int ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003638
3639 /* do rx first for enable and last for disable */
3640 if (request) {
3641 ret = i40e_vsi_control_rx(vsi, request);
3642 if (ret)
3643 return ret;
3644 ret = i40e_vsi_control_tx(vsi, request);
3645 } else {
Anjali Singhai Jain3b867b22013-12-21 05:44:44 +00003646 /* Ignore return value, we need to shutdown whatever we can */
3647 i40e_vsi_control_tx(vsi, request);
3648 i40e_vsi_control_rx(vsi, request);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003649 }
3650
3651 return ret;
3652}
3653
3654/**
3655 * i40e_vsi_free_irq - Free the irq association with the OS
3656 * @vsi: the VSI being configured
3657 **/
3658static void i40e_vsi_free_irq(struct i40e_vsi *vsi)
3659{
3660 struct i40e_pf *pf = vsi->back;
3661 struct i40e_hw *hw = &pf->hw;
3662 int base = vsi->base_vector;
3663 u32 val, qp;
3664 int i;
3665
3666 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
3667 if (!vsi->q_vectors)
3668 return;
3669
Shannon Nelson63741842014-04-23 04:50:16 +00003670 if (!vsi->irqs_ready)
3671 return;
3672
3673 vsi->irqs_ready = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003674 for (i = 0; i < vsi->num_q_vectors; i++) {
3675 u16 vector = i + base;
3676
3677 /* free only the irqs that were actually requested */
Shannon Nelson78681b12013-11-28 06:39:36 +00003678 if (!vsi->q_vectors[i] ||
3679 !vsi->q_vectors[i]->num_ringpairs)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003680 continue;
3681
3682 /* clear the affinity_mask in the IRQ descriptor */
3683 irq_set_affinity_hint(pf->msix_entries[vector].vector,
3684 NULL);
3685 free_irq(pf->msix_entries[vector].vector,
Alexander Duyck493fb302013-09-28 07:01:44 +00003686 vsi->q_vectors[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003687
3688 /* Tear down the interrupt queue link list
3689 *
3690 * We know that they come in pairs and always
3691 * the Rx first, then the Tx. To clear the
3692 * link list, stick the EOL value into the
3693 * next_q field of the registers.
3694 */
3695 val = rd32(hw, I40E_PFINT_LNKLSTN(vector - 1));
3696 qp = (val & I40E_PFINT_LNKLSTN_FIRSTQ_INDX_MASK)
3697 >> I40E_PFINT_LNKLSTN_FIRSTQ_INDX_SHIFT;
3698 val |= I40E_QUEUE_END_OF_LIST
3699 << I40E_PFINT_LNKLSTN_FIRSTQ_INDX_SHIFT;
3700 wr32(hw, I40E_PFINT_LNKLSTN(vector - 1), val);
3701
3702 while (qp != I40E_QUEUE_END_OF_LIST) {
3703 u32 next;
3704
3705 val = rd32(hw, I40E_QINT_RQCTL(qp));
3706
3707 val &= ~(I40E_QINT_RQCTL_MSIX_INDX_MASK |
3708 I40E_QINT_RQCTL_MSIX0_INDX_MASK |
3709 I40E_QINT_RQCTL_CAUSE_ENA_MASK |
3710 I40E_QINT_RQCTL_INTEVENT_MASK);
3711
3712 val |= (I40E_QINT_RQCTL_ITR_INDX_MASK |
3713 I40E_QINT_RQCTL_NEXTQ_INDX_MASK);
3714
3715 wr32(hw, I40E_QINT_RQCTL(qp), val);
3716
3717 val = rd32(hw, I40E_QINT_TQCTL(qp));
3718
3719 next = (val & I40E_QINT_TQCTL_NEXTQ_INDX_MASK)
3720 >> I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT;
3721
3722 val &= ~(I40E_QINT_TQCTL_MSIX_INDX_MASK |
3723 I40E_QINT_TQCTL_MSIX0_INDX_MASK |
3724 I40E_QINT_TQCTL_CAUSE_ENA_MASK |
3725 I40E_QINT_TQCTL_INTEVENT_MASK);
3726
3727 val |= (I40E_QINT_TQCTL_ITR_INDX_MASK |
3728 I40E_QINT_TQCTL_NEXTQ_INDX_MASK);
3729
3730 wr32(hw, I40E_QINT_TQCTL(qp), val);
3731 qp = next;
3732 }
3733 }
3734 } else {
3735 free_irq(pf->pdev->irq, pf);
3736
3737 val = rd32(hw, I40E_PFINT_LNKLST0);
3738 qp = (val & I40E_PFINT_LNKLSTN_FIRSTQ_INDX_MASK)
3739 >> I40E_PFINT_LNKLSTN_FIRSTQ_INDX_SHIFT;
3740 val |= I40E_QUEUE_END_OF_LIST
3741 << I40E_PFINT_LNKLST0_FIRSTQ_INDX_SHIFT;
3742 wr32(hw, I40E_PFINT_LNKLST0, val);
3743
3744 val = rd32(hw, I40E_QINT_RQCTL(qp));
3745 val &= ~(I40E_QINT_RQCTL_MSIX_INDX_MASK |
3746 I40E_QINT_RQCTL_MSIX0_INDX_MASK |
3747 I40E_QINT_RQCTL_CAUSE_ENA_MASK |
3748 I40E_QINT_RQCTL_INTEVENT_MASK);
3749
3750 val |= (I40E_QINT_RQCTL_ITR_INDX_MASK |
3751 I40E_QINT_RQCTL_NEXTQ_INDX_MASK);
3752
3753 wr32(hw, I40E_QINT_RQCTL(qp), val);
3754
3755 val = rd32(hw, I40E_QINT_TQCTL(qp));
3756
3757 val &= ~(I40E_QINT_TQCTL_MSIX_INDX_MASK |
3758 I40E_QINT_TQCTL_MSIX0_INDX_MASK |
3759 I40E_QINT_TQCTL_CAUSE_ENA_MASK |
3760 I40E_QINT_TQCTL_INTEVENT_MASK);
3761
3762 val |= (I40E_QINT_TQCTL_ITR_INDX_MASK |
3763 I40E_QINT_TQCTL_NEXTQ_INDX_MASK);
3764
3765 wr32(hw, I40E_QINT_TQCTL(qp), val);
3766 }
3767}
3768
3769/**
Alexander Duyck493fb302013-09-28 07:01:44 +00003770 * i40e_free_q_vector - Free memory allocated for specific interrupt vector
3771 * @vsi: the VSI being configured
3772 * @v_idx: Index of vector to be freed
3773 *
3774 * This function frees the memory allocated to the q_vector. In addition if
3775 * NAPI is enabled it will delete any references to the NAPI struct prior
3776 * to freeing the q_vector.
3777 **/
3778static void i40e_free_q_vector(struct i40e_vsi *vsi, int v_idx)
3779{
3780 struct i40e_q_vector *q_vector = vsi->q_vectors[v_idx];
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003781 struct i40e_ring *ring;
Alexander Duyck493fb302013-09-28 07:01:44 +00003782
3783 if (!q_vector)
3784 return;
3785
3786 /* disassociate q_vector from rings */
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003787 i40e_for_each_ring(ring, q_vector->tx)
3788 ring->q_vector = NULL;
3789
3790 i40e_for_each_ring(ring, q_vector->rx)
3791 ring->q_vector = NULL;
Alexander Duyck493fb302013-09-28 07:01:44 +00003792
3793 /* only VSI w/ an associated netdev is set up w/ NAPI */
3794 if (vsi->netdev)
3795 netif_napi_del(&q_vector->napi);
3796
3797 vsi->q_vectors[v_idx] = NULL;
3798
3799 kfree_rcu(q_vector, rcu);
3800}
3801
3802/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003803 * i40e_vsi_free_q_vectors - Free memory allocated for interrupt vectors
3804 * @vsi: the VSI being un-configured
3805 *
3806 * This frees the memory allocated to the q_vectors and
3807 * deletes references to the NAPI struct.
3808 **/
3809static void i40e_vsi_free_q_vectors(struct i40e_vsi *vsi)
3810{
3811 int v_idx;
3812
Alexander Duyck493fb302013-09-28 07:01:44 +00003813 for (v_idx = 0; v_idx < vsi->num_q_vectors; v_idx++)
3814 i40e_free_q_vector(vsi, v_idx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003815}
3816
3817/**
3818 * i40e_reset_interrupt_capability - Disable interrupt setup in OS
3819 * @pf: board private structure
3820 **/
3821static void i40e_reset_interrupt_capability(struct i40e_pf *pf)
3822{
3823 /* If we're in Legacy mode, the interrupt was cleaned in vsi_close */
3824 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
3825 pci_disable_msix(pf->pdev);
3826 kfree(pf->msix_entries);
3827 pf->msix_entries = NULL;
3828 } else if (pf->flags & I40E_FLAG_MSI_ENABLED) {
3829 pci_disable_msi(pf->pdev);
3830 }
3831 pf->flags &= ~(I40E_FLAG_MSIX_ENABLED | I40E_FLAG_MSI_ENABLED);
3832}
3833
3834/**
3835 * i40e_clear_interrupt_scheme - Clear the current interrupt scheme settings
3836 * @pf: board private structure
3837 *
3838 * We go through and clear interrupt specific resources and reset the structure
3839 * to pre-load conditions
3840 **/
3841static void i40e_clear_interrupt_scheme(struct i40e_pf *pf)
3842{
3843 int i;
3844
3845 i40e_put_lump(pf->irq_pile, 0, I40E_PILE_VALID_BIT-1);
Mitch Williams505682c2014-05-20 08:01:37 +00003846 for (i = 0; i < pf->num_alloc_vsi; i++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003847 if (pf->vsi[i])
3848 i40e_vsi_free_q_vectors(pf->vsi[i]);
3849 i40e_reset_interrupt_capability(pf);
3850}
3851
3852/**
3853 * i40e_napi_enable_all - Enable NAPI for all q_vectors in the VSI
3854 * @vsi: the VSI being configured
3855 **/
3856static void i40e_napi_enable_all(struct i40e_vsi *vsi)
3857{
3858 int q_idx;
3859
3860 if (!vsi->netdev)
3861 return;
3862
3863 for (q_idx = 0; q_idx < vsi->num_q_vectors; q_idx++)
Alexander Duyck493fb302013-09-28 07:01:44 +00003864 napi_enable(&vsi->q_vectors[q_idx]->napi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003865}
3866
3867/**
3868 * i40e_napi_disable_all - Disable NAPI for all q_vectors in the VSI
3869 * @vsi: the VSI being configured
3870 **/
3871static void i40e_napi_disable_all(struct i40e_vsi *vsi)
3872{
3873 int q_idx;
3874
3875 if (!vsi->netdev)
3876 return;
3877
3878 for (q_idx = 0; q_idx < vsi->num_q_vectors; q_idx++)
Alexander Duyck493fb302013-09-28 07:01:44 +00003879 napi_disable(&vsi->q_vectors[q_idx]->napi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003880}
3881
3882/**
Shannon Nelson90ef8d42014-03-14 07:32:26 +00003883 * i40e_vsi_close - Shut down a VSI
3884 * @vsi: the vsi to be quelled
3885 **/
3886static void i40e_vsi_close(struct i40e_vsi *vsi)
3887{
3888 if (!test_and_set_bit(__I40E_DOWN, &vsi->state))
3889 i40e_down(vsi);
3890 i40e_vsi_free_irq(vsi);
3891 i40e_vsi_free_tx_resources(vsi);
3892 i40e_vsi_free_rx_resources(vsi);
3893}
3894
3895/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003896 * i40e_quiesce_vsi - Pause a given VSI
3897 * @vsi: the VSI being paused
3898 **/
3899static void i40e_quiesce_vsi(struct i40e_vsi *vsi)
3900{
3901 if (test_bit(__I40E_DOWN, &vsi->state))
3902 return;
3903
Neerav Parikhd341b7a2014-11-12 00:18:51 +00003904 /* No need to disable FCoE VSI when Tx suspended */
3905 if ((test_bit(__I40E_PORT_TX_SUSPENDED, &vsi->back->state)) &&
3906 vsi->type == I40E_VSI_FCOE) {
3907 dev_dbg(&vsi->back->pdev->dev,
3908 "%s: VSI seid %d skipping FCoE VSI disable\n",
3909 __func__, vsi->seid);
3910 return;
3911 }
3912
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003913 set_bit(__I40E_NEEDS_RESTART, &vsi->state);
3914 if (vsi->netdev && netif_running(vsi->netdev)) {
3915 vsi->netdev->netdev_ops->ndo_stop(vsi->netdev);
3916 } else {
Shannon Nelson90ef8d42014-03-14 07:32:26 +00003917 i40e_vsi_close(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003918 }
3919}
3920
3921/**
3922 * i40e_unquiesce_vsi - Resume a given VSI
3923 * @vsi: the VSI being resumed
3924 **/
3925static void i40e_unquiesce_vsi(struct i40e_vsi *vsi)
3926{
3927 if (!test_bit(__I40E_NEEDS_RESTART, &vsi->state))
3928 return;
3929
3930 clear_bit(__I40E_NEEDS_RESTART, &vsi->state);
3931 if (vsi->netdev && netif_running(vsi->netdev))
3932 vsi->netdev->netdev_ops->ndo_open(vsi->netdev);
3933 else
Shannon Nelson8276f752014-03-14 07:32:27 +00003934 i40e_vsi_open(vsi); /* this clears the DOWN bit */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003935}
3936
3937/**
3938 * i40e_pf_quiesce_all_vsi - Pause all VSIs on a PF
3939 * @pf: the PF
3940 **/
3941static void i40e_pf_quiesce_all_vsi(struct i40e_pf *pf)
3942{
3943 int v;
3944
Mitch Williams505682c2014-05-20 08:01:37 +00003945 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003946 if (pf->vsi[v])
3947 i40e_quiesce_vsi(pf->vsi[v]);
3948 }
3949}
3950
3951/**
3952 * i40e_pf_unquiesce_all_vsi - Resume all VSIs on a PF
3953 * @pf: the PF
3954 **/
3955static void i40e_pf_unquiesce_all_vsi(struct i40e_pf *pf)
3956{
3957 int v;
3958
Mitch Williams505682c2014-05-20 08:01:37 +00003959 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003960 if (pf->vsi[v])
3961 i40e_unquiesce_vsi(pf->vsi[v]);
3962 }
3963}
3964
Neerav Parikh69129dc2014-11-12 00:18:46 +00003965#ifdef CONFIG_I40E_DCB
3966/**
3967 * i40e_vsi_wait_txq_disabled - Wait for VSI's queues to be disabled
3968 * @vsi: the VSI being configured
3969 *
3970 * This function waits for the given VSI's Tx queues to be disabled.
3971 **/
3972static int i40e_vsi_wait_txq_disabled(struct i40e_vsi *vsi)
3973{
3974 struct i40e_pf *pf = vsi->back;
3975 int i, pf_q, ret;
3976
3977 pf_q = vsi->base_queue;
3978 for (i = 0; i < vsi->num_queue_pairs; i++, pf_q++) {
3979 /* Check and wait for the disable status of the queue */
3980 ret = i40e_pf_txq_wait(pf, pf_q, false);
3981 if (ret) {
3982 dev_info(&pf->pdev->dev,
3983 "%s: VSI seid %d Tx ring %d disable timeout\n",
3984 __func__, vsi->seid, pf_q);
3985 return ret;
3986 }
3987 }
3988
3989 return 0;
3990}
3991
3992/**
3993 * i40e_pf_wait_txq_disabled - Wait for all queues of PF VSIs to be disabled
3994 * @pf: the PF
3995 *
3996 * This function waits for the Tx queues to be in disabled state for all the
3997 * VSIs that are managed by this PF.
3998 **/
3999static int i40e_pf_wait_txq_disabled(struct i40e_pf *pf)
4000{
4001 int v, ret = 0;
4002
4003 for (v = 0; v < pf->hw.func_caps.num_vsis; v++) {
Neerav Parikhd341b7a2014-11-12 00:18:51 +00004004 /* No need to wait for FCoE VSI queues */
4005 if (pf->vsi[v] && pf->vsi[v]->type != I40E_VSI_FCOE) {
Neerav Parikh69129dc2014-11-12 00:18:46 +00004006 ret = i40e_vsi_wait_txq_disabled(pf->vsi[v]);
4007 if (ret)
4008 break;
4009 }
4010 }
4011
4012 return ret;
4013}
4014
4015#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004016/**
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004017 * i40e_get_iscsi_tc_map - Return TC map for iSCSI APP
4018 * @pf: pointer to pf
4019 *
4020 * Get TC map for ISCSI PF type that will include iSCSI TC
4021 * and LAN TC.
4022 **/
4023static u8 i40e_get_iscsi_tc_map(struct i40e_pf *pf)
4024{
4025 struct i40e_dcb_app_priority_table app;
4026 struct i40e_hw *hw = &pf->hw;
4027 u8 enabled_tc = 1; /* TC0 is always enabled */
4028 u8 tc, i;
4029 /* Get the iSCSI APP TLV */
4030 struct i40e_dcbx_config *dcbcfg = &hw->local_dcbx_config;
4031
4032 for (i = 0; i < dcbcfg->numapps; i++) {
4033 app = dcbcfg->app[i];
4034 if (app.selector == I40E_APP_SEL_TCPIP &&
4035 app.protocolid == I40E_APP_PROTOID_ISCSI) {
4036 tc = dcbcfg->etscfg.prioritytable[app.priority];
4037 enabled_tc |= (1 << tc);
4038 break;
4039 }
4040 }
4041
4042 return enabled_tc;
4043}
4044
4045/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004046 * i40e_dcb_get_num_tc - Get the number of TCs from DCBx config
4047 * @dcbcfg: the corresponding DCBx configuration structure
4048 *
4049 * Return the number of TCs from given DCBx configuration
4050 **/
4051static u8 i40e_dcb_get_num_tc(struct i40e_dcbx_config *dcbcfg)
4052{
Jesse Brandeburg078b5872013-09-25 23:41:14 +00004053 u8 num_tc = 0;
4054 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004055
4056 /* Scan the ETS Config Priority Table to find
4057 * traffic class enabled for a given priority
4058 * and use the traffic class index to get the
4059 * number of traffic classes enabled
4060 */
4061 for (i = 0; i < I40E_MAX_USER_PRIORITY; i++) {
4062 if (dcbcfg->etscfg.prioritytable[i] > num_tc)
4063 num_tc = dcbcfg->etscfg.prioritytable[i];
4064 }
4065
4066 /* Traffic class index starts from zero so
4067 * increment to return the actual count
4068 */
Jesse Brandeburg078b5872013-09-25 23:41:14 +00004069 return num_tc + 1;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004070}
4071
4072/**
4073 * i40e_dcb_get_enabled_tc - Get enabled traffic classes
4074 * @dcbcfg: the corresponding DCBx configuration structure
4075 *
4076 * Query the current DCB configuration and return the number of
4077 * traffic classes enabled from the given DCBX config
4078 **/
4079static u8 i40e_dcb_get_enabled_tc(struct i40e_dcbx_config *dcbcfg)
4080{
4081 u8 num_tc = i40e_dcb_get_num_tc(dcbcfg);
4082 u8 enabled_tc = 1;
4083 u8 i;
4084
4085 for (i = 0; i < num_tc; i++)
4086 enabled_tc |= 1 << i;
4087
4088 return enabled_tc;
4089}
4090
4091/**
4092 * i40e_pf_get_num_tc - Get enabled traffic classes for PF
4093 * @pf: PF being queried
4094 *
4095 * Return number of traffic classes enabled for the given PF
4096 **/
4097static u8 i40e_pf_get_num_tc(struct i40e_pf *pf)
4098{
4099 struct i40e_hw *hw = &pf->hw;
4100 u8 i, enabled_tc;
4101 u8 num_tc = 0;
4102 struct i40e_dcbx_config *dcbcfg = &hw->local_dcbx_config;
4103
4104 /* If DCB is not enabled then always in single TC */
4105 if (!(pf->flags & I40E_FLAG_DCB_ENABLED))
4106 return 1;
4107
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004108 /* SFP mode will be enabled for all TCs on port */
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004109 if (!(pf->flags & I40E_FLAG_MFP_ENABLED))
4110 return i40e_dcb_get_num_tc(dcbcfg);
4111
4112 /* MFP mode return count of enabled TCs for this PF */
4113 if (pf->hw.func_caps.iscsi)
4114 enabled_tc = i40e_get_iscsi_tc_map(pf);
4115 else
4116 enabled_tc = pf->hw.func_caps.enabled_tcmap;
4117
4118 /* At least have TC0 */
4119 enabled_tc = (enabled_tc ? enabled_tc : 0x1);
4120 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
4121 if (enabled_tc & (1 << i))
4122 num_tc++;
4123 }
4124 return num_tc;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004125}
4126
4127/**
4128 * i40e_pf_get_default_tc - Get bitmap for first enabled TC
4129 * @pf: PF being queried
4130 *
4131 * Return a bitmap for first enabled traffic class for this PF.
4132 **/
4133static u8 i40e_pf_get_default_tc(struct i40e_pf *pf)
4134{
4135 u8 enabled_tc = pf->hw.func_caps.enabled_tcmap;
4136 u8 i = 0;
4137
4138 if (!enabled_tc)
4139 return 0x1; /* TC0 */
4140
4141 /* Find the first enabled TC */
4142 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
4143 if (enabled_tc & (1 << i))
4144 break;
4145 }
4146
4147 return 1 << i;
4148}
4149
4150/**
4151 * i40e_pf_get_pf_tc_map - Get bitmap for enabled traffic classes
4152 * @pf: PF being queried
4153 *
4154 * Return a bitmap for enabled traffic classes for this PF.
4155 **/
4156static u8 i40e_pf_get_tc_map(struct i40e_pf *pf)
4157{
4158 /* If DCB is not enabled for this PF then just return default TC */
4159 if (!(pf->flags & I40E_FLAG_DCB_ENABLED))
4160 return i40e_pf_get_default_tc(pf);
4161
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004162 /* SFP mode we want PF to be enabled for all TCs */
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004163 if (!(pf->flags & I40E_FLAG_MFP_ENABLED))
4164 return i40e_dcb_get_enabled_tc(&pf->hw.local_dcbx_config);
4165
4166 /* MPF enabled and iSCSI PF type */
4167 if (pf->hw.func_caps.iscsi)
4168 return i40e_get_iscsi_tc_map(pf);
4169 else
4170 return pf->hw.func_caps.enabled_tcmap;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004171}
4172
4173/**
4174 * i40e_vsi_get_bw_info - Query VSI BW Information
4175 * @vsi: the VSI being queried
4176 *
4177 * Returns 0 on success, negative value on failure
4178 **/
4179static int i40e_vsi_get_bw_info(struct i40e_vsi *vsi)
4180{
4181 struct i40e_aqc_query_vsi_ets_sla_config_resp bw_ets_config = {0};
4182 struct i40e_aqc_query_vsi_bw_config_resp bw_config = {0};
4183 struct i40e_pf *pf = vsi->back;
4184 struct i40e_hw *hw = &pf->hw;
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004185 i40e_status aq_ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004186 u32 tc_bw_max;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004187 int i;
4188
4189 /* Get the VSI level BW configuration */
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004190 aq_ret = i40e_aq_query_vsi_bw_config(hw, vsi->seid, &bw_config, NULL);
4191 if (aq_ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004192 dev_info(&pf->pdev->dev,
4193 "couldn't get pf vsi bw config, err %d, aq_err %d\n",
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004194 aq_ret, pf->hw.aq.asq_last_status);
4195 return -EINVAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004196 }
4197
4198 /* Get the VSI level BW configuration per TC */
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004199 aq_ret = i40e_aq_query_vsi_ets_sla_config(hw, vsi->seid, &bw_ets_config,
Jesse Brandeburg6838b532014-01-14 00:49:52 -08004200 NULL);
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004201 if (aq_ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004202 dev_info(&pf->pdev->dev,
4203 "couldn't get pf vsi ets bw config, err %d, aq_err %d\n",
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004204 aq_ret, pf->hw.aq.asq_last_status);
4205 return -EINVAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004206 }
4207
4208 if (bw_config.tc_valid_bits != bw_ets_config.tc_valid_bits) {
4209 dev_info(&pf->pdev->dev,
4210 "Enabled TCs mismatch from querying VSI BW info 0x%08x 0x%08x\n",
4211 bw_config.tc_valid_bits,
4212 bw_ets_config.tc_valid_bits);
4213 /* Still continuing */
4214 }
4215
4216 vsi->bw_limit = le16_to_cpu(bw_config.port_bw_limit);
4217 vsi->bw_max_quanta = bw_config.max_bw;
4218 tc_bw_max = le16_to_cpu(bw_ets_config.tc_bw_max[0]) |
4219 (le16_to_cpu(bw_ets_config.tc_bw_max[1]) << 16);
4220 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
4221 vsi->bw_ets_share_credits[i] = bw_ets_config.share_credits[i];
4222 vsi->bw_ets_limit_credits[i] =
4223 le16_to_cpu(bw_ets_config.credits[i]);
4224 /* 3 bits out of 4 for each TC */
4225 vsi->bw_ets_max_quanta[i] = (u8)((tc_bw_max >> (i*4)) & 0x7);
4226 }
Jesse Brandeburg078b5872013-09-25 23:41:14 +00004227
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004228 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004229}
4230
4231/**
4232 * i40e_vsi_configure_bw_alloc - Configure VSI BW allocation per TC
4233 * @vsi: the VSI being configured
4234 * @enabled_tc: TC bitmap
4235 * @bw_credits: BW shared credits per TC
4236 *
4237 * Returns 0 on success, negative value on failure
4238 **/
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004239static int i40e_vsi_configure_bw_alloc(struct i40e_vsi *vsi, u8 enabled_tc,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004240 u8 *bw_share)
4241{
4242 struct i40e_aqc_configure_vsi_tc_bw_data bw_data;
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004243 i40e_status aq_ret;
4244 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004245
4246 bw_data.tc_valid_bits = enabled_tc;
4247 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++)
4248 bw_data.tc_bw_credits[i] = bw_share[i];
4249
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004250 aq_ret = i40e_aq_config_vsi_tc_bw(&vsi->back->hw, vsi->seid, &bw_data,
4251 NULL);
4252 if (aq_ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004253 dev_info(&vsi->back->pdev->dev,
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00004254 "AQ command Config VSI BW allocation per TC failed = %d\n",
4255 vsi->back->hw.aq.asq_last_status);
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004256 return -EINVAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004257 }
4258
4259 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++)
4260 vsi->info.qs_handle[i] = bw_data.qs_handles[i];
4261
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004262 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004263}
4264
4265/**
4266 * i40e_vsi_config_netdev_tc - Setup the netdev TC configuration
4267 * @vsi: the VSI being configured
4268 * @enabled_tc: TC map to be enabled
4269 *
4270 **/
4271static void i40e_vsi_config_netdev_tc(struct i40e_vsi *vsi, u8 enabled_tc)
4272{
4273 struct net_device *netdev = vsi->netdev;
4274 struct i40e_pf *pf = vsi->back;
4275 struct i40e_hw *hw = &pf->hw;
4276 u8 netdev_tc = 0;
4277 int i;
4278 struct i40e_dcbx_config *dcbcfg = &hw->local_dcbx_config;
4279
4280 if (!netdev)
4281 return;
4282
4283 if (!enabled_tc) {
4284 netdev_reset_tc(netdev);
4285 return;
4286 }
4287
4288 /* Set up actual enabled TCs on the VSI */
4289 if (netdev_set_num_tc(netdev, vsi->tc_config.numtc))
4290 return;
4291
4292 /* set per TC queues for the VSI */
4293 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
4294 /* Only set TC queues for enabled tcs
4295 *
4296 * e.g. For a VSI that has TC0 and TC3 enabled the
4297 * enabled_tc bitmap would be 0x00001001; the driver
4298 * will set the numtc for netdev as 2 that will be
4299 * referenced by the netdev layer as TC 0 and 1.
4300 */
4301 if (vsi->tc_config.enabled_tc & (1 << i))
4302 netdev_set_tc_queue(netdev,
4303 vsi->tc_config.tc_info[i].netdev_tc,
4304 vsi->tc_config.tc_info[i].qcount,
4305 vsi->tc_config.tc_info[i].qoffset);
4306 }
4307
4308 /* Assign UP2TC map for the VSI */
4309 for (i = 0; i < I40E_MAX_USER_PRIORITY; i++) {
4310 /* Get the actual TC# for the UP */
4311 u8 ets_tc = dcbcfg->etscfg.prioritytable[i];
4312 /* Get the mapped netdev TC# for the UP */
4313 netdev_tc = vsi->tc_config.tc_info[ets_tc].netdev_tc;
4314 netdev_set_prio_tc_map(netdev, i, netdev_tc);
4315 }
4316}
4317
4318/**
4319 * i40e_vsi_update_queue_map - Update our copy of VSi info with new queue map
4320 * @vsi: the VSI being configured
4321 * @ctxt: the ctxt buffer returned from AQ VSI update param command
4322 **/
4323static void i40e_vsi_update_queue_map(struct i40e_vsi *vsi,
4324 struct i40e_vsi_context *ctxt)
4325{
4326 /* copy just the sections touched not the entire info
4327 * since not all sections are valid as returned by
4328 * update vsi params
4329 */
4330 vsi->info.mapping_flags = ctxt->info.mapping_flags;
4331 memcpy(&vsi->info.queue_mapping,
4332 &ctxt->info.queue_mapping, sizeof(vsi->info.queue_mapping));
4333 memcpy(&vsi->info.tc_mapping, ctxt->info.tc_mapping,
4334 sizeof(vsi->info.tc_mapping));
4335}
4336
4337/**
4338 * i40e_vsi_config_tc - Configure VSI Tx Scheduler for given TC map
4339 * @vsi: VSI to be configured
4340 * @enabled_tc: TC bitmap
4341 *
4342 * This configures a particular VSI for TCs that are mapped to the
4343 * given TC bitmap. It uses default bandwidth share for TCs across
4344 * VSIs to configure TC for a particular VSI.
4345 *
4346 * NOTE:
4347 * It is expected that the VSI queues have been quisced before calling
4348 * this function.
4349 **/
4350static int i40e_vsi_config_tc(struct i40e_vsi *vsi, u8 enabled_tc)
4351{
4352 u8 bw_share[I40E_MAX_TRAFFIC_CLASS] = {0};
4353 struct i40e_vsi_context ctxt;
4354 int ret = 0;
4355 int i;
4356
4357 /* Check if enabled_tc is same as existing or new TCs */
4358 if (vsi->tc_config.enabled_tc == enabled_tc)
4359 return ret;
4360
4361 /* Enable ETS TCs with equal BW Share for now across all VSIs */
4362 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
4363 if (enabled_tc & (1 << i))
4364 bw_share[i] = 1;
4365 }
4366
4367 ret = i40e_vsi_configure_bw_alloc(vsi, enabled_tc, bw_share);
4368 if (ret) {
4369 dev_info(&vsi->back->pdev->dev,
4370 "Failed configuring TC map %d for VSI %d\n",
4371 enabled_tc, vsi->seid);
4372 goto out;
4373 }
4374
4375 /* Update Queue Pairs Mapping for currently enabled UPs */
4376 ctxt.seid = vsi->seid;
4377 ctxt.pf_num = vsi->back->hw.pf_id;
4378 ctxt.vf_num = 0;
4379 ctxt.uplink_seid = vsi->uplink_seid;
4380 memcpy(&ctxt.info, &vsi->info, sizeof(vsi->info));
4381 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, false);
4382
4383 /* Update the VSI after updating the VSI queue-mapping information */
4384 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
4385 if (ret) {
4386 dev_info(&vsi->back->pdev->dev,
4387 "update vsi failed, aq_err=%d\n",
4388 vsi->back->hw.aq.asq_last_status);
4389 goto out;
4390 }
4391 /* update the local VSI info with updated queue map */
4392 i40e_vsi_update_queue_map(vsi, &ctxt);
4393 vsi->info.valid_sections = 0;
4394
4395 /* Update current VSI BW information */
4396 ret = i40e_vsi_get_bw_info(vsi);
4397 if (ret) {
4398 dev_info(&vsi->back->pdev->dev,
4399 "Failed updating vsi bw info, aq_err=%d\n",
4400 vsi->back->hw.aq.asq_last_status);
4401 goto out;
4402 }
4403
4404 /* Update the netdev TC setup */
4405 i40e_vsi_config_netdev_tc(vsi, enabled_tc);
4406out:
4407 return ret;
4408}
4409
4410/**
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004411 * i40e_veb_config_tc - Configure TCs for given VEB
4412 * @veb: given VEB
4413 * @enabled_tc: TC bitmap
4414 *
4415 * Configures given TC bitmap for VEB (switching) element
4416 **/
4417int i40e_veb_config_tc(struct i40e_veb *veb, u8 enabled_tc)
4418{
4419 struct i40e_aqc_configure_switching_comp_bw_config_data bw_data = {0};
4420 struct i40e_pf *pf = veb->pf;
4421 int ret = 0;
4422 int i;
4423
4424 /* No TCs or already enabled TCs just return */
4425 if (!enabled_tc || veb->enabled_tc == enabled_tc)
4426 return ret;
4427
4428 bw_data.tc_valid_bits = enabled_tc;
4429 /* bw_data.absolute_credits is not set (relative) */
4430
4431 /* Enable ETS TCs with equal BW Share for now */
4432 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
4433 if (enabled_tc & (1 << i))
4434 bw_data.tc_bw_share_credits[i] = 1;
4435 }
4436
4437 ret = i40e_aq_config_switch_comp_bw_config(&pf->hw, veb->seid,
4438 &bw_data, NULL);
4439 if (ret) {
4440 dev_info(&pf->pdev->dev,
4441 "veb bw config failed, aq_err=%d\n",
4442 pf->hw.aq.asq_last_status);
4443 goto out;
4444 }
4445
4446 /* Update the BW information */
4447 ret = i40e_veb_get_bw_info(veb);
4448 if (ret) {
4449 dev_info(&pf->pdev->dev,
4450 "Failed getting veb bw config, aq_err=%d\n",
4451 pf->hw.aq.asq_last_status);
4452 }
4453
4454out:
4455 return ret;
4456}
4457
4458#ifdef CONFIG_I40E_DCB
4459/**
4460 * i40e_dcb_reconfigure - Reconfigure all VEBs and VSIs
4461 * @pf: PF struct
4462 *
4463 * Reconfigure VEB/VSIs on a given PF; it is assumed that
4464 * the caller would've quiesce all the VSIs before calling
4465 * this function
4466 **/
4467static void i40e_dcb_reconfigure(struct i40e_pf *pf)
4468{
4469 u8 tc_map = 0;
4470 int ret;
4471 u8 v;
4472
4473 /* Enable the TCs available on PF to all VEBs */
4474 tc_map = i40e_pf_get_tc_map(pf);
4475 for (v = 0; v < I40E_MAX_VEB; v++) {
4476 if (!pf->veb[v])
4477 continue;
4478 ret = i40e_veb_config_tc(pf->veb[v], tc_map);
4479 if (ret) {
4480 dev_info(&pf->pdev->dev,
4481 "Failed configuring TC for VEB seid=%d\n",
4482 pf->veb[v]->seid);
4483 /* Will try to configure as many components */
4484 }
4485 }
4486
4487 /* Update each VSI */
Mitch Williams505682c2014-05-20 08:01:37 +00004488 for (v = 0; v < pf->num_alloc_vsi; v++) {
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004489 if (!pf->vsi[v])
4490 continue;
4491
4492 /* - Enable all TCs for the LAN VSI
Vasu Dev38e00432014-08-01 13:27:03 -07004493#ifdef I40E_FCOE
4494 * - For FCoE VSI only enable the TC configured
4495 * as per the APP TLV
4496#endif
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004497 * - For all others keep them at TC0 for now
4498 */
4499 if (v == pf->lan_vsi)
4500 tc_map = i40e_pf_get_tc_map(pf);
4501 else
4502 tc_map = i40e_pf_get_default_tc(pf);
Vasu Dev38e00432014-08-01 13:27:03 -07004503#ifdef I40E_FCOE
4504 if (pf->vsi[v]->type == I40E_VSI_FCOE)
4505 tc_map = i40e_get_fcoe_tc_map(pf);
4506#endif /* #ifdef I40E_FCOE */
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004507
4508 ret = i40e_vsi_config_tc(pf->vsi[v], tc_map);
4509 if (ret) {
4510 dev_info(&pf->pdev->dev,
4511 "Failed configuring TC for VSI seid=%d\n",
4512 pf->vsi[v]->seid);
4513 /* Will try to configure as many components */
4514 } else {
Neerav Parikh0672a092014-04-01 07:11:47 +00004515 /* Re-configure VSI vectors based on updated TC map */
4516 i40e_vsi_map_rings_to_vectors(pf->vsi[v]);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004517 if (pf->vsi[v]->netdev)
4518 i40e_dcbnl_set_all(pf->vsi[v]);
4519 }
4520 }
4521}
4522
4523/**
Neerav Parikh2fd75f32014-11-12 00:18:20 +00004524 * i40e_resume_port_tx - Resume port Tx
4525 * @pf: PF struct
4526 *
4527 * Resume a port's Tx and issue a PF reset in case of failure to
4528 * resume.
4529 **/
4530static int i40e_resume_port_tx(struct i40e_pf *pf)
4531{
4532 struct i40e_hw *hw = &pf->hw;
4533 int ret;
4534
4535 ret = i40e_aq_resume_port_tx(hw, NULL);
4536 if (ret) {
4537 dev_info(&pf->pdev->dev,
4538 "AQ command Resume Port Tx failed = %d\n",
4539 pf->hw.aq.asq_last_status);
4540 /* Schedule PF reset to recover */
4541 set_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
4542 i40e_service_event_schedule(pf);
4543 }
4544
4545 return ret;
4546}
4547
4548/**
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004549 * i40e_init_pf_dcb - Initialize DCB configuration
4550 * @pf: PF being configured
4551 *
4552 * Query the current DCB configuration and cache it
4553 * in the hardware structure
4554 **/
4555static int i40e_init_pf_dcb(struct i40e_pf *pf)
4556{
4557 struct i40e_hw *hw = &pf->hw;
4558 int err = 0;
4559
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004560 /* Get the initial DCB configuration */
4561 err = i40e_init_dcb(hw);
4562 if (!err) {
4563 /* Device/Function is not DCBX capable */
4564 if ((!hw->func_caps.dcb) ||
4565 (hw->dcbx_status == I40E_DCBX_STATUS_DISABLED)) {
4566 dev_info(&pf->pdev->dev,
4567 "DCBX offload is not supported or is disabled for this PF.\n");
4568
4569 if (pf->flags & I40E_FLAG_MFP_ENABLED)
4570 goto out;
4571
4572 } else {
4573 /* When status is not DISABLED then DCBX in FW */
4574 pf->dcbx_cap = DCB_CAP_DCBX_LLD_MANAGED |
4575 DCB_CAP_DCBX_VER_IEEE;
Neerav Parikh4d9b6042014-05-22 06:31:51 +00004576
4577 pf->flags |= I40E_FLAG_DCB_CAPABLE;
4578 /* Enable DCB tagging only when more than one TC */
4579 if (i40e_dcb_get_num_tc(&hw->local_dcbx_config) > 1)
4580 pf->flags |= I40E_FLAG_DCB_ENABLED;
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00004581 dev_dbg(&pf->pdev->dev,
4582 "DCBX offload is supported for this PF.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004583 }
Neerav Parikh014269f2014-04-01 07:11:48 +00004584 } else {
Shannon Nelsonaebfc812014-12-11 07:06:38 +00004585 dev_info(&pf->pdev->dev,
4586 "AQ Querying DCB configuration failed: aq_err %d\n",
Neerav Parikh014269f2014-04-01 07:11:48 +00004587 pf->hw.aq.asq_last_status);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004588 }
4589
4590out:
4591 return err;
4592}
4593#endif /* CONFIG_I40E_DCB */
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004594#define SPEED_SIZE 14
4595#define FC_SIZE 8
4596/**
4597 * i40e_print_link_message - print link up or down
4598 * @vsi: the VSI for which link needs a message
4599 */
4600static void i40e_print_link_message(struct i40e_vsi *vsi, bool isup)
4601{
4602 char speed[SPEED_SIZE] = "Unknown";
4603 char fc[FC_SIZE] = "RX/TX";
4604
4605 if (!isup) {
4606 netdev_info(vsi->netdev, "NIC Link is Down\n");
4607 return;
4608 }
4609
Greg Rose148c2d82014-12-11 07:06:27 +00004610 /* Warn user if link speed on NPAR enabled partition is not at
4611 * least 10GB
4612 */
4613 if (vsi->back->hw.func_caps.npar_enable &&
4614 (vsi->back->hw.phy.link_info.link_speed == I40E_LINK_SPEED_1GB ||
4615 vsi->back->hw.phy.link_info.link_speed == I40E_LINK_SPEED_100MB))
4616 netdev_warn(vsi->netdev,
4617 "The partition detected link speed that is less than 10Gbps\n");
4618
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004619 switch (vsi->back->hw.phy.link_info.link_speed) {
4620 case I40E_LINK_SPEED_40GB:
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00004621 strlcpy(speed, "40 Gbps", SPEED_SIZE);
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004622 break;
4623 case I40E_LINK_SPEED_10GB:
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00004624 strlcpy(speed, "10 Gbps", SPEED_SIZE);
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004625 break;
4626 case I40E_LINK_SPEED_1GB:
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00004627 strlcpy(speed, "1000 Mbps", SPEED_SIZE);
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004628 break;
Mitch Williams5960d332014-09-13 07:40:47 +00004629 case I40E_LINK_SPEED_100MB:
4630 strncpy(speed, "100 Mbps", SPEED_SIZE);
4631 break;
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004632 default:
4633 break;
4634 }
4635
4636 switch (vsi->back->hw.fc.current_mode) {
4637 case I40E_FC_FULL:
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00004638 strlcpy(fc, "RX/TX", FC_SIZE);
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004639 break;
4640 case I40E_FC_TX_PAUSE:
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00004641 strlcpy(fc, "TX", FC_SIZE);
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004642 break;
4643 case I40E_FC_RX_PAUSE:
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00004644 strlcpy(fc, "RX", FC_SIZE);
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004645 break;
4646 default:
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00004647 strlcpy(fc, "None", FC_SIZE);
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004648 break;
4649 }
4650
4651 netdev_info(vsi->netdev, "NIC Link is Up %s Full Duplex, Flow Control: %s\n",
4652 speed, fc);
4653}
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004654
4655/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004656 * i40e_up_complete - Finish the last steps of bringing up a connection
4657 * @vsi: the VSI being configured
4658 **/
4659static int i40e_up_complete(struct i40e_vsi *vsi)
4660{
4661 struct i40e_pf *pf = vsi->back;
4662 int err;
4663
4664 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
4665 i40e_vsi_configure_msix(vsi);
4666 else
4667 i40e_configure_msi_and_legacy(vsi);
4668
4669 /* start rings */
4670 err = i40e_vsi_control_rings(vsi, true);
4671 if (err)
4672 return err;
4673
4674 clear_bit(__I40E_DOWN, &vsi->state);
4675 i40e_napi_enable_all(vsi);
4676 i40e_vsi_enable_irq(vsi);
4677
4678 if ((pf->hw.phy.link_info.link_info & I40E_AQ_LINK_UP) &&
4679 (vsi->netdev)) {
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004680 i40e_print_link_message(vsi, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004681 netif_tx_start_all_queues(vsi->netdev);
4682 netif_carrier_on(vsi->netdev);
Anjali Singhai6d779b42013-09-28 06:00:02 +00004683 } else if (vsi->netdev) {
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004684 i40e_print_link_message(vsi, false);
Carolyn Wyborny7b592f62014-07-10 07:58:19 +00004685 /* need to check for qualified module here*/
4686 if ((pf->hw.phy.link_info.link_info &
4687 I40E_AQ_MEDIA_AVAILABLE) &&
4688 (!(pf->hw.phy.link_info.an_info &
4689 I40E_AQ_QUALIFIED_MODULE)))
4690 netdev_err(vsi->netdev,
4691 "the driver failed to link because an unqualified module was detected.");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004692 }
Anjali Singhai Jainca64fa42014-02-11 08:26:30 +00004693
4694 /* replay FDIR SB filters */
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00004695 if (vsi->type == I40E_VSI_FDIR) {
4696 /* reset fd counters */
4697 pf->fd_add_err = pf->fd_atr_cnt = 0;
4698 if (pf->fd_tcp_rule > 0) {
4699 pf->flags &= ~I40E_FLAG_FD_ATR_ENABLED;
4700 dev_info(&pf->pdev->dev, "Forcing ATR off, sideband rules for TCP/IPv4 exist\n");
4701 pf->fd_tcp_rule = 0;
4702 }
Anjali Singhai Jainca64fa42014-02-11 08:26:30 +00004703 i40e_fdir_filter_restore(vsi);
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00004704 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004705 i40e_service_event_schedule(pf);
4706
4707 return 0;
4708}
4709
4710/**
4711 * i40e_vsi_reinit_locked - Reset the VSI
4712 * @vsi: the VSI being configured
4713 *
4714 * Rebuild the ring structs after some configuration
4715 * has changed, e.g. MTU size.
4716 **/
4717static void i40e_vsi_reinit_locked(struct i40e_vsi *vsi)
4718{
4719 struct i40e_pf *pf = vsi->back;
4720
4721 WARN_ON(in_interrupt());
4722 while (test_and_set_bit(__I40E_CONFIG_BUSY, &pf->state))
4723 usleep_range(1000, 2000);
4724 i40e_down(vsi);
4725
4726 /* Give a VF some time to respond to the reset. The
4727 * two second wait is based upon the watchdog cycle in
4728 * the VF driver.
4729 */
4730 if (vsi->type == I40E_VSI_SRIOV)
4731 msleep(2000);
4732 i40e_up(vsi);
4733 clear_bit(__I40E_CONFIG_BUSY, &pf->state);
4734}
4735
4736/**
4737 * i40e_up - Bring the connection back up after being down
4738 * @vsi: the VSI being configured
4739 **/
4740int i40e_up(struct i40e_vsi *vsi)
4741{
4742 int err;
4743
4744 err = i40e_vsi_configure(vsi);
4745 if (!err)
4746 err = i40e_up_complete(vsi);
4747
4748 return err;
4749}
4750
4751/**
4752 * i40e_down - Shutdown the connection processing
4753 * @vsi: the VSI being stopped
4754 **/
4755void i40e_down(struct i40e_vsi *vsi)
4756{
4757 int i;
4758
4759 /* It is assumed that the caller of this function
4760 * sets the vsi->state __I40E_DOWN bit.
4761 */
4762 if (vsi->netdev) {
4763 netif_carrier_off(vsi->netdev);
4764 netif_tx_disable(vsi->netdev);
4765 }
4766 i40e_vsi_disable_irq(vsi);
4767 i40e_vsi_control_rings(vsi, false);
4768 i40e_napi_disable_all(vsi);
4769
4770 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00004771 i40e_clean_tx_ring(vsi->tx_rings[i]);
4772 i40e_clean_rx_ring(vsi->rx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004773 }
4774}
4775
4776/**
4777 * i40e_setup_tc - configure multiple traffic classes
4778 * @netdev: net device to configure
4779 * @tc: number of traffic classes to enable
4780 **/
Vasu Dev38e00432014-08-01 13:27:03 -07004781#ifdef I40E_FCOE
4782int i40e_setup_tc(struct net_device *netdev, u8 tc)
4783#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004784static int i40e_setup_tc(struct net_device *netdev, u8 tc)
Vasu Dev38e00432014-08-01 13:27:03 -07004785#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004786{
4787 struct i40e_netdev_priv *np = netdev_priv(netdev);
4788 struct i40e_vsi *vsi = np->vsi;
4789 struct i40e_pf *pf = vsi->back;
4790 u8 enabled_tc = 0;
4791 int ret = -EINVAL;
4792 int i;
4793
4794 /* Check if DCB enabled to continue */
4795 if (!(pf->flags & I40E_FLAG_DCB_ENABLED)) {
4796 netdev_info(netdev, "DCB is not enabled for adapter\n");
4797 goto exit;
4798 }
4799
4800 /* Check if MFP enabled */
4801 if (pf->flags & I40E_FLAG_MFP_ENABLED) {
4802 netdev_info(netdev, "Configuring TC not supported in MFP mode\n");
4803 goto exit;
4804 }
4805
4806 /* Check whether tc count is within enabled limit */
4807 if (tc > i40e_pf_get_num_tc(pf)) {
4808 netdev_info(netdev, "TC count greater than enabled on link for adapter\n");
4809 goto exit;
4810 }
4811
4812 /* Generate TC map for number of tc requested */
4813 for (i = 0; i < tc; i++)
4814 enabled_tc |= (1 << i);
4815
4816 /* Requesting same TC configuration as already enabled */
4817 if (enabled_tc == vsi->tc_config.enabled_tc)
4818 return 0;
4819
4820 /* Quiesce VSI queues */
4821 i40e_quiesce_vsi(vsi);
4822
4823 /* Configure VSI for enabled TCs */
4824 ret = i40e_vsi_config_tc(vsi, enabled_tc);
4825 if (ret) {
4826 netdev_info(netdev, "Failed configuring TC for VSI seid=%d\n",
4827 vsi->seid);
4828 goto exit;
4829 }
4830
4831 /* Unquiesce VSI */
4832 i40e_unquiesce_vsi(vsi);
4833
4834exit:
4835 return ret;
4836}
4837
4838/**
4839 * i40e_open - Called when a network interface is made active
4840 * @netdev: network interface device structure
4841 *
4842 * The open entry point is called when a network interface is made
4843 * active by the system (IFF_UP). At this point all resources needed
4844 * for transmit and receive operations are allocated, the interrupt
4845 * handler is registered with the OS, the netdev watchdog subtask is
4846 * enabled, and the stack is notified that the interface is ready.
4847 *
4848 * Returns 0 on success, negative value on failure
4849 **/
Vasu Dev38e00432014-08-01 13:27:03 -07004850#ifdef I40E_FCOE
4851int i40e_open(struct net_device *netdev)
4852#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004853static int i40e_open(struct net_device *netdev)
Vasu Dev38e00432014-08-01 13:27:03 -07004854#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004855{
4856 struct i40e_netdev_priv *np = netdev_priv(netdev);
4857 struct i40e_vsi *vsi = np->vsi;
4858 struct i40e_pf *pf = vsi->back;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004859 int err;
4860
Shannon Nelson4eb3f762014-03-06 08:59:58 +00004861 /* disallow open during test or if eeprom is broken */
4862 if (test_bit(__I40E_TESTING, &pf->state) ||
4863 test_bit(__I40E_BAD_EEPROM, &pf->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004864 return -EBUSY;
4865
4866 netif_carrier_off(netdev);
4867
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00004868 err = i40e_vsi_open(vsi);
4869 if (err)
4870 return err;
4871
Jesse Brandeburg059dab62014-04-01 09:07:20 +00004872 /* configure global TSO hardware offload settings */
4873 wr32(&pf->hw, I40E_GLLAN_TSOMSK_F, be32_to_cpu(TCP_FLAG_PSH |
4874 TCP_FLAG_FIN) >> 16);
4875 wr32(&pf->hw, I40E_GLLAN_TSOMSK_M, be32_to_cpu(TCP_FLAG_PSH |
4876 TCP_FLAG_FIN |
4877 TCP_FLAG_CWR) >> 16);
4878 wr32(&pf->hw, I40E_GLLAN_TSOMSK_L, be32_to_cpu(TCP_FLAG_CWR) >> 16);
4879
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00004880#ifdef CONFIG_I40E_VXLAN
4881 vxlan_get_rx_port(netdev);
4882#endif
4883
4884 return 0;
4885}
4886
4887/**
4888 * i40e_vsi_open -
4889 * @vsi: the VSI to open
4890 *
4891 * Finish initialization of the VSI.
4892 *
4893 * Returns 0 on success, negative value on failure
4894 **/
4895int i40e_vsi_open(struct i40e_vsi *vsi)
4896{
4897 struct i40e_pf *pf = vsi->back;
Carolyn Wybornyb294ac72014-12-11 07:06:39 +00004898 char int_name[I40E_INT_NAME_STR_LEN];
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00004899 int err;
4900
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004901 /* allocate descriptors */
4902 err = i40e_vsi_setup_tx_resources(vsi);
4903 if (err)
4904 goto err_setup_tx;
4905 err = i40e_vsi_setup_rx_resources(vsi);
4906 if (err)
4907 goto err_setup_rx;
4908
4909 err = i40e_vsi_configure(vsi);
4910 if (err)
4911 goto err_setup_rx;
4912
Shannon Nelsonc22e3c62014-03-14 07:32:25 +00004913 if (vsi->netdev) {
4914 snprintf(int_name, sizeof(int_name) - 1, "%s-%s",
4915 dev_driver_string(&pf->pdev->dev), vsi->netdev->name);
4916 err = i40e_vsi_request_irq(vsi, int_name);
4917 if (err)
4918 goto err_setup_rx;
4919
4920 /* Notify the stack of the actual queue counts. */
4921 err = netif_set_real_num_tx_queues(vsi->netdev,
4922 vsi->num_queue_pairs);
4923 if (err)
4924 goto err_set_queues;
4925
4926 err = netif_set_real_num_rx_queues(vsi->netdev,
4927 vsi->num_queue_pairs);
4928 if (err)
4929 goto err_set_queues;
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00004930
4931 } else if (vsi->type == I40E_VSI_FDIR) {
Carolyn Wybornye240f672014-12-11 07:06:37 +00004932 snprintf(int_name, sizeof(int_name) - 1, "%s-%s:fdir",
Carolyn Wybornyb2008cb2014-11-11 20:05:26 +00004933 dev_driver_string(&pf->pdev->dev),
4934 dev_name(&pf->pdev->dev));
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00004935 err = i40e_vsi_request_irq(vsi, int_name);
Carolyn Wybornyb2008cb2014-11-11 20:05:26 +00004936
Shannon Nelsonc22e3c62014-03-14 07:32:25 +00004937 } else {
Jean Sacrence9ccb12014-05-01 14:31:18 +00004938 err = -EINVAL;
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00004939 goto err_setup_rx;
4940 }
Anjali Singhai Jain25946dd2013-11-26 10:49:14 +00004941
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004942 err = i40e_up_complete(vsi);
4943 if (err)
4944 goto err_up_complete;
4945
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004946 return 0;
4947
4948err_up_complete:
4949 i40e_down(vsi);
Anjali Singhai Jain25946dd2013-11-26 10:49:14 +00004950err_set_queues:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004951 i40e_vsi_free_irq(vsi);
4952err_setup_rx:
4953 i40e_vsi_free_rx_resources(vsi);
4954err_setup_tx:
4955 i40e_vsi_free_tx_resources(vsi);
4956 if (vsi == pf->vsi[pf->lan_vsi])
4957 i40e_do_reset(pf, (1 << __I40E_PF_RESET_REQUESTED));
4958
4959 return err;
4960}
4961
4962/**
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00004963 * i40e_fdir_filter_exit - Cleans up the Flow Director accounting
4964 * @pf: Pointer to pf
4965 *
4966 * This function destroys the hlist where all the Flow Director
4967 * filters were saved.
4968 **/
4969static void i40e_fdir_filter_exit(struct i40e_pf *pf)
4970{
4971 struct i40e_fdir_filter *filter;
4972 struct hlist_node *node2;
4973
4974 hlist_for_each_entry_safe(filter, node2,
4975 &pf->fdir_filter_list, fdir_node) {
4976 hlist_del(&filter->fdir_node);
4977 kfree(filter);
4978 }
4979 pf->fdir_pf_active_filters = 0;
4980}
4981
4982/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004983 * i40e_close - Disables a network interface
4984 * @netdev: network interface device structure
4985 *
4986 * The close entry point is called when an interface is de-activated
4987 * by the OS. The hardware is still under the driver's control, but
4988 * this netdev interface is disabled.
4989 *
4990 * Returns 0, this is not allowed to fail
4991 **/
Vasu Dev38e00432014-08-01 13:27:03 -07004992#ifdef I40E_FCOE
4993int i40e_close(struct net_device *netdev)
4994#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004995static int i40e_close(struct net_device *netdev)
Vasu Dev38e00432014-08-01 13:27:03 -07004996#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004997{
4998 struct i40e_netdev_priv *np = netdev_priv(netdev);
4999 struct i40e_vsi *vsi = np->vsi;
5000
Shannon Nelson90ef8d42014-03-14 07:32:26 +00005001 i40e_vsi_close(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005002
5003 return 0;
5004}
5005
5006/**
5007 * i40e_do_reset - Start a PF or Core Reset sequence
5008 * @pf: board private structure
5009 * @reset_flags: which reset is requested
5010 *
5011 * The essential difference in resets is that the PF Reset
5012 * doesn't clear the packet buffers, doesn't reset the PE
5013 * firmware, and doesn't bother the other PFs on the chip.
5014 **/
5015void i40e_do_reset(struct i40e_pf *pf, u32 reset_flags)
5016{
5017 u32 val;
5018
5019 WARN_ON(in_interrupt());
5020
Mitch Williams263fc482014-04-23 04:50:11 +00005021 if (i40e_check_asq_alive(&pf->hw))
5022 i40e_vc_notify_reset(pf);
5023
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005024 /* do the biggest reset indicated */
5025 if (reset_flags & (1 << __I40E_GLOBAL_RESET_REQUESTED)) {
5026
5027 /* Request a Global Reset
5028 *
5029 * This will start the chip's countdown to the actual full
5030 * chip reset event, and a warning interrupt to be sent
5031 * to all PFs, including the requestor. Our handler
5032 * for the warning interrupt will deal with the shutdown
5033 * and recovery of the switch setup.
5034 */
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005035 dev_dbg(&pf->pdev->dev, "GlobalR requested\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005036 val = rd32(&pf->hw, I40E_GLGEN_RTRIG);
5037 val |= I40E_GLGEN_RTRIG_GLOBR_MASK;
5038 wr32(&pf->hw, I40E_GLGEN_RTRIG, val);
5039
5040 } else if (reset_flags & (1 << __I40E_CORE_RESET_REQUESTED)) {
5041
5042 /* Request a Core Reset
5043 *
5044 * Same as Global Reset, except does *not* include the MAC/PHY
5045 */
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005046 dev_dbg(&pf->pdev->dev, "CoreR requested\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005047 val = rd32(&pf->hw, I40E_GLGEN_RTRIG);
5048 val |= I40E_GLGEN_RTRIG_CORER_MASK;
5049 wr32(&pf->hw, I40E_GLGEN_RTRIG, val);
5050 i40e_flush(&pf->hw);
5051
Shannon Nelson7823fe32013-11-16 10:00:45 +00005052 } else if (reset_flags & (1 << __I40E_EMP_RESET_REQUESTED)) {
5053
5054 /* Request a Firmware Reset
5055 *
5056 * Same as Global reset, plus restarting the
5057 * embedded firmware engine.
5058 */
5059 /* enable EMP Reset */
5060 val = rd32(&pf->hw, I40E_GLGEN_RSTENA_EMP);
5061 val |= I40E_GLGEN_RSTENA_EMP_EMP_RST_ENA_MASK;
5062 wr32(&pf->hw, I40E_GLGEN_RSTENA_EMP, val);
5063
5064 /* force the reset */
5065 val = rd32(&pf->hw, I40E_GLGEN_RTRIG);
5066 val |= I40E_GLGEN_RTRIG_EMPFWR_MASK;
5067 wr32(&pf->hw, I40E_GLGEN_RTRIG, val);
5068 i40e_flush(&pf->hw);
5069
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005070 } else if (reset_flags & (1 << __I40E_PF_RESET_REQUESTED)) {
5071
5072 /* Request a PF Reset
5073 *
5074 * Resets only the PF-specific registers
5075 *
5076 * This goes directly to the tear-down and rebuild of
5077 * the switch, since we need to do all the recovery as
5078 * for the Core Reset.
5079 */
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005080 dev_dbg(&pf->pdev->dev, "PFR requested\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005081 i40e_handle_reset_warning(pf);
5082
5083 } else if (reset_flags & (1 << __I40E_REINIT_REQUESTED)) {
5084 int v;
5085
5086 /* Find the VSI(s) that requested a re-init */
5087 dev_info(&pf->pdev->dev,
5088 "VSI reinit requested\n");
Mitch Williams505682c2014-05-20 08:01:37 +00005089 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005090 struct i40e_vsi *vsi = pf->vsi[v];
5091 if (vsi != NULL &&
5092 test_bit(__I40E_REINIT_REQUESTED, &vsi->state)) {
5093 i40e_vsi_reinit_locked(pf->vsi[v]);
5094 clear_bit(__I40E_REINIT_REQUESTED, &vsi->state);
5095 }
5096 }
5097
5098 /* no further action needed, so return now */
5099 return;
Neerav Parikhb5d06f02014-06-03 23:50:17 +00005100 } else if (reset_flags & (1 << __I40E_DOWN_REQUESTED)) {
5101 int v;
5102
5103 /* Find the VSI(s) that needs to be brought down */
5104 dev_info(&pf->pdev->dev, "VSI down requested\n");
5105 for (v = 0; v < pf->num_alloc_vsi; v++) {
5106 struct i40e_vsi *vsi = pf->vsi[v];
5107 if (vsi != NULL &&
5108 test_bit(__I40E_DOWN_REQUESTED, &vsi->state)) {
5109 set_bit(__I40E_DOWN, &vsi->state);
5110 i40e_down(vsi);
5111 clear_bit(__I40E_DOWN_REQUESTED, &vsi->state);
5112 }
5113 }
5114
5115 /* no further action needed, so return now */
5116 return;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005117 } else {
5118 dev_info(&pf->pdev->dev,
5119 "bad reset request 0x%08x\n", reset_flags);
5120 return;
5121 }
5122}
5123
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005124#ifdef CONFIG_I40E_DCB
5125/**
5126 * i40e_dcb_need_reconfig - Check if DCB needs reconfig
5127 * @pf: board private structure
5128 * @old_cfg: current DCB config
5129 * @new_cfg: new DCB config
5130 **/
5131bool i40e_dcb_need_reconfig(struct i40e_pf *pf,
5132 struct i40e_dcbx_config *old_cfg,
5133 struct i40e_dcbx_config *new_cfg)
5134{
5135 bool need_reconfig = false;
5136
5137 /* Check if ETS configuration has changed */
5138 if (memcmp(&new_cfg->etscfg,
5139 &old_cfg->etscfg,
5140 sizeof(new_cfg->etscfg))) {
5141 /* If Priority Table has changed reconfig is needed */
5142 if (memcmp(&new_cfg->etscfg.prioritytable,
5143 &old_cfg->etscfg.prioritytable,
5144 sizeof(new_cfg->etscfg.prioritytable))) {
5145 need_reconfig = true;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005146 dev_dbg(&pf->pdev->dev, "ETS UP2TC changed.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005147 }
5148
5149 if (memcmp(&new_cfg->etscfg.tcbwtable,
5150 &old_cfg->etscfg.tcbwtable,
5151 sizeof(new_cfg->etscfg.tcbwtable)))
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005152 dev_dbg(&pf->pdev->dev, "ETS TC BW Table changed.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005153
5154 if (memcmp(&new_cfg->etscfg.tsatable,
5155 &old_cfg->etscfg.tsatable,
5156 sizeof(new_cfg->etscfg.tsatable)))
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005157 dev_dbg(&pf->pdev->dev, "ETS TSA Table changed.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005158 }
5159
5160 /* Check if PFC configuration has changed */
5161 if (memcmp(&new_cfg->pfc,
5162 &old_cfg->pfc,
5163 sizeof(new_cfg->pfc))) {
5164 need_reconfig = true;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005165 dev_dbg(&pf->pdev->dev, "PFC config change detected.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005166 }
5167
5168 /* Check if APP Table has changed */
5169 if (memcmp(&new_cfg->app,
5170 &old_cfg->app,
Dave Jones3d9667a2014-01-27 23:11:09 -05005171 sizeof(new_cfg->app))) {
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005172 need_reconfig = true;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005173 dev_dbg(&pf->pdev->dev, "APP Table change detected.\n");
Dave Jones3d9667a2014-01-27 23:11:09 -05005174 }
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005175
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005176 dev_dbg(&pf->pdev->dev, "%s: need_reconfig=%d\n", __func__,
5177 need_reconfig);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005178 return need_reconfig;
5179}
5180
5181/**
5182 * i40e_handle_lldp_event - Handle LLDP Change MIB event
5183 * @pf: board private structure
5184 * @e: event info posted on ARQ
5185 **/
5186static int i40e_handle_lldp_event(struct i40e_pf *pf,
5187 struct i40e_arq_event_info *e)
5188{
5189 struct i40e_aqc_lldp_get_mib *mib =
5190 (struct i40e_aqc_lldp_get_mib *)&e->desc.params.raw;
5191 struct i40e_hw *hw = &pf->hw;
5192 struct i40e_dcbx_config *dcbx_cfg = &hw->local_dcbx_config;
5193 struct i40e_dcbx_config tmp_dcbx_cfg;
5194 bool need_reconfig = false;
5195 int ret = 0;
5196 u8 type;
5197
Neerav Parikh4d9b6042014-05-22 06:31:51 +00005198 /* Not DCB capable or capability disabled */
5199 if (!(pf->flags & I40E_FLAG_DCB_CAPABLE))
5200 return ret;
5201
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005202 /* Ignore if event is not for Nearest Bridge */
5203 type = ((mib->type >> I40E_AQ_LLDP_BRIDGE_TYPE_SHIFT)
5204 & I40E_AQ_LLDP_BRIDGE_TYPE_MASK);
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005205 dev_dbg(&pf->pdev->dev,
5206 "%s: LLDP event mib bridge type 0x%x\n", __func__, type);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005207 if (type != I40E_AQ_LLDP_BRIDGE_TYPE_NEAREST_BRIDGE)
5208 return ret;
5209
5210 /* Check MIB Type and return if event for Remote MIB update */
5211 type = mib->type & I40E_AQ_LLDP_MIB_TYPE_MASK;
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005212 dev_dbg(&pf->pdev->dev,
5213 "%s: LLDP event mib type %s\n", __func__,
5214 type ? "remote" : "local");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005215 if (type == I40E_AQ_LLDP_MIB_REMOTE) {
5216 /* Update the remote cached instance and return */
5217 ret = i40e_aq_get_dcb_config(hw, I40E_AQ_LLDP_MIB_REMOTE,
5218 I40E_AQ_LLDP_BRIDGE_TYPE_NEAREST_BRIDGE,
5219 &hw->remote_dcbx_config);
5220 goto exit;
5221 }
5222
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005223 memset(&tmp_dcbx_cfg, 0, sizeof(tmp_dcbx_cfg));
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005224 /* Store the old configuration */
5225 tmp_dcbx_cfg = *dcbx_cfg;
5226
5227 /* Get updated DCBX data from firmware */
5228 ret = i40e_get_dcb_config(&pf->hw);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005229 if (ret) {
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005230 dev_info(&pf->pdev->dev, "Failed querying DCB configuration data from firmware.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005231 goto exit;
5232 }
5233
5234 /* No change detected in DCBX configs */
5235 if (!memcmp(&tmp_dcbx_cfg, dcbx_cfg, sizeof(tmp_dcbx_cfg))) {
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005236 dev_dbg(&pf->pdev->dev, "No change detected in DCBX configuration.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005237 goto exit;
5238 }
5239
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005240 need_reconfig = i40e_dcb_need_reconfig(pf, &tmp_dcbx_cfg, dcbx_cfg);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005241
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005242 i40e_dcbnl_flush_apps(pf, dcbx_cfg);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005243
5244 if (!need_reconfig)
5245 goto exit;
5246
Neerav Parikh4d9b6042014-05-22 06:31:51 +00005247 /* Enable DCB tagging only when more than one TC */
5248 if (i40e_dcb_get_num_tc(dcbx_cfg) > 1)
5249 pf->flags |= I40E_FLAG_DCB_ENABLED;
5250 else
5251 pf->flags &= ~I40E_FLAG_DCB_ENABLED;
5252
Neerav Parikh69129dc2014-11-12 00:18:46 +00005253 set_bit(__I40E_PORT_TX_SUSPENDED, &pf->state);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005254 /* Reconfiguration needed quiesce all VSIs */
5255 i40e_pf_quiesce_all_vsi(pf);
5256
5257 /* Changes in configuration update VEB/VSI */
5258 i40e_dcb_reconfigure(pf);
5259
Neerav Parikh2fd75f32014-11-12 00:18:20 +00005260 ret = i40e_resume_port_tx(pf);
5261
Neerav Parikh69129dc2014-11-12 00:18:46 +00005262 clear_bit(__I40E_PORT_TX_SUSPENDED, &pf->state);
Neerav Parikh2fd75f32014-11-12 00:18:20 +00005263 /* In case of error no point in resuming VSIs */
Neerav Parikh69129dc2014-11-12 00:18:46 +00005264 if (ret)
5265 goto exit;
5266
5267 /* Wait for the PF's Tx queues to be disabled */
5268 ret = i40e_pf_wait_txq_disabled(pf);
Parikh, Neerav11e47702015-02-21 06:43:55 +00005269 if (ret) {
5270 /* Schedule PF reset to recover */
5271 set_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
5272 i40e_service_event_schedule(pf);
5273 } else {
Neerav Parikh2fd75f32014-11-12 00:18:20 +00005274 i40e_pf_unquiesce_all_vsi(pf);
Parikh, Neerav11e47702015-02-21 06:43:55 +00005275 }
5276
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005277exit:
5278 return ret;
5279}
5280#endif /* CONFIG_I40E_DCB */
5281
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005282/**
Anjali Singhai Jain23326182013-11-26 10:49:22 +00005283 * i40e_do_reset_safe - Protected reset path for userland calls.
5284 * @pf: board private structure
5285 * @reset_flags: which reset is requested
5286 *
5287 **/
5288void i40e_do_reset_safe(struct i40e_pf *pf, u32 reset_flags)
5289{
5290 rtnl_lock();
5291 i40e_do_reset(pf, reset_flags);
5292 rtnl_unlock();
5293}
5294
5295/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005296 * i40e_handle_lan_overflow_event - Handler for LAN queue overflow event
5297 * @pf: board private structure
5298 * @e: event info posted on ARQ
5299 *
5300 * Handler for LAN Queue Overflow Event generated by the firmware for PF
5301 * and VF queues
5302 **/
5303static void i40e_handle_lan_overflow_event(struct i40e_pf *pf,
5304 struct i40e_arq_event_info *e)
5305{
5306 struct i40e_aqc_lan_overflow *data =
5307 (struct i40e_aqc_lan_overflow *)&e->desc.params.raw;
5308 u32 queue = le32_to_cpu(data->prtdcb_rupto);
5309 u32 qtx_ctl = le32_to_cpu(data->otx_ctl);
5310 struct i40e_hw *hw = &pf->hw;
5311 struct i40e_vf *vf;
5312 u16 vf_id;
5313
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005314 dev_dbg(&pf->pdev->dev, "overflow Rx Queue Number = %d QTX_CTL=0x%08x\n",
5315 queue, qtx_ctl);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005316
5317 /* Queue belongs to VF, find the VF and issue VF reset */
5318 if (((qtx_ctl & I40E_QTX_CTL_PFVF_Q_MASK)
5319 >> I40E_QTX_CTL_PFVF_Q_SHIFT) == I40E_QTX_CTL_VF_QUEUE) {
5320 vf_id = (u16)((qtx_ctl & I40E_QTX_CTL_VFVM_INDX_MASK)
5321 >> I40E_QTX_CTL_VFVM_INDX_SHIFT);
5322 vf_id -= hw->func_caps.vf_base_id;
5323 vf = &pf->vf[vf_id];
5324 i40e_vc_notify_vf_reset(vf);
5325 /* Allow VF to process pending reset notification */
5326 msleep(20);
5327 i40e_reset_vf(vf, false);
5328 }
5329}
5330
5331/**
5332 * i40e_service_event_complete - Finish up the service event
5333 * @pf: board private structure
5334 **/
5335static void i40e_service_event_complete(struct i40e_pf *pf)
5336{
5337 BUG_ON(!test_bit(__I40E_SERVICE_SCHED, &pf->state));
5338
5339 /* flush memory to make sure state is correct before next watchog */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01005340 smp_mb__before_atomic();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005341 clear_bit(__I40E_SERVICE_SCHED, &pf->state);
5342}
5343
5344/**
Anjali Singhai Jain12957382014-06-04 04:22:47 +00005345 * i40e_get_cur_guaranteed_fd_count - Get the consumed guaranteed FD filters
5346 * @pf: board private structure
5347 **/
5348int i40e_get_cur_guaranteed_fd_count(struct i40e_pf *pf)
5349{
5350 int val, fcnt_prog;
5351
5352 val = rd32(&pf->hw, I40E_PFQF_FDSTAT);
5353 fcnt_prog = (val & I40E_PFQF_FDSTAT_GUARANT_CNT_MASK);
5354 return fcnt_prog;
5355}
5356
5357/**
5358 * i40e_get_current_fd_count - Get the count of total FD filters programmed
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005359 * @pf: board private structure
5360 **/
5361int i40e_get_current_fd_count(struct i40e_pf *pf)
5362{
5363 int val, fcnt_prog;
5364 val = rd32(&pf->hw, I40E_PFQF_FDSTAT);
5365 fcnt_prog = (val & I40E_PFQF_FDSTAT_GUARANT_CNT_MASK) +
5366 ((val & I40E_PFQF_FDSTAT_BEST_CNT_MASK) >>
5367 I40E_PFQF_FDSTAT_BEST_CNT_SHIFT);
5368 return fcnt_prog;
5369}
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005370
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005371/**
5372 * i40e_fdir_check_and_reenable - Function to reenabe FD ATR or SB if disabled
5373 * @pf: board private structure
5374 **/
5375void i40e_fdir_check_and_reenable(struct i40e_pf *pf)
5376{
5377 u32 fcnt_prog, fcnt_avail;
5378
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005379 if (test_bit(__I40E_FD_FLUSH_REQUESTED, &pf->state))
5380 return;
5381
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005382 /* Check if, FD SB or ATR was auto disabled and if there is enough room
5383 * to re-enable
5384 */
Anjali Singhai Jain12957382014-06-04 04:22:47 +00005385 fcnt_prog = i40e_get_cur_guaranteed_fd_count(pf);
5386 fcnt_avail = pf->fdir_pf_filter_count;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005387 if ((fcnt_prog < (fcnt_avail - I40E_FDIR_BUFFER_HEAD_ROOM)) ||
5388 (pf->fd_add_err == 0) ||
5389 (i40e_get_current_atr_cnt(pf) < pf->fd_atr_cnt)) {
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005390 if ((pf->flags & I40E_FLAG_FD_SB_ENABLED) &&
5391 (pf->auto_disable_flags & I40E_FLAG_FD_SB_ENABLED)) {
5392 pf->auto_disable_flags &= ~I40E_FLAG_FD_SB_ENABLED;
5393 dev_info(&pf->pdev->dev, "FD Sideband/ntuple is being enabled since we have space in the table now\n");
5394 }
5395 }
5396 /* Wait for some more space to be available to turn on ATR */
5397 if (fcnt_prog < (fcnt_avail - I40E_FDIR_BUFFER_HEAD_ROOM * 2)) {
5398 if ((pf->flags & I40E_FLAG_FD_ATR_ENABLED) &&
5399 (pf->auto_disable_flags & I40E_FLAG_FD_ATR_ENABLED)) {
5400 pf->auto_disable_flags &= ~I40E_FLAG_FD_ATR_ENABLED;
5401 dev_info(&pf->pdev->dev, "ATR is being enabled since we have space in the table now\n");
5402 }
5403 }
5404}
5405
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005406#define I40E_MIN_FD_FLUSH_INTERVAL 10
5407/**
5408 * i40e_fdir_flush_and_replay - Function to flush all FD filters and replay SB
5409 * @pf: board private structure
5410 **/
5411static void i40e_fdir_flush_and_replay(struct i40e_pf *pf)
5412{
5413 int flush_wait_retry = 50;
5414 int reg;
5415
Akeem G Abodunrin1790ed02014-10-17 03:14:41 +00005416 if (!(pf->flags & (I40E_FLAG_FD_SB_ENABLED | I40E_FLAG_FD_ATR_ENABLED)))
5417 return;
5418
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005419 if (time_after(jiffies, pf->fd_flush_timestamp +
5420 (I40E_MIN_FD_FLUSH_INTERVAL * HZ))) {
5421 set_bit(__I40E_FD_FLUSH_REQUESTED, &pf->state);
5422 pf->fd_flush_timestamp = jiffies;
5423 pf->auto_disable_flags |= I40E_FLAG_FD_SB_ENABLED;
5424 pf->flags &= ~I40E_FLAG_FD_ATR_ENABLED;
5425 /* flush all filters */
5426 wr32(&pf->hw, I40E_PFQF_CTL_1,
5427 I40E_PFQF_CTL_1_CLEARFDTABLE_MASK);
5428 i40e_flush(&pf->hw);
Anjali Singhai Jain60793f42014-07-09 07:46:23 +00005429 pf->fd_flush_cnt++;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005430 pf->fd_add_err = 0;
5431 do {
5432 /* Check FD flush status every 5-6msec */
5433 usleep_range(5000, 6000);
5434 reg = rd32(&pf->hw, I40E_PFQF_CTL_1);
5435 if (!(reg & I40E_PFQF_CTL_1_CLEARFDTABLE_MASK))
5436 break;
5437 } while (flush_wait_retry--);
5438 if (reg & I40E_PFQF_CTL_1_CLEARFDTABLE_MASK) {
5439 dev_warn(&pf->pdev->dev, "FD table did not flush, needs more time\n");
5440 } else {
5441 /* replay sideband filters */
5442 i40e_fdir_filter_restore(pf->vsi[pf->lan_vsi]);
5443
5444 pf->flags |= I40E_FLAG_FD_ATR_ENABLED;
5445 pf->auto_disable_flags &= ~I40E_FLAG_FD_ATR_ENABLED;
5446 pf->auto_disable_flags &= ~I40E_FLAG_FD_SB_ENABLED;
5447 clear_bit(__I40E_FD_FLUSH_REQUESTED, &pf->state);
5448 dev_info(&pf->pdev->dev, "FD Filter table flushed and FD-SB replayed.\n");
5449 }
5450 }
5451}
5452
5453/**
5454 * i40e_get_current_atr_count - Get the count of total FD ATR filters programmed
5455 * @pf: board private structure
5456 **/
5457int i40e_get_current_atr_cnt(struct i40e_pf *pf)
5458{
5459 return i40e_get_current_fd_count(pf) - pf->fdir_pf_active_filters;
5460}
5461
5462/* We can see up to 256 filter programming desc in transit if the filters are
5463 * being applied really fast; before we see the first
5464 * filter miss error on Rx queue 0. Accumulating enough error messages before
5465 * reacting will make sure we don't cause flush too often.
5466 */
5467#define I40E_MAX_FD_PROGRAM_ERROR 256
5468
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005469/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005470 * i40e_fdir_reinit_subtask - Worker thread to reinit FDIR filter table
5471 * @pf: board private structure
5472 **/
5473static void i40e_fdir_reinit_subtask(struct i40e_pf *pf)
5474{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005475
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005476 /* if interface is down do nothing */
5477 if (test_bit(__I40E_DOWN, &pf->state))
5478 return;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005479
Akeem G Abodunrin1790ed02014-10-17 03:14:41 +00005480 if (!(pf->flags & (I40E_FLAG_FD_SB_ENABLED | I40E_FLAG_FD_ATR_ENABLED)))
5481 return;
5482
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005483 if ((pf->fd_add_err >= I40E_MAX_FD_PROGRAM_ERROR) &&
5484 (i40e_get_current_atr_cnt(pf) >= pf->fd_atr_cnt) &&
5485 (i40e_get_current_atr_cnt(pf) > pf->fdir_pf_filter_count))
5486 i40e_fdir_flush_and_replay(pf);
5487
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005488 i40e_fdir_check_and_reenable(pf);
5489
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005490}
5491
5492/**
5493 * i40e_vsi_link_event - notify VSI of a link event
5494 * @vsi: vsi to be notified
5495 * @link_up: link up or down
5496 **/
5497static void i40e_vsi_link_event(struct i40e_vsi *vsi, bool link_up)
5498{
Jesse Brandeburg32b5b812014-08-12 06:33:14 +00005499 if (!vsi || test_bit(__I40E_DOWN, &vsi->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005500 return;
5501
5502 switch (vsi->type) {
5503 case I40E_VSI_MAIN:
Vasu Dev38e00432014-08-01 13:27:03 -07005504#ifdef I40E_FCOE
5505 case I40E_VSI_FCOE:
5506#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005507 if (!vsi->netdev || !vsi->netdev_registered)
5508 break;
5509
5510 if (link_up) {
5511 netif_carrier_on(vsi->netdev);
5512 netif_tx_wake_all_queues(vsi->netdev);
5513 } else {
5514 netif_carrier_off(vsi->netdev);
5515 netif_tx_stop_all_queues(vsi->netdev);
5516 }
5517 break;
5518
5519 case I40E_VSI_SRIOV:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005520 case I40E_VSI_VMDQ2:
5521 case I40E_VSI_CTRL:
5522 case I40E_VSI_MIRROR:
5523 default:
5524 /* there is no notification for other VSIs */
5525 break;
5526 }
5527}
5528
5529/**
5530 * i40e_veb_link_event - notify elements on the veb of a link event
5531 * @veb: veb to be notified
5532 * @link_up: link up or down
5533 **/
5534static void i40e_veb_link_event(struct i40e_veb *veb, bool link_up)
5535{
5536 struct i40e_pf *pf;
5537 int i;
5538
5539 if (!veb || !veb->pf)
5540 return;
5541 pf = veb->pf;
5542
5543 /* depth first... */
5544 for (i = 0; i < I40E_MAX_VEB; i++)
5545 if (pf->veb[i] && (pf->veb[i]->uplink_seid == veb->seid))
5546 i40e_veb_link_event(pf->veb[i], link_up);
5547
5548 /* ... now the local VSIs */
Mitch Williams505682c2014-05-20 08:01:37 +00005549 for (i = 0; i < pf->num_alloc_vsi; i++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005550 if (pf->vsi[i] && (pf->vsi[i]->uplink_seid == veb->seid))
5551 i40e_vsi_link_event(pf->vsi[i], link_up);
5552}
5553
5554/**
5555 * i40e_link_event - Update netif_carrier status
5556 * @pf: board private structure
5557 **/
5558static void i40e_link_event(struct i40e_pf *pf)
5559{
5560 bool new_link, old_link;
Mitch Williams320684c2014-10-17 03:14:43 +00005561 struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi];
Catherine Sullivanfef59dd2014-12-11 07:06:33 +00005562 u8 new_link_speed, old_link_speed;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005563
Jesse Brandeburg1e701e02014-09-13 07:40:42 +00005564 /* set this to force the get_link_status call to refresh state */
5565 pf->hw.phy.get_link_info = true;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005566
Jesse Brandeburg1e701e02014-09-13 07:40:42 +00005567 old_link = (pf->hw.phy.link_info_old.link_info & I40E_AQ_LINK_UP);
5568 new_link = i40e_get_link_status(&pf->hw);
Catherine Sullivanfef59dd2014-12-11 07:06:33 +00005569 old_link_speed = pf->hw.phy.link_info_old.link_speed;
5570 new_link_speed = pf->hw.phy.link_info.link_speed;
Jesse Brandeburg1e701e02014-09-13 07:40:42 +00005571
5572 if (new_link == old_link &&
Catherine Sullivanfef59dd2014-12-11 07:06:33 +00005573 new_link_speed == old_link_speed &&
Mitch Williams320684c2014-10-17 03:14:43 +00005574 (test_bit(__I40E_DOWN, &vsi->state) ||
5575 new_link == netif_carrier_ok(vsi->netdev)))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005576 return;
Mitch Williams320684c2014-10-17 03:14:43 +00005577
5578 if (!test_bit(__I40E_DOWN, &vsi->state))
5579 i40e_print_link_message(vsi, new_link);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005580
5581 /* Notify the base of the switch tree connected to
5582 * the link. Floating VEBs are not notified.
5583 */
5584 if (pf->lan_veb != I40E_NO_VEB && pf->veb[pf->lan_veb])
5585 i40e_veb_link_event(pf->veb[pf->lan_veb], new_link);
5586 else
Mitch Williams320684c2014-10-17 03:14:43 +00005587 i40e_vsi_link_event(vsi, new_link);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005588
5589 if (pf->vf)
5590 i40e_vc_notify_link_state(pf);
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00005591
5592 if (pf->flags & I40E_FLAG_PTP)
5593 i40e_ptp_set_increment(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005594}
5595
5596/**
5597 * i40e_check_hang_subtask - Check for hung queues and dropped interrupts
5598 * @pf: board private structure
5599 *
5600 * Set the per-queue flags to request a check for stuck queues in the irq
5601 * clean functions, then force interrupts to be sure the irq clean is called.
5602 **/
5603static void i40e_check_hang_subtask(struct i40e_pf *pf)
5604{
5605 int i, v;
5606
5607 /* If we're down or resetting, just bail */
Akeem G Abodunrinb67a0332015-02-21 06:42:15 +00005608 if (test_bit(__I40E_DOWN, &pf->state) ||
5609 test_bit(__I40E_CONFIG_BUSY, &pf->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005610 return;
5611
5612 /* for each VSI/netdev
5613 * for each Tx queue
5614 * set the check flag
5615 * for each q_vector
5616 * force an interrupt
5617 */
Mitch Williams505682c2014-05-20 08:01:37 +00005618 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005619 struct i40e_vsi *vsi = pf->vsi[v];
5620 int armed = 0;
5621
5622 if (!pf->vsi[v] ||
5623 test_bit(__I40E_DOWN, &vsi->state) ||
5624 (vsi->netdev && !netif_carrier_ok(vsi->netdev)))
5625 continue;
5626
5627 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00005628 set_check_for_tx_hang(vsi->tx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005629 if (test_bit(__I40E_HANG_CHECK_ARMED,
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00005630 &vsi->tx_rings[i]->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005631 armed++;
5632 }
5633
5634 if (armed) {
5635 if (!(pf->flags & I40E_FLAG_MSIX_ENABLED)) {
5636 wr32(&vsi->back->hw, I40E_PFINT_DYN_CTL0,
5637 (I40E_PFINT_DYN_CTL0_INTENA_MASK |
Shannon Nelson5d1ff1062014-11-11 20:04:35 +00005638 I40E_PFINT_DYN_CTL0_SWINT_TRIG_MASK |
5639 I40E_PFINT_DYN_CTL0_ITR_INDX_MASK |
5640 I40E_PFINT_DYN_CTL0_SW_ITR_INDX_ENA_MASK |
5641 I40E_PFINT_DYN_CTL0_SW_ITR_INDX_MASK));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005642 } else {
5643 u16 vec = vsi->base_vector - 1;
5644 u32 val = (I40E_PFINT_DYN_CTLN_INTENA_MASK |
Shannon Nelson5d1ff1062014-11-11 20:04:35 +00005645 I40E_PFINT_DYN_CTLN_SWINT_TRIG_MASK |
5646 I40E_PFINT_DYN_CTLN_ITR_INDX_MASK |
5647 I40E_PFINT_DYN_CTLN_SW_ITR_INDX_ENA_MASK |
5648 I40E_PFINT_DYN_CTLN_SW_ITR_INDX_MASK);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005649 for (i = 0; i < vsi->num_q_vectors; i++, vec++)
5650 wr32(&vsi->back->hw,
5651 I40E_PFINT_DYN_CTLN(vec), val);
5652 }
5653 i40e_flush(&vsi->back->hw);
5654 }
5655 }
5656}
5657
5658/**
Shannon Nelson21536712014-10-25 10:35:25 +00005659 * i40e_watchdog_subtask - periodic checks not using event driven response
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005660 * @pf: board private structure
5661 **/
5662static void i40e_watchdog_subtask(struct i40e_pf *pf)
5663{
5664 int i;
5665
5666 /* if interface is down do nothing */
5667 if (test_bit(__I40E_DOWN, &pf->state) ||
5668 test_bit(__I40E_CONFIG_BUSY, &pf->state))
5669 return;
5670
Shannon Nelson21536712014-10-25 10:35:25 +00005671 /* make sure we don't do these things too often */
5672 if (time_before(jiffies, (pf->service_timer_previous +
5673 pf->service_timer_period)))
5674 return;
5675 pf->service_timer_previous = jiffies;
5676
5677 i40e_check_hang_subtask(pf);
5678 i40e_link_event(pf);
5679
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005680 /* Update the stats for active netdevs so the network stack
5681 * can look at updated numbers whenever it cares to
5682 */
Mitch Williams505682c2014-05-20 08:01:37 +00005683 for (i = 0; i < pf->num_alloc_vsi; i++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005684 if (pf->vsi[i] && pf->vsi[i]->netdev)
5685 i40e_update_stats(pf->vsi[i]);
5686
5687 /* Update the stats for the active switching components */
5688 for (i = 0; i < I40E_MAX_VEB; i++)
5689 if (pf->veb[i])
5690 i40e_update_veb_stats(pf->veb[i]);
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00005691
5692 i40e_ptp_rx_hang(pf->vsi[pf->lan_vsi]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005693}
5694
5695/**
5696 * i40e_reset_subtask - Set up for resetting the device and driver
5697 * @pf: board private structure
5698 **/
5699static void i40e_reset_subtask(struct i40e_pf *pf)
5700{
5701 u32 reset_flags = 0;
5702
Anjali Singhai Jain23326182013-11-26 10:49:22 +00005703 rtnl_lock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005704 if (test_bit(__I40E_REINIT_REQUESTED, &pf->state)) {
5705 reset_flags |= (1 << __I40E_REINIT_REQUESTED);
5706 clear_bit(__I40E_REINIT_REQUESTED, &pf->state);
5707 }
5708 if (test_bit(__I40E_PF_RESET_REQUESTED, &pf->state)) {
5709 reset_flags |= (1 << __I40E_PF_RESET_REQUESTED);
5710 clear_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
5711 }
5712 if (test_bit(__I40E_CORE_RESET_REQUESTED, &pf->state)) {
5713 reset_flags |= (1 << __I40E_CORE_RESET_REQUESTED);
5714 clear_bit(__I40E_CORE_RESET_REQUESTED, &pf->state);
5715 }
5716 if (test_bit(__I40E_GLOBAL_RESET_REQUESTED, &pf->state)) {
5717 reset_flags |= (1 << __I40E_GLOBAL_RESET_REQUESTED);
5718 clear_bit(__I40E_GLOBAL_RESET_REQUESTED, &pf->state);
5719 }
Neerav Parikhb5d06f02014-06-03 23:50:17 +00005720 if (test_bit(__I40E_DOWN_REQUESTED, &pf->state)) {
5721 reset_flags |= (1 << __I40E_DOWN_REQUESTED);
5722 clear_bit(__I40E_DOWN_REQUESTED, &pf->state);
5723 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005724
5725 /* If there's a recovery already waiting, it takes
5726 * precedence before starting a new reset sequence.
5727 */
5728 if (test_bit(__I40E_RESET_INTR_RECEIVED, &pf->state)) {
5729 i40e_handle_reset_warning(pf);
Anjali Singhai Jain23326182013-11-26 10:49:22 +00005730 goto unlock;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005731 }
5732
5733 /* If we're already down or resetting, just bail */
5734 if (reset_flags &&
5735 !test_bit(__I40E_DOWN, &pf->state) &&
5736 !test_bit(__I40E_CONFIG_BUSY, &pf->state))
5737 i40e_do_reset(pf, reset_flags);
Anjali Singhai Jain23326182013-11-26 10:49:22 +00005738
5739unlock:
5740 rtnl_unlock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005741}
5742
5743/**
5744 * i40e_handle_link_event - Handle link event
5745 * @pf: board private structure
5746 * @e: event info posted on ARQ
5747 **/
5748static void i40e_handle_link_event(struct i40e_pf *pf,
5749 struct i40e_arq_event_info *e)
5750{
5751 struct i40e_hw *hw = &pf->hw;
5752 struct i40e_aqc_get_link_status *status =
5753 (struct i40e_aqc_get_link_status *)&e->desc.params.raw;
5754 struct i40e_link_status *hw_link_info = &hw->phy.link_info;
5755
5756 /* save off old link status information */
5757 memcpy(&pf->hw.phy.link_info_old, hw_link_info,
5758 sizeof(pf->hw.phy.link_info_old));
5759
Jesse Brandeburg1e701e02014-09-13 07:40:42 +00005760 /* Do a new status request to re-enable LSE reporting
5761 * and load new status information into the hw struct
5762 * This completely ignores any state information
5763 * in the ARQ event info, instead choosing to always
5764 * issue the AQ update link status command.
5765 */
5766 i40e_link_event(pf);
5767
Carolyn Wyborny7b592f62014-07-10 07:58:19 +00005768 /* check for unqualified module, if link is down */
5769 if ((status->link_info & I40E_AQ_MEDIA_AVAILABLE) &&
5770 (!(status->an_info & I40E_AQ_QUALIFIED_MODULE)) &&
5771 (!(status->link_info & I40E_AQ_LINK_UP)))
5772 dev_err(&pf->pdev->dev,
5773 "The driver failed to link because an unqualified module was detected.\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005774}
5775
5776/**
5777 * i40e_clean_adminq_subtask - Clean the AdminQ rings
5778 * @pf: board private structure
5779 **/
5780static void i40e_clean_adminq_subtask(struct i40e_pf *pf)
5781{
5782 struct i40e_arq_event_info event;
5783 struct i40e_hw *hw = &pf->hw;
5784 u16 pending, i = 0;
5785 i40e_status ret;
5786 u16 opcode;
Shannon Nelson86df2422014-05-20 08:01:35 +00005787 u32 oldval;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005788 u32 val;
5789
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00005790 /* Do not run clean AQ when PF reset fails */
5791 if (test_bit(__I40E_RESET_FAILED, &pf->state))
5792 return;
5793
Shannon Nelson86df2422014-05-20 08:01:35 +00005794 /* check for error indications */
5795 val = rd32(&pf->hw, pf->hw.aq.arq.len);
5796 oldval = val;
5797 if (val & I40E_PF_ARQLEN_ARQVFE_MASK) {
5798 dev_info(&pf->pdev->dev, "ARQ VF Error detected\n");
5799 val &= ~I40E_PF_ARQLEN_ARQVFE_MASK;
5800 }
5801 if (val & I40E_PF_ARQLEN_ARQOVFL_MASK) {
5802 dev_info(&pf->pdev->dev, "ARQ Overflow Error detected\n");
5803 val &= ~I40E_PF_ARQLEN_ARQOVFL_MASK;
5804 }
5805 if (val & I40E_PF_ARQLEN_ARQCRIT_MASK) {
5806 dev_info(&pf->pdev->dev, "ARQ Critical Error detected\n");
5807 val &= ~I40E_PF_ARQLEN_ARQCRIT_MASK;
5808 }
5809 if (oldval != val)
5810 wr32(&pf->hw, pf->hw.aq.arq.len, val);
5811
5812 val = rd32(&pf->hw, pf->hw.aq.asq.len);
5813 oldval = val;
5814 if (val & I40E_PF_ATQLEN_ATQVFE_MASK) {
5815 dev_info(&pf->pdev->dev, "ASQ VF Error detected\n");
5816 val &= ~I40E_PF_ATQLEN_ATQVFE_MASK;
5817 }
5818 if (val & I40E_PF_ATQLEN_ATQOVFL_MASK) {
5819 dev_info(&pf->pdev->dev, "ASQ Overflow Error detected\n");
5820 val &= ~I40E_PF_ATQLEN_ATQOVFL_MASK;
5821 }
5822 if (val & I40E_PF_ATQLEN_ATQCRIT_MASK) {
5823 dev_info(&pf->pdev->dev, "ASQ Critical Error detected\n");
5824 val &= ~I40E_PF_ATQLEN_ATQCRIT_MASK;
5825 }
5826 if (oldval != val)
5827 wr32(&pf->hw, pf->hw.aq.asq.len, val);
5828
Mitch Williams1001dc32014-11-11 20:02:19 +00005829 event.buf_len = I40E_MAX_AQ_BUF_SIZE;
5830 event.msg_buf = kzalloc(event.buf_len, GFP_KERNEL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005831 if (!event.msg_buf)
5832 return;
5833
5834 do {
5835 ret = i40e_clean_arq_element(hw, &event, &pending);
Mitch Williams56497972014-06-04 08:45:18 +00005836 if (ret == I40E_ERR_ADMIN_QUEUE_NO_WORK)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005837 break;
Mitch Williams56497972014-06-04 08:45:18 +00005838 else if (ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005839 dev_info(&pf->pdev->dev, "ARQ event error %d\n", ret);
5840 break;
5841 }
5842
5843 opcode = le16_to_cpu(event.desc.opcode);
5844 switch (opcode) {
5845
5846 case i40e_aqc_opc_get_link_status:
5847 i40e_handle_link_event(pf, &event);
5848 break;
5849 case i40e_aqc_opc_send_msg_to_pf:
5850 ret = i40e_vc_process_vf_msg(pf,
5851 le16_to_cpu(event.desc.retval),
5852 le32_to_cpu(event.desc.cookie_high),
5853 le32_to_cpu(event.desc.cookie_low),
5854 event.msg_buf,
Mitch Williams1001dc32014-11-11 20:02:19 +00005855 event.msg_len);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005856 break;
5857 case i40e_aqc_opc_lldp_update_mib:
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005858 dev_dbg(&pf->pdev->dev, "ARQ: Update LLDP MIB event received\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005859#ifdef CONFIG_I40E_DCB
5860 rtnl_lock();
5861 ret = i40e_handle_lldp_event(pf, &event);
5862 rtnl_unlock();
5863#endif /* CONFIG_I40E_DCB */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005864 break;
5865 case i40e_aqc_opc_event_lan_overflow:
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005866 dev_dbg(&pf->pdev->dev, "ARQ LAN queue overflow event received\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005867 i40e_handle_lan_overflow_event(pf, &event);
5868 break;
Shannon Nelson0467bc92013-12-18 13:45:58 +00005869 case i40e_aqc_opc_send_msg_to_peer:
5870 dev_info(&pf->pdev->dev, "ARQ: Msg from other pf\n");
5871 break;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005872 default:
5873 dev_info(&pf->pdev->dev,
Shannon Nelson0467bc92013-12-18 13:45:58 +00005874 "ARQ Error: Unknown event 0x%04x received\n",
5875 opcode);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005876 break;
5877 }
5878 } while (pending && (i++ < pf->adminq_work_limit));
5879
5880 clear_bit(__I40E_ADMINQ_EVENT_PENDING, &pf->state);
5881 /* re-enable Admin queue interrupt cause */
5882 val = rd32(hw, I40E_PFINT_ICR0_ENA);
5883 val |= I40E_PFINT_ICR0_ENA_ADMINQ_MASK;
5884 wr32(hw, I40E_PFINT_ICR0_ENA, val);
5885 i40e_flush(hw);
5886
5887 kfree(event.msg_buf);
5888}
5889
5890/**
Shannon Nelson4eb3f762014-03-06 08:59:58 +00005891 * i40e_verify_eeprom - make sure eeprom is good to use
5892 * @pf: board private structure
5893 **/
5894static void i40e_verify_eeprom(struct i40e_pf *pf)
5895{
5896 int err;
5897
5898 err = i40e_diag_eeprom_test(&pf->hw);
5899 if (err) {
5900 /* retry in case of garbage read */
5901 err = i40e_diag_eeprom_test(&pf->hw);
5902 if (err) {
5903 dev_info(&pf->pdev->dev, "eeprom check failed (%d), Tx/Rx traffic disabled\n",
5904 err);
5905 set_bit(__I40E_BAD_EEPROM, &pf->state);
5906 }
5907 }
5908
5909 if (!err && test_bit(__I40E_BAD_EEPROM, &pf->state)) {
5910 dev_info(&pf->pdev->dev, "eeprom check passed, Tx/Rx traffic enabled\n");
5911 clear_bit(__I40E_BAD_EEPROM, &pf->state);
5912 }
5913}
5914
5915/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005916 * i40e_reconstitute_veb - rebuild the VEB and anything connected to it
5917 * @veb: pointer to the VEB instance
5918 *
5919 * This is a recursive function that first builds the attached VSIs then
5920 * recurses in to build the next layer of VEB. We track the connections
5921 * through our own index numbers because the seid's from the HW could
5922 * change across the reset.
5923 **/
5924static int i40e_reconstitute_veb(struct i40e_veb *veb)
5925{
5926 struct i40e_vsi *ctl_vsi = NULL;
5927 struct i40e_pf *pf = veb->pf;
5928 int v, veb_idx;
5929 int ret;
5930
5931 /* build VSI that owns this VEB, temporarily attached to base VEB */
Mitch Williams505682c2014-05-20 08:01:37 +00005932 for (v = 0; v < pf->num_alloc_vsi && !ctl_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005933 if (pf->vsi[v] &&
5934 pf->vsi[v]->veb_idx == veb->idx &&
5935 pf->vsi[v]->flags & I40E_VSI_FLAG_VEB_OWNER) {
5936 ctl_vsi = pf->vsi[v];
5937 break;
5938 }
5939 }
5940 if (!ctl_vsi) {
5941 dev_info(&pf->pdev->dev,
5942 "missing owner VSI for veb_idx %d\n", veb->idx);
5943 ret = -ENOENT;
5944 goto end_reconstitute;
5945 }
5946 if (ctl_vsi != pf->vsi[pf->lan_vsi])
5947 ctl_vsi->uplink_seid = pf->vsi[pf->lan_vsi]->uplink_seid;
5948 ret = i40e_add_vsi(ctl_vsi);
5949 if (ret) {
5950 dev_info(&pf->pdev->dev,
5951 "rebuild of owner VSI failed: %d\n", ret);
5952 goto end_reconstitute;
5953 }
5954 i40e_vsi_reset_stats(ctl_vsi);
5955
5956 /* create the VEB in the switch and move the VSI onto the VEB */
5957 ret = i40e_add_veb(veb, ctl_vsi);
5958 if (ret)
5959 goto end_reconstitute;
5960
Anjali Singhai Jainb64ba082014-11-13 03:06:15 +00005961 /* Enable LB mode for the main VSI now that it is on a VEB */
5962 i40e_enable_pf_switch_lb(pf);
5963
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005964 /* create the remaining VSIs attached to this VEB */
Mitch Williams505682c2014-05-20 08:01:37 +00005965 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005966 if (!pf->vsi[v] || pf->vsi[v] == ctl_vsi)
5967 continue;
5968
5969 if (pf->vsi[v]->veb_idx == veb->idx) {
5970 struct i40e_vsi *vsi = pf->vsi[v];
5971 vsi->uplink_seid = veb->seid;
5972 ret = i40e_add_vsi(vsi);
5973 if (ret) {
5974 dev_info(&pf->pdev->dev,
5975 "rebuild of vsi_idx %d failed: %d\n",
5976 v, ret);
5977 goto end_reconstitute;
5978 }
5979 i40e_vsi_reset_stats(vsi);
5980 }
5981 }
5982
5983 /* create any VEBs attached to this VEB - RECURSION */
5984 for (veb_idx = 0; veb_idx < I40E_MAX_VEB; veb_idx++) {
5985 if (pf->veb[veb_idx] && pf->veb[veb_idx]->veb_idx == veb->idx) {
5986 pf->veb[veb_idx]->uplink_seid = veb->seid;
5987 ret = i40e_reconstitute_veb(pf->veb[veb_idx]);
5988 if (ret)
5989 break;
5990 }
5991 }
5992
5993end_reconstitute:
5994 return ret;
5995}
5996
5997/**
5998 * i40e_get_capabilities - get info about the HW
5999 * @pf: the PF struct
6000 **/
6001static int i40e_get_capabilities(struct i40e_pf *pf)
6002{
6003 struct i40e_aqc_list_capabilities_element_resp *cap_buf;
6004 u16 data_size;
6005 int buf_len;
6006 int err;
6007
6008 buf_len = 40 * sizeof(struct i40e_aqc_list_capabilities_element_resp);
6009 do {
6010 cap_buf = kzalloc(buf_len, GFP_KERNEL);
6011 if (!cap_buf)
6012 return -ENOMEM;
6013
6014 /* this loads the data into the hw struct for us */
6015 err = i40e_aq_discover_capabilities(&pf->hw, cap_buf, buf_len,
6016 &data_size,
6017 i40e_aqc_opc_list_func_capabilities,
6018 NULL);
6019 /* data loaded, buffer no longer needed */
6020 kfree(cap_buf);
6021
6022 if (pf->hw.aq.asq_last_status == I40E_AQ_RC_ENOMEM) {
6023 /* retry with a larger buffer */
6024 buf_len = data_size;
6025 } else if (pf->hw.aq.asq_last_status != I40E_AQ_RC_OK) {
6026 dev_info(&pf->pdev->dev,
6027 "capability discovery failed: aq=%d\n",
6028 pf->hw.aq.asq_last_status);
6029 return -ENODEV;
6030 }
6031 } while (err);
6032
Anjali Singhai Jainac71b7b2014-02-06 05:51:08 +00006033 if (((pf->hw.aq.fw_maj_ver == 2) && (pf->hw.aq.fw_min_ver < 22)) ||
6034 (pf->hw.aq.fw_maj_ver < 2)) {
6035 pf->hw.func_caps.num_msix_vectors++;
6036 pf->hw.func_caps.num_msix_vectors_vf++;
6037 }
6038
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006039 if (pf->hw.debug_mask & I40E_DEBUG_USER)
6040 dev_info(&pf->pdev->dev,
6041 "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",
6042 pf->hw.pf_id, pf->hw.func_caps.num_vfs,
6043 pf->hw.func_caps.num_msix_vectors,
6044 pf->hw.func_caps.num_msix_vectors_vf,
6045 pf->hw.func_caps.fd_filters_guaranteed,
6046 pf->hw.func_caps.fd_filters_best_effort,
6047 pf->hw.func_caps.num_tx_qp,
6048 pf->hw.func_caps.num_vsis);
6049
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00006050#define DEF_NUM_VSI (1 + (pf->hw.func_caps.fcoe ? 1 : 0) \
6051 + pf->hw.func_caps.num_vfs)
6052 if (pf->hw.revision_id == 0 && (DEF_NUM_VSI > pf->hw.func_caps.num_vsis)) {
6053 dev_info(&pf->pdev->dev,
6054 "got num_vsis %d, setting num_vsis to %d\n",
6055 pf->hw.func_caps.num_vsis, DEF_NUM_VSI);
6056 pf->hw.func_caps.num_vsis = DEF_NUM_VSI;
6057 }
6058
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006059 return 0;
6060}
6061
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006062static int i40e_vsi_clear(struct i40e_vsi *vsi);
6063
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006064/**
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006065 * i40e_fdir_sb_setup - initialize the Flow Director resources for Sideband
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006066 * @pf: board private structure
6067 **/
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006068static void i40e_fdir_sb_setup(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006069{
6070 struct i40e_vsi *vsi;
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00006071 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006072
Jesse Brandeburg407e0632014-06-03 23:50:12 +00006073 /* quick workaround for an NVM issue that leaves a critical register
6074 * uninitialized
6075 */
6076 if (!rd32(&pf->hw, I40E_GLQF_HKEY(0))) {
6077 static const u32 hkey[] = {
6078 0xe640d33f, 0xcdfe98ab, 0x73fa7161, 0x0d7a7d36,
6079 0xeacb7d61, 0xaa4f05b6, 0x9c5c89ed, 0xfc425ddb,
6080 0xa4654832, 0xfc7461d4, 0x8f827619, 0xf5c63c21,
6081 0x95b3a76d};
6082
6083 for (i = 0; i <= I40E_GLQF_HKEY_MAX_INDEX; i++)
6084 wr32(&pf->hw, I40E_GLQF_HKEY(i), hkey[i]);
6085 }
6086
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006087 if (!(pf->flags & I40E_FLAG_FD_SB_ENABLED))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006088 return;
6089
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006090 /* find existing VSI and see if it needs configuring */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006091 vsi = NULL;
Mitch Williams505682c2014-05-20 08:01:37 +00006092 for (i = 0; i < pf->num_alloc_vsi; i++) {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006093 if (pf->vsi[i] && pf->vsi[i]->type == I40E_VSI_FDIR) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006094 vsi = pf->vsi[i];
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006095 break;
6096 }
6097 }
6098
6099 /* create a new VSI if none exists */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006100 if (!vsi) {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006101 vsi = i40e_vsi_setup(pf, I40E_VSI_FDIR,
6102 pf->vsi[pf->lan_vsi]->seid, 0);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006103 if (!vsi) {
6104 dev_info(&pf->pdev->dev, "Couldn't create FDir VSI\n");
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00006105 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
6106 return;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006107 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006108 }
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00006109
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006110 i40e_vsi_setup_irqhandler(vsi, i40e_fdir_clean_ring);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006111}
6112
6113/**
6114 * i40e_fdir_teardown - release the Flow Director resources
6115 * @pf: board private structure
6116 **/
6117static void i40e_fdir_teardown(struct i40e_pf *pf)
6118{
6119 int i;
6120
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00006121 i40e_fdir_filter_exit(pf);
Mitch Williams505682c2014-05-20 08:01:37 +00006122 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006123 if (pf->vsi[i] && pf->vsi[i]->type == I40E_VSI_FDIR) {
6124 i40e_vsi_release(pf->vsi[i]);
6125 break;
6126 }
6127 }
6128}
6129
6130/**
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006131 * i40e_prep_for_reset - prep for the core to reset
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006132 * @pf: board private structure
6133 *
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006134 * Close up the VFs and other things in prep for pf Reset.
6135 **/
Shannon Nelson23cfbe02014-06-04 01:23:14 +00006136static void i40e_prep_for_reset(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006137{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006138 struct i40e_hw *hw = &pf->hw;
Shannon Nelson60442de2014-04-23 04:50:13 +00006139 i40e_status ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006140 u32 v;
6141
6142 clear_bit(__I40E_RESET_INTR_RECEIVED, &pf->state);
6143 if (test_and_set_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state))
Shannon Nelson23cfbe02014-06-04 01:23:14 +00006144 return;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006145
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00006146 dev_dbg(&pf->pdev->dev, "Tearing down internal switch for reset\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006147
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006148 /* quiesce the VSIs and their queues that are not already DOWN */
6149 i40e_pf_quiesce_all_vsi(pf);
6150
Mitch Williams505682c2014-05-20 08:01:37 +00006151 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006152 if (pf->vsi[v])
6153 pf->vsi[v]->seid = 0;
6154 }
6155
6156 i40e_shutdown_adminq(&pf->hw);
6157
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006158 /* call shutdown HMC */
Shannon Nelson60442de2014-04-23 04:50:13 +00006159 if (hw->hmc.hmc_obj) {
6160 ret = i40e_shutdown_lan_hmc(hw);
Shannon Nelson23cfbe02014-06-04 01:23:14 +00006161 if (ret)
Shannon Nelson60442de2014-04-23 04:50:13 +00006162 dev_warn(&pf->pdev->dev,
6163 "shutdown_lan_hmc failed: %d\n", ret);
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006164 }
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006165}
6166
6167/**
Jesse Brandeburg44033fa2014-04-23 04:50:15 +00006168 * i40e_send_version - update firmware with driver version
6169 * @pf: PF struct
6170 */
6171static void i40e_send_version(struct i40e_pf *pf)
6172{
6173 struct i40e_driver_version dv;
6174
6175 dv.major_version = DRV_VERSION_MAJOR;
6176 dv.minor_version = DRV_VERSION_MINOR;
6177 dv.build_version = DRV_VERSION_BUILD;
6178 dv.subbuild_version = 0;
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00006179 strlcpy(dv.driver_string, DRV_VERSION, sizeof(dv.driver_string));
Jesse Brandeburg44033fa2014-04-23 04:50:15 +00006180 i40e_aq_send_driver_version(&pf->hw, &dv, NULL);
6181}
6182
6183/**
Jesse Brandeburg4dda12e2013-12-18 13:46:01 +00006184 * i40e_reset_and_rebuild - reset and rebuild using a saved config
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006185 * @pf: board private structure
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006186 * @reinit: if the Main VSI needs to re-initialized.
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006187 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006188static void i40e_reset_and_rebuild(struct i40e_pf *pf, bool reinit)
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006189{
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006190 struct i40e_hw *hw = &pf->hw;
Anjali Singhai Jaincafa2ee2014-09-13 07:40:45 +00006191 u8 set_fc_aq_fail = 0;
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006192 i40e_status ret;
6193 u32 v;
6194
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006195 /* Now we wait for GRST to settle out.
6196 * We don't have to delete the VEBs or VSIs from the hw switch
6197 * because the reset will make them disappear.
6198 */
6199 ret = i40e_pf_reset(hw);
Akeem G Abodunrinb5565402014-04-09 05:59:04 +00006200 if (ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006201 dev_info(&pf->pdev->dev, "PF reset failed, %d\n", ret);
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00006202 set_bit(__I40E_RESET_FAILED, &pf->state);
6203 goto clear_recovery;
Akeem G Abodunrinb5565402014-04-09 05:59:04 +00006204 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006205 pf->pfr_count++;
6206
6207 if (test_bit(__I40E_DOWN, &pf->state))
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00006208 goto clear_recovery;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00006209 dev_dbg(&pf->pdev->dev, "Rebuilding internal switch\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006210
6211 /* rebuild the basics for the AdminQ, HMC, and initial HW switch */
6212 ret = i40e_init_adminq(&pf->hw);
6213 if (ret) {
6214 dev_info(&pf->pdev->dev, "Rebuild AdminQ failed, %d\n", ret);
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00006215 goto clear_recovery;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006216 }
6217
Shannon Nelson4eb3f762014-03-06 08:59:58 +00006218 /* re-verify the eeprom if we just had an EMP reset */
6219 if (test_bit(__I40E_EMP_RESET_REQUESTED, &pf->state)) {
6220 clear_bit(__I40E_EMP_RESET_REQUESTED, &pf->state);
6221 i40e_verify_eeprom(pf);
6222 }
6223
Shannon Nelsone78ac4bf2014-05-10 04:49:09 +00006224 i40e_clear_pxe_mode(hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006225 ret = i40e_get_capabilities(pf);
6226 if (ret) {
6227 dev_info(&pf->pdev->dev, "i40e_get_capabilities failed, %d\n",
6228 ret);
6229 goto end_core_reset;
6230 }
6231
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006232 ret = i40e_init_lan_hmc(hw, hw->func_caps.num_tx_qp,
6233 hw->func_caps.num_rx_qp,
6234 pf->fcoe_hmc_cntx_num, pf->fcoe_hmc_filt_num);
6235 if (ret) {
6236 dev_info(&pf->pdev->dev, "init_lan_hmc failed: %d\n", ret);
6237 goto end_core_reset;
6238 }
6239 ret = i40e_configure_lan_hmc(hw, I40E_HMC_MODEL_DIRECT_ONLY);
6240 if (ret) {
6241 dev_info(&pf->pdev->dev, "configure_lan_hmc failed: %d\n", ret);
6242 goto end_core_reset;
6243 }
6244
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08006245#ifdef CONFIG_I40E_DCB
6246 ret = i40e_init_pf_dcb(pf);
6247 if (ret) {
Shannon Nelsonaebfc812014-12-11 07:06:38 +00006248 dev_info(&pf->pdev->dev, "DCB init failed %d, disabled\n", ret);
6249 pf->flags &= ~I40E_FLAG_DCB_CAPABLE;
6250 /* Continue without DCB enabled */
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08006251 }
6252#endif /* CONFIG_I40E_DCB */
Vasu Dev38e00432014-08-01 13:27:03 -07006253#ifdef I40E_FCOE
6254 ret = i40e_init_pf_fcoe(pf);
6255 if (ret)
6256 dev_info(&pf->pdev->dev, "init_pf_fcoe failed: %d\n", ret);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08006257
Vasu Dev38e00432014-08-01 13:27:03 -07006258#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006259 /* do basic switch setup */
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006260 ret = i40e_setup_pf_switch(pf, reinit);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006261 if (ret)
6262 goto end_core_reset;
6263
Jesse Brandeburg7e2453f2014-09-13 07:40:41 +00006264 /* driver is only interested in link up/down and module qualification
6265 * reports from firmware
6266 */
6267 ret = i40e_aq_set_phy_int_mask(&pf->hw,
6268 I40E_AQ_EVENT_LINK_UPDOWN |
6269 I40E_AQ_EVENT_MODULE_QUAL_FAIL, NULL);
6270 if (ret)
6271 dev_info(&pf->pdev->dev, "set phy mask fail, aq_err %d\n", ret);
6272
Anjali Singhai Jaincafa2ee2014-09-13 07:40:45 +00006273 /* make sure our flow control settings are restored */
6274 ret = i40e_set_fc(&pf->hw, &set_fc_aq_fail, true);
6275 if (ret)
6276 dev_info(&pf->pdev->dev, "set fc fail, aq_err %d\n", ret);
6277
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006278 /* Rebuild the VSIs and VEBs that existed before reset.
6279 * They are still in our local switch element arrays, so only
6280 * need to rebuild the switch model in the HW.
6281 *
6282 * If there were VEBs but the reconstitution failed, we'll try
6283 * try to recover minimal use by getting the basic PF VSI working.
6284 */
6285 if (pf->vsi[pf->lan_vsi]->uplink_seid != pf->mac_seid) {
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00006286 dev_dbg(&pf->pdev->dev, "attempting to rebuild switch\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006287 /* find the one VEB connected to the MAC, and find orphans */
6288 for (v = 0; v < I40E_MAX_VEB; v++) {
6289 if (!pf->veb[v])
6290 continue;
6291
6292 if (pf->veb[v]->uplink_seid == pf->mac_seid ||
6293 pf->veb[v]->uplink_seid == 0) {
6294 ret = i40e_reconstitute_veb(pf->veb[v]);
6295
6296 if (!ret)
6297 continue;
6298
6299 /* If Main VEB failed, we're in deep doodoo,
6300 * so give up rebuilding the switch and set up
6301 * for minimal rebuild of PF VSI.
6302 * If orphan failed, we'll report the error
6303 * but try to keep going.
6304 */
6305 if (pf->veb[v]->uplink_seid == pf->mac_seid) {
6306 dev_info(&pf->pdev->dev,
6307 "rebuild of switch failed: %d, will try to set up simple PF connection\n",
6308 ret);
6309 pf->vsi[pf->lan_vsi]->uplink_seid
6310 = pf->mac_seid;
6311 break;
6312 } else if (pf->veb[v]->uplink_seid == 0) {
6313 dev_info(&pf->pdev->dev,
6314 "rebuild of orphan VEB failed: %d\n",
6315 ret);
6316 }
6317 }
6318 }
6319 }
6320
6321 if (pf->vsi[pf->lan_vsi]->uplink_seid == pf->mac_seid) {
Shannon Nelsoncde4cbc2014-06-04 01:23:17 +00006322 dev_dbg(&pf->pdev->dev, "attempting to rebuild PF VSI\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006323 /* no VEB, so rebuild only the Main VSI */
6324 ret = i40e_add_vsi(pf->vsi[pf->lan_vsi]);
6325 if (ret) {
6326 dev_info(&pf->pdev->dev,
6327 "rebuild of Main VSI failed: %d\n", ret);
6328 goto end_core_reset;
6329 }
6330 }
6331
Anjali Singhai Jaincafa2ee2014-09-13 07:40:45 +00006332 msleep(75);
6333 ret = i40e_aq_set_link_restart_an(&pf->hw, true, NULL);
6334 if (ret) {
6335 dev_info(&pf->pdev->dev, "link restart failed, aq_err=%d\n",
6336 pf->hw.aq.asq_last_status);
6337 }
6338
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006339 /* reinit the misc interrupt */
6340 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
6341 ret = i40e_setup_misc_vector(pf);
6342
6343 /* restart the VSIs that were rebuilt and running before the reset */
6344 i40e_pf_unquiesce_all_vsi(pf);
6345
Mitch Williams69f64b22014-02-13 03:48:46 -08006346 if (pf->num_alloc_vfs) {
6347 for (v = 0; v < pf->num_alloc_vfs; v++)
6348 i40e_reset_vf(&pf->vf[v], true);
6349 }
6350
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006351 /* tell the firmware that we're starting */
Jesse Brandeburg44033fa2014-04-23 04:50:15 +00006352 i40e_send_version(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006353
6354end_core_reset:
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00006355 clear_bit(__I40E_RESET_FAILED, &pf->state);
6356clear_recovery:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006357 clear_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state);
6358}
6359
6360/**
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006361 * i40e_handle_reset_warning - prep for the pf to reset, reset and rebuild
6362 * @pf: board private structure
6363 *
6364 * Close up the VFs and other things in prep for a Core Reset,
6365 * then get ready to rebuild the world.
6366 **/
6367static void i40e_handle_reset_warning(struct i40e_pf *pf)
6368{
Shannon Nelson23cfbe02014-06-04 01:23:14 +00006369 i40e_prep_for_reset(pf);
6370 i40e_reset_and_rebuild(pf, false);
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006371}
6372
6373/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006374 * i40e_handle_mdd_event
6375 * @pf: pointer to the pf structure
6376 *
6377 * Called from the MDD irq handler to identify possibly malicious vfs
6378 **/
6379static void i40e_handle_mdd_event(struct i40e_pf *pf)
6380{
6381 struct i40e_hw *hw = &pf->hw;
6382 bool mdd_detected = false;
Neerav Parikhdf430b12014-06-04 01:23:15 +00006383 bool pf_mdd_detected = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006384 struct i40e_vf *vf;
6385 u32 reg;
6386 int i;
6387
6388 if (!test_bit(__I40E_MDD_EVENT_PENDING, &pf->state))
6389 return;
6390
6391 /* find what triggered the MDD event */
6392 reg = rd32(hw, I40E_GL_MDET_TX);
6393 if (reg & I40E_GL_MDET_TX_VALID_MASK) {
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00006394 u8 pf_num = (reg & I40E_GL_MDET_TX_PF_NUM_MASK) >>
6395 I40E_GL_MDET_TX_PF_NUM_SHIFT;
Mitch Williams2089ad02014-10-17 03:14:53 +00006396 u16 vf_num = (reg & I40E_GL_MDET_TX_VF_NUM_MASK) >>
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00006397 I40E_GL_MDET_TX_VF_NUM_SHIFT;
Dan Carpenter013f6572014-10-22 20:06:29 -07006398 u8 event = (reg & I40E_GL_MDET_TX_EVENT_MASK) >>
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00006399 I40E_GL_MDET_TX_EVENT_SHIFT;
Mitch Williams2089ad02014-10-17 03:14:53 +00006400 u16 queue = ((reg & I40E_GL_MDET_TX_QUEUE_MASK) >>
6401 I40E_GL_MDET_TX_QUEUE_SHIFT) -
6402 pf->hw.func_caps.base_queue;
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00006403 if (netif_msg_tx_err(pf))
6404 dev_info(&pf->pdev->dev, "Malicious Driver Detection event 0x%02x on TX queue %d pf number 0x%02x vf number 0x%02x\n",
6405 event, queue, pf_num, vf_num);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006406 wr32(hw, I40E_GL_MDET_TX, 0xffffffff);
6407 mdd_detected = true;
6408 }
6409 reg = rd32(hw, I40E_GL_MDET_RX);
6410 if (reg & I40E_GL_MDET_RX_VALID_MASK) {
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00006411 u8 func = (reg & I40E_GL_MDET_RX_FUNCTION_MASK) >>
6412 I40E_GL_MDET_RX_FUNCTION_SHIFT;
Dan Carpenter013f6572014-10-22 20:06:29 -07006413 u8 event = (reg & I40E_GL_MDET_RX_EVENT_MASK) >>
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00006414 I40E_GL_MDET_RX_EVENT_SHIFT;
Mitch Williams2089ad02014-10-17 03:14:53 +00006415 u16 queue = ((reg & I40E_GL_MDET_RX_QUEUE_MASK) >>
6416 I40E_GL_MDET_RX_QUEUE_SHIFT) -
6417 pf->hw.func_caps.base_queue;
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00006418 if (netif_msg_rx_err(pf))
6419 dev_info(&pf->pdev->dev, "Malicious Driver Detection event 0x%02x on RX queue %d of function 0x%02x\n",
6420 event, queue, func);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006421 wr32(hw, I40E_GL_MDET_RX, 0xffffffff);
6422 mdd_detected = true;
6423 }
6424
Neerav Parikhdf430b12014-06-04 01:23:15 +00006425 if (mdd_detected) {
6426 reg = rd32(hw, I40E_PF_MDET_TX);
6427 if (reg & I40E_PF_MDET_TX_VALID_MASK) {
6428 wr32(hw, I40E_PF_MDET_TX, 0xFFFF);
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00006429 dev_info(&pf->pdev->dev, "TX driver issue detected, PF reset issued\n");
Neerav Parikhdf430b12014-06-04 01:23:15 +00006430 pf_mdd_detected = true;
6431 }
6432 reg = rd32(hw, I40E_PF_MDET_RX);
6433 if (reg & I40E_PF_MDET_RX_VALID_MASK) {
6434 wr32(hw, I40E_PF_MDET_RX, 0xFFFF);
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00006435 dev_info(&pf->pdev->dev, "RX driver issue detected, PF reset issued\n");
Neerav Parikhdf430b12014-06-04 01:23:15 +00006436 pf_mdd_detected = true;
6437 }
6438 /* Queue belongs to the PF, initiate a reset */
6439 if (pf_mdd_detected) {
6440 set_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
6441 i40e_service_event_schedule(pf);
6442 }
6443 }
6444
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006445 /* see if one of the VFs needs its hand slapped */
6446 for (i = 0; i < pf->num_alloc_vfs && mdd_detected; i++) {
6447 vf = &(pf->vf[i]);
6448 reg = rd32(hw, I40E_VP_MDET_TX(i));
6449 if (reg & I40E_VP_MDET_TX_VALID_MASK) {
6450 wr32(hw, I40E_VP_MDET_TX(i), 0xFFFF);
6451 vf->num_mdd_events++;
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00006452 dev_info(&pf->pdev->dev, "TX driver issue detected on VF %d\n",
6453 i);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006454 }
6455
6456 reg = rd32(hw, I40E_VP_MDET_RX(i));
6457 if (reg & I40E_VP_MDET_RX_VALID_MASK) {
6458 wr32(hw, I40E_VP_MDET_RX(i), 0xFFFF);
6459 vf->num_mdd_events++;
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00006460 dev_info(&pf->pdev->dev, "RX driver issue detected on VF %d\n",
6461 i);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006462 }
6463
6464 if (vf->num_mdd_events > I40E_DEFAULT_NUM_MDD_EVENTS_ALLOWED) {
6465 dev_info(&pf->pdev->dev,
6466 "Too many MDD events on VF %d, disabled\n", i);
6467 dev_info(&pf->pdev->dev,
6468 "Use PF Control I/F to re-enable the VF\n");
6469 set_bit(I40E_VF_STAT_DISABLED, &vf->vf_states);
6470 }
6471 }
6472
6473 /* re-enable mdd interrupt cause */
6474 clear_bit(__I40E_MDD_EVENT_PENDING, &pf->state);
6475 reg = rd32(hw, I40E_PFINT_ICR0_ENA);
6476 reg |= I40E_PFINT_ICR0_ENA_MAL_DETECT_MASK;
6477 wr32(hw, I40E_PFINT_ICR0_ENA, reg);
6478 i40e_flush(hw);
6479}
6480
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00006481#ifdef CONFIG_I40E_VXLAN
6482/**
6483 * i40e_sync_vxlan_filters_subtask - Sync the VSI filter list with HW
6484 * @pf: board private structure
6485 **/
6486static void i40e_sync_vxlan_filters_subtask(struct i40e_pf *pf)
6487{
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00006488 struct i40e_hw *hw = &pf->hw;
6489 i40e_status ret;
6490 u8 filter_index;
6491 __be16 port;
6492 int i;
6493
6494 if (!(pf->flags & I40E_FLAG_VXLAN_FILTER_SYNC))
6495 return;
6496
6497 pf->flags &= ~I40E_FLAG_VXLAN_FILTER_SYNC;
6498
6499 for (i = 0; i < I40E_MAX_PF_UDP_OFFLOAD_PORTS; i++) {
6500 if (pf->pending_vxlan_bitmap & (1 << i)) {
6501 pf->pending_vxlan_bitmap &= ~(1 << i);
6502 port = pf->vxlan_ports[i];
6503 ret = port ?
6504 i40e_aq_add_udp_tunnel(hw, ntohs(port),
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00006505 I40E_AQC_TUNNEL_TYPE_VXLAN,
6506 &filter_index, NULL)
6507 : i40e_aq_del_udp_tunnel(hw, i, NULL);
6508
6509 if (ret) {
6510 dev_info(&pf->pdev->dev, "Failed to execute AQ command for %s port %d with index %d\n",
6511 port ? "adding" : "deleting",
6512 ntohs(port), port ? i : i);
6513
6514 pf->vxlan_ports[i] = 0;
6515 } else {
6516 dev_info(&pf->pdev->dev, "%s port %d with AQ command with index %d\n",
6517 port ? "Added" : "Deleted",
6518 ntohs(port), port ? i : filter_index);
6519 }
6520 }
6521 }
6522}
6523
6524#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006525/**
6526 * i40e_service_task - Run the driver's async subtasks
6527 * @work: pointer to work_struct containing our data
6528 **/
6529static void i40e_service_task(struct work_struct *work)
6530{
6531 struct i40e_pf *pf = container_of(work,
6532 struct i40e_pf,
6533 service_task);
6534 unsigned long start_time = jiffies;
6535
Shannon Nelsone57a2fe2014-06-03 23:50:19 +00006536 /* don't bother with service tasks if a reset is in progress */
6537 if (test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state)) {
6538 i40e_service_event_complete(pf);
6539 return;
6540 }
6541
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006542 i40e_reset_subtask(pf);
6543 i40e_handle_mdd_event(pf);
6544 i40e_vc_process_vflr_event(pf);
6545 i40e_watchdog_subtask(pf);
6546 i40e_fdir_reinit_subtask(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006547 i40e_sync_filters_subtask(pf);
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00006548#ifdef CONFIG_I40E_VXLAN
6549 i40e_sync_vxlan_filters_subtask(pf);
6550#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006551 i40e_clean_adminq_subtask(pf);
6552
6553 i40e_service_event_complete(pf);
6554
6555 /* If the tasks have taken longer than one timer cycle or there
6556 * is more work to be done, reschedule the service task now
6557 * rather than wait for the timer to tick again.
6558 */
6559 if (time_after(jiffies, (start_time + pf->service_timer_period)) ||
6560 test_bit(__I40E_ADMINQ_EVENT_PENDING, &pf->state) ||
6561 test_bit(__I40E_MDD_EVENT_PENDING, &pf->state) ||
6562 test_bit(__I40E_VFLR_EVENT_PENDING, &pf->state))
6563 i40e_service_event_schedule(pf);
6564}
6565
6566/**
6567 * i40e_service_timer - timer callback
6568 * @data: pointer to PF struct
6569 **/
6570static void i40e_service_timer(unsigned long data)
6571{
6572 struct i40e_pf *pf = (struct i40e_pf *)data;
6573
6574 mod_timer(&pf->service_timer,
6575 round_jiffies(jiffies + pf->service_timer_period));
6576 i40e_service_event_schedule(pf);
6577}
6578
6579/**
6580 * i40e_set_num_rings_in_vsi - Determine number of rings in the VSI
6581 * @vsi: the VSI being configured
6582 **/
6583static int i40e_set_num_rings_in_vsi(struct i40e_vsi *vsi)
6584{
6585 struct i40e_pf *pf = vsi->back;
6586
6587 switch (vsi->type) {
6588 case I40E_VSI_MAIN:
6589 vsi->alloc_queue_pairs = pf->num_lan_qps;
6590 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
6591 I40E_REQ_DESCRIPTOR_MULTIPLE);
6592 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
6593 vsi->num_q_vectors = pf->num_lan_msix;
6594 else
6595 vsi->num_q_vectors = 1;
6596
6597 break;
6598
6599 case I40E_VSI_FDIR:
6600 vsi->alloc_queue_pairs = 1;
6601 vsi->num_desc = ALIGN(I40E_FDIR_RING_COUNT,
6602 I40E_REQ_DESCRIPTOR_MULTIPLE);
6603 vsi->num_q_vectors = 1;
6604 break;
6605
6606 case I40E_VSI_VMDQ2:
6607 vsi->alloc_queue_pairs = pf->num_vmdq_qps;
6608 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
6609 I40E_REQ_DESCRIPTOR_MULTIPLE);
6610 vsi->num_q_vectors = pf->num_vmdq_msix;
6611 break;
6612
6613 case I40E_VSI_SRIOV:
6614 vsi->alloc_queue_pairs = pf->num_vf_qps;
6615 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
6616 I40E_REQ_DESCRIPTOR_MULTIPLE);
6617 break;
6618
Vasu Dev38e00432014-08-01 13:27:03 -07006619#ifdef I40E_FCOE
6620 case I40E_VSI_FCOE:
6621 vsi->alloc_queue_pairs = pf->num_fcoe_qps;
6622 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
6623 I40E_REQ_DESCRIPTOR_MULTIPLE);
6624 vsi->num_q_vectors = pf->num_fcoe_msix;
6625 break;
6626
6627#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006628 default:
6629 WARN_ON(1);
6630 return -ENODATA;
6631 }
6632
6633 return 0;
6634}
6635
6636/**
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006637 * i40e_vsi_alloc_arrays - Allocate queue and vector pointer arrays for the vsi
6638 * @type: VSI pointer
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006639 * @alloc_qvectors: a bool to specify if q_vectors need to be allocated.
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006640 *
6641 * On error: returns error code (negative)
6642 * On success: returns 0
6643 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006644static int i40e_vsi_alloc_arrays(struct i40e_vsi *vsi, bool alloc_qvectors)
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006645{
6646 int size;
6647 int ret = 0;
6648
Shannon Nelsonac6c5e32013-11-20 10:02:57 +00006649 /* allocate memory for both Tx and Rx ring pointers */
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006650 size = sizeof(struct i40e_ring *) * vsi->alloc_queue_pairs * 2;
6651 vsi->tx_rings = kzalloc(size, GFP_KERNEL);
6652 if (!vsi->tx_rings)
6653 return -ENOMEM;
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006654 vsi->rx_rings = &vsi->tx_rings[vsi->alloc_queue_pairs];
6655
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006656 if (alloc_qvectors) {
6657 /* allocate memory for q_vector pointers */
Julia Lawallf57e4fb2014-07-30 03:11:09 +00006658 size = sizeof(struct i40e_q_vector *) * vsi->num_q_vectors;
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006659 vsi->q_vectors = kzalloc(size, GFP_KERNEL);
6660 if (!vsi->q_vectors) {
6661 ret = -ENOMEM;
6662 goto err_vectors;
6663 }
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006664 }
6665 return ret;
6666
6667err_vectors:
6668 kfree(vsi->tx_rings);
6669 return ret;
6670}
6671
6672/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006673 * i40e_vsi_mem_alloc - Allocates the next available struct vsi in the PF
6674 * @pf: board private structure
6675 * @type: type of VSI
6676 *
6677 * On error: returns error code (negative)
6678 * On success: returns vsi index in PF (positive)
6679 **/
6680static int i40e_vsi_mem_alloc(struct i40e_pf *pf, enum i40e_vsi_type type)
6681{
6682 int ret = -ENODEV;
6683 struct i40e_vsi *vsi;
6684 int vsi_idx;
6685 int i;
6686
6687 /* Need to protect the allocation of the VSIs at the PF level */
6688 mutex_lock(&pf->switch_mutex);
6689
6690 /* VSI list may be fragmented if VSI creation/destruction has
6691 * been happening. We can afford to do a quick scan to look
6692 * for any free VSIs in the list.
6693 *
6694 * find next empty vsi slot, looping back around if necessary
6695 */
6696 i = pf->next_vsi;
Mitch Williams505682c2014-05-20 08:01:37 +00006697 while (i < pf->num_alloc_vsi && pf->vsi[i])
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006698 i++;
Mitch Williams505682c2014-05-20 08:01:37 +00006699 if (i >= pf->num_alloc_vsi) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006700 i = 0;
6701 while (i < pf->next_vsi && pf->vsi[i])
6702 i++;
6703 }
6704
Mitch Williams505682c2014-05-20 08:01:37 +00006705 if (i < pf->num_alloc_vsi && !pf->vsi[i]) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006706 vsi_idx = i; /* Found one! */
6707 } else {
6708 ret = -ENODEV;
Alexander Duyck493fb302013-09-28 07:01:44 +00006709 goto unlock_pf; /* out of VSI slots! */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006710 }
6711 pf->next_vsi = ++i;
6712
6713 vsi = kzalloc(sizeof(*vsi), GFP_KERNEL);
6714 if (!vsi) {
6715 ret = -ENOMEM;
Alexander Duyck493fb302013-09-28 07:01:44 +00006716 goto unlock_pf;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006717 }
6718 vsi->type = type;
6719 vsi->back = pf;
6720 set_bit(__I40E_DOWN, &vsi->state);
6721 vsi->flags = 0;
6722 vsi->idx = vsi_idx;
6723 vsi->rx_itr_setting = pf->rx_itr_default;
6724 vsi->tx_itr_setting = pf->tx_itr_default;
6725 vsi->netdev_registered = false;
6726 vsi->work_limit = I40E_DEFAULT_IRQ_WORK;
6727 INIT_LIST_HEAD(&vsi->mac_filter_list);
Shannon Nelson63741842014-04-23 04:50:16 +00006728 vsi->irqs_ready = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006729
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006730 ret = i40e_set_num_rings_in_vsi(vsi);
6731 if (ret)
6732 goto err_rings;
6733
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006734 ret = i40e_vsi_alloc_arrays(vsi, true);
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006735 if (ret)
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006736 goto err_rings;
Alexander Duyck493fb302013-09-28 07:01:44 +00006737
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006738 /* Setup default MSIX irq handler for VSI */
6739 i40e_vsi_setup_irqhandler(vsi, i40e_msix_clean_rings);
6740
6741 pf->vsi[vsi_idx] = vsi;
6742 ret = vsi_idx;
Alexander Duyck493fb302013-09-28 07:01:44 +00006743 goto unlock_pf;
6744
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006745err_rings:
Alexander Duyck493fb302013-09-28 07:01:44 +00006746 pf->next_vsi = i - 1;
6747 kfree(vsi);
6748unlock_pf:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006749 mutex_unlock(&pf->switch_mutex);
6750 return ret;
6751}
6752
6753/**
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006754 * i40e_vsi_free_arrays - Free queue and vector pointer arrays for the VSI
6755 * @type: VSI pointer
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006756 * @free_qvectors: a bool to specify if q_vectors need to be freed.
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006757 *
6758 * On error: returns error code (negative)
6759 * On success: returns 0
6760 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006761static void i40e_vsi_free_arrays(struct i40e_vsi *vsi, bool free_qvectors)
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006762{
6763 /* free the ring and vector containers */
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006764 if (free_qvectors) {
6765 kfree(vsi->q_vectors);
6766 vsi->q_vectors = NULL;
6767 }
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006768 kfree(vsi->tx_rings);
6769 vsi->tx_rings = NULL;
6770 vsi->rx_rings = NULL;
6771}
6772
6773/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006774 * i40e_vsi_clear - Deallocate the VSI provided
6775 * @vsi: the VSI being un-configured
6776 **/
6777static int i40e_vsi_clear(struct i40e_vsi *vsi)
6778{
6779 struct i40e_pf *pf;
6780
6781 if (!vsi)
6782 return 0;
6783
6784 if (!vsi->back)
6785 goto free_vsi;
6786 pf = vsi->back;
6787
6788 mutex_lock(&pf->switch_mutex);
6789 if (!pf->vsi[vsi->idx]) {
6790 dev_err(&pf->pdev->dev, "pf->vsi[%d] is NULL, just free vsi[%d](%p,type %d)\n",
6791 vsi->idx, vsi->idx, vsi, vsi->type);
6792 goto unlock_vsi;
6793 }
6794
6795 if (pf->vsi[vsi->idx] != vsi) {
6796 dev_err(&pf->pdev->dev,
6797 "pf->vsi[%d](%p, type %d) != vsi[%d](%p,type %d): no free!\n",
6798 pf->vsi[vsi->idx]->idx,
6799 pf->vsi[vsi->idx],
6800 pf->vsi[vsi->idx]->type,
6801 vsi->idx, vsi, vsi->type);
6802 goto unlock_vsi;
6803 }
6804
6805 /* updates the pf for this cleared vsi */
6806 i40e_put_lump(pf->qp_pile, vsi->base_queue, vsi->idx);
6807 i40e_put_lump(pf->irq_pile, vsi->base_vector, vsi->idx);
6808
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006809 i40e_vsi_free_arrays(vsi, true);
Alexander Duyck493fb302013-09-28 07:01:44 +00006810
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006811 pf->vsi[vsi->idx] = NULL;
6812 if (vsi->idx < pf->next_vsi)
6813 pf->next_vsi = vsi->idx;
6814
6815unlock_vsi:
6816 mutex_unlock(&pf->switch_mutex);
6817free_vsi:
6818 kfree(vsi);
6819
6820 return 0;
6821}
6822
6823/**
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006824 * i40e_vsi_clear_rings - Deallocates the Rx and Tx rings for the provided VSI
6825 * @vsi: the VSI being cleaned
6826 **/
Shannon Nelsonbe1d5ee2013-11-28 06:39:23 +00006827static void i40e_vsi_clear_rings(struct i40e_vsi *vsi)
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006828{
6829 int i;
6830
Greg Rose8e9dca52013-12-18 13:45:53 +00006831 if (vsi->tx_rings && vsi->tx_rings[0]) {
Neerav Parikhd7397642013-11-28 06:39:37 +00006832 for (i = 0; i < vsi->alloc_queue_pairs; i++) {
Mitch Williams00403f02013-09-28 07:13:13 +00006833 kfree_rcu(vsi->tx_rings[i], rcu);
6834 vsi->tx_rings[i] = NULL;
6835 vsi->rx_rings[i] = NULL;
6836 }
Shannon Nelsonbe1d5ee2013-11-28 06:39:23 +00006837 }
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006838}
6839
6840/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006841 * i40e_alloc_rings - Allocates the Rx and Tx rings for the provided VSI
6842 * @vsi: the VSI being configured
6843 **/
6844static int i40e_alloc_rings(struct i40e_vsi *vsi)
6845{
Akeem G Abodunrine7046ee2014-04-09 05:58:58 +00006846 struct i40e_ring *tx_ring, *rx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006847 struct i40e_pf *pf = vsi->back;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006848 int i;
6849
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006850 /* Set basic values in the rings to be used later during open() */
Neerav Parikhd7397642013-11-28 06:39:37 +00006851 for (i = 0; i < vsi->alloc_queue_pairs; i++) {
Shannon Nelsonac6c5e32013-11-20 10:02:57 +00006852 /* allocate space for both Tx and Rx in one shot */
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006853 tx_ring = kzalloc(sizeof(struct i40e_ring) * 2, GFP_KERNEL);
6854 if (!tx_ring)
6855 goto err_out;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006856
6857 tx_ring->queue_index = i;
6858 tx_ring->reg_idx = vsi->base_queue + i;
6859 tx_ring->ring_active = false;
6860 tx_ring->vsi = vsi;
6861 tx_ring->netdev = vsi->netdev;
6862 tx_ring->dev = &pf->pdev->dev;
6863 tx_ring->count = vsi->num_desc;
6864 tx_ring->size = 0;
6865 tx_ring->dcb_tc = 0;
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006866 vsi->tx_rings[i] = tx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006867
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006868 rx_ring = &tx_ring[1];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006869 rx_ring->queue_index = i;
6870 rx_ring->reg_idx = vsi->base_queue + i;
6871 rx_ring->ring_active = false;
6872 rx_ring->vsi = vsi;
6873 rx_ring->netdev = vsi->netdev;
6874 rx_ring->dev = &pf->pdev->dev;
6875 rx_ring->count = vsi->num_desc;
6876 rx_ring->size = 0;
6877 rx_ring->dcb_tc = 0;
6878 if (pf->flags & I40E_FLAG_16BYTE_RX_DESC_ENABLED)
6879 set_ring_16byte_desc_enabled(rx_ring);
6880 else
6881 clear_ring_16byte_desc_enabled(rx_ring);
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006882 vsi->rx_rings[i] = rx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006883 }
6884
6885 return 0;
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006886
6887err_out:
6888 i40e_vsi_clear_rings(vsi);
6889 return -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006890}
6891
6892/**
6893 * i40e_reserve_msix_vectors - Reserve MSI-X vectors in the kernel
6894 * @pf: board private structure
6895 * @vectors: the number of MSI-X vectors to request
6896 *
6897 * Returns the number of vectors reserved, or error
6898 **/
6899static int i40e_reserve_msix_vectors(struct i40e_pf *pf, int vectors)
6900{
Alexander Gordeev7b37f372014-02-18 11:11:42 +01006901 vectors = pci_enable_msix_range(pf->pdev, pf->msix_entries,
6902 I40E_MIN_MSIX, vectors);
6903 if (vectors < 0) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006904 dev_info(&pf->pdev->dev,
Alexander Gordeev7b37f372014-02-18 11:11:42 +01006905 "MSI-X vector reservation failed: %d\n", vectors);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006906 vectors = 0;
6907 }
6908
6909 return vectors;
6910}
6911
6912/**
6913 * i40e_init_msix - Setup the MSIX capability
6914 * @pf: board private structure
6915 *
6916 * Work with the OS to set up the MSIX vectors needed.
6917 *
6918 * Returns 0 on success, negative on failure
6919 **/
6920static int i40e_init_msix(struct i40e_pf *pf)
6921{
6922 i40e_status err = 0;
6923 struct i40e_hw *hw = &pf->hw;
Shannon Nelsonc135b0d2014-10-17 03:14:49 +00006924 int other_vecs = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006925 int v_budget, i;
6926 int vec;
6927
6928 if (!(pf->flags & I40E_FLAG_MSIX_ENABLED))
6929 return -ENODEV;
6930
6931 /* The number of vectors we'll request will be comprised of:
6932 * - Add 1 for "other" cause for Admin Queue events, etc.
6933 * - The number of LAN queue pairs
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00006934 * - Queues being used for RSS.
6935 * We don't need as many as max_rss_size vectors.
6936 * use rss_size instead in the calculation since that
6937 * is governed by number of cpus in the system.
6938 * - assumes symmetric Tx/Rx pairing
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006939 * - The number of VMDq pairs
Vasu Dev38e00432014-08-01 13:27:03 -07006940#ifdef I40E_FCOE
6941 * - The number of FCOE qps.
6942#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006943 * Once we count this up, try the request.
6944 *
6945 * If we can't get what we want, we'll simplify to nearly nothing
6946 * and try again. If that still fails, we punt.
6947 */
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00006948 pf->num_lan_msix = pf->num_lan_qps - (pf->rss_size_max - pf->rss_size);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006949 pf->num_vmdq_msix = pf->num_vmdq_qps;
Shannon Nelsonc135b0d2014-10-17 03:14:49 +00006950 other_vecs = 1;
6951 other_vecs += (pf->num_vmdq_vsis * pf->num_vmdq_msix);
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08006952 if (pf->flags & I40E_FLAG_FD_SB_ENABLED)
Shannon Nelsonc135b0d2014-10-17 03:14:49 +00006953 other_vecs++;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006954
John W Linville83840e42015-01-14 03:06:28 +00006955 /* Scale down if necessary, and the rings will share vectors */
6956 pf->num_lan_msix = min_t(int, pf->num_lan_msix,
6957 (hw->func_caps.num_msix_vectors - other_vecs));
6958 v_budget = pf->num_lan_msix + other_vecs;
6959
Vasu Dev38e00432014-08-01 13:27:03 -07006960#ifdef I40E_FCOE
6961 if (pf->flags & I40E_FLAG_FCOE_ENABLED) {
6962 pf->num_fcoe_msix = pf->num_fcoe_qps;
6963 v_budget += pf->num_fcoe_msix;
6964 }
Vasu Dev38e00432014-08-01 13:27:03 -07006965#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006966
6967 pf->msix_entries = kcalloc(v_budget, sizeof(struct msix_entry),
6968 GFP_KERNEL);
6969 if (!pf->msix_entries)
6970 return -ENOMEM;
6971
6972 for (i = 0; i < v_budget; i++)
6973 pf->msix_entries[i].entry = i;
6974 vec = i40e_reserve_msix_vectors(pf, v_budget);
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00006975
6976 if (vec != v_budget) {
6977 /* If we have limited resources, we will start with no vectors
6978 * for the special features and then allocate vectors to some
6979 * of these features based on the policy and at the end disable
6980 * the features that did not get any vectors.
6981 */
Vasu Dev38e00432014-08-01 13:27:03 -07006982#ifdef I40E_FCOE
6983 pf->num_fcoe_qps = 0;
6984 pf->num_fcoe_msix = 0;
6985#endif
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00006986 pf->num_vmdq_msix = 0;
6987 }
6988
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006989 if (vec < I40E_MIN_MSIX) {
6990 pf->flags &= ~I40E_FLAG_MSIX_ENABLED;
6991 kfree(pf->msix_entries);
6992 pf->msix_entries = NULL;
6993 return -ENODEV;
6994
6995 } else if (vec == I40E_MIN_MSIX) {
6996 /* Adjust for minimal MSIX use */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006997 pf->num_vmdq_vsis = 0;
6998 pf->num_vmdq_qps = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006999 pf->num_lan_qps = 1;
7000 pf->num_lan_msix = 1;
7001
7002 } else if (vec != v_budget) {
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00007003 /* reserve the misc vector */
7004 vec--;
7005
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007006 /* Scale vector usage down */
7007 pf->num_vmdq_msix = 1; /* force VMDqs to only one vector */
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00007008 pf->num_vmdq_vsis = 1;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007009
7010 /* partition out the remaining vectors */
7011 switch (vec) {
7012 case 2:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007013 pf->num_lan_msix = 1;
7014 break;
7015 case 3:
Vasu Dev38e00432014-08-01 13:27:03 -07007016#ifdef I40E_FCOE
7017 /* give one vector to FCoE */
7018 if (pf->flags & I40E_FLAG_FCOE_ENABLED) {
7019 pf->num_lan_msix = 1;
7020 pf->num_fcoe_msix = 1;
7021 }
7022#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007023 pf->num_lan_msix = 2;
Vasu Dev38e00432014-08-01 13:27:03 -07007024#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007025 break;
7026 default:
Vasu Dev38e00432014-08-01 13:27:03 -07007027#ifdef I40E_FCOE
7028 /* give one vector to FCoE */
7029 if (pf->flags & I40E_FLAG_FCOE_ENABLED) {
7030 pf->num_fcoe_msix = 1;
7031 vec--;
7032 }
7033#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007034 pf->num_lan_msix = min_t(int, (vec / 2),
7035 pf->num_lan_qps);
7036 pf->num_vmdq_vsis = min_t(int, (vec - pf->num_lan_msix),
7037 I40E_DEFAULT_NUM_VMDQ_VSI);
7038 break;
7039 }
7040 }
7041
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00007042 if ((pf->flags & I40E_FLAG_VMDQ_ENABLED) &&
7043 (pf->num_vmdq_msix == 0)) {
7044 dev_info(&pf->pdev->dev, "VMDq disabled, not enough MSI-X vectors\n");
7045 pf->flags &= ~I40E_FLAG_VMDQ_ENABLED;
7046 }
Vasu Dev38e00432014-08-01 13:27:03 -07007047#ifdef I40E_FCOE
7048
7049 if ((pf->flags & I40E_FLAG_FCOE_ENABLED) && (pf->num_fcoe_msix == 0)) {
7050 dev_info(&pf->pdev->dev, "FCOE disabled, not enough MSI-X vectors\n");
7051 pf->flags &= ~I40E_FLAG_FCOE_ENABLED;
7052 }
7053#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007054 return err;
7055}
7056
7057/**
Greg Rose90e04072014-03-06 08:59:57 +00007058 * i40e_vsi_alloc_q_vector - Allocate memory for a single interrupt vector
Alexander Duyck493fb302013-09-28 07:01:44 +00007059 * @vsi: the VSI being configured
7060 * @v_idx: index of the vector in the vsi struct
7061 *
7062 * We allocate one q_vector. If allocation fails we return -ENOMEM.
7063 **/
Greg Rose90e04072014-03-06 08:59:57 +00007064static int i40e_vsi_alloc_q_vector(struct i40e_vsi *vsi, int v_idx)
Alexander Duyck493fb302013-09-28 07:01:44 +00007065{
7066 struct i40e_q_vector *q_vector;
7067
7068 /* allocate q_vector */
7069 q_vector = kzalloc(sizeof(struct i40e_q_vector), GFP_KERNEL);
7070 if (!q_vector)
7071 return -ENOMEM;
7072
7073 q_vector->vsi = vsi;
7074 q_vector->v_idx = v_idx;
7075 cpumask_set_cpu(v_idx, &q_vector->affinity_mask);
7076 if (vsi->netdev)
7077 netif_napi_add(vsi->netdev, &q_vector->napi,
Jesse Brandeburgeefeace2014-05-10 04:49:13 +00007078 i40e_napi_poll, NAPI_POLL_WEIGHT);
Alexander Duyck493fb302013-09-28 07:01:44 +00007079
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00007080 q_vector->rx.latency_range = I40E_LOW_LATENCY;
7081 q_vector->tx.latency_range = I40E_LOW_LATENCY;
7082
Alexander Duyck493fb302013-09-28 07:01:44 +00007083 /* tie q_vector and vsi together */
7084 vsi->q_vectors[v_idx] = q_vector;
7085
7086 return 0;
7087}
7088
7089/**
Greg Rose90e04072014-03-06 08:59:57 +00007090 * i40e_vsi_alloc_q_vectors - Allocate memory for interrupt vectors
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007091 * @vsi: the VSI being configured
7092 *
7093 * We allocate one q_vector per queue interrupt. If allocation fails we
7094 * return -ENOMEM.
7095 **/
Greg Rose90e04072014-03-06 08:59:57 +00007096static int i40e_vsi_alloc_q_vectors(struct i40e_vsi *vsi)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007097{
7098 struct i40e_pf *pf = vsi->back;
7099 int v_idx, num_q_vectors;
Alexander Duyck493fb302013-09-28 07:01:44 +00007100 int err;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007101
7102 /* if not MSIX, give the one vector only to the LAN VSI */
7103 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
7104 num_q_vectors = vsi->num_q_vectors;
7105 else if (vsi == pf->vsi[pf->lan_vsi])
7106 num_q_vectors = 1;
7107 else
7108 return -EINVAL;
7109
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007110 for (v_idx = 0; v_idx < num_q_vectors; v_idx++) {
Greg Rose90e04072014-03-06 08:59:57 +00007111 err = i40e_vsi_alloc_q_vector(vsi, v_idx);
Alexander Duyck493fb302013-09-28 07:01:44 +00007112 if (err)
7113 goto err_out;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007114 }
7115
7116 return 0;
Alexander Duyck493fb302013-09-28 07:01:44 +00007117
7118err_out:
7119 while (v_idx--)
7120 i40e_free_q_vector(vsi, v_idx);
7121
7122 return err;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007123}
7124
7125/**
7126 * i40e_init_interrupt_scheme - Determine proper interrupt scheme
7127 * @pf: board private structure to initialize
7128 **/
7129static void i40e_init_interrupt_scheme(struct i40e_pf *pf)
7130{
7131 int err = 0;
7132
7133 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
7134 err = i40e_init_msix(pf);
7135 if (err) {
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08007136 pf->flags &= ~(I40E_FLAG_MSIX_ENABLED |
Vasu Dev38e00432014-08-01 13:27:03 -07007137#ifdef I40E_FCOE
7138 I40E_FLAG_FCOE_ENABLED |
7139#endif
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08007140 I40E_FLAG_RSS_ENABLED |
Neerav Parikh4d9b6042014-05-22 06:31:51 +00007141 I40E_FLAG_DCB_CAPABLE |
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08007142 I40E_FLAG_SRIOV_ENABLED |
7143 I40E_FLAG_FD_SB_ENABLED |
7144 I40E_FLAG_FD_ATR_ENABLED |
7145 I40E_FLAG_VMDQ_ENABLED);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007146
7147 /* rework the queue expectations without MSIX */
7148 i40e_determine_queue_usage(pf);
7149 }
7150 }
7151
7152 if (!(pf->flags & I40E_FLAG_MSIX_ENABLED) &&
7153 (pf->flags & I40E_FLAG_MSI_ENABLED)) {
Catherine Sullivan77fa28b2014-02-20 19:29:17 -08007154 dev_info(&pf->pdev->dev, "MSI-X not available, trying MSI\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007155 err = pci_enable_msi(pf->pdev);
7156 if (err) {
Shannon Nelson958a3e32013-09-28 07:13:28 +00007157 dev_info(&pf->pdev->dev, "MSI init failed - %d\n", err);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007158 pf->flags &= ~I40E_FLAG_MSI_ENABLED;
7159 }
7160 }
7161
Shannon Nelson958a3e32013-09-28 07:13:28 +00007162 if (!(pf->flags & (I40E_FLAG_MSIX_ENABLED | I40E_FLAG_MSI_ENABLED)))
Catherine Sullivan77fa28b2014-02-20 19:29:17 -08007163 dev_info(&pf->pdev->dev, "MSI-X and MSI not available, falling back to Legacy IRQ\n");
Shannon Nelson958a3e32013-09-28 07:13:28 +00007164
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007165 /* track first vector for misc interrupts */
7166 err = i40e_get_lump(pf, pf->irq_pile, 1, I40E_PILE_VALID_BIT-1);
7167}
7168
7169/**
7170 * i40e_setup_misc_vector - Setup the misc vector to handle non queue events
7171 * @pf: board private structure
7172 *
7173 * This sets up the handler for MSIX 0, which is used to manage the
7174 * non-queue interrupts, e.g. AdminQ and errors. This is not used
7175 * when in MSI or Legacy interrupt mode.
7176 **/
7177static int i40e_setup_misc_vector(struct i40e_pf *pf)
7178{
7179 struct i40e_hw *hw = &pf->hw;
7180 int err = 0;
7181
7182 /* Only request the irq if this is the first time through, and
7183 * not when we're rebuilding after a Reset
7184 */
7185 if (!test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state)) {
7186 err = request_irq(pf->msix_entries[0].vector,
Carolyn Wybornyb294ac72014-12-11 07:06:39 +00007187 i40e_intr, 0, pf->int_name, pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007188 if (err) {
7189 dev_info(&pf->pdev->dev,
Catherine Sullivan77fa28b2014-02-20 19:29:17 -08007190 "request_irq for %s failed: %d\n",
Carolyn Wybornyb294ac72014-12-11 07:06:39 +00007191 pf->int_name, err);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007192 return -EFAULT;
7193 }
7194 }
7195
Jacob Kellerab437b52014-12-14 01:55:08 +00007196 i40e_enable_misc_int_causes(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007197
7198 /* associate no queues to the misc vector */
7199 wr32(hw, I40E_PFINT_LNKLST0, I40E_QUEUE_END_OF_LIST);
7200 wr32(hw, I40E_PFINT_ITR0(I40E_RX_ITR), I40E_ITR_8K);
7201
7202 i40e_flush(hw);
7203
7204 i40e_irq_dynamic_enable_icr0(pf);
7205
7206 return err;
7207}
7208
7209/**
7210 * i40e_config_rss - Prepare for RSS if used
7211 * @pf: board private structure
7212 **/
7213static int i40e_config_rss(struct i40e_pf *pf)
7214{
Eric Dumazet22f258a2014-11-16 06:23:13 -08007215 u32 rss_key[I40E_PFQF_HKEY_MAX_INDEX + 1];
Anjali Singhai Jain4617e8c2013-11-20 10:02:56 +00007216 struct i40e_hw *hw = &pf->hw;
7217 u32 lut = 0;
7218 int i, j;
7219 u64 hena;
Carolyn Wybornye157ea32014-06-03 23:50:22 +00007220 u32 reg_val;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007221
Eric Dumazet22f258a2014-11-16 06:23:13 -08007222 netdev_rss_key_fill(rss_key, sizeof(rss_key));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007223 for (i = 0; i <= I40E_PFQF_HKEY_MAX_INDEX; i++)
Eric Dumazet22f258a2014-11-16 06:23:13 -08007224 wr32(hw, I40E_PFQF_HKEY(i), rss_key[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007225
7226 /* By default we enable TCP/UDP with IPv4/IPv6 ptypes */
7227 hena = (u64)rd32(hw, I40E_PFQF_HENA(0)) |
7228 ((u64)rd32(hw, I40E_PFQF_HENA(1)) << 32);
Mitch Williams12dc4fe2013-11-28 06:39:32 +00007229 hena |= I40E_DEFAULT_RSS_HENA;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007230 wr32(hw, I40E_PFQF_HENA(0), (u32)hena);
7231 wr32(hw, I40E_PFQF_HENA(1), (u32)(hena >> 32));
7232
Carolyn Wybornye157ea32014-06-03 23:50:22 +00007233 /* Check capability and Set table size and register per hw expectation*/
7234 reg_val = rd32(hw, I40E_PFQF_CTL_0);
7235 if (hw->func_caps.rss_table_size == 512) {
7236 reg_val |= I40E_PFQF_CTL_0_HASHLUTSIZE_512;
7237 pf->rss_table_size = 512;
7238 } else {
7239 pf->rss_table_size = 128;
7240 reg_val &= ~I40E_PFQF_CTL_0_HASHLUTSIZE_512;
7241 }
7242 wr32(hw, I40E_PFQF_CTL_0, reg_val);
7243
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007244 /* Populate the LUT with max no. of queues in round robin fashion */
Carolyn Wybornye157ea32014-06-03 23:50:22 +00007245 for (i = 0, j = 0; i < pf->rss_table_size; i++, j++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007246
7247 /* The assumption is that lan qp count will be the highest
7248 * qp count for any PF VSI that needs RSS.
7249 * If multiple VSIs need RSS support, all the qp counts
7250 * for those VSIs should be a power of 2 for RSS to work.
7251 * If LAN VSI is the only consumer for RSS then this requirement
7252 * is not necessary.
7253 */
7254 if (j == pf->rss_size)
7255 j = 0;
7256 /* lut = 4-byte sliding window of 4 lut entries */
7257 lut = (lut << 8) | (j &
7258 ((0x1 << pf->hw.func_caps.rss_table_entry_width) - 1));
7259 /* On i = 3, we have 4 entries in lut; write to the register */
7260 if ((i & 3) == 3)
7261 wr32(hw, I40E_PFQF_HLUT(i >> 2), lut);
7262 }
7263 i40e_flush(hw);
7264
7265 return 0;
7266}
7267
7268/**
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00007269 * i40e_reconfig_rss_queues - change number of queues for rss and rebuild
7270 * @pf: board private structure
7271 * @queue_count: the requested queue count for rss.
7272 *
7273 * returns 0 if rss is not enabled, if enabled returns the final rss queue
7274 * count which may be different from the requested queue count.
7275 **/
7276int i40e_reconfig_rss_queues(struct i40e_pf *pf, int queue_count)
7277{
7278 if (!(pf->flags & I40E_FLAG_RSS_ENABLED))
7279 return 0;
7280
7281 queue_count = min_t(int, queue_count, pf->rss_size_max);
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00007282
7283 if (queue_count != pf->rss_size) {
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00007284 i40e_prep_for_reset(pf);
7285
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00007286 pf->rss_size = queue_count;
7287
7288 i40e_reset_and_rebuild(pf, true);
7289 i40e_config_rss(pf);
7290 }
7291 dev_info(&pf->pdev->dev, "RSS count: %d\n", pf->rss_size);
7292 return pf->rss_size;
7293}
7294
7295/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007296 * i40e_sw_init - Initialize general software structures (struct i40e_pf)
7297 * @pf: board private structure to initialize
7298 *
7299 * i40e_sw_init initializes the Adapter private data structure.
7300 * Fields are initialized based on PCI device information and
7301 * OS network device settings (MTU size).
7302 **/
7303static int i40e_sw_init(struct i40e_pf *pf)
7304{
7305 int err = 0;
7306 int size;
7307
7308 pf->msg_enable = netif_msg_init(I40E_DEFAULT_MSG_ENABLE,
7309 (NETIF_MSG_DRV|NETIF_MSG_PROBE|NETIF_MSG_LINK));
Shannon Nelson27599972013-11-16 10:00:43 +00007310 pf->hw.debug_mask = pf->msg_enable | I40E_DEBUG_DIAG;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007311 if (debug != -1 && debug != I40E_DEFAULT_MSG_ENABLE) {
7312 if (I40E_DEBUG_USER & debug)
7313 pf->hw.debug_mask = debug;
7314 pf->msg_enable = netif_msg_init((debug & ~I40E_DEBUG_USER),
7315 I40E_DEFAULT_MSG_ENABLE);
7316 }
7317
7318 /* Set default capability flags */
7319 pf->flags = I40E_FLAG_RX_CSUM_ENABLED |
7320 I40E_FLAG_MSI_ENABLED |
7321 I40E_FLAG_MSIX_ENABLED |
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007322 I40E_FLAG_RX_1BUF_ENABLED;
7323
Mitch Williamsca99eb92014-04-04 04:43:07 +00007324 /* Set default ITR */
7325 pf->rx_itr_default = I40E_ITR_DYNAMIC | I40E_ITR_RX_DEF;
7326 pf->tx_itr_default = I40E_ITR_DYNAMIC | I40E_ITR_TX_DEF;
7327
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00007328 /* Depending on PF configurations, it is possible that the RSS
7329 * maximum might end up larger than the available queues
7330 */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007331 pf->rss_size_max = 0x1 << pf->hw.func_caps.rss_table_entry_width;
Paul M Stillwell Jrec9a7db2014-07-09 07:46:10 +00007332 pf->rss_size = 1;
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00007333 pf->rss_size_max = min_t(int, pf->rss_size_max,
7334 pf->hw.func_caps.num_tx_qp);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007335 if (pf->hw.func_caps.rss) {
7336 pf->flags |= I40E_FLAG_RSS_ENABLED;
Jesse Brandeburgbf051a32013-11-26 10:49:17 +00007337 pf->rss_size = min_t(int, pf->rss_size_max, num_online_cpus());
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007338 }
7339
Catherine Sullivan2050bc62013-12-18 13:46:03 +00007340 /* MFP mode enabled */
7341 if (pf->hw.func_caps.npar_enable || pf->hw.func_caps.mfp_mode_1) {
7342 pf->flags |= I40E_FLAG_MFP_ENABLED;
7343 dev_info(&pf->pdev->dev, "MFP mode Enabled\n");
7344 }
7345
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08007346 /* FW/NVM is not yet fixed in this regard */
7347 if ((pf->hw.func_caps.fd_filters_guaranteed > 0) ||
7348 (pf->hw.func_caps.fd_filters_best_effort > 0)) {
7349 pf->flags |= I40E_FLAG_FD_ATR_ENABLED;
7350 pf->atr_sample_rate = I40E_DEFAULT_ATR_SAMPLE_RATE;
Anjali Singhai Jain433c47d2014-05-22 06:32:17 +00007351 /* Setup a counter for fd_atr per pf */
7352 pf->fd_atr_cnt_idx = I40E_FD_ATR_STAT_IDX(pf->hw.pf_id);
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08007353 if (!(pf->flags & I40E_FLAG_MFP_ENABLED)) {
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08007354 pf->flags |= I40E_FLAG_FD_SB_ENABLED;
Anjali Singhai Jain433c47d2014-05-22 06:32:17 +00007355 /* Setup a counter for fd_sb per pf */
7356 pf->fd_sb_cnt_idx = I40E_FD_SB_STAT_IDX(pf->hw.pf_id);
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08007357 } else {
7358 dev_info(&pf->pdev->dev,
Anjali Singhai Jain0b675842014-03-06 08:59:51 +00007359 "Flow Director Sideband mode Disabled in MFP mode\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007360 }
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08007361 pf->fdir_pf_filter_count =
7362 pf->hw.func_caps.fd_filters_guaranteed;
7363 pf->hw.fdir_shared_filter_count =
7364 pf->hw.func_caps.fd_filters_best_effort;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007365 }
7366
7367 if (pf->hw.func_caps.vmdq) {
7368 pf->flags |= I40E_FLAG_VMDQ_ENABLED;
7369 pf->num_vmdq_vsis = I40E_DEFAULT_NUM_VMDQ_VSI;
7370 pf->num_vmdq_qps = I40E_DEFAULT_QUEUES_PER_VMDQ;
7371 }
7372
Vasu Dev38e00432014-08-01 13:27:03 -07007373#ifdef I40E_FCOE
7374 err = i40e_init_pf_fcoe(pf);
7375 if (err)
7376 dev_info(&pf->pdev->dev, "init_pf_fcoe failed: %d\n", err);
7377
7378#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007379#ifdef CONFIG_PCI_IOV
Shannon Nelsonba252f12014-12-11 07:06:34 +00007380 if (pf->hw.func_caps.num_vfs && pf->hw.partition_id == 1) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007381 pf->num_vf_qps = I40E_DEFAULT_QUEUES_PER_VF;
7382 pf->flags |= I40E_FLAG_SRIOV_ENABLED;
7383 pf->num_req_vfs = min_t(int,
7384 pf->hw.func_caps.num_vfs,
7385 I40E_MAX_VF_COUNT);
7386 }
7387#endif /* CONFIG_PCI_IOV */
7388 pf->eeprom_version = 0xDEAD;
7389 pf->lan_veb = I40E_NO_VEB;
7390 pf->lan_vsi = I40E_NO_VSI;
7391
7392 /* set up queue assignment tracking */
7393 size = sizeof(struct i40e_lump_tracking)
7394 + (sizeof(u16) * pf->hw.func_caps.num_tx_qp);
7395 pf->qp_pile = kzalloc(size, GFP_KERNEL);
7396 if (!pf->qp_pile) {
7397 err = -ENOMEM;
7398 goto sw_init_done;
7399 }
7400 pf->qp_pile->num_entries = pf->hw.func_caps.num_tx_qp;
7401 pf->qp_pile->search_hint = 0;
7402
7403 /* set up vector assignment tracking */
7404 size = sizeof(struct i40e_lump_tracking)
7405 + (sizeof(u16) * pf->hw.func_caps.num_msix_vectors);
7406 pf->irq_pile = kzalloc(size, GFP_KERNEL);
7407 if (!pf->irq_pile) {
7408 kfree(pf->qp_pile);
7409 err = -ENOMEM;
7410 goto sw_init_done;
7411 }
7412 pf->irq_pile->num_entries = pf->hw.func_caps.num_msix_vectors;
7413 pf->irq_pile->search_hint = 0;
7414
Anjali Singhai Jain327fe042014-06-04 01:23:26 +00007415 pf->tx_timeout_recovery_level = 1;
7416
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007417 mutex_init(&pf->switch_mutex);
7418
7419sw_init_done:
7420 return err;
7421}
7422
7423/**
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00007424 * i40e_set_ntuple - set the ntuple feature flag and take action
7425 * @pf: board private structure to initialize
7426 * @features: the feature set that the stack is suggesting
7427 *
7428 * returns a bool to indicate if reset needs to happen
7429 **/
7430bool i40e_set_ntuple(struct i40e_pf *pf, netdev_features_t features)
7431{
7432 bool need_reset = false;
7433
7434 /* Check if Flow Director n-tuple support was enabled or disabled. If
7435 * the state changed, we need to reset.
7436 */
7437 if (features & NETIF_F_NTUPLE) {
7438 /* Enable filters and mark for reset */
7439 if (!(pf->flags & I40E_FLAG_FD_SB_ENABLED))
7440 need_reset = true;
7441 pf->flags |= I40E_FLAG_FD_SB_ENABLED;
7442 } else {
7443 /* turn off filters, mark for reset and clear SW filter list */
7444 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
7445 need_reset = true;
7446 i40e_fdir_filter_exit(pf);
7447 }
7448 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
Anjali Singhai Jain8a4f34f2014-06-04 08:45:20 +00007449 pf->auto_disable_flags &= ~I40E_FLAG_FD_SB_ENABLED;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00007450 /* reset fd counters */
7451 pf->fd_add_err = pf->fd_atr_cnt = pf->fd_tcp_rule = 0;
7452 pf->fdir_pf_active_filters = 0;
7453 pf->flags |= I40E_FLAG_FD_ATR_ENABLED;
7454 dev_info(&pf->pdev->dev, "ATR re-enabled.\n");
Anjali Singhai Jain8a4f34f2014-06-04 08:45:20 +00007455 /* if ATR was auto disabled it can be re-enabled. */
7456 if ((pf->flags & I40E_FLAG_FD_ATR_ENABLED) &&
7457 (pf->auto_disable_flags & I40E_FLAG_FD_ATR_ENABLED))
7458 pf->auto_disable_flags &= ~I40E_FLAG_FD_ATR_ENABLED;
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00007459 }
7460 return need_reset;
7461}
7462
7463/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007464 * i40e_set_features - set the netdev feature flags
7465 * @netdev: ptr to the netdev being adjusted
7466 * @features: the feature set that the stack is suggesting
7467 **/
7468static int i40e_set_features(struct net_device *netdev,
7469 netdev_features_t features)
7470{
7471 struct i40e_netdev_priv *np = netdev_priv(netdev);
7472 struct i40e_vsi *vsi = np->vsi;
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00007473 struct i40e_pf *pf = vsi->back;
7474 bool need_reset;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007475
7476 if (features & NETIF_F_HW_VLAN_CTAG_RX)
7477 i40e_vlan_stripping_enable(vsi);
7478 else
7479 i40e_vlan_stripping_disable(vsi);
7480
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00007481 need_reset = i40e_set_ntuple(pf, features);
7482
7483 if (need_reset)
7484 i40e_do_reset(pf, (1 << __I40E_PF_RESET_REQUESTED));
7485
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007486 return 0;
7487}
7488
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007489#ifdef CONFIG_I40E_VXLAN
7490/**
7491 * i40e_get_vxlan_port_idx - Lookup a possibly offloaded for Rx UDP port
7492 * @pf: board private structure
7493 * @port: The UDP port to look up
7494 *
7495 * Returns the index number or I40E_MAX_PF_UDP_OFFLOAD_PORTS if port not found
7496 **/
7497static u8 i40e_get_vxlan_port_idx(struct i40e_pf *pf, __be16 port)
7498{
7499 u8 i;
7500
7501 for (i = 0; i < I40E_MAX_PF_UDP_OFFLOAD_PORTS; i++) {
7502 if (pf->vxlan_ports[i] == port)
7503 return i;
7504 }
7505
7506 return i;
7507}
7508
7509/**
7510 * i40e_add_vxlan_port - Get notifications about VXLAN ports that come up
7511 * @netdev: This physical port's netdev
7512 * @sa_family: Socket Family that VXLAN is notifying us about
7513 * @port: New UDP port number that VXLAN started listening to
7514 **/
7515static void i40e_add_vxlan_port(struct net_device *netdev,
7516 sa_family_t sa_family, __be16 port)
7517{
7518 struct i40e_netdev_priv *np = netdev_priv(netdev);
7519 struct i40e_vsi *vsi = np->vsi;
7520 struct i40e_pf *pf = vsi->back;
7521 u8 next_idx;
7522 u8 idx;
7523
7524 if (sa_family == AF_INET6)
7525 return;
7526
7527 idx = i40e_get_vxlan_port_idx(pf, port);
7528
7529 /* Check if port already exists */
7530 if (idx < I40E_MAX_PF_UDP_OFFLOAD_PORTS) {
7531 netdev_info(netdev, "Port %d already offloaded\n", ntohs(port));
7532 return;
7533 }
7534
7535 /* Now check if there is space to add the new port */
7536 next_idx = i40e_get_vxlan_port_idx(pf, 0);
7537
7538 if (next_idx == I40E_MAX_PF_UDP_OFFLOAD_PORTS) {
7539 netdev_info(netdev, "Maximum number of UDP ports reached, not adding port %d\n",
7540 ntohs(port));
7541 return;
7542 }
7543
7544 /* New port: add it and mark its index in the bitmap */
7545 pf->vxlan_ports[next_idx] = port;
7546 pf->pending_vxlan_bitmap |= (1 << next_idx);
7547
7548 pf->flags |= I40E_FLAG_VXLAN_FILTER_SYNC;
7549}
7550
7551/**
7552 * i40e_del_vxlan_port - Get notifications about VXLAN ports that go away
7553 * @netdev: This physical port's netdev
7554 * @sa_family: Socket Family that VXLAN is notifying us about
7555 * @port: UDP port number that VXLAN stopped listening to
7556 **/
7557static void i40e_del_vxlan_port(struct net_device *netdev,
7558 sa_family_t sa_family, __be16 port)
7559{
7560 struct i40e_netdev_priv *np = netdev_priv(netdev);
7561 struct i40e_vsi *vsi = np->vsi;
7562 struct i40e_pf *pf = vsi->back;
7563 u8 idx;
7564
7565 if (sa_family == AF_INET6)
7566 return;
7567
7568 idx = i40e_get_vxlan_port_idx(pf, port);
7569
7570 /* Check if port already exists */
7571 if (idx < I40E_MAX_PF_UDP_OFFLOAD_PORTS) {
7572 /* if port exists, set it to 0 (mark for deletion)
7573 * and make it pending
7574 */
7575 pf->vxlan_ports[idx] = 0;
7576
7577 pf->pending_vxlan_bitmap |= (1 << idx);
7578
7579 pf->flags |= I40E_FLAG_VXLAN_FILTER_SYNC;
7580 } else {
7581 netdev_warn(netdev, "Port %d was not found, not deleting\n",
7582 ntohs(port));
7583 }
7584}
7585
7586#endif
Neerav Parikh1f224ad2014-02-12 01:45:31 +00007587static int i40e_get_phys_port_id(struct net_device *netdev,
Jiri Pirko02637fc2014-11-28 14:34:16 +01007588 struct netdev_phys_item_id *ppid)
Neerav Parikh1f224ad2014-02-12 01:45:31 +00007589{
7590 struct i40e_netdev_priv *np = netdev_priv(netdev);
7591 struct i40e_pf *pf = np->vsi->back;
7592 struct i40e_hw *hw = &pf->hw;
7593
7594 if (!(pf->flags & I40E_FLAG_PORT_ID_VALID))
7595 return -EOPNOTSUPP;
7596
7597 ppid->id_len = min_t(int, sizeof(hw->mac.port_addr), sizeof(ppid->id));
7598 memcpy(ppid->id, hw->mac.port_addr, ppid->id_len);
7599
7600 return 0;
7601}
7602
Jesse Brandeburg2f90ade2014-11-20 16:30:02 -08007603/**
7604 * i40e_ndo_fdb_add - add an entry to the hardware database
7605 * @ndm: the input from the stack
7606 * @tb: pointer to array of nladdr (unused)
7607 * @dev: the net device pointer
7608 * @addr: the MAC address entry being added
7609 * @flags: instructions from stack about fdb operation
7610 */
Greg Rose4ba0dea2014-03-06 08:59:55 +00007611static int i40e_ndo_fdb_add(struct ndmsg *ndm, struct nlattr *tb[],
7612 struct net_device *dev,
Jiri Pirkof6f64242014-11-28 14:34:15 +01007613 const unsigned char *addr, u16 vid,
Greg Rose4ba0dea2014-03-06 08:59:55 +00007614 u16 flags)
Greg Rose4ba0dea2014-03-06 08:59:55 +00007615{
7616 struct i40e_netdev_priv *np = netdev_priv(dev);
7617 struct i40e_pf *pf = np->vsi->back;
7618 int err = 0;
7619
7620 if (!(pf->flags & I40E_FLAG_SRIOV_ENABLED))
7621 return -EOPNOTSUPP;
7622
Or Gerlitz65891fe2014-12-14 18:19:05 +02007623 if (vid) {
7624 pr_info("%s: vlans aren't supported yet for dev_uc|mc_add()\n", dev->name);
7625 return -EINVAL;
7626 }
7627
Greg Rose4ba0dea2014-03-06 08:59:55 +00007628 /* Hardware does not support aging addresses so if a
7629 * ndm_state is given only allow permanent addresses
7630 */
7631 if (ndm->ndm_state && !(ndm->ndm_state & NUD_PERMANENT)) {
7632 netdev_info(dev, "FDB only supports static addresses\n");
7633 return -EINVAL;
7634 }
7635
7636 if (is_unicast_ether_addr(addr) || is_link_local_ether_addr(addr))
7637 err = dev_uc_add_excl(dev, addr);
7638 else if (is_multicast_ether_addr(addr))
7639 err = dev_mc_add_excl(dev, addr);
7640 else
7641 err = -EINVAL;
7642
7643 /* Only return duplicate errors if NLM_F_EXCL is set */
7644 if (err == -EEXIST && !(flags & NLM_F_EXCL))
7645 err = 0;
7646
7647 return err;
7648}
7649
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007650static const struct net_device_ops i40e_netdev_ops = {
7651 .ndo_open = i40e_open,
7652 .ndo_stop = i40e_close,
7653 .ndo_start_xmit = i40e_lan_xmit_frame,
7654 .ndo_get_stats64 = i40e_get_netdev_stats_struct,
7655 .ndo_set_rx_mode = i40e_set_rx_mode,
7656 .ndo_validate_addr = eth_validate_addr,
7657 .ndo_set_mac_address = i40e_set_mac,
7658 .ndo_change_mtu = i40e_change_mtu,
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00007659 .ndo_do_ioctl = i40e_ioctl,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007660 .ndo_tx_timeout = i40e_tx_timeout,
7661 .ndo_vlan_rx_add_vid = i40e_vlan_rx_add_vid,
7662 .ndo_vlan_rx_kill_vid = i40e_vlan_rx_kill_vid,
7663#ifdef CONFIG_NET_POLL_CONTROLLER
7664 .ndo_poll_controller = i40e_netpoll,
7665#endif
7666 .ndo_setup_tc = i40e_setup_tc,
Vasu Dev38e00432014-08-01 13:27:03 -07007667#ifdef I40E_FCOE
7668 .ndo_fcoe_enable = i40e_fcoe_enable,
7669 .ndo_fcoe_disable = i40e_fcoe_disable,
7670#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007671 .ndo_set_features = i40e_set_features,
7672 .ndo_set_vf_mac = i40e_ndo_set_vf_mac,
7673 .ndo_set_vf_vlan = i40e_ndo_set_vf_port_vlan,
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04007674 .ndo_set_vf_rate = i40e_ndo_set_vf_bw,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007675 .ndo_get_vf_config = i40e_ndo_get_vf_config,
Mitch Williams588aefa2014-02-11 08:27:49 +00007676 .ndo_set_vf_link_state = i40e_ndo_set_vf_link_state,
Serey Konge6d90042014-07-12 07:28:14 +00007677 .ndo_set_vf_spoofchk = i40e_ndo_set_vf_spoofchk,
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007678#ifdef CONFIG_I40E_VXLAN
7679 .ndo_add_vxlan_port = i40e_add_vxlan_port,
7680 .ndo_del_vxlan_port = i40e_del_vxlan_port,
7681#endif
Neerav Parikh1f224ad2014-02-12 01:45:31 +00007682 .ndo_get_phys_port_id = i40e_get_phys_port_id,
Greg Rose4ba0dea2014-03-06 08:59:55 +00007683 .ndo_fdb_add = i40e_ndo_fdb_add,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007684};
7685
7686/**
7687 * i40e_config_netdev - Setup the netdev flags
7688 * @vsi: the VSI being configured
7689 *
7690 * Returns 0 on success, negative value on failure
7691 **/
7692static int i40e_config_netdev(struct i40e_vsi *vsi)
7693{
Greg Rose1a103702013-11-28 06:42:39 +00007694 u8 brdcast[ETH_ALEN] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007695 struct i40e_pf *pf = vsi->back;
7696 struct i40e_hw *hw = &pf->hw;
7697 struct i40e_netdev_priv *np;
7698 struct net_device *netdev;
7699 u8 mac_addr[ETH_ALEN];
7700 int etherdev_size;
7701
7702 etherdev_size = sizeof(struct i40e_netdev_priv);
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00007703 netdev = alloc_etherdev_mq(etherdev_size, vsi->alloc_queue_pairs);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007704 if (!netdev)
7705 return -ENOMEM;
7706
7707 vsi->netdev = netdev;
7708 np = netdev_priv(netdev);
7709 np->vsi = vsi;
7710
Or Gerlitzd70e9412014-03-18 10:36:45 +02007711 netdev->hw_enc_features |= NETIF_F_IP_CSUM |
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007712 NETIF_F_GSO_UDP_TUNNEL |
Or Gerlitzd70e9412014-03-18 10:36:45 +02007713 NETIF_F_TSO;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007714
7715 netdev->features = NETIF_F_SG |
7716 NETIF_F_IP_CSUM |
7717 NETIF_F_SCTP_CSUM |
7718 NETIF_F_HIGHDMA |
7719 NETIF_F_GSO_UDP_TUNNEL |
7720 NETIF_F_HW_VLAN_CTAG_TX |
7721 NETIF_F_HW_VLAN_CTAG_RX |
7722 NETIF_F_HW_VLAN_CTAG_FILTER |
7723 NETIF_F_IPV6_CSUM |
7724 NETIF_F_TSO |
Jesse Brandeburg059dab62014-04-01 09:07:20 +00007725 NETIF_F_TSO_ECN |
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007726 NETIF_F_TSO6 |
7727 NETIF_F_RXCSUM |
7728 NETIF_F_RXHASH |
7729 0;
7730
Anjali Singhai Jain2e86a0b2014-04-01 07:11:53 +00007731 if (!(pf->flags & I40E_FLAG_MFP_ENABLED))
7732 netdev->features |= NETIF_F_NTUPLE;
7733
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007734 /* copy netdev features into list of user selectable features */
7735 netdev->hw_features |= netdev->features;
7736
7737 if (vsi->type == I40E_VSI_MAIN) {
7738 SET_NETDEV_DEV(netdev, &pf->pdev->dev);
Greg Rose9a173902014-05-22 06:32:02 +00007739 ether_addr_copy(mac_addr, hw->mac.perm_addr);
Shannon Nelson30650cc2014-07-29 04:01:50 +00007740 /* The following steps are necessary to prevent reception
7741 * of tagged packets - some older NVM configurations load a
7742 * default a MAC-VLAN filter that accepts any tagged packet
7743 * which must be replaced by a normal filter.
Greg Rose8c27d422014-05-22 06:31:56 +00007744 */
Shannon Nelson30650cc2014-07-29 04:01:50 +00007745 if (!i40e_rm_default_mac_filter(vsi, mac_addr))
7746 i40e_add_filter(vsi, mac_addr,
7747 I40E_VLAN_ANY, false, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007748 } else {
7749 /* relate the VSI_VMDQ name to the VSI_MAIN name */
7750 snprintf(netdev->name, IFNAMSIZ, "%sv%%d",
7751 pf->vsi[pf->lan_vsi]->netdev->name);
7752 random_ether_addr(mac_addr);
7753 i40e_add_filter(vsi, mac_addr, I40E_VLAN_ANY, false, false);
7754 }
Greg Rose1a103702013-11-28 06:42:39 +00007755 i40e_add_filter(vsi, brdcast, I40E_VLAN_ANY, false, false);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007756
Greg Rose9a173902014-05-22 06:32:02 +00007757 ether_addr_copy(netdev->dev_addr, mac_addr);
7758 ether_addr_copy(netdev->perm_addr, mac_addr);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007759 /* vlan gets same features (except vlan offload)
7760 * after any tweaks for specific VSI types
7761 */
7762 netdev->vlan_features = netdev->features & ~(NETIF_F_HW_VLAN_CTAG_TX |
7763 NETIF_F_HW_VLAN_CTAG_RX |
7764 NETIF_F_HW_VLAN_CTAG_FILTER);
7765 netdev->priv_flags |= IFF_UNICAST_FLT;
7766 netdev->priv_flags |= IFF_SUPP_NOFCS;
7767 /* Setup netdev TC information */
7768 i40e_vsi_config_netdev_tc(vsi, vsi->tc_config.enabled_tc);
7769
7770 netdev->netdev_ops = &i40e_netdev_ops;
7771 netdev->watchdog_timeo = 5 * HZ;
7772 i40e_set_ethtool_ops(netdev);
Vasu Dev38e00432014-08-01 13:27:03 -07007773#ifdef I40E_FCOE
7774 i40e_fcoe_config_netdev(netdev, vsi);
7775#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007776
7777 return 0;
7778}
7779
7780/**
7781 * i40e_vsi_delete - Delete a VSI from the switch
7782 * @vsi: the VSI being removed
7783 *
7784 * Returns 0 on success, negative value on failure
7785 **/
7786static void i40e_vsi_delete(struct i40e_vsi *vsi)
7787{
7788 /* remove default VSI is not allowed */
7789 if (vsi == vsi->back->vsi[vsi->back->lan_vsi])
7790 return;
7791
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007792 i40e_aq_delete_element(&vsi->back->hw, vsi->seid, NULL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007793}
7794
7795/**
7796 * i40e_add_vsi - Add a VSI to the switch
7797 * @vsi: the VSI being configured
7798 *
7799 * This initializes a VSI context depending on the VSI type to be added and
7800 * passes it down to the add_vsi aq command.
7801 **/
7802static int i40e_add_vsi(struct i40e_vsi *vsi)
7803{
7804 int ret = -ENODEV;
7805 struct i40e_mac_filter *f, *ftmp;
7806 struct i40e_pf *pf = vsi->back;
7807 struct i40e_hw *hw = &pf->hw;
7808 struct i40e_vsi_context ctxt;
7809 u8 enabled_tc = 0x1; /* TC0 enabled */
7810 int f_count = 0;
7811
7812 memset(&ctxt, 0, sizeof(ctxt));
7813 switch (vsi->type) {
7814 case I40E_VSI_MAIN:
7815 /* The PF's main VSI is already setup as part of the
7816 * device initialization, so we'll not bother with
7817 * the add_vsi call, but we will retrieve the current
7818 * VSI context.
7819 */
7820 ctxt.seid = pf->main_vsi_seid;
7821 ctxt.pf_num = pf->hw.pf_id;
7822 ctxt.vf_num = 0;
7823 ret = i40e_aq_get_vsi_params(&pf->hw, &ctxt, NULL);
7824 ctxt.flags = I40E_AQ_VSI_TYPE_PF;
7825 if (ret) {
7826 dev_info(&pf->pdev->dev,
7827 "couldn't get pf vsi config, err %d, aq_err %d\n",
7828 ret, pf->hw.aq.asq_last_status);
7829 return -ENOENT;
7830 }
7831 memcpy(&vsi->info, &ctxt.info, sizeof(ctxt.info));
7832 vsi->info.valid_sections = 0;
7833
7834 vsi->seid = ctxt.seid;
7835 vsi->id = ctxt.vsi_number;
7836
7837 enabled_tc = i40e_pf_get_tc_map(pf);
7838
7839 /* MFP mode setup queue map and update VSI */
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00007840 if ((pf->flags & I40E_FLAG_MFP_ENABLED) &&
7841 !(pf->hw.func_caps.iscsi)) { /* NIC type PF */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007842 memset(&ctxt, 0, sizeof(ctxt));
7843 ctxt.seid = pf->main_vsi_seid;
7844 ctxt.pf_num = pf->hw.pf_id;
7845 ctxt.vf_num = 0;
7846 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, false);
7847 ret = i40e_aq_update_vsi_params(hw, &ctxt, NULL);
7848 if (ret) {
7849 dev_info(&pf->pdev->dev,
7850 "update vsi failed, aq_err=%d\n",
7851 pf->hw.aq.asq_last_status);
7852 ret = -ENOENT;
7853 goto err;
7854 }
7855 /* update the local VSI info queue map */
7856 i40e_vsi_update_queue_map(vsi, &ctxt);
7857 vsi->info.valid_sections = 0;
7858 } else {
7859 /* Default/Main VSI is only enabled for TC0
7860 * reconfigure it to enable all TCs that are
7861 * available on the port in SFP mode.
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00007862 * For MFP case the iSCSI PF would use this
7863 * flow to enable LAN+iSCSI TC.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007864 */
7865 ret = i40e_vsi_config_tc(vsi, enabled_tc);
7866 if (ret) {
7867 dev_info(&pf->pdev->dev,
7868 "failed to configure TCs for main VSI tc_map 0x%08x, err %d, aq_err %d\n",
7869 enabled_tc, ret,
7870 pf->hw.aq.asq_last_status);
7871 ret = -ENOENT;
7872 }
7873 }
7874 break;
7875
7876 case I40E_VSI_FDIR:
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08007877 ctxt.pf_num = hw->pf_id;
7878 ctxt.vf_num = 0;
7879 ctxt.uplink_seid = vsi->uplink_seid;
7880 ctxt.connection_type = 0x1; /* regular data port */
7881 ctxt.flags = I40E_AQ_VSI_TYPE_PF;
Anjali Singhai Jain79c21a82014-11-13 03:06:14 +00007882 ctxt.info.valid_sections |=
7883 cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
7884 ctxt.info.switch_id =
7885 cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007886 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007887 break;
7888
7889 case I40E_VSI_VMDQ2:
7890 ctxt.pf_num = hw->pf_id;
7891 ctxt.vf_num = 0;
7892 ctxt.uplink_seid = vsi->uplink_seid;
7893 ctxt.connection_type = 0x1; /* regular data port */
7894 ctxt.flags = I40E_AQ_VSI_TYPE_VMDQ2;
7895
7896 ctxt.info.valid_sections |= cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
7897
7898 /* This VSI is connected to VEB so the switch_id
7899 * should be set to zero by default.
7900 */
7901 ctxt.info.switch_id = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007902 ctxt.info.switch_id |= cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
7903
7904 /* Setup the VSI tx/rx queue map for TC0 only for now */
7905 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, true);
7906 break;
7907
7908 case I40E_VSI_SRIOV:
7909 ctxt.pf_num = hw->pf_id;
7910 ctxt.vf_num = vsi->vf_id + hw->func_caps.vf_base_id;
7911 ctxt.uplink_seid = vsi->uplink_seid;
7912 ctxt.connection_type = 0x1; /* regular data port */
7913 ctxt.flags = I40E_AQ_VSI_TYPE_VF;
7914
7915 ctxt.info.valid_sections |= cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
7916
7917 /* This VSI is connected to VEB so the switch_id
7918 * should be set to zero by default.
7919 */
7920 ctxt.info.switch_id = cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
7921
7922 ctxt.info.valid_sections |= cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
7923 ctxt.info.port_vlan_flags |= I40E_AQ_VSI_PVLAN_MODE_ALL;
Mitch Williamsc674d122014-05-20 08:01:40 +00007924 if (pf->vf[vsi->vf_id].spoofchk) {
7925 ctxt.info.valid_sections |=
7926 cpu_to_le16(I40E_AQ_VSI_PROP_SECURITY_VALID);
7927 ctxt.info.sec_flags |=
7928 (I40E_AQ_VSI_SEC_FLAG_ENABLE_VLAN_CHK |
7929 I40E_AQ_VSI_SEC_FLAG_ENABLE_MAC_CHK);
7930 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007931 /* Setup the VSI tx/rx queue map for TC0 only for now */
7932 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, true);
7933 break;
7934
Vasu Dev38e00432014-08-01 13:27:03 -07007935#ifdef I40E_FCOE
7936 case I40E_VSI_FCOE:
7937 ret = i40e_fcoe_vsi_init(vsi, &ctxt);
7938 if (ret) {
7939 dev_info(&pf->pdev->dev, "failed to initialize FCoE VSI\n");
7940 return ret;
7941 }
7942 break;
7943
7944#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007945 default:
7946 return -ENODEV;
7947 }
7948
7949 if (vsi->type != I40E_VSI_MAIN) {
7950 ret = i40e_aq_add_vsi(hw, &ctxt, NULL);
7951 if (ret) {
7952 dev_info(&vsi->back->pdev->dev,
7953 "add vsi failed, aq_err=%d\n",
7954 vsi->back->hw.aq.asq_last_status);
7955 ret = -ENOENT;
7956 goto err;
7957 }
7958 memcpy(&vsi->info, &ctxt.info, sizeof(ctxt.info));
7959 vsi->info.valid_sections = 0;
7960 vsi->seid = ctxt.seid;
7961 vsi->id = ctxt.vsi_number;
7962 }
7963
7964 /* If macvlan filters already exist, force them to get loaded */
7965 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
7966 f->changed = true;
7967 f_count++;
Shannon Nelson6252c7e2014-06-04 01:23:23 +00007968
7969 if (f->is_laa && vsi->type == I40E_VSI_MAIN) {
Shannon Nelson30650cc2014-07-29 04:01:50 +00007970 struct i40e_aqc_remove_macvlan_element_data element;
7971
7972 memset(&element, 0, sizeof(element));
7973 ether_addr_copy(element.mac_addr, f->macaddr);
7974 element.flags = I40E_AQC_MACVLAN_DEL_PERFECT_MATCH;
7975 ret = i40e_aq_remove_macvlan(hw, vsi->seid,
7976 &element, 1, NULL);
7977 if (ret) {
7978 /* some older FW has a different default */
7979 element.flags |=
7980 I40E_AQC_MACVLAN_DEL_IGNORE_VLAN;
7981 i40e_aq_remove_macvlan(hw, vsi->seid,
7982 &element, 1, NULL);
7983 }
7984
7985 i40e_aq_mac_address_write(hw,
Shannon Nelson6252c7e2014-06-04 01:23:23 +00007986 I40E_AQC_WRITE_TYPE_LAA_WOL,
7987 f->macaddr, NULL);
7988 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007989 }
7990 if (f_count) {
7991 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
7992 pf->flags |= I40E_FLAG_FILTER_SYNC;
7993 }
7994
7995 /* Update VSI BW information */
7996 ret = i40e_vsi_get_bw_info(vsi);
7997 if (ret) {
7998 dev_info(&pf->pdev->dev,
7999 "couldn't get vsi bw info, err %d, aq_err %d\n",
8000 ret, pf->hw.aq.asq_last_status);
8001 /* VSI is already added so not tearing that up */
8002 ret = 0;
8003 }
8004
8005err:
8006 return ret;
8007}
8008
8009/**
8010 * i40e_vsi_release - Delete a VSI and free its resources
8011 * @vsi: the VSI being removed
8012 *
8013 * Returns 0 on success or < 0 on error
8014 **/
8015int i40e_vsi_release(struct i40e_vsi *vsi)
8016{
8017 struct i40e_mac_filter *f, *ftmp;
8018 struct i40e_veb *veb = NULL;
8019 struct i40e_pf *pf;
8020 u16 uplink_seid;
8021 int i, n;
8022
8023 pf = vsi->back;
8024
8025 /* release of a VEB-owner or last VSI is not allowed */
8026 if (vsi->flags & I40E_VSI_FLAG_VEB_OWNER) {
8027 dev_info(&pf->pdev->dev, "VSI %d has existing VEB %d\n",
8028 vsi->seid, vsi->uplink_seid);
8029 return -ENODEV;
8030 }
8031 if (vsi == pf->vsi[pf->lan_vsi] &&
8032 !test_bit(__I40E_DOWN, &pf->state)) {
8033 dev_info(&pf->pdev->dev, "Can't remove PF VSI\n");
8034 return -ENODEV;
8035 }
8036
8037 uplink_seid = vsi->uplink_seid;
8038 if (vsi->type != I40E_VSI_SRIOV) {
8039 if (vsi->netdev_registered) {
8040 vsi->netdev_registered = false;
8041 if (vsi->netdev) {
8042 /* results in a call to i40e_close() */
8043 unregister_netdev(vsi->netdev);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008044 }
8045 } else {
Shannon Nelson90ef8d42014-03-14 07:32:26 +00008046 i40e_vsi_close(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008047 }
8048 i40e_vsi_disable_irq(vsi);
8049 }
8050
8051 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list)
8052 i40e_del_filter(vsi, f->macaddr, f->vlan,
8053 f->is_vf, f->is_netdev);
8054 i40e_sync_vsi_filters(vsi);
8055
8056 i40e_vsi_delete(vsi);
8057 i40e_vsi_free_q_vectors(vsi);
Shannon Nelsona4866592014-02-11 08:24:07 +00008058 if (vsi->netdev) {
8059 free_netdev(vsi->netdev);
8060 vsi->netdev = NULL;
8061 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008062 i40e_vsi_clear_rings(vsi);
8063 i40e_vsi_clear(vsi);
8064
8065 /* If this was the last thing on the VEB, except for the
8066 * controlling VSI, remove the VEB, which puts the controlling
8067 * VSI onto the next level down in the switch.
8068 *
8069 * Well, okay, there's one more exception here: don't remove
8070 * the orphan VEBs yet. We'll wait for an explicit remove request
8071 * from up the network stack.
8072 */
Mitch Williams505682c2014-05-20 08:01:37 +00008073 for (n = 0, i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008074 if (pf->vsi[i] &&
8075 pf->vsi[i]->uplink_seid == uplink_seid &&
8076 (pf->vsi[i]->flags & I40E_VSI_FLAG_VEB_OWNER) == 0) {
8077 n++; /* count the VSIs */
8078 }
8079 }
8080 for (i = 0; i < I40E_MAX_VEB; i++) {
8081 if (!pf->veb[i])
8082 continue;
8083 if (pf->veb[i]->uplink_seid == uplink_seid)
8084 n++; /* count the VEBs */
8085 if (pf->veb[i]->seid == uplink_seid)
8086 veb = pf->veb[i];
8087 }
8088 if (n == 0 && veb && veb->uplink_seid != 0)
8089 i40e_veb_release(veb);
8090
8091 return 0;
8092}
8093
8094/**
8095 * i40e_vsi_setup_vectors - Set up the q_vectors for the given VSI
8096 * @vsi: ptr to the VSI
8097 *
8098 * This should only be called after i40e_vsi_mem_alloc() which allocates the
8099 * corresponding SW VSI structure and initializes num_queue_pairs for the
8100 * newly allocated VSI.
8101 *
8102 * Returns 0 on success or negative on failure
8103 **/
8104static int i40e_vsi_setup_vectors(struct i40e_vsi *vsi)
8105{
8106 int ret = -ENOENT;
8107 struct i40e_pf *pf = vsi->back;
8108
Alexander Duyck493fb302013-09-28 07:01:44 +00008109 if (vsi->q_vectors[0]) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008110 dev_info(&pf->pdev->dev, "VSI %d has existing q_vectors\n",
8111 vsi->seid);
8112 return -EEXIST;
8113 }
8114
8115 if (vsi->base_vector) {
Jesse Brandeburgf29eaa32014-02-11 08:24:12 +00008116 dev_info(&pf->pdev->dev, "VSI %d has non-zero base vector %d\n",
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008117 vsi->seid, vsi->base_vector);
8118 return -EEXIST;
8119 }
8120
Greg Rose90e04072014-03-06 08:59:57 +00008121 ret = i40e_vsi_alloc_q_vectors(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008122 if (ret) {
8123 dev_info(&pf->pdev->dev,
8124 "failed to allocate %d q_vector for VSI %d, ret=%d\n",
8125 vsi->num_q_vectors, vsi->seid, ret);
8126 vsi->num_q_vectors = 0;
8127 goto vector_setup_out;
8128 }
8129
Shannon Nelson958a3e32013-09-28 07:13:28 +00008130 if (vsi->num_q_vectors)
8131 vsi->base_vector = i40e_get_lump(pf, pf->irq_pile,
8132 vsi->num_q_vectors, vsi->idx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008133 if (vsi->base_vector < 0) {
8134 dev_info(&pf->pdev->dev,
Shannon Nelson049a2be2014-10-17 03:14:50 +00008135 "failed to get tracking for %d vectors for VSI %d, err=%d\n",
8136 vsi->num_q_vectors, vsi->seid, vsi->base_vector);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008137 i40e_vsi_free_q_vectors(vsi);
8138 ret = -ENOENT;
8139 goto vector_setup_out;
8140 }
8141
8142vector_setup_out:
8143 return ret;
8144}
8145
8146/**
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00008147 * i40e_vsi_reinit_setup - return and reallocate resources for a VSI
8148 * @vsi: pointer to the vsi.
8149 *
8150 * This re-allocates a vsi's queue resources.
8151 *
8152 * Returns pointer to the successfully allocated and configured VSI sw struct
8153 * on success, otherwise returns NULL on failure.
8154 **/
8155static struct i40e_vsi *i40e_vsi_reinit_setup(struct i40e_vsi *vsi)
8156{
8157 struct i40e_pf *pf = vsi->back;
8158 u8 enabled_tc;
8159 int ret;
8160
8161 i40e_put_lump(pf->qp_pile, vsi->base_queue, vsi->idx);
8162 i40e_vsi_clear_rings(vsi);
8163
8164 i40e_vsi_free_arrays(vsi, false);
8165 i40e_set_num_rings_in_vsi(vsi);
8166 ret = i40e_vsi_alloc_arrays(vsi, false);
8167 if (ret)
8168 goto err_vsi;
8169
8170 ret = i40e_get_lump(pf, pf->qp_pile, vsi->alloc_queue_pairs, vsi->idx);
8171 if (ret < 0) {
Shannon Nelson049a2be2014-10-17 03:14:50 +00008172 dev_info(&pf->pdev->dev,
8173 "failed to get tracking for %d queues for VSI %d err=%d\n",
8174 vsi->alloc_queue_pairs, vsi->seid, ret);
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00008175 goto err_vsi;
8176 }
8177 vsi->base_queue = ret;
8178
8179 /* Update the FW view of the VSI. Force a reset of TC and queue
8180 * layout configurations.
8181 */
8182 enabled_tc = pf->vsi[pf->lan_vsi]->tc_config.enabled_tc;
8183 pf->vsi[pf->lan_vsi]->tc_config.enabled_tc = 0;
8184 pf->vsi[pf->lan_vsi]->seid = pf->main_vsi_seid;
8185 i40e_vsi_config_tc(pf->vsi[pf->lan_vsi], enabled_tc);
8186
8187 /* assign it some queues */
8188 ret = i40e_alloc_rings(vsi);
8189 if (ret)
8190 goto err_rings;
8191
8192 /* map all of the rings to the q_vectors */
8193 i40e_vsi_map_rings_to_vectors(vsi);
8194 return vsi;
8195
8196err_rings:
8197 i40e_vsi_free_q_vectors(vsi);
8198 if (vsi->netdev_registered) {
8199 vsi->netdev_registered = false;
8200 unregister_netdev(vsi->netdev);
8201 free_netdev(vsi->netdev);
8202 vsi->netdev = NULL;
8203 }
8204 i40e_aq_delete_element(&pf->hw, vsi->seid, NULL);
8205err_vsi:
8206 i40e_vsi_clear(vsi);
8207 return NULL;
8208}
8209
8210/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008211 * i40e_vsi_setup - Set up a VSI by a given type
8212 * @pf: board private structure
8213 * @type: VSI type
8214 * @uplink_seid: the switch element to link to
8215 * @param1: usage depends upon VSI type. For VF types, indicates VF id
8216 *
8217 * This allocates the sw VSI structure and its queue resources, then add a VSI
8218 * to the identified VEB.
8219 *
8220 * Returns pointer to the successfully allocated and configure VSI sw struct on
8221 * success, otherwise returns NULL on failure.
8222 **/
8223struct i40e_vsi *i40e_vsi_setup(struct i40e_pf *pf, u8 type,
8224 u16 uplink_seid, u32 param1)
8225{
8226 struct i40e_vsi *vsi = NULL;
8227 struct i40e_veb *veb = NULL;
8228 int ret, i;
8229 int v_idx;
8230
8231 /* The requested uplink_seid must be either
8232 * - the PF's port seid
8233 * no VEB is needed because this is the PF
8234 * or this is a Flow Director special case VSI
8235 * - seid of an existing VEB
8236 * - seid of a VSI that owns an existing VEB
8237 * - seid of a VSI that doesn't own a VEB
8238 * a new VEB is created and the VSI becomes the owner
8239 * - seid of the PF VSI, which is what creates the first VEB
8240 * this is a special case of the previous
8241 *
8242 * Find which uplink_seid we were given and create a new VEB if needed
8243 */
8244 for (i = 0; i < I40E_MAX_VEB; i++) {
8245 if (pf->veb[i] && pf->veb[i]->seid == uplink_seid) {
8246 veb = pf->veb[i];
8247 break;
8248 }
8249 }
8250
8251 if (!veb && uplink_seid != pf->mac_seid) {
8252
Mitch Williams505682c2014-05-20 08:01:37 +00008253 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008254 if (pf->vsi[i] && pf->vsi[i]->seid == uplink_seid) {
8255 vsi = pf->vsi[i];
8256 break;
8257 }
8258 }
8259 if (!vsi) {
8260 dev_info(&pf->pdev->dev, "no such uplink_seid %d\n",
8261 uplink_seid);
8262 return NULL;
8263 }
8264
8265 if (vsi->uplink_seid == pf->mac_seid)
8266 veb = i40e_veb_setup(pf, 0, pf->mac_seid, vsi->seid,
8267 vsi->tc_config.enabled_tc);
8268 else if ((vsi->flags & I40E_VSI_FLAG_VEB_OWNER) == 0)
8269 veb = i40e_veb_setup(pf, 0, vsi->uplink_seid, vsi->seid,
8270 vsi->tc_config.enabled_tc);
Anjali Singhai Jain79c21a82014-11-13 03:06:14 +00008271 if (veb) {
8272 if (vsi->seid != pf->vsi[pf->lan_vsi]->seid) {
8273 dev_info(&vsi->back->pdev->dev,
8274 "%s: New VSI creation error, uplink seid of LAN VSI expected.\n",
8275 __func__);
8276 return NULL;
8277 }
8278 i40e_enable_pf_switch_lb(pf);
8279 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008280 for (i = 0; i < I40E_MAX_VEB && !veb; i++) {
8281 if (pf->veb[i] && pf->veb[i]->seid == vsi->uplink_seid)
8282 veb = pf->veb[i];
8283 }
8284 if (!veb) {
8285 dev_info(&pf->pdev->dev, "couldn't add VEB\n");
8286 return NULL;
8287 }
8288
8289 vsi->flags |= I40E_VSI_FLAG_VEB_OWNER;
8290 uplink_seid = veb->seid;
8291 }
8292
8293 /* get vsi sw struct */
8294 v_idx = i40e_vsi_mem_alloc(pf, type);
8295 if (v_idx < 0)
8296 goto err_alloc;
8297 vsi = pf->vsi[v_idx];
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008298 if (!vsi)
8299 goto err_alloc;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008300 vsi->type = type;
8301 vsi->veb_idx = (veb ? veb->idx : I40E_NO_VEB);
8302
8303 if (type == I40E_VSI_MAIN)
8304 pf->lan_vsi = v_idx;
8305 else if (type == I40E_VSI_SRIOV)
8306 vsi->vf_id = param1;
8307 /* assign it some queues */
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008308 ret = i40e_get_lump(pf, pf->qp_pile, vsi->alloc_queue_pairs,
8309 vsi->idx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008310 if (ret < 0) {
Shannon Nelson049a2be2014-10-17 03:14:50 +00008311 dev_info(&pf->pdev->dev,
8312 "failed to get tracking for %d queues for VSI %d err=%d\n",
8313 vsi->alloc_queue_pairs, vsi->seid, ret);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008314 goto err_vsi;
8315 }
8316 vsi->base_queue = ret;
8317
8318 /* get a VSI from the hardware */
8319 vsi->uplink_seid = uplink_seid;
8320 ret = i40e_add_vsi(vsi);
8321 if (ret)
8322 goto err_vsi;
8323
8324 switch (vsi->type) {
8325 /* setup the netdev if needed */
8326 case I40E_VSI_MAIN:
8327 case I40E_VSI_VMDQ2:
Vasu Dev38e00432014-08-01 13:27:03 -07008328 case I40E_VSI_FCOE:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008329 ret = i40e_config_netdev(vsi);
8330 if (ret)
8331 goto err_netdev;
8332 ret = register_netdev(vsi->netdev);
8333 if (ret)
8334 goto err_netdev;
8335 vsi->netdev_registered = true;
8336 netif_carrier_off(vsi->netdev);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08008337#ifdef CONFIG_I40E_DCB
8338 /* Setup DCB netlink interface */
8339 i40e_dcbnl_setup(vsi);
8340#endif /* CONFIG_I40E_DCB */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008341 /* fall through */
8342
8343 case I40E_VSI_FDIR:
8344 /* set up vectors and rings if needed */
8345 ret = i40e_vsi_setup_vectors(vsi);
8346 if (ret)
8347 goto err_msix;
8348
8349 ret = i40e_alloc_rings(vsi);
8350 if (ret)
8351 goto err_rings;
8352
8353 /* map all of the rings to the q_vectors */
8354 i40e_vsi_map_rings_to_vectors(vsi);
8355
8356 i40e_vsi_reset_stats(vsi);
8357 break;
8358
8359 default:
8360 /* no netdev or rings for the other VSI types */
8361 break;
8362 }
8363
8364 return vsi;
8365
8366err_rings:
8367 i40e_vsi_free_q_vectors(vsi);
8368err_msix:
8369 if (vsi->netdev_registered) {
8370 vsi->netdev_registered = false;
8371 unregister_netdev(vsi->netdev);
8372 free_netdev(vsi->netdev);
8373 vsi->netdev = NULL;
8374 }
8375err_netdev:
8376 i40e_aq_delete_element(&pf->hw, vsi->seid, NULL);
8377err_vsi:
8378 i40e_vsi_clear(vsi);
8379err_alloc:
8380 return NULL;
8381}
8382
8383/**
8384 * i40e_veb_get_bw_info - Query VEB BW information
8385 * @veb: the veb to query
8386 *
8387 * Query the Tx scheduler BW configuration data for given VEB
8388 **/
8389static int i40e_veb_get_bw_info(struct i40e_veb *veb)
8390{
8391 struct i40e_aqc_query_switching_comp_ets_config_resp ets_data;
8392 struct i40e_aqc_query_switching_comp_bw_config_resp bw_data;
8393 struct i40e_pf *pf = veb->pf;
8394 struct i40e_hw *hw = &pf->hw;
8395 u32 tc_bw_max;
8396 int ret = 0;
8397 int i;
8398
8399 ret = i40e_aq_query_switch_comp_bw_config(hw, veb->seid,
8400 &bw_data, NULL);
8401 if (ret) {
8402 dev_info(&pf->pdev->dev,
8403 "query veb bw config failed, aq_err=%d\n",
8404 hw->aq.asq_last_status);
8405 goto out;
8406 }
8407
8408 ret = i40e_aq_query_switch_comp_ets_config(hw, veb->seid,
8409 &ets_data, NULL);
8410 if (ret) {
8411 dev_info(&pf->pdev->dev,
8412 "query veb bw ets config failed, aq_err=%d\n",
8413 hw->aq.asq_last_status);
8414 goto out;
8415 }
8416
8417 veb->bw_limit = le16_to_cpu(ets_data.port_bw_limit);
8418 veb->bw_max_quanta = ets_data.tc_bw_max;
8419 veb->is_abs_credits = bw_data.absolute_credits_enable;
Neerav Parikh23cd1f02014-11-12 00:18:41 +00008420 veb->enabled_tc = ets_data.tc_valid_bits;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008421 tc_bw_max = le16_to_cpu(bw_data.tc_bw_max[0]) |
8422 (le16_to_cpu(bw_data.tc_bw_max[1]) << 16);
8423 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
8424 veb->bw_tc_share_credits[i] = bw_data.tc_bw_share_credits[i];
8425 veb->bw_tc_limit_credits[i] =
8426 le16_to_cpu(bw_data.tc_bw_limits[i]);
8427 veb->bw_tc_max_quanta[i] = ((tc_bw_max >> (i*4)) & 0x7);
8428 }
8429
8430out:
8431 return ret;
8432}
8433
8434/**
8435 * i40e_veb_mem_alloc - Allocates the next available struct veb in the PF
8436 * @pf: board private structure
8437 *
8438 * On error: returns error code (negative)
8439 * On success: returns vsi index in PF (positive)
8440 **/
8441static int i40e_veb_mem_alloc(struct i40e_pf *pf)
8442{
8443 int ret = -ENOENT;
8444 struct i40e_veb *veb;
8445 int i;
8446
8447 /* Need to protect the allocation of switch elements at the PF level */
8448 mutex_lock(&pf->switch_mutex);
8449
8450 /* VEB list may be fragmented if VEB creation/destruction has
8451 * been happening. We can afford to do a quick scan to look
8452 * for any free slots in the list.
8453 *
8454 * find next empty veb slot, looping back around if necessary
8455 */
8456 i = 0;
8457 while ((i < I40E_MAX_VEB) && (pf->veb[i] != NULL))
8458 i++;
8459 if (i >= I40E_MAX_VEB) {
8460 ret = -ENOMEM;
8461 goto err_alloc_veb; /* out of VEB slots! */
8462 }
8463
8464 veb = kzalloc(sizeof(*veb), GFP_KERNEL);
8465 if (!veb) {
8466 ret = -ENOMEM;
8467 goto err_alloc_veb;
8468 }
8469 veb->pf = pf;
8470 veb->idx = i;
8471 veb->enabled_tc = 1;
8472
8473 pf->veb[i] = veb;
8474 ret = i;
8475err_alloc_veb:
8476 mutex_unlock(&pf->switch_mutex);
8477 return ret;
8478}
8479
8480/**
8481 * i40e_switch_branch_release - Delete a branch of the switch tree
8482 * @branch: where to start deleting
8483 *
8484 * This uses recursion to find the tips of the branch to be
8485 * removed, deleting until we get back to and can delete this VEB.
8486 **/
8487static void i40e_switch_branch_release(struct i40e_veb *branch)
8488{
8489 struct i40e_pf *pf = branch->pf;
8490 u16 branch_seid = branch->seid;
8491 u16 veb_idx = branch->idx;
8492 int i;
8493
8494 /* release any VEBs on this VEB - RECURSION */
8495 for (i = 0; i < I40E_MAX_VEB; i++) {
8496 if (!pf->veb[i])
8497 continue;
8498 if (pf->veb[i]->uplink_seid == branch->seid)
8499 i40e_switch_branch_release(pf->veb[i]);
8500 }
8501
8502 /* Release the VSIs on this VEB, but not the owner VSI.
8503 *
8504 * NOTE: Removing the last VSI on a VEB has the SIDE EFFECT of removing
8505 * the VEB itself, so don't use (*branch) after this loop.
8506 */
Mitch Williams505682c2014-05-20 08:01:37 +00008507 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008508 if (!pf->vsi[i])
8509 continue;
8510 if (pf->vsi[i]->uplink_seid == branch_seid &&
8511 (pf->vsi[i]->flags & I40E_VSI_FLAG_VEB_OWNER) == 0) {
8512 i40e_vsi_release(pf->vsi[i]);
8513 }
8514 }
8515
8516 /* There's one corner case where the VEB might not have been
8517 * removed, so double check it here and remove it if needed.
8518 * This case happens if the veb was created from the debugfs
8519 * commands and no VSIs were added to it.
8520 */
8521 if (pf->veb[veb_idx])
8522 i40e_veb_release(pf->veb[veb_idx]);
8523}
8524
8525/**
8526 * i40e_veb_clear - remove veb struct
8527 * @veb: the veb to remove
8528 **/
8529static void i40e_veb_clear(struct i40e_veb *veb)
8530{
8531 if (!veb)
8532 return;
8533
8534 if (veb->pf) {
8535 struct i40e_pf *pf = veb->pf;
8536
8537 mutex_lock(&pf->switch_mutex);
8538 if (pf->veb[veb->idx] == veb)
8539 pf->veb[veb->idx] = NULL;
8540 mutex_unlock(&pf->switch_mutex);
8541 }
8542
8543 kfree(veb);
8544}
8545
8546/**
8547 * i40e_veb_release - Delete a VEB and free its resources
8548 * @veb: the VEB being removed
8549 **/
8550void i40e_veb_release(struct i40e_veb *veb)
8551{
8552 struct i40e_vsi *vsi = NULL;
8553 struct i40e_pf *pf;
8554 int i, n = 0;
8555
8556 pf = veb->pf;
8557
8558 /* find the remaining VSI and check for extras */
Mitch Williams505682c2014-05-20 08:01:37 +00008559 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008560 if (pf->vsi[i] && pf->vsi[i]->uplink_seid == veb->seid) {
8561 n++;
8562 vsi = pf->vsi[i];
8563 }
8564 }
8565 if (n != 1) {
8566 dev_info(&pf->pdev->dev,
8567 "can't remove VEB %d with %d VSIs left\n",
8568 veb->seid, n);
8569 return;
8570 }
8571
8572 /* move the remaining VSI to uplink veb */
8573 vsi->flags &= ~I40E_VSI_FLAG_VEB_OWNER;
8574 if (veb->uplink_seid) {
8575 vsi->uplink_seid = veb->uplink_seid;
8576 if (veb->uplink_seid == pf->mac_seid)
8577 vsi->veb_idx = I40E_NO_VEB;
8578 else
8579 vsi->veb_idx = veb->veb_idx;
8580 } else {
8581 /* floating VEB */
8582 vsi->uplink_seid = pf->vsi[pf->lan_vsi]->uplink_seid;
8583 vsi->veb_idx = pf->vsi[pf->lan_vsi]->veb_idx;
8584 }
8585
8586 i40e_aq_delete_element(&pf->hw, veb->seid, NULL);
8587 i40e_veb_clear(veb);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008588}
8589
8590/**
8591 * i40e_add_veb - create the VEB in the switch
8592 * @veb: the VEB to be instantiated
8593 * @vsi: the controlling VSI
8594 **/
8595static int i40e_add_veb(struct i40e_veb *veb, struct i40e_vsi *vsi)
8596{
Greg Rose56747262013-11-28 06:39:37 +00008597 bool is_default = false;
Kevin Scotte1c51b952013-11-20 10:02:51 +00008598 bool is_cloud = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008599 int ret;
8600
8601 /* get a VEB from the hardware */
8602 ret = i40e_aq_add_veb(&veb->pf->hw, veb->uplink_seid, vsi->seid,
Kevin Scotte1c51b952013-11-20 10:02:51 +00008603 veb->enabled_tc, is_default,
8604 is_cloud, &veb->seid, NULL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008605 if (ret) {
8606 dev_info(&veb->pf->pdev->dev,
8607 "couldn't add VEB, err %d, aq_err %d\n",
8608 ret, veb->pf->hw.aq.asq_last_status);
8609 return -EPERM;
8610 }
8611
8612 /* get statistics counter */
8613 ret = i40e_aq_get_veb_parameters(&veb->pf->hw, veb->seid, NULL, NULL,
8614 &veb->stats_idx, NULL, NULL, NULL);
8615 if (ret) {
8616 dev_info(&veb->pf->pdev->dev,
8617 "couldn't get VEB statistics idx, err %d, aq_err %d\n",
8618 ret, veb->pf->hw.aq.asq_last_status);
8619 return -EPERM;
8620 }
8621 ret = i40e_veb_get_bw_info(veb);
8622 if (ret) {
8623 dev_info(&veb->pf->pdev->dev,
8624 "couldn't get VEB bw info, err %d, aq_err %d\n",
8625 ret, veb->pf->hw.aq.asq_last_status);
8626 i40e_aq_delete_element(&veb->pf->hw, veb->seid, NULL);
8627 return -ENOENT;
8628 }
8629
8630 vsi->uplink_seid = veb->seid;
8631 vsi->veb_idx = veb->idx;
8632 vsi->flags |= I40E_VSI_FLAG_VEB_OWNER;
8633
8634 return 0;
8635}
8636
8637/**
8638 * i40e_veb_setup - Set up a VEB
8639 * @pf: board private structure
8640 * @flags: VEB setup flags
8641 * @uplink_seid: the switch element to link to
8642 * @vsi_seid: the initial VSI seid
8643 * @enabled_tc: Enabled TC bit-map
8644 *
8645 * This allocates the sw VEB structure and links it into the switch
8646 * It is possible and legal for this to be a duplicate of an already
8647 * existing VEB. It is also possible for both uplink and vsi seids
8648 * to be zero, in order to create a floating VEB.
8649 *
8650 * Returns pointer to the successfully allocated VEB sw struct on
8651 * success, otherwise returns NULL on failure.
8652 **/
8653struct i40e_veb *i40e_veb_setup(struct i40e_pf *pf, u16 flags,
8654 u16 uplink_seid, u16 vsi_seid,
8655 u8 enabled_tc)
8656{
8657 struct i40e_veb *veb, *uplink_veb = NULL;
8658 int vsi_idx, veb_idx;
8659 int ret;
8660
8661 /* if one seid is 0, the other must be 0 to create a floating relay */
8662 if ((uplink_seid == 0 || vsi_seid == 0) &&
8663 (uplink_seid + vsi_seid != 0)) {
8664 dev_info(&pf->pdev->dev,
8665 "one, not both seid's are 0: uplink=%d vsi=%d\n",
8666 uplink_seid, vsi_seid);
8667 return NULL;
8668 }
8669
8670 /* make sure there is such a vsi and uplink */
Mitch Williams505682c2014-05-20 08:01:37 +00008671 for (vsi_idx = 0; vsi_idx < pf->num_alloc_vsi; vsi_idx++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008672 if (pf->vsi[vsi_idx] && pf->vsi[vsi_idx]->seid == vsi_seid)
8673 break;
Mitch Williams505682c2014-05-20 08:01:37 +00008674 if (vsi_idx >= pf->num_alloc_vsi && vsi_seid != 0) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008675 dev_info(&pf->pdev->dev, "vsi seid %d not found\n",
8676 vsi_seid);
8677 return NULL;
8678 }
8679
8680 if (uplink_seid && uplink_seid != pf->mac_seid) {
8681 for (veb_idx = 0; veb_idx < I40E_MAX_VEB; veb_idx++) {
8682 if (pf->veb[veb_idx] &&
8683 pf->veb[veb_idx]->seid == uplink_seid) {
8684 uplink_veb = pf->veb[veb_idx];
8685 break;
8686 }
8687 }
8688 if (!uplink_veb) {
8689 dev_info(&pf->pdev->dev,
8690 "uplink seid %d not found\n", uplink_seid);
8691 return NULL;
8692 }
8693 }
8694
8695 /* get veb sw struct */
8696 veb_idx = i40e_veb_mem_alloc(pf);
8697 if (veb_idx < 0)
8698 goto err_alloc;
8699 veb = pf->veb[veb_idx];
8700 veb->flags = flags;
8701 veb->uplink_seid = uplink_seid;
8702 veb->veb_idx = (uplink_veb ? uplink_veb->idx : I40E_NO_VEB);
8703 veb->enabled_tc = (enabled_tc ? enabled_tc : 0x1);
8704
8705 /* create the VEB in the switch */
8706 ret = i40e_add_veb(veb, pf->vsi[vsi_idx]);
8707 if (ret)
8708 goto err_veb;
Shannon Nelson1bb8b932014-04-23 04:49:54 +00008709 if (vsi_idx == pf->lan_vsi)
8710 pf->lan_veb = veb->idx;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008711
8712 return veb;
8713
8714err_veb:
8715 i40e_veb_clear(veb);
8716err_alloc:
8717 return NULL;
8718}
8719
8720/**
8721 * i40e_setup_pf_switch_element - set pf vars based on switch type
8722 * @pf: board private structure
8723 * @ele: element we are building info from
8724 * @num_reported: total number of elements
8725 * @printconfig: should we print the contents
8726 *
8727 * helper function to assist in extracting a few useful SEID values.
8728 **/
8729static void i40e_setup_pf_switch_element(struct i40e_pf *pf,
8730 struct i40e_aqc_switch_config_element_resp *ele,
8731 u16 num_reported, bool printconfig)
8732{
8733 u16 downlink_seid = le16_to_cpu(ele->downlink_seid);
8734 u16 uplink_seid = le16_to_cpu(ele->uplink_seid);
8735 u8 element_type = ele->element_type;
8736 u16 seid = le16_to_cpu(ele->seid);
8737
8738 if (printconfig)
8739 dev_info(&pf->pdev->dev,
8740 "type=%d seid=%d uplink=%d downlink=%d\n",
8741 element_type, seid, uplink_seid, downlink_seid);
8742
8743 switch (element_type) {
8744 case I40E_SWITCH_ELEMENT_TYPE_MAC:
8745 pf->mac_seid = seid;
8746 break;
8747 case I40E_SWITCH_ELEMENT_TYPE_VEB:
8748 /* Main VEB? */
8749 if (uplink_seid != pf->mac_seid)
8750 break;
8751 if (pf->lan_veb == I40E_NO_VEB) {
8752 int v;
8753
8754 /* find existing or else empty VEB */
8755 for (v = 0; v < I40E_MAX_VEB; v++) {
8756 if (pf->veb[v] && (pf->veb[v]->seid == seid)) {
8757 pf->lan_veb = v;
8758 break;
8759 }
8760 }
8761 if (pf->lan_veb == I40E_NO_VEB) {
8762 v = i40e_veb_mem_alloc(pf);
8763 if (v < 0)
8764 break;
8765 pf->lan_veb = v;
8766 }
8767 }
8768
8769 pf->veb[pf->lan_veb]->seid = seid;
8770 pf->veb[pf->lan_veb]->uplink_seid = pf->mac_seid;
8771 pf->veb[pf->lan_veb]->pf = pf;
8772 pf->veb[pf->lan_veb]->veb_idx = I40E_NO_VEB;
8773 break;
8774 case I40E_SWITCH_ELEMENT_TYPE_VSI:
8775 if (num_reported != 1)
8776 break;
8777 /* This is immediately after a reset so we can assume this is
8778 * the PF's VSI
8779 */
8780 pf->mac_seid = uplink_seid;
8781 pf->pf_seid = downlink_seid;
8782 pf->main_vsi_seid = seid;
8783 if (printconfig)
8784 dev_info(&pf->pdev->dev,
8785 "pf_seid=%d main_vsi_seid=%d\n",
8786 pf->pf_seid, pf->main_vsi_seid);
8787 break;
8788 case I40E_SWITCH_ELEMENT_TYPE_PF:
8789 case I40E_SWITCH_ELEMENT_TYPE_VF:
8790 case I40E_SWITCH_ELEMENT_TYPE_EMP:
8791 case I40E_SWITCH_ELEMENT_TYPE_BMC:
8792 case I40E_SWITCH_ELEMENT_TYPE_PE:
8793 case I40E_SWITCH_ELEMENT_TYPE_PA:
8794 /* ignore these for now */
8795 break;
8796 default:
8797 dev_info(&pf->pdev->dev, "unknown element type=%d seid=%d\n",
8798 element_type, seid);
8799 break;
8800 }
8801}
8802
8803/**
8804 * i40e_fetch_switch_configuration - Get switch config from firmware
8805 * @pf: board private structure
8806 * @printconfig: should we print the contents
8807 *
8808 * Get the current switch configuration from the device and
8809 * extract a few useful SEID values.
8810 **/
8811int i40e_fetch_switch_configuration(struct i40e_pf *pf, bool printconfig)
8812{
8813 struct i40e_aqc_get_switch_config_resp *sw_config;
8814 u16 next_seid = 0;
8815 int ret = 0;
8816 u8 *aq_buf;
8817 int i;
8818
8819 aq_buf = kzalloc(I40E_AQ_LARGE_BUF, GFP_KERNEL);
8820 if (!aq_buf)
8821 return -ENOMEM;
8822
8823 sw_config = (struct i40e_aqc_get_switch_config_resp *)aq_buf;
8824 do {
8825 u16 num_reported, num_total;
8826
8827 ret = i40e_aq_get_switch_config(&pf->hw, sw_config,
8828 I40E_AQ_LARGE_BUF,
8829 &next_seid, NULL);
8830 if (ret) {
8831 dev_info(&pf->pdev->dev,
8832 "get switch config failed %d aq_err=%x\n",
8833 ret, pf->hw.aq.asq_last_status);
8834 kfree(aq_buf);
8835 return -ENOENT;
8836 }
8837
8838 num_reported = le16_to_cpu(sw_config->header.num_reported);
8839 num_total = le16_to_cpu(sw_config->header.num_total);
8840
8841 if (printconfig)
8842 dev_info(&pf->pdev->dev,
8843 "header: %d reported %d total\n",
8844 num_reported, num_total);
8845
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008846 for (i = 0; i < num_reported; i++) {
8847 struct i40e_aqc_switch_config_element_resp *ele =
8848 &sw_config->element[i];
8849
8850 i40e_setup_pf_switch_element(pf, ele, num_reported,
8851 printconfig);
8852 }
8853 } while (next_seid != 0);
8854
8855 kfree(aq_buf);
8856 return ret;
8857}
8858
8859/**
8860 * i40e_setup_pf_switch - Setup the HW switch on startup or after reset
8861 * @pf: board private structure
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00008862 * @reinit: if the Main VSI needs to re-initialized.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008863 *
8864 * Returns 0 on success, negative value on failure
8865 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00008866static int i40e_setup_pf_switch(struct i40e_pf *pf, bool reinit)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008867{
8868 int ret;
8869
8870 /* find out what's out there already */
8871 ret = i40e_fetch_switch_configuration(pf, false);
8872 if (ret) {
8873 dev_info(&pf->pdev->dev,
8874 "couldn't fetch switch config, err %d, aq_err %d\n",
8875 ret, pf->hw.aq.asq_last_status);
8876 return ret;
8877 }
8878 i40e_pf_reset_stats(pf);
8879
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008880 /* first time setup */
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00008881 if (pf->lan_vsi == I40E_NO_VSI || reinit) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008882 struct i40e_vsi *vsi = NULL;
8883 u16 uplink_seid;
8884
8885 /* Set up the PF VSI associated with the PF's main VSI
8886 * that is already in the HW switch
8887 */
8888 if (pf->lan_veb != I40E_NO_VEB && pf->veb[pf->lan_veb])
8889 uplink_seid = pf->veb[pf->lan_veb]->seid;
8890 else
8891 uplink_seid = pf->mac_seid;
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00008892 if (pf->lan_vsi == I40E_NO_VSI)
8893 vsi = i40e_vsi_setup(pf, I40E_VSI_MAIN, uplink_seid, 0);
8894 else if (reinit)
8895 vsi = i40e_vsi_reinit_setup(pf->vsi[pf->lan_vsi]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008896 if (!vsi) {
8897 dev_info(&pf->pdev->dev, "setup of MAIN VSI failed\n");
8898 i40e_fdir_teardown(pf);
8899 return -EAGAIN;
8900 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008901 } else {
8902 /* force a reset of TC and queue layout configurations */
8903 u8 enabled_tc = pf->vsi[pf->lan_vsi]->tc_config.enabled_tc;
8904 pf->vsi[pf->lan_vsi]->tc_config.enabled_tc = 0;
8905 pf->vsi[pf->lan_vsi]->seid = pf->main_vsi_seid;
8906 i40e_vsi_config_tc(pf->vsi[pf->lan_vsi], enabled_tc);
8907 }
8908 i40e_vlan_stripping_disable(pf->vsi[pf->lan_vsi]);
8909
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008910 i40e_fdir_sb_setup(pf);
8911
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008912 /* Setup static PF queue filter control settings */
8913 ret = i40e_setup_pf_filter_control(pf);
8914 if (ret) {
8915 dev_info(&pf->pdev->dev, "setup_pf_filter_control failed: %d\n",
8916 ret);
8917 /* Failure here should not stop continuing other steps */
8918 }
8919
8920 /* enable RSS in the HW, even for only one queue, as the stack can use
8921 * the hash
8922 */
8923 if ((pf->flags & I40E_FLAG_RSS_ENABLED))
8924 i40e_config_rss(pf);
8925
8926 /* fill in link information and enable LSE reporting */
Catherine Sullivan8109e122014-06-04 08:45:24 +00008927 i40e_update_link_info(&pf->hw, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008928 i40e_link_event(pf);
8929
Jesse Brandeburgd52c20b2013-11-26 10:49:15 +00008930 /* Initialize user-specific link properties */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008931 pf->fc_autoneg_status = ((pf->hw.phy.link_info.an_info &
8932 I40E_AQ_AN_COMPLETED) ? true : false);
Jesse Brandeburgd52c20b2013-11-26 10:49:15 +00008933
Mitch Williamsa34a6712014-09-13 07:40:46 +00008934 /* fill in link information and enable LSE reporting */
8935 i40e_update_link_info(&pf->hw, true);
8936 i40e_link_event(pf);
8937
8938 /* Initialize user-specific link properties */
8939 pf->fc_autoneg_status = ((pf->hw.phy.link_info.an_info &
8940 I40E_AQ_AN_COMPLETED) ? true : false);
8941
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00008942 i40e_ptp_init(pf);
8943
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008944 return ret;
8945}
8946
8947/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008948 * i40e_determine_queue_usage - Work out queue distribution
8949 * @pf: board private structure
8950 **/
8951static void i40e_determine_queue_usage(struct i40e_pf *pf)
8952{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008953 int queues_left;
8954
8955 pf->num_lan_qps = 0;
Vasu Dev38e00432014-08-01 13:27:03 -07008956#ifdef I40E_FCOE
8957 pf->num_fcoe_qps = 0;
8958#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008959
8960 /* Find the max queues to be put into basic use. We'll always be
8961 * using TC0, whether or not DCB is running, and TC0 will get the
8962 * big RSS set.
8963 */
8964 queues_left = pf->hw.func_caps.num_tx_qp;
8965
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008966 if ((queues_left == 1) ||
Frank Zhang9aa7e932014-05-20 08:01:42 +00008967 !(pf->flags & I40E_FLAG_MSIX_ENABLED)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008968 /* one qp for PF, no queues for anything else */
8969 queues_left = 0;
8970 pf->rss_size = pf->num_lan_qps = 1;
8971
8972 /* make sure all the fancies are disabled */
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08008973 pf->flags &= ~(I40E_FLAG_RSS_ENABLED |
Vasu Dev38e00432014-08-01 13:27:03 -07008974#ifdef I40E_FCOE
8975 I40E_FLAG_FCOE_ENABLED |
8976#endif
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08008977 I40E_FLAG_FD_SB_ENABLED |
8978 I40E_FLAG_FD_ATR_ENABLED |
Neerav Parikh4d9b6042014-05-22 06:31:51 +00008979 I40E_FLAG_DCB_CAPABLE |
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08008980 I40E_FLAG_SRIOV_ENABLED |
8981 I40E_FLAG_VMDQ_ENABLED);
Frank Zhang9aa7e932014-05-20 08:01:42 +00008982 } else if (!(pf->flags & (I40E_FLAG_RSS_ENABLED |
8983 I40E_FLAG_FD_SB_ENABLED |
Anjali Singhai Jainbbe7d0e2014-05-20 08:01:44 +00008984 I40E_FLAG_FD_ATR_ENABLED |
Neerav Parikh4d9b6042014-05-22 06:31:51 +00008985 I40E_FLAG_DCB_CAPABLE))) {
Frank Zhang9aa7e932014-05-20 08:01:42 +00008986 /* one qp for PF */
8987 pf->rss_size = pf->num_lan_qps = 1;
8988 queues_left -= pf->num_lan_qps;
8989
8990 pf->flags &= ~(I40E_FLAG_RSS_ENABLED |
Vasu Dev38e00432014-08-01 13:27:03 -07008991#ifdef I40E_FCOE
8992 I40E_FLAG_FCOE_ENABLED |
8993#endif
Frank Zhang9aa7e932014-05-20 08:01:42 +00008994 I40E_FLAG_FD_SB_ENABLED |
8995 I40E_FLAG_FD_ATR_ENABLED |
8996 I40E_FLAG_DCB_ENABLED |
8997 I40E_FLAG_VMDQ_ENABLED);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008998 } else {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008999 /* Not enough queues for all TCs */
Neerav Parikh4d9b6042014-05-22 06:31:51 +00009000 if ((pf->flags & I40E_FLAG_DCB_CAPABLE) &&
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08009001 (queues_left < I40E_MAX_TRAFFIC_CLASS)) {
Neerav Parikh4d9b6042014-05-22 06:31:51 +00009002 pf->flags &= ~I40E_FLAG_DCB_CAPABLE;
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08009003 dev_info(&pf->pdev->dev, "not enough queues for DCB. DCB is disabled.\n");
9004 }
9005 pf->num_lan_qps = pf->rss_size_max;
9006 queues_left -= pf->num_lan_qps;
9007 }
9008
Vasu Dev38e00432014-08-01 13:27:03 -07009009#ifdef I40E_FCOE
9010 if (pf->flags & I40E_FLAG_FCOE_ENABLED) {
9011 if (I40E_DEFAULT_FCOE <= queues_left) {
9012 pf->num_fcoe_qps = I40E_DEFAULT_FCOE;
9013 } else if (I40E_MINIMUM_FCOE <= queues_left) {
9014 pf->num_fcoe_qps = I40E_MINIMUM_FCOE;
9015 } else {
9016 pf->num_fcoe_qps = 0;
9017 pf->flags &= ~I40E_FLAG_FCOE_ENABLED;
9018 dev_info(&pf->pdev->dev, "not enough queues for FCoE. FCoE feature will be disabled\n");
9019 }
9020
9021 queues_left -= pf->num_fcoe_qps;
9022 }
9023
9024#endif
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08009025 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
9026 if (queues_left > 1) {
9027 queues_left -= 1; /* save 1 queue for FD */
9028 } else {
9029 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
9030 dev_info(&pf->pdev->dev, "not enough queues for Flow Director. Flow Director feature is disabled\n");
9031 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009032 }
9033
9034 if ((pf->flags & I40E_FLAG_SRIOV_ENABLED) &&
9035 pf->num_vf_qps && pf->num_req_vfs && queues_left) {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08009036 pf->num_req_vfs = min_t(int, pf->num_req_vfs,
9037 (queues_left / pf->num_vf_qps));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009038 queues_left -= (pf->num_req_vfs * pf->num_vf_qps);
9039 }
9040
9041 if ((pf->flags & I40E_FLAG_VMDQ_ENABLED) &&
9042 pf->num_vmdq_vsis && pf->num_vmdq_qps && queues_left) {
9043 pf->num_vmdq_vsis = min_t(int, pf->num_vmdq_vsis,
9044 (queues_left / pf->num_vmdq_qps));
9045 queues_left -= (pf->num_vmdq_vsis * pf->num_vmdq_qps);
9046 }
9047
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00009048 pf->queues_left = queues_left;
Vasu Dev38e00432014-08-01 13:27:03 -07009049#ifdef I40E_FCOE
9050 dev_info(&pf->pdev->dev, "fcoe queues = %d\n", pf->num_fcoe_qps);
9051#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009052}
9053
9054/**
9055 * i40e_setup_pf_filter_control - Setup PF static filter control
9056 * @pf: PF to be setup
9057 *
9058 * i40e_setup_pf_filter_control sets up a pf's initial filter control
9059 * settings. If PE/FCoE are enabled then it will also set the per PF
9060 * based filter sizes required for them. It also enables Flow director,
9061 * ethertype and macvlan type filter settings for the pf.
9062 *
9063 * Returns 0 on success, negative on failure
9064 **/
9065static int i40e_setup_pf_filter_control(struct i40e_pf *pf)
9066{
9067 struct i40e_filter_control_settings *settings = &pf->filter_settings;
9068
9069 settings->hash_lut_size = I40E_HASH_LUT_SIZE_128;
9070
9071 /* Flow Director is enabled */
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08009072 if (pf->flags & (I40E_FLAG_FD_SB_ENABLED | I40E_FLAG_FD_ATR_ENABLED))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009073 settings->enable_fdir = true;
9074
9075 /* Ethtype and MACVLAN filters enabled for PF */
9076 settings->enable_ethtype = true;
9077 settings->enable_macvlan = true;
9078
9079 if (i40e_set_filter_control(&pf->hw, settings))
9080 return -ENOENT;
9081
9082 return 0;
9083}
9084
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00009085#define INFO_STRING_LEN 255
9086static void i40e_print_features(struct i40e_pf *pf)
9087{
9088 struct i40e_hw *hw = &pf->hw;
9089 char *buf, *string;
9090
9091 string = kzalloc(INFO_STRING_LEN, GFP_KERNEL);
9092 if (!string) {
9093 dev_err(&pf->pdev->dev, "Features string allocation failed\n");
9094 return;
9095 }
9096
9097 buf = string;
9098
9099 buf += sprintf(string, "Features: PF-id[%d] ", hw->pf_id);
9100#ifdef CONFIG_PCI_IOV
9101 buf += sprintf(buf, "VFs: %d ", pf->num_req_vfs);
9102#endif
9103 buf += sprintf(buf, "VSIs: %d QP: %d ", pf->hw.func_caps.num_vsis,
9104 pf->vsi[pf->lan_vsi]->num_queue_pairs);
9105
9106 if (pf->flags & I40E_FLAG_RSS_ENABLED)
9107 buf += sprintf(buf, "RSS ");
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00009108 if (pf->flags & I40E_FLAG_FD_ATR_ENABLED)
Akeem G Abodunrinc6423ff2014-05-10 04:49:08 +00009109 buf += sprintf(buf, "FD_ATR ");
9110 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
9111 buf += sprintf(buf, "FD_SB ");
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00009112 buf += sprintf(buf, "NTUPLE ");
Akeem G Abodunrinc6423ff2014-05-10 04:49:08 +00009113 }
Neerav Parikh4d9b6042014-05-22 06:31:51 +00009114 if (pf->flags & I40E_FLAG_DCB_CAPABLE)
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00009115 buf += sprintf(buf, "DCB ");
9116 if (pf->flags & I40E_FLAG_PTP)
9117 buf += sprintf(buf, "PTP ");
Vasu Dev38e00432014-08-01 13:27:03 -07009118#ifdef I40E_FCOE
9119 if (pf->flags & I40E_FLAG_FCOE_ENABLED)
9120 buf += sprintf(buf, "FCOE ");
9121#endif
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00009122
9123 BUG_ON(buf > (string + INFO_STRING_LEN));
9124 dev_info(&pf->pdev->dev, "%s\n", string);
9125 kfree(string);
9126}
9127
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009128/**
9129 * i40e_probe - Device initialization routine
9130 * @pdev: PCI device information struct
9131 * @ent: entry in i40e_pci_tbl
9132 *
9133 * i40e_probe initializes a pf identified by a pci_dev structure.
9134 * The OS initialization, configuring of the pf private structure,
9135 * and a hardware reset occur.
9136 *
9137 * Returns 0 on success, negative on failure
9138 **/
9139static int i40e_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
9140{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009141 struct i40e_pf *pf;
9142 struct i40e_hw *hw;
Anjali Singhai Jain93cd7652013-11-20 10:03:01 +00009143 static u16 pfs_found;
Catherine Sullivand4dfb812013-11-28 06:39:21 +00009144 u16 link_status;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009145 int err = 0;
9146 u32 len;
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00009147 u32 i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009148
9149 err = pci_enable_device_mem(pdev);
9150 if (err)
9151 return err;
9152
9153 /* set up for high or low dma */
Mitch Williams64942942014-02-11 08:26:33 +00009154 err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64));
Mitch Williams64942942014-02-11 08:26:33 +00009155 if (err) {
Jean Sacrene3e3bfd2014-03-25 04:30:27 +00009156 err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
9157 if (err) {
9158 dev_err(&pdev->dev,
9159 "DMA configuration failed: 0x%x\n", err);
9160 goto err_dma;
9161 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009162 }
9163
9164 /* set up pci connections */
9165 err = pci_request_selected_regions(pdev, pci_select_bars(pdev,
9166 IORESOURCE_MEM), i40e_driver_name);
9167 if (err) {
9168 dev_info(&pdev->dev,
9169 "pci_request_selected_regions failed %d\n", err);
9170 goto err_pci_reg;
9171 }
9172
9173 pci_enable_pcie_error_reporting(pdev);
9174 pci_set_master(pdev);
9175
9176 /* Now that we have a PCI connection, we need to do the
9177 * low level device setup. This is primarily setting up
9178 * the Admin Queue structures and then querying for the
9179 * device's current profile information.
9180 */
9181 pf = kzalloc(sizeof(*pf), GFP_KERNEL);
9182 if (!pf) {
9183 err = -ENOMEM;
9184 goto err_pf_alloc;
9185 }
9186 pf->next_vsi = 0;
9187 pf->pdev = pdev;
9188 set_bit(__I40E_DOWN, &pf->state);
9189
9190 hw = &pf->hw;
9191 hw->back = pf;
9192 hw->hw_addr = ioremap(pci_resource_start(pdev, 0),
9193 pci_resource_len(pdev, 0));
9194 if (!hw->hw_addr) {
9195 err = -EIO;
9196 dev_info(&pdev->dev, "ioremap(0x%04x, 0x%04x) failed: 0x%x\n",
9197 (unsigned int)pci_resource_start(pdev, 0),
9198 (unsigned int)pci_resource_len(pdev, 0), err);
9199 goto err_ioremap;
9200 }
9201 hw->vendor_id = pdev->vendor;
9202 hw->device_id = pdev->device;
9203 pci_read_config_byte(pdev, PCI_REVISION_ID, &hw->revision_id);
9204 hw->subsystem_vendor_id = pdev->subsystem_vendor;
9205 hw->subsystem_device_id = pdev->subsystem_device;
9206 hw->bus.device = PCI_SLOT(pdev->devfn);
9207 hw->bus.func = PCI_FUNC(pdev->devfn);
Anjali Singhai Jain93cd7652013-11-20 10:03:01 +00009208 pf->instance = pfs_found;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009209
Shannon Nelson5b5faa42014-10-17 03:14:51 +00009210 if (debug != -1) {
9211 pf->msg_enable = pf->hw.debug_mask;
9212 pf->msg_enable = debug;
9213 }
9214
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00009215 /* do a special CORER for clearing PXE mode once at init */
9216 if (hw->revision_id == 0 &&
9217 (rd32(hw, I40E_GLLAN_RCTL_0) & I40E_GLLAN_RCTL_0_PXE_MODE_MASK)) {
9218 wr32(hw, I40E_GLGEN_RTRIG, I40E_GLGEN_RTRIG_CORER_MASK);
9219 i40e_flush(hw);
9220 msleep(200);
9221 pf->corer_count++;
9222
9223 i40e_clear_pxe_mode(hw);
9224 }
9225
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009226 /* Reset here to make sure all is clean and to define PF 'n' */
Shannon Nelson838d41d2014-06-04 20:41:27 +00009227 i40e_clear_hw(hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009228 err = i40e_pf_reset(hw);
9229 if (err) {
9230 dev_info(&pdev->dev, "Initial pf_reset failed: %d\n", err);
9231 goto err_pf_reset;
9232 }
9233 pf->pfr_count++;
9234
9235 hw->aq.num_arq_entries = I40E_AQ_LEN;
9236 hw->aq.num_asq_entries = I40E_AQ_LEN;
9237 hw->aq.arq_buf_size = I40E_MAX_AQ_BUF_SIZE;
9238 hw->aq.asq_buf_size = I40E_MAX_AQ_BUF_SIZE;
9239 pf->adminq_work_limit = I40E_AQ_WORK_LIMIT;
Carolyn Wybornyb2008cb2014-11-11 20:05:26 +00009240
Carolyn Wybornyb294ac72014-12-11 07:06:39 +00009241 snprintf(pf->int_name, sizeof(pf->int_name) - 1,
Carolyn Wybornyb2008cb2014-11-11 20:05:26 +00009242 "%s-%s:misc",
9243 dev_driver_string(&pf->pdev->dev), dev_name(&pdev->dev));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009244
9245 err = i40e_init_shared_code(hw);
9246 if (err) {
9247 dev_info(&pdev->dev, "init_shared_code failed: %d\n", err);
9248 goto err_pf_reset;
9249 }
9250
Jesse Brandeburgd52c20b2013-11-26 10:49:15 +00009251 /* set up a default setting for link flow control */
9252 pf->hw.fc.requested_mode = I40E_FC_NONE;
9253
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009254 err = i40e_init_adminq(hw);
9255 dev_info(&pdev->dev, "%s\n", i40e_fw_version_str(hw));
9256 if (err) {
9257 dev_info(&pdev->dev,
Catherine Sullivan7aa67612014-07-09 07:46:17 +00009258 "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 +00009259 goto err_pf_reset;
9260 }
9261
Catherine Sullivan7aa67612014-07-09 07:46:17 +00009262 if (hw->aq.api_maj_ver == I40E_FW_API_VERSION_MAJOR &&
9263 hw->aq.api_min_ver > I40E_FW_API_VERSION_MINOR)
Shannon Nelson278b6f62014-06-04 01:41:03 +00009264 dev_info(&pdev->dev,
Catherine Sullivan7aa67612014-07-09 07:46:17 +00009265 "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");
9266 else if (hw->aq.api_maj_ver < I40E_FW_API_VERSION_MAJOR ||
9267 hw->aq.api_min_ver < (I40E_FW_API_VERSION_MINOR - 1))
Shannon Nelson278b6f62014-06-04 01:41:03 +00009268 dev_info(&pdev->dev,
Catherine Sullivan7aa67612014-07-09 07:46:17 +00009269 "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 +00009270
9271
Shannon Nelson4eb3f762014-03-06 08:59:58 +00009272 i40e_verify_eeprom(pf);
9273
Jesse Brandeburg2c5fe332014-04-23 04:49:57 +00009274 /* Rev 0 hardware was never productized */
9275 if (hw->revision_id < 1)
9276 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");
9277
Shannon Nelson6ff4ef82013-12-21 05:44:49 +00009278 i40e_clear_pxe_mode(hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009279 err = i40e_get_capabilities(pf);
9280 if (err)
9281 goto err_adminq_setup;
9282
9283 err = i40e_sw_init(pf);
9284 if (err) {
9285 dev_info(&pdev->dev, "sw_init failed: %d\n", err);
9286 goto err_sw_init;
9287 }
9288
9289 err = i40e_init_lan_hmc(hw, hw->func_caps.num_tx_qp,
9290 hw->func_caps.num_rx_qp,
9291 pf->fcoe_hmc_cntx_num, pf->fcoe_hmc_filt_num);
9292 if (err) {
9293 dev_info(&pdev->dev, "init_lan_hmc failed: %d\n", err);
9294 goto err_init_lan_hmc;
9295 }
9296
9297 err = i40e_configure_lan_hmc(hw, I40E_HMC_MODEL_DIRECT_ONLY);
9298 if (err) {
9299 dev_info(&pdev->dev, "configure_lan_hmc failed: %d\n", err);
9300 err = -ENOENT;
9301 goto err_configure_lan_hmc;
9302 }
9303
Neerav Parikhb686ece2014-12-14 01:55:11 +00009304 /* Disable LLDP for NICs that have firmware versions lower than v4.3.
9305 * Ignore error return codes because if it was already disabled via
9306 * hardware settings this will fail
9307 */
9308 if (((pf->hw.aq.fw_maj_ver == 4) && (pf->hw.aq.fw_min_ver < 3)) ||
9309 (pf->hw.aq.fw_maj_ver < 4)) {
9310 dev_info(&pdev->dev, "Stopping firmware LLDP agent.\n");
9311 i40e_aq_stop_lldp(hw, true, NULL);
9312 }
9313
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009314 i40e_get_mac_addr(hw, hw->mac.addr);
Jesse Brandeburgf62b5062013-11-28 06:39:27 +00009315 if (!is_valid_ether_addr(hw->mac.addr)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009316 dev_info(&pdev->dev, "invalid MAC address %pM\n", hw->mac.addr);
9317 err = -EIO;
9318 goto err_mac_addr;
9319 }
9320 dev_info(&pdev->dev, "MAC address: %pM\n", hw->mac.addr);
Greg Rose9a173902014-05-22 06:32:02 +00009321 ether_addr_copy(hw->mac.perm_addr, hw->mac.addr);
Neerav Parikh1f224ad2014-02-12 01:45:31 +00009322 i40e_get_port_mac_addr(hw, hw->mac.port_addr);
9323 if (is_valid_ether_addr(hw->mac.port_addr))
9324 pf->flags |= I40E_FLAG_PORT_ID_VALID;
Vasu Dev38e00432014-08-01 13:27:03 -07009325#ifdef I40E_FCOE
9326 err = i40e_get_san_mac_addr(hw, hw->mac.san_addr);
9327 if (err)
9328 dev_info(&pdev->dev,
9329 "(non-fatal) SAN MAC retrieval failed: %d\n", err);
9330 if (!is_valid_ether_addr(hw->mac.san_addr)) {
9331 dev_warn(&pdev->dev, "invalid SAN MAC address %pM, falling back to LAN MAC\n",
9332 hw->mac.san_addr);
9333 ether_addr_copy(hw->mac.san_addr, hw->mac.addr);
9334 }
9335 dev_info(&pf->pdev->dev, "SAN MAC: %pM\n", hw->mac.san_addr);
9336#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009337
9338 pci_set_drvdata(pdev, pf);
9339 pci_save_state(pdev);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08009340#ifdef CONFIG_I40E_DCB
9341 err = i40e_init_pf_dcb(pf);
9342 if (err) {
Shannon Nelsonaebfc812014-12-11 07:06:38 +00009343 dev_info(&pdev->dev, "DCB init failed %d, disabled\n", err);
Neerav Parikh4d9b6042014-05-22 06:31:51 +00009344 pf->flags &= ~I40E_FLAG_DCB_CAPABLE;
Neerav Parikh014269f2014-04-01 07:11:48 +00009345 /* Continue without DCB enabled */
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08009346 }
9347#endif /* CONFIG_I40E_DCB */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009348
9349 /* set up periodic task facility */
9350 setup_timer(&pf->service_timer, i40e_service_timer, (unsigned long)pf);
9351 pf->service_timer_period = HZ;
9352
9353 INIT_WORK(&pf->service_task, i40e_service_task);
9354 clear_bit(__I40E_SERVICE_SCHED, &pf->state);
9355 pf->flags |= I40E_FLAG_NEED_LINK_UPDATE;
9356 pf->link_check_timeout = jiffies;
9357
Shannon Nelson8e2773a2013-11-28 06:39:22 +00009358 /* WoL defaults to disabled */
9359 pf->wol_en = false;
9360 device_set_wakeup_enable(&pf->pdev->dev, pf->wol_en);
9361
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009362 /* set up the main switch operations */
9363 i40e_determine_queue_usage(pf);
9364 i40e_init_interrupt_scheme(pf);
9365
Mitch Williams505682c2014-05-20 08:01:37 +00009366 /* The number of VSIs reported by the FW is the minimum guaranteed
9367 * to us; HW supports far more and we share the remaining pool with
9368 * the other PFs. We allocate space for more than the guarantee with
9369 * the understanding that we might not get them all later.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009370 */
Mitch Williams505682c2014-05-20 08:01:37 +00009371 if (pf->hw.func_caps.num_vsis < I40E_MIN_VSI_ALLOC)
9372 pf->num_alloc_vsi = I40E_MIN_VSI_ALLOC;
9373 else
9374 pf->num_alloc_vsi = pf->hw.func_caps.num_vsis;
9375
9376 /* Set up the *vsi struct and our local tracking of the MAIN PF vsi. */
9377 len = sizeof(struct i40e_vsi *) * pf->num_alloc_vsi;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009378 pf->vsi = kzalloc(len, GFP_KERNEL);
Wei Yongjuned87ac02013-09-24 05:17:25 +00009379 if (!pf->vsi) {
9380 err = -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009381 goto err_switch_setup;
Wei Yongjuned87ac02013-09-24 05:17:25 +00009382 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009383
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00009384 err = i40e_setup_pf_switch(pf, false);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009385 if (err) {
9386 dev_info(&pdev->dev, "setup_pf_switch failed: %d\n", err);
9387 goto err_vsis;
9388 }
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00009389 /* if FDIR VSI was set up, start it now */
Mitch Williams505682c2014-05-20 08:01:37 +00009390 for (i = 0; i < pf->num_alloc_vsi; i++) {
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00009391 if (pf->vsi[i] && pf->vsi[i]->type == I40E_VSI_FDIR) {
9392 i40e_vsi_open(pf->vsi[i]);
9393 break;
9394 }
9395 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009396
Jesse Brandeburg7e2453f2014-09-13 07:40:41 +00009397 /* driver is only interested in link up/down and module qualification
9398 * reports from firmware
9399 */
9400 err = i40e_aq_set_phy_int_mask(&pf->hw,
9401 I40E_AQ_EVENT_LINK_UPDOWN |
9402 I40E_AQ_EVENT_MODULE_QUAL_FAIL, NULL);
9403 if (err)
9404 dev_info(&pf->pdev->dev, "set phy mask fail, aq_err %d\n", err);
9405
Anjali Singhai Jaincafa2ee2014-09-13 07:40:45 +00009406 msleep(75);
9407 err = i40e_aq_set_link_restart_an(&pf->hw, true, NULL);
9408 if (err) {
9409 dev_info(&pf->pdev->dev, "link restart failed, aq_err=%d\n",
9410 pf->hw.aq.asq_last_status);
9411 }
9412
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009413 /* The main driver is (mostly) up and happy. We need to set this state
9414 * before setting up the misc vector or we get a race and the vector
9415 * ends up disabled forever.
9416 */
9417 clear_bit(__I40E_DOWN, &pf->state);
9418
9419 /* In case of MSIX we are going to setup the misc vector right here
9420 * to handle admin queue events etc. In case of legacy and MSI
9421 * the misc functionality and queue processing is combined in
9422 * the same vector and that gets setup at open.
9423 */
9424 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
9425 err = i40e_setup_misc_vector(pf);
9426 if (err) {
9427 dev_info(&pdev->dev,
9428 "setup of misc vector failed: %d\n", err);
9429 goto err_vsis;
9430 }
9431 }
9432
Greg Rosedf805f62014-04-04 04:43:16 +00009433#ifdef CONFIG_PCI_IOV
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009434 /* prep for VF support */
9435 if ((pf->flags & I40E_FLAG_SRIOV_ENABLED) &&
Shannon Nelson4eb3f762014-03-06 08:59:58 +00009436 (pf->flags & I40E_FLAG_MSIX_ENABLED) &&
9437 !test_bit(__I40E_BAD_EEPROM, &pf->state)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009438 u32 val;
9439
9440 /* disable link interrupts for VFs */
9441 val = rd32(hw, I40E_PFGEN_PORTMDIO_NUM);
9442 val &= ~I40E_PFGEN_PORTMDIO_NUM_VFLINK_STAT_ENA_MASK;
9443 wr32(hw, I40E_PFGEN_PORTMDIO_NUM, val);
9444 i40e_flush(hw);
Mitch Williams4aeec012014-02-13 03:48:47 -08009445
9446 if (pci_num_vf(pdev)) {
9447 dev_info(&pdev->dev,
9448 "Active VFs found, allocating resources.\n");
9449 err = i40e_alloc_vfs(pf, pci_num_vf(pdev));
9450 if (err)
9451 dev_info(&pdev->dev,
9452 "Error %d allocating resources for existing VFs\n",
9453 err);
9454 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009455 }
Greg Rosedf805f62014-04-04 04:43:16 +00009456#endif /* CONFIG_PCI_IOV */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009457
Anjali Singhai Jain93cd7652013-11-20 10:03:01 +00009458 pfs_found++;
9459
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009460 i40e_dbg_pf_init(pf);
9461
9462 /* tell the firmware that we're starting */
Jesse Brandeburg44033fa2014-04-23 04:50:15 +00009463 i40e_send_version(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009464
9465 /* since everything's happy, start the service_task timer */
9466 mod_timer(&pf->service_timer,
9467 round_jiffies(jiffies + pf->service_timer_period));
9468
Vasu Dev38e00432014-08-01 13:27:03 -07009469#ifdef I40E_FCOE
9470 /* create FCoE interface */
9471 i40e_fcoe_vsi_setup(pf);
9472
9473#endif
Catherine Sullivand4dfb812013-11-28 06:39:21 +00009474 /* Get the negotiated link width and speed from PCI config space */
9475 pcie_capability_read_word(pf->pdev, PCI_EXP_LNKSTA, &link_status);
9476
9477 i40e_set_pci_config_data(hw, link_status);
9478
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00009479 dev_info(&pdev->dev, "PCI-Express: %s %s\n",
Catherine Sullivand4dfb812013-11-28 06:39:21 +00009480 (hw->bus.speed == i40e_bus_speed_8000 ? "Speed 8.0GT/s" :
9481 hw->bus.speed == i40e_bus_speed_5000 ? "Speed 5.0GT/s" :
9482 hw->bus.speed == i40e_bus_speed_2500 ? "Speed 2.5GT/s" :
9483 "Unknown"),
9484 (hw->bus.width == i40e_bus_width_pcie_x8 ? "Width x8" :
9485 hw->bus.width == i40e_bus_width_pcie_x4 ? "Width x4" :
9486 hw->bus.width == i40e_bus_width_pcie_x2 ? "Width x2" :
9487 hw->bus.width == i40e_bus_width_pcie_x1 ? "Width x1" :
9488 "Unknown"));
9489
9490 if (hw->bus.width < i40e_bus_width_pcie_x8 ||
9491 hw->bus.speed < i40e_bus_speed_8000) {
9492 dev_warn(&pdev->dev, "PCI-Express bandwidth available for this device may be insufficient for optimal performance.\n");
9493 dev_warn(&pdev->dev, "Please move the device to a different PCI-e link with more lanes and/or higher transfer rate.\n");
9494 }
9495
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00009496 /* print a string summarizing features */
9497 i40e_print_features(pf);
9498
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009499 return 0;
9500
9501 /* Unwind what we've done if something failed in the setup */
9502err_vsis:
9503 set_bit(__I40E_DOWN, &pf->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009504 i40e_clear_interrupt_scheme(pf);
9505 kfree(pf->vsi);
Shannon Nelson04b03012013-11-28 06:39:34 +00009506err_switch_setup:
9507 i40e_reset_interrupt_capability(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009508 del_timer_sync(&pf->service_timer);
9509err_mac_addr:
9510err_configure_lan_hmc:
9511 (void)i40e_shutdown_lan_hmc(hw);
9512err_init_lan_hmc:
9513 kfree(pf->qp_pile);
9514 kfree(pf->irq_pile);
9515err_sw_init:
9516err_adminq_setup:
9517 (void)i40e_shutdown_adminq(hw);
9518err_pf_reset:
9519 iounmap(hw->hw_addr);
9520err_ioremap:
9521 kfree(pf);
9522err_pf_alloc:
9523 pci_disable_pcie_error_reporting(pdev);
9524 pci_release_selected_regions(pdev,
9525 pci_select_bars(pdev, IORESOURCE_MEM));
9526err_pci_reg:
9527err_dma:
9528 pci_disable_device(pdev);
9529 return err;
9530}
9531
9532/**
9533 * i40e_remove - Device removal routine
9534 * @pdev: PCI device information struct
9535 *
9536 * i40e_remove is called by the PCI subsystem to alert the driver
9537 * that is should release a PCI device. This could be caused by a
9538 * Hot-Plug event, or because the driver is going to be removed from
9539 * memory.
9540 **/
9541static void i40e_remove(struct pci_dev *pdev)
9542{
9543 struct i40e_pf *pf = pci_get_drvdata(pdev);
9544 i40e_status ret_code;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009545 int i;
9546
9547 i40e_dbg_pf_exit(pf);
9548
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00009549 i40e_ptp_stop(pf);
9550
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009551 /* no more scheduling of any task */
9552 set_bit(__I40E_DOWN, &pf->state);
9553 del_timer_sync(&pf->service_timer);
9554 cancel_work_sync(&pf->service_task);
9555
Mitch Williamseb2d80b2014-02-13 03:48:48 -08009556 if (pf->flags & I40E_FLAG_SRIOV_ENABLED) {
9557 i40e_free_vfs(pf);
9558 pf->flags &= ~I40E_FLAG_SRIOV_ENABLED;
9559 }
9560
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009561 i40e_fdir_teardown(pf);
9562
9563 /* If there is a switch structure or any orphans, remove them.
9564 * This will leave only the PF's VSI remaining.
9565 */
9566 for (i = 0; i < I40E_MAX_VEB; i++) {
9567 if (!pf->veb[i])
9568 continue;
9569
9570 if (pf->veb[i]->uplink_seid == pf->mac_seid ||
9571 pf->veb[i]->uplink_seid == 0)
9572 i40e_switch_branch_release(pf->veb[i]);
9573 }
9574
9575 /* Now we can shutdown the PF's VSI, just before we kill
9576 * adminq and hmc.
9577 */
9578 if (pf->vsi[pf->lan_vsi])
9579 i40e_vsi_release(pf->vsi[pf->lan_vsi]);
9580
9581 i40e_stop_misc_vector(pf);
9582 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
9583 synchronize_irq(pf->msix_entries[0].vector);
9584 free_irq(pf->msix_entries[0].vector, pf);
9585 }
9586
9587 /* shutdown and destroy the HMC */
Shannon Nelson60442de2014-04-23 04:50:13 +00009588 if (pf->hw.hmc.hmc_obj) {
9589 ret_code = i40e_shutdown_lan_hmc(&pf->hw);
9590 if (ret_code)
9591 dev_warn(&pdev->dev,
9592 "Failed to destroy the HMC resources: %d\n",
9593 ret_code);
9594 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009595
9596 /* shutdown the adminq */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009597 ret_code = i40e_shutdown_adminq(&pf->hw);
9598 if (ret_code)
9599 dev_warn(&pdev->dev,
9600 "Failed to destroy the Admin Queue resources: %d\n",
9601 ret_code);
9602
9603 /* Clear all dynamic memory lists of rings, q_vectors, and VSIs */
9604 i40e_clear_interrupt_scheme(pf);
Mitch Williams505682c2014-05-20 08:01:37 +00009605 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009606 if (pf->vsi[i]) {
9607 i40e_vsi_clear_rings(pf->vsi[i]);
9608 i40e_vsi_clear(pf->vsi[i]);
9609 pf->vsi[i] = NULL;
9610 }
9611 }
9612
9613 for (i = 0; i < I40E_MAX_VEB; i++) {
9614 kfree(pf->veb[i]);
9615 pf->veb[i] = NULL;
9616 }
9617
9618 kfree(pf->qp_pile);
9619 kfree(pf->irq_pile);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009620 kfree(pf->vsi);
9621
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009622 iounmap(pf->hw.hw_addr);
9623 kfree(pf);
9624 pci_release_selected_regions(pdev,
9625 pci_select_bars(pdev, IORESOURCE_MEM));
9626
9627 pci_disable_pcie_error_reporting(pdev);
9628 pci_disable_device(pdev);
9629}
9630
9631/**
9632 * i40e_pci_error_detected - warning that something funky happened in PCI land
9633 * @pdev: PCI device information struct
9634 *
9635 * Called to warn that something happened and the error handling steps
9636 * are in progress. Allows the driver to quiesce things, be ready for
9637 * remediation.
9638 **/
9639static pci_ers_result_t i40e_pci_error_detected(struct pci_dev *pdev,
9640 enum pci_channel_state error)
9641{
9642 struct i40e_pf *pf = pci_get_drvdata(pdev);
9643
9644 dev_info(&pdev->dev, "%s: error %d\n", __func__, error);
9645
9646 /* shutdown all operations */
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009647 if (!test_bit(__I40E_SUSPENDED, &pf->state)) {
9648 rtnl_lock();
9649 i40e_prep_for_reset(pf);
9650 rtnl_unlock();
9651 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009652
9653 /* Request a slot reset */
9654 return PCI_ERS_RESULT_NEED_RESET;
9655}
9656
9657/**
9658 * i40e_pci_error_slot_reset - a PCI slot reset just happened
9659 * @pdev: PCI device information struct
9660 *
9661 * Called to find if the driver can work with the device now that
9662 * the pci slot has been reset. If a basic connection seems good
9663 * (registers are readable and have sane content) then return a
9664 * happy little PCI_ERS_RESULT_xxx.
9665 **/
9666static pci_ers_result_t i40e_pci_error_slot_reset(struct pci_dev *pdev)
9667{
9668 struct i40e_pf *pf = pci_get_drvdata(pdev);
9669 pci_ers_result_t result;
9670 int err;
9671 u32 reg;
9672
9673 dev_info(&pdev->dev, "%s\n", __func__);
9674 if (pci_enable_device_mem(pdev)) {
9675 dev_info(&pdev->dev,
9676 "Cannot re-enable PCI device after reset.\n");
9677 result = PCI_ERS_RESULT_DISCONNECT;
9678 } else {
9679 pci_set_master(pdev);
9680 pci_restore_state(pdev);
9681 pci_save_state(pdev);
9682 pci_wake_from_d3(pdev, false);
9683
9684 reg = rd32(&pf->hw, I40E_GLGEN_RTRIG);
9685 if (reg == 0)
9686 result = PCI_ERS_RESULT_RECOVERED;
9687 else
9688 result = PCI_ERS_RESULT_DISCONNECT;
9689 }
9690
9691 err = pci_cleanup_aer_uncorrect_error_status(pdev);
9692 if (err) {
9693 dev_info(&pdev->dev,
9694 "pci_cleanup_aer_uncorrect_error_status failed 0x%0x\n",
9695 err);
9696 /* non-fatal, continue */
9697 }
9698
9699 return result;
9700}
9701
9702/**
9703 * i40e_pci_error_resume - restart operations after PCI error recovery
9704 * @pdev: PCI device information struct
9705 *
9706 * Called to allow the driver to bring things back up after PCI error
9707 * and/or reset recovery has finished.
9708 **/
9709static void i40e_pci_error_resume(struct pci_dev *pdev)
9710{
9711 struct i40e_pf *pf = pci_get_drvdata(pdev);
9712
9713 dev_info(&pdev->dev, "%s\n", __func__);
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009714 if (test_bit(__I40E_SUSPENDED, &pf->state))
9715 return;
9716
9717 rtnl_lock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009718 i40e_handle_reset_warning(pf);
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009719 rtnl_lock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009720}
9721
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009722/**
9723 * i40e_shutdown - PCI callback for shutting down
9724 * @pdev: PCI device information struct
9725 **/
9726static void i40e_shutdown(struct pci_dev *pdev)
9727{
9728 struct i40e_pf *pf = pci_get_drvdata(pdev);
Shannon Nelson8e2773a2013-11-28 06:39:22 +00009729 struct i40e_hw *hw = &pf->hw;
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009730
9731 set_bit(__I40E_SUSPENDED, &pf->state);
9732 set_bit(__I40E_DOWN, &pf->state);
9733 rtnl_lock();
9734 i40e_prep_for_reset(pf);
9735 rtnl_unlock();
9736
Shannon Nelson8e2773a2013-11-28 06:39:22 +00009737 wr32(hw, I40E_PFPM_APM, (pf->wol_en ? I40E_PFPM_APM_APME_MASK : 0));
9738 wr32(hw, I40E_PFPM_WUFC, (pf->wol_en ? I40E_PFPM_WUFC_MAG_MASK : 0));
9739
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009740 if (system_state == SYSTEM_POWER_OFF) {
Shannon Nelson8e2773a2013-11-28 06:39:22 +00009741 pci_wake_from_d3(pdev, pf->wol_en);
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009742 pci_set_power_state(pdev, PCI_D3hot);
9743 }
9744}
9745
9746#ifdef CONFIG_PM
9747/**
9748 * i40e_suspend - PCI callback for moving to D3
9749 * @pdev: PCI device information struct
9750 **/
9751static int i40e_suspend(struct pci_dev *pdev, pm_message_t state)
9752{
9753 struct i40e_pf *pf = pci_get_drvdata(pdev);
Shannon Nelson8e2773a2013-11-28 06:39:22 +00009754 struct i40e_hw *hw = &pf->hw;
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009755
9756 set_bit(__I40E_SUSPENDED, &pf->state);
9757 set_bit(__I40E_DOWN, &pf->state);
Mitch Williams88086e5d2015-01-09 11:18:19 +00009758 del_timer_sync(&pf->service_timer);
9759 cancel_work_sync(&pf->service_task);
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009760 rtnl_lock();
9761 i40e_prep_for_reset(pf);
9762 rtnl_unlock();
9763
Shannon Nelson8e2773a2013-11-28 06:39:22 +00009764 wr32(hw, I40E_PFPM_APM, (pf->wol_en ? I40E_PFPM_APM_APME_MASK : 0));
9765 wr32(hw, I40E_PFPM_WUFC, (pf->wol_en ? I40E_PFPM_WUFC_MAG_MASK : 0));
9766
9767 pci_wake_from_d3(pdev, pf->wol_en);
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009768 pci_set_power_state(pdev, PCI_D3hot);
9769
9770 return 0;
9771}
9772
9773/**
9774 * i40e_resume - PCI callback for waking up from D3
9775 * @pdev: PCI device information struct
9776 **/
9777static int i40e_resume(struct pci_dev *pdev)
9778{
9779 struct i40e_pf *pf = pci_get_drvdata(pdev);
9780 u32 err;
9781
9782 pci_set_power_state(pdev, PCI_D0);
9783 pci_restore_state(pdev);
9784 /* pci_restore_state() clears dev->state_saves, so
9785 * call pci_save_state() again to restore it.
9786 */
9787 pci_save_state(pdev);
9788
9789 err = pci_enable_device_mem(pdev);
9790 if (err) {
9791 dev_err(&pdev->dev,
9792 "%s: Cannot enable PCI device from suspend\n",
9793 __func__);
9794 return err;
9795 }
9796 pci_set_master(pdev);
9797
9798 /* no wakeup events while running */
9799 pci_wake_from_d3(pdev, false);
9800
9801 /* handling the reset will rebuild the device state */
9802 if (test_and_clear_bit(__I40E_SUSPENDED, &pf->state)) {
9803 clear_bit(__I40E_DOWN, &pf->state);
9804 rtnl_lock();
9805 i40e_reset_and_rebuild(pf, false);
9806 rtnl_unlock();
9807 }
9808
9809 return 0;
9810}
9811
9812#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009813static const struct pci_error_handlers i40e_err_handler = {
9814 .error_detected = i40e_pci_error_detected,
9815 .slot_reset = i40e_pci_error_slot_reset,
9816 .resume = i40e_pci_error_resume,
9817};
9818
9819static struct pci_driver i40e_driver = {
9820 .name = i40e_driver_name,
9821 .id_table = i40e_pci_tbl,
9822 .probe = i40e_probe,
9823 .remove = i40e_remove,
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009824#ifdef CONFIG_PM
9825 .suspend = i40e_suspend,
9826 .resume = i40e_resume,
9827#endif
9828 .shutdown = i40e_shutdown,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009829 .err_handler = &i40e_err_handler,
9830 .sriov_configure = i40e_pci_sriov_configure,
9831};
9832
9833/**
9834 * i40e_init_module - Driver registration routine
9835 *
9836 * i40e_init_module is the first routine called when the driver is
9837 * loaded. All it does is register with the PCI subsystem.
9838 **/
9839static int __init i40e_init_module(void)
9840{
9841 pr_info("%s: %s - version %s\n", i40e_driver_name,
9842 i40e_driver_string, i40e_driver_version_str);
9843 pr_info("%s: %s\n", i40e_driver_name, i40e_copyright);
9844 i40e_dbg_init();
9845 return pci_register_driver(&i40e_driver);
9846}
9847module_init(i40e_init_module);
9848
9849/**
9850 * i40e_exit_module - Driver exit cleanup routine
9851 *
9852 * i40e_exit_module is called just before the driver is removed
9853 * from memory.
9854 **/
9855static void __exit i40e_exit_module(void)
9856{
9857 pci_unregister_driver(&i40e_driver);
9858 i40e_dbg_exit();
9859}
9860module_exit(i40e_exit_module);