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