Merge branch 'for-airlied' of git://people.freedesktop.org/~danvet/drm-intel into...
[deliverable/linux.git] / drivers / net / ethernet / broadcom / bnx2x / bnx2x_cmn.c
CommitLineData
9f6c9258
DK
1/* bnx2x_cmn.c: Broadcom Everest network driver.
2 *
85b26ea1 3 * Copyright (c) 2007-2012 Broadcom Corporation
9f6c9258
DK
4 *
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
7 * the Free Software Foundation.
8 *
9 * Maintained by: Eilon Greenstein <eilong@broadcom.com>
10 * Written by: Eliezer Tamir
11 * Based on code from Michael Chan's bnx2 driver
12 * UDP CSUM errata workaround by Arik Gendelman
13 * Slowpath and fastpath rework by Vladislav Zolotarov
14 * Statistics and Link management by Yitchak Gertner
15 *
16 */
17
f1deab50
JP
18#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
19
9f6c9258 20#include <linux/etherdevice.h>
9bcc0893 21#include <linux/if_vlan.h>
a6b7a407 22#include <linux/interrupt.h>
9f6c9258 23#include <linux/ip.h>
f2e0899f 24#include <net/ipv6.h>
7f3e01fe 25#include <net/ip6_checksum.h>
c0cba59e 26#include <linux/prefetch.h>
9f6c9258 27#include "bnx2x_cmn.h"
523224a3 28#include "bnx2x_init.h"
042181f5 29#include "bnx2x_sp.h"
523224a3 30
619c5cb6 31
9f6c9258 32
b3b83c3f
DK
33/**
34 * bnx2x_move_fp - move content of the fastpath structure.
35 *
36 * @bp: driver handle
37 * @from: source FP index
38 * @to: destination FP index
39 *
40 * Makes sure the contents of the bp->fp[to].napi is kept
72754080
AE
41 * intact. This is done by first copying the napi struct from
42 * the target to the source, and then mem copying the entire
65565884
MS
43 * source onto the target. Update txdata pointers and related
44 * content.
b3b83c3f
DK
45 */
46static inline void bnx2x_move_fp(struct bnx2x *bp, int from, int to)
47{
48 struct bnx2x_fastpath *from_fp = &bp->fp[from];
49 struct bnx2x_fastpath *to_fp = &bp->fp[to];
15192a8c
BW
50 struct bnx2x_sp_objs *from_sp_objs = &bp->sp_objs[from];
51 struct bnx2x_sp_objs *to_sp_objs = &bp->sp_objs[to];
52 struct bnx2x_fp_stats *from_fp_stats = &bp->fp_stats[from];
53 struct bnx2x_fp_stats *to_fp_stats = &bp->fp_stats[to];
65565884
MS
54 int old_max_eth_txqs, new_max_eth_txqs;
55 int old_txdata_index = 0, new_txdata_index = 0;
72754080
AE
56
57 /* Copy the NAPI object as it has been already initialized */
58 from_fp->napi = to_fp->napi;
59
b3b83c3f
DK
60 /* Move bnx2x_fastpath contents */
61 memcpy(to_fp, from_fp, sizeof(*to_fp));
62 to_fp->index = to;
65565884 63
15192a8c
BW
64 /* move sp_objs contents as well, as their indices match fp ones */
65 memcpy(to_sp_objs, from_sp_objs, sizeof(*to_sp_objs));
66
67 /* move fp_stats contents as well, as their indices match fp ones */
68 memcpy(to_fp_stats, from_fp_stats, sizeof(*to_fp_stats));
69
65565884
MS
70 /* Update txdata pointers in fp and move txdata content accordingly:
71 * Each fp consumes 'max_cos' txdata structures, so the index should be
72 * decremented by max_cos x delta.
73 */
74
75 old_max_eth_txqs = BNX2X_NUM_ETH_QUEUES(bp) * (bp)->max_cos;
76 new_max_eth_txqs = (BNX2X_NUM_ETH_QUEUES(bp) - from + to) *
77 (bp)->max_cos;
78 if (from == FCOE_IDX(bp)) {
79 old_txdata_index = old_max_eth_txqs + FCOE_TXQ_IDX_OFFSET;
80 new_txdata_index = new_max_eth_txqs + FCOE_TXQ_IDX_OFFSET;
81 }
82
83 memcpy(&bp->bnx2x_txq[old_txdata_index],
84 &bp->bnx2x_txq[new_txdata_index],
85 sizeof(struct bnx2x_fp_txdata));
86 to_fp->txdata_ptr[0] = &bp->bnx2x_txq[new_txdata_index];
b3b83c3f
DK
87}
88
619c5cb6
VZ
89int load_count[2][3] = { {0} }; /* per-path: 0-common, 1-port0, 2-port1 */
90
9f6c9258
DK
91/* free skb in the packet ring at pos idx
92 * return idx of last bd freed
93 */
6383c0b3 94static u16 bnx2x_free_tx_pkt(struct bnx2x *bp, struct bnx2x_fp_txdata *txdata,
2df1a70a
TH
95 u16 idx, unsigned int *pkts_compl,
96 unsigned int *bytes_compl)
9f6c9258 97{
6383c0b3 98 struct sw_tx_bd *tx_buf = &txdata->tx_buf_ring[idx];
9f6c9258
DK
99 struct eth_tx_start_bd *tx_start_bd;
100 struct eth_tx_bd *tx_data_bd;
101 struct sk_buff *skb = tx_buf->skb;
102 u16 bd_idx = TX_BD(tx_buf->first_bd), new_cons;
103 int nbd;
104
105 /* prefetch skb end pointer to speedup dev_kfree_skb() */
106 prefetch(&skb->end);
107
51c1a580 108 DP(NETIF_MSG_TX_DONE, "fp[%d]: pkt_idx %d buff @(%p)->skb %p\n",
6383c0b3 109 txdata->txq_index, idx, tx_buf, skb);
9f6c9258
DK
110
111 /* unmap first bd */
6383c0b3 112 tx_start_bd = &txdata->tx_desc_ring[bd_idx].start_bd;
9f6c9258 113 dma_unmap_single(&bp->pdev->dev, BD_UNMAP_ADDR(tx_start_bd),
4bca60f4 114 BD_UNMAP_LEN(tx_start_bd), DMA_TO_DEVICE);
9f6c9258 115
619c5cb6 116
9f6c9258
DK
117 nbd = le16_to_cpu(tx_start_bd->nbd) - 1;
118#ifdef BNX2X_STOP_ON_ERROR
119 if ((nbd - 1) > (MAX_SKB_FRAGS + 2)) {
120 BNX2X_ERR("BAD nbd!\n");
121 bnx2x_panic();
122 }
123#endif
124 new_cons = nbd + tx_buf->first_bd;
125
126 /* Get the next bd */
127 bd_idx = TX_BD(NEXT_TX_IDX(bd_idx));
128
129 /* Skip a parse bd... */
130 --nbd;
131 bd_idx = TX_BD(NEXT_TX_IDX(bd_idx));
132
133 /* ...and the TSO split header bd since they have no mapping */
134 if (tx_buf->flags & BNX2X_TSO_SPLIT_BD) {
135 --nbd;
136 bd_idx = TX_BD(NEXT_TX_IDX(bd_idx));
137 }
138
139 /* now free frags */
140 while (nbd > 0) {
141
6383c0b3 142 tx_data_bd = &txdata->tx_desc_ring[bd_idx].reg_bd;
9f6c9258
DK
143 dma_unmap_page(&bp->pdev->dev, BD_UNMAP_ADDR(tx_data_bd),
144 BD_UNMAP_LEN(tx_data_bd), DMA_TO_DEVICE);
145 if (--nbd)
146 bd_idx = TX_BD(NEXT_TX_IDX(bd_idx));
147 }
148
149 /* release skb */
150 WARN_ON(!skb);
d8290ae5 151 if (likely(skb)) {
2df1a70a
TH
152 (*pkts_compl)++;
153 (*bytes_compl) += skb->len;
154 }
d8290ae5 155
40955532 156 dev_kfree_skb_any(skb);
9f6c9258
DK
157 tx_buf->first_bd = 0;
158 tx_buf->skb = NULL;
159
160 return new_cons;
161}
162
6383c0b3 163int bnx2x_tx_int(struct bnx2x *bp, struct bnx2x_fp_txdata *txdata)
9f6c9258 164{
9f6c9258 165 struct netdev_queue *txq;
6383c0b3 166 u16 hw_cons, sw_cons, bd_cons = txdata->tx_bd_cons;
2df1a70a 167 unsigned int pkts_compl = 0, bytes_compl = 0;
9f6c9258
DK
168
169#ifdef BNX2X_STOP_ON_ERROR
170 if (unlikely(bp->panic))
171 return -1;
172#endif
173
6383c0b3
AE
174 txq = netdev_get_tx_queue(bp->dev, txdata->txq_index);
175 hw_cons = le16_to_cpu(*txdata->tx_cons_sb);
176 sw_cons = txdata->tx_pkt_cons;
9f6c9258
DK
177
178 while (sw_cons != hw_cons) {
179 u16 pkt_cons;
180
181 pkt_cons = TX_BD(sw_cons);
182
51c1a580
MS
183 DP(NETIF_MSG_TX_DONE,
184 "queue[%d]: hw_cons %u sw_cons %u pkt_cons %u\n",
6383c0b3 185 txdata->txq_index, hw_cons, sw_cons, pkt_cons);
9f6c9258 186
2df1a70a
TH
187 bd_cons = bnx2x_free_tx_pkt(bp, txdata, pkt_cons,
188 &pkts_compl, &bytes_compl);
189
9f6c9258
DK
190 sw_cons++;
191 }
192
2df1a70a
TH
193 netdev_tx_completed_queue(txq, pkts_compl, bytes_compl);
194
6383c0b3
AE
195 txdata->tx_pkt_cons = sw_cons;
196 txdata->tx_bd_cons = bd_cons;
9f6c9258
DK
197
198 /* Need to make the tx_bd_cons update visible to start_xmit()
199 * before checking for netif_tx_queue_stopped(). Without the
200 * memory barrier, there is a small possibility that
201 * start_xmit() will miss it and cause the queue to be stopped
202 * forever.
619c5cb6
VZ
203 * On the other hand we need an rmb() here to ensure the proper
204 * ordering of bit testing in the following
205 * netif_tx_queue_stopped(txq) call.
9f6c9258
DK
206 */
207 smp_mb();
208
9f6c9258
DK
209 if (unlikely(netif_tx_queue_stopped(txq))) {
210 /* Taking tx_lock() is needed to prevent reenabling the queue
211 * while it's empty. This could have happen if rx_action() gets
212 * suspended in bnx2x_tx_int() after the condition before
213 * netif_tx_wake_queue(), while tx_action (bnx2x_start_xmit()):
214 *
215 * stops the queue->sees fresh tx_bd_cons->releases the queue->
216 * sends some packets consuming the whole queue again->
217 * stops the queue
218 */
219
220 __netif_tx_lock(txq, smp_processor_id());
221
222 if ((netif_tx_queue_stopped(txq)) &&
223 (bp->state == BNX2X_STATE_OPEN) &&
7df2dc6b 224 (bnx2x_tx_avail(bp, txdata) >= MAX_DESC_PER_TX_PKT))
9f6c9258
DK
225 netif_tx_wake_queue(txq);
226
227 __netif_tx_unlock(txq);
228 }
229 return 0;
230}
231
232static inline void bnx2x_update_last_max_sge(struct bnx2x_fastpath *fp,
233 u16 idx)
234{
235 u16 last_max = fp->last_max_sge;
236
237 if (SUB_S16(idx, last_max) > 0)
238 fp->last_max_sge = idx;
239}
240
621b4d66
DK
241static inline void bnx2x_update_sge_prod(struct bnx2x_fastpath *fp,
242 u16 sge_len,
243 struct eth_end_agg_rx_cqe *cqe)
9f6c9258
DK
244{
245 struct bnx2x *bp = fp->bp;
9f6c9258
DK
246 u16 last_max, last_elem, first_elem;
247 u16 delta = 0;
248 u16 i;
249
250 if (!sge_len)
251 return;
252
253 /* First mark all used pages */
254 for (i = 0; i < sge_len; i++)
619c5cb6 255 BIT_VEC64_CLEAR_BIT(fp->sge_mask,
621b4d66 256 RX_SGE(le16_to_cpu(cqe->sgl_or_raw_data.sgl[i])));
9f6c9258
DK
257
258 DP(NETIF_MSG_RX_STATUS, "fp_cqe->sgl[%d] = %d\n",
621b4d66 259 sge_len - 1, le16_to_cpu(cqe->sgl_or_raw_data.sgl[sge_len - 1]));
9f6c9258
DK
260
261 /* Here we assume that the last SGE index is the biggest */
262 prefetch((void *)(fp->sge_mask));
523224a3 263 bnx2x_update_last_max_sge(fp,
621b4d66 264 le16_to_cpu(cqe->sgl_or_raw_data.sgl[sge_len - 1]));
9f6c9258
DK
265
266 last_max = RX_SGE(fp->last_max_sge);
619c5cb6
VZ
267 last_elem = last_max >> BIT_VEC64_ELEM_SHIFT;
268 first_elem = RX_SGE(fp->rx_sge_prod) >> BIT_VEC64_ELEM_SHIFT;
9f6c9258
DK
269
270 /* If ring is not full */
271 if (last_elem + 1 != first_elem)
272 last_elem++;
273
274 /* Now update the prod */
275 for (i = first_elem; i != last_elem; i = NEXT_SGE_MASK_ELEM(i)) {
276 if (likely(fp->sge_mask[i]))
277 break;
278
619c5cb6
VZ
279 fp->sge_mask[i] = BIT_VEC64_ELEM_ONE_MASK;
280 delta += BIT_VEC64_ELEM_SZ;
9f6c9258
DK
281 }
282
283 if (delta > 0) {
284 fp->rx_sge_prod += delta;
285 /* clear page-end entries */
286 bnx2x_clear_sge_mask_next_elems(fp);
287 }
288
289 DP(NETIF_MSG_RX_STATUS,
290 "fp->last_max_sge = %d fp->rx_sge_prod = %d\n",
291 fp->last_max_sge, fp->rx_sge_prod);
292}
293
e52fcb24
ED
294/* Set Toeplitz hash value in the skb using the value from the
295 * CQE (calculated by HW).
296 */
297static u32 bnx2x_get_rxhash(const struct bnx2x *bp,
a334b5fb
ED
298 const struct eth_fast_path_rx_cqe *cqe,
299 bool *l4_rxhash)
e52fcb24
ED
300{
301 /* Set Toeplitz hash from CQE */
302 if ((bp->dev->features & NETIF_F_RXHASH) &&
a334b5fb
ED
303 (cqe->status_flags & ETH_FAST_PATH_RX_CQE_RSS_HASH_FLG)) {
304 enum eth_rss_hash_type htype;
305
306 htype = cqe->status_flags & ETH_FAST_PATH_RX_CQE_RSS_HASH_TYPE;
307 *l4_rxhash = (htype == TCP_IPV4_HASH_TYPE) ||
308 (htype == TCP_IPV6_HASH_TYPE);
e52fcb24 309 return le32_to_cpu(cqe->rss_hash_result);
a334b5fb
ED
310 }
311 *l4_rxhash = false;
e52fcb24
ED
312 return 0;
313}
314
9f6c9258 315static void bnx2x_tpa_start(struct bnx2x_fastpath *fp, u16 queue,
e52fcb24 316 u16 cons, u16 prod,
619c5cb6 317 struct eth_fast_path_rx_cqe *cqe)
9f6c9258
DK
318{
319 struct bnx2x *bp = fp->bp;
320 struct sw_rx_bd *cons_rx_buf = &fp->rx_buf_ring[cons];
321 struct sw_rx_bd *prod_rx_buf = &fp->rx_buf_ring[prod];
322 struct eth_rx_bd *prod_bd = &fp->rx_desc_ring[prod];
323 dma_addr_t mapping;
619c5cb6
VZ
324 struct bnx2x_agg_info *tpa_info = &fp->tpa_info[queue];
325 struct sw_rx_bd *first_buf = &tpa_info->first_buf;
9f6c9258 326
619c5cb6
VZ
327 /* print error if current state != stop */
328 if (tpa_info->tpa_state != BNX2X_TPA_STOP)
9f6c9258
DK
329 BNX2X_ERR("start of bin not in stop [%d]\n", queue);
330
e52fcb24 331 /* Try to map an empty data buffer from the aggregation info */
619c5cb6 332 mapping = dma_map_single(&bp->pdev->dev,
e52fcb24 333 first_buf->data + NET_SKB_PAD,
619c5cb6
VZ
334 fp->rx_buf_size, DMA_FROM_DEVICE);
335 /*
336 * ...if it fails - move the skb from the consumer to the producer
337 * and set the current aggregation state as ERROR to drop it
338 * when TPA_STOP arrives.
339 */
340
341 if (unlikely(dma_mapping_error(&bp->pdev->dev, mapping))) {
342 /* Move the BD from the consumer to the producer */
e52fcb24 343 bnx2x_reuse_rx_data(fp, cons, prod);
619c5cb6
VZ
344 tpa_info->tpa_state = BNX2X_TPA_ERROR;
345 return;
346 }
9f6c9258 347
e52fcb24
ED
348 /* move empty data from pool to prod */
349 prod_rx_buf->data = first_buf->data;
619c5cb6 350 dma_unmap_addr_set(prod_rx_buf, mapping, mapping);
e52fcb24 351 /* point prod_bd to new data */
9f6c9258
DK
352 prod_bd->addr_hi = cpu_to_le32(U64_HI(mapping));
353 prod_bd->addr_lo = cpu_to_le32(U64_LO(mapping));
354
619c5cb6
VZ
355 /* move partial skb from cons to pool (don't unmap yet) */
356 *first_buf = *cons_rx_buf;
357
358 /* mark bin state as START */
359 tpa_info->parsing_flags =
360 le16_to_cpu(cqe->pars_flags.flags);
361 tpa_info->vlan_tag = le16_to_cpu(cqe->vlan_tag);
362 tpa_info->tpa_state = BNX2X_TPA_START;
363 tpa_info->len_on_bd = le16_to_cpu(cqe->len_on_bd);
364 tpa_info->placement_offset = cqe->placement_offset;
a334b5fb 365 tpa_info->rxhash = bnx2x_get_rxhash(bp, cqe, &tpa_info->l4_rxhash);
621b4d66
DK
366 if (fp->mode == TPA_MODE_GRO) {
367 u16 gro_size = le16_to_cpu(cqe->pkt_len_or_gro_seg_len);
368 tpa_info->full_page =
369 SGE_PAGE_SIZE * PAGES_PER_SGE / gro_size * gro_size;
370 tpa_info->gro_size = gro_size;
371 }
619c5cb6 372
9f6c9258
DK
373#ifdef BNX2X_STOP_ON_ERROR
374 fp->tpa_queue_used |= (1 << queue);
375#ifdef _ASM_GENERIC_INT_L64_H
376 DP(NETIF_MSG_RX_STATUS, "fp->tpa_queue_used = 0x%lx\n",
377#else
378 DP(NETIF_MSG_RX_STATUS, "fp->tpa_queue_used = 0x%llx\n",
379#endif
380 fp->tpa_queue_used);
381#endif
382}
383
e4e3c02a
VZ
384/* Timestamp option length allowed for TPA aggregation:
385 *
386 * nop nop kind length echo val
387 */
388#define TPA_TSTAMP_OPT_LEN 12
389/**
e8920674 390 * bnx2x_set_lro_mss - calculate the approximate value of the MSS
e4e3c02a 391 *
e8920674
DK
392 * @bp: driver handle
393 * @parsing_flags: parsing flags from the START CQE
394 * @len_on_bd: total length of the first packet for the
395 * aggregation.
396 *
397 * Approximate value of the MSS for this aggregation calculated using
398 * the first packet of it.
e4e3c02a 399 */
1191cb83
ED
400static u16 bnx2x_set_lro_mss(struct bnx2x *bp, u16 parsing_flags,
401 u16 len_on_bd)
e4e3c02a 402{
619c5cb6
VZ
403 /*
404 * TPA arrgregation won't have either IP options or TCP options
405 * other than timestamp or IPv6 extension headers.
e4e3c02a 406 */
619c5cb6
VZ
407 u16 hdrs_len = ETH_HLEN + sizeof(struct tcphdr);
408
409 if (GET_FLAG(parsing_flags, PARSING_FLAGS_OVER_ETHERNET_PROTOCOL) ==
410 PRS_FLAG_OVERETH_IPV6)
411 hdrs_len += sizeof(struct ipv6hdr);
412 else /* IPv4 */
413 hdrs_len += sizeof(struct iphdr);
e4e3c02a
VZ
414
415
416 /* Check if there was a TCP timestamp, if there is it's will
417 * always be 12 bytes length: nop nop kind length echo val.
418 *
419 * Otherwise FW would close the aggregation.
420 */
421 if (parsing_flags & PARSING_FLAGS_TIME_STAMP_EXIST_FLAG)
422 hdrs_len += TPA_TSTAMP_OPT_LEN;
423
424 return len_on_bd - hdrs_len;
425}
426
1191cb83
ED
427static int bnx2x_alloc_rx_sge(struct bnx2x *bp,
428 struct bnx2x_fastpath *fp, u16 index)
429{
430 struct page *page = alloc_pages(GFP_ATOMIC, PAGES_PER_SGE_SHIFT);
431 struct sw_rx_page *sw_buf = &fp->rx_page_ring[index];
432 struct eth_rx_sge *sge = &fp->rx_sge_ring[index];
433 dma_addr_t mapping;
434
435 if (unlikely(page == NULL)) {
436 BNX2X_ERR("Can't alloc sge\n");
437 return -ENOMEM;
438 }
439
440 mapping = dma_map_page(&bp->pdev->dev, page, 0,
441 SGE_PAGE_SIZE*PAGES_PER_SGE, DMA_FROM_DEVICE);
442 if (unlikely(dma_mapping_error(&bp->pdev->dev, mapping))) {
443 __free_pages(page, PAGES_PER_SGE_SHIFT);
444 BNX2X_ERR("Can't map sge\n");
445 return -ENOMEM;
446 }
447
448 sw_buf->page = page;
449 dma_unmap_addr_set(sw_buf, mapping, mapping);
450
451 sge->addr_hi = cpu_to_le32(U64_HI(mapping));
452 sge->addr_lo = cpu_to_le32(U64_LO(mapping));
453
454 return 0;
455}
456
9f6c9258 457static int bnx2x_fill_frag_skb(struct bnx2x *bp, struct bnx2x_fastpath *fp,
621b4d66
DK
458 struct bnx2x_agg_info *tpa_info,
459 u16 pages,
460 struct sk_buff *skb,
619c5cb6
VZ
461 struct eth_end_agg_rx_cqe *cqe,
462 u16 cqe_idx)
9f6c9258
DK
463{
464 struct sw_rx_page *rx_pg, old_rx_pg;
621b4d66
DK
465 u32 i, frag_len, frag_size;
466 int err, j, frag_id = 0;
619c5cb6 467 u16 len_on_bd = tpa_info->len_on_bd;
621b4d66 468 u16 full_page = 0, gro_size = 0;
9f6c9258 469
619c5cb6 470 frag_size = le16_to_cpu(cqe->pkt_len) - len_on_bd;
621b4d66
DK
471
472 if (fp->mode == TPA_MODE_GRO) {
473 gro_size = tpa_info->gro_size;
474 full_page = tpa_info->full_page;
475 }
9f6c9258
DK
476
477 /* This is needed in order to enable forwarding support */
621b4d66 478 if (frag_size) {
619c5cb6
VZ
479 skb_shinfo(skb)->gso_size = bnx2x_set_lro_mss(bp,
480 tpa_info->parsing_flags, len_on_bd);
9f6c9258 481
621b4d66
DK
482 /* set for GRO */
483 if (fp->mode == TPA_MODE_GRO)
484 skb_shinfo(skb)->gso_type =
485 (GET_FLAG(tpa_info->parsing_flags,
486 PARSING_FLAGS_OVER_ETHERNET_PROTOCOL) ==
487 PRS_FLAG_OVERETH_IPV6) ?
488 SKB_GSO_TCPV6 : SKB_GSO_TCPV4;
489 }
490
491
9f6c9258
DK
492#ifdef BNX2X_STOP_ON_ERROR
493 if (pages > min_t(u32, 8, MAX_SKB_FRAGS)*SGE_PAGE_SIZE*PAGES_PER_SGE) {
494 BNX2X_ERR("SGL length is too long: %d. CQE index is %d\n",
495 pages, cqe_idx);
619c5cb6 496 BNX2X_ERR("cqe->pkt_len = %d\n", cqe->pkt_len);
9f6c9258
DK
497 bnx2x_panic();
498 return -EINVAL;
499 }
500#endif
501
502 /* Run through the SGL and compose the fragmented skb */
503 for (i = 0, j = 0; i < pages; i += PAGES_PER_SGE, j++) {
619c5cb6 504 u16 sge_idx = RX_SGE(le16_to_cpu(cqe->sgl_or_raw_data.sgl[j]));
9f6c9258
DK
505
506 /* FW gives the indices of the SGE as if the ring is an array
507 (meaning that "next" element will consume 2 indices) */
621b4d66
DK
508 if (fp->mode == TPA_MODE_GRO)
509 frag_len = min_t(u32, frag_size, (u32)full_page);
510 else /* LRO */
511 frag_len = min_t(u32, frag_size,
512 (u32)(SGE_PAGE_SIZE * PAGES_PER_SGE));
513
9f6c9258
DK
514 rx_pg = &fp->rx_page_ring[sge_idx];
515 old_rx_pg = *rx_pg;
516
517 /* If we fail to allocate a substitute page, we simply stop
518 where we are and drop the whole packet */
519 err = bnx2x_alloc_rx_sge(bp, fp, sge_idx);
520 if (unlikely(err)) {
15192a8c 521 bnx2x_fp_qstats(bp, fp)->rx_skb_alloc_failed++;
9f6c9258
DK
522 return err;
523 }
524
525 /* Unmap the page as we r going to pass it to the stack */
526 dma_unmap_page(&bp->pdev->dev,
527 dma_unmap_addr(&old_rx_pg, mapping),
528 SGE_PAGE_SIZE*PAGES_PER_SGE, DMA_FROM_DEVICE);
9f6c9258 529 /* Add one frag and update the appropriate fields in the skb */
621b4d66
DK
530 if (fp->mode == TPA_MODE_LRO)
531 skb_fill_page_desc(skb, j, old_rx_pg.page, 0, frag_len);
532 else { /* GRO */
533 int rem;
534 int offset = 0;
535 for (rem = frag_len; rem > 0; rem -= gro_size) {
536 int len = rem > gro_size ? gro_size : rem;
537 skb_fill_page_desc(skb, frag_id++,
538 old_rx_pg.page, offset, len);
539 if (offset)
540 get_page(old_rx_pg.page);
541 offset += len;
542 }
543 }
9f6c9258
DK
544
545 skb->data_len += frag_len;
e1ac50f6 546 skb->truesize += SGE_PAGE_SIZE * PAGES_PER_SGE;
9f6c9258
DK
547 skb->len += frag_len;
548
549 frag_size -= frag_len;
550 }
551
552 return 0;
553}
554
1191cb83
ED
555static void bnx2x_tpa_stop(struct bnx2x *bp, struct bnx2x_fastpath *fp,
556 struct bnx2x_agg_info *tpa_info,
557 u16 pages,
558 struct eth_end_agg_rx_cqe *cqe,
559 u16 cqe_idx)
9f6c9258 560{
619c5cb6 561 struct sw_rx_bd *rx_buf = &tpa_info->first_buf;
621b4d66 562 u8 pad = tpa_info->placement_offset;
619c5cb6 563 u16 len = tpa_info->len_on_bd;
e52fcb24 564 struct sk_buff *skb = NULL;
621b4d66 565 u8 *new_data, *data = rx_buf->data;
619c5cb6
VZ
566 u8 old_tpa_state = tpa_info->tpa_state;
567
568 tpa_info->tpa_state = BNX2X_TPA_STOP;
569
570 /* If we there was an error during the handling of the TPA_START -
571 * drop this aggregation.
572 */
573 if (old_tpa_state == BNX2X_TPA_ERROR)
574 goto drop;
575
e52fcb24
ED
576 /* Try to allocate the new data */
577 new_data = kmalloc(fp->rx_buf_size + NET_SKB_PAD, GFP_ATOMIC);
9f6c9258
DK
578
579 /* Unmap skb in the pool anyway, as we are going to change
580 pool entry status to BNX2X_TPA_STOP even if new skb allocation
581 fails. */
582 dma_unmap_single(&bp->pdev->dev, dma_unmap_addr(rx_buf, mapping),
a8c94b91 583 fp->rx_buf_size, DMA_FROM_DEVICE);
e52fcb24 584 if (likely(new_data))
d3836f21 585 skb = build_skb(data, 0);
9f6c9258 586
e52fcb24 587 if (likely(skb)) {
9f6c9258 588#ifdef BNX2X_STOP_ON_ERROR
a8c94b91 589 if (pad + len > fp->rx_buf_size) {
51c1a580 590 BNX2X_ERR("skb_put is about to fail... pad %d len %d rx_buf_size %d\n",
a8c94b91 591 pad, len, fp->rx_buf_size);
9f6c9258
DK
592 bnx2x_panic();
593 return;
594 }
595#endif
596
e52fcb24 597 skb_reserve(skb, pad + NET_SKB_PAD);
9f6c9258 598 skb_put(skb, len);
e52fcb24 599 skb->rxhash = tpa_info->rxhash;
a334b5fb 600 skb->l4_rxhash = tpa_info->l4_rxhash;
9f6c9258
DK
601
602 skb->protocol = eth_type_trans(skb, bp->dev);
603 skb->ip_summed = CHECKSUM_UNNECESSARY;
604
621b4d66
DK
605 if (!bnx2x_fill_frag_skb(bp, fp, tpa_info, pages,
606 skb, cqe, cqe_idx)) {
619c5cb6
VZ
607 if (tpa_info->parsing_flags & PARSING_FLAGS_VLAN)
608 __vlan_hwaccel_put_tag(skb, tpa_info->vlan_tag);
9bcc0893 609 napi_gro_receive(&fp->napi, skb);
9f6c9258 610 } else {
51c1a580
MS
611 DP(NETIF_MSG_RX_STATUS,
612 "Failed to allocate new pages - dropping packet!\n");
40955532 613 dev_kfree_skb_any(skb);
9f6c9258
DK
614 }
615
616
e52fcb24
ED
617 /* put new data in bin */
618 rx_buf->data = new_data;
9f6c9258 619
619c5cb6 620 return;
9f6c9258 621 }
3f61cd87 622 kfree(new_data);
619c5cb6
VZ
623drop:
624 /* drop the packet and keep the buffer in the bin */
625 DP(NETIF_MSG_RX_STATUS,
626 "Failed to allocate or map a new skb - dropping packet!\n");
15192a8c 627 bnx2x_fp_stats(bp, fp)->eth_q_stats.rx_skb_alloc_failed++;
9f6c9258
DK
628}
629
1191cb83
ED
630static int bnx2x_alloc_rx_data(struct bnx2x *bp,
631 struct bnx2x_fastpath *fp, u16 index)
632{
633 u8 *data;
634 struct sw_rx_bd *rx_buf = &fp->rx_buf_ring[index];
635 struct eth_rx_bd *rx_bd = &fp->rx_desc_ring[index];
636 dma_addr_t mapping;
637
638 data = kmalloc(fp->rx_buf_size + NET_SKB_PAD, GFP_ATOMIC);
639 if (unlikely(data == NULL))
640 return -ENOMEM;
641
642 mapping = dma_map_single(&bp->pdev->dev, data + NET_SKB_PAD,
643 fp->rx_buf_size,
644 DMA_FROM_DEVICE);
645 if (unlikely(dma_mapping_error(&bp->pdev->dev, mapping))) {
646 kfree(data);
647 BNX2X_ERR("Can't map rx data\n");
648 return -ENOMEM;
649 }
650
651 rx_buf->data = data;
652 dma_unmap_addr_set(rx_buf, mapping, mapping);
653
654 rx_bd->addr_hi = cpu_to_le32(U64_HI(mapping));
655 rx_bd->addr_lo = cpu_to_le32(U64_LO(mapping));
656
657 return 0;
658}
659
15192a8c
BW
660static
661void bnx2x_csum_validate(struct sk_buff *skb, union eth_rx_cqe *cqe,
662 struct bnx2x_fastpath *fp,
663 struct bnx2x_eth_q_stats *qstats)
d6cb3e41 664{
e488921f
MS
665 /* Do nothing if no L4 csum validation was done.
666 * We do not check whether IP csum was validated. For IPv4 we assume
667 * that if the card got as far as validating the L4 csum, it also
668 * validated the IP csum. IPv6 has no IP csum.
669 */
d6cb3e41 670 if (cqe->fast_path_cqe.status_flags &
e488921f 671 ETH_FAST_PATH_RX_CQE_L4_XSUM_NO_VALIDATION_FLG)
d6cb3e41
ED
672 return;
673
e488921f 674 /* If L4 validation was done, check if an error was found. */
d6cb3e41
ED
675
676 if (cqe->fast_path_cqe.type_error_flags &
677 (ETH_FAST_PATH_RX_CQE_IP_BAD_XSUM_FLG |
678 ETH_FAST_PATH_RX_CQE_L4_BAD_XSUM_FLG))
15192a8c 679 qstats->hw_csum_err++;
d6cb3e41
ED
680 else
681 skb->ip_summed = CHECKSUM_UNNECESSARY;
682}
9f6c9258
DK
683
684int bnx2x_rx_int(struct bnx2x_fastpath *fp, int budget)
685{
686 struct bnx2x *bp = fp->bp;
687 u16 bd_cons, bd_prod, bd_prod_fw, comp_ring_cons;
688 u16 hw_comp_cons, sw_comp_cons, sw_comp_prod;
689 int rx_pkt = 0;
690
691#ifdef BNX2X_STOP_ON_ERROR
692 if (unlikely(bp->panic))
693 return 0;
694#endif
695
696 /* CQ "next element" is of the size of the regular element,
697 that's why it's ok here */
698 hw_comp_cons = le16_to_cpu(*fp->rx_cons_sb);
699 if ((hw_comp_cons & MAX_RCQ_DESC_CNT) == MAX_RCQ_DESC_CNT)
700 hw_comp_cons++;
701
702 bd_cons = fp->rx_bd_cons;
703 bd_prod = fp->rx_bd_prod;
704 bd_prod_fw = bd_prod;
705 sw_comp_cons = fp->rx_comp_cons;
706 sw_comp_prod = fp->rx_comp_prod;
707
708 /* Memory barrier necessary as speculative reads of the rx
709 * buffer can be ahead of the index in the status block
710 */
711 rmb();
712
713 DP(NETIF_MSG_RX_STATUS,
714 "queue[%d]: hw_comp_cons %u sw_comp_cons %u\n",
715 fp->index, hw_comp_cons, sw_comp_cons);
716
717 while (sw_comp_cons != hw_comp_cons) {
718 struct sw_rx_bd *rx_buf = NULL;
719 struct sk_buff *skb;
720 union eth_rx_cqe *cqe;
619c5cb6 721 struct eth_fast_path_rx_cqe *cqe_fp;
9f6c9258 722 u8 cqe_fp_flags;
619c5cb6 723 enum eth_rx_cqe_type cqe_fp_type;
621b4d66 724 u16 len, pad, queue;
e52fcb24 725 u8 *data;
a334b5fb 726 bool l4_rxhash;
9f6c9258 727
619c5cb6
VZ
728#ifdef BNX2X_STOP_ON_ERROR
729 if (unlikely(bp->panic))
730 return 0;
731#endif
732
9f6c9258
DK
733 comp_ring_cons = RCQ_BD(sw_comp_cons);
734 bd_prod = RX_BD(bd_prod);
735 bd_cons = RX_BD(bd_cons);
736
9f6c9258 737 cqe = &fp->rx_comp_ring[comp_ring_cons];
619c5cb6
VZ
738 cqe_fp = &cqe->fast_path_cqe;
739 cqe_fp_flags = cqe_fp->type_error_flags;
740 cqe_fp_type = cqe_fp_flags & ETH_FAST_PATH_RX_CQE_TYPE;
9f6c9258 741
51c1a580
MS
742 DP(NETIF_MSG_RX_STATUS,
743 "CQE type %x err %x status %x queue %x vlan %x len %u\n",
744 CQE_TYPE(cqe_fp_flags),
619c5cb6
VZ
745 cqe_fp_flags, cqe_fp->status_flags,
746 le32_to_cpu(cqe_fp->rss_hash_result),
621b4d66
DK
747 le16_to_cpu(cqe_fp->vlan_tag),
748 le16_to_cpu(cqe_fp->pkt_len_or_gro_seg_len));
9f6c9258
DK
749
750 /* is this a slowpath msg? */
619c5cb6 751 if (unlikely(CQE_TYPE_SLOW(cqe_fp_type))) {
9f6c9258
DK
752 bnx2x_sp_event(fp, cqe);
753 goto next_cqe;
e52fcb24 754 }
621b4d66 755
e52fcb24
ED
756 rx_buf = &fp->rx_buf_ring[bd_cons];
757 data = rx_buf->data;
9f6c9258 758
e52fcb24 759 if (!CQE_TYPE_FAST(cqe_fp_type)) {
621b4d66
DK
760 struct bnx2x_agg_info *tpa_info;
761 u16 frag_size, pages;
619c5cb6 762#ifdef BNX2X_STOP_ON_ERROR
e52fcb24
ED
763 /* sanity check */
764 if (fp->disable_tpa &&
765 (CQE_TYPE_START(cqe_fp_type) ||
766 CQE_TYPE_STOP(cqe_fp_type)))
51c1a580 767 BNX2X_ERR("START/STOP packet while disable_tpa type %x\n",
e52fcb24 768 CQE_TYPE(cqe_fp_type));
619c5cb6 769#endif
9f6c9258 770
e52fcb24
ED
771 if (CQE_TYPE_START(cqe_fp_type)) {
772 u16 queue = cqe_fp->queue_index;
773 DP(NETIF_MSG_RX_STATUS,
774 "calling tpa_start on queue %d\n",
775 queue);
9f6c9258 776
e52fcb24
ED
777 bnx2x_tpa_start(fp, queue,
778 bd_cons, bd_prod,
779 cqe_fp);
621b4d66 780
e52fcb24 781 goto next_rx;
e52fcb24 782
621b4d66
DK
783 }
784 queue = cqe->end_agg_cqe.queue_index;
785 tpa_info = &fp->tpa_info[queue];
786 DP(NETIF_MSG_RX_STATUS,
787 "calling tpa_stop on queue %d\n",
788 queue);
789
790 frag_size = le16_to_cpu(cqe->end_agg_cqe.pkt_len) -
791 tpa_info->len_on_bd;
792
793 if (fp->mode == TPA_MODE_GRO)
794 pages = (frag_size + tpa_info->full_page - 1) /
795 tpa_info->full_page;
796 else
797 pages = SGE_PAGE_ALIGN(frag_size) >>
798 SGE_PAGE_SHIFT;
799
800 bnx2x_tpa_stop(bp, fp, tpa_info, pages,
801 &cqe->end_agg_cqe, comp_ring_cons);
9f6c9258 802#ifdef BNX2X_STOP_ON_ERROR
621b4d66
DK
803 if (bp->panic)
804 return 0;
9f6c9258
DK
805#endif
806
621b4d66
DK
807 bnx2x_update_sge_prod(fp, pages, &cqe->end_agg_cqe);
808 goto next_cqe;
e52fcb24
ED
809 }
810 /* non TPA */
621b4d66 811 len = le16_to_cpu(cqe_fp->pkt_len_or_gro_seg_len);
e52fcb24
ED
812 pad = cqe_fp->placement_offset;
813 dma_sync_single_for_cpu(&bp->pdev->dev,
9f6c9258 814 dma_unmap_addr(rx_buf, mapping),
e52fcb24
ED
815 pad + RX_COPY_THRESH,
816 DMA_FROM_DEVICE);
817 pad += NET_SKB_PAD;
818 prefetch(data + pad); /* speedup eth_type_trans() */
819 /* is this an error packet? */
820 if (unlikely(cqe_fp_flags & ETH_RX_ERROR_FALGS)) {
51c1a580 821 DP(NETIF_MSG_RX_ERR | NETIF_MSG_RX_STATUS,
e52fcb24
ED
822 "ERROR flags %x rx packet %u\n",
823 cqe_fp_flags, sw_comp_cons);
15192a8c 824 bnx2x_fp_qstats(bp, fp)->rx_err_discard_pkt++;
e52fcb24
ED
825 goto reuse_rx;
826 }
9f6c9258 827
e52fcb24
ED
828 /* Since we don't have a jumbo ring
829 * copy small packets if mtu > 1500
830 */
831 if ((bp->dev->mtu > ETH_MAX_PACKET_SIZE) &&
832 (len <= RX_COPY_THRESH)) {
833 skb = netdev_alloc_skb_ip_align(bp->dev, len);
834 if (skb == NULL) {
51c1a580 835 DP(NETIF_MSG_RX_ERR | NETIF_MSG_RX_STATUS,
e52fcb24 836 "ERROR packet dropped because of alloc failure\n");
15192a8c 837 bnx2x_fp_qstats(bp, fp)->rx_skb_alloc_failed++;
9f6c9258
DK
838 goto reuse_rx;
839 }
e52fcb24
ED
840 memcpy(skb->data, data + pad, len);
841 bnx2x_reuse_rx_data(fp, bd_cons, bd_prod);
842 } else {
843 if (likely(bnx2x_alloc_rx_data(bp, fp, bd_prod) == 0)) {
9f6c9258 844 dma_unmap_single(&bp->pdev->dev,
e52fcb24 845 dma_unmap_addr(rx_buf, mapping),
a8c94b91 846 fp->rx_buf_size,
9f6c9258 847 DMA_FROM_DEVICE);
d3836f21 848 skb = build_skb(data, 0);
e52fcb24
ED
849 if (unlikely(!skb)) {
850 kfree(data);
15192a8c
BW
851 bnx2x_fp_qstats(bp, fp)->
852 rx_skb_alloc_failed++;
e52fcb24
ED
853 goto next_rx;
854 }
9f6c9258 855 skb_reserve(skb, pad);
9f6c9258 856 } else {
51c1a580
MS
857 DP(NETIF_MSG_RX_ERR | NETIF_MSG_RX_STATUS,
858 "ERROR packet dropped because of alloc failure\n");
15192a8c 859 bnx2x_fp_qstats(bp, fp)->rx_skb_alloc_failed++;
9f6c9258 860reuse_rx:
e52fcb24 861 bnx2x_reuse_rx_data(fp, bd_cons, bd_prod);
9f6c9258
DK
862 goto next_rx;
863 }
036d2df9 864 }
9f6c9258 865
036d2df9
DK
866 skb_put(skb, len);
867 skb->protocol = eth_type_trans(skb, bp->dev);
9f6c9258 868
036d2df9 869 /* Set Toeplitz hash for a none-LRO skb */
a334b5fb
ED
870 skb->rxhash = bnx2x_get_rxhash(bp, cqe_fp, &l4_rxhash);
871 skb->l4_rxhash = l4_rxhash;
9f6c9258 872
036d2df9 873 skb_checksum_none_assert(skb);
f85582f8 874
d6cb3e41 875 if (bp->dev->features & NETIF_F_RXCSUM)
15192a8c
BW
876 bnx2x_csum_validate(skb, cqe, fp,
877 bnx2x_fp_qstats(bp, fp));
9f6c9258 878
f233cafe 879 skb_record_rx_queue(skb, fp->rx_queue);
9f6c9258 880
619c5cb6
VZ
881 if (le16_to_cpu(cqe_fp->pars_flags.flags) &
882 PARSING_FLAGS_VLAN)
9bcc0893 883 __vlan_hwaccel_put_tag(skb,
619c5cb6 884 le16_to_cpu(cqe_fp->vlan_tag));
9bcc0893 885 napi_gro_receive(&fp->napi, skb);
9f6c9258
DK
886
887
888next_rx:
e52fcb24 889 rx_buf->data = NULL;
9f6c9258
DK
890
891 bd_cons = NEXT_RX_IDX(bd_cons);
892 bd_prod = NEXT_RX_IDX(bd_prod);
893 bd_prod_fw = NEXT_RX_IDX(bd_prod_fw);
894 rx_pkt++;
895next_cqe:
896 sw_comp_prod = NEXT_RCQ_IDX(sw_comp_prod);
897 sw_comp_cons = NEXT_RCQ_IDX(sw_comp_cons);
898
899 if (rx_pkt == budget)
900 break;
901 } /* while */
902
903 fp->rx_bd_cons = bd_cons;
904 fp->rx_bd_prod = bd_prod_fw;
905 fp->rx_comp_cons = sw_comp_cons;
906 fp->rx_comp_prod = sw_comp_prod;
907
908 /* Update producers */
909 bnx2x_update_rx_prod(bp, fp, bd_prod_fw, sw_comp_prod,
910 fp->rx_sge_prod);
911
912 fp->rx_pkt += rx_pkt;
913 fp->rx_calls++;
914
915 return rx_pkt;
916}
917
918static irqreturn_t bnx2x_msix_fp_int(int irq, void *fp_cookie)
919{
920 struct bnx2x_fastpath *fp = fp_cookie;
921 struct bnx2x *bp = fp->bp;
6383c0b3 922 u8 cos;
9f6c9258 923
51c1a580
MS
924 DP(NETIF_MSG_INTR,
925 "got an MSI-X interrupt on IDX:SB [fp %d fw_sd %d igusb %d]\n",
523224a3
DK
926 fp->index, fp->fw_sb_id, fp->igu_sb_id);
927 bnx2x_ack_sb(bp, fp->igu_sb_id, USTORM_ID, 0, IGU_INT_DISABLE, 0);
9f6c9258
DK
928
929#ifdef BNX2X_STOP_ON_ERROR
930 if (unlikely(bp->panic))
931 return IRQ_HANDLED;
932#endif
933
934 /* Handle Rx and Tx according to MSI-X vector */
935 prefetch(fp->rx_cons_sb);
6383c0b3
AE
936
937 for_each_cos_in_tx_queue(fp, cos)
65565884 938 prefetch(fp->txdata_ptr[cos]->tx_cons_sb);
6383c0b3 939
523224a3 940 prefetch(&fp->sb_running_index[SM_RX_ID]);
9f6c9258
DK
941 napi_schedule(&bnx2x_fp(bp, fp->index, napi));
942
943 return IRQ_HANDLED;
944}
945
9f6c9258
DK
946/* HW Lock for shared dual port PHYs */
947void bnx2x_acquire_phy_lock(struct bnx2x *bp)
948{
949 mutex_lock(&bp->port.phy_mutex);
950
951 if (bp->port.need_hw_lock)
952 bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_MDIO);
953}
954
955void bnx2x_release_phy_lock(struct bnx2x *bp)
956{
957 if (bp->port.need_hw_lock)
958 bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_MDIO);
959
960 mutex_unlock(&bp->port.phy_mutex);
961}
962
0793f83f
DK
963/* calculates MF speed according to current linespeed and MF configuration */
964u16 bnx2x_get_mf_speed(struct bnx2x *bp)
965{
966 u16 line_speed = bp->link_vars.line_speed;
967 if (IS_MF(bp)) {
faa6fcbb
DK
968 u16 maxCfg = bnx2x_extract_max_cfg(bp,
969 bp->mf_config[BP_VN(bp)]);
970
971 /* Calculate the current MAX line speed limit for the MF
972 * devices
0793f83f 973 */
faa6fcbb
DK
974 if (IS_MF_SI(bp))
975 line_speed = (line_speed * maxCfg) / 100;
976 else { /* SD mode */
0793f83f
DK
977 u16 vn_max_rate = maxCfg * 100;
978
979 if (vn_max_rate < line_speed)
980 line_speed = vn_max_rate;
faa6fcbb 981 }
0793f83f
DK
982 }
983
984 return line_speed;
985}
986
2ae17f66
VZ
987/**
988 * bnx2x_fill_report_data - fill link report data to report
989 *
990 * @bp: driver handle
991 * @data: link state to update
992 *
993 * It uses a none-atomic bit operations because is called under the mutex.
994 */
1191cb83
ED
995static void bnx2x_fill_report_data(struct bnx2x *bp,
996 struct bnx2x_link_report_data *data)
2ae17f66
VZ
997{
998 u16 line_speed = bnx2x_get_mf_speed(bp);
999
1000 memset(data, 0, sizeof(*data));
1001
1002 /* Fill the report data: efective line speed */
1003 data->line_speed = line_speed;
1004
1005 /* Link is down */
1006 if (!bp->link_vars.link_up || (bp->flags & MF_FUNC_DIS))
1007 __set_bit(BNX2X_LINK_REPORT_LINK_DOWN,
1008 &data->link_report_flags);
1009
1010 /* Full DUPLEX */
1011 if (bp->link_vars.duplex == DUPLEX_FULL)
1012 __set_bit(BNX2X_LINK_REPORT_FD, &data->link_report_flags);
1013
1014 /* Rx Flow Control is ON */
1015 if (bp->link_vars.flow_ctrl & BNX2X_FLOW_CTRL_RX)
1016 __set_bit(BNX2X_LINK_REPORT_RX_FC_ON, &data->link_report_flags);
1017
1018 /* Tx Flow Control is ON */
1019 if (bp->link_vars.flow_ctrl & BNX2X_FLOW_CTRL_TX)
1020 __set_bit(BNX2X_LINK_REPORT_TX_FC_ON, &data->link_report_flags);
1021}
1022
1023/**
1024 * bnx2x_link_report - report link status to OS.
1025 *
1026 * @bp: driver handle
1027 *
1028 * Calls the __bnx2x_link_report() under the same locking scheme
1029 * as a link/PHY state managing code to ensure a consistent link
1030 * reporting.
1031 */
1032
9f6c9258
DK
1033void bnx2x_link_report(struct bnx2x *bp)
1034{
2ae17f66
VZ
1035 bnx2x_acquire_phy_lock(bp);
1036 __bnx2x_link_report(bp);
1037 bnx2x_release_phy_lock(bp);
1038}
9f6c9258 1039
2ae17f66
VZ
1040/**
1041 * __bnx2x_link_report - report link status to OS.
1042 *
1043 * @bp: driver handle
1044 *
1045 * None atomic inmlementation.
1046 * Should be called under the phy_lock.
1047 */
1048void __bnx2x_link_report(struct bnx2x *bp)
1049{
1050 struct bnx2x_link_report_data cur_data;
9f6c9258 1051
2ae17f66
VZ
1052 /* reread mf_cfg */
1053 if (!CHIP_IS_E1(bp))
1054 bnx2x_read_mf_cfg(bp);
1055
1056 /* Read the current link report info */
1057 bnx2x_fill_report_data(bp, &cur_data);
1058
1059 /* Don't report link down or exactly the same link status twice */
1060 if (!memcmp(&cur_data, &bp->last_reported_link, sizeof(cur_data)) ||
1061 (test_bit(BNX2X_LINK_REPORT_LINK_DOWN,
1062 &bp->last_reported_link.link_report_flags) &&
1063 test_bit(BNX2X_LINK_REPORT_LINK_DOWN,
1064 &cur_data.link_report_flags)))
1065 return;
1066
1067 bp->link_cnt++;
9f6c9258 1068
2ae17f66
VZ
1069 /* We are going to report a new link parameters now -
1070 * remember the current data for the next time.
1071 */
1072 memcpy(&bp->last_reported_link, &cur_data, sizeof(cur_data));
9f6c9258 1073
2ae17f66
VZ
1074 if (test_bit(BNX2X_LINK_REPORT_LINK_DOWN,
1075 &cur_data.link_report_flags)) {
1076 netif_carrier_off(bp->dev);
1077 netdev_err(bp->dev, "NIC Link is Down\n");
1078 return;
1079 } else {
94f05b0f
JP
1080 const char *duplex;
1081 const char *flow;
1082
2ae17f66 1083 netif_carrier_on(bp->dev);
9f6c9258 1084
2ae17f66
VZ
1085 if (test_and_clear_bit(BNX2X_LINK_REPORT_FD,
1086 &cur_data.link_report_flags))
94f05b0f 1087 duplex = "full";
9f6c9258 1088 else
94f05b0f 1089 duplex = "half";
9f6c9258 1090
2ae17f66
VZ
1091 /* Handle the FC at the end so that only these flags would be
1092 * possibly set. This way we may easily check if there is no FC
1093 * enabled.
1094 */
1095 if (cur_data.link_report_flags) {
1096 if (test_bit(BNX2X_LINK_REPORT_RX_FC_ON,
1097 &cur_data.link_report_flags)) {
2ae17f66
VZ
1098 if (test_bit(BNX2X_LINK_REPORT_TX_FC_ON,
1099 &cur_data.link_report_flags))
94f05b0f
JP
1100 flow = "ON - receive & transmit";
1101 else
1102 flow = "ON - receive";
9f6c9258 1103 } else {
94f05b0f 1104 flow = "ON - transmit";
9f6c9258 1105 }
94f05b0f
JP
1106 } else {
1107 flow = "none";
9f6c9258 1108 }
94f05b0f
JP
1109 netdev_info(bp->dev, "NIC Link is Up, %d Mbps %s duplex, Flow control: %s\n",
1110 cur_data.line_speed, duplex, flow);
9f6c9258
DK
1111 }
1112}
1113
1191cb83
ED
1114static void bnx2x_set_next_page_sgl(struct bnx2x_fastpath *fp)
1115{
1116 int i;
1117
1118 for (i = 1; i <= NUM_RX_SGE_PAGES; i++) {
1119 struct eth_rx_sge *sge;
1120
1121 sge = &fp->rx_sge_ring[RX_SGE_CNT * i - 2];
1122 sge->addr_hi =
1123 cpu_to_le32(U64_HI(fp->rx_sge_mapping +
1124 BCM_PAGE_SIZE*(i % NUM_RX_SGE_PAGES)));
1125
1126 sge->addr_lo =
1127 cpu_to_le32(U64_LO(fp->rx_sge_mapping +
1128 BCM_PAGE_SIZE*(i % NUM_RX_SGE_PAGES)));
1129 }
1130}
1131
1132static void bnx2x_free_tpa_pool(struct bnx2x *bp,
1133 struct bnx2x_fastpath *fp, int last)
1134{
1135 int i;
1136
1137 for (i = 0; i < last; i++) {
1138 struct bnx2x_agg_info *tpa_info = &fp->tpa_info[i];
1139 struct sw_rx_bd *first_buf = &tpa_info->first_buf;
1140 u8 *data = first_buf->data;
1141
1142 if (data == NULL) {
1143 DP(NETIF_MSG_IFDOWN, "tpa bin %d empty on free\n", i);
1144 continue;
1145 }
1146 if (tpa_info->tpa_state == BNX2X_TPA_START)
1147 dma_unmap_single(&bp->pdev->dev,
1148 dma_unmap_addr(first_buf, mapping),
1149 fp->rx_buf_size, DMA_FROM_DEVICE);
1150 kfree(data);
1151 first_buf->data = NULL;
1152 }
1153}
1154
9f6c9258
DK
1155void bnx2x_init_rx_rings(struct bnx2x *bp)
1156{
1157 int func = BP_FUNC(bp);
523224a3 1158 u16 ring_prod;
9f6c9258 1159 int i, j;
25141580 1160
b3b83c3f 1161 /* Allocate TPA resources */
ec6ba945 1162 for_each_rx_queue(bp, j) {
523224a3 1163 struct bnx2x_fastpath *fp = &bp->fp[j];
9f6c9258 1164
a8c94b91
VZ
1165 DP(NETIF_MSG_IFUP,
1166 "mtu %d rx_buf_size %d\n", bp->dev->mtu, fp->rx_buf_size);
1167
523224a3 1168 if (!fp->disable_tpa) {
619c5cb6 1169 /* Fill the per-aggregtion pool */
dfacf138 1170 for (i = 0; i < MAX_AGG_QS(bp); i++) {
619c5cb6
VZ
1171 struct bnx2x_agg_info *tpa_info =
1172 &fp->tpa_info[i];
1173 struct sw_rx_bd *first_buf =
1174 &tpa_info->first_buf;
1175
e52fcb24
ED
1176 first_buf->data = kmalloc(fp->rx_buf_size + NET_SKB_PAD,
1177 GFP_ATOMIC);
1178 if (!first_buf->data) {
51c1a580
MS
1179 BNX2X_ERR("Failed to allocate TPA skb pool for queue[%d] - disabling TPA on this queue!\n",
1180 j);
9f6c9258
DK
1181 bnx2x_free_tpa_pool(bp, fp, i);
1182 fp->disable_tpa = 1;
1183 break;
1184 }
619c5cb6
VZ
1185 dma_unmap_addr_set(first_buf, mapping, 0);
1186 tpa_info->tpa_state = BNX2X_TPA_STOP;
9f6c9258 1187 }
523224a3
DK
1188
1189 /* "next page" elements initialization */
1190 bnx2x_set_next_page_sgl(fp);
1191
1192 /* set SGEs bit mask */
1193 bnx2x_init_sge_ring_bit_mask(fp);
1194
1195 /* Allocate SGEs and initialize the ring elements */
1196 for (i = 0, ring_prod = 0;
1197 i < MAX_RX_SGE_CNT*NUM_RX_SGE_PAGES; i++) {
1198
1199 if (bnx2x_alloc_rx_sge(bp, fp, ring_prod) < 0) {
51c1a580
MS
1200 BNX2X_ERR("was only able to allocate %d rx sges\n",
1201 i);
1202 BNX2X_ERR("disabling TPA for queue[%d]\n",
1203 j);
523224a3 1204 /* Cleanup already allocated elements */
619c5cb6
VZ
1205 bnx2x_free_rx_sge_range(bp, fp,
1206 ring_prod);
1207 bnx2x_free_tpa_pool(bp, fp,
dfacf138 1208 MAX_AGG_QS(bp));
523224a3
DK
1209 fp->disable_tpa = 1;
1210 ring_prod = 0;
1211 break;
1212 }
1213 ring_prod = NEXT_SGE_IDX(ring_prod);
1214 }
1215
1216 fp->rx_sge_prod = ring_prod;
9f6c9258
DK
1217 }
1218 }
1219
ec6ba945 1220 for_each_rx_queue(bp, j) {
9f6c9258
DK
1221 struct bnx2x_fastpath *fp = &bp->fp[j];
1222
1223 fp->rx_bd_cons = 0;
9f6c9258 1224
b3b83c3f
DK
1225 /* Activate BD ring */
1226 /* Warning!
1227 * this will generate an interrupt (to the TSTORM)
1228 * must only be done after chip is initialized
1229 */
1230 bnx2x_update_rx_prod(bp, fp, fp->rx_bd_prod, fp->rx_comp_prod,
1231 fp->rx_sge_prod);
9f6c9258 1232
9f6c9258
DK
1233 if (j != 0)
1234 continue;
1235
619c5cb6 1236 if (CHIP_IS_E1(bp)) {
f2e0899f
DK
1237 REG_WR(bp, BAR_USTRORM_INTMEM +
1238 USTORM_MEM_WORKAROUND_ADDRESS_OFFSET(func),
1239 U64_LO(fp->rx_comp_mapping));
1240 REG_WR(bp, BAR_USTRORM_INTMEM +
1241 USTORM_MEM_WORKAROUND_ADDRESS_OFFSET(func) + 4,
1242 U64_HI(fp->rx_comp_mapping));
1243 }
9f6c9258
DK
1244 }
1245}
f85582f8 1246
9f6c9258
DK
1247static void bnx2x_free_tx_skbs(struct bnx2x *bp)
1248{
1249 int i;
6383c0b3 1250 u8 cos;
9f6c9258 1251
ec6ba945 1252 for_each_tx_queue(bp, i) {
9f6c9258 1253 struct bnx2x_fastpath *fp = &bp->fp[i];
6383c0b3 1254 for_each_cos_in_tx_queue(fp, cos) {
65565884 1255 struct bnx2x_fp_txdata *txdata = fp->txdata_ptr[cos];
2df1a70a 1256 unsigned pkts_compl = 0, bytes_compl = 0;
9f6c9258 1257
6383c0b3
AE
1258 u16 sw_prod = txdata->tx_pkt_prod;
1259 u16 sw_cons = txdata->tx_pkt_cons;
9f6c9258 1260
6383c0b3 1261 while (sw_cons != sw_prod) {
2df1a70a
TH
1262 bnx2x_free_tx_pkt(bp, txdata, TX_BD(sw_cons),
1263 &pkts_compl, &bytes_compl);
6383c0b3
AE
1264 sw_cons++;
1265 }
2df1a70a 1266 netdev_tx_reset_queue(
65565884
MS
1267 netdev_get_tx_queue(bp->dev,
1268 txdata->txq_index));
9f6c9258
DK
1269 }
1270 }
1271}
1272
b3b83c3f
DK
1273static void bnx2x_free_rx_bds(struct bnx2x_fastpath *fp)
1274{
1275 struct bnx2x *bp = fp->bp;
1276 int i;
1277
1278 /* ring wasn't allocated */
1279 if (fp->rx_buf_ring == NULL)
1280 return;
1281
1282 for (i = 0; i < NUM_RX_BD; i++) {
1283 struct sw_rx_bd *rx_buf = &fp->rx_buf_ring[i];
e52fcb24 1284 u8 *data = rx_buf->data;
b3b83c3f 1285
e52fcb24 1286 if (data == NULL)
b3b83c3f 1287 continue;
b3b83c3f
DK
1288 dma_unmap_single(&bp->pdev->dev,
1289 dma_unmap_addr(rx_buf, mapping),
1290 fp->rx_buf_size, DMA_FROM_DEVICE);
1291
e52fcb24
ED
1292 rx_buf->data = NULL;
1293 kfree(data);
b3b83c3f
DK
1294 }
1295}
1296
9f6c9258
DK
1297static void bnx2x_free_rx_skbs(struct bnx2x *bp)
1298{
b3b83c3f 1299 int j;
9f6c9258 1300
ec6ba945 1301 for_each_rx_queue(bp, j) {
9f6c9258
DK
1302 struct bnx2x_fastpath *fp = &bp->fp[j];
1303
b3b83c3f 1304 bnx2x_free_rx_bds(fp);
9f6c9258 1305
9f6c9258 1306 if (!fp->disable_tpa)
dfacf138 1307 bnx2x_free_tpa_pool(bp, fp, MAX_AGG_QS(bp));
9f6c9258
DK
1308 }
1309}
1310
1311void bnx2x_free_skbs(struct bnx2x *bp)
1312{
1313 bnx2x_free_tx_skbs(bp);
1314 bnx2x_free_rx_skbs(bp);
1315}
1316
e3835b99
DK
1317void bnx2x_update_max_mf_config(struct bnx2x *bp, u32 value)
1318{
1319 /* load old values */
1320 u32 mf_cfg = bp->mf_config[BP_VN(bp)];
1321
1322 if (value != bnx2x_extract_max_cfg(bp, mf_cfg)) {
1323 /* leave all but MAX value */
1324 mf_cfg &= ~FUNC_MF_CFG_MAX_BW_MASK;
1325
1326 /* set new MAX value */
1327 mf_cfg |= (value << FUNC_MF_CFG_MAX_BW_SHIFT)
1328 & FUNC_MF_CFG_MAX_BW_MASK;
1329
1330 bnx2x_fw_command(bp, DRV_MSG_CODE_SET_MF_BW, mf_cfg);
1331 }
1332}
1333
ca92429f
DK
1334/**
1335 * bnx2x_free_msix_irqs - free previously requested MSI-X IRQ vectors
1336 *
1337 * @bp: driver handle
1338 * @nvecs: number of vectors to be released
1339 */
1340static void bnx2x_free_msix_irqs(struct bnx2x *bp, int nvecs)
9f6c9258 1341{
ca92429f 1342 int i, offset = 0;
9f6c9258 1343
ca92429f
DK
1344 if (nvecs == offset)
1345 return;
1346 free_irq(bp->msix_table[offset].vector, bp->dev);
9f6c9258 1347 DP(NETIF_MSG_IFDOWN, "released sp irq (%d)\n",
ca92429f
DK
1348 bp->msix_table[offset].vector);
1349 offset++;
9f6c9258 1350#ifdef BCM_CNIC
ca92429f
DK
1351 if (nvecs == offset)
1352 return;
9f6c9258
DK
1353 offset++;
1354#endif
ca92429f 1355
ec6ba945 1356 for_each_eth_queue(bp, i) {
ca92429f
DK
1357 if (nvecs == offset)
1358 return;
51c1a580
MS
1359 DP(NETIF_MSG_IFDOWN, "about to release fp #%d->%d irq\n",
1360 i, bp->msix_table[offset].vector);
9f6c9258 1361
ca92429f 1362 free_irq(bp->msix_table[offset++].vector, &bp->fp[i]);
9f6c9258
DK
1363 }
1364}
1365
d6214d7a 1366void bnx2x_free_irq(struct bnx2x *bp)
9f6c9258 1367{
30a5de77
DK
1368 if (bp->flags & USING_MSIX_FLAG &&
1369 !(bp->flags & USING_SINGLE_MSIX_FLAG))
ca92429f 1370 bnx2x_free_msix_irqs(bp, BNX2X_NUM_ETH_QUEUES(bp) +
6383c0b3 1371 CNIC_PRESENT + 1);
d6214d7a 1372 else
30a5de77 1373 free_irq(bp->dev->irq, bp->dev);
9f6c9258
DK
1374}
1375
0e8d2ec5 1376int bnx2x_enable_msix(struct bnx2x *bp)
9f6c9258 1377{
d6214d7a 1378 int msix_vec = 0, i, rc, req_cnt;
9f6c9258 1379
d6214d7a 1380 bp->msix_table[msix_vec].entry = msix_vec;
51c1a580 1381 BNX2X_DEV_INFO("msix_table[0].entry = %d (slowpath)\n",
d6214d7a
DK
1382 bp->msix_table[0].entry);
1383 msix_vec++;
9f6c9258
DK
1384
1385#ifdef BCM_CNIC
d6214d7a 1386 bp->msix_table[msix_vec].entry = msix_vec;
51c1a580 1387 BNX2X_DEV_INFO("msix_table[%d].entry = %d (CNIC)\n",
d6214d7a
DK
1388 bp->msix_table[msix_vec].entry, bp->msix_table[msix_vec].entry);
1389 msix_vec++;
9f6c9258 1390#endif
6383c0b3 1391 /* We need separate vectors for ETH queues only (not FCoE) */
ec6ba945 1392 for_each_eth_queue(bp, i) {
d6214d7a 1393 bp->msix_table[msix_vec].entry = msix_vec;
51c1a580
MS
1394 BNX2X_DEV_INFO("msix_table[%d].entry = %d (fastpath #%u)\n",
1395 msix_vec, msix_vec, i);
d6214d7a 1396 msix_vec++;
9f6c9258
DK
1397 }
1398
6383c0b3 1399 req_cnt = BNX2X_NUM_ETH_QUEUES(bp) + CNIC_PRESENT + 1;
d6214d7a
DK
1400
1401 rc = pci_enable_msix(bp->pdev, &bp->msix_table[0], req_cnt);
9f6c9258
DK
1402
1403 /*
1404 * reconfigure number of tx/rx queues according to available
1405 * MSI-X vectors
1406 */
1407 if (rc >= BNX2X_MIN_MSIX_VEC_CNT) {
d6214d7a
DK
1408 /* how less vectors we will have? */
1409 int diff = req_cnt - rc;
9f6c9258 1410
51c1a580 1411 BNX2X_DEV_INFO("Trying to use less MSI-X vectors: %d\n", rc);
9f6c9258
DK
1412
1413 rc = pci_enable_msix(bp->pdev, &bp->msix_table[0], rc);
1414
1415 if (rc) {
30a5de77
DK
1416 BNX2X_DEV_INFO("MSI-X is not attainable rc %d\n", rc);
1417 goto no_msix;
9f6c9258 1418 }
d6214d7a
DK
1419 /*
1420 * decrease number of queues by number of unallocated entries
1421 */
1422 bp->num_queues -= diff;
9f6c9258 1423
51c1a580 1424 BNX2X_DEV_INFO("New queue configuration set: %d\n",
30a5de77
DK
1425 bp->num_queues);
1426 } else if (rc > 0) {
1427 /* Get by with single vector */
1428 rc = pci_enable_msix(bp->pdev, &bp->msix_table[0], 1);
1429 if (rc) {
1430 BNX2X_DEV_INFO("Single MSI-X is not attainable rc %d\n",
1431 rc);
1432 goto no_msix;
1433 }
1434
1435 BNX2X_DEV_INFO("Using single MSI-X vector\n");
1436 bp->flags |= USING_SINGLE_MSIX_FLAG;
1437
1438 } else if (rc < 0) {
51c1a580 1439 BNX2X_DEV_INFO("MSI-X is not attainable rc %d\n", rc);
30a5de77 1440 goto no_msix;
9f6c9258
DK
1441 }
1442
1443 bp->flags |= USING_MSIX_FLAG;
1444
1445 return 0;
30a5de77
DK
1446
1447no_msix:
1448 /* fall to INTx if not enough memory */
1449 if (rc == -ENOMEM)
1450 bp->flags |= DISABLE_MSI_FLAG;
1451
1452 return rc;
9f6c9258
DK
1453}
1454
1455static int bnx2x_req_msix_irqs(struct bnx2x *bp)
1456{
ca92429f 1457 int i, rc, offset = 0;
9f6c9258 1458
ca92429f
DK
1459 rc = request_irq(bp->msix_table[offset++].vector,
1460 bnx2x_msix_sp_int, 0,
9f6c9258
DK
1461 bp->dev->name, bp->dev);
1462 if (rc) {
1463 BNX2X_ERR("request sp irq failed\n");
1464 return -EBUSY;
1465 }
1466
1467#ifdef BCM_CNIC
1468 offset++;
1469#endif
ec6ba945 1470 for_each_eth_queue(bp, i) {
9f6c9258
DK
1471 struct bnx2x_fastpath *fp = &bp->fp[i];
1472 snprintf(fp->name, sizeof(fp->name), "%s-fp-%d",
1473 bp->dev->name, i);
1474
d6214d7a 1475 rc = request_irq(bp->msix_table[offset].vector,
9f6c9258
DK
1476 bnx2x_msix_fp_int, 0, fp->name, fp);
1477 if (rc) {
ca92429f
DK
1478 BNX2X_ERR("request fp #%d irq (%d) failed rc %d\n", i,
1479 bp->msix_table[offset].vector, rc);
1480 bnx2x_free_msix_irqs(bp, offset);
9f6c9258
DK
1481 return -EBUSY;
1482 }
1483
d6214d7a 1484 offset++;
9f6c9258
DK
1485 }
1486
ec6ba945 1487 i = BNX2X_NUM_ETH_QUEUES(bp);
6383c0b3 1488 offset = 1 + CNIC_PRESENT;
51c1a580 1489 netdev_info(bp->dev, "using MSI-X IRQs: sp %d fp[%d] %d ... fp[%d] %d\n",
9f6c9258
DK
1490 bp->msix_table[0].vector,
1491 0, bp->msix_table[offset].vector,
1492 i - 1, bp->msix_table[offset + i - 1].vector);
1493
1494 return 0;
1495}
1496
d6214d7a 1497int bnx2x_enable_msi(struct bnx2x *bp)
9f6c9258
DK
1498{
1499 int rc;
1500
1501 rc = pci_enable_msi(bp->pdev);
1502 if (rc) {
51c1a580 1503 BNX2X_DEV_INFO("MSI is not attainable\n");
9f6c9258
DK
1504 return -1;
1505 }
1506 bp->flags |= USING_MSI_FLAG;
1507
1508 return 0;
1509}
1510
1511static int bnx2x_req_irq(struct bnx2x *bp)
1512{
1513 unsigned long flags;
30a5de77 1514 unsigned int irq;
9f6c9258 1515
30a5de77 1516 if (bp->flags & (USING_MSI_FLAG | USING_MSIX_FLAG))
9f6c9258
DK
1517 flags = 0;
1518 else
1519 flags = IRQF_SHARED;
1520
30a5de77
DK
1521 if (bp->flags & USING_MSIX_FLAG)
1522 irq = bp->msix_table[0].vector;
1523 else
1524 irq = bp->pdev->irq;
1525
1526 return request_irq(irq, bnx2x_interrupt, flags, bp->dev->name, bp->dev);
9f6c9258
DK
1527}
1528
1191cb83 1529static int bnx2x_setup_irqs(struct bnx2x *bp)
619c5cb6
VZ
1530{
1531 int rc = 0;
30a5de77
DK
1532 if (bp->flags & USING_MSIX_FLAG &&
1533 !(bp->flags & USING_SINGLE_MSIX_FLAG)) {
619c5cb6
VZ
1534 rc = bnx2x_req_msix_irqs(bp);
1535 if (rc)
1536 return rc;
1537 } else {
1538 bnx2x_ack_int(bp);
1539 rc = bnx2x_req_irq(bp);
1540 if (rc) {
1541 BNX2X_ERR("IRQ request failed rc %d, aborting\n", rc);
1542 return rc;
1543 }
1544 if (bp->flags & USING_MSI_FLAG) {
1545 bp->dev->irq = bp->pdev->irq;
30a5de77
DK
1546 netdev_info(bp->dev, "using MSI IRQ %d\n",
1547 bp->dev->irq);
1548 }
1549 if (bp->flags & USING_MSIX_FLAG) {
1550 bp->dev->irq = bp->msix_table[0].vector;
1551 netdev_info(bp->dev, "using MSIX IRQ %d\n",
1552 bp->dev->irq);
619c5cb6
VZ
1553 }
1554 }
1555
1556 return 0;
1557}
1558
1191cb83 1559static void bnx2x_napi_enable(struct bnx2x *bp)
9f6c9258
DK
1560{
1561 int i;
1562
619c5cb6 1563 for_each_rx_queue(bp, i)
9f6c9258
DK
1564 napi_enable(&bnx2x_fp(bp, i, napi));
1565}
1566
1191cb83 1567static void bnx2x_napi_disable(struct bnx2x *bp)
9f6c9258
DK
1568{
1569 int i;
1570
619c5cb6 1571 for_each_rx_queue(bp, i)
9f6c9258
DK
1572 napi_disable(&bnx2x_fp(bp, i, napi));
1573}
1574
1575void bnx2x_netif_start(struct bnx2x *bp)
1576{
4b7ed897
DK
1577 if (netif_running(bp->dev)) {
1578 bnx2x_napi_enable(bp);
1579 bnx2x_int_enable(bp);
1580 if (bp->state == BNX2X_STATE_OPEN)
1581 netif_tx_wake_all_queues(bp->dev);
9f6c9258
DK
1582 }
1583}
1584
1585void bnx2x_netif_stop(struct bnx2x *bp, int disable_hw)
1586{
1587 bnx2x_int_disable_sync(bp, disable_hw);
1588 bnx2x_napi_disable(bp);
9f6c9258 1589}
9f6c9258 1590
8307fa3e
VZ
1591u16 bnx2x_select_queue(struct net_device *dev, struct sk_buff *skb)
1592{
8307fa3e 1593 struct bnx2x *bp = netdev_priv(dev);
cdb9d6ae 1594
faa28314 1595#ifdef BCM_CNIC
cdb9d6ae 1596 if (!NO_FCOE(bp)) {
8307fa3e
VZ
1597 struct ethhdr *hdr = (struct ethhdr *)skb->data;
1598 u16 ether_type = ntohs(hdr->h_proto);
1599
1600 /* Skip VLAN tag if present */
1601 if (ether_type == ETH_P_8021Q) {
1602 struct vlan_ethhdr *vhdr =
1603 (struct vlan_ethhdr *)skb->data;
1604
1605 ether_type = ntohs(vhdr->h_vlan_encapsulated_proto);
1606 }
1607
1608 /* If ethertype is FCoE or FIP - use FCoE ring */
1609 if ((ether_type == ETH_P_FCOE) || (ether_type == ETH_P_FIP))
6383c0b3 1610 return bnx2x_fcoe_tx(bp, txq_index);
8307fa3e
VZ
1611 }
1612#endif
cdb9d6ae 1613 /* select a non-FCoE queue */
6383c0b3 1614 return __skb_tx_hash(dev, skb, BNX2X_NUM_ETH_QUEUES(bp));
8307fa3e
VZ
1615}
1616
96305234 1617
d6214d7a
DK
1618void bnx2x_set_num_queues(struct bnx2x *bp)
1619{
96305234
DK
1620 /* RSS queues */
1621 bp->num_queues = bnx2x_calc_num_queues(bp);
ec6ba945 1622
614c76df 1623#ifdef BCM_CNIC
a3348722
BW
1624 /* override in STORAGE SD modes */
1625 if (IS_MF_STORAGE_SD(bp) || IS_MF_FCOE_AFEX(bp))
614c76df
DK
1626 bp->num_queues = 1;
1627#endif
ec6ba945 1628 /* Add special queues */
6383c0b3 1629 bp->num_queues += NON_ETH_CONTEXT_USE;
65565884
MS
1630
1631 BNX2X_DEV_INFO("set number of queues to %d\n", bp->num_queues);
ec6ba945
VZ
1632}
1633
cdb9d6ae
VZ
1634/**
1635 * bnx2x_set_real_num_queues - configure netdev->real_num_[tx,rx]_queues
1636 *
1637 * @bp: Driver handle
1638 *
1639 * We currently support for at most 16 Tx queues for each CoS thus we will
1640 * allocate a multiple of 16 for ETH L2 rings according to the value of the
1641 * bp->max_cos.
1642 *
1643 * If there is an FCoE L2 queue the appropriate Tx queue will have the next
1644 * index after all ETH L2 indices.
1645 *
1646 * If the actual number of Tx queues (for each CoS) is less than 16 then there
1647 * will be the holes at the end of each group of 16 ETh L2 indices (0..15,
1648 * 16..31,...) with indicies that are not coupled with any real Tx queue.
1649 *
1650 * The proper configuration of skb->queue_mapping is handled by
1651 * bnx2x_select_queue() and __skb_tx_hash().
1652 *
1653 * bnx2x_setup_tc() takes care of the proper TC mappings so that __skb_tx_hash()
1654 * will return a proper Tx index if TC is enabled (netdev->num_tc > 0).
1655 */
1191cb83 1656static int bnx2x_set_real_num_queues(struct bnx2x *bp)
ec6ba945 1657{
6383c0b3 1658 int rc, tx, rx;
ec6ba945 1659
65565884
MS
1660 tx = BNX2X_NUM_ETH_QUEUES(bp) * bp->max_cos;
1661 rx = BNX2X_NUM_QUEUES(bp) - NON_ETH_CONTEXT_USE;
ec6ba945 1662
6383c0b3
AE
1663/* account for fcoe queue */
1664#ifdef BCM_CNIC
1665 if (!NO_FCOE(bp)) {
1666 rx += FCOE_PRESENT;
1667 tx += FCOE_PRESENT;
1668 }
ec6ba945 1669#endif
6383c0b3
AE
1670
1671 rc = netif_set_real_num_tx_queues(bp->dev, tx);
1672 if (rc) {
1673 BNX2X_ERR("Failed to set real number of Tx queues: %d\n", rc);
1674 return rc;
1675 }
1676 rc = netif_set_real_num_rx_queues(bp->dev, rx);
1677 if (rc) {
1678 BNX2X_ERR("Failed to set real number of Rx queues: %d\n", rc);
1679 return rc;
1680 }
1681
51c1a580 1682 DP(NETIF_MSG_IFUP, "Setting real num queues to (tx, rx) (%d, %d)\n",
6383c0b3
AE
1683 tx, rx);
1684
ec6ba945
VZ
1685 return rc;
1686}
1687
1191cb83 1688static void bnx2x_set_rx_buf_size(struct bnx2x *bp)
a8c94b91
VZ
1689{
1690 int i;
1691
1692 for_each_queue(bp, i) {
1693 struct bnx2x_fastpath *fp = &bp->fp[i];
e52fcb24 1694 u32 mtu;
a8c94b91
VZ
1695
1696 /* Always use a mini-jumbo MTU for the FCoE L2 ring */
1697 if (IS_FCOE_IDX(i))
1698 /*
1699 * Although there are no IP frames expected to arrive to
1700 * this ring we still want to add an
1701 * IP_HEADER_ALIGNMENT_PADDING to prevent a buffer
1702 * overrun attack.
1703 */
e52fcb24 1704 mtu = BNX2X_FCOE_MINI_JUMBO_MTU;
a8c94b91 1705 else
e52fcb24
ED
1706 mtu = bp->dev->mtu;
1707 fp->rx_buf_size = BNX2X_FW_RX_ALIGN_START +
1708 IP_HEADER_ALIGNMENT_PADDING +
1709 ETH_OVREHEAD +
1710 mtu +
1711 BNX2X_FW_RX_ALIGN_END;
1712 /* Note : rx_buf_size doesnt take into account NET_SKB_PAD */
a8c94b91
VZ
1713 }
1714}
1715
1191cb83 1716static int bnx2x_init_rss_pf(struct bnx2x *bp)
619c5cb6
VZ
1717{
1718 int i;
619c5cb6
VZ
1719 u8 num_eth_queues = BNX2X_NUM_ETH_QUEUES(bp);
1720
96305234 1721 /* Prepare the initial contents fo the indirection table if RSS is
619c5cb6
VZ
1722 * enabled
1723 */
5d317c6a
MS
1724 for (i = 0; i < sizeof(bp->rss_conf_obj.ind_table); i++)
1725 bp->rss_conf_obj.ind_table[i] =
96305234
DK
1726 bp->fp->cl_id +
1727 ethtool_rxfh_indir_default(i, num_eth_queues);
619c5cb6
VZ
1728
1729 /*
1730 * For 57710 and 57711 SEARCHER configuration (rss_keys) is
1731 * per-port, so if explicit configuration is needed , do it only
1732 * for a PMF.
1733 *
1734 * For 57712 and newer on the other hand it's a per-function
1735 * configuration.
1736 */
5d317c6a 1737 return bnx2x_config_rss_eth(bp, bp->port.pmf || !CHIP_IS_E1x(bp));
619c5cb6
VZ
1738}
1739
96305234 1740int bnx2x_config_rss_pf(struct bnx2x *bp, struct bnx2x_rss_config_obj *rss_obj,
5d317c6a 1741 bool config_hash)
619c5cb6 1742{
3b603066 1743 struct bnx2x_config_rss_params params = {NULL};
619c5cb6
VZ
1744 int i;
1745
1746 /* Although RSS is meaningless when there is a single HW queue we
1747 * still need it enabled in order to have HW Rx hash generated.
1748 *
1749 * if (!is_eth_multi(bp))
1750 * bp->multi_mode = ETH_RSS_MODE_DISABLED;
1751 */
1752
96305234 1753 params.rss_obj = rss_obj;
619c5cb6
VZ
1754
1755 __set_bit(RAMROD_COMP_WAIT, &params.ramrod_flags);
1756
96305234 1757 __set_bit(BNX2X_RSS_MODE_REGULAR, &params.rss_flags);
619c5cb6 1758
96305234
DK
1759 /* RSS configuration */
1760 __set_bit(BNX2X_RSS_IPV4, &params.rss_flags);
1761 __set_bit(BNX2X_RSS_IPV4_TCP, &params.rss_flags);
1762 __set_bit(BNX2X_RSS_IPV6, &params.rss_flags);
1763 __set_bit(BNX2X_RSS_IPV6_TCP, &params.rss_flags);
5d317c6a
MS
1764 if (rss_obj->udp_rss_v4)
1765 __set_bit(BNX2X_RSS_IPV4_UDP, &params.rss_flags);
1766 if (rss_obj->udp_rss_v6)
1767 __set_bit(BNX2X_RSS_IPV6_UDP, &params.rss_flags);
619c5cb6 1768
96305234
DK
1769 /* Hash bits */
1770 params.rss_result_mask = MULTI_MASK;
619c5cb6 1771
5d317c6a 1772 memcpy(params.ind_table, rss_obj->ind_table, sizeof(params.ind_table));
619c5cb6 1773
96305234
DK
1774 if (config_hash) {
1775 /* RSS keys */
1776 for (i = 0; i < sizeof(params.rss_key) / 4; i++)
1777 params.rss_key[i] = random32();
619c5cb6 1778
96305234 1779 __set_bit(BNX2X_RSS_SET_SRCH, &params.rss_flags);
619c5cb6
VZ
1780 }
1781
1782 return bnx2x_config_rss(bp, &params);
1783}
1784
1191cb83 1785static int bnx2x_init_hw(struct bnx2x *bp, u32 load_code)
619c5cb6 1786{
3b603066 1787 struct bnx2x_func_state_params func_params = {NULL};
619c5cb6
VZ
1788
1789 /* Prepare parameters for function state transitions */
1790 __set_bit(RAMROD_COMP_WAIT, &func_params.ramrod_flags);
1791
1792 func_params.f_obj = &bp->func_obj;
1793 func_params.cmd = BNX2X_F_CMD_HW_INIT;
1794
1795 func_params.params.hw_init.load_phase = load_code;
1796
1797 return bnx2x_func_state_change(bp, &func_params);
1798}
1799
1800/*
1801 * Cleans the object that have internal lists without sending
1802 * ramrods. Should be run when interrutps are disabled.
1803 */
1804static void bnx2x_squeeze_objects(struct bnx2x *bp)
1805{
1806 int rc;
1807 unsigned long ramrod_flags = 0, vlan_mac_flags = 0;
3b603066 1808 struct bnx2x_mcast_ramrod_params rparam = {NULL};
15192a8c 1809 struct bnx2x_vlan_mac_obj *mac_obj = &bp->sp_objs->mac_obj;
619c5cb6
VZ
1810
1811 /***************** Cleanup MACs' object first *************************/
1812
1813 /* Wait for completion of requested */
1814 __set_bit(RAMROD_COMP_WAIT, &ramrod_flags);
1815 /* Perform a dry cleanup */
1816 __set_bit(RAMROD_DRV_CLR_ONLY, &ramrod_flags);
1817
1818 /* Clean ETH primary MAC */
1819 __set_bit(BNX2X_ETH_MAC, &vlan_mac_flags);
15192a8c 1820 rc = mac_obj->delete_all(bp, &bp->sp_objs->mac_obj, &vlan_mac_flags,
619c5cb6
VZ
1821 &ramrod_flags);
1822 if (rc != 0)
1823 BNX2X_ERR("Failed to clean ETH MACs: %d\n", rc);
1824
1825 /* Cleanup UC list */
1826 vlan_mac_flags = 0;
1827 __set_bit(BNX2X_UC_LIST_MAC, &vlan_mac_flags);
1828 rc = mac_obj->delete_all(bp, mac_obj, &vlan_mac_flags,
1829 &ramrod_flags);
1830 if (rc != 0)
1831 BNX2X_ERR("Failed to clean UC list MACs: %d\n", rc);
1832
1833 /***************** Now clean mcast object *****************************/
1834 rparam.mcast_obj = &bp->mcast_obj;
1835 __set_bit(RAMROD_DRV_CLR_ONLY, &rparam.ramrod_flags);
1836
1837 /* Add a DEL command... */
1838 rc = bnx2x_config_mcast(bp, &rparam, BNX2X_MCAST_CMD_DEL);
1839 if (rc < 0)
51c1a580
MS
1840 BNX2X_ERR("Failed to add a new DEL command to a multi-cast object: %d\n",
1841 rc);
619c5cb6
VZ
1842
1843 /* ...and wait until all pending commands are cleared */
1844 rc = bnx2x_config_mcast(bp, &rparam, BNX2X_MCAST_CMD_CONT);
1845 while (rc != 0) {
1846 if (rc < 0) {
1847 BNX2X_ERR("Failed to clean multi-cast object: %d\n",
1848 rc);
1849 return;
1850 }
1851
1852 rc = bnx2x_config_mcast(bp, &rparam, BNX2X_MCAST_CMD_CONT);
1853 }
1854}
1855
1856#ifndef BNX2X_STOP_ON_ERROR
1857#define LOAD_ERROR_EXIT(bp, label) \
1858 do { \
1859 (bp)->state = BNX2X_STATE_ERROR; \
1860 goto label; \
1861 } while (0)
1862#else
1863#define LOAD_ERROR_EXIT(bp, label) \
1864 do { \
1865 (bp)->state = BNX2X_STATE_ERROR; \
1866 (bp)->panic = 1; \
1867 return -EBUSY; \
1868 } while (0)
1869#endif
1870
452427b0
YM
1871bool bnx2x_test_firmware_version(struct bnx2x *bp, bool is_err)
1872{
1873 /* build FW version dword */
1874 u32 my_fw = (BCM_5710_FW_MAJOR_VERSION) +
1875 (BCM_5710_FW_MINOR_VERSION << 8) +
1876 (BCM_5710_FW_REVISION_VERSION << 16) +
1877 (BCM_5710_FW_ENGINEERING_VERSION << 24);
1878
1879 /* read loaded FW from chip */
1880 u32 loaded_fw = REG_RD(bp, XSEM_REG_PRAM);
1881
1882 DP(NETIF_MSG_IFUP, "loaded fw %x, my fw %x\n", loaded_fw, my_fw);
1883
1884 if (loaded_fw != my_fw) {
1885 if (is_err)
1886 BNX2X_ERR("bnx2x with FW %x was already loaded, which mismatches my %x FW. aborting\n",
1887 loaded_fw, my_fw);
1888 return false;
1889 }
1890
1891 return true;
1892}
1893
1191cb83
ED
1894/**
1895 * bnx2x_bz_fp - zero content of the fastpath structure.
1896 *
1897 * @bp: driver handle
1898 * @index: fastpath index to be zeroed
1899 *
1900 * Makes sure the contents of the bp->fp[index].napi is kept
1901 * intact.
1902 */
1903static void bnx2x_bz_fp(struct bnx2x *bp, int index)
1904{
1905 struct bnx2x_fastpath *fp = &bp->fp[index];
15192a8c
BW
1906 struct bnx2x_fp_stats *fp_stats = &bp->fp_stats[index];
1907
65565884 1908 int cos;
1191cb83 1909 struct napi_struct orig_napi = fp->napi;
15192a8c 1910 struct bnx2x_agg_info *orig_tpa_info = fp->tpa_info;
1191cb83 1911 /* bzero bnx2x_fastpath contents */
15192a8c
BW
1912 if (bp->stats_init) {
1913 memset(fp->tpa_info, 0, sizeof(*fp->tpa_info));
1191cb83 1914 memset(fp, 0, sizeof(*fp));
15192a8c 1915 } else {
1191cb83
ED
1916 /* Keep Queue statistics */
1917 struct bnx2x_eth_q_stats *tmp_eth_q_stats;
1918 struct bnx2x_eth_q_stats_old *tmp_eth_q_stats_old;
1919
1920 tmp_eth_q_stats = kzalloc(sizeof(struct bnx2x_eth_q_stats),
1921 GFP_KERNEL);
1922 if (tmp_eth_q_stats)
15192a8c 1923 memcpy(tmp_eth_q_stats, &fp_stats->eth_q_stats,
1191cb83
ED
1924 sizeof(struct bnx2x_eth_q_stats));
1925
1926 tmp_eth_q_stats_old =
1927 kzalloc(sizeof(struct bnx2x_eth_q_stats_old),
1928 GFP_KERNEL);
1929 if (tmp_eth_q_stats_old)
15192a8c 1930 memcpy(tmp_eth_q_stats_old, &fp_stats->eth_q_stats_old,
1191cb83
ED
1931 sizeof(struct bnx2x_eth_q_stats_old));
1932
15192a8c 1933 memset(fp->tpa_info, 0, sizeof(*fp->tpa_info));
1191cb83
ED
1934 memset(fp, 0, sizeof(*fp));
1935
1936 if (tmp_eth_q_stats) {
15192a8c
BW
1937 memcpy(&fp_stats->eth_q_stats, tmp_eth_q_stats,
1938 sizeof(struct bnx2x_eth_q_stats));
1191cb83
ED
1939 kfree(tmp_eth_q_stats);
1940 }
1941
1942 if (tmp_eth_q_stats_old) {
15192a8c 1943 memcpy(&fp_stats->eth_q_stats_old, tmp_eth_q_stats_old,
1191cb83
ED
1944 sizeof(struct bnx2x_eth_q_stats_old));
1945 kfree(tmp_eth_q_stats_old);
1946 }
1947
1948 }
1949
1950 /* Restore the NAPI object as it has been already initialized */
1951 fp->napi = orig_napi;
15192a8c 1952 fp->tpa_info = orig_tpa_info;
1191cb83
ED
1953 fp->bp = bp;
1954 fp->index = index;
1955 if (IS_ETH_FP(fp))
1956 fp->max_cos = bp->max_cos;
1957 else
1958 /* Special queues support only one CoS */
1959 fp->max_cos = 1;
1960
65565884
MS
1961 /* Init txdata pointers */
1962#ifdef BCM_CNIC
1963 if (IS_FCOE_FP(fp))
1964 fp->txdata_ptr[0] = &bp->bnx2x_txq[FCOE_TXQ_IDX(bp)];
1965#endif
1966 if (IS_ETH_FP(fp))
1967 for_each_cos_in_tx_queue(fp, cos)
1968 fp->txdata_ptr[cos] = &bp->bnx2x_txq[cos *
1969 BNX2X_NUM_ETH_QUEUES(bp) + index];
1970
1191cb83
ED
1971 /*
1972 * set the tpa flag for each queue. The tpa flag determines the queue
1973 * minimal size so it must be set prior to queue memory allocation
1974 */
1975 fp->disable_tpa = !(bp->flags & TPA_ENABLE_FLAG ||
1976 (bp->flags & GRO_ENABLE_FLAG &&
1977 bnx2x_mtu_allows_gro(bp->dev->mtu)));
1978 if (bp->flags & TPA_ENABLE_FLAG)
1979 fp->mode = TPA_MODE_LRO;
1980 else if (bp->flags & GRO_ENABLE_FLAG)
1981 fp->mode = TPA_MODE_GRO;
1982
1983#ifdef BCM_CNIC
1984 /* We don't want TPA on an FCoE L2 ring */
1985 if (IS_FCOE_FP(fp))
1986 fp->disable_tpa = 1;
1987#endif
1988}
1989
1990
9f6c9258
DK
1991/* must be called with rtnl_lock */
1992int bnx2x_nic_load(struct bnx2x *bp, int load_mode)
1993{
619c5cb6 1994 int port = BP_PORT(bp);
9f6c9258
DK
1995 u32 load_code;
1996 int i, rc;
1997
1998#ifdef BNX2X_STOP_ON_ERROR
51c1a580
MS
1999 if (unlikely(bp->panic)) {
2000 BNX2X_ERR("Can't load NIC when there is panic\n");
9f6c9258 2001 return -EPERM;
51c1a580 2002 }
9f6c9258
DK
2003#endif
2004
2005 bp->state = BNX2X_STATE_OPENING_WAIT4_LOAD;
2006
2ae17f66
VZ
2007 /* Set the initial link reported state to link down */
2008 bnx2x_acquire_phy_lock(bp);
2009 memset(&bp->last_reported_link, 0, sizeof(bp->last_reported_link));
2010 __set_bit(BNX2X_LINK_REPORT_LINK_DOWN,
2011 &bp->last_reported_link.link_report_flags);
2012 bnx2x_release_phy_lock(bp);
2013
523224a3
DK
2014 /* must be called before memory allocation and HW init */
2015 bnx2x_ilt_set_info(bp);
2016
6383c0b3
AE
2017 /*
2018 * Zero fastpath structures preserving invariants like napi, which are
2019 * allocated only once, fp index, max_cos, bp pointer.
65565884 2020 * Also set fp->disable_tpa and txdata_ptr.
b3b83c3f 2021 */
51c1a580 2022 DP(NETIF_MSG_IFUP, "num queues: %d", bp->num_queues);
b3b83c3f
DK
2023 for_each_queue(bp, i)
2024 bnx2x_bz_fp(bp, i);
65565884
MS
2025 memset(bp->bnx2x_txq, 0, bp->bnx2x_txq_size *
2026 sizeof(struct bnx2x_fp_txdata));
b3b83c3f 2027
6383c0b3 2028
a8c94b91
VZ
2029 /* Set the receive queues buffer size */
2030 bnx2x_set_rx_buf_size(bp);
2031
d6214d7a 2032 if (bnx2x_alloc_mem(bp))
9f6c9258 2033 return -ENOMEM;
d6214d7a 2034
b3b83c3f
DK
2035 /* As long as bnx2x_alloc_mem() may possibly update
2036 * bp->num_queues, bnx2x_set_real_num_queues() should always
2037 * come after it.
2038 */
ec6ba945 2039 rc = bnx2x_set_real_num_queues(bp);
d6214d7a 2040 if (rc) {
ec6ba945 2041 BNX2X_ERR("Unable to set real_num_queues\n");
619c5cb6 2042 LOAD_ERROR_EXIT(bp, load_error0);
9f6c9258
DK
2043 }
2044
6383c0b3
AE
2045 /* configure multi cos mappings in kernel.
2046 * this configuration may be overriden by a multi class queue discipline
2047 * or by a dcbx negotiation result.
2048 */
2049 bnx2x_setup_tc(bp->dev, bp->max_cos);
2050
26614ba5
MS
2051 /* Add all NAPI objects */
2052 bnx2x_add_all_napi(bp);
9f6c9258
DK
2053 bnx2x_napi_enable(bp);
2054
889b9af3
AE
2055 /* set pf load just before approaching the MCP */
2056 bnx2x_set_pf_load(bp);
2057
9f6c9258 2058 /* Send LOAD_REQUEST command to MCP
619c5cb6
VZ
2059 * Returns the type of LOAD command:
2060 * if it is the first port to be initialized
2061 * common blocks should be initialized, otherwise - not
2062 */
9f6c9258 2063 if (!BP_NOMCP(bp)) {
95c6c616
AE
2064 /* init fw_seq */
2065 bp->fw_seq =
2066 (SHMEM_RD(bp, func_mb[BP_FW_MB_IDX(bp)].drv_mb_header) &
2067 DRV_MSG_SEQ_NUMBER_MASK);
2068 BNX2X_DEV_INFO("fw_seq 0x%08x\n", bp->fw_seq);
2069
2070 /* Get current FW pulse sequence */
2071 bp->fw_drv_pulse_wr_seq =
2072 (SHMEM_RD(bp, func_mb[BP_FW_MB_IDX(bp)].drv_pulse_mb) &
2073 DRV_PULSE_SEQ_MASK);
2074 BNX2X_DEV_INFO("drv_pulse 0x%x\n", bp->fw_drv_pulse_wr_seq);
2075
a22f0788 2076 load_code = bnx2x_fw_command(bp, DRV_MSG_CODE_LOAD_REQ, 0);
9f6c9258
DK
2077 if (!load_code) {
2078 BNX2X_ERR("MCP response failure, aborting\n");
2079 rc = -EBUSY;
619c5cb6 2080 LOAD_ERROR_EXIT(bp, load_error1);
9f6c9258
DK
2081 }
2082 if (load_code == FW_MSG_CODE_DRV_LOAD_REFUSED) {
51c1a580 2083 BNX2X_ERR("Driver load refused\n");
9f6c9258 2084 rc = -EBUSY; /* other port in diagnostic mode */
619c5cb6 2085 LOAD_ERROR_EXIT(bp, load_error1);
9f6c9258 2086 }
d1e2d966
AE
2087 if (load_code != FW_MSG_CODE_DRV_LOAD_COMMON_CHIP &&
2088 load_code != FW_MSG_CODE_DRV_LOAD_COMMON) {
d1e2d966 2089 /* abort nic load if version mismatch */
452427b0 2090 if (!bnx2x_test_firmware_version(bp, true)) {
d1e2d966
AE
2091 rc = -EBUSY;
2092 LOAD_ERROR_EXIT(bp, load_error2);
2093 }
2094 }
9f6c9258
DK
2095
2096 } else {
f2e0899f 2097 int path = BP_PATH(bp);
9f6c9258 2098
f2e0899f
DK
2099 DP(NETIF_MSG_IFUP, "NO MCP - load counts[%d] %d, %d, %d\n",
2100 path, load_count[path][0], load_count[path][1],
2101 load_count[path][2]);
2102 load_count[path][0]++;
2103 load_count[path][1 + port]++;
2104 DP(NETIF_MSG_IFUP, "NO MCP - new load counts[%d] %d, %d, %d\n",
2105 path, load_count[path][0], load_count[path][1],
2106 load_count[path][2]);
2107 if (load_count[path][0] == 1)
9f6c9258 2108 load_code = FW_MSG_CODE_DRV_LOAD_COMMON;
f2e0899f 2109 else if (load_count[path][1 + port] == 1)
9f6c9258
DK
2110 load_code = FW_MSG_CODE_DRV_LOAD_PORT;
2111 else
2112 load_code = FW_MSG_CODE_DRV_LOAD_FUNCTION;
2113 }
2114
2115 if ((load_code == FW_MSG_CODE_DRV_LOAD_COMMON) ||
f2e0899f 2116 (load_code == FW_MSG_CODE_DRV_LOAD_COMMON_CHIP) ||
3deb8167 2117 (load_code == FW_MSG_CODE_DRV_LOAD_PORT)) {
9f6c9258 2118 bp->port.pmf = 1;
3deb8167
YR
2119 /*
2120 * We need the barrier to ensure the ordering between the
2121 * writing to bp->port.pmf here and reading it from the
2122 * bnx2x_periodic_task().
2123 */
2124 smp_mb();
3deb8167 2125 } else
9f6c9258 2126 bp->port.pmf = 0;
6383c0b3 2127
51c1a580 2128 DP(NETIF_MSG_IFUP, "pmf %d\n", bp->port.pmf);
9f6c9258 2129
619c5cb6
VZ
2130 /* Init Function state controlling object */
2131 bnx2x__init_func_obj(bp);
2132
9f6c9258
DK
2133 /* Initialize HW */
2134 rc = bnx2x_init_hw(bp, load_code);
2135 if (rc) {
2136 BNX2X_ERR("HW init failed, aborting\n");
a22f0788 2137 bnx2x_fw_command(bp, DRV_MSG_CODE_LOAD_DONE, 0);
619c5cb6 2138 LOAD_ERROR_EXIT(bp, load_error2);
9f6c9258
DK
2139 }
2140
d6214d7a
DK
2141 /* Connect to IRQs */
2142 rc = bnx2x_setup_irqs(bp);
523224a3 2143 if (rc) {
51c1a580 2144 BNX2X_ERR("IRQs setup failed\n");
523224a3 2145 bnx2x_fw_command(bp, DRV_MSG_CODE_LOAD_DONE, 0);
619c5cb6 2146 LOAD_ERROR_EXIT(bp, load_error2);
523224a3
DK
2147 }
2148
9f6c9258
DK
2149 /* Setup NIC internals and enable interrupts */
2150 bnx2x_nic_init(bp, load_code);
2151
619c5cb6
VZ
2152 /* Init per-function objects */
2153 bnx2x_init_bp_objs(bp);
2154
f2e0899f
DK
2155 if (((load_code == FW_MSG_CODE_DRV_LOAD_COMMON) ||
2156 (load_code == FW_MSG_CODE_DRV_LOAD_COMMON_CHIP)) &&
619c5cb6
VZ
2157 (bp->common.shmem2_base)) {
2158 if (SHMEM2_HAS(bp, dcc_support))
2159 SHMEM2_WR(bp, dcc_support,
2160 (SHMEM_DCC_SUPPORT_DISABLE_ENABLE_PF_TLV |
2161 SHMEM_DCC_SUPPORT_BANDWIDTH_ALLOCATION_TLV));
a3348722
BW
2162 if (SHMEM2_HAS(bp, afex_driver_support))
2163 SHMEM2_WR(bp, afex_driver_support,
2164 SHMEM_AFEX_SUPPORTED_VERSION_ONE);
619c5cb6
VZ
2165 }
2166
a3348722
BW
2167 /* Set AFEX default VLAN tag to an invalid value */
2168 bp->afex_def_vlan_tag = -1;
2169
619c5cb6
VZ
2170 bp->state = BNX2X_STATE_OPENING_WAIT4_PORT;
2171 rc = bnx2x_func_start(bp);
2172 if (rc) {
2173 BNX2X_ERR("Function start failed!\n");
c636322b 2174 bnx2x_fw_command(bp, DRV_MSG_CODE_LOAD_DONE, 0);
619c5cb6
VZ
2175 LOAD_ERROR_EXIT(bp, load_error3);
2176 }
9f6c9258
DK
2177
2178 /* Send LOAD_DONE command to MCP */
2179 if (!BP_NOMCP(bp)) {
a22f0788 2180 load_code = bnx2x_fw_command(bp, DRV_MSG_CODE_LOAD_DONE, 0);
9f6c9258
DK
2181 if (!load_code) {
2182 BNX2X_ERR("MCP response failure, aborting\n");
2183 rc = -EBUSY;
619c5cb6 2184 LOAD_ERROR_EXIT(bp, load_error3);
9f6c9258
DK
2185 }
2186 }
2187
619c5cb6 2188 rc = bnx2x_setup_leading(bp);
9f6c9258
DK
2189 if (rc) {
2190 BNX2X_ERR("Setup leading failed!\n");
619c5cb6 2191 LOAD_ERROR_EXIT(bp, load_error3);
f2e0899f 2192 }
9f6c9258 2193
9f6c9258 2194#ifdef BCM_CNIC
523224a3 2195 /* Enable Timer scan */
619c5cb6 2196 REG_WR(bp, TM_REG_EN_LINEAR0_TIMER + port*4, 1);
9f6c9258 2197#endif
f85582f8 2198
523224a3 2199 for_each_nondefault_queue(bp, i) {
619c5cb6 2200 rc = bnx2x_setup_queue(bp, &bp->fp[i], 0);
51c1a580
MS
2201 if (rc) {
2202 BNX2X_ERR("Queue setup failed\n");
619c5cb6 2203 LOAD_ERROR_EXIT(bp, load_error4);
51c1a580 2204 }
523224a3
DK
2205 }
2206
619c5cb6 2207 rc = bnx2x_init_rss_pf(bp);
51c1a580
MS
2208 if (rc) {
2209 BNX2X_ERR("PF RSS init failed\n");
619c5cb6 2210 LOAD_ERROR_EXIT(bp, load_error4);
51c1a580 2211 }
619c5cb6 2212
523224a3
DK
2213 /* Now when Clients are configured we are ready to work */
2214 bp->state = BNX2X_STATE_OPEN;
2215
619c5cb6
VZ
2216 /* Configure a ucast MAC */
2217 rc = bnx2x_set_eth_mac(bp, true);
51c1a580
MS
2218 if (rc) {
2219 BNX2X_ERR("Setting Ethernet MAC failed\n");
619c5cb6 2220 LOAD_ERROR_EXIT(bp, load_error4);
51c1a580 2221 }
6e30dd4e 2222
e3835b99
DK
2223 if (bp->pending_max) {
2224 bnx2x_update_max_mf_config(bp, bp->pending_max);
2225 bp->pending_max = 0;
2226 }
2227
9f6c9258
DK
2228 if (bp->port.pmf)
2229 bnx2x_initial_phy_init(bp, load_mode);
2230
619c5cb6
VZ
2231 /* Start fast path */
2232
2233 /* Initialize Rx filter. */
2234 netif_addr_lock_bh(bp->dev);
6e30dd4e 2235 bnx2x_set_rx_mode(bp->dev);
619c5cb6 2236 netif_addr_unlock_bh(bp->dev);
6e30dd4e 2237
619c5cb6 2238 /* Start the Tx */
9f6c9258
DK
2239 switch (load_mode) {
2240 case LOAD_NORMAL:
523224a3
DK
2241 /* Tx queue should be only reenabled */
2242 netif_tx_wake_all_queues(bp->dev);
9f6c9258
DK
2243 break;
2244
2245 case LOAD_OPEN:
2246 netif_tx_start_all_queues(bp->dev);
523224a3 2247 smp_mb__after_clear_bit();
9f6c9258
DK
2248 break;
2249
2250 case LOAD_DIAG:
8970b2e4 2251 case LOAD_LOOPBACK_EXT:
9f6c9258
DK
2252 bp->state = BNX2X_STATE_DIAG;
2253 break;
2254
2255 default:
2256 break;
2257 }
2258
00253a8c 2259 if (bp->port.pmf)
e695a2dd 2260 bnx2x_update_drv_flags(bp, 1 << DRV_FLAGS_DCB_CONFIGURED, 0);
00253a8c 2261 else
9f6c9258
DK
2262 bnx2x__link_status_update(bp);
2263
2264 /* start the timer */
2265 mod_timer(&bp->timer, jiffies + bp->current_interval);
2266
2267#ifdef BCM_CNIC
b306f5ed
DK
2268 /* re-read iscsi info */
2269 bnx2x_get_iscsi_info(bp);
9f6c9258 2270 bnx2x_setup_cnic_irq_info(bp);
37ae41a9 2271 bnx2x_setup_cnic_info(bp);
9f6c9258
DK
2272 if (bp->state == BNX2X_STATE_OPEN)
2273 bnx2x_cnic_notify(bp, CNIC_CTL_START_CMD);
2274#endif
9f6c9258 2275
9ce392d4
YM
2276 /* mark driver is loaded in shmem2 */
2277 if (SHMEM2_HAS(bp, drv_capabilities_flag)) {
2278 u32 val;
2279 val = SHMEM2_RD(bp, drv_capabilities_flag[BP_FW_MB_IDX(bp)]);
2280 SHMEM2_WR(bp, drv_capabilities_flag[BP_FW_MB_IDX(bp)],
2281 val | DRV_FLAGS_CAPABILITIES_LOADED_SUPPORTED |
2282 DRV_FLAGS_CAPABILITIES_LOADED_L2);
2283 }
2284
619c5cb6
VZ
2285 /* Wait for all pending SP commands to complete */
2286 if (!bnx2x_wait_sp_comp(bp, ~0x0UL)) {
2287 BNX2X_ERR("Timeout waiting for SP elements to complete\n");
2288 bnx2x_nic_unload(bp, UNLOAD_CLOSE);
2289 return -EBUSY;
2290 }
6891dd25 2291
9876879f
BW
2292 /* If PMF - send ADMIN DCBX msg to MFW to initiate DCBX FSM */
2293 if (bp->port.pmf && (bp->state != BNX2X_STATE_DIAG))
2294 bnx2x_dcbx_init(bp, false);
2295
9f6c9258
DK
2296 return 0;
2297
619c5cb6 2298#ifndef BNX2X_STOP_ON_ERROR
9f6c9258 2299load_error4:
619c5cb6 2300#ifdef BCM_CNIC
9f6c9258 2301 /* Disable Timer scan */
619c5cb6 2302 REG_WR(bp, TM_REG_EN_LINEAR0_TIMER + port*4, 0);
9f6c9258
DK
2303#endif
2304load_error3:
2305 bnx2x_int_disable_sync(bp, 1);
d6214d7a 2306
619c5cb6
VZ
2307 /* Clean queueable objects */
2308 bnx2x_squeeze_objects(bp);
2309
9f6c9258
DK
2310 /* Free SKBs, SGEs, TPA pool and driver internals */
2311 bnx2x_free_skbs(bp);
ec6ba945 2312 for_each_rx_queue(bp, i)
9f6c9258 2313 bnx2x_free_rx_sge_range(bp, bp->fp + i, NUM_RX_SGE);
d6214d7a 2314
9f6c9258 2315 /* Release IRQs */
d6214d7a
DK
2316 bnx2x_free_irq(bp);
2317load_error2:
2318 if (!BP_NOMCP(bp)) {
2319 bnx2x_fw_command(bp, DRV_MSG_CODE_UNLOAD_REQ_WOL_MCP, 0);
2320 bnx2x_fw_command(bp, DRV_MSG_CODE_UNLOAD_DONE, 0);
2321 }
2322
2323 bp->port.pmf = 0;
9f6c9258
DK
2324load_error1:
2325 bnx2x_napi_disable(bp);
889b9af3
AE
2326 /* clear pf_load status, as it was already set */
2327 bnx2x_clear_pf_load(bp);
d6214d7a 2328load_error0:
9f6c9258
DK
2329 bnx2x_free_mem(bp);
2330
2331 return rc;
619c5cb6 2332#endif /* ! BNX2X_STOP_ON_ERROR */
9f6c9258
DK
2333}
2334
2335/* must be called with rtnl_lock */
2336int bnx2x_nic_unload(struct bnx2x *bp, int unload_mode)
2337{
2338 int i;
c9ee9206
VZ
2339 bool global = false;
2340
9ce392d4
YM
2341 /* mark driver is unloaded in shmem2 */
2342 if (SHMEM2_HAS(bp, drv_capabilities_flag)) {
2343 u32 val;
2344 val = SHMEM2_RD(bp, drv_capabilities_flag[BP_FW_MB_IDX(bp)]);
2345 SHMEM2_WR(bp, drv_capabilities_flag[BP_FW_MB_IDX(bp)],
2346 val & ~DRV_FLAGS_CAPABILITIES_LOADED_L2);
2347 }
2348
c9ee9206
VZ
2349 if ((bp->state == BNX2X_STATE_CLOSED) ||
2350 (bp->state == BNX2X_STATE_ERROR)) {
2351 /* We can get here if the driver has been unloaded
2352 * during parity error recovery and is either waiting for a
2353 * leader to complete or for other functions to unload and
2354 * then ifdown has been issued. In this case we want to
2355 * unload and let other functions to complete a recovery
2356 * process.
2357 */
9f6c9258
DK
2358 bp->recovery_state = BNX2X_RECOVERY_DONE;
2359 bp->is_leader = 0;
c9ee9206
VZ
2360 bnx2x_release_leader_lock(bp);
2361 smp_mb();
2362
51c1a580
MS
2363 DP(NETIF_MSG_IFDOWN, "Releasing a leadership...\n");
2364 BNX2X_ERR("Can't unload in closed or error state\n");
9f6c9258
DK
2365 return -EINVAL;
2366 }
2367
87b7ba3d
VZ
2368 /*
2369 * It's important to set the bp->state to the value different from
2370 * BNX2X_STATE_OPEN and only then stop the Tx. Otherwise bnx2x_tx_int()
2371 * may restart the Tx from the NAPI context (see bnx2x_tx_int()).
2372 */
2373 bp->state = BNX2X_STATE_CLOSING_WAIT4_HALT;
2374 smp_mb();
2375
9505ee37
VZ
2376 /* Stop Tx */
2377 bnx2x_tx_disable(bp);
65565884 2378 netdev_reset_tc(bp->dev);
9505ee37 2379
9f6c9258
DK
2380#ifdef BCM_CNIC
2381 bnx2x_cnic_notify(bp, CNIC_CTL_STOP_CMD);
2382#endif
9f6c9258 2383
9f6c9258 2384 bp->rx_mode = BNX2X_RX_MODE_NONE;
9f6c9258 2385
9f6c9258 2386 del_timer_sync(&bp->timer);
f85582f8 2387
619c5cb6
VZ
2388 /* Set ALWAYS_ALIVE bit in shmem */
2389 bp->fw_drv_pulse_wr_seq |= DRV_PULSE_ALWAYS_ALIVE;
2390
2391 bnx2x_drv_pulse(bp);
9f6c9258 2392
f85582f8 2393 bnx2x_stats_handle(bp, STATS_EVENT_STOP);
1355b704 2394 bnx2x_save_statistics(bp);
9f6c9258
DK
2395
2396 /* Cleanup the chip if needed */
2397 if (unload_mode != UNLOAD_RECOVERY)
2398 bnx2x_chip_cleanup(bp, unload_mode);
523224a3 2399 else {
c9ee9206
VZ
2400 /* Send the UNLOAD_REQUEST to the MCP */
2401 bnx2x_send_unload_req(bp, unload_mode);
2402
2403 /*
2404 * Prevent transactions to host from the functions on the
2405 * engine that doesn't reset global blocks in case of global
2406 * attention once gloabl blocks are reset and gates are opened
2407 * (the engine which leader will perform the recovery
2408 * last).
2409 */
2410 if (!CHIP_IS_E1x(bp))
2411 bnx2x_pf_disable(bp);
2412
2413 /* Disable HW interrupts, NAPI */
523224a3 2414 bnx2x_netif_stop(bp, 1);
26614ba5
MS
2415 /* Delete all NAPI objects */
2416 bnx2x_del_all_napi(bp);
523224a3
DK
2417
2418 /* Release IRQs */
d6214d7a 2419 bnx2x_free_irq(bp);
c9ee9206
VZ
2420
2421 /* Report UNLOAD_DONE to MCP */
2422 bnx2x_send_unload_done(bp);
523224a3 2423 }
9f6c9258 2424
619c5cb6
VZ
2425 /*
2426 * At this stage no more interrupts will arrive so we may safly clean
2427 * the queueable objects here in case they failed to get cleaned so far.
2428 */
2429 bnx2x_squeeze_objects(bp);
2430
79616895
VZ
2431 /* There should be no more pending SP commands at this stage */
2432 bp->sp_state = 0;
2433
9f6c9258
DK
2434 bp->port.pmf = 0;
2435
2436 /* Free SKBs, SGEs, TPA pool and driver internals */
2437 bnx2x_free_skbs(bp);
ec6ba945 2438 for_each_rx_queue(bp, i)
9f6c9258 2439 bnx2x_free_rx_sge_range(bp, bp->fp + i, NUM_RX_SGE);
d6214d7a 2440
9f6c9258
DK
2441 bnx2x_free_mem(bp);
2442
2443 bp->state = BNX2X_STATE_CLOSED;
2444
c9ee9206
VZ
2445 /* Check if there are pending parity attentions. If there are - set
2446 * RECOVERY_IN_PROGRESS.
2447 */
2448 if (bnx2x_chk_parity_attn(bp, &global, false)) {
2449 bnx2x_set_reset_in_progress(bp);
2450
2451 /* Set RESET_IS_GLOBAL if needed */
2452 if (global)
2453 bnx2x_set_reset_global(bp);
2454 }
2455
2456
9f6c9258
DK
2457 /* The last driver must disable a "close the gate" if there is no
2458 * parity attention or "process kill" pending.
2459 */
889b9af3 2460 if (!bnx2x_clear_pf_load(bp) && bnx2x_reset_is_done(bp, BP_PATH(bp)))
9f6c9258
DK
2461 bnx2x_disable_close_the_gate(bp);
2462
9f6c9258
DK
2463 return 0;
2464}
f85582f8 2465
9f6c9258
DK
2466int bnx2x_set_power_state(struct bnx2x *bp, pci_power_t state)
2467{
2468 u16 pmcsr;
2469
adf5f6a1
DK
2470 /* If there is no power capability, silently succeed */
2471 if (!bp->pm_cap) {
51c1a580 2472 BNX2X_DEV_INFO("No power capability. Breaking.\n");
adf5f6a1
DK
2473 return 0;
2474 }
2475
9f6c9258
DK
2476 pci_read_config_word(bp->pdev, bp->pm_cap + PCI_PM_CTRL, &pmcsr);
2477
2478 switch (state) {
2479 case PCI_D0:
2480 pci_write_config_word(bp->pdev, bp->pm_cap + PCI_PM_CTRL,
2481 ((pmcsr & ~PCI_PM_CTRL_STATE_MASK) |
2482 PCI_PM_CTRL_PME_STATUS));
2483
2484 if (pmcsr & PCI_PM_CTRL_STATE_MASK)
2485 /* delay required during transition out of D3hot */
2486 msleep(20);
2487 break;
2488
2489 case PCI_D3hot:
2490 /* If there are other clients above don't
2491 shut down the power */
2492 if (atomic_read(&bp->pdev->enable_cnt) != 1)
2493 return 0;
2494 /* Don't shut down the power for emulation and FPGA */
2495 if (CHIP_REV_IS_SLOW(bp))
2496 return 0;
2497
2498 pmcsr &= ~PCI_PM_CTRL_STATE_MASK;
2499 pmcsr |= 3;
2500
2501 if (bp->wol)
2502 pmcsr |= PCI_PM_CTRL_PME_ENABLE;
2503
2504 pci_write_config_word(bp->pdev, bp->pm_cap + PCI_PM_CTRL,
2505 pmcsr);
2506
2507 /* No more memory access after this point until
2508 * device is brought back to D0.
2509 */
2510 break;
2511
2512 default:
51c1a580 2513 dev_err(&bp->pdev->dev, "Can't support state = %d\n", state);
9f6c9258
DK
2514 return -EINVAL;
2515 }
2516 return 0;
2517}
2518
9f6c9258
DK
2519/*
2520 * net_device service functions
2521 */
d6214d7a 2522int bnx2x_poll(struct napi_struct *napi, int budget)
9f6c9258
DK
2523{
2524 int work_done = 0;
6383c0b3 2525 u8 cos;
9f6c9258
DK
2526 struct bnx2x_fastpath *fp = container_of(napi, struct bnx2x_fastpath,
2527 napi);
2528 struct bnx2x *bp = fp->bp;
2529
2530 while (1) {
2531#ifdef BNX2X_STOP_ON_ERROR
2532 if (unlikely(bp->panic)) {
2533 napi_complete(napi);
2534 return 0;
2535 }
2536#endif
2537
6383c0b3 2538 for_each_cos_in_tx_queue(fp, cos)
65565884
MS
2539 if (bnx2x_tx_queue_has_work(fp->txdata_ptr[cos]))
2540 bnx2x_tx_int(bp, fp->txdata_ptr[cos]);
6383c0b3 2541
9f6c9258
DK
2542
2543 if (bnx2x_has_rx_work(fp)) {
2544 work_done += bnx2x_rx_int(fp, budget - work_done);
2545
2546 /* must not complete if we consumed full budget */
2547 if (work_done >= budget)
2548 break;
2549 }
2550
2551 /* Fall out from the NAPI loop if needed */
2552 if (!(bnx2x_has_rx_work(fp) || bnx2x_has_tx_work(fp))) {
ec6ba945
VZ
2553#ifdef BCM_CNIC
2554 /* No need to update SB for FCoE L2 ring as long as
2555 * it's connected to the default SB and the SB
2556 * has been updated when NAPI was scheduled.
2557 */
2558 if (IS_FCOE_FP(fp)) {
2559 napi_complete(napi);
2560 break;
2561 }
2562#endif
2563
9f6c9258 2564 bnx2x_update_fpsb_idx(fp);
f85582f8
DK
2565 /* bnx2x_has_rx_work() reads the status block,
2566 * thus we need to ensure that status block indices
2567 * have been actually read (bnx2x_update_fpsb_idx)
2568 * prior to this check (bnx2x_has_rx_work) so that
2569 * we won't write the "newer" value of the status block
2570 * to IGU (if there was a DMA right after
2571 * bnx2x_has_rx_work and if there is no rmb, the memory
2572 * reading (bnx2x_update_fpsb_idx) may be postponed
2573 * to right before bnx2x_ack_sb). In this case there
2574 * will never be another interrupt until there is
2575 * another update of the status block, while there
2576 * is still unhandled work.
2577 */
9f6c9258
DK
2578 rmb();
2579
2580 if (!(bnx2x_has_rx_work(fp) || bnx2x_has_tx_work(fp))) {
2581 napi_complete(napi);
2582 /* Re-enable interrupts */
51c1a580 2583 DP(NETIF_MSG_RX_STATUS,
523224a3
DK
2584 "Update index to %d\n", fp->fp_hc_idx);
2585 bnx2x_ack_sb(bp, fp->igu_sb_id, USTORM_ID,
2586 le16_to_cpu(fp->fp_hc_idx),
9f6c9258
DK
2587 IGU_INT_ENABLE, 1);
2588 break;
2589 }
2590 }
2591 }
2592
2593 return work_done;
2594}
2595
9f6c9258
DK
2596/* we split the first BD into headers and data BDs
2597 * to ease the pain of our fellow microcode engineers
2598 * we use one mapping for both BDs
9f6c9258
DK
2599 */
2600static noinline u16 bnx2x_tx_split(struct bnx2x *bp,
6383c0b3 2601 struct bnx2x_fp_txdata *txdata,
9f6c9258
DK
2602 struct sw_tx_bd *tx_buf,
2603 struct eth_tx_start_bd **tx_bd, u16 hlen,
2604 u16 bd_prod, int nbd)
2605{
2606 struct eth_tx_start_bd *h_tx_bd = *tx_bd;
2607 struct eth_tx_bd *d_tx_bd;
2608 dma_addr_t mapping;
2609 int old_len = le16_to_cpu(h_tx_bd->nbytes);
2610
2611 /* first fix first BD */
2612 h_tx_bd->nbd = cpu_to_le16(nbd);
2613 h_tx_bd->nbytes = cpu_to_le16(hlen);
2614
51c1a580
MS
2615 DP(NETIF_MSG_TX_QUEUED, "TSO split header size is %d (%x:%x) nbd %d\n",
2616 h_tx_bd->nbytes, h_tx_bd->addr_hi, h_tx_bd->addr_lo, h_tx_bd->nbd);
9f6c9258
DK
2617
2618 /* now get a new data BD
2619 * (after the pbd) and fill it */
2620 bd_prod = TX_BD(NEXT_TX_IDX(bd_prod));
6383c0b3 2621 d_tx_bd = &txdata->tx_desc_ring[bd_prod].reg_bd;
9f6c9258
DK
2622
2623 mapping = HILO_U64(le32_to_cpu(h_tx_bd->addr_hi),
2624 le32_to_cpu(h_tx_bd->addr_lo)) + hlen;
2625
2626 d_tx_bd->addr_hi = cpu_to_le32(U64_HI(mapping));
2627 d_tx_bd->addr_lo = cpu_to_le32(U64_LO(mapping));
2628 d_tx_bd->nbytes = cpu_to_le16(old_len - hlen);
2629
2630 /* this marks the BD as one that has no individual mapping */
2631 tx_buf->flags |= BNX2X_TSO_SPLIT_BD;
2632
2633 DP(NETIF_MSG_TX_QUEUED,
2634 "TSO split data size is %d (%x:%x)\n",
2635 d_tx_bd->nbytes, d_tx_bd->addr_hi, d_tx_bd->addr_lo);
2636
2637 /* update tx_bd */
2638 *tx_bd = (struct eth_tx_start_bd *)d_tx_bd;
2639
2640 return bd_prod;
2641}
2642
2643static inline u16 bnx2x_csum_fix(unsigned char *t_header, u16 csum, s8 fix)
2644{
2645 if (fix > 0)
2646 csum = (u16) ~csum_fold(csum_sub(csum,
2647 csum_partial(t_header - fix, fix, 0)));
2648
2649 else if (fix < 0)
2650 csum = (u16) ~csum_fold(csum_add(csum,
2651 csum_partial(t_header, -fix, 0)));
2652
2653 return swab16(csum);
2654}
2655
2656static inline u32 bnx2x_xmit_type(struct bnx2x *bp, struct sk_buff *skb)
2657{
2658 u32 rc;
2659
2660 if (skb->ip_summed != CHECKSUM_PARTIAL)
2661 rc = XMIT_PLAIN;
2662
2663 else {
d0d9d8ef 2664 if (vlan_get_protocol(skb) == htons(ETH_P_IPV6)) {
9f6c9258
DK
2665 rc = XMIT_CSUM_V6;
2666 if (ipv6_hdr(skb)->nexthdr == IPPROTO_TCP)
2667 rc |= XMIT_CSUM_TCP;
2668
2669 } else {
2670 rc = XMIT_CSUM_V4;
2671 if (ip_hdr(skb)->protocol == IPPROTO_TCP)
2672 rc |= XMIT_CSUM_TCP;
2673 }
2674 }
2675
5892b9e9
VZ
2676 if (skb_is_gso_v6(skb))
2677 rc |= XMIT_GSO_V6 | XMIT_CSUM_TCP | XMIT_CSUM_V6;
2678 else if (skb_is_gso(skb))
2679 rc |= XMIT_GSO_V4 | XMIT_CSUM_V4 | XMIT_CSUM_TCP;
9f6c9258
DK
2680
2681 return rc;
2682}
2683
2684#if (MAX_SKB_FRAGS >= MAX_FETCH_BD - 3)
2685/* check if packet requires linearization (packet is too fragmented)
2686 no need to check fragmentation if page size > 8K (there will be no
2687 violation to FW restrictions) */
2688static int bnx2x_pkt_req_lin(struct bnx2x *bp, struct sk_buff *skb,
2689 u32 xmit_type)
2690{
2691 int to_copy = 0;
2692 int hlen = 0;
2693 int first_bd_sz = 0;
2694
2695 /* 3 = 1 (for linear data BD) + 2 (for PBD and last BD) */
2696 if (skb_shinfo(skb)->nr_frags >= (MAX_FETCH_BD - 3)) {
2697
2698 if (xmit_type & XMIT_GSO) {
2699 unsigned short lso_mss = skb_shinfo(skb)->gso_size;
2700 /* Check if LSO packet needs to be copied:
2701 3 = 1 (for headers BD) + 2 (for PBD and last BD) */
2702 int wnd_size = MAX_FETCH_BD - 3;
2703 /* Number of windows to check */
2704 int num_wnds = skb_shinfo(skb)->nr_frags - wnd_size;
2705 int wnd_idx = 0;
2706 int frag_idx = 0;
2707 u32 wnd_sum = 0;
2708
2709 /* Headers length */
2710 hlen = (int)(skb_transport_header(skb) - skb->data) +
2711 tcp_hdrlen(skb);
2712
2713 /* Amount of data (w/o headers) on linear part of SKB*/
2714 first_bd_sz = skb_headlen(skb) - hlen;
2715
2716 wnd_sum = first_bd_sz;
2717
2718 /* Calculate the first sum - it's special */
2719 for (frag_idx = 0; frag_idx < wnd_size - 1; frag_idx++)
2720 wnd_sum +=
9e903e08 2721 skb_frag_size(&skb_shinfo(skb)->frags[frag_idx]);
9f6c9258
DK
2722
2723 /* If there was data on linear skb data - check it */
2724 if (first_bd_sz > 0) {
2725 if (unlikely(wnd_sum < lso_mss)) {
2726 to_copy = 1;
2727 goto exit_lbl;
2728 }
2729
2730 wnd_sum -= first_bd_sz;
2731 }
2732
2733 /* Others are easier: run through the frag list and
2734 check all windows */
2735 for (wnd_idx = 0; wnd_idx <= num_wnds; wnd_idx++) {
2736 wnd_sum +=
9e903e08 2737 skb_frag_size(&skb_shinfo(skb)->frags[wnd_idx + wnd_size - 1]);
9f6c9258
DK
2738
2739 if (unlikely(wnd_sum < lso_mss)) {
2740 to_copy = 1;
2741 break;
2742 }
2743 wnd_sum -=
9e903e08 2744 skb_frag_size(&skb_shinfo(skb)->frags[wnd_idx]);
9f6c9258
DK
2745 }
2746 } else {
2747 /* in non-LSO too fragmented packet should always
2748 be linearized */
2749 to_copy = 1;
2750 }
2751 }
2752
2753exit_lbl:
2754 if (unlikely(to_copy))
2755 DP(NETIF_MSG_TX_QUEUED,
51c1a580 2756 "Linearization IS REQUIRED for %s packet. num_frags %d hlen %d first_bd_sz %d\n",
9f6c9258
DK
2757 (xmit_type & XMIT_GSO) ? "LSO" : "non-LSO",
2758 skb_shinfo(skb)->nr_frags, hlen, first_bd_sz);
2759
2760 return to_copy;
2761}
2762#endif
2763
2297a2da
VZ
2764static inline void bnx2x_set_pbd_gso_e2(struct sk_buff *skb, u32 *parsing_data,
2765 u32 xmit_type)
f2e0899f 2766{
2297a2da
VZ
2767 *parsing_data |= (skb_shinfo(skb)->gso_size <<
2768 ETH_TX_PARSE_BD_E2_LSO_MSS_SHIFT) &
2769 ETH_TX_PARSE_BD_E2_LSO_MSS;
f2e0899f
DK
2770 if ((xmit_type & XMIT_GSO_V6) &&
2771 (ipv6_hdr(skb)->nexthdr == NEXTHDR_IPV6))
2297a2da 2772 *parsing_data |= ETH_TX_PARSE_BD_E2_IPV6_WITH_EXT_HDR;
f2e0899f
DK
2773}
2774
2775/**
e8920674 2776 * bnx2x_set_pbd_gso - update PBD in GSO case.
f2e0899f 2777 *
e8920674
DK
2778 * @skb: packet skb
2779 * @pbd: parse BD
2780 * @xmit_type: xmit flags
f2e0899f
DK
2781 */
2782static inline void bnx2x_set_pbd_gso(struct sk_buff *skb,
2783 struct eth_tx_parse_bd_e1x *pbd,
2784 u32 xmit_type)
2785{
2786 pbd->lso_mss = cpu_to_le16(skb_shinfo(skb)->gso_size);
2787 pbd->tcp_send_seq = swab32(tcp_hdr(skb)->seq);
2788 pbd->tcp_flags = pbd_tcp_flags(skb);
2789
2790 if (xmit_type & XMIT_GSO_V4) {
2791 pbd->ip_id = swab16(ip_hdr(skb)->id);
2792 pbd->tcp_pseudo_csum =
2793 swab16(~csum_tcpudp_magic(ip_hdr(skb)->saddr,
2794 ip_hdr(skb)->daddr,
2795 0, IPPROTO_TCP, 0));
2796
2797 } else
2798 pbd->tcp_pseudo_csum =
2799 swab16(~csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
2800 &ipv6_hdr(skb)->daddr,
2801 0, IPPROTO_TCP, 0));
2802
2803 pbd->global_data |= ETH_TX_PARSE_BD_E1X_PSEUDO_CS_WITHOUT_LEN;
2804}
f85582f8 2805
f2e0899f 2806/**
e8920674 2807 * bnx2x_set_pbd_csum_e2 - update PBD with checksum and return header length
f2e0899f 2808 *
e8920674
DK
2809 * @bp: driver handle
2810 * @skb: packet skb
2811 * @parsing_data: data to be updated
2812 * @xmit_type: xmit flags
f2e0899f 2813 *
e8920674 2814 * 57712 related
f2e0899f
DK
2815 */
2816static inline u8 bnx2x_set_pbd_csum_e2(struct bnx2x *bp, struct sk_buff *skb,
2297a2da 2817 u32 *parsing_data, u32 xmit_type)
f2e0899f 2818{
e39aece7
VZ
2819 *parsing_data |=
2820 ((((u8 *)skb_transport_header(skb) - skb->data) >> 1) <<
2821 ETH_TX_PARSE_BD_E2_TCP_HDR_START_OFFSET_W_SHIFT) &
2822 ETH_TX_PARSE_BD_E2_TCP_HDR_START_OFFSET_W;
f2e0899f 2823
e39aece7
VZ
2824 if (xmit_type & XMIT_CSUM_TCP) {
2825 *parsing_data |= ((tcp_hdrlen(skb) / 4) <<
2826 ETH_TX_PARSE_BD_E2_TCP_HDR_LENGTH_DW_SHIFT) &
2827 ETH_TX_PARSE_BD_E2_TCP_HDR_LENGTH_DW;
f2e0899f 2828
e39aece7
VZ
2829 return skb_transport_header(skb) + tcp_hdrlen(skb) - skb->data;
2830 } else
2831 /* We support checksum offload for TCP and UDP only.
2832 * No need to pass the UDP header length - it's a constant.
2833 */
2834 return skb_transport_header(skb) +
2835 sizeof(struct udphdr) - skb->data;
f2e0899f
DK
2836}
2837
93ef5c02
DK
2838static inline void bnx2x_set_sbd_csum(struct bnx2x *bp, struct sk_buff *skb,
2839 struct eth_tx_start_bd *tx_start_bd, u32 xmit_type)
2840{
93ef5c02
DK
2841 tx_start_bd->bd_flags.as_bitfield |= ETH_TX_BD_FLAGS_L4_CSUM;
2842
2843 if (xmit_type & XMIT_CSUM_V4)
2844 tx_start_bd->bd_flags.as_bitfield |=
2845 ETH_TX_BD_FLAGS_IP_CSUM;
2846 else
2847 tx_start_bd->bd_flags.as_bitfield |=
2848 ETH_TX_BD_FLAGS_IPV6;
2849
2850 if (!(xmit_type & XMIT_CSUM_TCP))
2851 tx_start_bd->bd_flags.as_bitfield |= ETH_TX_BD_FLAGS_IS_UDP;
93ef5c02
DK
2852}
2853
f2e0899f 2854/**
e8920674 2855 * bnx2x_set_pbd_csum - update PBD with checksum and return header length
f2e0899f 2856 *
e8920674
DK
2857 * @bp: driver handle
2858 * @skb: packet skb
2859 * @pbd: parse BD to be updated
2860 * @xmit_type: xmit flags
f2e0899f
DK
2861 */
2862static inline u8 bnx2x_set_pbd_csum(struct bnx2x *bp, struct sk_buff *skb,
2863 struct eth_tx_parse_bd_e1x *pbd,
2864 u32 xmit_type)
2865{
e39aece7 2866 u8 hlen = (skb_network_header(skb) - skb->data) >> 1;
f2e0899f
DK
2867
2868 /* for now NS flag is not used in Linux */
2869 pbd->global_data =
2870 (hlen | ((skb->protocol == cpu_to_be16(ETH_P_8021Q)) <<
2871 ETH_TX_PARSE_BD_E1X_LLC_SNAP_EN_SHIFT));
2872
2873 pbd->ip_hlen_w = (skb_transport_header(skb) -
e39aece7 2874 skb_network_header(skb)) >> 1;
f2e0899f 2875
e39aece7
VZ
2876 hlen += pbd->ip_hlen_w;
2877
2878 /* We support checksum offload for TCP and UDP only */
2879 if (xmit_type & XMIT_CSUM_TCP)
2880 hlen += tcp_hdrlen(skb) / 2;
2881 else
2882 hlen += sizeof(struct udphdr) / 2;
f2e0899f
DK
2883
2884 pbd->total_hlen_w = cpu_to_le16(hlen);
2885 hlen = hlen*2;
2886
2887 if (xmit_type & XMIT_CSUM_TCP) {
2888 pbd->tcp_pseudo_csum = swab16(tcp_hdr(skb)->check);
2889
2890 } else {
2891 s8 fix = SKB_CS_OFF(skb); /* signed! */
2892
2893 DP(NETIF_MSG_TX_QUEUED,
2894 "hlen %d fix %d csum before fix %x\n",
2895 le16_to_cpu(pbd->total_hlen_w), fix, SKB_CS(skb));
2896
2897 /* HW bug: fixup the CSUM */
2898 pbd->tcp_pseudo_csum =
2899 bnx2x_csum_fix(skb_transport_header(skb),
2900 SKB_CS(skb), fix);
2901
2902 DP(NETIF_MSG_TX_QUEUED, "csum after fix %x\n",
2903 pbd->tcp_pseudo_csum);
2904 }
2905
2906 return hlen;
2907}
f85582f8 2908
9f6c9258
DK
2909/* called with netif_tx_lock
2910 * bnx2x_tx_int() runs without netif_tx_lock unless it needs to call
2911 * netif_wake_queue()
2912 */
2913netdev_tx_t bnx2x_start_xmit(struct sk_buff *skb, struct net_device *dev)
2914{
2915 struct bnx2x *bp = netdev_priv(dev);
6383c0b3 2916
9f6c9258 2917 struct netdev_queue *txq;
6383c0b3 2918 struct bnx2x_fp_txdata *txdata;
9f6c9258 2919 struct sw_tx_bd *tx_buf;
619c5cb6 2920 struct eth_tx_start_bd *tx_start_bd, *first_bd;
9f6c9258 2921 struct eth_tx_bd *tx_data_bd, *total_pkt_bd = NULL;
523224a3 2922 struct eth_tx_parse_bd_e1x *pbd_e1x = NULL;
f2e0899f 2923 struct eth_tx_parse_bd_e2 *pbd_e2 = NULL;
2297a2da 2924 u32 pbd_e2_parsing_data = 0;
9f6c9258 2925 u16 pkt_prod, bd_prod;
65565884 2926 int nbd, txq_index;
9f6c9258
DK
2927 dma_addr_t mapping;
2928 u32 xmit_type = bnx2x_xmit_type(bp, skb);
2929 int i;
2930 u8 hlen = 0;
2931 __le16 pkt_size = 0;
2932 struct ethhdr *eth;
2933 u8 mac_type = UNICAST_ADDRESS;
2934
2935#ifdef BNX2X_STOP_ON_ERROR
2936 if (unlikely(bp->panic))
2937 return NETDEV_TX_BUSY;
2938#endif
2939
6383c0b3
AE
2940 txq_index = skb_get_queue_mapping(skb);
2941 txq = netdev_get_tx_queue(dev, txq_index);
2942
2943 BUG_ON(txq_index >= MAX_ETH_TXQ_IDX(bp) + FCOE_PRESENT);
2944
65565884 2945 txdata = &bp->bnx2x_txq[txq_index];
6383c0b3
AE
2946
2947 /* enable this debug print to view the transmission queue being used
51c1a580 2948 DP(NETIF_MSG_TX_QUEUED, "indices: txq %d, fp %d, txdata %d\n",
6383c0b3 2949 txq_index, fp_index, txdata_index); */
9f6c9258 2950
6383c0b3 2951 /* enable this debug print to view the tranmission details
51c1a580
MS
2952 DP(NETIF_MSG_TX_QUEUED,
2953 "transmitting packet cid %d fp index %d txdata_index %d tx_data ptr %p fp pointer %p\n",
6383c0b3 2954 txdata->cid, fp_index, txdata_index, txdata, fp); */
9f6c9258 2955
6383c0b3 2956 if (unlikely(bnx2x_tx_avail(bp, txdata) <
7df2dc6b
DK
2957 skb_shinfo(skb)->nr_frags +
2958 BDS_PER_TX_PKT +
2959 NEXT_CNT_PER_TX_PKT(MAX_BDS_PER_TX_PKT))) {
15192a8c 2960 bnx2x_fp_qstats(bp, txdata->parent_fp)->driver_xoff++;
9f6c9258
DK
2961 netif_tx_stop_queue(txq);
2962 BNX2X_ERR("BUG! Tx ring full when queue awake!\n");
2963 return NETDEV_TX_BUSY;
2964 }
2965
51c1a580
MS
2966 DP(NETIF_MSG_TX_QUEUED,
2967 "queue[%d]: SKB: summed %x protocol %x protocol(%x,%x) gso type %x xmit_type %x\n",
6383c0b3 2968 txq_index, skb->ip_summed, skb->protocol, ipv6_hdr(skb)->nexthdr,
9f6c9258
DK
2969 ip_hdr(skb)->protocol, skb_shinfo(skb)->gso_type, xmit_type);
2970
2971 eth = (struct ethhdr *)skb->data;
2972
2973 /* set flag according to packet type (UNICAST_ADDRESS is default)*/
2974 if (unlikely(is_multicast_ether_addr(eth->h_dest))) {
2975 if (is_broadcast_ether_addr(eth->h_dest))
2976 mac_type = BROADCAST_ADDRESS;
2977 else
2978 mac_type = MULTICAST_ADDRESS;
2979 }
2980
2981#if (MAX_SKB_FRAGS >= MAX_FETCH_BD - 3)
2982 /* First, check if we need to linearize the skb (due to FW
2983 restrictions). No need to check fragmentation if page size > 8K
2984 (there will be no violation to FW restrictions) */
2985 if (bnx2x_pkt_req_lin(bp, skb, xmit_type)) {
2986 /* Statistics of linearization */
2987 bp->lin_cnt++;
2988 if (skb_linearize(skb) != 0) {
51c1a580
MS
2989 DP(NETIF_MSG_TX_QUEUED,
2990 "SKB linearization failed - silently dropping this SKB\n");
9f6c9258
DK
2991 dev_kfree_skb_any(skb);
2992 return NETDEV_TX_OK;
2993 }
2994 }
2995#endif
619c5cb6
VZ
2996 /* Map skb linear data for DMA */
2997 mapping = dma_map_single(&bp->pdev->dev, skb->data,
2998 skb_headlen(skb), DMA_TO_DEVICE);
2999 if (unlikely(dma_mapping_error(&bp->pdev->dev, mapping))) {
51c1a580
MS
3000 DP(NETIF_MSG_TX_QUEUED,
3001 "SKB mapping failed - silently dropping this SKB\n");
619c5cb6
VZ
3002 dev_kfree_skb_any(skb);
3003 return NETDEV_TX_OK;
3004 }
9f6c9258
DK
3005 /*
3006 Please read carefully. First we use one BD which we mark as start,
3007 then we have a parsing info BD (used for TSO or xsum),
3008 and only then we have the rest of the TSO BDs.
3009 (don't forget to mark the last one as last,
3010 and to unmap only AFTER you write to the BD ...)
3011 And above all, all pdb sizes are in words - NOT DWORDS!
3012 */
3013
619c5cb6
VZ
3014 /* get current pkt produced now - advance it just before sending packet
3015 * since mapping of pages may fail and cause packet to be dropped
3016 */
6383c0b3
AE
3017 pkt_prod = txdata->tx_pkt_prod;
3018 bd_prod = TX_BD(txdata->tx_bd_prod);
9f6c9258 3019
619c5cb6
VZ
3020 /* get a tx_buf and first BD
3021 * tx_start_bd may be changed during SPLIT,
3022 * but first_bd will always stay first
3023 */
6383c0b3
AE
3024 tx_buf = &txdata->tx_buf_ring[TX_BD(pkt_prod)];
3025 tx_start_bd = &txdata->tx_desc_ring[bd_prod].start_bd;
619c5cb6 3026 first_bd = tx_start_bd;
9f6c9258
DK
3027
3028 tx_start_bd->bd_flags.as_bitfield = ETH_TX_BD_FLAGS_START_BD;
f85582f8
DK
3029 SET_FLAG(tx_start_bd->general_data, ETH_TX_START_BD_ETH_ADDR_TYPE,
3030 mac_type);
3031
9f6c9258 3032 /* header nbd */
f85582f8 3033 SET_FLAG(tx_start_bd->general_data, ETH_TX_START_BD_HDR_NBDS, 1);
9f6c9258
DK
3034
3035 /* remember the first BD of the packet */
6383c0b3 3036 tx_buf->first_bd = txdata->tx_bd_prod;
9f6c9258
DK
3037 tx_buf->skb = skb;
3038 tx_buf->flags = 0;
3039
3040 DP(NETIF_MSG_TX_QUEUED,
3041 "sending pkt %u @%p next_idx %u bd %u @%p\n",
6383c0b3 3042 pkt_prod, tx_buf, txdata->tx_pkt_prod, bd_prod, tx_start_bd);
9f6c9258 3043
eab6d18d 3044 if (vlan_tx_tag_present(skb)) {
523224a3
DK
3045 tx_start_bd->vlan_or_ethertype =
3046 cpu_to_le16(vlan_tx_tag_get(skb));
3047 tx_start_bd->bd_flags.as_bitfield |=
3048 (X_ETH_OUTBAND_VLAN << ETH_TX_BD_FLAGS_VLAN_MODE_SHIFT);
9f6c9258 3049 } else
523224a3 3050 tx_start_bd->vlan_or_ethertype = cpu_to_le16(pkt_prod);
9f6c9258
DK
3051
3052 /* turn on parsing and get a BD */
3053 bd_prod = TX_BD(NEXT_TX_IDX(bd_prod));
9f6c9258 3054
93ef5c02
DK
3055 if (xmit_type & XMIT_CSUM)
3056 bnx2x_set_sbd_csum(bp, skb, tx_start_bd, xmit_type);
9f6c9258 3057
619c5cb6 3058 if (!CHIP_IS_E1x(bp)) {
6383c0b3 3059 pbd_e2 = &txdata->tx_desc_ring[bd_prod].parse_bd_e2;
f2e0899f
DK
3060 memset(pbd_e2, 0, sizeof(struct eth_tx_parse_bd_e2));
3061 /* Set PBD in checksum offload case */
3062 if (xmit_type & XMIT_CSUM)
2297a2da
VZ
3063 hlen = bnx2x_set_pbd_csum_e2(bp, skb,
3064 &pbd_e2_parsing_data,
3065 xmit_type);
619c5cb6
VZ
3066 if (IS_MF_SI(bp)) {
3067 /*
3068 * fill in the MAC addresses in the PBD - for local
3069 * switching
3070 */
3071 bnx2x_set_fw_mac_addr(&pbd_e2->src_mac_addr_hi,
3072 &pbd_e2->src_mac_addr_mid,
3073 &pbd_e2->src_mac_addr_lo,
3074 eth->h_source);
3075 bnx2x_set_fw_mac_addr(&pbd_e2->dst_mac_addr_hi,
3076 &pbd_e2->dst_mac_addr_mid,
3077 &pbd_e2->dst_mac_addr_lo,
3078 eth->h_dest);
3079 }
f2e0899f 3080 } else {
6383c0b3 3081 pbd_e1x = &txdata->tx_desc_ring[bd_prod].parse_bd_e1x;
f2e0899f
DK
3082 memset(pbd_e1x, 0, sizeof(struct eth_tx_parse_bd_e1x));
3083 /* Set PBD in checksum offload case */
3084 if (xmit_type & XMIT_CSUM)
3085 hlen = bnx2x_set_pbd_csum(bp, skb, pbd_e1x, xmit_type);
9f6c9258 3086
9f6c9258
DK
3087 }
3088
f85582f8 3089 /* Setup the data pointer of the first BD of the packet */
9f6c9258
DK
3090 tx_start_bd->addr_hi = cpu_to_le32(U64_HI(mapping));
3091 tx_start_bd->addr_lo = cpu_to_le32(U64_LO(mapping));
619c5cb6 3092 nbd = 2; /* start_bd + pbd + frags (updated when pages are mapped) */
9f6c9258
DK
3093 tx_start_bd->nbytes = cpu_to_le16(skb_headlen(skb));
3094 pkt_size = tx_start_bd->nbytes;
3095
51c1a580
MS
3096 DP(NETIF_MSG_TX_QUEUED,
3097 "first bd @%p addr (%x:%x) nbd %d nbytes %d flags %x vlan %x\n",
9f6c9258
DK
3098 tx_start_bd, tx_start_bd->addr_hi, tx_start_bd->addr_lo,
3099 le16_to_cpu(tx_start_bd->nbd), le16_to_cpu(tx_start_bd->nbytes),
523224a3
DK
3100 tx_start_bd->bd_flags.as_bitfield,
3101 le16_to_cpu(tx_start_bd->vlan_or_ethertype));
9f6c9258
DK
3102
3103 if (xmit_type & XMIT_GSO) {
3104
3105 DP(NETIF_MSG_TX_QUEUED,
3106 "TSO packet len %d hlen %d total len %d tso size %d\n",
3107 skb->len, hlen, skb_headlen(skb),
3108 skb_shinfo(skb)->gso_size);
3109
3110 tx_start_bd->bd_flags.as_bitfield |= ETH_TX_BD_FLAGS_SW_LSO;
3111
3112 if (unlikely(skb_headlen(skb) > hlen))
6383c0b3
AE
3113 bd_prod = bnx2x_tx_split(bp, txdata, tx_buf,
3114 &tx_start_bd, hlen,
3115 bd_prod, ++nbd);
619c5cb6 3116 if (!CHIP_IS_E1x(bp))
2297a2da
VZ
3117 bnx2x_set_pbd_gso_e2(skb, &pbd_e2_parsing_data,
3118 xmit_type);
f2e0899f
DK
3119 else
3120 bnx2x_set_pbd_gso(skb, pbd_e1x, xmit_type);
9f6c9258 3121 }
2297a2da
VZ
3122
3123 /* Set the PBD's parsing_data field if not zero
3124 * (for the chips newer than 57711).
3125 */
3126 if (pbd_e2_parsing_data)
3127 pbd_e2->parsing_data = cpu_to_le32(pbd_e2_parsing_data);
3128
9f6c9258
DK
3129 tx_data_bd = (struct eth_tx_bd *)tx_start_bd;
3130
f85582f8 3131 /* Handle fragmented skb */
9f6c9258
DK
3132 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
3133 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
3134
9e903e08
ED
3135 mapping = skb_frag_dma_map(&bp->pdev->dev, frag, 0,
3136 skb_frag_size(frag), DMA_TO_DEVICE);
619c5cb6 3137 if (unlikely(dma_mapping_error(&bp->pdev->dev, mapping))) {
2df1a70a 3138 unsigned int pkts_compl = 0, bytes_compl = 0;
619c5cb6 3139
51c1a580
MS
3140 DP(NETIF_MSG_TX_QUEUED,
3141 "Unable to map page - dropping packet...\n");
619c5cb6
VZ
3142
3143 /* we need unmap all buffers already mapped
3144 * for this SKB;
3145 * first_bd->nbd need to be properly updated
3146 * before call to bnx2x_free_tx_pkt
3147 */
3148 first_bd->nbd = cpu_to_le16(nbd);
6383c0b3 3149 bnx2x_free_tx_pkt(bp, txdata,
2df1a70a
TH
3150 TX_BD(txdata->tx_pkt_prod),
3151 &pkts_compl, &bytes_compl);
619c5cb6
VZ
3152 return NETDEV_TX_OK;
3153 }
3154
9f6c9258 3155 bd_prod = TX_BD(NEXT_TX_IDX(bd_prod));
6383c0b3 3156 tx_data_bd = &txdata->tx_desc_ring[bd_prod].reg_bd;
9f6c9258 3157 if (total_pkt_bd == NULL)
6383c0b3 3158 total_pkt_bd = &txdata->tx_desc_ring[bd_prod].reg_bd;
9f6c9258 3159
9f6c9258
DK
3160 tx_data_bd->addr_hi = cpu_to_le32(U64_HI(mapping));
3161 tx_data_bd->addr_lo = cpu_to_le32(U64_LO(mapping));
9e903e08
ED
3162 tx_data_bd->nbytes = cpu_to_le16(skb_frag_size(frag));
3163 le16_add_cpu(&pkt_size, skb_frag_size(frag));
619c5cb6 3164 nbd++;
9f6c9258
DK
3165
3166 DP(NETIF_MSG_TX_QUEUED,
3167 "frag %d bd @%p addr (%x:%x) nbytes %d\n",
3168 i, tx_data_bd, tx_data_bd->addr_hi, tx_data_bd->addr_lo,
3169 le16_to_cpu(tx_data_bd->nbytes));
3170 }
3171
3172 DP(NETIF_MSG_TX_QUEUED, "last bd @%p\n", tx_data_bd);
3173
619c5cb6
VZ
3174 /* update with actual num BDs */
3175 first_bd->nbd = cpu_to_le16(nbd);
3176
9f6c9258
DK
3177 bd_prod = TX_BD(NEXT_TX_IDX(bd_prod));
3178
3179 /* now send a tx doorbell, counting the next BD
3180 * if the packet contains or ends with it
3181 */
3182 if (TX_BD_POFF(bd_prod) < nbd)
3183 nbd++;
3184
619c5cb6
VZ
3185 /* total_pkt_bytes should be set on the first data BD if
3186 * it's not an LSO packet and there is more than one
3187 * data BD. In this case pkt_size is limited by an MTU value.
3188 * However we prefer to set it for an LSO packet (while we don't
3189 * have to) in order to save some CPU cycles in a none-LSO
3190 * case, when we much more care about them.
3191 */
9f6c9258
DK
3192 if (total_pkt_bd != NULL)
3193 total_pkt_bd->total_pkt_bytes = pkt_size;
3194
523224a3 3195 if (pbd_e1x)
9f6c9258 3196 DP(NETIF_MSG_TX_QUEUED,
51c1a580 3197 "PBD (E1X) @%p ip_data %x ip_hlen %u ip_id %u lso_mss %u tcp_flags %x xsum %x seq %u hlen %u\n",
523224a3
DK
3198 pbd_e1x, pbd_e1x->global_data, pbd_e1x->ip_hlen_w,
3199 pbd_e1x->ip_id, pbd_e1x->lso_mss, pbd_e1x->tcp_flags,
3200 pbd_e1x->tcp_pseudo_csum, pbd_e1x->tcp_send_seq,
3201 le16_to_cpu(pbd_e1x->total_hlen_w));
f2e0899f
DK
3202 if (pbd_e2)
3203 DP(NETIF_MSG_TX_QUEUED,
3204 "PBD (E2) @%p dst %x %x %x src %x %x %x parsing_data %x\n",
3205 pbd_e2, pbd_e2->dst_mac_addr_hi, pbd_e2->dst_mac_addr_mid,
3206 pbd_e2->dst_mac_addr_lo, pbd_e2->src_mac_addr_hi,
3207 pbd_e2->src_mac_addr_mid, pbd_e2->src_mac_addr_lo,
3208 pbd_e2->parsing_data);
9f6c9258
DK
3209 DP(NETIF_MSG_TX_QUEUED, "doorbell: nbd %d bd %u\n", nbd, bd_prod);
3210
2df1a70a
TH
3211 netdev_tx_sent_queue(txq, skb->len);
3212
8373c57d
WB
3213 skb_tx_timestamp(skb);
3214
6383c0b3 3215 txdata->tx_pkt_prod++;
9f6c9258
DK
3216 /*
3217 * Make sure that the BD data is updated before updating the producer
3218 * since FW might read the BD right after the producer is updated.
3219 * This is only applicable for weak-ordered memory model archs such
3220 * as IA-64. The following barrier is also mandatory since FW will
3221 * assumes packets must have BDs.
3222 */
3223 wmb();
3224
6383c0b3 3225 txdata->tx_db.data.prod += nbd;
9f6c9258 3226 barrier();
f85582f8 3227
6383c0b3 3228 DOORBELL(bp, txdata->cid, txdata->tx_db.raw);
9f6c9258
DK
3229
3230 mmiowb();
3231
6383c0b3 3232 txdata->tx_bd_prod += nbd;
9f6c9258 3233
7df2dc6b 3234 if (unlikely(bnx2x_tx_avail(bp, txdata) < MAX_DESC_PER_TX_PKT)) {
9f6c9258
DK
3235 netif_tx_stop_queue(txq);
3236
3237 /* paired memory barrier is in bnx2x_tx_int(), we have to keep
3238 * ordering of set_bit() in netif_tx_stop_queue() and read of
3239 * fp->bd_tx_cons */
3240 smp_mb();
3241
15192a8c 3242 bnx2x_fp_qstats(bp, txdata->parent_fp)->driver_xoff++;
7df2dc6b 3243 if (bnx2x_tx_avail(bp, txdata) >= MAX_DESC_PER_TX_PKT)
9f6c9258
DK
3244 netif_tx_wake_queue(txq);
3245 }
6383c0b3 3246 txdata->tx_pkt++;
9f6c9258
DK
3247
3248 return NETDEV_TX_OK;
3249}
f85582f8 3250
6383c0b3
AE
3251/**
3252 * bnx2x_setup_tc - routine to configure net_device for multi tc
3253 *
3254 * @netdev: net device to configure
3255 * @tc: number of traffic classes to enable
3256 *
3257 * callback connected to the ndo_setup_tc function pointer
3258 */
3259int bnx2x_setup_tc(struct net_device *dev, u8 num_tc)
3260{
3261 int cos, prio, count, offset;
3262 struct bnx2x *bp = netdev_priv(dev);
3263
3264 /* setup tc must be called under rtnl lock */
3265 ASSERT_RTNL();
3266
3267 /* no traffic classes requested. aborting */
3268 if (!num_tc) {
3269 netdev_reset_tc(dev);
3270 return 0;
3271 }
3272
3273 /* requested to support too many traffic classes */
3274 if (num_tc > bp->max_cos) {
51c1a580
MS
3275 BNX2X_ERR("support for too many traffic classes requested: %d. max supported is %d\n",
3276 num_tc, bp->max_cos);
6383c0b3
AE
3277 return -EINVAL;
3278 }
3279
3280 /* declare amount of supported traffic classes */
3281 if (netdev_set_num_tc(dev, num_tc)) {
51c1a580 3282 BNX2X_ERR("failed to declare %d traffic classes\n", num_tc);
6383c0b3
AE
3283 return -EINVAL;
3284 }
3285
3286 /* configure priority to traffic class mapping */
3287 for (prio = 0; prio < BNX2X_MAX_PRIORITY; prio++) {
3288 netdev_set_prio_tc_map(dev, prio, bp->prio_to_cos[prio]);
51c1a580
MS
3289 DP(BNX2X_MSG_SP | NETIF_MSG_IFUP,
3290 "mapping priority %d to tc %d\n",
6383c0b3
AE
3291 prio, bp->prio_to_cos[prio]);
3292 }
3293
3294
3295 /* Use this configuration to diffrentiate tc0 from other COSes
3296 This can be used for ets or pfc, and save the effort of setting
3297 up a multio class queue disc or negotiating DCBX with a switch
3298 netdev_set_prio_tc_map(dev, 0, 0);
94f05b0f 3299 DP(BNX2X_MSG_SP, "mapping priority %d to tc %d\n", 0, 0);
6383c0b3
AE
3300 for (prio = 1; prio < 16; prio++) {
3301 netdev_set_prio_tc_map(dev, prio, 1);
94f05b0f 3302 DP(BNX2X_MSG_SP, "mapping priority %d to tc %d\n", prio, 1);
6383c0b3
AE
3303 } */
3304
3305 /* configure traffic class to transmission queue mapping */
3306 for (cos = 0; cos < bp->max_cos; cos++) {
3307 count = BNX2X_NUM_ETH_QUEUES(bp);
65565884 3308 offset = cos * BNX2X_NUM_NON_CNIC_QUEUES(bp);
6383c0b3 3309 netdev_set_tc_queue(dev, cos, count, offset);
51c1a580
MS
3310 DP(BNX2X_MSG_SP | NETIF_MSG_IFUP,
3311 "mapping tc %d to offset %d count %d\n",
6383c0b3
AE
3312 cos, offset, count);
3313 }
3314
3315 return 0;
3316}
3317
9f6c9258
DK
3318/* called with rtnl_lock */
3319int bnx2x_change_mac_addr(struct net_device *dev, void *p)
3320{
3321 struct sockaddr *addr = p;
3322 struct bnx2x *bp = netdev_priv(dev);
619c5cb6 3323 int rc = 0;
9f6c9258 3324
51c1a580
MS
3325 if (!bnx2x_is_valid_ether_addr(bp, addr->sa_data)) {
3326 BNX2X_ERR("Requested MAC address is not valid\n");
614c76df 3327 return -EINVAL;
51c1a580 3328 }
614c76df
DK
3329
3330#ifdef BCM_CNIC
a3348722
BW
3331 if ((IS_MF_STORAGE_SD(bp) || IS_MF_FCOE_AFEX(bp)) &&
3332 !is_zero_ether_addr(addr->sa_data)) {
51c1a580 3333 BNX2X_ERR("Can't configure non-zero address on iSCSI or FCoE functions in MF-SD mode\n");
9f6c9258 3334 return -EINVAL;
51c1a580 3335 }
614c76df 3336#endif
9f6c9258 3337
619c5cb6
VZ
3338 if (netif_running(dev)) {
3339 rc = bnx2x_set_eth_mac(bp, false);
3340 if (rc)
3341 return rc;
3342 }
3343
7ce5d222 3344 dev->addr_assign_type &= ~NET_ADDR_RANDOM;
9f6c9258 3345 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
619c5cb6 3346
523224a3 3347 if (netif_running(dev))
619c5cb6 3348 rc = bnx2x_set_eth_mac(bp, true);
9f6c9258 3349
619c5cb6 3350 return rc;
9f6c9258
DK
3351}
3352
b3b83c3f
DK
3353static void bnx2x_free_fp_mem_at(struct bnx2x *bp, int fp_index)
3354{
3355 union host_hc_status_block *sb = &bnx2x_fp(bp, fp_index, status_blk);
3356 struct bnx2x_fastpath *fp = &bp->fp[fp_index];
6383c0b3 3357 u8 cos;
b3b83c3f
DK
3358
3359 /* Common */
3360#ifdef BCM_CNIC
3361 if (IS_FCOE_IDX(fp_index)) {
3362 memset(sb, 0, sizeof(union host_hc_status_block));
3363 fp->status_blk_mapping = 0;
3364
3365 } else {
3366#endif
3367 /* status blocks */
619c5cb6 3368 if (!CHIP_IS_E1x(bp))
b3b83c3f
DK
3369 BNX2X_PCI_FREE(sb->e2_sb,
3370 bnx2x_fp(bp, fp_index,
3371 status_blk_mapping),
3372 sizeof(struct host_hc_status_block_e2));
3373 else
3374 BNX2X_PCI_FREE(sb->e1x_sb,
3375 bnx2x_fp(bp, fp_index,
3376 status_blk_mapping),
3377 sizeof(struct host_hc_status_block_e1x));
3378#ifdef BCM_CNIC
3379 }
3380#endif
3381 /* Rx */
3382 if (!skip_rx_queue(bp, fp_index)) {
3383 bnx2x_free_rx_bds(fp);
3384
3385 /* fastpath rx rings: rx_buf rx_desc rx_comp */
3386 BNX2X_FREE(bnx2x_fp(bp, fp_index, rx_buf_ring));
3387 BNX2X_PCI_FREE(bnx2x_fp(bp, fp_index, rx_desc_ring),
3388 bnx2x_fp(bp, fp_index, rx_desc_mapping),
3389 sizeof(struct eth_rx_bd) * NUM_RX_BD);
3390
3391 BNX2X_PCI_FREE(bnx2x_fp(bp, fp_index, rx_comp_ring),
3392 bnx2x_fp(bp, fp_index, rx_comp_mapping),
3393 sizeof(struct eth_fast_path_rx_cqe) *
3394 NUM_RCQ_BD);
3395
3396 /* SGE ring */
3397 BNX2X_FREE(bnx2x_fp(bp, fp_index, rx_page_ring));
3398 BNX2X_PCI_FREE(bnx2x_fp(bp, fp_index, rx_sge_ring),
3399 bnx2x_fp(bp, fp_index, rx_sge_mapping),
3400 BCM_PAGE_SIZE * NUM_RX_SGE_PAGES);
3401 }
3402
3403 /* Tx */
3404 if (!skip_tx_queue(bp, fp_index)) {
3405 /* fastpath tx rings: tx_buf tx_desc */
6383c0b3 3406 for_each_cos_in_tx_queue(fp, cos) {
65565884 3407 struct bnx2x_fp_txdata *txdata = fp->txdata_ptr[cos];
6383c0b3 3408
51c1a580 3409 DP(NETIF_MSG_IFDOWN,
94f05b0f 3410 "freeing tx memory of fp %d cos %d cid %d\n",
6383c0b3
AE
3411 fp_index, cos, txdata->cid);
3412
3413 BNX2X_FREE(txdata->tx_buf_ring);
3414 BNX2X_PCI_FREE(txdata->tx_desc_ring,
3415 txdata->tx_desc_mapping,
3416 sizeof(union eth_tx_bd_types) * NUM_TX_BD);
3417 }
b3b83c3f
DK
3418 }
3419 /* end of fastpath */
3420}
3421
3422void bnx2x_free_fp_mem(struct bnx2x *bp)
3423{
3424 int i;
3425 for_each_queue(bp, i)
3426 bnx2x_free_fp_mem_at(bp, i);
3427}
3428
1191cb83 3429static void set_sb_shortcuts(struct bnx2x *bp, int index)
b3b83c3f
DK
3430{
3431 union host_hc_status_block status_blk = bnx2x_fp(bp, index, status_blk);
619c5cb6 3432 if (!CHIP_IS_E1x(bp)) {
b3b83c3f
DK
3433 bnx2x_fp(bp, index, sb_index_values) =
3434 (__le16 *)status_blk.e2_sb->sb.index_values;
3435 bnx2x_fp(bp, index, sb_running_index) =
3436 (__le16 *)status_blk.e2_sb->sb.running_index;
3437 } else {
3438 bnx2x_fp(bp, index, sb_index_values) =
3439 (__le16 *)status_blk.e1x_sb->sb.index_values;
3440 bnx2x_fp(bp, index, sb_running_index) =
3441 (__le16 *)status_blk.e1x_sb->sb.running_index;
3442 }
3443}
3444
1191cb83
ED
3445/* Returns the number of actually allocated BDs */
3446static int bnx2x_alloc_rx_bds(struct bnx2x_fastpath *fp,
3447 int rx_ring_size)
3448{
3449 struct bnx2x *bp = fp->bp;
3450 u16 ring_prod, cqe_ring_prod;
3451 int i, failure_cnt = 0;
3452
3453 fp->rx_comp_cons = 0;
3454 cqe_ring_prod = ring_prod = 0;
3455
3456 /* This routine is called only during fo init so
3457 * fp->eth_q_stats.rx_skb_alloc_failed = 0
3458 */
3459 for (i = 0; i < rx_ring_size; i++) {
3460 if (bnx2x_alloc_rx_data(bp, fp, ring_prod) < 0) {
3461 failure_cnt++;
3462 continue;
3463 }
3464 ring_prod = NEXT_RX_IDX(ring_prod);
3465 cqe_ring_prod = NEXT_RCQ_IDX(cqe_ring_prod);
3466 WARN_ON(ring_prod <= (i - failure_cnt));
3467 }
3468
3469 if (failure_cnt)
3470 BNX2X_ERR("was only able to allocate %d rx skbs on queue[%d]\n",
3471 i - failure_cnt, fp->index);
3472
3473 fp->rx_bd_prod = ring_prod;
3474 /* Limit the CQE producer by the CQE ring size */
3475 fp->rx_comp_prod = min_t(u16, NUM_RCQ_RINGS*RCQ_DESC_CNT,
3476 cqe_ring_prod);
3477 fp->rx_pkt = fp->rx_calls = 0;
3478
15192a8c 3479 bnx2x_fp_stats(bp, fp)->eth_q_stats.rx_skb_alloc_failed += failure_cnt;
1191cb83
ED
3480
3481 return i - failure_cnt;
3482}
3483
3484static void bnx2x_set_next_page_rx_cq(struct bnx2x_fastpath *fp)
3485{
3486 int i;
3487
3488 for (i = 1; i <= NUM_RCQ_RINGS; i++) {
3489 struct eth_rx_cqe_next_page *nextpg;
3490
3491 nextpg = (struct eth_rx_cqe_next_page *)
3492 &fp->rx_comp_ring[RCQ_DESC_CNT * i - 1];
3493 nextpg->addr_hi =
3494 cpu_to_le32(U64_HI(fp->rx_comp_mapping +
3495 BCM_PAGE_SIZE*(i % NUM_RCQ_RINGS)));
3496 nextpg->addr_lo =
3497 cpu_to_le32(U64_LO(fp->rx_comp_mapping +
3498 BCM_PAGE_SIZE*(i % NUM_RCQ_RINGS)));
3499 }
3500}
3501
b3b83c3f
DK
3502static int bnx2x_alloc_fp_mem_at(struct bnx2x *bp, int index)
3503{
3504 union host_hc_status_block *sb;
3505 struct bnx2x_fastpath *fp = &bp->fp[index];
3506 int ring_size = 0;
6383c0b3 3507 u8 cos;
c2188952 3508 int rx_ring_size = 0;
b3b83c3f 3509
614c76df 3510#ifdef BCM_CNIC
a3348722
BW
3511 if (!bp->rx_ring_size &&
3512 (IS_MF_STORAGE_SD(bp) || IS_MF_FCOE_AFEX(bp))) {
614c76df
DK
3513 rx_ring_size = MIN_RX_SIZE_NONTPA;
3514 bp->rx_ring_size = rx_ring_size;
3515 } else
3516#endif
c2188952 3517 if (!bp->rx_ring_size) {
d760fc37
MY
3518 u32 cfg = SHMEM_RD(bp,
3519 dev_info.port_hw_config[BP_PORT(bp)].default_cfg);
b3b83c3f 3520
c2188952
VZ
3521 rx_ring_size = MAX_RX_AVAIL/BNX2X_NUM_RX_QUEUES(bp);
3522
d760fc37
MY
3523 /* Dercease ring size for 1G functions */
3524 if ((cfg & PORT_HW_CFG_NET_SERDES_IF_MASK) ==
3525 PORT_HW_CFG_NET_SERDES_IF_SGMII)
3526 rx_ring_size /= 10;
3527
c2188952
VZ
3528 /* allocate at least number of buffers required by FW */
3529 rx_ring_size = max_t(int, bp->disable_tpa ? MIN_RX_SIZE_NONTPA :
3530 MIN_RX_SIZE_TPA, rx_ring_size);
3531
3532 bp->rx_ring_size = rx_ring_size;
614c76df 3533 } else /* if rx_ring_size specified - use it */
c2188952 3534 rx_ring_size = bp->rx_ring_size;
b3b83c3f 3535
b3b83c3f
DK
3536 /* Common */
3537 sb = &bnx2x_fp(bp, index, status_blk);
3538#ifdef BCM_CNIC
3539 if (!IS_FCOE_IDX(index)) {
3540#endif
3541 /* status blocks */
619c5cb6 3542 if (!CHIP_IS_E1x(bp))
b3b83c3f
DK
3543 BNX2X_PCI_ALLOC(sb->e2_sb,
3544 &bnx2x_fp(bp, index, status_blk_mapping),
3545 sizeof(struct host_hc_status_block_e2));
3546 else
3547 BNX2X_PCI_ALLOC(sb->e1x_sb,
3548 &bnx2x_fp(bp, index, status_blk_mapping),
3549 sizeof(struct host_hc_status_block_e1x));
3550#ifdef BCM_CNIC
3551 }
3552#endif
8eef2af1
DK
3553
3554 /* FCoE Queue uses Default SB and doesn't ACK the SB, thus no need to
3555 * set shortcuts for it.
3556 */
3557 if (!IS_FCOE_IDX(index))
3558 set_sb_shortcuts(bp, index);
b3b83c3f
DK
3559
3560 /* Tx */
3561 if (!skip_tx_queue(bp, index)) {
3562 /* fastpath tx rings: tx_buf tx_desc */
6383c0b3 3563 for_each_cos_in_tx_queue(fp, cos) {
65565884 3564 struct bnx2x_fp_txdata *txdata = fp->txdata_ptr[cos];
6383c0b3 3565
51c1a580
MS
3566 DP(NETIF_MSG_IFUP,
3567 "allocating tx memory of fp %d cos %d\n",
6383c0b3
AE
3568 index, cos);
3569
3570 BNX2X_ALLOC(txdata->tx_buf_ring,
b3b83c3f 3571 sizeof(struct sw_tx_bd) * NUM_TX_BD);
6383c0b3
AE
3572 BNX2X_PCI_ALLOC(txdata->tx_desc_ring,
3573 &txdata->tx_desc_mapping,
b3b83c3f 3574 sizeof(union eth_tx_bd_types) * NUM_TX_BD);
6383c0b3 3575 }
b3b83c3f
DK
3576 }
3577
3578 /* Rx */
3579 if (!skip_rx_queue(bp, index)) {
3580 /* fastpath rx rings: rx_buf rx_desc rx_comp */
3581 BNX2X_ALLOC(bnx2x_fp(bp, index, rx_buf_ring),
3582 sizeof(struct sw_rx_bd) * NUM_RX_BD);
3583 BNX2X_PCI_ALLOC(bnx2x_fp(bp, index, rx_desc_ring),
3584 &bnx2x_fp(bp, index, rx_desc_mapping),
3585 sizeof(struct eth_rx_bd) * NUM_RX_BD);
3586
3587 BNX2X_PCI_ALLOC(bnx2x_fp(bp, index, rx_comp_ring),
3588 &bnx2x_fp(bp, index, rx_comp_mapping),
3589 sizeof(struct eth_fast_path_rx_cqe) *
3590 NUM_RCQ_BD);
3591
3592 /* SGE ring */
3593 BNX2X_ALLOC(bnx2x_fp(bp, index, rx_page_ring),
3594 sizeof(struct sw_rx_page) * NUM_RX_SGE);
3595 BNX2X_PCI_ALLOC(bnx2x_fp(bp, index, rx_sge_ring),
3596 &bnx2x_fp(bp, index, rx_sge_mapping),
3597 BCM_PAGE_SIZE * NUM_RX_SGE_PAGES);
3598 /* RX BD ring */
3599 bnx2x_set_next_page_rx_bd(fp);
3600
3601 /* CQ ring */
3602 bnx2x_set_next_page_rx_cq(fp);
3603
3604 /* BDs */
3605 ring_size = bnx2x_alloc_rx_bds(fp, rx_ring_size);
3606 if (ring_size < rx_ring_size)
3607 goto alloc_mem_err;
3608 }
3609
3610 return 0;
3611
3612/* handles low memory cases */
3613alloc_mem_err:
3614 BNX2X_ERR("Unable to allocate full memory for queue %d (size %d)\n",
3615 index, ring_size);
3616 /* FW will drop all packets if queue is not big enough,
3617 * In these cases we disable the queue
6383c0b3 3618 * Min size is different for OOO, TPA and non-TPA queues
b3b83c3f
DK
3619 */
3620 if (ring_size < (fp->disable_tpa ?
eb722d7a 3621 MIN_RX_SIZE_NONTPA : MIN_RX_SIZE_TPA)) {
b3b83c3f
DK
3622 /* release memory allocated for this queue */
3623 bnx2x_free_fp_mem_at(bp, index);
3624 return -ENOMEM;
3625 }
3626 return 0;
3627}
3628
3629int bnx2x_alloc_fp_mem(struct bnx2x *bp)
3630{
3631 int i;
3632
3633 /**
3634 * 1. Allocate FP for leading - fatal if error
3635 * 2. {CNIC} Allocate FCoE FP - fatal if error
6383c0b3
AE
3636 * 3. {CNIC} Allocate OOO + FWD - disable OOO if error
3637 * 4. Allocate RSS - fix number of queues if error
b3b83c3f
DK
3638 */
3639
3640 /* leading */
3641 if (bnx2x_alloc_fp_mem_at(bp, 0))
3642 return -ENOMEM;
6383c0b3 3643
b3b83c3f 3644#ifdef BCM_CNIC
8eef2af1
DK
3645 if (!NO_FCOE(bp))
3646 /* FCoE */
65565884 3647 if (bnx2x_alloc_fp_mem_at(bp, FCOE_IDX(bp)))
8eef2af1
DK
3648 /* we will fail load process instead of mark
3649 * NO_FCOE_FLAG
3650 */
3651 return -ENOMEM;
b3b83c3f 3652#endif
6383c0b3 3653
b3b83c3f
DK
3654 /* RSS */
3655 for_each_nondefault_eth_queue(bp, i)
3656 if (bnx2x_alloc_fp_mem_at(bp, i))
3657 break;
3658
3659 /* handle memory failures */
3660 if (i != BNX2X_NUM_ETH_QUEUES(bp)) {
3661 int delta = BNX2X_NUM_ETH_QUEUES(bp) - i;
3662
3663 WARN_ON(delta < 0);
3664#ifdef BCM_CNIC
3665 /**
3666 * move non eth FPs next to last eth FP
3667 * must be done in that order
3668 * FCOE_IDX < FWD_IDX < OOO_IDX
3669 */
3670
6383c0b3 3671 /* move FCoE fp even NO_FCOE_FLAG is on */
65565884 3672 bnx2x_move_fp(bp, FCOE_IDX(bp), FCOE_IDX(bp) - delta);
b3b83c3f
DK
3673#endif
3674 bp->num_queues -= delta;
3675 BNX2X_ERR("Adjusted num of queues from %d to %d\n",
3676 bp->num_queues + delta, bp->num_queues);
3677 }
3678
3679 return 0;
3680}
d6214d7a 3681
523224a3
DK
3682void bnx2x_free_mem_bp(struct bnx2x *bp)
3683{
15192a8c 3684 kfree(bp->fp->tpa_info);
523224a3 3685 kfree(bp->fp);
15192a8c
BW
3686 kfree(bp->sp_objs);
3687 kfree(bp->fp_stats);
65565884 3688 kfree(bp->bnx2x_txq);
523224a3
DK
3689 kfree(bp->msix_table);
3690 kfree(bp->ilt);
3691}
3692
3693int __devinit bnx2x_alloc_mem_bp(struct bnx2x *bp)
3694{
3695 struct bnx2x_fastpath *fp;
3696 struct msix_entry *tbl;
3697 struct bnx2x_ilt *ilt;
6383c0b3 3698 int msix_table_size = 0;
15192a8c
BW
3699 int fp_array_size;
3700 int i;
6383c0b3
AE
3701
3702 /*
3703 * The biggest MSI-X table we might need is as a maximum number of fast
3704 * path IGU SBs plus default SB (for PF).
3705 */
3706 msix_table_size = bp->igu_sb_cnt + 1;
523224a3 3707
6383c0b3 3708 /* fp array: RSS plus CNIC related L2 queues */
15192a8c
BW
3709 fp_array_size = BNX2X_MAX_RSS_COUNT(bp) + NON_ETH_CONTEXT_USE;
3710 BNX2X_DEV_INFO("fp_array_size %d", fp_array_size);
3711
3712 fp = kcalloc(fp_array_size, sizeof(*fp), GFP_KERNEL);
523224a3
DK
3713 if (!fp)
3714 goto alloc_err;
15192a8c
BW
3715 for (i = 0; i < fp_array_size; i++) {
3716 fp[i].tpa_info =
3717 kcalloc(ETH_MAX_AGGREGATION_QUEUES_E1H_E2,
3718 sizeof(struct bnx2x_agg_info), GFP_KERNEL);
3719 if (!(fp[i].tpa_info))
3720 goto alloc_err;
3721 }
3722
523224a3
DK
3723 bp->fp = fp;
3724
15192a8c
BW
3725 /* allocate sp objs */
3726 bp->sp_objs = kcalloc(fp_array_size, sizeof(struct bnx2x_sp_objs),
3727 GFP_KERNEL);
3728 if (!bp->sp_objs)
3729 goto alloc_err;
3730
3731 /* allocate fp_stats */
3732 bp->fp_stats = kcalloc(fp_array_size, sizeof(struct bnx2x_fp_stats),
3733 GFP_KERNEL);
3734 if (!bp->fp_stats)
3735 goto alloc_err;
3736
65565884
MS
3737 /* Allocate memory for the transmission queues array */
3738 bp->bnx2x_txq_size = BNX2X_MAX_RSS_COUNT(bp) * BNX2X_MULTI_TX_COS;
3739#ifdef BCM_CNIC
3740 bp->bnx2x_txq_size++;
3741#endif
3742 bp->bnx2x_txq = kcalloc(bp->bnx2x_txq_size,
3743 sizeof(struct bnx2x_fp_txdata), GFP_KERNEL);
3744 if (!bp->bnx2x_txq)
3745 goto alloc_err;
3746
523224a3 3747 /* msix table */
01e23742 3748 tbl = kcalloc(msix_table_size, sizeof(*tbl), GFP_KERNEL);
523224a3
DK
3749 if (!tbl)
3750 goto alloc_err;
3751 bp->msix_table = tbl;
3752
3753 /* ilt */
3754 ilt = kzalloc(sizeof(*ilt), GFP_KERNEL);
3755 if (!ilt)
3756 goto alloc_err;
3757 bp->ilt = ilt;
3758
3759 return 0;
3760alloc_err:
3761 bnx2x_free_mem_bp(bp);
3762 return -ENOMEM;
3763
3764}
3765
a9fccec7 3766int bnx2x_reload_if_running(struct net_device *dev)
66371c44
MM
3767{
3768 struct bnx2x *bp = netdev_priv(dev);
3769
3770 if (unlikely(!netif_running(dev)))
3771 return 0;
3772
3773 bnx2x_nic_unload(bp, UNLOAD_NORMAL);
3774 return bnx2x_nic_load(bp, LOAD_NORMAL);
3775}
3776
1ac9e428
YR
3777int bnx2x_get_cur_phy_idx(struct bnx2x *bp)
3778{
3779 u32 sel_phy_idx = 0;
3780 if (bp->link_params.num_phys <= 1)
3781 return INT_PHY;
3782
3783 if (bp->link_vars.link_up) {
3784 sel_phy_idx = EXT_PHY1;
3785 /* In case link is SERDES, check if the EXT_PHY2 is the one */
3786 if ((bp->link_vars.link_status & LINK_STATUS_SERDES_LINK) &&
3787 (bp->link_params.phy[EXT_PHY2].supported & SUPPORTED_FIBRE))
3788 sel_phy_idx = EXT_PHY2;
3789 } else {
3790
3791 switch (bnx2x_phy_selection(&bp->link_params)) {
3792 case PORT_HW_CFG_PHY_SELECTION_HARDWARE_DEFAULT:
3793 case PORT_HW_CFG_PHY_SELECTION_FIRST_PHY:
3794 case PORT_HW_CFG_PHY_SELECTION_FIRST_PHY_PRIORITY:
3795 sel_phy_idx = EXT_PHY1;
3796 break;
3797 case PORT_HW_CFG_PHY_SELECTION_SECOND_PHY:
3798 case PORT_HW_CFG_PHY_SELECTION_SECOND_PHY_PRIORITY:
3799 sel_phy_idx = EXT_PHY2;
3800 break;
3801 }
3802 }
3803
3804 return sel_phy_idx;
3805
3806}
3807int bnx2x_get_link_cfg_idx(struct bnx2x *bp)
3808{
3809 u32 sel_phy_idx = bnx2x_get_cur_phy_idx(bp);
3810 /*
3811 * The selected actived PHY is always after swapping (in case PHY
3812 * swapping is enabled). So when swapping is enabled, we need to reverse
3813 * the configuration
3814 */
3815
3816 if (bp->link_params.multi_phy_config &
3817 PORT_HW_CFG_PHY_SWAPPED_ENABLED) {
3818 if (sel_phy_idx == EXT_PHY1)
3819 sel_phy_idx = EXT_PHY2;
3820 else if (sel_phy_idx == EXT_PHY2)
3821 sel_phy_idx = EXT_PHY1;
3822 }
3823 return LINK_CONFIG_IDX(sel_phy_idx);
3824}
3825
bf61ee14
VZ
3826#if defined(NETDEV_FCOE_WWNN) && defined(BCM_CNIC)
3827int bnx2x_fcoe_get_wwn(struct net_device *dev, u64 *wwn, int type)
3828{
3829 struct bnx2x *bp = netdev_priv(dev);
3830 struct cnic_eth_dev *cp = &bp->cnic_eth_dev;
3831
3832 switch (type) {
3833 case NETDEV_FCOE_WWNN:
3834 *wwn = HILO_U64(cp->fcoe_wwn_node_name_hi,
3835 cp->fcoe_wwn_node_name_lo);
3836 break;
3837 case NETDEV_FCOE_WWPN:
3838 *wwn = HILO_U64(cp->fcoe_wwn_port_name_hi,
3839 cp->fcoe_wwn_port_name_lo);
3840 break;
3841 default:
51c1a580 3842 BNX2X_ERR("Wrong WWN type requested - %d\n", type);
bf61ee14
VZ
3843 return -EINVAL;
3844 }
3845
3846 return 0;
3847}
3848#endif
3849
9f6c9258
DK
3850/* called with rtnl_lock */
3851int bnx2x_change_mtu(struct net_device *dev, int new_mtu)
3852{
3853 struct bnx2x *bp = netdev_priv(dev);
9f6c9258
DK
3854
3855 if (bp->recovery_state != BNX2X_RECOVERY_DONE) {
51c1a580 3856 BNX2X_ERR("Can't perform change MTU during parity recovery\n");
9f6c9258
DK
3857 return -EAGAIN;
3858 }
3859
3860 if ((new_mtu > ETH_MAX_JUMBO_PACKET_SIZE) ||
51c1a580
MS
3861 ((new_mtu + ETH_HLEN) < ETH_MIN_PACKET_SIZE)) {
3862 BNX2X_ERR("Can't support requested MTU size\n");
9f6c9258 3863 return -EINVAL;
51c1a580 3864 }
9f6c9258
DK
3865
3866 /* This does not race with packet allocation
3867 * because the actual alloc size is
3868 * only updated as part of load
3869 */
3870 dev->mtu = new_mtu;
3871
66371c44
MM
3872 return bnx2x_reload_if_running(dev);
3873}
3874
c8f44aff 3875netdev_features_t bnx2x_fix_features(struct net_device *dev,
621b4d66 3876 netdev_features_t features)
66371c44
MM
3877{
3878 struct bnx2x *bp = netdev_priv(dev);
3879
3880 /* TPA requires Rx CSUM offloading */
621b4d66 3881 if (!(features & NETIF_F_RXCSUM) || bp->disable_tpa) {
66371c44 3882 features &= ~NETIF_F_LRO;
621b4d66
DK
3883 features &= ~NETIF_F_GRO;
3884 }
66371c44
MM
3885
3886 return features;
3887}
3888
c8f44aff 3889int bnx2x_set_features(struct net_device *dev, netdev_features_t features)
66371c44
MM
3890{
3891 struct bnx2x *bp = netdev_priv(dev);
3892 u32 flags = bp->flags;
538dd2e3 3893 bool bnx2x_reload = false;
66371c44
MM
3894
3895 if (features & NETIF_F_LRO)
3896 flags |= TPA_ENABLE_FLAG;
3897 else
3898 flags &= ~TPA_ENABLE_FLAG;
3899
621b4d66
DK
3900 if (features & NETIF_F_GRO)
3901 flags |= GRO_ENABLE_FLAG;
3902 else
3903 flags &= ~GRO_ENABLE_FLAG;
3904
538dd2e3
MB
3905 if (features & NETIF_F_LOOPBACK) {
3906 if (bp->link_params.loopback_mode != LOOPBACK_BMAC) {
3907 bp->link_params.loopback_mode = LOOPBACK_BMAC;
3908 bnx2x_reload = true;
3909 }
3910 } else {
3911 if (bp->link_params.loopback_mode != LOOPBACK_NONE) {
3912 bp->link_params.loopback_mode = LOOPBACK_NONE;
3913 bnx2x_reload = true;
3914 }
3915 }
3916
66371c44
MM
3917 if (flags ^ bp->flags) {
3918 bp->flags = flags;
538dd2e3
MB
3919 bnx2x_reload = true;
3920 }
66371c44 3921
538dd2e3 3922 if (bnx2x_reload) {
66371c44
MM
3923 if (bp->recovery_state == BNX2X_RECOVERY_DONE)
3924 return bnx2x_reload_if_running(dev);
3925 /* else: bnx2x_nic_load() will be called at end of recovery */
9f6c9258
DK
3926 }
3927
66371c44 3928 return 0;
9f6c9258
DK
3929}
3930
3931void bnx2x_tx_timeout(struct net_device *dev)
3932{
3933 struct bnx2x *bp = netdev_priv(dev);
3934
3935#ifdef BNX2X_STOP_ON_ERROR
3936 if (!bp->panic)
3937 bnx2x_panic();
3938#endif
7be08a72
AE
3939
3940 smp_mb__before_clear_bit();
3941 set_bit(BNX2X_SP_RTNL_TX_TIMEOUT, &bp->sp_rtnl_state);
3942 smp_mb__after_clear_bit();
3943
9f6c9258 3944 /* This allows the netif to be shutdown gracefully before resetting */
7be08a72 3945 schedule_delayed_work(&bp->sp_rtnl_task, 0);
9f6c9258
DK
3946}
3947
9f6c9258
DK
3948int bnx2x_suspend(struct pci_dev *pdev, pm_message_t state)
3949{
3950 struct net_device *dev = pci_get_drvdata(pdev);
3951 struct bnx2x *bp;
3952
3953 if (!dev) {
3954 dev_err(&pdev->dev, "BAD net device from bnx2x_init_one\n");
3955 return -ENODEV;
3956 }
3957 bp = netdev_priv(dev);
3958
3959 rtnl_lock();
3960
3961 pci_save_state(pdev);
3962
3963 if (!netif_running(dev)) {
3964 rtnl_unlock();
3965 return 0;
3966 }
3967
3968 netif_device_detach(dev);
3969
3970 bnx2x_nic_unload(bp, UNLOAD_CLOSE);
3971
3972 bnx2x_set_power_state(bp, pci_choose_state(pdev, state));
3973
3974 rtnl_unlock();
3975
3976 return 0;
3977}
3978
3979int bnx2x_resume(struct pci_dev *pdev)
3980{
3981 struct net_device *dev = pci_get_drvdata(pdev);
3982 struct bnx2x *bp;
3983 int rc;
3984
3985 if (!dev) {
3986 dev_err(&pdev->dev, "BAD net device from bnx2x_init_one\n");
3987 return -ENODEV;
3988 }
3989 bp = netdev_priv(dev);
3990
3991 if (bp->recovery_state != BNX2X_RECOVERY_DONE) {
51c1a580 3992 BNX2X_ERR("Handling parity error recovery. Try again later\n");
9f6c9258
DK
3993 return -EAGAIN;
3994 }
3995
3996 rtnl_lock();
3997
3998 pci_restore_state(pdev);
3999
4000 if (!netif_running(dev)) {
4001 rtnl_unlock();
4002 return 0;
4003 }
4004
4005 bnx2x_set_power_state(bp, PCI_D0);
4006 netif_device_attach(dev);
4007
4008 rc = bnx2x_nic_load(bp, LOAD_OPEN);
4009
4010 rtnl_unlock();
4011
4012 return rc;
4013}
619c5cb6
VZ
4014
4015
4016void bnx2x_set_ctx_validation(struct bnx2x *bp, struct eth_context *cxt,
4017 u32 cid)
4018{
4019 /* ustorm cxt validation */
4020 cxt->ustorm_ag_context.cdu_usage =
4021 CDU_RSRVD_VALUE_TYPE_A(HW_CID(bp, cid),
4022 CDU_REGION_NUMBER_UCM_AG, ETH_CONNECTION_TYPE);
4023 /* xcontext validation */
4024 cxt->xstorm_ag_context.cdu_reserved =
4025 CDU_RSRVD_VALUE_TYPE_A(HW_CID(bp, cid),
4026 CDU_REGION_NUMBER_XCM_AG, ETH_CONNECTION_TYPE);
4027}
4028
1191cb83
ED
4029static void storm_memset_hc_timeout(struct bnx2x *bp, u8 port,
4030 u8 fw_sb_id, u8 sb_index,
4031 u8 ticks)
619c5cb6
VZ
4032{
4033
4034 u32 addr = BAR_CSTRORM_INTMEM +
4035 CSTORM_STATUS_BLOCK_DATA_TIMEOUT_OFFSET(fw_sb_id, sb_index);
4036 REG_WR8(bp, addr, ticks);
51c1a580
MS
4037 DP(NETIF_MSG_IFUP,
4038 "port %x fw_sb_id %d sb_index %d ticks %d\n",
4039 port, fw_sb_id, sb_index, ticks);
619c5cb6
VZ
4040}
4041
1191cb83
ED
4042static void storm_memset_hc_disable(struct bnx2x *bp, u8 port,
4043 u16 fw_sb_id, u8 sb_index,
4044 u8 disable)
619c5cb6
VZ
4045{
4046 u32 enable_flag = disable ? 0 : (1 << HC_INDEX_DATA_HC_ENABLED_SHIFT);
4047 u32 addr = BAR_CSTRORM_INTMEM +
4048 CSTORM_STATUS_BLOCK_DATA_FLAGS_OFFSET(fw_sb_id, sb_index);
4049 u16 flags = REG_RD16(bp, addr);
4050 /* clear and set */
4051 flags &= ~HC_INDEX_DATA_HC_ENABLED;
4052 flags |= enable_flag;
4053 REG_WR16(bp, addr, flags);
51c1a580
MS
4054 DP(NETIF_MSG_IFUP,
4055 "port %x fw_sb_id %d sb_index %d disable %d\n",
4056 port, fw_sb_id, sb_index, disable);
619c5cb6
VZ
4057}
4058
4059void bnx2x_update_coalesce_sb_index(struct bnx2x *bp, u8 fw_sb_id,
4060 u8 sb_index, u8 disable, u16 usec)
4061{
4062 int port = BP_PORT(bp);
4063 u8 ticks = usec / BNX2X_BTR;
4064
4065 storm_memset_hc_timeout(bp, port, fw_sb_id, sb_index, ticks);
4066
4067 disable = disable ? 1 : (usec ? 0 : 1);
4068 storm_memset_hc_disable(bp, port, fw_sb_id, sb_index, disable);
4069}
This page took 0.571107 seconds and 5 git commands to generate.