diff options
author | Glenn Elliott <gelliott@cs.unc.edu> | 2012-03-04 19:47:13 -0500 |
---|---|---|
committer | Glenn Elliott <gelliott@cs.unc.edu> | 2012-03-04 19:47:13 -0500 |
commit | c71c03bda1e86c9d5198c5d83f712e695c4f2a1e (patch) | |
tree | ecb166cb3e2b7e2adb3b5e292245fefd23381ac8 /drivers/net/bnx2x/bnx2x_cmn.c | |
parent | ea53c912f8a86a8567697115b6a0d8152beee5c8 (diff) | |
parent | 6a00f206debf8a5c8899055726ad127dbeeed098 (diff) |
Merge branch 'mpi-master' into wip-k-fmlpwip-k-fmlp
Conflicts:
litmus/sched_cedf.c
Diffstat (limited to 'drivers/net/bnx2x/bnx2x_cmn.c')
-rw-r--r-- | drivers/net/bnx2x/bnx2x_cmn.c | 1762 |
1 files changed, 1233 insertions, 529 deletions
diff --git a/drivers/net/bnx2x/bnx2x_cmn.c b/drivers/net/bnx2x/bnx2x_cmn.c index 02bf710629a3..289044332ed8 100644 --- a/drivers/net/bnx2x/bnx2x_cmn.c +++ b/drivers/net/bnx2x/bnx2x_cmn.c | |||
@@ -1,6 +1,6 @@ | |||
1 | /* bnx2x_cmn.c: Broadcom Everest network driver. | 1 | /* bnx2x_cmn.c: Broadcom Everest network driver. |
2 | * | 2 | * |
3 | * Copyright (c) 2007-2010 Broadcom Corporation | 3 | * Copyright (c) 2007-2011 Broadcom Corporation |
4 | * | 4 | * |
5 | * This program is free software; you can redistribute it and/or modify | 5 | * This program is free software; you can redistribute it and/or modify |
6 | * it under the terms of the GNU General Public License as published by | 6 | * it under the terms of the GNU General Public License as published by |
@@ -15,18 +15,61 @@ | |||
15 | * | 15 | * |
16 | */ | 16 | */ |
17 | 17 | ||
18 | |||
19 | #include <linux/etherdevice.h> | 18 | #include <linux/etherdevice.h> |
19 | #include <linux/if_vlan.h> | ||
20 | #include <linux/ip.h> | 20 | #include <linux/ip.h> |
21 | #include <linux/ipv6.h> | 21 | #include <net/ipv6.h> |
22 | #include <net/ip6_checksum.h> | 22 | #include <net/ip6_checksum.h> |
23 | #include <linux/firmware.h> | ||
24 | #include <linux/prefetch.h> | ||
23 | #include "bnx2x_cmn.h" | 25 | #include "bnx2x_cmn.h" |
24 | 26 | ||
25 | #ifdef BCM_VLAN | 27 | #include "bnx2x_init.h" |
26 | #include <linux/if_vlan.h> | 28 | |
27 | #endif | 29 | static int bnx2x_setup_irqs(struct bnx2x *bp); |
30 | |||
31 | /** | ||
32 | * bnx2x_bz_fp - zero content of the fastpath structure. | ||
33 | * | ||
34 | * @bp: driver handle | ||
35 | * @index: fastpath index to be zeroed | ||
36 | * | ||
37 | * Makes sure the contents of the bp->fp[index].napi is kept | ||
38 | * intact. | ||
39 | */ | ||
40 | static inline void bnx2x_bz_fp(struct bnx2x *bp, int index) | ||
41 | { | ||
42 | struct bnx2x_fastpath *fp = &bp->fp[index]; | ||
43 | struct napi_struct orig_napi = fp->napi; | ||
44 | /* bzero bnx2x_fastpath contents */ | ||
45 | memset(fp, 0, sizeof(*fp)); | ||
28 | 46 | ||
29 | static int bnx2x_poll(struct napi_struct *napi, int budget); | 47 | /* Restore the NAPI object as it has been already initialized */ |
48 | fp->napi = orig_napi; | ||
49 | } | ||
50 | |||
51 | /** | ||
52 | * bnx2x_move_fp - move content of the fastpath structure. | ||
53 | * | ||
54 | * @bp: driver handle | ||
55 | * @from: source FP index | ||
56 | * @to: destination FP index | ||
57 | * | ||
58 | * Makes sure the contents of the bp->fp[to].napi is kept | ||
59 | * intact. | ||
60 | */ | ||
61 | static inline void bnx2x_move_fp(struct bnx2x *bp, int from, int to) | ||
62 | { | ||
63 | struct bnx2x_fastpath *from_fp = &bp->fp[from]; | ||
64 | struct bnx2x_fastpath *to_fp = &bp->fp[to]; | ||
65 | struct napi_struct orig_napi = to_fp->napi; | ||
66 | /* Move bnx2x_fastpath contents */ | ||
67 | memcpy(to_fp, from_fp, sizeof(*to_fp)); | ||
68 | to_fp->index = to; | ||
69 | |||
70 | /* Restore the NAPI object as it has been already initialized */ | ||
71 | to_fp->napi = orig_napi; | ||
72 | } | ||
30 | 73 | ||
31 | /* free skb in the packet ring at pos idx | 74 | /* free skb in the packet ring at pos idx |
32 | * return idx of last bd freed | 75 | * return idx of last bd freed |
@@ -51,7 +94,7 @@ static u16 bnx2x_free_tx_pkt(struct bnx2x *bp, struct bnx2x_fastpath *fp, | |||
51 | DP(BNX2X_MSG_OFF, "free bd_idx %d\n", bd_idx); | 94 | DP(BNX2X_MSG_OFF, "free bd_idx %d\n", bd_idx); |
52 | tx_start_bd = &fp->tx_desc_ring[bd_idx].start_bd; | 95 | tx_start_bd = &fp->tx_desc_ring[bd_idx].start_bd; |
53 | dma_unmap_single(&bp->pdev->dev, BD_UNMAP_ADDR(tx_start_bd), | 96 | dma_unmap_single(&bp->pdev->dev, BD_UNMAP_ADDR(tx_start_bd), |
54 | BD_UNMAP_LEN(tx_start_bd), PCI_DMA_TODEVICE); | 97 | BD_UNMAP_LEN(tx_start_bd), DMA_TO_DEVICE); |
55 | 98 | ||
56 | nbd = le16_to_cpu(tx_start_bd->nbd) - 1; | 99 | nbd = le16_to_cpu(tx_start_bd->nbd) - 1; |
57 | #ifdef BNX2X_STOP_ON_ERROR | 100 | #ifdef BNX2X_STOP_ON_ERROR |
@@ -88,7 +131,7 @@ static u16 bnx2x_free_tx_pkt(struct bnx2x *bp, struct bnx2x_fastpath *fp, | |||
88 | 131 | ||
89 | /* release skb */ | 132 | /* release skb */ |
90 | WARN_ON(!skb); | 133 | WARN_ON(!skb); |
91 | dev_kfree_skb(skb); | 134 | dev_kfree_skb_any(skb); |
92 | tx_buf->first_bd = 0; | 135 | tx_buf->first_bd = 0; |
93 | tx_buf->skb = NULL; | 136 | tx_buf->skb = NULL; |
94 | 137 | ||
@@ -115,16 +158,10 @@ int bnx2x_tx_int(struct bnx2x_fastpath *fp) | |||
115 | 158 | ||
116 | pkt_cons = TX_BD(sw_cons); | 159 | pkt_cons = TX_BD(sw_cons); |
117 | 160 | ||
118 | /* prefetch(bp->tx_buf_ring[pkt_cons].skb); */ | 161 | DP(NETIF_MSG_TX_DONE, "queue[%d]: hw_cons %u sw_cons %u " |
119 | 162 | " pkt_cons %u\n", | |
120 | DP(NETIF_MSG_TX_DONE, "hw_cons %u sw_cons %u pkt_cons %u\n", | 163 | fp->index, hw_cons, sw_cons, pkt_cons); |
121 | hw_cons, sw_cons, pkt_cons); | ||
122 | 164 | ||
123 | /* if (NEXT_TX_IDX(sw_cons) != hw_cons) { | ||
124 | rmb(); | ||
125 | prefetch(fp->tx_buf_ring[NEXT_TX_IDX(sw_cons)].skb); | ||
126 | } | ||
127 | */ | ||
128 | bd_cons = bnx2x_free_tx_pkt(bp, fp, pkt_cons); | 165 | bd_cons = bnx2x_free_tx_pkt(bp, fp, pkt_cons); |
129 | sw_cons++; | 166 | sw_cons++; |
130 | } | 167 | } |
@@ -140,7 +177,6 @@ int bnx2x_tx_int(struct bnx2x_fastpath *fp) | |||
140 | */ | 177 | */ |
141 | smp_mb(); | 178 | smp_mb(); |
142 | 179 | ||
143 | /* TBD need a thresh? */ | ||
144 | if (unlikely(netif_tx_queue_stopped(txq))) { | 180 | if (unlikely(netif_tx_queue_stopped(txq))) { |
145 | /* Taking tx_lock() is needed to prevent reenabling the queue | 181 | /* Taking tx_lock() is needed to prevent reenabling the queue |
146 | * while it's empty. This could have happen if rx_action() gets | 182 | * while it's empty. This could have happen if rx_action() gets |
@@ -189,14 +225,16 @@ static void bnx2x_update_sge_prod(struct bnx2x_fastpath *fp, | |||
189 | 225 | ||
190 | /* First mark all used pages */ | 226 | /* First mark all used pages */ |
191 | for (i = 0; i < sge_len; i++) | 227 | for (i = 0; i < sge_len; i++) |
192 | SGE_MASK_CLEAR_BIT(fp, RX_SGE(le16_to_cpu(fp_cqe->sgl[i]))); | 228 | SGE_MASK_CLEAR_BIT(fp, |
229 | RX_SGE(le16_to_cpu(fp_cqe->sgl_or_raw_data.sgl[i]))); | ||
193 | 230 | ||
194 | DP(NETIF_MSG_RX_STATUS, "fp_cqe->sgl[%d] = %d\n", | 231 | DP(NETIF_MSG_RX_STATUS, "fp_cqe->sgl[%d] = %d\n", |
195 | sge_len - 1, le16_to_cpu(fp_cqe->sgl[sge_len - 1])); | 232 | sge_len - 1, le16_to_cpu(fp_cqe->sgl_or_raw_data.sgl[sge_len - 1])); |
196 | 233 | ||
197 | /* Here we assume that the last SGE index is the biggest */ | 234 | /* Here we assume that the last SGE index is the biggest */ |
198 | prefetch((void *)(fp->sge_mask)); | 235 | prefetch((void *)(fp->sge_mask)); |
199 | bnx2x_update_last_max_sge(fp, le16_to_cpu(fp_cqe->sgl[sge_len - 1])); | 236 | bnx2x_update_last_max_sge(fp, |
237 | le16_to_cpu(fp_cqe->sgl_or_raw_data.sgl[sge_len - 1])); | ||
200 | 238 | ||
201 | last_max = RX_SGE(fp->last_max_sge); | 239 | last_max = RX_SGE(fp->last_max_sge); |
202 | last_elem = last_max >> RX_SGE_MASK_ELEM_SHIFT; | 240 | last_elem = last_max >> RX_SGE_MASK_ELEM_SHIFT; |
@@ -238,7 +276,7 @@ static void bnx2x_tpa_start(struct bnx2x_fastpath *fp, u16 queue, | |||
238 | /* move empty skb from pool to prod and map it */ | 276 | /* move empty skb from pool to prod and map it */ |
239 | prod_rx_buf->skb = fp->tpa_pool[queue].skb; | 277 | prod_rx_buf->skb = fp->tpa_pool[queue].skb; |
240 | mapping = dma_map_single(&bp->pdev->dev, fp->tpa_pool[queue].skb->data, | 278 | mapping = dma_map_single(&bp->pdev->dev, fp->tpa_pool[queue].skb->data, |
241 | bp->rx_buf_size, DMA_FROM_DEVICE); | 279 | fp->rx_buf_size, DMA_FROM_DEVICE); |
242 | dma_unmap_addr_set(prod_rx_buf, mapping, mapping); | 280 | dma_unmap_addr_set(prod_rx_buf, mapping, mapping); |
243 | 281 | ||
244 | /* move partial skb from cons to pool (don't unmap yet) */ | 282 | /* move partial skb from cons to pool (don't unmap yet) */ |
@@ -265,10 +303,46 @@ static void bnx2x_tpa_start(struct bnx2x_fastpath *fp, u16 queue, | |||
265 | #endif | 303 | #endif |
266 | } | 304 | } |
267 | 305 | ||
306 | /* Timestamp option length allowed for TPA aggregation: | ||
307 | * | ||
308 | * nop nop kind length echo val | ||
309 | */ | ||
310 | #define TPA_TSTAMP_OPT_LEN 12 | ||
311 | /** | ||
312 | * bnx2x_set_lro_mss - calculate the approximate value of the MSS | ||
313 | * | ||
314 | * @bp: driver handle | ||
315 | * @parsing_flags: parsing flags from the START CQE | ||
316 | * @len_on_bd: total length of the first packet for the | ||
317 | * aggregation. | ||
318 | * | ||
319 | * Approximate value of the MSS for this aggregation calculated using | ||
320 | * the first packet of it. | ||
321 | */ | ||
322 | static inline u16 bnx2x_set_lro_mss(struct bnx2x *bp, u16 parsing_flags, | ||
323 | u16 len_on_bd) | ||
324 | { | ||
325 | /* TPA arrgregation won't have an IP options and TCP options | ||
326 | * other than timestamp. | ||
327 | */ | ||
328 | u16 hdrs_len = ETH_HLEN + sizeof(struct iphdr) + sizeof(struct tcphdr); | ||
329 | |||
330 | |||
331 | /* Check if there was a TCP timestamp, if there is it's will | ||
332 | * always be 12 bytes length: nop nop kind length echo val. | ||
333 | * | ||
334 | * Otherwise FW would close the aggregation. | ||
335 | */ | ||
336 | if (parsing_flags & PARSING_FLAGS_TIME_STAMP_EXIST_FLAG) | ||
337 | hdrs_len += TPA_TSTAMP_OPT_LEN; | ||
338 | |||
339 | return len_on_bd - hdrs_len; | ||
340 | } | ||
341 | |||
268 | static int bnx2x_fill_frag_skb(struct bnx2x *bp, struct bnx2x_fastpath *fp, | 342 | static int bnx2x_fill_frag_skb(struct bnx2x *bp, struct bnx2x_fastpath *fp, |
269 | struct sk_buff *skb, | 343 | struct sk_buff *skb, |
270 | struct eth_fast_path_rx_cqe *fp_cqe, | 344 | struct eth_fast_path_rx_cqe *fp_cqe, |
271 | u16 cqe_idx) | 345 | u16 cqe_idx, u16 parsing_flags) |
272 | { | 346 | { |
273 | struct sw_rx_page *rx_pg, old_rx_pg; | 347 | struct sw_rx_page *rx_pg, old_rx_pg; |
274 | u16 len_on_bd = le16_to_cpu(fp_cqe->len_on_bd); | 348 | u16 len_on_bd = le16_to_cpu(fp_cqe->len_on_bd); |
@@ -281,8 +355,8 @@ static int bnx2x_fill_frag_skb(struct bnx2x *bp, struct bnx2x_fastpath *fp, | |||
281 | 355 | ||
282 | /* This is needed in order to enable forwarding support */ | 356 | /* This is needed in order to enable forwarding support */ |
283 | if (frag_size) | 357 | if (frag_size) |
284 | skb_shinfo(skb)->gso_size = min((u32)SGE_PAGE_SIZE, | 358 | skb_shinfo(skb)->gso_size = bnx2x_set_lro_mss(bp, parsing_flags, |
285 | max(frag_size, (u32)len_on_bd)); | 359 | len_on_bd); |
286 | 360 | ||
287 | #ifdef BNX2X_STOP_ON_ERROR | 361 | #ifdef BNX2X_STOP_ON_ERROR |
288 | if (pages > min_t(u32, 8, MAX_SKB_FRAGS)*SGE_PAGE_SIZE*PAGES_PER_SGE) { | 362 | if (pages > min_t(u32, 8, MAX_SKB_FRAGS)*SGE_PAGE_SIZE*PAGES_PER_SGE) { |
@@ -297,7 +371,8 @@ static int bnx2x_fill_frag_skb(struct bnx2x *bp, struct bnx2x_fastpath *fp, | |||
297 | 371 | ||
298 | /* Run through the SGL and compose the fragmented skb */ | 372 | /* Run through the SGL and compose the fragmented skb */ |
299 | for (i = 0, j = 0; i < pages; i += PAGES_PER_SGE, j++) { | 373 | for (i = 0, j = 0; i < pages; i += PAGES_PER_SGE, j++) { |
300 | u16 sge_idx = RX_SGE(le16_to_cpu(fp_cqe->sgl[j])); | 374 | u16 sge_idx = |
375 | RX_SGE(le16_to_cpu(fp_cqe->sgl_or_raw_data.sgl[j])); | ||
301 | 376 | ||
302 | /* FW gives the indices of the SGE as if the ring is an array | 377 | /* FW gives the indices of the SGE as if the ring is an array |
303 | (meaning that "next" element will consume 2 indices) */ | 378 | (meaning that "next" element will consume 2 indices) */ |
@@ -338,33 +413,28 @@ static void bnx2x_tpa_stop(struct bnx2x *bp, struct bnx2x_fastpath *fp, | |||
338 | struct sw_rx_bd *rx_buf = &fp->tpa_pool[queue]; | 413 | struct sw_rx_bd *rx_buf = &fp->tpa_pool[queue]; |
339 | struct sk_buff *skb = rx_buf->skb; | 414 | struct sk_buff *skb = rx_buf->skb; |
340 | /* alloc new skb */ | 415 | /* alloc new skb */ |
341 | struct sk_buff *new_skb = netdev_alloc_skb(bp->dev, bp->rx_buf_size); | 416 | struct sk_buff *new_skb = netdev_alloc_skb(bp->dev, fp->rx_buf_size); |
342 | 417 | ||
343 | /* Unmap skb in the pool anyway, as we are going to change | 418 | /* Unmap skb in the pool anyway, as we are going to change |
344 | pool entry status to BNX2X_TPA_STOP even if new skb allocation | 419 | pool entry status to BNX2X_TPA_STOP even if new skb allocation |
345 | fails. */ | 420 | fails. */ |
346 | dma_unmap_single(&bp->pdev->dev, dma_unmap_addr(rx_buf, mapping), | 421 | dma_unmap_single(&bp->pdev->dev, dma_unmap_addr(rx_buf, mapping), |
347 | bp->rx_buf_size, DMA_FROM_DEVICE); | 422 | fp->rx_buf_size, DMA_FROM_DEVICE); |
348 | 423 | ||
349 | if (likely(new_skb)) { | 424 | if (likely(new_skb)) { |
350 | /* fix ip xsum and give it to the stack */ | 425 | /* fix ip xsum and give it to the stack */ |
351 | /* (no need to map the new skb) */ | 426 | /* (no need to map the new skb) */ |
352 | #ifdef BCM_VLAN | 427 | u16 parsing_flags = |
353 | int is_vlan_cqe = | 428 | le16_to_cpu(cqe->fast_path_cqe.pars_flags.flags); |
354 | (le16_to_cpu(cqe->fast_path_cqe.pars_flags.flags) & | ||
355 | PARSING_FLAGS_VLAN); | ||
356 | int is_not_hwaccel_vlan_cqe = | ||
357 | (is_vlan_cqe && (!(bp->flags & HW_VLAN_RX_FLAG))); | ||
358 | #endif | ||
359 | 429 | ||
360 | prefetch(skb); | 430 | prefetch(skb); |
361 | prefetch(((char *)(skb)) + 128); | 431 | prefetch(((char *)(skb)) + L1_CACHE_BYTES); |
362 | 432 | ||
363 | #ifdef BNX2X_STOP_ON_ERROR | 433 | #ifdef BNX2X_STOP_ON_ERROR |
364 | if (pad + len > bp->rx_buf_size) { | 434 | if (pad + len > fp->rx_buf_size) { |
365 | BNX2X_ERR("skb_put is about to fail... " | 435 | BNX2X_ERR("skb_put is about to fail... " |
366 | "pad %d len %d rx_buf_size %d\n", | 436 | "pad %d len %d rx_buf_size %d\n", |
367 | pad, len, bp->rx_buf_size); | 437 | pad, len, fp->rx_buf_size); |
368 | bnx2x_panic(); | 438 | bnx2x_panic(); |
369 | return; | 439 | return; |
370 | } | 440 | } |
@@ -380,31 +450,22 @@ static void bnx2x_tpa_stop(struct bnx2x *bp, struct bnx2x_fastpath *fp, | |||
380 | struct iphdr *iph; | 450 | struct iphdr *iph; |
381 | 451 | ||
382 | iph = (struct iphdr *)skb->data; | 452 | iph = (struct iphdr *)skb->data; |
383 | #ifdef BCM_VLAN | ||
384 | /* If there is no Rx VLAN offloading - | ||
385 | take VLAN tag into an account */ | ||
386 | if (unlikely(is_not_hwaccel_vlan_cqe)) | ||
387 | iph = (struct iphdr *)((u8 *)iph + VLAN_HLEN); | ||
388 | #endif | ||
389 | iph->check = 0; | 453 | iph->check = 0; |
390 | iph->check = ip_fast_csum((u8 *)iph, iph->ihl); | 454 | iph->check = ip_fast_csum((u8 *)iph, iph->ihl); |
391 | } | 455 | } |
392 | 456 | ||
393 | if (!bnx2x_fill_frag_skb(bp, fp, skb, | 457 | if (!bnx2x_fill_frag_skb(bp, fp, skb, |
394 | &cqe->fast_path_cqe, cqe_idx)) { | 458 | &cqe->fast_path_cqe, cqe_idx, |
395 | #ifdef BCM_VLAN | 459 | parsing_flags)) { |
396 | if ((bp->vlgrp != NULL) && is_vlan_cqe && | 460 | if (parsing_flags & PARSING_FLAGS_VLAN) |
397 | (!is_not_hwaccel_vlan_cqe)) | 461 | __vlan_hwaccel_put_tag(skb, |
398 | vlan_gro_receive(&fp->napi, bp->vlgrp, | ||
399 | le16_to_cpu(cqe->fast_path_cqe. | 462 | le16_to_cpu(cqe->fast_path_cqe. |
400 | vlan_tag), skb); | 463 | vlan_tag)); |
401 | else | 464 | napi_gro_receive(&fp->napi, skb); |
402 | #endif | ||
403 | napi_gro_receive(&fp->napi, skb); | ||
404 | } else { | 465 | } else { |
405 | DP(NETIF_MSG_RX_STATUS, "Failed to allocate new pages" | 466 | DP(NETIF_MSG_RX_STATUS, "Failed to allocate new pages" |
406 | " - dropping packet!\n"); | 467 | " - dropping packet!\n"); |
407 | dev_kfree_skb(skb); | 468 | dev_kfree_skb_any(skb); |
408 | } | 469 | } |
409 | 470 | ||
410 | 471 | ||
@@ -509,8 +570,11 @@ int bnx2x_rx_int(struct bnx2x_fastpath *fp, int budget) | |||
509 | len = le16_to_cpu(cqe->fast_path_cqe.pkt_len); | 570 | len = le16_to_cpu(cqe->fast_path_cqe.pkt_len); |
510 | pad = cqe->fast_path_cqe.placement_offset; | 571 | pad = cqe->fast_path_cqe.placement_offset; |
511 | 572 | ||
512 | /* If CQE is marked both TPA_START and TPA_END | 573 | /* - If CQE is marked both TPA_START and TPA_END it is |
513 | it is a non-TPA CQE */ | 574 | * a non-TPA CQE. |
575 | * - FP CQE will always have either TPA_START or/and | ||
576 | * TPA_STOP flags set. | ||
577 | */ | ||
514 | if ((!fp->disable_tpa) && | 578 | if ((!fp->disable_tpa) && |
515 | (TPA_TYPE(cqe_fp_flags) != | 579 | (TPA_TYPE(cqe_fp_flags) != |
516 | (TPA_TYPE_START | TPA_TYPE_END))) { | 580 | (TPA_TYPE_START | TPA_TYPE_END))) { |
@@ -528,9 +592,7 @@ int bnx2x_rx_int(struct bnx2x_fastpath *fp, int budget) | |||
528 | bnx2x_set_skb_rxhash(bp, cqe, skb); | 592 | bnx2x_set_skb_rxhash(bp, cqe, skb); |
529 | 593 | ||
530 | goto next_rx; | 594 | goto next_rx; |
531 | } | 595 | } else { /* TPA_STOP */ |
532 | |||
533 | if (TPA_TYPE(cqe_fp_flags) == TPA_TYPE_END) { | ||
534 | DP(NETIF_MSG_RX_STATUS, | 596 | DP(NETIF_MSG_RX_STATUS, |
535 | "calling tpa_stop on queue %d\n", | 597 | "calling tpa_stop on queue %d\n", |
536 | queue); | 598 | queue); |
@@ -560,7 +622,7 @@ int bnx2x_rx_int(struct bnx2x_fastpath *fp, int budget) | |||
560 | dma_unmap_addr(rx_buf, mapping), | 622 | dma_unmap_addr(rx_buf, mapping), |
561 | pad + RX_COPY_THRESH, | 623 | pad + RX_COPY_THRESH, |
562 | DMA_FROM_DEVICE); | 624 | DMA_FROM_DEVICE); |
563 | prefetch(((char *)(skb)) + 128); | 625 | prefetch(((char *)(skb)) + L1_CACHE_BYTES); |
564 | 626 | ||
565 | /* is this an error packet? */ | 627 | /* is this an error packet? */ |
566 | if (unlikely(cqe_fp_flags & ETH_RX_ERROR_FALGS)) { | 628 | if (unlikely(cqe_fp_flags & ETH_RX_ERROR_FALGS)) { |
@@ -594,7 +656,7 @@ int bnx2x_rx_int(struct bnx2x_fastpath *fp, int budget) | |||
594 | skb_reserve(new_skb, pad); | 656 | skb_reserve(new_skb, pad); |
595 | skb_put(new_skb, len); | 657 | skb_put(new_skb, len); |
596 | 658 | ||
597 | bnx2x_reuse_rx_skb(fp, skb, bd_cons, bd_prod); | 659 | bnx2x_reuse_rx_skb(fp, bd_cons, bd_prod); |
598 | 660 | ||
599 | skb = new_skb; | 661 | skb = new_skb; |
600 | 662 | ||
@@ -602,7 +664,7 @@ int bnx2x_rx_int(struct bnx2x_fastpath *fp, int budget) | |||
602 | if (likely(bnx2x_alloc_rx_skb(bp, fp, bd_prod) == 0)) { | 664 | if (likely(bnx2x_alloc_rx_skb(bp, fp, bd_prod) == 0)) { |
603 | dma_unmap_single(&bp->pdev->dev, | 665 | dma_unmap_single(&bp->pdev->dev, |
604 | dma_unmap_addr(rx_buf, mapping), | 666 | dma_unmap_addr(rx_buf, mapping), |
605 | bp->rx_buf_size, | 667 | fp->rx_buf_size, |
606 | DMA_FROM_DEVICE); | 668 | DMA_FROM_DEVICE); |
607 | skb_reserve(skb, pad); | 669 | skb_reserve(skb, pad); |
608 | skb_put(skb, len); | 670 | skb_put(skb, len); |
@@ -613,7 +675,7 @@ int bnx2x_rx_int(struct bnx2x_fastpath *fp, int budget) | |||
613 | "of alloc failure\n"); | 675 | "of alloc failure\n"); |
614 | fp->eth_q_stats.rx_skb_alloc_failed++; | 676 | fp->eth_q_stats.rx_skb_alloc_failed++; |
615 | reuse_rx: | 677 | reuse_rx: |
616 | bnx2x_reuse_rx_skb(fp, skb, bd_cons, bd_prod); | 678 | bnx2x_reuse_rx_skb(fp, bd_cons, bd_prod); |
617 | goto next_rx; | 679 | goto next_rx; |
618 | } | 680 | } |
619 | 681 | ||
@@ -622,8 +684,9 @@ reuse_rx: | |||
622 | /* Set Toeplitz hash for a none-LRO skb */ | 684 | /* Set Toeplitz hash for a none-LRO skb */ |
623 | bnx2x_set_skb_rxhash(bp, cqe, skb); | 685 | bnx2x_set_skb_rxhash(bp, cqe, skb); |
624 | 686 | ||
625 | skb->ip_summed = CHECKSUM_NONE; | 687 | skb_checksum_none_assert(skb); |
626 | if (bp->rx_csum) { | 688 | |
689 | if (bp->dev->features & NETIF_F_RXCSUM) { | ||
627 | if (likely(BNX2X_RX_CSUM_OK(cqe))) | 690 | if (likely(BNX2X_RX_CSUM_OK(cqe))) |
628 | skb->ip_summed = CHECKSUM_UNNECESSARY; | 691 | skb->ip_summed = CHECKSUM_UNNECESSARY; |
629 | else | 692 | else |
@@ -633,15 +696,11 @@ reuse_rx: | |||
633 | 696 | ||
634 | skb_record_rx_queue(skb, fp->index); | 697 | skb_record_rx_queue(skb, fp->index); |
635 | 698 | ||
636 | #ifdef BCM_VLAN | 699 | if (le16_to_cpu(cqe->fast_path_cqe.pars_flags.flags) & |
637 | if ((bp->vlgrp != NULL) && (bp->flags & HW_VLAN_RX_FLAG) && | 700 | PARSING_FLAGS_VLAN) |
638 | (le16_to_cpu(cqe->fast_path_cqe.pars_flags.flags) & | 701 | __vlan_hwaccel_put_tag(skb, |
639 | PARSING_FLAGS_VLAN)) | 702 | le16_to_cpu(cqe->fast_path_cqe.vlan_tag)); |
640 | vlan_gro_receive(&fp->napi, bp->vlgrp, | 703 | napi_gro_receive(&fp->napi, skb); |
641 | le16_to_cpu(cqe->fast_path_cqe.vlan_tag), skb); | ||
642 | else | ||
643 | #endif | ||
644 | napi_gro_receive(&fp->napi, skb); | ||
645 | 704 | ||
646 | 705 | ||
647 | next_rx: | 706 | next_rx: |
@@ -685,9 +744,10 @@ static irqreturn_t bnx2x_msix_fp_int(int irq, void *fp_cookie) | |||
685 | return IRQ_HANDLED; | 744 | return IRQ_HANDLED; |
686 | } | 745 | } |
687 | 746 | ||
688 | DP(BNX2X_MSG_FP, "got an MSI-X interrupt on IDX:SB [%d:%d]\n", | 747 | DP(BNX2X_MSG_FP, "got an MSI-X interrupt on IDX:SB " |
689 | fp->index, fp->sb_id); | 748 | "[fp %d fw_sd %d igusb %d]\n", |
690 | bnx2x_ack_sb(bp, fp->sb_id, USTORM_ID, 0, IGU_INT_DISABLE, 0); | 749 | fp->index, fp->fw_sb_id, fp->igu_sb_id); |
750 | bnx2x_ack_sb(bp, fp->igu_sb_id, USTORM_ID, 0, IGU_INT_DISABLE, 0); | ||
691 | 751 | ||
692 | #ifdef BNX2X_STOP_ON_ERROR | 752 | #ifdef BNX2X_STOP_ON_ERROR |
693 | if (unlikely(bp->panic)) | 753 | if (unlikely(bp->panic)) |
@@ -697,14 +757,12 @@ static irqreturn_t bnx2x_msix_fp_int(int irq, void *fp_cookie) | |||
697 | /* Handle Rx and Tx according to MSI-X vector */ | 757 | /* Handle Rx and Tx according to MSI-X vector */ |
698 | prefetch(fp->rx_cons_sb); | 758 | prefetch(fp->rx_cons_sb); |
699 | prefetch(fp->tx_cons_sb); | 759 | prefetch(fp->tx_cons_sb); |
700 | prefetch(&fp->status_blk->u_status_block.status_block_index); | 760 | prefetch(&fp->sb_running_index[SM_RX_ID]); |
701 | prefetch(&fp->status_blk->c_status_block.status_block_index); | ||
702 | napi_schedule(&bnx2x_fp(bp, fp->index, napi)); | 761 | napi_schedule(&bnx2x_fp(bp, fp->index, napi)); |
703 | 762 | ||
704 | return IRQ_HANDLED; | 763 | return IRQ_HANDLED; |
705 | } | 764 | } |
706 | 765 | ||
707 | |||
708 | /* HW Lock for shared dual port PHYs */ | 766 | /* HW Lock for shared dual port PHYs */ |
709 | void bnx2x_acquire_phy_lock(struct bnx2x *bp) | 767 | void bnx2x_acquire_phy_lock(struct bnx2x *bp) |
710 | { | 768 | { |
@@ -722,43 +780,143 @@ void bnx2x_release_phy_lock(struct bnx2x *bp) | |||
722 | mutex_unlock(&bp->port.phy_mutex); | 780 | mutex_unlock(&bp->port.phy_mutex); |
723 | } | 781 | } |
724 | 782 | ||
725 | void bnx2x_link_report(struct bnx2x *bp) | 783 | /* calculates MF speed according to current linespeed and MF configuration */ |
784 | u16 bnx2x_get_mf_speed(struct bnx2x *bp) | ||
726 | { | 785 | { |
727 | if (bp->flags & MF_FUNC_DIS) { | 786 | u16 line_speed = bp->link_vars.line_speed; |
728 | netif_carrier_off(bp->dev); | 787 | if (IS_MF(bp)) { |
729 | netdev_err(bp->dev, "NIC Link is Down\n"); | 788 | u16 maxCfg = bnx2x_extract_max_cfg(bp, |
730 | return; | 789 | bp->mf_config[BP_VN(bp)]); |
731 | } | ||
732 | |||
733 | if (bp->link_vars.link_up) { | ||
734 | u16 line_speed; | ||
735 | 790 | ||
736 | if (bp->state == BNX2X_STATE_OPEN) | 791 | /* Calculate the current MAX line speed limit for the MF |
737 | netif_carrier_on(bp->dev); | 792 | * devices |
738 | netdev_info(bp->dev, "NIC Link is Up, "); | 793 | */ |
739 | 794 | if (IS_MF_SI(bp)) | |
740 | line_speed = bp->link_vars.line_speed; | 795 | line_speed = (line_speed * maxCfg) / 100; |
741 | if (IS_E1HMF(bp)) { | 796 | else { /* SD mode */ |
742 | u16 vn_max_rate; | 797 | u16 vn_max_rate = maxCfg * 100; |
743 | 798 | ||
744 | vn_max_rate = | ||
745 | ((bp->mf_config & FUNC_MF_CFG_MAX_BW_MASK) >> | ||
746 | FUNC_MF_CFG_MAX_BW_SHIFT) * 100; | ||
747 | if (vn_max_rate < line_speed) | 799 | if (vn_max_rate < line_speed) |
748 | line_speed = vn_max_rate; | 800 | line_speed = vn_max_rate; |
749 | } | 801 | } |
750 | pr_cont("%d Mbps ", line_speed); | 802 | } |
803 | |||
804 | return line_speed; | ||
805 | } | ||
806 | |||
807 | /** | ||
808 | * bnx2x_fill_report_data - fill link report data to report | ||
809 | * | ||
810 | * @bp: driver handle | ||
811 | * @data: link state to update | ||
812 | * | ||
813 | * It uses a none-atomic bit operations because is called under the mutex. | ||
814 | */ | ||
815 | static inline void bnx2x_fill_report_data(struct bnx2x *bp, | ||
816 | struct bnx2x_link_report_data *data) | ||
817 | { | ||
818 | u16 line_speed = bnx2x_get_mf_speed(bp); | ||
819 | |||
820 | memset(data, 0, sizeof(*data)); | ||
821 | |||
822 | /* Fill the report data: efective line speed */ | ||
823 | data->line_speed = line_speed; | ||
824 | |||
825 | /* Link is down */ | ||
826 | if (!bp->link_vars.link_up || (bp->flags & MF_FUNC_DIS)) | ||
827 | __set_bit(BNX2X_LINK_REPORT_LINK_DOWN, | ||
828 | &data->link_report_flags); | ||
829 | |||
830 | /* Full DUPLEX */ | ||
831 | if (bp->link_vars.duplex == DUPLEX_FULL) | ||
832 | __set_bit(BNX2X_LINK_REPORT_FD, &data->link_report_flags); | ||
833 | |||
834 | /* Rx Flow Control is ON */ | ||
835 | if (bp->link_vars.flow_ctrl & BNX2X_FLOW_CTRL_RX) | ||
836 | __set_bit(BNX2X_LINK_REPORT_RX_FC_ON, &data->link_report_flags); | ||
837 | |||
838 | /* Tx Flow Control is ON */ | ||
839 | if (bp->link_vars.flow_ctrl & BNX2X_FLOW_CTRL_TX) | ||
840 | __set_bit(BNX2X_LINK_REPORT_TX_FC_ON, &data->link_report_flags); | ||
841 | } | ||
842 | |||
843 | /** | ||
844 | * bnx2x_link_report - report link status to OS. | ||
845 | * | ||
846 | * @bp: driver handle | ||
847 | * | ||
848 | * Calls the __bnx2x_link_report() under the same locking scheme | ||
849 | * as a link/PHY state managing code to ensure a consistent link | ||
850 | * reporting. | ||
851 | */ | ||
852 | |||
853 | void bnx2x_link_report(struct bnx2x *bp) | ||
854 | { | ||
855 | bnx2x_acquire_phy_lock(bp); | ||
856 | __bnx2x_link_report(bp); | ||
857 | bnx2x_release_phy_lock(bp); | ||
858 | } | ||
859 | |||
860 | /** | ||
861 | * __bnx2x_link_report - report link status to OS. | ||
862 | * | ||
863 | * @bp: driver handle | ||
864 | * | ||
865 | * None atomic inmlementation. | ||
866 | * Should be called under the phy_lock. | ||
867 | */ | ||
868 | void __bnx2x_link_report(struct bnx2x *bp) | ||
869 | { | ||
870 | struct bnx2x_link_report_data cur_data; | ||
871 | |||
872 | /* reread mf_cfg */ | ||
873 | if (!CHIP_IS_E1(bp)) | ||
874 | bnx2x_read_mf_cfg(bp); | ||
875 | |||
876 | /* Read the current link report info */ | ||
877 | bnx2x_fill_report_data(bp, &cur_data); | ||
878 | |||
879 | /* Don't report link down or exactly the same link status twice */ | ||
880 | if (!memcmp(&cur_data, &bp->last_reported_link, sizeof(cur_data)) || | ||
881 | (test_bit(BNX2X_LINK_REPORT_LINK_DOWN, | ||
882 | &bp->last_reported_link.link_report_flags) && | ||
883 | test_bit(BNX2X_LINK_REPORT_LINK_DOWN, | ||
884 | &cur_data.link_report_flags))) | ||
885 | return; | ||
751 | 886 | ||
752 | if (bp->link_vars.duplex == DUPLEX_FULL) | 887 | bp->link_cnt++; |
888 | |||
889 | /* We are going to report a new link parameters now - | ||
890 | * remember the current data for the next time. | ||
891 | */ | ||
892 | memcpy(&bp->last_reported_link, &cur_data, sizeof(cur_data)); | ||
893 | |||
894 | if (test_bit(BNX2X_LINK_REPORT_LINK_DOWN, | ||
895 | &cur_data.link_report_flags)) { | ||
896 | netif_carrier_off(bp->dev); | ||
897 | netdev_err(bp->dev, "NIC Link is Down\n"); | ||
898 | return; | ||
899 | } else { | ||
900 | netif_carrier_on(bp->dev); | ||
901 | netdev_info(bp->dev, "NIC Link is Up, "); | ||
902 | pr_cont("%d Mbps ", cur_data.line_speed); | ||
903 | |||
904 | if (test_and_clear_bit(BNX2X_LINK_REPORT_FD, | ||
905 | &cur_data.link_report_flags)) | ||
753 | pr_cont("full duplex"); | 906 | pr_cont("full duplex"); |
754 | else | 907 | else |
755 | pr_cont("half duplex"); | 908 | pr_cont("half duplex"); |
756 | 909 | ||
757 | if (bp->link_vars.flow_ctrl != BNX2X_FLOW_CTRL_NONE) { | 910 | /* Handle the FC at the end so that only these flags would be |
758 | if (bp->link_vars.flow_ctrl & BNX2X_FLOW_CTRL_RX) { | 911 | * possibly set. This way we may easily check if there is no FC |
912 | * enabled. | ||
913 | */ | ||
914 | if (cur_data.link_report_flags) { | ||
915 | if (test_bit(BNX2X_LINK_REPORT_RX_FC_ON, | ||
916 | &cur_data.link_report_flags)) { | ||
759 | pr_cont(", receive "); | 917 | pr_cont(", receive "); |
760 | if (bp->link_vars.flow_ctrl & | 918 | if (test_bit(BNX2X_LINK_REPORT_TX_FC_ON, |
761 | BNX2X_FLOW_CTRL_TX) | 919 | &cur_data.link_report_flags)) |
762 | pr_cont("& transmit "); | 920 | pr_cont("& transmit "); |
763 | } else { | 921 | } else { |
764 | pr_cont(", transmit "); | 922 | pr_cont(", transmit "); |
@@ -766,10 +924,6 @@ void bnx2x_link_report(struct bnx2x *bp) | |||
766 | pr_cont("flow control ON"); | 924 | pr_cont("flow control ON"); |
767 | } | 925 | } |
768 | pr_cont("\n"); | 926 | pr_cont("\n"); |
769 | |||
770 | } else { /* link_down */ | ||
771 | netif_carrier_off(bp->dev); | ||
772 | netdev_err(bp->dev, "NIC Link is Down\n"); | ||
773 | } | 927 | } |
774 | } | 928 | } |
775 | 929 | ||
@@ -778,21 +932,21 @@ void bnx2x_init_rx_rings(struct bnx2x *bp) | |||
778 | int func = BP_FUNC(bp); | 932 | int func = BP_FUNC(bp); |
779 | int max_agg_queues = CHIP_IS_E1(bp) ? ETH_MAX_AGGREGATION_QUEUES_E1 : | 933 | int max_agg_queues = CHIP_IS_E1(bp) ? ETH_MAX_AGGREGATION_QUEUES_E1 : |
780 | ETH_MAX_AGGREGATION_QUEUES_E1H; | 934 | ETH_MAX_AGGREGATION_QUEUES_E1H; |
781 | u16 ring_prod, cqe_ring_prod; | 935 | u16 ring_prod; |
782 | int i, j; | 936 | int i, j; |
783 | 937 | ||
784 | bp->rx_buf_size = bp->dev->mtu + ETH_OVREHEAD + BNX2X_RX_ALIGN; | 938 | /* Allocate TPA resources */ |
785 | DP(NETIF_MSG_IFUP, | 939 | for_each_rx_queue(bp, j) { |
786 | "mtu %d rx_buf_size %d\n", bp->dev->mtu, bp->rx_buf_size); | 940 | struct bnx2x_fastpath *fp = &bp->fp[j]; |
787 | |||
788 | if (bp->flags & TPA_ENABLE_FLAG) { | ||
789 | 941 | ||
790 | for_each_queue(bp, j) { | 942 | DP(NETIF_MSG_IFUP, |
791 | struct bnx2x_fastpath *fp = &bp->fp[j]; | 943 | "mtu %d rx_buf_size %d\n", bp->dev->mtu, fp->rx_buf_size); |
792 | 944 | ||
945 | if (!fp->disable_tpa) { | ||
946 | /* Fill the per-aggregation pool */ | ||
793 | for (i = 0; i < max_agg_queues; i++) { | 947 | for (i = 0; i < max_agg_queues; i++) { |
794 | fp->tpa_pool[i].skb = | 948 | fp->tpa_pool[i].skb = |
795 | netdev_alloc_skb(bp->dev, bp->rx_buf_size); | 949 | netdev_alloc_skb(bp->dev, fp->rx_buf_size); |
796 | if (!fp->tpa_pool[i].skb) { | 950 | if (!fp->tpa_pool[i].skb) { |
797 | BNX2X_ERR("Failed to allocate TPA " | 951 | BNX2X_ERR("Failed to allocate TPA " |
798 | "skb pool for queue[%d] - " | 952 | "skb pool for queue[%d] - " |
@@ -807,121 +961,70 @@ void bnx2x_init_rx_rings(struct bnx2x *bp) | |||
807 | mapping, 0); | 961 | mapping, 0); |
808 | fp->tpa_state[i] = BNX2X_TPA_STOP; | 962 | fp->tpa_state[i] = BNX2X_TPA_STOP; |
809 | } | 963 | } |
964 | |||
965 | /* "next page" elements initialization */ | ||
966 | bnx2x_set_next_page_sgl(fp); | ||
967 | |||
968 | /* set SGEs bit mask */ | ||
969 | bnx2x_init_sge_ring_bit_mask(fp); | ||
970 | |||
971 | /* Allocate SGEs and initialize the ring elements */ | ||
972 | for (i = 0, ring_prod = 0; | ||
973 | i < MAX_RX_SGE_CNT*NUM_RX_SGE_PAGES; i++) { | ||
974 | |||
975 | if (bnx2x_alloc_rx_sge(bp, fp, ring_prod) < 0) { | ||
976 | BNX2X_ERR("was only able to allocate " | ||
977 | "%d rx sges\n", i); | ||
978 | BNX2X_ERR("disabling TPA for" | ||
979 | " queue[%d]\n", j); | ||
980 | /* Cleanup already allocated elements */ | ||
981 | bnx2x_free_rx_sge_range(bp, | ||
982 | fp, ring_prod); | ||
983 | bnx2x_free_tpa_pool(bp, | ||
984 | fp, max_agg_queues); | ||
985 | fp->disable_tpa = 1; | ||
986 | ring_prod = 0; | ||
987 | break; | ||
988 | } | ||
989 | ring_prod = NEXT_SGE_IDX(ring_prod); | ||
990 | } | ||
991 | |||
992 | fp->rx_sge_prod = ring_prod; | ||
810 | } | 993 | } |
811 | } | 994 | } |
812 | 995 | ||
813 | for_each_queue(bp, j) { | 996 | for_each_rx_queue(bp, j) { |
814 | struct bnx2x_fastpath *fp = &bp->fp[j]; | 997 | struct bnx2x_fastpath *fp = &bp->fp[j]; |
815 | 998 | ||
816 | fp->rx_bd_cons = 0; | 999 | fp->rx_bd_cons = 0; |
817 | fp->rx_cons_sb = BNX2X_RX_SB_INDEX; | ||
818 | fp->rx_bd_cons_sb = BNX2X_RX_SB_BD_INDEX; | ||
819 | |||
820 | /* "next page" elements initialization */ | ||
821 | /* SGE ring */ | ||
822 | for (i = 1; i <= NUM_RX_SGE_PAGES; i++) { | ||
823 | struct eth_rx_sge *sge; | ||
824 | |||
825 | sge = &fp->rx_sge_ring[RX_SGE_CNT * i - 2]; | ||
826 | sge->addr_hi = | ||
827 | cpu_to_le32(U64_HI(fp->rx_sge_mapping + | ||
828 | BCM_PAGE_SIZE*(i % NUM_RX_SGE_PAGES))); | ||
829 | sge->addr_lo = | ||
830 | cpu_to_le32(U64_LO(fp->rx_sge_mapping + | ||
831 | BCM_PAGE_SIZE*(i % NUM_RX_SGE_PAGES))); | ||
832 | } | ||
833 | |||
834 | bnx2x_init_sge_ring_bit_mask(fp); | ||
835 | |||
836 | /* RX BD ring */ | ||
837 | for (i = 1; i <= NUM_RX_RINGS; i++) { | ||
838 | struct eth_rx_bd *rx_bd; | ||
839 | |||
840 | rx_bd = &fp->rx_desc_ring[RX_DESC_CNT * i - 2]; | ||
841 | rx_bd->addr_hi = | ||
842 | cpu_to_le32(U64_HI(fp->rx_desc_mapping + | ||
843 | BCM_PAGE_SIZE*(i % NUM_RX_RINGS))); | ||
844 | rx_bd->addr_lo = | ||
845 | cpu_to_le32(U64_LO(fp->rx_desc_mapping + | ||
846 | BCM_PAGE_SIZE*(i % NUM_RX_RINGS))); | ||
847 | } | ||
848 | |||
849 | /* CQ ring */ | ||
850 | for (i = 1; i <= NUM_RCQ_RINGS; i++) { | ||
851 | struct eth_rx_cqe_next_page *nextpg; | ||
852 | |||
853 | nextpg = (struct eth_rx_cqe_next_page *) | ||
854 | &fp->rx_comp_ring[RCQ_DESC_CNT * i - 1]; | ||
855 | nextpg->addr_hi = | ||
856 | cpu_to_le32(U64_HI(fp->rx_comp_mapping + | ||
857 | BCM_PAGE_SIZE*(i % NUM_RCQ_RINGS))); | ||
858 | nextpg->addr_lo = | ||
859 | cpu_to_le32(U64_LO(fp->rx_comp_mapping + | ||
860 | BCM_PAGE_SIZE*(i % NUM_RCQ_RINGS))); | ||
861 | } | ||
862 | |||
863 | /* Allocate SGEs and initialize the ring elements */ | ||
864 | for (i = 0, ring_prod = 0; | ||
865 | i < MAX_RX_SGE_CNT*NUM_RX_SGE_PAGES; i++) { | ||
866 | |||
867 | if (bnx2x_alloc_rx_sge(bp, fp, ring_prod) < 0) { | ||
868 | BNX2X_ERR("was only able to allocate " | ||
869 | "%d rx sges\n", i); | ||
870 | BNX2X_ERR("disabling TPA for queue[%d]\n", j); | ||
871 | /* Cleanup already allocated elements */ | ||
872 | bnx2x_free_rx_sge_range(bp, fp, ring_prod); | ||
873 | bnx2x_free_tpa_pool(bp, fp, max_agg_queues); | ||
874 | fp->disable_tpa = 1; | ||
875 | ring_prod = 0; | ||
876 | break; | ||
877 | } | ||
878 | ring_prod = NEXT_SGE_IDX(ring_prod); | ||
879 | } | ||
880 | fp->rx_sge_prod = ring_prod; | ||
881 | |||
882 | /* Allocate BDs and initialize BD ring */ | ||
883 | fp->rx_comp_cons = 0; | ||
884 | cqe_ring_prod = ring_prod = 0; | ||
885 | for (i = 0; i < bp->rx_ring_size; i++) { | ||
886 | if (bnx2x_alloc_rx_skb(bp, fp, ring_prod) < 0) { | ||
887 | BNX2X_ERR("was only able to allocate " | ||
888 | "%d rx skbs on queue[%d]\n", i, j); | ||
889 | fp->eth_q_stats.rx_skb_alloc_failed++; | ||
890 | break; | ||
891 | } | ||
892 | ring_prod = NEXT_RX_IDX(ring_prod); | ||
893 | cqe_ring_prod = NEXT_RCQ_IDX(cqe_ring_prod); | ||
894 | WARN_ON(ring_prod <= i); | ||
895 | } | ||
896 | |||
897 | fp->rx_bd_prod = ring_prod; | ||
898 | /* must not have more available CQEs than BDs */ | ||
899 | fp->rx_comp_prod = min_t(u16, NUM_RCQ_RINGS*RCQ_DESC_CNT, | ||
900 | cqe_ring_prod); | ||
901 | fp->rx_pkt = fp->rx_calls = 0; | ||
902 | 1000 | ||
1001 | /* Activate BD ring */ | ||
903 | /* Warning! | 1002 | /* Warning! |
904 | * this will generate an interrupt (to the TSTORM) | 1003 | * this will generate an interrupt (to the TSTORM) |
905 | * must only be done after chip is initialized | 1004 | * must only be done after chip is initialized |
906 | */ | 1005 | */ |
907 | bnx2x_update_rx_prod(bp, fp, ring_prod, fp->rx_comp_prod, | 1006 | bnx2x_update_rx_prod(bp, fp, fp->rx_bd_prod, fp->rx_comp_prod, |
908 | fp->rx_sge_prod); | 1007 | fp->rx_sge_prod); |
1008 | |||
909 | if (j != 0) | 1009 | if (j != 0) |
910 | continue; | 1010 | continue; |
911 | 1011 | ||
912 | REG_WR(bp, BAR_USTRORM_INTMEM + | 1012 | if (!CHIP_IS_E2(bp)) { |
913 | USTORM_MEM_WORKAROUND_ADDRESS_OFFSET(func), | 1013 | REG_WR(bp, BAR_USTRORM_INTMEM + |
914 | U64_LO(fp->rx_comp_mapping)); | 1014 | USTORM_MEM_WORKAROUND_ADDRESS_OFFSET(func), |
915 | REG_WR(bp, BAR_USTRORM_INTMEM + | 1015 | U64_LO(fp->rx_comp_mapping)); |
916 | USTORM_MEM_WORKAROUND_ADDRESS_OFFSET(func) + 4, | 1016 | REG_WR(bp, BAR_USTRORM_INTMEM + |
917 | U64_HI(fp->rx_comp_mapping)); | 1017 | USTORM_MEM_WORKAROUND_ADDRESS_OFFSET(func) + 4, |
1018 | U64_HI(fp->rx_comp_mapping)); | ||
1019 | } | ||
918 | } | 1020 | } |
919 | } | 1021 | } |
1022 | |||
920 | static void bnx2x_free_tx_skbs(struct bnx2x *bp) | 1023 | static void bnx2x_free_tx_skbs(struct bnx2x *bp) |
921 | { | 1024 | { |
922 | int i; | 1025 | int i; |
923 | 1026 | ||
924 | for_each_queue(bp, i) { | 1027 | for_each_tx_queue(bp, i) { |
925 | struct bnx2x_fastpath *fp = &bp->fp[i]; | 1028 | struct bnx2x_fastpath *fp = &bp->fp[i]; |
926 | 1029 | ||
927 | u16 bd_cons = fp->tx_bd_cons; | 1030 | u16 bd_cons = fp->tx_bd_cons; |
@@ -935,27 +1038,40 @@ static void bnx2x_free_tx_skbs(struct bnx2x *bp) | |||
935 | } | 1038 | } |
936 | } | 1039 | } |
937 | 1040 | ||
938 | static void bnx2x_free_rx_skbs(struct bnx2x *bp) | 1041 | static void bnx2x_free_rx_bds(struct bnx2x_fastpath *fp) |
939 | { | 1042 | { |
940 | int i, j; | 1043 | struct bnx2x *bp = fp->bp; |
1044 | int i; | ||
941 | 1045 | ||
942 | for_each_queue(bp, j) { | 1046 | /* ring wasn't allocated */ |
943 | struct bnx2x_fastpath *fp = &bp->fp[j]; | 1047 | if (fp->rx_buf_ring == NULL) |
1048 | return; | ||
944 | 1049 | ||
945 | for (i = 0; i < NUM_RX_BD; i++) { | 1050 | for (i = 0; i < NUM_RX_BD; i++) { |
946 | struct sw_rx_bd *rx_buf = &fp->rx_buf_ring[i]; | 1051 | struct sw_rx_bd *rx_buf = &fp->rx_buf_ring[i]; |
947 | struct sk_buff *skb = rx_buf->skb; | 1052 | struct sk_buff *skb = rx_buf->skb; |
948 | 1053 | ||
949 | if (skb == NULL) | 1054 | if (skb == NULL) |
950 | continue; | 1055 | continue; |
951 | 1056 | ||
952 | dma_unmap_single(&bp->pdev->dev, | 1057 | dma_unmap_single(&bp->pdev->dev, |
953 | dma_unmap_addr(rx_buf, mapping), | 1058 | dma_unmap_addr(rx_buf, mapping), |
954 | bp->rx_buf_size, DMA_FROM_DEVICE); | 1059 | fp->rx_buf_size, DMA_FROM_DEVICE); |
1060 | |||
1061 | rx_buf->skb = NULL; | ||
1062 | dev_kfree_skb(skb); | ||
1063 | } | ||
1064 | } | ||
1065 | |||
1066 | static void bnx2x_free_rx_skbs(struct bnx2x *bp) | ||
1067 | { | ||
1068 | int j; | ||
1069 | |||
1070 | for_each_rx_queue(bp, j) { | ||
1071 | struct bnx2x_fastpath *fp = &bp->fp[j]; | ||
1072 | |||
1073 | bnx2x_free_rx_bds(fp); | ||
955 | 1074 | ||
956 | rx_buf->skb = NULL; | ||
957 | dev_kfree_skb(skb); | ||
958 | } | ||
959 | if (!fp->disable_tpa) | 1075 | if (!fp->disable_tpa) |
960 | bnx2x_free_tpa_pool(bp, fp, CHIP_IS_E1(bp) ? | 1076 | bnx2x_free_tpa_pool(bp, fp, CHIP_IS_E1(bp) ? |
961 | ETH_MAX_AGGREGATION_QUEUES_E1 : | 1077 | ETH_MAX_AGGREGATION_QUEUES_E1 : |
@@ -969,6 +1085,23 @@ void bnx2x_free_skbs(struct bnx2x *bp) | |||
969 | bnx2x_free_rx_skbs(bp); | 1085 | bnx2x_free_rx_skbs(bp); |
970 | } | 1086 | } |
971 | 1087 | ||
1088 | void bnx2x_update_max_mf_config(struct bnx2x *bp, u32 value) | ||
1089 | { | ||
1090 | /* load old values */ | ||
1091 | u32 mf_cfg = bp->mf_config[BP_VN(bp)]; | ||
1092 | |||
1093 | if (value != bnx2x_extract_max_cfg(bp, mf_cfg)) { | ||
1094 | /* leave all but MAX value */ | ||
1095 | mf_cfg &= ~FUNC_MF_CFG_MAX_BW_MASK; | ||
1096 | |||
1097 | /* set new MAX value */ | ||
1098 | mf_cfg |= (value << FUNC_MF_CFG_MAX_BW_SHIFT) | ||
1099 | & FUNC_MF_CFG_MAX_BW_MASK; | ||
1100 | |||
1101 | bnx2x_fw_command(bp, DRV_MSG_CODE_SET_MF_BW, mf_cfg); | ||
1102 | } | ||
1103 | } | ||
1104 | |||
972 | static void bnx2x_free_msix_irqs(struct bnx2x *bp) | 1105 | static void bnx2x_free_msix_irqs(struct bnx2x *bp) |
973 | { | 1106 | { |
974 | int i, offset = 1; | 1107 | int i, offset = 1; |
@@ -980,7 +1113,7 @@ static void bnx2x_free_msix_irqs(struct bnx2x *bp) | |||
980 | #ifdef BCM_CNIC | 1113 | #ifdef BCM_CNIC |
981 | offset++; | 1114 | offset++; |
982 | #endif | 1115 | #endif |
983 | for_each_queue(bp, i) { | 1116 | for_each_eth_queue(bp, i) { |
984 | DP(NETIF_MSG_IFDOWN, "about to release fp #%d->%d irq " | 1117 | DP(NETIF_MSG_IFDOWN, "about to release fp #%d->%d irq " |
985 | "state %x\n", i, bp->msix_table[i + offset].vector, | 1118 | "state %x\n", i, bp->msix_table[i + offset].vector, |
986 | bnx2x_fp(bp, i, state)); | 1119 | bnx2x_fp(bp, i, state)); |
@@ -989,55 +1122,49 @@ static void bnx2x_free_msix_irqs(struct bnx2x *bp) | |||
989 | } | 1122 | } |
990 | } | 1123 | } |
991 | 1124 | ||
992 | void bnx2x_free_irq(struct bnx2x *bp, bool disable_only) | 1125 | void bnx2x_free_irq(struct bnx2x *bp) |
993 | { | 1126 | { |
994 | if (bp->flags & USING_MSIX_FLAG) { | 1127 | if (bp->flags & USING_MSIX_FLAG) |
995 | if (!disable_only) | 1128 | bnx2x_free_msix_irqs(bp); |
996 | bnx2x_free_msix_irqs(bp); | 1129 | else if (bp->flags & USING_MSI_FLAG) |
997 | pci_disable_msix(bp->pdev); | 1130 | free_irq(bp->pdev->irq, bp->dev); |
998 | bp->flags &= ~USING_MSIX_FLAG; | 1131 | else |
999 | |||
1000 | } else if (bp->flags & USING_MSI_FLAG) { | ||
1001 | if (!disable_only) | ||
1002 | free_irq(bp->pdev->irq, bp->dev); | ||
1003 | pci_disable_msi(bp->pdev); | ||
1004 | bp->flags &= ~USING_MSI_FLAG; | ||
1005 | |||
1006 | } else if (!disable_only) | ||
1007 | free_irq(bp->pdev->irq, bp->dev); | 1132 | free_irq(bp->pdev->irq, bp->dev); |
1008 | } | 1133 | } |
1009 | 1134 | ||
1010 | static int bnx2x_enable_msix(struct bnx2x *bp) | 1135 | int bnx2x_enable_msix(struct bnx2x *bp) |
1011 | { | 1136 | { |
1012 | int i, rc, offset = 1; | 1137 | int msix_vec = 0, i, rc, req_cnt; |
1013 | int igu_vec = 0; | ||
1014 | 1138 | ||
1015 | bp->msix_table[0].entry = igu_vec; | 1139 | bp->msix_table[msix_vec].entry = msix_vec; |
1016 | DP(NETIF_MSG_IFUP, "msix_table[0].entry = %d (slowpath)\n", igu_vec); | 1140 | DP(NETIF_MSG_IFUP, "msix_table[0].entry = %d (slowpath)\n", |
1141 | bp->msix_table[0].entry); | ||
1142 | msix_vec++; | ||
1017 | 1143 | ||
1018 | #ifdef BCM_CNIC | 1144 | #ifdef BCM_CNIC |
1019 | igu_vec = BP_L_ID(bp) + offset; | 1145 | bp->msix_table[msix_vec].entry = msix_vec; |
1020 | bp->msix_table[1].entry = igu_vec; | 1146 | DP(NETIF_MSG_IFUP, "msix_table[%d].entry = %d (CNIC)\n", |
1021 | DP(NETIF_MSG_IFUP, "msix_table[1].entry = %d (CNIC)\n", igu_vec); | 1147 | bp->msix_table[msix_vec].entry, bp->msix_table[msix_vec].entry); |
1022 | offset++; | 1148 | msix_vec++; |
1023 | #endif | 1149 | #endif |
1024 | for_each_queue(bp, i) { | 1150 | for_each_eth_queue(bp, i) { |
1025 | igu_vec = BP_L_ID(bp) + offset + i; | 1151 | bp->msix_table[msix_vec].entry = msix_vec; |
1026 | bp->msix_table[i + offset].entry = igu_vec; | ||
1027 | DP(NETIF_MSG_IFUP, "msix_table[%d].entry = %d " | 1152 | DP(NETIF_MSG_IFUP, "msix_table[%d].entry = %d " |
1028 | "(fastpath #%u)\n", i + offset, igu_vec, i); | 1153 | "(fastpath #%u)\n", msix_vec, msix_vec, i); |
1154 | msix_vec++; | ||
1029 | } | 1155 | } |
1030 | 1156 | ||
1031 | rc = pci_enable_msix(bp->pdev, &bp->msix_table[0], | 1157 | req_cnt = BNX2X_NUM_ETH_QUEUES(bp) + CNIC_CONTEXT_USE + 1; |
1032 | BNX2X_NUM_QUEUES(bp) + offset); | 1158 | |
1159 | rc = pci_enable_msix(bp->pdev, &bp->msix_table[0], req_cnt); | ||
1033 | 1160 | ||
1034 | /* | 1161 | /* |
1035 | * reconfigure number of tx/rx queues according to available | 1162 | * reconfigure number of tx/rx queues according to available |
1036 | * MSI-X vectors | 1163 | * MSI-X vectors |
1037 | */ | 1164 | */ |
1038 | if (rc >= BNX2X_MIN_MSIX_VEC_CNT) { | 1165 | if (rc >= BNX2X_MIN_MSIX_VEC_CNT) { |
1039 | /* vectors available for FP */ | 1166 | /* how less vectors we will have? */ |
1040 | int fp_vec = rc - BNX2X_MSIX_VEC_FP_START; | 1167 | int diff = req_cnt - rc; |
1041 | 1168 | ||
1042 | DP(NETIF_MSG_IFUP, | 1169 | DP(NETIF_MSG_IFUP, |
1043 | "Trying to use less MSI-X vectors: %d\n", rc); | 1170 | "Trying to use less MSI-X vectors: %d\n", rc); |
@@ -1049,12 +1176,17 @@ static int bnx2x_enable_msix(struct bnx2x *bp) | |||
1049 | "MSI-X is not attainable rc %d\n", rc); | 1176 | "MSI-X is not attainable rc %d\n", rc); |
1050 | return rc; | 1177 | return rc; |
1051 | } | 1178 | } |
1052 | 1179 | /* | |
1053 | bp->num_queues = min(bp->num_queues, fp_vec); | 1180 | * decrease number of queues by number of unallocated entries |
1181 | */ | ||
1182 | bp->num_queues -= diff; | ||
1054 | 1183 | ||
1055 | DP(NETIF_MSG_IFUP, "New queue configuration set: %d\n", | 1184 | DP(NETIF_MSG_IFUP, "New queue configuration set: %d\n", |
1056 | bp->num_queues); | 1185 | bp->num_queues); |
1057 | } else if (rc) { | 1186 | } else if (rc) { |
1187 | /* fall to INTx if not enough memory */ | ||
1188 | if (rc == -ENOMEM) | ||
1189 | bp->flags |= DISABLE_MSI_FLAG; | ||
1058 | DP(NETIF_MSG_IFUP, "MSI-X is not attainable rc %d\n", rc); | 1190 | DP(NETIF_MSG_IFUP, "MSI-X is not attainable rc %d\n", rc); |
1059 | return rc; | 1191 | return rc; |
1060 | } | 1192 | } |
@@ -1078,12 +1210,12 @@ static int bnx2x_req_msix_irqs(struct bnx2x *bp) | |||
1078 | #ifdef BCM_CNIC | 1210 | #ifdef BCM_CNIC |
1079 | offset++; | 1211 | offset++; |
1080 | #endif | 1212 | #endif |
1081 | for_each_queue(bp, i) { | 1213 | for_each_eth_queue(bp, i) { |
1082 | struct bnx2x_fastpath *fp = &bp->fp[i]; | 1214 | struct bnx2x_fastpath *fp = &bp->fp[i]; |
1083 | snprintf(fp->name, sizeof(fp->name), "%s-fp-%d", | 1215 | snprintf(fp->name, sizeof(fp->name), "%s-fp-%d", |
1084 | bp->dev->name, i); | 1216 | bp->dev->name, i); |
1085 | 1217 | ||
1086 | rc = request_irq(bp->msix_table[i + offset].vector, | 1218 | rc = request_irq(bp->msix_table[offset].vector, |
1087 | bnx2x_msix_fp_int, 0, fp->name, fp); | 1219 | bnx2x_msix_fp_int, 0, fp->name, fp); |
1088 | if (rc) { | 1220 | if (rc) { |
1089 | BNX2X_ERR("request fp #%d irq failed rc %d\n", i, rc); | 1221 | BNX2X_ERR("request fp #%d irq failed rc %d\n", i, rc); |
@@ -1091,10 +1223,12 @@ static int bnx2x_req_msix_irqs(struct bnx2x *bp) | |||
1091 | return -EBUSY; | 1223 | return -EBUSY; |
1092 | } | 1224 | } |
1093 | 1225 | ||
1226 | offset++; | ||
1094 | fp->state = BNX2X_FP_STATE_IRQ; | 1227 | fp->state = BNX2X_FP_STATE_IRQ; |
1095 | } | 1228 | } |
1096 | 1229 | ||
1097 | i = BNX2X_NUM_QUEUES(bp); | 1230 | i = BNX2X_NUM_ETH_QUEUES(bp); |
1231 | offset = 1 + CNIC_CONTEXT_USE; | ||
1098 | netdev_info(bp->dev, "using MSI-X IRQs: sp %d fp[%d] %d" | 1232 | netdev_info(bp->dev, "using MSI-X IRQs: sp %d fp[%d] %d" |
1099 | " ... fp[%d] %d\n", | 1233 | " ... fp[%d] %d\n", |
1100 | bp->msix_table[0].vector, | 1234 | bp->msix_table[0].vector, |
@@ -1104,7 +1238,7 @@ static int bnx2x_req_msix_irqs(struct bnx2x *bp) | |||
1104 | return 0; | 1238 | return 0; |
1105 | } | 1239 | } |
1106 | 1240 | ||
1107 | static int bnx2x_enable_msi(struct bnx2x *bp) | 1241 | int bnx2x_enable_msi(struct bnx2x *bp) |
1108 | { | 1242 | { |
1109 | int rc; | 1243 | int rc; |
1110 | 1244 | ||
@@ -1140,7 +1274,7 @@ static void bnx2x_napi_enable(struct bnx2x *bp) | |||
1140 | { | 1274 | { |
1141 | int i; | 1275 | int i; |
1142 | 1276 | ||
1143 | for_each_queue(bp, i) | 1277 | for_each_napi_queue(bp, i) |
1144 | napi_enable(&bnx2x_fp(bp, i, napi)); | 1278 | napi_enable(&bnx2x_fp(bp, i, napi)); |
1145 | } | 1279 | } |
1146 | 1280 | ||
@@ -1148,7 +1282,7 @@ static void bnx2x_napi_disable(struct bnx2x *bp) | |||
1148 | { | 1282 | { |
1149 | int i; | 1283 | int i; |
1150 | 1284 | ||
1151 | for_each_queue(bp, i) | 1285 | for_each_napi_queue(bp, i) |
1152 | napi_disable(&bnx2x_fp(bp, i, napi)); | 1286 | napi_disable(&bnx2x_fp(bp, i, napi)); |
1153 | } | 1287 | } |
1154 | 1288 | ||
@@ -1175,43 +1309,127 @@ void bnx2x_netif_stop(struct bnx2x *bp, int disable_hw) | |||
1175 | bnx2x_napi_disable(bp); | 1309 | bnx2x_napi_disable(bp); |
1176 | netif_tx_disable(bp->dev); | 1310 | netif_tx_disable(bp->dev); |
1177 | } | 1311 | } |
1178 | static int bnx2x_set_num_queues(struct bnx2x *bp) | 1312 | |
1313 | u16 bnx2x_select_queue(struct net_device *dev, struct sk_buff *skb) | ||
1179 | { | 1314 | { |
1180 | int rc = 0; | 1315 | #ifdef BCM_CNIC |
1316 | struct bnx2x *bp = netdev_priv(dev); | ||
1317 | if (NO_FCOE(bp)) | ||
1318 | return skb_tx_hash(dev, skb); | ||
1319 | else { | ||
1320 | struct ethhdr *hdr = (struct ethhdr *)skb->data; | ||
1321 | u16 ether_type = ntohs(hdr->h_proto); | ||
1322 | |||
1323 | /* Skip VLAN tag if present */ | ||
1324 | if (ether_type == ETH_P_8021Q) { | ||
1325 | struct vlan_ethhdr *vhdr = | ||
1326 | (struct vlan_ethhdr *)skb->data; | ||
1327 | |||
1328 | ether_type = ntohs(vhdr->h_vlan_encapsulated_proto); | ||
1329 | } | ||
1181 | 1330 | ||
1182 | switch (bp->int_mode) { | 1331 | /* If ethertype is FCoE or FIP - use FCoE ring */ |
1183 | case INT_MODE_INTx: | 1332 | if ((ether_type == ETH_P_FCOE) || (ether_type == ETH_P_FIP)) |
1184 | case INT_MODE_MSI: | 1333 | return bnx2x_fcoe(bp, index); |
1334 | } | ||
1335 | #endif | ||
1336 | /* Select a none-FCoE queue: if FCoE is enabled, exclude FCoE L2 ring | ||
1337 | */ | ||
1338 | return __skb_tx_hash(dev, skb, | ||
1339 | dev->real_num_tx_queues - FCOE_CONTEXT_USE); | ||
1340 | } | ||
1341 | |||
1342 | void bnx2x_set_num_queues(struct bnx2x *bp) | ||
1343 | { | ||
1344 | switch (bp->multi_mode) { | ||
1345 | case ETH_RSS_MODE_DISABLED: | ||
1185 | bp->num_queues = 1; | 1346 | bp->num_queues = 1; |
1186 | DP(NETIF_MSG_IFUP, "set number of queues to 1\n"); | ||
1187 | break; | 1347 | break; |
1348 | case ETH_RSS_MODE_REGULAR: | ||
1349 | bp->num_queues = bnx2x_calc_num_queues(bp); | ||
1350 | break; | ||
1351 | |||
1188 | default: | 1352 | default: |
1189 | /* Set number of queues according to bp->multi_mode value */ | 1353 | bp->num_queues = 1; |
1190 | bnx2x_set_num_queues_msix(bp); | 1354 | break; |
1355 | } | ||
1191 | 1356 | ||
1192 | DP(NETIF_MSG_IFUP, "set number of queues to %d\n", | 1357 | /* Add special queues */ |
1193 | bp->num_queues); | 1358 | bp->num_queues += NONE_ETH_CONTEXT_USE; |
1359 | } | ||
1194 | 1360 | ||
1195 | /* if we can't use MSI-X we only need one fp, | 1361 | #ifdef BCM_CNIC |
1196 | * so try to enable MSI-X with the requested number of fp's | 1362 | static inline void bnx2x_set_fcoe_eth_macs(struct bnx2x *bp) |
1197 | * and fallback to MSI or legacy INTx with one fp | 1363 | { |
1198 | */ | 1364 | if (!NO_FCOE(bp)) { |
1199 | rc = bnx2x_enable_msix(bp); | 1365 | if (!IS_MF_SD(bp)) |
1200 | if (rc) | 1366 | bnx2x_set_fip_eth_mac_addr(bp, 1); |
1201 | /* failed to enable MSI-X */ | 1367 | bnx2x_set_all_enode_macs(bp, 1); |
1202 | bp->num_queues = 1; | 1368 | bp->flags |= FCOE_MACS_SET; |
1203 | break; | ||
1204 | } | 1369 | } |
1205 | bp->dev->real_num_tx_queues = bp->num_queues; | 1370 | } |
1371 | #endif | ||
1372 | |||
1373 | static void bnx2x_release_firmware(struct bnx2x *bp) | ||
1374 | { | ||
1375 | kfree(bp->init_ops_offsets); | ||
1376 | kfree(bp->init_ops); | ||
1377 | kfree(bp->init_data); | ||
1378 | release_firmware(bp->firmware); | ||
1379 | } | ||
1380 | |||
1381 | static inline int bnx2x_set_real_num_queues(struct bnx2x *bp) | ||
1382 | { | ||
1383 | int rc, num = bp->num_queues; | ||
1384 | |||
1385 | #ifdef BCM_CNIC | ||
1386 | if (NO_FCOE(bp)) | ||
1387 | num -= FCOE_CONTEXT_USE; | ||
1388 | |||
1389 | #endif | ||
1390 | netif_set_real_num_tx_queues(bp->dev, num); | ||
1391 | rc = netif_set_real_num_rx_queues(bp->dev, num); | ||
1206 | return rc; | 1392 | return rc; |
1207 | } | 1393 | } |
1208 | 1394 | ||
1395 | static inline void bnx2x_set_rx_buf_size(struct bnx2x *bp) | ||
1396 | { | ||
1397 | int i; | ||
1398 | |||
1399 | for_each_queue(bp, i) { | ||
1400 | struct bnx2x_fastpath *fp = &bp->fp[i]; | ||
1401 | |||
1402 | /* Always use a mini-jumbo MTU for the FCoE L2 ring */ | ||
1403 | if (IS_FCOE_IDX(i)) | ||
1404 | /* | ||
1405 | * Although there are no IP frames expected to arrive to | ||
1406 | * this ring we still want to add an | ||
1407 | * IP_HEADER_ALIGNMENT_PADDING to prevent a buffer | ||
1408 | * overrun attack. | ||
1409 | */ | ||
1410 | fp->rx_buf_size = | ||
1411 | BNX2X_FCOE_MINI_JUMBO_MTU + ETH_OVREHEAD + | ||
1412 | BNX2X_RX_ALIGN + IP_HEADER_ALIGNMENT_PADDING; | ||
1413 | else | ||
1414 | fp->rx_buf_size = | ||
1415 | bp->dev->mtu + ETH_OVREHEAD + BNX2X_RX_ALIGN + | ||
1416 | IP_HEADER_ALIGNMENT_PADDING; | ||
1417 | } | ||
1418 | } | ||
1419 | |||
1209 | /* must be called with rtnl_lock */ | 1420 | /* must be called with rtnl_lock */ |
1210 | int bnx2x_nic_load(struct bnx2x *bp, int load_mode) | 1421 | int bnx2x_nic_load(struct bnx2x *bp, int load_mode) |
1211 | { | 1422 | { |
1212 | u32 load_code; | 1423 | u32 load_code; |
1213 | int i, rc; | 1424 | int i, rc; |
1214 | 1425 | ||
1426 | /* Set init arrays */ | ||
1427 | rc = bnx2x_init_firmware(bp); | ||
1428 | if (rc) { | ||
1429 | BNX2X_ERR("Error loading firmware\n"); | ||
1430 | return rc; | ||
1431 | } | ||
1432 | |||
1215 | #ifdef BNX2X_STOP_ON_ERROR | 1433 | #ifdef BNX2X_STOP_ON_ERROR |
1216 | if (unlikely(bp->panic)) | 1434 | if (unlikely(bp->panic)) |
1217 | return -EPERM; | 1435 | return -EPERM; |
@@ -1219,83 +1437,88 @@ int bnx2x_nic_load(struct bnx2x *bp, int load_mode) | |||
1219 | 1437 | ||
1220 | bp->state = BNX2X_STATE_OPENING_WAIT4_LOAD; | 1438 | bp->state = BNX2X_STATE_OPENING_WAIT4_LOAD; |
1221 | 1439 | ||
1222 | rc = bnx2x_set_num_queues(bp); | 1440 | /* Set the initial link reported state to link down */ |
1441 | bnx2x_acquire_phy_lock(bp); | ||
1442 | memset(&bp->last_reported_link, 0, sizeof(bp->last_reported_link)); | ||
1443 | __set_bit(BNX2X_LINK_REPORT_LINK_DOWN, | ||
1444 | &bp->last_reported_link.link_report_flags); | ||
1445 | bnx2x_release_phy_lock(bp); | ||
1223 | 1446 | ||
1224 | if (bnx2x_alloc_mem(bp)) { | 1447 | /* must be called before memory allocation and HW init */ |
1225 | bnx2x_free_irq(bp, true); | 1448 | bnx2x_ilt_set_info(bp); |
1226 | return -ENOMEM; | 1449 | |
1227 | } | 1450 | /* zero fastpath structures preserving invariants like napi which are |
1451 | * allocated only once | ||
1452 | */ | ||
1453 | for_each_queue(bp, i) | ||
1454 | bnx2x_bz_fp(bp, i); | ||
1455 | |||
1456 | /* Set the receive queues buffer size */ | ||
1457 | bnx2x_set_rx_buf_size(bp); | ||
1228 | 1458 | ||
1229 | for_each_queue(bp, i) | 1459 | for_each_queue(bp, i) |
1230 | bnx2x_fp(bp, i, disable_tpa) = | 1460 | bnx2x_fp(bp, i, disable_tpa) = |
1231 | ((bp->flags & TPA_ENABLE_FLAG) == 0); | 1461 | ((bp->flags & TPA_ENABLE_FLAG) == 0); |
1232 | 1462 | ||
1233 | for_each_queue(bp, i) | 1463 | #ifdef BCM_CNIC |
1234 | netif_napi_add(bp->dev, &bnx2x_fp(bp, i, napi), | 1464 | /* We don't want TPA on FCoE L2 ring */ |
1235 | bnx2x_poll, 128); | 1465 | bnx2x_fcoe(bp, disable_tpa) = 1; |
1466 | #endif | ||
1236 | 1467 | ||
1237 | bnx2x_napi_enable(bp); | 1468 | if (bnx2x_alloc_mem(bp)) |
1469 | return -ENOMEM; | ||
1238 | 1470 | ||
1239 | if (bp->flags & USING_MSIX_FLAG) { | 1471 | /* As long as bnx2x_alloc_mem() may possibly update |
1240 | rc = bnx2x_req_msix_irqs(bp); | 1472 | * bp->num_queues, bnx2x_set_real_num_queues() should always |
1241 | if (rc) { | 1473 | * come after it. |
1242 | bnx2x_free_irq(bp, true); | 1474 | */ |
1243 | goto load_error1; | 1475 | rc = bnx2x_set_real_num_queues(bp); |
1244 | } | 1476 | if (rc) { |
1245 | } else { | 1477 | BNX2X_ERR("Unable to set real_num_queues\n"); |
1246 | /* Fall to INTx if failed to enable MSI-X due to lack of | 1478 | goto load_error0; |
1247 | memory (in bnx2x_set_num_queues()) */ | ||
1248 | if ((rc != -ENOMEM) && (bp->int_mode != INT_MODE_INTx)) | ||
1249 | bnx2x_enable_msi(bp); | ||
1250 | bnx2x_ack_int(bp); | ||
1251 | rc = bnx2x_req_irq(bp); | ||
1252 | if (rc) { | ||
1253 | BNX2X_ERR("IRQ request failed rc %d, aborting\n", rc); | ||
1254 | bnx2x_free_irq(bp, true); | ||
1255 | goto load_error1; | ||
1256 | } | ||
1257 | if (bp->flags & USING_MSI_FLAG) { | ||
1258 | bp->dev->irq = bp->pdev->irq; | ||
1259 | netdev_info(bp->dev, "using MSI IRQ %d\n", | ||
1260 | bp->pdev->irq); | ||
1261 | } | ||
1262 | } | 1479 | } |
1263 | 1480 | ||
1481 | bnx2x_napi_enable(bp); | ||
1482 | |||
1264 | /* Send LOAD_REQUEST command to MCP | 1483 | /* Send LOAD_REQUEST command to MCP |
1265 | Returns the type of LOAD command: | 1484 | Returns the type of LOAD command: |
1266 | if it is the first port to be initialized | 1485 | if it is the first port to be initialized |
1267 | common blocks should be initialized, otherwise - not | 1486 | common blocks should be initialized, otherwise - not |
1268 | */ | 1487 | */ |
1269 | if (!BP_NOMCP(bp)) { | 1488 | if (!BP_NOMCP(bp)) { |
1270 | load_code = bnx2x_fw_command(bp, DRV_MSG_CODE_LOAD_REQ); | 1489 | load_code = bnx2x_fw_command(bp, DRV_MSG_CODE_LOAD_REQ, 0); |
1271 | if (!load_code) { | 1490 | if (!load_code) { |
1272 | BNX2X_ERR("MCP response failure, aborting\n"); | 1491 | BNX2X_ERR("MCP response failure, aborting\n"); |
1273 | rc = -EBUSY; | 1492 | rc = -EBUSY; |
1274 | goto load_error2; | 1493 | goto load_error1; |
1275 | } | 1494 | } |
1276 | if (load_code == FW_MSG_CODE_DRV_LOAD_REFUSED) { | 1495 | if (load_code == FW_MSG_CODE_DRV_LOAD_REFUSED) { |
1277 | rc = -EBUSY; /* other port in diagnostic mode */ | 1496 | rc = -EBUSY; /* other port in diagnostic mode */ |
1278 | goto load_error2; | 1497 | goto load_error1; |
1279 | } | 1498 | } |
1280 | 1499 | ||
1281 | } else { | 1500 | } else { |
1501 | int path = BP_PATH(bp); | ||
1282 | int port = BP_PORT(bp); | 1502 | int port = BP_PORT(bp); |
1283 | 1503 | ||
1284 | DP(NETIF_MSG_IFUP, "NO MCP - load counts %d, %d, %d\n", | 1504 | DP(NETIF_MSG_IFUP, "NO MCP - load counts[%d] %d, %d, %d\n", |
1285 | load_count[0], load_count[1], load_count[2]); | 1505 | path, load_count[path][0], load_count[path][1], |
1286 | load_count[0]++; | 1506 | load_count[path][2]); |
1287 | load_count[1 + port]++; | 1507 | load_count[path][0]++; |
1288 | DP(NETIF_MSG_IFUP, "NO MCP - new load counts %d, %d, %d\n", | 1508 | load_count[path][1 + port]++; |
1289 | load_count[0], load_count[1], load_count[2]); | 1509 | DP(NETIF_MSG_IFUP, "NO MCP - new load counts[%d] %d, %d, %d\n", |
1290 | if (load_count[0] == 1) | 1510 | path, load_count[path][0], load_count[path][1], |
1511 | load_count[path][2]); | ||
1512 | if (load_count[path][0] == 1) | ||
1291 | load_code = FW_MSG_CODE_DRV_LOAD_COMMON; | 1513 | load_code = FW_MSG_CODE_DRV_LOAD_COMMON; |
1292 | else if (load_count[1 + port] == 1) | 1514 | else if (load_count[path][1 + port] == 1) |
1293 | load_code = FW_MSG_CODE_DRV_LOAD_PORT; | 1515 | load_code = FW_MSG_CODE_DRV_LOAD_PORT; |
1294 | else | 1516 | else |
1295 | load_code = FW_MSG_CODE_DRV_LOAD_FUNCTION; | 1517 | load_code = FW_MSG_CODE_DRV_LOAD_FUNCTION; |
1296 | } | 1518 | } |
1297 | 1519 | ||
1298 | if ((load_code == FW_MSG_CODE_DRV_LOAD_COMMON) || | 1520 | if ((load_code == FW_MSG_CODE_DRV_LOAD_COMMON) || |
1521 | (load_code == FW_MSG_CODE_DRV_LOAD_COMMON_CHIP) || | ||
1299 | (load_code == FW_MSG_CODE_DRV_LOAD_PORT)) | 1522 | (load_code == FW_MSG_CODE_DRV_LOAD_PORT)) |
1300 | bp->port.pmf = 1; | 1523 | bp->port.pmf = 1; |
1301 | else | 1524 | else |
@@ -1306,16 +1529,22 @@ int bnx2x_nic_load(struct bnx2x *bp, int load_mode) | |||
1306 | rc = bnx2x_init_hw(bp, load_code); | 1529 | rc = bnx2x_init_hw(bp, load_code); |
1307 | if (rc) { | 1530 | if (rc) { |
1308 | BNX2X_ERR("HW init failed, aborting\n"); | 1531 | BNX2X_ERR("HW init failed, aborting\n"); |
1309 | bnx2x_fw_command(bp, DRV_MSG_CODE_LOAD_DONE); | 1532 | bnx2x_fw_command(bp, DRV_MSG_CODE_LOAD_DONE, 0); |
1310 | bnx2x_fw_command(bp, DRV_MSG_CODE_UNLOAD_REQ_WOL_MCP); | 1533 | goto load_error2; |
1311 | bnx2x_fw_command(bp, DRV_MSG_CODE_UNLOAD_DONE); | 1534 | } |
1535 | |||
1536 | /* Connect to IRQs */ | ||
1537 | rc = bnx2x_setup_irqs(bp); | ||
1538 | if (rc) { | ||
1539 | bnx2x_fw_command(bp, DRV_MSG_CODE_LOAD_DONE, 0); | ||
1312 | goto load_error2; | 1540 | goto load_error2; |
1313 | } | 1541 | } |
1314 | 1542 | ||
1315 | /* Setup NIC internals and enable interrupts */ | 1543 | /* Setup NIC internals and enable interrupts */ |
1316 | bnx2x_nic_init(bp, load_code); | 1544 | bnx2x_nic_init(bp, load_code); |
1317 | 1545 | ||
1318 | if ((load_code == FW_MSG_CODE_DRV_LOAD_COMMON) && | 1546 | if (((load_code == FW_MSG_CODE_DRV_LOAD_COMMON) || |
1547 | (load_code == FW_MSG_CODE_DRV_LOAD_COMMON_CHIP)) && | ||
1319 | (bp->common.shmem2_base)) | 1548 | (bp->common.shmem2_base)) |
1320 | SHMEM2_WR(bp, dcc_support, | 1549 | SHMEM2_WR(bp, dcc_support, |
1321 | (SHMEM_DCC_SUPPORT_DISABLE_ENABLE_PF_TLV | | 1550 | (SHMEM_DCC_SUPPORT_DISABLE_ENABLE_PF_TLV | |
@@ -1323,7 +1552,7 @@ int bnx2x_nic_load(struct bnx2x *bp, int load_mode) | |||
1323 | 1552 | ||
1324 | /* Send LOAD_DONE command to MCP */ | 1553 | /* Send LOAD_DONE command to MCP */ |
1325 | if (!BP_NOMCP(bp)) { | 1554 | if (!BP_NOMCP(bp)) { |
1326 | load_code = bnx2x_fw_command(bp, DRV_MSG_CODE_LOAD_DONE); | 1555 | load_code = bnx2x_fw_command(bp, DRV_MSG_CODE_LOAD_DONE, 0); |
1327 | if (!load_code) { | 1556 | if (!load_code) { |
1328 | BNX2X_ERR("MCP response failure, aborting\n"); | 1557 | BNX2X_ERR("MCP response failure, aborting\n"); |
1329 | rc = -EBUSY; | 1558 | rc = -EBUSY; |
@@ -1331,9 +1560,22 @@ int bnx2x_nic_load(struct bnx2x *bp, int load_mode) | |||
1331 | } | 1560 | } |
1332 | } | 1561 | } |
1333 | 1562 | ||
1563 | bnx2x_dcbx_init(bp); | ||
1564 | |||
1334 | bp->state = BNX2X_STATE_OPENING_WAIT4_PORT; | 1565 | bp->state = BNX2X_STATE_OPENING_WAIT4_PORT; |
1335 | 1566 | ||
1336 | rc = bnx2x_setup_leading(bp); | 1567 | rc = bnx2x_func_start(bp); |
1568 | if (rc) { | ||
1569 | BNX2X_ERR("Function start failed!\n"); | ||
1570 | #ifndef BNX2X_STOP_ON_ERROR | ||
1571 | goto load_error3; | ||
1572 | #else | ||
1573 | bp->panic = 1; | ||
1574 | return -EBUSY; | ||
1575 | #endif | ||
1576 | } | ||
1577 | |||
1578 | rc = bnx2x_setup_client(bp, &bp->fp[0], 1 /* Leading */); | ||
1337 | if (rc) { | 1579 | if (rc) { |
1338 | BNX2X_ERR("Setup leading failed!\n"); | 1580 | BNX2X_ERR("Setup leading failed!\n"); |
1339 | #ifndef BNX2X_STOP_ON_ERROR | 1581 | #ifndef BNX2X_STOP_ON_ERROR |
@@ -1344,69 +1586,70 @@ int bnx2x_nic_load(struct bnx2x *bp, int load_mode) | |||
1344 | #endif | 1586 | #endif |
1345 | } | 1587 | } |
1346 | 1588 | ||
1347 | if (CHIP_IS_E1H(bp)) | 1589 | if (!CHIP_IS_E1(bp) && |
1348 | if (bp->mf_config & FUNC_MF_CFG_FUNC_DISABLED) { | 1590 | (bp->mf_config[BP_VN(bp)] & FUNC_MF_CFG_FUNC_DISABLED)) { |
1349 | DP(NETIF_MSG_IFUP, "mf_cfg function disabled\n"); | 1591 | DP(NETIF_MSG_IFUP, "mf_cfg function disabled\n"); |
1350 | bp->flags |= MF_FUNC_DIS; | 1592 | bp->flags |= MF_FUNC_DIS; |
1351 | } | 1593 | } |
1352 | 1594 | ||
1353 | if (bp->state == BNX2X_STATE_OPEN) { | ||
1354 | #ifdef BCM_CNIC | 1595 | #ifdef BCM_CNIC |
1355 | /* Enable Timer scan */ | 1596 | /* Enable Timer scan */ |
1356 | REG_WR(bp, TM_REG_EN_LINEAR0_TIMER + BP_PORT(bp)*4, 1); | 1597 | REG_WR(bp, TM_REG_EN_LINEAR0_TIMER + BP_PORT(bp)*4, 1); |
1357 | #endif | 1598 | #endif |
1358 | for_each_nondefault_queue(bp, i) { | 1599 | |
1359 | rc = bnx2x_setup_multi(bp, i); | 1600 | for_each_nondefault_queue(bp, i) { |
1360 | if (rc) | 1601 | rc = bnx2x_setup_client(bp, &bp->fp[i], 0); |
1602 | if (rc) | ||
1361 | #ifdef BCM_CNIC | 1603 | #ifdef BCM_CNIC |
1362 | goto load_error4; | 1604 | goto load_error4; |
1363 | #else | 1605 | #else |
1364 | goto load_error3; | 1606 | goto load_error3; |
1365 | #endif | 1607 | #endif |
1366 | } | 1608 | } |
1609 | |||
1610 | /* Now when Clients are configured we are ready to work */ | ||
1611 | bp->state = BNX2X_STATE_OPEN; | ||
1367 | 1612 | ||
1368 | if (CHIP_IS_E1(bp)) | ||
1369 | bnx2x_set_eth_mac_addr_e1(bp, 1); | ||
1370 | else | ||
1371 | bnx2x_set_eth_mac_addr_e1h(bp, 1); | ||
1372 | #ifdef BCM_CNIC | 1613 | #ifdef BCM_CNIC |
1373 | /* Set iSCSI L2 MAC */ | 1614 | bnx2x_set_fcoe_eth_macs(bp); |
1374 | mutex_lock(&bp->cnic_mutex); | ||
1375 | if (bp->cnic_eth_dev.drv_state & CNIC_DRV_STATE_REGD) { | ||
1376 | bnx2x_set_iscsi_eth_mac_addr(bp, 1); | ||
1377 | bp->cnic_flags |= BNX2X_CNIC_FLAG_MAC_SET; | ||
1378 | bnx2x_init_sb(bp, bp->cnic_sb, bp->cnic_sb_mapping, | ||
1379 | CNIC_SB_ID(bp)); | ||
1380 | } | ||
1381 | mutex_unlock(&bp->cnic_mutex); | ||
1382 | #endif | 1615 | #endif |
1616 | |||
1617 | bnx2x_set_eth_mac(bp, 1); | ||
1618 | |||
1619 | /* Clear MC configuration */ | ||
1620 | if (CHIP_IS_E1(bp)) | ||
1621 | bnx2x_invalidate_e1_mc_list(bp); | ||
1622 | else | ||
1623 | bnx2x_invalidate_e1h_mc_list(bp); | ||
1624 | |||
1625 | /* Clear UC lists configuration */ | ||
1626 | bnx2x_invalidate_uc_list(bp); | ||
1627 | |||
1628 | if (bp->pending_max) { | ||
1629 | bnx2x_update_max_mf_config(bp, bp->pending_max); | ||
1630 | bp->pending_max = 0; | ||
1383 | } | 1631 | } |
1384 | 1632 | ||
1385 | if (bp->port.pmf) | 1633 | if (bp->port.pmf) |
1386 | bnx2x_initial_phy_init(bp, load_mode); | 1634 | bnx2x_initial_phy_init(bp, load_mode); |
1387 | 1635 | ||
1636 | /* Initialize Rx filtering */ | ||
1637 | bnx2x_set_rx_mode(bp->dev); | ||
1638 | |||
1388 | /* Start fast path */ | 1639 | /* Start fast path */ |
1389 | switch (load_mode) { | 1640 | switch (load_mode) { |
1390 | case LOAD_NORMAL: | 1641 | case LOAD_NORMAL: |
1391 | if (bp->state == BNX2X_STATE_OPEN) { | 1642 | /* Tx queue should be only reenabled */ |
1392 | /* Tx queue should be only reenabled */ | 1643 | netif_tx_wake_all_queues(bp->dev); |
1393 | netif_tx_wake_all_queues(bp->dev); | ||
1394 | } | ||
1395 | /* Initialize the receive filter. */ | 1644 | /* Initialize the receive filter. */ |
1396 | bnx2x_set_rx_mode(bp->dev); | ||
1397 | break; | 1645 | break; |
1398 | 1646 | ||
1399 | case LOAD_OPEN: | 1647 | case LOAD_OPEN: |
1400 | netif_tx_start_all_queues(bp->dev); | 1648 | netif_tx_start_all_queues(bp->dev); |
1401 | if (bp->state != BNX2X_STATE_OPEN) | 1649 | smp_mb__after_clear_bit(); |
1402 | netif_tx_disable(bp->dev); | ||
1403 | /* Initialize the receive filter. */ | ||
1404 | bnx2x_set_rx_mode(bp->dev); | ||
1405 | break; | 1650 | break; |
1406 | 1651 | ||
1407 | case LOAD_DIAG: | 1652 | case LOAD_DIAG: |
1408 | /* Initialize the receive filter. */ | ||
1409 | bnx2x_set_rx_mode(bp->dev); | ||
1410 | bp->state = BNX2X_STATE_DIAG; | 1653 | bp->state = BNX2X_STATE_DIAG; |
1411 | break; | 1654 | break; |
1412 | 1655 | ||
@@ -1427,6 +1670,8 @@ int bnx2x_nic_load(struct bnx2x *bp, int load_mode) | |||
1427 | #endif | 1670 | #endif |
1428 | bnx2x_inc_load_cnt(bp); | 1671 | bnx2x_inc_load_cnt(bp); |
1429 | 1672 | ||
1673 | bnx2x_release_firmware(bp); | ||
1674 | |||
1430 | return 0; | 1675 | return 0; |
1431 | 1676 | ||
1432 | #ifdef BCM_CNIC | 1677 | #ifdef BCM_CNIC |
@@ -1436,24 +1681,28 @@ load_error4: | |||
1436 | #endif | 1681 | #endif |
1437 | load_error3: | 1682 | load_error3: |
1438 | bnx2x_int_disable_sync(bp, 1); | 1683 | bnx2x_int_disable_sync(bp, 1); |
1439 | if (!BP_NOMCP(bp)) { | 1684 | |
1440 | bnx2x_fw_command(bp, DRV_MSG_CODE_UNLOAD_REQ_WOL_MCP); | ||
1441 | bnx2x_fw_command(bp, DRV_MSG_CODE_UNLOAD_DONE); | ||
1442 | } | ||
1443 | bp->port.pmf = 0; | ||
1444 | /* Free SKBs, SGEs, TPA pool and driver internals */ | 1685 | /* Free SKBs, SGEs, TPA pool and driver internals */ |
1445 | bnx2x_free_skbs(bp); | 1686 | bnx2x_free_skbs(bp); |
1446 | for_each_queue(bp, i) | 1687 | for_each_rx_queue(bp, i) |
1447 | bnx2x_free_rx_sge_range(bp, bp->fp + i, NUM_RX_SGE); | 1688 | bnx2x_free_rx_sge_range(bp, bp->fp + i, NUM_RX_SGE); |
1448 | load_error2: | 1689 | |
1449 | /* Release IRQs */ | 1690 | /* Release IRQs */ |
1450 | bnx2x_free_irq(bp, false); | 1691 | bnx2x_free_irq(bp); |
1692 | load_error2: | ||
1693 | if (!BP_NOMCP(bp)) { | ||
1694 | bnx2x_fw_command(bp, DRV_MSG_CODE_UNLOAD_REQ_WOL_MCP, 0); | ||
1695 | bnx2x_fw_command(bp, DRV_MSG_CODE_UNLOAD_DONE, 0); | ||
1696 | } | ||
1697 | |||
1698 | bp->port.pmf = 0; | ||
1451 | load_error1: | 1699 | load_error1: |
1452 | bnx2x_napi_disable(bp); | 1700 | bnx2x_napi_disable(bp); |
1453 | for_each_queue(bp, i) | 1701 | load_error0: |
1454 | netif_napi_del(&bnx2x_fp(bp, i, napi)); | ||
1455 | bnx2x_free_mem(bp); | 1702 | bnx2x_free_mem(bp); |
1456 | 1703 | ||
1704 | bnx2x_release_firmware(bp); | ||
1705 | |||
1457 | return rc; | 1706 | return rc; |
1458 | } | 1707 | } |
1459 | 1708 | ||
@@ -1481,30 +1730,34 @@ int bnx2x_nic_unload(struct bnx2x *bp, int unload_mode) | |||
1481 | bp->rx_mode = BNX2X_RX_MODE_NONE; | 1730 | bp->rx_mode = BNX2X_RX_MODE_NONE; |
1482 | bnx2x_set_storm_rx_mode(bp); | 1731 | bnx2x_set_storm_rx_mode(bp); |
1483 | 1732 | ||
1484 | /* Disable HW interrupts, NAPI and Tx */ | 1733 | /* Stop Tx */ |
1485 | bnx2x_netif_stop(bp, 1); | 1734 | bnx2x_tx_disable(bp); |
1486 | netif_carrier_off(bp->dev); | ||
1487 | 1735 | ||
1488 | del_timer_sync(&bp->timer); | 1736 | del_timer_sync(&bp->timer); |
1489 | SHMEM_WR(bp, func_mb[BP_FUNC(bp)].drv_pulse_mb, | 1737 | |
1738 | SHMEM_WR(bp, func_mb[BP_FW_MB_IDX(bp)].drv_pulse_mb, | ||
1490 | (DRV_PULSE_ALWAYS_ALIVE | bp->fw_drv_pulse_wr_seq)); | 1739 | (DRV_PULSE_ALWAYS_ALIVE | bp->fw_drv_pulse_wr_seq)); |
1491 | bnx2x_stats_handle(bp, STATS_EVENT_STOP); | ||
1492 | 1740 | ||
1493 | /* Release IRQs */ | 1741 | bnx2x_stats_handle(bp, STATS_EVENT_STOP); |
1494 | bnx2x_free_irq(bp, false); | ||
1495 | 1742 | ||
1496 | /* Cleanup the chip if needed */ | 1743 | /* Cleanup the chip if needed */ |
1497 | if (unload_mode != UNLOAD_RECOVERY) | 1744 | if (unload_mode != UNLOAD_RECOVERY) |
1498 | bnx2x_chip_cleanup(bp, unload_mode); | 1745 | bnx2x_chip_cleanup(bp, unload_mode); |
1746 | else { | ||
1747 | /* Disable HW interrupts, NAPI and Tx */ | ||
1748 | bnx2x_netif_stop(bp, 1); | ||
1749 | |||
1750 | /* Release IRQs */ | ||
1751 | bnx2x_free_irq(bp); | ||
1752 | } | ||
1499 | 1753 | ||
1500 | bp->port.pmf = 0; | 1754 | bp->port.pmf = 0; |
1501 | 1755 | ||
1502 | /* Free SKBs, SGEs, TPA pool and driver internals */ | 1756 | /* Free SKBs, SGEs, TPA pool and driver internals */ |
1503 | bnx2x_free_skbs(bp); | 1757 | bnx2x_free_skbs(bp); |
1504 | for_each_queue(bp, i) | 1758 | for_each_rx_queue(bp, i) |
1505 | bnx2x_free_rx_sge_range(bp, bp->fp + i, NUM_RX_SGE); | 1759 | bnx2x_free_rx_sge_range(bp, bp->fp + i, NUM_RX_SGE); |
1506 | for_each_queue(bp, i) | 1760 | |
1507 | netif_napi_del(&bnx2x_fp(bp, i, napi)); | ||
1508 | bnx2x_free_mem(bp); | 1761 | bnx2x_free_mem(bp); |
1509 | 1762 | ||
1510 | bp->state = BNX2X_STATE_CLOSED; | 1763 | bp->state = BNX2X_STATE_CLOSED; |
@@ -1522,10 +1775,17 @@ int bnx2x_nic_unload(struct bnx2x *bp, int unload_mode) | |||
1522 | 1775 | ||
1523 | return 0; | 1776 | return 0; |
1524 | } | 1777 | } |
1778 | |||
1525 | int bnx2x_set_power_state(struct bnx2x *bp, pci_power_t state) | 1779 | int bnx2x_set_power_state(struct bnx2x *bp, pci_power_t state) |
1526 | { | 1780 | { |
1527 | u16 pmcsr; | 1781 | u16 pmcsr; |
1528 | 1782 | ||
1783 | /* If there is no power capability, silently succeed */ | ||
1784 | if (!bp->pm_cap) { | ||
1785 | DP(NETIF_MSG_HW, "No power capability. Breaking.\n"); | ||
1786 | return 0; | ||
1787 | } | ||
1788 | |||
1529 | pci_read_config_word(bp->pdev, bp->pm_cap + PCI_PM_CTRL, &pmcsr); | 1789 | pci_read_config_word(bp->pdev, bp->pm_cap + PCI_PM_CTRL, &pmcsr); |
1530 | 1790 | ||
1531 | switch (state) { | 1791 | switch (state) { |
@@ -1568,13 +1828,10 @@ int bnx2x_set_power_state(struct bnx2x *bp, pci_power_t state) | |||
1568 | return 0; | 1828 | return 0; |
1569 | } | 1829 | } |
1570 | 1830 | ||
1571 | |||
1572 | |||
1573 | /* | 1831 | /* |
1574 | * net_device service functions | 1832 | * net_device service functions |
1575 | */ | 1833 | */ |
1576 | 1834 | int bnx2x_poll(struct napi_struct *napi, int budget) | |
1577 | static int bnx2x_poll(struct napi_struct *napi, int budget) | ||
1578 | { | 1835 | { |
1579 | int work_done = 0; | 1836 | int work_done = 0; |
1580 | struct bnx2x_fastpath *fp = container_of(napi, struct bnx2x_fastpath, | 1837 | struct bnx2x_fastpath *fp = container_of(napi, struct bnx2x_fastpath, |
@@ -1602,28 +1859,40 @@ static int bnx2x_poll(struct napi_struct *napi, int budget) | |||
1602 | 1859 | ||
1603 | /* Fall out from the NAPI loop if needed */ | 1860 | /* Fall out from the NAPI loop if needed */ |
1604 | if (!(bnx2x_has_rx_work(fp) || bnx2x_has_tx_work(fp))) { | 1861 | if (!(bnx2x_has_rx_work(fp) || bnx2x_has_tx_work(fp))) { |
1862 | #ifdef BCM_CNIC | ||
1863 | /* No need to update SB for FCoE L2 ring as long as | ||
1864 | * it's connected to the default SB and the SB | ||
1865 | * has been updated when NAPI was scheduled. | ||
1866 | */ | ||
1867 | if (IS_FCOE_FP(fp)) { | ||
1868 | napi_complete(napi); | ||
1869 | break; | ||
1870 | } | ||
1871 | #endif | ||
1872 | |||
1605 | bnx2x_update_fpsb_idx(fp); | 1873 | bnx2x_update_fpsb_idx(fp); |
1606 | /* bnx2x_has_rx_work() reads the status block, thus we need | 1874 | /* bnx2x_has_rx_work() reads the status block, |
1607 | * to ensure that status block indices have been actually read | 1875 | * thus we need to ensure that status block indices |
1608 | * (bnx2x_update_fpsb_idx) prior to this check | 1876 | * have been actually read (bnx2x_update_fpsb_idx) |
1609 | * (bnx2x_has_rx_work) so that we won't write the "newer" | 1877 | * prior to this check (bnx2x_has_rx_work) so that |
1610 | * value of the status block to IGU (if there was a DMA right | 1878 | * we won't write the "newer" value of the status block |
1611 | * after bnx2x_has_rx_work and if there is no rmb, the memory | 1879 | * to IGU (if there was a DMA right after |
1612 | * reading (bnx2x_update_fpsb_idx) may be postponed to right | 1880 | * bnx2x_has_rx_work and if there is no rmb, the memory |
1613 | * before bnx2x_ack_sb). In this case there will never be | 1881 | * reading (bnx2x_update_fpsb_idx) may be postponed |
1614 | * another interrupt until there is another update of the | 1882 | * to right before bnx2x_ack_sb). In this case there |
1615 | * status block, while there is still unhandled work. | 1883 | * will never be another interrupt until there is |
1616 | */ | 1884 | * another update of the status block, while there |
1885 | * is still unhandled work. | ||
1886 | */ | ||
1617 | rmb(); | 1887 | rmb(); |
1618 | 1888 | ||
1619 | if (!(bnx2x_has_rx_work(fp) || bnx2x_has_tx_work(fp))) { | 1889 | if (!(bnx2x_has_rx_work(fp) || bnx2x_has_tx_work(fp))) { |
1620 | napi_complete(napi); | 1890 | napi_complete(napi); |
1621 | /* Re-enable interrupts */ | 1891 | /* Re-enable interrupts */ |
1622 | bnx2x_ack_sb(bp, fp->sb_id, CSTORM_ID, | 1892 | DP(NETIF_MSG_HW, |
1623 | le16_to_cpu(fp->fp_c_idx), | 1893 | "Update index to %d\n", fp->fp_hc_idx); |
1624 | IGU_INT_NOP, 1); | 1894 | bnx2x_ack_sb(bp, fp->igu_sb_id, USTORM_ID, |
1625 | bnx2x_ack_sb(bp, fp->sb_id, USTORM_ID, | 1895 | le16_to_cpu(fp->fp_hc_idx), |
1626 | le16_to_cpu(fp->fp_u_idx), | ||
1627 | IGU_INT_ENABLE, 1); | 1896 | IGU_INT_ENABLE, 1); |
1628 | break; | 1897 | break; |
1629 | } | 1898 | } |
@@ -1633,7 +1902,6 @@ static int bnx2x_poll(struct napi_struct *napi, int budget) | |||
1633 | return work_done; | 1902 | return work_done; |
1634 | } | 1903 | } |
1635 | 1904 | ||
1636 | |||
1637 | /* we split the first BD into headers and data BDs | 1905 | /* we split the first BD into headers and data BDs |
1638 | * to ease the pain of our fellow microcode engineers | 1906 | * to ease the pain of our fellow microcode engineers |
1639 | * we use one mapping for both BDs | 1907 | * we use one mapping for both BDs |
@@ -1705,7 +1973,7 @@ static inline u32 bnx2x_xmit_type(struct bnx2x *bp, struct sk_buff *skb) | |||
1705 | rc = XMIT_PLAIN; | 1973 | rc = XMIT_PLAIN; |
1706 | 1974 | ||
1707 | else { | 1975 | else { |
1708 | if (skb->protocol == htons(ETH_P_IPV6)) { | 1976 | if (vlan_get_protocol(skb) == htons(ETH_P_IPV6)) { |
1709 | rc = XMIT_CSUM_V6; | 1977 | rc = XMIT_CSUM_V6; |
1710 | if (ipv6_hdr(skb)->nexthdr == IPPROTO_TCP) | 1978 | if (ipv6_hdr(skb)->nexthdr == IPPROTO_TCP) |
1711 | rc |= XMIT_CSUM_TCP; | 1979 | rc |= XMIT_CSUM_TCP; |
@@ -1717,11 +1985,10 @@ static inline u32 bnx2x_xmit_type(struct bnx2x *bp, struct sk_buff *skb) | |||
1717 | } | 1985 | } |
1718 | } | 1986 | } |
1719 | 1987 | ||
1720 | if (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV4) | 1988 | if (skb_is_gso_v6(skb)) |
1721 | rc |= (XMIT_GSO_V4 | XMIT_CSUM_V4 | XMIT_CSUM_TCP); | 1989 | rc |= XMIT_GSO_V6 | XMIT_CSUM_TCP | XMIT_CSUM_V6; |
1722 | 1990 | else if (skb_is_gso(skb)) | |
1723 | else if (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV6) | 1991 | rc |= XMIT_GSO_V4 | XMIT_CSUM_V4 | XMIT_CSUM_TCP; |
1724 | rc |= (XMIT_GSO_V6 | XMIT_CSUM_TCP | XMIT_CSUM_V6); | ||
1725 | 1992 | ||
1726 | return rc; | 1993 | return rc; |
1727 | } | 1994 | } |
@@ -1807,6 +2074,135 @@ exit_lbl: | |||
1807 | } | 2074 | } |
1808 | #endif | 2075 | #endif |
1809 | 2076 | ||
2077 | static inline void bnx2x_set_pbd_gso_e2(struct sk_buff *skb, u32 *parsing_data, | ||
2078 | u32 xmit_type) | ||
2079 | { | ||
2080 | *parsing_data |= (skb_shinfo(skb)->gso_size << | ||
2081 | ETH_TX_PARSE_BD_E2_LSO_MSS_SHIFT) & | ||
2082 | ETH_TX_PARSE_BD_E2_LSO_MSS; | ||
2083 | if ((xmit_type & XMIT_GSO_V6) && | ||
2084 | (ipv6_hdr(skb)->nexthdr == NEXTHDR_IPV6)) | ||
2085 | *parsing_data |= ETH_TX_PARSE_BD_E2_IPV6_WITH_EXT_HDR; | ||
2086 | } | ||
2087 | |||
2088 | /** | ||
2089 | * bnx2x_set_pbd_gso - update PBD in GSO case. | ||
2090 | * | ||
2091 | * @skb: packet skb | ||
2092 | * @pbd: parse BD | ||
2093 | * @xmit_type: xmit flags | ||
2094 | */ | ||
2095 | static inline void bnx2x_set_pbd_gso(struct sk_buff *skb, | ||
2096 | struct eth_tx_parse_bd_e1x *pbd, | ||
2097 | u32 xmit_type) | ||
2098 | { | ||
2099 | pbd->lso_mss = cpu_to_le16(skb_shinfo(skb)->gso_size); | ||
2100 | pbd->tcp_send_seq = swab32(tcp_hdr(skb)->seq); | ||
2101 | pbd->tcp_flags = pbd_tcp_flags(skb); | ||
2102 | |||
2103 | if (xmit_type & XMIT_GSO_V4) { | ||
2104 | pbd->ip_id = swab16(ip_hdr(skb)->id); | ||
2105 | pbd->tcp_pseudo_csum = | ||
2106 | swab16(~csum_tcpudp_magic(ip_hdr(skb)->saddr, | ||
2107 | ip_hdr(skb)->daddr, | ||
2108 | 0, IPPROTO_TCP, 0)); | ||
2109 | |||
2110 | } else | ||
2111 | pbd->tcp_pseudo_csum = | ||
2112 | swab16(~csum_ipv6_magic(&ipv6_hdr(skb)->saddr, | ||
2113 | &ipv6_hdr(skb)->daddr, | ||
2114 | 0, IPPROTO_TCP, 0)); | ||
2115 | |||
2116 | pbd->global_data |= ETH_TX_PARSE_BD_E1X_PSEUDO_CS_WITHOUT_LEN; | ||
2117 | } | ||
2118 | |||
2119 | /** | ||
2120 | * bnx2x_set_pbd_csum_e2 - update PBD with checksum and return header length | ||
2121 | * | ||
2122 | * @bp: driver handle | ||
2123 | * @skb: packet skb | ||
2124 | * @parsing_data: data to be updated | ||
2125 | * @xmit_type: xmit flags | ||
2126 | * | ||
2127 | * 57712 related | ||
2128 | */ | ||
2129 | static inline u8 bnx2x_set_pbd_csum_e2(struct bnx2x *bp, struct sk_buff *skb, | ||
2130 | u32 *parsing_data, u32 xmit_type) | ||
2131 | { | ||
2132 | *parsing_data |= | ||
2133 | ((((u8 *)skb_transport_header(skb) - skb->data) >> 1) << | ||
2134 | ETH_TX_PARSE_BD_E2_TCP_HDR_START_OFFSET_W_SHIFT) & | ||
2135 | ETH_TX_PARSE_BD_E2_TCP_HDR_START_OFFSET_W; | ||
2136 | |||
2137 | if (xmit_type & XMIT_CSUM_TCP) { | ||
2138 | *parsing_data |= ((tcp_hdrlen(skb) / 4) << | ||
2139 | ETH_TX_PARSE_BD_E2_TCP_HDR_LENGTH_DW_SHIFT) & | ||
2140 | ETH_TX_PARSE_BD_E2_TCP_HDR_LENGTH_DW; | ||
2141 | |||
2142 | return skb_transport_header(skb) + tcp_hdrlen(skb) - skb->data; | ||
2143 | } else | ||
2144 | /* We support checksum offload for TCP and UDP only. | ||
2145 | * No need to pass the UDP header length - it's a constant. | ||
2146 | */ | ||
2147 | return skb_transport_header(skb) + | ||
2148 | sizeof(struct udphdr) - skb->data; | ||
2149 | } | ||
2150 | |||
2151 | /** | ||
2152 | * bnx2x_set_pbd_csum - update PBD with checksum and return header length | ||
2153 | * | ||
2154 | * @bp: driver handle | ||
2155 | * @skb: packet skb | ||
2156 | * @pbd: parse BD to be updated | ||
2157 | * @xmit_type: xmit flags | ||
2158 | */ | ||
2159 | static inline u8 bnx2x_set_pbd_csum(struct bnx2x *bp, struct sk_buff *skb, | ||
2160 | struct eth_tx_parse_bd_e1x *pbd, | ||
2161 | u32 xmit_type) | ||
2162 | { | ||
2163 | u8 hlen = (skb_network_header(skb) - skb->data) >> 1; | ||
2164 | |||
2165 | /* for now NS flag is not used in Linux */ | ||
2166 | pbd->global_data = | ||
2167 | (hlen | ((skb->protocol == cpu_to_be16(ETH_P_8021Q)) << | ||
2168 | ETH_TX_PARSE_BD_E1X_LLC_SNAP_EN_SHIFT)); | ||
2169 | |||
2170 | pbd->ip_hlen_w = (skb_transport_header(skb) - | ||
2171 | skb_network_header(skb)) >> 1; | ||
2172 | |||
2173 | hlen += pbd->ip_hlen_w; | ||
2174 | |||
2175 | /* We support checksum offload for TCP and UDP only */ | ||
2176 | if (xmit_type & XMIT_CSUM_TCP) | ||
2177 | hlen += tcp_hdrlen(skb) / 2; | ||
2178 | else | ||
2179 | hlen += sizeof(struct udphdr) / 2; | ||
2180 | |||
2181 | pbd->total_hlen_w = cpu_to_le16(hlen); | ||
2182 | hlen = hlen*2; | ||
2183 | |||
2184 | if (xmit_type & XMIT_CSUM_TCP) { | ||
2185 | pbd->tcp_pseudo_csum = swab16(tcp_hdr(skb)->check); | ||
2186 | |||
2187 | } else { | ||
2188 | s8 fix = SKB_CS_OFF(skb); /* signed! */ | ||
2189 | |||
2190 | DP(NETIF_MSG_TX_QUEUED, | ||
2191 | "hlen %d fix %d csum before fix %x\n", | ||
2192 | le16_to_cpu(pbd->total_hlen_w), fix, SKB_CS(skb)); | ||
2193 | |||
2194 | /* HW bug: fixup the CSUM */ | ||
2195 | pbd->tcp_pseudo_csum = | ||
2196 | bnx2x_csum_fix(skb_transport_header(skb), | ||
2197 | SKB_CS(skb), fix); | ||
2198 | |||
2199 | DP(NETIF_MSG_TX_QUEUED, "csum after fix %x\n", | ||
2200 | pbd->tcp_pseudo_csum); | ||
2201 | } | ||
2202 | |||
2203 | return hlen; | ||
2204 | } | ||
2205 | |||
1810 | /* called with netif_tx_lock | 2206 | /* called with netif_tx_lock |
1811 | * bnx2x_tx_int() runs without netif_tx_lock unless it needs to call | 2207 | * bnx2x_tx_int() runs without netif_tx_lock unless it needs to call |
1812 | * netif_wake_queue() | 2208 | * netif_wake_queue() |
@@ -1819,7 +2215,9 @@ netdev_tx_t bnx2x_start_xmit(struct sk_buff *skb, struct net_device *dev) | |||
1819 | struct sw_tx_bd *tx_buf; | 2215 | struct sw_tx_bd *tx_buf; |
1820 | struct eth_tx_start_bd *tx_start_bd; | 2216 | struct eth_tx_start_bd *tx_start_bd; |
1821 | struct eth_tx_bd *tx_data_bd, *total_pkt_bd = NULL; | 2217 | struct eth_tx_bd *tx_data_bd, *total_pkt_bd = NULL; |
1822 | struct eth_tx_parse_bd *pbd = NULL; | 2218 | struct eth_tx_parse_bd_e1x *pbd_e1x = NULL; |
2219 | struct eth_tx_parse_bd_e2 *pbd_e2 = NULL; | ||
2220 | u32 pbd_e2_parsing_data = 0; | ||
1823 | u16 pkt_prod, bd_prod; | 2221 | u16 pkt_prod, bd_prod; |
1824 | int nbd, fp_index; | 2222 | int nbd, fp_index; |
1825 | dma_addr_t mapping; | 2223 | dma_addr_t mapping; |
@@ -1847,9 +2245,9 @@ netdev_tx_t bnx2x_start_xmit(struct sk_buff *skb, struct net_device *dev) | |||
1847 | return NETDEV_TX_BUSY; | 2245 | return NETDEV_TX_BUSY; |
1848 | } | 2246 | } |
1849 | 2247 | ||
1850 | DP(NETIF_MSG_TX_QUEUED, "SKB: summed %x protocol %x protocol(%x,%x)" | 2248 | DP(NETIF_MSG_TX_QUEUED, "queue[%d]: SKB: summed %x protocol %x " |
1851 | " gso type %x xmit_type %x\n", | 2249 | "protocol(%x,%x) gso type %x xmit_type %x\n", |
1852 | skb->ip_summed, skb->protocol, ipv6_hdr(skb)->nexthdr, | 2250 | fp_index, skb->ip_summed, skb->protocol, ipv6_hdr(skb)->nexthdr, |
1853 | ip_hdr(skb)->protocol, skb_shinfo(skb)->gso_type, xmit_type); | 2251 | ip_hdr(skb)->protocol, skb_shinfo(skb)->gso_type, xmit_type); |
1854 | 2252 | ||
1855 | eth = (struct ethhdr *)skb->data; | 2253 | eth = (struct ethhdr *)skb->data; |
@@ -1895,10 +2293,11 @@ netdev_tx_t bnx2x_start_xmit(struct sk_buff *skb, struct net_device *dev) | |||
1895 | tx_start_bd = &fp->tx_desc_ring[bd_prod].start_bd; | 2293 | tx_start_bd = &fp->tx_desc_ring[bd_prod].start_bd; |
1896 | 2294 | ||
1897 | tx_start_bd->bd_flags.as_bitfield = ETH_TX_BD_FLAGS_START_BD; | 2295 | tx_start_bd->bd_flags.as_bitfield = ETH_TX_BD_FLAGS_START_BD; |
1898 | tx_start_bd->general_data = (mac_type << | 2296 | SET_FLAG(tx_start_bd->general_data, ETH_TX_START_BD_ETH_ADDR_TYPE, |
1899 | ETH_TX_START_BD_ETH_ADDR_TYPE_SHIFT); | 2297 | mac_type); |
2298 | |||
1900 | /* header nbd */ | 2299 | /* header nbd */ |
1901 | tx_start_bd->general_data |= (1 << ETH_TX_START_BD_HDR_NBDS_SHIFT); | 2300 | SET_FLAG(tx_start_bd->general_data, ETH_TX_START_BD_HDR_NBDS, 1); |
1902 | 2301 | ||
1903 | /* remember the first BD of the packet */ | 2302 | /* remember the first BD of the packet */ |
1904 | tx_buf->first_bd = fp->tx_bd_prod; | 2303 | tx_buf->first_bd = fp->tx_bd_prod; |
@@ -1909,37 +2308,18 @@ netdev_tx_t bnx2x_start_xmit(struct sk_buff *skb, struct net_device *dev) | |||
1909 | "sending pkt %u @%p next_idx %u bd %u @%p\n", | 2308 | "sending pkt %u @%p next_idx %u bd %u @%p\n", |
1910 | pkt_prod, tx_buf, fp->tx_pkt_prod, bd_prod, tx_start_bd); | 2309 | pkt_prod, tx_buf, fp->tx_pkt_prod, bd_prod, tx_start_bd); |
1911 | 2310 | ||
1912 | #ifdef BCM_VLAN | 2311 | if (vlan_tx_tag_present(skb)) { |
1913 | if ((bp->vlgrp != NULL) && vlan_tx_tag_present(skb) && | 2312 | tx_start_bd->vlan_or_ethertype = |
1914 | (bp->flags & HW_VLAN_TX_FLAG)) { | 2313 | cpu_to_le16(vlan_tx_tag_get(skb)); |
1915 | tx_start_bd->vlan = cpu_to_le16(vlan_tx_tag_get(skb)); | 2314 | tx_start_bd->bd_flags.as_bitfield |= |
1916 | tx_start_bd->bd_flags.as_bitfield |= ETH_TX_BD_FLAGS_VLAN_TAG; | 2315 | (X_ETH_OUTBAND_VLAN << ETH_TX_BD_FLAGS_VLAN_MODE_SHIFT); |
1917 | } else | 2316 | } else |
1918 | #endif | 2317 | tx_start_bd->vlan_or_ethertype = cpu_to_le16(pkt_prod); |
1919 | tx_start_bd->vlan = cpu_to_le16(pkt_prod); | ||
1920 | 2318 | ||
1921 | /* turn on parsing and get a BD */ | 2319 | /* turn on parsing and get a BD */ |
1922 | bd_prod = TX_BD(NEXT_TX_IDX(bd_prod)); | 2320 | bd_prod = TX_BD(NEXT_TX_IDX(bd_prod)); |
1923 | pbd = &fp->tx_desc_ring[bd_prod].parse_bd; | ||
1924 | |||
1925 | memset(pbd, 0, sizeof(struct eth_tx_parse_bd)); | ||
1926 | 2321 | ||
1927 | if (xmit_type & XMIT_CSUM) { | 2322 | if (xmit_type & XMIT_CSUM) { |
1928 | hlen = (skb_network_header(skb) - skb->data) / 2; | ||
1929 | |||
1930 | /* for now NS flag is not used in Linux */ | ||
1931 | pbd->global_data = | ||
1932 | (hlen | ((skb->protocol == cpu_to_be16(ETH_P_8021Q)) << | ||
1933 | ETH_TX_PARSE_BD_LLC_SNAP_EN_SHIFT)); | ||
1934 | |||
1935 | pbd->ip_hlen = (skb_transport_header(skb) - | ||
1936 | skb_network_header(skb)) / 2; | ||
1937 | |||
1938 | hlen += pbd->ip_hlen + tcp_hdrlen(skb) / 2; | ||
1939 | |||
1940 | pbd->total_hlen = cpu_to_le16(hlen); | ||
1941 | hlen = hlen*2; | ||
1942 | |||
1943 | tx_start_bd->bd_flags.as_bitfield |= ETH_TX_BD_FLAGS_L4_CSUM; | 2323 | tx_start_bd->bd_flags.as_bitfield |= ETH_TX_BD_FLAGS_L4_CSUM; |
1944 | 2324 | ||
1945 | if (xmit_type & XMIT_CSUM_V4) | 2325 | if (xmit_type & XMIT_CSUM_V4) |
@@ -1949,31 +2329,33 @@ netdev_tx_t bnx2x_start_xmit(struct sk_buff *skb, struct net_device *dev) | |||
1949 | tx_start_bd->bd_flags.as_bitfield |= | 2329 | tx_start_bd->bd_flags.as_bitfield |= |
1950 | ETH_TX_BD_FLAGS_IPV6; | 2330 | ETH_TX_BD_FLAGS_IPV6; |
1951 | 2331 | ||
1952 | if (xmit_type & XMIT_CSUM_TCP) { | 2332 | if (!(xmit_type & XMIT_CSUM_TCP)) |
1953 | pbd->tcp_pseudo_csum = swab16(tcp_hdr(skb)->check); | 2333 | tx_start_bd->bd_flags.as_bitfield |= |
1954 | 2334 | ETH_TX_BD_FLAGS_IS_UDP; | |
1955 | } else { | 2335 | } |
1956 | s8 fix = SKB_CS_OFF(skb); /* signed! */ | ||
1957 | |||
1958 | pbd->global_data |= ETH_TX_PARSE_BD_UDP_CS_FLG; | ||
1959 | |||
1960 | DP(NETIF_MSG_TX_QUEUED, | ||
1961 | "hlen %d fix %d csum before fix %x\n", | ||
1962 | le16_to_cpu(pbd->total_hlen), fix, SKB_CS(skb)); | ||
1963 | 2336 | ||
1964 | /* HW bug: fixup the CSUM */ | 2337 | if (CHIP_IS_E2(bp)) { |
1965 | pbd->tcp_pseudo_csum = | 2338 | pbd_e2 = &fp->tx_desc_ring[bd_prod].parse_bd_e2; |
1966 | bnx2x_csum_fix(skb_transport_header(skb), | 2339 | memset(pbd_e2, 0, sizeof(struct eth_tx_parse_bd_e2)); |
1967 | SKB_CS(skb), fix); | 2340 | /* Set PBD in checksum offload case */ |
2341 | if (xmit_type & XMIT_CSUM) | ||
2342 | hlen = bnx2x_set_pbd_csum_e2(bp, skb, | ||
2343 | &pbd_e2_parsing_data, | ||
2344 | xmit_type); | ||
2345 | } else { | ||
2346 | pbd_e1x = &fp->tx_desc_ring[bd_prod].parse_bd_e1x; | ||
2347 | memset(pbd_e1x, 0, sizeof(struct eth_tx_parse_bd_e1x)); | ||
2348 | /* Set PBD in checksum offload case */ | ||
2349 | if (xmit_type & XMIT_CSUM) | ||
2350 | hlen = bnx2x_set_pbd_csum(bp, skb, pbd_e1x, xmit_type); | ||
1968 | 2351 | ||
1969 | DP(NETIF_MSG_TX_QUEUED, "csum after fix %x\n", | ||
1970 | pbd->tcp_pseudo_csum); | ||
1971 | } | ||
1972 | } | 2352 | } |
1973 | 2353 | ||
2354 | /* Map skb linear data for DMA */ | ||
1974 | mapping = dma_map_single(&bp->pdev->dev, skb->data, | 2355 | mapping = dma_map_single(&bp->pdev->dev, skb->data, |
1975 | skb_headlen(skb), DMA_TO_DEVICE); | 2356 | skb_headlen(skb), DMA_TO_DEVICE); |
1976 | 2357 | ||
2358 | /* Setup the data pointer of the first BD of the packet */ | ||
1977 | tx_start_bd->addr_hi = cpu_to_le32(U64_HI(mapping)); | 2359 | tx_start_bd->addr_hi = cpu_to_le32(U64_HI(mapping)); |
1978 | tx_start_bd->addr_lo = cpu_to_le32(U64_LO(mapping)); | 2360 | tx_start_bd->addr_lo = cpu_to_le32(U64_LO(mapping)); |
1979 | nbd = skb_shinfo(skb)->nr_frags + 2; /* start_bd + pbd + frags */ | 2361 | nbd = skb_shinfo(skb)->nr_frags + 2; /* start_bd + pbd + frags */ |
@@ -1985,7 +2367,8 @@ netdev_tx_t bnx2x_start_xmit(struct sk_buff *skb, struct net_device *dev) | |||
1985 | " nbytes %d flags %x vlan %x\n", | 2367 | " nbytes %d flags %x vlan %x\n", |
1986 | tx_start_bd, tx_start_bd->addr_hi, tx_start_bd->addr_lo, | 2368 | tx_start_bd, tx_start_bd->addr_hi, tx_start_bd->addr_lo, |
1987 | le16_to_cpu(tx_start_bd->nbd), le16_to_cpu(tx_start_bd->nbytes), | 2369 | le16_to_cpu(tx_start_bd->nbd), le16_to_cpu(tx_start_bd->nbytes), |
1988 | tx_start_bd->bd_flags.as_bitfield, le16_to_cpu(tx_start_bd->vlan)); | 2370 | tx_start_bd->bd_flags.as_bitfield, |
2371 | le16_to_cpu(tx_start_bd->vlan_or_ethertype)); | ||
1989 | 2372 | ||
1990 | if (xmit_type & XMIT_GSO) { | 2373 | if (xmit_type & XMIT_GSO) { |
1991 | 2374 | ||
@@ -1999,28 +2382,22 @@ netdev_tx_t bnx2x_start_xmit(struct sk_buff *skb, struct net_device *dev) | |||
1999 | if (unlikely(skb_headlen(skb) > hlen)) | 2382 | if (unlikely(skb_headlen(skb) > hlen)) |
2000 | bd_prod = bnx2x_tx_split(bp, fp, tx_buf, &tx_start_bd, | 2383 | bd_prod = bnx2x_tx_split(bp, fp, tx_buf, &tx_start_bd, |
2001 | hlen, bd_prod, ++nbd); | 2384 | hlen, bd_prod, ++nbd); |
2385 | if (CHIP_IS_E2(bp)) | ||
2386 | bnx2x_set_pbd_gso_e2(skb, &pbd_e2_parsing_data, | ||
2387 | xmit_type); | ||
2388 | else | ||
2389 | bnx2x_set_pbd_gso(skb, pbd_e1x, xmit_type); | ||
2390 | } | ||
2002 | 2391 | ||
2003 | pbd->lso_mss = cpu_to_le16(skb_shinfo(skb)->gso_size); | 2392 | /* Set the PBD's parsing_data field if not zero |
2004 | pbd->tcp_send_seq = swab32(tcp_hdr(skb)->seq); | 2393 | * (for the chips newer than 57711). |
2005 | pbd->tcp_flags = pbd_tcp_flags(skb); | 2394 | */ |
2006 | 2395 | if (pbd_e2_parsing_data) | |
2007 | if (xmit_type & XMIT_GSO_V4) { | 2396 | pbd_e2->parsing_data = cpu_to_le32(pbd_e2_parsing_data); |
2008 | pbd->ip_id = swab16(ip_hdr(skb)->id); | ||
2009 | pbd->tcp_pseudo_csum = | ||
2010 | swab16(~csum_tcpudp_magic(ip_hdr(skb)->saddr, | ||
2011 | ip_hdr(skb)->daddr, | ||
2012 | 0, IPPROTO_TCP, 0)); | ||
2013 | |||
2014 | } else | ||
2015 | pbd->tcp_pseudo_csum = | ||
2016 | swab16(~csum_ipv6_magic(&ipv6_hdr(skb)->saddr, | ||
2017 | &ipv6_hdr(skb)->daddr, | ||
2018 | 0, IPPROTO_TCP, 0)); | ||
2019 | 2397 | ||
2020 | pbd->global_data |= ETH_TX_PARSE_BD_PSEUDO_CS_WITHOUT_LEN; | ||
2021 | } | ||
2022 | tx_data_bd = (struct eth_tx_bd *)tx_start_bd; | 2398 | tx_data_bd = (struct eth_tx_bd *)tx_start_bd; |
2023 | 2399 | ||
2400 | /* Handle fragmented skb */ | ||
2024 | for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) { | 2401 | for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) { |
2025 | skb_frag_t *frag = &skb_shinfo(skb)->frags[i]; | 2402 | skb_frag_t *frag = &skb_shinfo(skb)->frags[i]; |
2026 | 2403 | ||
@@ -2057,14 +2434,21 @@ netdev_tx_t bnx2x_start_xmit(struct sk_buff *skb, struct net_device *dev) | |||
2057 | if (total_pkt_bd != NULL) | 2434 | if (total_pkt_bd != NULL) |
2058 | total_pkt_bd->total_pkt_bytes = pkt_size; | 2435 | total_pkt_bd->total_pkt_bytes = pkt_size; |
2059 | 2436 | ||
2060 | if (pbd) | 2437 | if (pbd_e1x) |
2061 | DP(NETIF_MSG_TX_QUEUED, | 2438 | DP(NETIF_MSG_TX_QUEUED, |
2062 | "PBD @%p ip_data %x ip_hlen %u ip_id %u lso_mss %u" | 2439 | "PBD (E1X) @%p ip_data %x ip_hlen %u ip_id %u lso_mss %u" |
2063 | " tcp_flags %x xsum %x seq %u hlen %u\n", | 2440 | " tcp_flags %x xsum %x seq %u hlen %u\n", |
2064 | pbd, pbd->global_data, pbd->ip_hlen, pbd->ip_id, | 2441 | pbd_e1x, pbd_e1x->global_data, pbd_e1x->ip_hlen_w, |
2065 | pbd->lso_mss, pbd->tcp_flags, pbd->tcp_pseudo_csum, | 2442 | pbd_e1x->ip_id, pbd_e1x->lso_mss, pbd_e1x->tcp_flags, |
2066 | pbd->tcp_send_seq, le16_to_cpu(pbd->total_hlen)); | 2443 | pbd_e1x->tcp_pseudo_csum, pbd_e1x->tcp_send_seq, |
2067 | 2444 | le16_to_cpu(pbd_e1x->total_hlen_w)); | |
2445 | if (pbd_e2) | ||
2446 | DP(NETIF_MSG_TX_QUEUED, | ||
2447 | "PBD (E2) @%p dst %x %x %x src %x %x %x parsing_data %x\n", | ||
2448 | pbd_e2, pbd_e2->dst_mac_addr_hi, pbd_e2->dst_mac_addr_mid, | ||
2449 | pbd_e2->dst_mac_addr_lo, pbd_e2->src_mac_addr_hi, | ||
2450 | pbd_e2->src_mac_addr_mid, pbd_e2->src_mac_addr_lo, | ||
2451 | pbd_e2->parsing_data); | ||
2068 | DP(NETIF_MSG_TX_QUEUED, "doorbell: nbd %d bd %u\n", nbd, bd_prod); | 2452 | DP(NETIF_MSG_TX_QUEUED, "doorbell: nbd %d bd %u\n", nbd, bd_prod); |
2069 | 2453 | ||
2070 | /* | 2454 | /* |
@@ -2078,7 +2462,8 @@ netdev_tx_t bnx2x_start_xmit(struct sk_buff *skb, struct net_device *dev) | |||
2078 | 2462 | ||
2079 | fp->tx_db.data.prod += nbd; | 2463 | fp->tx_db.data.prod += nbd; |
2080 | barrier(); | 2464 | barrier(); |
2081 | DOORBELL(bp, fp->index, fp->tx_db.raw); | 2465 | |
2466 | DOORBELL(bp, fp->cid, fp->tx_db.raw); | ||
2082 | 2467 | ||
2083 | mmiowb(); | 2468 | mmiowb(); |
2084 | 2469 | ||
@@ -2100,6 +2485,7 @@ netdev_tx_t bnx2x_start_xmit(struct sk_buff *skb, struct net_device *dev) | |||
2100 | 2485 | ||
2101 | return NETDEV_TX_OK; | 2486 | return NETDEV_TX_OK; |
2102 | } | 2487 | } |
2488 | |||
2103 | /* called with rtnl_lock */ | 2489 | /* called with rtnl_lock */ |
2104 | int bnx2x_change_mac_addr(struct net_device *dev, void *p) | 2490 | int bnx2x_change_mac_addr(struct net_device *dev, void *p) |
2105 | { | 2491 | { |
@@ -2110,21 +2496,317 @@ int bnx2x_change_mac_addr(struct net_device *dev, void *p) | |||
2110 | return -EINVAL; | 2496 | return -EINVAL; |
2111 | 2497 | ||
2112 | memcpy(dev->dev_addr, addr->sa_data, dev->addr_len); | 2498 | memcpy(dev->dev_addr, addr->sa_data, dev->addr_len); |
2113 | if (netif_running(dev)) { | 2499 | if (netif_running(dev)) |
2114 | if (CHIP_IS_E1(bp)) | 2500 | bnx2x_set_eth_mac(bp, 1); |
2115 | bnx2x_set_eth_mac_addr_e1(bp, 1); | 2501 | |
2502 | return 0; | ||
2503 | } | ||
2504 | |||
2505 | static void bnx2x_free_fp_mem_at(struct bnx2x *bp, int fp_index) | ||
2506 | { | ||
2507 | union host_hc_status_block *sb = &bnx2x_fp(bp, fp_index, status_blk); | ||
2508 | struct bnx2x_fastpath *fp = &bp->fp[fp_index]; | ||
2509 | |||
2510 | /* Common */ | ||
2511 | #ifdef BCM_CNIC | ||
2512 | if (IS_FCOE_IDX(fp_index)) { | ||
2513 | memset(sb, 0, sizeof(union host_hc_status_block)); | ||
2514 | fp->status_blk_mapping = 0; | ||
2515 | |||
2516 | } else { | ||
2517 | #endif | ||
2518 | /* status blocks */ | ||
2519 | if (CHIP_IS_E2(bp)) | ||
2520 | BNX2X_PCI_FREE(sb->e2_sb, | ||
2521 | bnx2x_fp(bp, fp_index, | ||
2522 | status_blk_mapping), | ||
2523 | sizeof(struct host_hc_status_block_e2)); | ||
2524 | else | ||
2525 | BNX2X_PCI_FREE(sb->e1x_sb, | ||
2526 | bnx2x_fp(bp, fp_index, | ||
2527 | status_blk_mapping), | ||
2528 | sizeof(struct host_hc_status_block_e1x)); | ||
2529 | #ifdef BCM_CNIC | ||
2530 | } | ||
2531 | #endif | ||
2532 | /* Rx */ | ||
2533 | if (!skip_rx_queue(bp, fp_index)) { | ||
2534 | bnx2x_free_rx_bds(fp); | ||
2535 | |||
2536 | /* fastpath rx rings: rx_buf rx_desc rx_comp */ | ||
2537 | BNX2X_FREE(bnx2x_fp(bp, fp_index, rx_buf_ring)); | ||
2538 | BNX2X_PCI_FREE(bnx2x_fp(bp, fp_index, rx_desc_ring), | ||
2539 | bnx2x_fp(bp, fp_index, rx_desc_mapping), | ||
2540 | sizeof(struct eth_rx_bd) * NUM_RX_BD); | ||
2541 | |||
2542 | BNX2X_PCI_FREE(bnx2x_fp(bp, fp_index, rx_comp_ring), | ||
2543 | bnx2x_fp(bp, fp_index, rx_comp_mapping), | ||
2544 | sizeof(struct eth_fast_path_rx_cqe) * | ||
2545 | NUM_RCQ_BD); | ||
2546 | |||
2547 | /* SGE ring */ | ||
2548 | BNX2X_FREE(bnx2x_fp(bp, fp_index, rx_page_ring)); | ||
2549 | BNX2X_PCI_FREE(bnx2x_fp(bp, fp_index, rx_sge_ring), | ||
2550 | bnx2x_fp(bp, fp_index, rx_sge_mapping), | ||
2551 | BCM_PAGE_SIZE * NUM_RX_SGE_PAGES); | ||
2552 | } | ||
2553 | |||
2554 | /* Tx */ | ||
2555 | if (!skip_tx_queue(bp, fp_index)) { | ||
2556 | /* fastpath tx rings: tx_buf tx_desc */ | ||
2557 | BNX2X_FREE(bnx2x_fp(bp, fp_index, tx_buf_ring)); | ||
2558 | BNX2X_PCI_FREE(bnx2x_fp(bp, fp_index, tx_desc_ring), | ||
2559 | bnx2x_fp(bp, fp_index, tx_desc_mapping), | ||
2560 | sizeof(union eth_tx_bd_types) * NUM_TX_BD); | ||
2561 | } | ||
2562 | /* end of fastpath */ | ||
2563 | } | ||
2564 | |||
2565 | void bnx2x_free_fp_mem(struct bnx2x *bp) | ||
2566 | { | ||
2567 | int i; | ||
2568 | for_each_queue(bp, i) | ||
2569 | bnx2x_free_fp_mem_at(bp, i); | ||
2570 | } | ||
2571 | |||
2572 | static inline void set_sb_shortcuts(struct bnx2x *bp, int index) | ||
2573 | { | ||
2574 | union host_hc_status_block status_blk = bnx2x_fp(bp, index, status_blk); | ||
2575 | if (CHIP_IS_E2(bp)) { | ||
2576 | bnx2x_fp(bp, index, sb_index_values) = | ||
2577 | (__le16 *)status_blk.e2_sb->sb.index_values; | ||
2578 | bnx2x_fp(bp, index, sb_running_index) = | ||
2579 | (__le16 *)status_blk.e2_sb->sb.running_index; | ||
2580 | } else { | ||
2581 | bnx2x_fp(bp, index, sb_index_values) = | ||
2582 | (__le16 *)status_blk.e1x_sb->sb.index_values; | ||
2583 | bnx2x_fp(bp, index, sb_running_index) = | ||
2584 | (__le16 *)status_blk.e1x_sb->sb.running_index; | ||
2585 | } | ||
2586 | } | ||
2587 | |||
2588 | static int bnx2x_alloc_fp_mem_at(struct bnx2x *bp, int index) | ||
2589 | { | ||
2590 | union host_hc_status_block *sb; | ||
2591 | struct bnx2x_fastpath *fp = &bp->fp[index]; | ||
2592 | int ring_size = 0; | ||
2593 | |||
2594 | /* if rx_ring_size specified - use it */ | ||
2595 | int rx_ring_size = bp->rx_ring_size ? bp->rx_ring_size : | ||
2596 | MAX_RX_AVAIL/bp->num_queues; | ||
2597 | |||
2598 | /* allocate at least number of buffers required by FW */ | ||
2599 | rx_ring_size = max_t(int, fp->disable_tpa ? MIN_RX_SIZE_NONTPA : | ||
2600 | MIN_RX_SIZE_TPA, | ||
2601 | rx_ring_size); | ||
2602 | |||
2603 | bnx2x_fp(bp, index, bp) = bp; | ||
2604 | bnx2x_fp(bp, index, index) = index; | ||
2605 | |||
2606 | /* Common */ | ||
2607 | sb = &bnx2x_fp(bp, index, status_blk); | ||
2608 | #ifdef BCM_CNIC | ||
2609 | if (!IS_FCOE_IDX(index)) { | ||
2610 | #endif | ||
2611 | /* status blocks */ | ||
2612 | if (CHIP_IS_E2(bp)) | ||
2613 | BNX2X_PCI_ALLOC(sb->e2_sb, | ||
2614 | &bnx2x_fp(bp, index, status_blk_mapping), | ||
2615 | sizeof(struct host_hc_status_block_e2)); | ||
2116 | else | 2616 | else |
2117 | bnx2x_set_eth_mac_addr_e1h(bp, 1); | 2617 | BNX2X_PCI_ALLOC(sb->e1x_sb, |
2618 | &bnx2x_fp(bp, index, status_blk_mapping), | ||
2619 | sizeof(struct host_hc_status_block_e1x)); | ||
2620 | #ifdef BCM_CNIC | ||
2621 | } | ||
2622 | #endif | ||
2623 | set_sb_shortcuts(bp, index); | ||
2624 | |||
2625 | /* Tx */ | ||
2626 | if (!skip_tx_queue(bp, index)) { | ||
2627 | /* fastpath tx rings: tx_buf tx_desc */ | ||
2628 | BNX2X_ALLOC(bnx2x_fp(bp, index, tx_buf_ring), | ||
2629 | sizeof(struct sw_tx_bd) * NUM_TX_BD); | ||
2630 | BNX2X_PCI_ALLOC(bnx2x_fp(bp, index, tx_desc_ring), | ||
2631 | &bnx2x_fp(bp, index, tx_desc_mapping), | ||
2632 | sizeof(union eth_tx_bd_types) * NUM_TX_BD); | ||
2633 | } | ||
2634 | |||
2635 | /* Rx */ | ||
2636 | if (!skip_rx_queue(bp, index)) { | ||
2637 | /* fastpath rx rings: rx_buf rx_desc rx_comp */ | ||
2638 | BNX2X_ALLOC(bnx2x_fp(bp, index, rx_buf_ring), | ||
2639 | sizeof(struct sw_rx_bd) * NUM_RX_BD); | ||
2640 | BNX2X_PCI_ALLOC(bnx2x_fp(bp, index, rx_desc_ring), | ||
2641 | &bnx2x_fp(bp, index, rx_desc_mapping), | ||
2642 | sizeof(struct eth_rx_bd) * NUM_RX_BD); | ||
2643 | |||
2644 | BNX2X_PCI_ALLOC(bnx2x_fp(bp, index, rx_comp_ring), | ||
2645 | &bnx2x_fp(bp, index, rx_comp_mapping), | ||
2646 | sizeof(struct eth_fast_path_rx_cqe) * | ||
2647 | NUM_RCQ_BD); | ||
2648 | |||
2649 | /* SGE ring */ | ||
2650 | BNX2X_ALLOC(bnx2x_fp(bp, index, rx_page_ring), | ||
2651 | sizeof(struct sw_rx_page) * NUM_RX_SGE); | ||
2652 | BNX2X_PCI_ALLOC(bnx2x_fp(bp, index, rx_sge_ring), | ||
2653 | &bnx2x_fp(bp, index, rx_sge_mapping), | ||
2654 | BCM_PAGE_SIZE * NUM_RX_SGE_PAGES); | ||
2655 | /* RX BD ring */ | ||
2656 | bnx2x_set_next_page_rx_bd(fp); | ||
2657 | |||
2658 | /* CQ ring */ | ||
2659 | bnx2x_set_next_page_rx_cq(fp); | ||
2660 | |||
2661 | /* BDs */ | ||
2662 | ring_size = bnx2x_alloc_rx_bds(fp, rx_ring_size); | ||
2663 | if (ring_size < rx_ring_size) | ||
2664 | goto alloc_mem_err; | ||
2665 | } | ||
2666 | |||
2667 | return 0; | ||
2668 | |||
2669 | /* handles low memory cases */ | ||
2670 | alloc_mem_err: | ||
2671 | BNX2X_ERR("Unable to allocate full memory for queue %d (size %d)\n", | ||
2672 | index, ring_size); | ||
2673 | /* FW will drop all packets if queue is not big enough, | ||
2674 | * In these cases we disable the queue | ||
2675 | * Min size diferent for TPA and non-TPA queues | ||
2676 | */ | ||
2677 | if (ring_size < (fp->disable_tpa ? | ||
2678 | MIN_RX_SIZE_NONTPA : MIN_RX_SIZE_TPA)) { | ||
2679 | /* release memory allocated for this queue */ | ||
2680 | bnx2x_free_fp_mem_at(bp, index); | ||
2681 | return -ENOMEM; | ||
2682 | } | ||
2683 | return 0; | ||
2684 | } | ||
2685 | |||
2686 | int bnx2x_alloc_fp_mem(struct bnx2x *bp) | ||
2687 | { | ||
2688 | int i; | ||
2689 | |||
2690 | /** | ||
2691 | * 1. Allocate FP for leading - fatal if error | ||
2692 | * 2. {CNIC} Allocate FCoE FP - fatal if error | ||
2693 | * 3. Allocate RSS - fix number of queues if error | ||
2694 | */ | ||
2695 | |||
2696 | /* leading */ | ||
2697 | if (bnx2x_alloc_fp_mem_at(bp, 0)) | ||
2698 | return -ENOMEM; | ||
2699 | #ifdef BCM_CNIC | ||
2700 | /* FCoE */ | ||
2701 | if (bnx2x_alloc_fp_mem_at(bp, FCOE_IDX)) | ||
2702 | return -ENOMEM; | ||
2703 | #endif | ||
2704 | /* RSS */ | ||
2705 | for_each_nondefault_eth_queue(bp, i) | ||
2706 | if (bnx2x_alloc_fp_mem_at(bp, i)) | ||
2707 | break; | ||
2708 | |||
2709 | /* handle memory failures */ | ||
2710 | if (i != BNX2X_NUM_ETH_QUEUES(bp)) { | ||
2711 | int delta = BNX2X_NUM_ETH_QUEUES(bp) - i; | ||
2712 | |||
2713 | WARN_ON(delta < 0); | ||
2714 | #ifdef BCM_CNIC | ||
2715 | /** | ||
2716 | * move non eth FPs next to last eth FP | ||
2717 | * must be done in that order | ||
2718 | * FCOE_IDX < FWD_IDX < OOO_IDX | ||
2719 | */ | ||
2720 | |||
2721 | /* move FCoE fp */ | ||
2722 | bnx2x_move_fp(bp, FCOE_IDX, FCOE_IDX - delta); | ||
2723 | #endif | ||
2724 | bp->num_queues -= delta; | ||
2725 | BNX2X_ERR("Adjusted num of queues from %d to %d\n", | ||
2726 | bp->num_queues + delta, bp->num_queues); | ||
2727 | } | ||
2728 | |||
2729 | return 0; | ||
2730 | } | ||
2731 | |||
2732 | static int bnx2x_setup_irqs(struct bnx2x *bp) | ||
2733 | { | ||
2734 | int rc = 0; | ||
2735 | if (bp->flags & USING_MSIX_FLAG) { | ||
2736 | rc = bnx2x_req_msix_irqs(bp); | ||
2737 | if (rc) | ||
2738 | return rc; | ||
2739 | } else { | ||
2740 | bnx2x_ack_int(bp); | ||
2741 | rc = bnx2x_req_irq(bp); | ||
2742 | if (rc) { | ||
2743 | BNX2X_ERR("IRQ request failed rc %d, aborting\n", rc); | ||
2744 | return rc; | ||
2745 | } | ||
2746 | if (bp->flags & USING_MSI_FLAG) { | ||
2747 | bp->dev->irq = bp->pdev->irq; | ||
2748 | netdev_info(bp->dev, "using MSI IRQ %d\n", | ||
2749 | bp->pdev->irq); | ||
2750 | } | ||
2118 | } | 2751 | } |
2119 | 2752 | ||
2120 | return 0; | 2753 | return 0; |
2121 | } | 2754 | } |
2122 | 2755 | ||
2756 | void bnx2x_free_mem_bp(struct bnx2x *bp) | ||
2757 | { | ||
2758 | kfree(bp->fp); | ||
2759 | kfree(bp->msix_table); | ||
2760 | kfree(bp->ilt); | ||
2761 | } | ||
2762 | |||
2763 | int __devinit bnx2x_alloc_mem_bp(struct bnx2x *bp) | ||
2764 | { | ||
2765 | struct bnx2x_fastpath *fp; | ||
2766 | struct msix_entry *tbl; | ||
2767 | struct bnx2x_ilt *ilt; | ||
2768 | |||
2769 | /* fp array */ | ||
2770 | fp = kzalloc(L2_FP_COUNT(bp->l2_cid_count)*sizeof(*fp), GFP_KERNEL); | ||
2771 | if (!fp) | ||
2772 | goto alloc_err; | ||
2773 | bp->fp = fp; | ||
2774 | |||
2775 | /* msix table */ | ||
2776 | tbl = kzalloc((FP_SB_COUNT(bp->l2_cid_count) + 1) * sizeof(*tbl), | ||
2777 | GFP_KERNEL); | ||
2778 | if (!tbl) | ||
2779 | goto alloc_err; | ||
2780 | bp->msix_table = tbl; | ||
2781 | |||
2782 | /* ilt */ | ||
2783 | ilt = kzalloc(sizeof(*ilt), GFP_KERNEL); | ||
2784 | if (!ilt) | ||
2785 | goto alloc_err; | ||
2786 | bp->ilt = ilt; | ||
2787 | |||
2788 | return 0; | ||
2789 | alloc_err: | ||
2790 | bnx2x_free_mem_bp(bp); | ||
2791 | return -ENOMEM; | ||
2792 | |||
2793 | } | ||
2794 | |||
2795 | static int bnx2x_reload_if_running(struct net_device *dev) | ||
2796 | { | ||
2797 | struct bnx2x *bp = netdev_priv(dev); | ||
2798 | |||
2799 | if (unlikely(!netif_running(dev))) | ||
2800 | return 0; | ||
2801 | |||
2802 | bnx2x_nic_unload(bp, UNLOAD_NORMAL); | ||
2803 | return bnx2x_nic_load(bp, LOAD_NORMAL); | ||
2804 | } | ||
2805 | |||
2123 | /* called with rtnl_lock */ | 2806 | /* called with rtnl_lock */ |
2124 | int bnx2x_change_mtu(struct net_device *dev, int new_mtu) | 2807 | int bnx2x_change_mtu(struct net_device *dev, int new_mtu) |
2125 | { | 2808 | { |
2126 | struct bnx2x *bp = netdev_priv(dev); | 2809 | struct bnx2x *bp = netdev_priv(dev); |
2127 | int rc = 0; | ||
2128 | 2810 | ||
2129 | if (bp->recovery_state != BNX2X_RECOVERY_DONE) { | 2811 | if (bp->recovery_state != BNX2X_RECOVERY_DONE) { |
2130 | printk(KERN_ERR "Handling parity error recovery. Try again later\n"); | 2812 | printk(KERN_ERR "Handling parity error recovery. Try again later\n"); |
@@ -2141,49 +2823,69 @@ int bnx2x_change_mtu(struct net_device *dev, int new_mtu) | |||
2141 | */ | 2823 | */ |
2142 | dev->mtu = new_mtu; | 2824 | dev->mtu = new_mtu; |
2143 | 2825 | ||
2144 | if (netif_running(dev)) { | 2826 | return bnx2x_reload_if_running(dev); |
2145 | bnx2x_nic_unload(bp, UNLOAD_NORMAL); | ||
2146 | rc = bnx2x_nic_load(bp, LOAD_NORMAL); | ||
2147 | } | ||
2148 | |||
2149 | return rc; | ||
2150 | } | 2827 | } |
2151 | 2828 | ||
2152 | void bnx2x_tx_timeout(struct net_device *dev) | 2829 | u32 bnx2x_fix_features(struct net_device *dev, u32 features) |
2153 | { | 2830 | { |
2154 | struct bnx2x *bp = netdev_priv(dev); | 2831 | struct bnx2x *bp = netdev_priv(dev); |
2155 | 2832 | ||
2156 | #ifdef BNX2X_STOP_ON_ERROR | 2833 | /* TPA requires Rx CSUM offloading */ |
2157 | if (!bp->panic) | 2834 | if (!(features & NETIF_F_RXCSUM) || bp->disable_tpa) |
2158 | bnx2x_panic(); | 2835 | features &= ~NETIF_F_LRO; |
2159 | #endif | 2836 | |
2160 | /* This allows the netif to be shutdown gracefully before resetting */ | 2837 | return features; |
2161 | schedule_delayed_work(&bp->reset_task, 0); | ||
2162 | } | 2838 | } |
2163 | 2839 | ||
2164 | #ifdef BCM_VLAN | 2840 | int bnx2x_set_features(struct net_device *dev, u32 features) |
2165 | /* called with rtnl_lock */ | ||
2166 | void bnx2x_vlan_rx_register(struct net_device *dev, | ||
2167 | struct vlan_group *vlgrp) | ||
2168 | { | 2841 | { |
2169 | struct bnx2x *bp = netdev_priv(dev); | 2842 | struct bnx2x *bp = netdev_priv(dev); |
2843 | u32 flags = bp->flags; | ||
2844 | bool bnx2x_reload = false; | ||
2170 | 2845 | ||
2171 | bp->vlgrp = vlgrp; | 2846 | if (features & NETIF_F_LRO) |
2847 | flags |= TPA_ENABLE_FLAG; | ||
2848 | else | ||
2849 | flags &= ~TPA_ENABLE_FLAG; | ||
2172 | 2850 | ||
2173 | /* Set flags according to the required capabilities */ | 2851 | if (features & NETIF_F_LOOPBACK) { |
2174 | bp->flags &= ~(HW_VLAN_RX_FLAG | HW_VLAN_TX_FLAG); | 2852 | if (bp->link_params.loopback_mode != LOOPBACK_BMAC) { |
2853 | bp->link_params.loopback_mode = LOOPBACK_BMAC; | ||
2854 | bnx2x_reload = true; | ||
2855 | } | ||
2856 | } else { | ||
2857 | if (bp->link_params.loopback_mode != LOOPBACK_NONE) { | ||
2858 | bp->link_params.loopback_mode = LOOPBACK_NONE; | ||
2859 | bnx2x_reload = true; | ||
2860 | } | ||
2861 | } | ||
2175 | 2862 | ||
2176 | if (dev->features & NETIF_F_HW_VLAN_TX) | 2863 | if (flags ^ bp->flags) { |
2177 | bp->flags |= HW_VLAN_TX_FLAG; | 2864 | bp->flags = flags; |
2865 | bnx2x_reload = true; | ||
2866 | } | ||
2178 | 2867 | ||
2179 | if (dev->features & NETIF_F_HW_VLAN_RX) | 2868 | if (bnx2x_reload) { |
2180 | bp->flags |= HW_VLAN_RX_FLAG; | 2869 | if (bp->recovery_state == BNX2X_RECOVERY_DONE) |
2870 | return bnx2x_reload_if_running(dev); | ||
2871 | /* else: bnx2x_nic_load() will be called at end of recovery */ | ||
2872 | } | ||
2181 | 2873 | ||
2182 | if (netif_running(dev)) | 2874 | return 0; |
2183 | bnx2x_set_client_config(bp); | ||
2184 | } | 2875 | } |
2185 | 2876 | ||
2877 | void bnx2x_tx_timeout(struct net_device *dev) | ||
2878 | { | ||
2879 | struct bnx2x *bp = netdev_priv(dev); | ||
2880 | |||
2881 | #ifdef BNX2X_STOP_ON_ERROR | ||
2882 | if (!bp->panic) | ||
2883 | bnx2x_panic(); | ||
2186 | #endif | 2884 | #endif |
2885 | /* This allows the netif to be shutdown gracefully before resetting */ | ||
2886 | schedule_delayed_work(&bp->reset_task, 0); | ||
2887 | } | ||
2888 | |||
2187 | int bnx2x_suspend(struct pci_dev *pdev, pm_message_t state) | 2889 | int bnx2x_suspend(struct pci_dev *pdev, pm_message_t state) |
2188 | { | 2890 | { |
2189 | struct net_device *dev = pci_get_drvdata(pdev); | 2891 | struct net_device *dev = pci_get_drvdata(pdev); |
@@ -2244,6 +2946,8 @@ int bnx2x_resume(struct pci_dev *pdev) | |||
2244 | bnx2x_set_power_state(bp, PCI_D0); | 2946 | bnx2x_set_power_state(bp, PCI_D0); |
2245 | netif_device_attach(dev); | 2947 | netif_device_attach(dev); |
2246 | 2948 | ||
2949 | /* Since the chip was reset, clear the FW sequence number */ | ||
2950 | bp->fw_seq = 0; | ||
2247 | rc = bnx2x_nic_load(bp, LOAD_OPEN); | 2951 | rc = bnx2x_nic_load(bp, LOAD_OPEN); |
2248 | 2952 | ||
2249 | rtnl_unlock(); | 2953 | rtnl_unlock(); |