blob: 24f2a0970a6487b31cef7a68b379714f7323d51e [file] [log] [blame]
Michael Chana4636962009-06-08 18:14:43 -07001/* cnic.c: Broadcom CNIC core network driver.
2 *
Michael Chan3238a9b2012-02-05 15:24:40 +00003 * Copyright (c) 2006-2012 Broadcom Corporation
Michael Chana4636962009-06-08 18:14:43 -07004 *
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 * Original skeleton written by: John(Zongxi) Chen (zongxi@broadcom.com)
10 * Modified and maintained by: Michael Chan <mchan@broadcom.com>
11 */
12
Joe Perchesddf79b22010-02-17 15:01:54 +000013#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
14
Michael Chana4636962009-06-08 18:14:43 -070015#include <linux/module.h>
16
17#include <linux/kernel.h>
18#include <linux/errno.h>
19#include <linux/list.h>
20#include <linux/slab.h>
21#include <linux/pci.h>
22#include <linux/init.h>
23#include <linux/netdevice.h>
24#include <linux/uio_driver.h>
25#include <linux/in.h>
26#include <linux/dma-mapping.h>
27#include <linux/delay.h>
28#include <linux/ethtool.h>
29#include <linux/if_vlan.h>
Paul Gortmaker70c71602011-05-22 16:47:17 -040030#include <linux/prefetch.h>
Michael Chan973e5742011-07-13 17:24:17 +000031#include <linux/random.h>
Michael Chana4636962009-06-08 18:14:43 -070032#if defined(CONFIG_VLAN_8021Q) || defined(CONFIG_VLAN_8021Q_MODULE)
33#define BCM_VLAN 1
34#endif
35#include <net/ip.h>
36#include <net/tcp.h>
37#include <net/route.h>
38#include <net/ipv6.h>
39#include <net/ip6_route.h>
David S. Millerc05e85a2009-10-12 23:18:35 -070040#include <net/ip6_checksum.h>
Michael Chana4636962009-06-08 18:14:43 -070041#include <scsi/iscsi_if.h>
42
Michael Chan4bd9b0ff2012-12-06 10:33:12 +000043#define BCM_CNIC 1
Michael Chana4636962009-06-08 18:14:43 -070044#include "cnic_if.h"
45#include "bnx2.h"
Michael Chan68c64d22012-12-06 10:33:11 +000046#include "bnx2x/bnx2x.h"
Dmitry Kravkov5d1e8592010-07-27 12:31:10 +000047#include "bnx2x/bnx2x_reg.h"
48#include "bnx2x/bnx2x_fw_defs.h"
49#include "bnx2x/bnx2x_hsi.h"
Jeff Kirsheradfc5212011-04-07 06:03:04 -070050#include "../../../scsi/bnx2i/57xx_iscsi_constants.h"
51#include "../../../scsi/bnx2i/57xx_iscsi_hsi.h"
Michael Chan8ec3e702012-03-21 15:38:34 +000052#include "../../../scsi/bnx2fc/bnx2fc_constants.h"
Michael Chana4636962009-06-08 18:14:43 -070053#include "cnic.h"
54#include "cnic_defs.h"
55
Michael Chan68c64d22012-12-06 10:33:11 +000056#define CNIC_MODULE_NAME "cnic"
Michael Chana4636962009-06-08 18:14:43 -070057
Bill Pemberton047fc562012-12-03 09:24:23 -050058static char version[] =
Michael Chan68c64d22012-12-06 10:33:11 +000059 "Broadcom NetXtreme II CNIC Driver " CNIC_MODULE_NAME " v" CNIC_MODULE_VERSION " (" CNIC_MODULE_RELDATE ")\n";
Michael Chana4636962009-06-08 18:14:43 -070060
61MODULE_AUTHOR("Michael Chan <mchan@broadcom.com> and John(Zongxi) "
62 "Chen (zongxi@broadcom.com");
63MODULE_DESCRIPTION("Broadcom NetXtreme II CNIC Driver");
64MODULE_LICENSE("GPL");
65MODULE_VERSION(CNIC_MODULE_VERSION);
66
Michael Chan8adc92402010-12-23 07:42:57 +000067/* cnic_dev_list modifications are protected by both rtnl and cnic_dev_lock */
Michael Chana4636962009-06-08 18:14:43 -070068static LIST_HEAD(cnic_dev_list);
Michael Chana3ceeeb2010-10-13 14:06:50 +000069static LIST_HEAD(cnic_udev_list);
Michael Chana4636962009-06-08 18:14:43 -070070static DEFINE_RWLOCK(cnic_dev_lock);
71static DEFINE_MUTEX(cnic_lock);
72
Eric Dumazet13707f92011-01-26 19:28:23 +000073static struct cnic_ulp_ops __rcu *cnic_ulp_tbl[MAX_CNIC_ULP_TYPE];
74
75/* helper function, assuming cnic_lock is held */
76static inline struct cnic_ulp_ops *cnic_ulp_tbl_prot(int type)
77{
78 return rcu_dereference_protected(cnic_ulp_tbl[type],
79 lockdep_is_held(&cnic_lock));
80}
Michael Chana4636962009-06-08 18:14:43 -070081
82static int cnic_service_bnx2(void *, void *);
Michael Chan71034ba2009-10-10 13:46:59 +000083static int cnic_service_bnx2x(void *, void *);
Michael Chana4636962009-06-08 18:14:43 -070084static int cnic_ctl(void *, struct cnic_ctl_info *);
85
86static struct cnic_ops cnic_bnx2_ops = {
87 .cnic_owner = THIS_MODULE,
88 .cnic_handler = cnic_service_bnx2,
89 .cnic_ctl = cnic_ctl,
90};
91
Michael Chan71034ba2009-10-10 13:46:59 +000092static struct cnic_ops cnic_bnx2x_ops = {
93 .cnic_owner = THIS_MODULE,
94 .cnic_handler = cnic_service_bnx2x,
95 .cnic_ctl = cnic_ctl,
96};
97
Michael Chanfdf24082010-10-13 14:06:47 +000098static struct workqueue_struct *cnic_wq;
99
Michael Chan86b53602009-10-10 13:46:57 +0000100static void cnic_shutdown_rings(struct cnic_dev *);
101static void cnic_init_rings(struct cnic_dev *);
Michael Chana4636962009-06-08 18:14:43 -0700102static int cnic_cm_set_pg(struct cnic_sock *);
103
104static int cnic_uio_open(struct uio_info *uinfo, struct inode *inode)
105{
Michael Chancd801532010-10-13 14:06:49 +0000106 struct cnic_uio_dev *udev = uinfo->priv;
107 struct cnic_dev *dev;
Michael Chana4636962009-06-08 18:14:43 -0700108
109 if (!capable(CAP_NET_ADMIN))
110 return -EPERM;
111
Michael Chancd801532010-10-13 14:06:49 +0000112 if (udev->uio_dev != -1)
Michael Chana4636962009-06-08 18:14:43 -0700113 return -EBUSY;
114
Michael Chan86b53602009-10-10 13:46:57 +0000115 rtnl_lock();
Michael Chancd801532010-10-13 14:06:49 +0000116 dev = udev->dev;
117
Michael Chana3ceeeb2010-10-13 14:06:50 +0000118 if (!dev || !test_bit(CNIC_F_CNIC_UP, &dev->flags)) {
Michael Chan86b53602009-10-10 13:46:57 +0000119 rtnl_unlock();
120 return -ENODEV;
121 }
122
Michael Chancd801532010-10-13 14:06:49 +0000123 udev->uio_dev = iminor(inode);
Michael Chana4636962009-06-08 18:14:43 -0700124
Michael Chana3ceeeb2010-10-13 14:06:50 +0000125 cnic_shutdown_rings(dev);
Michael Chan86b53602009-10-10 13:46:57 +0000126 cnic_init_rings(dev);
127 rtnl_unlock();
Michael Chana4636962009-06-08 18:14:43 -0700128
129 return 0;
130}
131
132static int cnic_uio_close(struct uio_info *uinfo, struct inode *inode)
133{
Michael Chancd801532010-10-13 14:06:49 +0000134 struct cnic_uio_dev *udev = uinfo->priv;
Michael Chan6ef57a02009-09-21 15:39:37 +0000135
Michael Chancd801532010-10-13 14:06:49 +0000136 udev->uio_dev = -1;
Michael Chana4636962009-06-08 18:14:43 -0700137 return 0;
138}
139
140static inline void cnic_hold(struct cnic_dev *dev)
141{
142 atomic_inc(&dev->ref_count);
143}
144
145static inline void cnic_put(struct cnic_dev *dev)
146{
147 atomic_dec(&dev->ref_count);
148}
149
150static inline void csk_hold(struct cnic_sock *csk)
151{
152 atomic_inc(&csk->ref_count);
153}
154
155static inline void csk_put(struct cnic_sock *csk)
156{
157 atomic_dec(&csk->ref_count);
158}
159
160static struct cnic_dev *cnic_from_netdev(struct net_device *netdev)
161{
162 struct cnic_dev *cdev;
163
164 read_lock(&cnic_dev_lock);
165 list_for_each_entry(cdev, &cnic_dev_list, list) {
166 if (netdev == cdev->netdev) {
167 cnic_hold(cdev);
168 read_unlock(&cnic_dev_lock);
169 return cdev;
170 }
171 }
172 read_unlock(&cnic_dev_lock);
173 return NULL;
174}
175
Michael Chan7fc1ece2009-08-14 15:49:47 +0000176static inline void ulp_get(struct cnic_ulp_ops *ulp_ops)
177{
178 atomic_inc(&ulp_ops->ref_count);
179}
180
181static inline void ulp_put(struct cnic_ulp_ops *ulp_ops)
182{
183 atomic_dec(&ulp_ops->ref_count);
184}
185
Michael Chana4636962009-06-08 18:14:43 -0700186static void cnic_ctx_wr(struct cnic_dev *dev, u32 cid_addr, u32 off, u32 val)
187{
188 struct cnic_local *cp = dev->cnic_priv;
189 struct cnic_eth_dev *ethdev = cp->ethdev;
190 struct drv_ctl_info info;
191 struct drv_ctl_io *io = &info.data.io;
192
193 info.cmd = DRV_CTL_CTX_WR_CMD;
194 io->cid_addr = cid_addr;
195 io->offset = off;
196 io->data = val;
197 ethdev->drv_ctl(dev->netdev, &info);
198}
199
Michael Chan71034ba2009-10-10 13:46:59 +0000200static void cnic_ctx_tbl_wr(struct cnic_dev *dev, u32 off, dma_addr_t addr)
201{
202 struct cnic_local *cp = dev->cnic_priv;
203 struct cnic_eth_dev *ethdev = cp->ethdev;
204 struct drv_ctl_info info;
205 struct drv_ctl_io *io = &info.data.io;
206
207 info.cmd = DRV_CTL_CTXTBL_WR_CMD;
208 io->offset = off;
209 io->dma_addr = addr;
210 ethdev->drv_ctl(dev->netdev, &info);
211}
212
213static void cnic_ring_ctl(struct cnic_dev *dev, u32 cid, u32 cl_id, int start)
214{
215 struct cnic_local *cp = dev->cnic_priv;
216 struct cnic_eth_dev *ethdev = cp->ethdev;
217 struct drv_ctl_info info;
218 struct drv_ctl_l2_ring *ring = &info.data.ring;
219
220 if (start)
221 info.cmd = DRV_CTL_START_L2_CMD;
222 else
223 info.cmd = DRV_CTL_STOP_L2_CMD;
224
225 ring->cid = cid;
226 ring->client_id = cl_id;
227 ethdev->drv_ctl(dev->netdev, &info);
228}
229
Michael Chana4636962009-06-08 18:14:43 -0700230static void cnic_reg_wr_ind(struct cnic_dev *dev, u32 off, u32 val)
231{
232 struct cnic_local *cp = dev->cnic_priv;
233 struct cnic_eth_dev *ethdev = cp->ethdev;
234 struct drv_ctl_info info;
235 struct drv_ctl_io *io = &info.data.io;
236
237 info.cmd = DRV_CTL_IO_WR_CMD;
238 io->offset = off;
239 io->data = val;
240 ethdev->drv_ctl(dev->netdev, &info);
241}
242
243static u32 cnic_reg_rd_ind(struct cnic_dev *dev, u32 off)
244{
245 struct cnic_local *cp = dev->cnic_priv;
246 struct cnic_eth_dev *ethdev = cp->ethdev;
247 struct drv_ctl_info info;
248 struct drv_ctl_io *io = &info.data.io;
249
250 info.cmd = DRV_CTL_IO_RD_CMD;
251 io->offset = off;
252 ethdev->drv_ctl(dev->netdev, &info);
253 return io->data;
254}
255
Barak Witkowski1d187b32011-12-05 22:41:50 +0000256static void cnic_ulp_ctl(struct cnic_dev *dev, int ulp_type, bool reg)
257{
258 struct cnic_local *cp = dev->cnic_priv;
259 struct cnic_eth_dev *ethdev = cp->ethdev;
260 struct drv_ctl_info info;
Barak Witkowski2e499d32012-06-26 01:31:19 +0000261 struct fcoe_capabilities *fcoe_cap =
262 &info.data.register_data.fcoe_features;
Barak Witkowski1d187b32011-12-05 22:41:50 +0000263
Barak Witkowski2e499d32012-06-26 01:31:19 +0000264 if (reg) {
Barak Witkowski1d187b32011-12-05 22:41:50 +0000265 info.cmd = DRV_CTL_ULP_REGISTER_CMD;
Barak Witkowski2e499d32012-06-26 01:31:19 +0000266 if (ulp_type == CNIC_ULP_FCOE && dev->fcoe_cap)
267 memcpy(fcoe_cap, dev->fcoe_cap, sizeof(*fcoe_cap));
268 } else {
Barak Witkowski1d187b32011-12-05 22:41:50 +0000269 info.cmd = DRV_CTL_ULP_UNREGISTER_CMD;
Barak Witkowski2e499d32012-06-26 01:31:19 +0000270 }
Barak Witkowski1d187b32011-12-05 22:41:50 +0000271
272 info.data.ulp_type = ulp_type;
273 ethdev->drv_ctl(dev->netdev, &info);
274}
275
Michael Chana4636962009-06-08 18:14:43 -0700276static int cnic_in_use(struct cnic_sock *csk)
277{
278 return test_bit(SK_F_INUSE, &csk->flags);
279}
280
Dmitry Kravkovc2bff632010-10-06 03:33:18 +0000281static void cnic_spq_completion(struct cnic_dev *dev, int cmd, u32 count)
Michael Chana4636962009-06-08 18:14:43 -0700282{
283 struct cnic_local *cp = dev->cnic_priv;
284 struct cnic_eth_dev *ethdev = cp->ethdev;
285 struct drv_ctl_info info;
286
Dmitry Kravkovc2bff632010-10-06 03:33:18 +0000287 info.cmd = cmd;
288 info.data.credit.credit_count = count;
Michael Chana4636962009-06-08 18:14:43 -0700289 ethdev->drv_ctl(dev->netdev, &info);
290}
291
Michael Chan71034ba2009-10-10 13:46:59 +0000292static int cnic_get_l5_cid(struct cnic_local *cp, u32 cid, u32 *l5_cid)
293{
294 u32 i;
295
Michael Chana2028b232012-06-27 15:08:19 +0000296 if (!cp->ctx_tbl)
297 return -EINVAL;
298
Michael Chan520efdf2010-06-24 14:58:37 +0000299 for (i = 0; i < cp->max_cid_space; i++) {
Michael Chan71034ba2009-10-10 13:46:59 +0000300 if (cp->ctx_tbl[i].cid == cid) {
301 *l5_cid = i;
302 return 0;
303 }
304 }
305 return -EINVAL;
306}
307
Michael Chana4636962009-06-08 18:14:43 -0700308static int cnic_send_nlmsg(struct cnic_local *cp, u32 type,
309 struct cnic_sock *csk)
310{
311 struct iscsi_path path_req;
312 char *buf = NULL;
313 u16 len = 0;
314 u32 msg_type = ISCSI_KEVENT_IF_DOWN;
315 struct cnic_ulp_ops *ulp_ops;
Michael Chancd801532010-10-13 14:06:49 +0000316 struct cnic_uio_dev *udev = cp->udev;
Michael Chan939b82e2010-12-23 07:42:58 +0000317 int rc = 0, retry = 0;
Michael Chana4636962009-06-08 18:14:43 -0700318
Michael Chancd801532010-10-13 14:06:49 +0000319 if (!udev || udev->uio_dev == -1)
Michael Chana4636962009-06-08 18:14:43 -0700320 return -ENODEV;
321
322 if (csk) {
323 len = sizeof(path_req);
324 buf = (char *) &path_req;
325 memset(&path_req, 0, len);
326
327 msg_type = ISCSI_KEVENT_PATH_REQ;
328 path_req.handle = (u64) csk->l5_cid;
329 if (test_bit(SK_F_IPV6, &csk->flags)) {
330 memcpy(&path_req.dst.v6_addr, &csk->dst_ip[0],
331 sizeof(struct in6_addr));
332 path_req.ip_addr_len = 16;
333 } else {
334 memcpy(&path_req.dst.v4_addr, &csk->dst_ip[0],
335 sizeof(struct in_addr));
336 path_req.ip_addr_len = 4;
337 }
338 path_req.vlan_id = csk->vlan_id;
339 path_req.pmtu = csk->mtu;
340 }
341
Michael Chan939b82e2010-12-23 07:42:58 +0000342 while (retry < 3) {
343 rc = 0;
344 rcu_read_lock();
345 ulp_ops = rcu_dereference(cnic_ulp_tbl[CNIC_ULP_ISCSI]);
346 if (ulp_ops)
347 rc = ulp_ops->iscsi_nl_send_msg(
348 cp->ulp_handle[CNIC_ULP_ISCSI],
349 msg_type, buf, len);
350 rcu_read_unlock();
351 if (rc == 0 || msg_type != ISCSI_KEVENT_PATH_REQ)
352 break;
353
354 msleep(100);
355 retry++;
356 }
Michael Chan558e4c72011-07-13 17:24:20 +0000357 return rc;
Michael Chana4636962009-06-08 18:14:43 -0700358}
359
Eddie Wai42ecbb82010-12-23 07:43:02 +0000360static void cnic_cm_upcall(struct cnic_local *, struct cnic_sock *, u8);
361
Michael Chana4636962009-06-08 18:14:43 -0700362static int cnic_iscsi_nl_msg_recv(struct cnic_dev *dev, u32 msg_type,
363 char *buf, u16 len)
364{
365 int rc = -EINVAL;
366
367 switch (msg_type) {
368 case ISCSI_UEVENT_PATH_UPDATE: {
369 struct cnic_local *cp;
370 u32 l5_cid;
371 struct cnic_sock *csk;
372 struct iscsi_path *path_resp;
373
374 if (len < sizeof(*path_resp))
375 break;
376
377 path_resp = (struct iscsi_path *) buf;
378 cp = dev->cnic_priv;
379 l5_cid = (u32) path_resp->handle;
380 if (l5_cid >= MAX_CM_SK_TBL_SZ)
381 break;
382
Michael Chand02a5e62010-02-24 14:42:06 +0000383 rcu_read_lock();
384 if (!rcu_dereference(cp->ulp_ops[CNIC_ULP_L4])) {
385 rc = -ENODEV;
386 rcu_read_unlock();
387 break;
388 }
Michael Chana4636962009-06-08 18:14:43 -0700389 csk = &cp->csk_tbl[l5_cid];
390 csk_hold(csk);
Eddie Wai42ecbb82010-12-23 07:43:02 +0000391 if (cnic_in_use(csk) &&
392 test_bit(SK_F_CONNECT_START, &csk->flags)) {
393
Eddie Wai4cbbb042012-02-08 17:33:57 +0000394 csk->vlan_id = path_resp->vlan_id;
395
Michael Chana4636962009-06-08 18:14:43 -0700396 memcpy(csk->ha, path_resp->mac_addr, 6);
397 if (test_bit(SK_F_IPV6, &csk->flags))
398 memcpy(&csk->src_ip[0], &path_resp->src.v6_addr,
399 sizeof(struct in6_addr));
400 else
401 memcpy(&csk->src_ip[0], &path_resp->src.v4_addr,
402 sizeof(struct in_addr));
Eddie Wai42ecbb82010-12-23 07:43:02 +0000403
404 if (is_valid_ether_addr(csk->ha)) {
Michael Chana4636962009-06-08 18:14:43 -0700405 cnic_cm_set_pg(csk);
Eddie Wai42ecbb82010-12-23 07:43:02 +0000406 } else if (!test_bit(SK_F_OFFLD_SCHED, &csk->flags) &&
407 !test_bit(SK_F_OFFLD_COMPLETE, &csk->flags)) {
408
409 cnic_cm_upcall(cp, csk,
410 L4_KCQE_OPCODE_VALUE_CONNECT_COMPLETE);
411 clear_bit(SK_F_CONNECT_START, &csk->flags);
412 }
Michael Chana4636962009-06-08 18:14:43 -0700413 }
414 csk_put(csk);
Michael Chand02a5e62010-02-24 14:42:06 +0000415 rcu_read_unlock();
Michael Chana4636962009-06-08 18:14:43 -0700416 rc = 0;
417 }
418 }
419
420 return rc;
421}
422
423static int cnic_offld_prep(struct cnic_sock *csk)
424{
425 if (test_and_set_bit(SK_F_OFFLD_SCHED, &csk->flags))
426 return 0;
427
428 if (!test_bit(SK_F_CONNECT_START, &csk->flags)) {
429 clear_bit(SK_F_OFFLD_SCHED, &csk->flags);
430 return 0;
431 }
432
433 return 1;
434}
435
436static int cnic_close_prep(struct cnic_sock *csk)
437{
438 clear_bit(SK_F_CONNECT_START, &csk->flags);
439 smp_mb__after_clear_bit();
440
441 if (test_and_clear_bit(SK_F_OFFLD_COMPLETE, &csk->flags)) {
442 while (test_and_set_bit(SK_F_OFFLD_SCHED, &csk->flags))
443 msleep(1);
444
445 return 1;
446 }
447 return 0;
448}
449
450static int cnic_abort_prep(struct cnic_sock *csk)
451{
452 clear_bit(SK_F_CONNECT_START, &csk->flags);
453 smp_mb__after_clear_bit();
454
455 while (test_and_set_bit(SK_F_OFFLD_SCHED, &csk->flags))
456 msleep(1);
457
458 if (test_and_clear_bit(SK_F_OFFLD_COMPLETE, &csk->flags)) {
459 csk->state = L4_KCQE_OPCODE_VALUE_RESET_COMP;
460 return 1;
461 }
462
463 return 0;
464}
465
466int cnic_register_driver(int ulp_type, struct cnic_ulp_ops *ulp_ops)
467{
468 struct cnic_dev *dev;
469
roel kluin0d37f362009-11-02 06:53:44 +0000470 if (ulp_type < 0 || ulp_type >= MAX_CNIC_ULP_TYPE) {
Joe Perchesddf79b22010-02-17 15:01:54 +0000471 pr_err("%s: Bad type %d\n", __func__, ulp_type);
Michael Chana4636962009-06-08 18:14:43 -0700472 return -EINVAL;
473 }
474 mutex_lock(&cnic_lock);
Eric Dumazet13707f92011-01-26 19:28:23 +0000475 if (cnic_ulp_tbl_prot(ulp_type)) {
Joe Perchesddf79b22010-02-17 15:01:54 +0000476 pr_err("%s: Type %d has already been registered\n",
477 __func__, ulp_type);
Michael Chana4636962009-06-08 18:14:43 -0700478 mutex_unlock(&cnic_lock);
479 return -EBUSY;
480 }
481
482 read_lock(&cnic_dev_lock);
483 list_for_each_entry(dev, &cnic_dev_list, list) {
484 struct cnic_local *cp = dev->cnic_priv;
485
486 clear_bit(ULP_F_INIT, &cp->ulp_flags[ulp_type]);
487 }
488 read_unlock(&cnic_dev_lock);
489
Michael Chan7fc1ece2009-08-14 15:49:47 +0000490 atomic_set(&ulp_ops->ref_count, 0);
Michael Chana4636962009-06-08 18:14:43 -0700491 rcu_assign_pointer(cnic_ulp_tbl[ulp_type], ulp_ops);
492 mutex_unlock(&cnic_lock);
493
494 /* Prevent race conditions with netdev_event */
495 rtnl_lock();
Michael Chana4636962009-06-08 18:14:43 -0700496 list_for_each_entry(dev, &cnic_dev_list, list) {
497 struct cnic_local *cp = dev->cnic_priv;
498
499 if (!test_and_set_bit(ULP_F_INIT, &cp->ulp_flags[ulp_type]))
500 ulp_ops->cnic_init(dev);
501 }
Michael Chana4636962009-06-08 18:14:43 -0700502 rtnl_unlock();
503
504 return 0;
505}
506
507int cnic_unregister_driver(int ulp_type)
508{
509 struct cnic_dev *dev;
Michael Chan7fc1ece2009-08-14 15:49:47 +0000510 struct cnic_ulp_ops *ulp_ops;
511 int i = 0;
Michael Chana4636962009-06-08 18:14:43 -0700512
roel kluin0d37f362009-11-02 06:53:44 +0000513 if (ulp_type < 0 || ulp_type >= MAX_CNIC_ULP_TYPE) {
Joe Perchesddf79b22010-02-17 15:01:54 +0000514 pr_err("%s: Bad type %d\n", __func__, ulp_type);
Michael Chana4636962009-06-08 18:14:43 -0700515 return -EINVAL;
516 }
517 mutex_lock(&cnic_lock);
Eric Dumazet13707f92011-01-26 19:28:23 +0000518 ulp_ops = cnic_ulp_tbl_prot(ulp_type);
Michael Chan7fc1ece2009-08-14 15:49:47 +0000519 if (!ulp_ops) {
Joe Perchesddf79b22010-02-17 15:01:54 +0000520 pr_err("%s: Type %d has not been registered\n",
521 __func__, ulp_type);
Michael Chana4636962009-06-08 18:14:43 -0700522 goto out_unlock;
523 }
524 read_lock(&cnic_dev_lock);
525 list_for_each_entry(dev, &cnic_dev_list, list) {
526 struct cnic_local *cp = dev->cnic_priv;
527
528 if (rcu_dereference(cp->ulp_ops[ulp_type])) {
Joe Perchesddf79b22010-02-17 15:01:54 +0000529 pr_err("%s: Type %d still has devices registered\n",
530 __func__, ulp_type);
Michael Chana4636962009-06-08 18:14:43 -0700531 read_unlock(&cnic_dev_lock);
532 goto out_unlock;
533 }
534 }
535 read_unlock(&cnic_dev_lock);
536
Eric Dumazet2cfa5a02011-11-23 07:09:32 +0000537 RCU_INIT_POINTER(cnic_ulp_tbl[ulp_type], NULL);
Michael Chana4636962009-06-08 18:14:43 -0700538
539 mutex_unlock(&cnic_lock);
540 synchronize_rcu();
Michael Chan7fc1ece2009-08-14 15:49:47 +0000541 while ((atomic_read(&ulp_ops->ref_count) != 0) && (i < 20)) {
542 msleep(100);
543 i++;
544 }
545
546 if (atomic_read(&ulp_ops->ref_count) != 0)
Julia Lawall022f0972012-07-08 01:37:43 +0000547 pr_warn("%s: Failed waiting for ref count to go to zero\n",
548 __func__);
Michael Chana4636962009-06-08 18:14:43 -0700549 return 0;
550
551out_unlock:
552 mutex_unlock(&cnic_lock);
553 return -EINVAL;
554}
555
556static int cnic_start_hw(struct cnic_dev *);
557static void cnic_stop_hw(struct cnic_dev *);
558
559static int cnic_register_device(struct cnic_dev *dev, int ulp_type,
560 void *ulp_ctx)
561{
562 struct cnic_local *cp = dev->cnic_priv;
563 struct cnic_ulp_ops *ulp_ops;
564
roel kluin0d37f362009-11-02 06:53:44 +0000565 if (ulp_type < 0 || ulp_type >= MAX_CNIC_ULP_TYPE) {
Joe Perchesddf79b22010-02-17 15:01:54 +0000566 pr_err("%s: Bad type %d\n", __func__, ulp_type);
Michael Chana4636962009-06-08 18:14:43 -0700567 return -EINVAL;
568 }
569 mutex_lock(&cnic_lock);
Eric Dumazet13707f92011-01-26 19:28:23 +0000570 if (cnic_ulp_tbl_prot(ulp_type) == NULL) {
Joe Perchesddf79b22010-02-17 15:01:54 +0000571 pr_err("%s: Driver with type %d has not been registered\n",
572 __func__, ulp_type);
Michael Chana4636962009-06-08 18:14:43 -0700573 mutex_unlock(&cnic_lock);
574 return -EAGAIN;
575 }
576 if (rcu_dereference(cp->ulp_ops[ulp_type])) {
Joe Perchesddf79b22010-02-17 15:01:54 +0000577 pr_err("%s: Type %d has already been registered to this device\n",
578 __func__, ulp_type);
Michael Chana4636962009-06-08 18:14:43 -0700579 mutex_unlock(&cnic_lock);
580 return -EBUSY;
581 }
582
583 clear_bit(ULP_F_START, &cp->ulp_flags[ulp_type]);
584 cp->ulp_handle[ulp_type] = ulp_ctx;
Eric Dumazet13707f92011-01-26 19:28:23 +0000585 ulp_ops = cnic_ulp_tbl_prot(ulp_type);
Michael Chana4636962009-06-08 18:14:43 -0700586 rcu_assign_pointer(cp->ulp_ops[ulp_type], ulp_ops);
587 cnic_hold(dev);
588
589 if (test_bit(CNIC_F_CNIC_UP, &dev->flags))
590 if (!test_and_set_bit(ULP_F_START, &cp->ulp_flags[ulp_type]))
591 ulp_ops->cnic_start(cp->ulp_handle[ulp_type]);
592
593 mutex_unlock(&cnic_lock);
594
Barak Witkowski1d187b32011-12-05 22:41:50 +0000595 cnic_ulp_ctl(dev, ulp_type, true);
596
Michael Chana4636962009-06-08 18:14:43 -0700597 return 0;
598
599}
600EXPORT_SYMBOL(cnic_register_driver);
601
602static int cnic_unregister_device(struct cnic_dev *dev, int ulp_type)
603{
604 struct cnic_local *cp = dev->cnic_priv;
Michael Chan681dbd72009-08-14 15:49:46 +0000605 int i = 0;
Michael Chana4636962009-06-08 18:14:43 -0700606
roel kluin0d37f362009-11-02 06:53:44 +0000607 if (ulp_type < 0 || ulp_type >= MAX_CNIC_ULP_TYPE) {
Joe Perchesddf79b22010-02-17 15:01:54 +0000608 pr_err("%s: Bad type %d\n", __func__, ulp_type);
Michael Chana4636962009-06-08 18:14:43 -0700609 return -EINVAL;
610 }
611 mutex_lock(&cnic_lock);
612 if (rcu_dereference(cp->ulp_ops[ulp_type])) {
Eric Dumazet2cfa5a02011-11-23 07:09:32 +0000613 RCU_INIT_POINTER(cp->ulp_ops[ulp_type], NULL);
Michael Chana4636962009-06-08 18:14:43 -0700614 cnic_put(dev);
615 } else {
Joe Perchesddf79b22010-02-17 15:01:54 +0000616 pr_err("%s: device not registered to this ulp type %d\n",
617 __func__, ulp_type);
Michael Chana4636962009-06-08 18:14:43 -0700618 mutex_unlock(&cnic_lock);
619 return -EINVAL;
620 }
621 mutex_unlock(&cnic_lock);
622
Michael Chan42bb8d52011-01-03 15:21:46 +0000623 if (ulp_type == CNIC_ULP_ISCSI)
624 cnic_send_nlmsg(cp, ISCSI_KEVENT_IF_DOWN, NULL);
Barak Witkowski2e499d32012-06-26 01:31:19 +0000625 else if (ulp_type == CNIC_ULP_FCOE)
626 dev->fcoe_cap = NULL;
Michael Chan42bb8d52011-01-03 15:21:46 +0000627
Michael Chana4636962009-06-08 18:14:43 -0700628 synchronize_rcu();
629
Michael Chan681dbd72009-08-14 15:49:46 +0000630 while (test_bit(ULP_F_CALL_PENDING, &cp->ulp_flags[ulp_type]) &&
631 i < 20) {
632 msleep(100);
633 i++;
634 }
635 if (test_bit(ULP_F_CALL_PENDING, &cp->ulp_flags[ulp_type]))
Joe Perchesddf79b22010-02-17 15:01:54 +0000636 netdev_warn(dev->netdev, "Failed waiting for ULP up call to complete\n");
Michael Chan681dbd72009-08-14 15:49:46 +0000637
Barak Witkowski1d187b32011-12-05 22:41:50 +0000638 cnic_ulp_ctl(dev, ulp_type, false);
639
Michael Chana4636962009-06-08 18:14:43 -0700640 return 0;
641}
642EXPORT_SYMBOL(cnic_unregister_driver);
643
Eddie Wai11f23aa2011-06-08 19:29:34 +0000644static int cnic_init_id_tbl(struct cnic_id_tbl *id_tbl, u32 size, u32 start_id,
645 u32 next)
Michael Chana4636962009-06-08 18:14:43 -0700646{
647 id_tbl->start = start_id;
648 id_tbl->max = size;
Eddie Wai11f23aa2011-06-08 19:29:34 +0000649 id_tbl->next = next;
Michael Chana4636962009-06-08 18:14:43 -0700650 spin_lock_init(&id_tbl->lock);
651 id_tbl->table = kzalloc(DIV_ROUND_UP(size, 32) * 4, GFP_KERNEL);
652 if (!id_tbl->table)
653 return -ENOMEM;
654
655 return 0;
656}
657
658static void cnic_free_id_tbl(struct cnic_id_tbl *id_tbl)
659{
660 kfree(id_tbl->table);
661 id_tbl->table = NULL;
662}
663
664static int cnic_alloc_id(struct cnic_id_tbl *id_tbl, u32 id)
665{
666 int ret = -1;
667
668 id -= id_tbl->start;
669 if (id >= id_tbl->max)
670 return ret;
671
672 spin_lock(&id_tbl->lock);
673 if (!test_bit(id, id_tbl->table)) {
674 set_bit(id, id_tbl->table);
675 ret = 0;
676 }
677 spin_unlock(&id_tbl->lock);
678 return ret;
679}
680
681/* Returns -1 if not successful */
682static u32 cnic_alloc_new_id(struct cnic_id_tbl *id_tbl)
683{
684 u32 id;
685
686 spin_lock(&id_tbl->lock);
687 id = find_next_zero_bit(id_tbl->table, id_tbl->max, id_tbl->next);
688 if (id >= id_tbl->max) {
689 id = -1;
690 if (id_tbl->next != 0) {
691 id = find_first_zero_bit(id_tbl->table, id_tbl->next);
692 if (id >= id_tbl->next)
693 id = -1;
694 }
695 }
696
697 if (id < id_tbl->max) {
698 set_bit(id, id_tbl->table);
699 id_tbl->next = (id + 1) & (id_tbl->max - 1);
700 id += id_tbl->start;
701 }
702
703 spin_unlock(&id_tbl->lock);
704
705 return id;
706}
707
708static void cnic_free_id(struct cnic_id_tbl *id_tbl, u32 id)
709{
710 if (id == -1)
711 return;
712
713 id -= id_tbl->start;
714 if (id >= id_tbl->max)
715 return;
716
717 clear_bit(id, id_tbl->table);
718}
719
720static void cnic_free_dma(struct cnic_dev *dev, struct cnic_dma *dma)
721{
722 int i;
723
724 if (!dma->pg_arr)
725 return;
726
727 for (i = 0; i < dma->num_pages; i++) {
728 if (dma->pg_arr[i]) {
Michael Chan2bc40782012-12-06 10:33:09 +0000729 dma_free_coherent(&dev->pcidev->dev, BNX2_PAGE_SIZE,
Michael Chan3248e162009-12-02 15:15:39 +0000730 dma->pg_arr[i], dma->pg_map_arr[i]);
Michael Chana4636962009-06-08 18:14:43 -0700731 dma->pg_arr[i] = NULL;
732 }
733 }
734 if (dma->pgtbl) {
Michael Chan3248e162009-12-02 15:15:39 +0000735 dma_free_coherent(&dev->pcidev->dev, dma->pgtbl_size,
736 dma->pgtbl, dma->pgtbl_map);
Michael Chana4636962009-06-08 18:14:43 -0700737 dma->pgtbl = NULL;
738 }
739 kfree(dma->pg_arr);
740 dma->pg_arr = NULL;
741 dma->num_pages = 0;
742}
743
744static void cnic_setup_page_tbl(struct cnic_dev *dev, struct cnic_dma *dma)
745{
746 int i;
Michael Chan51388262011-01-25 22:14:50 +0000747 __le32 *page_table = (__le32 *) dma->pgtbl;
Michael Chana4636962009-06-08 18:14:43 -0700748
749 for (i = 0; i < dma->num_pages; i++) {
750 /* Each entry needs to be in big endian format. */
Michael Chan51388262011-01-25 22:14:50 +0000751 *page_table = cpu_to_le32((u64) dma->pg_map_arr[i] >> 32);
Michael Chana4636962009-06-08 18:14:43 -0700752 page_table++;
Michael Chan51388262011-01-25 22:14:50 +0000753 *page_table = cpu_to_le32(dma->pg_map_arr[i] & 0xffffffff);
Michael Chana4636962009-06-08 18:14:43 -0700754 page_table++;
755 }
756}
757
Michael Chan71034ba2009-10-10 13:46:59 +0000758static void cnic_setup_page_tbl_le(struct cnic_dev *dev, struct cnic_dma *dma)
759{
760 int i;
Michael Chan51388262011-01-25 22:14:50 +0000761 __le32 *page_table = (__le32 *) dma->pgtbl;
Michael Chan71034ba2009-10-10 13:46:59 +0000762
763 for (i = 0; i < dma->num_pages; i++) {
764 /* Each entry needs to be in little endian format. */
Michael Chan51388262011-01-25 22:14:50 +0000765 *page_table = cpu_to_le32(dma->pg_map_arr[i] & 0xffffffff);
Michael Chan71034ba2009-10-10 13:46:59 +0000766 page_table++;
Michael Chan51388262011-01-25 22:14:50 +0000767 *page_table = cpu_to_le32((u64) dma->pg_map_arr[i] >> 32);
Michael Chan71034ba2009-10-10 13:46:59 +0000768 page_table++;
769 }
770}
771
Michael Chana4636962009-06-08 18:14:43 -0700772static int cnic_alloc_dma(struct cnic_dev *dev, struct cnic_dma *dma,
773 int pages, int use_pg_tbl)
774{
775 int i, size;
776 struct cnic_local *cp = dev->cnic_priv;
777
778 size = pages * (sizeof(void *) + sizeof(dma_addr_t));
779 dma->pg_arr = kzalloc(size, GFP_ATOMIC);
780 if (dma->pg_arr == NULL)
781 return -ENOMEM;
782
783 dma->pg_map_arr = (dma_addr_t *) (dma->pg_arr + pages);
784 dma->num_pages = pages;
785
786 for (i = 0; i < pages; i++) {
Michael Chan3248e162009-12-02 15:15:39 +0000787 dma->pg_arr[i] = dma_alloc_coherent(&dev->pcidev->dev,
Michael Chan2bc40782012-12-06 10:33:09 +0000788 BNX2_PAGE_SIZE,
Michael Chan3248e162009-12-02 15:15:39 +0000789 &dma->pg_map_arr[i],
790 GFP_ATOMIC);
Michael Chana4636962009-06-08 18:14:43 -0700791 if (dma->pg_arr[i] == NULL)
792 goto error;
793 }
794 if (!use_pg_tbl)
795 return 0;
796
Michael Chan2bc40782012-12-06 10:33:09 +0000797 dma->pgtbl_size = ((pages * 8) + BNX2_PAGE_SIZE - 1) &
798 ~(BNX2_PAGE_SIZE - 1);
Michael Chan3248e162009-12-02 15:15:39 +0000799 dma->pgtbl = dma_alloc_coherent(&dev->pcidev->dev, dma->pgtbl_size,
800 &dma->pgtbl_map, GFP_ATOMIC);
Michael Chana4636962009-06-08 18:14:43 -0700801 if (dma->pgtbl == NULL)
802 goto error;
803
804 cp->setup_pgtbl(dev, dma);
805
806 return 0;
807
808error:
809 cnic_free_dma(dev, dma);
810 return -ENOMEM;
811}
812
Michael Chan86b53602009-10-10 13:46:57 +0000813static void cnic_free_context(struct cnic_dev *dev)
814{
815 struct cnic_local *cp = dev->cnic_priv;
816 int i;
817
818 for (i = 0; i < cp->ctx_blks; i++) {
819 if (cp->ctx_arr[i].ctx) {
Michael Chan3248e162009-12-02 15:15:39 +0000820 dma_free_coherent(&dev->pcidev->dev, cp->ctx_blk_size,
821 cp->ctx_arr[i].ctx,
822 cp->ctx_arr[i].mapping);
Michael Chan86b53602009-10-10 13:46:57 +0000823 cp->ctx_arr[i].ctx = NULL;
824 }
825 }
826}
827
Michael Chan74dd0c42012-09-08 06:01:01 +0000828static void __cnic_free_uio_rings(struct cnic_uio_dev *udev)
Michael Chana4636962009-06-08 18:14:43 -0700829{
Michael Chancd801532010-10-13 14:06:49 +0000830 if (udev->l2_buf) {
831 dma_free_coherent(&udev->pdev->dev, udev->l2_buf_size,
832 udev->l2_buf, udev->l2_buf_map);
833 udev->l2_buf = NULL;
Michael Chana4636962009-06-08 18:14:43 -0700834 }
835
Michael Chancd801532010-10-13 14:06:49 +0000836 if (udev->l2_ring) {
837 dma_free_coherent(&udev->pdev->dev, udev->l2_ring_size,
838 udev->l2_ring, udev->l2_ring_map);
839 udev->l2_ring = NULL;
Michael Chana4636962009-06-08 18:14:43 -0700840 }
Michael Chana3ceeeb2010-10-13 14:06:50 +0000841
Michael Chan74dd0c42012-09-08 06:01:01 +0000842}
843
844static void __cnic_free_uio(struct cnic_uio_dev *udev)
845{
846 uio_unregister_device(&udev->cnic_uinfo);
847
848 __cnic_free_uio_rings(udev);
849
Michael Chana3ceeeb2010-10-13 14:06:50 +0000850 pci_dev_put(udev->pdev);
851 kfree(udev);
Michael Chanc06c0462010-10-13 14:06:48 +0000852}
853
Michael Chancd801532010-10-13 14:06:49 +0000854static void cnic_free_uio(struct cnic_uio_dev *udev)
Michael Chanc06c0462010-10-13 14:06:48 +0000855{
Michael Chancd801532010-10-13 14:06:49 +0000856 if (!udev)
Michael Chanc06c0462010-10-13 14:06:48 +0000857 return;
858
Michael Chana3ceeeb2010-10-13 14:06:50 +0000859 write_lock(&cnic_dev_lock);
860 list_del_init(&udev->list);
861 write_unlock(&cnic_dev_lock);
Michael Chancd801532010-10-13 14:06:49 +0000862 __cnic_free_uio(udev);
Michael Chanc06c0462010-10-13 14:06:48 +0000863}
864
865static void cnic_free_resc(struct cnic_dev *dev)
866{
867 struct cnic_local *cp = dev->cnic_priv;
Michael Chancd801532010-10-13 14:06:49 +0000868 struct cnic_uio_dev *udev = cp->udev;
Michael Chanc06c0462010-10-13 14:06:48 +0000869
Michael Chancd801532010-10-13 14:06:49 +0000870 if (udev) {
Michael Chana3ceeeb2010-10-13 14:06:50 +0000871 udev->dev = NULL;
Michael Chancd801532010-10-13 14:06:49 +0000872 cp->udev = NULL;
Michael Chanf81b0ac2012-09-08 06:01:02 +0000873 if (udev->uio_dev == -1)
874 __cnic_free_uio_rings(udev);
Michael Chanc06c0462010-10-13 14:06:48 +0000875 }
Michael Chana4636962009-06-08 18:14:43 -0700876
Michael Chan86b53602009-10-10 13:46:57 +0000877 cnic_free_context(dev);
Michael Chana4636962009-06-08 18:14:43 -0700878 kfree(cp->ctx_arr);
879 cp->ctx_arr = NULL;
880 cp->ctx_blks = 0;
881
882 cnic_free_dma(dev, &cp->gbl_buf_info);
Michael Chana4636962009-06-08 18:14:43 -0700883 cnic_free_dma(dev, &cp->kwq_info);
Michael Chan71034ba2009-10-10 13:46:59 +0000884 cnic_free_dma(dev, &cp->kwq_16_data_info);
Michael Chane21ba412010-12-23 07:43:03 +0000885 cnic_free_dma(dev, &cp->kcq2.dma);
Michael Chane6c28892010-06-24 14:58:39 +0000886 cnic_free_dma(dev, &cp->kcq1.dma);
Michael Chana4636962009-06-08 18:14:43 -0700887 kfree(cp->iscsi_tbl);
888 cp->iscsi_tbl = NULL;
889 kfree(cp->ctx_tbl);
890 cp->ctx_tbl = NULL;
891
Michael Chane1928c82010-12-23 07:43:04 +0000892 cnic_free_id_tbl(&cp->fcoe_cid_tbl);
Michael Chana4636962009-06-08 18:14:43 -0700893 cnic_free_id_tbl(&cp->cid_tbl);
894}
895
896static int cnic_alloc_context(struct cnic_dev *dev)
897{
898 struct cnic_local *cp = dev->cnic_priv;
899
Michael Chan4ce45e02012-12-06 10:33:10 +0000900 if (BNX2_CHIP(cp) == BNX2_CHIP_5709) {
Michael Chana4636962009-06-08 18:14:43 -0700901 int i, k, arr_size;
902
Michael Chan2bc40782012-12-06 10:33:09 +0000903 cp->ctx_blk_size = BNX2_PAGE_SIZE;
904 cp->cids_per_blk = BNX2_PAGE_SIZE / 128;
Michael Chana4636962009-06-08 18:14:43 -0700905 arr_size = BNX2_MAX_CID / cp->cids_per_blk *
906 sizeof(struct cnic_ctx);
907 cp->ctx_arr = kzalloc(arr_size, GFP_KERNEL);
908 if (cp->ctx_arr == NULL)
909 return -ENOMEM;
910
911 k = 0;
912 for (i = 0; i < 2; i++) {
913 u32 j, reg, off, lo, hi;
914
915 if (i == 0)
916 off = BNX2_PG_CTX_MAP;
917 else
918 off = BNX2_ISCSI_CTX_MAP;
919
920 reg = cnic_reg_rd_ind(dev, off);
921 lo = reg >> 16;
922 hi = reg & 0xffff;
923 for (j = lo; j < hi; j += cp->cids_per_blk, k++)
924 cp->ctx_arr[k].cid = j;
925 }
926
927 cp->ctx_blks = k;
928 if (cp->ctx_blks >= (BNX2_MAX_CID / cp->cids_per_blk)) {
929 cp->ctx_blks = 0;
930 return -ENOMEM;
931 }
932
933 for (i = 0; i < cp->ctx_blks; i++) {
934 cp->ctx_arr[i].ctx =
Michael Chan3248e162009-12-02 15:15:39 +0000935 dma_alloc_coherent(&dev->pcidev->dev,
Michael Chan2bc40782012-12-06 10:33:09 +0000936 BNX2_PAGE_SIZE,
Michael Chan3248e162009-12-02 15:15:39 +0000937 &cp->ctx_arr[i].mapping,
938 GFP_KERNEL);
Michael Chana4636962009-06-08 18:14:43 -0700939 if (cp->ctx_arr[i].ctx == NULL)
940 return -ENOMEM;
941 }
942 }
943 return 0;
944}
945
Michael Chan59e51372011-06-14 01:32:38 +0000946static u16 cnic_bnx2_next_idx(u16 idx)
Michael Chane6c28892010-06-24 14:58:39 +0000947{
Michael Chan59e51372011-06-14 01:32:38 +0000948 return idx + 1;
949}
950
951static u16 cnic_bnx2_hw_idx(u16 idx)
952{
953 return idx;
954}
955
956static u16 cnic_bnx2x_next_idx(u16 idx)
957{
958 idx++;
959 if ((idx & MAX_KCQE_CNT) == MAX_KCQE_CNT)
960 idx++;
961
962 return idx;
963}
964
965static u16 cnic_bnx2x_hw_idx(u16 idx)
966{
967 if ((idx & MAX_KCQE_CNT) == MAX_KCQE_CNT)
968 idx++;
969 return idx;
970}
971
972static int cnic_alloc_kcq(struct cnic_dev *dev, struct kcq_info *info,
973 bool use_pg_tbl)
974{
975 int err, i, use_page_tbl = 0;
Michael Chane6c28892010-06-24 14:58:39 +0000976 struct kcqe **kcq;
977
Michael Chan59e51372011-06-14 01:32:38 +0000978 if (use_pg_tbl)
979 use_page_tbl = 1;
Michael Chane6c28892010-06-24 14:58:39 +0000980
Michael Chan59e51372011-06-14 01:32:38 +0000981 err = cnic_alloc_dma(dev, &info->dma, KCQ_PAGE_CNT, use_page_tbl);
Michael Chane6c28892010-06-24 14:58:39 +0000982 if (err)
983 return err;
984
985 kcq = (struct kcqe **) info->dma.pg_arr;
986 info->kcq = kcq;
987
Michael Chan59e51372011-06-14 01:32:38 +0000988 info->next_idx = cnic_bnx2_next_idx;
989 info->hw_idx = cnic_bnx2_hw_idx;
990 if (use_pg_tbl)
Michael Chane6c28892010-06-24 14:58:39 +0000991 return 0;
992
Michael Chan59e51372011-06-14 01:32:38 +0000993 info->next_idx = cnic_bnx2x_next_idx;
994 info->hw_idx = cnic_bnx2x_hw_idx;
995
Michael Chane6c28892010-06-24 14:58:39 +0000996 for (i = 0; i < KCQ_PAGE_CNT; i++) {
997 struct bnx2x_bd_chain_next *next =
998 (struct bnx2x_bd_chain_next *) &kcq[i][MAX_KCQE_CNT];
999 int j = i + 1;
1000
1001 if (j >= KCQ_PAGE_CNT)
1002 j = 0;
1003 next->addr_hi = (u64) info->dma.pg_map_arr[j] >> 32;
1004 next->addr_lo = info->dma.pg_map_arr[j] & 0xffffffff;
1005 }
1006 return 0;
1007}
1008
Michael Chan74dd0c42012-09-08 06:01:01 +00001009static int __cnic_alloc_uio_rings(struct cnic_uio_dev *udev, int pages)
1010{
1011 struct cnic_local *cp = udev->dev->cnic_priv;
1012
1013 if (udev->l2_ring)
1014 return 0;
1015
Michael Chan2bc40782012-12-06 10:33:09 +00001016 udev->l2_ring_size = pages * BNX2_PAGE_SIZE;
Michael Chan74dd0c42012-09-08 06:01:01 +00001017 udev->l2_ring = dma_alloc_coherent(&udev->pdev->dev, udev->l2_ring_size,
1018 &udev->l2_ring_map,
1019 GFP_KERNEL | __GFP_COMP);
1020 if (!udev->l2_ring)
1021 return -ENOMEM;
1022
1023 udev->l2_buf_size = (cp->l2_rx_ring_size + 1) * cp->l2_single_buf_size;
1024 udev->l2_buf_size = PAGE_ALIGN(udev->l2_buf_size);
1025 udev->l2_buf = dma_alloc_coherent(&udev->pdev->dev, udev->l2_buf_size,
1026 &udev->l2_buf_map,
1027 GFP_KERNEL | __GFP_COMP);
1028 if (!udev->l2_buf) {
1029 __cnic_free_uio_rings(udev);
1030 return -ENOMEM;
1031 }
1032
1033 return 0;
1034
1035}
1036
Michael Chancd801532010-10-13 14:06:49 +00001037static int cnic_alloc_uio_rings(struct cnic_dev *dev, int pages)
Michael Chanec0248e2009-08-26 09:49:22 +00001038{
1039 struct cnic_local *cp = dev->cnic_priv;
Michael Chancd801532010-10-13 14:06:49 +00001040 struct cnic_uio_dev *udev;
Michael Chanec0248e2009-08-26 09:49:22 +00001041
Michael Chana3ceeeb2010-10-13 14:06:50 +00001042 read_lock(&cnic_dev_lock);
1043 list_for_each_entry(udev, &cnic_udev_list, list) {
1044 if (udev->pdev == dev->pcidev) {
1045 udev->dev = dev;
Michael Chanf81b0ac2012-09-08 06:01:02 +00001046 if (__cnic_alloc_uio_rings(udev, pages)) {
1047 udev->dev = NULL;
1048 read_unlock(&cnic_dev_lock);
1049 return -ENOMEM;
1050 }
Michael Chana3ceeeb2010-10-13 14:06:50 +00001051 cp->udev = udev;
1052 read_unlock(&cnic_dev_lock);
1053 return 0;
1054 }
1055 }
1056 read_unlock(&cnic_dev_lock);
1057
Michael Chancd801532010-10-13 14:06:49 +00001058 udev = kzalloc(sizeof(struct cnic_uio_dev), GFP_ATOMIC);
1059 if (!udev)
Michael Chanec0248e2009-08-26 09:49:22 +00001060 return -ENOMEM;
1061
Michael Chancd801532010-10-13 14:06:49 +00001062 udev->uio_dev = -1;
1063
1064 udev->dev = dev;
1065 udev->pdev = dev->pcidev;
Michael Chanec0248e2009-08-26 09:49:22 +00001066
Michael Chan74dd0c42012-09-08 06:01:01 +00001067 if (__cnic_alloc_uio_rings(udev, pages))
1068 goto err_udev;
Michael Chancd801532010-10-13 14:06:49 +00001069
Michael Chana3ceeeb2010-10-13 14:06:50 +00001070 write_lock(&cnic_dev_lock);
1071 list_add(&udev->list, &cnic_udev_list);
1072 write_unlock(&cnic_dev_lock);
1073
1074 pci_dev_get(udev->pdev);
1075
Michael Chancd801532010-10-13 14:06:49 +00001076 cp->udev = udev;
1077
Michael Chanec0248e2009-08-26 09:49:22 +00001078 return 0;
Michael Chan74dd0c42012-09-08 06:01:01 +00001079
Jesper Juhlf7e4c972010-12-31 11:18:48 -08001080 err_udev:
1081 kfree(udev);
1082 return -ENOMEM;
Michael Chanec0248e2009-08-26 09:49:22 +00001083}
1084
Michael Chancd801532010-10-13 14:06:49 +00001085static int cnic_init_uio(struct cnic_dev *dev)
1086{
Michael Chan5e9b2db2009-08-26 09:49:23 +00001087 struct cnic_local *cp = dev->cnic_priv;
Michael Chancd801532010-10-13 14:06:49 +00001088 struct cnic_uio_dev *udev = cp->udev;
Michael Chan5e9b2db2009-08-26 09:49:23 +00001089 struct uio_info *uinfo;
Michael Chancd801532010-10-13 14:06:49 +00001090 int ret = 0;
Michael Chan5e9b2db2009-08-26 09:49:23 +00001091
Michael Chancd801532010-10-13 14:06:49 +00001092 if (!udev)
Michael Chan5e9b2db2009-08-26 09:49:23 +00001093 return -ENOMEM;
1094
Michael Chancd801532010-10-13 14:06:49 +00001095 uinfo = &udev->cnic_uinfo;
1096
Michael Chanae0eef62012-06-29 09:32:45 +00001097 uinfo->mem[0].addr = pci_resource_start(dev->pcidev, 0);
1098 uinfo->mem[0].internal_addr = dev->regview;
1099 uinfo->mem[0].memtype = UIO_MEM_PHYS;
Michael Chan5e9b2db2009-08-26 09:49:23 +00001100
Michael Chan5e9b2db2009-08-26 09:49:23 +00001101 if (test_bit(CNIC_F_BNX2_CLASS, &dev->flags)) {
Michael Chanae0eef62012-06-29 09:32:45 +00001102 uinfo->mem[0].size = MB_GET_CID_ADDR(TX_TSS_CID +
1103 TX_MAX_TSS_RINGS + 1);
Michael Chana4dde3a2010-02-24 14:42:08 +00001104 uinfo->mem[1].addr = (unsigned long) cp->status_blk.gen &
Michael Chancd801532010-10-13 14:06:49 +00001105 PAGE_MASK;
Michael Chan5e9b2db2009-08-26 09:49:23 +00001106 if (cp->ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX)
1107 uinfo->mem[1].size = BNX2_SBLK_MSIX_ALIGN_SIZE * 9;
1108 else
1109 uinfo->mem[1].size = BNX2_SBLK_MSIX_ALIGN_SIZE;
1110
1111 uinfo->name = "bnx2_cnic";
Michael Chan71034ba2009-10-10 13:46:59 +00001112 } else if (test_bit(CNIC_F_BNX2X_CLASS, &dev->flags)) {
Michael Chanae0eef62012-06-29 09:32:45 +00001113 uinfo->mem[0].size = pci_resource_len(dev->pcidev, 0);
1114
Michael Chan71034ba2009-10-10 13:46:59 +00001115 uinfo->mem[1].addr = (unsigned long) cp->bnx2x_def_status_blk &
1116 PAGE_MASK;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001117 uinfo->mem[1].size = sizeof(*cp->bnx2x_def_status_blk);
Michael Chan71034ba2009-10-10 13:46:59 +00001118
1119 uinfo->name = "bnx2x_cnic";
Michael Chan5e9b2db2009-08-26 09:49:23 +00001120 }
1121
1122 uinfo->mem[1].memtype = UIO_MEM_LOGICAL;
1123
Michael Chancd801532010-10-13 14:06:49 +00001124 uinfo->mem[2].addr = (unsigned long) udev->l2_ring;
1125 uinfo->mem[2].size = udev->l2_ring_size;
Michael Chan5e9b2db2009-08-26 09:49:23 +00001126 uinfo->mem[2].memtype = UIO_MEM_LOGICAL;
1127
Michael Chancd801532010-10-13 14:06:49 +00001128 uinfo->mem[3].addr = (unsigned long) udev->l2_buf;
1129 uinfo->mem[3].size = udev->l2_buf_size;
Michael Chan5e9b2db2009-08-26 09:49:23 +00001130 uinfo->mem[3].memtype = UIO_MEM_LOGICAL;
1131
1132 uinfo->version = CNIC_MODULE_VERSION;
1133 uinfo->irq = UIO_IRQ_CUSTOM;
1134
1135 uinfo->open = cnic_uio_open;
1136 uinfo->release = cnic_uio_close;
1137
Michael Chana3ceeeb2010-10-13 14:06:50 +00001138 if (udev->uio_dev == -1) {
1139 if (!uinfo->priv) {
1140 uinfo->priv = udev;
Michael Chan5e9b2db2009-08-26 09:49:23 +00001141
Michael Chana3ceeeb2010-10-13 14:06:50 +00001142 ret = uio_register_device(&udev->pdev->dev, uinfo);
1143 }
1144 } else {
1145 cnic_init_rings(dev);
1146 }
Michael Chan5e9b2db2009-08-26 09:49:23 +00001147
Michael Chancd801532010-10-13 14:06:49 +00001148 return ret;
Michael Chan5e9b2db2009-08-26 09:49:23 +00001149}
1150
Michael Chana4636962009-06-08 18:14:43 -07001151static int cnic_alloc_bnx2_resc(struct cnic_dev *dev)
1152{
1153 struct cnic_local *cp = dev->cnic_priv;
Michael Chana4636962009-06-08 18:14:43 -07001154 int ret;
1155
1156 ret = cnic_alloc_dma(dev, &cp->kwq_info, KWQ_PAGE_CNT, 1);
1157 if (ret)
1158 goto error;
1159 cp->kwq = (struct kwqe **) cp->kwq_info.pg_arr;
1160
Michael Chan59e51372011-06-14 01:32:38 +00001161 ret = cnic_alloc_kcq(dev, &cp->kcq1, true);
Michael Chana4636962009-06-08 18:14:43 -07001162 if (ret)
1163 goto error;
Michael Chana4636962009-06-08 18:14:43 -07001164
1165 ret = cnic_alloc_context(dev);
1166 if (ret)
1167 goto error;
1168
Michael Chancd801532010-10-13 14:06:49 +00001169 ret = cnic_alloc_uio_rings(dev, 2);
Michael Chanec0248e2009-08-26 09:49:22 +00001170 if (ret)
Michael Chana4636962009-06-08 18:14:43 -07001171 goto error;
1172
Michael Chancd801532010-10-13 14:06:49 +00001173 ret = cnic_init_uio(dev);
Michael Chan5e9b2db2009-08-26 09:49:23 +00001174 if (ret)
Michael Chana4636962009-06-08 18:14:43 -07001175 goto error;
1176
Michael Chana4636962009-06-08 18:14:43 -07001177 return 0;
1178
1179error:
1180 cnic_free_resc(dev);
1181 return ret;
1182}
1183
Michael Chan71034ba2009-10-10 13:46:59 +00001184static int cnic_alloc_bnx2x_context(struct cnic_dev *dev)
1185{
1186 struct cnic_local *cp = dev->cnic_priv;
Michael Chan71034ba2009-10-10 13:46:59 +00001187 int ctx_blk_size = cp->ethdev->ctx_blk_size;
Michael Chan520efdf2010-06-24 14:58:37 +00001188 int total_mem, blks, i;
Michael Chan71034ba2009-10-10 13:46:59 +00001189
Michael Chan520efdf2010-06-24 14:58:37 +00001190 total_mem = BNX2X_CONTEXT_MEM_SIZE * cp->max_cid_space;
Michael Chan71034ba2009-10-10 13:46:59 +00001191 blks = total_mem / ctx_blk_size;
1192 if (total_mem % ctx_blk_size)
1193 blks++;
1194
1195 if (blks > cp->ethdev->ctx_tbl_len)
1196 return -ENOMEM;
1197
Joe Perchesbaeb2ff2010-08-11 07:02:48 +00001198 cp->ctx_arr = kcalloc(blks, sizeof(struct cnic_ctx), GFP_KERNEL);
Michael Chan71034ba2009-10-10 13:46:59 +00001199 if (cp->ctx_arr == NULL)
1200 return -ENOMEM;
1201
1202 cp->ctx_blks = blks;
1203 cp->ctx_blk_size = ctx_blk_size;
Michael Chanee87a822010-10-13 14:06:51 +00001204 if (!BNX2X_CHIP_IS_57710(cp->chip_id))
Michael Chan71034ba2009-10-10 13:46:59 +00001205 cp->ctx_align = 0;
1206 else
1207 cp->ctx_align = ctx_blk_size;
1208
1209 cp->cids_per_blk = ctx_blk_size / BNX2X_CONTEXT_MEM_SIZE;
1210
1211 for (i = 0; i < blks; i++) {
1212 cp->ctx_arr[i].ctx =
Michael Chan3248e162009-12-02 15:15:39 +00001213 dma_alloc_coherent(&dev->pcidev->dev, cp->ctx_blk_size,
1214 &cp->ctx_arr[i].mapping,
1215 GFP_KERNEL);
Michael Chan71034ba2009-10-10 13:46:59 +00001216 if (cp->ctx_arr[i].ctx == NULL)
1217 return -ENOMEM;
1218
1219 if (cp->ctx_align && cp->ctx_blk_size == ctx_blk_size) {
1220 if (cp->ctx_arr[i].mapping & (cp->ctx_align - 1)) {
1221 cnic_free_context(dev);
1222 cp->ctx_blk_size += cp->ctx_align;
1223 i = -1;
1224 continue;
1225 }
1226 }
1227 }
1228 return 0;
1229}
1230
1231static int cnic_alloc_bnx2x_resc(struct cnic_dev *dev)
1232{
1233 struct cnic_local *cp = dev->cnic_priv;
Michael Chan520efdf2010-06-24 14:58:37 +00001234 struct cnic_eth_dev *ethdev = cp->ethdev;
1235 u32 start_cid = ethdev->starting_cid;
Michael Chan71034ba2009-10-10 13:46:59 +00001236 int i, j, n, ret, pages;
1237 struct cnic_dma *kwq_16_dma = &cp->kwq_16_data_info;
1238
Michael Chanb37a41e2011-07-20 14:55:22 +00001239 cp->max_cid_space = MAX_ISCSI_TBL_SZ;
Michael Chan520efdf2010-06-24 14:58:37 +00001240 cp->iscsi_start_cid = start_cid;
Michael Chane1928c82010-12-23 07:43:04 +00001241 cp->fcoe_start_cid = start_cid + MAX_ISCSI_TBL_SZ;
1242
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001243 if (BNX2X_CHIP_IS_E2_PLUS(cp->chip_id)) {
Michael Chandc219a22011-08-26 09:45:39 +00001244 cp->max_cid_space += dev->max_fcoe_conn;
Michael Chane1928c82010-12-23 07:43:04 +00001245 cp->fcoe_init_cid = ethdev->fcoe_init_cid;
1246 if (!cp->fcoe_init_cid)
1247 cp->fcoe_init_cid = 0x10;
1248 }
1249
Michael Chan71034ba2009-10-10 13:46:59 +00001250 cp->iscsi_tbl = kzalloc(sizeof(struct cnic_iscsi) * MAX_ISCSI_TBL_SZ,
1251 GFP_KERNEL);
1252 if (!cp->iscsi_tbl)
1253 goto error;
1254
1255 cp->ctx_tbl = kzalloc(sizeof(struct cnic_context) *
Michael Chan520efdf2010-06-24 14:58:37 +00001256 cp->max_cid_space, GFP_KERNEL);
Michael Chan71034ba2009-10-10 13:46:59 +00001257 if (!cp->ctx_tbl)
1258 goto error;
1259
1260 for (i = 0; i < MAX_ISCSI_TBL_SZ; i++) {
1261 cp->ctx_tbl[i].proto.iscsi = &cp->iscsi_tbl[i];
1262 cp->ctx_tbl[i].ulp_proto_id = CNIC_ULP_ISCSI;
1263 }
1264
Michael Chane1928c82010-12-23 07:43:04 +00001265 for (i = MAX_ISCSI_TBL_SZ; i < cp->max_cid_space; i++)
1266 cp->ctx_tbl[i].ulp_proto_id = CNIC_ULP_FCOE;
1267
Michael Chan520efdf2010-06-24 14:58:37 +00001268 pages = PAGE_ALIGN(cp->max_cid_space * CNIC_KWQ16_DATA_SIZE) /
Michael Chan71034ba2009-10-10 13:46:59 +00001269 PAGE_SIZE;
1270
1271 ret = cnic_alloc_dma(dev, kwq_16_dma, pages, 0);
1272 if (ret)
1273 return -ENOMEM;
1274
1275 n = PAGE_SIZE / CNIC_KWQ16_DATA_SIZE;
Michael Chan520efdf2010-06-24 14:58:37 +00001276 for (i = 0, j = 0; i < cp->max_cid_space; i++) {
Michael Chan71034ba2009-10-10 13:46:59 +00001277 long off = CNIC_KWQ16_DATA_SIZE * (i % n);
1278
1279 cp->ctx_tbl[i].kwqe_data = kwq_16_dma->pg_arr[j] + off;
1280 cp->ctx_tbl[i].kwqe_data_mapping = kwq_16_dma->pg_map_arr[j] +
1281 off;
1282
1283 if ((i % n) == (n - 1))
1284 j++;
1285 }
1286
Michael Chan59e51372011-06-14 01:32:38 +00001287 ret = cnic_alloc_kcq(dev, &cp->kcq1, false);
Michael Chan71034ba2009-10-10 13:46:59 +00001288 if (ret)
1289 goto error;
Michael Chan71034ba2009-10-10 13:46:59 +00001290
Michael Chan51a8f542012-09-08 06:01:04 +00001291 if (CNIC_SUPPORTS_FCOE(cp)) {
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001292 ret = cnic_alloc_kcq(dev, &cp->kcq2, true);
Michael Chane21ba412010-12-23 07:43:03 +00001293 if (ret)
1294 goto error;
1295 }
1296
Michael Chan71034ba2009-10-10 13:46:59 +00001297 pages = PAGE_ALIGN(BNX2X_ISCSI_GLB_BUF_SIZE) / PAGE_SIZE;
1298 ret = cnic_alloc_dma(dev, &cp->gbl_buf_info, pages, 0);
1299 if (ret)
1300 goto error;
1301
1302 ret = cnic_alloc_bnx2x_context(dev);
1303 if (ret)
1304 goto error;
1305
Michael Chan82346a72012-09-08 06:01:05 +00001306 if (cp->ethdev->drv_state & CNIC_DRV_STATE_NO_ISCSI)
1307 return 0;
1308
Michael Chan71034ba2009-10-10 13:46:59 +00001309 cp->bnx2x_def_status_blk = cp->ethdev->irq_arr[1].status_blk;
1310
1311 cp->l2_rx_ring_size = 15;
1312
Michael Chancd801532010-10-13 14:06:49 +00001313 ret = cnic_alloc_uio_rings(dev, 4);
Michael Chan71034ba2009-10-10 13:46:59 +00001314 if (ret)
1315 goto error;
1316
Michael Chancd801532010-10-13 14:06:49 +00001317 ret = cnic_init_uio(dev);
Michael Chan71034ba2009-10-10 13:46:59 +00001318 if (ret)
1319 goto error;
1320
1321 return 0;
1322
1323error:
1324 cnic_free_resc(dev);
1325 return -ENOMEM;
1326}
1327
Michael Chana4636962009-06-08 18:14:43 -07001328static inline u32 cnic_kwq_avail(struct cnic_local *cp)
1329{
1330 return cp->max_kwq_idx -
1331 ((cp->kwq_prod_idx - cp->kwq_con_idx) & cp->max_kwq_idx);
1332}
1333
1334static int cnic_submit_bnx2_kwqes(struct cnic_dev *dev, struct kwqe *wqes[],
1335 u32 num_wqes)
1336{
1337 struct cnic_local *cp = dev->cnic_priv;
1338 struct kwqe *prod_qe;
1339 u16 prod, sw_prod, i;
1340
1341 if (!test_bit(CNIC_F_CNIC_UP, &dev->flags))
1342 return -EAGAIN; /* bnx2 is down */
1343
1344 spin_lock_bh(&cp->cnic_ulp_lock);
1345 if (num_wqes > cnic_kwq_avail(cp) &&
Michael Chan1f1332a2010-05-18 11:32:52 +00001346 !test_bit(CNIC_LCL_FL_KWQ_INIT, &cp->cnic_local_flags)) {
Michael Chana4636962009-06-08 18:14:43 -07001347 spin_unlock_bh(&cp->cnic_ulp_lock);
1348 return -EAGAIN;
1349 }
1350
Michael Chan1f1332a2010-05-18 11:32:52 +00001351 clear_bit(CNIC_LCL_FL_KWQ_INIT, &cp->cnic_local_flags);
Michael Chana4636962009-06-08 18:14:43 -07001352
1353 prod = cp->kwq_prod_idx;
1354 sw_prod = prod & MAX_KWQ_IDX;
1355 for (i = 0; i < num_wqes; i++) {
1356 prod_qe = &cp->kwq[KWQ_PG(sw_prod)][KWQ_IDX(sw_prod)];
1357 memcpy(prod_qe, wqes[i], sizeof(struct kwqe));
1358 prod++;
1359 sw_prod = prod & MAX_KWQ_IDX;
1360 }
1361 cp->kwq_prod_idx = prod;
1362
1363 CNIC_WR16(dev, cp->kwq_io_addr, cp->kwq_prod_idx);
1364
1365 spin_unlock_bh(&cp->cnic_ulp_lock);
1366 return 0;
1367}
1368
Michael Chan71034ba2009-10-10 13:46:59 +00001369static void *cnic_get_kwqe_16_data(struct cnic_local *cp, u32 l5_cid,
1370 union l5cm_specific_data *l5_data)
1371{
1372 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
1373 dma_addr_t map;
1374
1375 map = ctx->kwqe_data_mapping;
1376 l5_data->phy_address.lo = (u64) map & 0xffffffff;
1377 l5_data->phy_address.hi = (u64) map >> 32;
1378 return ctx->kwqe_data;
1379}
1380
1381static int cnic_submit_kwqe_16(struct cnic_dev *dev, u32 cmd, u32 cid,
1382 u32 type, union l5cm_specific_data *l5_data)
1383{
1384 struct cnic_local *cp = dev->cnic_priv;
1385 struct l5cm_spe kwqe;
1386 struct kwqe_16 *kwq[1];
Michael Chan68d7c1a2011-01-05 15:14:13 +00001387 u16 type_16;
Michael Chan71034ba2009-10-10 13:46:59 +00001388 int ret;
1389
1390 kwqe.hdr.conn_and_cmd_data =
1391 cpu_to_le32(((cmd << SPE_HDR_CMD_ID_SHIFT) |
Michael Chanceb7e1c2010-10-06 03:14:54 +00001392 BNX2X_HW_CID(cp, cid)));
Michael Chan68d7c1a2011-01-05 15:14:13 +00001393
1394 type_16 = (type << SPE_HDR_CONN_TYPE_SHIFT) & SPE_HDR_CONN_TYPE;
1395 type_16 |= (cp->pfid << SPE_HDR_FUNCTION_ID_SHIFT) &
1396 SPE_HDR_FUNCTION_ID;
1397
1398 kwqe.hdr.type = cpu_to_le16(type_16);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001399 kwqe.hdr.reserved1 = 0;
Michael Chan71034ba2009-10-10 13:46:59 +00001400 kwqe.data.phy_address.lo = cpu_to_le32(l5_data->phy_address.lo);
1401 kwqe.data.phy_address.hi = cpu_to_le32(l5_data->phy_address.hi);
1402
1403 kwq[0] = (struct kwqe_16 *) &kwqe;
1404
1405 spin_lock_bh(&cp->cnic_ulp_lock);
1406 ret = cp->ethdev->drv_submit_kwqes_16(dev->netdev, kwq, 1);
1407 spin_unlock_bh(&cp->cnic_ulp_lock);
1408
1409 if (ret == 1)
1410 return 0;
1411
Michael Chan23021c22012-01-04 12:12:28 +00001412 return ret;
Michael Chan71034ba2009-10-10 13:46:59 +00001413}
1414
1415static void cnic_reply_bnx2x_kcqes(struct cnic_dev *dev, int ulp_type,
1416 struct kcqe *cqes[], u32 num_cqes)
1417{
1418 struct cnic_local *cp = dev->cnic_priv;
1419 struct cnic_ulp_ops *ulp_ops;
1420
1421 rcu_read_lock();
1422 ulp_ops = rcu_dereference(cp->ulp_ops[ulp_type]);
1423 if (likely(ulp_ops)) {
1424 ulp_ops->indicate_kcqes(cp->ulp_handle[ulp_type],
1425 cqes, num_cqes);
1426 }
1427 rcu_read_unlock();
1428}
1429
Eddie Waib3bd2d62013-07-28 19:03:58 -07001430static void cnic_bnx2x_set_tcp_options(struct cnic_dev *dev, int time_stamps,
1431 int en_tcp_dack)
1432{
1433 struct cnic_local *cp = dev->cnic_priv;
1434 struct bnx2x *bp = netdev_priv(dev->netdev);
1435 u8 xstorm_flags = XSTORM_L5CM_TCP_FLAGS_WND_SCL_EN;
1436 u16 tstorm_flags = 0;
1437
1438 if (time_stamps) {
1439 xstorm_flags |= XSTORM_L5CM_TCP_FLAGS_TS_ENABLED;
1440 tstorm_flags |= TSTORM_L5CM_TCP_FLAGS_TS_ENABLED;
1441 }
1442 if (en_tcp_dack)
1443 tstorm_flags |= TSTORM_L5CM_TCP_FLAGS_DELAYED_ACK_EN;
1444
1445 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
1446 XSTORM_ISCSI_TCP_VARS_FLAGS_OFFSET(cp->pfid), xstorm_flags);
1447
1448 CNIC_WR16(dev, BAR_TSTRORM_INTMEM +
1449 TSTORM_ISCSI_TCP_VARS_FLAGS_OFFSET(cp->pfid), tstorm_flags);
1450}
1451
Michael Chan71034ba2009-10-10 13:46:59 +00001452static int cnic_bnx2x_iscsi_init1(struct cnic_dev *dev, struct kwqe *kwqe)
1453{
1454 struct cnic_local *cp = dev->cnic_priv;
Michael Chan68c64d22012-12-06 10:33:11 +00001455 struct bnx2x *bp = netdev_priv(dev->netdev);
Michael Chan71034ba2009-10-10 13:46:59 +00001456 struct iscsi_kwqe_init1 *req1 = (struct iscsi_kwqe_init1 *) kwqe;
Michael Chan14203982010-10-06 03:16:06 +00001457 int hq_bds, pages;
1458 u32 pfid = cp->pfid;
Michael Chan71034ba2009-10-10 13:46:59 +00001459
1460 cp->num_iscsi_tasks = req1->num_tasks_per_conn;
1461 cp->num_ccells = req1->num_ccells_per_conn;
1462 cp->task_array_size = BNX2X_ISCSI_TASK_CONTEXT_SIZE *
1463 cp->num_iscsi_tasks;
1464 cp->r2tq_size = cp->num_iscsi_tasks * BNX2X_ISCSI_MAX_PENDING_R2TS *
1465 BNX2X_ISCSI_R2TQE_SIZE;
1466 cp->hq_size = cp->num_ccells * BNX2X_ISCSI_HQ_BD_SIZE;
1467 pages = PAGE_ALIGN(cp->hq_size) / PAGE_SIZE;
1468 hq_bds = pages * (PAGE_SIZE / BNX2X_ISCSI_HQ_BD_SIZE);
1469 cp->num_cqs = req1->num_cqs;
1470
1471 if (!dev->max_iscsi_conn)
1472 return 0;
1473
1474 /* init Tstorm RAM */
Michael Chan14203982010-10-06 03:16:06 +00001475 CNIC_WR16(dev, BAR_TSTRORM_INTMEM + TSTORM_ISCSI_RQ_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001476 req1->rq_num_wqes);
Michael Chan14203982010-10-06 03:16:06 +00001477 CNIC_WR16(dev, BAR_TSTRORM_INTMEM + TSTORM_ISCSI_PAGE_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001478 PAGE_SIZE);
1479 CNIC_WR8(dev, BAR_TSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001480 TSTORM_ISCSI_PAGE_SIZE_LOG_OFFSET(pfid), PAGE_SHIFT);
Michael Chan71034ba2009-10-10 13:46:59 +00001481 CNIC_WR16(dev, BAR_TSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001482 TSTORM_ISCSI_NUM_OF_TASKS_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001483 req1->num_tasks_per_conn);
1484
1485 /* init Ustorm RAM */
1486 CNIC_WR16(dev, BAR_USTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001487 USTORM_ISCSI_RQ_BUFFER_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001488 req1->rq_buffer_size);
Michael Chan14203982010-10-06 03:16:06 +00001489 CNIC_WR16(dev, BAR_USTRORM_INTMEM + USTORM_ISCSI_PAGE_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001490 PAGE_SIZE);
1491 CNIC_WR8(dev, BAR_USTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001492 USTORM_ISCSI_PAGE_SIZE_LOG_OFFSET(pfid), PAGE_SHIFT);
Michael Chan71034ba2009-10-10 13:46:59 +00001493 CNIC_WR16(dev, BAR_USTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001494 USTORM_ISCSI_NUM_OF_TASKS_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001495 req1->num_tasks_per_conn);
Michael Chan14203982010-10-06 03:16:06 +00001496 CNIC_WR16(dev, BAR_USTRORM_INTMEM + USTORM_ISCSI_RQ_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001497 req1->rq_num_wqes);
Michael Chan14203982010-10-06 03:16:06 +00001498 CNIC_WR16(dev, BAR_USTRORM_INTMEM + USTORM_ISCSI_CQ_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001499 req1->cq_num_wqes);
Michael Chan14203982010-10-06 03:16:06 +00001500 CNIC_WR16(dev, BAR_USTRORM_INTMEM + USTORM_ISCSI_R2TQ_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001501 cp->num_iscsi_tasks * BNX2X_ISCSI_MAX_PENDING_R2TS);
1502
1503 /* init Xstorm RAM */
Michael Chan14203982010-10-06 03:16:06 +00001504 CNIC_WR16(dev, BAR_XSTRORM_INTMEM + XSTORM_ISCSI_PAGE_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001505 PAGE_SIZE);
1506 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001507 XSTORM_ISCSI_PAGE_SIZE_LOG_OFFSET(pfid), PAGE_SHIFT);
Michael Chan71034ba2009-10-10 13:46:59 +00001508 CNIC_WR16(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001509 XSTORM_ISCSI_NUM_OF_TASKS_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001510 req1->num_tasks_per_conn);
Michael Chan14203982010-10-06 03:16:06 +00001511 CNIC_WR16(dev, BAR_XSTRORM_INTMEM + XSTORM_ISCSI_HQ_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001512 hq_bds);
Michael Chan14203982010-10-06 03:16:06 +00001513 CNIC_WR16(dev, BAR_XSTRORM_INTMEM + XSTORM_ISCSI_SQ_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001514 req1->num_tasks_per_conn);
Michael Chan14203982010-10-06 03:16:06 +00001515 CNIC_WR16(dev, BAR_XSTRORM_INTMEM + XSTORM_ISCSI_R2TQ_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001516 cp->num_iscsi_tasks * BNX2X_ISCSI_MAX_PENDING_R2TS);
1517
1518 /* init Cstorm RAM */
Michael Chan14203982010-10-06 03:16:06 +00001519 CNIC_WR16(dev, BAR_CSTRORM_INTMEM + CSTORM_ISCSI_PAGE_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001520 PAGE_SIZE);
1521 CNIC_WR8(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001522 CSTORM_ISCSI_PAGE_SIZE_LOG_OFFSET(pfid), PAGE_SHIFT);
Michael Chan71034ba2009-10-10 13:46:59 +00001523 CNIC_WR16(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001524 CSTORM_ISCSI_NUM_OF_TASKS_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001525 req1->num_tasks_per_conn);
Michael Chan14203982010-10-06 03:16:06 +00001526 CNIC_WR16(dev, BAR_CSTRORM_INTMEM + CSTORM_ISCSI_CQ_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001527 req1->cq_num_wqes);
Michael Chan14203982010-10-06 03:16:06 +00001528 CNIC_WR16(dev, BAR_CSTRORM_INTMEM + CSTORM_ISCSI_HQ_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001529 hq_bds);
1530
Eddie Waib3bd2d62013-07-28 19:03:58 -07001531 cnic_bnx2x_set_tcp_options(dev,
1532 req1->flags & ISCSI_KWQE_INIT1_TIME_STAMPS_ENABLE,
1533 req1->flags & ISCSI_KWQE_INIT1_DELAYED_ACK_ENABLE);
1534
Michael Chan71034ba2009-10-10 13:46:59 +00001535 return 0;
1536}
1537
1538static int cnic_bnx2x_iscsi_init2(struct cnic_dev *dev, struct kwqe *kwqe)
1539{
1540 struct iscsi_kwqe_init2 *req2 = (struct iscsi_kwqe_init2 *) kwqe;
1541 struct cnic_local *cp = dev->cnic_priv;
Michael Chan68c64d22012-12-06 10:33:11 +00001542 struct bnx2x *bp = netdev_priv(dev->netdev);
Michael Chan14203982010-10-06 03:16:06 +00001543 u32 pfid = cp->pfid;
Michael Chan71034ba2009-10-10 13:46:59 +00001544 struct iscsi_kcqe kcqe;
1545 struct kcqe *cqes[1];
1546
1547 memset(&kcqe, 0, sizeof(kcqe));
1548 if (!dev->max_iscsi_conn) {
1549 kcqe.completion_status =
1550 ISCSI_KCQE_COMPLETION_STATUS_ISCSI_NOT_SUPPORTED;
1551 goto done;
1552 }
1553
1554 CNIC_WR(dev, BAR_TSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001555 TSTORM_ISCSI_ERROR_BITMAP_OFFSET(pfid), req2->error_bit_map[0]);
Michael Chan71034ba2009-10-10 13:46:59 +00001556 CNIC_WR(dev, BAR_TSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001557 TSTORM_ISCSI_ERROR_BITMAP_OFFSET(pfid) + 4,
Michael Chan71034ba2009-10-10 13:46:59 +00001558 req2->error_bit_map[1]);
1559
1560 CNIC_WR16(dev, BAR_USTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001561 USTORM_ISCSI_CQ_SQN_SIZE_OFFSET(pfid), req2->max_cq_sqn);
Michael Chan71034ba2009-10-10 13:46:59 +00001562 CNIC_WR(dev, BAR_USTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001563 USTORM_ISCSI_ERROR_BITMAP_OFFSET(pfid), req2->error_bit_map[0]);
Michael Chan71034ba2009-10-10 13:46:59 +00001564 CNIC_WR(dev, BAR_USTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001565 USTORM_ISCSI_ERROR_BITMAP_OFFSET(pfid) + 4,
Michael Chan71034ba2009-10-10 13:46:59 +00001566 req2->error_bit_map[1]);
1567
1568 CNIC_WR16(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001569 CSTORM_ISCSI_CQ_SQN_SIZE_OFFSET(pfid), req2->max_cq_sqn);
Michael Chan71034ba2009-10-10 13:46:59 +00001570
1571 kcqe.completion_status = ISCSI_KCQE_COMPLETION_STATUS_SUCCESS;
1572
1573done:
1574 kcqe.op_code = ISCSI_KCQE_OPCODE_INIT;
1575 cqes[0] = (struct kcqe *) &kcqe;
1576 cnic_reply_bnx2x_kcqes(dev, CNIC_ULP_ISCSI, cqes, 1);
1577
1578 return 0;
1579}
1580
1581static void cnic_free_bnx2x_conn_resc(struct cnic_dev *dev, u32 l5_cid)
1582{
1583 struct cnic_local *cp = dev->cnic_priv;
1584 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
1585
1586 if (ctx->ulp_proto_id == CNIC_ULP_ISCSI) {
1587 struct cnic_iscsi *iscsi = ctx->proto.iscsi;
1588
1589 cnic_free_dma(dev, &iscsi->hq_info);
1590 cnic_free_dma(dev, &iscsi->r2tq_info);
1591 cnic_free_dma(dev, &iscsi->task_array_info);
Michael Chane1928c82010-12-23 07:43:04 +00001592 cnic_free_id(&cp->cid_tbl, ctx->cid);
1593 } else {
1594 cnic_free_id(&cp->fcoe_cid_tbl, ctx->cid);
Michael Chan71034ba2009-10-10 13:46:59 +00001595 }
Michael Chane1928c82010-12-23 07:43:04 +00001596
Michael Chan71034ba2009-10-10 13:46:59 +00001597 ctx->cid = 0;
1598}
1599
1600static int cnic_alloc_bnx2x_conn_resc(struct cnic_dev *dev, u32 l5_cid)
1601{
1602 u32 cid;
1603 int ret, pages;
1604 struct cnic_local *cp = dev->cnic_priv;
1605 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
1606 struct cnic_iscsi *iscsi = ctx->proto.iscsi;
1607
Michael Chane1928c82010-12-23 07:43:04 +00001608 if (ctx->ulp_proto_id == CNIC_ULP_FCOE) {
1609 cid = cnic_alloc_new_id(&cp->fcoe_cid_tbl);
1610 if (cid == -1) {
1611 ret = -ENOMEM;
1612 goto error;
1613 }
1614 ctx->cid = cid;
1615 return 0;
1616 }
1617
Michael Chan71034ba2009-10-10 13:46:59 +00001618 cid = cnic_alloc_new_id(&cp->cid_tbl);
1619 if (cid == -1) {
1620 ret = -ENOMEM;
1621 goto error;
1622 }
1623
1624 ctx->cid = cid;
1625 pages = PAGE_ALIGN(cp->task_array_size) / PAGE_SIZE;
1626
1627 ret = cnic_alloc_dma(dev, &iscsi->task_array_info, pages, 1);
1628 if (ret)
1629 goto error;
1630
1631 pages = PAGE_ALIGN(cp->r2tq_size) / PAGE_SIZE;
1632 ret = cnic_alloc_dma(dev, &iscsi->r2tq_info, pages, 1);
1633 if (ret)
1634 goto error;
1635
1636 pages = PAGE_ALIGN(cp->hq_size) / PAGE_SIZE;
1637 ret = cnic_alloc_dma(dev, &iscsi->hq_info, pages, 1);
1638 if (ret)
1639 goto error;
1640
1641 return 0;
1642
1643error:
1644 cnic_free_bnx2x_conn_resc(dev, l5_cid);
1645 return ret;
1646}
1647
1648static void *cnic_get_bnx2x_ctx(struct cnic_dev *dev, u32 cid, int init,
1649 struct regpair *ctx_addr)
1650{
1651 struct cnic_local *cp = dev->cnic_priv;
1652 struct cnic_eth_dev *ethdev = cp->ethdev;
1653 int blk = (cid - ethdev->starting_cid) / cp->cids_per_blk;
1654 int off = (cid - ethdev->starting_cid) % cp->cids_per_blk;
1655 unsigned long align_off = 0;
1656 dma_addr_t ctx_map;
1657 void *ctx;
1658
1659 if (cp->ctx_align) {
1660 unsigned long mask = cp->ctx_align - 1;
1661
1662 if (cp->ctx_arr[blk].mapping & mask)
1663 align_off = cp->ctx_align -
1664 (cp->ctx_arr[blk].mapping & mask);
1665 }
1666 ctx_map = cp->ctx_arr[blk].mapping + align_off +
1667 (off * BNX2X_CONTEXT_MEM_SIZE);
1668 ctx = cp->ctx_arr[blk].ctx + align_off +
1669 (off * BNX2X_CONTEXT_MEM_SIZE);
1670 if (init)
1671 memset(ctx, 0, BNX2X_CONTEXT_MEM_SIZE);
1672
1673 ctx_addr->lo = ctx_map & 0xffffffff;
1674 ctx_addr->hi = (u64) ctx_map >> 32;
1675 return ctx;
1676}
1677
1678static int cnic_setup_bnx2x_ctx(struct cnic_dev *dev, struct kwqe *wqes[],
1679 u32 num)
1680{
1681 struct cnic_local *cp = dev->cnic_priv;
1682 struct iscsi_kwqe_conn_offload1 *req1 =
1683 (struct iscsi_kwqe_conn_offload1 *) wqes[0];
1684 struct iscsi_kwqe_conn_offload2 *req2 =
1685 (struct iscsi_kwqe_conn_offload2 *) wqes[1];
1686 struct iscsi_kwqe_conn_offload3 *req3;
1687 struct cnic_context *ctx = &cp->ctx_tbl[req1->iscsi_conn_id];
1688 struct cnic_iscsi *iscsi = ctx->proto.iscsi;
1689 u32 cid = ctx->cid;
Michael Chanceb7e1c2010-10-06 03:14:54 +00001690 u32 hw_cid = BNX2X_HW_CID(cp, cid);
Michael Chan71034ba2009-10-10 13:46:59 +00001691 struct iscsi_context *ictx;
1692 struct regpair context_addr;
1693 int i, j, n = 2, n_max;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001694 u8 port = CNIC_PORT(cp);
Michael Chan71034ba2009-10-10 13:46:59 +00001695
1696 ctx->ctx_flags = 0;
1697 if (!req2->num_additional_wqes)
1698 return -EINVAL;
1699
1700 n_max = req2->num_additional_wqes + 2;
1701
1702 ictx = cnic_get_bnx2x_ctx(dev, cid, 1, &context_addr);
1703 if (ictx == NULL)
1704 return -ENOMEM;
1705
1706 req3 = (struct iscsi_kwqe_conn_offload3 *) wqes[n++];
1707
1708 ictx->xstorm_ag_context.hq_prod = 1;
1709
1710 ictx->xstorm_st_context.iscsi.first_burst_length =
1711 ISCSI_DEF_FIRST_BURST_LEN;
1712 ictx->xstorm_st_context.iscsi.max_send_pdu_length =
1713 ISCSI_DEF_MAX_RECV_SEG_LEN;
1714 ictx->xstorm_st_context.iscsi.sq_pbl_base.lo =
1715 req1->sq_page_table_addr_lo;
1716 ictx->xstorm_st_context.iscsi.sq_pbl_base.hi =
1717 req1->sq_page_table_addr_hi;
1718 ictx->xstorm_st_context.iscsi.sq_curr_pbe.lo = req2->sq_first_pte.hi;
1719 ictx->xstorm_st_context.iscsi.sq_curr_pbe.hi = req2->sq_first_pte.lo;
1720 ictx->xstorm_st_context.iscsi.hq_pbl_base.lo =
1721 iscsi->hq_info.pgtbl_map & 0xffffffff;
1722 ictx->xstorm_st_context.iscsi.hq_pbl_base.hi =
1723 (u64) iscsi->hq_info.pgtbl_map >> 32;
1724 ictx->xstorm_st_context.iscsi.hq_curr_pbe_base.lo =
1725 iscsi->hq_info.pgtbl[0];
1726 ictx->xstorm_st_context.iscsi.hq_curr_pbe_base.hi =
1727 iscsi->hq_info.pgtbl[1];
1728 ictx->xstorm_st_context.iscsi.r2tq_pbl_base.lo =
1729 iscsi->r2tq_info.pgtbl_map & 0xffffffff;
1730 ictx->xstorm_st_context.iscsi.r2tq_pbl_base.hi =
1731 (u64) iscsi->r2tq_info.pgtbl_map >> 32;
1732 ictx->xstorm_st_context.iscsi.r2tq_curr_pbe_base.lo =
1733 iscsi->r2tq_info.pgtbl[0];
1734 ictx->xstorm_st_context.iscsi.r2tq_curr_pbe_base.hi =
1735 iscsi->r2tq_info.pgtbl[1];
1736 ictx->xstorm_st_context.iscsi.task_pbl_base.lo =
1737 iscsi->task_array_info.pgtbl_map & 0xffffffff;
1738 ictx->xstorm_st_context.iscsi.task_pbl_base.hi =
1739 (u64) iscsi->task_array_info.pgtbl_map >> 32;
1740 ictx->xstorm_st_context.iscsi.task_pbl_cache_idx =
1741 BNX2X_ISCSI_PBL_NOT_CACHED;
1742 ictx->xstorm_st_context.iscsi.flags.flags |=
1743 XSTORM_ISCSI_CONTEXT_FLAGS_B_IMMEDIATE_DATA;
1744 ictx->xstorm_st_context.iscsi.flags.flags |=
1745 XSTORM_ISCSI_CONTEXT_FLAGS_B_INITIAL_R2T;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001746 ictx->xstorm_st_context.common.ethernet.reserved_vlan_type =
1747 ETH_P_8021Q;
1748 if (BNX2X_CHIP_IS_E2_PLUS(cp->chip_id) &&
1749 cp->port_mode == CHIP_2_PORT_MODE) {
1750
1751 port = 0;
1752 }
1753 ictx->xstorm_st_context.common.flags =
1754 1 << XSTORM_COMMON_CONTEXT_SECTION_PHYSQ_INITIALIZED_SHIFT;
1755 ictx->xstorm_st_context.common.flags =
1756 port << XSTORM_COMMON_CONTEXT_SECTION_PBF_PORT_SHIFT;
Michael Chan71034ba2009-10-10 13:46:59 +00001757
1758 ictx->tstorm_st_context.iscsi.hdr_bytes_2_fetch = ISCSI_HEADER_SIZE;
1759 /* TSTORM requires the base address of RQ DB & not PTE */
1760 ictx->tstorm_st_context.iscsi.rq_db_phy_addr.lo =
1761 req2->rq_page_table_addr_lo & PAGE_MASK;
1762 ictx->tstorm_st_context.iscsi.rq_db_phy_addr.hi =
1763 req2->rq_page_table_addr_hi;
1764 ictx->tstorm_st_context.iscsi.iscsi_conn_id = req1->iscsi_conn_id;
1765 ictx->tstorm_st_context.tcp.cwnd = 0x5A8;
1766 ictx->tstorm_st_context.tcp.flags2 |=
1767 TSTORM_TCP_ST_CONTEXT_SECTION_DA_EN;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001768 ictx->tstorm_st_context.tcp.ooo_support_mode =
1769 TCP_TSTORM_OOO_DROP_AND_PROC_ACK;
Michael Chan71034ba2009-10-10 13:46:59 +00001770
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001771 ictx->timers_context.flags |= TIMERS_BLOCK_CONTEXT_CONN_VALID_FLG;
Michael Chan71034ba2009-10-10 13:46:59 +00001772
1773 ictx->ustorm_st_context.ring.rq.pbl_base.lo =
Michael Chan15971c32009-12-02 15:15:38 +00001774 req2->rq_page_table_addr_lo;
Michael Chan71034ba2009-10-10 13:46:59 +00001775 ictx->ustorm_st_context.ring.rq.pbl_base.hi =
Michael Chan15971c32009-12-02 15:15:38 +00001776 req2->rq_page_table_addr_hi;
Michael Chan71034ba2009-10-10 13:46:59 +00001777 ictx->ustorm_st_context.ring.rq.curr_pbe.lo = req3->qp_first_pte[0].hi;
1778 ictx->ustorm_st_context.ring.rq.curr_pbe.hi = req3->qp_first_pte[0].lo;
1779 ictx->ustorm_st_context.ring.r2tq.pbl_base.lo =
1780 iscsi->r2tq_info.pgtbl_map & 0xffffffff;
1781 ictx->ustorm_st_context.ring.r2tq.pbl_base.hi =
1782 (u64) iscsi->r2tq_info.pgtbl_map >> 32;
1783 ictx->ustorm_st_context.ring.r2tq.curr_pbe.lo =
1784 iscsi->r2tq_info.pgtbl[0];
1785 ictx->ustorm_st_context.ring.r2tq.curr_pbe.hi =
1786 iscsi->r2tq_info.pgtbl[1];
1787 ictx->ustorm_st_context.ring.cq_pbl_base.lo =
1788 req1->cq_page_table_addr_lo;
1789 ictx->ustorm_st_context.ring.cq_pbl_base.hi =
1790 req1->cq_page_table_addr_hi;
1791 ictx->ustorm_st_context.ring.cq[0].cq_sn = ISCSI_INITIAL_SN;
1792 ictx->ustorm_st_context.ring.cq[0].curr_pbe.lo = req2->cq_first_pte.hi;
1793 ictx->ustorm_st_context.ring.cq[0].curr_pbe.hi = req2->cq_first_pte.lo;
1794 ictx->ustorm_st_context.task_pbe_cache_index =
1795 BNX2X_ISCSI_PBL_NOT_CACHED;
1796 ictx->ustorm_st_context.task_pdu_cache_index =
1797 BNX2X_ISCSI_PDU_HEADER_NOT_CACHED;
1798
1799 for (i = 1, j = 1; i < cp->num_cqs; i++, j++) {
1800 if (j == 3) {
1801 if (n >= n_max)
1802 break;
1803 req3 = (struct iscsi_kwqe_conn_offload3 *) wqes[n++];
1804 j = 0;
1805 }
1806 ictx->ustorm_st_context.ring.cq[i].cq_sn = ISCSI_INITIAL_SN;
1807 ictx->ustorm_st_context.ring.cq[i].curr_pbe.lo =
1808 req3->qp_first_pte[j].hi;
1809 ictx->ustorm_st_context.ring.cq[i].curr_pbe.hi =
1810 req3->qp_first_pte[j].lo;
1811 }
1812
1813 ictx->ustorm_st_context.task_pbl_base.lo =
1814 iscsi->task_array_info.pgtbl_map & 0xffffffff;
1815 ictx->ustorm_st_context.task_pbl_base.hi =
1816 (u64) iscsi->task_array_info.pgtbl_map >> 32;
1817 ictx->ustorm_st_context.tce_phy_addr.lo =
1818 iscsi->task_array_info.pgtbl[0];
1819 ictx->ustorm_st_context.tce_phy_addr.hi =
1820 iscsi->task_array_info.pgtbl[1];
1821 ictx->ustorm_st_context.iscsi_conn_id = req1->iscsi_conn_id;
1822 ictx->ustorm_st_context.num_cqs = cp->num_cqs;
1823 ictx->ustorm_st_context.negotiated_rx |= ISCSI_DEF_MAX_RECV_SEG_LEN;
1824 ictx->ustorm_st_context.negotiated_rx_and_flags |=
1825 ISCSI_DEF_MAX_BURST_LEN;
1826 ictx->ustorm_st_context.negotiated_rx |=
1827 ISCSI_DEFAULT_MAX_OUTSTANDING_R2T <<
1828 USTORM_ISCSI_ST_CONTEXT_MAX_OUTSTANDING_R2TS_SHIFT;
1829
1830 ictx->cstorm_st_context.hq_pbl_base.lo =
1831 iscsi->hq_info.pgtbl_map & 0xffffffff;
1832 ictx->cstorm_st_context.hq_pbl_base.hi =
1833 (u64) iscsi->hq_info.pgtbl_map >> 32;
1834 ictx->cstorm_st_context.hq_curr_pbe.lo = iscsi->hq_info.pgtbl[0];
1835 ictx->cstorm_st_context.hq_curr_pbe.hi = iscsi->hq_info.pgtbl[1];
1836 ictx->cstorm_st_context.task_pbl_base.lo =
1837 iscsi->task_array_info.pgtbl_map & 0xffffffff;
1838 ictx->cstorm_st_context.task_pbl_base.hi =
1839 (u64) iscsi->task_array_info.pgtbl_map >> 32;
1840 /* CSTORM and USTORM initialization is different, CSTORM requires
1841 * CQ DB base & not PTE addr */
1842 ictx->cstorm_st_context.cq_db_base.lo =
1843 req1->cq_page_table_addr_lo & PAGE_MASK;
1844 ictx->cstorm_st_context.cq_db_base.hi = req1->cq_page_table_addr_hi;
1845 ictx->cstorm_st_context.iscsi_conn_id = req1->iscsi_conn_id;
1846 ictx->cstorm_st_context.cq_proc_en_bit_map = (1 << cp->num_cqs) - 1;
1847 for (i = 0; i < cp->num_cqs; i++) {
1848 ictx->cstorm_st_context.cq_c_prod_sqn_arr.sqn[i] =
1849 ISCSI_INITIAL_SN;
1850 ictx->cstorm_st_context.cq_c_sqn_2_notify_arr.sqn[i] =
1851 ISCSI_INITIAL_SN;
1852 }
1853
1854 ictx->xstorm_ag_context.cdu_reserved =
1855 CDU_RSRVD_VALUE_TYPE_A(hw_cid, CDU_REGION_NUMBER_XCM_AG,
1856 ISCSI_CONNECTION_TYPE);
1857 ictx->ustorm_ag_context.cdu_usage =
1858 CDU_RSRVD_VALUE_TYPE_A(hw_cid, CDU_REGION_NUMBER_UCM_AG,
1859 ISCSI_CONNECTION_TYPE);
1860 return 0;
1861
1862}
1863
1864static int cnic_bnx2x_iscsi_ofld1(struct cnic_dev *dev, struct kwqe *wqes[],
1865 u32 num, int *work)
1866{
1867 struct iscsi_kwqe_conn_offload1 *req1;
1868 struct iscsi_kwqe_conn_offload2 *req2;
1869 struct cnic_local *cp = dev->cnic_priv;
Michael Chanfdf24082010-10-13 14:06:47 +00001870 struct cnic_context *ctx;
Michael Chan71034ba2009-10-10 13:46:59 +00001871 struct iscsi_kcqe kcqe;
1872 struct kcqe *cqes[1];
1873 u32 l5_cid;
Michael Chanfdf24082010-10-13 14:06:47 +00001874 int ret = 0;
Michael Chan71034ba2009-10-10 13:46:59 +00001875
1876 if (num < 2) {
1877 *work = num;
1878 return -EINVAL;
1879 }
1880
1881 req1 = (struct iscsi_kwqe_conn_offload1 *) wqes[0];
1882 req2 = (struct iscsi_kwqe_conn_offload2 *) wqes[1];
1883 if ((num - 2) < req2->num_additional_wqes) {
1884 *work = num;
1885 return -EINVAL;
1886 }
Joe Perches779bb412010-11-14 17:04:37 +00001887 *work = 2 + req2->num_additional_wqes;
Michael Chan71034ba2009-10-10 13:46:59 +00001888
1889 l5_cid = req1->iscsi_conn_id;
1890 if (l5_cid >= MAX_ISCSI_TBL_SZ)
1891 return -EINVAL;
1892
1893 memset(&kcqe, 0, sizeof(kcqe));
1894 kcqe.op_code = ISCSI_KCQE_OPCODE_OFFLOAD_CONN;
1895 kcqe.iscsi_conn_id = l5_cid;
1896 kcqe.completion_status = ISCSI_KCQE_COMPLETION_STATUS_CTX_ALLOC_FAILURE;
1897
Michael Chanfdf24082010-10-13 14:06:47 +00001898 ctx = &cp->ctx_tbl[l5_cid];
1899 if (test_bit(CTX_FL_OFFLD_START, &ctx->ctx_flags)) {
1900 kcqe.completion_status =
1901 ISCSI_KCQE_COMPLETION_STATUS_CID_BUSY;
1902 goto done;
1903 }
1904
Michael Chan71034ba2009-10-10 13:46:59 +00001905 if (atomic_inc_return(&cp->iscsi_conn) > dev->max_iscsi_conn) {
1906 atomic_dec(&cp->iscsi_conn);
Michael Chan71034ba2009-10-10 13:46:59 +00001907 goto done;
1908 }
1909 ret = cnic_alloc_bnx2x_conn_resc(dev, l5_cid);
1910 if (ret) {
1911 atomic_dec(&cp->iscsi_conn);
1912 ret = 0;
1913 goto done;
1914 }
1915 ret = cnic_setup_bnx2x_ctx(dev, wqes, num);
1916 if (ret < 0) {
1917 cnic_free_bnx2x_conn_resc(dev, l5_cid);
1918 atomic_dec(&cp->iscsi_conn);
1919 goto done;
1920 }
1921
1922 kcqe.completion_status = ISCSI_KCQE_COMPLETION_STATUS_SUCCESS;
Michael Chanceb7e1c2010-10-06 03:14:54 +00001923 kcqe.iscsi_conn_context_id = BNX2X_HW_CID(cp, cp->ctx_tbl[l5_cid].cid);
Michael Chan71034ba2009-10-10 13:46:59 +00001924
1925done:
1926 cqes[0] = (struct kcqe *) &kcqe;
1927 cnic_reply_bnx2x_kcqes(dev, CNIC_ULP_ISCSI, cqes, 1);
Michael Chan23021c22012-01-04 12:12:28 +00001928 return 0;
Michael Chan71034ba2009-10-10 13:46:59 +00001929}
1930
1931
1932static int cnic_bnx2x_iscsi_update(struct cnic_dev *dev, struct kwqe *kwqe)
1933{
1934 struct cnic_local *cp = dev->cnic_priv;
1935 struct iscsi_kwqe_conn_update *req =
1936 (struct iscsi_kwqe_conn_update *) kwqe;
1937 void *data;
1938 union l5cm_specific_data l5_data;
1939 u32 l5_cid, cid = BNX2X_SW_CID(req->context_id);
1940 int ret;
1941
1942 if (cnic_get_l5_cid(cp, cid, &l5_cid) != 0)
1943 return -EINVAL;
1944
1945 data = cnic_get_kwqe_16_data(cp, l5_cid, &l5_data);
1946 if (!data)
1947 return -ENOMEM;
1948
1949 memcpy(data, kwqe, sizeof(struct kwqe));
1950
1951 ret = cnic_submit_kwqe_16(dev, ISCSI_RAMROD_CMD_ID_UPDATE_CONN,
1952 req->context_id, ISCSI_CONNECTION_TYPE, &l5_data);
1953 return ret;
1954}
1955
Michael Chana2c9e762010-10-13 14:06:46 +00001956static int cnic_bnx2x_destroy_ramrod(struct cnic_dev *dev, u32 l5_cid)
Michael Chan71034ba2009-10-10 13:46:59 +00001957{
1958 struct cnic_local *cp = dev->cnic_priv;
Michael Chan71034ba2009-10-10 13:46:59 +00001959 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
Michael Chana2c9e762010-10-13 14:06:46 +00001960 union l5cm_specific_data l5_data;
1961 int ret;
Michael Chan68d7c1a2011-01-05 15:14:13 +00001962 u32 hw_cid;
Michael Chan71034ba2009-10-10 13:46:59 +00001963
Michael Chan71034ba2009-10-10 13:46:59 +00001964 init_waitqueue_head(&ctx->waitq);
1965 ctx->wait_cond = 0;
1966 memset(&l5_data, 0, sizeof(l5_data));
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001967 hw_cid = BNX2X_HW_CID(cp, ctx->cid);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001968
1969 ret = cnic_submit_kwqe_16(dev, RAMROD_CMD_ID_COMMON_CFC_DEL,
Michael Chan68d7c1a2011-01-05 15:14:13 +00001970 hw_cid, NONE_CONNECTION_TYPE, &l5_data);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001971
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001972 if (ret == 0) {
Michael Chandcc7e3a2011-08-26 09:45:40 +00001973 wait_event_timeout(ctx->waitq, ctx->wait_cond, CNIC_RAMROD_TMO);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001974 if (unlikely(test_bit(CTX_FL_CID_ERROR, &ctx->ctx_flags)))
1975 return -EBUSY;
1976 }
Michael Chan71034ba2009-10-10 13:46:59 +00001977
Michael Chandcc7e3a2011-08-26 09:45:40 +00001978 return 0;
Michael Chana2c9e762010-10-13 14:06:46 +00001979}
1980
1981static int cnic_bnx2x_iscsi_destroy(struct cnic_dev *dev, struct kwqe *kwqe)
1982{
1983 struct cnic_local *cp = dev->cnic_priv;
1984 struct iscsi_kwqe_conn_destroy *req =
1985 (struct iscsi_kwqe_conn_destroy *) kwqe;
1986 u32 l5_cid = req->reserved0;
1987 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
1988 int ret = 0;
1989 struct iscsi_kcqe kcqe;
1990 struct kcqe *cqes[1];
1991
1992 if (!test_bit(CTX_FL_OFFLD_START, &ctx->ctx_flags))
1993 goto skip_cfc_delete;
1994
Michael Chanfdf24082010-10-13 14:06:47 +00001995 if (!time_after(jiffies, ctx->timestamp + (2 * HZ))) {
1996 unsigned long delta = ctx->timestamp + (2 * HZ) - jiffies;
1997
1998 if (delta > (2 * HZ))
1999 delta = 0;
2000
2001 set_bit(CTX_FL_DELETE_WAIT, &ctx->ctx_flags);
2002 queue_delayed_work(cnic_wq, &cp->delete_task, delta);
2003 goto destroy_reply;
2004 }
Michael Chana2c9e762010-10-13 14:06:46 +00002005
2006 ret = cnic_bnx2x_destroy_ramrod(dev, l5_cid);
2007
Michael Chan71034ba2009-10-10 13:46:59 +00002008skip_cfc_delete:
2009 cnic_free_bnx2x_conn_resc(dev, l5_cid);
2010
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03002011 if (!ret) {
2012 atomic_dec(&cp->iscsi_conn);
2013 clear_bit(CTX_FL_OFFLD_START, &ctx->ctx_flags);
2014 }
Michael Chan71034ba2009-10-10 13:46:59 +00002015
Michael Chanfdf24082010-10-13 14:06:47 +00002016destroy_reply:
Michael Chan71034ba2009-10-10 13:46:59 +00002017 memset(&kcqe, 0, sizeof(kcqe));
2018 kcqe.op_code = ISCSI_KCQE_OPCODE_DESTROY_CONN;
2019 kcqe.iscsi_conn_id = l5_cid;
2020 kcqe.completion_status = ISCSI_KCQE_COMPLETION_STATUS_SUCCESS;
2021 kcqe.iscsi_conn_context_id = req->context_id;
2022
2023 cqes[0] = (struct kcqe *) &kcqe;
2024 cnic_reply_bnx2x_kcqes(dev, CNIC_ULP_ISCSI, cqes, 1);
2025
Michael Chan23021c22012-01-04 12:12:28 +00002026 return 0;
Michael Chan71034ba2009-10-10 13:46:59 +00002027}
2028
2029static void cnic_init_storm_conn_bufs(struct cnic_dev *dev,
2030 struct l4_kwq_connect_req1 *kwqe1,
2031 struct l4_kwq_connect_req3 *kwqe3,
2032 struct l5cm_active_conn_buffer *conn_buf)
2033{
2034 struct l5cm_conn_addr_params *conn_addr = &conn_buf->conn_addr_buf;
2035 struct l5cm_xstorm_conn_buffer *xstorm_buf =
2036 &conn_buf->xstorm_conn_buffer;
2037 struct l5cm_tstorm_conn_buffer *tstorm_buf =
2038 &conn_buf->tstorm_conn_buffer;
2039 struct regpair context_addr;
2040 u32 cid = BNX2X_SW_CID(kwqe1->cid);
2041 struct in6_addr src_ip, dst_ip;
2042 int i;
2043 u32 *addrp;
2044
2045 addrp = (u32 *) &conn_addr->local_ip_addr;
2046 for (i = 0; i < 4; i++, addrp++)
2047 src_ip.in6_u.u6_addr32[i] = cpu_to_be32(*addrp);
2048
2049 addrp = (u32 *) &conn_addr->remote_ip_addr;
2050 for (i = 0; i < 4; i++, addrp++)
2051 dst_ip.in6_u.u6_addr32[i] = cpu_to_be32(*addrp);
2052
2053 cnic_get_bnx2x_ctx(dev, cid, 0, &context_addr);
2054
2055 xstorm_buf->context_addr.hi = context_addr.hi;
2056 xstorm_buf->context_addr.lo = context_addr.lo;
2057 xstorm_buf->mss = 0xffff;
2058 xstorm_buf->rcv_buf = kwqe3->rcv_buf;
2059 if (kwqe1->tcp_flags & L4_KWQ_CONNECT_REQ1_NAGLE_ENABLE)
2060 xstorm_buf->params |= L5CM_XSTORM_CONN_BUFFER_NAGLE_ENABLE;
2061 xstorm_buf->pseudo_header_checksum =
2062 swab16(~csum_ipv6_magic(&src_ip, &dst_ip, 0, IPPROTO_TCP, 0));
2063
Michael Chan71034ba2009-10-10 13:46:59 +00002064 if (kwqe3->ka_timeout) {
2065 tstorm_buf->ka_enable = 1;
2066 tstorm_buf->ka_timeout = kwqe3->ka_timeout;
2067 tstorm_buf->ka_interval = kwqe3->ka_interval;
2068 tstorm_buf->ka_max_probe_count = kwqe3->ka_max_probe_count;
2069 }
Michael Chan71034ba2009-10-10 13:46:59 +00002070 tstorm_buf->max_rt_time = 0xffffffff;
2071}
2072
2073static void cnic_init_bnx2x_mac(struct cnic_dev *dev)
2074{
2075 struct cnic_local *cp = dev->cnic_priv;
Michael Chan68c64d22012-12-06 10:33:11 +00002076 struct bnx2x *bp = netdev_priv(dev->netdev);
Michael Chan14203982010-10-06 03:16:06 +00002077 u32 pfid = cp->pfid;
Michael Chan71034ba2009-10-10 13:46:59 +00002078 u8 *mac = dev->mac_addr;
2079
2080 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00002081 XSTORM_ISCSI_LOCAL_MAC_ADDR0_OFFSET(pfid), mac[0]);
Michael Chan71034ba2009-10-10 13:46:59 +00002082 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00002083 XSTORM_ISCSI_LOCAL_MAC_ADDR1_OFFSET(pfid), mac[1]);
Michael Chan71034ba2009-10-10 13:46:59 +00002084 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00002085 XSTORM_ISCSI_LOCAL_MAC_ADDR2_OFFSET(pfid), mac[2]);
Michael Chan71034ba2009-10-10 13:46:59 +00002086 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00002087 XSTORM_ISCSI_LOCAL_MAC_ADDR3_OFFSET(pfid), mac[3]);
Michael Chan71034ba2009-10-10 13:46:59 +00002088 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00002089 XSTORM_ISCSI_LOCAL_MAC_ADDR4_OFFSET(pfid), mac[4]);
Michael Chan71034ba2009-10-10 13:46:59 +00002090 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00002091 XSTORM_ISCSI_LOCAL_MAC_ADDR5_OFFSET(pfid), mac[5]);
Michael Chan71034ba2009-10-10 13:46:59 +00002092
2093 CNIC_WR8(dev, BAR_TSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00002094 TSTORM_ISCSI_TCP_VARS_LSB_LOCAL_MAC_ADDR_OFFSET(pfid), mac[5]);
Michael Chan71034ba2009-10-10 13:46:59 +00002095 CNIC_WR8(dev, BAR_TSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00002096 TSTORM_ISCSI_TCP_VARS_LSB_LOCAL_MAC_ADDR_OFFSET(pfid) + 1,
Michael Chan71034ba2009-10-10 13:46:59 +00002097 mac[4]);
2098 CNIC_WR8(dev, BAR_TSTRORM_INTMEM +
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03002099 TSTORM_ISCSI_TCP_VARS_MID_LOCAL_MAC_ADDR_OFFSET(pfid), mac[3]);
Michael Chan71034ba2009-10-10 13:46:59 +00002100 CNIC_WR8(dev, BAR_TSTRORM_INTMEM +
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03002101 TSTORM_ISCSI_TCP_VARS_MID_LOCAL_MAC_ADDR_OFFSET(pfid) + 1,
Michael Chan71034ba2009-10-10 13:46:59 +00002102 mac[2]);
2103 CNIC_WR8(dev, BAR_TSTRORM_INTMEM +
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03002104 TSTORM_ISCSI_TCP_VARS_MSB_LOCAL_MAC_ADDR_OFFSET(pfid), mac[1]);
Michael Chan71034ba2009-10-10 13:46:59 +00002105 CNIC_WR8(dev, BAR_TSTRORM_INTMEM +
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03002106 TSTORM_ISCSI_TCP_VARS_MSB_LOCAL_MAC_ADDR_OFFSET(pfid) + 1,
Michael Chan71034ba2009-10-10 13:46:59 +00002107 mac[0]);
2108}
2109
Michael Chan71034ba2009-10-10 13:46:59 +00002110static int cnic_bnx2x_connect(struct cnic_dev *dev, struct kwqe *wqes[],
2111 u32 num, int *work)
2112{
2113 struct cnic_local *cp = dev->cnic_priv;
Michael Chan68c64d22012-12-06 10:33:11 +00002114 struct bnx2x *bp = netdev_priv(dev->netdev);
Michael Chan71034ba2009-10-10 13:46:59 +00002115 struct l4_kwq_connect_req1 *kwqe1 =
2116 (struct l4_kwq_connect_req1 *) wqes[0];
2117 struct l4_kwq_connect_req3 *kwqe3;
2118 struct l5cm_active_conn_buffer *conn_buf;
2119 struct l5cm_conn_addr_params *conn_addr;
2120 union l5cm_specific_data l5_data;
2121 u32 l5_cid = kwqe1->pg_cid;
2122 struct cnic_sock *csk = &cp->csk_tbl[l5_cid];
2123 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
2124 int ret;
2125
2126 if (num < 2) {
2127 *work = num;
2128 return -EINVAL;
2129 }
2130
2131 if (kwqe1->conn_flags & L4_KWQ_CONNECT_REQ1_IP_V6)
2132 *work = 3;
2133 else
2134 *work = 2;
2135
2136 if (num < *work) {
2137 *work = num;
2138 return -EINVAL;
2139 }
2140
2141 if (sizeof(*conn_buf) > CNIC_KWQ16_DATA_SIZE) {
Joe Perchesddf79b22010-02-17 15:01:54 +00002142 netdev_err(dev->netdev, "conn_buf size too big\n");
Michael Chan71034ba2009-10-10 13:46:59 +00002143 return -ENOMEM;
2144 }
2145 conn_buf = cnic_get_kwqe_16_data(cp, l5_cid, &l5_data);
2146 if (!conn_buf)
2147 return -ENOMEM;
2148
2149 memset(conn_buf, 0, sizeof(*conn_buf));
2150
2151 conn_addr = &conn_buf->conn_addr_buf;
2152 conn_addr->remote_addr_0 = csk->ha[0];
2153 conn_addr->remote_addr_1 = csk->ha[1];
2154 conn_addr->remote_addr_2 = csk->ha[2];
2155 conn_addr->remote_addr_3 = csk->ha[3];
2156 conn_addr->remote_addr_4 = csk->ha[4];
2157 conn_addr->remote_addr_5 = csk->ha[5];
2158
2159 if (kwqe1->conn_flags & L4_KWQ_CONNECT_REQ1_IP_V6) {
2160 struct l4_kwq_connect_req2 *kwqe2 =
2161 (struct l4_kwq_connect_req2 *) wqes[1];
2162
2163 conn_addr->local_ip_addr.ip_addr_hi_hi = kwqe2->src_ip_v6_4;
2164 conn_addr->local_ip_addr.ip_addr_hi_lo = kwqe2->src_ip_v6_3;
2165 conn_addr->local_ip_addr.ip_addr_lo_hi = kwqe2->src_ip_v6_2;
2166
2167 conn_addr->remote_ip_addr.ip_addr_hi_hi = kwqe2->dst_ip_v6_4;
2168 conn_addr->remote_ip_addr.ip_addr_hi_lo = kwqe2->dst_ip_v6_3;
2169 conn_addr->remote_ip_addr.ip_addr_lo_hi = kwqe2->dst_ip_v6_2;
2170 conn_addr->params |= L5CM_CONN_ADDR_PARAMS_IP_VERSION;
2171 }
2172 kwqe3 = (struct l4_kwq_connect_req3 *) wqes[*work - 1];
2173
2174 conn_addr->local_ip_addr.ip_addr_lo_lo = kwqe1->src_ip;
2175 conn_addr->remote_ip_addr.ip_addr_lo_lo = kwqe1->dst_ip;
2176 conn_addr->local_tcp_port = kwqe1->src_port;
2177 conn_addr->remote_tcp_port = kwqe1->dst_port;
2178
2179 conn_addr->pmtu = kwqe3->pmtu;
2180 cnic_init_storm_conn_bufs(dev, kwqe1, kwqe3, conn_buf);
2181
2182 CNIC_WR16(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00002183 XSTORM_ISCSI_LOCAL_VLAN_OFFSET(cp->pfid), csk->vlan_id);
Michael Chan71034ba2009-10-10 13:46:59 +00002184
Michael Chan71034ba2009-10-10 13:46:59 +00002185 ret = cnic_submit_kwqe_16(dev, L5CM_RAMROD_CMD_ID_TCP_CONNECT,
2186 kwqe1->cid, ISCSI_CONNECTION_TYPE, &l5_data);
2187 if (!ret)
Michael Chan6e0dda02010-10-13 14:06:45 +00002188 set_bit(CTX_FL_OFFLD_START, &ctx->ctx_flags);
Michael Chan71034ba2009-10-10 13:46:59 +00002189
2190 return ret;
2191}
2192
2193static int cnic_bnx2x_close(struct cnic_dev *dev, struct kwqe *kwqe)
2194{
2195 struct l4_kwq_close_req *req = (struct l4_kwq_close_req *) kwqe;
2196 union l5cm_specific_data l5_data;
2197 int ret;
2198
2199 memset(&l5_data, 0, sizeof(l5_data));
2200 ret = cnic_submit_kwqe_16(dev, L5CM_RAMROD_CMD_ID_CLOSE,
2201 req->cid, ISCSI_CONNECTION_TYPE, &l5_data);
2202 return ret;
2203}
2204
2205static int cnic_bnx2x_reset(struct cnic_dev *dev, struct kwqe *kwqe)
2206{
2207 struct l4_kwq_reset_req *req = (struct l4_kwq_reset_req *) kwqe;
2208 union l5cm_specific_data l5_data;
2209 int ret;
2210
2211 memset(&l5_data, 0, sizeof(l5_data));
2212 ret = cnic_submit_kwqe_16(dev, L5CM_RAMROD_CMD_ID_ABORT,
2213 req->cid, ISCSI_CONNECTION_TYPE, &l5_data);
2214 return ret;
2215}
2216static int cnic_bnx2x_offload_pg(struct cnic_dev *dev, struct kwqe *kwqe)
2217{
2218 struct l4_kwq_offload_pg *req = (struct l4_kwq_offload_pg *) kwqe;
2219 struct l4_kcq kcqe;
2220 struct kcqe *cqes[1];
2221
2222 memset(&kcqe, 0, sizeof(kcqe));
2223 kcqe.pg_host_opaque = req->host_opaque;
2224 kcqe.pg_cid = req->host_opaque;
2225 kcqe.op_code = L4_KCQE_OPCODE_VALUE_OFFLOAD_PG;
2226 cqes[0] = (struct kcqe *) &kcqe;
2227 cnic_reply_bnx2x_kcqes(dev, CNIC_ULP_L4, cqes, 1);
2228 return 0;
2229}
2230
2231static int cnic_bnx2x_update_pg(struct cnic_dev *dev, struct kwqe *kwqe)
2232{
2233 struct l4_kwq_update_pg *req = (struct l4_kwq_update_pg *) kwqe;
2234 struct l4_kcq kcqe;
2235 struct kcqe *cqes[1];
2236
2237 memset(&kcqe, 0, sizeof(kcqe));
2238 kcqe.pg_host_opaque = req->pg_host_opaque;
2239 kcqe.pg_cid = req->pg_cid;
2240 kcqe.op_code = L4_KCQE_OPCODE_VALUE_UPDATE_PG;
2241 cqes[0] = (struct kcqe *) &kcqe;
2242 cnic_reply_bnx2x_kcqes(dev, CNIC_ULP_L4, cqes, 1);
2243 return 0;
2244}
2245
Michael Chane1928c82010-12-23 07:43:04 +00002246static int cnic_bnx2x_fcoe_stat(struct cnic_dev *dev, struct kwqe *kwqe)
2247{
2248 struct fcoe_kwqe_stat *req;
2249 struct fcoe_stat_ramrod_params *fcoe_stat;
2250 union l5cm_specific_data l5_data;
2251 struct cnic_local *cp = dev->cnic_priv;
2252 int ret;
2253 u32 cid;
2254
2255 req = (struct fcoe_kwqe_stat *) kwqe;
2256 cid = BNX2X_HW_CID(cp, cp->fcoe_init_cid);
2257
2258 fcoe_stat = cnic_get_kwqe_16_data(cp, BNX2X_FCOE_L5_CID_BASE, &l5_data);
2259 if (!fcoe_stat)
2260 return -ENOMEM;
2261
2262 memset(fcoe_stat, 0, sizeof(*fcoe_stat));
2263 memcpy(&fcoe_stat->stat_kwqe, req, sizeof(*req));
2264
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03002265 ret = cnic_submit_kwqe_16(dev, FCOE_RAMROD_CMD_ID_STAT_FUNC, cid,
Michael Chane1928c82010-12-23 07:43:04 +00002266 FCOE_CONNECTION_TYPE, &l5_data);
2267 return ret;
2268}
2269
2270static int cnic_bnx2x_fcoe_init1(struct cnic_dev *dev, struct kwqe *wqes[],
2271 u32 num, int *work)
2272{
2273 int ret;
2274 struct cnic_local *cp = dev->cnic_priv;
2275 u32 cid;
2276 struct fcoe_init_ramrod_params *fcoe_init;
2277 struct fcoe_kwqe_init1 *req1;
2278 struct fcoe_kwqe_init2 *req2;
2279 struct fcoe_kwqe_init3 *req3;
2280 union l5cm_specific_data l5_data;
2281
2282 if (num < 3) {
2283 *work = num;
2284 return -EINVAL;
2285 }
2286 req1 = (struct fcoe_kwqe_init1 *) wqes[0];
2287 req2 = (struct fcoe_kwqe_init2 *) wqes[1];
2288 req3 = (struct fcoe_kwqe_init3 *) wqes[2];
2289 if (req2->hdr.op_code != FCOE_KWQE_OPCODE_INIT2) {
2290 *work = 1;
2291 return -EINVAL;
2292 }
2293 if (req3->hdr.op_code != FCOE_KWQE_OPCODE_INIT3) {
2294 *work = 2;
2295 return -EINVAL;
2296 }
2297
2298 if (sizeof(*fcoe_init) > CNIC_KWQ16_DATA_SIZE) {
2299 netdev_err(dev->netdev, "fcoe_init size too big\n");
2300 return -ENOMEM;
2301 }
2302 fcoe_init = cnic_get_kwqe_16_data(cp, BNX2X_FCOE_L5_CID_BASE, &l5_data);
2303 if (!fcoe_init)
2304 return -ENOMEM;
2305
2306 memset(fcoe_init, 0, sizeof(*fcoe_init));
2307 memcpy(&fcoe_init->init_kwqe1, req1, sizeof(*req1));
2308 memcpy(&fcoe_init->init_kwqe2, req2, sizeof(*req2));
2309 memcpy(&fcoe_init->init_kwqe3, req3, sizeof(*req3));
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03002310 fcoe_init->eq_pbl_base.lo = cp->kcq2.dma.pgtbl_map & 0xffffffff;
2311 fcoe_init->eq_pbl_base.hi = (u64) cp->kcq2.dma.pgtbl_map >> 32;
2312 fcoe_init->eq_pbl_size = cp->kcq2.dma.num_pages;
Michael Chane1928c82010-12-23 07:43:04 +00002313
2314 fcoe_init->sb_num = cp->status_blk_num;
2315 fcoe_init->eq_prod = MAX_KCQ_IDX;
2316 fcoe_init->sb_id = HC_INDEX_FCOE_EQ_CONS;
2317 cp->kcq2.sw_prod_idx = 0;
2318
2319 cid = BNX2X_HW_CID(cp, cp->fcoe_init_cid);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03002320 ret = cnic_submit_kwqe_16(dev, FCOE_RAMROD_CMD_ID_INIT_FUNC, cid,
Michael Chane1928c82010-12-23 07:43:04 +00002321 FCOE_CONNECTION_TYPE, &l5_data);
2322 *work = 3;
2323 return ret;
2324}
2325
2326static int cnic_bnx2x_fcoe_ofld1(struct cnic_dev *dev, struct kwqe *wqes[],
2327 u32 num, int *work)
2328{
2329 int ret = 0;
2330 u32 cid = -1, l5_cid;
2331 struct cnic_local *cp = dev->cnic_priv;
2332 struct fcoe_kwqe_conn_offload1 *req1;
2333 struct fcoe_kwqe_conn_offload2 *req2;
2334 struct fcoe_kwqe_conn_offload3 *req3;
2335 struct fcoe_kwqe_conn_offload4 *req4;
2336 struct fcoe_conn_offload_ramrod_params *fcoe_offload;
2337 struct cnic_context *ctx;
2338 struct fcoe_context *fctx;
2339 struct regpair ctx_addr;
2340 union l5cm_specific_data l5_data;
2341 struct fcoe_kcqe kcqe;
2342 struct kcqe *cqes[1];
2343
2344 if (num < 4) {
2345 *work = num;
2346 return -EINVAL;
2347 }
2348 req1 = (struct fcoe_kwqe_conn_offload1 *) wqes[0];
2349 req2 = (struct fcoe_kwqe_conn_offload2 *) wqes[1];
2350 req3 = (struct fcoe_kwqe_conn_offload3 *) wqes[2];
2351 req4 = (struct fcoe_kwqe_conn_offload4 *) wqes[3];
2352
2353 *work = 4;
2354
2355 l5_cid = req1->fcoe_conn_id;
Michael Chandc219a22011-08-26 09:45:39 +00002356 if (l5_cid >= dev->max_fcoe_conn)
Michael Chane1928c82010-12-23 07:43:04 +00002357 goto err_reply;
2358
2359 l5_cid += BNX2X_FCOE_L5_CID_BASE;
2360
2361 ctx = &cp->ctx_tbl[l5_cid];
2362 if (test_bit(CTX_FL_OFFLD_START, &ctx->ctx_flags))
2363 goto err_reply;
2364
2365 ret = cnic_alloc_bnx2x_conn_resc(dev, l5_cid);
2366 if (ret) {
2367 ret = 0;
2368 goto err_reply;
2369 }
2370 cid = ctx->cid;
2371
2372 fctx = cnic_get_bnx2x_ctx(dev, cid, 1, &ctx_addr);
2373 if (fctx) {
2374 u32 hw_cid = BNX2X_HW_CID(cp, cid);
2375 u32 val;
2376
2377 val = CDU_RSRVD_VALUE_TYPE_A(hw_cid, CDU_REGION_NUMBER_XCM_AG,
2378 FCOE_CONNECTION_TYPE);
2379 fctx->xstorm_ag_context.cdu_reserved = val;
2380 val = CDU_RSRVD_VALUE_TYPE_A(hw_cid, CDU_REGION_NUMBER_UCM_AG,
2381 FCOE_CONNECTION_TYPE);
2382 fctx->ustorm_ag_context.cdu_usage = val;
2383 }
2384 if (sizeof(*fcoe_offload) > CNIC_KWQ16_DATA_SIZE) {
2385 netdev_err(dev->netdev, "fcoe_offload size too big\n");
2386 goto err_reply;
2387 }
2388 fcoe_offload = cnic_get_kwqe_16_data(cp, l5_cid, &l5_data);
2389 if (!fcoe_offload)
2390 goto err_reply;
2391
2392 memset(fcoe_offload, 0, sizeof(*fcoe_offload));
2393 memcpy(&fcoe_offload->offload_kwqe1, req1, sizeof(*req1));
2394 memcpy(&fcoe_offload->offload_kwqe2, req2, sizeof(*req2));
2395 memcpy(&fcoe_offload->offload_kwqe3, req3, sizeof(*req3));
2396 memcpy(&fcoe_offload->offload_kwqe4, req4, sizeof(*req4));
2397
2398 cid = BNX2X_HW_CID(cp, cid);
2399 ret = cnic_submit_kwqe_16(dev, FCOE_RAMROD_CMD_ID_OFFLOAD_CONN, cid,
2400 FCOE_CONNECTION_TYPE, &l5_data);
2401 if (!ret)
2402 set_bit(CTX_FL_OFFLD_START, &ctx->ctx_flags);
2403
2404 return ret;
2405
2406err_reply:
2407 if (cid != -1)
2408 cnic_free_bnx2x_conn_resc(dev, l5_cid);
2409
2410 memset(&kcqe, 0, sizeof(kcqe));
2411 kcqe.op_code = FCOE_KCQE_OPCODE_OFFLOAD_CONN;
2412 kcqe.fcoe_conn_id = req1->fcoe_conn_id;
2413 kcqe.completion_status = FCOE_KCQE_COMPLETION_STATUS_CTX_ALLOC_FAILURE;
2414
2415 cqes[0] = (struct kcqe *) &kcqe;
2416 cnic_reply_bnx2x_kcqes(dev, CNIC_ULP_FCOE, cqes, 1);
2417 return ret;
2418}
2419
2420static int cnic_bnx2x_fcoe_enable(struct cnic_dev *dev, struct kwqe *kwqe)
2421{
2422 struct fcoe_kwqe_conn_enable_disable *req;
2423 struct fcoe_conn_enable_disable_ramrod_params *fcoe_enable;
2424 union l5cm_specific_data l5_data;
2425 int ret;
2426 u32 cid, l5_cid;
2427 struct cnic_local *cp = dev->cnic_priv;
2428
2429 req = (struct fcoe_kwqe_conn_enable_disable *) kwqe;
2430 cid = req->context_id;
2431 l5_cid = req->conn_id + BNX2X_FCOE_L5_CID_BASE;
2432
2433 if (sizeof(*fcoe_enable) > CNIC_KWQ16_DATA_SIZE) {
2434 netdev_err(dev->netdev, "fcoe_enable size too big\n");
2435 return -ENOMEM;
2436 }
2437 fcoe_enable = cnic_get_kwqe_16_data(cp, l5_cid, &l5_data);
2438 if (!fcoe_enable)
2439 return -ENOMEM;
2440
2441 memset(fcoe_enable, 0, sizeof(*fcoe_enable));
2442 memcpy(&fcoe_enable->enable_disable_kwqe, req, sizeof(*req));
2443 ret = cnic_submit_kwqe_16(dev, FCOE_RAMROD_CMD_ID_ENABLE_CONN, cid,
2444 FCOE_CONNECTION_TYPE, &l5_data);
2445 return ret;
2446}
2447
2448static int cnic_bnx2x_fcoe_disable(struct cnic_dev *dev, struct kwqe *kwqe)
2449{
2450 struct fcoe_kwqe_conn_enable_disable *req;
2451 struct fcoe_conn_enable_disable_ramrod_params *fcoe_disable;
2452 union l5cm_specific_data l5_data;
2453 int ret;
2454 u32 cid, l5_cid;
2455 struct cnic_local *cp = dev->cnic_priv;
2456
2457 req = (struct fcoe_kwqe_conn_enable_disable *) kwqe;
2458 cid = req->context_id;
2459 l5_cid = req->conn_id;
Michael Chandc219a22011-08-26 09:45:39 +00002460 if (l5_cid >= dev->max_fcoe_conn)
Michael Chane1928c82010-12-23 07:43:04 +00002461 return -EINVAL;
2462
2463 l5_cid += BNX2X_FCOE_L5_CID_BASE;
2464
2465 if (sizeof(*fcoe_disable) > CNIC_KWQ16_DATA_SIZE) {
2466 netdev_err(dev->netdev, "fcoe_disable size too big\n");
2467 return -ENOMEM;
2468 }
2469 fcoe_disable = cnic_get_kwqe_16_data(cp, l5_cid, &l5_data);
2470 if (!fcoe_disable)
2471 return -ENOMEM;
2472
2473 memset(fcoe_disable, 0, sizeof(*fcoe_disable));
2474 memcpy(&fcoe_disable->enable_disable_kwqe, req, sizeof(*req));
2475 ret = cnic_submit_kwqe_16(dev, FCOE_RAMROD_CMD_ID_DISABLE_CONN, cid,
2476 FCOE_CONNECTION_TYPE, &l5_data);
2477 return ret;
2478}
2479
2480static int cnic_bnx2x_fcoe_destroy(struct cnic_dev *dev, struct kwqe *kwqe)
2481{
2482 struct fcoe_kwqe_conn_destroy *req;
2483 union l5cm_specific_data l5_data;
2484 int ret;
2485 u32 cid, l5_cid;
2486 struct cnic_local *cp = dev->cnic_priv;
2487 struct cnic_context *ctx;
2488 struct fcoe_kcqe kcqe;
2489 struct kcqe *cqes[1];
2490
2491 req = (struct fcoe_kwqe_conn_destroy *) kwqe;
2492 cid = req->context_id;
2493 l5_cid = req->conn_id;
Michael Chandc219a22011-08-26 09:45:39 +00002494 if (l5_cid >= dev->max_fcoe_conn)
Michael Chane1928c82010-12-23 07:43:04 +00002495 return -EINVAL;
2496
2497 l5_cid += BNX2X_FCOE_L5_CID_BASE;
2498
2499 ctx = &cp->ctx_tbl[l5_cid];
2500
2501 init_waitqueue_head(&ctx->waitq);
2502 ctx->wait_cond = 0;
2503
Michael Chandcc7e3a2011-08-26 09:45:40 +00002504 memset(&kcqe, 0, sizeof(kcqe));
2505 kcqe.completion_status = FCOE_KCQE_COMPLETION_STATUS_ERROR;
Michael Chane1928c82010-12-23 07:43:04 +00002506 memset(&l5_data, 0, sizeof(l5_data));
2507 ret = cnic_submit_kwqe_16(dev, FCOE_RAMROD_CMD_ID_TERMINATE_CONN, cid,
2508 FCOE_CONNECTION_TYPE, &l5_data);
2509 if (ret == 0) {
Michael Chandcc7e3a2011-08-26 09:45:40 +00002510 wait_event_timeout(ctx->waitq, ctx->wait_cond, CNIC_RAMROD_TMO);
2511 if (ctx->wait_cond)
2512 kcqe.completion_status = 0;
Michael Chane1928c82010-12-23 07:43:04 +00002513 }
2514
Michael Chandcc7e3a2011-08-26 09:45:40 +00002515 set_bit(CTX_FL_DELETE_WAIT, &ctx->ctx_flags);
2516 queue_delayed_work(cnic_wq, &cp->delete_task, msecs_to_jiffies(2000));
2517
Michael Chane1928c82010-12-23 07:43:04 +00002518 kcqe.op_code = FCOE_KCQE_OPCODE_DESTROY_CONN;
2519 kcqe.fcoe_conn_id = req->conn_id;
2520 kcqe.fcoe_conn_context_id = cid;
2521
2522 cqes[0] = (struct kcqe *) &kcqe;
2523 cnic_reply_bnx2x_kcqes(dev, CNIC_ULP_FCOE, cqes, 1);
2524 return ret;
2525}
2526
Michael Chan74e49bb2011-07-20 14:55:23 +00002527static void cnic_bnx2x_delete_wait(struct cnic_dev *dev, u32 start_cid)
2528{
2529 struct cnic_local *cp = dev->cnic_priv;
2530 u32 i;
2531
2532 for (i = start_cid; i < cp->max_cid_space; i++) {
2533 struct cnic_context *ctx = &cp->ctx_tbl[i];
2534 int j;
2535
2536 while (test_bit(CTX_FL_DELETE_WAIT, &ctx->ctx_flags))
2537 msleep(10);
2538
2539 for (j = 0; j < 5; j++) {
2540 if (!test_bit(CTX_FL_OFFLD_START, &ctx->ctx_flags))
2541 break;
2542 msleep(20);
2543 }
2544
2545 if (test_bit(CTX_FL_OFFLD_START, &ctx->ctx_flags))
2546 netdev_warn(dev->netdev, "CID %x not deleted\n",
2547 ctx->cid);
2548 }
2549}
2550
Michael Chane1928c82010-12-23 07:43:04 +00002551static int cnic_bnx2x_fcoe_fw_destroy(struct cnic_dev *dev, struct kwqe *kwqe)
2552{
2553 struct fcoe_kwqe_destroy *req;
2554 union l5cm_specific_data l5_data;
2555 struct cnic_local *cp = dev->cnic_priv;
2556 int ret;
2557 u32 cid;
2558
Michael Chan74e49bb2011-07-20 14:55:23 +00002559 cnic_bnx2x_delete_wait(dev, MAX_ISCSI_TBL_SZ);
2560
Michael Chane1928c82010-12-23 07:43:04 +00002561 req = (struct fcoe_kwqe_destroy *) kwqe;
2562 cid = BNX2X_HW_CID(cp, cp->fcoe_init_cid);
2563
2564 memset(&l5_data, 0, sizeof(l5_data));
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03002565 ret = cnic_submit_kwqe_16(dev, FCOE_RAMROD_CMD_ID_DESTROY_FUNC, cid,
Michael Chane1928c82010-12-23 07:43:04 +00002566 FCOE_CONNECTION_TYPE, &l5_data);
2567 return ret;
2568}
2569
Michael Chan23021c22012-01-04 12:12:28 +00002570static void cnic_bnx2x_kwqe_err(struct cnic_dev *dev, struct kwqe *kwqe)
2571{
2572 struct cnic_local *cp = dev->cnic_priv;
2573 struct kcqe kcqe;
2574 struct kcqe *cqes[1];
2575 u32 cid;
2576 u32 opcode = KWQE_OPCODE(kwqe->kwqe_op_flag);
2577 u32 layer_code = kwqe->kwqe_op_flag & KWQE_LAYER_MASK;
Michael Chan3238a9b2012-02-05 15:24:40 +00002578 u32 kcqe_op;
Michael Chan23021c22012-01-04 12:12:28 +00002579 int ulp_type;
2580
2581 cid = kwqe->kwqe_info0;
2582 memset(&kcqe, 0, sizeof(kcqe));
2583
Michael Chan3238a9b2012-02-05 15:24:40 +00002584 if (layer_code == KWQE_FLAGS_LAYER_MASK_L5_FCOE) {
2585 u32 l5_cid = 0;
2586
2587 ulp_type = CNIC_ULP_FCOE;
2588 if (opcode == FCOE_KWQE_OPCODE_DISABLE_CONN) {
2589 struct fcoe_kwqe_conn_enable_disable *req;
2590
2591 req = (struct fcoe_kwqe_conn_enable_disable *) kwqe;
2592 kcqe_op = FCOE_KCQE_OPCODE_DISABLE_CONN;
2593 cid = req->context_id;
2594 l5_cid = req->conn_id;
2595 } else if (opcode == FCOE_KWQE_OPCODE_DESTROY) {
2596 kcqe_op = FCOE_KCQE_OPCODE_DESTROY_FUNC;
2597 } else {
2598 return;
2599 }
2600 kcqe.kcqe_op_flag = kcqe_op << KCQE_FLAGS_OPCODE_SHIFT;
2601 kcqe.kcqe_op_flag |= KCQE_FLAGS_LAYER_MASK_L5_FCOE;
Michael Chan8ec3e702012-03-21 15:38:34 +00002602 kcqe.kcqe_info1 = FCOE_KCQE_COMPLETION_STATUS_PARITY_ERROR;
Michael Chan3238a9b2012-02-05 15:24:40 +00002603 kcqe.kcqe_info2 = cid;
2604 kcqe.kcqe_info0 = l5_cid;
2605
2606 } else if (layer_code == KWQE_FLAGS_LAYER_MASK_L5_ISCSI) {
Michael Chan23021c22012-01-04 12:12:28 +00002607 ulp_type = CNIC_ULP_ISCSI;
2608 if (opcode == ISCSI_KWQE_OPCODE_UPDATE_CONN)
2609 cid = kwqe->kwqe_info1;
2610
2611 kcqe.kcqe_op_flag = (opcode + 0x10) << KCQE_FLAGS_OPCODE_SHIFT;
2612 kcqe.kcqe_op_flag |= KCQE_FLAGS_LAYER_MASK_L5_ISCSI;
Michael Chan8ec3e702012-03-21 15:38:34 +00002613 kcqe.kcqe_info1 = ISCSI_KCQE_COMPLETION_STATUS_PARITY_ERR;
Michael Chan23021c22012-01-04 12:12:28 +00002614 kcqe.kcqe_info2 = cid;
2615 cnic_get_l5_cid(cp, BNX2X_SW_CID(cid), &kcqe.kcqe_info0);
2616
2617 } else if (layer_code == KWQE_FLAGS_LAYER_MASK_L4) {
2618 struct l4_kcq *l4kcqe = (struct l4_kcq *) &kcqe;
Michael Chan23021c22012-01-04 12:12:28 +00002619
2620 ulp_type = CNIC_ULP_L4;
2621 if (opcode == L4_KWQE_OPCODE_VALUE_CONNECT1)
2622 kcqe_op = L4_KCQE_OPCODE_VALUE_CONNECT_COMPLETE;
2623 else if (opcode == L4_KWQE_OPCODE_VALUE_RESET)
2624 kcqe_op = L4_KCQE_OPCODE_VALUE_RESET_COMP;
2625 else if (opcode == L4_KWQE_OPCODE_VALUE_CLOSE)
2626 kcqe_op = L4_KCQE_OPCODE_VALUE_CLOSE_COMP;
2627 else
2628 return;
2629
2630 kcqe.kcqe_op_flag = (kcqe_op << KCQE_FLAGS_OPCODE_SHIFT) |
2631 KCQE_FLAGS_LAYER_MASK_L4;
Michael Chan8ec3e702012-03-21 15:38:34 +00002632 l4kcqe->status = L4_KCQE_COMPLETION_STATUS_PARITY_ERROR;
Michael Chan23021c22012-01-04 12:12:28 +00002633 l4kcqe->cid = cid;
2634 cnic_get_l5_cid(cp, BNX2X_SW_CID(cid), &l4kcqe->conn_id);
2635 } else {
2636 return;
2637 }
2638
Joe Perches64699332012-06-04 12:44:16 +00002639 cqes[0] = &kcqe;
Michael Chan23021c22012-01-04 12:12:28 +00002640 cnic_reply_bnx2x_kcqes(dev, ulp_type, cqes, 1);
2641}
2642
Michael Chane1928c82010-12-23 07:43:04 +00002643static int cnic_submit_bnx2x_iscsi_kwqes(struct cnic_dev *dev,
2644 struct kwqe *wqes[], u32 num_wqes)
Michael Chan71034ba2009-10-10 13:46:59 +00002645{
2646 int i, work, ret;
2647 u32 opcode;
2648 struct kwqe *kwqe;
2649
2650 if (!test_bit(CNIC_F_CNIC_UP, &dev->flags))
2651 return -EAGAIN; /* bnx2 is down */
2652
2653 for (i = 0; i < num_wqes; ) {
2654 kwqe = wqes[i];
2655 opcode = KWQE_OPCODE(kwqe->kwqe_op_flag);
2656 work = 1;
2657
2658 switch (opcode) {
2659 case ISCSI_KWQE_OPCODE_INIT1:
2660 ret = cnic_bnx2x_iscsi_init1(dev, kwqe);
2661 break;
2662 case ISCSI_KWQE_OPCODE_INIT2:
2663 ret = cnic_bnx2x_iscsi_init2(dev, kwqe);
2664 break;
2665 case ISCSI_KWQE_OPCODE_OFFLOAD_CONN1:
2666 ret = cnic_bnx2x_iscsi_ofld1(dev, &wqes[i],
2667 num_wqes - i, &work);
2668 break;
2669 case ISCSI_KWQE_OPCODE_UPDATE_CONN:
2670 ret = cnic_bnx2x_iscsi_update(dev, kwqe);
2671 break;
2672 case ISCSI_KWQE_OPCODE_DESTROY_CONN:
2673 ret = cnic_bnx2x_iscsi_destroy(dev, kwqe);
2674 break;
2675 case L4_KWQE_OPCODE_VALUE_CONNECT1:
2676 ret = cnic_bnx2x_connect(dev, &wqes[i], num_wqes - i,
2677 &work);
2678 break;
2679 case L4_KWQE_OPCODE_VALUE_CLOSE:
2680 ret = cnic_bnx2x_close(dev, kwqe);
2681 break;
2682 case L4_KWQE_OPCODE_VALUE_RESET:
2683 ret = cnic_bnx2x_reset(dev, kwqe);
2684 break;
2685 case L4_KWQE_OPCODE_VALUE_OFFLOAD_PG:
2686 ret = cnic_bnx2x_offload_pg(dev, kwqe);
2687 break;
2688 case L4_KWQE_OPCODE_VALUE_UPDATE_PG:
2689 ret = cnic_bnx2x_update_pg(dev, kwqe);
2690 break;
2691 case L4_KWQE_OPCODE_VALUE_UPLOAD_PG:
2692 ret = 0;
2693 break;
2694 default:
2695 ret = 0;
Joe Perchesddf79b22010-02-17 15:01:54 +00002696 netdev_err(dev->netdev, "Unknown type of KWQE(0x%x)\n",
2697 opcode);
Michael Chan71034ba2009-10-10 13:46:59 +00002698 break;
2699 }
Michael Chan23021c22012-01-04 12:12:28 +00002700 if (ret < 0) {
Joe Perchesddf79b22010-02-17 15:01:54 +00002701 netdev_err(dev->netdev, "KWQE(0x%x) failed\n",
2702 opcode);
Michael Chan23021c22012-01-04 12:12:28 +00002703
2704 /* Possibly bnx2x parity error, send completion
2705 * to ulp drivers with error code to speed up
2706 * cleanup and reset recovery.
2707 */
2708 if (ret == -EIO || ret == -EAGAIN)
2709 cnic_bnx2x_kwqe_err(dev, kwqe);
2710 }
Michael Chan71034ba2009-10-10 13:46:59 +00002711 i += work;
2712 }
2713 return 0;
2714}
2715
Michael Chane1928c82010-12-23 07:43:04 +00002716static int cnic_submit_bnx2x_fcoe_kwqes(struct cnic_dev *dev,
2717 struct kwqe *wqes[], u32 num_wqes)
2718{
2719 struct cnic_local *cp = dev->cnic_priv;
2720 int i, work, ret;
2721 u32 opcode;
2722 struct kwqe *kwqe;
2723
2724 if (!test_bit(CNIC_F_CNIC_UP, &dev->flags))
2725 return -EAGAIN; /* bnx2 is down */
2726
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03002727 if (!BNX2X_CHIP_IS_E2_PLUS(cp->chip_id))
Michael Chane1928c82010-12-23 07:43:04 +00002728 return -EINVAL;
2729
2730 for (i = 0; i < num_wqes; ) {
2731 kwqe = wqes[i];
2732 opcode = KWQE_OPCODE(kwqe->kwqe_op_flag);
2733 work = 1;
2734
2735 switch (opcode) {
2736 case FCOE_KWQE_OPCODE_INIT1:
2737 ret = cnic_bnx2x_fcoe_init1(dev, &wqes[i],
2738 num_wqes - i, &work);
2739 break;
2740 case FCOE_KWQE_OPCODE_OFFLOAD_CONN1:
2741 ret = cnic_bnx2x_fcoe_ofld1(dev, &wqes[i],
2742 num_wqes - i, &work);
2743 break;
2744 case FCOE_KWQE_OPCODE_ENABLE_CONN:
2745 ret = cnic_bnx2x_fcoe_enable(dev, kwqe);
2746 break;
2747 case FCOE_KWQE_OPCODE_DISABLE_CONN:
2748 ret = cnic_bnx2x_fcoe_disable(dev, kwqe);
2749 break;
2750 case FCOE_KWQE_OPCODE_DESTROY_CONN:
2751 ret = cnic_bnx2x_fcoe_destroy(dev, kwqe);
2752 break;
2753 case FCOE_KWQE_OPCODE_DESTROY:
2754 ret = cnic_bnx2x_fcoe_fw_destroy(dev, kwqe);
2755 break;
2756 case FCOE_KWQE_OPCODE_STAT:
2757 ret = cnic_bnx2x_fcoe_stat(dev, kwqe);
2758 break;
2759 default:
2760 ret = 0;
2761 netdev_err(dev->netdev, "Unknown type of KWQE(0x%x)\n",
2762 opcode);
2763 break;
2764 }
Michael Chan3238a9b2012-02-05 15:24:40 +00002765 if (ret < 0) {
Michael Chane1928c82010-12-23 07:43:04 +00002766 netdev_err(dev->netdev, "KWQE(0x%x) failed\n",
2767 opcode);
Michael Chan3238a9b2012-02-05 15:24:40 +00002768
2769 /* Possibly bnx2x parity error, send completion
2770 * to ulp drivers with error code to speed up
2771 * cleanup and reset recovery.
2772 */
2773 if (ret == -EIO || ret == -EAGAIN)
2774 cnic_bnx2x_kwqe_err(dev, kwqe);
2775 }
Michael Chane1928c82010-12-23 07:43:04 +00002776 i += work;
2777 }
2778 return 0;
2779}
2780
2781static int cnic_submit_bnx2x_kwqes(struct cnic_dev *dev, struct kwqe *wqes[],
2782 u32 num_wqes)
2783{
2784 int ret = -EINVAL;
2785 u32 layer_code;
2786
2787 if (!test_bit(CNIC_F_CNIC_UP, &dev->flags))
2788 return -EAGAIN; /* bnx2x is down */
2789
2790 if (!num_wqes)
2791 return 0;
2792
2793 layer_code = wqes[0]->kwqe_op_flag & KWQE_LAYER_MASK;
2794 switch (layer_code) {
2795 case KWQE_FLAGS_LAYER_MASK_L5_ISCSI:
2796 case KWQE_FLAGS_LAYER_MASK_L4:
2797 case KWQE_FLAGS_LAYER_MASK_L2:
2798 ret = cnic_submit_bnx2x_iscsi_kwqes(dev, wqes, num_wqes);
2799 break;
2800
2801 case KWQE_FLAGS_LAYER_MASK_L5_FCOE:
2802 ret = cnic_submit_bnx2x_fcoe_kwqes(dev, wqes, num_wqes);
2803 break;
2804 }
2805 return ret;
2806}
2807
2808static inline u32 cnic_get_kcqe_layer_mask(u32 opflag)
2809{
2810 if (unlikely(KCQE_OPCODE(opflag) == FCOE_RAMROD_CMD_ID_TERMINATE_CONN))
2811 return KCQE_FLAGS_LAYER_MASK_L4;
2812
2813 return opflag & KCQE_FLAGS_LAYER_MASK;
2814}
2815
Michael Chana4636962009-06-08 18:14:43 -07002816static void service_kcqes(struct cnic_dev *dev, int num_cqes)
2817{
2818 struct cnic_local *cp = dev->cnic_priv;
Dmitry Kravkovc2bff632010-10-06 03:33:18 +00002819 int i, j, comp = 0;
Michael Chana4636962009-06-08 18:14:43 -07002820
2821 i = 0;
2822 j = 1;
2823 while (num_cqes) {
2824 struct cnic_ulp_ops *ulp_ops;
2825 int ulp_type;
2826 u32 kcqe_op_flag = cp->completed_kcq[i]->kcqe_op_flag;
Michael Chane1928c82010-12-23 07:43:04 +00002827 u32 kcqe_layer = cnic_get_kcqe_layer_mask(kcqe_op_flag);
Michael Chana4636962009-06-08 18:14:43 -07002828
2829 if (unlikely(kcqe_op_flag & KCQE_RAMROD_COMPLETION))
Dmitry Kravkovc2bff632010-10-06 03:33:18 +00002830 comp++;
Michael Chana4636962009-06-08 18:14:43 -07002831
2832 while (j < num_cqes) {
2833 u32 next_op = cp->completed_kcq[i + j]->kcqe_op_flag;
2834
Michael Chane1928c82010-12-23 07:43:04 +00002835 if (cnic_get_kcqe_layer_mask(next_op) != kcqe_layer)
Michael Chana4636962009-06-08 18:14:43 -07002836 break;
2837
2838 if (unlikely(next_op & KCQE_RAMROD_COMPLETION))
Dmitry Kravkovc2bff632010-10-06 03:33:18 +00002839 comp++;
Michael Chana4636962009-06-08 18:14:43 -07002840 j++;
2841 }
2842
2843 if (kcqe_layer == KCQE_FLAGS_LAYER_MASK_L5_RDMA)
2844 ulp_type = CNIC_ULP_RDMA;
2845 else if (kcqe_layer == KCQE_FLAGS_LAYER_MASK_L5_ISCSI)
2846 ulp_type = CNIC_ULP_ISCSI;
Michael Chane1928c82010-12-23 07:43:04 +00002847 else if (kcqe_layer == KCQE_FLAGS_LAYER_MASK_L5_FCOE)
2848 ulp_type = CNIC_ULP_FCOE;
Michael Chana4636962009-06-08 18:14:43 -07002849 else if (kcqe_layer == KCQE_FLAGS_LAYER_MASK_L4)
2850 ulp_type = CNIC_ULP_L4;
2851 else if (kcqe_layer == KCQE_FLAGS_LAYER_MASK_L2)
2852 goto end;
2853 else {
Joe Perchesddf79b22010-02-17 15:01:54 +00002854 netdev_err(dev->netdev, "Unknown type of KCQE(0x%x)\n",
2855 kcqe_op_flag);
Michael Chana4636962009-06-08 18:14:43 -07002856 goto end;
2857 }
2858
2859 rcu_read_lock();
2860 ulp_ops = rcu_dereference(cp->ulp_ops[ulp_type]);
2861 if (likely(ulp_ops)) {
2862 ulp_ops->indicate_kcqes(cp->ulp_handle[ulp_type],
2863 cp->completed_kcq + i, j);
2864 }
2865 rcu_read_unlock();
2866end:
2867 num_cqes -= j;
2868 i += j;
2869 j = 1;
2870 }
Dmitry Kravkovc2bff632010-10-06 03:33:18 +00002871 if (unlikely(comp))
2872 cnic_spq_completion(dev, DRV_CTL_RET_L5_SPQ_CREDIT_CMD, comp);
Michael Chana4636962009-06-08 18:14:43 -07002873}
2874
Michael Chan644b9d42010-06-24 14:58:40 +00002875static int cnic_get_kcqes(struct cnic_dev *dev, struct kcq_info *info)
Michael Chana4636962009-06-08 18:14:43 -07002876{
2877 struct cnic_local *cp = dev->cnic_priv;
Michael Chan644b9d42010-06-24 14:58:40 +00002878 u16 i, ri, hw_prod, last;
Michael Chana4636962009-06-08 18:14:43 -07002879 struct kcqe *kcqe;
2880 int kcqe_cnt = 0, last_cnt = 0;
2881
Michael Chan644b9d42010-06-24 14:58:40 +00002882 i = ri = last = info->sw_prod_idx;
Michael Chana4636962009-06-08 18:14:43 -07002883 ri &= MAX_KCQ_IDX;
Michael Chan644b9d42010-06-24 14:58:40 +00002884 hw_prod = *info->hw_prod_idx_ptr;
Michael Chan59e51372011-06-14 01:32:38 +00002885 hw_prod = info->hw_idx(hw_prod);
Michael Chana4636962009-06-08 18:14:43 -07002886
2887 while ((i != hw_prod) && (kcqe_cnt < MAX_COMPLETED_KCQE)) {
Michael Chan644b9d42010-06-24 14:58:40 +00002888 kcqe = &info->kcq[KCQ_PG(ri)][KCQ_IDX(ri)];
Michael Chana4636962009-06-08 18:14:43 -07002889 cp->completed_kcq[kcqe_cnt++] = kcqe;
Michael Chan59e51372011-06-14 01:32:38 +00002890 i = info->next_idx(i);
Michael Chana4636962009-06-08 18:14:43 -07002891 ri = i & MAX_KCQ_IDX;
2892 if (likely(!(kcqe->kcqe_op_flag & KCQE_FLAGS_NEXT))) {
2893 last_cnt = kcqe_cnt;
2894 last = i;
2895 }
2896 }
2897
Michael Chan644b9d42010-06-24 14:58:40 +00002898 info->sw_prod_idx = last;
Michael Chana4636962009-06-08 18:14:43 -07002899 return last_cnt;
2900}
2901
Michael Chan48f753d2010-05-18 11:32:53 +00002902static int cnic_l2_completion(struct cnic_local *cp)
2903{
2904 u16 hw_cons, sw_cons;
Michael Chancd801532010-10-13 14:06:49 +00002905 struct cnic_uio_dev *udev = cp->udev;
Michael Chan48f753d2010-05-18 11:32:53 +00002906 union eth_rx_cqe *cqe, *cqe_ring = (union eth_rx_cqe *)
Michael Chan2bc40782012-12-06 10:33:09 +00002907 (udev->l2_ring + (2 * BNX2_PAGE_SIZE));
Michael Chan48f753d2010-05-18 11:32:53 +00002908 u32 cmd;
2909 int comp = 0;
2910
2911 if (!test_bit(CNIC_F_BNX2X_CLASS, &cp->dev->flags))
2912 return 0;
2913
2914 hw_cons = *cp->rx_cons_ptr;
2915 if ((hw_cons & BNX2X_MAX_RCQ_DESC_CNT) == BNX2X_MAX_RCQ_DESC_CNT)
2916 hw_cons++;
2917
2918 sw_cons = cp->rx_cons;
2919 while (sw_cons != hw_cons) {
2920 u8 cqe_fp_flags;
2921
2922 cqe = &cqe_ring[sw_cons & BNX2X_MAX_RCQ_DESC_CNT];
2923 cqe_fp_flags = cqe->fast_path_cqe.type_error_flags;
2924 if (cqe_fp_flags & ETH_FAST_PATH_RX_CQE_TYPE) {
2925 cmd = le32_to_cpu(cqe->ramrod_cqe.conn_and_cmd_data);
2926 cmd >>= COMMON_RAMROD_ETH_RX_CQE_CMD_ID_SHIFT;
2927 if (cmd == RAMROD_CMD_ID_ETH_CLIENT_SETUP ||
2928 cmd == RAMROD_CMD_ID_ETH_HALT)
2929 comp++;
2930 }
2931 sw_cons = BNX2X_NEXT_RCQE(sw_cons);
2932 }
2933 return comp;
2934}
2935
Michael Chan86b53602009-10-10 13:46:57 +00002936static void cnic_chk_pkt_rings(struct cnic_local *cp)
Michael Chana4636962009-06-08 18:14:43 -07002937{
Michael Chan541a7812010-10-06 03:17:22 +00002938 u16 rx_cons, tx_cons;
Michael Chan48f753d2010-05-18 11:32:53 +00002939 int comp = 0;
Michael Chana4636962009-06-08 18:14:43 -07002940
Michael Chan541a7812010-10-06 03:17:22 +00002941 if (!test_bit(CNIC_LCL_FL_RINGS_INITED, &cp->cnic_local_flags))
Michael Chan66fee9e2010-06-24 14:58:38 +00002942 return;
2943
Michael Chan541a7812010-10-06 03:17:22 +00002944 rx_cons = *cp->rx_cons_ptr;
2945 tx_cons = *cp->tx_cons_ptr;
Michael Chana4636962009-06-08 18:14:43 -07002946 if (cp->tx_cons != tx_cons || cp->rx_cons != rx_cons) {
Michael Chan48f753d2010-05-18 11:32:53 +00002947 if (test_bit(CNIC_LCL_FL_L2_WAIT, &cp->cnic_local_flags))
2948 comp = cnic_l2_completion(cp);
2949
Michael Chana4636962009-06-08 18:14:43 -07002950 cp->tx_cons = tx_cons;
2951 cp->rx_cons = rx_cons;
Michael Chan71034ba2009-10-10 13:46:59 +00002952
Michael Chancd801532010-10-13 14:06:49 +00002953 if (cp->udev)
2954 uio_event_notify(&cp->udev->cnic_uinfo);
Michael Chana4636962009-06-08 18:14:43 -07002955 }
Michael Chan48f753d2010-05-18 11:32:53 +00002956 if (comp)
2957 clear_bit(CNIC_LCL_FL_L2_WAIT, &cp->cnic_local_flags);
Michael Chana4636962009-06-08 18:14:43 -07002958}
2959
Michael Chanb177a5d52010-06-24 14:58:41 +00002960static u32 cnic_service_bnx2_queues(struct cnic_dev *dev)
Michael Chana4636962009-06-08 18:14:43 -07002961{
Michael Chana4636962009-06-08 18:14:43 -07002962 struct cnic_local *cp = dev->cnic_priv;
Michael Chanb177a5d52010-06-24 14:58:41 +00002963 u32 status_idx = (u16) *cp->kcq1.status_idx_ptr;
Michael Chana4636962009-06-08 18:14:43 -07002964 int kcqe_cnt;
2965
Michael Chan107c3f42011-03-02 13:00:49 +00002966 /* status block index must be read before reading other fields */
2967 rmb();
Michael Chana4636962009-06-08 18:14:43 -07002968 cp->kwq_con_idx = *cp->kwq_con_idx_ptr;
2969
Michael Chan644b9d42010-06-24 14:58:40 +00002970 while ((kcqe_cnt = cnic_get_kcqes(dev, &cp->kcq1))) {
Michael Chana4636962009-06-08 18:14:43 -07002971
2972 service_kcqes(dev, kcqe_cnt);
2973
2974 /* Tell compiler that status_blk fields can change. */
2975 barrier();
Michael Chan93736652011-06-08 19:29:32 +00002976 status_idx = (u16) *cp->kcq1.status_idx_ptr;
2977 /* status block index must be read first */
2978 rmb();
2979 cp->kwq_con_idx = *cp->kwq_con_idx_ptr;
Michael Chana4636962009-06-08 18:14:43 -07002980 }
2981
Michael Chan644b9d42010-06-24 14:58:40 +00002982 CNIC_WR16(dev, cp->kcq1.io_addr, cp->kcq1.sw_prod_idx);
Michael Chana4636962009-06-08 18:14:43 -07002983
Michael Chan86b53602009-10-10 13:46:57 +00002984 cnic_chk_pkt_rings(cp);
Michael Chanb177a5d52010-06-24 14:58:41 +00002985
Michael Chana4636962009-06-08 18:14:43 -07002986 return status_idx;
2987}
2988
Michael Chanb177a5d52010-06-24 14:58:41 +00002989static int cnic_service_bnx2(void *data, void *status_blk)
2990{
2991 struct cnic_dev *dev = data;
Michael Chanb177a5d52010-06-24 14:58:41 +00002992
Michael Chaneaaa6e92010-12-23 08:38:30 +00002993 if (unlikely(!test_bit(CNIC_F_CNIC_UP, &dev->flags))) {
2994 struct status_block *sblk = status_blk;
2995
2996 return sblk->status_idx;
2997 }
Michael Chanb177a5d52010-06-24 14:58:41 +00002998
2999 return cnic_service_bnx2_queues(dev);
3000}
3001
Michael Chana4636962009-06-08 18:14:43 -07003002static void cnic_service_bnx2_msix(unsigned long data)
3003{
3004 struct cnic_dev *dev = (struct cnic_dev *) data;
3005 struct cnic_local *cp = dev->cnic_priv;
Michael Chana4636962009-06-08 18:14:43 -07003006
Michael Chanb177a5d52010-06-24 14:58:41 +00003007 cp->last_status_idx = cnic_service_bnx2_queues(dev);
Michael Chana4636962009-06-08 18:14:43 -07003008
Michael Chana4636962009-06-08 18:14:43 -07003009 CNIC_WR(dev, BNX2_PCICFG_INT_ACK_CMD, cp->int_num |
3010 BNX2_PCICFG_INT_ACK_CMD_INDEX_VALID | cp->last_status_idx);
3011}
3012
Michael Chan66fee9e2010-06-24 14:58:38 +00003013static void cnic_doirq(struct cnic_dev *dev)
3014{
3015 struct cnic_local *cp = dev->cnic_priv;
Michael Chan66fee9e2010-06-24 14:58:38 +00003016
3017 if (likely(test_bit(CNIC_F_CNIC_UP, &dev->flags))) {
Michael Chaneaaa6e92010-12-23 08:38:30 +00003018 u16 prod = cp->kcq1.sw_prod_idx & MAX_KCQ_IDX;
3019
Michael Chan66fee9e2010-06-24 14:58:38 +00003020 prefetch(cp->status_blk.gen);
Michael Chane6c28892010-06-24 14:58:39 +00003021 prefetch(&cp->kcq1.kcq[KCQ_PG(prod)][KCQ_IDX(prod)]);
Michael Chan66fee9e2010-06-24 14:58:38 +00003022
3023 tasklet_schedule(&cp->cnic_irq_task);
3024 }
3025}
3026
Michael Chana4636962009-06-08 18:14:43 -07003027static irqreturn_t cnic_irq(int irq, void *dev_instance)
3028{
3029 struct cnic_dev *dev = dev_instance;
3030 struct cnic_local *cp = dev->cnic_priv;
Michael Chana4636962009-06-08 18:14:43 -07003031
3032 if (cp->ack_int)
3033 cp->ack_int(dev);
3034
Michael Chan66fee9e2010-06-24 14:58:38 +00003035 cnic_doirq(dev);
Michael Chana4636962009-06-08 18:14:43 -07003036
3037 return IRQ_HANDLED;
3038}
3039
Michael Chan71034ba2009-10-10 13:46:59 +00003040static inline void cnic_ack_bnx2x_int(struct cnic_dev *dev, u8 id, u8 storm,
3041 u16 index, u8 op, u8 update)
3042{
3043 struct cnic_local *cp = dev->cnic_priv;
3044 u32 hc_addr = (HC_REG_COMMAND_REG + CNIC_PORT(cp) * 32 +
3045 COMMAND_REG_INT_ACK);
3046 struct igu_ack_register igu_ack;
3047
3048 igu_ack.status_block_index = index;
3049 igu_ack.sb_id_and_flags =
3050 ((id << IGU_ACK_REGISTER_STATUS_BLOCK_ID_SHIFT) |
3051 (storm << IGU_ACK_REGISTER_STORM_ID_SHIFT) |
3052 (update << IGU_ACK_REGISTER_UPDATE_INDEX_SHIFT) |
3053 (op << IGU_ACK_REGISTER_INTERRUPT_MODE_SHIFT));
3054
3055 CNIC_WR(dev, hc_addr, (*(u32 *)&igu_ack));
3056}
3057
Michael Chanee87a822010-10-13 14:06:51 +00003058static void cnic_ack_igu_sb(struct cnic_dev *dev, u8 igu_sb_id, u8 segment,
3059 u16 index, u8 op, u8 update)
3060{
3061 struct igu_regular cmd_data;
3062 u32 igu_addr = BAR_IGU_INTMEM + (IGU_CMD_INT_ACK_BASE + igu_sb_id) * 8;
3063
3064 cmd_data.sb_id_and_flags =
3065 (index << IGU_REGULAR_SB_INDEX_SHIFT) |
3066 (segment << IGU_REGULAR_SEGMENT_ACCESS_SHIFT) |
3067 (update << IGU_REGULAR_BUPDATE_SHIFT) |
3068 (op << IGU_REGULAR_ENABLE_INT_SHIFT);
3069
3070
3071 CNIC_WR(dev, igu_addr, cmd_data.sb_id_and_flags);
3072}
3073
Michael Chan71034ba2009-10-10 13:46:59 +00003074static void cnic_ack_bnx2x_msix(struct cnic_dev *dev)
3075{
3076 struct cnic_local *cp = dev->cnic_priv;
3077
Dmitry Kravkov523224a2010-10-06 03:23:26 +00003078 cnic_ack_bnx2x_int(dev, cp->bnx2x_igu_sb_id, CSTORM_ID, 0,
Michael Chan71034ba2009-10-10 13:46:59 +00003079 IGU_INT_DISABLE, 0);
3080}
3081
Michael Chanee87a822010-10-13 14:06:51 +00003082static void cnic_ack_bnx2x_e2_msix(struct cnic_dev *dev)
3083{
3084 struct cnic_local *cp = dev->cnic_priv;
3085
3086 cnic_ack_igu_sb(dev, cp->bnx2x_igu_sb_id, IGU_SEG_ACCESS_DEF, 0,
3087 IGU_INT_DISABLE, 0);
3088}
3089
Michael Chan8cc0e022012-09-08 06:01:03 +00003090static void cnic_arm_bnx2x_msix(struct cnic_dev *dev, u32 idx)
3091{
3092 struct cnic_local *cp = dev->cnic_priv;
3093
3094 cnic_ack_bnx2x_int(dev, cp->bnx2x_igu_sb_id, CSTORM_ID, idx,
3095 IGU_INT_ENABLE, 1);
3096}
3097
3098static void cnic_arm_bnx2x_e2_msix(struct cnic_dev *dev, u32 idx)
3099{
3100 struct cnic_local *cp = dev->cnic_priv;
3101
3102 cnic_ack_igu_sb(dev, cp->bnx2x_igu_sb_id, IGU_SEG_ACCESS_DEF, idx,
3103 IGU_INT_ENABLE, 1);
3104}
3105
Michael Chanb177a5d52010-06-24 14:58:41 +00003106static u32 cnic_service_bnx2x_kcq(struct cnic_dev *dev, struct kcq_info *info)
Michael Chan71034ba2009-10-10 13:46:59 +00003107{
Michael Chanb177a5d52010-06-24 14:58:41 +00003108 u32 last_status = *info->status_idx_ptr;
Michael Chan71034ba2009-10-10 13:46:59 +00003109 int kcqe_cnt;
3110
Michael Chan107c3f42011-03-02 13:00:49 +00003111 /* status block index must be read before reading the KCQ */
3112 rmb();
Michael Chanb177a5d52010-06-24 14:58:41 +00003113 while ((kcqe_cnt = cnic_get_kcqes(dev, info))) {
Michael Chan71034ba2009-10-10 13:46:59 +00003114
3115 service_kcqes(dev, kcqe_cnt);
3116
3117 /* Tell compiler that sblk fields can change. */
3118 barrier();
Michael Chan71034ba2009-10-10 13:46:59 +00003119
Michael Chanb177a5d52010-06-24 14:58:41 +00003120 last_status = *info->status_idx_ptr;
Michael Chan107c3f42011-03-02 13:00:49 +00003121 /* status block index must be read before reading the KCQ */
3122 rmb();
Michael Chan71034ba2009-10-10 13:46:59 +00003123 }
Michael Chanb177a5d52010-06-24 14:58:41 +00003124 return last_status;
3125}
3126
3127static void cnic_service_bnx2x_bh(unsigned long data)
3128{
3129 struct cnic_dev *dev = (struct cnic_dev *) data;
3130 struct cnic_local *cp = dev->cnic_priv;
Michael Chan0197b082011-03-02 13:00:50 +00003131 u32 status_idx, new_status_idx;
Michael Chanb177a5d52010-06-24 14:58:41 +00003132
3133 if (unlikely(!test_bit(CNIC_F_CNIC_UP, &dev->flags)))
3134 return;
3135
Michael Chan0197b082011-03-02 13:00:50 +00003136 while (1) {
3137 status_idx = cnic_service_bnx2x_kcq(dev, &cp->kcq1);
Michael Chan71034ba2009-10-10 13:46:59 +00003138
Michael Chan0197b082011-03-02 13:00:50 +00003139 CNIC_WR16(dev, cp->kcq1.io_addr,
3140 cp->kcq1.sw_prod_idx + MAX_KCQ_IDX);
Michael Chane21ba412010-12-23 07:43:03 +00003141
Michael Chan51a8f542012-09-08 06:01:04 +00003142 if (cp->ethdev->drv_state & CNIC_DRV_STATE_NO_FCOE) {
Michael Chan8cc0e022012-09-08 06:01:03 +00003143 cp->arm_int(dev, status_idx);
Michael Chan0197b082011-03-02 13:00:50 +00003144 break;
3145 }
3146
3147 new_status_idx = cnic_service_bnx2x_kcq(dev, &cp->kcq2);
3148
3149 if (new_status_idx != status_idx)
3150 continue;
Michael Chane21ba412010-12-23 07:43:03 +00003151
3152 CNIC_WR16(dev, cp->kcq2.io_addr, cp->kcq2.sw_prod_idx +
3153 MAX_KCQ_IDX);
3154
Michael Chanee87a822010-10-13 14:06:51 +00003155 cnic_ack_igu_sb(dev, cp->bnx2x_igu_sb_id, IGU_SEG_ACCESS_DEF,
3156 status_idx, IGU_INT_ENABLE, 1);
Michael Chan0197b082011-03-02 13:00:50 +00003157
3158 break;
Michael Chane21ba412010-12-23 07:43:03 +00003159 }
Michael Chan71034ba2009-10-10 13:46:59 +00003160}
3161
3162static int cnic_service_bnx2x(void *data, void *status_blk)
3163{
3164 struct cnic_dev *dev = data;
3165 struct cnic_local *cp = dev->cnic_priv;
Michael Chan71034ba2009-10-10 13:46:59 +00003166
Michael Chan66fee9e2010-06-24 14:58:38 +00003167 if (!(cp->ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX))
3168 cnic_doirq(dev);
Michael Chan71034ba2009-10-10 13:46:59 +00003169
Michael Chan66fee9e2010-06-24 14:58:38 +00003170 cnic_chk_pkt_rings(cp);
Michael Chan71034ba2009-10-10 13:46:59 +00003171
3172 return 0;
3173}
3174
Dmitry Kravkovfab0dc82011-03-31 17:04:22 -07003175static void cnic_ulp_stop_one(struct cnic_local *cp, int if_type)
3176{
3177 struct cnic_ulp_ops *ulp_ops;
3178
3179 if (if_type == CNIC_ULP_ISCSI)
3180 cnic_send_nlmsg(cp, ISCSI_KEVENT_IF_DOWN, NULL);
3181
3182 mutex_lock(&cnic_lock);
3183 ulp_ops = rcu_dereference_protected(cp->ulp_ops[if_type],
3184 lockdep_is_held(&cnic_lock));
3185 if (!ulp_ops) {
3186 mutex_unlock(&cnic_lock);
3187 return;
3188 }
3189 set_bit(ULP_F_CALL_PENDING, &cp->ulp_flags[if_type]);
3190 mutex_unlock(&cnic_lock);
3191
3192 if (test_and_clear_bit(ULP_F_START, &cp->ulp_flags[if_type]))
3193 ulp_ops->cnic_stop(cp->ulp_handle[if_type]);
3194
3195 clear_bit(ULP_F_CALL_PENDING, &cp->ulp_flags[if_type]);
3196}
3197
Michael Chana4636962009-06-08 18:14:43 -07003198static void cnic_ulp_stop(struct cnic_dev *dev)
3199{
3200 struct cnic_local *cp = dev->cnic_priv;
3201 int if_type;
3202
Dmitry Kravkovfab0dc82011-03-31 17:04:22 -07003203 for (if_type = 0; if_type < MAX_CNIC_ULP_TYPE; if_type++)
3204 cnic_ulp_stop_one(cp, if_type);
Michael Chana4636962009-06-08 18:14:43 -07003205}
3206
3207static void cnic_ulp_start(struct cnic_dev *dev)
3208{
3209 struct cnic_local *cp = dev->cnic_priv;
3210 int if_type;
3211
Michael Chana4636962009-06-08 18:14:43 -07003212 for (if_type = 0; if_type < MAX_CNIC_ULP_TYPE; if_type++) {
3213 struct cnic_ulp_ops *ulp_ops;
3214
Michael Chan681dbd72009-08-14 15:49:46 +00003215 mutex_lock(&cnic_lock);
Eric Dumazet13707f92011-01-26 19:28:23 +00003216 ulp_ops = rcu_dereference_protected(cp->ulp_ops[if_type],
3217 lockdep_is_held(&cnic_lock));
Michael Chan681dbd72009-08-14 15:49:46 +00003218 if (!ulp_ops || !ulp_ops->cnic_start) {
3219 mutex_unlock(&cnic_lock);
Michael Chana4636962009-06-08 18:14:43 -07003220 continue;
Michael Chan681dbd72009-08-14 15:49:46 +00003221 }
3222 set_bit(ULP_F_CALL_PENDING, &cp->ulp_flags[if_type]);
3223 mutex_unlock(&cnic_lock);
Michael Chana4636962009-06-08 18:14:43 -07003224
3225 if (!test_and_set_bit(ULP_F_START, &cp->ulp_flags[if_type]))
3226 ulp_ops->cnic_start(cp->ulp_handle[if_type]);
Michael Chan681dbd72009-08-14 15:49:46 +00003227
3228 clear_bit(ULP_F_CALL_PENDING, &cp->ulp_flags[if_type]);
Michael Chana4636962009-06-08 18:14:43 -07003229 }
Michael Chana4636962009-06-08 18:14:43 -07003230}
3231
Barak Witkowski1d187b32011-12-05 22:41:50 +00003232static int cnic_copy_ulp_stats(struct cnic_dev *dev, int ulp_type)
3233{
3234 struct cnic_local *cp = dev->cnic_priv;
3235 struct cnic_ulp_ops *ulp_ops;
3236 int rc;
3237
3238 mutex_lock(&cnic_lock);
3239 ulp_ops = cnic_ulp_tbl_prot(ulp_type);
3240 if (ulp_ops && ulp_ops->cnic_get_stats)
3241 rc = ulp_ops->cnic_get_stats(cp->ulp_handle[ulp_type]);
3242 else
3243 rc = -ENODEV;
3244 mutex_unlock(&cnic_lock);
3245 return rc;
3246}
3247
Michael Chana4636962009-06-08 18:14:43 -07003248static int cnic_ctl(void *data, struct cnic_ctl_info *info)
3249{
3250 struct cnic_dev *dev = data;
Barak Witkowski1d187b32011-12-05 22:41:50 +00003251 int ulp_type = CNIC_ULP_ISCSI;
Michael Chana4636962009-06-08 18:14:43 -07003252
3253 switch (info->cmd) {
3254 case CNIC_CTL_STOP_CMD:
3255 cnic_hold(dev);
Michael Chana4636962009-06-08 18:14:43 -07003256
3257 cnic_ulp_stop(dev);
3258 cnic_stop_hw(dev);
3259
Michael Chana4636962009-06-08 18:14:43 -07003260 cnic_put(dev);
3261 break;
3262 case CNIC_CTL_START_CMD:
3263 cnic_hold(dev);
Michael Chana4636962009-06-08 18:14:43 -07003264
3265 if (!cnic_start_hw(dev))
3266 cnic_ulp_start(dev);
3267
Michael Chana4636962009-06-08 18:14:43 -07003268 cnic_put(dev);
3269 break;
Dmitry Kravkovfab0dc82011-03-31 17:04:22 -07003270 case CNIC_CTL_STOP_ISCSI_CMD: {
3271 struct cnic_local *cp = dev->cnic_priv;
3272 set_bit(CNIC_LCL_FL_STOP_ISCSI, &cp->cnic_local_flags);
3273 queue_delayed_work(cnic_wq, &cp->delete_task, 0);
3274 break;
3275 }
Michael Chan71034ba2009-10-10 13:46:59 +00003276 case CNIC_CTL_COMPLETION_CMD: {
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03003277 struct cnic_ctl_completion *comp = &info->data.comp;
3278 u32 cid = BNX2X_SW_CID(comp->cid);
Michael Chan71034ba2009-10-10 13:46:59 +00003279 u32 l5_cid;
3280 struct cnic_local *cp = dev->cnic_priv;
3281
Michael Chana2028b232012-06-27 15:08:19 +00003282 if (!test_bit(CNIC_F_CNIC_UP, &dev->flags))
3283 break;
3284
Michael Chan71034ba2009-10-10 13:46:59 +00003285 if (cnic_get_l5_cid(cp, cid, &l5_cid) == 0) {
3286 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
3287
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03003288 if (unlikely(comp->error)) {
3289 set_bit(CTX_FL_CID_ERROR, &ctx->ctx_flags);
3290 netdev_err(dev->netdev,
3291 "CID %x CFC delete comp error %x\n",
3292 cid, comp->error);
3293 }
3294
Michael Chan71034ba2009-10-10 13:46:59 +00003295 ctx->wait_cond = 1;
3296 wake_up(&ctx->waitq);
3297 }
3298 break;
3299 }
Barak Witkowski1d187b32011-12-05 22:41:50 +00003300 case CNIC_CTL_FCOE_STATS_GET_CMD:
3301 ulp_type = CNIC_ULP_FCOE;
3302 /* fall through */
3303 case CNIC_CTL_ISCSI_STATS_GET_CMD:
3304 cnic_hold(dev);
3305 cnic_copy_ulp_stats(dev, ulp_type);
3306 cnic_put(dev);
3307 break;
3308
Michael Chana4636962009-06-08 18:14:43 -07003309 default:
3310 return -EINVAL;
3311 }
3312 return 0;
3313}
3314
3315static void cnic_ulp_init(struct cnic_dev *dev)
3316{
3317 int i;
3318 struct cnic_local *cp = dev->cnic_priv;
3319
Michael Chana4636962009-06-08 18:14:43 -07003320 for (i = 0; i < MAX_CNIC_ULP_TYPE_EXT; i++) {
3321 struct cnic_ulp_ops *ulp_ops;
3322
Michael Chan7fc1ece2009-08-14 15:49:47 +00003323 mutex_lock(&cnic_lock);
Eric Dumazet13707f92011-01-26 19:28:23 +00003324 ulp_ops = cnic_ulp_tbl_prot(i);
Michael Chan7fc1ece2009-08-14 15:49:47 +00003325 if (!ulp_ops || !ulp_ops->cnic_init) {
3326 mutex_unlock(&cnic_lock);
Michael Chana4636962009-06-08 18:14:43 -07003327 continue;
Michael Chan7fc1ece2009-08-14 15:49:47 +00003328 }
3329 ulp_get(ulp_ops);
3330 mutex_unlock(&cnic_lock);
Michael Chana4636962009-06-08 18:14:43 -07003331
3332 if (!test_and_set_bit(ULP_F_INIT, &cp->ulp_flags[i]))
3333 ulp_ops->cnic_init(dev);
3334
Michael Chan7fc1ece2009-08-14 15:49:47 +00003335 ulp_put(ulp_ops);
Michael Chana4636962009-06-08 18:14:43 -07003336 }
Michael Chana4636962009-06-08 18:14:43 -07003337}
3338
3339static void cnic_ulp_exit(struct cnic_dev *dev)
3340{
3341 int i;
3342 struct cnic_local *cp = dev->cnic_priv;
3343
Michael Chana4636962009-06-08 18:14:43 -07003344 for (i = 0; i < MAX_CNIC_ULP_TYPE_EXT; i++) {
3345 struct cnic_ulp_ops *ulp_ops;
3346
Michael Chan7fc1ece2009-08-14 15:49:47 +00003347 mutex_lock(&cnic_lock);
Eric Dumazet13707f92011-01-26 19:28:23 +00003348 ulp_ops = cnic_ulp_tbl_prot(i);
Michael Chan7fc1ece2009-08-14 15:49:47 +00003349 if (!ulp_ops || !ulp_ops->cnic_exit) {
3350 mutex_unlock(&cnic_lock);
Michael Chana4636962009-06-08 18:14:43 -07003351 continue;
Michael Chan7fc1ece2009-08-14 15:49:47 +00003352 }
3353 ulp_get(ulp_ops);
3354 mutex_unlock(&cnic_lock);
Michael Chana4636962009-06-08 18:14:43 -07003355
3356 if (test_and_clear_bit(ULP_F_INIT, &cp->ulp_flags[i]))
3357 ulp_ops->cnic_exit(dev);
3358
Michael Chan7fc1ece2009-08-14 15:49:47 +00003359 ulp_put(ulp_ops);
Michael Chana4636962009-06-08 18:14:43 -07003360 }
Michael Chana4636962009-06-08 18:14:43 -07003361}
3362
3363static int cnic_cm_offload_pg(struct cnic_sock *csk)
3364{
3365 struct cnic_dev *dev = csk->dev;
3366 struct l4_kwq_offload_pg *l4kwqe;
3367 struct kwqe *wqes[1];
3368
3369 l4kwqe = (struct l4_kwq_offload_pg *) &csk->kwqe1;
3370 memset(l4kwqe, 0, sizeof(*l4kwqe));
3371 wqes[0] = (struct kwqe *) l4kwqe;
3372
3373 l4kwqe->op_code = L4_KWQE_OPCODE_VALUE_OFFLOAD_PG;
3374 l4kwqe->flags =
3375 L4_LAYER_CODE << L4_KWQ_OFFLOAD_PG_LAYER_CODE_SHIFT;
3376 l4kwqe->l2hdr_nbytes = ETH_HLEN;
3377
3378 l4kwqe->da0 = csk->ha[0];
3379 l4kwqe->da1 = csk->ha[1];
3380 l4kwqe->da2 = csk->ha[2];
3381 l4kwqe->da3 = csk->ha[3];
3382 l4kwqe->da4 = csk->ha[4];
3383 l4kwqe->da5 = csk->ha[5];
3384
3385 l4kwqe->sa0 = dev->mac_addr[0];
3386 l4kwqe->sa1 = dev->mac_addr[1];
3387 l4kwqe->sa2 = dev->mac_addr[2];
3388 l4kwqe->sa3 = dev->mac_addr[3];
3389 l4kwqe->sa4 = dev->mac_addr[4];
3390 l4kwqe->sa5 = dev->mac_addr[5];
3391
3392 l4kwqe->etype = ETH_P_IP;
Eddie Waia9736c02010-02-24 14:42:04 +00003393 l4kwqe->ipid_start = DEF_IPID_START;
Michael Chana4636962009-06-08 18:14:43 -07003394 l4kwqe->host_opaque = csk->l5_cid;
3395
3396 if (csk->vlan_id) {
3397 l4kwqe->pg_flags |= L4_KWQ_OFFLOAD_PG_VLAN_TAGGING;
3398 l4kwqe->vlan_tag = csk->vlan_id;
3399 l4kwqe->l2hdr_nbytes += 4;
3400 }
3401
3402 return dev->submit_kwqes(dev, wqes, 1);
3403}
3404
3405static int cnic_cm_update_pg(struct cnic_sock *csk)
3406{
3407 struct cnic_dev *dev = csk->dev;
3408 struct l4_kwq_update_pg *l4kwqe;
3409 struct kwqe *wqes[1];
3410
3411 l4kwqe = (struct l4_kwq_update_pg *) &csk->kwqe1;
3412 memset(l4kwqe, 0, sizeof(*l4kwqe));
3413 wqes[0] = (struct kwqe *) l4kwqe;
3414
3415 l4kwqe->opcode = L4_KWQE_OPCODE_VALUE_UPDATE_PG;
3416 l4kwqe->flags =
3417 L4_LAYER_CODE << L4_KWQ_UPDATE_PG_LAYER_CODE_SHIFT;
3418 l4kwqe->pg_cid = csk->pg_cid;
3419
3420 l4kwqe->da0 = csk->ha[0];
3421 l4kwqe->da1 = csk->ha[1];
3422 l4kwqe->da2 = csk->ha[2];
3423 l4kwqe->da3 = csk->ha[3];
3424 l4kwqe->da4 = csk->ha[4];
3425 l4kwqe->da5 = csk->ha[5];
3426
3427 l4kwqe->pg_host_opaque = csk->l5_cid;
3428 l4kwqe->pg_valids = L4_KWQ_UPDATE_PG_VALIDS_DA;
3429
3430 return dev->submit_kwqes(dev, wqes, 1);
3431}
3432
3433static int cnic_cm_upload_pg(struct cnic_sock *csk)
3434{
3435 struct cnic_dev *dev = csk->dev;
3436 struct l4_kwq_upload *l4kwqe;
3437 struct kwqe *wqes[1];
3438
3439 l4kwqe = (struct l4_kwq_upload *) &csk->kwqe1;
3440 memset(l4kwqe, 0, sizeof(*l4kwqe));
3441 wqes[0] = (struct kwqe *) l4kwqe;
3442
3443 l4kwqe->opcode = L4_KWQE_OPCODE_VALUE_UPLOAD_PG;
3444 l4kwqe->flags =
3445 L4_LAYER_CODE << L4_KWQ_UPLOAD_LAYER_CODE_SHIFT;
3446 l4kwqe->cid = csk->pg_cid;
3447
3448 return dev->submit_kwqes(dev, wqes, 1);
3449}
3450
3451static int cnic_cm_conn_req(struct cnic_sock *csk)
3452{
3453 struct cnic_dev *dev = csk->dev;
3454 struct l4_kwq_connect_req1 *l4kwqe1;
3455 struct l4_kwq_connect_req2 *l4kwqe2;
3456 struct l4_kwq_connect_req3 *l4kwqe3;
3457 struct kwqe *wqes[3];
3458 u8 tcp_flags = 0;
3459 int num_wqes = 2;
3460
3461 l4kwqe1 = (struct l4_kwq_connect_req1 *) &csk->kwqe1;
3462 l4kwqe2 = (struct l4_kwq_connect_req2 *) &csk->kwqe2;
3463 l4kwqe3 = (struct l4_kwq_connect_req3 *) &csk->kwqe3;
3464 memset(l4kwqe1, 0, sizeof(*l4kwqe1));
3465 memset(l4kwqe2, 0, sizeof(*l4kwqe2));
3466 memset(l4kwqe3, 0, sizeof(*l4kwqe3));
3467
3468 l4kwqe3->op_code = L4_KWQE_OPCODE_VALUE_CONNECT3;
3469 l4kwqe3->flags =
3470 L4_LAYER_CODE << L4_KWQ_CONNECT_REQ3_LAYER_CODE_SHIFT;
3471 l4kwqe3->ka_timeout = csk->ka_timeout;
3472 l4kwqe3->ka_interval = csk->ka_interval;
3473 l4kwqe3->ka_max_probe_count = csk->ka_max_probe_count;
3474 l4kwqe3->tos = csk->tos;
3475 l4kwqe3->ttl = csk->ttl;
3476 l4kwqe3->snd_seq_scale = csk->snd_seq_scale;
3477 l4kwqe3->pmtu = csk->mtu;
3478 l4kwqe3->rcv_buf = csk->rcv_buf;
3479 l4kwqe3->snd_buf = csk->snd_buf;
3480 l4kwqe3->seed = csk->seed;
3481
3482 wqes[0] = (struct kwqe *) l4kwqe1;
3483 if (test_bit(SK_F_IPV6, &csk->flags)) {
3484 wqes[1] = (struct kwqe *) l4kwqe2;
3485 wqes[2] = (struct kwqe *) l4kwqe3;
3486 num_wqes = 3;
3487
3488 l4kwqe1->conn_flags = L4_KWQ_CONNECT_REQ1_IP_V6;
3489 l4kwqe2->op_code = L4_KWQE_OPCODE_VALUE_CONNECT2;
3490 l4kwqe2->flags =
3491 L4_KWQ_CONNECT_REQ2_LINKED_WITH_NEXT |
3492 L4_LAYER_CODE << L4_KWQ_CONNECT_REQ2_LAYER_CODE_SHIFT;
3493 l4kwqe2->src_ip_v6_2 = be32_to_cpu(csk->src_ip[1]);
3494 l4kwqe2->src_ip_v6_3 = be32_to_cpu(csk->src_ip[2]);
3495 l4kwqe2->src_ip_v6_4 = be32_to_cpu(csk->src_ip[3]);
3496 l4kwqe2->dst_ip_v6_2 = be32_to_cpu(csk->dst_ip[1]);
3497 l4kwqe2->dst_ip_v6_3 = be32_to_cpu(csk->dst_ip[2]);
3498 l4kwqe2->dst_ip_v6_4 = be32_to_cpu(csk->dst_ip[3]);
3499 l4kwqe3->mss = l4kwqe3->pmtu - sizeof(struct ipv6hdr) -
3500 sizeof(struct tcphdr);
3501 } else {
3502 wqes[1] = (struct kwqe *) l4kwqe3;
3503 l4kwqe3->mss = l4kwqe3->pmtu - sizeof(struct iphdr) -
3504 sizeof(struct tcphdr);
3505 }
3506
3507 l4kwqe1->op_code = L4_KWQE_OPCODE_VALUE_CONNECT1;
3508 l4kwqe1->flags =
3509 (L4_LAYER_CODE << L4_KWQ_CONNECT_REQ1_LAYER_CODE_SHIFT) |
3510 L4_KWQ_CONNECT_REQ3_LINKED_WITH_NEXT;
3511 l4kwqe1->cid = csk->cid;
3512 l4kwqe1->pg_cid = csk->pg_cid;
3513 l4kwqe1->src_ip = be32_to_cpu(csk->src_ip[0]);
3514 l4kwqe1->dst_ip = be32_to_cpu(csk->dst_ip[0]);
3515 l4kwqe1->src_port = be16_to_cpu(csk->src_port);
3516 l4kwqe1->dst_port = be16_to_cpu(csk->dst_port);
3517 if (csk->tcp_flags & SK_TCP_NO_DELAY_ACK)
3518 tcp_flags |= L4_KWQ_CONNECT_REQ1_NO_DELAY_ACK;
3519 if (csk->tcp_flags & SK_TCP_KEEP_ALIVE)
3520 tcp_flags |= L4_KWQ_CONNECT_REQ1_KEEP_ALIVE;
3521 if (csk->tcp_flags & SK_TCP_NAGLE)
3522 tcp_flags |= L4_KWQ_CONNECT_REQ1_NAGLE_ENABLE;
3523 if (csk->tcp_flags & SK_TCP_TIMESTAMP)
3524 tcp_flags |= L4_KWQ_CONNECT_REQ1_TIME_STAMP;
3525 if (csk->tcp_flags & SK_TCP_SACK)
3526 tcp_flags |= L4_KWQ_CONNECT_REQ1_SACK;
3527 if (csk->tcp_flags & SK_TCP_SEG_SCALING)
3528 tcp_flags |= L4_KWQ_CONNECT_REQ1_SEG_SCALING;
3529
3530 l4kwqe1->tcp_flags = tcp_flags;
3531
3532 return dev->submit_kwqes(dev, wqes, num_wqes);
3533}
3534
3535static int cnic_cm_close_req(struct cnic_sock *csk)
3536{
3537 struct cnic_dev *dev = csk->dev;
3538 struct l4_kwq_close_req *l4kwqe;
3539 struct kwqe *wqes[1];
3540
3541 l4kwqe = (struct l4_kwq_close_req *) &csk->kwqe2;
3542 memset(l4kwqe, 0, sizeof(*l4kwqe));
3543 wqes[0] = (struct kwqe *) l4kwqe;
3544
3545 l4kwqe->op_code = L4_KWQE_OPCODE_VALUE_CLOSE;
3546 l4kwqe->flags = L4_LAYER_CODE << L4_KWQ_CLOSE_REQ_LAYER_CODE_SHIFT;
3547 l4kwqe->cid = csk->cid;
3548
3549 return dev->submit_kwqes(dev, wqes, 1);
3550}
3551
3552static int cnic_cm_abort_req(struct cnic_sock *csk)
3553{
3554 struct cnic_dev *dev = csk->dev;
3555 struct l4_kwq_reset_req *l4kwqe;
3556 struct kwqe *wqes[1];
3557
3558 l4kwqe = (struct l4_kwq_reset_req *) &csk->kwqe2;
3559 memset(l4kwqe, 0, sizeof(*l4kwqe));
3560 wqes[0] = (struct kwqe *) l4kwqe;
3561
3562 l4kwqe->op_code = L4_KWQE_OPCODE_VALUE_RESET;
3563 l4kwqe->flags = L4_LAYER_CODE << L4_KWQ_RESET_REQ_LAYER_CODE_SHIFT;
3564 l4kwqe->cid = csk->cid;
3565
3566 return dev->submit_kwqes(dev, wqes, 1);
3567}
3568
3569static int cnic_cm_create(struct cnic_dev *dev, int ulp_type, u32 cid,
3570 u32 l5_cid, struct cnic_sock **csk, void *context)
3571{
3572 struct cnic_local *cp = dev->cnic_priv;
3573 struct cnic_sock *csk1;
3574
3575 if (l5_cid >= MAX_CM_SK_TBL_SZ)
3576 return -EINVAL;
3577
Michael Chanfdf24082010-10-13 14:06:47 +00003578 if (cp->ctx_tbl) {
3579 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
3580
3581 if (test_bit(CTX_FL_OFFLD_START, &ctx->ctx_flags))
3582 return -EAGAIN;
3583 }
3584
Michael Chana4636962009-06-08 18:14:43 -07003585 csk1 = &cp->csk_tbl[l5_cid];
3586 if (atomic_read(&csk1->ref_count))
3587 return -EAGAIN;
3588
3589 if (test_and_set_bit(SK_F_INUSE, &csk1->flags))
3590 return -EBUSY;
3591
3592 csk1->dev = dev;
3593 csk1->cid = cid;
3594 csk1->l5_cid = l5_cid;
3595 csk1->ulp_type = ulp_type;
3596 csk1->context = context;
3597
3598 csk1->ka_timeout = DEF_KA_TIMEOUT;
3599 csk1->ka_interval = DEF_KA_INTERVAL;
3600 csk1->ka_max_probe_count = DEF_KA_MAX_PROBE_COUNT;
3601 csk1->tos = DEF_TOS;
3602 csk1->ttl = DEF_TTL;
3603 csk1->snd_seq_scale = DEF_SND_SEQ_SCALE;
3604 csk1->rcv_buf = DEF_RCV_BUF;
3605 csk1->snd_buf = DEF_SND_BUF;
3606 csk1->seed = DEF_SEED;
Eddie Wai6cdcdbb2013-07-28 19:03:57 -07003607 csk1->tcp_flags = 0;
Michael Chana4636962009-06-08 18:14:43 -07003608
3609 *csk = csk1;
3610 return 0;
3611}
3612
3613static void cnic_cm_cleanup(struct cnic_sock *csk)
3614{
3615 if (csk->src_port) {
3616 struct cnic_dev *dev = csk->dev;
3617 struct cnic_local *cp = dev->cnic_priv;
3618
Michael Chan9b093362010-12-23 07:42:56 +00003619 cnic_free_id(&cp->csk_port_tbl, be16_to_cpu(csk->src_port));
Michael Chana4636962009-06-08 18:14:43 -07003620 csk->src_port = 0;
3621 }
3622}
3623
3624static void cnic_close_conn(struct cnic_sock *csk)
3625{
3626 if (test_bit(SK_F_PG_OFFLD_COMPLETE, &csk->flags)) {
3627 cnic_cm_upload_pg(csk);
3628 clear_bit(SK_F_PG_OFFLD_COMPLETE, &csk->flags);
3629 }
3630 cnic_cm_cleanup(csk);
3631}
3632
3633static int cnic_cm_destroy(struct cnic_sock *csk)
3634{
3635 if (!cnic_in_use(csk))
3636 return -EINVAL;
3637
3638 csk_hold(csk);
3639 clear_bit(SK_F_INUSE, &csk->flags);
3640 smp_mb__after_clear_bit();
3641 while (atomic_read(&csk->ref_count) != 1)
3642 msleep(1);
3643 cnic_cm_cleanup(csk);
3644
3645 csk->flags = 0;
3646 csk_put(csk);
3647 return 0;
3648}
3649
3650static inline u16 cnic_get_vlan(struct net_device *dev,
3651 struct net_device **vlan_dev)
3652{
3653 if (dev->priv_flags & IFF_802_1Q_VLAN) {
3654 *vlan_dev = vlan_dev_real_dev(dev);
3655 return vlan_dev_vlan_id(dev);
3656 }
3657 *vlan_dev = dev;
3658 return 0;
3659}
3660
3661static int cnic_get_v4_route(struct sockaddr_in *dst_addr,
3662 struct dst_entry **dst)
3663{
Randy Dunlapfaea56c2009-06-12 11:43:48 -07003664#if defined(CONFIG_INET)
Michael Chana4636962009-06-08 18:14:43 -07003665 struct rtable *rt;
3666
David S. Miller78fbfd82011-03-12 00:00:52 -05003667 rt = ip_route_output(&init_net, dst_addr->sin_addr.s_addr, 0, 0, 0);
3668 if (!IS_ERR(rt)) {
Changli Gaod8d1f302010-06-10 23:31:35 -07003669 *dst = &rt->dst;
David S. Miller78fbfd82011-03-12 00:00:52 -05003670 return 0;
3671 }
3672 return PTR_ERR(rt);
Randy Dunlapfaea56c2009-06-12 11:43:48 -07003673#else
3674 return -ENETUNREACH;
3675#endif
Michael Chana4636962009-06-08 18:14:43 -07003676}
3677
3678static int cnic_get_v6_route(struct sockaddr_in6 *dst_addr,
3679 struct dst_entry **dst)
3680{
Randy Dunlapfaea56c2009-06-12 11:43:48 -07003681#if defined(CONFIG_IPV6) || (defined(CONFIG_IPV6_MODULE) && defined(MODULE))
David S. Miller4c9483b2011-03-12 16:22:43 -05003682 struct flowi6 fl6;
Michael Chana4636962009-06-08 18:14:43 -07003683
David S. Miller4c9483b2011-03-12 16:22:43 -05003684 memset(&fl6, 0, sizeof(fl6));
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00003685 fl6.daddr = dst_addr->sin6_addr;
David S. Miller4c9483b2011-03-12 16:22:43 -05003686 if (ipv6_addr_type(&fl6.daddr) & IPV6_ADDR_LINKLOCAL)
3687 fl6.flowi6_oif = dst_addr->sin6_scope_id;
Michael Chana4636962009-06-08 18:14:43 -07003688
David S. Miller4c9483b2011-03-12 16:22:43 -05003689 *dst = ip6_route_output(&init_net, NULL, &fl6);
RongQing.Li05417432012-02-21 22:10:50 +00003690 if ((*dst)->error) {
3691 dst_release(*dst);
3692 *dst = NULL;
3693 return -ENETUNREACH;
3694 } else
Michael Chana4636962009-06-08 18:14:43 -07003695 return 0;
3696#endif
3697
3698 return -ENETUNREACH;
3699}
3700
3701static struct cnic_dev *cnic_cm_select_dev(struct sockaddr_in *dst_addr,
3702 int ulp_type)
3703{
3704 struct cnic_dev *dev = NULL;
3705 struct dst_entry *dst;
3706 struct net_device *netdev = NULL;
3707 int err = -ENETUNREACH;
3708
3709 if (dst_addr->sin_family == AF_INET)
3710 err = cnic_get_v4_route(dst_addr, &dst);
3711 else if (dst_addr->sin_family == AF_INET6) {
3712 struct sockaddr_in6 *dst_addr6 =
3713 (struct sockaddr_in6 *) dst_addr;
3714
3715 err = cnic_get_v6_route(dst_addr6, &dst);
3716 } else
3717 return NULL;
3718
3719 if (err)
3720 return NULL;
3721
3722 if (!dst->dev)
3723 goto done;
3724
3725 cnic_get_vlan(dst->dev, &netdev);
3726
3727 dev = cnic_from_netdev(netdev);
3728
3729done:
3730 dst_release(dst);
3731 if (dev)
3732 cnic_put(dev);
3733 return dev;
3734}
3735
3736static int cnic_resolve_addr(struct cnic_sock *csk, struct cnic_sockaddr *saddr)
3737{
3738 struct cnic_dev *dev = csk->dev;
3739 struct cnic_local *cp = dev->cnic_priv;
3740
3741 return cnic_send_nlmsg(cp, ISCSI_KEVENT_PATH_REQ, csk);
3742}
3743
3744static int cnic_get_route(struct cnic_sock *csk, struct cnic_sockaddr *saddr)
3745{
3746 struct cnic_dev *dev = csk->dev;
3747 struct cnic_local *cp = dev->cnic_priv;
Michael Chanc76284a2010-02-24 14:42:07 +00003748 int is_v6, rc = 0;
3749 struct dst_entry *dst = NULL;
Michael Chana4636962009-06-08 18:14:43 -07003750 struct net_device *realdev;
Michael Chan9b093362010-12-23 07:42:56 +00003751 __be16 local_port;
3752 u32 port_id;
Michael Chana4636962009-06-08 18:14:43 -07003753
3754 if (saddr->local.v6.sin6_family == AF_INET6 &&
3755 saddr->remote.v6.sin6_family == AF_INET6)
3756 is_v6 = 1;
3757 else if (saddr->local.v4.sin_family == AF_INET &&
3758 saddr->remote.v4.sin_family == AF_INET)
3759 is_v6 = 0;
3760 else
3761 return -EINVAL;
3762
3763 clear_bit(SK_F_IPV6, &csk->flags);
3764
3765 if (is_v6) {
Michael Chana4636962009-06-08 18:14:43 -07003766 set_bit(SK_F_IPV6, &csk->flags);
Michael Chanc76284a2010-02-24 14:42:07 +00003767 cnic_get_v6_route(&saddr->remote.v6, &dst);
Michael Chana4636962009-06-08 18:14:43 -07003768
3769 memcpy(&csk->dst_ip[0], &saddr->remote.v6.sin6_addr,
3770 sizeof(struct in6_addr));
3771 csk->dst_port = saddr->remote.v6.sin6_port;
3772 local_port = saddr->local.v6.sin6_port;
Michael Chana4636962009-06-08 18:14:43 -07003773
3774 } else {
Michael Chanc76284a2010-02-24 14:42:07 +00003775 cnic_get_v4_route(&saddr->remote.v4, &dst);
Michael Chana4636962009-06-08 18:14:43 -07003776
3777 csk->dst_ip[0] = saddr->remote.v4.sin_addr.s_addr;
3778 csk->dst_port = saddr->remote.v4.sin_port;
3779 local_port = saddr->local.v4.sin_port;
3780 }
3781
Michael Chanc76284a2010-02-24 14:42:07 +00003782 csk->vlan_id = 0;
3783 csk->mtu = dev->netdev->mtu;
3784 if (dst && dst->dev) {
3785 u16 vlan = cnic_get_vlan(dst->dev, &realdev);
3786 if (realdev == dev->netdev) {
3787 csk->vlan_id = vlan;
3788 csk->mtu = dst_mtu(dst);
3789 }
3790 }
Michael Chana4636962009-06-08 18:14:43 -07003791
Michael Chan9b093362010-12-23 07:42:56 +00003792 port_id = be16_to_cpu(local_port);
3793 if (port_id >= CNIC_LOCAL_PORT_MIN &&
3794 port_id < CNIC_LOCAL_PORT_MAX) {
3795 if (cnic_alloc_id(&cp->csk_port_tbl, port_id))
3796 port_id = 0;
Michael Chana4636962009-06-08 18:14:43 -07003797 } else
Michael Chan9b093362010-12-23 07:42:56 +00003798 port_id = 0;
Michael Chana4636962009-06-08 18:14:43 -07003799
Michael Chan9b093362010-12-23 07:42:56 +00003800 if (!port_id) {
3801 port_id = cnic_alloc_new_id(&cp->csk_port_tbl);
3802 if (port_id == -1) {
Michael Chana4636962009-06-08 18:14:43 -07003803 rc = -ENOMEM;
3804 goto err_out;
3805 }
Michael Chan9b093362010-12-23 07:42:56 +00003806 local_port = cpu_to_be16(port_id);
Michael Chana4636962009-06-08 18:14:43 -07003807 }
3808 csk->src_port = local_port;
3809
Michael Chana4636962009-06-08 18:14:43 -07003810err_out:
3811 dst_release(dst);
3812 return rc;
3813}
3814
3815static void cnic_init_csk_state(struct cnic_sock *csk)
3816{
3817 csk->state = 0;
3818 clear_bit(SK_F_OFFLD_SCHED, &csk->flags);
3819 clear_bit(SK_F_CLOSING, &csk->flags);
3820}
3821
3822static int cnic_cm_connect(struct cnic_sock *csk, struct cnic_sockaddr *saddr)
3823{
Dmitry Kravkovfab0dc82011-03-31 17:04:22 -07003824 struct cnic_local *cp = csk->dev->cnic_priv;
Michael Chana4636962009-06-08 18:14:43 -07003825 int err = 0;
3826
Dmitry Kravkovfab0dc82011-03-31 17:04:22 -07003827 if (cp->ethdev->drv_state & CNIC_DRV_STATE_NO_ISCSI)
3828 return -EOPNOTSUPP;
3829
Michael Chana4636962009-06-08 18:14:43 -07003830 if (!cnic_in_use(csk))
3831 return -EINVAL;
3832
3833 if (test_and_set_bit(SK_F_CONNECT_START, &csk->flags))
3834 return -EINVAL;
3835
3836 cnic_init_csk_state(csk);
3837
3838 err = cnic_get_route(csk, saddr);
3839 if (err)
3840 goto err_out;
3841
3842 err = cnic_resolve_addr(csk, saddr);
3843 if (!err)
3844 return 0;
3845
3846err_out:
3847 clear_bit(SK_F_CONNECT_START, &csk->flags);
3848 return err;
3849}
3850
3851static int cnic_cm_abort(struct cnic_sock *csk)
3852{
3853 struct cnic_local *cp = csk->dev->cnic_priv;
Michael Chan7b34a462010-06-15 08:57:03 +00003854 u32 opcode = L4_KCQE_OPCODE_VALUE_RESET_COMP;
Michael Chana4636962009-06-08 18:14:43 -07003855
3856 if (!cnic_in_use(csk))
3857 return -EINVAL;
3858
3859 if (cnic_abort_prep(csk))
3860 return cnic_cm_abort_req(csk);
3861
3862 /* Getting here means that we haven't started connect, or
Eddie Wai0d650ec2012-12-05 10:10:15 +00003863 * connect was not successful, or it has been reset by the target.
Michael Chana4636962009-06-08 18:14:43 -07003864 */
3865
Michael Chana4636962009-06-08 18:14:43 -07003866 cp->close_conn(csk, opcode);
Eddie Wai0d650ec2012-12-05 10:10:15 +00003867 if (csk->state != opcode) {
3868 /* Wait for remote reset sequence to complete */
3869 while (test_bit(SK_F_PG_OFFLD_COMPLETE, &csk->flags))
3870 msleep(1);
3871
Michael Chan7b34a462010-06-15 08:57:03 +00003872 return -EALREADY;
Eddie Wai0d650ec2012-12-05 10:10:15 +00003873 }
Michael Chana4636962009-06-08 18:14:43 -07003874
3875 return 0;
3876}
3877
3878static int cnic_cm_close(struct cnic_sock *csk)
3879{
3880 if (!cnic_in_use(csk))
3881 return -EINVAL;
3882
3883 if (cnic_close_prep(csk)) {
3884 csk->state = L4_KCQE_OPCODE_VALUE_CLOSE_COMP;
3885 return cnic_cm_close_req(csk);
Michael Chaned99daa52010-06-15 08:57:00 +00003886 } else {
Eddie Wai0d650ec2012-12-05 10:10:15 +00003887 /* Wait for remote reset sequence to complete */
3888 while (test_bit(SK_F_PG_OFFLD_COMPLETE, &csk->flags))
3889 msleep(1);
3890
Michael Chaned99daa52010-06-15 08:57:00 +00003891 return -EALREADY;
Michael Chana4636962009-06-08 18:14:43 -07003892 }
3893 return 0;
3894}
3895
3896static void cnic_cm_upcall(struct cnic_local *cp, struct cnic_sock *csk,
3897 u8 opcode)
3898{
3899 struct cnic_ulp_ops *ulp_ops;
3900 int ulp_type = csk->ulp_type;
3901
3902 rcu_read_lock();
3903 ulp_ops = rcu_dereference(cp->ulp_ops[ulp_type]);
3904 if (ulp_ops) {
3905 if (opcode == L4_KCQE_OPCODE_VALUE_CONNECT_COMPLETE)
3906 ulp_ops->cm_connect_complete(csk);
3907 else if (opcode == L4_KCQE_OPCODE_VALUE_CLOSE_COMP)
3908 ulp_ops->cm_close_complete(csk);
3909 else if (opcode == L4_KCQE_OPCODE_VALUE_RESET_RECEIVED)
3910 ulp_ops->cm_remote_abort(csk);
3911 else if (opcode == L4_KCQE_OPCODE_VALUE_RESET_COMP)
3912 ulp_ops->cm_abort_complete(csk);
3913 else if (opcode == L4_KCQE_OPCODE_VALUE_CLOSE_RECEIVED)
3914 ulp_ops->cm_remote_close(csk);
3915 }
3916 rcu_read_unlock();
3917}
3918
3919static int cnic_cm_set_pg(struct cnic_sock *csk)
3920{
3921 if (cnic_offld_prep(csk)) {
3922 if (test_bit(SK_F_PG_OFFLD_COMPLETE, &csk->flags))
3923 cnic_cm_update_pg(csk);
3924 else
3925 cnic_cm_offload_pg(csk);
3926 }
3927 return 0;
3928}
3929
3930static void cnic_cm_process_offld_pg(struct cnic_dev *dev, struct l4_kcq *kcqe)
3931{
3932 struct cnic_local *cp = dev->cnic_priv;
3933 u32 l5_cid = kcqe->pg_host_opaque;
3934 u8 opcode = kcqe->op_code;
3935 struct cnic_sock *csk = &cp->csk_tbl[l5_cid];
3936
3937 csk_hold(csk);
3938 if (!cnic_in_use(csk))
3939 goto done;
3940
3941 if (opcode == L4_KCQE_OPCODE_VALUE_UPDATE_PG) {
3942 clear_bit(SK_F_OFFLD_SCHED, &csk->flags);
3943 goto done;
3944 }
Eddie Waia9736c02010-02-24 14:42:04 +00003945 /* Possible PG kcqe status: SUCCESS, OFFLOADED_PG, or CTX_ALLOC_FAIL */
3946 if (kcqe->status == L4_KCQE_COMPLETION_STATUS_CTX_ALLOC_FAIL) {
3947 clear_bit(SK_F_OFFLD_SCHED, &csk->flags);
3948 cnic_cm_upcall(cp, csk,
3949 L4_KCQE_OPCODE_VALUE_CONNECT_COMPLETE);
3950 goto done;
3951 }
3952
Michael Chana4636962009-06-08 18:14:43 -07003953 csk->pg_cid = kcqe->pg_cid;
3954 set_bit(SK_F_PG_OFFLD_COMPLETE, &csk->flags);
3955 cnic_cm_conn_req(csk);
3956
3957done:
3958 csk_put(csk);
3959}
3960
Michael Chane1928c82010-12-23 07:43:04 +00003961static void cnic_process_fcoe_term_conn(struct cnic_dev *dev, struct kcqe *kcqe)
3962{
3963 struct cnic_local *cp = dev->cnic_priv;
3964 struct fcoe_kcqe *fc_kcqe = (struct fcoe_kcqe *) kcqe;
3965 u32 l5_cid = fc_kcqe->fcoe_conn_id + BNX2X_FCOE_L5_CID_BASE;
3966 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
3967
3968 ctx->timestamp = jiffies;
3969 ctx->wait_cond = 1;
3970 wake_up(&ctx->waitq);
3971}
3972
Michael Chana4636962009-06-08 18:14:43 -07003973static void cnic_cm_process_kcqe(struct cnic_dev *dev, struct kcqe *kcqe)
3974{
3975 struct cnic_local *cp = dev->cnic_priv;
3976 struct l4_kcq *l4kcqe = (struct l4_kcq *) kcqe;
3977 u8 opcode = l4kcqe->op_code;
3978 u32 l5_cid;
3979 struct cnic_sock *csk;
3980
Michael Chane1928c82010-12-23 07:43:04 +00003981 if (opcode == FCOE_RAMROD_CMD_ID_TERMINATE_CONN) {
3982 cnic_process_fcoe_term_conn(dev, kcqe);
3983 return;
3984 }
Michael Chana4636962009-06-08 18:14:43 -07003985 if (opcode == L4_KCQE_OPCODE_VALUE_OFFLOAD_PG ||
3986 opcode == L4_KCQE_OPCODE_VALUE_UPDATE_PG) {
3987 cnic_cm_process_offld_pg(dev, l4kcqe);
3988 return;
3989 }
3990
3991 l5_cid = l4kcqe->conn_id;
3992 if (opcode & 0x80)
3993 l5_cid = l4kcqe->cid;
3994 if (l5_cid >= MAX_CM_SK_TBL_SZ)
3995 return;
3996
3997 csk = &cp->csk_tbl[l5_cid];
3998 csk_hold(csk);
3999
4000 if (!cnic_in_use(csk)) {
4001 csk_put(csk);
4002 return;
4003 }
4004
4005 switch (opcode) {
Eddie Waia9736c02010-02-24 14:42:04 +00004006 case L5CM_RAMROD_CMD_ID_TCP_CONNECT:
4007 if (l4kcqe->status != 0) {
4008 clear_bit(SK_F_OFFLD_SCHED, &csk->flags);
4009 cnic_cm_upcall(cp, csk,
4010 L4_KCQE_OPCODE_VALUE_CONNECT_COMPLETE);
4011 }
4012 break;
Michael Chana4636962009-06-08 18:14:43 -07004013 case L4_KCQE_OPCODE_VALUE_CONNECT_COMPLETE:
4014 if (l4kcqe->status == 0)
4015 set_bit(SK_F_OFFLD_COMPLETE, &csk->flags);
Michael Chan8ec3e702012-03-21 15:38:34 +00004016 else if (l4kcqe->status ==
4017 L4_KCQE_COMPLETION_STATUS_PARITY_ERROR)
Jeffrey Huang0cb1f4b2012-02-08 17:33:56 +00004018 set_bit(SK_F_HW_ERR, &csk->flags);
Michael Chana4636962009-06-08 18:14:43 -07004019
4020 smp_mb__before_clear_bit();
4021 clear_bit(SK_F_OFFLD_SCHED, &csk->flags);
4022 cnic_cm_upcall(cp, csk, opcode);
4023 break;
4024
Eddie Wai7bc910f2012-06-27 15:08:22 +00004025 case L5CM_RAMROD_CMD_ID_CLOSE:
4026 if (l4kcqe->status != 0) {
4027 netdev_warn(dev->netdev, "RAMROD CLOSE compl with "
4028 "status 0x%x\n", l4kcqe->status);
4029 opcode = L4_KCQE_OPCODE_VALUE_CLOSE_COMP;
4030 /* Fall through */
4031 } else {
4032 break;
4033 }
Michael Chana4636962009-06-08 18:14:43 -07004034 case L4_KCQE_OPCODE_VALUE_RESET_RECEIVED:
Michael Chana4636962009-06-08 18:14:43 -07004035 case L4_KCQE_OPCODE_VALUE_CLOSE_COMP:
4036 case L4_KCQE_OPCODE_VALUE_RESET_COMP:
Michael Chan71034ba2009-10-10 13:46:59 +00004037 case L5CM_RAMROD_CMD_ID_SEARCHER_DELETE:
4038 case L5CM_RAMROD_CMD_ID_TERMINATE_OFFLOAD:
Michael Chan8ec3e702012-03-21 15:38:34 +00004039 if (l4kcqe->status == L4_KCQE_COMPLETION_STATUS_PARITY_ERROR)
Michael Chan23021c22012-01-04 12:12:28 +00004040 set_bit(SK_F_HW_ERR, &csk->flags);
4041
Michael Chana4636962009-06-08 18:14:43 -07004042 cp->close_conn(csk, opcode);
4043 break;
4044
4045 case L4_KCQE_OPCODE_VALUE_CLOSE_RECEIVED:
Michael Chan101c40c2011-06-08 19:29:33 +00004046 /* after we already sent CLOSE_REQ */
4047 if (test_bit(CNIC_F_BNX2X_CLASS, &dev->flags) &&
4048 !test_bit(SK_F_OFFLD_COMPLETE, &csk->flags) &&
4049 csk->state == L4_KCQE_OPCODE_VALUE_CLOSE_COMP)
4050 cp->close_conn(csk, L4_KCQE_OPCODE_VALUE_RESET_COMP);
4051 else
4052 cnic_cm_upcall(cp, csk, opcode);
Michael Chana4636962009-06-08 18:14:43 -07004053 break;
4054 }
4055 csk_put(csk);
4056}
4057
4058static void cnic_cm_indicate_kcqe(void *data, struct kcqe *kcqe[], u32 num)
4059{
4060 struct cnic_dev *dev = data;
4061 int i;
4062
4063 for (i = 0; i < num; i++)
4064 cnic_cm_process_kcqe(dev, kcqe[i]);
4065}
4066
4067static struct cnic_ulp_ops cm_ulp_ops = {
4068 .indicate_kcqes = cnic_cm_indicate_kcqe,
4069};
4070
4071static void cnic_cm_free_mem(struct cnic_dev *dev)
4072{
4073 struct cnic_local *cp = dev->cnic_priv;
4074
4075 kfree(cp->csk_tbl);
4076 cp->csk_tbl = NULL;
4077 cnic_free_id_tbl(&cp->csk_port_tbl);
4078}
4079
4080static int cnic_cm_alloc_mem(struct cnic_dev *dev)
4081{
4082 struct cnic_local *cp = dev->cnic_priv;
Eddie Wai11f23aa2011-06-08 19:29:34 +00004083 u32 port_id;
Michael Chana4636962009-06-08 18:14:43 -07004084
4085 cp->csk_tbl = kzalloc(sizeof(struct cnic_sock) * MAX_CM_SK_TBL_SZ,
4086 GFP_KERNEL);
4087 if (!cp->csk_tbl)
4088 return -ENOMEM;
4089
Akinobu Mitae00adf32013-05-07 16:18:15 -07004090 port_id = prandom_u32();
Eddie Wai11f23aa2011-06-08 19:29:34 +00004091 port_id %= CNIC_LOCAL_PORT_RANGE;
Michael Chana4636962009-06-08 18:14:43 -07004092 if (cnic_init_id_tbl(&cp->csk_port_tbl, CNIC_LOCAL_PORT_RANGE,
Eddie Wai11f23aa2011-06-08 19:29:34 +00004093 CNIC_LOCAL_PORT_MIN, port_id)) {
Michael Chana4636962009-06-08 18:14:43 -07004094 cnic_cm_free_mem(dev);
4095 return -ENOMEM;
4096 }
4097 return 0;
4098}
4099
4100static int cnic_ready_to_close(struct cnic_sock *csk, u32 opcode)
4101{
Michael Chan943189f2010-06-15 08:57:02 +00004102 if (test_and_clear_bit(SK_F_OFFLD_COMPLETE, &csk->flags)) {
4103 /* Unsolicited RESET_COMP or RESET_RECEIVED */
4104 opcode = L4_KCQE_OPCODE_VALUE_RESET_RECEIVED;
4105 csk->state = opcode;
Michael Chana1e621b2010-06-15 08:57:01 +00004106 }
Michael Chan943189f2010-06-15 08:57:02 +00004107
4108 /* 1. If event opcode matches the expected event in csk->state
Michael Chan101c40c2011-06-08 19:29:33 +00004109 * 2. If the expected event is CLOSE_COMP or RESET_COMP, we accept any
4110 * event
Michael Chan7b34a462010-06-15 08:57:03 +00004111 * 3. If the expected event is 0, meaning the connection was never
4112 * never established, we accept the opcode from cm_abort.
Michael Chan943189f2010-06-15 08:57:02 +00004113 */
Michael Chan7b34a462010-06-15 08:57:03 +00004114 if (opcode == csk->state || csk->state == 0 ||
Michael Chan101c40c2011-06-08 19:29:33 +00004115 csk->state == L4_KCQE_OPCODE_VALUE_CLOSE_COMP ||
4116 csk->state == L4_KCQE_OPCODE_VALUE_RESET_COMP) {
Michael Chan7b34a462010-06-15 08:57:03 +00004117 if (!test_and_set_bit(SK_F_CLOSING, &csk->flags)) {
4118 if (csk->state == 0)
4119 csk->state = opcode;
Michael Chana4636962009-06-08 18:14:43 -07004120 return 1;
Michael Chan7b34a462010-06-15 08:57:03 +00004121 }
Michael Chana4636962009-06-08 18:14:43 -07004122 }
4123 return 0;
4124}
4125
4126static void cnic_close_bnx2_conn(struct cnic_sock *csk, u32 opcode)
4127{
4128 struct cnic_dev *dev = csk->dev;
4129 struct cnic_local *cp = dev->cnic_priv;
4130
Michael Chana1e621b2010-06-15 08:57:01 +00004131 if (opcode == L4_KCQE_OPCODE_VALUE_RESET_RECEIVED) {
4132 cnic_cm_upcall(cp, csk, opcode);
4133 return;
4134 }
4135
Michael Chana4636962009-06-08 18:14:43 -07004136 clear_bit(SK_F_CONNECT_START, &csk->flags);
Eddie Wai66883e92010-02-24 14:42:05 +00004137 cnic_close_conn(csk);
Michael Chan7b34a462010-06-15 08:57:03 +00004138 csk->state = opcode;
Eddie Wai66883e92010-02-24 14:42:05 +00004139 cnic_cm_upcall(cp, csk, opcode);
Michael Chana4636962009-06-08 18:14:43 -07004140}
4141
4142static void cnic_cm_stop_bnx2_hw(struct cnic_dev *dev)
4143{
4144}
4145
4146static int cnic_cm_init_bnx2_hw(struct cnic_dev *dev)
4147{
4148 u32 seed;
4149
Akinobu Mitae00adf32013-05-07 16:18:15 -07004150 seed = prandom_u32();
Michael Chana4636962009-06-08 18:14:43 -07004151 cnic_ctx_wr(dev, 45, 0, seed);
4152 return 0;
4153}
4154
Michael Chan71034ba2009-10-10 13:46:59 +00004155static void cnic_close_bnx2x_conn(struct cnic_sock *csk, u32 opcode)
4156{
4157 struct cnic_dev *dev = csk->dev;
4158 struct cnic_local *cp = dev->cnic_priv;
4159 struct cnic_context *ctx = &cp->ctx_tbl[csk->l5_cid];
4160 union l5cm_specific_data l5_data;
4161 u32 cmd = 0;
4162 int close_complete = 0;
4163
4164 switch (opcode) {
4165 case L4_KCQE_OPCODE_VALUE_RESET_RECEIVED:
4166 case L4_KCQE_OPCODE_VALUE_CLOSE_COMP:
4167 case L4_KCQE_OPCODE_VALUE_RESET_COMP:
Michael Chan7b34a462010-06-15 08:57:03 +00004168 if (cnic_ready_to_close(csk, opcode)) {
Michael Chan23021c22012-01-04 12:12:28 +00004169 if (test_bit(SK_F_HW_ERR, &csk->flags))
4170 close_complete = 1;
4171 else if (test_bit(SK_F_PG_OFFLD_COMPLETE, &csk->flags))
Michael Chan7b34a462010-06-15 08:57:03 +00004172 cmd = L5CM_RAMROD_CMD_ID_SEARCHER_DELETE;
4173 else
4174 close_complete = 1;
4175 }
Michael Chan71034ba2009-10-10 13:46:59 +00004176 break;
4177 case L5CM_RAMROD_CMD_ID_SEARCHER_DELETE:
4178 cmd = L5CM_RAMROD_CMD_ID_TERMINATE_OFFLOAD;
4179 break;
4180 case L5CM_RAMROD_CMD_ID_TERMINATE_OFFLOAD:
4181 close_complete = 1;
4182 break;
4183 }
4184 if (cmd) {
4185 memset(&l5_data, 0, sizeof(l5_data));
4186
4187 cnic_submit_kwqe_16(dev, cmd, csk->cid, ISCSI_CONNECTION_TYPE,
4188 &l5_data);
4189 } else if (close_complete) {
4190 ctx->timestamp = jiffies;
4191 cnic_close_conn(csk);
4192 cnic_cm_upcall(cp, csk, csk->state);
4193 }
4194}
4195
4196static void cnic_cm_stop_bnx2x_hw(struct cnic_dev *dev)
4197{
Michael Chanfdf24082010-10-13 14:06:47 +00004198 struct cnic_local *cp = dev->cnic_priv;
Michael Chanfdf24082010-10-13 14:06:47 +00004199
4200 if (!cp->ctx_tbl)
4201 return;
4202
4203 if (!netif_running(dev->netdev))
4204 return;
4205
Michael Chan74e49bb2011-07-20 14:55:23 +00004206 cnic_bnx2x_delete_wait(dev, 0);
Michael Chanfdf24082010-10-13 14:06:47 +00004207
4208 cancel_delayed_work(&cp->delete_task);
4209 flush_workqueue(cnic_wq);
4210
4211 if (atomic_read(&cp->iscsi_conn) != 0)
4212 netdev_warn(dev->netdev, "%d iSCSI connections not destroyed\n",
4213 atomic_read(&cp->iscsi_conn));
Michael Chan71034ba2009-10-10 13:46:59 +00004214}
4215
4216static int cnic_cm_init_bnx2x_hw(struct cnic_dev *dev)
4217{
4218 struct cnic_local *cp = dev->cnic_priv;
Michael Chan68c64d22012-12-06 10:33:11 +00004219 struct bnx2x *bp = netdev_priv(dev->netdev);
Michael Chan14203982010-10-06 03:16:06 +00004220 u32 pfid = cp->pfid;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004221 u32 port = CNIC_PORT(cp);
Michael Chan71034ba2009-10-10 13:46:59 +00004222
4223 cnic_init_bnx2x_mac(dev);
Eddie Waib3bd2d62013-07-28 19:03:58 -07004224 cnic_bnx2x_set_tcp_options(dev, 0, 1);
Michael Chan71034ba2009-10-10 13:46:59 +00004225
4226 CNIC_WR16(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00004227 XSTORM_ISCSI_LOCAL_VLAN_OFFSET(pfid), 0);
Michael Chan71034ba2009-10-10 13:46:59 +00004228
4229 CNIC_WR(dev, BAR_XSTRORM_INTMEM +
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004230 XSTORM_TCP_GLOBAL_DEL_ACK_COUNTER_ENABLED_OFFSET(port), 1);
Michael Chan71034ba2009-10-10 13:46:59 +00004231 CNIC_WR(dev, BAR_XSTRORM_INTMEM +
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004232 XSTORM_TCP_GLOBAL_DEL_ACK_COUNTER_MAX_COUNT_OFFSET(port),
Michael Chan71034ba2009-10-10 13:46:59 +00004233 DEF_MAX_DA_COUNT);
4234
4235 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00004236 XSTORM_ISCSI_TCP_VARS_TTL_OFFSET(pfid), DEF_TTL);
Michael Chan71034ba2009-10-10 13:46:59 +00004237 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00004238 XSTORM_ISCSI_TCP_VARS_TOS_OFFSET(pfid), DEF_TOS);
Michael Chan71034ba2009-10-10 13:46:59 +00004239 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00004240 XSTORM_ISCSI_TCP_VARS_ADV_WND_SCL_OFFSET(pfid), 2);
Michael Chan71034ba2009-10-10 13:46:59 +00004241 CNIC_WR(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00004242 XSTORM_TCP_TX_SWS_TIMER_VAL_OFFSET(pfid), DEF_SWS_TIMER);
Michael Chan71034ba2009-10-10 13:46:59 +00004243
Michael Chan14203982010-10-06 03:16:06 +00004244 CNIC_WR(dev, BAR_TSTRORM_INTMEM + TSTORM_TCP_MAX_CWND_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00004245 DEF_MAX_CWND);
4246 return 0;
4247}
4248
Michael Chanfdf24082010-10-13 14:06:47 +00004249static void cnic_delete_task(struct work_struct *work)
4250{
4251 struct cnic_local *cp;
4252 struct cnic_dev *dev;
4253 u32 i;
4254 int need_resched = 0;
4255
4256 cp = container_of(work, struct cnic_local, delete_task.work);
4257 dev = cp->dev;
4258
Dmitry Kravkovfab0dc82011-03-31 17:04:22 -07004259 if (test_and_clear_bit(CNIC_LCL_FL_STOP_ISCSI, &cp->cnic_local_flags)) {
4260 struct drv_ctl_info info;
4261
Dmitry Kravkovfab0dc82011-03-31 17:04:22 -07004262 cnic_ulp_stop_one(cp, CNIC_ULP_ISCSI);
Dmitry Kravkovfab0dc82011-03-31 17:04:22 -07004263
4264 info.cmd = DRV_CTL_ISCSI_STOPPED_CMD;
4265 cp->ethdev->drv_ctl(dev->netdev, &info);
4266 }
4267
Michael Chanfdf24082010-10-13 14:06:47 +00004268 for (i = 0; i < cp->max_cid_space; i++) {
4269 struct cnic_context *ctx = &cp->ctx_tbl[i];
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03004270 int err;
Michael Chanfdf24082010-10-13 14:06:47 +00004271
4272 if (!test_bit(CTX_FL_OFFLD_START, &ctx->ctx_flags) ||
4273 !test_bit(CTX_FL_DELETE_WAIT, &ctx->ctx_flags))
4274 continue;
4275
4276 if (!time_after(jiffies, ctx->timestamp + (2 * HZ))) {
4277 need_resched = 1;
4278 continue;
4279 }
4280
4281 if (!test_and_clear_bit(CTX_FL_DELETE_WAIT, &ctx->ctx_flags))
4282 continue;
4283
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03004284 err = cnic_bnx2x_destroy_ramrod(dev, i);
Michael Chanfdf24082010-10-13 14:06:47 +00004285
4286 cnic_free_bnx2x_conn_resc(dev, i);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03004287 if (!err) {
4288 if (ctx->ulp_proto_id == CNIC_ULP_ISCSI)
4289 atomic_dec(&cp->iscsi_conn);
Michael Chanfdf24082010-10-13 14:06:47 +00004290
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03004291 clear_bit(CTX_FL_OFFLD_START, &ctx->ctx_flags);
4292 }
Michael Chanfdf24082010-10-13 14:06:47 +00004293 }
4294
4295 if (need_resched)
4296 queue_delayed_work(cnic_wq, &cp->delete_task,
4297 msecs_to_jiffies(10));
4298
4299}
4300
Michael Chana4636962009-06-08 18:14:43 -07004301static int cnic_cm_open(struct cnic_dev *dev)
4302{
4303 struct cnic_local *cp = dev->cnic_priv;
4304 int err;
4305
4306 err = cnic_cm_alloc_mem(dev);
4307 if (err)
4308 return err;
4309
4310 err = cp->start_cm(dev);
4311
4312 if (err)
4313 goto err_out;
4314
Michael Chanfdf24082010-10-13 14:06:47 +00004315 INIT_DELAYED_WORK(&cp->delete_task, cnic_delete_task);
4316
Michael Chana4636962009-06-08 18:14:43 -07004317 dev->cm_create = cnic_cm_create;
4318 dev->cm_destroy = cnic_cm_destroy;
4319 dev->cm_connect = cnic_cm_connect;
4320 dev->cm_abort = cnic_cm_abort;
4321 dev->cm_close = cnic_cm_close;
4322 dev->cm_select_dev = cnic_cm_select_dev;
4323
4324 cp->ulp_handle[CNIC_ULP_L4] = dev;
4325 rcu_assign_pointer(cp->ulp_ops[CNIC_ULP_L4], &cm_ulp_ops);
4326 return 0;
4327
4328err_out:
4329 cnic_cm_free_mem(dev);
4330 return err;
4331}
4332
4333static int cnic_cm_shutdown(struct cnic_dev *dev)
4334{
4335 struct cnic_local *cp = dev->cnic_priv;
4336 int i;
4337
Michael Chana4636962009-06-08 18:14:43 -07004338 if (!cp->csk_tbl)
4339 return 0;
4340
4341 for (i = 0; i < MAX_CM_SK_TBL_SZ; i++) {
4342 struct cnic_sock *csk = &cp->csk_tbl[i];
4343
4344 clear_bit(SK_F_INUSE, &csk->flags);
4345 cnic_cm_cleanup(csk);
4346 }
4347 cnic_cm_free_mem(dev);
4348
4349 return 0;
4350}
4351
4352static void cnic_init_context(struct cnic_dev *dev, u32 cid)
4353{
Michael Chana4636962009-06-08 18:14:43 -07004354 u32 cid_addr;
4355 int i;
4356
Michael Chana4636962009-06-08 18:14:43 -07004357 cid_addr = GET_CID_ADDR(cid);
4358
4359 for (i = 0; i < CTX_SIZE; i += 4)
4360 cnic_ctx_wr(dev, cid_addr, i, 0);
4361}
4362
4363static int cnic_setup_5709_context(struct cnic_dev *dev, int valid)
4364{
4365 struct cnic_local *cp = dev->cnic_priv;
4366 int ret = 0, i;
4367 u32 valid_bit = valid ? BNX2_CTX_HOST_PAGE_TBL_DATA0_VALID : 0;
4368
Michael Chan4ce45e02012-12-06 10:33:10 +00004369 if (BNX2_CHIP(cp) != BNX2_CHIP_5709)
Michael Chana4636962009-06-08 18:14:43 -07004370 return 0;
4371
4372 for (i = 0; i < cp->ctx_blks; i++) {
4373 int j;
4374 u32 idx = cp->ctx_arr[i].cid / cp->cids_per_blk;
4375 u32 val;
4376
Michael Chan2bc40782012-12-06 10:33:09 +00004377 memset(cp->ctx_arr[i].ctx, 0, BNX2_PAGE_SIZE);
Michael Chana4636962009-06-08 18:14:43 -07004378
4379 CNIC_WR(dev, BNX2_CTX_HOST_PAGE_TBL_DATA0,
4380 (cp->ctx_arr[i].mapping & 0xffffffff) | valid_bit);
4381 CNIC_WR(dev, BNX2_CTX_HOST_PAGE_TBL_DATA1,
4382 (u64) cp->ctx_arr[i].mapping >> 32);
4383 CNIC_WR(dev, BNX2_CTX_HOST_PAGE_TBL_CTRL, idx |
4384 BNX2_CTX_HOST_PAGE_TBL_CTRL_WRITE_REQ);
4385 for (j = 0; j < 10; j++) {
4386
4387 val = CNIC_RD(dev, BNX2_CTX_HOST_PAGE_TBL_CTRL);
4388 if (!(val & BNX2_CTX_HOST_PAGE_TBL_CTRL_WRITE_REQ))
4389 break;
4390 udelay(5);
4391 }
4392 if (val & BNX2_CTX_HOST_PAGE_TBL_CTRL_WRITE_REQ) {
4393 ret = -EBUSY;
4394 break;
4395 }
4396 }
4397 return ret;
4398}
4399
4400static void cnic_free_irq(struct cnic_dev *dev)
4401{
4402 struct cnic_local *cp = dev->cnic_priv;
4403 struct cnic_eth_dev *ethdev = cp->ethdev;
4404
4405 if (ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX) {
4406 cp->disable_int_sync(dev);
Michael Chan6e0dc642010-10-13 14:06:44 +00004407 tasklet_kill(&cp->cnic_irq_task);
Michael Chana4636962009-06-08 18:14:43 -07004408 free_irq(ethdev->irq_arr[0].vector, dev);
4409 }
4410}
4411
Michael Chan6e0dc642010-10-13 14:06:44 +00004412static int cnic_request_irq(struct cnic_dev *dev)
4413{
4414 struct cnic_local *cp = dev->cnic_priv;
4415 struct cnic_eth_dev *ethdev = cp->ethdev;
4416 int err;
4417
4418 err = request_irq(ethdev->irq_arr[0].vector, cnic_irq, 0, "cnic", dev);
4419 if (err)
4420 tasklet_disable(&cp->cnic_irq_task);
4421
4422 return err;
4423}
4424
Michael Chana4636962009-06-08 18:14:43 -07004425static int cnic_init_bnx2_irq(struct cnic_dev *dev)
4426{
4427 struct cnic_local *cp = dev->cnic_priv;
4428 struct cnic_eth_dev *ethdev = cp->ethdev;
4429
4430 if (ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX) {
4431 int err, i = 0;
4432 int sblk_num = cp->status_blk_num;
4433 u32 base = ((sblk_num - 1) * BNX2_HC_SB_CONFIG_SIZE) +
4434 BNX2_HC_SB_CONFIG_1;
4435
4436 CNIC_WR(dev, base, BNX2_HC_SB_CONFIG_1_ONE_SHOT);
4437
4438 CNIC_WR(dev, base + BNX2_HC_COMP_PROD_TRIP_OFF, (2 << 16) | 8);
4439 CNIC_WR(dev, base + BNX2_HC_COM_TICKS_OFF, (64 << 16) | 220);
4440 CNIC_WR(dev, base + BNX2_HC_CMD_TICKS_OFF, (64 << 16) | 220);
4441
Michael Chana4dde3a2010-02-24 14:42:08 +00004442 cp->last_status_idx = cp->status_blk.bnx2->status_idx;
Joe Perches164165d2009-11-19 09:30:10 +00004443 tasklet_init(&cp->cnic_irq_task, cnic_service_bnx2_msix,
Michael Chana4636962009-06-08 18:14:43 -07004444 (unsigned long) dev);
Michael Chan6e0dc642010-10-13 14:06:44 +00004445 err = cnic_request_irq(dev);
4446 if (err)
Michael Chana4636962009-06-08 18:14:43 -07004447 return err;
Michael Chan6e0dc642010-10-13 14:06:44 +00004448
Michael Chana4dde3a2010-02-24 14:42:08 +00004449 while (cp->status_blk.bnx2->status_completion_producer_index &&
Michael Chana4636962009-06-08 18:14:43 -07004450 i < 10) {
4451 CNIC_WR(dev, BNX2_HC_COALESCE_NOW,
4452 1 << (11 + sblk_num));
4453 udelay(10);
4454 i++;
4455 barrier();
4456 }
Michael Chana4dde3a2010-02-24 14:42:08 +00004457 if (cp->status_blk.bnx2->status_completion_producer_index) {
Michael Chana4636962009-06-08 18:14:43 -07004458 cnic_free_irq(dev);
4459 goto failed;
4460 }
4461
4462 } else {
Michael Chana4dde3a2010-02-24 14:42:08 +00004463 struct status_block *sblk = cp->status_blk.gen;
Michael Chana4636962009-06-08 18:14:43 -07004464 u32 hc_cmd = CNIC_RD(dev, BNX2_HC_COMMAND);
4465 int i = 0;
4466
4467 while (sblk->status_completion_producer_index && i < 10) {
4468 CNIC_WR(dev, BNX2_HC_COMMAND,
4469 hc_cmd | BNX2_HC_COMMAND_COAL_NOW_WO_INT);
4470 udelay(10);
4471 i++;
4472 barrier();
4473 }
4474 if (sblk->status_completion_producer_index)
4475 goto failed;
4476
4477 }
4478 return 0;
4479
4480failed:
Joe Perchesddf79b22010-02-17 15:01:54 +00004481 netdev_err(dev->netdev, "KCQ index not resetting to 0\n");
Michael Chana4636962009-06-08 18:14:43 -07004482 return -EBUSY;
4483}
4484
4485static void cnic_enable_bnx2_int(struct cnic_dev *dev)
4486{
4487 struct cnic_local *cp = dev->cnic_priv;
4488 struct cnic_eth_dev *ethdev = cp->ethdev;
4489
4490 if (!(ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX))
4491 return;
4492
4493 CNIC_WR(dev, BNX2_PCICFG_INT_ACK_CMD, cp->int_num |
4494 BNX2_PCICFG_INT_ACK_CMD_INDEX_VALID | cp->last_status_idx);
4495}
4496
4497static void cnic_disable_bnx2_int_sync(struct cnic_dev *dev)
4498{
4499 struct cnic_local *cp = dev->cnic_priv;
4500 struct cnic_eth_dev *ethdev = cp->ethdev;
4501
4502 if (!(ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX))
4503 return;
4504
4505 CNIC_WR(dev, BNX2_PCICFG_INT_ACK_CMD, cp->int_num |
4506 BNX2_PCICFG_INT_ACK_CMD_MASK_INT);
4507 CNIC_RD(dev, BNX2_PCICFG_INT_ACK_CMD);
4508 synchronize_irq(ethdev->irq_arr[0].vector);
4509}
4510
4511static void cnic_init_bnx2_tx_ring(struct cnic_dev *dev)
4512{
4513 struct cnic_local *cp = dev->cnic_priv;
4514 struct cnic_eth_dev *ethdev = cp->ethdev;
Michael Chancd801532010-10-13 14:06:49 +00004515 struct cnic_uio_dev *udev = cp->udev;
Michael Chana4636962009-06-08 18:14:43 -07004516 u32 cid_addr, tx_cid, sb_id;
4517 u32 val, offset0, offset1, offset2, offset3;
4518 int i;
Michael Chan2bc40782012-12-06 10:33:09 +00004519 struct bnx2_tx_bd *txbd;
Michael Chancd801532010-10-13 14:06:49 +00004520 dma_addr_t buf_map, ring_map = udev->l2_ring_map;
Michael Chana4dde3a2010-02-24 14:42:08 +00004521 struct status_block *s_blk = cp->status_blk.gen;
Michael Chana4636962009-06-08 18:14:43 -07004522
4523 sb_id = cp->status_blk_num;
4524 tx_cid = 20;
Michael Chana4636962009-06-08 18:14:43 -07004525 cp->tx_cons_ptr = &s_blk->status_tx_quick_consumer_index2;
4526 if (ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX) {
Michael Chana4dde3a2010-02-24 14:42:08 +00004527 struct status_block_msix *sblk = cp->status_blk.bnx2;
Michael Chana4636962009-06-08 18:14:43 -07004528
4529 tx_cid = TX_TSS_CID + sb_id - 1;
Michael Chana4636962009-06-08 18:14:43 -07004530 CNIC_WR(dev, BNX2_TSCH_TSS_CFG, (sb_id << 24) |
4531 (TX_TSS_CID << 7));
4532 cp->tx_cons_ptr = &sblk->status_tx_quick_consumer_index;
4533 }
4534 cp->tx_cons = *cp->tx_cons_ptr;
4535
4536 cid_addr = GET_CID_ADDR(tx_cid);
Michael Chan4ce45e02012-12-06 10:33:10 +00004537 if (BNX2_CHIP(cp) == BNX2_CHIP_5709) {
Michael Chana4636962009-06-08 18:14:43 -07004538 u32 cid_addr2 = GET_CID_ADDR(tx_cid + 4) + 0x40;
4539
4540 for (i = 0; i < PHY_CTX_SIZE; i += 4)
4541 cnic_ctx_wr(dev, cid_addr2, i, 0);
4542
4543 offset0 = BNX2_L2CTX_TYPE_XI;
4544 offset1 = BNX2_L2CTX_CMD_TYPE_XI;
4545 offset2 = BNX2_L2CTX_TBDR_BHADDR_HI_XI;
4546 offset3 = BNX2_L2CTX_TBDR_BHADDR_LO_XI;
4547 } else {
Michael Chanb58ffb42010-05-27 16:31:41 -07004548 cnic_init_context(dev, tx_cid);
4549 cnic_init_context(dev, tx_cid + 1);
4550
Michael Chana4636962009-06-08 18:14:43 -07004551 offset0 = BNX2_L2CTX_TYPE;
4552 offset1 = BNX2_L2CTX_CMD_TYPE;
4553 offset2 = BNX2_L2CTX_TBDR_BHADDR_HI;
4554 offset3 = BNX2_L2CTX_TBDR_BHADDR_LO;
4555 }
4556 val = BNX2_L2CTX_TYPE_TYPE_L2 | BNX2_L2CTX_TYPE_SIZE_L2;
4557 cnic_ctx_wr(dev, cid_addr, offset0, val);
4558
4559 val = BNX2_L2CTX_CMD_TYPE_TYPE_L2 | (8 << 16);
4560 cnic_ctx_wr(dev, cid_addr, offset1, val);
4561
Joe Perches43d620c2011-06-16 19:08:06 +00004562 txbd = udev->l2_ring;
Michael Chana4636962009-06-08 18:14:43 -07004563
Michael Chancd801532010-10-13 14:06:49 +00004564 buf_map = udev->l2_buf_map;
Michael Chan2bc40782012-12-06 10:33:09 +00004565 for (i = 0; i < BNX2_MAX_TX_DESC_CNT; i++, txbd++) {
Michael Chana4636962009-06-08 18:14:43 -07004566 txbd->tx_bd_haddr_hi = (u64) buf_map >> 32;
4567 txbd->tx_bd_haddr_lo = (u64) buf_map & 0xffffffff;
4568 }
Michael Chancd801532010-10-13 14:06:49 +00004569 val = (u64) ring_map >> 32;
Michael Chana4636962009-06-08 18:14:43 -07004570 cnic_ctx_wr(dev, cid_addr, offset2, val);
4571 txbd->tx_bd_haddr_hi = val;
4572
Michael Chancd801532010-10-13 14:06:49 +00004573 val = (u64) ring_map & 0xffffffff;
Michael Chana4636962009-06-08 18:14:43 -07004574 cnic_ctx_wr(dev, cid_addr, offset3, val);
4575 txbd->tx_bd_haddr_lo = val;
4576}
4577
4578static void cnic_init_bnx2_rx_ring(struct cnic_dev *dev)
4579{
4580 struct cnic_local *cp = dev->cnic_priv;
4581 struct cnic_eth_dev *ethdev = cp->ethdev;
Michael Chancd801532010-10-13 14:06:49 +00004582 struct cnic_uio_dev *udev = cp->udev;
Michael Chana4636962009-06-08 18:14:43 -07004583 u32 cid_addr, sb_id, val, coal_reg, coal_val;
4584 int i;
Michael Chan2bc40782012-12-06 10:33:09 +00004585 struct bnx2_rx_bd *rxbd;
Michael Chana4dde3a2010-02-24 14:42:08 +00004586 struct status_block *s_blk = cp->status_blk.gen;
Michael Chancd801532010-10-13 14:06:49 +00004587 dma_addr_t ring_map = udev->l2_ring_map;
Michael Chana4636962009-06-08 18:14:43 -07004588
4589 sb_id = cp->status_blk_num;
4590 cnic_init_context(dev, 2);
4591 cp->rx_cons_ptr = &s_blk->status_rx_quick_consumer_index2;
4592 coal_reg = BNX2_HC_COMMAND;
4593 coal_val = CNIC_RD(dev, coal_reg);
4594 if (ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX) {
Michael Chana4dde3a2010-02-24 14:42:08 +00004595 struct status_block_msix *sblk = cp->status_blk.bnx2;
Michael Chana4636962009-06-08 18:14:43 -07004596
4597 cp->rx_cons_ptr = &sblk->status_rx_quick_consumer_index;
4598 coal_reg = BNX2_HC_COALESCE_NOW;
4599 coal_val = 1 << (11 + sb_id);
4600 }
4601 i = 0;
4602 while (!(*cp->rx_cons_ptr != 0) && i < 10) {
4603 CNIC_WR(dev, coal_reg, coal_val);
4604 udelay(10);
4605 i++;
4606 barrier();
4607 }
4608 cp->rx_cons = *cp->rx_cons_ptr;
4609
4610 cid_addr = GET_CID_ADDR(2);
4611 val = BNX2_L2CTX_CTX_TYPE_CTX_BD_CHN_TYPE_VALUE |
4612 BNX2_L2CTX_CTX_TYPE_SIZE_L2 | (0x02 << 8);
4613 cnic_ctx_wr(dev, cid_addr, BNX2_L2CTX_CTX_TYPE, val);
4614
4615 if (sb_id == 0)
Michael Chand0549382009-10-28 03:41:59 -07004616 val = 2 << BNX2_L2CTX_L2_STATUSB_NUM_SHIFT;
Michael Chana4636962009-06-08 18:14:43 -07004617 else
Michael Chand0549382009-10-28 03:41:59 -07004618 val = BNX2_L2CTX_L2_STATUSB_NUM(sb_id);
Michael Chana4636962009-06-08 18:14:43 -07004619 cnic_ctx_wr(dev, cid_addr, BNX2_L2CTX_HOST_BDIDX, val);
4620
Michael Chan2bc40782012-12-06 10:33:09 +00004621 rxbd = udev->l2_ring + BNX2_PAGE_SIZE;
4622 for (i = 0; i < BNX2_MAX_RX_DESC_CNT; i++, rxbd++) {
Michael Chana4636962009-06-08 18:14:43 -07004623 dma_addr_t buf_map;
4624 int n = (i % cp->l2_rx_ring_size) + 1;
4625
Michael Chancd801532010-10-13 14:06:49 +00004626 buf_map = udev->l2_buf_map + (n * cp->l2_single_buf_size);
Michael Chana4636962009-06-08 18:14:43 -07004627 rxbd->rx_bd_len = cp->l2_single_buf_size;
4628 rxbd->rx_bd_flags = RX_BD_FLAGS_START | RX_BD_FLAGS_END;
4629 rxbd->rx_bd_haddr_hi = (u64) buf_map >> 32;
4630 rxbd->rx_bd_haddr_lo = (u64) buf_map & 0xffffffff;
4631 }
Michael Chan2bc40782012-12-06 10:33:09 +00004632 val = (u64) (ring_map + BNX2_PAGE_SIZE) >> 32;
Michael Chana4636962009-06-08 18:14:43 -07004633 cnic_ctx_wr(dev, cid_addr, BNX2_L2CTX_NX_BDHADDR_HI, val);
4634 rxbd->rx_bd_haddr_hi = val;
4635
Michael Chan2bc40782012-12-06 10:33:09 +00004636 val = (u64) (ring_map + BNX2_PAGE_SIZE) & 0xffffffff;
Michael Chana4636962009-06-08 18:14:43 -07004637 cnic_ctx_wr(dev, cid_addr, BNX2_L2CTX_NX_BDHADDR_LO, val);
4638 rxbd->rx_bd_haddr_lo = val;
4639
4640 val = cnic_reg_rd_ind(dev, BNX2_RXP_SCRATCH_RXP_FLOOD);
4641 cnic_reg_wr_ind(dev, BNX2_RXP_SCRATCH_RXP_FLOOD, val | (1 << 2));
4642}
4643
4644static void cnic_shutdown_bnx2_rx_ring(struct cnic_dev *dev)
4645{
4646 struct kwqe *wqes[1], l2kwqe;
4647
4648 memset(&l2kwqe, 0, sizeof(l2kwqe));
4649 wqes[0] = &l2kwqe;
Michael Chane1928c82010-12-23 07:43:04 +00004650 l2kwqe.kwqe_op_flag = (L2_LAYER_CODE << KWQE_LAYER_SHIFT) |
Michael Chana4636962009-06-08 18:14:43 -07004651 (L2_KWQE_OPCODE_VALUE_FLUSH <<
4652 KWQE_OPCODE_SHIFT) | 2;
4653 dev->submit_kwqes(dev, wqes, 1);
4654}
4655
4656static void cnic_set_bnx2_mac(struct cnic_dev *dev)
4657{
4658 struct cnic_local *cp = dev->cnic_priv;
4659 u32 val;
4660
4661 val = cp->func << 2;
4662
4663 cp->shmem_base = cnic_reg_rd_ind(dev, BNX2_SHM_HDR_ADDR_0 + val);
4664
4665 val = cnic_reg_rd_ind(dev, cp->shmem_base +
4666 BNX2_PORT_HW_CFG_ISCSI_MAC_UPPER);
4667 dev->mac_addr[0] = (u8) (val >> 8);
4668 dev->mac_addr[1] = (u8) val;
4669
4670 CNIC_WR(dev, BNX2_EMAC_MAC_MATCH4, val);
4671
4672 val = cnic_reg_rd_ind(dev, cp->shmem_base +
4673 BNX2_PORT_HW_CFG_ISCSI_MAC_LOWER);
4674 dev->mac_addr[2] = (u8) (val >> 24);
4675 dev->mac_addr[3] = (u8) (val >> 16);
4676 dev->mac_addr[4] = (u8) (val >> 8);
4677 dev->mac_addr[5] = (u8) val;
4678
4679 CNIC_WR(dev, BNX2_EMAC_MAC_MATCH5, val);
4680
4681 val = 4 | BNX2_RPM_SORT_USER2_BC_EN;
Michael Chan4ce45e02012-12-06 10:33:10 +00004682 if (BNX2_CHIP(cp) != BNX2_CHIP_5709)
Michael Chana4636962009-06-08 18:14:43 -07004683 val |= BNX2_RPM_SORT_USER2_PROM_VLAN;
4684
4685 CNIC_WR(dev, BNX2_RPM_SORT_USER2, 0x0);
4686 CNIC_WR(dev, BNX2_RPM_SORT_USER2, val);
4687 CNIC_WR(dev, BNX2_RPM_SORT_USER2, val | BNX2_RPM_SORT_USER2_ENA);
4688}
4689
4690static int cnic_start_bnx2_hw(struct cnic_dev *dev)
4691{
4692 struct cnic_local *cp = dev->cnic_priv;
4693 struct cnic_eth_dev *ethdev = cp->ethdev;
Michael Chana4dde3a2010-02-24 14:42:08 +00004694 struct status_block *sblk = cp->status_blk.gen;
Michael Chane6c28892010-06-24 14:58:39 +00004695 u32 val, kcq_cid_addr, kwq_cid_addr;
Michael Chana4636962009-06-08 18:14:43 -07004696 int err;
4697
4698 cnic_set_bnx2_mac(dev);
4699
4700 val = CNIC_RD(dev, BNX2_MQ_CONFIG);
4701 val &= ~BNX2_MQ_CONFIG_KNL_BYP_BLK_SIZE;
Michael Chan2bc40782012-12-06 10:33:09 +00004702 if (BNX2_PAGE_BITS > 12)
Michael Chana4636962009-06-08 18:14:43 -07004703 val |= (12 - 8) << 4;
4704 else
Michael Chan2bc40782012-12-06 10:33:09 +00004705 val |= (BNX2_PAGE_BITS - 8) << 4;
Michael Chana4636962009-06-08 18:14:43 -07004706
4707 CNIC_WR(dev, BNX2_MQ_CONFIG, val);
4708
4709 CNIC_WR(dev, BNX2_HC_COMP_PROD_TRIP, (2 << 16) | 8);
4710 CNIC_WR(dev, BNX2_HC_COM_TICKS, (64 << 16) | 220);
4711 CNIC_WR(dev, BNX2_HC_CMD_TICKS, (64 << 16) | 220);
4712
4713 err = cnic_setup_5709_context(dev, 1);
4714 if (err)
4715 return err;
4716
4717 cnic_init_context(dev, KWQ_CID);
4718 cnic_init_context(dev, KCQ_CID);
4719
Michael Chane6c28892010-06-24 14:58:39 +00004720 kwq_cid_addr = GET_CID_ADDR(KWQ_CID);
Michael Chana4636962009-06-08 18:14:43 -07004721 cp->kwq_io_addr = MB_GET_CID_ADDR(KWQ_CID) + L5_KRNLQ_HOST_QIDX;
4722
4723 cp->max_kwq_idx = MAX_KWQ_IDX;
4724 cp->kwq_prod_idx = 0;
4725 cp->kwq_con_idx = 0;
Michael Chan1f1332a2010-05-18 11:32:52 +00004726 set_bit(CNIC_LCL_FL_KWQ_INIT, &cp->cnic_local_flags);
Michael Chana4636962009-06-08 18:14:43 -07004727
Michael Chan4ce45e02012-12-06 10:33:10 +00004728 if (BNX2_CHIP(cp) == BNX2_CHIP_5706 || BNX2_CHIP(cp) == BNX2_CHIP_5708)
Michael Chana4636962009-06-08 18:14:43 -07004729 cp->kwq_con_idx_ptr = &sblk->status_rx_quick_consumer_index15;
4730 else
4731 cp->kwq_con_idx_ptr = &sblk->status_cmd_consumer_index;
4732
4733 /* Initialize the kernel work queue context. */
4734 val = KRNLQ_TYPE_TYPE_KRNLQ | KRNLQ_SIZE_TYPE_SIZE |
Michael Chan2bc40782012-12-06 10:33:09 +00004735 (BNX2_PAGE_BITS - 8) | KRNLQ_FLAGS_QE_SELF_SEQ;
Michael Chane6c28892010-06-24 14:58:39 +00004736 cnic_ctx_wr(dev, kwq_cid_addr, L5_KRNLQ_TYPE, val);
Michael Chana4636962009-06-08 18:14:43 -07004737
Michael Chan2bc40782012-12-06 10:33:09 +00004738 val = (BNX2_PAGE_SIZE / sizeof(struct kwqe) - 1) << 16;
Michael Chane6c28892010-06-24 14:58:39 +00004739 cnic_ctx_wr(dev, kwq_cid_addr, L5_KRNLQ_QE_SELF_SEQ_MAX, val);
Michael Chana4636962009-06-08 18:14:43 -07004740
Michael Chan2bc40782012-12-06 10:33:09 +00004741 val = ((BNX2_PAGE_SIZE / sizeof(struct kwqe)) << 16) | KWQ_PAGE_CNT;
Michael Chane6c28892010-06-24 14:58:39 +00004742 cnic_ctx_wr(dev, kwq_cid_addr, L5_KRNLQ_PGTBL_NPAGES, val);
Michael Chana4636962009-06-08 18:14:43 -07004743
4744 val = (u32) ((u64) cp->kwq_info.pgtbl_map >> 32);
Michael Chane6c28892010-06-24 14:58:39 +00004745 cnic_ctx_wr(dev, kwq_cid_addr, L5_KRNLQ_PGTBL_HADDR_HI, val);
Michael Chana4636962009-06-08 18:14:43 -07004746
4747 val = (u32) cp->kwq_info.pgtbl_map;
Michael Chane6c28892010-06-24 14:58:39 +00004748 cnic_ctx_wr(dev, kwq_cid_addr, L5_KRNLQ_PGTBL_HADDR_LO, val);
Michael Chana4636962009-06-08 18:14:43 -07004749
Michael Chane6c28892010-06-24 14:58:39 +00004750 kcq_cid_addr = GET_CID_ADDR(KCQ_CID);
4751 cp->kcq1.io_addr = MB_GET_CID_ADDR(KCQ_CID) + L5_KRNLQ_HOST_QIDX;
Michael Chana4636962009-06-08 18:14:43 -07004752
Michael Chane6c28892010-06-24 14:58:39 +00004753 cp->kcq1.sw_prod_idx = 0;
4754 cp->kcq1.hw_prod_idx_ptr =
Joe Perches64699332012-06-04 12:44:16 +00004755 &sblk->status_completion_producer_index;
Michael Chane6c28892010-06-24 14:58:39 +00004756
Joe Perches64699332012-06-04 12:44:16 +00004757 cp->kcq1.status_idx_ptr = &sblk->status_idx;
Michael Chana4636962009-06-08 18:14:43 -07004758
4759 /* Initialize the kernel complete queue context. */
4760 val = KRNLQ_TYPE_TYPE_KRNLQ | KRNLQ_SIZE_TYPE_SIZE |
Michael Chan2bc40782012-12-06 10:33:09 +00004761 (BNX2_PAGE_BITS - 8) | KRNLQ_FLAGS_QE_SELF_SEQ;
Michael Chane6c28892010-06-24 14:58:39 +00004762 cnic_ctx_wr(dev, kcq_cid_addr, L5_KRNLQ_TYPE, val);
Michael Chana4636962009-06-08 18:14:43 -07004763
Michael Chan2bc40782012-12-06 10:33:09 +00004764 val = (BNX2_PAGE_SIZE / sizeof(struct kcqe) - 1) << 16;
Michael Chane6c28892010-06-24 14:58:39 +00004765 cnic_ctx_wr(dev, kcq_cid_addr, L5_KRNLQ_QE_SELF_SEQ_MAX, val);
Michael Chana4636962009-06-08 18:14:43 -07004766
Michael Chan2bc40782012-12-06 10:33:09 +00004767 val = ((BNX2_PAGE_SIZE / sizeof(struct kcqe)) << 16) | KCQ_PAGE_CNT;
Michael Chane6c28892010-06-24 14:58:39 +00004768 cnic_ctx_wr(dev, kcq_cid_addr, L5_KRNLQ_PGTBL_NPAGES, val);
Michael Chana4636962009-06-08 18:14:43 -07004769
Michael Chane6c28892010-06-24 14:58:39 +00004770 val = (u32) ((u64) cp->kcq1.dma.pgtbl_map >> 32);
4771 cnic_ctx_wr(dev, kcq_cid_addr, L5_KRNLQ_PGTBL_HADDR_HI, val);
Michael Chana4636962009-06-08 18:14:43 -07004772
Michael Chane6c28892010-06-24 14:58:39 +00004773 val = (u32) cp->kcq1.dma.pgtbl_map;
4774 cnic_ctx_wr(dev, kcq_cid_addr, L5_KRNLQ_PGTBL_HADDR_LO, val);
Michael Chana4636962009-06-08 18:14:43 -07004775
4776 cp->int_num = 0;
4777 if (ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX) {
Michael Chane6c28892010-06-24 14:58:39 +00004778 struct status_block_msix *msblk = cp->status_blk.bnx2;
Michael Chana4636962009-06-08 18:14:43 -07004779 u32 sb_id = cp->status_blk_num;
Michael Chand0549382009-10-28 03:41:59 -07004780 u32 sb = BNX2_L2CTX_L5_STATUSB_NUM(sb_id);
Michael Chana4636962009-06-08 18:14:43 -07004781
Michael Chane6c28892010-06-24 14:58:39 +00004782 cp->kcq1.hw_prod_idx_ptr =
Joe Perches64699332012-06-04 12:44:16 +00004783 &msblk->status_completion_producer_index;
4784 cp->kcq1.status_idx_ptr = &msblk->status_idx;
4785 cp->kwq_con_idx_ptr = &msblk->status_cmd_consumer_index;
Michael Chana4636962009-06-08 18:14:43 -07004786 cp->int_num = sb_id << BNX2_PCICFG_INT_ACK_CMD_INT_NUM_SHIFT;
Michael Chane6c28892010-06-24 14:58:39 +00004787 cnic_ctx_wr(dev, kwq_cid_addr, L5_KRNLQ_HOST_QIDX, sb);
4788 cnic_ctx_wr(dev, kcq_cid_addr, L5_KRNLQ_HOST_QIDX, sb);
Michael Chana4636962009-06-08 18:14:43 -07004789 }
4790
4791 /* Enable Commnad Scheduler notification when we write to the
4792 * host producer index of the kernel contexts. */
4793 CNIC_WR(dev, BNX2_MQ_KNL_CMD_MASK1, 2);
4794
4795 /* Enable Command Scheduler notification when we write to either
4796 * the Send Queue or Receive Queue producer indexes of the kernel
4797 * bypass contexts. */
4798 CNIC_WR(dev, BNX2_MQ_KNL_BYP_CMD_MASK1, 7);
4799 CNIC_WR(dev, BNX2_MQ_KNL_BYP_WRITE_MASK1, 7);
4800
4801 /* Notify COM when the driver post an application buffer. */
4802 CNIC_WR(dev, BNX2_MQ_KNL_RX_V2P_MASK2, 0x2000);
4803
4804 /* Set the CP and COM doorbells. These two processors polls the
4805 * doorbell for a non zero value before running. This must be done
4806 * after setting up the kernel queue contexts. */
4807 cnic_reg_wr_ind(dev, BNX2_CP_SCRATCH + 0x20, 1);
4808 cnic_reg_wr_ind(dev, BNX2_COM_SCRATCH + 0x20, 1);
4809
4810 cnic_init_bnx2_tx_ring(dev);
4811 cnic_init_bnx2_rx_ring(dev);
4812
4813 err = cnic_init_bnx2_irq(dev);
4814 if (err) {
Joe Perchesddf79b22010-02-17 15:01:54 +00004815 netdev_err(dev->netdev, "cnic_init_irq failed\n");
Michael Chana4636962009-06-08 18:14:43 -07004816 cnic_reg_wr_ind(dev, BNX2_CP_SCRATCH + 0x20, 0);
4817 cnic_reg_wr_ind(dev, BNX2_COM_SCRATCH + 0x20, 0);
4818 return err;
4819 }
4820
Michael Chanad9b4352013-01-23 03:21:52 +00004821 ethdev->drv_state |= CNIC_DRV_STATE_HANDLES_IRQ;
4822
Michael Chana4636962009-06-08 18:14:43 -07004823 return 0;
4824}
4825
Michael Chan71034ba2009-10-10 13:46:59 +00004826static void cnic_setup_bnx2x_context(struct cnic_dev *dev)
4827{
4828 struct cnic_local *cp = dev->cnic_priv;
4829 struct cnic_eth_dev *ethdev = cp->ethdev;
4830 u32 start_offset = ethdev->ctx_tbl_offset;
4831 int i;
4832
4833 for (i = 0; i < cp->ctx_blks; i++) {
4834 struct cnic_ctx *ctx = &cp->ctx_arr[i];
4835 dma_addr_t map = ctx->mapping;
4836
4837 if (cp->ctx_align) {
4838 unsigned long mask = cp->ctx_align - 1;
4839
4840 map = (map + mask) & ~mask;
4841 }
4842
4843 cnic_ctx_tbl_wr(dev, start_offset + i, map);
4844 }
4845}
4846
4847static int cnic_init_bnx2x_irq(struct cnic_dev *dev)
4848{
4849 struct cnic_local *cp = dev->cnic_priv;
4850 struct cnic_eth_dev *ethdev = cp->ethdev;
4851 int err = 0;
4852
Joe Perches164165d2009-11-19 09:30:10 +00004853 tasklet_init(&cp->cnic_irq_task, cnic_service_bnx2x_bh,
Michael Chan71034ba2009-10-10 13:46:59 +00004854 (unsigned long) dev);
Michael Chan6e0dc642010-10-13 14:06:44 +00004855 if (ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX)
4856 err = cnic_request_irq(dev);
4857
Michael Chan71034ba2009-10-10 13:46:59 +00004858 return err;
4859}
4860
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004861static inline void cnic_storm_memset_hc_disable(struct cnic_dev *dev,
4862 u16 sb_id, u8 sb_index,
4863 u8 disable)
4864{
Michael Chan68c64d22012-12-06 10:33:11 +00004865 struct bnx2x *bp = netdev_priv(dev->netdev);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004866
4867 u32 addr = BAR_CSTRORM_INTMEM +
4868 CSTORM_STATUS_BLOCK_DATA_OFFSET(sb_id) +
4869 offsetof(struct hc_status_block_data_e1x, index_data) +
4870 sizeof(struct hc_index_data)*sb_index +
4871 offsetof(struct hc_index_data, flags);
4872 u16 flags = CNIC_RD16(dev, addr);
4873 /* clear and set */
4874 flags &= ~HC_INDEX_DATA_HC_ENABLED;
4875 flags |= (((~disable) << HC_INDEX_DATA_HC_ENABLED_SHIFT) &
4876 HC_INDEX_DATA_HC_ENABLED);
4877 CNIC_WR16(dev, addr, flags);
4878}
4879
Michael Chan71034ba2009-10-10 13:46:59 +00004880static void cnic_enable_bnx2x_int(struct cnic_dev *dev)
4881{
4882 struct cnic_local *cp = dev->cnic_priv;
Michael Chan68c64d22012-12-06 10:33:11 +00004883 struct bnx2x *bp = netdev_priv(dev->netdev);
Michael Chan71034ba2009-10-10 13:46:59 +00004884 u8 sb_id = cp->status_blk_num;
Michael Chan71034ba2009-10-10 13:46:59 +00004885
4886 CNIC_WR8(dev, BAR_CSTRORM_INTMEM +
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004887 CSTORM_STATUS_BLOCK_DATA_OFFSET(sb_id) +
4888 offsetof(struct hc_status_block_data_e1x, index_data) +
4889 sizeof(struct hc_index_data)*HC_INDEX_ISCSI_EQ_CONS +
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03004890 offsetof(struct hc_index_data, timeout), 64 / 4);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004891 cnic_storm_memset_hc_disable(dev, sb_id, HC_INDEX_ISCSI_EQ_CONS, 0);
Michael Chan71034ba2009-10-10 13:46:59 +00004892}
4893
4894static void cnic_disable_bnx2x_int_sync(struct cnic_dev *dev)
4895{
4896}
4897
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004898static void cnic_init_bnx2x_tx_ring(struct cnic_dev *dev,
4899 struct client_init_ramrod_data *data)
Michael Chan71034ba2009-10-10 13:46:59 +00004900{
4901 struct cnic_local *cp = dev->cnic_priv;
Michael Chancd801532010-10-13 14:06:49 +00004902 struct cnic_uio_dev *udev = cp->udev;
4903 union eth_tx_bd_types *txbd = (union eth_tx_bd_types *) udev->l2_ring;
4904 dma_addr_t buf_map, ring_map = udev->l2_ring_map;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004905 struct host_sp_status_block *sb = cp->bnx2x_def_status_blk;
Michael Chan71034ba2009-10-10 13:46:59 +00004906 int i;
Michael Chan5159fdc2010-12-23 07:42:59 +00004907 u32 cli = cp->ethdev->iscsi_l2_client_id;
Michael Chan71034ba2009-10-10 13:46:59 +00004908 u32 val;
4909
Michael Chan2bc40782012-12-06 10:33:09 +00004910 memset(txbd, 0, BNX2_PAGE_SIZE);
Michael Chan71034ba2009-10-10 13:46:59 +00004911
Michael Chancd801532010-10-13 14:06:49 +00004912 buf_map = udev->l2_buf_map;
Michael Chan2bc40782012-12-06 10:33:09 +00004913 for (i = 0; i < BNX2_MAX_TX_DESC_CNT; i += 3, txbd += 3) {
Michael Chan71034ba2009-10-10 13:46:59 +00004914 struct eth_tx_start_bd *start_bd = &txbd->start_bd;
Yuval Mintz96bed4b2012-10-01 03:46:19 +00004915 struct eth_tx_parse_bd_e1x *pbd_e1x =
4916 &((txbd + 1)->parse_bd_e1x);
4917 struct eth_tx_parse_bd_e2 *pbd_e2 = &((txbd + 1)->parse_bd_e2);
Michael Chan71034ba2009-10-10 13:46:59 +00004918 struct eth_tx_bd *reg_bd = &((txbd + 2)->reg_bd);
4919
4920 start_bd->addr_hi = cpu_to_le32((u64) buf_map >> 32);
4921 start_bd->addr_lo = cpu_to_le32(buf_map & 0xffffffff);
4922 reg_bd->addr_hi = start_bd->addr_hi;
4923 reg_bd->addr_lo = start_bd->addr_lo + 0x10;
4924 start_bd->nbytes = cpu_to_le16(0x10);
4925 start_bd->nbd = cpu_to_le16(3);
4926 start_bd->bd_flags.as_bitfield = ETH_TX_BD_FLAGS_START_BD;
Yuval Mintz96bed4b2012-10-01 03:46:19 +00004927 start_bd->general_data &= ~ETH_TX_START_BD_PARSE_NBDS;
Michael Chan71034ba2009-10-10 13:46:59 +00004928 start_bd->general_data |= (1 << ETH_TX_START_BD_HDR_NBDS_SHIFT);
4929
Yuval Mintz96bed4b2012-10-01 03:46:19 +00004930 if (BNX2X_CHIP_IS_E2_PLUS(cp->chip_id))
4931 pbd_e2->parsing_data = (UNICAST_ADDRESS <<
Michael Chan4ce45e02012-12-06 10:33:10 +00004932 ETH_TX_PARSE_BD_E2_ETH_ADDR_TYPE_SHIFT);
Yuval Mintz96bed4b2012-10-01 03:46:19 +00004933 else
Michael Chan4ce45e02012-12-06 10:33:10 +00004934 pbd_e1x->global_data = (UNICAST_ADDRESS <<
Yuval Mintz96bed4b2012-10-01 03:46:19 +00004935 ETH_TX_PARSE_BD_E1X_ETH_ADDR_TYPE_SHIFT);
Michael Chan71034ba2009-10-10 13:46:59 +00004936 }
Michael Chan71034ba2009-10-10 13:46:59 +00004937
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004938 val = (u64) ring_map >> 32;
Michael Chan71034ba2009-10-10 13:46:59 +00004939 txbd->next_bd.addr_hi = cpu_to_le32(val);
4940
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004941 data->tx.tx_bd_page_base.hi = cpu_to_le32(val);
Michael Chan71034ba2009-10-10 13:46:59 +00004942
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004943 val = (u64) ring_map & 0xffffffff;
Michael Chan71034ba2009-10-10 13:46:59 +00004944 txbd->next_bd.addr_lo = cpu_to_le32(val);
4945
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004946 data->tx.tx_bd_page_base.lo = cpu_to_le32(val);
Michael Chan71034ba2009-10-10 13:46:59 +00004947
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004948 /* Other ramrod params */
4949 data->tx.tx_sb_index_number = HC_SP_INDEX_ETH_ISCSI_CQ_CONS;
4950 data->tx.tx_status_block_id = BNX2X_DEF_SB_ID;
Michael Chan71034ba2009-10-10 13:46:59 +00004951
4952 /* reset xstorm per client statistics */
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004953 if (cli < MAX_STAT_COUNTER_ID) {
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03004954 data->general.statistics_zero_flg = 1;
4955 data->general.statistics_en_flg = 1;
4956 data->general.statistics_counter_id = cli;
Dmitry Kravkov6b2a5412010-06-23 11:57:09 -07004957 }
Michael Chan71034ba2009-10-10 13:46:59 +00004958
4959 cp->tx_cons_ptr =
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004960 &sb->sp_sb.index_values[HC_SP_INDEX_ETH_ISCSI_CQ_CONS];
Michael Chan71034ba2009-10-10 13:46:59 +00004961}
4962
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004963static void cnic_init_bnx2x_rx_ring(struct cnic_dev *dev,
4964 struct client_init_ramrod_data *data)
Michael Chan71034ba2009-10-10 13:46:59 +00004965{
4966 struct cnic_local *cp = dev->cnic_priv;
Michael Chancd801532010-10-13 14:06:49 +00004967 struct cnic_uio_dev *udev = cp->udev;
4968 struct eth_rx_bd *rxbd = (struct eth_rx_bd *) (udev->l2_ring +
Michael Chan2bc40782012-12-06 10:33:09 +00004969 BNX2_PAGE_SIZE);
Michael Chan71034ba2009-10-10 13:46:59 +00004970 struct eth_rx_cqe_next_page *rxcqe = (struct eth_rx_cqe_next_page *)
Michael Chan2bc40782012-12-06 10:33:09 +00004971 (udev->l2_ring + (2 * BNX2_PAGE_SIZE));
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004972 struct host_sp_status_block *sb = cp->bnx2x_def_status_blk;
Michael Chan71034ba2009-10-10 13:46:59 +00004973 int i;
Michael Chan5159fdc2010-12-23 07:42:59 +00004974 u32 cli = cp->ethdev->iscsi_l2_client_id;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004975 int cl_qzone_id = BNX2X_CL_QZONE_ID(cp, cli);
Michael Chan71034ba2009-10-10 13:46:59 +00004976 u32 val;
Michael Chancd801532010-10-13 14:06:49 +00004977 dma_addr_t ring_map = udev->l2_ring_map;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004978
4979 /* General data */
4980 data->general.client_id = cli;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004981 data->general.activate_flg = 1;
4982 data->general.sp_client_id = cli;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03004983 data->general.mtu = cpu_to_le16(cp->l2_single_buf_size - 14);
4984 data->general.func_id = cp->pfid;
Michael Chan71034ba2009-10-10 13:46:59 +00004985
4986 for (i = 0; i < BNX2X_MAX_RX_DESC_CNT; i++, rxbd++) {
4987 dma_addr_t buf_map;
4988 int n = (i % cp->l2_rx_ring_size) + 1;
4989
Michael Chancd801532010-10-13 14:06:49 +00004990 buf_map = udev->l2_buf_map + (n * cp->l2_single_buf_size);
Michael Chan71034ba2009-10-10 13:46:59 +00004991 rxbd->addr_hi = cpu_to_le32((u64) buf_map >> 32);
4992 rxbd->addr_lo = cpu_to_le32(buf_map & 0xffffffff);
4993 }
Michael Chan71034ba2009-10-10 13:46:59 +00004994
Michael Chan2bc40782012-12-06 10:33:09 +00004995 val = (u64) (ring_map + BNX2_PAGE_SIZE) >> 32;
Michael Chan71034ba2009-10-10 13:46:59 +00004996 rxbd->addr_hi = cpu_to_le32(val);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004997 data->rx.bd_page_base.hi = cpu_to_le32(val);
Michael Chan71034ba2009-10-10 13:46:59 +00004998
Michael Chan2bc40782012-12-06 10:33:09 +00004999 val = (u64) (ring_map + BNX2_PAGE_SIZE) & 0xffffffff;
Michael Chan71034ba2009-10-10 13:46:59 +00005000 rxbd->addr_lo = cpu_to_le32(val);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00005001 data->rx.bd_page_base.lo = cpu_to_le32(val);
Michael Chan71034ba2009-10-10 13:46:59 +00005002
5003 rxcqe += BNX2X_MAX_RCQ_DESC_CNT;
Michael Chan2bc40782012-12-06 10:33:09 +00005004 val = (u64) (ring_map + (2 * BNX2_PAGE_SIZE)) >> 32;
Michael Chan71034ba2009-10-10 13:46:59 +00005005 rxcqe->addr_hi = cpu_to_le32(val);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00005006 data->rx.cqe_page_base.hi = cpu_to_le32(val);
Michael Chan71034ba2009-10-10 13:46:59 +00005007
Michael Chan2bc40782012-12-06 10:33:09 +00005008 val = (u64) (ring_map + (2 * BNX2_PAGE_SIZE)) & 0xffffffff;
Michael Chan71034ba2009-10-10 13:46:59 +00005009 rxcqe->addr_lo = cpu_to_le32(val);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00005010 data->rx.cqe_page_base.lo = cpu_to_le32(val);
Michael Chan71034ba2009-10-10 13:46:59 +00005011
Dmitry Kravkov523224a2010-10-06 03:23:26 +00005012 /* Other ramrod params */
5013 data->rx.client_qzone_id = cl_qzone_id;
5014 data->rx.rx_sb_index_number = HC_SP_INDEX_ETH_ISCSI_RX_CQ_CONS;
5015 data->rx.status_block_id = BNX2X_DEF_SB_ID;
Michael Chan71034ba2009-10-10 13:46:59 +00005016
Dmitry Kravkov523224a2010-10-06 03:23:26 +00005017 data->rx.cache_line_alignment_log_size = L1_CACHE_SHIFT;
Michael Chan71034ba2009-10-10 13:46:59 +00005018
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03005019 data->rx.max_bytes_on_bd = cpu_to_le16(cp->l2_single_buf_size);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00005020 data->rx.outer_vlan_removal_enable_flg = 1;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03005021 data->rx.silent_vlan_removal_flg = 1;
5022 data->rx.silent_vlan_value = 0;
5023 data->rx.silent_vlan_mask = 0xffff;
Michael Chan71034ba2009-10-10 13:46:59 +00005024
5025 cp->rx_cons_ptr =
Dmitry Kravkov523224a2010-10-06 03:23:26 +00005026 &sb->sp_sb.index_values[HC_SP_INDEX_ETH_ISCSI_RX_CQ_CONS];
Michael Chan5159fdc2010-12-23 07:42:59 +00005027 cp->rx_cons = *cp->rx_cons_ptr;
Michael Chan71034ba2009-10-10 13:46:59 +00005028}
5029
Michael Chane21ba412010-12-23 07:43:03 +00005030static void cnic_init_bnx2x_kcq(struct cnic_dev *dev)
5031{
5032 struct cnic_local *cp = dev->cnic_priv;
Michael Chan68c64d22012-12-06 10:33:11 +00005033 struct bnx2x *bp = netdev_priv(dev->netdev);
Michael Chane21ba412010-12-23 07:43:03 +00005034 u32 pfid = cp->pfid;
5035
5036 cp->kcq1.io_addr = BAR_CSTRORM_INTMEM +
5037 CSTORM_ISCSI_EQ_PROD_OFFSET(pfid, 0);
5038 cp->kcq1.sw_prod_idx = 0;
5039
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03005040 if (BNX2X_CHIP_IS_E2_PLUS(cp->chip_id)) {
Michael Chane21ba412010-12-23 07:43:03 +00005041 struct host_hc_status_block_e2 *sb = cp->status_blk.gen;
5042
5043 cp->kcq1.hw_prod_idx_ptr =
5044 &sb->sb.index_values[HC_INDEX_ISCSI_EQ_CONS];
5045 cp->kcq1.status_idx_ptr =
5046 &sb->sb.running_index[SM_RX_ID];
5047 } else {
5048 struct host_hc_status_block_e1x *sb = cp->status_blk.gen;
5049
5050 cp->kcq1.hw_prod_idx_ptr =
5051 &sb->sb.index_values[HC_INDEX_ISCSI_EQ_CONS];
5052 cp->kcq1.status_idx_ptr =
5053 &sb->sb.running_index[SM_RX_ID];
5054 }
5055
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03005056 if (BNX2X_CHIP_IS_E2_PLUS(cp->chip_id)) {
Michael Chane21ba412010-12-23 07:43:03 +00005057 struct host_hc_status_block_e2 *sb = cp->status_blk.gen;
5058
5059 cp->kcq2.io_addr = BAR_USTRORM_INTMEM +
5060 USTORM_FCOE_EQ_PROD_OFFSET(pfid);
5061 cp->kcq2.sw_prod_idx = 0;
5062 cp->kcq2.hw_prod_idx_ptr =
5063 &sb->sb.index_values[HC_INDEX_FCOE_EQ_CONS];
5064 cp->kcq2.status_idx_ptr =
5065 &sb->sb.running_index[SM_RX_ID];
5066 }
5067}
5068
Michael Chan71034ba2009-10-10 13:46:59 +00005069static int cnic_start_bnx2x_hw(struct cnic_dev *dev)
5070{
5071 struct cnic_local *cp = dev->cnic_priv;
Michael Chan68c64d22012-12-06 10:33:11 +00005072 struct bnx2x *bp = netdev_priv(dev->netdev);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00005073 struct cnic_eth_dev *ethdev = cp->ethdev;
Michael Chan68c64d22012-12-06 10:33:11 +00005074 int func, ret;
Michael Chan14203982010-10-06 03:16:06 +00005075 u32 pfid;
Michael Chan71034ba2009-10-10 13:46:59 +00005076
Michael Chana9e0a4f2012-01-04 12:12:27 +00005077 dev->stats_addr = ethdev->addr_drv_info_to_mcp;
Michael Chan68c64d22012-12-06 10:33:11 +00005078 cp->port_mode = bp->common.chip_port_mode;
5079 cp->pfid = bp->pfid;
5080 cp->func = bp->pf_num;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03005081
Michael Chan68c64d22012-12-06 10:33:11 +00005082 func = CNIC_FUNC(cp);
Michael Chan14203982010-10-06 03:16:06 +00005083 pfid = cp->pfid;
5084
Michael Chan71034ba2009-10-10 13:46:59 +00005085 ret = cnic_init_id_tbl(&cp->cid_tbl, MAX_ISCSI_TBL_SZ,
Eddie Wai11f23aa2011-06-08 19:29:34 +00005086 cp->iscsi_start_cid, 0);
Michael Chan71034ba2009-10-10 13:46:59 +00005087
5088 if (ret)
5089 return -ENOMEM;
5090
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03005091 if (BNX2X_CHIP_IS_E2_PLUS(cp->chip_id)) {
Michael Chandc219a22011-08-26 09:45:39 +00005092 ret = cnic_init_id_tbl(&cp->fcoe_cid_tbl, dev->max_fcoe_conn,
Eddie Wai11f23aa2011-06-08 19:29:34 +00005093 cp->fcoe_start_cid, 0);
Michael Chane1928c82010-12-23 07:43:04 +00005094
5095 if (ret)
5096 return -ENOMEM;
5097 }
5098
Dmitry Kravkov523224a2010-10-06 03:23:26 +00005099 cp->bnx2x_igu_sb_id = ethdev->irq_arr[0].status_blk_num2;
5100
Michael Chane21ba412010-12-23 07:43:03 +00005101 cnic_init_bnx2x_kcq(dev);
Michael Chan71034ba2009-10-10 13:46:59 +00005102
Michael Chan71034ba2009-10-10 13:46:59 +00005103 /* Only 1 EQ */
Michael Chane6c28892010-06-24 14:58:39 +00005104 CNIC_WR16(dev, cp->kcq1.io_addr, MAX_KCQ_IDX);
Michael Chan71034ba2009-10-10 13:46:59 +00005105 CNIC_WR(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00005106 CSTORM_ISCSI_EQ_CONS_OFFSET(pfid, 0), 0);
Michael Chan71034ba2009-10-10 13:46:59 +00005107 CNIC_WR(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00005108 CSTORM_ISCSI_EQ_NEXT_PAGE_ADDR_OFFSET(pfid, 0),
Michael Chane6c28892010-06-24 14:58:39 +00005109 cp->kcq1.dma.pg_map_arr[1] & 0xffffffff);
Michael Chan71034ba2009-10-10 13:46:59 +00005110 CNIC_WR(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00005111 CSTORM_ISCSI_EQ_NEXT_PAGE_ADDR_OFFSET(pfid, 0) + 4,
Michael Chane6c28892010-06-24 14:58:39 +00005112 (u64) cp->kcq1.dma.pg_map_arr[1] >> 32);
Michael Chan71034ba2009-10-10 13:46:59 +00005113 CNIC_WR(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00005114 CSTORM_ISCSI_EQ_NEXT_EQE_ADDR_OFFSET(pfid, 0),
Michael Chane6c28892010-06-24 14:58:39 +00005115 cp->kcq1.dma.pg_map_arr[0] & 0xffffffff);
Michael Chan71034ba2009-10-10 13:46:59 +00005116 CNIC_WR(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00005117 CSTORM_ISCSI_EQ_NEXT_EQE_ADDR_OFFSET(pfid, 0) + 4,
Michael Chane6c28892010-06-24 14:58:39 +00005118 (u64) cp->kcq1.dma.pg_map_arr[0] >> 32);
Michael Chan71034ba2009-10-10 13:46:59 +00005119 CNIC_WR8(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00005120 CSTORM_ISCSI_EQ_NEXT_PAGE_ADDR_VALID_OFFSET(pfid, 0), 1);
Michael Chan71034ba2009-10-10 13:46:59 +00005121 CNIC_WR16(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00005122 CSTORM_ISCSI_EQ_SB_NUM_OFFSET(pfid, 0), cp->status_blk_num);
Michael Chan71034ba2009-10-10 13:46:59 +00005123 CNIC_WR8(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00005124 CSTORM_ISCSI_EQ_SB_INDEX_OFFSET(pfid, 0),
Dmitry Kravkov523224a2010-10-06 03:23:26 +00005125 HC_INDEX_ISCSI_EQ_CONS);
Michael Chan71034ba2009-10-10 13:46:59 +00005126
Michael Chan71034ba2009-10-10 13:46:59 +00005127 CNIC_WR(dev, BAR_USTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00005128 USTORM_ISCSI_GLOBAL_BUF_PHYS_ADDR_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00005129 cp->gbl_buf_info.pg_map_arr[0] & 0xffffffff);
5130 CNIC_WR(dev, BAR_USTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00005131 USTORM_ISCSI_GLOBAL_BUF_PHYS_ADDR_OFFSET(pfid) + 4,
Michael Chan71034ba2009-10-10 13:46:59 +00005132 (u64) cp->gbl_buf_info.pg_map_arr[0] >> 32);
5133
Dmitry Kravkov523224a2010-10-06 03:23:26 +00005134 CNIC_WR(dev, BAR_TSTRORM_INTMEM +
5135 TSTORM_ISCSI_TCP_LOCAL_ADV_WND_OFFSET(pfid), DEF_RCV_BUF);
5136
Michael Chan71034ba2009-10-10 13:46:59 +00005137 cnic_setup_bnx2x_context(dev);
5138
Michael Chan71034ba2009-10-10 13:46:59 +00005139 ret = cnic_init_bnx2x_irq(dev);
5140 if (ret)
5141 return ret;
5142
Michael Chanad9b4352013-01-23 03:21:52 +00005143 ethdev->drv_state |= CNIC_DRV_STATE_HANDLES_IRQ;
Michael Chan71034ba2009-10-10 13:46:59 +00005144 return 0;
5145}
5146
Michael Chan86b53602009-10-10 13:46:57 +00005147static void cnic_init_rings(struct cnic_dev *dev)
5148{
Michael Chan541a7812010-10-06 03:17:22 +00005149 struct cnic_local *cp = dev->cnic_priv;
Michael Chan68c64d22012-12-06 10:33:11 +00005150 struct bnx2x *bp = netdev_priv(dev->netdev);
Michael Chancd801532010-10-13 14:06:49 +00005151 struct cnic_uio_dev *udev = cp->udev;
Michael Chan541a7812010-10-06 03:17:22 +00005152
5153 if (test_bit(CNIC_LCL_FL_RINGS_INITED, &cp->cnic_local_flags))
5154 return;
5155
Michael Chan86b53602009-10-10 13:46:57 +00005156 if (test_bit(CNIC_F_BNX2_CLASS, &dev->flags)) {
5157 cnic_init_bnx2_tx_ring(dev);
5158 cnic_init_bnx2_rx_ring(dev);
Michael Chan541a7812010-10-06 03:17:22 +00005159 set_bit(CNIC_LCL_FL_RINGS_INITED, &cp->cnic_local_flags);
Michael Chan71034ba2009-10-10 13:46:59 +00005160 } else if (test_bit(CNIC_F_BNX2X_CLASS, &dev->flags)) {
Michael Chan5159fdc2010-12-23 07:42:59 +00005161 u32 cli = cp->ethdev->iscsi_l2_client_id;
5162 u32 cid = cp->ethdev->iscsi_l2_cid;
Michael Chan68d7c1a2011-01-05 15:14:13 +00005163 u32 cl_qzone_id;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00005164 struct client_init_ramrod_data *data;
Michael Chan71034ba2009-10-10 13:46:59 +00005165 union l5cm_specific_data l5_data;
5166 struct ustorm_eth_rx_producers rx_prods = {0};
Michael Chane1dd8832011-07-13 17:24:19 +00005167 u32 off, i, *cid_ptr;
Michael Chan71034ba2009-10-10 13:46:59 +00005168
5169 rx_prods.bd_prod = 0;
5170 rx_prods.cqe_prod = BNX2X_MAX_RCQ_DESC_CNT;
5171 barrier();
5172
Dmitry Kravkov523224a2010-10-06 03:23:26 +00005173 cl_qzone_id = BNX2X_CL_QZONE_ID(cp, cli);
5174
Michael Chanc7596b72009-12-02 15:15:35 +00005175 off = BAR_USTRORM_INTMEM +
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03005176 (BNX2X_CHIP_IS_E2_PLUS(cp->chip_id) ?
Michael Chanee87a822010-10-13 14:06:51 +00005177 USTORM_RX_PRODS_E2_OFFSET(cl_qzone_id) :
5178 USTORM_RX_PRODS_E1X_OFFSET(CNIC_PORT(cp), cli));
Michael Chan71034ba2009-10-10 13:46:59 +00005179
5180 for (i = 0; i < sizeof(struct ustorm_eth_rx_producers) / 4; i++)
Michael Chanc7596b72009-12-02 15:15:35 +00005181 CNIC_WR(dev, off + i * 4, ((u32 *) &rx_prods)[i]);
Michael Chan71034ba2009-10-10 13:46:59 +00005182
Michael Chan48f753d2010-05-18 11:32:53 +00005183 set_bit(CNIC_LCL_FL_L2_WAIT, &cp->cnic_local_flags);
5184
Michael Chancd801532010-10-13 14:06:49 +00005185 data = udev->l2_buf;
Michael Chane1dd8832011-07-13 17:24:19 +00005186 cid_ptr = udev->l2_buf + 12;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00005187
5188 memset(data, 0, sizeof(*data));
5189
5190 cnic_init_bnx2x_tx_ring(dev, data);
5191 cnic_init_bnx2x_rx_ring(dev, data);
5192
Michael Chancd801532010-10-13 14:06:49 +00005193 l5_data.phy_address.lo = udev->l2_buf_map & 0xffffffff;
5194 l5_data.phy_address.hi = (u64) udev->l2_buf_map >> 32;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00005195
Michael Chan541a7812010-10-06 03:17:22 +00005196 set_bit(CNIC_LCL_FL_RINGS_INITED, &cp->cnic_local_flags);
5197
Michael Chan71034ba2009-10-10 13:46:59 +00005198 cnic_submit_kwqe_16(dev, RAMROD_CMD_ID_ETH_CLIENT_SETUP,
Michael Chan68d7c1a2011-01-05 15:14:13 +00005199 cid, ETH_CONNECTION_TYPE, &l5_data);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00005200
Michael Chan48f753d2010-05-18 11:32:53 +00005201 i = 0;
5202 while (test_bit(CNIC_LCL_FL_L2_WAIT, &cp->cnic_local_flags) &&
5203 ++i < 10)
5204 msleep(1);
5205
5206 if (test_bit(CNIC_LCL_FL_L2_WAIT, &cp->cnic_local_flags))
5207 netdev_err(dev->netdev,
5208 "iSCSI CLIENT_SETUP did not complete\n");
Dmitry Kravkovc2bff632010-10-06 03:33:18 +00005209 cnic_spq_completion(dev, DRV_CTL_RET_L2_SPQ_CREDIT_CMD, 1);
Michael Chan5159fdc2010-12-23 07:42:59 +00005210 cnic_ring_ctl(dev, cid, cli, 1);
Michael Chane1dd8832011-07-13 17:24:19 +00005211 *cid_ptr = cid;
Michael Chan86b53602009-10-10 13:46:57 +00005212 }
5213}
5214
5215static void cnic_shutdown_rings(struct cnic_dev *dev)
5216{
Michael Chan541a7812010-10-06 03:17:22 +00005217 struct cnic_local *cp = dev->cnic_priv;
Michael Chane1dd8832011-07-13 17:24:19 +00005218 struct cnic_uio_dev *udev = cp->udev;
5219 void *rx_ring;
Michael Chan541a7812010-10-06 03:17:22 +00005220
5221 if (!test_bit(CNIC_LCL_FL_RINGS_INITED, &cp->cnic_local_flags))
5222 return;
5223
Michael Chan86b53602009-10-10 13:46:57 +00005224 if (test_bit(CNIC_F_BNX2_CLASS, &dev->flags)) {
5225 cnic_shutdown_bnx2_rx_ring(dev);
Michael Chan71034ba2009-10-10 13:46:59 +00005226 } else if (test_bit(CNIC_F_BNX2X_CLASS, &dev->flags)) {
Michael Chan5159fdc2010-12-23 07:42:59 +00005227 u32 cli = cp->ethdev->iscsi_l2_client_id;
5228 u32 cid = cp->ethdev->iscsi_l2_cid;
Michael Chan8b065b62009-12-02 15:15:36 +00005229 union l5cm_specific_data l5_data;
Michael Chan48f753d2010-05-18 11:32:53 +00005230 int i;
Michael Chan71034ba2009-10-10 13:46:59 +00005231
Michael Chan5159fdc2010-12-23 07:42:59 +00005232 cnic_ring_ctl(dev, cid, cli, 0);
Michael Chan8b065b62009-12-02 15:15:36 +00005233
Michael Chan48f753d2010-05-18 11:32:53 +00005234 set_bit(CNIC_LCL_FL_L2_WAIT, &cp->cnic_local_flags);
5235
Michael Chan8b065b62009-12-02 15:15:36 +00005236 l5_data.phy_address.lo = cli;
5237 l5_data.phy_address.hi = 0;
5238 cnic_submit_kwqe_16(dev, RAMROD_CMD_ID_ETH_HALT,
Michael Chan5159fdc2010-12-23 07:42:59 +00005239 cid, ETH_CONNECTION_TYPE, &l5_data);
Michael Chan48f753d2010-05-18 11:32:53 +00005240 i = 0;
5241 while (test_bit(CNIC_LCL_FL_L2_WAIT, &cp->cnic_local_flags) &&
5242 ++i < 10)
5243 msleep(1);
5244
5245 if (test_bit(CNIC_LCL_FL_L2_WAIT, &cp->cnic_local_flags))
5246 netdev_err(dev->netdev,
5247 "iSCSI CLIENT_HALT did not complete\n");
Dmitry Kravkovc2bff632010-10-06 03:33:18 +00005248 cnic_spq_completion(dev, DRV_CTL_RET_L2_SPQ_CREDIT_CMD, 1);
Michael Chan1bcdc322009-12-10 15:40:57 +00005249
5250 memset(&l5_data, 0, sizeof(l5_data));
Dmitry Kravkov523224a2010-10-06 03:23:26 +00005251 cnic_submit_kwqe_16(dev, RAMROD_CMD_ID_COMMON_CFC_DEL,
Michael Chan68d7c1a2011-01-05 15:14:13 +00005252 cid, NONE_CONNECTION_TYPE, &l5_data);
Michael Chan1bcdc322009-12-10 15:40:57 +00005253 msleep(10);
Michael Chan86b53602009-10-10 13:46:57 +00005254 }
Michael Chan541a7812010-10-06 03:17:22 +00005255 clear_bit(CNIC_LCL_FL_RINGS_INITED, &cp->cnic_local_flags);
Michael Chan2bc40782012-12-06 10:33:09 +00005256 rx_ring = udev->l2_ring + BNX2_PAGE_SIZE;
5257 memset(rx_ring, 0, BNX2_PAGE_SIZE);
Michael Chan86b53602009-10-10 13:46:57 +00005258}
5259
Michael Chana3059b12009-08-14 15:49:44 +00005260static int cnic_register_netdev(struct cnic_dev *dev)
5261{
5262 struct cnic_local *cp = dev->cnic_priv;
5263 struct cnic_eth_dev *ethdev = cp->ethdev;
5264 int err;
5265
5266 if (!ethdev)
5267 return -ENODEV;
5268
5269 if (ethdev->drv_state & CNIC_DRV_STATE_REGD)
5270 return 0;
5271
5272 err = ethdev->drv_register_cnic(dev->netdev, cp->cnic_ops, dev);
5273 if (err)
Joe Perchesddf79b22010-02-17 15:01:54 +00005274 netdev_err(dev->netdev, "register_cnic failed\n");
Michael Chana3059b12009-08-14 15:49:44 +00005275
5276 return err;
5277}
5278
5279static void cnic_unregister_netdev(struct cnic_dev *dev)
5280{
5281 struct cnic_local *cp = dev->cnic_priv;
5282 struct cnic_eth_dev *ethdev = cp->ethdev;
5283
5284 if (!ethdev)
5285 return;
5286
5287 ethdev->drv_unregister_cnic(dev->netdev);
5288}
5289
Michael Chana4636962009-06-08 18:14:43 -07005290static int cnic_start_hw(struct cnic_dev *dev)
5291{
5292 struct cnic_local *cp = dev->cnic_priv;
5293 struct cnic_eth_dev *ethdev = cp->ethdev;
5294 int err;
5295
5296 if (test_bit(CNIC_F_CNIC_UP, &dev->flags))
5297 return -EALREADY;
5298
Michael Chana4636962009-06-08 18:14:43 -07005299 dev->regview = ethdev->io_base;
Michael Chana4636962009-06-08 18:14:43 -07005300 pci_dev_get(dev->pcidev);
5301 cp->func = PCI_FUNC(dev->pcidev->devfn);
Michael Chana4dde3a2010-02-24 14:42:08 +00005302 cp->status_blk.gen = ethdev->irq_arr[0].status_blk;
Michael Chana4636962009-06-08 18:14:43 -07005303 cp->status_blk_num = ethdev->irq_arr[0].status_blk_num;
5304
5305 err = cp->alloc_resc(dev);
5306 if (err) {
Joe Perchesddf79b22010-02-17 15:01:54 +00005307 netdev_err(dev->netdev, "allocate resource failure\n");
Michael Chana4636962009-06-08 18:14:43 -07005308 goto err1;
5309 }
5310
5311 err = cp->start_hw(dev);
5312 if (err)
5313 goto err1;
5314
5315 err = cnic_cm_open(dev);
5316 if (err)
5317 goto err1;
5318
5319 set_bit(CNIC_F_CNIC_UP, &dev->flags);
5320
5321 cp->enable_int(dev);
5322
5323 return 0;
5324
5325err1:
Michael Chana4636962009-06-08 18:14:43 -07005326 cp->free_resc(dev);
5327 pci_dev_put(dev->pcidev);
Michael Chana4636962009-06-08 18:14:43 -07005328 return err;
5329}
5330
5331static void cnic_stop_bnx2_hw(struct cnic_dev *dev)
5332{
Michael Chana4636962009-06-08 18:14:43 -07005333 cnic_disable_bnx2_int_sync(dev);
5334
5335 cnic_reg_wr_ind(dev, BNX2_CP_SCRATCH + 0x20, 0);
5336 cnic_reg_wr_ind(dev, BNX2_COM_SCRATCH + 0x20, 0);
5337
5338 cnic_init_context(dev, KWQ_CID);
5339 cnic_init_context(dev, KCQ_CID);
5340
5341 cnic_setup_5709_context(dev, 0);
5342 cnic_free_irq(dev);
5343
Michael Chana4636962009-06-08 18:14:43 -07005344 cnic_free_resc(dev);
5345}
5346
Michael Chan71034ba2009-10-10 13:46:59 +00005347
5348static void cnic_stop_bnx2x_hw(struct cnic_dev *dev)
5349{
5350 struct cnic_local *cp = dev->cnic_priv;
Michael Chan68c64d22012-12-06 10:33:11 +00005351 struct bnx2x *bp = netdev_priv(dev->netdev);
Michael Chancaa9e932012-12-05 10:10:14 +00005352 u32 hc_index = HC_INDEX_ISCSI_EQ_CONS;
5353 u32 sb_id = cp->status_blk_num;
5354 u32 idx_off, syn_off;
Michael Chan71034ba2009-10-10 13:46:59 +00005355
5356 cnic_free_irq(dev);
Michael Chancaa9e932012-12-05 10:10:14 +00005357
5358 if (BNX2X_CHIP_IS_E2_PLUS(cp->chip_id)) {
5359 idx_off = offsetof(struct hc_status_block_e2, index_values) +
5360 (hc_index * sizeof(u16));
5361
5362 syn_off = CSTORM_HC_SYNC_LINE_INDEX_E2_OFFSET(hc_index, sb_id);
5363 } else {
5364 idx_off = offsetof(struct hc_status_block_e1x, index_values) +
5365 (hc_index * sizeof(u16));
5366
5367 syn_off = CSTORM_HC_SYNC_LINE_INDEX_E1X_OFFSET(hc_index, sb_id);
5368 }
5369 CNIC_WR16(dev, BAR_CSTRORM_INTMEM + syn_off, 0);
5370 CNIC_WR16(dev, BAR_CSTRORM_INTMEM + CSTORM_STATUS_BLOCK_OFFSET(sb_id) +
5371 idx_off, 0);
5372
Dmitry Kravkov523224a2010-10-06 03:23:26 +00005373 *cp->kcq1.hw_prod_idx_ptr = 0;
Michael Chan4e9c4fd2009-12-10 15:40:58 +00005374 CNIC_WR(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00005375 CSTORM_ISCSI_EQ_CONS_OFFSET(cp->pfid, 0), 0);
Michael Chane6c28892010-06-24 14:58:39 +00005376 CNIC_WR16(dev, cp->kcq1.io_addr, 0);
Michael Chan71034ba2009-10-10 13:46:59 +00005377 cnic_free_resc(dev);
5378}
5379
Michael Chana4636962009-06-08 18:14:43 -07005380static void cnic_stop_hw(struct cnic_dev *dev)
5381{
5382 if (test_bit(CNIC_F_CNIC_UP, &dev->flags)) {
5383 struct cnic_local *cp = dev->cnic_priv;
Michael Chan48f753d2010-05-18 11:32:53 +00005384 int i = 0;
Michael Chana4636962009-06-08 18:14:43 -07005385
Michael Chan48f753d2010-05-18 11:32:53 +00005386 /* Need to wait for the ring shutdown event to complete
5387 * before clearing the CNIC_UP flag.
5388 */
Michael Chan82346a72012-09-08 06:01:05 +00005389 while (cp->udev && cp->udev->uio_dev != -1 && i < 15) {
Michael Chan48f753d2010-05-18 11:32:53 +00005390 msleep(100);
5391 i++;
5392 }
Michael Chana3ceeeb2010-10-13 14:06:50 +00005393 cnic_shutdown_rings(dev);
Michael Chana2028b232012-06-27 15:08:19 +00005394 cp->stop_cm(dev);
Michael Chanad9b4352013-01-23 03:21:52 +00005395 cp->ethdev->drv_state &= ~CNIC_DRV_STATE_HANDLES_IRQ;
Michael Chana4636962009-06-08 18:14:43 -07005396 clear_bit(CNIC_F_CNIC_UP, &dev->flags);
Eric Dumazet2cfa5a02011-11-23 07:09:32 +00005397 RCU_INIT_POINTER(cp->ulp_ops[CNIC_ULP_L4], NULL);
Michael Chana4636962009-06-08 18:14:43 -07005398 synchronize_rcu();
5399 cnic_cm_shutdown(dev);
5400 cp->stop_hw(dev);
5401 pci_dev_put(dev->pcidev);
5402 }
5403}
5404
5405static void cnic_free_dev(struct cnic_dev *dev)
5406{
5407 int i = 0;
5408
5409 while ((atomic_read(&dev->ref_count) != 0) && i < 10) {
5410 msleep(100);
5411 i++;
5412 }
5413 if (atomic_read(&dev->ref_count) != 0)
Joe Perchesddf79b22010-02-17 15:01:54 +00005414 netdev_err(dev->netdev, "Failed waiting for ref count to go to zero\n");
Michael Chana4636962009-06-08 18:14:43 -07005415
Joe Perchesddf79b22010-02-17 15:01:54 +00005416 netdev_info(dev->netdev, "Removed CNIC device\n");
Michael Chana4636962009-06-08 18:14:43 -07005417 dev_put(dev->netdev);
5418 kfree(dev);
5419}
5420
5421static struct cnic_dev *cnic_alloc_dev(struct net_device *dev,
5422 struct pci_dev *pdev)
5423{
5424 struct cnic_dev *cdev;
5425 struct cnic_local *cp;
5426 int alloc_size;
5427
5428 alloc_size = sizeof(struct cnic_dev) + sizeof(struct cnic_local);
5429
Joe Perchesb2adaca2013-02-03 17:43:58 +00005430 cdev = kzalloc(alloc_size, GFP_KERNEL);
5431 if (cdev == NULL)
Michael Chana4636962009-06-08 18:14:43 -07005432 return NULL;
Michael Chana4636962009-06-08 18:14:43 -07005433
5434 cdev->netdev = dev;
5435 cdev->cnic_priv = (char *)cdev + sizeof(struct cnic_dev);
5436 cdev->register_device = cnic_register_device;
5437 cdev->unregister_device = cnic_unregister_device;
5438 cdev->iscsi_nl_msg_recv = cnic_iscsi_nl_msg_recv;
5439
5440 cp = cdev->cnic_priv;
5441 cp->dev = cdev;
Michael Chana4636962009-06-08 18:14:43 -07005442 cp->l2_single_buf_size = 0x400;
5443 cp->l2_rx_ring_size = 3;
5444
5445 spin_lock_init(&cp->cnic_ulp_lock);
5446
Joe Perchesddf79b22010-02-17 15:01:54 +00005447 netdev_info(dev, "Added CNIC device\n");
Michael Chana4636962009-06-08 18:14:43 -07005448
5449 return cdev;
5450}
5451
5452static struct cnic_dev *init_bnx2_cnic(struct net_device *dev)
5453{
5454 struct pci_dev *pdev;
5455 struct cnic_dev *cdev;
5456 struct cnic_local *cp;
Michael Chan4bd9b0ff2012-12-06 10:33:12 +00005457 struct bnx2 *bp = netdev_priv(dev);
Michael Chana4636962009-06-08 18:14:43 -07005458 struct cnic_eth_dev *ethdev = NULL;
Michael Chana4636962009-06-08 18:14:43 -07005459
Michael Chan4bd9b0ff2012-12-06 10:33:12 +00005460 if (bp->cnic_probe)
5461 ethdev = (bp->cnic_probe)(dev);
5462
Michael Chana4636962009-06-08 18:14:43 -07005463 if (!ethdev)
5464 return NULL;
5465
5466 pdev = ethdev->pdev;
5467 if (!pdev)
5468 return NULL;
5469
5470 dev_hold(dev);
5471 pci_dev_get(pdev);
Sergei Shtylyovff938e42011-02-28 11:57:33 -08005472 if ((pdev->device == PCI_DEVICE_ID_NX2_5709 ||
5473 pdev->device == PCI_DEVICE_ID_NX2_5709S) &&
5474 (pdev->revision < 0x10)) {
5475 pci_dev_put(pdev);
5476 goto cnic_err;
Michael Chana4636962009-06-08 18:14:43 -07005477 }
5478 pci_dev_put(pdev);
5479
5480 cdev = cnic_alloc_dev(dev, pdev);
5481 if (cdev == NULL)
5482 goto cnic_err;
5483
5484 set_bit(CNIC_F_BNX2_CLASS, &cdev->flags);
5485 cdev->submit_kwqes = cnic_submit_bnx2_kwqes;
5486
5487 cp = cdev->cnic_priv;
5488 cp->ethdev = ethdev;
5489 cdev->pcidev = pdev;
Michael Chanee87a822010-10-13 14:06:51 +00005490 cp->chip_id = ethdev->chip_id;
Michael Chana4636962009-06-08 18:14:43 -07005491
Michael Chan7625eb22011-06-08 19:29:36 +00005492 cdev->max_iscsi_conn = ethdev->max_iscsi_conn;
5493
Michael Chana4636962009-06-08 18:14:43 -07005494 cp->cnic_ops = &cnic_bnx2_ops;
5495 cp->start_hw = cnic_start_bnx2_hw;
5496 cp->stop_hw = cnic_stop_bnx2_hw;
5497 cp->setup_pgtbl = cnic_setup_page_tbl;
5498 cp->alloc_resc = cnic_alloc_bnx2_resc;
5499 cp->free_resc = cnic_free_resc;
5500 cp->start_cm = cnic_cm_init_bnx2_hw;
5501 cp->stop_cm = cnic_cm_stop_bnx2_hw;
5502 cp->enable_int = cnic_enable_bnx2_int;
5503 cp->disable_int_sync = cnic_disable_bnx2_int_sync;
5504 cp->close_conn = cnic_close_bnx2_conn;
Michael Chana4636962009-06-08 18:14:43 -07005505 return cdev;
5506
5507cnic_err:
5508 dev_put(dev);
5509 return NULL;
5510}
5511
Michael Chan71034ba2009-10-10 13:46:59 +00005512static struct cnic_dev *init_bnx2x_cnic(struct net_device *dev)
5513{
5514 struct pci_dev *pdev;
5515 struct cnic_dev *cdev;
5516 struct cnic_local *cp;
Michael Chan4bd9b0ff2012-12-06 10:33:12 +00005517 struct bnx2x *bp = netdev_priv(dev);
Michael Chan71034ba2009-10-10 13:46:59 +00005518 struct cnic_eth_dev *ethdev = NULL;
Michael Chan71034ba2009-10-10 13:46:59 +00005519
Michael Chan4bd9b0ff2012-12-06 10:33:12 +00005520 if (bp->cnic_probe)
5521 ethdev = bp->cnic_probe(dev);
5522
Michael Chan71034ba2009-10-10 13:46:59 +00005523 if (!ethdev)
5524 return NULL;
5525
5526 pdev = ethdev->pdev;
5527 if (!pdev)
5528 return NULL;
5529
5530 dev_hold(dev);
5531 cdev = cnic_alloc_dev(dev, pdev);
5532 if (cdev == NULL) {
5533 dev_put(dev);
5534 return NULL;
5535 }
5536
5537 set_bit(CNIC_F_BNX2X_CLASS, &cdev->flags);
5538 cdev->submit_kwqes = cnic_submit_bnx2x_kwqes;
5539
5540 cp = cdev->cnic_priv;
5541 cp->ethdev = ethdev;
5542 cdev->pcidev = pdev;
Michael Chanee87a822010-10-13 14:06:51 +00005543 cp->chip_id = ethdev->chip_id;
Michael Chan71034ba2009-10-10 13:46:59 +00005544
Barak Witkowski1d187b32011-12-05 22:41:50 +00005545 cdev->stats_addr = ethdev->addr_drv_info_to_mcp;
5546
Vladislav Zolotarov2ba45142011-01-31 14:39:17 +00005547 if (!(ethdev->drv_state & CNIC_DRV_STATE_NO_ISCSI))
5548 cdev->max_iscsi_conn = ethdev->max_iscsi_conn;
Bhanu Prakash Gollapudi0eb43b42013-04-22 19:22:30 +00005549 if (CNIC_SUPPORTS_FCOE(cp)) {
Vladislav Zolotarov2ba45142011-01-31 14:39:17 +00005550 cdev->max_fcoe_conn = ethdev->max_fcoe_conn;
Bhanu Prakash Gollapudi0eb43b42013-04-22 19:22:30 +00005551 cdev->max_fcoe_exchanges = ethdev->max_fcoe_exchanges;
5552 }
Vladislav Zolotarov2ba45142011-01-31 14:39:17 +00005553
Michael Chandc219a22011-08-26 09:45:39 +00005554 if (cdev->max_fcoe_conn > BNX2X_FCOE_NUM_CONNECTIONS)
5555 cdev->max_fcoe_conn = BNX2X_FCOE_NUM_CONNECTIONS;
5556
Vladislav Zolotarov2ba45142011-01-31 14:39:17 +00005557 memcpy(cdev->mac_addr, ethdev->iscsi_mac, 6);
5558
Michael Chan71034ba2009-10-10 13:46:59 +00005559 cp->cnic_ops = &cnic_bnx2x_ops;
5560 cp->start_hw = cnic_start_bnx2x_hw;
5561 cp->stop_hw = cnic_stop_bnx2x_hw;
5562 cp->setup_pgtbl = cnic_setup_page_tbl_le;
5563 cp->alloc_resc = cnic_alloc_bnx2x_resc;
5564 cp->free_resc = cnic_free_resc;
5565 cp->start_cm = cnic_cm_init_bnx2x_hw;
5566 cp->stop_cm = cnic_cm_stop_bnx2x_hw;
5567 cp->enable_int = cnic_enable_bnx2x_int;
5568 cp->disable_int_sync = cnic_disable_bnx2x_int_sync;
Michael Chan8cc0e022012-09-08 06:01:03 +00005569 if (BNX2X_CHIP_IS_E2_PLUS(cp->chip_id)) {
Michael Chanee87a822010-10-13 14:06:51 +00005570 cp->ack_int = cnic_ack_bnx2x_e2_msix;
Michael Chan8cc0e022012-09-08 06:01:03 +00005571 cp->arm_int = cnic_arm_bnx2x_e2_msix;
5572 } else {
Michael Chanee87a822010-10-13 14:06:51 +00005573 cp->ack_int = cnic_ack_bnx2x_msix;
Michael Chan8cc0e022012-09-08 06:01:03 +00005574 cp->arm_int = cnic_arm_bnx2x_msix;
5575 }
Michael Chan71034ba2009-10-10 13:46:59 +00005576 cp->close_conn = cnic_close_bnx2x_conn;
Michael Chan71034ba2009-10-10 13:46:59 +00005577 return cdev;
5578}
5579
Michael Chana4636962009-06-08 18:14:43 -07005580static struct cnic_dev *is_cnic_dev(struct net_device *dev)
5581{
5582 struct ethtool_drvinfo drvinfo;
5583 struct cnic_dev *cdev = NULL;
5584
5585 if (dev->ethtool_ops && dev->ethtool_ops->get_drvinfo) {
5586 memset(&drvinfo, 0, sizeof(drvinfo));
5587 dev->ethtool_ops->get_drvinfo(dev, &drvinfo);
5588
5589 if (!strcmp(drvinfo.driver, "bnx2"))
5590 cdev = init_bnx2_cnic(dev);
Michael Chan71034ba2009-10-10 13:46:59 +00005591 if (!strcmp(drvinfo.driver, "bnx2x"))
5592 cdev = init_bnx2x_cnic(dev);
Michael Chana4636962009-06-08 18:14:43 -07005593 if (cdev) {
5594 write_lock(&cnic_dev_lock);
5595 list_add(&cdev->list, &cnic_dev_list);
5596 write_unlock(&cnic_dev_lock);
5597 }
5598 }
5599 return cdev;
5600}
5601
Michael Chan415199f2011-07-20 14:55:24 +00005602static void cnic_rcv_netevent(struct cnic_local *cp, unsigned long event,
5603 u16 vlan_id)
5604{
5605 int if_type;
5606
5607 rcu_read_lock();
5608 for (if_type = 0; if_type < MAX_CNIC_ULP_TYPE; if_type++) {
5609 struct cnic_ulp_ops *ulp_ops;
5610 void *ctx;
5611
5612 ulp_ops = rcu_dereference(cp->ulp_ops[if_type]);
5613 if (!ulp_ops || !ulp_ops->indicate_netevent)
5614 continue;
5615
5616 ctx = cp->ulp_handle[if_type];
5617
5618 ulp_ops->indicate_netevent(ctx, event, vlan_id);
5619 }
5620 rcu_read_unlock();
5621}
5622
Ben Hutchings1aa8b472012-07-10 10:56:59 +00005623/* netdev event handler */
Michael Chana4636962009-06-08 18:14:43 -07005624static int cnic_netdev_event(struct notifier_block *this, unsigned long event,
5625 void *ptr)
5626{
Jiri Pirko351638e2013-05-28 01:30:21 +00005627 struct net_device *netdev = netdev_notifier_info_to_dev(ptr);
Michael Chana4636962009-06-08 18:14:43 -07005628 struct cnic_dev *dev;
Michael Chana4636962009-06-08 18:14:43 -07005629 int new_dev = 0;
5630
5631 dev = cnic_from_netdev(netdev);
5632
Michael Chan415fb872013-07-28 19:03:55 -07005633 if (!dev && event == NETDEV_REGISTER) {
Michael Chana4636962009-06-08 18:14:43 -07005634 /* Check for the hot-plug device */
5635 dev = is_cnic_dev(netdev);
5636 if (dev) {
5637 new_dev = 1;
5638 cnic_hold(dev);
5639 }
5640 }
5641 if (dev) {
5642 struct cnic_local *cp = dev->cnic_priv;
5643
5644 if (new_dev)
5645 cnic_ulp_init(dev);
5646 else if (event == NETDEV_UNREGISTER)
5647 cnic_ulp_exit(dev);
Michael Chan6053bbf2009-10-02 11:03:28 -07005648
Michael Chan415fb872013-07-28 19:03:55 -07005649 if (event == NETDEV_UP) {
Michael Chana3059b12009-08-14 15:49:44 +00005650 if (cnic_register_netdev(dev) != 0) {
5651 cnic_put(dev);
5652 goto done;
5653 }
Michael Chana4636962009-06-08 18:14:43 -07005654 if (!cnic_start_hw(dev))
5655 cnic_ulp_start(dev);
Michael Chana4636962009-06-08 18:14:43 -07005656 }
5657
Michael Chan415199f2011-07-20 14:55:24 +00005658 cnic_rcv_netevent(cp, event, 0);
Michael Chana4636962009-06-08 18:14:43 -07005659
5660 if (event == NETDEV_GOING_DOWN) {
Michael Chana4636962009-06-08 18:14:43 -07005661 cnic_ulp_stop(dev);
5662 cnic_stop_hw(dev);
Michael Chana3059b12009-08-14 15:49:44 +00005663 cnic_unregister_netdev(dev);
Michael Chana4636962009-06-08 18:14:43 -07005664 } else if (event == NETDEV_UNREGISTER) {
5665 write_lock(&cnic_dev_lock);
5666 list_del_init(&dev->list);
5667 write_unlock(&cnic_dev_lock);
5668
5669 cnic_put(dev);
5670 cnic_free_dev(dev);
5671 goto done;
5672 }
5673 cnic_put(dev);
Michael Chan415199f2011-07-20 14:55:24 +00005674 } else {
5675 struct net_device *realdev;
5676 u16 vid;
5677
5678 vid = cnic_get_vlan(netdev, &realdev);
5679 if (realdev) {
5680 dev = cnic_from_netdev(realdev);
5681 if (dev) {
5682 vid |= VLAN_TAG_PRESENT;
5683 cnic_rcv_netevent(dev->cnic_priv, event, vid);
5684 cnic_put(dev);
5685 }
5686 }
Michael Chana4636962009-06-08 18:14:43 -07005687 }
5688done:
5689 return NOTIFY_DONE;
5690}
5691
5692static struct notifier_block cnic_netdev_notifier = {
5693 .notifier_call = cnic_netdev_event
5694};
5695
5696static void cnic_release(void)
5697{
Michael Chana3ceeeb2010-10-13 14:06:50 +00005698 struct cnic_uio_dev *udev;
Michael Chana4636962009-06-08 18:14:43 -07005699
Michael Chana3ceeeb2010-10-13 14:06:50 +00005700 while (!list_empty(&cnic_udev_list)) {
5701 udev = list_entry(cnic_udev_list.next, struct cnic_uio_dev,
5702 list);
5703 cnic_free_uio(udev);
5704 }
Michael Chana4636962009-06-08 18:14:43 -07005705}
5706
5707static int __init cnic_init(void)
5708{
5709 int rc = 0;
5710
Joe Perchesddf79b22010-02-17 15:01:54 +00005711 pr_info("%s", version);
Michael Chana4636962009-06-08 18:14:43 -07005712
5713 rc = register_netdevice_notifier(&cnic_netdev_notifier);
5714 if (rc) {
5715 cnic_release();
5716 return rc;
5717 }
5718
Michael Chanfdf24082010-10-13 14:06:47 +00005719 cnic_wq = create_singlethread_workqueue("cnic_wq");
5720 if (!cnic_wq) {
5721 cnic_release();
5722 unregister_netdevice_notifier(&cnic_netdev_notifier);
5723 return -ENOMEM;
5724 }
5725
Michael Chana4636962009-06-08 18:14:43 -07005726 return 0;
5727}
5728
5729static void __exit cnic_exit(void)
5730{
5731 unregister_netdevice_notifier(&cnic_netdev_notifier);
5732 cnic_release();
Michael Chanfdf24082010-10-13 14:06:47 +00005733 destroy_workqueue(cnic_wq);
Michael Chana4636962009-06-08 18:14:43 -07005734}
5735
5736module_init(cnic_init);
5737module_exit(cnic_exit);