blob: 57619dd4a92b0ef08ff0b990ae26db355bb732f3 [file] [log] [blame]
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001/* bnx2x_cmn.c: Broadcom Everest network driver.
2 *
Yuval Mintz247fa822013-01-14 05:11:50 +00003 * Copyright (c) 2007-2013 Broadcom Corporation
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00004 *
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
Joe Perchesf1deab52011-08-14 12:16:21 +000018#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
19
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +000020#include <linux/etherdevice.h>
Hao Zheng9bcc0892010-10-20 13:56:11 +000021#include <linux/if_vlan.h>
Alexey Dobriyana6b7a402011-06-06 10:43:46 +000022#include <linux/interrupt.h>
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +000023#include <linux/ip.h>
Yuval Mintz99690852013-01-14 05:11:49 +000024#include <net/tcp.h>
Dmitry Kravkovf2e08992010-10-06 03:28:26 +000025#include <net/ipv6.h>
Stephen Rothwell7f3e01f2010-07-28 22:20:34 -070026#include <net/ip6_checksum.h>
Paul Gortmakerc0cba592011-05-22 11:02:08 +000027#include <linux/prefetch.h>
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +000028#include "bnx2x_cmn.h"
Dmitry Kravkov523224a2010-10-06 03:23:26 +000029#include "bnx2x_init.h"
Vladislav Zolotarov042181f2011-06-14 01:33:39 +000030#include "bnx2x_sp.h"
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +000031
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +000032/**
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +000033 * bnx2x_move_fp - move content of the fastpath structure.
34 *
35 * @bp: driver handle
36 * @from: source FP index
37 * @to: destination FP index
38 *
39 * Makes sure the contents of the bp->fp[to].napi is kept
Ariel Elior72754082011-11-13 04:34:31 +000040 * intact. This is done by first copying the napi struct from
41 * the target to the source, and then mem copying the entire
Merav Sicron65565882012-06-19 07:48:26 +000042 * source onto the target. Update txdata pointers and related
43 * content.
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +000044 */
45static inline void bnx2x_move_fp(struct bnx2x *bp, int from, int to)
46{
47 struct bnx2x_fastpath *from_fp = &bp->fp[from];
48 struct bnx2x_fastpath *to_fp = &bp->fp[to];
Barak Witkowski15192a82012-06-19 07:48:28 +000049 struct bnx2x_sp_objs *from_sp_objs = &bp->sp_objs[from];
50 struct bnx2x_sp_objs *to_sp_objs = &bp->sp_objs[to];
51 struct bnx2x_fp_stats *from_fp_stats = &bp->fp_stats[from];
52 struct bnx2x_fp_stats *to_fp_stats = &bp->fp_stats[to];
Merav Sicron65565882012-06-19 07:48:26 +000053 int old_max_eth_txqs, new_max_eth_txqs;
54 int old_txdata_index = 0, new_txdata_index = 0;
Ariel Elior72754082011-11-13 04:34:31 +000055
56 /* Copy the NAPI object as it has been already initialized */
57 from_fp->napi = to_fp->napi;
58
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +000059 /* Move bnx2x_fastpath contents */
60 memcpy(to_fp, from_fp, sizeof(*to_fp));
61 to_fp->index = to;
Merav Sicron65565882012-06-19 07:48:26 +000062
Barak Witkowski15192a82012-06-19 07:48:28 +000063 /* move sp_objs contents as well, as their indices match fp ones */
64 memcpy(to_sp_objs, from_sp_objs, sizeof(*to_sp_objs));
65
66 /* move fp_stats contents as well, as their indices match fp ones */
67 memcpy(to_fp_stats, from_fp_stats, sizeof(*to_fp_stats));
68
Merav Sicron65565882012-06-19 07:48:26 +000069 /* Update txdata pointers in fp and move txdata content accordingly:
70 * Each fp consumes 'max_cos' txdata structures, so the index should be
71 * decremented by max_cos x delta.
72 */
73
74 old_max_eth_txqs = BNX2X_NUM_ETH_QUEUES(bp) * (bp)->max_cos;
75 new_max_eth_txqs = (BNX2X_NUM_ETH_QUEUES(bp) - from + to) *
76 (bp)->max_cos;
77 if (from == FCOE_IDX(bp)) {
78 old_txdata_index = old_max_eth_txqs + FCOE_TXQ_IDX_OFFSET;
79 new_txdata_index = new_max_eth_txqs + FCOE_TXQ_IDX_OFFSET;
80 }
81
Yuval Mintz4864a162013-01-10 04:53:39 +000082 memcpy(&bp->bnx2x_txq[new_txdata_index],
83 &bp->bnx2x_txq[old_txdata_index],
Merav Sicron65565882012-06-19 07:48:26 +000084 sizeof(struct bnx2x_fp_txdata));
85 to_fp->txdata_ptr[0] = &bp->bnx2x_txq[new_txdata_index];
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +000086}
87
Ariel Elior8ca5e172013-01-01 05:22:34 +000088/**
89 * bnx2x_fill_fw_str - Fill buffer with FW version string.
90 *
91 * @bp: driver handle
92 * @buf: character buffer to fill with the fw name
93 * @buf_len: length of the above buffer
94 *
95 */
96void bnx2x_fill_fw_str(struct bnx2x *bp, char *buf, size_t buf_len)
97{
98 if (IS_PF(bp)) {
99 u8 phy_fw_ver[PHY_FW_VER_LEN];
100
101 phy_fw_ver[0] = '\0';
102 bnx2x_get_ext_phy_fw_version(&bp->link_params,
103 phy_fw_ver, PHY_FW_VER_LEN);
104 strlcpy(buf, bp->fw_ver, buf_len);
105 snprintf(buf + strlen(bp->fw_ver), 32 - strlen(bp->fw_ver),
106 "bc %d.%d.%d%s%s",
107 (bp->common.bc_ver & 0xff0000) >> 16,
108 (bp->common.bc_ver & 0xff00) >> 8,
109 (bp->common.bc_ver & 0xff),
110 ((phy_fw_ver[0] != '\0') ? " phy " : ""), phy_fw_ver);
111 } else {
Ariel Elior64112802013-01-07 00:50:23 +0000112 bnx2x_vf_fill_fw_str(bp, buf, buf_len);
Ariel Elior8ca5e172013-01-01 05:22:34 +0000113 }
114}
115
David S. Miller4b87f922013-01-15 15:05:59 -0500116/**
Yuval Mintz4864a162013-01-10 04:53:39 +0000117 * bnx2x_shrink_eth_fp - guarantees fastpath structures stay intact
118 *
119 * @bp: driver handle
120 * @delta: number of eth queues which were not allocated
121 */
122static void bnx2x_shrink_eth_fp(struct bnx2x *bp, int delta)
123{
124 int i, cos, old_eth_num = BNX2X_NUM_ETH_QUEUES(bp);
125
126 /* Queue pointer cannot be re-set on an fp-basis, as moving pointer
127 * backward along the array could cause memory to be overriden
128 */
129 for (cos = 1; cos < bp->max_cos; cos++) {
130 for (i = 0; i < old_eth_num - delta; i++) {
131 struct bnx2x_fastpath *fp = &bp->fp[i];
132 int new_idx = cos * (old_eth_num - delta) + i;
133
134 memcpy(&bp->bnx2x_txq[new_idx], fp->txdata_ptr[cos],
135 sizeof(struct bnx2x_fp_txdata));
136 fp->txdata_ptr[cos] = &bp->bnx2x_txq[new_idx];
137 }
138 }
139}
140
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300141int load_count[2][3] = { {0} }; /* per-path: 0-common, 1-port0, 2-port1 */
142
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000143/* free skb in the packet ring at pos idx
144 * return idx of last bd freed
145 */
Ariel Elior6383c0b2011-07-14 08:31:57 +0000146static u16 bnx2x_free_tx_pkt(struct bnx2x *bp, struct bnx2x_fp_txdata *txdata,
Tom Herbert2df1a702011-11-28 16:33:37 +0000147 u16 idx, unsigned int *pkts_compl,
148 unsigned int *bytes_compl)
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000149{
Ariel Elior6383c0b2011-07-14 08:31:57 +0000150 struct sw_tx_bd *tx_buf = &txdata->tx_buf_ring[idx];
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000151 struct eth_tx_start_bd *tx_start_bd;
152 struct eth_tx_bd *tx_data_bd;
153 struct sk_buff *skb = tx_buf->skb;
154 u16 bd_idx = TX_BD(tx_buf->first_bd), new_cons;
155 int nbd;
156
157 /* prefetch skb end pointer to speedup dev_kfree_skb() */
158 prefetch(&skb->end);
159
Merav Sicron51c1a582012-03-18 10:33:38 +0000160 DP(NETIF_MSG_TX_DONE, "fp[%d]: pkt_idx %d buff @(%p)->skb %p\n",
Ariel Elior6383c0b2011-07-14 08:31:57 +0000161 txdata->txq_index, idx, tx_buf, skb);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000162
163 /* unmap first bd */
Ariel Elior6383c0b2011-07-14 08:31:57 +0000164 tx_start_bd = &txdata->tx_desc_ring[bd_idx].start_bd;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000165 dma_unmap_single(&bp->pdev->dev, BD_UNMAP_ADDR(tx_start_bd),
Dmitry Kravkov4bca60f2010-10-06 03:30:27 +0000166 BD_UNMAP_LEN(tx_start_bd), DMA_TO_DEVICE);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000167
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300168
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000169 nbd = le16_to_cpu(tx_start_bd->nbd) - 1;
170#ifdef BNX2X_STOP_ON_ERROR
171 if ((nbd - 1) > (MAX_SKB_FRAGS + 2)) {
172 BNX2X_ERR("BAD nbd!\n");
173 bnx2x_panic();
174 }
175#endif
176 new_cons = nbd + tx_buf->first_bd;
177
178 /* Get the next bd */
179 bd_idx = TX_BD(NEXT_TX_IDX(bd_idx));
180
181 /* Skip a parse bd... */
182 --nbd;
183 bd_idx = TX_BD(NEXT_TX_IDX(bd_idx));
184
185 /* ...and the TSO split header bd since they have no mapping */
186 if (tx_buf->flags & BNX2X_TSO_SPLIT_BD) {
187 --nbd;
188 bd_idx = TX_BD(NEXT_TX_IDX(bd_idx));
189 }
190
191 /* now free frags */
192 while (nbd > 0) {
193
Ariel Elior6383c0b2011-07-14 08:31:57 +0000194 tx_data_bd = &txdata->tx_desc_ring[bd_idx].reg_bd;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000195 dma_unmap_page(&bp->pdev->dev, BD_UNMAP_ADDR(tx_data_bd),
196 BD_UNMAP_LEN(tx_data_bd), DMA_TO_DEVICE);
197 if (--nbd)
198 bd_idx = TX_BD(NEXT_TX_IDX(bd_idx));
199 }
200
201 /* release skb */
202 WARN_ON(!skb);
Yuval Mintzd8290ae2012-03-18 10:33:37 +0000203 if (likely(skb)) {
Tom Herbert2df1a702011-11-28 16:33:37 +0000204 (*pkts_compl)++;
205 (*bytes_compl) += skb->len;
206 }
Yuval Mintzd8290ae2012-03-18 10:33:37 +0000207
Vladislav Zolotarov40955532011-05-22 10:06:58 +0000208 dev_kfree_skb_any(skb);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000209 tx_buf->first_bd = 0;
210 tx_buf->skb = NULL;
211
212 return new_cons;
213}
214
Ariel Elior6383c0b2011-07-14 08:31:57 +0000215int bnx2x_tx_int(struct bnx2x *bp, struct bnx2x_fp_txdata *txdata)
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000216{
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000217 struct netdev_queue *txq;
Ariel Elior6383c0b2011-07-14 08:31:57 +0000218 u16 hw_cons, sw_cons, bd_cons = txdata->tx_bd_cons;
Tom Herbert2df1a702011-11-28 16:33:37 +0000219 unsigned int pkts_compl = 0, bytes_compl = 0;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000220
221#ifdef BNX2X_STOP_ON_ERROR
222 if (unlikely(bp->panic))
223 return -1;
224#endif
225
Ariel Elior6383c0b2011-07-14 08:31:57 +0000226 txq = netdev_get_tx_queue(bp->dev, txdata->txq_index);
227 hw_cons = le16_to_cpu(*txdata->tx_cons_sb);
228 sw_cons = txdata->tx_pkt_cons;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000229
230 while (sw_cons != hw_cons) {
231 u16 pkt_cons;
232
233 pkt_cons = TX_BD(sw_cons);
234
Merav Sicron51c1a582012-03-18 10:33:38 +0000235 DP(NETIF_MSG_TX_DONE,
236 "queue[%d]: hw_cons %u sw_cons %u pkt_cons %u\n",
Ariel Elior6383c0b2011-07-14 08:31:57 +0000237 txdata->txq_index, hw_cons, sw_cons, pkt_cons);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000238
Tom Herbert2df1a702011-11-28 16:33:37 +0000239 bd_cons = bnx2x_free_tx_pkt(bp, txdata, pkt_cons,
Yuval Mintz2de67432013-01-23 03:21:43 +0000240 &pkts_compl, &bytes_compl);
Tom Herbert2df1a702011-11-28 16:33:37 +0000241
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000242 sw_cons++;
243 }
244
Tom Herbert2df1a702011-11-28 16:33:37 +0000245 netdev_tx_completed_queue(txq, pkts_compl, bytes_compl);
246
Ariel Elior6383c0b2011-07-14 08:31:57 +0000247 txdata->tx_pkt_cons = sw_cons;
248 txdata->tx_bd_cons = bd_cons;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000249
250 /* Need to make the tx_bd_cons update visible to start_xmit()
251 * before checking for netif_tx_queue_stopped(). Without the
252 * memory barrier, there is a small possibility that
253 * start_xmit() will miss it and cause the queue to be stopped
254 * forever.
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300255 * On the other hand we need an rmb() here to ensure the proper
256 * ordering of bit testing in the following
257 * netif_tx_queue_stopped(txq) call.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000258 */
259 smp_mb();
260
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000261 if (unlikely(netif_tx_queue_stopped(txq))) {
262 /* Taking tx_lock() is needed to prevent reenabling the queue
263 * while it's empty. This could have happen if rx_action() gets
264 * suspended in bnx2x_tx_int() after the condition before
265 * netif_tx_wake_queue(), while tx_action (bnx2x_start_xmit()):
266 *
267 * stops the queue->sees fresh tx_bd_cons->releases the queue->
268 * sends some packets consuming the whole queue again->
269 * stops the queue
270 */
271
272 __netif_tx_lock(txq, smp_processor_id());
273
274 if ((netif_tx_queue_stopped(txq)) &&
275 (bp->state == BNX2X_STATE_OPEN) &&
Dmitry Kravkov7df2dc62012-06-25 22:32:50 +0000276 (bnx2x_tx_avail(bp, txdata) >= MAX_DESC_PER_TX_PKT))
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000277 netif_tx_wake_queue(txq);
278
279 __netif_tx_unlock(txq);
280 }
281 return 0;
282}
283
284static inline void bnx2x_update_last_max_sge(struct bnx2x_fastpath *fp,
285 u16 idx)
286{
287 u16 last_max = fp->last_max_sge;
288
289 if (SUB_S16(idx, last_max) > 0)
290 fp->last_max_sge = idx;
291}
292
Dmitry Kravkov621b4d62012-02-20 09:59:08 +0000293static inline void bnx2x_update_sge_prod(struct bnx2x_fastpath *fp,
294 u16 sge_len,
295 struct eth_end_agg_rx_cqe *cqe)
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000296{
297 struct bnx2x *bp = fp->bp;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000298 u16 last_max, last_elem, first_elem;
299 u16 delta = 0;
300 u16 i;
301
302 if (!sge_len)
303 return;
304
305 /* First mark all used pages */
306 for (i = 0; i < sge_len; i++)
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300307 BIT_VEC64_CLEAR_BIT(fp->sge_mask,
Dmitry Kravkov621b4d62012-02-20 09:59:08 +0000308 RX_SGE(le16_to_cpu(cqe->sgl_or_raw_data.sgl[i])));
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000309
310 DP(NETIF_MSG_RX_STATUS, "fp_cqe->sgl[%d] = %d\n",
Dmitry Kravkov621b4d62012-02-20 09:59:08 +0000311 sge_len - 1, le16_to_cpu(cqe->sgl_or_raw_data.sgl[sge_len - 1]));
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000312
313 /* Here we assume that the last SGE index is the biggest */
314 prefetch((void *)(fp->sge_mask));
Dmitry Kravkov523224a2010-10-06 03:23:26 +0000315 bnx2x_update_last_max_sge(fp,
Dmitry Kravkov621b4d62012-02-20 09:59:08 +0000316 le16_to_cpu(cqe->sgl_or_raw_data.sgl[sge_len - 1]));
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000317
318 last_max = RX_SGE(fp->last_max_sge);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300319 last_elem = last_max >> BIT_VEC64_ELEM_SHIFT;
320 first_elem = RX_SGE(fp->rx_sge_prod) >> BIT_VEC64_ELEM_SHIFT;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000321
322 /* If ring is not full */
323 if (last_elem + 1 != first_elem)
324 last_elem++;
325
326 /* Now update the prod */
327 for (i = first_elem; i != last_elem; i = NEXT_SGE_MASK_ELEM(i)) {
328 if (likely(fp->sge_mask[i]))
329 break;
330
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300331 fp->sge_mask[i] = BIT_VEC64_ELEM_ONE_MASK;
332 delta += BIT_VEC64_ELEM_SZ;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000333 }
334
335 if (delta > 0) {
336 fp->rx_sge_prod += delta;
337 /* clear page-end entries */
338 bnx2x_clear_sge_mask_next_elems(fp);
339 }
340
341 DP(NETIF_MSG_RX_STATUS,
342 "fp->last_max_sge = %d fp->rx_sge_prod = %d\n",
343 fp->last_max_sge, fp->rx_sge_prod);
344}
345
Yuval Mintz2de67432013-01-23 03:21:43 +0000346/* Get Toeplitz hash value in the skb using the value from the
Eric Dumazete52fcb22011-11-14 06:05:34 +0000347 * CQE (calculated by HW).
348 */
349static u32 bnx2x_get_rxhash(const struct bnx2x *bp,
Eric Dumazeta334b5f2012-07-09 06:02:24 +0000350 const struct eth_fast_path_rx_cqe *cqe,
351 bool *l4_rxhash)
Eric Dumazete52fcb22011-11-14 06:05:34 +0000352{
Yuval Mintz2de67432013-01-23 03:21:43 +0000353 /* Get Toeplitz hash from CQE */
Eric Dumazete52fcb22011-11-14 06:05:34 +0000354 if ((bp->dev->features & NETIF_F_RXHASH) &&
Eric Dumazeta334b5f2012-07-09 06:02:24 +0000355 (cqe->status_flags & ETH_FAST_PATH_RX_CQE_RSS_HASH_FLG)) {
356 enum eth_rss_hash_type htype;
357
358 htype = cqe->status_flags & ETH_FAST_PATH_RX_CQE_RSS_HASH_TYPE;
359 *l4_rxhash = (htype == TCP_IPV4_HASH_TYPE) ||
360 (htype == TCP_IPV6_HASH_TYPE);
Eric Dumazete52fcb22011-11-14 06:05:34 +0000361 return le32_to_cpu(cqe->rss_hash_result);
Eric Dumazeta334b5f2012-07-09 06:02:24 +0000362 }
363 *l4_rxhash = false;
Eric Dumazete52fcb22011-11-14 06:05:34 +0000364 return 0;
365}
366
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000367static void bnx2x_tpa_start(struct bnx2x_fastpath *fp, u16 queue,
Eric Dumazete52fcb22011-11-14 06:05:34 +0000368 u16 cons, u16 prod,
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300369 struct eth_fast_path_rx_cqe *cqe)
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000370{
371 struct bnx2x *bp = fp->bp;
372 struct sw_rx_bd *cons_rx_buf = &fp->rx_buf_ring[cons];
373 struct sw_rx_bd *prod_rx_buf = &fp->rx_buf_ring[prod];
374 struct eth_rx_bd *prod_bd = &fp->rx_desc_ring[prod];
375 dma_addr_t mapping;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300376 struct bnx2x_agg_info *tpa_info = &fp->tpa_info[queue];
377 struct sw_rx_bd *first_buf = &tpa_info->first_buf;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000378
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300379 /* print error if current state != stop */
380 if (tpa_info->tpa_state != BNX2X_TPA_STOP)
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000381 BNX2X_ERR("start of bin not in stop [%d]\n", queue);
382
Eric Dumazete52fcb22011-11-14 06:05:34 +0000383 /* Try to map an empty data buffer from the aggregation info */
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300384 mapping = dma_map_single(&bp->pdev->dev,
Eric Dumazete52fcb22011-11-14 06:05:34 +0000385 first_buf->data + NET_SKB_PAD,
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300386 fp->rx_buf_size, DMA_FROM_DEVICE);
387 /*
388 * ...if it fails - move the skb from the consumer to the producer
389 * and set the current aggregation state as ERROR to drop it
390 * when TPA_STOP arrives.
391 */
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000392
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300393 if (unlikely(dma_mapping_error(&bp->pdev->dev, mapping))) {
394 /* Move the BD from the consumer to the producer */
Eric Dumazete52fcb22011-11-14 06:05:34 +0000395 bnx2x_reuse_rx_data(fp, cons, prod);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300396 tpa_info->tpa_state = BNX2X_TPA_ERROR;
397 return;
398 }
399
Eric Dumazete52fcb22011-11-14 06:05:34 +0000400 /* move empty data from pool to prod */
401 prod_rx_buf->data = first_buf->data;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300402 dma_unmap_addr_set(prod_rx_buf, mapping, mapping);
Eric Dumazete52fcb22011-11-14 06:05:34 +0000403 /* point prod_bd to new data */
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000404 prod_bd->addr_hi = cpu_to_le32(U64_HI(mapping));
405 prod_bd->addr_lo = cpu_to_le32(U64_LO(mapping));
406
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300407 /* move partial skb from cons to pool (don't unmap yet) */
408 *first_buf = *cons_rx_buf;
409
410 /* mark bin state as START */
411 tpa_info->parsing_flags =
412 le16_to_cpu(cqe->pars_flags.flags);
413 tpa_info->vlan_tag = le16_to_cpu(cqe->vlan_tag);
414 tpa_info->tpa_state = BNX2X_TPA_START;
415 tpa_info->len_on_bd = le16_to_cpu(cqe->len_on_bd);
416 tpa_info->placement_offset = cqe->placement_offset;
Eric Dumazeta334b5f2012-07-09 06:02:24 +0000417 tpa_info->rxhash = bnx2x_get_rxhash(bp, cqe, &tpa_info->l4_rxhash);
Dmitry Kravkov621b4d62012-02-20 09:59:08 +0000418 if (fp->mode == TPA_MODE_GRO) {
419 u16 gro_size = le16_to_cpu(cqe->pkt_len_or_gro_seg_len);
Yuval Mintz924d75a2013-01-23 03:21:44 +0000420 tpa_info->full_page = SGE_PAGES / gro_size * gro_size;
Dmitry Kravkov621b4d62012-02-20 09:59:08 +0000421 tpa_info->gro_size = gro_size;
422 }
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300423
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000424#ifdef BNX2X_STOP_ON_ERROR
425 fp->tpa_queue_used |= (1 << queue);
426#ifdef _ASM_GENERIC_INT_L64_H
427 DP(NETIF_MSG_RX_STATUS, "fp->tpa_queue_used = 0x%lx\n",
428#else
429 DP(NETIF_MSG_RX_STATUS, "fp->tpa_queue_used = 0x%llx\n",
430#endif
431 fp->tpa_queue_used);
432#endif
433}
434
Vladislav Zolotarove4e3c022011-02-28 03:37:10 +0000435/* Timestamp option length allowed for TPA aggregation:
436 *
437 * nop nop kind length echo val
438 */
439#define TPA_TSTAMP_OPT_LEN 12
440/**
Yuval Mintzcbf1de72013-01-17 03:26:21 +0000441 * bnx2x_set_gro_params - compute GRO values
Vladislav Zolotarove4e3c022011-02-28 03:37:10 +0000442 *
Yuval Mintzcbf1de72013-01-17 03:26:21 +0000443 * @skb: packet skb
Dmitry Kravkove8920672011-05-04 23:52:40 +0000444 * @parsing_flags: parsing flags from the START CQE
445 * @len_on_bd: total length of the first packet for the
446 * aggregation.
Yuval Mintzcbf1de72013-01-17 03:26:21 +0000447 * @pkt_len: length of all segments
Dmitry Kravkove8920672011-05-04 23:52:40 +0000448 *
449 * Approximate value of the MSS for this aggregation calculated using
450 * the first packet of it.
Yuval Mintz2de67432013-01-23 03:21:43 +0000451 * Compute number of aggregated segments, and gso_type.
Vladislav Zolotarove4e3c022011-02-28 03:37:10 +0000452 */
Yuval Mintzcbf1de72013-01-17 03:26:21 +0000453static void bnx2x_set_gro_params(struct sk_buff *skb, u16 parsing_flags,
454 u16 len_on_bd, unsigned int pkt_len)
Vladislav Zolotarove4e3c022011-02-28 03:37:10 +0000455{
Yuval Mintzcbf1de72013-01-17 03:26:21 +0000456 /* TPA aggregation won't have either IP options or TCP options
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300457 * other than timestamp or IPv6 extension headers.
Vladislav Zolotarove4e3c022011-02-28 03:37:10 +0000458 */
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300459 u16 hdrs_len = ETH_HLEN + sizeof(struct tcphdr);
460
461 if (GET_FLAG(parsing_flags, PARSING_FLAGS_OVER_ETHERNET_PROTOCOL) ==
Yuval Mintzcbf1de72013-01-17 03:26:21 +0000462 PRS_FLAG_OVERETH_IPV6) {
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300463 hdrs_len += sizeof(struct ipv6hdr);
Yuval Mintzcbf1de72013-01-17 03:26:21 +0000464 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV6;
465 } else {
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300466 hdrs_len += sizeof(struct iphdr);
Yuval Mintzcbf1de72013-01-17 03:26:21 +0000467 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV4;
468 }
Vladislav Zolotarove4e3c022011-02-28 03:37:10 +0000469
470 /* Check if there was a TCP timestamp, if there is it's will
471 * always be 12 bytes length: nop nop kind length echo val.
472 *
473 * Otherwise FW would close the aggregation.
474 */
475 if (parsing_flags & PARSING_FLAGS_TIME_STAMP_EXIST_FLAG)
476 hdrs_len += TPA_TSTAMP_OPT_LEN;
477
Yuval Mintzcbf1de72013-01-17 03:26:21 +0000478 skb_shinfo(skb)->gso_size = len_on_bd - hdrs_len;
479
480 /* tcp_gro_complete() will copy NAPI_GRO_CB(skb)->count
481 * to skb_shinfo(skb)->gso_segs
482 */
483 NAPI_GRO_CB(skb)->count = DIV_ROUND_UP(pkt_len - hdrs_len,
484 skb_shinfo(skb)->gso_size);
Vladislav Zolotarove4e3c022011-02-28 03:37:10 +0000485}
486
Eric Dumazet1191cb82012-04-27 21:39:21 +0000487static int bnx2x_alloc_rx_sge(struct bnx2x *bp,
488 struct bnx2x_fastpath *fp, u16 index)
489{
490 struct page *page = alloc_pages(GFP_ATOMIC, PAGES_PER_SGE_SHIFT);
491 struct sw_rx_page *sw_buf = &fp->rx_page_ring[index];
492 struct eth_rx_sge *sge = &fp->rx_sge_ring[index];
493 dma_addr_t mapping;
494
495 if (unlikely(page == NULL)) {
496 BNX2X_ERR("Can't alloc sge\n");
497 return -ENOMEM;
498 }
499
500 mapping = dma_map_page(&bp->pdev->dev, page, 0,
Yuval Mintz924d75a2013-01-23 03:21:44 +0000501 SGE_PAGES, DMA_FROM_DEVICE);
Eric Dumazet1191cb82012-04-27 21:39:21 +0000502 if (unlikely(dma_mapping_error(&bp->pdev->dev, mapping))) {
503 __free_pages(page, PAGES_PER_SGE_SHIFT);
504 BNX2X_ERR("Can't map sge\n");
505 return -ENOMEM;
506 }
507
508 sw_buf->page = page;
509 dma_unmap_addr_set(sw_buf, mapping, mapping);
510
511 sge->addr_hi = cpu_to_le32(U64_HI(mapping));
512 sge->addr_lo = cpu_to_le32(U64_LO(mapping));
513
514 return 0;
515}
516
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000517static int bnx2x_fill_frag_skb(struct bnx2x *bp, struct bnx2x_fastpath *fp,
Dmitry Kravkov621b4d62012-02-20 09:59:08 +0000518 struct bnx2x_agg_info *tpa_info,
519 u16 pages,
520 struct sk_buff *skb,
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300521 struct eth_end_agg_rx_cqe *cqe,
522 u16 cqe_idx)
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000523{
524 struct sw_rx_page *rx_pg, old_rx_pg;
Dmitry Kravkov621b4d62012-02-20 09:59:08 +0000525 u32 i, frag_len, frag_size;
526 int err, j, frag_id = 0;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300527 u16 len_on_bd = tpa_info->len_on_bd;
Dmitry Kravkov621b4d62012-02-20 09:59:08 +0000528 u16 full_page = 0, gro_size = 0;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000529
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300530 frag_size = le16_to_cpu(cqe->pkt_len) - len_on_bd;
Dmitry Kravkov621b4d62012-02-20 09:59:08 +0000531
532 if (fp->mode == TPA_MODE_GRO) {
533 gro_size = tpa_info->gro_size;
534 full_page = tpa_info->full_page;
535 }
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000536
537 /* This is needed in order to enable forwarding support */
Yuval Mintzcbf1de72013-01-17 03:26:21 +0000538 if (frag_size)
539 bnx2x_set_gro_params(skb, tpa_info->parsing_flags, len_on_bd,
540 le16_to_cpu(cqe->pkt_len));
Dmitry Kravkov621b4d62012-02-20 09:59:08 +0000541
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000542#ifdef BNX2X_STOP_ON_ERROR
Yuval Mintz924d75a2013-01-23 03:21:44 +0000543 if (pages > min_t(u32, 8, MAX_SKB_FRAGS) * SGE_PAGES) {
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000544 BNX2X_ERR("SGL length is too long: %d. CQE index is %d\n",
545 pages, cqe_idx);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300546 BNX2X_ERR("cqe->pkt_len = %d\n", cqe->pkt_len);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000547 bnx2x_panic();
548 return -EINVAL;
549 }
550#endif
551
552 /* Run through the SGL and compose the fragmented skb */
553 for (i = 0, j = 0; i < pages; i += PAGES_PER_SGE, j++) {
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300554 u16 sge_idx = RX_SGE(le16_to_cpu(cqe->sgl_or_raw_data.sgl[j]));
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000555
556 /* FW gives the indices of the SGE as if the ring is an array
557 (meaning that "next" element will consume 2 indices) */
Dmitry Kravkov621b4d62012-02-20 09:59:08 +0000558 if (fp->mode == TPA_MODE_GRO)
559 frag_len = min_t(u32, frag_size, (u32)full_page);
560 else /* LRO */
Yuval Mintz924d75a2013-01-23 03:21:44 +0000561 frag_len = min_t(u32, frag_size, (u32)SGE_PAGES);
Dmitry Kravkov621b4d62012-02-20 09:59:08 +0000562
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000563 rx_pg = &fp->rx_page_ring[sge_idx];
564 old_rx_pg = *rx_pg;
565
566 /* If we fail to allocate a substitute page, we simply stop
567 where we are and drop the whole packet */
568 err = bnx2x_alloc_rx_sge(bp, fp, sge_idx);
569 if (unlikely(err)) {
Barak Witkowski15192a82012-06-19 07:48:28 +0000570 bnx2x_fp_qstats(bp, fp)->rx_skb_alloc_failed++;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000571 return err;
572 }
573
574 /* Unmap the page as we r going to pass it to the stack */
575 dma_unmap_page(&bp->pdev->dev,
576 dma_unmap_addr(&old_rx_pg, mapping),
Yuval Mintz924d75a2013-01-23 03:21:44 +0000577 SGE_PAGES, DMA_FROM_DEVICE);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000578 /* Add one frag and update the appropriate fields in the skb */
Dmitry Kravkov621b4d62012-02-20 09:59:08 +0000579 if (fp->mode == TPA_MODE_LRO)
580 skb_fill_page_desc(skb, j, old_rx_pg.page, 0, frag_len);
581 else { /* GRO */
582 int rem;
583 int offset = 0;
584 for (rem = frag_len; rem > 0; rem -= gro_size) {
585 int len = rem > gro_size ? gro_size : rem;
586 skb_fill_page_desc(skb, frag_id++,
587 old_rx_pg.page, offset, len);
588 if (offset)
589 get_page(old_rx_pg.page);
590 offset += len;
591 }
592 }
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000593
594 skb->data_len += frag_len;
Yuval Mintz924d75a2013-01-23 03:21:44 +0000595 skb->truesize += SGE_PAGES;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000596 skb->len += frag_len;
597
598 frag_size -= frag_len;
599 }
600
601 return 0;
602}
603
Eric Dumazetd46d1322012-12-10 12:16:06 +0000604static void bnx2x_frag_free(const struct bnx2x_fastpath *fp, void *data)
605{
606 if (fp->rx_frag_size)
607 put_page(virt_to_head_page(data));
608 else
609 kfree(data);
610}
611
612static void *bnx2x_frag_alloc(const struct bnx2x_fastpath *fp)
613{
614 if (fp->rx_frag_size)
615 return netdev_alloc_frag(fp->rx_frag_size);
616
617 return kmalloc(fp->rx_buf_size + NET_SKB_PAD, GFP_ATOMIC);
618}
619
Yuval Mintz99690852013-01-14 05:11:49 +0000620#ifdef CONFIG_INET
621static void bnx2x_gro_ip_csum(struct bnx2x *bp, struct sk_buff *skb)
622{
623 const struct iphdr *iph = ip_hdr(skb);
624 struct tcphdr *th;
625
626 skb_set_transport_header(skb, sizeof(struct iphdr));
627 th = tcp_hdr(skb);
628
629 th->check = ~tcp_v4_check(skb->len - skb_transport_offset(skb),
630 iph->saddr, iph->daddr, 0);
631}
632
633static void bnx2x_gro_ipv6_csum(struct bnx2x *bp, struct sk_buff *skb)
634{
635 struct ipv6hdr *iph = ipv6_hdr(skb);
636 struct tcphdr *th;
637
638 skb_set_transport_header(skb, sizeof(struct ipv6hdr));
639 th = tcp_hdr(skb);
640
641 th->check = ~tcp_v6_check(skb->len - skb_transport_offset(skb),
642 &iph->saddr, &iph->daddr, 0);
643}
644#endif
645
646static void bnx2x_gro_receive(struct bnx2x *bp, struct bnx2x_fastpath *fp,
647 struct sk_buff *skb)
648{
649#ifdef CONFIG_INET
Yuval Mintzcbf1de72013-01-17 03:26:21 +0000650 if (skb_shinfo(skb)->gso_size) {
Yuval Mintz99690852013-01-14 05:11:49 +0000651 skb_set_network_header(skb, 0);
652 switch (be16_to_cpu(skb->protocol)) {
653 case ETH_P_IP:
654 bnx2x_gro_ip_csum(bp, skb);
655 break;
656 case ETH_P_IPV6:
657 bnx2x_gro_ipv6_csum(bp, skb);
658 break;
659 default:
660 BNX2X_ERR("FW GRO supports only IPv4/IPv6, not 0x%04x\n",
661 be16_to_cpu(skb->protocol));
662 }
663 tcp_gro_complete(skb);
664 }
665#endif
666 napi_gro_receive(&fp->napi, skb);
667}
668
Eric Dumazet1191cb82012-04-27 21:39:21 +0000669static void bnx2x_tpa_stop(struct bnx2x *bp, struct bnx2x_fastpath *fp,
670 struct bnx2x_agg_info *tpa_info,
671 u16 pages,
672 struct eth_end_agg_rx_cqe *cqe,
673 u16 cqe_idx)
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000674{
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300675 struct sw_rx_bd *rx_buf = &tpa_info->first_buf;
Dmitry Kravkov621b4d62012-02-20 09:59:08 +0000676 u8 pad = tpa_info->placement_offset;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300677 u16 len = tpa_info->len_on_bd;
Eric Dumazete52fcb22011-11-14 06:05:34 +0000678 struct sk_buff *skb = NULL;
Dmitry Kravkov621b4d62012-02-20 09:59:08 +0000679 u8 *new_data, *data = rx_buf->data;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300680 u8 old_tpa_state = tpa_info->tpa_state;
681
682 tpa_info->tpa_state = BNX2X_TPA_STOP;
683
684 /* If we there was an error during the handling of the TPA_START -
685 * drop this aggregation.
686 */
687 if (old_tpa_state == BNX2X_TPA_ERROR)
688 goto drop;
689
Eric Dumazete52fcb22011-11-14 06:05:34 +0000690 /* Try to allocate the new data */
Eric Dumazetd46d1322012-12-10 12:16:06 +0000691 new_data = bnx2x_frag_alloc(fp);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000692 /* Unmap skb in the pool anyway, as we are going to change
693 pool entry status to BNX2X_TPA_STOP even if new skb allocation
694 fails. */
695 dma_unmap_single(&bp->pdev->dev, dma_unmap_addr(rx_buf, mapping),
Vladislav Zolotarova8c94b92011-02-06 11:21:02 -0800696 fp->rx_buf_size, DMA_FROM_DEVICE);
Eric Dumazete52fcb22011-11-14 06:05:34 +0000697 if (likely(new_data))
Eric Dumazetd46d1322012-12-10 12:16:06 +0000698 skb = build_skb(data, fp->rx_frag_size);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000699
Eric Dumazete52fcb22011-11-14 06:05:34 +0000700 if (likely(skb)) {
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000701#ifdef BNX2X_STOP_ON_ERROR
Vladislav Zolotarova8c94b92011-02-06 11:21:02 -0800702 if (pad + len > fp->rx_buf_size) {
Merav Sicron51c1a582012-03-18 10:33:38 +0000703 BNX2X_ERR("skb_put is about to fail... pad %d len %d rx_buf_size %d\n",
Vladislav Zolotarova8c94b92011-02-06 11:21:02 -0800704 pad, len, fp->rx_buf_size);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000705 bnx2x_panic();
706 return;
707 }
708#endif
709
Eric Dumazete52fcb22011-11-14 06:05:34 +0000710 skb_reserve(skb, pad + NET_SKB_PAD);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000711 skb_put(skb, len);
Eric Dumazete52fcb22011-11-14 06:05:34 +0000712 skb->rxhash = tpa_info->rxhash;
Eric Dumazeta334b5f2012-07-09 06:02:24 +0000713 skb->l4_rxhash = tpa_info->l4_rxhash;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000714
715 skb->protocol = eth_type_trans(skb, bp->dev);
716 skb->ip_summed = CHECKSUM_UNNECESSARY;
717
Dmitry Kravkov621b4d62012-02-20 09:59:08 +0000718 if (!bnx2x_fill_frag_skb(bp, fp, tpa_info, pages,
719 skb, cqe, cqe_idx)) {
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300720 if (tpa_info->parsing_flags & PARSING_FLAGS_VLAN)
721 __vlan_hwaccel_put_tag(skb, tpa_info->vlan_tag);
Yuval Mintz99690852013-01-14 05:11:49 +0000722 bnx2x_gro_receive(bp, fp, skb);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000723 } else {
Merav Sicron51c1a582012-03-18 10:33:38 +0000724 DP(NETIF_MSG_RX_STATUS,
725 "Failed to allocate new pages - dropping packet!\n");
Vladislav Zolotarov40955532011-05-22 10:06:58 +0000726 dev_kfree_skb_any(skb);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000727 }
728
729
Eric Dumazete52fcb22011-11-14 06:05:34 +0000730 /* put new data in bin */
731 rx_buf->data = new_data;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000732
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300733 return;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000734 }
Eric Dumazetd46d1322012-12-10 12:16:06 +0000735 bnx2x_frag_free(fp, new_data);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300736drop:
737 /* drop the packet and keep the buffer in the bin */
738 DP(NETIF_MSG_RX_STATUS,
739 "Failed to allocate or map a new skb - dropping packet!\n");
Barak Witkowski15192a82012-06-19 07:48:28 +0000740 bnx2x_fp_stats(bp, fp)->eth_q_stats.rx_skb_alloc_failed++;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000741}
742
Eric Dumazet1191cb82012-04-27 21:39:21 +0000743static int bnx2x_alloc_rx_data(struct bnx2x *bp,
744 struct bnx2x_fastpath *fp, u16 index)
745{
746 u8 *data;
747 struct sw_rx_bd *rx_buf = &fp->rx_buf_ring[index];
748 struct eth_rx_bd *rx_bd = &fp->rx_desc_ring[index];
749 dma_addr_t mapping;
750
Eric Dumazetd46d1322012-12-10 12:16:06 +0000751 data = bnx2x_frag_alloc(fp);
Eric Dumazet1191cb82012-04-27 21:39:21 +0000752 if (unlikely(data == NULL))
753 return -ENOMEM;
754
755 mapping = dma_map_single(&bp->pdev->dev, data + NET_SKB_PAD,
756 fp->rx_buf_size,
757 DMA_FROM_DEVICE);
758 if (unlikely(dma_mapping_error(&bp->pdev->dev, mapping))) {
Eric Dumazetd46d1322012-12-10 12:16:06 +0000759 bnx2x_frag_free(fp, data);
Eric Dumazet1191cb82012-04-27 21:39:21 +0000760 BNX2X_ERR("Can't map rx data\n");
761 return -ENOMEM;
762 }
763
764 rx_buf->data = data;
765 dma_unmap_addr_set(rx_buf, mapping, mapping);
766
767 rx_bd->addr_hi = cpu_to_le32(U64_HI(mapping));
768 rx_bd->addr_lo = cpu_to_le32(U64_LO(mapping));
769
770 return 0;
771}
772
Barak Witkowski15192a82012-06-19 07:48:28 +0000773static
774void bnx2x_csum_validate(struct sk_buff *skb, union eth_rx_cqe *cqe,
775 struct bnx2x_fastpath *fp,
776 struct bnx2x_eth_q_stats *qstats)
Eric Dumazetd6cb3e42012-06-12 23:50:04 +0000777{
Michal Schmidte4889212012-09-13 12:59:44 +0000778 /* Do nothing if no L4 csum validation was done.
779 * We do not check whether IP csum was validated. For IPv4 we assume
780 * that if the card got as far as validating the L4 csum, it also
781 * validated the IP csum. IPv6 has no IP csum.
782 */
Eric Dumazetd6cb3e42012-06-12 23:50:04 +0000783 if (cqe->fast_path_cqe.status_flags &
Michal Schmidte4889212012-09-13 12:59:44 +0000784 ETH_FAST_PATH_RX_CQE_L4_XSUM_NO_VALIDATION_FLG)
Eric Dumazetd6cb3e42012-06-12 23:50:04 +0000785 return;
786
Michal Schmidte4889212012-09-13 12:59:44 +0000787 /* If L4 validation was done, check if an error was found. */
Eric Dumazetd6cb3e42012-06-12 23:50:04 +0000788
789 if (cqe->fast_path_cqe.type_error_flags &
790 (ETH_FAST_PATH_RX_CQE_IP_BAD_XSUM_FLG |
791 ETH_FAST_PATH_RX_CQE_L4_BAD_XSUM_FLG))
Barak Witkowski15192a82012-06-19 07:48:28 +0000792 qstats->hw_csum_err++;
Eric Dumazetd6cb3e42012-06-12 23:50:04 +0000793 else
794 skb->ip_summed = CHECKSUM_UNNECESSARY;
795}
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000796
797int bnx2x_rx_int(struct bnx2x_fastpath *fp, int budget)
798{
799 struct bnx2x *bp = fp->bp;
800 u16 bd_cons, bd_prod, bd_prod_fw, comp_ring_cons;
801 u16 hw_comp_cons, sw_comp_cons, sw_comp_prod;
802 int rx_pkt = 0;
803
804#ifdef BNX2X_STOP_ON_ERROR
805 if (unlikely(bp->panic))
806 return 0;
807#endif
808
809 /* CQ "next element" is of the size of the regular element,
810 that's why it's ok here */
811 hw_comp_cons = le16_to_cpu(*fp->rx_cons_sb);
812 if ((hw_comp_cons & MAX_RCQ_DESC_CNT) == MAX_RCQ_DESC_CNT)
813 hw_comp_cons++;
814
815 bd_cons = fp->rx_bd_cons;
816 bd_prod = fp->rx_bd_prod;
817 bd_prod_fw = bd_prod;
818 sw_comp_cons = fp->rx_comp_cons;
819 sw_comp_prod = fp->rx_comp_prod;
820
821 /* Memory barrier necessary as speculative reads of the rx
822 * buffer can be ahead of the index in the status block
823 */
824 rmb();
825
826 DP(NETIF_MSG_RX_STATUS,
827 "queue[%d]: hw_comp_cons %u sw_comp_cons %u\n",
828 fp->index, hw_comp_cons, sw_comp_cons);
829
830 while (sw_comp_cons != hw_comp_cons) {
831 struct sw_rx_bd *rx_buf = NULL;
832 struct sk_buff *skb;
833 union eth_rx_cqe *cqe;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300834 struct eth_fast_path_rx_cqe *cqe_fp;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000835 u8 cqe_fp_flags;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300836 enum eth_rx_cqe_type cqe_fp_type;
Dmitry Kravkov621b4d62012-02-20 09:59:08 +0000837 u16 len, pad, queue;
Eric Dumazete52fcb22011-11-14 06:05:34 +0000838 u8 *data;
Eric Dumazeta334b5f2012-07-09 06:02:24 +0000839 bool l4_rxhash;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000840
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300841#ifdef BNX2X_STOP_ON_ERROR
842 if (unlikely(bp->panic))
843 return 0;
844#endif
845
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000846 comp_ring_cons = RCQ_BD(sw_comp_cons);
847 bd_prod = RX_BD(bd_prod);
848 bd_cons = RX_BD(bd_cons);
849
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000850 cqe = &fp->rx_comp_ring[comp_ring_cons];
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300851 cqe_fp = &cqe->fast_path_cqe;
852 cqe_fp_flags = cqe_fp->type_error_flags;
853 cqe_fp_type = cqe_fp_flags & ETH_FAST_PATH_RX_CQE_TYPE;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000854
Merav Sicron51c1a582012-03-18 10:33:38 +0000855 DP(NETIF_MSG_RX_STATUS,
856 "CQE type %x err %x status %x queue %x vlan %x len %u\n",
857 CQE_TYPE(cqe_fp_flags),
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300858 cqe_fp_flags, cqe_fp->status_flags,
859 le32_to_cpu(cqe_fp->rss_hash_result),
Dmitry Kravkov621b4d62012-02-20 09:59:08 +0000860 le16_to_cpu(cqe_fp->vlan_tag),
861 le16_to_cpu(cqe_fp->pkt_len_or_gro_seg_len));
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000862
863 /* is this a slowpath msg? */
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300864 if (unlikely(CQE_TYPE_SLOW(cqe_fp_type))) {
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000865 bnx2x_sp_event(fp, cqe);
866 goto next_cqe;
Eric Dumazete52fcb22011-11-14 06:05:34 +0000867 }
Dmitry Kravkov621b4d62012-02-20 09:59:08 +0000868
Eric Dumazete52fcb22011-11-14 06:05:34 +0000869 rx_buf = &fp->rx_buf_ring[bd_cons];
870 data = rx_buf->data;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000871
Eric Dumazete52fcb22011-11-14 06:05:34 +0000872 if (!CQE_TYPE_FAST(cqe_fp_type)) {
Dmitry Kravkov621b4d62012-02-20 09:59:08 +0000873 struct bnx2x_agg_info *tpa_info;
874 u16 frag_size, pages;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300875#ifdef BNX2X_STOP_ON_ERROR
Eric Dumazete52fcb22011-11-14 06:05:34 +0000876 /* sanity check */
877 if (fp->disable_tpa &&
878 (CQE_TYPE_START(cqe_fp_type) ||
879 CQE_TYPE_STOP(cqe_fp_type)))
Merav Sicron51c1a582012-03-18 10:33:38 +0000880 BNX2X_ERR("START/STOP packet while disable_tpa type %x\n",
Eric Dumazete52fcb22011-11-14 06:05:34 +0000881 CQE_TYPE(cqe_fp_type));
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300882#endif
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000883
Eric Dumazete52fcb22011-11-14 06:05:34 +0000884 if (CQE_TYPE_START(cqe_fp_type)) {
885 u16 queue = cqe_fp->queue_index;
886 DP(NETIF_MSG_RX_STATUS,
887 "calling tpa_start on queue %d\n",
888 queue);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000889
Eric Dumazete52fcb22011-11-14 06:05:34 +0000890 bnx2x_tpa_start(fp, queue,
891 bd_cons, bd_prod,
892 cqe_fp);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000893
Dmitry Kravkov621b4d62012-02-20 09:59:08 +0000894 goto next_rx;
895
896 }
897 queue = cqe->end_agg_cqe.queue_index;
898 tpa_info = &fp->tpa_info[queue];
899 DP(NETIF_MSG_RX_STATUS,
900 "calling tpa_stop on queue %d\n",
901 queue);
902
903 frag_size = le16_to_cpu(cqe->end_agg_cqe.pkt_len) -
904 tpa_info->len_on_bd;
905
906 if (fp->mode == TPA_MODE_GRO)
907 pages = (frag_size + tpa_info->full_page - 1) /
908 tpa_info->full_page;
909 else
910 pages = SGE_PAGE_ALIGN(frag_size) >>
911 SGE_PAGE_SHIFT;
912
913 bnx2x_tpa_stop(bp, fp, tpa_info, pages,
914 &cqe->end_agg_cqe, comp_ring_cons);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000915#ifdef BNX2X_STOP_ON_ERROR
Dmitry Kravkov621b4d62012-02-20 09:59:08 +0000916 if (bp->panic)
917 return 0;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000918#endif
919
Dmitry Kravkov621b4d62012-02-20 09:59:08 +0000920 bnx2x_update_sge_prod(fp, pages, &cqe->end_agg_cqe);
921 goto next_cqe;
Eric Dumazete52fcb22011-11-14 06:05:34 +0000922 }
923 /* non TPA */
Dmitry Kravkov621b4d62012-02-20 09:59:08 +0000924 len = le16_to_cpu(cqe_fp->pkt_len_or_gro_seg_len);
Eric Dumazete52fcb22011-11-14 06:05:34 +0000925 pad = cqe_fp->placement_offset;
926 dma_sync_single_for_cpu(&bp->pdev->dev,
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000927 dma_unmap_addr(rx_buf, mapping),
Eric Dumazete52fcb22011-11-14 06:05:34 +0000928 pad + RX_COPY_THRESH,
929 DMA_FROM_DEVICE);
930 pad += NET_SKB_PAD;
931 prefetch(data + pad); /* speedup eth_type_trans() */
932 /* is this an error packet? */
933 if (unlikely(cqe_fp_flags & ETH_RX_ERROR_FALGS)) {
Merav Sicron51c1a582012-03-18 10:33:38 +0000934 DP(NETIF_MSG_RX_ERR | NETIF_MSG_RX_STATUS,
Eric Dumazete52fcb22011-11-14 06:05:34 +0000935 "ERROR flags %x rx packet %u\n",
936 cqe_fp_flags, sw_comp_cons);
Barak Witkowski15192a82012-06-19 07:48:28 +0000937 bnx2x_fp_qstats(bp, fp)->rx_err_discard_pkt++;
Eric Dumazete52fcb22011-11-14 06:05:34 +0000938 goto reuse_rx;
939 }
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000940
Eric Dumazete52fcb22011-11-14 06:05:34 +0000941 /* Since we don't have a jumbo ring
942 * copy small packets if mtu > 1500
943 */
944 if ((bp->dev->mtu > ETH_MAX_PACKET_SIZE) &&
945 (len <= RX_COPY_THRESH)) {
946 skb = netdev_alloc_skb_ip_align(bp->dev, len);
947 if (skb == NULL) {
Merav Sicron51c1a582012-03-18 10:33:38 +0000948 DP(NETIF_MSG_RX_ERR | NETIF_MSG_RX_STATUS,
Eric Dumazete52fcb22011-11-14 06:05:34 +0000949 "ERROR packet dropped because of alloc failure\n");
Barak Witkowski15192a82012-06-19 07:48:28 +0000950 bnx2x_fp_qstats(bp, fp)->rx_skb_alloc_failed++;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000951 goto reuse_rx;
952 }
Eric Dumazete52fcb22011-11-14 06:05:34 +0000953 memcpy(skb->data, data + pad, len);
954 bnx2x_reuse_rx_data(fp, bd_cons, bd_prod);
955 } else {
956 if (likely(bnx2x_alloc_rx_data(bp, fp, bd_prod) == 0)) {
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000957 dma_unmap_single(&bp->pdev->dev,
Eric Dumazete52fcb22011-11-14 06:05:34 +0000958 dma_unmap_addr(rx_buf, mapping),
Vladislav Zolotarova8c94b92011-02-06 11:21:02 -0800959 fp->rx_buf_size,
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000960 DMA_FROM_DEVICE);
Eric Dumazetd46d1322012-12-10 12:16:06 +0000961 skb = build_skb(data, fp->rx_frag_size);
Eric Dumazete52fcb22011-11-14 06:05:34 +0000962 if (unlikely(!skb)) {
Eric Dumazetd46d1322012-12-10 12:16:06 +0000963 bnx2x_frag_free(fp, data);
Barak Witkowski15192a82012-06-19 07:48:28 +0000964 bnx2x_fp_qstats(bp, fp)->
965 rx_skb_alloc_failed++;
Eric Dumazete52fcb22011-11-14 06:05:34 +0000966 goto next_rx;
967 }
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000968 skb_reserve(skb, pad);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000969 } else {
Merav Sicron51c1a582012-03-18 10:33:38 +0000970 DP(NETIF_MSG_RX_ERR | NETIF_MSG_RX_STATUS,
971 "ERROR packet dropped because of alloc failure\n");
Barak Witkowski15192a82012-06-19 07:48:28 +0000972 bnx2x_fp_qstats(bp, fp)->rx_skb_alloc_failed++;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000973reuse_rx:
Eric Dumazete52fcb22011-11-14 06:05:34 +0000974 bnx2x_reuse_rx_data(fp, bd_cons, bd_prod);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000975 goto next_rx;
976 }
Dmitry Kravkov036d2df2011-12-12 23:40:53 +0000977 }
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000978
Dmitry Kravkov036d2df2011-12-12 23:40:53 +0000979 skb_put(skb, len);
980 skb->protocol = eth_type_trans(skb, bp->dev);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000981
Dmitry Kravkov036d2df2011-12-12 23:40:53 +0000982 /* Set Toeplitz hash for a none-LRO skb */
Eric Dumazeta334b5f2012-07-09 06:02:24 +0000983 skb->rxhash = bnx2x_get_rxhash(bp, cqe_fp, &l4_rxhash);
984 skb->l4_rxhash = l4_rxhash;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000985
Dmitry Kravkov036d2df2011-12-12 23:40:53 +0000986 skb_checksum_none_assert(skb);
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000987
Eric Dumazetd6cb3e42012-06-12 23:50:04 +0000988 if (bp->dev->features & NETIF_F_RXCSUM)
Barak Witkowski15192a82012-06-19 07:48:28 +0000989 bnx2x_csum_validate(skb, cqe, fp,
990 bnx2x_fp_qstats(bp, fp));
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000991
Dmitry Kravkovf233caf2011-11-13 04:34:22 +0000992 skb_record_rx_queue(skb, fp->rx_queue);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000993
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300994 if (le16_to_cpu(cqe_fp->pars_flags.flags) &
995 PARSING_FLAGS_VLAN)
Hao Zheng9bcc0892010-10-20 13:56:11 +0000996 __vlan_hwaccel_put_tag(skb,
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300997 le16_to_cpu(cqe_fp->vlan_tag));
Hao Zheng9bcc0892010-10-20 13:56:11 +0000998 napi_gro_receive(&fp->napi, skb);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000999
1000
1001next_rx:
Eric Dumazete52fcb22011-11-14 06:05:34 +00001002 rx_buf->data = NULL;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001003
1004 bd_cons = NEXT_RX_IDX(bd_cons);
1005 bd_prod = NEXT_RX_IDX(bd_prod);
1006 bd_prod_fw = NEXT_RX_IDX(bd_prod_fw);
1007 rx_pkt++;
1008next_cqe:
1009 sw_comp_prod = NEXT_RCQ_IDX(sw_comp_prod);
1010 sw_comp_cons = NEXT_RCQ_IDX(sw_comp_cons);
1011
1012 if (rx_pkt == budget)
1013 break;
1014 } /* while */
1015
1016 fp->rx_bd_cons = bd_cons;
1017 fp->rx_bd_prod = bd_prod_fw;
1018 fp->rx_comp_cons = sw_comp_cons;
1019 fp->rx_comp_prod = sw_comp_prod;
1020
1021 /* Update producers */
1022 bnx2x_update_rx_prod(bp, fp, bd_prod_fw, sw_comp_prod,
1023 fp->rx_sge_prod);
1024
1025 fp->rx_pkt += rx_pkt;
1026 fp->rx_calls++;
1027
1028 return rx_pkt;
1029}
1030
1031static irqreturn_t bnx2x_msix_fp_int(int irq, void *fp_cookie)
1032{
1033 struct bnx2x_fastpath *fp = fp_cookie;
1034 struct bnx2x *bp = fp->bp;
Ariel Elior6383c0b2011-07-14 08:31:57 +00001035 u8 cos;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001036
Merav Sicron51c1a582012-03-18 10:33:38 +00001037 DP(NETIF_MSG_INTR,
1038 "got an MSI-X interrupt on IDX:SB [fp %d fw_sd %d igusb %d]\n",
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001039 fp->index, fp->fw_sb_id, fp->igu_sb_id);
1040 bnx2x_ack_sb(bp, fp->igu_sb_id, USTORM_ID, 0, IGU_INT_DISABLE, 0);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001041
1042#ifdef BNX2X_STOP_ON_ERROR
1043 if (unlikely(bp->panic))
1044 return IRQ_HANDLED;
1045#endif
1046
1047 /* Handle Rx and Tx according to MSI-X vector */
1048 prefetch(fp->rx_cons_sb);
Ariel Elior6383c0b2011-07-14 08:31:57 +00001049
1050 for_each_cos_in_tx_queue(fp, cos)
Merav Sicron65565882012-06-19 07:48:26 +00001051 prefetch(fp->txdata_ptr[cos]->tx_cons_sb);
Ariel Elior6383c0b2011-07-14 08:31:57 +00001052
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001053 prefetch(&fp->sb_running_index[SM_RX_ID]);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001054 napi_schedule(&bnx2x_fp(bp, fp->index, napi));
1055
1056 return IRQ_HANDLED;
1057}
1058
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001059/* HW Lock for shared dual port PHYs */
1060void bnx2x_acquire_phy_lock(struct bnx2x *bp)
1061{
1062 mutex_lock(&bp->port.phy_mutex);
1063
Yaniv Rosner8203c4b2012-11-27 03:46:33 +00001064 bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_MDIO);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001065}
1066
1067void bnx2x_release_phy_lock(struct bnx2x *bp)
1068{
Yaniv Rosner8203c4b2012-11-27 03:46:33 +00001069 bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_MDIO);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001070
1071 mutex_unlock(&bp->port.phy_mutex);
1072}
1073
Dmitry Kravkov0793f83f2010-12-01 12:39:28 -08001074/* calculates MF speed according to current linespeed and MF configuration */
1075u16 bnx2x_get_mf_speed(struct bnx2x *bp)
1076{
1077 u16 line_speed = bp->link_vars.line_speed;
1078 if (IS_MF(bp)) {
Dmitry Kravkovfaa6fcb2011-02-28 03:37:20 +00001079 u16 maxCfg = bnx2x_extract_max_cfg(bp,
1080 bp->mf_config[BP_VN(bp)]);
1081
1082 /* Calculate the current MAX line speed limit for the MF
1083 * devices
Dmitry Kravkov0793f83f2010-12-01 12:39:28 -08001084 */
Dmitry Kravkovfaa6fcb2011-02-28 03:37:20 +00001085 if (IS_MF_SI(bp))
1086 line_speed = (line_speed * maxCfg) / 100;
1087 else { /* SD mode */
Dmitry Kravkov0793f83f2010-12-01 12:39:28 -08001088 u16 vn_max_rate = maxCfg * 100;
1089
1090 if (vn_max_rate < line_speed)
1091 line_speed = vn_max_rate;
Dmitry Kravkovfaa6fcb2011-02-28 03:37:20 +00001092 }
Dmitry Kravkov0793f83f2010-12-01 12:39:28 -08001093 }
1094
1095 return line_speed;
1096}
1097
Vladislav Zolotarov2ae17f62011-05-04 23:48:23 +00001098/**
1099 * bnx2x_fill_report_data - fill link report data to report
1100 *
1101 * @bp: driver handle
1102 * @data: link state to update
1103 *
1104 * It uses a none-atomic bit operations because is called under the mutex.
1105 */
Eric Dumazet1191cb82012-04-27 21:39:21 +00001106static void bnx2x_fill_report_data(struct bnx2x *bp,
1107 struct bnx2x_link_report_data *data)
Vladislav Zolotarov2ae17f62011-05-04 23:48:23 +00001108{
1109 u16 line_speed = bnx2x_get_mf_speed(bp);
1110
1111 memset(data, 0, sizeof(*data));
1112
1113 /* Fill the report data: efective line speed */
1114 data->line_speed = line_speed;
1115
1116 /* Link is down */
1117 if (!bp->link_vars.link_up || (bp->flags & MF_FUNC_DIS))
1118 __set_bit(BNX2X_LINK_REPORT_LINK_DOWN,
1119 &data->link_report_flags);
1120
1121 /* Full DUPLEX */
1122 if (bp->link_vars.duplex == DUPLEX_FULL)
1123 __set_bit(BNX2X_LINK_REPORT_FD, &data->link_report_flags);
1124
1125 /* Rx Flow Control is ON */
1126 if (bp->link_vars.flow_ctrl & BNX2X_FLOW_CTRL_RX)
1127 __set_bit(BNX2X_LINK_REPORT_RX_FC_ON, &data->link_report_flags);
1128
1129 /* Tx Flow Control is ON */
1130 if (bp->link_vars.flow_ctrl & BNX2X_FLOW_CTRL_TX)
1131 __set_bit(BNX2X_LINK_REPORT_TX_FC_ON, &data->link_report_flags);
1132}
1133
1134/**
1135 * bnx2x_link_report - report link status to OS.
1136 *
1137 * @bp: driver handle
1138 *
1139 * Calls the __bnx2x_link_report() under the same locking scheme
1140 * as a link/PHY state managing code to ensure a consistent link
1141 * reporting.
1142 */
1143
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001144void bnx2x_link_report(struct bnx2x *bp)
1145{
Vladislav Zolotarov2ae17f62011-05-04 23:48:23 +00001146 bnx2x_acquire_phy_lock(bp);
1147 __bnx2x_link_report(bp);
1148 bnx2x_release_phy_lock(bp);
1149}
1150
1151/**
1152 * __bnx2x_link_report - report link status to OS.
1153 *
1154 * @bp: driver handle
1155 *
1156 * None atomic inmlementation.
1157 * Should be called under the phy_lock.
1158 */
1159void __bnx2x_link_report(struct bnx2x *bp)
1160{
1161 struct bnx2x_link_report_data cur_data;
1162
1163 /* reread mf_cfg */
Ariel Eliorad5afc82013-01-01 05:22:26 +00001164 if (IS_PF(bp) && !CHIP_IS_E1(bp))
Vladislav Zolotarov2ae17f62011-05-04 23:48:23 +00001165 bnx2x_read_mf_cfg(bp);
1166
1167 /* Read the current link report info */
1168 bnx2x_fill_report_data(bp, &cur_data);
1169
1170 /* Don't report link down or exactly the same link status twice */
1171 if (!memcmp(&cur_data, &bp->last_reported_link, sizeof(cur_data)) ||
1172 (test_bit(BNX2X_LINK_REPORT_LINK_DOWN,
1173 &bp->last_reported_link.link_report_flags) &&
1174 test_bit(BNX2X_LINK_REPORT_LINK_DOWN,
1175 &cur_data.link_report_flags)))
1176 return;
1177
1178 bp->link_cnt++;
1179
1180 /* We are going to report a new link parameters now -
1181 * remember the current data for the next time.
1182 */
1183 memcpy(&bp->last_reported_link, &cur_data, sizeof(cur_data));
1184
1185 if (test_bit(BNX2X_LINK_REPORT_LINK_DOWN,
1186 &cur_data.link_report_flags)) {
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001187 netif_carrier_off(bp->dev);
1188 netdev_err(bp->dev, "NIC Link is Down\n");
1189 return;
Vladislav Zolotarov2ae17f62011-05-04 23:48:23 +00001190 } else {
Joe Perches94f05b02011-08-14 12:16:20 +00001191 const char *duplex;
1192 const char *flow;
1193
Vladislav Zolotarov2ae17f62011-05-04 23:48:23 +00001194 netif_carrier_on(bp->dev);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001195
Vladislav Zolotarov2ae17f62011-05-04 23:48:23 +00001196 if (test_and_clear_bit(BNX2X_LINK_REPORT_FD,
1197 &cur_data.link_report_flags))
Joe Perches94f05b02011-08-14 12:16:20 +00001198 duplex = "full";
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001199 else
Joe Perches94f05b02011-08-14 12:16:20 +00001200 duplex = "half";
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001201
Vladislav Zolotarov2ae17f62011-05-04 23:48:23 +00001202 /* Handle the FC at the end so that only these flags would be
1203 * possibly set. This way we may easily check if there is no FC
1204 * enabled.
1205 */
1206 if (cur_data.link_report_flags) {
1207 if (test_bit(BNX2X_LINK_REPORT_RX_FC_ON,
1208 &cur_data.link_report_flags)) {
Vladislav Zolotarov2ae17f62011-05-04 23:48:23 +00001209 if (test_bit(BNX2X_LINK_REPORT_TX_FC_ON,
1210 &cur_data.link_report_flags))
Joe Perches94f05b02011-08-14 12:16:20 +00001211 flow = "ON - receive & transmit";
1212 else
1213 flow = "ON - receive";
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001214 } else {
Joe Perches94f05b02011-08-14 12:16:20 +00001215 flow = "ON - transmit";
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001216 }
Joe Perches94f05b02011-08-14 12:16:20 +00001217 } else {
1218 flow = "none";
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001219 }
Joe Perches94f05b02011-08-14 12:16:20 +00001220 netdev_info(bp->dev, "NIC Link is Up, %d Mbps %s duplex, Flow control: %s\n",
1221 cur_data.line_speed, duplex, flow);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001222 }
1223}
1224
Eric Dumazet1191cb82012-04-27 21:39:21 +00001225static void bnx2x_set_next_page_sgl(struct bnx2x_fastpath *fp)
1226{
1227 int i;
1228
1229 for (i = 1; i <= NUM_RX_SGE_PAGES; i++) {
1230 struct eth_rx_sge *sge;
1231
1232 sge = &fp->rx_sge_ring[RX_SGE_CNT * i - 2];
1233 sge->addr_hi =
1234 cpu_to_le32(U64_HI(fp->rx_sge_mapping +
1235 BCM_PAGE_SIZE*(i % NUM_RX_SGE_PAGES)));
1236
1237 sge->addr_lo =
1238 cpu_to_le32(U64_LO(fp->rx_sge_mapping +
1239 BCM_PAGE_SIZE*(i % NUM_RX_SGE_PAGES)));
1240 }
1241}
1242
1243static void bnx2x_free_tpa_pool(struct bnx2x *bp,
1244 struct bnx2x_fastpath *fp, int last)
1245{
1246 int i;
1247
1248 for (i = 0; i < last; i++) {
1249 struct bnx2x_agg_info *tpa_info = &fp->tpa_info[i];
1250 struct sw_rx_bd *first_buf = &tpa_info->first_buf;
1251 u8 *data = first_buf->data;
1252
1253 if (data == NULL) {
1254 DP(NETIF_MSG_IFDOWN, "tpa bin %d empty on free\n", i);
1255 continue;
1256 }
1257 if (tpa_info->tpa_state == BNX2X_TPA_START)
1258 dma_unmap_single(&bp->pdev->dev,
1259 dma_unmap_addr(first_buf, mapping),
1260 fp->rx_buf_size, DMA_FROM_DEVICE);
Eric Dumazetd46d1322012-12-10 12:16:06 +00001261 bnx2x_frag_free(fp, data);
Eric Dumazet1191cb82012-04-27 21:39:21 +00001262 first_buf->data = NULL;
1263 }
1264}
1265
Merav Sicron55c11942012-11-07 00:45:48 +00001266void bnx2x_init_rx_rings_cnic(struct bnx2x *bp)
1267{
1268 int j;
1269
1270 for_each_rx_queue_cnic(bp, j) {
1271 struct bnx2x_fastpath *fp = &bp->fp[j];
1272
1273 fp->rx_bd_cons = 0;
1274
1275 /* Activate BD ring */
1276 /* Warning!
1277 * this will generate an interrupt (to the TSTORM)
1278 * must only be done after chip is initialized
1279 */
1280 bnx2x_update_rx_prod(bp, fp, fp->rx_bd_prod, fp->rx_comp_prod,
1281 fp->rx_sge_prod);
1282 }
1283}
1284
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001285void bnx2x_init_rx_rings(struct bnx2x *bp)
1286{
1287 int func = BP_FUNC(bp);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001288 u16 ring_prod;
1289 int i, j;
1290
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +00001291 /* Allocate TPA resources */
Merav Sicron55c11942012-11-07 00:45:48 +00001292 for_each_eth_queue(bp, j) {
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001293 struct bnx2x_fastpath *fp = &bp->fp[j];
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001294
Vladislav Zolotarova8c94b92011-02-06 11:21:02 -08001295 DP(NETIF_MSG_IFUP,
1296 "mtu %d rx_buf_size %d\n", bp->dev->mtu, fp->rx_buf_size);
1297
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001298 if (!fp->disable_tpa) {
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001299 /* Fill the per-aggregtion pool */
David S. Miller8decf862011-09-22 03:23:13 -04001300 for (i = 0; i < MAX_AGG_QS(bp); i++) {
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001301 struct bnx2x_agg_info *tpa_info =
1302 &fp->tpa_info[i];
1303 struct sw_rx_bd *first_buf =
1304 &tpa_info->first_buf;
1305
Eric Dumazetd46d1322012-12-10 12:16:06 +00001306 first_buf->data = bnx2x_frag_alloc(fp);
Eric Dumazete52fcb22011-11-14 06:05:34 +00001307 if (!first_buf->data) {
Merav Sicron51c1a582012-03-18 10:33:38 +00001308 BNX2X_ERR("Failed to allocate TPA skb pool for queue[%d] - disabling TPA on this queue!\n",
1309 j);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001310 bnx2x_free_tpa_pool(bp, fp, i);
1311 fp->disable_tpa = 1;
1312 break;
1313 }
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001314 dma_unmap_addr_set(first_buf, mapping, 0);
1315 tpa_info->tpa_state = BNX2X_TPA_STOP;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001316 }
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001317
1318 /* "next page" elements initialization */
1319 bnx2x_set_next_page_sgl(fp);
1320
1321 /* set SGEs bit mask */
1322 bnx2x_init_sge_ring_bit_mask(fp);
1323
1324 /* Allocate SGEs and initialize the ring elements */
1325 for (i = 0, ring_prod = 0;
1326 i < MAX_RX_SGE_CNT*NUM_RX_SGE_PAGES; i++) {
1327
1328 if (bnx2x_alloc_rx_sge(bp, fp, ring_prod) < 0) {
Merav Sicron51c1a582012-03-18 10:33:38 +00001329 BNX2X_ERR("was only able to allocate %d rx sges\n",
1330 i);
1331 BNX2X_ERR("disabling TPA for queue[%d]\n",
1332 j);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001333 /* Cleanup already allocated elements */
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001334 bnx2x_free_rx_sge_range(bp, fp,
1335 ring_prod);
1336 bnx2x_free_tpa_pool(bp, fp,
David S. Miller8decf862011-09-22 03:23:13 -04001337 MAX_AGG_QS(bp));
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001338 fp->disable_tpa = 1;
1339 ring_prod = 0;
1340 break;
1341 }
1342 ring_prod = NEXT_SGE_IDX(ring_prod);
1343 }
1344
1345 fp->rx_sge_prod = ring_prod;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001346 }
1347 }
1348
Merav Sicron55c11942012-11-07 00:45:48 +00001349 for_each_eth_queue(bp, j) {
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001350 struct bnx2x_fastpath *fp = &bp->fp[j];
1351
1352 fp->rx_bd_cons = 0;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001353
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +00001354 /* Activate BD ring */
1355 /* Warning!
1356 * this will generate an interrupt (to the TSTORM)
1357 * must only be done after chip is initialized
1358 */
1359 bnx2x_update_rx_prod(bp, fp, fp->rx_bd_prod, fp->rx_comp_prod,
1360 fp->rx_sge_prod);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001361
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001362 if (j != 0)
1363 continue;
1364
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001365 if (CHIP_IS_E1(bp)) {
Dmitry Kravkovf2e08992010-10-06 03:28:26 +00001366 REG_WR(bp, BAR_USTRORM_INTMEM +
1367 USTORM_MEM_WORKAROUND_ADDRESS_OFFSET(func),
1368 U64_LO(fp->rx_comp_mapping));
1369 REG_WR(bp, BAR_USTRORM_INTMEM +
1370 USTORM_MEM_WORKAROUND_ADDRESS_OFFSET(func) + 4,
1371 U64_HI(fp->rx_comp_mapping));
1372 }
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001373 }
1374}
Dmitry Kravkovf85582f2010-10-06 03:34:21 +00001375
Merav Sicron55c11942012-11-07 00:45:48 +00001376static void bnx2x_free_tx_skbs_queue(struct bnx2x_fastpath *fp)
1377{
1378 u8 cos;
1379 struct bnx2x *bp = fp->bp;
1380
1381 for_each_cos_in_tx_queue(fp, cos) {
1382 struct bnx2x_fp_txdata *txdata = fp->txdata_ptr[cos];
1383 unsigned pkts_compl = 0, bytes_compl = 0;
1384
1385 u16 sw_prod = txdata->tx_pkt_prod;
1386 u16 sw_cons = txdata->tx_pkt_cons;
1387
1388 while (sw_cons != sw_prod) {
1389 bnx2x_free_tx_pkt(bp, txdata, TX_BD(sw_cons),
1390 &pkts_compl, &bytes_compl);
1391 sw_cons++;
1392 }
1393
1394 netdev_tx_reset_queue(
1395 netdev_get_tx_queue(bp->dev,
1396 txdata->txq_index));
1397 }
1398}
1399
1400static void bnx2x_free_tx_skbs_cnic(struct bnx2x *bp)
1401{
1402 int i;
1403
1404 for_each_tx_queue_cnic(bp, i) {
1405 bnx2x_free_tx_skbs_queue(&bp->fp[i]);
1406 }
1407}
1408
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001409static void bnx2x_free_tx_skbs(struct bnx2x *bp)
1410{
1411 int i;
1412
Merav Sicron55c11942012-11-07 00:45:48 +00001413 for_each_eth_queue(bp, i) {
1414 bnx2x_free_tx_skbs_queue(&bp->fp[i]);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001415 }
1416}
1417
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +00001418static void bnx2x_free_rx_bds(struct bnx2x_fastpath *fp)
1419{
1420 struct bnx2x *bp = fp->bp;
1421 int i;
1422
1423 /* ring wasn't allocated */
1424 if (fp->rx_buf_ring == NULL)
1425 return;
1426
1427 for (i = 0; i < NUM_RX_BD; i++) {
1428 struct sw_rx_bd *rx_buf = &fp->rx_buf_ring[i];
Eric Dumazete52fcb22011-11-14 06:05:34 +00001429 u8 *data = rx_buf->data;
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +00001430
Eric Dumazete52fcb22011-11-14 06:05:34 +00001431 if (data == NULL)
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +00001432 continue;
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +00001433 dma_unmap_single(&bp->pdev->dev,
1434 dma_unmap_addr(rx_buf, mapping),
1435 fp->rx_buf_size, DMA_FROM_DEVICE);
1436
Eric Dumazete52fcb22011-11-14 06:05:34 +00001437 rx_buf->data = NULL;
Eric Dumazetd46d1322012-12-10 12:16:06 +00001438 bnx2x_frag_free(fp, data);
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +00001439 }
1440}
1441
Merav Sicron55c11942012-11-07 00:45:48 +00001442static void bnx2x_free_rx_skbs_cnic(struct bnx2x *bp)
1443{
1444 int j;
1445
1446 for_each_rx_queue_cnic(bp, j) {
1447 bnx2x_free_rx_bds(&bp->fp[j]);
1448 }
1449}
1450
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001451static void bnx2x_free_rx_skbs(struct bnx2x *bp)
1452{
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +00001453 int j;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001454
Merav Sicron55c11942012-11-07 00:45:48 +00001455 for_each_eth_queue(bp, j) {
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001456 struct bnx2x_fastpath *fp = &bp->fp[j];
1457
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +00001458 bnx2x_free_rx_bds(fp);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001459
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001460 if (!fp->disable_tpa)
David S. Miller8decf862011-09-22 03:23:13 -04001461 bnx2x_free_tpa_pool(bp, fp, MAX_AGG_QS(bp));
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001462 }
1463}
1464
Merav Sicron55c11942012-11-07 00:45:48 +00001465void bnx2x_free_skbs_cnic(struct bnx2x *bp)
1466{
1467 bnx2x_free_tx_skbs_cnic(bp);
1468 bnx2x_free_rx_skbs_cnic(bp);
1469}
1470
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001471void bnx2x_free_skbs(struct bnx2x *bp)
1472{
1473 bnx2x_free_tx_skbs(bp);
1474 bnx2x_free_rx_skbs(bp);
1475}
1476
Dmitry Kravkove3835b92011-03-06 10:50:44 +00001477void bnx2x_update_max_mf_config(struct bnx2x *bp, u32 value)
1478{
1479 /* load old values */
1480 u32 mf_cfg = bp->mf_config[BP_VN(bp)];
1481
1482 if (value != bnx2x_extract_max_cfg(bp, mf_cfg)) {
1483 /* leave all but MAX value */
1484 mf_cfg &= ~FUNC_MF_CFG_MAX_BW_MASK;
1485
1486 /* set new MAX value */
1487 mf_cfg |= (value << FUNC_MF_CFG_MAX_BW_SHIFT)
1488 & FUNC_MF_CFG_MAX_BW_MASK;
1489
1490 bnx2x_fw_command(bp, DRV_MSG_CODE_SET_MF_BW, mf_cfg);
1491 }
1492}
1493
Dmitry Kravkovca924292011-06-14 01:33:08 +00001494/**
1495 * bnx2x_free_msix_irqs - free previously requested MSI-X IRQ vectors
1496 *
1497 * @bp: driver handle
1498 * @nvecs: number of vectors to be released
1499 */
1500static void bnx2x_free_msix_irqs(struct bnx2x *bp, int nvecs)
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001501{
Dmitry Kravkovca924292011-06-14 01:33:08 +00001502 int i, offset = 0;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001503
Dmitry Kravkovca924292011-06-14 01:33:08 +00001504 if (nvecs == offset)
1505 return;
Ariel Eliorad5afc82013-01-01 05:22:26 +00001506
1507 /* VFs don't have a default SB */
1508 if (IS_PF(bp)) {
1509 free_irq(bp->msix_table[offset].vector, bp->dev);
1510 DP(NETIF_MSG_IFDOWN, "released sp irq (%d)\n",
1511 bp->msix_table[offset].vector);
1512 offset++;
1513 }
Merav Sicron55c11942012-11-07 00:45:48 +00001514
1515 if (CNIC_SUPPORT(bp)) {
1516 if (nvecs == offset)
1517 return;
1518 offset++;
1519 }
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001520
Dmitry Kravkovca924292011-06-14 01:33:08 +00001521 for_each_eth_queue(bp, i) {
1522 if (nvecs == offset)
1523 return;
Merav Sicron51c1a582012-03-18 10:33:38 +00001524 DP(NETIF_MSG_IFDOWN, "about to release fp #%d->%d irq\n",
1525 i, bp->msix_table[offset].vector);
Dmitry Kravkovca924292011-06-14 01:33:08 +00001526
1527 free_irq(bp->msix_table[offset++].vector, &bp->fp[i]);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001528 }
1529}
1530
Dmitry Kravkovd6214d72010-10-06 03:32:10 +00001531void bnx2x_free_irq(struct bnx2x *bp)
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001532{
Dmitry Kravkov30a5de72012-04-03 18:41:26 +00001533 if (bp->flags & USING_MSIX_FLAG &&
Ariel Eliorad5afc82013-01-01 05:22:26 +00001534 !(bp->flags & USING_SINGLE_MSIX_FLAG)) {
1535 int nvecs = BNX2X_NUM_ETH_QUEUES(bp) + CNIC_SUPPORT(bp);
1536
1537 /* vfs don't have a default status block */
1538 if (IS_PF(bp))
1539 nvecs++;
1540
1541 bnx2x_free_msix_irqs(bp, nvecs);
1542 } else {
Dmitry Kravkov30a5de72012-04-03 18:41:26 +00001543 free_irq(bp->dev->irq, bp->dev);
Ariel Eliorad5afc82013-01-01 05:22:26 +00001544 }
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001545}
1546
Merav Sicron0e8d2ec2012-06-19 07:48:30 +00001547int bnx2x_enable_msix(struct bnx2x *bp)
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001548{
Ariel Elior1ab44342013-01-01 05:22:23 +00001549 int msix_vec = 0, i, rc;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001550
Ariel Elior1ab44342013-01-01 05:22:23 +00001551 /* VFs don't have a default status block */
1552 if (IS_PF(bp)) {
1553 bp->msix_table[msix_vec].entry = msix_vec;
1554 BNX2X_DEV_INFO("msix_table[0].entry = %d (slowpath)\n",
1555 bp->msix_table[0].entry);
1556 msix_vec++;
1557 }
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001558
Merav Sicron55c11942012-11-07 00:45:48 +00001559 /* Cnic requires an msix vector for itself */
1560 if (CNIC_SUPPORT(bp)) {
1561 bp->msix_table[msix_vec].entry = msix_vec;
1562 BNX2X_DEV_INFO("msix_table[%d].entry = %d (CNIC)\n",
1563 msix_vec, bp->msix_table[msix_vec].entry);
1564 msix_vec++;
1565 }
1566
Ariel Elior6383c0b2011-07-14 08:31:57 +00001567 /* We need separate vectors for ETH queues only (not FCoE) */
Vladislav Zolotarovec6ba942010-12-13 05:44:01 +00001568 for_each_eth_queue(bp, i) {
Dmitry Kravkovd6214d72010-10-06 03:32:10 +00001569 bp->msix_table[msix_vec].entry = msix_vec;
Merav Sicron51c1a582012-03-18 10:33:38 +00001570 BNX2X_DEV_INFO("msix_table[%d].entry = %d (fastpath #%u)\n",
1571 msix_vec, msix_vec, i);
Dmitry Kravkovd6214d72010-10-06 03:32:10 +00001572 msix_vec++;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001573 }
1574
Ariel Elior1ab44342013-01-01 05:22:23 +00001575 DP(BNX2X_MSG_SP, "about to request enable msix with %d vectors\n",
1576 msix_vec);
Dmitry Kravkovd6214d72010-10-06 03:32:10 +00001577
Ariel Elior1ab44342013-01-01 05:22:23 +00001578 rc = pci_enable_msix(bp->pdev, &bp->msix_table[0], msix_vec);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001579
1580 /*
1581 * reconfigure number of tx/rx queues according to available
1582 * MSI-X vectors
1583 */
Merav Sicron55c11942012-11-07 00:45:48 +00001584 if (rc >= BNX2X_MIN_MSIX_VEC_CNT(bp)) {
Dmitry Kravkovd6214d72010-10-06 03:32:10 +00001585 /* how less vectors we will have? */
Ariel Elior1ab44342013-01-01 05:22:23 +00001586 int diff = msix_vec - rc;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001587
Merav Sicron51c1a582012-03-18 10:33:38 +00001588 BNX2X_DEV_INFO("Trying to use less MSI-X vectors: %d\n", rc);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001589
1590 rc = pci_enable_msix(bp->pdev, &bp->msix_table[0], rc);
1591
1592 if (rc) {
Dmitry Kravkov30a5de72012-04-03 18:41:26 +00001593 BNX2X_DEV_INFO("MSI-X is not attainable rc %d\n", rc);
1594 goto no_msix;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001595 }
Dmitry Kravkovd6214d72010-10-06 03:32:10 +00001596 /*
1597 * decrease number of queues by number of unallocated entries
1598 */
Merav Sicron55c11942012-11-07 00:45:48 +00001599 bp->num_ethernet_queues -= diff;
1600 bp->num_queues = bp->num_ethernet_queues + bp->num_cnic_queues;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001601
Merav Sicron51c1a582012-03-18 10:33:38 +00001602 BNX2X_DEV_INFO("New queue configuration set: %d\n",
Dmitry Kravkov30a5de72012-04-03 18:41:26 +00001603 bp->num_queues);
1604 } else if (rc > 0) {
1605 /* Get by with single vector */
1606 rc = pci_enable_msix(bp->pdev, &bp->msix_table[0], 1);
1607 if (rc) {
1608 BNX2X_DEV_INFO("Single MSI-X is not attainable rc %d\n",
1609 rc);
1610 goto no_msix;
1611 }
1612
1613 BNX2X_DEV_INFO("Using single MSI-X vector\n");
1614 bp->flags |= USING_SINGLE_MSIX_FLAG;
1615
Merav Sicron55c11942012-11-07 00:45:48 +00001616 BNX2X_DEV_INFO("set number of queues to 1\n");
1617 bp->num_ethernet_queues = 1;
1618 bp->num_queues = bp->num_ethernet_queues + bp->num_cnic_queues;
Dmitry Kravkov30a5de72012-04-03 18:41:26 +00001619 } else if (rc < 0) {
Merav Sicron51c1a582012-03-18 10:33:38 +00001620 BNX2X_DEV_INFO("MSI-X is not attainable rc %d\n", rc);
Dmitry Kravkov30a5de72012-04-03 18:41:26 +00001621 goto no_msix;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001622 }
1623
1624 bp->flags |= USING_MSIX_FLAG;
1625
1626 return 0;
Dmitry Kravkov30a5de72012-04-03 18:41:26 +00001627
1628no_msix:
1629 /* fall to INTx if not enough memory */
1630 if (rc == -ENOMEM)
1631 bp->flags |= DISABLE_MSI_FLAG;
1632
1633 return rc;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001634}
1635
1636static int bnx2x_req_msix_irqs(struct bnx2x *bp)
1637{
Dmitry Kravkovca924292011-06-14 01:33:08 +00001638 int i, rc, offset = 0;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001639
Ariel Eliorad5afc82013-01-01 05:22:26 +00001640 /* no default status block for vf */
1641 if (IS_PF(bp)) {
1642 rc = request_irq(bp->msix_table[offset++].vector,
1643 bnx2x_msix_sp_int, 0,
1644 bp->dev->name, bp->dev);
1645 if (rc) {
1646 BNX2X_ERR("request sp irq failed\n");
1647 return -EBUSY;
1648 }
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001649 }
1650
Merav Sicron55c11942012-11-07 00:45:48 +00001651 if (CNIC_SUPPORT(bp))
1652 offset++;
1653
Vladislav Zolotarovec6ba942010-12-13 05:44:01 +00001654 for_each_eth_queue(bp, i) {
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001655 struct bnx2x_fastpath *fp = &bp->fp[i];
1656 snprintf(fp->name, sizeof(fp->name), "%s-fp-%d",
1657 bp->dev->name, i);
1658
Dmitry Kravkovd6214d72010-10-06 03:32:10 +00001659 rc = request_irq(bp->msix_table[offset].vector,
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001660 bnx2x_msix_fp_int, 0, fp->name, fp);
1661 if (rc) {
Dmitry Kravkovca924292011-06-14 01:33:08 +00001662 BNX2X_ERR("request fp #%d irq (%d) failed rc %d\n", i,
1663 bp->msix_table[offset].vector, rc);
1664 bnx2x_free_msix_irqs(bp, offset);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001665 return -EBUSY;
1666 }
1667
Dmitry Kravkovd6214d72010-10-06 03:32:10 +00001668 offset++;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001669 }
1670
Vladislav Zolotarovec6ba942010-12-13 05:44:01 +00001671 i = BNX2X_NUM_ETH_QUEUES(bp);
Ariel Eliorad5afc82013-01-01 05:22:26 +00001672 if (IS_PF(bp)) {
1673 offset = 1 + CNIC_SUPPORT(bp);
1674 netdev_info(bp->dev,
1675 "using MSI-X IRQs: sp %d fp[%d] %d ... fp[%d] %d\n",
1676 bp->msix_table[0].vector,
1677 0, bp->msix_table[offset].vector,
1678 i - 1, bp->msix_table[offset + i - 1].vector);
1679 } else {
1680 offset = CNIC_SUPPORT(bp);
1681 netdev_info(bp->dev,
1682 "using MSI-X IRQs: fp[%d] %d ... fp[%d] %d\n",
1683 0, bp->msix_table[offset].vector,
1684 i - 1, bp->msix_table[offset + i - 1].vector);
1685 }
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001686 return 0;
1687}
1688
Dmitry Kravkovd6214d72010-10-06 03:32:10 +00001689int bnx2x_enable_msi(struct bnx2x *bp)
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001690{
1691 int rc;
1692
1693 rc = pci_enable_msi(bp->pdev);
1694 if (rc) {
Merav Sicron51c1a582012-03-18 10:33:38 +00001695 BNX2X_DEV_INFO("MSI is not attainable\n");
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001696 return -1;
1697 }
1698 bp->flags |= USING_MSI_FLAG;
1699
1700 return 0;
1701}
1702
1703static int bnx2x_req_irq(struct bnx2x *bp)
1704{
1705 unsigned long flags;
Dmitry Kravkov30a5de72012-04-03 18:41:26 +00001706 unsigned int irq;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001707
Dmitry Kravkov30a5de72012-04-03 18:41:26 +00001708 if (bp->flags & (USING_MSI_FLAG | USING_MSIX_FLAG))
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001709 flags = 0;
1710 else
1711 flags = IRQF_SHARED;
1712
Dmitry Kravkov30a5de72012-04-03 18:41:26 +00001713 if (bp->flags & USING_MSIX_FLAG)
1714 irq = bp->msix_table[0].vector;
1715 else
1716 irq = bp->pdev->irq;
1717
1718 return request_irq(irq, bnx2x_interrupt, flags, bp->dev->name, bp->dev);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001719}
1720
Eric Dumazet1191cb82012-04-27 21:39:21 +00001721static int bnx2x_setup_irqs(struct bnx2x *bp)
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001722{
1723 int rc = 0;
Dmitry Kravkov30a5de72012-04-03 18:41:26 +00001724 if (bp->flags & USING_MSIX_FLAG &&
1725 !(bp->flags & USING_SINGLE_MSIX_FLAG)) {
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001726 rc = bnx2x_req_msix_irqs(bp);
1727 if (rc)
1728 return rc;
1729 } else {
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001730 rc = bnx2x_req_irq(bp);
1731 if (rc) {
1732 BNX2X_ERR("IRQ request failed rc %d, aborting\n", rc);
1733 return rc;
1734 }
1735 if (bp->flags & USING_MSI_FLAG) {
1736 bp->dev->irq = bp->pdev->irq;
Dmitry Kravkov30a5de72012-04-03 18:41:26 +00001737 netdev_info(bp->dev, "using MSI IRQ %d\n",
1738 bp->dev->irq);
1739 }
1740 if (bp->flags & USING_MSIX_FLAG) {
1741 bp->dev->irq = bp->msix_table[0].vector;
1742 netdev_info(bp->dev, "using MSIX IRQ %d\n",
1743 bp->dev->irq);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001744 }
1745 }
1746
1747 return 0;
1748}
1749
Merav Sicron55c11942012-11-07 00:45:48 +00001750static void bnx2x_napi_enable_cnic(struct bnx2x *bp)
1751{
1752 int i;
1753
1754 for_each_rx_queue_cnic(bp, i)
1755 napi_enable(&bnx2x_fp(bp, i, napi));
1756}
1757
Eric Dumazet1191cb82012-04-27 21:39:21 +00001758static void bnx2x_napi_enable(struct bnx2x *bp)
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001759{
1760 int i;
1761
Merav Sicron55c11942012-11-07 00:45:48 +00001762 for_each_eth_queue(bp, i)
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001763 napi_enable(&bnx2x_fp(bp, i, napi));
1764}
1765
Merav Sicron55c11942012-11-07 00:45:48 +00001766static void bnx2x_napi_disable_cnic(struct bnx2x *bp)
1767{
1768 int i;
1769
1770 for_each_rx_queue_cnic(bp, i)
1771 napi_disable(&bnx2x_fp(bp, i, napi));
1772}
1773
Eric Dumazet1191cb82012-04-27 21:39:21 +00001774static void bnx2x_napi_disable(struct bnx2x *bp)
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001775{
1776 int i;
1777
Merav Sicron55c11942012-11-07 00:45:48 +00001778 for_each_eth_queue(bp, i)
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001779 napi_disable(&bnx2x_fp(bp, i, napi));
1780}
1781
1782void bnx2x_netif_start(struct bnx2x *bp)
1783{
Dmitry Kravkov4b7ed892011-06-14 01:32:53 +00001784 if (netif_running(bp->dev)) {
1785 bnx2x_napi_enable(bp);
Merav Sicron55c11942012-11-07 00:45:48 +00001786 if (CNIC_LOADED(bp))
1787 bnx2x_napi_enable_cnic(bp);
Dmitry Kravkov4b7ed892011-06-14 01:32:53 +00001788 bnx2x_int_enable(bp);
1789 if (bp->state == BNX2X_STATE_OPEN)
1790 netif_tx_wake_all_queues(bp->dev);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001791 }
1792}
1793
1794void bnx2x_netif_stop(struct bnx2x *bp, int disable_hw)
1795{
1796 bnx2x_int_disable_sync(bp, disable_hw);
1797 bnx2x_napi_disable(bp);
Merav Sicron55c11942012-11-07 00:45:48 +00001798 if (CNIC_LOADED(bp))
1799 bnx2x_napi_disable_cnic(bp);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001800}
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001801
Vladislav Zolotarov8307fa32010-12-13 05:44:09 +00001802u16 bnx2x_select_queue(struct net_device *dev, struct sk_buff *skb)
1803{
Vladislav Zolotarov8307fa32010-12-13 05:44:09 +00001804 struct bnx2x *bp = netdev_priv(dev);
David S. Miller823dcd22011-08-20 10:39:12 -07001805
Merav Sicron55c11942012-11-07 00:45:48 +00001806 if (CNIC_LOADED(bp) && !NO_FCOE(bp)) {
Vladislav Zolotarov8307fa32010-12-13 05:44:09 +00001807 struct ethhdr *hdr = (struct ethhdr *)skb->data;
1808 u16 ether_type = ntohs(hdr->h_proto);
1809
1810 /* Skip VLAN tag if present */
1811 if (ether_type == ETH_P_8021Q) {
1812 struct vlan_ethhdr *vhdr =
1813 (struct vlan_ethhdr *)skb->data;
1814
1815 ether_type = ntohs(vhdr->h_vlan_encapsulated_proto);
1816 }
1817
1818 /* If ethertype is FCoE or FIP - use FCoE ring */
1819 if ((ether_type == ETH_P_FCOE) || (ether_type == ETH_P_FIP))
Ariel Elior6383c0b2011-07-14 08:31:57 +00001820 return bnx2x_fcoe_tx(bp, txq_index);
Vladislav Zolotarov8307fa32010-12-13 05:44:09 +00001821 }
Merav Sicron55c11942012-11-07 00:45:48 +00001822
David S. Miller823dcd22011-08-20 10:39:12 -07001823 /* select a non-FCoE queue */
Ariel Elior6383c0b2011-07-14 08:31:57 +00001824 return __skb_tx_hash(dev, skb, BNX2X_NUM_ETH_QUEUES(bp));
Vladislav Zolotarov8307fa32010-12-13 05:44:09 +00001825}
1826
Dmitry Kravkovd6214d72010-10-06 03:32:10 +00001827void bnx2x_set_num_queues(struct bnx2x *bp)
1828{
Dmitry Kravkov96305232012-04-03 18:41:30 +00001829 /* RSS queues */
Merav Sicron55c11942012-11-07 00:45:48 +00001830 bp->num_ethernet_queues = bnx2x_calc_num_queues(bp);
Vladislav Zolotarovec6ba942010-12-13 05:44:01 +00001831
Barak Witkowskia3348722012-04-23 03:04:46 +00001832 /* override in STORAGE SD modes */
1833 if (IS_MF_STORAGE_SD(bp) || IS_MF_FCOE_AFEX(bp))
Merav Sicron55c11942012-11-07 00:45:48 +00001834 bp->num_ethernet_queues = 1;
1835
Vladislav Zolotarovec6ba942010-12-13 05:44:01 +00001836 /* Add special queues */
Merav Sicron55c11942012-11-07 00:45:48 +00001837 bp->num_cnic_queues = CNIC_SUPPORT(bp); /* For FCOE */
1838 bp->num_queues = bp->num_ethernet_queues + bp->num_cnic_queues;
Merav Sicron65565882012-06-19 07:48:26 +00001839
1840 BNX2X_DEV_INFO("set number of queues to %d\n", bp->num_queues);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001841}
1842
David S. Miller823dcd22011-08-20 10:39:12 -07001843/**
1844 * bnx2x_set_real_num_queues - configure netdev->real_num_[tx,rx]_queues
1845 *
1846 * @bp: Driver handle
1847 *
1848 * We currently support for at most 16 Tx queues for each CoS thus we will
1849 * allocate a multiple of 16 for ETH L2 rings according to the value of the
1850 * bp->max_cos.
1851 *
1852 * If there is an FCoE L2 queue the appropriate Tx queue will have the next
1853 * index after all ETH L2 indices.
1854 *
1855 * If the actual number of Tx queues (for each CoS) is less than 16 then there
1856 * will be the holes at the end of each group of 16 ETh L2 indices (0..15,
1857 * 16..31,...) with indicies that are not coupled with any real Tx queue.
1858 *
1859 * The proper configuration of skb->queue_mapping is handled by
1860 * bnx2x_select_queue() and __skb_tx_hash().
1861 *
1862 * bnx2x_setup_tc() takes care of the proper TC mappings so that __skb_tx_hash()
1863 * will return a proper Tx index if TC is enabled (netdev->num_tc > 0).
1864 */
Merav Sicron55c11942012-11-07 00:45:48 +00001865static int bnx2x_set_real_num_queues(struct bnx2x *bp, int include_cnic)
Vladislav Zolotarovec6ba942010-12-13 05:44:01 +00001866{
Ariel Elior6383c0b2011-07-14 08:31:57 +00001867 int rc, tx, rx;
Vladislav Zolotarovec6ba942010-12-13 05:44:01 +00001868
Merav Sicron65565882012-06-19 07:48:26 +00001869 tx = BNX2X_NUM_ETH_QUEUES(bp) * bp->max_cos;
Merav Sicron55c11942012-11-07 00:45:48 +00001870 rx = BNX2X_NUM_ETH_QUEUES(bp);
Ariel Elior6383c0b2011-07-14 08:31:57 +00001871
1872/* account for fcoe queue */
Merav Sicron55c11942012-11-07 00:45:48 +00001873 if (include_cnic && !NO_FCOE(bp)) {
1874 rx++;
1875 tx++;
Ariel Elior6383c0b2011-07-14 08:31:57 +00001876 }
Ariel Elior6383c0b2011-07-14 08:31:57 +00001877
1878 rc = netif_set_real_num_tx_queues(bp->dev, tx);
1879 if (rc) {
1880 BNX2X_ERR("Failed to set real number of Tx queues: %d\n", rc);
1881 return rc;
1882 }
1883 rc = netif_set_real_num_rx_queues(bp->dev, rx);
1884 if (rc) {
1885 BNX2X_ERR("Failed to set real number of Rx queues: %d\n", rc);
1886 return rc;
1887 }
1888
Merav Sicron51c1a582012-03-18 10:33:38 +00001889 DP(NETIF_MSG_IFUP, "Setting real num queues to (tx, rx) (%d, %d)\n",
Ariel Elior6383c0b2011-07-14 08:31:57 +00001890 tx, rx);
1891
Vladislav Zolotarovec6ba942010-12-13 05:44:01 +00001892 return rc;
1893}
1894
Eric Dumazet1191cb82012-04-27 21:39:21 +00001895static void bnx2x_set_rx_buf_size(struct bnx2x *bp)
Vladislav Zolotarova8c94b92011-02-06 11:21:02 -08001896{
1897 int i;
1898
1899 for_each_queue(bp, i) {
1900 struct bnx2x_fastpath *fp = &bp->fp[i];
Eric Dumazete52fcb22011-11-14 06:05:34 +00001901 u32 mtu;
Vladislav Zolotarova8c94b92011-02-06 11:21:02 -08001902
1903 /* Always use a mini-jumbo MTU for the FCoE L2 ring */
1904 if (IS_FCOE_IDX(i))
1905 /*
1906 * Although there are no IP frames expected to arrive to
1907 * this ring we still want to add an
1908 * IP_HEADER_ALIGNMENT_PADDING to prevent a buffer
1909 * overrun attack.
1910 */
Eric Dumazete52fcb22011-11-14 06:05:34 +00001911 mtu = BNX2X_FCOE_MINI_JUMBO_MTU;
Vladislav Zolotarova8c94b92011-02-06 11:21:02 -08001912 else
Eric Dumazete52fcb22011-11-14 06:05:34 +00001913 mtu = bp->dev->mtu;
1914 fp->rx_buf_size = BNX2X_FW_RX_ALIGN_START +
1915 IP_HEADER_ALIGNMENT_PADDING +
1916 ETH_OVREHEAD +
1917 mtu +
1918 BNX2X_FW_RX_ALIGN_END;
1919 /* Note : rx_buf_size doesnt take into account NET_SKB_PAD */
Eric Dumazetd46d1322012-12-10 12:16:06 +00001920 if (fp->rx_buf_size + NET_SKB_PAD <= PAGE_SIZE)
1921 fp->rx_frag_size = fp->rx_buf_size + NET_SKB_PAD;
1922 else
1923 fp->rx_frag_size = 0;
Vladislav Zolotarova8c94b92011-02-06 11:21:02 -08001924 }
1925}
1926
Eric Dumazet1191cb82012-04-27 21:39:21 +00001927static int bnx2x_init_rss_pf(struct bnx2x *bp)
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001928{
1929 int i;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001930 u8 num_eth_queues = BNX2X_NUM_ETH_QUEUES(bp);
1931
Dmitry Kravkov96305232012-04-03 18:41:30 +00001932 /* Prepare the initial contents fo the indirection table if RSS is
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001933 * enabled
1934 */
Merav Sicron5d317c6a2012-06-19 07:48:24 +00001935 for (i = 0; i < sizeof(bp->rss_conf_obj.ind_table); i++)
1936 bp->rss_conf_obj.ind_table[i] =
Dmitry Kravkov96305232012-04-03 18:41:30 +00001937 bp->fp->cl_id +
1938 ethtool_rxfh_indir_default(i, num_eth_queues);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001939
1940 /*
1941 * For 57710 and 57711 SEARCHER configuration (rss_keys) is
1942 * per-port, so if explicit configuration is needed , do it only
1943 * for a PMF.
1944 *
1945 * For 57712 and newer on the other hand it's a per-function
1946 * configuration.
1947 */
Merav Sicron5d317c6a2012-06-19 07:48:24 +00001948 return bnx2x_config_rss_eth(bp, bp->port.pmf || !CHIP_IS_E1x(bp));
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001949}
1950
Dmitry Kravkov96305232012-04-03 18:41:30 +00001951int bnx2x_config_rss_pf(struct bnx2x *bp, struct bnx2x_rss_config_obj *rss_obj,
Merav Sicron5d317c6a2012-06-19 07:48:24 +00001952 bool config_hash)
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001953{
Yuval Mintz3b603062012-03-18 10:33:39 +00001954 struct bnx2x_config_rss_params params = {NULL};
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001955
1956 /* Although RSS is meaningless when there is a single HW queue we
1957 * still need it enabled in order to have HW Rx hash generated.
1958 *
1959 * if (!is_eth_multi(bp))
1960 * bp->multi_mode = ETH_RSS_MODE_DISABLED;
1961 */
1962
Dmitry Kravkov96305232012-04-03 18:41:30 +00001963 params.rss_obj = rss_obj;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001964
1965 __set_bit(RAMROD_COMP_WAIT, &params.ramrod_flags);
1966
Dmitry Kravkov96305232012-04-03 18:41:30 +00001967 __set_bit(BNX2X_RSS_MODE_REGULAR, &params.rss_flags);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001968
Dmitry Kravkov96305232012-04-03 18:41:30 +00001969 /* RSS configuration */
1970 __set_bit(BNX2X_RSS_IPV4, &params.rss_flags);
1971 __set_bit(BNX2X_RSS_IPV4_TCP, &params.rss_flags);
1972 __set_bit(BNX2X_RSS_IPV6, &params.rss_flags);
1973 __set_bit(BNX2X_RSS_IPV6_TCP, &params.rss_flags);
Merav Sicron5d317c6a2012-06-19 07:48:24 +00001974 if (rss_obj->udp_rss_v4)
1975 __set_bit(BNX2X_RSS_IPV4_UDP, &params.rss_flags);
1976 if (rss_obj->udp_rss_v6)
1977 __set_bit(BNX2X_RSS_IPV6_UDP, &params.rss_flags);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001978
Dmitry Kravkov96305232012-04-03 18:41:30 +00001979 /* Hash bits */
1980 params.rss_result_mask = MULTI_MASK;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001981
Merav Sicron5d317c6a2012-06-19 07:48:24 +00001982 memcpy(params.ind_table, rss_obj->ind_table, sizeof(params.ind_table));
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001983
Dmitry Kravkov96305232012-04-03 18:41:30 +00001984 if (config_hash) {
1985 /* RSS keys */
Akinobu Mita8376d0b2012-12-17 16:04:28 -08001986 prandom_bytes(params.rss_key, sizeof(params.rss_key));
Dmitry Kravkov96305232012-04-03 18:41:30 +00001987 __set_bit(BNX2X_RSS_SET_SRCH, &params.rss_flags);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001988 }
1989
1990 return bnx2x_config_rss(bp, &params);
1991}
1992
Eric Dumazet1191cb82012-04-27 21:39:21 +00001993static int bnx2x_init_hw(struct bnx2x *bp, u32 load_code)
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001994{
Yuval Mintz3b603062012-03-18 10:33:39 +00001995 struct bnx2x_func_state_params func_params = {NULL};
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001996
1997 /* Prepare parameters for function state transitions */
1998 __set_bit(RAMROD_COMP_WAIT, &func_params.ramrod_flags);
1999
2000 func_params.f_obj = &bp->func_obj;
2001 func_params.cmd = BNX2X_F_CMD_HW_INIT;
2002
2003 func_params.params.hw_init.load_phase = load_code;
2004
2005 return bnx2x_func_state_change(bp, &func_params);
2006}
2007
2008/*
2009 * Cleans the object that have internal lists without sending
2010 * ramrods. Should be run when interrutps are disabled.
2011 */
2012static void bnx2x_squeeze_objects(struct bnx2x *bp)
2013{
2014 int rc;
2015 unsigned long ramrod_flags = 0, vlan_mac_flags = 0;
Yuval Mintz3b603062012-03-18 10:33:39 +00002016 struct bnx2x_mcast_ramrod_params rparam = {NULL};
Barak Witkowski15192a82012-06-19 07:48:28 +00002017 struct bnx2x_vlan_mac_obj *mac_obj = &bp->sp_objs->mac_obj;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03002018
2019 /***************** Cleanup MACs' object first *************************/
2020
2021 /* Wait for completion of requested */
2022 __set_bit(RAMROD_COMP_WAIT, &ramrod_flags);
2023 /* Perform a dry cleanup */
2024 __set_bit(RAMROD_DRV_CLR_ONLY, &ramrod_flags);
2025
2026 /* Clean ETH primary MAC */
2027 __set_bit(BNX2X_ETH_MAC, &vlan_mac_flags);
Barak Witkowski15192a82012-06-19 07:48:28 +00002028 rc = mac_obj->delete_all(bp, &bp->sp_objs->mac_obj, &vlan_mac_flags,
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03002029 &ramrod_flags);
2030 if (rc != 0)
2031 BNX2X_ERR("Failed to clean ETH MACs: %d\n", rc);
2032
2033 /* Cleanup UC list */
2034 vlan_mac_flags = 0;
2035 __set_bit(BNX2X_UC_LIST_MAC, &vlan_mac_flags);
2036 rc = mac_obj->delete_all(bp, mac_obj, &vlan_mac_flags,
2037 &ramrod_flags);
2038 if (rc != 0)
2039 BNX2X_ERR("Failed to clean UC list MACs: %d\n", rc);
2040
2041 /***************** Now clean mcast object *****************************/
2042 rparam.mcast_obj = &bp->mcast_obj;
2043 __set_bit(RAMROD_DRV_CLR_ONLY, &rparam.ramrod_flags);
2044
2045 /* Add a DEL command... */
2046 rc = bnx2x_config_mcast(bp, &rparam, BNX2X_MCAST_CMD_DEL);
2047 if (rc < 0)
Merav Sicron51c1a582012-03-18 10:33:38 +00002048 BNX2X_ERR("Failed to add a new DEL command to a multi-cast object: %d\n",
2049 rc);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03002050
2051 /* ...and wait until all pending commands are cleared */
2052 rc = bnx2x_config_mcast(bp, &rparam, BNX2X_MCAST_CMD_CONT);
2053 while (rc != 0) {
2054 if (rc < 0) {
2055 BNX2X_ERR("Failed to clean multi-cast object: %d\n",
2056 rc);
2057 return;
2058 }
2059
2060 rc = bnx2x_config_mcast(bp, &rparam, BNX2X_MCAST_CMD_CONT);
2061 }
2062}
2063
2064#ifndef BNX2X_STOP_ON_ERROR
2065#define LOAD_ERROR_EXIT(bp, label) \
2066 do { \
2067 (bp)->state = BNX2X_STATE_ERROR; \
2068 goto label; \
2069 } while (0)
Merav Sicron55c11942012-11-07 00:45:48 +00002070
2071#define LOAD_ERROR_EXIT_CNIC(bp, label) \
2072 do { \
2073 bp->cnic_loaded = false; \
2074 goto label; \
2075 } while (0)
2076#else /*BNX2X_STOP_ON_ERROR*/
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03002077#define LOAD_ERROR_EXIT(bp, label) \
2078 do { \
2079 (bp)->state = BNX2X_STATE_ERROR; \
2080 (bp)->panic = 1; \
2081 return -EBUSY; \
2082 } while (0)
Merav Sicron55c11942012-11-07 00:45:48 +00002083#define LOAD_ERROR_EXIT_CNIC(bp, label) \
2084 do { \
2085 bp->cnic_loaded = false; \
2086 (bp)->panic = 1; \
2087 return -EBUSY; \
2088 } while (0)
2089#endif /*BNX2X_STOP_ON_ERROR*/
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03002090
Ariel Eliorad5afc82013-01-01 05:22:26 +00002091static void bnx2x_free_fw_stats_mem(struct bnx2x *bp)
Yuval Mintz452427b2012-03-26 20:47:07 +00002092{
Ariel Eliorad5afc82013-01-01 05:22:26 +00002093 BNX2X_PCI_FREE(bp->fw_stats, bp->fw_stats_mapping,
2094 bp->fw_stats_data_sz + bp->fw_stats_req_sz);
2095 return;
2096}
Yuval Mintz452427b2012-03-26 20:47:07 +00002097
Ariel Eliorad5afc82013-01-01 05:22:26 +00002098static int bnx2x_alloc_fw_stats_mem(struct bnx2x *bp)
2099{
Ariel Elior8db573b2013-01-01 05:22:37 +00002100 int num_groups, vf_headroom = 0;
Ariel Eliorad5afc82013-01-01 05:22:26 +00002101 int is_fcoe_stats = NO_FCOE(bp) ? 0 : 1;
Yuval Mintz452427b2012-03-26 20:47:07 +00002102
Ariel Eliorad5afc82013-01-01 05:22:26 +00002103 /* number of queues for statistics is number of eth queues + FCoE */
2104 u8 num_queue_stats = BNX2X_NUM_ETH_QUEUES(bp) + is_fcoe_stats;
Yuval Mintz452427b2012-03-26 20:47:07 +00002105
Ariel Eliorad5afc82013-01-01 05:22:26 +00002106 /* Total number of FW statistics requests =
2107 * 1 for port stats + 1 for PF stats + potential 2 for FCoE (fcoe proper
2108 * and fcoe l2 queue) stats + num of queues (which includes another 1
2109 * for fcoe l2 queue if applicable)
2110 */
2111 bp->fw_stats_num = 2 + is_fcoe_stats + num_queue_stats;
2112
Ariel Elior8db573b2013-01-01 05:22:37 +00002113 /* vf stats appear in the request list, but their data is allocated by
2114 * the VFs themselves. We don't include them in the bp->fw_stats_num as
2115 * it is used to determine where to place the vf stats queries in the
2116 * request struct
2117 */
2118 if (IS_SRIOV(bp))
Ariel Elior64112802013-01-07 00:50:23 +00002119 vf_headroom = bnx2x_vf_headroom(bp);
Ariel Elior8db573b2013-01-01 05:22:37 +00002120
Ariel Eliorad5afc82013-01-01 05:22:26 +00002121 /* Request is built from stats_query_header and an array of
2122 * stats_query_cmd_group each of which contains
2123 * STATS_QUERY_CMD_COUNT rules. The real number or requests is
2124 * configured in the stats_query_header.
2125 */
2126 num_groups =
Ariel Elior8db573b2013-01-01 05:22:37 +00002127 (((bp->fw_stats_num + vf_headroom) / STATS_QUERY_CMD_COUNT) +
2128 (((bp->fw_stats_num + vf_headroom) % STATS_QUERY_CMD_COUNT) ?
Ariel Eliorad5afc82013-01-01 05:22:26 +00002129 1 : 0));
2130
Ariel Elior8db573b2013-01-01 05:22:37 +00002131 DP(BNX2X_MSG_SP, "stats fw_stats_num %d, vf headroom %d, num_groups %d\n",
2132 bp->fw_stats_num, vf_headroom, num_groups);
Ariel Eliorad5afc82013-01-01 05:22:26 +00002133 bp->fw_stats_req_sz = sizeof(struct stats_query_header) +
2134 num_groups * sizeof(struct stats_query_cmd_group);
2135
2136 /* Data for statistics requests + stats_counter
2137 * stats_counter holds per-STORM counters that are incremented
2138 * when STORM has finished with the current request.
2139 * memory for FCoE offloaded statistics are counted anyway,
2140 * even if they will not be sent.
2141 * VF stats are not accounted for here as the data of VF stats is stored
2142 * in memory allocated by the VF, not here.
2143 */
2144 bp->fw_stats_data_sz = sizeof(struct per_port_stats) +
2145 sizeof(struct per_pf_stats) +
2146 sizeof(struct fcoe_statistics_params) +
2147 sizeof(struct per_queue_stats) * num_queue_stats +
2148 sizeof(struct stats_counter);
2149
2150 BNX2X_PCI_ALLOC(bp->fw_stats, &bp->fw_stats_mapping,
2151 bp->fw_stats_data_sz + bp->fw_stats_req_sz);
2152
2153 /* Set shortcuts */
2154 bp->fw_stats_req = (struct bnx2x_fw_stats_req *)bp->fw_stats;
2155 bp->fw_stats_req_mapping = bp->fw_stats_mapping;
2156 bp->fw_stats_data = (struct bnx2x_fw_stats_data *)
2157 ((u8 *)bp->fw_stats + bp->fw_stats_req_sz);
2158 bp->fw_stats_data_mapping = bp->fw_stats_mapping +
2159 bp->fw_stats_req_sz;
2160
2161 DP(BNX2X_MSG_SP, "statistics request base address set to %x %x",
2162 U64_HI(bp->fw_stats_req_mapping),
2163 U64_LO(bp->fw_stats_req_mapping));
2164 DP(BNX2X_MSG_SP, "statistics data base address set to %x %x",
2165 U64_HI(bp->fw_stats_data_mapping),
2166 U64_LO(bp->fw_stats_data_mapping));
2167 return 0;
2168
2169alloc_mem_err:
2170 bnx2x_free_fw_stats_mem(bp);
2171 BNX2X_ERR("Can't allocate FW stats memory\n");
2172 return -ENOMEM;
2173}
2174
2175/* send load request to mcp and analyze response */
2176static int bnx2x_nic_load_request(struct bnx2x *bp, u32 *load_code)
2177{
2178 /* init fw_seq */
2179 bp->fw_seq =
2180 (SHMEM_RD(bp, func_mb[BP_FW_MB_IDX(bp)].drv_mb_header) &
2181 DRV_MSG_SEQ_NUMBER_MASK);
2182 BNX2X_DEV_INFO("fw_seq 0x%08x\n", bp->fw_seq);
2183
2184 /* Get current FW pulse sequence */
2185 bp->fw_drv_pulse_wr_seq =
2186 (SHMEM_RD(bp, func_mb[BP_FW_MB_IDX(bp)].drv_pulse_mb) &
2187 DRV_PULSE_SEQ_MASK);
2188 BNX2X_DEV_INFO("drv_pulse 0x%x\n", bp->fw_drv_pulse_wr_seq);
2189
2190 /* load request */
2191 (*load_code) = bnx2x_fw_command(bp, DRV_MSG_CODE_LOAD_REQ,
2192 DRV_MSG_CODE_LOAD_REQ_WITH_LFA);
2193
2194 /* if mcp fails to respond we must abort */
2195 if (!(*load_code)) {
2196 BNX2X_ERR("MCP response failure, aborting\n");
2197 return -EBUSY;
Yuval Mintz452427b2012-03-26 20:47:07 +00002198 }
2199
Ariel Eliorad5afc82013-01-01 05:22:26 +00002200 /* If mcp refused (e.g. other port is in diagnostic mode) we
2201 * must abort
2202 */
2203 if ((*load_code) == FW_MSG_CODE_DRV_LOAD_REFUSED) {
2204 BNX2X_ERR("MCP refused load request, aborting\n");
2205 return -EBUSY;
2206 }
2207 return 0;
2208}
2209
2210/* check whether another PF has already loaded FW to chip. In
2211 * virtualized environments a pf from another VM may have already
2212 * initialized the device including loading FW
2213 */
2214int bnx2x_nic_load_analyze_req(struct bnx2x *bp, u32 load_code)
2215{
2216 /* is another pf loaded on this engine? */
2217 if (load_code != FW_MSG_CODE_DRV_LOAD_COMMON_CHIP &&
2218 load_code != FW_MSG_CODE_DRV_LOAD_COMMON) {
2219 /* build my FW version dword */
2220 u32 my_fw = (BCM_5710_FW_MAJOR_VERSION) +
2221 (BCM_5710_FW_MINOR_VERSION << 8) +
2222 (BCM_5710_FW_REVISION_VERSION << 16) +
2223 (BCM_5710_FW_ENGINEERING_VERSION << 24);
2224
2225 /* read loaded FW from chip */
2226 u32 loaded_fw = REG_RD(bp, XSEM_REG_PRAM);
2227
2228 DP(BNX2X_MSG_SP, "loaded fw %x, my fw %x\n",
2229 loaded_fw, my_fw);
2230
2231 /* abort nic load if version mismatch */
2232 if (my_fw != loaded_fw) {
2233 BNX2X_ERR("bnx2x with FW %x was already loaded which mismatches my %x FW. aborting\n",
2234 loaded_fw, my_fw);
2235 return -EBUSY;
2236 }
2237 }
2238 return 0;
2239}
2240
2241/* returns the "mcp load_code" according to global load_count array */
2242static int bnx2x_nic_load_no_mcp(struct bnx2x *bp, int port)
2243{
2244 int path = BP_PATH(bp);
2245
2246 DP(NETIF_MSG_IFUP, "NO MCP - load counts[%d] %d, %d, %d\n",
2247 path, load_count[path][0], load_count[path][1],
2248 load_count[path][2]);
2249 load_count[path][0]++;
2250 load_count[path][1 + port]++;
2251 DP(NETIF_MSG_IFUP, "NO MCP - new load counts[%d] %d, %d, %d\n",
2252 path, load_count[path][0], load_count[path][1],
2253 load_count[path][2]);
2254 if (load_count[path][0] == 1)
2255 return FW_MSG_CODE_DRV_LOAD_COMMON;
2256 else if (load_count[path][1 + port] == 1)
2257 return FW_MSG_CODE_DRV_LOAD_PORT;
2258 else
2259 return FW_MSG_CODE_DRV_LOAD_FUNCTION;
2260}
2261
2262/* mark PMF if applicable */
2263static void bnx2x_nic_load_pmf(struct bnx2x *bp, u32 load_code)
2264{
2265 if ((load_code == FW_MSG_CODE_DRV_LOAD_COMMON) ||
2266 (load_code == FW_MSG_CODE_DRV_LOAD_COMMON_CHIP) ||
2267 (load_code == FW_MSG_CODE_DRV_LOAD_PORT)) {
2268 bp->port.pmf = 1;
2269 /* We need the barrier to ensure the ordering between the
2270 * writing to bp->port.pmf here and reading it from the
2271 * bnx2x_periodic_task().
2272 */
2273 smp_mb();
2274 } else {
2275 bp->port.pmf = 0;
2276 }
2277
2278 DP(NETIF_MSG_LINK, "pmf %d\n", bp->port.pmf);
2279}
2280
2281static void bnx2x_nic_load_afex_dcc(struct bnx2x *bp, int load_code)
2282{
2283 if (((load_code == FW_MSG_CODE_DRV_LOAD_COMMON) ||
2284 (load_code == FW_MSG_CODE_DRV_LOAD_COMMON_CHIP)) &&
2285 (bp->common.shmem2_base)) {
2286 if (SHMEM2_HAS(bp, dcc_support))
2287 SHMEM2_WR(bp, dcc_support,
2288 (SHMEM_DCC_SUPPORT_DISABLE_ENABLE_PF_TLV |
2289 SHMEM_DCC_SUPPORT_BANDWIDTH_ALLOCATION_TLV));
2290 if (SHMEM2_HAS(bp, afex_driver_support))
2291 SHMEM2_WR(bp, afex_driver_support,
2292 SHMEM_AFEX_SUPPORTED_VERSION_ONE);
2293 }
2294
2295 /* Set AFEX default VLAN tag to an invalid value */
2296 bp->afex_def_vlan_tag = -1;
Yuval Mintz452427b2012-03-26 20:47:07 +00002297}
2298
Eric Dumazet1191cb82012-04-27 21:39:21 +00002299/**
2300 * bnx2x_bz_fp - zero content of the fastpath structure.
2301 *
2302 * @bp: driver handle
2303 * @index: fastpath index to be zeroed
2304 *
2305 * Makes sure the contents of the bp->fp[index].napi is kept
2306 * intact.
2307 */
2308static void bnx2x_bz_fp(struct bnx2x *bp, int index)
2309{
2310 struct bnx2x_fastpath *fp = &bp->fp[index];
Barak Witkowski15192a82012-06-19 07:48:28 +00002311
Merav Sicron65565882012-06-19 07:48:26 +00002312 int cos;
Eric Dumazet1191cb82012-04-27 21:39:21 +00002313 struct napi_struct orig_napi = fp->napi;
Barak Witkowski15192a82012-06-19 07:48:28 +00002314 struct bnx2x_agg_info *orig_tpa_info = fp->tpa_info;
Eric Dumazet1191cb82012-04-27 21:39:21 +00002315 /* bzero bnx2x_fastpath contents */
Dmitry Kravkovc3146eb2013-01-23 03:21:48 +00002316 if (fp->tpa_info)
2317 memset(fp->tpa_info, 0, ETH_MAX_AGGREGATION_QUEUES_E1H_E2 *
2318 sizeof(struct bnx2x_agg_info));
2319 memset(fp, 0, sizeof(*fp));
Eric Dumazet1191cb82012-04-27 21:39:21 +00002320
2321 /* Restore the NAPI object as it has been already initialized */
2322 fp->napi = orig_napi;
Barak Witkowski15192a82012-06-19 07:48:28 +00002323 fp->tpa_info = orig_tpa_info;
Eric Dumazet1191cb82012-04-27 21:39:21 +00002324 fp->bp = bp;
2325 fp->index = index;
2326 if (IS_ETH_FP(fp))
2327 fp->max_cos = bp->max_cos;
2328 else
2329 /* Special queues support only one CoS */
2330 fp->max_cos = 1;
2331
Merav Sicron65565882012-06-19 07:48:26 +00002332 /* Init txdata pointers */
Merav Sicron65565882012-06-19 07:48:26 +00002333 if (IS_FCOE_FP(fp))
2334 fp->txdata_ptr[0] = &bp->bnx2x_txq[FCOE_TXQ_IDX(bp)];
Merav Sicron65565882012-06-19 07:48:26 +00002335 if (IS_ETH_FP(fp))
2336 for_each_cos_in_tx_queue(fp, cos)
2337 fp->txdata_ptr[cos] = &bp->bnx2x_txq[cos *
2338 BNX2X_NUM_ETH_QUEUES(bp) + index];
2339
Eric Dumazet1191cb82012-04-27 21:39:21 +00002340 /*
2341 * set the tpa flag for each queue. The tpa flag determines the queue
2342 * minimal size so it must be set prior to queue memory allocation
2343 */
2344 fp->disable_tpa = !(bp->flags & TPA_ENABLE_FLAG ||
2345 (bp->flags & GRO_ENABLE_FLAG &&
2346 bnx2x_mtu_allows_gro(bp->dev->mtu)));
2347 if (bp->flags & TPA_ENABLE_FLAG)
2348 fp->mode = TPA_MODE_LRO;
2349 else if (bp->flags & GRO_ENABLE_FLAG)
2350 fp->mode = TPA_MODE_GRO;
2351
Eric Dumazet1191cb82012-04-27 21:39:21 +00002352 /* We don't want TPA on an FCoE L2 ring */
2353 if (IS_FCOE_FP(fp))
2354 fp->disable_tpa = 1;
Merav Sicron55c11942012-11-07 00:45:48 +00002355}
2356
2357int bnx2x_load_cnic(struct bnx2x *bp)
2358{
2359 int i, rc, port = BP_PORT(bp);
2360
2361 DP(NETIF_MSG_IFUP, "Starting CNIC-related load\n");
2362
2363 mutex_init(&bp->cnic_mutex);
2364
Ariel Eliorad5afc82013-01-01 05:22:26 +00002365 if (IS_PF(bp)) {
2366 rc = bnx2x_alloc_mem_cnic(bp);
2367 if (rc) {
2368 BNX2X_ERR("Unable to allocate bp memory for cnic\n");
2369 LOAD_ERROR_EXIT_CNIC(bp, load_error_cnic0);
2370 }
Merav Sicron55c11942012-11-07 00:45:48 +00002371 }
2372
2373 rc = bnx2x_alloc_fp_mem_cnic(bp);
2374 if (rc) {
2375 BNX2X_ERR("Unable to allocate memory for cnic fps\n");
2376 LOAD_ERROR_EXIT_CNIC(bp, load_error_cnic0);
2377 }
2378
2379 /* Update the number of queues with the cnic queues */
2380 rc = bnx2x_set_real_num_queues(bp, 1);
2381 if (rc) {
2382 BNX2X_ERR("Unable to set real_num_queues including cnic\n");
2383 LOAD_ERROR_EXIT_CNIC(bp, load_error_cnic0);
2384 }
2385
2386 /* Add all CNIC NAPI objects */
2387 bnx2x_add_all_napi_cnic(bp);
2388 DP(NETIF_MSG_IFUP, "cnic napi added\n");
2389 bnx2x_napi_enable_cnic(bp);
2390
2391 rc = bnx2x_init_hw_func_cnic(bp);
2392 if (rc)
2393 LOAD_ERROR_EXIT_CNIC(bp, load_error_cnic1);
2394
2395 bnx2x_nic_init_cnic(bp);
2396
Ariel Eliorad5afc82013-01-01 05:22:26 +00002397 if (IS_PF(bp)) {
2398 /* Enable Timer scan */
2399 REG_WR(bp, TM_REG_EN_LINEAR0_TIMER + port*4, 1);
Merav Sicron55c11942012-11-07 00:45:48 +00002400
Ariel Eliorad5afc82013-01-01 05:22:26 +00002401 /* setup cnic queues */
2402 for_each_cnic_queue(bp, i) {
2403 rc = bnx2x_setup_queue(bp, &bp->fp[i], 0);
2404 if (rc) {
2405 BNX2X_ERR("Queue setup failed\n");
2406 LOAD_ERROR_EXIT(bp, load_error_cnic2);
2407 }
Merav Sicron55c11942012-11-07 00:45:48 +00002408 }
2409 }
2410
2411 /* Initialize Rx filter. */
2412 netif_addr_lock_bh(bp->dev);
2413 bnx2x_set_rx_mode(bp->dev);
2414 netif_addr_unlock_bh(bp->dev);
2415
2416 /* re-read iscsi info */
2417 bnx2x_get_iscsi_info(bp);
2418 bnx2x_setup_cnic_irq_info(bp);
2419 bnx2x_setup_cnic_info(bp);
2420 bp->cnic_loaded = true;
2421 if (bp->state == BNX2X_STATE_OPEN)
2422 bnx2x_cnic_notify(bp, CNIC_CTL_START_CMD);
2423
2424
2425 DP(NETIF_MSG_IFUP, "Ending successfully CNIC-related load\n");
2426
2427 return 0;
2428
2429#ifndef BNX2X_STOP_ON_ERROR
2430load_error_cnic2:
2431 /* Disable Timer scan */
2432 REG_WR(bp, TM_REG_EN_LINEAR0_TIMER + port*4, 0);
2433
2434load_error_cnic1:
2435 bnx2x_napi_disable_cnic(bp);
2436 /* Update the number of queues without the cnic queues */
2437 rc = bnx2x_set_real_num_queues(bp, 0);
2438 if (rc)
2439 BNX2X_ERR("Unable to set real_num_queues not including cnic\n");
2440load_error_cnic0:
2441 BNX2X_ERR("CNIC-related load failed\n");
2442 bnx2x_free_fp_mem_cnic(bp);
2443 bnx2x_free_mem_cnic(bp);
2444 return rc;
2445#endif /* ! BNX2X_STOP_ON_ERROR */
Eric Dumazet1191cb82012-04-27 21:39:21 +00002446}
2447
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00002448/* must be called with rtnl_lock */
2449int bnx2x_nic_load(struct bnx2x *bp, int load_mode)
2450{
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03002451 int port = BP_PORT(bp);
Ariel Eliorad5afc82013-01-01 05:22:26 +00002452 int i, rc = 0, load_code = 0;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00002453
Merav Sicron55c11942012-11-07 00:45:48 +00002454 DP(NETIF_MSG_IFUP, "Starting NIC load\n");
2455 DP(NETIF_MSG_IFUP,
2456 "CNIC is %s\n", CNIC_ENABLED(bp) ? "enabled" : "disabled");
2457
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00002458#ifdef BNX2X_STOP_ON_ERROR
Merav Sicron51c1a582012-03-18 10:33:38 +00002459 if (unlikely(bp->panic)) {
2460 BNX2X_ERR("Can't load NIC when there is panic\n");
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00002461 return -EPERM;
Merav Sicron51c1a582012-03-18 10:33:38 +00002462 }
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00002463#endif
2464
2465 bp->state = BNX2X_STATE_OPENING_WAIT4_LOAD;
2466
Vladislav Zolotarov2ae17f62011-05-04 23:48:23 +00002467 memset(&bp->last_reported_link, 0, sizeof(bp->last_reported_link));
2468 __set_bit(BNX2X_LINK_REPORT_LINK_DOWN,
2469 &bp->last_reported_link.link_report_flags);
Vladislav Zolotarov2ae17f62011-05-04 23:48:23 +00002470
Ariel Eliorad5afc82013-01-01 05:22:26 +00002471 if (IS_PF(bp))
2472 /* must be called before memory allocation and HW init */
2473 bnx2x_ilt_set_info(bp);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00002474
Ariel Elior6383c0b2011-07-14 08:31:57 +00002475 /*
2476 * Zero fastpath structures preserving invariants like napi, which are
2477 * allocated only once, fp index, max_cos, bp pointer.
Merav Sicron65565882012-06-19 07:48:26 +00002478 * Also set fp->disable_tpa and txdata_ptr.
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +00002479 */
Merav Sicron51c1a582012-03-18 10:33:38 +00002480 DP(NETIF_MSG_IFUP, "num queues: %d", bp->num_queues);
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +00002481 for_each_queue(bp, i)
2482 bnx2x_bz_fp(bp, i);
Merav Sicron55c11942012-11-07 00:45:48 +00002483 memset(bp->bnx2x_txq, 0, (BNX2X_MAX_RSS_COUNT(bp) * BNX2X_MULTI_TX_COS +
2484 bp->num_cnic_queues) *
2485 sizeof(struct bnx2x_fp_txdata));
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +00002486
Merav Sicron55c11942012-11-07 00:45:48 +00002487 bp->fcoe_init = false;
Ariel Elior6383c0b2011-07-14 08:31:57 +00002488
Vladislav Zolotarova8c94b92011-02-06 11:21:02 -08002489 /* Set the receive queues buffer size */
2490 bnx2x_set_rx_buf_size(bp);
2491
Ariel Eliorad5afc82013-01-01 05:22:26 +00002492 if (IS_PF(bp)) {
2493 rc = bnx2x_alloc_mem(bp);
2494 if (rc) {
2495 BNX2X_ERR("Unable to allocate bp memory\n");
2496 return rc;
2497 }
2498 }
2499
2500 /* Allocated memory for FW statistics */
2501 if (bnx2x_alloc_fw_stats_mem(bp))
2502 LOAD_ERROR_EXIT(bp, load_error0);
2503
2504 /* need to be done after alloc mem, since it's self adjusting to amount
2505 * of memory available for RSS queues
2506 */
2507 rc = bnx2x_alloc_fp_mem(bp);
2508 if (rc) {
2509 BNX2X_ERR("Unable to allocate memory for fps\n");
2510 LOAD_ERROR_EXIT(bp, load_error0);
2511 }
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +00002512
Ariel Elior8d9ac292013-01-01 05:22:27 +00002513 /* request pf to initialize status blocks */
2514 if (IS_VF(bp)) {
2515 rc = bnx2x_vfpf_init(bp);
2516 if (rc)
2517 LOAD_ERROR_EXIT(bp, load_error0);
2518 }
2519
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +00002520 /* As long as bnx2x_alloc_mem() may possibly update
2521 * bp->num_queues, bnx2x_set_real_num_queues() should always
Merav Sicron55c11942012-11-07 00:45:48 +00002522 * come after it. At this stage cnic queues are not counted.
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +00002523 */
Merav Sicron55c11942012-11-07 00:45:48 +00002524 rc = bnx2x_set_real_num_queues(bp, 0);
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +00002525 if (rc) {
2526 BNX2X_ERR("Unable to set real_num_queues\n");
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03002527 LOAD_ERROR_EXIT(bp, load_error0);
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +00002528 }
2529
Ariel Elior6383c0b2011-07-14 08:31:57 +00002530 /* configure multi cos mappings in kernel.
2531 * this configuration may be overriden by a multi class queue discipline
2532 * or by a dcbx negotiation result.
2533 */
2534 bnx2x_setup_tc(bp->dev, bp->max_cos);
2535
Merav Sicron26614ba2012-08-27 03:26:19 +00002536 /* Add all NAPI objects */
2537 bnx2x_add_all_napi(bp);
Merav Sicron55c11942012-11-07 00:45:48 +00002538 DP(NETIF_MSG_IFUP, "napi added\n");
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00002539 bnx2x_napi_enable(bp);
2540
Ariel Eliorad5afc82013-01-01 05:22:26 +00002541 if (IS_PF(bp)) {
2542 /* set pf load just before approaching the MCP */
2543 bnx2x_set_pf_load(bp);
Ariel Elior889b9af2012-01-26 06:01:51 +00002544
Ariel Eliorad5afc82013-01-01 05:22:26 +00002545 /* if mcp exists send load request and analyze response */
2546 if (!BP_NOMCP(bp)) {
2547 /* attempt to load pf */
2548 rc = bnx2x_nic_load_request(bp, &load_code);
2549 if (rc)
2550 LOAD_ERROR_EXIT(bp, load_error1);
Ariel Elior95c6c6162012-01-26 06:01:52 +00002551
Ariel Eliorad5afc82013-01-01 05:22:26 +00002552 /* what did mcp say? */
2553 rc = bnx2x_nic_load_analyze_req(bp, load_code);
2554 if (rc) {
2555 bnx2x_fw_command(bp, DRV_MSG_CODE_LOAD_DONE, 0);
Ariel Eliord1e2d962012-01-26 06:01:49 +00002556 LOAD_ERROR_EXIT(bp, load_error2);
2557 }
Ariel Eliorad5afc82013-01-01 05:22:26 +00002558 } else {
2559 load_code = bnx2x_nic_load_no_mcp(bp, port);
Ariel Eliord1e2d962012-01-26 06:01:49 +00002560 }
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00002561
Ariel Eliorad5afc82013-01-01 05:22:26 +00002562 /* mark pmf if applicable */
2563 bnx2x_nic_load_pmf(bp, load_code);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00002564
Ariel Eliorad5afc82013-01-01 05:22:26 +00002565 /* Init Function state controlling object */
2566 bnx2x__init_func_obj(bp);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00002567
Ariel Eliorad5afc82013-01-01 05:22:26 +00002568 /* Initialize HW */
2569 rc = bnx2x_init_hw(bp, load_code);
2570 if (rc) {
2571 BNX2X_ERR("HW init failed, aborting\n");
2572 bnx2x_fw_command(bp, DRV_MSG_CODE_LOAD_DONE, 0);
2573 LOAD_ERROR_EXIT(bp, load_error2);
2574 }
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00002575 }
2576
Dmitry Kravkovd6214d72010-10-06 03:32:10 +00002577 /* Connect to IRQs */
2578 rc = bnx2x_setup_irqs(bp);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00002579 if (rc) {
Ariel Eliorad5afc82013-01-01 05:22:26 +00002580 BNX2X_ERR("setup irqs failed\n");
2581 if (IS_PF(bp))
2582 bnx2x_fw_command(bp, DRV_MSG_CODE_LOAD_DONE, 0);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03002583 LOAD_ERROR_EXIT(bp, load_error2);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00002584 }
2585
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00002586 /* Setup NIC internals and enable interrupts */
2587 bnx2x_nic_init(bp, load_code);
2588
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03002589 /* Init per-function objects */
Ariel Eliorad5afc82013-01-01 05:22:26 +00002590 if (IS_PF(bp)) {
2591 bnx2x_init_bp_objs(bp);
Ariel Eliorb56e9672013-01-01 05:22:32 +00002592 bnx2x_iov_nic_init(bp);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03002593
Ariel Eliorad5afc82013-01-01 05:22:26 +00002594 /* Set AFEX default VLAN tag to an invalid value */
2595 bp->afex_def_vlan_tag = -1;
2596 bnx2x_nic_load_afex_dcc(bp, load_code);
2597 bp->state = BNX2X_STATE_OPENING_WAIT4_PORT;
2598 rc = bnx2x_func_start(bp);
Merav Sicron51c1a582012-03-18 10:33:38 +00002599 if (rc) {
Ariel Eliorad5afc82013-01-01 05:22:26 +00002600 BNX2X_ERR("Function start failed!\n");
2601 bnx2x_fw_command(bp, DRV_MSG_CODE_LOAD_DONE, 0);
2602
Merav Sicron55c11942012-11-07 00:45:48 +00002603 LOAD_ERROR_EXIT(bp, load_error3);
Merav Sicron51c1a582012-03-18 10:33:38 +00002604 }
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00002605
Ariel Eliorad5afc82013-01-01 05:22:26 +00002606 /* Send LOAD_DONE command to MCP */
2607 if (!BP_NOMCP(bp)) {
2608 load_code = bnx2x_fw_command(bp,
2609 DRV_MSG_CODE_LOAD_DONE, 0);
2610 if (!load_code) {
2611 BNX2X_ERR("MCP response failure, aborting\n");
2612 rc = -EBUSY;
2613 LOAD_ERROR_EXIT(bp, load_error3);
2614 }
2615 }
2616
Ariel Elior0c14e5c2013-04-17 22:49:06 +00002617 /* initialize FW coalescing state machines in RAM */
2618 bnx2x_update_coalesce(bp);
2619
Ariel Eliorad5afc82013-01-01 05:22:26 +00002620 /* setup the leading queue */
2621 rc = bnx2x_setup_leading(bp);
2622 if (rc) {
2623 BNX2X_ERR("Setup leading failed!\n");
2624 LOAD_ERROR_EXIT(bp, load_error3);
2625 }
2626
2627 /* set up the rest of the queues */
2628 for_each_nondefault_eth_queue(bp, i) {
2629 rc = bnx2x_setup_queue(bp, &bp->fp[i], 0);
2630 if (rc) {
2631 BNX2X_ERR("Queue setup failed\n");
2632 LOAD_ERROR_EXIT(bp, load_error3);
2633 }
2634 }
2635
2636 /* setup rss */
2637 rc = bnx2x_init_rss_pf(bp);
2638 if (rc) {
2639 BNX2X_ERR("PF RSS init failed\n");
2640 LOAD_ERROR_EXIT(bp, load_error3);
2641 }
Ariel Elior8d9ac292013-01-01 05:22:27 +00002642
2643 } else { /* vf */
2644 for_each_eth_queue(bp, i) {
2645 rc = bnx2x_vfpf_setup_q(bp, i);
2646 if (rc) {
2647 BNX2X_ERR("Queue setup failed\n");
2648 LOAD_ERROR_EXIT(bp, load_error3);
2649 }
2650 }
Merav Sicron51c1a582012-03-18 10:33:38 +00002651 }
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03002652
Dmitry Kravkov523224a2010-10-06 03:23:26 +00002653 /* Now when Clients are configured we are ready to work */
2654 bp->state = BNX2X_STATE_OPEN;
2655
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03002656 /* Configure a ucast MAC */
Ariel Eliorad5afc82013-01-01 05:22:26 +00002657 if (IS_PF(bp))
2658 rc = bnx2x_set_eth_mac(bp, true);
Ariel Elior8d9ac292013-01-01 05:22:27 +00002659 else /* vf */
2660 rc = bnx2x_vfpf_set_mac(bp);
Merav Sicron51c1a582012-03-18 10:33:38 +00002661 if (rc) {
2662 BNX2X_ERR("Setting Ethernet MAC failed\n");
Merav Sicron55c11942012-11-07 00:45:48 +00002663 LOAD_ERROR_EXIT(bp, load_error3);
Merav Sicron51c1a582012-03-18 10:33:38 +00002664 }
Vladislav Zolotarov6e30dd42011-02-06 11:25:41 -08002665
Ariel Eliorad5afc82013-01-01 05:22:26 +00002666 if (IS_PF(bp) && bp->pending_max) {
Dmitry Kravkove3835b92011-03-06 10:50:44 +00002667 bnx2x_update_max_mf_config(bp, bp->pending_max);
2668 bp->pending_max = 0;
2669 }
2670
Ariel Eliorad5afc82013-01-01 05:22:26 +00002671 if (bp->port.pmf) {
2672 rc = bnx2x_initial_phy_init(bp, load_mode);
2673 if (rc)
2674 LOAD_ERROR_EXIT(bp, load_error3);
2675 }
Barak Witkowskic63da992012-12-05 23:04:03 +00002676 bp->link_params.feature_config_flags &= ~FEATURE_CONFIG_BOOT_FROM_SAN;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00002677
2678 /* Start fast path */
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03002679
2680 /* Initialize Rx filter. */
2681 netif_addr_lock_bh(bp->dev);
2682 bnx2x_set_rx_mode(bp->dev);
2683 netif_addr_unlock_bh(bp->dev);
2684
2685 /* Start the Tx */
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00002686 switch (load_mode) {
2687 case LOAD_NORMAL:
Dmitry Kravkov523224a2010-10-06 03:23:26 +00002688 /* Tx queue should be only reenabled */
2689 netif_tx_wake_all_queues(bp->dev);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00002690 break;
2691
2692 case LOAD_OPEN:
2693 netif_tx_start_all_queues(bp->dev);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00002694 smp_mb__after_clear_bit();
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00002695 break;
2696
2697 case LOAD_DIAG:
Merav Sicron8970b2e2012-06-19 07:48:22 +00002698 case LOAD_LOOPBACK_EXT:
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00002699 bp->state = BNX2X_STATE_DIAG;
2700 break;
2701
2702 default:
2703 break;
2704 }
2705
Dmitry Kravkov00253a82011-11-13 04:34:25 +00002706 if (bp->port.pmf)
Barak Witkowski4c704892012-12-02 04:05:47 +00002707 bnx2x_update_drv_flags(bp, 1 << DRV_FLAGS_PORT_MASK, 0);
Dmitry Kravkov00253a82011-11-13 04:34:25 +00002708 else
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00002709 bnx2x__link_status_update(bp);
2710
2711 /* start the timer */
2712 mod_timer(&bp->timer, jiffies + bp->current_interval);
2713
Merav Sicron55c11942012-11-07 00:45:48 +00002714 if (CNIC_ENABLED(bp))
2715 bnx2x_load_cnic(bp);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00002716
Ariel Eliorad5afc82013-01-01 05:22:26 +00002717 if (IS_PF(bp) && SHMEM2_HAS(bp, drv_capabilities_flag)) {
2718 /* mark driver is loaded in shmem2 */
Yuval Mintz9ce392d2012-03-12 08:53:11 +00002719 u32 val;
2720 val = SHMEM2_RD(bp, drv_capabilities_flag[BP_FW_MB_IDX(bp)]);
2721 SHMEM2_WR(bp, drv_capabilities_flag[BP_FW_MB_IDX(bp)],
2722 val | DRV_FLAGS_CAPABILITIES_LOADED_SUPPORTED |
2723 DRV_FLAGS_CAPABILITIES_LOADED_L2);
2724 }
2725
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03002726 /* Wait for all pending SP commands to complete */
Ariel Eliorad5afc82013-01-01 05:22:26 +00002727 if (IS_PF(bp) && !bnx2x_wait_sp_comp(bp, ~0x0UL)) {
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03002728 BNX2X_ERR("Timeout waiting for SP elements to complete\n");
Yuval Mintz5d07d862012-09-13 02:56:21 +00002729 bnx2x_nic_unload(bp, UNLOAD_CLOSE, false);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03002730 return -EBUSY;
2731 }
Dmitry Kravkov6891dd22010-08-03 21:49:40 +00002732
Barak Witkowski98768792012-06-19 07:48:31 +00002733 /* If PMF - send ADMIN DCBX msg to MFW to initiate DCBX FSM */
2734 if (bp->port.pmf && (bp->state != BNX2X_STATE_DIAG))
2735 bnx2x_dcbx_init(bp, false);
2736
Merav Sicron55c11942012-11-07 00:45:48 +00002737 DP(NETIF_MSG_IFUP, "Ending successfully NIC load\n");
2738
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00002739 return 0;
2740
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03002741#ifndef BNX2X_STOP_ON_ERROR
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00002742load_error3:
Ariel Eliorad5afc82013-01-01 05:22:26 +00002743 if (IS_PF(bp)) {
2744 bnx2x_int_disable_sync(bp, 1);
Dmitry Kravkovd6214d72010-10-06 03:32:10 +00002745
Ariel Eliorad5afc82013-01-01 05:22:26 +00002746 /* Clean queueable objects */
2747 bnx2x_squeeze_objects(bp);
2748 }
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03002749
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00002750 /* Free SKBs, SGEs, TPA pool and driver internals */
2751 bnx2x_free_skbs(bp);
Vladislav Zolotarovec6ba942010-12-13 05:44:01 +00002752 for_each_rx_queue(bp, i)
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00002753 bnx2x_free_rx_sge_range(bp, bp->fp + i, NUM_RX_SGE);
Dmitry Kravkovd6214d72010-10-06 03:32:10 +00002754
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00002755 /* Release IRQs */
Dmitry Kravkovd6214d72010-10-06 03:32:10 +00002756 bnx2x_free_irq(bp);
2757load_error2:
Ariel Eliorad5afc82013-01-01 05:22:26 +00002758 if (IS_PF(bp) && !BP_NOMCP(bp)) {
Dmitry Kravkovd6214d72010-10-06 03:32:10 +00002759 bnx2x_fw_command(bp, DRV_MSG_CODE_UNLOAD_REQ_WOL_MCP, 0);
2760 bnx2x_fw_command(bp, DRV_MSG_CODE_UNLOAD_DONE, 0);
2761 }
2762
2763 bp->port.pmf = 0;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00002764load_error1:
2765 bnx2x_napi_disable(bp);
Michal Schmidt722c6f52013-03-15 05:27:54 +00002766 bnx2x_del_all_napi(bp);
Ariel Eliorad5afc82013-01-01 05:22:26 +00002767
Ariel Elior889b9af2012-01-26 06:01:51 +00002768 /* clear pf_load status, as it was already set */
Ariel Eliorad5afc82013-01-01 05:22:26 +00002769 if (IS_PF(bp))
2770 bnx2x_clear_pf_load(bp);
Dmitry Kravkovd6214d72010-10-06 03:32:10 +00002771load_error0:
Ariel Eliorad5afc82013-01-01 05:22:26 +00002772 bnx2x_free_fp_mem(bp);
2773 bnx2x_free_fw_stats_mem(bp);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00002774 bnx2x_free_mem(bp);
2775
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00002776 return rc;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03002777#endif /* ! BNX2X_STOP_ON_ERROR */
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00002778}
2779
Ariel Eliorad5afc82013-01-01 05:22:26 +00002780static int bnx2x_drain_tx_queues(struct bnx2x *bp)
2781{
2782 u8 rc = 0, cos, i;
2783
2784 /* Wait until tx fastpath tasks complete */
2785 for_each_tx_queue(bp, i) {
2786 struct bnx2x_fastpath *fp = &bp->fp[i];
2787
2788 for_each_cos_in_tx_queue(fp, cos)
2789 rc = bnx2x_clean_tx_queue(bp, fp->txdata_ptr[cos]);
2790 if (rc)
2791 return rc;
2792 }
2793 return 0;
2794}
2795
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00002796/* must be called with rtnl_lock */
Yuval Mintz5d07d862012-09-13 02:56:21 +00002797int bnx2x_nic_unload(struct bnx2x *bp, int unload_mode, bool keep_link)
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00002798{
2799 int i;
Vladislav Zolotarovc9ee9202011-06-14 01:33:51 +00002800 bool global = false;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00002801
Merav Sicron55c11942012-11-07 00:45:48 +00002802 DP(NETIF_MSG_IFUP, "Starting NIC unload\n");
2803
Yuval Mintz9ce392d2012-03-12 08:53:11 +00002804 /* mark driver is unloaded in shmem2 */
Ariel Eliorad5afc82013-01-01 05:22:26 +00002805 if (IS_PF(bp) && SHMEM2_HAS(bp, drv_capabilities_flag)) {
Yuval Mintz9ce392d2012-03-12 08:53:11 +00002806 u32 val;
2807 val = SHMEM2_RD(bp, drv_capabilities_flag[BP_FW_MB_IDX(bp)]);
2808 SHMEM2_WR(bp, drv_capabilities_flag[BP_FW_MB_IDX(bp)],
2809 val & ~DRV_FLAGS_CAPABILITIES_LOADED_L2);
2810 }
2811
Yuval Mintz80bfe5c2013-01-23 03:21:49 +00002812 if (IS_PF(bp) && bp->recovery_state != BNX2X_RECOVERY_DONE &&
Ariel Eliorad5afc82013-01-01 05:22:26 +00002813 (bp->state == BNX2X_STATE_CLOSED ||
2814 bp->state == BNX2X_STATE_ERROR)) {
Vladislav Zolotarovc9ee9202011-06-14 01:33:51 +00002815 /* We can get here if the driver has been unloaded
2816 * during parity error recovery and is either waiting for a
2817 * leader to complete or for other functions to unload and
2818 * then ifdown has been issued. In this case we want to
2819 * unload and let other functions to complete a recovery
2820 * process.
2821 */
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00002822 bp->recovery_state = BNX2X_RECOVERY_DONE;
2823 bp->is_leader = 0;
Vladislav Zolotarovc9ee9202011-06-14 01:33:51 +00002824 bnx2x_release_leader_lock(bp);
2825 smp_mb();
2826
Merav Sicron51c1a582012-03-18 10:33:38 +00002827 DP(NETIF_MSG_IFDOWN, "Releasing a leadership...\n");
2828 BNX2X_ERR("Can't unload in closed or error state\n");
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00002829 return -EINVAL;
2830 }
2831
Yuval Mintz80bfe5c2013-01-23 03:21:49 +00002832 /* Nothing to do during unload if previous bnx2x_nic_load()
2833 * have not completed succesfully - all resourses are released.
2834 *
2835 * we can get here only after unsuccessful ndo_* callback, during which
2836 * dev->IFF_UP flag is still on.
2837 */
2838 if (bp->state == BNX2X_STATE_CLOSED || bp->state == BNX2X_STATE_ERROR)
2839 return 0;
2840
2841 /* It's important to set the bp->state to the value different from
Vladislav Zolotarov87b7ba32011-08-02 01:35:43 -07002842 * BNX2X_STATE_OPEN and only then stop the Tx. Otherwise bnx2x_tx_int()
2843 * may restart the Tx from the NAPI context (see bnx2x_tx_int()).
2844 */
2845 bp->state = BNX2X_STATE_CLOSING_WAIT4_HALT;
2846 smp_mb();
2847
Merav Sicron55c11942012-11-07 00:45:48 +00002848 if (CNIC_LOADED(bp))
2849 bnx2x_cnic_notify(bp, CNIC_CTL_STOP_CMD);
2850
Vladislav Zolotarov9505ee32011-07-19 01:39:41 +00002851 /* Stop Tx */
2852 bnx2x_tx_disable(bp);
Merav Sicron65565882012-06-19 07:48:26 +00002853 netdev_reset_tc(bp->dev);
Vladislav Zolotarov9505ee32011-07-19 01:39:41 +00002854
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00002855 bp->rx_mode = BNX2X_RX_MODE_NONE;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00002856
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00002857 del_timer_sync(&bp->timer);
Dmitry Kravkovf85582f2010-10-06 03:34:21 +00002858
Ariel Eliorad5afc82013-01-01 05:22:26 +00002859 if (IS_PF(bp)) {
2860 /* Set ALWAYS_ALIVE bit in shmem */
2861 bp->fw_drv_pulse_wr_seq |= DRV_PULSE_ALWAYS_ALIVE;
2862 bnx2x_drv_pulse(bp);
2863 bnx2x_stats_handle(bp, STATS_EVENT_STOP);
2864 bnx2x_save_statistics(bp);
2865 }
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03002866
Ariel Eliorad5afc82013-01-01 05:22:26 +00002867 /* wait till consumers catch up with producers in all queues */
2868 bnx2x_drain_tx_queues(bp);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00002869
Ariel Elior9b176b62013-01-01 05:22:28 +00002870 /* if VF indicate to PF this function is going down (PF will delete sp
2871 * elements and clear initializations
2872 */
2873 if (IS_VF(bp))
2874 bnx2x_vfpf_close_vf(bp);
2875 else if (unload_mode != UNLOAD_RECOVERY)
2876 /* if this is a normal/close unload need to clean up chip*/
Yuval Mintz5d07d862012-09-13 02:56:21 +00002877 bnx2x_chip_cleanup(bp, unload_mode, keep_link);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00002878 else {
Vladislav Zolotarovc9ee9202011-06-14 01:33:51 +00002879 /* Send the UNLOAD_REQUEST to the MCP */
2880 bnx2x_send_unload_req(bp, unload_mode);
2881
2882 /*
2883 * Prevent transactions to host from the functions on the
2884 * engine that doesn't reset global blocks in case of global
2885 * attention once gloabl blocks are reset and gates are opened
2886 * (the engine which leader will perform the recovery
2887 * last).
2888 */
2889 if (!CHIP_IS_E1x(bp))
2890 bnx2x_pf_disable(bp);
2891
2892 /* Disable HW interrupts, NAPI */
Dmitry Kravkov523224a2010-10-06 03:23:26 +00002893 bnx2x_netif_stop(bp, 1);
Merav Sicron26614ba2012-08-27 03:26:19 +00002894 /* Delete all NAPI objects */
2895 bnx2x_del_all_napi(bp);
Merav Sicron55c11942012-11-07 00:45:48 +00002896 if (CNIC_LOADED(bp))
2897 bnx2x_del_all_napi_cnic(bp);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00002898 /* Release IRQs */
Dmitry Kravkovd6214d72010-10-06 03:32:10 +00002899 bnx2x_free_irq(bp);
Vladislav Zolotarovc9ee9202011-06-14 01:33:51 +00002900
2901 /* Report UNLOAD_DONE to MCP */
Yuval Mintz5d07d862012-09-13 02:56:21 +00002902 bnx2x_send_unload_done(bp, false);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00002903 }
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00002904
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03002905 /*
2906 * At this stage no more interrupts will arrive so we may safly clean
2907 * the queueable objects here in case they failed to get cleaned so far.
2908 */
Ariel Eliorad5afc82013-01-01 05:22:26 +00002909 if (IS_PF(bp))
2910 bnx2x_squeeze_objects(bp);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03002911
Vladislav Zolotarov79616892011-07-21 07:58:54 +00002912 /* There should be no more pending SP commands at this stage */
2913 bp->sp_state = 0;
2914
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00002915 bp->port.pmf = 0;
2916
2917 /* Free SKBs, SGEs, TPA pool and driver internals */
2918 bnx2x_free_skbs(bp);
Merav Sicron55c11942012-11-07 00:45:48 +00002919 if (CNIC_LOADED(bp))
2920 bnx2x_free_skbs_cnic(bp);
Vladislav Zolotarovec6ba942010-12-13 05:44:01 +00002921 for_each_rx_queue(bp, i)
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00002922 bnx2x_free_rx_sge_range(bp, bp->fp + i, NUM_RX_SGE);
Dmitry Kravkovd6214d72010-10-06 03:32:10 +00002923
Ariel Eliorad5afc82013-01-01 05:22:26 +00002924 bnx2x_free_fp_mem(bp);
2925 if (CNIC_LOADED(bp))
Merav Sicron55c11942012-11-07 00:45:48 +00002926 bnx2x_free_fp_mem_cnic(bp);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00002927
Ariel Eliorad5afc82013-01-01 05:22:26 +00002928 if (IS_PF(bp)) {
2929 bnx2x_free_mem(bp);
2930 if (CNIC_LOADED(bp))
2931 bnx2x_free_mem_cnic(bp);
2932 }
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00002933 bp->state = BNX2X_STATE_CLOSED;
Merav Sicron55c11942012-11-07 00:45:48 +00002934 bp->cnic_loaded = false;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00002935
Vladislav Zolotarovc9ee9202011-06-14 01:33:51 +00002936 /* Check if there are pending parity attentions. If there are - set
2937 * RECOVERY_IN_PROGRESS.
2938 */
Ariel Eliorad5afc82013-01-01 05:22:26 +00002939 if (IS_PF(bp) && bnx2x_chk_parity_attn(bp, &global, false)) {
Vladislav Zolotarovc9ee9202011-06-14 01:33:51 +00002940 bnx2x_set_reset_in_progress(bp);
2941
2942 /* Set RESET_IS_GLOBAL if needed */
2943 if (global)
2944 bnx2x_set_reset_global(bp);
2945 }
2946
2947
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00002948 /* The last driver must disable a "close the gate" if there is no
2949 * parity attention or "process kill" pending.
2950 */
Ariel Eliorad5afc82013-01-01 05:22:26 +00002951 if (IS_PF(bp) &&
2952 !bnx2x_clear_pf_load(bp) &&
2953 bnx2x_reset_is_done(bp, BP_PATH(bp)))
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00002954 bnx2x_disable_close_the_gate(bp);
2955
Merav Sicron55c11942012-11-07 00:45:48 +00002956 DP(NETIF_MSG_IFUP, "Ending NIC unload\n");
2957
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00002958 return 0;
2959}
Dmitry Kravkovf85582f2010-10-06 03:34:21 +00002960
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00002961int bnx2x_set_power_state(struct bnx2x *bp, pci_power_t state)
2962{
2963 u16 pmcsr;
2964
Dmitry Kravkovadf5f6a2010-10-17 23:10:02 +00002965 /* If there is no power capability, silently succeed */
2966 if (!bp->pm_cap) {
Merav Sicron51c1a582012-03-18 10:33:38 +00002967 BNX2X_DEV_INFO("No power capability. Breaking.\n");
Dmitry Kravkovadf5f6a2010-10-17 23:10:02 +00002968 return 0;
2969 }
2970
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00002971 pci_read_config_word(bp->pdev, bp->pm_cap + PCI_PM_CTRL, &pmcsr);
2972
2973 switch (state) {
2974 case PCI_D0:
2975 pci_write_config_word(bp->pdev, bp->pm_cap + PCI_PM_CTRL,
2976 ((pmcsr & ~PCI_PM_CTRL_STATE_MASK) |
2977 PCI_PM_CTRL_PME_STATUS));
2978
2979 if (pmcsr & PCI_PM_CTRL_STATE_MASK)
2980 /* delay required during transition out of D3hot */
2981 msleep(20);
2982 break;
2983
2984 case PCI_D3hot:
2985 /* If there are other clients above don't
2986 shut down the power */
2987 if (atomic_read(&bp->pdev->enable_cnt) != 1)
2988 return 0;
2989 /* Don't shut down the power for emulation and FPGA */
2990 if (CHIP_REV_IS_SLOW(bp))
2991 return 0;
2992
2993 pmcsr &= ~PCI_PM_CTRL_STATE_MASK;
2994 pmcsr |= 3;
2995
2996 if (bp->wol)
2997 pmcsr |= PCI_PM_CTRL_PME_ENABLE;
2998
2999 pci_write_config_word(bp->pdev, bp->pm_cap + PCI_PM_CTRL,
3000 pmcsr);
3001
3002 /* No more memory access after this point until
3003 * device is brought back to D0.
3004 */
3005 break;
3006
3007 default:
Merav Sicron51c1a582012-03-18 10:33:38 +00003008 dev_err(&bp->pdev->dev, "Can't support state = %d\n", state);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003009 return -EINVAL;
3010 }
3011 return 0;
3012}
3013
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003014/*
3015 * net_device service functions
3016 */
Dmitry Kravkovd6214d72010-10-06 03:32:10 +00003017int bnx2x_poll(struct napi_struct *napi, int budget)
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003018{
3019 int work_done = 0;
Ariel Elior6383c0b2011-07-14 08:31:57 +00003020 u8 cos;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003021 struct bnx2x_fastpath *fp = container_of(napi, struct bnx2x_fastpath,
3022 napi);
3023 struct bnx2x *bp = fp->bp;
3024
3025 while (1) {
3026#ifdef BNX2X_STOP_ON_ERROR
3027 if (unlikely(bp->panic)) {
3028 napi_complete(napi);
3029 return 0;
3030 }
3031#endif
3032
Ariel Elior6383c0b2011-07-14 08:31:57 +00003033 for_each_cos_in_tx_queue(fp, cos)
Merav Sicron65565882012-06-19 07:48:26 +00003034 if (bnx2x_tx_queue_has_work(fp->txdata_ptr[cos]))
3035 bnx2x_tx_int(bp, fp->txdata_ptr[cos]);
Ariel Elior6383c0b2011-07-14 08:31:57 +00003036
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003037 if (bnx2x_has_rx_work(fp)) {
3038 work_done += bnx2x_rx_int(fp, budget - work_done);
3039
3040 /* must not complete if we consumed full budget */
3041 if (work_done >= budget)
3042 break;
3043 }
3044
3045 /* Fall out from the NAPI loop if needed */
3046 if (!(bnx2x_has_rx_work(fp) || bnx2x_has_tx_work(fp))) {
Merav Sicron55c11942012-11-07 00:45:48 +00003047
Vladislav Zolotarovec6ba942010-12-13 05:44:01 +00003048 /* No need to update SB for FCoE L2 ring as long as
3049 * it's connected to the default SB and the SB
3050 * has been updated when NAPI was scheduled.
3051 */
3052 if (IS_FCOE_FP(fp)) {
3053 napi_complete(napi);
3054 break;
3055 }
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003056 bnx2x_update_fpsb_idx(fp);
Dmitry Kravkovf85582f2010-10-06 03:34:21 +00003057 /* bnx2x_has_rx_work() reads the status block,
3058 * thus we need to ensure that status block indices
3059 * have been actually read (bnx2x_update_fpsb_idx)
3060 * prior to this check (bnx2x_has_rx_work) so that
3061 * we won't write the "newer" value of the status block
3062 * to IGU (if there was a DMA right after
3063 * bnx2x_has_rx_work and if there is no rmb, the memory
3064 * reading (bnx2x_update_fpsb_idx) may be postponed
3065 * to right before bnx2x_ack_sb). In this case there
3066 * will never be another interrupt until there is
3067 * another update of the status block, while there
3068 * is still unhandled work.
3069 */
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003070 rmb();
3071
3072 if (!(bnx2x_has_rx_work(fp) || bnx2x_has_tx_work(fp))) {
3073 napi_complete(napi);
3074 /* Re-enable interrupts */
Merav Sicron51c1a582012-03-18 10:33:38 +00003075 DP(NETIF_MSG_RX_STATUS,
Dmitry Kravkov523224a2010-10-06 03:23:26 +00003076 "Update index to %d\n", fp->fp_hc_idx);
3077 bnx2x_ack_sb(bp, fp->igu_sb_id, USTORM_ID,
3078 le16_to_cpu(fp->fp_hc_idx),
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003079 IGU_INT_ENABLE, 1);
3080 break;
3081 }
3082 }
3083 }
3084
3085 return work_done;
3086}
3087
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003088/* we split the first BD into headers and data BDs
3089 * to ease the pain of our fellow microcode engineers
3090 * we use one mapping for both BDs
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003091 */
3092static noinline u16 bnx2x_tx_split(struct bnx2x *bp,
Ariel Elior6383c0b2011-07-14 08:31:57 +00003093 struct bnx2x_fp_txdata *txdata,
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003094 struct sw_tx_bd *tx_buf,
3095 struct eth_tx_start_bd **tx_bd, u16 hlen,
3096 u16 bd_prod, int nbd)
3097{
3098 struct eth_tx_start_bd *h_tx_bd = *tx_bd;
3099 struct eth_tx_bd *d_tx_bd;
3100 dma_addr_t mapping;
3101 int old_len = le16_to_cpu(h_tx_bd->nbytes);
3102
3103 /* first fix first BD */
3104 h_tx_bd->nbd = cpu_to_le16(nbd);
3105 h_tx_bd->nbytes = cpu_to_le16(hlen);
3106
Merav Sicron51c1a582012-03-18 10:33:38 +00003107 DP(NETIF_MSG_TX_QUEUED, "TSO split header size is %d (%x:%x) nbd %d\n",
3108 h_tx_bd->nbytes, h_tx_bd->addr_hi, h_tx_bd->addr_lo, h_tx_bd->nbd);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003109
3110 /* now get a new data BD
3111 * (after the pbd) and fill it */
3112 bd_prod = TX_BD(NEXT_TX_IDX(bd_prod));
Ariel Elior6383c0b2011-07-14 08:31:57 +00003113 d_tx_bd = &txdata->tx_desc_ring[bd_prod].reg_bd;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003114
3115 mapping = HILO_U64(le32_to_cpu(h_tx_bd->addr_hi),
3116 le32_to_cpu(h_tx_bd->addr_lo)) + hlen;
3117
3118 d_tx_bd->addr_hi = cpu_to_le32(U64_HI(mapping));
3119 d_tx_bd->addr_lo = cpu_to_le32(U64_LO(mapping));
3120 d_tx_bd->nbytes = cpu_to_le16(old_len - hlen);
3121
3122 /* this marks the BD as one that has no individual mapping */
3123 tx_buf->flags |= BNX2X_TSO_SPLIT_BD;
3124
3125 DP(NETIF_MSG_TX_QUEUED,
3126 "TSO split data size is %d (%x:%x)\n",
3127 d_tx_bd->nbytes, d_tx_bd->addr_hi, d_tx_bd->addr_lo);
3128
3129 /* update tx_bd */
3130 *tx_bd = (struct eth_tx_start_bd *)d_tx_bd;
3131
3132 return bd_prod;
3133}
3134
Yuval Mintz86564c32013-01-23 03:21:50 +00003135#define bswab32(b32) ((__force __le32) swab32((__force __u32) (b32)))
3136#define bswab16(b16) ((__force __le16) swab16((__force __u16) (b16)))
3137static inline __le16 bnx2x_csum_fix(unsigned char *t_header, u16 csum, s8 fix)
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003138{
Yuval Mintz86564c32013-01-23 03:21:50 +00003139 __sum16 tsum = (__force __sum16) csum;
3140
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003141 if (fix > 0)
Yuval Mintz86564c32013-01-23 03:21:50 +00003142 tsum = ~csum_fold(csum_sub((__force __wsum) csum,
3143 csum_partial(t_header - fix, fix, 0)));
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003144
3145 else if (fix < 0)
Yuval Mintz86564c32013-01-23 03:21:50 +00003146 tsum = ~csum_fold(csum_add((__force __wsum) csum,
3147 csum_partial(t_header, -fix, 0)));
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003148
Dmitry Kravkove2593fc2013-02-27 00:04:59 +00003149 return bswab16(tsum);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003150}
3151
3152static inline u32 bnx2x_xmit_type(struct bnx2x *bp, struct sk_buff *skb)
3153{
3154 u32 rc;
3155
3156 if (skb->ip_summed != CHECKSUM_PARTIAL)
3157 rc = XMIT_PLAIN;
3158
3159 else {
Hao Zhengd0d9d8e2010-11-11 13:47:58 +00003160 if (vlan_get_protocol(skb) == htons(ETH_P_IPV6)) {
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003161 rc = XMIT_CSUM_V6;
3162 if (ipv6_hdr(skb)->nexthdr == IPPROTO_TCP)
3163 rc |= XMIT_CSUM_TCP;
3164
3165 } else {
3166 rc = XMIT_CSUM_V4;
3167 if (ip_hdr(skb)->protocol == IPPROTO_TCP)
3168 rc |= XMIT_CSUM_TCP;
3169 }
3170 }
3171
Vladislav Zolotarov5892b9e2010-11-28 00:23:35 +00003172 if (skb_is_gso_v6(skb))
3173 rc |= XMIT_GSO_V6 | XMIT_CSUM_TCP | XMIT_CSUM_V6;
3174 else if (skb_is_gso(skb))
3175 rc |= XMIT_GSO_V4 | XMIT_CSUM_V4 | XMIT_CSUM_TCP;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003176
3177 return rc;
3178}
3179
3180#if (MAX_SKB_FRAGS >= MAX_FETCH_BD - 3)
3181/* check if packet requires linearization (packet is too fragmented)
3182 no need to check fragmentation if page size > 8K (there will be no
3183 violation to FW restrictions) */
3184static int bnx2x_pkt_req_lin(struct bnx2x *bp, struct sk_buff *skb,
3185 u32 xmit_type)
3186{
3187 int to_copy = 0;
3188 int hlen = 0;
3189 int first_bd_sz = 0;
3190
3191 /* 3 = 1 (for linear data BD) + 2 (for PBD and last BD) */
3192 if (skb_shinfo(skb)->nr_frags >= (MAX_FETCH_BD - 3)) {
3193
3194 if (xmit_type & XMIT_GSO) {
3195 unsigned short lso_mss = skb_shinfo(skb)->gso_size;
3196 /* Check if LSO packet needs to be copied:
3197 3 = 1 (for headers BD) + 2 (for PBD and last BD) */
3198 int wnd_size = MAX_FETCH_BD - 3;
3199 /* Number of windows to check */
3200 int num_wnds = skb_shinfo(skb)->nr_frags - wnd_size;
3201 int wnd_idx = 0;
3202 int frag_idx = 0;
3203 u32 wnd_sum = 0;
3204
3205 /* Headers length */
3206 hlen = (int)(skb_transport_header(skb) - skb->data) +
3207 tcp_hdrlen(skb);
3208
3209 /* Amount of data (w/o headers) on linear part of SKB*/
3210 first_bd_sz = skb_headlen(skb) - hlen;
3211
3212 wnd_sum = first_bd_sz;
3213
3214 /* Calculate the first sum - it's special */
3215 for (frag_idx = 0; frag_idx < wnd_size - 1; frag_idx++)
3216 wnd_sum +=
Eric Dumazet9e903e02011-10-18 21:00:24 +00003217 skb_frag_size(&skb_shinfo(skb)->frags[frag_idx]);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003218
3219 /* If there was data on linear skb data - check it */
3220 if (first_bd_sz > 0) {
3221 if (unlikely(wnd_sum < lso_mss)) {
3222 to_copy = 1;
3223 goto exit_lbl;
3224 }
3225
3226 wnd_sum -= first_bd_sz;
3227 }
3228
3229 /* Others are easier: run through the frag list and
3230 check all windows */
3231 for (wnd_idx = 0; wnd_idx <= num_wnds; wnd_idx++) {
3232 wnd_sum +=
Eric Dumazet9e903e02011-10-18 21:00:24 +00003233 skb_frag_size(&skb_shinfo(skb)->frags[wnd_idx + wnd_size - 1]);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003234
3235 if (unlikely(wnd_sum < lso_mss)) {
3236 to_copy = 1;
3237 break;
3238 }
3239 wnd_sum -=
Eric Dumazet9e903e02011-10-18 21:00:24 +00003240 skb_frag_size(&skb_shinfo(skb)->frags[wnd_idx]);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003241 }
3242 } else {
3243 /* in non-LSO too fragmented packet should always
3244 be linearized */
3245 to_copy = 1;
3246 }
3247 }
3248
3249exit_lbl:
3250 if (unlikely(to_copy))
3251 DP(NETIF_MSG_TX_QUEUED,
Merav Sicron51c1a582012-03-18 10:33:38 +00003252 "Linearization IS REQUIRED for %s packet. num_frags %d hlen %d first_bd_sz %d\n",
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003253 (xmit_type & XMIT_GSO) ? "LSO" : "non-LSO",
3254 skb_shinfo(skb)->nr_frags, hlen, first_bd_sz);
3255
3256 return to_copy;
3257}
3258#endif
3259
Vladislav Zolotarov2297a2d2010-12-08 01:43:09 +00003260static inline void bnx2x_set_pbd_gso_e2(struct sk_buff *skb, u32 *parsing_data,
3261 u32 xmit_type)
Dmitry Kravkovf2e08992010-10-06 03:28:26 +00003262{
Vladislav Zolotarov2297a2d2010-12-08 01:43:09 +00003263 *parsing_data |= (skb_shinfo(skb)->gso_size <<
3264 ETH_TX_PARSE_BD_E2_LSO_MSS_SHIFT) &
3265 ETH_TX_PARSE_BD_E2_LSO_MSS;
Dmitry Kravkovf2e08992010-10-06 03:28:26 +00003266 if ((xmit_type & XMIT_GSO_V6) &&
3267 (ipv6_hdr(skb)->nexthdr == NEXTHDR_IPV6))
Vladislav Zolotarov2297a2d2010-12-08 01:43:09 +00003268 *parsing_data |= ETH_TX_PARSE_BD_E2_IPV6_WITH_EXT_HDR;
Dmitry Kravkovf2e08992010-10-06 03:28:26 +00003269}
3270
3271/**
Dmitry Kravkove8920672011-05-04 23:52:40 +00003272 * bnx2x_set_pbd_gso - update PBD in GSO case.
Dmitry Kravkovf2e08992010-10-06 03:28:26 +00003273 *
Dmitry Kravkove8920672011-05-04 23:52:40 +00003274 * @skb: packet skb
3275 * @pbd: parse BD
3276 * @xmit_type: xmit flags
Dmitry Kravkovf2e08992010-10-06 03:28:26 +00003277 */
3278static inline void bnx2x_set_pbd_gso(struct sk_buff *skb,
3279 struct eth_tx_parse_bd_e1x *pbd,
3280 u32 xmit_type)
3281{
3282 pbd->lso_mss = cpu_to_le16(skb_shinfo(skb)->gso_size);
Yuval Mintz86564c32013-01-23 03:21:50 +00003283 pbd->tcp_send_seq = bswab32(tcp_hdr(skb)->seq);
Dmitry Kravkovf2e08992010-10-06 03:28:26 +00003284 pbd->tcp_flags = pbd_tcp_flags(skb);
3285
3286 if (xmit_type & XMIT_GSO_V4) {
Yuval Mintz86564c32013-01-23 03:21:50 +00003287 pbd->ip_id = bswab16(ip_hdr(skb)->id);
Dmitry Kravkovf2e08992010-10-06 03:28:26 +00003288 pbd->tcp_pseudo_csum =
Yuval Mintz86564c32013-01-23 03:21:50 +00003289 bswab16(~csum_tcpudp_magic(ip_hdr(skb)->saddr,
3290 ip_hdr(skb)->daddr,
3291 0, IPPROTO_TCP, 0));
Dmitry Kravkovf2e08992010-10-06 03:28:26 +00003292
3293 } else
3294 pbd->tcp_pseudo_csum =
Yuval Mintz86564c32013-01-23 03:21:50 +00003295 bswab16(~csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
3296 &ipv6_hdr(skb)->daddr,
3297 0, IPPROTO_TCP, 0));
Dmitry Kravkovf2e08992010-10-06 03:28:26 +00003298
Yuval Mintz86564c32013-01-23 03:21:50 +00003299 pbd->global_data |=
3300 cpu_to_le16(ETH_TX_PARSE_BD_E1X_PSEUDO_CS_WITHOUT_LEN);
Dmitry Kravkovf2e08992010-10-06 03:28:26 +00003301}
Dmitry Kravkovf85582f2010-10-06 03:34:21 +00003302
Dmitry Kravkovf2e08992010-10-06 03:28:26 +00003303/**
Dmitry Kravkove8920672011-05-04 23:52:40 +00003304 * bnx2x_set_pbd_csum_e2 - update PBD with checksum and return header length
Dmitry Kravkovf2e08992010-10-06 03:28:26 +00003305 *
Dmitry Kravkove8920672011-05-04 23:52:40 +00003306 * @bp: driver handle
3307 * @skb: packet skb
3308 * @parsing_data: data to be updated
3309 * @xmit_type: xmit flags
Dmitry Kravkovf2e08992010-10-06 03:28:26 +00003310 *
Dmitry Kravkove8920672011-05-04 23:52:40 +00003311 * 57712 related
Dmitry Kravkovf2e08992010-10-06 03:28:26 +00003312 */
3313static inline u8 bnx2x_set_pbd_csum_e2(struct bnx2x *bp, struct sk_buff *skb,
Yuval Mintz2de67432013-01-23 03:21:43 +00003314 u32 *parsing_data, u32 xmit_type)
Dmitry Kravkovf2e08992010-10-06 03:28:26 +00003315{
Vladislav Zolotarove39aece2011-04-23 07:44:46 +00003316 *parsing_data |=
Yuval Mintz2de67432013-01-23 03:21:43 +00003317 ((((u8 *)skb_transport_header(skb) - skb->data) >> 1) <<
3318 ETH_TX_PARSE_BD_E2_TCP_HDR_START_OFFSET_W_SHIFT) &
3319 ETH_TX_PARSE_BD_E2_TCP_HDR_START_OFFSET_W;
Dmitry Kravkovf2e08992010-10-06 03:28:26 +00003320
Vladislav Zolotarove39aece2011-04-23 07:44:46 +00003321 if (xmit_type & XMIT_CSUM_TCP) {
3322 *parsing_data |= ((tcp_hdrlen(skb) / 4) <<
3323 ETH_TX_PARSE_BD_E2_TCP_HDR_LENGTH_DW_SHIFT) &
3324 ETH_TX_PARSE_BD_E2_TCP_HDR_LENGTH_DW;
Dmitry Kravkovf2e08992010-10-06 03:28:26 +00003325
Vladislav Zolotarove39aece2011-04-23 07:44:46 +00003326 return skb_transport_header(skb) + tcp_hdrlen(skb) - skb->data;
Yuval Mintz924d75a2013-01-23 03:21:44 +00003327 }
3328 /* We support checksum offload for TCP and UDP only.
3329 * No need to pass the UDP header length - it's a constant.
3330 */
3331 return skb_transport_header(skb) + sizeof(struct udphdr) - skb->data;
Dmitry Kravkovf2e08992010-10-06 03:28:26 +00003332}
3333
Dmitry Kravkov93ef5c02011-06-14 01:33:02 +00003334static inline void bnx2x_set_sbd_csum(struct bnx2x *bp, struct sk_buff *skb,
3335 struct eth_tx_start_bd *tx_start_bd, u32 xmit_type)
3336{
Dmitry Kravkov93ef5c02011-06-14 01:33:02 +00003337 tx_start_bd->bd_flags.as_bitfield |= ETH_TX_BD_FLAGS_L4_CSUM;
3338
3339 if (xmit_type & XMIT_CSUM_V4)
3340 tx_start_bd->bd_flags.as_bitfield |=
3341 ETH_TX_BD_FLAGS_IP_CSUM;
3342 else
3343 tx_start_bd->bd_flags.as_bitfield |=
3344 ETH_TX_BD_FLAGS_IPV6;
3345
3346 if (!(xmit_type & XMIT_CSUM_TCP))
3347 tx_start_bd->bd_flags.as_bitfield |= ETH_TX_BD_FLAGS_IS_UDP;
Dmitry Kravkov93ef5c02011-06-14 01:33:02 +00003348}
3349
Dmitry Kravkovf2e08992010-10-06 03:28:26 +00003350/**
Dmitry Kravkove8920672011-05-04 23:52:40 +00003351 * bnx2x_set_pbd_csum - update PBD with checksum and return header length
Dmitry Kravkovf2e08992010-10-06 03:28:26 +00003352 *
Dmitry Kravkove8920672011-05-04 23:52:40 +00003353 * @bp: driver handle
3354 * @skb: packet skb
3355 * @pbd: parse BD to be updated
3356 * @xmit_type: xmit flags
Dmitry Kravkovf2e08992010-10-06 03:28:26 +00003357 */
3358static inline u8 bnx2x_set_pbd_csum(struct bnx2x *bp, struct sk_buff *skb,
3359 struct eth_tx_parse_bd_e1x *pbd,
3360 u32 xmit_type)
3361{
Vladislav Zolotarove39aece2011-04-23 07:44:46 +00003362 u8 hlen = (skb_network_header(skb) - skb->data) >> 1;
Dmitry Kravkovf2e08992010-10-06 03:28:26 +00003363
3364 /* for now NS flag is not used in Linux */
3365 pbd->global_data =
Yuval Mintz86564c32013-01-23 03:21:50 +00003366 cpu_to_le16(hlen |
3367 ((skb->protocol == cpu_to_be16(ETH_P_8021Q)) <<
3368 ETH_TX_PARSE_BD_E1X_LLC_SNAP_EN_SHIFT));
Dmitry Kravkovf2e08992010-10-06 03:28:26 +00003369
3370 pbd->ip_hlen_w = (skb_transport_header(skb) -
Vladislav Zolotarove39aece2011-04-23 07:44:46 +00003371 skb_network_header(skb)) >> 1;
Dmitry Kravkovf2e08992010-10-06 03:28:26 +00003372
Vladislav Zolotarove39aece2011-04-23 07:44:46 +00003373 hlen += pbd->ip_hlen_w;
3374
3375 /* We support checksum offload for TCP and UDP only */
3376 if (xmit_type & XMIT_CSUM_TCP)
3377 hlen += tcp_hdrlen(skb) / 2;
3378 else
3379 hlen += sizeof(struct udphdr) / 2;
Dmitry Kravkovf2e08992010-10-06 03:28:26 +00003380
3381 pbd->total_hlen_w = cpu_to_le16(hlen);
3382 hlen = hlen*2;
3383
3384 if (xmit_type & XMIT_CSUM_TCP) {
Yuval Mintz86564c32013-01-23 03:21:50 +00003385 pbd->tcp_pseudo_csum = bswab16(tcp_hdr(skb)->check);
Dmitry Kravkovf2e08992010-10-06 03:28:26 +00003386
3387 } else {
3388 s8 fix = SKB_CS_OFF(skb); /* signed! */
3389
3390 DP(NETIF_MSG_TX_QUEUED,
3391 "hlen %d fix %d csum before fix %x\n",
3392 le16_to_cpu(pbd->total_hlen_w), fix, SKB_CS(skb));
3393
3394 /* HW bug: fixup the CSUM */
3395 pbd->tcp_pseudo_csum =
3396 bnx2x_csum_fix(skb_transport_header(skb),
3397 SKB_CS(skb), fix);
3398
3399 DP(NETIF_MSG_TX_QUEUED, "csum after fix %x\n",
3400 pbd->tcp_pseudo_csum);
3401 }
3402
3403 return hlen;
3404}
Dmitry Kravkovf85582f2010-10-06 03:34:21 +00003405
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003406/* called with netif_tx_lock
3407 * bnx2x_tx_int() runs without netif_tx_lock unless it needs to call
3408 * netif_wake_queue()
3409 */
3410netdev_tx_t bnx2x_start_xmit(struct sk_buff *skb, struct net_device *dev)
3411{
3412 struct bnx2x *bp = netdev_priv(dev);
Ariel Elior6383c0b2011-07-14 08:31:57 +00003413
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003414 struct netdev_queue *txq;
Ariel Elior6383c0b2011-07-14 08:31:57 +00003415 struct bnx2x_fp_txdata *txdata;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003416 struct sw_tx_bd *tx_buf;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03003417 struct eth_tx_start_bd *tx_start_bd, *first_bd;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003418 struct eth_tx_bd *tx_data_bd, *total_pkt_bd = NULL;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00003419 struct eth_tx_parse_bd_e1x *pbd_e1x = NULL;
Dmitry Kravkovf2e08992010-10-06 03:28:26 +00003420 struct eth_tx_parse_bd_e2 *pbd_e2 = NULL;
Vladislav Zolotarov2297a2d2010-12-08 01:43:09 +00003421 u32 pbd_e2_parsing_data = 0;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003422 u16 pkt_prod, bd_prod;
Merav Sicron65565882012-06-19 07:48:26 +00003423 int nbd, txq_index;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003424 dma_addr_t mapping;
3425 u32 xmit_type = bnx2x_xmit_type(bp, skb);
3426 int i;
3427 u8 hlen = 0;
3428 __le16 pkt_size = 0;
3429 struct ethhdr *eth;
3430 u8 mac_type = UNICAST_ADDRESS;
3431
3432#ifdef BNX2X_STOP_ON_ERROR
3433 if (unlikely(bp->panic))
3434 return NETDEV_TX_BUSY;
3435#endif
3436
Ariel Elior6383c0b2011-07-14 08:31:57 +00003437 txq_index = skb_get_queue_mapping(skb);
3438 txq = netdev_get_tx_queue(dev, txq_index);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003439
Merav Sicron55c11942012-11-07 00:45:48 +00003440 BUG_ON(txq_index >= MAX_ETH_TXQ_IDX(bp) + (CNIC_LOADED(bp) ? 1 : 0));
Ariel Elior6383c0b2011-07-14 08:31:57 +00003441
Merav Sicron65565882012-06-19 07:48:26 +00003442 txdata = &bp->bnx2x_txq[txq_index];
Ariel Elior6383c0b2011-07-14 08:31:57 +00003443
3444 /* enable this debug print to view the transmission queue being used
Merav Sicron51c1a582012-03-18 10:33:38 +00003445 DP(NETIF_MSG_TX_QUEUED, "indices: txq %d, fp %d, txdata %d\n",
Ariel Elior6383c0b2011-07-14 08:31:57 +00003446 txq_index, fp_index, txdata_index); */
3447
Ariel Elior6383c0b2011-07-14 08:31:57 +00003448 /* enable this debug print to view the tranmission details
Merav Sicron51c1a582012-03-18 10:33:38 +00003449 DP(NETIF_MSG_TX_QUEUED,
3450 "transmitting packet cid %d fp index %d txdata_index %d tx_data ptr %p fp pointer %p\n",
Ariel Elior6383c0b2011-07-14 08:31:57 +00003451 txdata->cid, fp_index, txdata_index, txdata, fp); */
3452
3453 if (unlikely(bnx2x_tx_avail(bp, txdata) <
Dmitry Kravkov7df2dc62012-06-25 22:32:50 +00003454 skb_shinfo(skb)->nr_frags +
3455 BDS_PER_TX_PKT +
3456 NEXT_CNT_PER_TX_PKT(MAX_BDS_PER_TX_PKT))) {
Dmitry Kravkov2384d6a2012-10-16 01:28:27 +00003457 /* Handle special storage cases separately */
Dmitry Kravkovc96bdc02012-12-02 04:05:48 +00003458 if (txdata->tx_ring_size == 0) {
3459 struct bnx2x_eth_q_stats *q_stats =
3460 bnx2x_fp_qstats(bp, txdata->parent_fp);
3461 q_stats->driver_filtered_tx_pkt++;
3462 dev_kfree_skb(skb);
3463 return NETDEV_TX_OK;
3464 }
Yuval Mintz2de67432013-01-23 03:21:43 +00003465 bnx2x_fp_qstats(bp, txdata->parent_fp)->driver_xoff++;
3466 netif_tx_stop_queue(txq);
Dmitry Kravkovc96bdc02012-12-02 04:05:48 +00003467 BNX2X_ERR("BUG! Tx ring full when queue awake!\n");
Dmitry Kravkov2384d6a2012-10-16 01:28:27 +00003468
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003469 return NETDEV_TX_BUSY;
3470 }
3471
Merav Sicron51c1a582012-03-18 10:33:38 +00003472 DP(NETIF_MSG_TX_QUEUED,
Yuval Mintz04c46732013-01-23 03:21:46 +00003473 "queue[%d]: SKB: summed %x protocol %x protocol(%x,%x) gso type %x xmit_type %x len %d\n",
Ariel Elior6383c0b2011-07-14 08:31:57 +00003474 txq_index, skb->ip_summed, skb->protocol, ipv6_hdr(skb)->nexthdr,
Yuval Mintz04c46732013-01-23 03:21:46 +00003475 ip_hdr(skb)->protocol, skb_shinfo(skb)->gso_type, xmit_type,
3476 skb->len);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003477
3478 eth = (struct ethhdr *)skb->data;
3479
3480 /* set flag according to packet type (UNICAST_ADDRESS is default)*/
3481 if (unlikely(is_multicast_ether_addr(eth->h_dest))) {
3482 if (is_broadcast_ether_addr(eth->h_dest))
3483 mac_type = BROADCAST_ADDRESS;
3484 else
3485 mac_type = MULTICAST_ADDRESS;
3486 }
3487
3488#if (MAX_SKB_FRAGS >= MAX_FETCH_BD - 3)
3489 /* First, check if we need to linearize the skb (due to FW
3490 restrictions). No need to check fragmentation if page size > 8K
3491 (there will be no violation to FW restrictions) */
3492 if (bnx2x_pkt_req_lin(bp, skb, xmit_type)) {
3493 /* Statistics of linearization */
3494 bp->lin_cnt++;
3495 if (skb_linearize(skb) != 0) {
Merav Sicron51c1a582012-03-18 10:33:38 +00003496 DP(NETIF_MSG_TX_QUEUED,
3497 "SKB linearization failed - silently dropping this SKB\n");
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003498 dev_kfree_skb_any(skb);
3499 return NETDEV_TX_OK;
3500 }
3501 }
3502#endif
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03003503 /* Map skb linear data for DMA */
3504 mapping = dma_map_single(&bp->pdev->dev, skb->data,
3505 skb_headlen(skb), DMA_TO_DEVICE);
3506 if (unlikely(dma_mapping_error(&bp->pdev->dev, mapping))) {
Merav Sicron51c1a582012-03-18 10:33:38 +00003507 DP(NETIF_MSG_TX_QUEUED,
3508 "SKB mapping failed - silently dropping this SKB\n");
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03003509 dev_kfree_skb_any(skb);
3510 return NETDEV_TX_OK;
3511 }
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003512 /*
3513 Please read carefully. First we use one BD which we mark as start,
3514 then we have a parsing info BD (used for TSO or xsum),
3515 and only then we have the rest of the TSO BDs.
3516 (don't forget to mark the last one as last,
3517 and to unmap only AFTER you write to the BD ...)
3518 And above all, all pdb sizes are in words - NOT DWORDS!
3519 */
3520
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03003521 /* get current pkt produced now - advance it just before sending packet
3522 * since mapping of pages may fail and cause packet to be dropped
3523 */
Ariel Elior6383c0b2011-07-14 08:31:57 +00003524 pkt_prod = txdata->tx_pkt_prod;
3525 bd_prod = TX_BD(txdata->tx_bd_prod);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003526
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03003527 /* get a tx_buf and first BD
3528 * tx_start_bd may be changed during SPLIT,
3529 * but first_bd will always stay first
3530 */
Ariel Elior6383c0b2011-07-14 08:31:57 +00003531 tx_buf = &txdata->tx_buf_ring[TX_BD(pkt_prod)];
3532 tx_start_bd = &txdata->tx_desc_ring[bd_prod].start_bd;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03003533 first_bd = tx_start_bd;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003534
3535 tx_start_bd->bd_flags.as_bitfield = ETH_TX_BD_FLAGS_START_BD;
Yuval Mintz96bed4b2012-10-01 03:46:19 +00003536 SET_FLAG(tx_start_bd->general_data,
3537 ETH_TX_START_BD_PARSE_NBDS,
3538 0);
Dmitry Kravkovf85582f2010-10-06 03:34:21 +00003539
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003540 /* header nbd */
Dmitry Kravkovf85582f2010-10-06 03:34:21 +00003541 SET_FLAG(tx_start_bd->general_data, ETH_TX_START_BD_HDR_NBDS, 1);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003542
3543 /* remember the first BD of the packet */
Ariel Elior6383c0b2011-07-14 08:31:57 +00003544 tx_buf->first_bd = txdata->tx_bd_prod;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003545 tx_buf->skb = skb;
3546 tx_buf->flags = 0;
3547
3548 DP(NETIF_MSG_TX_QUEUED,
3549 "sending pkt %u @%p next_idx %u bd %u @%p\n",
Ariel Elior6383c0b2011-07-14 08:31:57 +00003550 pkt_prod, tx_buf, txdata->tx_pkt_prod, bd_prod, tx_start_bd);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003551
Jesse Grosseab6d182010-10-20 13:56:03 +00003552 if (vlan_tx_tag_present(skb)) {
Dmitry Kravkov523224a2010-10-06 03:23:26 +00003553 tx_start_bd->vlan_or_ethertype =
3554 cpu_to_le16(vlan_tx_tag_get(skb));
3555 tx_start_bd->bd_flags.as_bitfield |=
3556 (X_ETH_OUTBAND_VLAN << ETH_TX_BD_FLAGS_VLAN_MODE_SHIFT);
Ariel Eliordc1ba592013-01-01 05:22:30 +00003557 } else {
3558 /* when transmitting in a vf, start bd must hold the ethertype
3559 * for fw to enforce it
3560 */
Yuval Mintz823e1d92013-01-14 05:11:47 +00003561#ifndef BNX2X_STOP_ON_ERROR
Ariel Eliordc1ba592013-01-01 05:22:30 +00003562 if (IS_VF(bp)) {
Yuval Mintz823e1d92013-01-14 05:11:47 +00003563#endif
Ariel Eliordc1ba592013-01-01 05:22:30 +00003564 tx_start_bd->vlan_or_ethertype =
3565 cpu_to_le16(ntohs(eth->h_proto));
Yuval Mintz823e1d92013-01-14 05:11:47 +00003566#ifndef BNX2X_STOP_ON_ERROR
Ariel Eliordc1ba592013-01-01 05:22:30 +00003567 } else {
3568 /* used by FW for packet accounting */
3569 tx_start_bd->vlan_or_ethertype = cpu_to_le16(pkt_prod);
3570 }
Yuval Mintz823e1d92013-01-14 05:11:47 +00003571#endif
Ariel Eliordc1ba592013-01-01 05:22:30 +00003572 }
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003573
3574 /* turn on parsing and get a BD */
3575 bd_prod = TX_BD(NEXT_TX_IDX(bd_prod));
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003576
Dmitry Kravkov93ef5c02011-06-14 01:33:02 +00003577 if (xmit_type & XMIT_CSUM)
3578 bnx2x_set_sbd_csum(bp, skb, tx_start_bd, xmit_type);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00003579
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03003580 if (!CHIP_IS_E1x(bp)) {
Ariel Elior6383c0b2011-07-14 08:31:57 +00003581 pbd_e2 = &txdata->tx_desc_ring[bd_prod].parse_bd_e2;
Dmitry Kravkovf2e08992010-10-06 03:28:26 +00003582 memset(pbd_e2, 0, sizeof(struct eth_tx_parse_bd_e2));
3583 /* Set PBD in checksum offload case */
3584 if (xmit_type & XMIT_CSUM)
Vladislav Zolotarov2297a2d2010-12-08 01:43:09 +00003585 hlen = bnx2x_set_pbd_csum_e2(bp, skb,
3586 &pbd_e2_parsing_data,
3587 xmit_type);
Ariel Eliordc1ba592013-01-01 05:22:30 +00003588
3589 if (IS_MF_SI(bp) || IS_VF(bp)) {
3590 /* fill in the MAC addresses in the PBD - for local
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03003591 * switching
3592 */
3593 bnx2x_set_fw_mac_addr(&pbd_e2->src_mac_addr_hi,
3594 &pbd_e2->src_mac_addr_mid,
3595 &pbd_e2->src_mac_addr_lo,
3596 eth->h_source);
3597 bnx2x_set_fw_mac_addr(&pbd_e2->dst_mac_addr_hi,
3598 &pbd_e2->dst_mac_addr_mid,
3599 &pbd_e2->dst_mac_addr_lo,
3600 eth->h_dest);
3601 }
Yuval Mintz96bed4b2012-10-01 03:46:19 +00003602
3603 SET_FLAG(pbd_e2_parsing_data,
3604 ETH_TX_PARSE_BD_E2_ETH_ADDR_TYPE, mac_type);
Dmitry Kravkovf2e08992010-10-06 03:28:26 +00003605 } else {
Yuval Mintz96bed4b2012-10-01 03:46:19 +00003606 u16 global_data = 0;
Ariel Elior6383c0b2011-07-14 08:31:57 +00003607 pbd_e1x = &txdata->tx_desc_ring[bd_prod].parse_bd_e1x;
Dmitry Kravkovf2e08992010-10-06 03:28:26 +00003608 memset(pbd_e1x, 0, sizeof(struct eth_tx_parse_bd_e1x));
3609 /* Set PBD in checksum offload case */
3610 if (xmit_type & XMIT_CSUM)
3611 hlen = bnx2x_set_pbd_csum(bp, skb, pbd_e1x, xmit_type);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00003612
Yuval Mintz96bed4b2012-10-01 03:46:19 +00003613 SET_FLAG(global_data,
3614 ETH_TX_PARSE_BD_E1X_ETH_ADDR_TYPE, mac_type);
3615 pbd_e1x->global_data |= cpu_to_le16(global_data);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003616 }
3617
Dmitry Kravkovf85582f2010-10-06 03:34:21 +00003618 /* Setup the data pointer of the first BD of the packet */
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003619 tx_start_bd->addr_hi = cpu_to_le32(U64_HI(mapping));
3620 tx_start_bd->addr_lo = cpu_to_le32(U64_LO(mapping));
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03003621 nbd = 2; /* start_bd + pbd + frags (updated when pages are mapped) */
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003622 tx_start_bd->nbytes = cpu_to_le16(skb_headlen(skb));
3623 pkt_size = tx_start_bd->nbytes;
3624
Merav Sicron51c1a582012-03-18 10:33:38 +00003625 DP(NETIF_MSG_TX_QUEUED,
3626 "first bd @%p addr (%x:%x) nbd %d nbytes %d flags %x vlan %x\n",
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003627 tx_start_bd, tx_start_bd->addr_hi, tx_start_bd->addr_lo,
3628 le16_to_cpu(tx_start_bd->nbd), le16_to_cpu(tx_start_bd->nbytes),
Dmitry Kravkov523224a2010-10-06 03:23:26 +00003629 tx_start_bd->bd_flags.as_bitfield,
3630 le16_to_cpu(tx_start_bd->vlan_or_ethertype));
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003631
3632 if (xmit_type & XMIT_GSO) {
3633
3634 DP(NETIF_MSG_TX_QUEUED,
3635 "TSO packet len %d hlen %d total len %d tso size %d\n",
3636 skb->len, hlen, skb_headlen(skb),
3637 skb_shinfo(skb)->gso_size);
3638
3639 tx_start_bd->bd_flags.as_bitfield |= ETH_TX_BD_FLAGS_SW_LSO;
3640
3641 if (unlikely(skb_headlen(skb) > hlen))
Ariel Elior6383c0b2011-07-14 08:31:57 +00003642 bd_prod = bnx2x_tx_split(bp, txdata, tx_buf,
3643 &tx_start_bd, hlen,
3644 bd_prod, ++nbd);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03003645 if (!CHIP_IS_E1x(bp))
Vladislav Zolotarov2297a2d2010-12-08 01:43:09 +00003646 bnx2x_set_pbd_gso_e2(skb, &pbd_e2_parsing_data,
3647 xmit_type);
Dmitry Kravkovf2e08992010-10-06 03:28:26 +00003648 else
3649 bnx2x_set_pbd_gso(skb, pbd_e1x, xmit_type);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003650 }
Vladislav Zolotarov2297a2d2010-12-08 01:43:09 +00003651
3652 /* Set the PBD's parsing_data field if not zero
3653 * (for the chips newer than 57711).
3654 */
3655 if (pbd_e2_parsing_data)
3656 pbd_e2->parsing_data = cpu_to_le32(pbd_e2_parsing_data);
3657
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003658 tx_data_bd = (struct eth_tx_bd *)tx_start_bd;
3659
Dmitry Kravkovf85582f2010-10-06 03:34:21 +00003660 /* Handle fragmented skb */
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003661 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
3662 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
3663
Eric Dumazet9e903e02011-10-18 21:00:24 +00003664 mapping = skb_frag_dma_map(&bp->pdev->dev, frag, 0,
3665 skb_frag_size(frag), DMA_TO_DEVICE);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03003666 if (unlikely(dma_mapping_error(&bp->pdev->dev, mapping))) {
Tom Herbert2df1a702011-11-28 16:33:37 +00003667 unsigned int pkts_compl = 0, bytes_compl = 0;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03003668
Merav Sicron51c1a582012-03-18 10:33:38 +00003669 DP(NETIF_MSG_TX_QUEUED,
3670 "Unable to map page - dropping packet...\n");
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03003671
3672 /* we need unmap all buffers already mapped
3673 * for this SKB;
3674 * first_bd->nbd need to be properly updated
3675 * before call to bnx2x_free_tx_pkt
3676 */
3677 first_bd->nbd = cpu_to_le16(nbd);
Ariel Elior6383c0b2011-07-14 08:31:57 +00003678 bnx2x_free_tx_pkt(bp, txdata,
Tom Herbert2df1a702011-11-28 16:33:37 +00003679 TX_BD(txdata->tx_pkt_prod),
3680 &pkts_compl, &bytes_compl);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03003681 return NETDEV_TX_OK;
3682 }
3683
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003684 bd_prod = TX_BD(NEXT_TX_IDX(bd_prod));
Ariel Elior6383c0b2011-07-14 08:31:57 +00003685 tx_data_bd = &txdata->tx_desc_ring[bd_prod].reg_bd;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003686 if (total_pkt_bd == NULL)
Ariel Elior6383c0b2011-07-14 08:31:57 +00003687 total_pkt_bd = &txdata->tx_desc_ring[bd_prod].reg_bd;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003688
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003689 tx_data_bd->addr_hi = cpu_to_le32(U64_HI(mapping));
3690 tx_data_bd->addr_lo = cpu_to_le32(U64_LO(mapping));
Eric Dumazet9e903e02011-10-18 21:00:24 +00003691 tx_data_bd->nbytes = cpu_to_le16(skb_frag_size(frag));
3692 le16_add_cpu(&pkt_size, skb_frag_size(frag));
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03003693 nbd++;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003694
3695 DP(NETIF_MSG_TX_QUEUED,
3696 "frag %d bd @%p addr (%x:%x) nbytes %d\n",
3697 i, tx_data_bd, tx_data_bd->addr_hi, tx_data_bd->addr_lo,
3698 le16_to_cpu(tx_data_bd->nbytes));
3699 }
3700
3701 DP(NETIF_MSG_TX_QUEUED, "last bd @%p\n", tx_data_bd);
3702
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03003703 /* update with actual num BDs */
3704 first_bd->nbd = cpu_to_le16(nbd);
3705
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003706 bd_prod = TX_BD(NEXT_TX_IDX(bd_prod));
3707
3708 /* now send a tx doorbell, counting the next BD
3709 * if the packet contains or ends with it
3710 */
3711 if (TX_BD_POFF(bd_prod) < nbd)
3712 nbd++;
3713
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03003714 /* total_pkt_bytes should be set on the first data BD if
3715 * it's not an LSO packet and there is more than one
3716 * data BD. In this case pkt_size is limited by an MTU value.
3717 * However we prefer to set it for an LSO packet (while we don't
3718 * have to) in order to save some CPU cycles in a none-LSO
3719 * case, when we much more care about them.
3720 */
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003721 if (total_pkt_bd != NULL)
3722 total_pkt_bd->total_pkt_bytes = pkt_size;
3723
Dmitry Kravkov523224a2010-10-06 03:23:26 +00003724 if (pbd_e1x)
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003725 DP(NETIF_MSG_TX_QUEUED,
Merav Sicron51c1a582012-03-18 10:33:38 +00003726 "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",
Dmitry Kravkov523224a2010-10-06 03:23:26 +00003727 pbd_e1x, pbd_e1x->global_data, pbd_e1x->ip_hlen_w,
3728 pbd_e1x->ip_id, pbd_e1x->lso_mss, pbd_e1x->tcp_flags,
3729 pbd_e1x->tcp_pseudo_csum, pbd_e1x->tcp_send_seq,
3730 le16_to_cpu(pbd_e1x->total_hlen_w));
Dmitry Kravkovf2e08992010-10-06 03:28:26 +00003731 if (pbd_e2)
3732 DP(NETIF_MSG_TX_QUEUED,
3733 "PBD (E2) @%p dst %x %x %x src %x %x %x parsing_data %x\n",
3734 pbd_e2, pbd_e2->dst_mac_addr_hi, pbd_e2->dst_mac_addr_mid,
3735 pbd_e2->dst_mac_addr_lo, pbd_e2->src_mac_addr_hi,
3736 pbd_e2->src_mac_addr_mid, pbd_e2->src_mac_addr_lo,
3737 pbd_e2->parsing_data);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003738 DP(NETIF_MSG_TX_QUEUED, "doorbell: nbd %d bd %u\n", nbd, bd_prod);
3739
Tom Herbert2df1a702011-11-28 16:33:37 +00003740 netdev_tx_sent_queue(txq, skb->len);
3741
Willem de Bruijn8373c572012-04-27 09:04:06 +00003742 skb_tx_timestamp(skb);
3743
Ariel Elior6383c0b2011-07-14 08:31:57 +00003744 txdata->tx_pkt_prod++;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003745 /*
3746 * Make sure that the BD data is updated before updating the producer
3747 * since FW might read the BD right after the producer is updated.
3748 * This is only applicable for weak-ordered memory model archs such
3749 * as IA-64. The following barrier is also mandatory since FW will
3750 * assumes packets must have BDs.
3751 */
3752 wmb();
3753
Ariel Elior6383c0b2011-07-14 08:31:57 +00003754 txdata->tx_db.data.prod += nbd;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003755 barrier();
Dmitry Kravkovf85582f2010-10-06 03:34:21 +00003756
Ariel Elior6383c0b2011-07-14 08:31:57 +00003757 DOORBELL(bp, txdata->cid, txdata->tx_db.raw);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003758
3759 mmiowb();
3760
Ariel Elior6383c0b2011-07-14 08:31:57 +00003761 txdata->tx_bd_prod += nbd;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003762
Dmitry Kravkov7df2dc62012-06-25 22:32:50 +00003763 if (unlikely(bnx2x_tx_avail(bp, txdata) < MAX_DESC_PER_TX_PKT)) {
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003764 netif_tx_stop_queue(txq);
3765
3766 /* paired memory barrier is in bnx2x_tx_int(), we have to keep
3767 * ordering of set_bit() in netif_tx_stop_queue() and read of
3768 * fp->bd_tx_cons */
3769 smp_mb();
3770
Barak Witkowski15192a82012-06-19 07:48:28 +00003771 bnx2x_fp_qstats(bp, txdata->parent_fp)->driver_xoff++;
Dmitry Kravkov7df2dc62012-06-25 22:32:50 +00003772 if (bnx2x_tx_avail(bp, txdata) >= MAX_DESC_PER_TX_PKT)
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003773 netif_tx_wake_queue(txq);
3774 }
Ariel Elior6383c0b2011-07-14 08:31:57 +00003775 txdata->tx_pkt++;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003776
3777 return NETDEV_TX_OK;
3778}
Dmitry Kravkovf85582f2010-10-06 03:34:21 +00003779
Ariel Elior6383c0b2011-07-14 08:31:57 +00003780/**
3781 * bnx2x_setup_tc - routine to configure net_device for multi tc
3782 *
3783 * @netdev: net device to configure
3784 * @tc: number of traffic classes to enable
3785 *
3786 * callback connected to the ndo_setup_tc function pointer
3787 */
3788int bnx2x_setup_tc(struct net_device *dev, u8 num_tc)
3789{
3790 int cos, prio, count, offset;
3791 struct bnx2x *bp = netdev_priv(dev);
3792
3793 /* setup tc must be called under rtnl lock */
3794 ASSERT_RTNL();
3795
3796 /* no traffic classes requested. aborting */
3797 if (!num_tc) {
3798 netdev_reset_tc(dev);
3799 return 0;
3800 }
3801
3802 /* requested to support too many traffic classes */
3803 if (num_tc > bp->max_cos) {
Merav Sicron51c1a582012-03-18 10:33:38 +00003804 BNX2X_ERR("support for too many traffic classes requested: %d. max supported is %d\n",
3805 num_tc, bp->max_cos);
Ariel Elior6383c0b2011-07-14 08:31:57 +00003806 return -EINVAL;
3807 }
3808
3809 /* declare amount of supported traffic classes */
3810 if (netdev_set_num_tc(dev, num_tc)) {
Merav Sicron51c1a582012-03-18 10:33:38 +00003811 BNX2X_ERR("failed to declare %d traffic classes\n", num_tc);
Ariel Elior6383c0b2011-07-14 08:31:57 +00003812 return -EINVAL;
3813 }
3814
3815 /* configure priority to traffic class mapping */
3816 for (prio = 0; prio < BNX2X_MAX_PRIORITY; prio++) {
3817 netdev_set_prio_tc_map(dev, prio, bp->prio_to_cos[prio]);
Merav Sicron51c1a582012-03-18 10:33:38 +00003818 DP(BNX2X_MSG_SP | NETIF_MSG_IFUP,
3819 "mapping priority %d to tc %d\n",
Ariel Elior6383c0b2011-07-14 08:31:57 +00003820 prio, bp->prio_to_cos[prio]);
3821 }
3822
3823
3824 /* Use this configuration to diffrentiate tc0 from other COSes
3825 This can be used for ets or pfc, and save the effort of setting
3826 up a multio class queue disc or negotiating DCBX with a switch
3827 netdev_set_prio_tc_map(dev, 0, 0);
Joe Perches94f05b02011-08-14 12:16:20 +00003828 DP(BNX2X_MSG_SP, "mapping priority %d to tc %d\n", 0, 0);
Ariel Elior6383c0b2011-07-14 08:31:57 +00003829 for (prio = 1; prio < 16; prio++) {
3830 netdev_set_prio_tc_map(dev, prio, 1);
Joe Perches94f05b02011-08-14 12:16:20 +00003831 DP(BNX2X_MSG_SP, "mapping priority %d to tc %d\n", prio, 1);
Ariel Elior6383c0b2011-07-14 08:31:57 +00003832 } */
3833
3834 /* configure traffic class to transmission queue mapping */
3835 for (cos = 0; cos < bp->max_cos; cos++) {
3836 count = BNX2X_NUM_ETH_QUEUES(bp);
Merav Sicron65565882012-06-19 07:48:26 +00003837 offset = cos * BNX2X_NUM_NON_CNIC_QUEUES(bp);
Ariel Elior6383c0b2011-07-14 08:31:57 +00003838 netdev_set_tc_queue(dev, cos, count, offset);
Merav Sicron51c1a582012-03-18 10:33:38 +00003839 DP(BNX2X_MSG_SP | NETIF_MSG_IFUP,
3840 "mapping tc %d to offset %d count %d\n",
Ariel Elior6383c0b2011-07-14 08:31:57 +00003841 cos, offset, count);
3842 }
3843
3844 return 0;
3845}
3846
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003847/* called with rtnl_lock */
3848int bnx2x_change_mac_addr(struct net_device *dev, void *p)
3849{
3850 struct sockaddr *addr = p;
3851 struct bnx2x *bp = netdev_priv(dev);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03003852 int rc = 0;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003853
Merav Sicron51c1a582012-03-18 10:33:38 +00003854 if (!bnx2x_is_valid_ether_addr(bp, addr->sa_data)) {
3855 BNX2X_ERR("Requested MAC address is not valid\n");
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003856 return -EINVAL;
Merav Sicron51c1a582012-03-18 10:33:38 +00003857 }
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003858
Barak Witkowskia3348722012-04-23 03:04:46 +00003859 if ((IS_MF_STORAGE_SD(bp) || IS_MF_FCOE_AFEX(bp)) &&
3860 !is_zero_ether_addr(addr->sa_data)) {
Merav Sicron51c1a582012-03-18 10:33:38 +00003861 BNX2X_ERR("Can't configure non-zero address on iSCSI or FCoE functions in MF-SD mode\n");
Dmitry Kravkov614c76d2011-11-28 12:31:49 +00003862 return -EINVAL;
Merav Sicron51c1a582012-03-18 10:33:38 +00003863 }
Dmitry Kravkov614c76d2011-11-28 12:31:49 +00003864
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03003865 if (netif_running(dev)) {
3866 rc = bnx2x_set_eth_mac(bp, false);
3867 if (rc)
3868 return rc;
3869 }
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003870
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03003871 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
3872
3873 if (netif_running(dev))
3874 rc = bnx2x_set_eth_mac(bp, true);
3875
3876 return rc;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00003877}
3878
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +00003879static void bnx2x_free_fp_mem_at(struct bnx2x *bp, int fp_index)
3880{
3881 union host_hc_status_block *sb = &bnx2x_fp(bp, fp_index, status_blk);
3882 struct bnx2x_fastpath *fp = &bp->fp[fp_index];
Ariel Elior6383c0b2011-07-14 08:31:57 +00003883 u8 cos;
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +00003884
3885 /* Common */
Merav Sicron55c11942012-11-07 00:45:48 +00003886
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +00003887 if (IS_FCOE_IDX(fp_index)) {
3888 memset(sb, 0, sizeof(union host_hc_status_block));
3889 fp->status_blk_mapping = 0;
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +00003890 } else {
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +00003891 /* status blocks */
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03003892 if (!CHIP_IS_E1x(bp))
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +00003893 BNX2X_PCI_FREE(sb->e2_sb,
3894 bnx2x_fp(bp, fp_index,
3895 status_blk_mapping),
3896 sizeof(struct host_hc_status_block_e2));
3897 else
3898 BNX2X_PCI_FREE(sb->e1x_sb,
3899 bnx2x_fp(bp, fp_index,
3900 status_blk_mapping),
3901 sizeof(struct host_hc_status_block_e1x));
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +00003902 }
Merav Sicron55c11942012-11-07 00:45:48 +00003903
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +00003904 /* Rx */
3905 if (!skip_rx_queue(bp, fp_index)) {
3906 bnx2x_free_rx_bds(fp);
3907
3908 /* fastpath rx rings: rx_buf rx_desc rx_comp */
3909 BNX2X_FREE(bnx2x_fp(bp, fp_index, rx_buf_ring));
3910 BNX2X_PCI_FREE(bnx2x_fp(bp, fp_index, rx_desc_ring),
3911 bnx2x_fp(bp, fp_index, rx_desc_mapping),
3912 sizeof(struct eth_rx_bd) * NUM_RX_BD);
3913
3914 BNX2X_PCI_FREE(bnx2x_fp(bp, fp_index, rx_comp_ring),
3915 bnx2x_fp(bp, fp_index, rx_comp_mapping),
3916 sizeof(struct eth_fast_path_rx_cqe) *
3917 NUM_RCQ_BD);
3918
3919 /* SGE ring */
3920 BNX2X_FREE(bnx2x_fp(bp, fp_index, rx_page_ring));
3921 BNX2X_PCI_FREE(bnx2x_fp(bp, fp_index, rx_sge_ring),
3922 bnx2x_fp(bp, fp_index, rx_sge_mapping),
3923 BCM_PAGE_SIZE * NUM_RX_SGE_PAGES);
3924 }
3925
3926 /* Tx */
3927 if (!skip_tx_queue(bp, fp_index)) {
3928 /* fastpath tx rings: tx_buf tx_desc */
Ariel Elior6383c0b2011-07-14 08:31:57 +00003929 for_each_cos_in_tx_queue(fp, cos) {
Merav Sicron65565882012-06-19 07:48:26 +00003930 struct bnx2x_fp_txdata *txdata = fp->txdata_ptr[cos];
Ariel Elior6383c0b2011-07-14 08:31:57 +00003931
Merav Sicron51c1a582012-03-18 10:33:38 +00003932 DP(NETIF_MSG_IFDOWN,
Joe Perches94f05b02011-08-14 12:16:20 +00003933 "freeing tx memory of fp %d cos %d cid %d\n",
Ariel Elior6383c0b2011-07-14 08:31:57 +00003934 fp_index, cos, txdata->cid);
3935
3936 BNX2X_FREE(txdata->tx_buf_ring);
3937 BNX2X_PCI_FREE(txdata->tx_desc_ring,
3938 txdata->tx_desc_mapping,
3939 sizeof(union eth_tx_bd_types) * NUM_TX_BD);
3940 }
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +00003941 }
3942 /* end of fastpath */
3943}
3944
Merav Sicron55c11942012-11-07 00:45:48 +00003945void bnx2x_free_fp_mem_cnic(struct bnx2x *bp)
3946{
3947 int i;
3948 for_each_cnic_queue(bp, i)
3949 bnx2x_free_fp_mem_at(bp, i);
3950}
3951
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +00003952void bnx2x_free_fp_mem(struct bnx2x *bp)
3953{
3954 int i;
Merav Sicron55c11942012-11-07 00:45:48 +00003955 for_each_eth_queue(bp, i)
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +00003956 bnx2x_free_fp_mem_at(bp, i);
3957}
3958
Eric Dumazet1191cb82012-04-27 21:39:21 +00003959static void set_sb_shortcuts(struct bnx2x *bp, int index)
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +00003960{
3961 union host_hc_status_block status_blk = bnx2x_fp(bp, index, status_blk);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03003962 if (!CHIP_IS_E1x(bp)) {
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +00003963 bnx2x_fp(bp, index, sb_index_values) =
3964 (__le16 *)status_blk.e2_sb->sb.index_values;
3965 bnx2x_fp(bp, index, sb_running_index) =
3966 (__le16 *)status_blk.e2_sb->sb.running_index;
3967 } else {
3968 bnx2x_fp(bp, index, sb_index_values) =
3969 (__le16 *)status_blk.e1x_sb->sb.index_values;
3970 bnx2x_fp(bp, index, sb_running_index) =
3971 (__le16 *)status_blk.e1x_sb->sb.running_index;
3972 }
3973}
3974
Eric Dumazet1191cb82012-04-27 21:39:21 +00003975/* Returns the number of actually allocated BDs */
3976static int bnx2x_alloc_rx_bds(struct bnx2x_fastpath *fp,
3977 int rx_ring_size)
3978{
3979 struct bnx2x *bp = fp->bp;
3980 u16 ring_prod, cqe_ring_prod;
3981 int i, failure_cnt = 0;
3982
3983 fp->rx_comp_cons = 0;
3984 cqe_ring_prod = ring_prod = 0;
3985
3986 /* This routine is called only during fo init so
3987 * fp->eth_q_stats.rx_skb_alloc_failed = 0
3988 */
3989 for (i = 0; i < rx_ring_size; i++) {
3990 if (bnx2x_alloc_rx_data(bp, fp, ring_prod) < 0) {
3991 failure_cnt++;
3992 continue;
3993 }
3994 ring_prod = NEXT_RX_IDX(ring_prod);
3995 cqe_ring_prod = NEXT_RCQ_IDX(cqe_ring_prod);
3996 WARN_ON(ring_prod <= (i - failure_cnt));
3997 }
3998
3999 if (failure_cnt)
4000 BNX2X_ERR("was only able to allocate %d rx skbs on queue[%d]\n",
4001 i - failure_cnt, fp->index);
4002
4003 fp->rx_bd_prod = ring_prod;
4004 /* Limit the CQE producer by the CQE ring size */
4005 fp->rx_comp_prod = min_t(u16, NUM_RCQ_RINGS*RCQ_DESC_CNT,
4006 cqe_ring_prod);
4007 fp->rx_pkt = fp->rx_calls = 0;
4008
Barak Witkowski15192a82012-06-19 07:48:28 +00004009 bnx2x_fp_stats(bp, fp)->eth_q_stats.rx_skb_alloc_failed += failure_cnt;
Eric Dumazet1191cb82012-04-27 21:39:21 +00004010
4011 return i - failure_cnt;
4012}
4013
4014static void bnx2x_set_next_page_rx_cq(struct bnx2x_fastpath *fp)
4015{
4016 int i;
4017
4018 for (i = 1; i <= NUM_RCQ_RINGS; i++) {
4019 struct eth_rx_cqe_next_page *nextpg;
4020
4021 nextpg = (struct eth_rx_cqe_next_page *)
4022 &fp->rx_comp_ring[RCQ_DESC_CNT * i - 1];
4023 nextpg->addr_hi =
4024 cpu_to_le32(U64_HI(fp->rx_comp_mapping +
4025 BCM_PAGE_SIZE*(i % NUM_RCQ_RINGS)));
4026 nextpg->addr_lo =
4027 cpu_to_le32(U64_LO(fp->rx_comp_mapping +
4028 BCM_PAGE_SIZE*(i % NUM_RCQ_RINGS)));
4029 }
4030}
4031
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +00004032static int bnx2x_alloc_fp_mem_at(struct bnx2x *bp, int index)
4033{
4034 union host_hc_status_block *sb;
4035 struct bnx2x_fastpath *fp = &bp->fp[index];
4036 int ring_size = 0;
Ariel Elior6383c0b2011-07-14 08:31:57 +00004037 u8 cos;
David S. Miller8decf862011-09-22 03:23:13 -04004038 int rx_ring_size = 0;
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +00004039
Barak Witkowskia3348722012-04-23 03:04:46 +00004040 if (!bp->rx_ring_size &&
4041 (IS_MF_STORAGE_SD(bp) || IS_MF_FCOE_AFEX(bp))) {
Dmitry Kravkov614c76d2011-11-28 12:31:49 +00004042 rx_ring_size = MIN_RX_SIZE_NONTPA;
4043 bp->rx_ring_size = rx_ring_size;
Merav Sicron55c11942012-11-07 00:45:48 +00004044 } else if (!bp->rx_ring_size) {
David S. Miller8decf862011-09-22 03:23:13 -04004045 rx_ring_size = MAX_RX_AVAIL/BNX2X_NUM_RX_QUEUES(bp);
4046
Yuval Mintz065f8b92012-10-03 04:22:59 +00004047 if (CHIP_IS_E3(bp)) {
4048 u32 cfg = SHMEM_RD(bp,
4049 dev_info.port_hw_config[BP_PORT(bp)].
4050 default_cfg);
4051
4052 /* Decrease ring size for 1G functions */
4053 if ((cfg & PORT_HW_CFG_NET_SERDES_IF_MASK) ==
4054 PORT_HW_CFG_NET_SERDES_IF_SGMII)
4055 rx_ring_size /= 10;
4056 }
Mintz Yuvald760fc32012-02-15 02:10:28 +00004057
David S. Miller8decf862011-09-22 03:23:13 -04004058 /* allocate at least number of buffers required by FW */
4059 rx_ring_size = max_t(int, bp->disable_tpa ? MIN_RX_SIZE_NONTPA :
4060 MIN_RX_SIZE_TPA, rx_ring_size);
4061
4062 bp->rx_ring_size = rx_ring_size;
Dmitry Kravkov614c76d2011-11-28 12:31:49 +00004063 } else /* if rx_ring_size specified - use it */
David S. Miller8decf862011-09-22 03:23:13 -04004064 rx_ring_size = bp->rx_ring_size;
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +00004065
Yuval Mintz04c46732013-01-23 03:21:46 +00004066 DP(BNX2X_MSG_SP, "calculated rx_ring_size %d\n", rx_ring_size);
4067
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +00004068 /* Common */
4069 sb = &bnx2x_fp(bp, index, status_blk);
Merav Sicron55c11942012-11-07 00:45:48 +00004070
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +00004071 if (!IS_FCOE_IDX(index)) {
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +00004072 /* status blocks */
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03004073 if (!CHIP_IS_E1x(bp))
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +00004074 BNX2X_PCI_ALLOC(sb->e2_sb,
4075 &bnx2x_fp(bp, index, status_blk_mapping),
4076 sizeof(struct host_hc_status_block_e2));
4077 else
4078 BNX2X_PCI_ALLOC(sb->e1x_sb,
4079 &bnx2x_fp(bp, index, status_blk_mapping),
4080 sizeof(struct host_hc_status_block_e1x));
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +00004081 }
Dmitry Kravkov8eef2af2011-06-14 01:32:47 +00004082
4083 /* FCoE Queue uses Default SB and doesn't ACK the SB, thus no need to
4084 * set shortcuts for it.
4085 */
4086 if (!IS_FCOE_IDX(index))
4087 set_sb_shortcuts(bp, index);
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +00004088
4089 /* Tx */
4090 if (!skip_tx_queue(bp, index)) {
4091 /* fastpath tx rings: tx_buf tx_desc */
Ariel Elior6383c0b2011-07-14 08:31:57 +00004092 for_each_cos_in_tx_queue(fp, cos) {
Merav Sicron65565882012-06-19 07:48:26 +00004093 struct bnx2x_fp_txdata *txdata = fp->txdata_ptr[cos];
Ariel Elior6383c0b2011-07-14 08:31:57 +00004094
Merav Sicron51c1a582012-03-18 10:33:38 +00004095 DP(NETIF_MSG_IFUP,
4096 "allocating tx memory of fp %d cos %d\n",
Ariel Elior6383c0b2011-07-14 08:31:57 +00004097 index, cos);
4098
4099 BNX2X_ALLOC(txdata->tx_buf_ring,
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +00004100 sizeof(struct sw_tx_bd) * NUM_TX_BD);
Ariel Elior6383c0b2011-07-14 08:31:57 +00004101 BNX2X_PCI_ALLOC(txdata->tx_desc_ring,
4102 &txdata->tx_desc_mapping,
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +00004103 sizeof(union eth_tx_bd_types) * NUM_TX_BD);
Ariel Elior6383c0b2011-07-14 08:31:57 +00004104 }
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +00004105 }
4106
4107 /* Rx */
4108 if (!skip_rx_queue(bp, index)) {
4109 /* fastpath rx rings: rx_buf rx_desc rx_comp */
4110 BNX2X_ALLOC(bnx2x_fp(bp, index, rx_buf_ring),
4111 sizeof(struct sw_rx_bd) * NUM_RX_BD);
4112 BNX2X_PCI_ALLOC(bnx2x_fp(bp, index, rx_desc_ring),
4113 &bnx2x_fp(bp, index, rx_desc_mapping),
4114 sizeof(struct eth_rx_bd) * NUM_RX_BD);
4115
4116 BNX2X_PCI_ALLOC(bnx2x_fp(bp, index, rx_comp_ring),
4117 &bnx2x_fp(bp, index, rx_comp_mapping),
4118 sizeof(struct eth_fast_path_rx_cqe) *
4119 NUM_RCQ_BD);
4120
4121 /* SGE ring */
4122 BNX2X_ALLOC(bnx2x_fp(bp, index, rx_page_ring),
4123 sizeof(struct sw_rx_page) * NUM_RX_SGE);
4124 BNX2X_PCI_ALLOC(bnx2x_fp(bp, index, rx_sge_ring),
4125 &bnx2x_fp(bp, index, rx_sge_mapping),
4126 BCM_PAGE_SIZE * NUM_RX_SGE_PAGES);
4127 /* RX BD ring */
4128 bnx2x_set_next_page_rx_bd(fp);
4129
4130 /* CQ ring */
4131 bnx2x_set_next_page_rx_cq(fp);
4132
4133 /* BDs */
4134 ring_size = bnx2x_alloc_rx_bds(fp, rx_ring_size);
4135 if (ring_size < rx_ring_size)
4136 goto alloc_mem_err;
4137 }
4138
4139 return 0;
4140
4141/* handles low memory cases */
4142alloc_mem_err:
4143 BNX2X_ERR("Unable to allocate full memory for queue %d (size %d)\n",
4144 index, ring_size);
4145 /* FW will drop all packets if queue is not big enough,
4146 * In these cases we disable the queue
Ariel Elior6383c0b2011-07-14 08:31:57 +00004147 * Min size is different for OOO, TPA and non-TPA queues
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +00004148 */
4149 if (ring_size < (fp->disable_tpa ?
Dmitry Kravkoveb722d72011-05-24 02:06:06 +00004150 MIN_RX_SIZE_NONTPA : MIN_RX_SIZE_TPA)) {
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +00004151 /* release memory allocated for this queue */
4152 bnx2x_free_fp_mem_at(bp, index);
4153 return -ENOMEM;
4154 }
4155 return 0;
4156}
4157
Merav Sicron55c11942012-11-07 00:45:48 +00004158int bnx2x_alloc_fp_mem_cnic(struct bnx2x *bp)
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +00004159{
Dmitry Kravkov8eef2af2011-06-14 01:32:47 +00004160 if (!NO_FCOE(bp))
4161 /* FCoE */
Merav Sicron65565882012-06-19 07:48:26 +00004162 if (bnx2x_alloc_fp_mem_at(bp, FCOE_IDX(bp)))
Dmitry Kravkov8eef2af2011-06-14 01:32:47 +00004163 /* we will fail load process instead of mark
4164 * NO_FCOE_FLAG
4165 */
4166 return -ENOMEM;
Merav Sicron55c11942012-11-07 00:45:48 +00004167
4168 return 0;
4169}
4170
4171int bnx2x_alloc_fp_mem(struct bnx2x *bp)
4172{
4173 int i;
4174
4175 /* 1. Allocate FP for leading - fatal if error
4176 * 2. Allocate RSS - fix number of queues if error
4177 */
4178
4179 /* leading */
4180 if (bnx2x_alloc_fp_mem_at(bp, 0))
4181 return -ENOMEM;
Ariel Elior6383c0b2011-07-14 08:31:57 +00004182
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +00004183 /* RSS */
4184 for_each_nondefault_eth_queue(bp, i)
4185 if (bnx2x_alloc_fp_mem_at(bp, i))
4186 break;
4187
4188 /* handle memory failures */
4189 if (i != BNX2X_NUM_ETH_QUEUES(bp)) {
4190 int delta = BNX2X_NUM_ETH_QUEUES(bp) - i;
4191
4192 WARN_ON(delta < 0);
Yuval Mintz4864a162013-01-10 04:53:39 +00004193 bnx2x_shrink_eth_fp(bp, delta);
Merav Sicron55c11942012-11-07 00:45:48 +00004194 if (CNIC_SUPPORT(bp))
4195 /* move non eth FPs next to last eth FP
4196 * must be done in that order
4197 * FCOE_IDX < FWD_IDX < OOO_IDX
4198 */
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +00004199
Merav Sicron55c11942012-11-07 00:45:48 +00004200 /* move FCoE fp even NO_FCOE_FLAG is on */
4201 bnx2x_move_fp(bp, FCOE_IDX(bp), FCOE_IDX(bp) - delta);
4202 bp->num_ethernet_queues -= delta;
4203 bp->num_queues = bp->num_ethernet_queues +
4204 bp->num_cnic_queues;
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +00004205 BNX2X_ERR("Adjusted num of queues from %d to %d\n",
4206 bp->num_queues + delta, bp->num_queues);
4207 }
4208
4209 return 0;
4210}
Dmitry Kravkovd6214d72010-10-06 03:32:10 +00004211
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004212void bnx2x_free_mem_bp(struct bnx2x *bp)
4213{
Dmitry Kravkovc3146eb2013-01-23 03:21:48 +00004214 int i;
4215
4216 for (i = 0; i < bp->fp_array_size; i++)
4217 kfree(bp->fp[i].tpa_info);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004218 kfree(bp->fp);
Barak Witkowski15192a82012-06-19 07:48:28 +00004219 kfree(bp->sp_objs);
4220 kfree(bp->fp_stats);
Merav Sicron65565882012-06-19 07:48:26 +00004221 kfree(bp->bnx2x_txq);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004222 kfree(bp->msix_table);
4223 kfree(bp->ilt);
4224}
4225
Bill Pemberton0329aba2012-12-03 09:24:24 -05004226int bnx2x_alloc_mem_bp(struct bnx2x *bp)
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004227{
4228 struct bnx2x_fastpath *fp;
4229 struct msix_entry *tbl;
4230 struct bnx2x_ilt *ilt;
Ariel Elior6383c0b2011-07-14 08:31:57 +00004231 int msix_table_size = 0;
Merav Sicron55c11942012-11-07 00:45:48 +00004232 int fp_array_size, txq_array_size;
Barak Witkowski15192a82012-06-19 07:48:28 +00004233 int i;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004234
Ariel Elior6383c0b2011-07-14 08:31:57 +00004235 /*
4236 * The biggest MSI-X table we might need is as a maximum number of fast
Yuval Mintz2de67432013-01-23 03:21:43 +00004237 * path IGU SBs plus default SB (for PF only).
Ariel Elior6383c0b2011-07-14 08:31:57 +00004238 */
Ariel Elior1ab44342013-01-01 05:22:23 +00004239 msix_table_size = bp->igu_sb_cnt;
4240 if (IS_PF(bp))
4241 msix_table_size++;
4242 BNX2X_DEV_INFO("msix_table_size %d\n", msix_table_size);
Ariel Elior6383c0b2011-07-14 08:31:57 +00004243
4244 /* fp array: RSS plus CNIC related L2 queues */
Merav Sicron55c11942012-11-07 00:45:48 +00004245 fp_array_size = BNX2X_MAX_RSS_COUNT(bp) + CNIC_SUPPORT(bp);
Dmitry Kravkovc3146eb2013-01-23 03:21:48 +00004246 bp->fp_array_size = fp_array_size;
4247 BNX2X_DEV_INFO("fp_array_size %d\n", bp->fp_array_size);
Barak Witkowski15192a82012-06-19 07:48:28 +00004248
Dmitry Kravkovc3146eb2013-01-23 03:21:48 +00004249 fp = kcalloc(bp->fp_array_size, sizeof(*fp), GFP_KERNEL);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004250 if (!fp)
4251 goto alloc_err;
Dmitry Kravkovc3146eb2013-01-23 03:21:48 +00004252 for (i = 0; i < bp->fp_array_size; i++) {
Barak Witkowski15192a82012-06-19 07:48:28 +00004253 fp[i].tpa_info =
4254 kcalloc(ETH_MAX_AGGREGATION_QUEUES_E1H_E2,
4255 sizeof(struct bnx2x_agg_info), GFP_KERNEL);
4256 if (!(fp[i].tpa_info))
4257 goto alloc_err;
4258 }
4259
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004260 bp->fp = fp;
4261
Barak Witkowski15192a82012-06-19 07:48:28 +00004262 /* allocate sp objs */
Dmitry Kravkovc3146eb2013-01-23 03:21:48 +00004263 bp->sp_objs = kcalloc(bp->fp_array_size, sizeof(struct bnx2x_sp_objs),
Barak Witkowski15192a82012-06-19 07:48:28 +00004264 GFP_KERNEL);
4265 if (!bp->sp_objs)
4266 goto alloc_err;
4267
4268 /* allocate fp_stats */
Dmitry Kravkovc3146eb2013-01-23 03:21:48 +00004269 bp->fp_stats = kcalloc(bp->fp_array_size, sizeof(struct bnx2x_fp_stats),
Barak Witkowski15192a82012-06-19 07:48:28 +00004270 GFP_KERNEL);
4271 if (!bp->fp_stats)
4272 goto alloc_err;
4273
Merav Sicron65565882012-06-19 07:48:26 +00004274 /* Allocate memory for the transmission queues array */
Merav Sicron55c11942012-11-07 00:45:48 +00004275 txq_array_size =
4276 BNX2X_MAX_RSS_COUNT(bp) * BNX2X_MULTI_TX_COS + CNIC_SUPPORT(bp);
4277 BNX2X_DEV_INFO("txq_array_size %d", txq_array_size);
4278
4279 bp->bnx2x_txq = kcalloc(txq_array_size, sizeof(struct bnx2x_fp_txdata),
4280 GFP_KERNEL);
Merav Sicron65565882012-06-19 07:48:26 +00004281 if (!bp->bnx2x_txq)
4282 goto alloc_err;
4283
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004284 /* msix table */
Thomas Meyer01e23742011-11-29 11:08:00 +00004285 tbl = kcalloc(msix_table_size, sizeof(*tbl), GFP_KERNEL);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004286 if (!tbl)
4287 goto alloc_err;
4288 bp->msix_table = tbl;
4289
4290 /* ilt */
4291 ilt = kzalloc(sizeof(*ilt), GFP_KERNEL);
4292 if (!ilt)
4293 goto alloc_err;
4294 bp->ilt = ilt;
4295
4296 return 0;
4297alloc_err:
4298 bnx2x_free_mem_bp(bp);
4299 return -ENOMEM;
4300
4301}
4302
Dmitry Kravkova9fccec2011-06-14 01:33:30 +00004303int bnx2x_reload_if_running(struct net_device *dev)
Michał Mirosław66371c42011-04-12 09:38:23 +00004304{
4305 struct bnx2x *bp = netdev_priv(dev);
4306
4307 if (unlikely(!netif_running(dev)))
4308 return 0;
4309
Yuval Mintz5d07d862012-09-13 02:56:21 +00004310 bnx2x_nic_unload(bp, UNLOAD_NORMAL, true);
Michał Mirosław66371c42011-04-12 09:38:23 +00004311 return bnx2x_nic_load(bp, LOAD_NORMAL);
4312}
4313
Yaniv Rosner1ac9e422011-05-31 21:26:11 +00004314int bnx2x_get_cur_phy_idx(struct bnx2x *bp)
4315{
4316 u32 sel_phy_idx = 0;
4317 if (bp->link_params.num_phys <= 1)
4318 return INT_PHY;
4319
4320 if (bp->link_vars.link_up) {
4321 sel_phy_idx = EXT_PHY1;
4322 /* In case link is SERDES, check if the EXT_PHY2 is the one */
4323 if ((bp->link_vars.link_status & LINK_STATUS_SERDES_LINK) &&
4324 (bp->link_params.phy[EXT_PHY2].supported & SUPPORTED_FIBRE))
4325 sel_phy_idx = EXT_PHY2;
4326 } else {
4327
4328 switch (bnx2x_phy_selection(&bp->link_params)) {
4329 case PORT_HW_CFG_PHY_SELECTION_HARDWARE_DEFAULT:
4330 case PORT_HW_CFG_PHY_SELECTION_FIRST_PHY:
4331 case PORT_HW_CFG_PHY_SELECTION_FIRST_PHY_PRIORITY:
4332 sel_phy_idx = EXT_PHY1;
4333 break;
4334 case PORT_HW_CFG_PHY_SELECTION_SECOND_PHY:
4335 case PORT_HW_CFG_PHY_SELECTION_SECOND_PHY_PRIORITY:
4336 sel_phy_idx = EXT_PHY2;
4337 break;
4338 }
4339 }
4340
4341 return sel_phy_idx;
4342
4343}
4344int bnx2x_get_link_cfg_idx(struct bnx2x *bp)
4345{
4346 u32 sel_phy_idx = bnx2x_get_cur_phy_idx(bp);
4347 /*
Yuval Mintz2de67432013-01-23 03:21:43 +00004348 * The selected activated PHY is always after swapping (in case PHY
Yaniv Rosner1ac9e422011-05-31 21:26:11 +00004349 * swapping is enabled). So when swapping is enabled, we need to reverse
4350 * the configuration
4351 */
4352
4353 if (bp->link_params.multi_phy_config &
4354 PORT_HW_CFG_PHY_SWAPPED_ENABLED) {
4355 if (sel_phy_idx == EXT_PHY1)
4356 sel_phy_idx = EXT_PHY2;
4357 else if (sel_phy_idx == EXT_PHY2)
4358 sel_phy_idx = EXT_PHY1;
4359 }
4360 return LINK_CONFIG_IDX(sel_phy_idx);
4361}
4362
Merav Sicron55c11942012-11-07 00:45:48 +00004363#ifdef NETDEV_FCOE_WWNN
Vladislav Zolotarovbf61ee12011-07-21 07:56:51 +00004364int bnx2x_fcoe_get_wwn(struct net_device *dev, u64 *wwn, int type)
4365{
4366 struct bnx2x *bp = netdev_priv(dev);
4367 struct cnic_eth_dev *cp = &bp->cnic_eth_dev;
4368
4369 switch (type) {
4370 case NETDEV_FCOE_WWNN:
4371 *wwn = HILO_U64(cp->fcoe_wwn_node_name_hi,
4372 cp->fcoe_wwn_node_name_lo);
4373 break;
4374 case NETDEV_FCOE_WWPN:
4375 *wwn = HILO_U64(cp->fcoe_wwn_port_name_hi,
4376 cp->fcoe_wwn_port_name_lo);
4377 break;
4378 default:
Merav Sicron51c1a582012-03-18 10:33:38 +00004379 BNX2X_ERR("Wrong WWN type requested - %d\n", type);
Vladislav Zolotarovbf61ee12011-07-21 07:56:51 +00004380 return -EINVAL;
4381 }
4382
4383 return 0;
4384}
4385#endif
4386
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00004387/* called with rtnl_lock */
4388int bnx2x_change_mtu(struct net_device *dev, int new_mtu)
4389{
4390 struct bnx2x *bp = netdev_priv(dev);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00004391
4392 if (bp->recovery_state != BNX2X_RECOVERY_DONE) {
Merav Sicron51c1a582012-03-18 10:33:38 +00004393 BNX2X_ERR("Can't perform change MTU during parity recovery\n");
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00004394 return -EAGAIN;
4395 }
4396
4397 if ((new_mtu > ETH_MAX_JUMBO_PACKET_SIZE) ||
Merav Sicron51c1a582012-03-18 10:33:38 +00004398 ((new_mtu + ETH_HLEN) < ETH_MIN_PACKET_SIZE)) {
4399 BNX2X_ERR("Can't support requested MTU size\n");
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00004400 return -EINVAL;
Merav Sicron51c1a582012-03-18 10:33:38 +00004401 }
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00004402
4403 /* This does not race with packet allocation
4404 * because the actual alloc size is
4405 * only updated as part of load
4406 */
4407 dev->mtu = new_mtu;
4408
Michał Mirosław66371c42011-04-12 09:38:23 +00004409 return bnx2x_reload_if_running(dev);
4410}
4411
Michał Mirosławc8f44af2011-11-15 15:29:55 +00004412netdev_features_t bnx2x_fix_features(struct net_device *dev,
Dmitry Kravkov621b4d62012-02-20 09:59:08 +00004413 netdev_features_t features)
Michał Mirosław66371c42011-04-12 09:38:23 +00004414{
4415 struct bnx2x *bp = netdev_priv(dev);
4416
4417 /* TPA requires Rx CSUM offloading */
Dmitry Kravkov621b4d62012-02-20 09:59:08 +00004418 if (!(features & NETIF_F_RXCSUM) || bp->disable_tpa) {
Michał Mirosław66371c42011-04-12 09:38:23 +00004419 features &= ~NETIF_F_LRO;
Dmitry Kravkov621b4d62012-02-20 09:59:08 +00004420 features &= ~NETIF_F_GRO;
4421 }
Michał Mirosław66371c42011-04-12 09:38:23 +00004422
4423 return features;
4424}
4425
Michał Mirosławc8f44af2011-11-15 15:29:55 +00004426int bnx2x_set_features(struct net_device *dev, netdev_features_t features)
Michał Mirosław66371c42011-04-12 09:38:23 +00004427{
4428 struct bnx2x *bp = netdev_priv(dev);
4429 u32 flags = bp->flags;
Mahesh Bandewar538dd2e2011-05-13 15:08:49 +00004430 bool bnx2x_reload = false;
Michał Mirosław66371c42011-04-12 09:38:23 +00004431
4432 if (features & NETIF_F_LRO)
4433 flags |= TPA_ENABLE_FLAG;
4434 else
4435 flags &= ~TPA_ENABLE_FLAG;
4436
Dmitry Kravkov621b4d62012-02-20 09:59:08 +00004437 if (features & NETIF_F_GRO)
4438 flags |= GRO_ENABLE_FLAG;
4439 else
4440 flags &= ~GRO_ENABLE_FLAG;
4441
Mahesh Bandewar538dd2e2011-05-13 15:08:49 +00004442 if (features & NETIF_F_LOOPBACK) {
4443 if (bp->link_params.loopback_mode != LOOPBACK_BMAC) {
4444 bp->link_params.loopback_mode = LOOPBACK_BMAC;
4445 bnx2x_reload = true;
4446 }
4447 } else {
4448 if (bp->link_params.loopback_mode != LOOPBACK_NONE) {
4449 bp->link_params.loopback_mode = LOOPBACK_NONE;
4450 bnx2x_reload = true;
4451 }
4452 }
4453
Michał Mirosław66371c42011-04-12 09:38:23 +00004454 if (flags ^ bp->flags) {
4455 bp->flags = flags;
Mahesh Bandewar538dd2e2011-05-13 15:08:49 +00004456 bnx2x_reload = true;
4457 }
Michał Mirosław66371c42011-04-12 09:38:23 +00004458
Mahesh Bandewar538dd2e2011-05-13 15:08:49 +00004459 if (bnx2x_reload) {
Michał Mirosław66371c42011-04-12 09:38:23 +00004460 if (bp->recovery_state == BNX2X_RECOVERY_DONE)
4461 return bnx2x_reload_if_running(dev);
4462 /* else: bnx2x_nic_load() will be called at end of recovery */
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00004463 }
4464
Michał Mirosław66371c42011-04-12 09:38:23 +00004465 return 0;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00004466}
4467
4468void bnx2x_tx_timeout(struct net_device *dev)
4469{
4470 struct bnx2x *bp = netdev_priv(dev);
4471
4472#ifdef BNX2X_STOP_ON_ERROR
4473 if (!bp->panic)
4474 bnx2x_panic();
4475#endif
Ariel Elior7be08a72011-07-14 08:31:19 +00004476
4477 smp_mb__before_clear_bit();
4478 set_bit(BNX2X_SP_RTNL_TX_TIMEOUT, &bp->sp_rtnl_state);
4479 smp_mb__after_clear_bit();
4480
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00004481 /* This allows the netif to be shutdown gracefully before resetting */
Ariel Elior7be08a72011-07-14 08:31:19 +00004482 schedule_delayed_work(&bp->sp_rtnl_task, 0);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00004483}
4484
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00004485int bnx2x_suspend(struct pci_dev *pdev, pm_message_t state)
4486{
4487 struct net_device *dev = pci_get_drvdata(pdev);
4488 struct bnx2x *bp;
4489
4490 if (!dev) {
4491 dev_err(&pdev->dev, "BAD net device from bnx2x_init_one\n");
4492 return -ENODEV;
4493 }
4494 bp = netdev_priv(dev);
4495
4496 rtnl_lock();
4497
4498 pci_save_state(pdev);
4499
4500 if (!netif_running(dev)) {
4501 rtnl_unlock();
4502 return 0;
4503 }
4504
4505 netif_device_detach(dev);
4506
Yuval Mintz5d07d862012-09-13 02:56:21 +00004507 bnx2x_nic_unload(bp, UNLOAD_CLOSE, false);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00004508
4509 bnx2x_set_power_state(bp, pci_choose_state(pdev, state));
4510
4511 rtnl_unlock();
4512
4513 return 0;
4514}
4515
4516int bnx2x_resume(struct pci_dev *pdev)
4517{
4518 struct net_device *dev = pci_get_drvdata(pdev);
4519 struct bnx2x *bp;
4520 int rc;
4521
4522 if (!dev) {
4523 dev_err(&pdev->dev, "BAD net device from bnx2x_init_one\n");
4524 return -ENODEV;
4525 }
4526 bp = netdev_priv(dev);
4527
4528 if (bp->recovery_state != BNX2X_RECOVERY_DONE) {
Merav Sicron51c1a582012-03-18 10:33:38 +00004529 BNX2X_ERR("Handling parity error recovery. Try again later\n");
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00004530 return -EAGAIN;
4531 }
4532
4533 rtnl_lock();
4534
4535 pci_restore_state(pdev);
4536
4537 if (!netif_running(dev)) {
4538 rtnl_unlock();
4539 return 0;
4540 }
4541
4542 bnx2x_set_power_state(bp, PCI_D0);
4543 netif_device_attach(dev);
4544
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00004545 rc = bnx2x_nic_load(bp, LOAD_OPEN);
4546
4547 rtnl_unlock();
4548
4549 return rc;
4550}
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03004551
4552
4553void bnx2x_set_ctx_validation(struct bnx2x *bp, struct eth_context *cxt,
4554 u32 cid)
4555{
4556 /* ustorm cxt validation */
4557 cxt->ustorm_ag_context.cdu_usage =
4558 CDU_RSRVD_VALUE_TYPE_A(HW_CID(bp, cid),
4559 CDU_REGION_NUMBER_UCM_AG, ETH_CONNECTION_TYPE);
4560 /* xcontext validation */
4561 cxt->xstorm_ag_context.cdu_reserved =
4562 CDU_RSRVD_VALUE_TYPE_A(HW_CID(bp, cid),
4563 CDU_REGION_NUMBER_XCM_AG, ETH_CONNECTION_TYPE);
4564}
4565
Eric Dumazet1191cb82012-04-27 21:39:21 +00004566static void storm_memset_hc_timeout(struct bnx2x *bp, u8 port,
4567 u8 fw_sb_id, u8 sb_index,
4568 u8 ticks)
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03004569{
4570
4571 u32 addr = BAR_CSTRORM_INTMEM +
4572 CSTORM_STATUS_BLOCK_DATA_TIMEOUT_OFFSET(fw_sb_id, sb_index);
4573 REG_WR8(bp, addr, ticks);
Merav Sicron51c1a582012-03-18 10:33:38 +00004574 DP(NETIF_MSG_IFUP,
4575 "port %x fw_sb_id %d sb_index %d ticks %d\n",
4576 port, fw_sb_id, sb_index, ticks);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03004577}
4578
Eric Dumazet1191cb82012-04-27 21:39:21 +00004579static void storm_memset_hc_disable(struct bnx2x *bp, u8 port,
4580 u16 fw_sb_id, u8 sb_index,
4581 u8 disable)
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03004582{
4583 u32 enable_flag = disable ? 0 : (1 << HC_INDEX_DATA_HC_ENABLED_SHIFT);
4584 u32 addr = BAR_CSTRORM_INTMEM +
4585 CSTORM_STATUS_BLOCK_DATA_FLAGS_OFFSET(fw_sb_id, sb_index);
Ariel Elior0c14e5c2013-04-17 22:49:06 +00004586 u8 flags = REG_RD8(bp, addr);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03004587 /* clear and set */
4588 flags &= ~HC_INDEX_DATA_HC_ENABLED;
4589 flags |= enable_flag;
Ariel Elior0c14e5c2013-04-17 22:49:06 +00004590 REG_WR8(bp, addr, flags);
Merav Sicron51c1a582012-03-18 10:33:38 +00004591 DP(NETIF_MSG_IFUP,
4592 "port %x fw_sb_id %d sb_index %d disable %d\n",
4593 port, fw_sb_id, sb_index, disable);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03004594}
4595
4596void bnx2x_update_coalesce_sb_index(struct bnx2x *bp, u8 fw_sb_id,
4597 u8 sb_index, u8 disable, u16 usec)
4598{
4599 int port = BP_PORT(bp);
4600 u8 ticks = usec / BNX2X_BTR;
4601
4602 storm_memset_hc_timeout(bp, port, fw_sb_id, sb_index, ticks);
4603
4604 disable = disable ? 1 : (usec ? 0 : 1);
4605 storm_memset_hc_disable(bp, port, fw_sb_id, sb_index, disable);
4606}