blob: 83eadd019e6b665b6f6fe5bb4cb1bc6957e4eca3 [file] [log] [blame]
Jeff Kirsher8af3c332012-02-18 07:08:14 +00001/*******************************************************************************
2
3 Intel 10 Gigabit PCI Express Linux driver
4 Copyright(c) 1999 - 2012 Intel Corporation.
5
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
15 You should have received a copy of the GNU General Public License along with
16 this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
18
19 The full GNU General Public License is included in this distribution in
20 the file called "COPYING".
21
22 Contact Information:
23 e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
24 Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
25
26*******************************************************************************/
27
28#include "ixgbe.h"
29#include "ixgbe_sriov.h"
30
31/**
32 * ixgbe_cache_ring_rss - Descriptor ring to register mapping for RSS
33 * @adapter: board private structure to initialize
34 *
35 * Cache the descriptor ring offsets for RSS to the assigned rings.
36 *
37 **/
38static inline bool ixgbe_cache_ring_rss(struct ixgbe_adapter *adapter)
39{
40 int i;
41
42 if (!(adapter->flags & IXGBE_FLAG_RSS_ENABLED))
43 return false;
44
45 for (i = 0; i < adapter->num_rx_queues; i++)
46 adapter->rx_ring[i]->reg_idx = i;
47 for (i = 0; i < adapter->num_tx_queues; i++)
48 adapter->tx_ring[i]->reg_idx = i;
49
50 return true;
51}
52#ifdef CONFIG_IXGBE_DCB
53
54/* ixgbe_get_first_reg_idx - Return first register index associated with ring */
55static void ixgbe_get_first_reg_idx(struct ixgbe_adapter *adapter, u8 tc,
56 unsigned int *tx, unsigned int *rx)
57{
58 struct net_device *dev = adapter->netdev;
59 struct ixgbe_hw *hw = &adapter->hw;
60 u8 num_tcs = netdev_get_num_tc(dev);
61
62 *tx = 0;
63 *rx = 0;
64
65 switch (hw->mac.type) {
66 case ixgbe_mac_82598EB:
67 *tx = tc << 2;
68 *rx = tc << 3;
69 break;
70 case ixgbe_mac_82599EB:
71 case ixgbe_mac_X540:
72 if (num_tcs > 4) {
73 if (tc < 3) {
74 *tx = tc << 5;
75 *rx = tc << 4;
76 } else if (tc < 5) {
77 *tx = ((tc + 2) << 4);
78 *rx = tc << 4;
79 } else if (tc < num_tcs) {
80 *tx = ((tc + 8) << 3);
81 *rx = tc << 4;
82 }
83 } else {
84 *rx = tc << 5;
85 switch (tc) {
86 case 0:
87 *tx = 0;
88 break;
89 case 1:
90 *tx = 64;
91 break;
92 case 2:
93 *tx = 96;
94 break;
95 case 3:
96 *tx = 112;
97 break;
98 default:
99 break;
100 }
101 }
102 break;
103 default:
104 break;
105 }
106}
107
108/**
109 * ixgbe_cache_ring_dcb - Descriptor ring to register mapping for DCB
110 * @adapter: board private structure to initialize
111 *
112 * Cache the descriptor ring offsets for DCB to the assigned rings.
113 *
114 **/
115static inline bool ixgbe_cache_ring_dcb(struct ixgbe_adapter *adapter)
116{
117 struct net_device *dev = adapter->netdev;
118 int i, j, k;
119 u8 num_tcs = netdev_get_num_tc(dev);
120
121 if (!num_tcs)
122 return false;
123
124 for (i = 0, k = 0; i < num_tcs; i++) {
125 unsigned int tx_s, rx_s;
126 u16 count = dev->tc_to_txq[i].count;
127
128 ixgbe_get_first_reg_idx(adapter, i, &tx_s, &rx_s);
129 for (j = 0; j < count; j++, k++) {
130 adapter->tx_ring[k]->reg_idx = tx_s + j;
131 adapter->rx_ring[k]->reg_idx = rx_s + j;
132 adapter->tx_ring[k]->dcb_tc = i;
133 adapter->rx_ring[k]->dcb_tc = i;
134 }
135 }
136
137 return true;
138}
139#endif
140
Jeff Kirsher8af3c332012-02-18 07:08:14 +0000141#ifdef IXGBE_FCOE
142/**
143 * ixgbe_cache_ring_fcoe - Descriptor ring to register mapping for the FCoE
144 * @adapter: board private structure to initialize
145 *
146 * Cache the descriptor ring offsets for FCoE mode to the assigned rings.
147 *
148 */
149static inline bool ixgbe_cache_ring_fcoe(struct ixgbe_adapter *adapter)
150{
151 struct ixgbe_ring_feature *f = &adapter->ring_feature[RING_F_FCOE];
152 int i;
153 u8 fcoe_rx_i = 0, fcoe_tx_i = 0;
154
155 if (!(adapter->flags & IXGBE_FLAG_FCOE_ENABLED))
156 return false;
157
158 if (adapter->flags & IXGBE_FLAG_RSS_ENABLED) {
Alexander Duyck0b7f5d02012-05-05 05:31:04 +0000159 ixgbe_cache_ring_rss(adapter);
Jeff Kirsher8af3c332012-02-18 07:08:14 +0000160
Alexander Duycke4b317e2012-05-05 05:30:53 +0000161 fcoe_rx_i = f->offset;
162 fcoe_tx_i = f->offset;
Jeff Kirsher8af3c332012-02-18 07:08:14 +0000163 }
164 for (i = 0; i < f->indices; i++, fcoe_rx_i++, fcoe_tx_i++) {
Alexander Duycke4b317e2012-05-05 05:30:53 +0000165 adapter->rx_ring[f->offset + i]->reg_idx = fcoe_rx_i;
166 adapter->tx_ring[f->offset + i]->reg_idx = fcoe_tx_i;
Jeff Kirsher8af3c332012-02-18 07:08:14 +0000167 }
168 return true;
169}
170
171#endif /* IXGBE_FCOE */
172/**
173 * ixgbe_cache_ring_sriov - Descriptor ring to register mapping for sriov
174 * @adapter: board private structure to initialize
175 *
176 * SR-IOV doesn't use any descriptor rings but changes the default if
177 * no other mapping is used.
178 *
179 */
180static inline bool ixgbe_cache_ring_sriov(struct ixgbe_adapter *adapter)
181{
182 adapter->rx_ring[0]->reg_idx = adapter->num_vfs * 2;
183 adapter->tx_ring[0]->reg_idx = adapter->num_vfs * 2;
184 if (adapter->num_vfs)
185 return true;
186 else
187 return false;
188}
189
190/**
191 * ixgbe_cache_ring_register - Descriptor ring to register mapping
192 * @adapter: board private structure to initialize
193 *
194 * Once we know the feature-set enabled for the device, we'll cache
195 * the register offset the descriptor ring is assigned to.
196 *
197 * Note, the order the various feature calls is important. It must start with
198 * the "most" features enabled at the same time, then trickle down to the
199 * least amount of features turned on at once.
200 **/
201static void ixgbe_cache_ring_register(struct ixgbe_adapter *adapter)
202{
203 /* start with default case */
204 adapter->rx_ring[0]->reg_idx = 0;
205 adapter->tx_ring[0]->reg_idx = 0;
206
207 if (ixgbe_cache_ring_sriov(adapter))
208 return;
209
210#ifdef CONFIG_IXGBE_DCB
211 if (ixgbe_cache_ring_dcb(adapter))
212 return;
213#endif
214
215#ifdef IXGBE_FCOE
216 if (ixgbe_cache_ring_fcoe(adapter))
217 return;
218#endif /* IXGBE_FCOE */
219
Jeff Kirsher8af3c332012-02-18 07:08:14 +0000220 if (ixgbe_cache_ring_rss(adapter))
221 return;
222}
223
224/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000225 * ixgbe_set_sriov_queues - Allocate queues for IOV use
Jeff Kirsher8af3c332012-02-18 07:08:14 +0000226 * @adapter: board private structure to initialize
227 *
228 * IOV doesn't actually use anything, so just NAK the
229 * request for now and let the other queue routines
230 * figure out what to do.
231 */
232static inline bool ixgbe_set_sriov_queues(struct ixgbe_adapter *adapter)
233{
234 return false;
235}
236
237/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000238 * ixgbe_set_rss_queues - Allocate queues for RSS
Jeff Kirsher8af3c332012-02-18 07:08:14 +0000239 * @adapter: board private structure to initialize
240 *
241 * This is our "base" multiqueue mode. RSS (Receive Side Scaling) will try
242 * to allocate one Rx queue per CPU, and if available, one Tx queue per CPU.
243 *
244 **/
Alexander Duyck0b7f5d02012-05-05 05:31:04 +0000245static bool ixgbe_set_rss_queues(struct ixgbe_adapter *adapter)
Jeff Kirsher8af3c332012-02-18 07:08:14 +0000246{
Alexander Duyck0b7f5d02012-05-05 05:31:04 +0000247 struct ixgbe_ring_feature *f;
248 u16 rss_i;
Jeff Kirsher8af3c332012-02-18 07:08:14 +0000249
Alexander Duyck0b7f5d02012-05-05 05:31:04 +0000250 if (!(adapter->flags & IXGBE_FLAG_RSS_ENABLED)) {
251 adapter->flags &= ~IXGBE_FLAG_FDIR_HASH_CAPABLE;
252 return false;
Jeff Kirsher8af3c332012-02-18 07:08:14 +0000253 }
254
Alexander Duyck0b7f5d02012-05-05 05:31:04 +0000255 /* set mask for 16 queue limit of RSS */
256 f = &adapter->ring_feature[RING_F_RSS];
257 rss_i = f->limit;
Jeff Kirsher8af3c332012-02-18 07:08:14 +0000258
Alexander Duyck0b7f5d02012-05-05 05:31:04 +0000259 f->indices = rss_i;
260 f->mask = 0xF;
Jeff Kirsher8af3c332012-02-18 07:08:14 +0000261
262 /*
Alexander Duyck0b7f5d02012-05-05 05:31:04 +0000263 * Use Flow Director in addition to RSS to ensure the best
Jeff Kirsher8af3c332012-02-18 07:08:14 +0000264 * distribution of flows across cores, even when an FDIR flow
265 * isn't matched.
266 */
Alexander Duyck0b7f5d02012-05-05 05:31:04 +0000267 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
268 f = &adapter->ring_feature[RING_F_FDIR];
269
270 f->indices = min_t(u16, num_online_cpus(), f->limit);
271 rss_i = max_t(u16, rss_i, f->indices);
Jeff Kirsher8af3c332012-02-18 07:08:14 +0000272 }
Alexander Duyck0b7f5d02012-05-05 05:31:04 +0000273
274 adapter->num_rx_queues = rss_i;
275 adapter->num_tx_queues = rss_i;
276
277 return true;
Jeff Kirsher8af3c332012-02-18 07:08:14 +0000278}
279
280#ifdef IXGBE_FCOE
281/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000282 * ixgbe_set_fcoe_queues - Allocate queues for Fiber Channel over Ethernet (FCoE)
Jeff Kirsher8af3c332012-02-18 07:08:14 +0000283 * @adapter: board private structure to initialize
284 *
285 * FCoE RX FCRETA can use up to 8 rx queues for up to 8 different exchanges.
Alexander Duycke4b317e2012-05-05 05:30:53 +0000286 * Offset is used as the index of the first rx queue used by FCoE.
Jeff Kirsher8af3c332012-02-18 07:08:14 +0000287 **/
288static inline bool ixgbe_set_fcoe_queues(struct ixgbe_adapter *adapter)
289{
290 struct ixgbe_ring_feature *f = &adapter->ring_feature[RING_F_FCOE];
291
292 if (!(adapter->flags & IXGBE_FLAG_FCOE_ENABLED))
293 return false;
294
Alexander Duyckc0876632012-05-10 00:01:46 +0000295 f->indices = min_t(int, num_online_cpus(), f->limit);
Jeff Kirsher8af3c332012-02-18 07:08:14 +0000296
297 adapter->num_rx_queues = 1;
298 adapter->num_tx_queues = 1;
299
300 if (adapter->flags & IXGBE_FLAG_RSS_ENABLED) {
301 e_info(probe, "FCoE enabled with RSS\n");
Alexander Duyck0b7f5d02012-05-05 05:31:04 +0000302 ixgbe_set_rss_queues(adapter);
Jeff Kirsher8af3c332012-02-18 07:08:14 +0000303 }
304
305 /* adding FCoE rx rings to the end */
Alexander Duycke4b317e2012-05-05 05:30:53 +0000306 f->offset = adapter->num_rx_queues;
Jeff Kirsher8af3c332012-02-18 07:08:14 +0000307 adapter->num_rx_queues += f->indices;
308 adapter->num_tx_queues += f->indices;
309
310 return true;
311}
312#endif /* IXGBE_FCOE */
313
314/* Artificial max queue cap per traffic class in DCB mode */
315#define DCB_QUEUE_CAP 8
316
317#ifdef CONFIG_IXGBE_DCB
318static inline bool ixgbe_set_dcb_queues(struct ixgbe_adapter *adapter)
319{
320 int per_tc_q, q, i, offset = 0;
321 struct net_device *dev = adapter->netdev;
322 int tcs = netdev_get_num_tc(dev);
323
324 if (!tcs)
325 return false;
326
327 /* Map queue offset and counts onto allocated tx queues */
328 per_tc_q = min_t(unsigned int, dev->num_tx_queues / tcs, DCB_QUEUE_CAP);
329 q = min_t(int, num_online_cpus(), per_tc_q);
330
331 for (i = 0; i < tcs; i++) {
332 netdev_set_tc_queue(dev, i, q, offset);
333 offset += q;
334 }
335
336 adapter->num_tx_queues = q * tcs;
337 adapter->num_rx_queues = q * tcs;
338
339#ifdef IXGBE_FCOE
340 /* FCoE enabled queues require special configuration indexed
Alexander Duycke4b317e2012-05-05 05:30:53 +0000341 * by feature specific indices and offset. Here we map FCoE
Jeff Kirsher8af3c332012-02-18 07:08:14 +0000342 * indices onto the DCB queue pairs allowing FCoE to own
343 * configuration later.
344 */
345 if (adapter->flags & IXGBE_FLAG_FCOE_ENABLED) {
346 u8 prio_tc[MAX_USER_PRIORITY] = {0};
347 int tc;
348 struct ixgbe_ring_feature *f =
349 &adapter->ring_feature[RING_F_FCOE];
350
351 ixgbe_dcb_unpack_map(&adapter->dcb_cfg, DCB_TX_CONFIG, prio_tc);
352 tc = prio_tc[adapter->fcoe.up];
353 f->indices = dev->tc_to_txq[tc].count;
Alexander Duycke4b317e2012-05-05 05:30:53 +0000354 f->offset = dev->tc_to_txq[tc].offset;
Jeff Kirsher8af3c332012-02-18 07:08:14 +0000355 }
356#endif
357
358 return true;
359}
360#endif
361
362/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000363 * ixgbe_set_num_queues - Allocate queues for device, feature dependent
Jeff Kirsher8af3c332012-02-18 07:08:14 +0000364 * @adapter: board private structure to initialize
365 *
366 * This is the top level queue allocation routine. The order here is very
367 * important, starting with the "most" number of features turned on at once,
368 * and ending with the smallest set of features. This way large combinations
369 * can be allocated if they're turned on, and smaller combinations are the
370 * fallthrough conditions.
371 *
372 **/
373static int ixgbe_set_num_queues(struct ixgbe_adapter *adapter)
374{
375 /* Start with base case */
376 adapter->num_rx_queues = 1;
377 adapter->num_tx_queues = 1;
378 adapter->num_rx_pools = adapter->num_rx_queues;
379 adapter->num_rx_queues_per_pool = 1;
380
381 if (ixgbe_set_sriov_queues(adapter))
382 goto done;
383
384#ifdef CONFIG_IXGBE_DCB
385 if (ixgbe_set_dcb_queues(adapter))
386 goto done;
387
388#endif
389#ifdef IXGBE_FCOE
390 if (ixgbe_set_fcoe_queues(adapter))
391 goto done;
392
393#endif /* IXGBE_FCOE */
Jeff Kirsher8af3c332012-02-18 07:08:14 +0000394 if (ixgbe_set_rss_queues(adapter))
395 goto done;
396
397 /* fallback to base case */
398 adapter->num_rx_queues = 1;
399 adapter->num_tx_queues = 1;
400
401done:
402 if ((adapter->netdev->reg_state == NETREG_UNREGISTERED) ||
403 (adapter->netdev->reg_state == NETREG_UNREGISTERING))
404 return 0;
405
406 /* Notify the stack of the (possibly) reduced queue counts. */
407 netif_set_real_num_tx_queues(adapter->netdev, adapter->num_tx_queues);
408 return netif_set_real_num_rx_queues(adapter->netdev,
409 adapter->num_rx_queues);
410}
411
412static void ixgbe_acquire_msix_vectors(struct ixgbe_adapter *adapter,
413 int vectors)
414{
415 int err, vector_threshold;
416
417 /* We'll want at least 2 (vector_threshold):
418 * 1) TxQ[0] + RxQ[0] handler
419 * 2) Other (Link Status Change, etc.)
420 */
421 vector_threshold = MIN_MSIX_COUNT;
422
423 /*
424 * The more we get, the more we will assign to Tx/Rx Cleanup
425 * for the separate queues...where Rx Cleanup >= Tx Cleanup.
426 * Right now, we simply care about how many we'll get; we'll
427 * set them up later while requesting irq's.
428 */
429 while (vectors >= vector_threshold) {
430 err = pci_enable_msix(adapter->pdev, adapter->msix_entries,
431 vectors);
432 if (!err) /* Success in acquiring all requested vectors. */
433 break;
434 else if (err < 0)
435 vectors = 0; /* Nasty failure, quit now */
436 else /* err == number of vectors we should try again with */
437 vectors = err;
438 }
439
440 if (vectors < vector_threshold) {
441 /* Can't allocate enough MSI-X interrupts? Oh well.
442 * This just means we'll go with either a single MSI
443 * vector or fall back to legacy interrupts.
444 */
445 netif_printk(adapter, hw, KERN_DEBUG, adapter->netdev,
446 "Unable to allocate MSI-X interrupts\n");
447 adapter->flags &= ~IXGBE_FLAG_MSIX_ENABLED;
448 kfree(adapter->msix_entries);
449 adapter->msix_entries = NULL;
450 } else {
451 adapter->flags |= IXGBE_FLAG_MSIX_ENABLED; /* Woot! */
452 /*
453 * Adjust for only the vectors we'll use, which is minimum
454 * of max_msix_q_vectors + NON_Q_VECTORS, or the number of
455 * vectors we were allocated.
456 */
Alexander Duyck49c7ffb2012-05-05 05:30:43 +0000457 vectors -= NON_Q_VECTORS;
458 adapter->num_q_vectors = min(vectors, adapter->max_q_vectors);
Jeff Kirsher8af3c332012-02-18 07:08:14 +0000459 }
460}
461
462static void ixgbe_add_ring(struct ixgbe_ring *ring,
463 struct ixgbe_ring_container *head)
464{
465 ring->next = head->ring;
466 head->ring = ring;
467 head->count++;
468}
469
470/**
471 * ixgbe_alloc_q_vector - Allocate memory for a single interrupt vector
472 * @adapter: board private structure to initialize
Alexander Duyckd0bfcdf2012-03-28 08:03:43 +0000473 * @v_count: q_vectors allocated on adapter, used for ring interleaving
Jeff Kirsher8af3c332012-02-18 07:08:14 +0000474 * @v_idx: index of vector in adapter struct
Alexander Duyckd0bfcdf2012-03-28 08:03:43 +0000475 * @txr_count: total number of Tx rings to allocate
476 * @txr_idx: index of first Tx ring to allocate
477 * @rxr_count: total number of Rx rings to allocate
478 * @rxr_idx: index of first Rx ring to allocate
Jeff Kirsher8af3c332012-02-18 07:08:14 +0000479 *
480 * We allocate one q_vector. If allocation fails we return -ENOMEM.
481 **/
Alexander Duyckd0bfcdf2012-03-28 08:03:43 +0000482static int ixgbe_alloc_q_vector(struct ixgbe_adapter *adapter,
483 int v_count, int v_idx,
Jeff Kirsher8af3c332012-02-18 07:08:14 +0000484 int txr_count, int txr_idx,
485 int rxr_count, int rxr_idx)
486{
487 struct ixgbe_q_vector *q_vector;
488 struct ixgbe_ring *ring;
489 int node = -1;
490 int cpu = -1;
491 int ring_count, size;
492
493 ring_count = txr_count + rxr_count;
494 size = sizeof(struct ixgbe_q_vector) +
495 (sizeof(struct ixgbe_ring) * ring_count);
496
497 /* customize cpu for Flow Director mapping */
498 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
499 if (cpu_online(v_idx)) {
500 cpu = v_idx;
501 node = cpu_to_node(cpu);
502 }
503 }
504
505 /* allocate q_vector and rings */
506 q_vector = kzalloc_node(size, GFP_KERNEL, node);
507 if (!q_vector)
508 q_vector = kzalloc(size, GFP_KERNEL);
509 if (!q_vector)
510 return -ENOMEM;
511
512 /* setup affinity mask and node */
513 if (cpu != -1)
514 cpumask_set_cpu(cpu, &q_vector->affinity_mask);
515 else
516 cpumask_copy(&q_vector->affinity_mask, cpu_online_mask);
517 q_vector->numa_node = node;
518
519 /* initialize NAPI */
520 netif_napi_add(adapter->netdev, &q_vector->napi,
521 ixgbe_poll, 64);
522
523 /* tie q_vector and adapter together */
524 adapter->q_vector[v_idx] = q_vector;
525 q_vector->adapter = adapter;
526 q_vector->v_idx = v_idx;
527
528 /* initialize work limits */
529 q_vector->tx.work_limit = adapter->tx_work_limit;
530
531 /* initialize pointer to rings */
532 ring = q_vector->ring;
533
534 while (txr_count) {
535 /* assign generic ring traits */
536 ring->dev = &adapter->pdev->dev;
537 ring->netdev = adapter->netdev;
538
539 /* configure backlink on ring */
540 ring->q_vector = q_vector;
541
542 /* update q_vector Tx values */
543 ixgbe_add_ring(ring, &q_vector->tx);
544
545 /* apply Tx specific ring traits */
546 ring->count = adapter->tx_ring_count;
547 ring->queue_index = txr_idx;
548
549 /* assign ring to adapter */
550 adapter->tx_ring[txr_idx] = ring;
551
552 /* update count and index */
553 txr_count--;
Alexander Duyckd0bfcdf2012-03-28 08:03:43 +0000554 txr_idx += v_count;
Jeff Kirsher8af3c332012-02-18 07:08:14 +0000555
556 /* push pointer to next ring */
557 ring++;
558 }
559
560 while (rxr_count) {
561 /* assign generic ring traits */
562 ring->dev = &adapter->pdev->dev;
563 ring->netdev = adapter->netdev;
564
565 /* configure backlink on ring */
566 ring->q_vector = q_vector;
567
568 /* update q_vector Rx values */
569 ixgbe_add_ring(ring, &q_vector->rx);
570
571 /*
572 * 82599 errata, UDP frames with a 0 checksum
573 * can be marked as checksum errors.
574 */
575 if (adapter->hw.mac.type == ixgbe_mac_82599EB)
576 set_bit(__IXGBE_RX_CSUM_UDP_ZERO_ERR, &ring->state);
577
Alexander Duyckb2db4972012-04-07 04:57:29 +0000578#ifdef IXGBE_FCOE
579 if (adapter->netdev->features & NETIF_F_FCOE_MTU) {
580 struct ixgbe_ring_feature *f;
581 f = &adapter->ring_feature[RING_F_FCOE];
Alexander Duycke4b317e2012-05-05 05:30:53 +0000582 if ((rxr_idx >= f->offset) &&
583 (rxr_idx < f->offset + f->indices))
Alexander Duyck57efd442012-06-25 21:54:46 +0000584 set_bit(__IXGBE_RX_FCOE, &ring->state);
Alexander Duyckb2db4972012-04-07 04:57:29 +0000585 }
586
587#endif /* IXGBE_FCOE */
Jeff Kirsher8af3c332012-02-18 07:08:14 +0000588 /* apply Rx specific ring traits */
589 ring->count = adapter->rx_ring_count;
590 ring->queue_index = rxr_idx;
591
592 /* assign ring to adapter */
593 adapter->rx_ring[rxr_idx] = ring;
594
595 /* update count and index */
596 rxr_count--;
Alexander Duyckd0bfcdf2012-03-28 08:03:43 +0000597 rxr_idx += v_count;
Jeff Kirsher8af3c332012-02-18 07:08:14 +0000598
599 /* push pointer to next ring */
600 ring++;
601 }
602
603 return 0;
604}
605
606/**
607 * ixgbe_free_q_vector - Free memory allocated for specific interrupt vector
608 * @adapter: board private structure to initialize
609 * @v_idx: Index of vector to be freed
610 *
611 * This function frees the memory allocated to the q_vector. In addition if
612 * NAPI is enabled it will delete any references to the NAPI struct prior
613 * to freeing the q_vector.
614 **/
615static void ixgbe_free_q_vector(struct ixgbe_adapter *adapter, int v_idx)
616{
617 struct ixgbe_q_vector *q_vector = adapter->q_vector[v_idx];
618 struct ixgbe_ring *ring;
619
620 ixgbe_for_each_ring(ring, q_vector->tx)
621 adapter->tx_ring[ring->queue_index] = NULL;
622
623 ixgbe_for_each_ring(ring, q_vector->rx)
624 adapter->rx_ring[ring->queue_index] = NULL;
625
626 adapter->q_vector[v_idx] = NULL;
627 netif_napi_del(&q_vector->napi);
628
629 /*
630 * ixgbe_get_stats64() might access the rings on this vector,
631 * we must wait a grace period before freeing it.
632 */
633 kfree_rcu(q_vector, rcu);
634}
635
636/**
637 * ixgbe_alloc_q_vectors - Allocate memory for interrupt vectors
638 * @adapter: board private structure to initialize
639 *
640 * We allocate one q_vector per queue interrupt. If allocation fails we
641 * return -ENOMEM.
642 **/
643static int ixgbe_alloc_q_vectors(struct ixgbe_adapter *adapter)
644{
Alexander Duyck49c7ffb2012-05-05 05:30:43 +0000645 int q_vectors = adapter->num_q_vectors;
Jeff Kirsher8af3c332012-02-18 07:08:14 +0000646 int rxr_remaining = adapter->num_rx_queues;
647 int txr_remaining = adapter->num_tx_queues;
648 int rxr_idx = 0, txr_idx = 0, v_idx = 0;
649 int err;
650
651 /* only one q_vector if MSI-X is disabled. */
652 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED))
653 q_vectors = 1;
654
655 if (q_vectors >= (rxr_remaining + txr_remaining)) {
Alexander Duyckd0bfcdf2012-03-28 08:03:43 +0000656 for (; rxr_remaining; v_idx++) {
657 err = ixgbe_alloc_q_vector(adapter, q_vectors, v_idx,
658 0, 0, 1, rxr_idx);
Jeff Kirsher8af3c332012-02-18 07:08:14 +0000659
660 if (err)
661 goto err_out;
662
663 /* update counts and index */
Alexander Duyckd0bfcdf2012-03-28 08:03:43 +0000664 rxr_remaining--;
665 rxr_idx++;
Jeff Kirsher8af3c332012-02-18 07:08:14 +0000666 }
667 }
668
Alexander Duyckd0bfcdf2012-03-28 08:03:43 +0000669 for (; v_idx < q_vectors; v_idx++) {
670 int rqpv = DIV_ROUND_UP(rxr_remaining, q_vectors - v_idx);
671 int tqpv = DIV_ROUND_UP(txr_remaining, q_vectors - v_idx);
672 err = ixgbe_alloc_q_vector(adapter, q_vectors, v_idx,
Jeff Kirsher8af3c332012-02-18 07:08:14 +0000673 tqpv, txr_idx,
674 rqpv, rxr_idx);
675
676 if (err)
677 goto err_out;
678
679 /* update counts and index */
680 rxr_remaining -= rqpv;
Jeff Kirsher8af3c332012-02-18 07:08:14 +0000681 txr_remaining -= tqpv;
Alexander Duyckd0bfcdf2012-03-28 08:03:43 +0000682 rxr_idx++;
683 txr_idx++;
Jeff Kirsher8af3c332012-02-18 07:08:14 +0000684 }
685
686 return 0;
687
688err_out:
Alexander Duyck49c7ffb2012-05-05 05:30:43 +0000689 adapter->num_tx_queues = 0;
690 adapter->num_rx_queues = 0;
691 adapter->num_q_vectors = 0;
692
693 while (v_idx--)
Jeff Kirsher8af3c332012-02-18 07:08:14 +0000694 ixgbe_free_q_vector(adapter, v_idx);
Jeff Kirsher8af3c332012-02-18 07:08:14 +0000695
696 return -ENOMEM;
697}
698
699/**
700 * ixgbe_free_q_vectors - Free memory allocated for interrupt vectors
701 * @adapter: board private structure to initialize
702 *
703 * This function frees the memory allocated to the q_vectors. In addition if
704 * NAPI is enabled it will delete any references to the NAPI struct prior
705 * to freeing the q_vector.
706 **/
707static void ixgbe_free_q_vectors(struct ixgbe_adapter *adapter)
708{
Alexander Duyck49c7ffb2012-05-05 05:30:43 +0000709 int v_idx = adapter->num_q_vectors;
Jeff Kirsher8af3c332012-02-18 07:08:14 +0000710
Alexander Duyck49c7ffb2012-05-05 05:30:43 +0000711 adapter->num_tx_queues = 0;
712 adapter->num_rx_queues = 0;
713 adapter->num_q_vectors = 0;
Jeff Kirsher8af3c332012-02-18 07:08:14 +0000714
Alexander Duyck49c7ffb2012-05-05 05:30:43 +0000715 while (v_idx--)
Jeff Kirsher8af3c332012-02-18 07:08:14 +0000716 ixgbe_free_q_vector(adapter, v_idx);
717}
718
719static void ixgbe_reset_interrupt_capability(struct ixgbe_adapter *adapter)
720{
721 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
722 adapter->flags &= ~IXGBE_FLAG_MSIX_ENABLED;
723 pci_disable_msix(adapter->pdev);
724 kfree(adapter->msix_entries);
725 adapter->msix_entries = NULL;
726 } else if (adapter->flags & IXGBE_FLAG_MSI_ENABLED) {
727 adapter->flags &= ~IXGBE_FLAG_MSI_ENABLED;
728 pci_disable_msi(adapter->pdev);
729 }
730}
731
732/**
733 * ixgbe_set_interrupt_capability - set MSI-X or MSI if supported
734 * @adapter: board private structure to initialize
735 *
736 * Attempt to configure the interrupts using the best available
737 * capabilities of the hardware and the kernel.
738 **/
739static int ixgbe_set_interrupt_capability(struct ixgbe_adapter *adapter)
740{
741 struct ixgbe_hw *hw = &adapter->hw;
742 int err = 0;
743 int vector, v_budget;
744
745 /*
746 * It's easy to be greedy for MSI-X vectors, but it really
747 * doesn't do us much good if we have a lot more vectors
748 * than CPU's. So let's be conservative and only ask for
749 * (roughly) the same number of vectors as there are CPU's.
750 * The default is to use pairs of vectors.
751 */
752 v_budget = max(adapter->num_rx_queues, adapter->num_tx_queues);
753 v_budget = min_t(int, v_budget, num_online_cpus());
754 v_budget += NON_Q_VECTORS;
755
756 /*
757 * At the same time, hardware can only support a maximum of
758 * hw.mac->max_msix_vectors vectors. With features
759 * such as RSS and VMDq, we can easily surpass the number of Rx and Tx
760 * descriptor queues supported by our device. Thus, we cap it off in
761 * those rare cases where the cpu count also exceeds our vector limit.
762 */
763 v_budget = min_t(int, v_budget, hw->mac.max_msix_vectors);
764
765 /* A failure in MSI-X entry allocation isn't fatal, but it does
766 * mean we disable MSI-X capabilities of the adapter. */
767 adapter->msix_entries = kcalloc(v_budget,
768 sizeof(struct msix_entry), GFP_KERNEL);
769 if (adapter->msix_entries) {
770 for (vector = 0; vector < v_budget; vector++)
771 adapter->msix_entries[vector].entry = vector;
772
773 ixgbe_acquire_msix_vectors(adapter, v_budget);
774
775 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
776 goto out;
777 }
778
779 adapter->flags &= ~IXGBE_FLAG_DCB_ENABLED;
780 adapter->flags &= ~IXGBE_FLAG_RSS_ENABLED;
781 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
782 e_err(probe,
783 "ATR is not supported while multiple "
784 "queues are disabled. Disabling Flow Director\n");
785 }
786 adapter->flags &= ~IXGBE_FLAG_FDIR_HASH_CAPABLE;
787 adapter->atr_sample_rate = 0;
788 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
789 ixgbe_disable_sriov(adapter);
790
791 err = ixgbe_set_num_queues(adapter);
792 if (err)
793 return err;
794
Alexander Duyck49c7ffb2012-05-05 05:30:43 +0000795 adapter->num_q_vectors = 1;
796
Jeff Kirsher8af3c332012-02-18 07:08:14 +0000797 err = pci_enable_msi(adapter->pdev);
798 if (!err) {
799 adapter->flags |= IXGBE_FLAG_MSI_ENABLED;
800 } else {
801 netif_printk(adapter, hw, KERN_DEBUG, adapter->netdev,
802 "Unable to allocate MSI interrupt, "
803 "falling back to legacy. Error: %d\n", err);
804 /* reset err */
805 err = 0;
806 }
807
808out:
809 return err;
810}
811
812/**
813 * ixgbe_init_interrupt_scheme - Determine proper interrupt scheme
814 * @adapter: board private structure to initialize
815 *
816 * We determine which interrupt scheme to use based on...
817 * - Kernel support (MSI, MSI-X)
818 * - which can be user-defined (via MODULE_PARAM)
819 * - Hardware queue count (num_*_queues)
820 * - defined by miscellaneous hardware support/features (RSS, etc.)
821 **/
822int ixgbe_init_interrupt_scheme(struct ixgbe_adapter *adapter)
823{
824 int err;
825
826 /* Number of supported queues */
827 err = ixgbe_set_num_queues(adapter);
828 if (err)
829 return err;
830
831 err = ixgbe_set_interrupt_capability(adapter);
832 if (err) {
833 e_dev_err("Unable to setup interrupt capabilities\n");
834 goto err_set_interrupt;
835 }
836
837 err = ixgbe_alloc_q_vectors(adapter);
838 if (err) {
839 e_dev_err("Unable to allocate memory for queue vectors\n");
840 goto err_alloc_q_vectors;
841 }
842
843 ixgbe_cache_ring_register(adapter);
844
845 e_dev_info("Multiqueue %s: Rx Queue count = %u, Tx Queue count = %u\n",
846 (adapter->num_rx_queues > 1) ? "Enabled" : "Disabled",
847 adapter->num_rx_queues, adapter->num_tx_queues);
848
849 set_bit(__IXGBE_DOWN, &adapter->state);
850
851 return 0;
852
853err_alloc_q_vectors:
854 ixgbe_reset_interrupt_capability(adapter);
855err_set_interrupt:
856 return err;
857}
858
859/**
860 * ixgbe_clear_interrupt_scheme - Clear the current interrupt scheme settings
861 * @adapter: board private structure to clear interrupt scheme on
862 *
863 * We go through and clear interrupt specific resources and reset the structure
864 * to pre-load conditions
865 **/
866void ixgbe_clear_interrupt_scheme(struct ixgbe_adapter *adapter)
867{
868 adapter->num_tx_queues = 0;
869 adapter->num_rx_queues = 0;
870
871 ixgbe_free_q_vectors(adapter);
872 ixgbe_reset_interrupt_capability(adapter);
873}
874
875void ixgbe_tx_ctxtdesc(struct ixgbe_ring *tx_ring, u32 vlan_macip_lens,
876 u32 fcoe_sof_eof, u32 type_tucmd, u32 mss_l4len_idx)
877{
878 struct ixgbe_adv_tx_context_desc *context_desc;
879 u16 i = tx_ring->next_to_use;
880
881 context_desc = IXGBE_TX_CTXTDESC(tx_ring, i);
882
883 i++;
884 tx_ring->next_to_use = (i < tx_ring->count) ? i : 0;
885
886 /* set bits to identify this as an advanced context descriptor */
887 type_tucmd |= IXGBE_TXD_CMD_DEXT | IXGBE_ADVTXD_DTYP_CTXT;
888
889 context_desc->vlan_macip_lens = cpu_to_le32(vlan_macip_lens);
890 context_desc->seqnum_seed = cpu_to_le32(fcoe_sof_eof);
891 context_desc->type_tucmd_mlhl = cpu_to_le32(type_tucmd);
892 context_desc->mss_l4len_idx = cpu_to_le32(mss_l4len_idx);
893}
894