blob: 838fa3a2700ab8cfe8230b918bc2223052ed8428 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * Linux network driver for QLogic BR-series Converged Network Adapter.
4 */
5/*
6 * Copyright (c) 2005-2014 Brocade Communications Systems, Inc.
7 * Copyright (c) 2014-2015 QLogic Corporation
8 * All rights reserved
9 * www.qlogic.com
10 */
11#include <linux/bitops.h>
12#include <linux/netdevice.h>
13#include <linux/skbuff.h>
14#include <linux/etherdevice.h>
15#include <linux/in.h>
16#include <linux/ethtool.h>
17#include <linux/if_vlan.h>
18#include <linux/if_ether.h>
19#include <linux/ip.h>
20#include <linux/prefetch.h>
21#include <linux/module.h>
22
23#include "bnad.h"
24#include "bna.h"
25#include "cna.h"
26
27static DEFINE_MUTEX(bnad_fwimg_mutex);
28
29/*
30 * Module params
31 */
32static uint bnad_msix_disable;
33module_param(bnad_msix_disable, uint, 0444);
34MODULE_PARM_DESC(bnad_msix_disable, "Disable MSIX mode");
35
36static uint bnad_ioc_auto_recover = 1;
37module_param(bnad_ioc_auto_recover, uint, 0444);
38MODULE_PARM_DESC(bnad_ioc_auto_recover, "Enable / Disable auto recovery");
39
40static uint bna_debugfs_enable = 1;
41module_param(bna_debugfs_enable, uint, 0644);
42MODULE_PARM_DESC(bna_debugfs_enable, "Enables debugfs feature, default=1,"
43 " Range[false:0|true:1]");
44
45/*
46 * Global variables
47 */
48static u32 bnad_rxqs_per_cq = 2;
49static atomic_t bna_id;
50static const u8 bnad_bcast_addr[] __aligned(2) =
51 { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
52
53/*
54 * Local MACROS
55 */
56#define BNAD_GET_MBOX_IRQ(_bnad) \
57 (((_bnad)->cfg_flags & BNAD_CF_MSIX) ? \
58 ((_bnad)->msix_table[BNAD_MAILBOX_MSIX_INDEX].vector) : \
59 ((_bnad)->pcidev->irq))
60
61#define BNAD_FILL_UNMAPQ_MEM_REQ(_res_info, _num, _size) \
62do { \
63 (_res_info)->res_type = BNA_RES_T_MEM; \
64 (_res_info)->res_u.mem_info.mem_type = BNA_MEM_T_KVA; \
65 (_res_info)->res_u.mem_info.num = (_num); \
66 (_res_info)->res_u.mem_info.len = (_size); \
67} while (0)
68
69/*
70 * Reinitialize completions in CQ, once Rx is taken down
71 */
72static void
73bnad_cq_cleanup(struct bnad *bnad, struct bna_ccb *ccb)
74{
75 struct bna_cq_entry *cmpl;
76 int i;
77
78 for (i = 0; i < ccb->q_depth; i++) {
79 cmpl = &((struct bna_cq_entry *)ccb->sw_q)[i];
80 cmpl->valid = 0;
81 }
82}
83
84/* Tx Datapath functions */
85
86
87/* Caller should ensure that the entry at unmap_q[index] is valid */
88static u32
89bnad_tx_buff_unmap(struct bnad *bnad,
90 struct bnad_tx_unmap *unmap_q,
91 u32 q_depth, u32 index)
92{
93 struct bnad_tx_unmap *unmap;
94 struct sk_buff *skb;
95 int vector, nvecs;
96
97 unmap = &unmap_q[index];
98 nvecs = unmap->nvecs;
99
100 skb = unmap->skb;
101 unmap->skb = NULL;
102 unmap->nvecs = 0;
103 dma_unmap_single(&bnad->pcidev->dev,
104 dma_unmap_addr(&unmap->vectors[0], dma_addr),
105 skb_headlen(skb), DMA_TO_DEVICE);
106 dma_unmap_addr_set(&unmap->vectors[0], dma_addr, 0);
107 nvecs--;
108
109 vector = 0;
110 while (nvecs) {
111 vector++;
112 if (vector == BFI_TX_MAX_VECTORS_PER_WI) {
113 vector = 0;
114 BNA_QE_INDX_INC(index, q_depth);
115 unmap = &unmap_q[index];
116 }
117
118 dma_unmap_page(&bnad->pcidev->dev,
119 dma_unmap_addr(&unmap->vectors[vector], dma_addr),
120 dma_unmap_len(&unmap->vectors[vector], dma_len),
121 DMA_TO_DEVICE);
122 dma_unmap_addr_set(&unmap->vectors[vector], dma_addr, 0);
123 nvecs--;
124 }
125
126 BNA_QE_INDX_INC(index, q_depth);
127
128 return index;
129}
130
131/*
132 * Frees all pending Tx Bufs
133 * At this point no activity is expected on the Q,
134 * so DMA unmap & freeing is fine.
135 */
136static void
137bnad_txq_cleanup(struct bnad *bnad, struct bna_tcb *tcb)
138{
139 struct bnad_tx_unmap *unmap_q = tcb->unmap_q;
140 struct sk_buff *skb;
141 int i;
142
143 for (i = 0; i < tcb->q_depth; i++) {
144 skb = unmap_q[i].skb;
145 if (!skb)
146 continue;
147 bnad_tx_buff_unmap(bnad, unmap_q, tcb->q_depth, i);
148
149 dev_kfree_skb_any(skb);
150 }
151}
152
153/*
154 * bnad_txcmpl_process : Frees the Tx bufs on Tx completion
155 * Can be called in a) Interrupt context
156 * b) Sending context
157 */
158static u32
159bnad_txcmpl_process(struct bnad *bnad, struct bna_tcb *tcb)
160{
161 u32 sent_packets = 0, sent_bytes = 0;
162 u32 wis, unmap_wis, hw_cons, cons, q_depth;
163 struct bnad_tx_unmap *unmap_q = tcb->unmap_q;
164 struct bnad_tx_unmap *unmap;
165 struct sk_buff *skb;
166
167 /* Just return if TX is stopped */
168 if (!test_bit(BNAD_TXQ_TX_STARTED, &tcb->flags))
169 return 0;
170
171 hw_cons = *(tcb->hw_consumer_index);
172 rmb();
173 cons = tcb->consumer_index;
174 q_depth = tcb->q_depth;
175
176 wis = BNA_Q_INDEX_CHANGE(cons, hw_cons, q_depth);
177 BUG_ON(!(wis <= BNA_QE_IN_USE_CNT(tcb, tcb->q_depth)));
178
179 while (wis) {
180 unmap = &unmap_q[cons];
181
182 skb = unmap->skb;
183
184 sent_packets++;
185 sent_bytes += skb->len;
186
187 unmap_wis = BNA_TXQ_WI_NEEDED(unmap->nvecs);
188 wis -= unmap_wis;
189
190 cons = bnad_tx_buff_unmap(bnad, unmap_q, q_depth, cons);
191 dev_kfree_skb_any(skb);
192 }
193
194 /* Update consumer pointers. */
195 tcb->consumer_index = hw_cons;
196
197 tcb->txq->tx_packets += sent_packets;
198 tcb->txq->tx_bytes += sent_bytes;
199
200 return sent_packets;
201}
202
203static u32
204bnad_tx_complete(struct bnad *bnad, struct bna_tcb *tcb)
205{
206 struct net_device *netdev = bnad->netdev;
207 u32 sent = 0;
208
209 if (test_and_set_bit(BNAD_TXQ_FREE_SENT, &tcb->flags))
210 return 0;
211
212 sent = bnad_txcmpl_process(bnad, tcb);
213 if (sent) {
214 if (netif_queue_stopped(netdev) &&
215 netif_carrier_ok(netdev) &&
216 BNA_QE_FREE_CNT(tcb, tcb->q_depth) >=
217 BNAD_NETIF_WAKE_THRESHOLD) {
218 if (test_bit(BNAD_TXQ_TX_STARTED, &tcb->flags)) {
219 netif_wake_queue(netdev);
220 BNAD_UPDATE_CTR(bnad, netif_queue_wakeup);
221 }
222 }
223 }
224
225 if (likely(test_bit(BNAD_TXQ_TX_STARTED, &tcb->flags)))
226 bna_ib_ack(tcb->i_dbell, sent);
227
228 smp_mb__before_atomic();
229 clear_bit(BNAD_TXQ_FREE_SENT, &tcb->flags);
230
231 return sent;
232}
233
234/* MSIX Tx Completion Handler */
235static irqreturn_t
236bnad_msix_tx(int irq, void *data)
237{
238 struct bna_tcb *tcb = (struct bna_tcb *)data;
239 struct bnad *bnad = tcb->bnad;
240
241 bnad_tx_complete(bnad, tcb);
242
243 return IRQ_HANDLED;
244}
245
246static inline void
247bnad_rxq_alloc_uninit(struct bnad *bnad, struct bna_rcb *rcb)
248{
249 struct bnad_rx_unmap_q *unmap_q = rcb->unmap_q;
250
251 unmap_q->reuse_pi = -1;
252 unmap_q->alloc_order = -1;
253 unmap_q->map_size = 0;
254 unmap_q->type = BNAD_RXBUF_NONE;
255}
256
257/* Default is page-based allocation. Multi-buffer support - TBD */
258static int
259bnad_rxq_alloc_init(struct bnad *bnad, struct bna_rcb *rcb)
260{
261 struct bnad_rx_unmap_q *unmap_q = rcb->unmap_q;
262 int order;
263
264 bnad_rxq_alloc_uninit(bnad, rcb);
265
266 order = get_order(rcb->rxq->buffer_size);
267
268 unmap_q->type = BNAD_RXBUF_PAGE;
269
270 if (bna_is_small_rxq(rcb->id)) {
271 unmap_q->alloc_order = 0;
272 unmap_q->map_size = rcb->rxq->buffer_size;
273 } else {
274 if (rcb->rxq->multi_buffer) {
275 unmap_q->alloc_order = 0;
276 unmap_q->map_size = rcb->rxq->buffer_size;
277 unmap_q->type = BNAD_RXBUF_MULTI_BUFF;
278 } else {
279 unmap_q->alloc_order = order;
280 unmap_q->map_size =
281 (rcb->rxq->buffer_size > 2048) ?
282 PAGE_SIZE << order : 2048;
283 }
284 }
285
286 BUG_ON((PAGE_SIZE << order) % unmap_q->map_size);
287
288 return 0;
289}
290
291static inline void
292bnad_rxq_cleanup_page(struct bnad *bnad, struct bnad_rx_unmap *unmap)
293{
294 if (!unmap->page)
295 return;
296
297 dma_unmap_page(&bnad->pcidev->dev,
298 dma_unmap_addr(&unmap->vector, dma_addr),
299 unmap->vector.len, DMA_FROM_DEVICE);
300 put_page(unmap->page);
301 unmap->page = NULL;
302 dma_unmap_addr_set(&unmap->vector, dma_addr, 0);
303 unmap->vector.len = 0;
304}
305
306static inline void
307bnad_rxq_cleanup_skb(struct bnad *bnad, struct bnad_rx_unmap *unmap)
308{
309 if (!unmap->skb)
310 return;
311
312 dma_unmap_single(&bnad->pcidev->dev,
313 dma_unmap_addr(&unmap->vector, dma_addr),
314 unmap->vector.len, DMA_FROM_DEVICE);
315 dev_kfree_skb_any(unmap->skb);
316 unmap->skb = NULL;
317 dma_unmap_addr_set(&unmap->vector, dma_addr, 0);
318 unmap->vector.len = 0;
319}
320
321static void
322bnad_rxq_cleanup(struct bnad *bnad, struct bna_rcb *rcb)
323{
324 struct bnad_rx_unmap_q *unmap_q = rcb->unmap_q;
325 int i;
326
327 for (i = 0; i < rcb->q_depth; i++) {
328 struct bnad_rx_unmap *unmap = &unmap_q->unmap[i];
329
330 if (BNAD_RXBUF_IS_SK_BUFF(unmap_q->type))
331 bnad_rxq_cleanup_skb(bnad, unmap);
332 else
333 bnad_rxq_cleanup_page(bnad, unmap);
334 }
335 bnad_rxq_alloc_uninit(bnad, rcb);
336}
337
338static u32
339bnad_rxq_refill_page(struct bnad *bnad, struct bna_rcb *rcb, u32 nalloc)
340{
341 u32 alloced, prod, q_depth;
342 struct bnad_rx_unmap_q *unmap_q = rcb->unmap_q;
343 struct bnad_rx_unmap *unmap, *prev;
344 struct bna_rxq_entry *rxent;
345 struct page *page;
346 u32 page_offset, alloc_size;
347 dma_addr_t dma_addr;
348
349 prod = rcb->producer_index;
350 q_depth = rcb->q_depth;
351
352 alloc_size = PAGE_SIZE << unmap_q->alloc_order;
353 alloced = 0;
354
355 while (nalloc--) {
356 unmap = &unmap_q->unmap[prod];
357
358 if (unmap_q->reuse_pi < 0) {
359 page = alloc_pages(GFP_ATOMIC | __GFP_COMP,
360 unmap_q->alloc_order);
361 page_offset = 0;
362 } else {
363 prev = &unmap_q->unmap[unmap_q->reuse_pi];
364 page = prev->page;
365 page_offset = prev->page_offset + unmap_q->map_size;
366 get_page(page);
367 }
368
369 if (unlikely(!page)) {
370 BNAD_UPDATE_CTR(bnad, rxbuf_alloc_failed);
371 rcb->rxq->rxbuf_alloc_failed++;
372 goto finishing;
373 }
374
375 dma_addr = dma_map_page(&bnad->pcidev->dev, page, page_offset,
376 unmap_q->map_size, DMA_FROM_DEVICE);
377 if (dma_mapping_error(&bnad->pcidev->dev, dma_addr)) {
378 put_page(page);
379 BNAD_UPDATE_CTR(bnad, rxbuf_map_failed);
380 rcb->rxq->rxbuf_map_failed++;
381 goto finishing;
382 }
383
384 unmap->page = page;
385 unmap->page_offset = page_offset;
386 dma_unmap_addr_set(&unmap->vector, dma_addr, dma_addr);
387 unmap->vector.len = unmap_q->map_size;
388 page_offset += unmap_q->map_size;
389
390 if (page_offset < alloc_size)
391 unmap_q->reuse_pi = prod;
392 else
393 unmap_q->reuse_pi = -1;
394
395 rxent = &((struct bna_rxq_entry *)rcb->sw_q)[prod];
396 BNA_SET_DMA_ADDR(dma_addr, &rxent->host_addr);
397 BNA_QE_INDX_INC(prod, q_depth);
398 alloced++;
399 }
400
401finishing:
402 if (likely(alloced)) {
403 rcb->producer_index = prod;
404 smp_mb();
405 if (likely(test_bit(BNAD_RXQ_POST_OK, &rcb->flags)))
406 bna_rxq_prod_indx_doorbell(rcb);
407 }
408
409 return alloced;
410}
411
412static u32
413bnad_rxq_refill_skb(struct bnad *bnad, struct bna_rcb *rcb, u32 nalloc)
414{
415 u32 alloced, prod, q_depth, buff_sz;
416 struct bnad_rx_unmap_q *unmap_q = rcb->unmap_q;
417 struct bnad_rx_unmap *unmap;
418 struct bna_rxq_entry *rxent;
419 struct sk_buff *skb;
420 dma_addr_t dma_addr;
421
422 buff_sz = rcb->rxq->buffer_size;
423 prod = rcb->producer_index;
424 q_depth = rcb->q_depth;
425
426 alloced = 0;
427 while (nalloc--) {
428 unmap = &unmap_q->unmap[prod];
429
430 skb = netdev_alloc_skb_ip_align(bnad->netdev, buff_sz);
431
432 if (unlikely(!skb)) {
433 BNAD_UPDATE_CTR(bnad, rxbuf_alloc_failed);
434 rcb->rxq->rxbuf_alloc_failed++;
435 goto finishing;
436 }
437
438 dma_addr = dma_map_single(&bnad->pcidev->dev, skb->data,
439 buff_sz, DMA_FROM_DEVICE);
440 if (dma_mapping_error(&bnad->pcidev->dev, dma_addr)) {
441 dev_kfree_skb_any(skb);
442 BNAD_UPDATE_CTR(bnad, rxbuf_map_failed);
443 rcb->rxq->rxbuf_map_failed++;
444 goto finishing;
445 }
446
447 unmap->skb = skb;
448 dma_unmap_addr_set(&unmap->vector, dma_addr, dma_addr);
449 unmap->vector.len = buff_sz;
450
451 rxent = &((struct bna_rxq_entry *)rcb->sw_q)[prod];
452 BNA_SET_DMA_ADDR(dma_addr, &rxent->host_addr);
453 BNA_QE_INDX_INC(prod, q_depth);
454 alloced++;
455 }
456
457finishing:
458 if (likely(alloced)) {
459 rcb->producer_index = prod;
460 smp_mb();
461 if (likely(test_bit(BNAD_RXQ_POST_OK, &rcb->flags)))
462 bna_rxq_prod_indx_doorbell(rcb);
463 }
464
465 return alloced;
466}
467
468static inline void
469bnad_rxq_post(struct bnad *bnad, struct bna_rcb *rcb)
470{
471 struct bnad_rx_unmap_q *unmap_q = rcb->unmap_q;
472 u32 to_alloc;
473
474 to_alloc = BNA_QE_FREE_CNT(rcb, rcb->q_depth);
475 if (!(to_alloc >> BNAD_RXQ_REFILL_THRESHOLD_SHIFT))
476 return;
477
478 if (BNAD_RXBUF_IS_SK_BUFF(unmap_q->type))
479 bnad_rxq_refill_skb(bnad, rcb, to_alloc);
480 else
481 bnad_rxq_refill_page(bnad, rcb, to_alloc);
482}
483
484#define flags_cksum_prot_mask (BNA_CQ_EF_IPV4 | BNA_CQ_EF_L3_CKSUM_OK | \
485 BNA_CQ_EF_IPV6 | \
486 BNA_CQ_EF_TCP | BNA_CQ_EF_UDP | \
487 BNA_CQ_EF_L4_CKSUM_OK)
488
489#define flags_tcp4 (BNA_CQ_EF_IPV4 | BNA_CQ_EF_L3_CKSUM_OK | \
490 BNA_CQ_EF_TCP | BNA_CQ_EF_L4_CKSUM_OK)
491#define flags_tcp6 (BNA_CQ_EF_IPV6 | \
492 BNA_CQ_EF_TCP | BNA_CQ_EF_L4_CKSUM_OK)
493#define flags_udp4 (BNA_CQ_EF_IPV4 | BNA_CQ_EF_L3_CKSUM_OK | \
494 BNA_CQ_EF_UDP | BNA_CQ_EF_L4_CKSUM_OK)
495#define flags_udp6 (BNA_CQ_EF_IPV6 | \
496 BNA_CQ_EF_UDP | BNA_CQ_EF_L4_CKSUM_OK)
497
498static void
499bnad_cq_drop_packet(struct bnad *bnad, struct bna_rcb *rcb,
500 u32 sop_ci, u32 nvecs)
501{
502 struct bnad_rx_unmap_q *unmap_q;
503 struct bnad_rx_unmap *unmap;
504 u32 ci, vec;
505
506 unmap_q = rcb->unmap_q;
507 for (vec = 0, ci = sop_ci; vec < nvecs; vec++) {
508 unmap = &unmap_q->unmap[ci];
509 BNA_QE_INDX_INC(ci, rcb->q_depth);
510
511 if (BNAD_RXBUF_IS_SK_BUFF(unmap_q->type))
512 bnad_rxq_cleanup_skb(bnad, unmap);
513 else
514 bnad_rxq_cleanup_page(bnad, unmap);
515 }
516}
517
518static void
519bnad_cq_setup_skb_frags(struct bna_ccb *ccb, struct sk_buff *skb, u32 nvecs)
520{
521 struct bna_rcb *rcb;
522 struct bnad *bnad;
523 struct bnad_rx_unmap_q *unmap_q;
524 struct bna_cq_entry *cq, *cmpl;
525 u32 ci, pi, totlen = 0;
526
527 cq = ccb->sw_q;
528 pi = ccb->producer_index;
529 cmpl = &cq[pi];
530
531 rcb = bna_is_small_rxq(cmpl->rxq_id) ? ccb->rcb[1] : ccb->rcb[0];
532 unmap_q = rcb->unmap_q;
533 bnad = rcb->bnad;
534 ci = rcb->consumer_index;
535
536 /* prefetch header */
537 prefetch(page_address(unmap_q->unmap[ci].page) +
538 unmap_q->unmap[ci].page_offset);
539
540 while (nvecs--) {
541 struct bnad_rx_unmap *unmap;
542 u32 len;
543
544 unmap = &unmap_q->unmap[ci];
545 BNA_QE_INDX_INC(ci, rcb->q_depth);
546
547 dma_unmap_page(&bnad->pcidev->dev,
548 dma_unmap_addr(&unmap->vector, dma_addr),
549 unmap->vector.len, DMA_FROM_DEVICE);
550
551 len = ntohs(cmpl->length);
552 skb->truesize += unmap->vector.len;
553 totlen += len;
554
555 skb_fill_page_desc(skb, skb_shinfo(skb)->nr_frags,
556 unmap->page, unmap->page_offset, len);
557
558 unmap->page = NULL;
559 unmap->vector.len = 0;
560
561 BNA_QE_INDX_INC(pi, ccb->q_depth);
562 cmpl = &cq[pi];
563 }
564
565 skb->len += totlen;
566 skb->data_len += totlen;
567}
568
569static inline void
570bnad_cq_setup_skb(struct bnad *bnad, struct sk_buff *skb,
571 struct bnad_rx_unmap *unmap, u32 len)
572{
573 prefetch(skb->data);
574
575 dma_unmap_single(&bnad->pcidev->dev,
576 dma_unmap_addr(&unmap->vector, dma_addr),
577 unmap->vector.len, DMA_FROM_DEVICE);
578
579 skb_put(skb, len);
580 skb->protocol = eth_type_trans(skb, bnad->netdev);
581
582 unmap->skb = NULL;
583 unmap->vector.len = 0;
584}
585
586static u32
587bnad_cq_process(struct bnad *bnad, struct bna_ccb *ccb, int budget)
588{
589 struct bna_cq_entry *cq, *cmpl, *next_cmpl;
590 struct bna_rcb *rcb = NULL;
591 struct bnad_rx_unmap_q *unmap_q;
592 struct bnad_rx_unmap *unmap = NULL;
593 struct sk_buff *skb = NULL;
594 struct bna_pkt_rate *pkt_rt = &ccb->pkt_rate;
595 struct bnad_rx_ctrl *rx_ctrl = ccb->ctrl;
596 u32 packets = 0, len = 0, totlen = 0;
597 u32 pi, vec, sop_ci = 0, nvecs = 0;
598 u32 flags, masked_flags;
599
600 prefetch(bnad->netdev);
601
602 cq = ccb->sw_q;
603
604 while (packets < budget) {
605 cmpl = &cq[ccb->producer_index];
606 if (!cmpl->valid)
607 break;
608 /* The 'valid' field is set by the adapter, only after writing
609 * the other fields of completion entry. Hence, do not load
610 * other fields of completion entry *before* the 'valid' is
611 * loaded. Adding the rmb() here prevents the compiler and/or
612 * CPU from reordering the reads which would potentially result
613 * in reading stale values in completion entry.
614 */
615 rmb();
616
617 BNA_UPDATE_PKT_CNT(pkt_rt, ntohs(cmpl->length));
618
619 if (bna_is_small_rxq(cmpl->rxq_id))
620 rcb = ccb->rcb[1];
621 else
622 rcb = ccb->rcb[0];
623
624 unmap_q = rcb->unmap_q;
625
626 /* start of packet ci */
627 sop_ci = rcb->consumer_index;
628
629 if (BNAD_RXBUF_IS_SK_BUFF(unmap_q->type)) {
630 unmap = &unmap_q->unmap[sop_ci];
631 skb = unmap->skb;
632 } else {
633 skb = napi_get_frags(&rx_ctrl->napi);
634 if (unlikely(!skb))
635 break;
636 }
637 prefetch(skb);
638
639 flags = ntohl(cmpl->flags);
640 len = ntohs(cmpl->length);
641 totlen = len;
642 nvecs = 1;
643
644 /* Check all the completions for this frame.
645 * busy-wait doesn't help much, break here.
646 */
647 if (BNAD_RXBUF_IS_MULTI_BUFF(unmap_q->type) &&
648 (flags & BNA_CQ_EF_EOP) == 0) {
649 pi = ccb->producer_index;
650 do {
651 BNA_QE_INDX_INC(pi, ccb->q_depth);
652 next_cmpl = &cq[pi];
653
654 if (!next_cmpl->valid)
655 break;
656 /* The 'valid' field is set by the adapter, only
657 * after writing the other fields of completion
658 * entry. Hence, do not load other fields of
659 * completion entry *before* the 'valid' is
660 * loaded. Adding the rmb() here prevents the
661 * compiler and/or CPU from reordering the reads
662 * which would potentially result in reading
663 * stale values in completion entry.
664 */
665 rmb();
666
667 len = ntohs(next_cmpl->length);
668 flags = ntohl(next_cmpl->flags);
669
670 nvecs++;
671 totlen += len;
672 } while ((flags & BNA_CQ_EF_EOP) == 0);
673
674 if (!next_cmpl->valid)
675 break;
676 }
677 packets++;
678
679 /* TODO: BNA_CQ_EF_LOCAL ? */
680 if (unlikely(flags & (BNA_CQ_EF_MAC_ERROR |
681 BNA_CQ_EF_FCS_ERROR |
682 BNA_CQ_EF_TOO_LONG))) {
683 bnad_cq_drop_packet(bnad, rcb, sop_ci, nvecs);
684 rcb->rxq->rx_packets_with_error++;
685
686 goto next;
687 }
688
689 if (BNAD_RXBUF_IS_SK_BUFF(unmap_q->type))
690 bnad_cq_setup_skb(bnad, skb, unmap, len);
691 else
692 bnad_cq_setup_skb_frags(ccb, skb, nvecs);
693
694 rcb->rxq->rx_packets++;
695 rcb->rxq->rx_bytes += totlen;
696 ccb->bytes_per_intr += totlen;
697
698 masked_flags = flags & flags_cksum_prot_mask;
699
700 if (likely
701 ((bnad->netdev->features & NETIF_F_RXCSUM) &&
702 ((masked_flags == flags_tcp4) ||
703 (masked_flags == flags_udp4) ||
704 (masked_flags == flags_tcp6) ||
705 (masked_flags == flags_udp6))))
706 skb->ip_summed = CHECKSUM_UNNECESSARY;
707 else
708 skb_checksum_none_assert(skb);
709
710 if ((flags & BNA_CQ_EF_VLAN) &&
711 (bnad->netdev->features & NETIF_F_HW_VLAN_CTAG_RX))
712 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), ntohs(cmpl->vlan_tag));
713
714 if (BNAD_RXBUF_IS_SK_BUFF(unmap_q->type))
715 netif_receive_skb(skb);
716 else
717 napi_gro_frags(&rx_ctrl->napi);
718
719next:
720 BNA_QE_INDX_ADD(rcb->consumer_index, nvecs, rcb->q_depth);
721 for (vec = 0; vec < nvecs; vec++) {
722 cmpl = &cq[ccb->producer_index];
723 cmpl->valid = 0;
724 BNA_QE_INDX_INC(ccb->producer_index, ccb->q_depth);
725 }
726 }
727
728 napi_gro_flush(&rx_ctrl->napi, false);
729 if (likely(test_bit(BNAD_RXQ_STARTED, &ccb->rcb[0]->flags)))
730 bna_ib_ack_disable_irq(ccb->i_dbell, packets);
731
732 bnad_rxq_post(bnad, ccb->rcb[0]);
733 if (ccb->rcb[1])
734 bnad_rxq_post(bnad, ccb->rcb[1]);
735
736 return packets;
737}
738
739static void
740bnad_netif_rx_schedule_poll(struct bnad *bnad, struct bna_ccb *ccb)
741{
742 struct bnad_rx_ctrl *rx_ctrl = (struct bnad_rx_ctrl *)(ccb->ctrl);
743 struct napi_struct *napi = &rx_ctrl->napi;
744
745 if (likely(napi_schedule_prep(napi))) {
746 __napi_schedule(napi);
747 rx_ctrl->rx_schedule++;
748 }
749}
750
751/* MSIX Rx Path Handler */
752static irqreturn_t
753bnad_msix_rx(int irq, void *data)
754{
755 struct bna_ccb *ccb = (struct bna_ccb *)data;
756
757 if (ccb) {
758 ((struct bnad_rx_ctrl *)ccb->ctrl)->rx_intr_ctr++;
759 bnad_netif_rx_schedule_poll(ccb->bnad, ccb);
760 }
761
762 return IRQ_HANDLED;
763}
764
765/* Interrupt handlers */
766
767/* Mbox Interrupt Handlers */
768static irqreturn_t
769bnad_msix_mbox_handler(int irq, void *data)
770{
771 u32 intr_status;
772 unsigned long flags;
773 struct bnad *bnad = (struct bnad *)data;
774
775 spin_lock_irqsave(&bnad->bna_lock, flags);
776 if (unlikely(test_bit(BNAD_RF_MBOX_IRQ_DISABLED, &bnad->run_flags))) {
777 spin_unlock_irqrestore(&bnad->bna_lock, flags);
778 return IRQ_HANDLED;
779 }
780
781 bna_intr_status_get(&bnad->bna, intr_status);
782
783 if (BNA_IS_MBOX_ERR_INTR(&bnad->bna, intr_status))
784 bna_mbox_handler(&bnad->bna, intr_status);
785
786 spin_unlock_irqrestore(&bnad->bna_lock, flags);
787
788 return IRQ_HANDLED;
789}
790
791static irqreturn_t
792bnad_isr(int irq, void *data)
793{
794 int i, j;
795 u32 intr_status;
796 unsigned long flags;
797 struct bnad *bnad = (struct bnad *)data;
798 struct bnad_rx_info *rx_info;
799 struct bnad_rx_ctrl *rx_ctrl;
800 struct bna_tcb *tcb = NULL;
801
802 spin_lock_irqsave(&bnad->bna_lock, flags);
803 if (unlikely(test_bit(BNAD_RF_MBOX_IRQ_DISABLED, &bnad->run_flags))) {
804 spin_unlock_irqrestore(&bnad->bna_lock, flags);
805 return IRQ_NONE;
806 }
807
808 bna_intr_status_get(&bnad->bna, intr_status);
809
810 if (unlikely(!intr_status)) {
811 spin_unlock_irqrestore(&bnad->bna_lock, flags);
812 return IRQ_NONE;
813 }
814
815 if (BNA_IS_MBOX_ERR_INTR(&bnad->bna, intr_status))
816 bna_mbox_handler(&bnad->bna, intr_status);
817
818 spin_unlock_irqrestore(&bnad->bna_lock, flags);
819
820 if (!BNA_IS_INTX_DATA_INTR(intr_status))
821 return IRQ_HANDLED;
822
823 /* Process data interrupts */
824 /* Tx processing */
825 for (i = 0; i < bnad->num_tx; i++) {
826 for (j = 0; j < bnad->num_txq_per_tx; j++) {
827 tcb = bnad->tx_info[i].tcb[j];
828 if (tcb && test_bit(BNAD_TXQ_TX_STARTED, &tcb->flags))
829 bnad_tx_complete(bnad, bnad->tx_info[i].tcb[j]);
830 }
831 }
832 /* Rx processing */
833 for (i = 0; i < bnad->num_rx; i++) {
834 rx_info = &bnad->rx_info[i];
835 if (!rx_info->rx)
836 continue;
837 for (j = 0; j < bnad->num_rxp_per_rx; j++) {
838 rx_ctrl = &rx_info->rx_ctrl[j];
839 if (rx_ctrl->ccb)
840 bnad_netif_rx_schedule_poll(bnad,
841 rx_ctrl->ccb);
842 }
843 }
844 return IRQ_HANDLED;
845}
846
847/*
848 * Called in interrupt / callback context
849 * with bna_lock held, so cfg_flags access is OK
850 */
851static void
852bnad_enable_mbox_irq(struct bnad *bnad)
853{
854 clear_bit(BNAD_RF_MBOX_IRQ_DISABLED, &bnad->run_flags);
855
856 BNAD_UPDATE_CTR(bnad, mbox_intr_enabled);
857}
858
859/*
860 * Called with bnad->bna_lock held b'cos of
861 * bnad->cfg_flags access.
862 */
863static void
864bnad_disable_mbox_irq(struct bnad *bnad)
865{
866 set_bit(BNAD_RF_MBOX_IRQ_DISABLED, &bnad->run_flags);
867
868 BNAD_UPDATE_CTR(bnad, mbox_intr_disabled);
869}
870
871static void
872bnad_set_netdev_perm_addr(struct bnad *bnad)
873{
874 struct net_device *netdev = bnad->netdev;
875
876 ether_addr_copy(netdev->perm_addr, bnad->perm_addr);
877 if (is_zero_ether_addr(netdev->dev_addr))
878 ether_addr_copy(netdev->dev_addr, bnad->perm_addr);
879}
880
881/* Control Path Handlers */
882
883/* Callbacks */
884void
885bnad_cb_mbox_intr_enable(struct bnad *bnad)
886{
887 bnad_enable_mbox_irq(bnad);
888}
889
890void
891bnad_cb_mbox_intr_disable(struct bnad *bnad)
892{
893 bnad_disable_mbox_irq(bnad);
894}
895
896void
897bnad_cb_ioceth_ready(struct bnad *bnad)
898{
899 bnad->bnad_completions.ioc_comp_status = BNA_CB_SUCCESS;
900 complete(&bnad->bnad_completions.ioc_comp);
901}
902
903void
904bnad_cb_ioceth_failed(struct bnad *bnad)
905{
906 bnad->bnad_completions.ioc_comp_status = BNA_CB_FAIL;
907 complete(&bnad->bnad_completions.ioc_comp);
908}
909
910void
911bnad_cb_ioceth_disabled(struct bnad *bnad)
912{
913 bnad->bnad_completions.ioc_comp_status = BNA_CB_SUCCESS;
914 complete(&bnad->bnad_completions.ioc_comp);
915}
916
917static void
918bnad_cb_enet_disabled(void *arg)
919{
920 struct bnad *bnad = (struct bnad *)arg;
921
922 netif_carrier_off(bnad->netdev);
923 complete(&bnad->bnad_completions.enet_comp);
924}
925
926void
927bnad_cb_ethport_link_status(struct bnad *bnad,
928 enum bna_link_status link_status)
929{
930 bool link_up = false;
931
932 link_up = (link_status == BNA_LINK_UP) || (link_status == BNA_CEE_UP);
933
934 if (link_status == BNA_CEE_UP) {
935 if (!test_bit(BNAD_RF_CEE_RUNNING, &bnad->run_flags))
936 BNAD_UPDATE_CTR(bnad, cee_toggle);
937 set_bit(BNAD_RF_CEE_RUNNING, &bnad->run_flags);
938 } else {
939 if (test_bit(BNAD_RF_CEE_RUNNING, &bnad->run_flags))
940 BNAD_UPDATE_CTR(bnad, cee_toggle);
941 clear_bit(BNAD_RF_CEE_RUNNING, &bnad->run_flags);
942 }
943
944 if (link_up) {
945 if (!netif_carrier_ok(bnad->netdev)) {
946 uint tx_id, tcb_id;
947 netdev_info(bnad->netdev, "link up\n");
948 netif_carrier_on(bnad->netdev);
949 BNAD_UPDATE_CTR(bnad, link_toggle);
950 for (tx_id = 0; tx_id < bnad->num_tx; tx_id++) {
951 for (tcb_id = 0; tcb_id < bnad->num_txq_per_tx;
952 tcb_id++) {
953 struct bna_tcb *tcb =
954 bnad->tx_info[tx_id].tcb[tcb_id];
955 u32 txq_id;
956 if (!tcb)
957 continue;
958
959 txq_id = tcb->id;
960
961 if (test_bit(BNAD_TXQ_TX_STARTED,
962 &tcb->flags)) {
963 /*
964 * Force an immediate
965 * Transmit Schedule */
966 netif_wake_subqueue(
967 bnad->netdev,
968 txq_id);
969 BNAD_UPDATE_CTR(bnad,
970 netif_queue_wakeup);
971 } else {
972 netif_stop_subqueue(
973 bnad->netdev,
974 txq_id);
975 BNAD_UPDATE_CTR(bnad,
976 netif_queue_stop);
977 }
978 }
979 }
980 }
981 } else {
982 if (netif_carrier_ok(bnad->netdev)) {
983 netdev_info(bnad->netdev, "link down\n");
984 netif_carrier_off(bnad->netdev);
985 BNAD_UPDATE_CTR(bnad, link_toggle);
986 }
987 }
988}
989
990static void
991bnad_cb_tx_disabled(void *arg, struct bna_tx *tx)
992{
993 struct bnad *bnad = (struct bnad *)arg;
994
995 complete(&bnad->bnad_completions.tx_comp);
996}
997
998static void
999bnad_cb_tcb_setup(struct bnad *bnad, struct bna_tcb *tcb)
1000{
1001 struct bnad_tx_info *tx_info =
1002 (struct bnad_tx_info *)tcb->txq->tx->priv;
1003
1004 tcb->priv = tcb;
1005 tx_info->tcb[tcb->id] = tcb;
1006}
1007
1008static void
1009bnad_cb_tcb_destroy(struct bnad *bnad, struct bna_tcb *tcb)
1010{
1011 struct bnad_tx_info *tx_info =
1012 (struct bnad_tx_info *)tcb->txq->tx->priv;
1013
1014 tx_info->tcb[tcb->id] = NULL;
1015 tcb->priv = NULL;
1016}
1017
1018static void
1019bnad_cb_ccb_setup(struct bnad *bnad, struct bna_ccb *ccb)
1020{
1021 struct bnad_rx_info *rx_info =
1022 (struct bnad_rx_info *)ccb->cq->rx->priv;
1023
1024 rx_info->rx_ctrl[ccb->id].ccb = ccb;
1025 ccb->ctrl = &rx_info->rx_ctrl[ccb->id];
1026}
1027
1028static void
1029bnad_cb_ccb_destroy(struct bnad *bnad, struct bna_ccb *ccb)
1030{
1031 struct bnad_rx_info *rx_info =
1032 (struct bnad_rx_info *)ccb->cq->rx->priv;
1033
1034 rx_info->rx_ctrl[ccb->id].ccb = NULL;
1035}
1036
1037static void
1038bnad_cb_tx_stall(struct bnad *bnad, struct bna_tx *tx)
1039{
1040 struct bnad_tx_info *tx_info =
1041 (struct bnad_tx_info *)tx->priv;
1042 struct bna_tcb *tcb;
1043 u32 txq_id;
1044 int i;
1045
1046 for (i = 0; i < BNAD_MAX_TXQ_PER_TX; i++) {
1047 tcb = tx_info->tcb[i];
1048 if (!tcb)
1049 continue;
1050 txq_id = tcb->id;
1051 clear_bit(BNAD_TXQ_TX_STARTED, &tcb->flags);
1052 netif_stop_subqueue(bnad->netdev, txq_id);
1053 }
1054}
1055
1056static void
1057bnad_cb_tx_resume(struct bnad *bnad, struct bna_tx *tx)
1058{
1059 struct bnad_tx_info *tx_info = (struct bnad_tx_info *)tx->priv;
1060 struct bna_tcb *tcb;
1061 u32 txq_id;
1062 int i;
1063
1064 for (i = 0; i < BNAD_MAX_TXQ_PER_TX; i++) {
1065 tcb = tx_info->tcb[i];
1066 if (!tcb)
1067 continue;
1068 txq_id = tcb->id;
1069
1070 BUG_ON(test_bit(BNAD_TXQ_TX_STARTED, &tcb->flags));
1071 set_bit(BNAD_TXQ_TX_STARTED, &tcb->flags);
1072 BUG_ON(*(tcb->hw_consumer_index) != 0);
1073
1074 if (netif_carrier_ok(bnad->netdev)) {
1075 netif_wake_subqueue(bnad->netdev, txq_id);
1076 BNAD_UPDATE_CTR(bnad, netif_queue_wakeup);
1077 }
1078 }
1079
1080 /*
1081 * Workaround for first ioceth enable failure & we
1082 * get a 0 MAC address. We try to get the MAC address
1083 * again here.
1084 */
1085 if (is_zero_ether_addr(bnad->perm_addr)) {
1086 bna_enet_perm_mac_get(&bnad->bna.enet, bnad->perm_addr);
1087 bnad_set_netdev_perm_addr(bnad);
1088 }
1089}
1090
1091/*
1092 * Free all TxQs buffers and then notify TX_E_CLEANUP_DONE to Tx fsm.
1093 */
1094static void
1095bnad_tx_cleanup(struct delayed_work *work)
1096{
1097 struct bnad_tx_info *tx_info =
1098 container_of(work, struct bnad_tx_info, tx_cleanup_work);
1099 struct bnad *bnad = NULL;
1100 struct bna_tcb *tcb;
1101 unsigned long flags;
1102 u32 i, pending = 0;
1103
1104 for (i = 0; i < BNAD_MAX_TXQ_PER_TX; i++) {
1105 tcb = tx_info->tcb[i];
1106 if (!tcb)
1107 continue;
1108
1109 bnad = tcb->bnad;
1110
1111 if (test_and_set_bit(BNAD_TXQ_FREE_SENT, &tcb->flags)) {
1112 pending++;
1113 continue;
1114 }
1115
1116 bnad_txq_cleanup(bnad, tcb);
1117
1118 smp_mb__before_atomic();
1119 clear_bit(BNAD_TXQ_FREE_SENT, &tcb->flags);
1120 }
1121
1122 if (pending) {
1123 queue_delayed_work(bnad->work_q, &tx_info->tx_cleanup_work,
1124 msecs_to_jiffies(1));
1125 return;
1126 }
1127
1128 spin_lock_irqsave(&bnad->bna_lock, flags);
1129 bna_tx_cleanup_complete(tx_info->tx);
1130 spin_unlock_irqrestore(&bnad->bna_lock, flags);
1131}
1132
1133static void
1134bnad_cb_tx_cleanup(struct bnad *bnad, struct bna_tx *tx)
1135{
1136 struct bnad_tx_info *tx_info = (struct bnad_tx_info *)tx->priv;
1137 struct bna_tcb *tcb;
1138 int i;
1139
1140 for (i = 0; i < BNAD_MAX_TXQ_PER_TX; i++) {
1141 tcb = tx_info->tcb[i];
1142 if (!tcb)
1143 continue;
1144 }
1145
1146 queue_delayed_work(bnad->work_q, &tx_info->tx_cleanup_work, 0);
1147}
1148
1149static void
1150bnad_cb_rx_stall(struct bnad *bnad, struct bna_rx *rx)
1151{
1152 struct bnad_rx_info *rx_info = (struct bnad_rx_info *)rx->priv;
1153 struct bna_ccb *ccb;
1154 struct bnad_rx_ctrl *rx_ctrl;
1155 int i;
1156
1157 for (i = 0; i < BNAD_MAX_RXP_PER_RX; i++) {
1158 rx_ctrl = &rx_info->rx_ctrl[i];
1159 ccb = rx_ctrl->ccb;
1160 if (!ccb)
1161 continue;
1162
1163 clear_bit(BNAD_RXQ_POST_OK, &ccb->rcb[0]->flags);
1164
1165 if (ccb->rcb[1])
1166 clear_bit(BNAD_RXQ_POST_OK, &ccb->rcb[1]->flags);
1167 }
1168}
1169
1170/*
1171 * Free all RxQs buffers and then notify RX_E_CLEANUP_DONE to Rx fsm.
1172 */
1173static void
1174bnad_rx_cleanup(void *work)
1175{
1176 struct bnad_rx_info *rx_info =
1177 container_of(work, struct bnad_rx_info, rx_cleanup_work);
1178 struct bnad_rx_ctrl *rx_ctrl;
1179 struct bnad *bnad = NULL;
1180 unsigned long flags;
1181 u32 i;
1182
1183 for (i = 0; i < BNAD_MAX_RXP_PER_RX; i++) {
1184 rx_ctrl = &rx_info->rx_ctrl[i];
1185
1186 if (!rx_ctrl->ccb)
1187 continue;
1188
1189 bnad = rx_ctrl->ccb->bnad;
1190
1191 /*
1192 * Wait till the poll handler has exited
1193 * and nothing can be scheduled anymore
1194 */
1195 napi_disable(&rx_ctrl->napi);
1196
1197 bnad_cq_cleanup(bnad, rx_ctrl->ccb);
1198 bnad_rxq_cleanup(bnad, rx_ctrl->ccb->rcb[0]);
1199 if (rx_ctrl->ccb->rcb[1])
1200 bnad_rxq_cleanup(bnad, rx_ctrl->ccb->rcb[1]);
1201 }
1202
1203 spin_lock_irqsave(&bnad->bna_lock, flags);
1204 bna_rx_cleanup_complete(rx_info->rx);
1205 spin_unlock_irqrestore(&bnad->bna_lock, flags);
1206}
1207
1208static void
1209bnad_cb_rx_cleanup(struct bnad *bnad, struct bna_rx *rx)
1210{
1211 struct bnad_rx_info *rx_info = (struct bnad_rx_info *)rx->priv;
1212 struct bna_ccb *ccb;
1213 struct bnad_rx_ctrl *rx_ctrl;
1214 int i;
1215
1216 for (i = 0; i < BNAD_MAX_RXP_PER_RX; i++) {
1217 rx_ctrl = &rx_info->rx_ctrl[i];
1218 ccb = rx_ctrl->ccb;
1219 if (!ccb)
1220 continue;
1221
1222 clear_bit(BNAD_RXQ_STARTED, &ccb->rcb[0]->flags);
1223
1224 if (ccb->rcb[1])
1225 clear_bit(BNAD_RXQ_STARTED, &ccb->rcb[1]->flags);
1226 }
1227
1228 queue_work(bnad->work_q, &rx_info->rx_cleanup_work);
1229}
1230
1231static void
1232bnad_cb_rx_post(struct bnad *bnad, struct bna_rx *rx)
1233{
1234 struct bnad_rx_info *rx_info = (struct bnad_rx_info *)rx->priv;
1235 struct bna_ccb *ccb;
1236 struct bna_rcb *rcb;
1237 struct bnad_rx_ctrl *rx_ctrl;
1238 int i, j;
1239
1240 for (i = 0; i < BNAD_MAX_RXP_PER_RX; i++) {
1241 rx_ctrl = &rx_info->rx_ctrl[i];
1242 ccb = rx_ctrl->ccb;
1243 if (!ccb)
1244 continue;
1245
1246 napi_enable(&rx_ctrl->napi);
1247
1248 for (j = 0; j < BNAD_MAX_RXQ_PER_RXP; j++) {
1249 rcb = ccb->rcb[j];
1250 if (!rcb)
1251 continue;
1252
1253 bnad_rxq_alloc_init(bnad, rcb);
1254 set_bit(BNAD_RXQ_STARTED, &rcb->flags);
1255 set_bit(BNAD_RXQ_POST_OK, &rcb->flags);
1256 bnad_rxq_post(bnad, rcb);
1257 }
1258 }
1259}
1260
1261static void
1262bnad_cb_rx_disabled(void *arg, struct bna_rx *rx)
1263{
1264 struct bnad *bnad = (struct bnad *)arg;
1265
1266 complete(&bnad->bnad_completions.rx_comp);
1267}
1268
1269static void
1270bnad_cb_rx_mcast_add(struct bnad *bnad, struct bna_rx *rx)
1271{
1272 bnad->bnad_completions.mcast_comp_status = BNA_CB_SUCCESS;
1273 complete(&bnad->bnad_completions.mcast_comp);
1274}
1275
1276void
1277bnad_cb_stats_get(struct bnad *bnad, enum bna_cb_status status,
1278 struct bna_stats *stats)
1279{
1280 if (status == BNA_CB_SUCCESS)
1281 BNAD_UPDATE_CTR(bnad, hw_stats_updates);
1282
1283 if (!netif_running(bnad->netdev) ||
1284 !test_bit(BNAD_RF_STATS_TIMER_RUNNING, &bnad->run_flags))
1285 return;
1286
1287 mod_timer(&bnad->stats_timer,
1288 jiffies + msecs_to_jiffies(BNAD_STATS_TIMER_FREQ));
1289}
1290
1291static void
1292bnad_cb_enet_mtu_set(struct bnad *bnad)
1293{
1294 bnad->bnad_completions.mtu_comp_status = BNA_CB_SUCCESS;
1295 complete(&bnad->bnad_completions.mtu_comp);
1296}
1297
1298void
1299bnad_cb_completion(void *arg, enum bfa_status status)
1300{
1301 struct bnad_iocmd_comp *iocmd_comp =
1302 (struct bnad_iocmd_comp *)arg;
1303
1304 iocmd_comp->comp_status = (u32) status;
1305 complete(&iocmd_comp->comp);
1306}
1307
1308/* Resource allocation, free functions */
1309
1310static void
1311bnad_mem_free(struct bnad *bnad,
1312 struct bna_mem_info *mem_info)
1313{
1314 int i;
1315 dma_addr_t dma_pa;
1316
1317 if (mem_info->mdl == NULL)
1318 return;
1319
1320 for (i = 0; i < mem_info->num; i++) {
1321 if (mem_info->mdl[i].kva != NULL) {
1322 if (mem_info->mem_type == BNA_MEM_T_DMA) {
1323 BNA_GET_DMA_ADDR(&(mem_info->mdl[i].dma),
1324 dma_pa);
1325 dma_free_coherent(&bnad->pcidev->dev,
1326 mem_info->mdl[i].len,
1327 mem_info->mdl[i].kva, dma_pa);
1328 } else
1329 kfree(mem_info->mdl[i].kva);
1330 }
1331 }
1332 kfree(mem_info->mdl);
1333 mem_info->mdl = NULL;
1334}
1335
1336static int
1337bnad_mem_alloc(struct bnad *bnad,
1338 struct bna_mem_info *mem_info)
1339{
1340 int i;
1341 dma_addr_t dma_pa;
1342
1343 if ((mem_info->num == 0) || (mem_info->len == 0)) {
1344 mem_info->mdl = NULL;
1345 return 0;
1346 }
1347
1348 mem_info->mdl = kcalloc(mem_info->num, sizeof(struct bna_mem_descr),
1349 GFP_KERNEL);
1350 if (mem_info->mdl == NULL)
1351 return -ENOMEM;
1352
1353 if (mem_info->mem_type == BNA_MEM_T_DMA) {
1354 for (i = 0; i < mem_info->num; i++) {
1355 mem_info->mdl[i].len = mem_info->len;
1356 mem_info->mdl[i].kva =
1357 dma_alloc_coherent(&bnad->pcidev->dev,
1358 mem_info->len, &dma_pa,
1359 GFP_KERNEL);
1360 if (mem_info->mdl[i].kva == NULL)
1361 goto err_return;
1362
1363 BNA_SET_DMA_ADDR(dma_pa,
1364 &(mem_info->mdl[i].dma));
1365 }
1366 } else {
1367 for (i = 0; i < mem_info->num; i++) {
1368 mem_info->mdl[i].len = mem_info->len;
1369 mem_info->mdl[i].kva = kzalloc(mem_info->len,
1370 GFP_KERNEL);
1371 if (mem_info->mdl[i].kva == NULL)
1372 goto err_return;
1373 }
1374 }
1375
1376 return 0;
1377
1378err_return:
1379 bnad_mem_free(bnad, mem_info);
1380 return -ENOMEM;
1381}
1382
1383/* Free IRQ for Mailbox */
1384static void
1385bnad_mbox_irq_free(struct bnad *bnad)
1386{
1387 int irq;
1388 unsigned long flags;
1389
1390 spin_lock_irqsave(&bnad->bna_lock, flags);
1391 bnad_disable_mbox_irq(bnad);
1392 spin_unlock_irqrestore(&bnad->bna_lock, flags);
1393
1394 irq = BNAD_GET_MBOX_IRQ(bnad);
1395 free_irq(irq, bnad);
1396}
1397
1398/*
1399 * Allocates IRQ for Mailbox, but keep it disabled
1400 * This will be enabled once we get the mbox enable callback
1401 * from bna
1402 */
1403static int
1404bnad_mbox_irq_alloc(struct bnad *bnad)
1405{
1406 int err = 0;
1407 unsigned long irq_flags, flags;
1408 u32 irq;
1409 irq_handler_t irq_handler;
1410
1411 spin_lock_irqsave(&bnad->bna_lock, flags);
1412 if (bnad->cfg_flags & BNAD_CF_MSIX) {
1413 irq_handler = (irq_handler_t)bnad_msix_mbox_handler;
1414 irq = bnad->msix_table[BNAD_MAILBOX_MSIX_INDEX].vector;
1415 irq_flags = 0;
1416 } else {
1417 irq_handler = (irq_handler_t)bnad_isr;
1418 irq = bnad->pcidev->irq;
1419 irq_flags = IRQF_SHARED;
1420 }
1421
1422 spin_unlock_irqrestore(&bnad->bna_lock, flags);
1423 sprintf(bnad->mbox_irq_name, "%s", BNAD_NAME);
1424
1425 /*
1426 * Set the Mbox IRQ disable flag, so that the IRQ handler
1427 * called from request_irq() for SHARED IRQs do not execute
1428 */
1429 set_bit(BNAD_RF_MBOX_IRQ_DISABLED, &bnad->run_flags);
1430
1431 BNAD_UPDATE_CTR(bnad, mbox_intr_disabled);
1432
1433 err = request_irq(irq, irq_handler, irq_flags,
1434 bnad->mbox_irq_name, bnad);
1435
1436 return err;
1437}
1438
1439static void
1440bnad_txrx_irq_free(struct bnad *bnad, struct bna_intr_info *intr_info)
1441{
1442 kfree(intr_info->idl);
1443 intr_info->idl = NULL;
1444}
1445
1446/* Allocates Interrupt Descriptor List for MSIX/INT-X vectors */
1447static int
1448bnad_txrx_irq_alloc(struct bnad *bnad, enum bnad_intr_source src,
1449 u32 txrx_id, struct bna_intr_info *intr_info)
1450{
1451 int i, vector_start = 0;
1452 u32 cfg_flags;
1453 unsigned long flags;
1454
1455 spin_lock_irqsave(&bnad->bna_lock, flags);
1456 cfg_flags = bnad->cfg_flags;
1457 spin_unlock_irqrestore(&bnad->bna_lock, flags);
1458
1459 if (cfg_flags & BNAD_CF_MSIX) {
1460 intr_info->intr_type = BNA_INTR_T_MSIX;
1461 intr_info->idl = kcalloc(intr_info->num,
1462 sizeof(struct bna_intr_descr),
1463 GFP_KERNEL);
1464 if (!intr_info->idl)
1465 return -ENOMEM;
1466
1467 switch (src) {
1468 case BNAD_INTR_TX:
1469 vector_start = BNAD_MAILBOX_MSIX_VECTORS + txrx_id;
1470 break;
1471
1472 case BNAD_INTR_RX:
1473 vector_start = BNAD_MAILBOX_MSIX_VECTORS +
1474 (bnad->num_tx * bnad->num_txq_per_tx) +
1475 txrx_id;
1476 break;
1477
1478 default:
1479 BUG();
1480 }
1481
1482 for (i = 0; i < intr_info->num; i++)
1483 intr_info->idl[i].vector = vector_start + i;
1484 } else {
1485 intr_info->intr_type = BNA_INTR_T_INTX;
1486 intr_info->num = 1;
1487 intr_info->idl = kcalloc(intr_info->num,
1488 sizeof(struct bna_intr_descr),
1489 GFP_KERNEL);
1490 if (!intr_info->idl)
1491 return -ENOMEM;
1492
1493 switch (src) {
1494 case BNAD_INTR_TX:
1495 intr_info->idl[0].vector = BNAD_INTX_TX_IB_BITMASK;
1496 break;
1497
1498 case BNAD_INTR_RX:
1499 intr_info->idl[0].vector = BNAD_INTX_RX_IB_BITMASK;
1500 break;
1501 }
1502 }
1503 return 0;
1504}
1505
1506/* NOTE: Should be called for MSIX only
1507 * Unregisters Tx MSIX vector(s) from the kernel
1508 */
1509static void
1510bnad_tx_msix_unregister(struct bnad *bnad, struct bnad_tx_info *tx_info,
1511 int num_txqs)
1512{
1513 int i;
1514 int vector_num;
1515
1516 for (i = 0; i < num_txqs; i++) {
1517 if (tx_info->tcb[i] == NULL)
1518 continue;
1519
1520 vector_num = tx_info->tcb[i]->intr_vector;
1521 free_irq(bnad->msix_table[vector_num].vector, tx_info->tcb[i]);
1522 }
1523}
1524
1525/* NOTE: Should be called for MSIX only
1526 * Registers Tx MSIX vector(s) and ISR(s), cookie with the kernel
1527 */
1528static int
1529bnad_tx_msix_register(struct bnad *bnad, struct bnad_tx_info *tx_info,
1530 u32 tx_id, int num_txqs)
1531{
1532 int i;
1533 int err;
1534 int vector_num;
1535
1536 for (i = 0; i < num_txqs; i++) {
1537 vector_num = tx_info->tcb[i]->intr_vector;
1538 snprintf(tx_info->tcb[i]->name, BNA_Q_NAME_SIZE, "%s TXQ %d",
1539 bnad->netdev->name,
1540 tx_id + tx_info->tcb[i]->id);
1541 err = request_irq(bnad->msix_table[vector_num].vector,
1542 (irq_handler_t)bnad_msix_tx, 0,
1543 tx_info->tcb[i]->name,
1544 tx_info->tcb[i]);
1545 if (err)
1546 goto err_return;
1547 }
1548
1549 return 0;
1550
1551err_return:
1552 if (i > 0)
1553 bnad_tx_msix_unregister(bnad, tx_info, (i - 1));
1554 return -1;
1555}
1556
1557/* NOTE: Should be called for MSIX only
1558 * Unregisters Rx MSIX vector(s) from the kernel
1559 */
1560static void
1561bnad_rx_msix_unregister(struct bnad *bnad, struct bnad_rx_info *rx_info,
1562 int num_rxps)
1563{
1564 int i;
1565 int vector_num;
1566
1567 for (i = 0; i < num_rxps; i++) {
1568 if (rx_info->rx_ctrl[i].ccb == NULL)
1569 continue;
1570
1571 vector_num = rx_info->rx_ctrl[i].ccb->intr_vector;
1572 free_irq(bnad->msix_table[vector_num].vector,
1573 rx_info->rx_ctrl[i].ccb);
1574 }
1575}
1576
1577/* NOTE: Should be called for MSIX only
1578 * Registers Tx MSIX vector(s) and ISR(s), cookie with the kernel
1579 */
1580static int
1581bnad_rx_msix_register(struct bnad *bnad, struct bnad_rx_info *rx_info,
1582 u32 rx_id, int num_rxps)
1583{
1584 int i;
1585 int err;
1586 int vector_num;
1587
1588 for (i = 0; i < num_rxps; i++) {
1589 vector_num = rx_info->rx_ctrl[i].ccb->intr_vector;
1590 snprintf(rx_info->rx_ctrl[i].ccb->name, BNA_Q_NAME_SIZE,
1591 "%s CQ %d", bnad->netdev->name,
1592 rx_id + rx_info->rx_ctrl[i].ccb->id);
1593 err = request_irq(bnad->msix_table[vector_num].vector,
1594 (irq_handler_t)bnad_msix_rx, 0,
1595 rx_info->rx_ctrl[i].ccb->name,
1596 rx_info->rx_ctrl[i].ccb);
1597 if (err)
1598 goto err_return;
1599 }
1600
1601 return 0;
1602
1603err_return:
1604 if (i > 0)
1605 bnad_rx_msix_unregister(bnad, rx_info, (i - 1));
1606 return -1;
1607}
1608
1609/* Free Tx object Resources */
1610static void
1611bnad_tx_res_free(struct bnad *bnad, struct bna_res_info *res_info)
1612{
1613 int i;
1614
1615 for (i = 0; i < BNA_TX_RES_T_MAX; i++) {
1616 if (res_info[i].res_type == BNA_RES_T_MEM)
1617 bnad_mem_free(bnad, &res_info[i].res_u.mem_info);
1618 else if (res_info[i].res_type == BNA_RES_T_INTR)
1619 bnad_txrx_irq_free(bnad, &res_info[i].res_u.intr_info);
1620 }
1621}
1622
1623/* Allocates memory and interrupt resources for Tx object */
1624static int
1625bnad_tx_res_alloc(struct bnad *bnad, struct bna_res_info *res_info,
1626 u32 tx_id)
1627{
1628 int i, err = 0;
1629
1630 for (i = 0; i < BNA_TX_RES_T_MAX; i++) {
1631 if (res_info[i].res_type == BNA_RES_T_MEM)
1632 err = bnad_mem_alloc(bnad,
1633 &res_info[i].res_u.mem_info);
1634 else if (res_info[i].res_type == BNA_RES_T_INTR)
1635 err = bnad_txrx_irq_alloc(bnad, BNAD_INTR_TX, tx_id,
1636 &res_info[i].res_u.intr_info);
1637 if (err)
1638 goto err_return;
1639 }
1640 return 0;
1641
1642err_return:
1643 bnad_tx_res_free(bnad, res_info);
1644 return err;
1645}
1646
1647/* Free Rx object Resources */
1648static void
1649bnad_rx_res_free(struct bnad *bnad, struct bna_res_info *res_info)
1650{
1651 int i;
1652
1653 for (i = 0; i < BNA_RX_RES_T_MAX; i++) {
1654 if (res_info[i].res_type == BNA_RES_T_MEM)
1655 bnad_mem_free(bnad, &res_info[i].res_u.mem_info);
1656 else if (res_info[i].res_type == BNA_RES_T_INTR)
1657 bnad_txrx_irq_free(bnad, &res_info[i].res_u.intr_info);
1658 }
1659}
1660
1661/* Allocates memory and interrupt resources for Rx object */
1662static int
1663bnad_rx_res_alloc(struct bnad *bnad, struct bna_res_info *res_info,
1664 uint rx_id)
1665{
1666 int i, err = 0;
1667
1668 /* All memory needs to be allocated before setup_ccbs */
1669 for (i = 0; i < BNA_RX_RES_T_MAX; i++) {
1670 if (res_info[i].res_type == BNA_RES_T_MEM)
1671 err = bnad_mem_alloc(bnad,
1672 &res_info[i].res_u.mem_info);
1673 else if (res_info[i].res_type == BNA_RES_T_INTR)
1674 err = bnad_txrx_irq_alloc(bnad, BNAD_INTR_RX, rx_id,
1675 &res_info[i].res_u.intr_info);
1676 if (err)
1677 goto err_return;
1678 }
1679 return 0;
1680
1681err_return:
1682 bnad_rx_res_free(bnad, res_info);
1683 return err;
1684}
1685
1686/* Timer callbacks */
1687/* a) IOC timer */
1688static void
1689bnad_ioc_timeout(struct timer_list *t)
1690{
1691 struct bnad *bnad = from_timer(bnad, t, bna.ioceth.ioc.ioc_timer);
1692 unsigned long flags;
1693
1694 spin_lock_irqsave(&bnad->bna_lock, flags);
1695 bfa_nw_ioc_timeout(&bnad->bna.ioceth.ioc);
1696 spin_unlock_irqrestore(&bnad->bna_lock, flags);
1697}
1698
1699static void
1700bnad_ioc_hb_check(struct timer_list *t)
1701{
1702 struct bnad *bnad = from_timer(bnad, t, bna.ioceth.ioc.hb_timer);
1703 unsigned long flags;
1704
1705 spin_lock_irqsave(&bnad->bna_lock, flags);
1706 bfa_nw_ioc_hb_check(&bnad->bna.ioceth.ioc);
1707 spin_unlock_irqrestore(&bnad->bna_lock, flags);
1708}
1709
1710static void
1711bnad_iocpf_timeout(struct timer_list *t)
1712{
1713 struct bnad *bnad = from_timer(bnad, t, bna.ioceth.ioc.iocpf_timer);
1714 unsigned long flags;
1715
1716 spin_lock_irqsave(&bnad->bna_lock, flags);
1717 bfa_nw_iocpf_timeout(&bnad->bna.ioceth.ioc);
1718 spin_unlock_irqrestore(&bnad->bna_lock, flags);
1719}
1720
1721static void
1722bnad_iocpf_sem_timeout(struct timer_list *t)
1723{
1724 struct bnad *bnad = from_timer(bnad, t, bna.ioceth.ioc.sem_timer);
1725 unsigned long flags;
1726
1727 spin_lock_irqsave(&bnad->bna_lock, flags);
1728 bfa_nw_iocpf_sem_timeout(&bnad->bna.ioceth.ioc);
1729 spin_unlock_irqrestore(&bnad->bna_lock, flags);
1730}
1731
1732/*
1733 * All timer routines use bnad->bna_lock to protect against
1734 * the following race, which may occur in case of no locking:
1735 * Time CPU m CPU n
1736 * 0 1 = test_bit
1737 * 1 clear_bit
1738 * 2 del_timer_sync
1739 * 3 mod_timer
1740 */
1741
1742/* b) Dynamic Interrupt Moderation Timer */
1743static void
1744bnad_dim_timeout(struct timer_list *t)
1745{
1746 struct bnad *bnad = from_timer(bnad, t, dim_timer);
1747 struct bnad_rx_info *rx_info;
1748 struct bnad_rx_ctrl *rx_ctrl;
1749 int i, j;
1750 unsigned long flags;
1751
1752 if (!netif_carrier_ok(bnad->netdev))
1753 return;
1754
1755 spin_lock_irqsave(&bnad->bna_lock, flags);
1756 for (i = 0; i < bnad->num_rx; i++) {
1757 rx_info = &bnad->rx_info[i];
1758 if (!rx_info->rx)
1759 continue;
1760 for (j = 0; j < bnad->num_rxp_per_rx; j++) {
1761 rx_ctrl = &rx_info->rx_ctrl[j];
1762 if (!rx_ctrl->ccb)
1763 continue;
1764 bna_rx_dim_update(rx_ctrl->ccb);
1765 }
1766 }
1767
1768 /* Check for BNAD_CF_DIM_ENABLED, does not eleminate a race */
1769 if (test_bit(BNAD_RF_DIM_TIMER_RUNNING, &bnad->run_flags))
1770 mod_timer(&bnad->dim_timer,
1771 jiffies + msecs_to_jiffies(BNAD_DIM_TIMER_FREQ));
1772 spin_unlock_irqrestore(&bnad->bna_lock, flags);
1773}
1774
1775/* c) Statistics Timer */
1776static void
1777bnad_stats_timeout(struct timer_list *t)
1778{
1779 struct bnad *bnad = from_timer(bnad, t, stats_timer);
1780 unsigned long flags;
1781
1782 if (!netif_running(bnad->netdev) ||
1783 !test_bit(BNAD_RF_STATS_TIMER_RUNNING, &bnad->run_flags))
1784 return;
1785
1786 spin_lock_irqsave(&bnad->bna_lock, flags);
1787 bna_hw_stats_get(&bnad->bna);
1788 spin_unlock_irqrestore(&bnad->bna_lock, flags);
1789}
1790
1791/*
1792 * Set up timer for DIM
1793 * Called with bnad->bna_lock held
1794 */
1795void
1796bnad_dim_timer_start(struct bnad *bnad)
1797{
1798 if (bnad->cfg_flags & BNAD_CF_DIM_ENABLED &&
1799 !test_bit(BNAD_RF_DIM_TIMER_RUNNING, &bnad->run_flags)) {
1800 timer_setup(&bnad->dim_timer, bnad_dim_timeout, 0);
1801 set_bit(BNAD_RF_DIM_TIMER_RUNNING, &bnad->run_flags);
1802 mod_timer(&bnad->dim_timer,
1803 jiffies + msecs_to_jiffies(BNAD_DIM_TIMER_FREQ));
1804 }
1805}
1806
1807/*
1808 * Set up timer for statistics
1809 * Called with mutex_lock(&bnad->conf_mutex) held
1810 */
1811static void
1812bnad_stats_timer_start(struct bnad *bnad)
1813{
1814 unsigned long flags;
1815
1816 spin_lock_irqsave(&bnad->bna_lock, flags);
1817 if (!test_and_set_bit(BNAD_RF_STATS_TIMER_RUNNING, &bnad->run_flags)) {
1818 timer_setup(&bnad->stats_timer, bnad_stats_timeout, 0);
1819 mod_timer(&bnad->stats_timer,
1820 jiffies + msecs_to_jiffies(BNAD_STATS_TIMER_FREQ));
1821 }
1822 spin_unlock_irqrestore(&bnad->bna_lock, flags);
1823}
1824
1825/*
1826 * Stops the stats timer
1827 * Called with mutex_lock(&bnad->conf_mutex) held
1828 */
1829static void
1830bnad_stats_timer_stop(struct bnad *bnad)
1831{
1832 int to_del = 0;
1833 unsigned long flags;
1834
1835 spin_lock_irqsave(&bnad->bna_lock, flags);
1836 if (test_and_clear_bit(BNAD_RF_STATS_TIMER_RUNNING, &bnad->run_flags))
1837 to_del = 1;
1838 spin_unlock_irqrestore(&bnad->bna_lock, flags);
1839 if (to_del)
1840 del_timer_sync(&bnad->stats_timer);
1841}
1842
1843/* Utilities */
1844
1845static void
1846bnad_netdev_mc_list_get(struct net_device *netdev, u8 *mc_list)
1847{
1848 int i = 1; /* Index 0 has broadcast address */
1849 struct netdev_hw_addr *mc_addr;
1850
1851 netdev_for_each_mc_addr(mc_addr, netdev) {
1852 ether_addr_copy(&mc_list[i * ETH_ALEN], &mc_addr->addr[0]);
1853 i++;
1854 }
1855}
1856
1857static int
1858bnad_napi_poll_rx(struct napi_struct *napi, int budget)
1859{
1860 struct bnad_rx_ctrl *rx_ctrl =
1861 container_of(napi, struct bnad_rx_ctrl, napi);
1862 struct bnad *bnad = rx_ctrl->bnad;
1863 int rcvd = 0;
1864
1865 rx_ctrl->rx_poll_ctr++;
1866
1867 if (!netif_carrier_ok(bnad->netdev))
1868 goto poll_exit;
1869
1870 rcvd = bnad_cq_process(bnad, rx_ctrl->ccb, budget);
1871 if (rcvd >= budget)
1872 return rcvd;
1873
1874poll_exit:
1875 napi_complete_done(napi, rcvd);
1876
1877 rx_ctrl->rx_complete++;
1878
1879 if (rx_ctrl->ccb)
1880 bnad_enable_rx_irq_unsafe(rx_ctrl->ccb);
1881
1882 return rcvd;
1883}
1884
1885#define BNAD_NAPI_POLL_QUOTA 64
1886static void
1887bnad_napi_add(struct bnad *bnad, u32 rx_id)
1888{
1889 struct bnad_rx_ctrl *rx_ctrl;
1890 int i;
1891
1892 /* Initialize & enable NAPI */
1893 for (i = 0; i < bnad->num_rxp_per_rx; i++) {
1894 rx_ctrl = &bnad->rx_info[rx_id].rx_ctrl[i];
1895 netif_napi_add(bnad->netdev, &rx_ctrl->napi,
1896 bnad_napi_poll_rx, BNAD_NAPI_POLL_QUOTA);
1897 }
1898}
1899
1900static void
1901bnad_napi_delete(struct bnad *bnad, u32 rx_id)
1902{
1903 int i;
1904
1905 /* First disable and then clean up */
1906 for (i = 0; i < bnad->num_rxp_per_rx; i++)
1907 netif_napi_del(&bnad->rx_info[rx_id].rx_ctrl[i].napi);
1908}
1909
1910/* Should be held with conf_lock held */
1911void
1912bnad_destroy_tx(struct bnad *bnad, u32 tx_id)
1913{
1914 struct bnad_tx_info *tx_info = &bnad->tx_info[tx_id];
1915 struct bna_res_info *res_info = &bnad->tx_res_info[tx_id].res_info[0];
1916 unsigned long flags;
1917
1918 if (!tx_info->tx)
1919 return;
1920
1921 init_completion(&bnad->bnad_completions.tx_comp);
1922 spin_lock_irqsave(&bnad->bna_lock, flags);
1923 bna_tx_disable(tx_info->tx, BNA_HARD_CLEANUP, bnad_cb_tx_disabled);
1924 spin_unlock_irqrestore(&bnad->bna_lock, flags);
1925 wait_for_completion(&bnad->bnad_completions.tx_comp);
1926
1927 if (tx_info->tcb[0]->intr_type == BNA_INTR_T_MSIX)
1928 bnad_tx_msix_unregister(bnad, tx_info,
1929 bnad->num_txq_per_tx);
1930
1931 spin_lock_irqsave(&bnad->bna_lock, flags);
1932 bna_tx_destroy(tx_info->tx);
1933 spin_unlock_irqrestore(&bnad->bna_lock, flags);
1934
1935 tx_info->tx = NULL;
1936 tx_info->tx_id = 0;
1937
1938 bnad_tx_res_free(bnad, res_info);
1939}
1940
1941/* Should be held with conf_lock held */
1942int
1943bnad_setup_tx(struct bnad *bnad, u32 tx_id)
1944{
1945 int err;
1946 struct bnad_tx_info *tx_info = &bnad->tx_info[tx_id];
1947 struct bna_res_info *res_info = &bnad->tx_res_info[tx_id].res_info[0];
1948 struct bna_intr_info *intr_info =
1949 &res_info[BNA_TX_RES_INTR_T_TXCMPL].res_u.intr_info;
1950 struct bna_tx_config *tx_config = &bnad->tx_config[tx_id];
1951 static const struct bna_tx_event_cbfn tx_cbfn = {
1952 .tcb_setup_cbfn = bnad_cb_tcb_setup,
1953 .tcb_destroy_cbfn = bnad_cb_tcb_destroy,
1954 .tx_stall_cbfn = bnad_cb_tx_stall,
1955 .tx_resume_cbfn = bnad_cb_tx_resume,
1956 .tx_cleanup_cbfn = bnad_cb_tx_cleanup,
1957 };
1958
1959 struct bna_tx *tx;
1960 unsigned long flags;
1961
1962 tx_info->tx_id = tx_id;
1963
1964 /* Initialize the Tx object configuration */
1965 tx_config->num_txq = bnad->num_txq_per_tx;
1966 tx_config->txq_depth = bnad->txq_depth;
1967 tx_config->tx_type = BNA_TX_T_REGULAR;
1968 tx_config->coalescing_timeo = bnad->tx_coalescing_timeo;
1969
1970 /* Get BNA's resource requirement for one tx object */
1971 spin_lock_irqsave(&bnad->bna_lock, flags);
1972 bna_tx_res_req(bnad->num_txq_per_tx,
1973 bnad->txq_depth, res_info);
1974 spin_unlock_irqrestore(&bnad->bna_lock, flags);
1975
1976 /* Fill Unmap Q memory requirements */
1977 BNAD_FILL_UNMAPQ_MEM_REQ(&res_info[BNA_TX_RES_MEM_T_UNMAPQ],
1978 bnad->num_txq_per_tx, (sizeof(struct bnad_tx_unmap) *
1979 bnad->txq_depth));
1980
1981 /* Allocate resources */
1982 err = bnad_tx_res_alloc(bnad, res_info, tx_id);
1983 if (err)
1984 return err;
1985
1986 /* Ask BNA to create one Tx object, supplying required resources */
1987 spin_lock_irqsave(&bnad->bna_lock, flags);
1988 tx = bna_tx_create(&bnad->bna, bnad, tx_config, &tx_cbfn, res_info,
1989 tx_info);
1990 spin_unlock_irqrestore(&bnad->bna_lock, flags);
1991 if (!tx) {
1992 err = -ENOMEM;
1993 goto err_return;
1994 }
1995 tx_info->tx = tx;
1996
1997 INIT_DELAYED_WORK(&tx_info->tx_cleanup_work,
1998 (work_func_t)bnad_tx_cleanup);
1999
2000 /* Register ISR for the Tx object */
2001 if (intr_info->intr_type == BNA_INTR_T_MSIX) {
2002 err = bnad_tx_msix_register(bnad, tx_info,
2003 tx_id, bnad->num_txq_per_tx);
2004 if (err)
2005 goto cleanup_tx;
2006 }
2007
2008 spin_lock_irqsave(&bnad->bna_lock, flags);
2009 bna_tx_enable(tx);
2010 spin_unlock_irqrestore(&bnad->bna_lock, flags);
2011
2012 return 0;
2013
2014cleanup_tx:
2015 spin_lock_irqsave(&bnad->bna_lock, flags);
2016 bna_tx_destroy(tx_info->tx);
2017 spin_unlock_irqrestore(&bnad->bna_lock, flags);
2018 tx_info->tx = NULL;
2019 tx_info->tx_id = 0;
2020err_return:
2021 bnad_tx_res_free(bnad, res_info);
2022 return err;
2023}
2024
2025/* Setup the rx config for bna_rx_create */
2026/* bnad decides the configuration */
2027static void
2028bnad_init_rx_config(struct bnad *bnad, struct bna_rx_config *rx_config)
2029{
2030 memset(rx_config, 0, sizeof(*rx_config));
2031 rx_config->rx_type = BNA_RX_T_REGULAR;
2032 rx_config->num_paths = bnad->num_rxp_per_rx;
2033 rx_config->coalescing_timeo = bnad->rx_coalescing_timeo;
2034
2035 if (bnad->num_rxp_per_rx > 1) {
2036 rx_config->rss_status = BNA_STATUS_T_ENABLED;
2037 rx_config->rss_config.hash_type =
2038 (BFI_ENET_RSS_IPV6 |
2039 BFI_ENET_RSS_IPV6_TCP |
2040 BFI_ENET_RSS_IPV4 |
2041 BFI_ENET_RSS_IPV4_TCP);
2042 rx_config->rss_config.hash_mask =
2043 bnad->num_rxp_per_rx - 1;
2044 netdev_rss_key_fill(rx_config->rss_config.toeplitz_hash_key,
2045 sizeof(rx_config->rss_config.toeplitz_hash_key));
2046 } else {
2047 rx_config->rss_status = BNA_STATUS_T_DISABLED;
2048 memset(&rx_config->rss_config, 0,
2049 sizeof(rx_config->rss_config));
2050 }
2051
2052 rx_config->frame_size = BNAD_FRAME_SIZE(bnad->netdev->mtu);
2053 rx_config->q0_multi_buf = BNA_STATUS_T_DISABLED;
2054
2055 /* BNA_RXP_SINGLE - one data-buffer queue
2056 * BNA_RXP_SLR - one small-buffer and one large-buffer queues
2057 * BNA_RXP_HDS - one header-buffer and one data-buffer queues
2058 */
2059 /* TODO: configurable param for queue type */
2060 rx_config->rxp_type = BNA_RXP_SLR;
2061
2062 if (BNAD_PCI_DEV_IS_CAT2(bnad) &&
2063 rx_config->frame_size > 4096) {
2064 /* though size_routing_enable is set in SLR,
2065 * small packets may get routed to same rxq.
2066 * set buf_size to 2048 instead of PAGE_SIZE.
2067 */
2068 rx_config->q0_buf_size = 2048;
2069 /* this should be in multiples of 2 */
2070 rx_config->q0_num_vecs = 4;
2071 rx_config->q0_depth = bnad->rxq_depth * rx_config->q0_num_vecs;
2072 rx_config->q0_multi_buf = BNA_STATUS_T_ENABLED;
2073 } else {
2074 rx_config->q0_buf_size = rx_config->frame_size;
2075 rx_config->q0_num_vecs = 1;
2076 rx_config->q0_depth = bnad->rxq_depth;
2077 }
2078
2079 /* initialize for q1 for BNA_RXP_SLR/BNA_RXP_HDS */
2080 if (rx_config->rxp_type == BNA_RXP_SLR) {
2081 rx_config->q1_depth = bnad->rxq_depth;
2082 rx_config->q1_buf_size = BFI_SMALL_RXBUF_SIZE;
2083 }
2084
2085 rx_config->vlan_strip_status =
2086 (bnad->netdev->features & NETIF_F_HW_VLAN_CTAG_RX) ?
2087 BNA_STATUS_T_ENABLED : BNA_STATUS_T_DISABLED;
2088}
2089
2090static void
2091bnad_rx_ctrl_init(struct bnad *bnad, u32 rx_id)
2092{
2093 struct bnad_rx_info *rx_info = &bnad->rx_info[rx_id];
2094 int i;
2095
2096 for (i = 0; i < bnad->num_rxp_per_rx; i++)
2097 rx_info->rx_ctrl[i].bnad = bnad;
2098}
2099
2100/* Called with mutex_lock(&bnad->conf_mutex) held */
2101static u32
2102bnad_reinit_rx(struct bnad *bnad)
2103{
2104 struct net_device *netdev = bnad->netdev;
2105 u32 err = 0, current_err = 0;
2106 u32 rx_id = 0, count = 0;
2107 unsigned long flags;
2108
2109 /* destroy and create new rx objects */
2110 for (rx_id = 0; rx_id < bnad->num_rx; rx_id++) {
2111 if (!bnad->rx_info[rx_id].rx)
2112 continue;
2113 bnad_destroy_rx(bnad, rx_id);
2114 }
2115
2116 spin_lock_irqsave(&bnad->bna_lock, flags);
2117 bna_enet_mtu_set(&bnad->bna.enet,
2118 BNAD_FRAME_SIZE(bnad->netdev->mtu), NULL);
2119 spin_unlock_irqrestore(&bnad->bna_lock, flags);
2120
2121 for (rx_id = 0; rx_id < bnad->num_rx; rx_id++) {
2122 count++;
2123 current_err = bnad_setup_rx(bnad, rx_id);
2124 if (current_err && !err) {
2125 err = current_err;
2126 netdev_err(netdev, "RXQ:%u setup failed\n", rx_id);
2127 }
2128 }
2129
2130 /* restore rx configuration */
2131 if (bnad->rx_info[0].rx && !err) {
2132 bnad_restore_vlans(bnad, 0);
2133 bnad_enable_default_bcast(bnad);
2134 spin_lock_irqsave(&bnad->bna_lock, flags);
2135 bnad_mac_addr_set_locked(bnad, netdev->dev_addr);
2136 spin_unlock_irqrestore(&bnad->bna_lock, flags);
2137 bnad_set_rx_mode(netdev);
2138 }
2139
2140 return count;
2141}
2142
2143/* Called with bnad_conf_lock() held */
2144void
2145bnad_destroy_rx(struct bnad *bnad, u32 rx_id)
2146{
2147 struct bnad_rx_info *rx_info = &bnad->rx_info[rx_id];
2148 struct bna_rx_config *rx_config = &bnad->rx_config[rx_id];
2149 struct bna_res_info *res_info = &bnad->rx_res_info[rx_id].res_info[0];
2150 unsigned long flags;
2151 int to_del = 0;
2152
2153 if (!rx_info->rx)
2154 return;
2155
2156 if (0 == rx_id) {
2157 spin_lock_irqsave(&bnad->bna_lock, flags);
2158 if (bnad->cfg_flags & BNAD_CF_DIM_ENABLED &&
2159 test_bit(BNAD_RF_DIM_TIMER_RUNNING, &bnad->run_flags)) {
2160 clear_bit(BNAD_RF_DIM_TIMER_RUNNING, &bnad->run_flags);
2161 to_del = 1;
2162 }
2163 spin_unlock_irqrestore(&bnad->bna_lock, flags);
2164 if (to_del)
2165 del_timer_sync(&bnad->dim_timer);
2166 }
2167
2168 init_completion(&bnad->bnad_completions.rx_comp);
2169 spin_lock_irqsave(&bnad->bna_lock, flags);
2170 bna_rx_disable(rx_info->rx, BNA_HARD_CLEANUP, bnad_cb_rx_disabled);
2171 spin_unlock_irqrestore(&bnad->bna_lock, flags);
2172 wait_for_completion(&bnad->bnad_completions.rx_comp);
2173
2174 if (rx_info->rx_ctrl[0].ccb->intr_type == BNA_INTR_T_MSIX)
2175 bnad_rx_msix_unregister(bnad, rx_info, rx_config->num_paths);
2176
2177 bnad_napi_delete(bnad, rx_id);
2178
2179 spin_lock_irqsave(&bnad->bna_lock, flags);
2180 bna_rx_destroy(rx_info->rx);
2181
2182 rx_info->rx = NULL;
2183 rx_info->rx_id = 0;
2184 spin_unlock_irqrestore(&bnad->bna_lock, flags);
2185
2186 bnad_rx_res_free(bnad, res_info);
2187}
2188
2189/* Called with mutex_lock(&bnad->conf_mutex) held */
2190int
2191bnad_setup_rx(struct bnad *bnad, u32 rx_id)
2192{
2193 int err;
2194 struct bnad_rx_info *rx_info = &bnad->rx_info[rx_id];
2195 struct bna_res_info *res_info = &bnad->rx_res_info[rx_id].res_info[0];
2196 struct bna_intr_info *intr_info =
2197 &res_info[BNA_RX_RES_T_INTR].res_u.intr_info;
2198 struct bna_rx_config *rx_config = &bnad->rx_config[rx_id];
2199 static const struct bna_rx_event_cbfn rx_cbfn = {
2200 .rcb_setup_cbfn = NULL,
2201 .rcb_destroy_cbfn = NULL,
2202 .ccb_setup_cbfn = bnad_cb_ccb_setup,
2203 .ccb_destroy_cbfn = bnad_cb_ccb_destroy,
2204 .rx_stall_cbfn = bnad_cb_rx_stall,
2205 .rx_cleanup_cbfn = bnad_cb_rx_cleanup,
2206 .rx_post_cbfn = bnad_cb_rx_post,
2207 };
2208 struct bna_rx *rx;
2209 unsigned long flags;
2210
2211 rx_info->rx_id = rx_id;
2212
2213 /* Initialize the Rx object configuration */
2214 bnad_init_rx_config(bnad, rx_config);
2215
2216 /* Get BNA's resource requirement for one Rx object */
2217 spin_lock_irqsave(&bnad->bna_lock, flags);
2218 bna_rx_res_req(rx_config, res_info);
2219 spin_unlock_irqrestore(&bnad->bna_lock, flags);
2220
2221 /* Fill Unmap Q memory requirements */
2222 BNAD_FILL_UNMAPQ_MEM_REQ(&res_info[BNA_RX_RES_MEM_T_UNMAPDQ],
2223 rx_config->num_paths,
2224 (rx_config->q0_depth *
2225 sizeof(struct bnad_rx_unmap)) +
2226 sizeof(struct bnad_rx_unmap_q));
2227
2228 if (rx_config->rxp_type != BNA_RXP_SINGLE) {
2229 BNAD_FILL_UNMAPQ_MEM_REQ(&res_info[BNA_RX_RES_MEM_T_UNMAPHQ],
2230 rx_config->num_paths,
2231 (rx_config->q1_depth *
2232 sizeof(struct bnad_rx_unmap) +
2233 sizeof(struct bnad_rx_unmap_q)));
2234 }
2235 /* Allocate resource */
2236 err = bnad_rx_res_alloc(bnad, res_info, rx_id);
2237 if (err)
2238 return err;
2239
2240 bnad_rx_ctrl_init(bnad, rx_id);
2241
2242 /* Ask BNA to create one Rx object, supplying required resources */
2243 spin_lock_irqsave(&bnad->bna_lock, flags);
2244 rx = bna_rx_create(&bnad->bna, bnad, rx_config, &rx_cbfn, res_info,
2245 rx_info);
2246 if (!rx) {
2247 err = -ENOMEM;
2248 spin_unlock_irqrestore(&bnad->bna_lock, flags);
2249 goto err_return;
2250 }
2251 rx_info->rx = rx;
2252 spin_unlock_irqrestore(&bnad->bna_lock, flags);
2253
2254 INIT_WORK(&rx_info->rx_cleanup_work,
2255 (work_func_t)(bnad_rx_cleanup));
2256
2257 /*
2258 * Init NAPI, so that state is set to NAPI_STATE_SCHED,
2259 * so that IRQ handler cannot schedule NAPI at this point.
2260 */
2261 bnad_napi_add(bnad, rx_id);
2262
2263 /* Register ISR for the Rx object */
2264 if (intr_info->intr_type == BNA_INTR_T_MSIX) {
2265 err = bnad_rx_msix_register(bnad, rx_info, rx_id,
2266 rx_config->num_paths);
2267 if (err)
2268 goto err_return;
2269 }
2270
2271 spin_lock_irqsave(&bnad->bna_lock, flags);
2272 if (0 == rx_id) {
2273 /* Set up Dynamic Interrupt Moderation Vector */
2274 if (bnad->cfg_flags & BNAD_CF_DIM_ENABLED)
2275 bna_rx_dim_reconfig(&bnad->bna, bna_napi_dim_vector);
2276
2277 /* Enable VLAN filtering only on the default Rx */
2278 bna_rx_vlanfilter_enable(rx);
2279
2280 /* Start the DIM timer */
2281 bnad_dim_timer_start(bnad);
2282 }
2283
2284 bna_rx_enable(rx);
2285 spin_unlock_irqrestore(&bnad->bna_lock, flags);
2286
2287 return 0;
2288
2289err_return:
2290 bnad_destroy_rx(bnad, rx_id);
2291 return err;
2292}
2293
2294/* Called with conf_lock & bnad->bna_lock held */
2295void
2296bnad_tx_coalescing_timeo_set(struct bnad *bnad)
2297{
2298 struct bnad_tx_info *tx_info;
2299
2300 tx_info = &bnad->tx_info[0];
2301 if (!tx_info->tx)
2302 return;
2303
2304 bna_tx_coalescing_timeo_set(tx_info->tx, bnad->tx_coalescing_timeo);
2305}
2306
2307/* Called with conf_lock & bnad->bna_lock held */
2308void
2309bnad_rx_coalescing_timeo_set(struct bnad *bnad)
2310{
2311 struct bnad_rx_info *rx_info;
2312 int i;
2313
2314 for (i = 0; i < bnad->num_rx; i++) {
2315 rx_info = &bnad->rx_info[i];
2316 if (!rx_info->rx)
2317 continue;
2318 bna_rx_coalescing_timeo_set(rx_info->rx,
2319 bnad->rx_coalescing_timeo);
2320 }
2321}
2322
2323/*
2324 * Called with bnad->bna_lock held
2325 */
2326int
2327bnad_mac_addr_set_locked(struct bnad *bnad, const u8 *mac_addr)
2328{
2329 int ret;
2330
2331 if (!is_valid_ether_addr(mac_addr))
2332 return -EADDRNOTAVAIL;
2333
2334 /* If datapath is down, pretend everything went through */
2335 if (!bnad->rx_info[0].rx)
2336 return 0;
2337
2338 ret = bna_rx_ucast_set(bnad->rx_info[0].rx, mac_addr);
2339 if (ret != BNA_CB_SUCCESS)
2340 return -EADDRNOTAVAIL;
2341
2342 return 0;
2343}
2344
2345/* Should be called with conf_lock held */
2346int
2347bnad_enable_default_bcast(struct bnad *bnad)
2348{
2349 struct bnad_rx_info *rx_info = &bnad->rx_info[0];
2350 int ret;
2351 unsigned long flags;
2352
2353 init_completion(&bnad->bnad_completions.mcast_comp);
2354
2355 spin_lock_irqsave(&bnad->bna_lock, flags);
2356 ret = bna_rx_mcast_add(rx_info->rx, bnad_bcast_addr,
2357 bnad_cb_rx_mcast_add);
2358 spin_unlock_irqrestore(&bnad->bna_lock, flags);
2359
2360 if (ret == BNA_CB_SUCCESS)
2361 wait_for_completion(&bnad->bnad_completions.mcast_comp);
2362 else
2363 return -ENODEV;
2364
2365 if (bnad->bnad_completions.mcast_comp_status != BNA_CB_SUCCESS)
2366 return -ENODEV;
2367
2368 return 0;
2369}
2370
2371/* Called with mutex_lock(&bnad->conf_mutex) held */
2372void
2373bnad_restore_vlans(struct bnad *bnad, u32 rx_id)
2374{
2375 u16 vid;
2376 unsigned long flags;
2377
2378 for_each_set_bit(vid, bnad->active_vlans, VLAN_N_VID) {
2379 spin_lock_irqsave(&bnad->bna_lock, flags);
2380 bna_rx_vlan_add(bnad->rx_info[rx_id].rx, vid);
2381 spin_unlock_irqrestore(&bnad->bna_lock, flags);
2382 }
2383}
2384
2385/* Statistics utilities */
2386void
2387bnad_netdev_qstats_fill(struct bnad *bnad, struct rtnl_link_stats64 *stats)
2388{
2389 int i, j;
2390
2391 for (i = 0; i < bnad->num_rx; i++) {
2392 for (j = 0; j < bnad->num_rxp_per_rx; j++) {
2393 if (bnad->rx_info[i].rx_ctrl[j].ccb) {
2394 stats->rx_packets += bnad->rx_info[i].
2395 rx_ctrl[j].ccb->rcb[0]->rxq->rx_packets;
2396 stats->rx_bytes += bnad->rx_info[i].
2397 rx_ctrl[j].ccb->rcb[0]->rxq->rx_bytes;
2398 if (bnad->rx_info[i].rx_ctrl[j].ccb->rcb[1] &&
2399 bnad->rx_info[i].rx_ctrl[j].ccb->
2400 rcb[1]->rxq) {
2401 stats->rx_packets +=
2402 bnad->rx_info[i].rx_ctrl[j].
2403 ccb->rcb[1]->rxq->rx_packets;
2404 stats->rx_bytes +=
2405 bnad->rx_info[i].rx_ctrl[j].
2406 ccb->rcb[1]->rxq->rx_bytes;
2407 }
2408 }
2409 }
2410 }
2411 for (i = 0; i < bnad->num_tx; i++) {
2412 for (j = 0; j < bnad->num_txq_per_tx; j++) {
2413 if (bnad->tx_info[i].tcb[j]) {
2414 stats->tx_packets +=
2415 bnad->tx_info[i].tcb[j]->txq->tx_packets;
2416 stats->tx_bytes +=
2417 bnad->tx_info[i].tcb[j]->txq->tx_bytes;
2418 }
2419 }
2420 }
2421}
2422
2423/*
2424 * Must be called with the bna_lock held.
2425 */
2426void
2427bnad_netdev_hwstats_fill(struct bnad *bnad, struct rtnl_link_stats64 *stats)
2428{
2429 struct bfi_enet_stats_mac *mac_stats;
2430 u32 bmap;
2431 int i;
2432
2433 mac_stats = &bnad->stats.bna_stats->hw_stats.mac_stats;
2434 stats->rx_errors =
2435 mac_stats->rx_fcs_error + mac_stats->rx_alignment_error +
2436 mac_stats->rx_frame_length_error + mac_stats->rx_code_error +
2437 mac_stats->rx_undersize;
2438 stats->tx_errors = mac_stats->tx_fcs_error +
2439 mac_stats->tx_undersize;
2440 stats->rx_dropped = mac_stats->rx_drop;
2441 stats->tx_dropped = mac_stats->tx_drop;
2442 stats->multicast = mac_stats->rx_multicast;
2443 stats->collisions = mac_stats->tx_total_collision;
2444
2445 stats->rx_length_errors = mac_stats->rx_frame_length_error;
2446
2447 /* receive ring buffer overflow ?? */
2448
2449 stats->rx_crc_errors = mac_stats->rx_fcs_error;
2450 stats->rx_frame_errors = mac_stats->rx_alignment_error;
2451 /* recv'r fifo overrun */
2452 bmap = bna_rx_rid_mask(&bnad->bna);
2453 for (i = 0; bmap; i++) {
2454 if (bmap & 1) {
2455 stats->rx_fifo_errors +=
2456 bnad->stats.bna_stats->
2457 hw_stats.rxf_stats[i].frame_drops;
2458 break;
2459 }
2460 bmap >>= 1;
2461 }
2462}
2463
2464static void
2465bnad_mbox_irq_sync(struct bnad *bnad)
2466{
2467 u32 irq;
2468 unsigned long flags;
2469
2470 spin_lock_irqsave(&bnad->bna_lock, flags);
2471 if (bnad->cfg_flags & BNAD_CF_MSIX)
2472 irq = bnad->msix_table[BNAD_MAILBOX_MSIX_INDEX].vector;
2473 else
2474 irq = bnad->pcidev->irq;
2475 spin_unlock_irqrestore(&bnad->bna_lock, flags);
2476
2477 synchronize_irq(irq);
2478}
2479
2480/* Utility used by bnad_start_xmit, for doing TSO */
2481static int
2482bnad_tso_prepare(struct bnad *bnad, struct sk_buff *skb)
2483{
2484 int err;
2485
2486 err = skb_cow_head(skb, 0);
2487 if (err < 0) {
2488 BNAD_UPDATE_CTR(bnad, tso_err);
2489 return err;
2490 }
2491
2492 /*
2493 * For TSO, the TCP checksum field is seeded with pseudo-header sum
2494 * excluding the length field.
2495 */
2496 if (vlan_get_protocol(skb) == htons(ETH_P_IP)) {
2497 struct iphdr *iph = ip_hdr(skb);
2498
2499 /* Do we really need these? */
2500 iph->tot_len = 0;
2501 iph->check = 0;
2502
2503 tcp_hdr(skb)->check =
2504 ~csum_tcpudp_magic(iph->saddr, iph->daddr, 0,
2505 IPPROTO_TCP, 0);
2506 BNAD_UPDATE_CTR(bnad, tso4);
2507 } else {
2508 struct ipv6hdr *ipv6h = ipv6_hdr(skb);
2509
2510 ipv6h->payload_len = 0;
2511 tcp_hdr(skb)->check =
2512 ~csum_ipv6_magic(&ipv6h->saddr, &ipv6h->daddr, 0,
2513 IPPROTO_TCP, 0);
2514 BNAD_UPDATE_CTR(bnad, tso6);
2515 }
2516
2517 return 0;
2518}
2519
2520/*
2521 * Initialize Q numbers depending on Rx Paths
2522 * Called with bnad->bna_lock held, because of cfg_flags
2523 * access.
2524 */
2525static void
2526bnad_q_num_init(struct bnad *bnad)
2527{
2528 int rxps;
2529
2530 rxps = min((uint)num_online_cpus(),
2531 (uint)(BNAD_MAX_RX * BNAD_MAX_RXP_PER_RX));
2532
2533 if (!(bnad->cfg_flags & BNAD_CF_MSIX))
2534 rxps = 1; /* INTx */
2535
2536 bnad->num_rx = 1;
2537 bnad->num_tx = 1;
2538 bnad->num_rxp_per_rx = rxps;
2539 bnad->num_txq_per_tx = BNAD_TXQ_NUM;
2540}
2541
2542/*
2543 * Adjusts the Q numbers, given a number of msix vectors
2544 * Give preference to RSS as opposed to Tx priority Queues,
2545 * in such a case, just use 1 Tx Q
2546 * Called with bnad->bna_lock held b'cos of cfg_flags access
2547 */
2548static void
2549bnad_q_num_adjust(struct bnad *bnad, int msix_vectors, int temp)
2550{
2551 bnad->num_txq_per_tx = 1;
2552 if ((msix_vectors >= (bnad->num_tx * bnad->num_txq_per_tx) +
2553 bnad_rxqs_per_cq + BNAD_MAILBOX_MSIX_VECTORS) &&
2554 (bnad->cfg_flags & BNAD_CF_MSIX)) {
2555 bnad->num_rxp_per_rx = msix_vectors -
2556 (bnad->num_tx * bnad->num_txq_per_tx) -
2557 BNAD_MAILBOX_MSIX_VECTORS;
2558 } else
2559 bnad->num_rxp_per_rx = 1;
2560}
2561
2562/* Enable / disable ioceth */
2563static int
2564bnad_ioceth_disable(struct bnad *bnad)
2565{
2566 unsigned long flags;
2567 int err = 0;
2568
2569 spin_lock_irqsave(&bnad->bna_lock, flags);
2570 init_completion(&bnad->bnad_completions.ioc_comp);
2571 bna_ioceth_disable(&bnad->bna.ioceth, BNA_HARD_CLEANUP);
2572 spin_unlock_irqrestore(&bnad->bna_lock, flags);
2573
2574 wait_for_completion_timeout(&bnad->bnad_completions.ioc_comp,
2575 msecs_to_jiffies(BNAD_IOCETH_TIMEOUT));
2576
2577 err = bnad->bnad_completions.ioc_comp_status;
2578 return err;
2579}
2580
2581static int
2582bnad_ioceth_enable(struct bnad *bnad)
2583{
2584 int err = 0;
2585 unsigned long flags;
2586
2587 spin_lock_irqsave(&bnad->bna_lock, flags);
2588 init_completion(&bnad->bnad_completions.ioc_comp);
2589 bnad->bnad_completions.ioc_comp_status = BNA_CB_WAITING;
2590 bna_ioceth_enable(&bnad->bna.ioceth);
2591 spin_unlock_irqrestore(&bnad->bna_lock, flags);
2592
2593 wait_for_completion_timeout(&bnad->bnad_completions.ioc_comp,
2594 msecs_to_jiffies(BNAD_IOCETH_TIMEOUT));
2595
2596 err = bnad->bnad_completions.ioc_comp_status;
2597
2598 return err;
2599}
2600
2601/* Free BNA resources */
2602static void
2603bnad_res_free(struct bnad *bnad, struct bna_res_info *res_info,
2604 u32 res_val_max)
2605{
2606 int i;
2607
2608 for (i = 0; i < res_val_max; i++)
2609 bnad_mem_free(bnad, &res_info[i].res_u.mem_info);
2610}
2611
2612/* Allocates memory and interrupt resources for BNA */
2613static int
2614bnad_res_alloc(struct bnad *bnad, struct bna_res_info *res_info,
2615 u32 res_val_max)
2616{
2617 int i, err;
2618
2619 for (i = 0; i < res_val_max; i++) {
2620 err = bnad_mem_alloc(bnad, &res_info[i].res_u.mem_info);
2621 if (err)
2622 goto err_return;
2623 }
2624 return 0;
2625
2626err_return:
2627 bnad_res_free(bnad, res_info, res_val_max);
2628 return err;
2629}
2630
2631/* Interrupt enable / disable */
2632static void
2633bnad_enable_msix(struct bnad *bnad)
2634{
2635 int i, ret;
2636 unsigned long flags;
2637
2638 spin_lock_irqsave(&bnad->bna_lock, flags);
2639 if (!(bnad->cfg_flags & BNAD_CF_MSIX)) {
2640 spin_unlock_irqrestore(&bnad->bna_lock, flags);
2641 return;
2642 }
2643 spin_unlock_irqrestore(&bnad->bna_lock, flags);
2644
2645 if (bnad->msix_table)
2646 return;
2647
2648 bnad->msix_table =
2649 kcalloc(bnad->msix_num, sizeof(struct msix_entry), GFP_KERNEL);
2650
2651 if (!bnad->msix_table)
2652 goto intx_mode;
2653
2654 for (i = 0; i < bnad->msix_num; i++)
2655 bnad->msix_table[i].entry = i;
2656
2657 ret = pci_enable_msix_range(bnad->pcidev, bnad->msix_table,
2658 1, bnad->msix_num);
2659 if (ret < 0) {
2660 goto intx_mode;
2661 } else if (ret < bnad->msix_num) {
2662 dev_warn(&bnad->pcidev->dev,
2663 "%d MSI-X vectors allocated < %d requested\n",
2664 ret, bnad->msix_num);
2665
2666 spin_lock_irqsave(&bnad->bna_lock, flags);
2667 /* ret = #of vectors that we got */
2668 bnad_q_num_adjust(bnad, (ret - BNAD_MAILBOX_MSIX_VECTORS) / 2,
2669 (ret - BNAD_MAILBOX_MSIX_VECTORS) / 2);
2670 spin_unlock_irqrestore(&bnad->bna_lock, flags);
2671
2672 bnad->msix_num = BNAD_NUM_TXQ + BNAD_NUM_RXP +
2673 BNAD_MAILBOX_MSIX_VECTORS;
2674
2675 if (bnad->msix_num > ret) {
2676 pci_disable_msix(bnad->pcidev);
2677 goto intx_mode;
2678 }
2679 }
2680
2681 pci_intx(bnad->pcidev, 0);
2682
2683 return;
2684
2685intx_mode:
2686 dev_warn(&bnad->pcidev->dev,
2687 "MSI-X enable failed - operating in INTx mode\n");
2688
2689 kfree(bnad->msix_table);
2690 bnad->msix_table = NULL;
2691 bnad->msix_num = 0;
2692 spin_lock_irqsave(&bnad->bna_lock, flags);
2693 bnad->cfg_flags &= ~BNAD_CF_MSIX;
2694 bnad_q_num_init(bnad);
2695 spin_unlock_irqrestore(&bnad->bna_lock, flags);
2696}
2697
2698static void
2699bnad_disable_msix(struct bnad *bnad)
2700{
2701 u32 cfg_flags;
2702 unsigned long flags;
2703
2704 spin_lock_irqsave(&bnad->bna_lock, flags);
2705 cfg_flags = bnad->cfg_flags;
2706 if (bnad->cfg_flags & BNAD_CF_MSIX)
2707 bnad->cfg_flags &= ~BNAD_CF_MSIX;
2708 spin_unlock_irqrestore(&bnad->bna_lock, flags);
2709
2710 if (cfg_flags & BNAD_CF_MSIX) {
2711 pci_disable_msix(bnad->pcidev);
2712 kfree(bnad->msix_table);
2713 bnad->msix_table = NULL;
2714 }
2715}
2716
2717/* Netdev entry points */
2718static int
2719bnad_open(struct net_device *netdev)
2720{
2721 int err;
2722 struct bnad *bnad = netdev_priv(netdev);
2723 struct bna_pause_config pause_config;
2724 unsigned long flags;
2725
2726 mutex_lock(&bnad->conf_mutex);
2727
2728 /* Tx */
2729 err = bnad_setup_tx(bnad, 0);
2730 if (err)
2731 goto err_return;
2732
2733 /* Rx */
2734 err = bnad_setup_rx(bnad, 0);
2735 if (err)
2736 goto cleanup_tx;
2737
2738 /* Port */
2739 pause_config.tx_pause = 0;
2740 pause_config.rx_pause = 0;
2741
2742 spin_lock_irqsave(&bnad->bna_lock, flags);
2743 bna_enet_mtu_set(&bnad->bna.enet,
2744 BNAD_FRAME_SIZE(bnad->netdev->mtu), NULL);
2745 bna_enet_pause_config(&bnad->bna.enet, &pause_config);
2746 bna_enet_enable(&bnad->bna.enet);
2747 spin_unlock_irqrestore(&bnad->bna_lock, flags);
2748
2749 /* Enable broadcast */
2750 bnad_enable_default_bcast(bnad);
2751
2752 /* Restore VLANs, if any */
2753 bnad_restore_vlans(bnad, 0);
2754
2755 /* Set the UCAST address */
2756 spin_lock_irqsave(&bnad->bna_lock, flags);
2757 bnad_mac_addr_set_locked(bnad, netdev->dev_addr);
2758 spin_unlock_irqrestore(&bnad->bna_lock, flags);
2759
2760 /* Start the stats timer */
2761 bnad_stats_timer_start(bnad);
2762
2763 mutex_unlock(&bnad->conf_mutex);
2764
2765 return 0;
2766
2767cleanup_tx:
2768 bnad_destroy_tx(bnad, 0);
2769
2770err_return:
2771 mutex_unlock(&bnad->conf_mutex);
2772 return err;
2773}
2774
2775static int
2776bnad_stop(struct net_device *netdev)
2777{
2778 struct bnad *bnad = netdev_priv(netdev);
2779 unsigned long flags;
2780
2781 mutex_lock(&bnad->conf_mutex);
2782
2783 /* Stop the stats timer */
2784 bnad_stats_timer_stop(bnad);
2785
2786 init_completion(&bnad->bnad_completions.enet_comp);
2787
2788 spin_lock_irqsave(&bnad->bna_lock, flags);
2789 bna_enet_disable(&bnad->bna.enet, BNA_HARD_CLEANUP,
2790 bnad_cb_enet_disabled);
2791 spin_unlock_irqrestore(&bnad->bna_lock, flags);
2792
2793 wait_for_completion(&bnad->bnad_completions.enet_comp);
2794
2795 bnad_destroy_tx(bnad, 0);
2796 bnad_destroy_rx(bnad, 0);
2797
2798 /* Synchronize mailbox IRQ */
2799 bnad_mbox_irq_sync(bnad);
2800
2801 mutex_unlock(&bnad->conf_mutex);
2802
2803 return 0;
2804}
2805
2806/* TX */
2807/* Returns 0 for success */
2808static int
2809bnad_txq_wi_prepare(struct bnad *bnad, struct bna_tcb *tcb,
2810 struct sk_buff *skb, struct bna_txq_entry *txqent)
2811{
2812 u16 flags = 0;
2813 u32 gso_size;
2814 u16 vlan_tag = 0;
2815
2816 if (skb_vlan_tag_present(skb)) {
2817 vlan_tag = (u16)skb_vlan_tag_get(skb);
2818 flags |= (BNA_TXQ_WI_CF_INS_PRIO | BNA_TXQ_WI_CF_INS_VLAN);
2819 }
2820 if (test_bit(BNAD_RF_CEE_RUNNING, &bnad->run_flags)) {
2821 vlan_tag = ((tcb->priority & 0x7) << VLAN_PRIO_SHIFT)
2822 | (vlan_tag & 0x1fff);
2823 flags |= (BNA_TXQ_WI_CF_INS_PRIO | BNA_TXQ_WI_CF_INS_VLAN);
2824 }
2825 txqent->hdr.wi.vlan_tag = htons(vlan_tag);
2826
2827 if (skb_is_gso(skb)) {
2828 gso_size = skb_shinfo(skb)->gso_size;
2829 if (unlikely(gso_size > bnad->netdev->mtu)) {
2830 BNAD_UPDATE_CTR(bnad, tx_skb_mss_too_long);
2831 return -EINVAL;
2832 }
2833 if (unlikely((gso_size + skb_transport_offset(skb) +
2834 tcp_hdrlen(skb)) >= skb->len)) {
2835 txqent->hdr.wi.opcode = htons(BNA_TXQ_WI_SEND);
2836 txqent->hdr.wi.lso_mss = 0;
2837 BNAD_UPDATE_CTR(bnad, tx_skb_tso_too_short);
2838 } else {
2839 txqent->hdr.wi.opcode = htons(BNA_TXQ_WI_SEND_LSO);
2840 txqent->hdr.wi.lso_mss = htons(gso_size);
2841 }
2842
2843 if (bnad_tso_prepare(bnad, skb)) {
2844 BNAD_UPDATE_CTR(bnad, tx_skb_tso_prepare);
2845 return -EINVAL;
2846 }
2847
2848 flags |= (BNA_TXQ_WI_CF_IP_CKSUM | BNA_TXQ_WI_CF_TCP_CKSUM);
2849 txqent->hdr.wi.l4_hdr_size_n_offset =
2850 htons(BNA_TXQ_WI_L4_HDR_N_OFFSET(
2851 tcp_hdrlen(skb) >> 2, skb_transport_offset(skb)));
2852 } else {
2853 txqent->hdr.wi.opcode = htons(BNA_TXQ_WI_SEND);
2854 txqent->hdr.wi.lso_mss = 0;
2855
2856 if (unlikely(skb->len > (bnad->netdev->mtu + VLAN_ETH_HLEN))) {
2857 BNAD_UPDATE_CTR(bnad, tx_skb_non_tso_too_long);
2858 return -EINVAL;
2859 }
2860
2861 if (skb->ip_summed == CHECKSUM_PARTIAL) {
2862 __be16 net_proto = vlan_get_protocol(skb);
2863 u8 proto = 0;
2864
2865 if (net_proto == htons(ETH_P_IP))
2866 proto = ip_hdr(skb)->protocol;
2867#ifdef NETIF_F_IPV6_CSUM
2868 else if (net_proto == htons(ETH_P_IPV6)) {
2869 /* nexthdr may not be TCP immediately. */
2870 proto = ipv6_hdr(skb)->nexthdr;
2871 }
2872#endif
2873 if (proto == IPPROTO_TCP) {
2874 flags |= BNA_TXQ_WI_CF_TCP_CKSUM;
2875 txqent->hdr.wi.l4_hdr_size_n_offset =
2876 htons(BNA_TXQ_WI_L4_HDR_N_OFFSET
2877 (0, skb_transport_offset(skb)));
2878
2879 BNAD_UPDATE_CTR(bnad, tcpcsum_offload);
2880
2881 if (unlikely(skb_headlen(skb) <
2882 skb_transport_offset(skb) +
2883 tcp_hdrlen(skb))) {
2884 BNAD_UPDATE_CTR(bnad, tx_skb_tcp_hdr);
2885 return -EINVAL;
2886 }
2887 } else if (proto == IPPROTO_UDP) {
2888 flags |= BNA_TXQ_WI_CF_UDP_CKSUM;
2889 txqent->hdr.wi.l4_hdr_size_n_offset =
2890 htons(BNA_TXQ_WI_L4_HDR_N_OFFSET
2891 (0, skb_transport_offset(skb)));
2892
2893 BNAD_UPDATE_CTR(bnad, udpcsum_offload);
2894 if (unlikely(skb_headlen(skb) <
2895 skb_transport_offset(skb) +
2896 sizeof(struct udphdr))) {
2897 BNAD_UPDATE_CTR(bnad, tx_skb_udp_hdr);
2898 return -EINVAL;
2899 }
2900 } else {
2901
2902 BNAD_UPDATE_CTR(bnad, tx_skb_csum_err);
2903 return -EINVAL;
2904 }
2905 } else
2906 txqent->hdr.wi.l4_hdr_size_n_offset = 0;
2907 }
2908
2909 txqent->hdr.wi.flags = htons(flags);
2910 txqent->hdr.wi.frame_length = htonl(skb->len);
2911
2912 return 0;
2913}
2914
2915/*
2916 * bnad_start_xmit : Netdev entry point for Transmit
2917 * Called under lock held by net_device
2918 */
2919static netdev_tx_t
2920bnad_start_xmit(struct sk_buff *skb, struct net_device *netdev)
2921{
2922 struct bnad *bnad = netdev_priv(netdev);
2923 u32 txq_id = 0;
2924 struct bna_tcb *tcb = NULL;
2925 struct bnad_tx_unmap *unmap_q, *unmap, *head_unmap;
2926 u32 prod, q_depth, vect_id;
2927 u32 wis, vectors, len;
2928 int i;
2929 dma_addr_t dma_addr;
2930 struct bna_txq_entry *txqent;
2931
2932 len = skb_headlen(skb);
2933
2934 /* Sanity checks for the skb */
2935
2936 if (unlikely(skb->len <= ETH_HLEN)) {
2937 dev_kfree_skb_any(skb);
2938 BNAD_UPDATE_CTR(bnad, tx_skb_too_short);
2939 return NETDEV_TX_OK;
2940 }
2941 if (unlikely(len > BFI_TX_MAX_DATA_PER_VECTOR)) {
2942 dev_kfree_skb_any(skb);
2943 BNAD_UPDATE_CTR(bnad, tx_skb_headlen_zero);
2944 return NETDEV_TX_OK;
2945 }
2946 if (unlikely(len == 0)) {
2947 dev_kfree_skb_any(skb);
2948 BNAD_UPDATE_CTR(bnad, tx_skb_headlen_zero);
2949 return NETDEV_TX_OK;
2950 }
2951
2952 tcb = bnad->tx_info[0].tcb[txq_id];
2953
2954 /*
2955 * Takes care of the Tx that is scheduled between clearing the flag
2956 * and the netif_tx_stop_all_queues() call.
2957 */
2958 if (unlikely(!tcb || !test_bit(BNAD_TXQ_TX_STARTED, &tcb->flags))) {
2959 dev_kfree_skb_any(skb);
2960 BNAD_UPDATE_CTR(bnad, tx_skb_stopping);
2961 return NETDEV_TX_OK;
2962 }
2963
2964 q_depth = tcb->q_depth;
2965 prod = tcb->producer_index;
2966 unmap_q = tcb->unmap_q;
2967
2968 vectors = 1 + skb_shinfo(skb)->nr_frags;
2969 wis = BNA_TXQ_WI_NEEDED(vectors); /* 4 vectors per work item */
2970
2971 if (unlikely(vectors > BFI_TX_MAX_VECTORS_PER_PKT)) {
2972 dev_kfree_skb_any(skb);
2973 BNAD_UPDATE_CTR(bnad, tx_skb_max_vectors);
2974 return NETDEV_TX_OK;
2975 }
2976
2977 /* Check for available TxQ resources */
2978 if (unlikely(wis > BNA_QE_FREE_CNT(tcb, q_depth))) {
2979 if ((*tcb->hw_consumer_index != tcb->consumer_index) &&
2980 !test_and_set_bit(BNAD_TXQ_FREE_SENT, &tcb->flags)) {
2981 u32 sent;
2982 sent = bnad_txcmpl_process(bnad, tcb);
2983 if (likely(test_bit(BNAD_TXQ_TX_STARTED, &tcb->flags)))
2984 bna_ib_ack(tcb->i_dbell, sent);
2985 smp_mb__before_atomic();
2986 clear_bit(BNAD_TXQ_FREE_SENT, &tcb->flags);
2987 } else {
2988 netif_stop_queue(netdev);
2989 BNAD_UPDATE_CTR(bnad, netif_queue_stop);
2990 }
2991
2992 smp_mb();
2993 /*
2994 * Check again to deal with race condition between
2995 * netif_stop_queue here, and netif_wake_queue in
2996 * interrupt handler which is not inside netif tx lock.
2997 */
2998 if (likely(wis > BNA_QE_FREE_CNT(tcb, q_depth))) {
2999 BNAD_UPDATE_CTR(bnad, netif_queue_stop);
3000 return NETDEV_TX_BUSY;
3001 } else {
3002 netif_wake_queue(netdev);
3003 BNAD_UPDATE_CTR(bnad, netif_queue_wakeup);
3004 }
3005 }
3006
3007 txqent = &((struct bna_txq_entry *)tcb->sw_q)[prod];
3008 head_unmap = &unmap_q[prod];
3009
3010 /* Program the opcode, flags, frame_len, num_vectors in WI */
3011 if (bnad_txq_wi_prepare(bnad, tcb, skb, txqent)) {
3012 dev_kfree_skb_any(skb);
3013 return NETDEV_TX_OK;
3014 }
3015 txqent->hdr.wi.reserved = 0;
3016 txqent->hdr.wi.num_vectors = vectors;
3017
3018 head_unmap->skb = skb;
3019 head_unmap->nvecs = 0;
3020
3021 /* Program the vectors */
3022 unmap = head_unmap;
3023 dma_addr = dma_map_single(&bnad->pcidev->dev, skb->data,
3024 len, DMA_TO_DEVICE);
3025 if (dma_mapping_error(&bnad->pcidev->dev, dma_addr)) {
3026 dev_kfree_skb_any(skb);
3027 BNAD_UPDATE_CTR(bnad, tx_skb_map_failed);
3028 return NETDEV_TX_OK;
3029 }
3030 BNA_SET_DMA_ADDR(dma_addr, &txqent->vector[0].host_addr);
3031 txqent->vector[0].length = htons(len);
3032 dma_unmap_addr_set(&unmap->vectors[0], dma_addr, dma_addr);
3033 head_unmap->nvecs++;
3034
3035 for (i = 0, vect_id = 0; i < vectors - 1; i++) {
3036 const skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
3037 u32 size = skb_frag_size(frag);
3038
3039 if (unlikely(size == 0)) {
3040 /* Undo the changes starting at tcb->producer_index */
3041 bnad_tx_buff_unmap(bnad, unmap_q, q_depth,
3042 tcb->producer_index);
3043 dev_kfree_skb_any(skb);
3044 BNAD_UPDATE_CTR(bnad, tx_skb_frag_zero);
3045 return NETDEV_TX_OK;
3046 }
3047
3048 len += size;
3049
3050 vect_id++;
3051 if (vect_id == BFI_TX_MAX_VECTORS_PER_WI) {
3052 vect_id = 0;
3053 BNA_QE_INDX_INC(prod, q_depth);
3054 txqent = &((struct bna_txq_entry *)tcb->sw_q)[prod];
3055 txqent->hdr.wi_ext.opcode = htons(BNA_TXQ_WI_EXTENSION);
3056 unmap = &unmap_q[prod];
3057 }
3058
3059 dma_addr = skb_frag_dma_map(&bnad->pcidev->dev, frag,
3060 0, size, DMA_TO_DEVICE);
3061 if (dma_mapping_error(&bnad->pcidev->dev, dma_addr)) {
3062 /* Undo the changes starting at tcb->producer_index */
3063 bnad_tx_buff_unmap(bnad, unmap_q, q_depth,
3064 tcb->producer_index);
3065 dev_kfree_skb_any(skb);
3066 BNAD_UPDATE_CTR(bnad, tx_skb_map_failed);
3067 return NETDEV_TX_OK;
3068 }
3069
3070 dma_unmap_len_set(&unmap->vectors[vect_id], dma_len, size);
3071 BNA_SET_DMA_ADDR(dma_addr, &txqent->vector[vect_id].host_addr);
3072 txqent->vector[vect_id].length = htons(size);
3073 dma_unmap_addr_set(&unmap->vectors[vect_id], dma_addr,
3074 dma_addr);
3075 head_unmap->nvecs++;
3076 }
3077
3078 if (unlikely(len != skb->len)) {
3079 /* Undo the changes starting at tcb->producer_index */
3080 bnad_tx_buff_unmap(bnad, unmap_q, q_depth, tcb->producer_index);
3081 dev_kfree_skb_any(skb);
3082 BNAD_UPDATE_CTR(bnad, tx_skb_len_mismatch);
3083 return NETDEV_TX_OK;
3084 }
3085
3086 BNA_QE_INDX_INC(prod, q_depth);
3087 tcb->producer_index = prod;
3088
3089 wmb();
3090
3091 if (unlikely(!test_bit(BNAD_TXQ_TX_STARTED, &tcb->flags)))
3092 return NETDEV_TX_OK;
3093
3094 skb_tx_timestamp(skb);
3095
3096 bna_txq_prod_indx_doorbell(tcb);
3097
3098 return NETDEV_TX_OK;
3099}
3100
3101/*
3102 * Used spin_lock to synchronize reading of stats structures, which
3103 * is written by BNA under the same lock.
3104 */
3105static void
3106bnad_get_stats64(struct net_device *netdev, struct rtnl_link_stats64 *stats)
3107{
3108 struct bnad *bnad = netdev_priv(netdev);
3109 unsigned long flags;
3110
3111 spin_lock_irqsave(&bnad->bna_lock, flags);
3112
3113 bnad_netdev_qstats_fill(bnad, stats);
3114 bnad_netdev_hwstats_fill(bnad, stats);
3115
3116 spin_unlock_irqrestore(&bnad->bna_lock, flags);
3117}
3118
3119static void
3120bnad_set_rx_ucast_fltr(struct bnad *bnad)
3121{
3122 struct net_device *netdev = bnad->netdev;
3123 int uc_count = netdev_uc_count(netdev);
3124 enum bna_cb_status ret;
3125 u8 *mac_list;
3126 struct netdev_hw_addr *ha;
3127 int entry;
3128
3129 if (netdev_uc_empty(bnad->netdev)) {
3130 bna_rx_ucast_listset(bnad->rx_info[0].rx, 0, NULL);
3131 return;
3132 }
3133
3134 if (uc_count > bna_attr(&bnad->bna)->num_ucmac)
3135 goto mode_default;
3136
3137 mac_list = kcalloc(ETH_ALEN, uc_count, GFP_ATOMIC);
3138 if (mac_list == NULL)
3139 goto mode_default;
3140
3141 entry = 0;
3142 netdev_for_each_uc_addr(ha, netdev) {
3143 ether_addr_copy(&mac_list[entry * ETH_ALEN], &ha->addr[0]);
3144 entry++;
3145 }
3146
3147 ret = bna_rx_ucast_listset(bnad->rx_info[0].rx, entry, mac_list);
3148 kfree(mac_list);
3149
3150 if (ret != BNA_CB_SUCCESS)
3151 goto mode_default;
3152
3153 return;
3154
3155 /* ucast packets not in UCAM are routed to default function */
3156mode_default:
3157 bnad->cfg_flags |= BNAD_CF_DEFAULT;
3158 bna_rx_ucast_listset(bnad->rx_info[0].rx, 0, NULL);
3159}
3160
3161static void
3162bnad_set_rx_mcast_fltr(struct bnad *bnad)
3163{
3164 struct net_device *netdev = bnad->netdev;
3165 int mc_count = netdev_mc_count(netdev);
3166 enum bna_cb_status ret;
3167 u8 *mac_list;
3168
3169 if (netdev->flags & IFF_ALLMULTI)
3170 goto mode_allmulti;
3171
3172 if (netdev_mc_empty(netdev))
3173 return;
3174
3175 if (mc_count > bna_attr(&bnad->bna)->num_mcmac)
3176 goto mode_allmulti;
3177
3178 mac_list = kcalloc(mc_count + 1, ETH_ALEN, GFP_ATOMIC);
3179
3180 if (mac_list == NULL)
3181 goto mode_allmulti;
3182
3183 ether_addr_copy(&mac_list[0], &bnad_bcast_addr[0]);
3184
3185 /* copy rest of the MCAST addresses */
3186 bnad_netdev_mc_list_get(netdev, mac_list);
3187 ret = bna_rx_mcast_listset(bnad->rx_info[0].rx, mc_count + 1, mac_list);
3188 kfree(mac_list);
3189
3190 if (ret != BNA_CB_SUCCESS)
3191 goto mode_allmulti;
3192
3193 return;
3194
3195mode_allmulti:
3196 bnad->cfg_flags |= BNAD_CF_ALLMULTI;
3197 bna_rx_mcast_delall(bnad->rx_info[0].rx);
3198}
3199
3200void
3201bnad_set_rx_mode(struct net_device *netdev)
3202{
3203 struct bnad *bnad = netdev_priv(netdev);
3204 enum bna_rxmode new_mode, mode_mask;
3205 unsigned long flags;
3206
3207 spin_lock_irqsave(&bnad->bna_lock, flags);
3208
3209 if (bnad->rx_info[0].rx == NULL) {
3210 spin_unlock_irqrestore(&bnad->bna_lock, flags);
3211 return;
3212 }
3213
3214 /* clear bnad flags to update it with new settings */
3215 bnad->cfg_flags &= ~(BNAD_CF_PROMISC | BNAD_CF_DEFAULT |
3216 BNAD_CF_ALLMULTI);
3217
3218 new_mode = 0;
3219 if (netdev->flags & IFF_PROMISC) {
3220 new_mode |= BNAD_RXMODE_PROMISC_DEFAULT;
3221 bnad->cfg_flags |= BNAD_CF_PROMISC;
3222 } else {
3223 bnad_set_rx_mcast_fltr(bnad);
3224
3225 if (bnad->cfg_flags & BNAD_CF_ALLMULTI)
3226 new_mode |= BNA_RXMODE_ALLMULTI;
3227
3228 bnad_set_rx_ucast_fltr(bnad);
3229
3230 if (bnad->cfg_flags & BNAD_CF_DEFAULT)
3231 new_mode |= BNA_RXMODE_DEFAULT;
3232 }
3233
3234 mode_mask = BNA_RXMODE_PROMISC | BNA_RXMODE_DEFAULT |
3235 BNA_RXMODE_ALLMULTI;
3236 bna_rx_mode_set(bnad->rx_info[0].rx, new_mode, mode_mask);
3237
3238 spin_unlock_irqrestore(&bnad->bna_lock, flags);
3239}
3240
3241/*
3242 * bna_lock is used to sync writes to netdev->addr
3243 * conf_lock cannot be used since this call may be made
3244 * in a non-blocking context.
3245 */
3246static int
3247bnad_set_mac_address(struct net_device *netdev, void *addr)
3248{
3249 int err;
3250 struct bnad *bnad = netdev_priv(netdev);
3251 struct sockaddr *sa = (struct sockaddr *)addr;
3252 unsigned long flags;
3253
3254 spin_lock_irqsave(&bnad->bna_lock, flags);
3255
3256 err = bnad_mac_addr_set_locked(bnad, sa->sa_data);
3257 if (!err)
3258 ether_addr_copy(netdev->dev_addr, sa->sa_data);
3259
3260 spin_unlock_irqrestore(&bnad->bna_lock, flags);
3261
3262 return err;
3263}
3264
3265static int
3266bnad_mtu_set(struct bnad *bnad, int frame_size)
3267{
3268 unsigned long flags;
3269
3270 init_completion(&bnad->bnad_completions.mtu_comp);
3271
3272 spin_lock_irqsave(&bnad->bna_lock, flags);
3273 bna_enet_mtu_set(&bnad->bna.enet, frame_size, bnad_cb_enet_mtu_set);
3274 spin_unlock_irqrestore(&bnad->bna_lock, flags);
3275
3276 wait_for_completion(&bnad->bnad_completions.mtu_comp);
3277
3278 return bnad->bnad_completions.mtu_comp_status;
3279}
3280
3281static int
3282bnad_change_mtu(struct net_device *netdev, int new_mtu)
3283{
3284 int err, mtu;
3285 struct bnad *bnad = netdev_priv(netdev);
3286 u32 frame, new_frame;
3287
3288 mutex_lock(&bnad->conf_mutex);
3289
3290 mtu = netdev->mtu;
3291 netdev->mtu = new_mtu;
3292
3293 frame = BNAD_FRAME_SIZE(mtu);
3294 new_frame = BNAD_FRAME_SIZE(new_mtu);
3295
3296 /* check if multi-buffer needs to be enabled */
3297 if (BNAD_PCI_DEV_IS_CAT2(bnad) &&
3298 netif_running(bnad->netdev)) {
3299 /* only when transition is over 4K */
3300 if ((frame <= 4096 && new_frame > 4096) ||
3301 (frame > 4096 && new_frame <= 4096))
3302 bnad_reinit_rx(bnad);
3303 }
3304
3305 err = bnad_mtu_set(bnad, new_frame);
3306 if (err)
3307 err = -EBUSY;
3308
3309 mutex_unlock(&bnad->conf_mutex);
3310 return err;
3311}
3312
3313static int
3314bnad_vlan_rx_add_vid(struct net_device *netdev, __be16 proto, u16 vid)
3315{
3316 struct bnad *bnad = netdev_priv(netdev);
3317 unsigned long flags;
3318
3319 if (!bnad->rx_info[0].rx)
3320 return 0;
3321
3322 mutex_lock(&bnad->conf_mutex);
3323
3324 spin_lock_irqsave(&bnad->bna_lock, flags);
3325 bna_rx_vlan_add(bnad->rx_info[0].rx, vid);
3326 set_bit(vid, bnad->active_vlans);
3327 spin_unlock_irqrestore(&bnad->bna_lock, flags);
3328
3329 mutex_unlock(&bnad->conf_mutex);
3330
3331 return 0;
3332}
3333
3334static int
3335bnad_vlan_rx_kill_vid(struct net_device *netdev, __be16 proto, u16 vid)
3336{
3337 struct bnad *bnad = netdev_priv(netdev);
3338 unsigned long flags;
3339
3340 if (!bnad->rx_info[0].rx)
3341 return 0;
3342
3343 mutex_lock(&bnad->conf_mutex);
3344
3345 spin_lock_irqsave(&bnad->bna_lock, flags);
3346 clear_bit(vid, bnad->active_vlans);
3347 bna_rx_vlan_del(bnad->rx_info[0].rx, vid);
3348 spin_unlock_irqrestore(&bnad->bna_lock, flags);
3349
3350 mutex_unlock(&bnad->conf_mutex);
3351
3352 return 0;
3353}
3354
3355static int bnad_set_features(struct net_device *dev, netdev_features_t features)
3356{
3357 struct bnad *bnad = netdev_priv(dev);
3358 netdev_features_t changed = features ^ dev->features;
3359
3360 if ((changed & NETIF_F_HW_VLAN_CTAG_RX) && netif_running(dev)) {
3361 unsigned long flags;
3362
3363 spin_lock_irqsave(&bnad->bna_lock, flags);
3364
3365 if (features & NETIF_F_HW_VLAN_CTAG_RX)
3366 bna_rx_vlan_strip_enable(bnad->rx_info[0].rx);
3367 else
3368 bna_rx_vlan_strip_disable(bnad->rx_info[0].rx);
3369
3370 spin_unlock_irqrestore(&bnad->bna_lock, flags);
3371 }
3372
3373 return 0;
3374}
3375
3376#ifdef CONFIG_NET_POLL_CONTROLLER
3377static void
3378bnad_netpoll(struct net_device *netdev)
3379{
3380 struct bnad *bnad = netdev_priv(netdev);
3381 struct bnad_rx_info *rx_info;
3382 struct bnad_rx_ctrl *rx_ctrl;
3383 u32 curr_mask;
3384 int i, j;
3385
3386 if (!(bnad->cfg_flags & BNAD_CF_MSIX)) {
3387 bna_intx_disable(&bnad->bna, curr_mask);
3388 bnad_isr(bnad->pcidev->irq, netdev);
3389 bna_intx_enable(&bnad->bna, curr_mask);
3390 } else {
3391 /*
3392 * Tx processing may happen in sending context, so no need
3393 * to explicitly process completions here
3394 */
3395
3396 /* Rx processing */
3397 for (i = 0; i < bnad->num_rx; i++) {
3398 rx_info = &bnad->rx_info[i];
3399 if (!rx_info->rx)
3400 continue;
3401 for (j = 0; j < bnad->num_rxp_per_rx; j++) {
3402 rx_ctrl = &rx_info->rx_ctrl[j];
3403 if (rx_ctrl->ccb)
3404 bnad_netif_rx_schedule_poll(bnad,
3405 rx_ctrl->ccb);
3406 }
3407 }
3408 }
3409}
3410#endif
3411
3412static const struct net_device_ops bnad_netdev_ops = {
3413 .ndo_open = bnad_open,
3414 .ndo_stop = bnad_stop,
3415 .ndo_start_xmit = bnad_start_xmit,
3416 .ndo_get_stats64 = bnad_get_stats64,
3417 .ndo_set_rx_mode = bnad_set_rx_mode,
3418 .ndo_validate_addr = eth_validate_addr,
3419 .ndo_set_mac_address = bnad_set_mac_address,
3420 .ndo_change_mtu = bnad_change_mtu,
3421 .ndo_vlan_rx_add_vid = bnad_vlan_rx_add_vid,
3422 .ndo_vlan_rx_kill_vid = bnad_vlan_rx_kill_vid,
3423 .ndo_set_features = bnad_set_features,
3424#ifdef CONFIG_NET_POLL_CONTROLLER
3425 .ndo_poll_controller = bnad_netpoll
3426#endif
3427};
3428
3429static void
3430bnad_netdev_init(struct bnad *bnad, bool using_dac)
3431{
3432 struct net_device *netdev = bnad->netdev;
3433
3434 netdev->hw_features = NETIF_F_SG | NETIF_F_RXCSUM |
3435 NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM |
3436 NETIF_F_TSO | NETIF_F_TSO6 | NETIF_F_HW_VLAN_CTAG_TX |
3437 NETIF_F_HW_VLAN_CTAG_RX;
3438
3439 netdev->vlan_features = NETIF_F_SG | NETIF_F_HIGHDMA |
3440 NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM |
3441 NETIF_F_TSO | NETIF_F_TSO6;
3442
3443 netdev->features |= netdev->hw_features | NETIF_F_HW_VLAN_CTAG_FILTER;
3444
3445 if (using_dac)
3446 netdev->features |= NETIF_F_HIGHDMA;
3447
3448 netdev->mem_start = bnad->mmio_start;
3449 netdev->mem_end = bnad->mmio_start + bnad->mmio_len - 1;
3450
3451 /* MTU range: 46 - 9000 */
3452 netdev->min_mtu = ETH_ZLEN - ETH_HLEN;
3453 netdev->max_mtu = BNAD_JUMBO_MTU;
3454
3455 netdev->netdev_ops = &bnad_netdev_ops;
3456 bnad_set_ethtool_ops(netdev);
3457}
3458
3459/*
3460 * 1. Initialize the bnad structure
3461 * 2. Setup netdev pointer in pci_dev
3462 * 3. Initialize no. of TxQ & CQs & MSIX vectors
3463 * 4. Initialize work queue.
3464 */
3465static int
3466bnad_init(struct bnad *bnad,
3467 struct pci_dev *pdev, struct net_device *netdev)
3468{
3469 unsigned long flags;
3470
3471 SET_NETDEV_DEV(netdev, &pdev->dev);
3472 pci_set_drvdata(pdev, netdev);
3473
3474 bnad->netdev = netdev;
3475 bnad->pcidev = pdev;
3476 bnad->mmio_start = pci_resource_start(pdev, 0);
3477 bnad->mmio_len = pci_resource_len(pdev, 0);
3478 bnad->bar0 = ioremap_nocache(bnad->mmio_start, bnad->mmio_len);
3479 if (!bnad->bar0) {
3480 dev_err(&pdev->dev, "ioremap for bar0 failed\n");
3481 return -ENOMEM;
3482 }
3483 dev_info(&pdev->dev, "bar0 mapped to %p, len %llu\n", bnad->bar0,
3484 (unsigned long long) bnad->mmio_len);
3485
3486 spin_lock_irqsave(&bnad->bna_lock, flags);
3487 if (!bnad_msix_disable)
3488 bnad->cfg_flags = BNAD_CF_MSIX;
3489
3490 bnad->cfg_flags |= BNAD_CF_DIM_ENABLED;
3491
3492 bnad_q_num_init(bnad);
3493 spin_unlock_irqrestore(&bnad->bna_lock, flags);
3494
3495 bnad->msix_num = (bnad->num_tx * bnad->num_txq_per_tx) +
3496 (bnad->num_rx * bnad->num_rxp_per_rx) +
3497 BNAD_MAILBOX_MSIX_VECTORS;
3498
3499 bnad->txq_depth = BNAD_TXQ_DEPTH;
3500 bnad->rxq_depth = BNAD_RXQ_DEPTH;
3501
3502 bnad->tx_coalescing_timeo = BFI_TX_COALESCING_TIMEO;
3503 bnad->rx_coalescing_timeo = BFI_RX_COALESCING_TIMEO;
3504
3505 sprintf(bnad->wq_name, "%s_wq_%d", BNAD_NAME, bnad->id);
3506 bnad->work_q = create_singlethread_workqueue(bnad->wq_name);
3507 if (!bnad->work_q) {
3508 iounmap(bnad->bar0);
3509 return -ENOMEM;
3510 }
3511
3512 return 0;
3513}
3514
3515/*
3516 * Must be called after bnad_pci_uninit()
3517 * so that iounmap() and pci_set_drvdata(NULL)
3518 * happens only after PCI uninitialization.
3519 */
3520static void
3521bnad_uninit(struct bnad *bnad)
3522{
3523 if (bnad->work_q) {
3524 flush_workqueue(bnad->work_q);
3525 destroy_workqueue(bnad->work_q);
3526 bnad->work_q = NULL;
3527 }
3528
3529 if (bnad->bar0)
3530 iounmap(bnad->bar0);
3531}
3532
3533/*
3534 * Initialize locks
3535 a) Per ioceth mutes used for serializing configuration
3536 changes from OS interface
3537 b) spin lock used to protect bna state machine
3538 */
3539static void
3540bnad_lock_init(struct bnad *bnad)
3541{
3542 spin_lock_init(&bnad->bna_lock);
3543 mutex_init(&bnad->conf_mutex);
3544}
3545
3546static void
3547bnad_lock_uninit(struct bnad *bnad)
3548{
3549 mutex_destroy(&bnad->conf_mutex);
3550}
3551
3552/* PCI Initialization */
3553static int
3554bnad_pci_init(struct bnad *bnad,
3555 struct pci_dev *pdev, bool *using_dac)
3556{
3557 int err;
3558
3559 err = pci_enable_device(pdev);
3560 if (err)
3561 return err;
3562 err = pci_request_regions(pdev, BNAD_NAME);
3563 if (err)
3564 goto disable_device;
3565 if (!dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64))) {
3566 *using_dac = true;
3567 } else {
3568 err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
3569 if (err)
3570 goto release_regions;
3571 *using_dac = false;
3572 }
3573 pci_set_master(pdev);
3574 return 0;
3575
3576release_regions:
3577 pci_release_regions(pdev);
3578disable_device:
3579 pci_disable_device(pdev);
3580
3581 return err;
3582}
3583
3584static void
3585bnad_pci_uninit(struct pci_dev *pdev)
3586{
3587 pci_release_regions(pdev);
3588 pci_disable_device(pdev);
3589}
3590
3591static int
3592bnad_pci_probe(struct pci_dev *pdev,
3593 const struct pci_device_id *pcidev_id)
3594{
3595 bool using_dac;
3596 int err;
3597 struct bnad *bnad;
3598 struct bna *bna;
3599 struct net_device *netdev;
3600 struct bfa_pcidev pcidev_info;
3601 unsigned long flags;
3602
3603 mutex_lock(&bnad_fwimg_mutex);
3604 if (!cna_get_firmware_buf(pdev)) {
3605 mutex_unlock(&bnad_fwimg_mutex);
3606 dev_err(&pdev->dev, "failed to load firmware image!\n");
3607 return -ENODEV;
3608 }
3609 mutex_unlock(&bnad_fwimg_mutex);
3610
3611 /*
3612 * Allocates sizeof(struct net_device + struct bnad)
3613 * bnad = netdev->priv
3614 */
3615 netdev = alloc_etherdev(sizeof(struct bnad));
3616 if (!netdev) {
3617 err = -ENOMEM;
3618 return err;
3619 }
3620 bnad = netdev_priv(netdev);
3621 bnad_lock_init(bnad);
3622 bnad->id = atomic_inc_return(&bna_id) - 1;
3623
3624 mutex_lock(&bnad->conf_mutex);
3625 /*
3626 * PCI initialization
3627 * Output : using_dac = 1 for 64 bit DMA
3628 * = 0 for 32 bit DMA
3629 */
3630 using_dac = false;
3631 err = bnad_pci_init(bnad, pdev, &using_dac);
3632 if (err)
3633 goto unlock_mutex;
3634
3635 /*
3636 * Initialize bnad structure
3637 * Setup relation between pci_dev & netdev
3638 */
3639 err = bnad_init(bnad, pdev, netdev);
3640 if (err)
3641 goto pci_uninit;
3642
3643 /* Initialize netdev structure, set up ethtool ops */
3644 bnad_netdev_init(bnad, using_dac);
3645
3646 /* Set link to down state */
3647 netif_carrier_off(netdev);
3648
3649 /* Setup the debugfs node for this bfad */
3650 if (bna_debugfs_enable)
3651 bnad_debugfs_init(bnad);
3652
3653 /* Get resource requirement form bna */
3654 spin_lock_irqsave(&bnad->bna_lock, flags);
3655 bna_res_req(&bnad->res_info[0]);
3656 spin_unlock_irqrestore(&bnad->bna_lock, flags);
3657
3658 /* Allocate resources from bna */
3659 err = bnad_res_alloc(bnad, &bnad->res_info[0], BNA_RES_T_MAX);
3660 if (err)
3661 goto drv_uninit;
3662
3663 bna = &bnad->bna;
3664
3665 /* Setup pcidev_info for bna_init() */
3666 pcidev_info.pci_slot = PCI_SLOT(bnad->pcidev->devfn);
3667 pcidev_info.pci_func = PCI_FUNC(bnad->pcidev->devfn);
3668 pcidev_info.device_id = bnad->pcidev->device;
3669 pcidev_info.pci_bar_kva = bnad->bar0;
3670
3671 spin_lock_irqsave(&bnad->bna_lock, flags);
3672 bna_init(bna, bnad, &pcidev_info, &bnad->res_info[0]);
3673 spin_unlock_irqrestore(&bnad->bna_lock, flags);
3674
3675 bnad->stats.bna_stats = &bna->stats;
3676
3677 bnad_enable_msix(bnad);
3678 err = bnad_mbox_irq_alloc(bnad);
3679 if (err)
3680 goto res_free;
3681
3682 /* Set up timers */
3683 timer_setup(&bnad->bna.ioceth.ioc.ioc_timer, bnad_ioc_timeout, 0);
3684 timer_setup(&bnad->bna.ioceth.ioc.hb_timer, bnad_ioc_hb_check, 0);
3685 timer_setup(&bnad->bna.ioceth.ioc.iocpf_timer, bnad_iocpf_timeout, 0);
3686 timer_setup(&bnad->bna.ioceth.ioc.sem_timer, bnad_iocpf_sem_timeout,
3687 0);
3688
3689 /*
3690 * Start the chip
3691 * If the call back comes with error, we bail out.
3692 * This is a catastrophic error.
3693 */
3694 err = bnad_ioceth_enable(bnad);
3695 if (err) {
3696 dev_err(&pdev->dev, "initialization failed err=%d\n", err);
3697 goto probe_success;
3698 }
3699
3700 spin_lock_irqsave(&bnad->bna_lock, flags);
3701 if (bna_num_txq_set(bna, BNAD_NUM_TXQ + 1) ||
3702 bna_num_rxp_set(bna, BNAD_NUM_RXP + 1)) {
3703 bnad_q_num_adjust(bnad, bna_attr(bna)->num_txq - 1,
3704 bna_attr(bna)->num_rxp - 1);
3705 if (bna_num_txq_set(bna, BNAD_NUM_TXQ + 1) ||
3706 bna_num_rxp_set(bna, BNAD_NUM_RXP + 1))
3707 err = -EIO;
3708 }
3709 spin_unlock_irqrestore(&bnad->bna_lock, flags);
3710 if (err)
3711 goto disable_ioceth;
3712
3713 spin_lock_irqsave(&bnad->bna_lock, flags);
3714 bna_mod_res_req(&bnad->bna, &bnad->mod_res_info[0]);
3715 spin_unlock_irqrestore(&bnad->bna_lock, flags);
3716
3717 err = bnad_res_alloc(bnad, &bnad->mod_res_info[0], BNA_MOD_RES_T_MAX);
3718 if (err) {
3719 err = -EIO;
3720 goto disable_ioceth;
3721 }
3722
3723 spin_lock_irqsave(&bnad->bna_lock, flags);
3724 bna_mod_init(&bnad->bna, &bnad->mod_res_info[0]);
3725 spin_unlock_irqrestore(&bnad->bna_lock, flags);
3726
3727 /* Get the burnt-in mac */
3728 spin_lock_irqsave(&bnad->bna_lock, flags);
3729 bna_enet_perm_mac_get(&bna->enet, bnad->perm_addr);
3730 bnad_set_netdev_perm_addr(bnad);
3731 spin_unlock_irqrestore(&bnad->bna_lock, flags);
3732
3733 mutex_unlock(&bnad->conf_mutex);
3734
3735 /* Finally, reguister with net_device layer */
3736 err = register_netdev(netdev);
3737 if (err) {
3738 dev_err(&pdev->dev, "registering net device failed\n");
3739 goto probe_uninit;
3740 }
3741 set_bit(BNAD_RF_NETDEV_REGISTERED, &bnad->run_flags);
3742
3743 return 0;
3744
3745probe_success:
3746 mutex_unlock(&bnad->conf_mutex);
3747 return 0;
3748
3749probe_uninit:
3750 mutex_lock(&bnad->conf_mutex);
3751 bnad_res_free(bnad, &bnad->mod_res_info[0], BNA_MOD_RES_T_MAX);
3752disable_ioceth:
3753 bnad_ioceth_disable(bnad);
3754 del_timer_sync(&bnad->bna.ioceth.ioc.ioc_timer);
3755 del_timer_sync(&bnad->bna.ioceth.ioc.sem_timer);
3756 del_timer_sync(&bnad->bna.ioceth.ioc.hb_timer);
3757 spin_lock_irqsave(&bnad->bna_lock, flags);
3758 bna_uninit(bna);
3759 spin_unlock_irqrestore(&bnad->bna_lock, flags);
3760 bnad_mbox_irq_free(bnad);
3761 bnad_disable_msix(bnad);
3762res_free:
3763 bnad_res_free(bnad, &bnad->res_info[0], BNA_RES_T_MAX);
3764drv_uninit:
3765 /* Remove the debugfs node for this bnad */
3766 kfree(bnad->regdata);
3767 bnad_debugfs_uninit(bnad);
3768 bnad_uninit(bnad);
3769pci_uninit:
3770 bnad_pci_uninit(pdev);
3771unlock_mutex:
3772 mutex_unlock(&bnad->conf_mutex);
3773 bnad_lock_uninit(bnad);
3774 free_netdev(netdev);
3775 return err;
3776}
3777
3778static void
3779bnad_pci_remove(struct pci_dev *pdev)
3780{
3781 struct net_device *netdev = pci_get_drvdata(pdev);
3782 struct bnad *bnad;
3783 struct bna *bna;
3784 unsigned long flags;
3785
3786 if (!netdev)
3787 return;
3788
3789 bnad = netdev_priv(netdev);
3790 bna = &bnad->bna;
3791
3792 if (test_and_clear_bit(BNAD_RF_NETDEV_REGISTERED, &bnad->run_flags))
3793 unregister_netdev(netdev);
3794
3795 mutex_lock(&bnad->conf_mutex);
3796 bnad_ioceth_disable(bnad);
3797 del_timer_sync(&bnad->bna.ioceth.ioc.ioc_timer);
3798 del_timer_sync(&bnad->bna.ioceth.ioc.sem_timer);
3799 del_timer_sync(&bnad->bna.ioceth.ioc.hb_timer);
3800 spin_lock_irqsave(&bnad->bna_lock, flags);
3801 bna_uninit(bna);
3802 spin_unlock_irqrestore(&bnad->bna_lock, flags);
3803
3804 bnad_res_free(bnad, &bnad->mod_res_info[0], BNA_MOD_RES_T_MAX);
3805 bnad_res_free(bnad, &bnad->res_info[0], BNA_RES_T_MAX);
3806 bnad_mbox_irq_free(bnad);
3807 bnad_disable_msix(bnad);
3808 bnad_pci_uninit(pdev);
3809 mutex_unlock(&bnad->conf_mutex);
3810 bnad_lock_uninit(bnad);
3811 /* Remove the debugfs node for this bnad */
3812 kfree(bnad->regdata);
3813 bnad_debugfs_uninit(bnad);
3814 bnad_uninit(bnad);
3815 free_netdev(netdev);
3816}
3817
3818static const struct pci_device_id bnad_pci_id_table[] = {
3819 {
3820 PCI_DEVICE(PCI_VENDOR_ID_BROCADE,
3821 PCI_DEVICE_ID_BROCADE_CT),
3822 .class = PCI_CLASS_NETWORK_ETHERNET << 8,
3823 .class_mask = 0xffff00
3824 },
3825 {
3826 PCI_DEVICE(PCI_VENDOR_ID_BROCADE,
3827 BFA_PCI_DEVICE_ID_CT2),
3828 .class = PCI_CLASS_NETWORK_ETHERNET << 8,
3829 .class_mask = 0xffff00
3830 },
3831 {0, },
3832};
3833
3834MODULE_DEVICE_TABLE(pci, bnad_pci_id_table);
3835
3836static struct pci_driver bnad_pci_driver = {
3837 .name = BNAD_NAME,
3838 .id_table = bnad_pci_id_table,
3839 .probe = bnad_pci_probe,
3840 .remove = bnad_pci_remove,
3841};
3842
3843static int __init
3844bnad_module_init(void)
3845{
3846 int err;
3847
3848 pr_info("bna: QLogic BR-series 10G Ethernet driver - version: %s\n",
3849 BNAD_VERSION);
3850
3851 bfa_nw_ioc_auto_recover(bnad_ioc_auto_recover);
3852
3853 err = pci_register_driver(&bnad_pci_driver);
3854 if (err < 0) {
3855 pr_err("bna: PCI driver registration failed err=%d\n", err);
3856 return err;
3857 }
3858
3859 return 0;
3860}
3861
3862static void __exit
3863bnad_module_exit(void)
3864{
3865 pci_unregister_driver(&bnad_pci_driver);
3866 release_firmware(bfi_fw);
3867}
3868
3869module_init(bnad_module_init);
3870module_exit(bnad_module_exit);
3871
3872MODULE_AUTHOR("Brocade");
3873MODULE_LICENSE("GPL");
3874MODULE_DESCRIPTION("QLogic BR-series 10G PCIe Ethernet driver");
3875MODULE_VERSION(BNAD_VERSION);
3876MODULE_FIRMWARE(CNA_FW_FILE_CT);
3877MODULE_FIRMWARE(CNA_FW_FILE_CT2);