blob: 5980443cb8950ea9bb229be21d1e9cd42fa8518b [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
43#include "cnic_if.h"
44#include "bnx2.h"
Dmitry Kravkov5d1e8592010-07-27 12:31:10 +000045#include "bnx2x/bnx2x_reg.h"
46#include "bnx2x/bnx2x_fw_defs.h"
47#include "bnx2x/bnx2x_hsi.h"
Jeff Kirsheradfc5212011-04-07 06:03:04 -070048#include "../../../scsi/bnx2i/57xx_iscsi_constants.h"
49#include "../../../scsi/bnx2i/57xx_iscsi_hsi.h"
Michael Chan8ec3e702012-03-21 15:38:34 +000050#include "../../../scsi/bnx2fc/bnx2fc_constants.h"
Michael Chana4636962009-06-08 18:14:43 -070051#include "cnic.h"
52#include "cnic_defs.h"
53
54#define DRV_MODULE_NAME "cnic"
Michael Chana4636962009-06-08 18:14:43 -070055
56static char version[] __devinitdata =
57 "Broadcom NetXtreme II CNIC Driver " DRV_MODULE_NAME " v" CNIC_MODULE_VERSION " (" CNIC_MODULE_RELDATE ")\n";
58
59MODULE_AUTHOR("Michael Chan <mchan@broadcom.com> and John(Zongxi) "
60 "Chen (zongxi@broadcom.com");
61MODULE_DESCRIPTION("Broadcom NetXtreme II CNIC Driver");
62MODULE_LICENSE("GPL");
63MODULE_VERSION(CNIC_MODULE_VERSION);
64
Michael Chan8adc92402010-12-23 07:42:57 +000065/* cnic_dev_list modifications are protected by both rtnl and cnic_dev_lock */
Michael Chana4636962009-06-08 18:14:43 -070066static LIST_HEAD(cnic_dev_list);
Michael Chana3ceeeb2010-10-13 14:06:50 +000067static LIST_HEAD(cnic_udev_list);
Michael Chana4636962009-06-08 18:14:43 -070068static DEFINE_RWLOCK(cnic_dev_lock);
69static DEFINE_MUTEX(cnic_lock);
70
Eric Dumazet13707f92011-01-26 19:28:23 +000071static struct cnic_ulp_ops __rcu *cnic_ulp_tbl[MAX_CNIC_ULP_TYPE];
72
73/* helper function, assuming cnic_lock is held */
74static inline struct cnic_ulp_ops *cnic_ulp_tbl_prot(int type)
75{
76 return rcu_dereference_protected(cnic_ulp_tbl[type],
77 lockdep_is_held(&cnic_lock));
78}
Michael Chana4636962009-06-08 18:14:43 -070079
80static int cnic_service_bnx2(void *, void *);
Michael Chan71034ba2009-10-10 13:46:59 +000081static int cnic_service_bnx2x(void *, void *);
Michael Chana4636962009-06-08 18:14:43 -070082static int cnic_ctl(void *, struct cnic_ctl_info *);
83
84static struct cnic_ops cnic_bnx2_ops = {
85 .cnic_owner = THIS_MODULE,
86 .cnic_handler = cnic_service_bnx2,
87 .cnic_ctl = cnic_ctl,
88};
89
Michael Chan71034ba2009-10-10 13:46:59 +000090static struct cnic_ops cnic_bnx2x_ops = {
91 .cnic_owner = THIS_MODULE,
92 .cnic_handler = cnic_service_bnx2x,
93 .cnic_ctl = cnic_ctl,
94};
95
Michael Chanfdf24082010-10-13 14:06:47 +000096static struct workqueue_struct *cnic_wq;
97
Michael Chan86b53602009-10-10 13:46:57 +000098static void cnic_shutdown_rings(struct cnic_dev *);
99static void cnic_init_rings(struct cnic_dev *);
Michael Chana4636962009-06-08 18:14:43 -0700100static int cnic_cm_set_pg(struct cnic_sock *);
101
102static int cnic_uio_open(struct uio_info *uinfo, struct inode *inode)
103{
Michael Chancd801532010-10-13 14:06:49 +0000104 struct cnic_uio_dev *udev = uinfo->priv;
105 struct cnic_dev *dev;
Michael Chana4636962009-06-08 18:14:43 -0700106
107 if (!capable(CAP_NET_ADMIN))
108 return -EPERM;
109
Michael Chancd801532010-10-13 14:06:49 +0000110 if (udev->uio_dev != -1)
Michael Chana4636962009-06-08 18:14:43 -0700111 return -EBUSY;
112
Michael Chan86b53602009-10-10 13:46:57 +0000113 rtnl_lock();
Michael Chancd801532010-10-13 14:06:49 +0000114 dev = udev->dev;
115
Michael Chana3ceeeb2010-10-13 14:06:50 +0000116 if (!dev || !test_bit(CNIC_F_CNIC_UP, &dev->flags)) {
Michael Chan86b53602009-10-10 13:46:57 +0000117 rtnl_unlock();
118 return -ENODEV;
119 }
120
Michael Chancd801532010-10-13 14:06:49 +0000121 udev->uio_dev = iminor(inode);
Michael Chana4636962009-06-08 18:14:43 -0700122
Michael Chana3ceeeb2010-10-13 14:06:50 +0000123 cnic_shutdown_rings(dev);
Michael Chan86b53602009-10-10 13:46:57 +0000124 cnic_init_rings(dev);
125 rtnl_unlock();
Michael Chana4636962009-06-08 18:14:43 -0700126
127 return 0;
128}
129
130static int cnic_uio_close(struct uio_info *uinfo, struct inode *inode)
131{
Michael Chancd801532010-10-13 14:06:49 +0000132 struct cnic_uio_dev *udev = uinfo->priv;
Michael Chan6ef57a02009-09-21 15:39:37 +0000133
Michael Chancd801532010-10-13 14:06:49 +0000134 udev->uio_dev = -1;
Michael Chana4636962009-06-08 18:14:43 -0700135 return 0;
136}
137
138static inline void cnic_hold(struct cnic_dev *dev)
139{
140 atomic_inc(&dev->ref_count);
141}
142
143static inline void cnic_put(struct cnic_dev *dev)
144{
145 atomic_dec(&dev->ref_count);
146}
147
148static inline void csk_hold(struct cnic_sock *csk)
149{
150 atomic_inc(&csk->ref_count);
151}
152
153static inline void csk_put(struct cnic_sock *csk)
154{
155 atomic_dec(&csk->ref_count);
156}
157
158static struct cnic_dev *cnic_from_netdev(struct net_device *netdev)
159{
160 struct cnic_dev *cdev;
161
162 read_lock(&cnic_dev_lock);
163 list_for_each_entry(cdev, &cnic_dev_list, list) {
164 if (netdev == cdev->netdev) {
165 cnic_hold(cdev);
166 read_unlock(&cnic_dev_lock);
167 return cdev;
168 }
169 }
170 read_unlock(&cnic_dev_lock);
171 return NULL;
172}
173
Michael Chan7fc1ece2009-08-14 15:49:47 +0000174static inline void ulp_get(struct cnic_ulp_ops *ulp_ops)
175{
176 atomic_inc(&ulp_ops->ref_count);
177}
178
179static inline void ulp_put(struct cnic_ulp_ops *ulp_ops)
180{
181 atomic_dec(&ulp_ops->ref_count);
182}
183
Michael Chana4636962009-06-08 18:14:43 -0700184static void cnic_ctx_wr(struct cnic_dev *dev, u32 cid_addr, u32 off, u32 val)
185{
186 struct cnic_local *cp = dev->cnic_priv;
187 struct cnic_eth_dev *ethdev = cp->ethdev;
188 struct drv_ctl_info info;
189 struct drv_ctl_io *io = &info.data.io;
190
191 info.cmd = DRV_CTL_CTX_WR_CMD;
192 io->cid_addr = cid_addr;
193 io->offset = off;
194 io->data = val;
195 ethdev->drv_ctl(dev->netdev, &info);
196}
197
Michael Chan71034ba2009-10-10 13:46:59 +0000198static void cnic_ctx_tbl_wr(struct cnic_dev *dev, u32 off, dma_addr_t addr)
199{
200 struct cnic_local *cp = dev->cnic_priv;
201 struct cnic_eth_dev *ethdev = cp->ethdev;
202 struct drv_ctl_info info;
203 struct drv_ctl_io *io = &info.data.io;
204
205 info.cmd = DRV_CTL_CTXTBL_WR_CMD;
206 io->offset = off;
207 io->dma_addr = addr;
208 ethdev->drv_ctl(dev->netdev, &info);
209}
210
211static void cnic_ring_ctl(struct cnic_dev *dev, u32 cid, u32 cl_id, int start)
212{
213 struct cnic_local *cp = dev->cnic_priv;
214 struct cnic_eth_dev *ethdev = cp->ethdev;
215 struct drv_ctl_info info;
216 struct drv_ctl_l2_ring *ring = &info.data.ring;
217
218 if (start)
219 info.cmd = DRV_CTL_START_L2_CMD;
220 else
221 info.cmd = DRV_CTL_STOP_L2_CMD;
222
223 ring->cid = cid;
224 ring->client_id = cl_id;
225 ethdev->drv_ctl(dev->netdev, &info);
226}
227
Michael Chana4636962009-06-08 18:14:43 -0700228static void cnic_reg_wr_ind(struct cnic_dev *dev, u32 off, u32 val)
229{
230 struct cnic_local *cp = dev->cnic_priv;
231 struct cnic_eth_dev *ethdev = cp->ethdev;
232 struct drv_ctl_info info;
233 struct drv_ctl_io *io = &info.data.io;
234
235 info.cmd = DRV_CTL_IO_WR_CMD;
236 io->offset = off;
237 io->data = val;
238 ethdev->drv_ctl(dev->netdev, &info);
239}
240
241static u32 cnic_reg_rd_ind(struct cnic_dev *dev, u32 off)
242{
243 struct cnic_local *cp = dev->cnic_priv;
244 struct cnic_eth_dev *ethdev = cp->ethdev;
245 struct drv_ctl_info info;
246 struct drv_ctl_io *io = &info.data.io;
247
248 info.cmd = DRV_CTL_IO_RD_CMD;
249 io->offset = off;
250 ethdev->drv_ctl(dev->netdev, &info);
251 return io->data;
252}
253
Barak Witkowski1d187b32011-12-05 22:41:50 +0000254static void cnic_ulp_ctl(struct cnic_dev *dev, int ulp_type, bool reg)
255{
256 struct cnic_local *cp = dev->cnic_priv;
257 struct cnic_eth_dev *ethdev = cp->ethdev;
258 struct drv_ctl_info info;
Barak Witkowski2e499d32012-06-26 01:31:19 +0000259 struct fcoe_capabilities *fcoe_cap =
260 &info.data.register_data.fcoe_features;
Barak Witkowski1d187b32011-12-05 22:41:50 +0000261
Barak Witkowski2e499d32012-06-26 01:31:19 +0000262 if (reg) {
Barak Witkowski1d187b32011-12-05 22:41:50 +0000263 info.cmd = DRV_CTL_ULP_REGISTER_CMD;
Barak Witkowski2e499d32012-06-26 01:31:19 +0000264 if (ulp_type == CNIC_ULP_FCOE && dev->fcoe_cap)
265 memcpy(fcoe_cap, dev->fcoe_cap, sizeof(*fcoe_cap));
266 } else {
Barak Witkowski1d187b32011-12-05 22:41:50 +0000267 info.cmd = DRV_CTL_ULP_UNREGISTER_CMD;
Barak Witkowski2e499d32012-06-26 01:31:19 +0000268 }
Barak Witkowski1d187b32011-12-05 22:41:50 +0000269
270 info.data.ulp_type = ulp_type;
271 ethdev->drv_ctl(dev->netdev, &info);
272}
273
Michael Chana4636962009-06-08 18:14:43 -0700274static int cnic_in_use(struct cnic_sock *csk)
275{
276 return test_bit(SK_F_INUSE, &csk->flags);
277}
278
Dmitry Kravkovc2bff632010-10-06 03:33:18 +0000279static void cnic_spq_completion(struct cnic_dev *dev, int cmd, u32 count)
Michael Chana4636962009-06-08 18:14:43 -0700280{
281 struct cnic_local *cp = dev->cnic_priv;
282 struct cnic_eth_dev *ethdev = cp->ethdev;
283 struct drv_ctl_info info;
284
Dmitry Kravkovc2bff632010-10-06 03:33:18 +0000285 info.cmd = cmd;
286 info.data.credit.credit_count = count;
Michael Chana4636962009-06-08 18:14:43 -0700287 ethdev->drv_ctl(dev->netdev, &info);
288}
289
Michael Chan71034ba2009-10-10 13:46:59 +0000290static int cnic_get_l5_cid(struct cnic_local *cp, u32 cid, u32 *l5_cid)
291{
292 u32 i;
293
Michael Chana2028b232012-06-27 15:08:19 +0000294 if (!cp->ctx_tbl)
295 return -EINVAL;
296
Michael Chan520efdf2010-06-24 14:58:37 +0000297 for (i = 0; i < cp->max_cid_space; i++) {
Michael Chan71034ba2009-10-10 13:46:59 +0000298 if (cp->ctx_tbl[i].cid == cid) {
299 *l5_cid = i;
300 return 0;
301 }
302 }
303 return -EINVAL;
304}
305
Michael Chana4636962009-06-08 18:14:43 -0700306static int cnic_send_nlmsg(struct cnic_local *cp, u32 type,
307 struct cnic_sock *csk)
308{
309 struct iscsi_path path_req;
310 char *buf = NULL;
311 u16 len = 0;
312 u32 msg_type = ISCSI_KEVENT_IF_DOWN;
313 struct cnic_ulp_ops *ulp_ops;
Michael Chancd801532010-10-13 14:06:49 +0000314 struct cnic_uio_dev *udev = cp->udev;
Michael Chan939b82e2010-12-23 07:42:58 +0000315 int rc = 0, retry = 0;
Michael Chana4636962009-06-08 18:14:43 -0700316
Michael Chancd801532010-10-13 14:06:49 +0000317 if (!udev || udev->uio_dev == -1)
Michael Chana4636962009-06-08 18:14:43 -0700318 return -ENODEV;
319
320 if (csk) {
321 len = sizeof(path_req);
322 buf = (char *) &path_req;
323 memset(&path_req, 0, len);
324
325 msg_type = ISCSI_KEVENT_PATH_REQ;
326 path_req.handle = (u64) csk->l5_cid;
327 if (test_bit(SK_F_IPV6, &csk->flags)) {
328 memcpy(&path_req.dst.v6_addr, &csk->dst_ip[0],
329 sizeof(struct in6_addr));
330 path_req.ip_addr_len = 16;
331 } else {
332 memcpy(&path_req.dst.v4_addr, &csk->dst_ip[0],
333 sizeof(struct in_addr));
334 path_req.ip_addr_len = 4;
335 }
336 path_req.vlan_id = csk->vlan_id;
337 path_req.pmtu = csk->mtu;
338 }
339
Michael Chan939b82e2010-12-23 07:42:58 +0000340 while (retry < 3) {
341 rc = 0;
342 rcu_read_lock();
343 ulp_ops = rcu_dereference(cnic_ulp_tbl[CNIC_ULP_ISCSI]);
344 if (ulp_ops)
345 rc = ulp_ops->iscsi_nl_send_msg(
346 cp->ulp_handle[CNIC_ULP_ISCSI],
347 msg_type, buf, len);
348 rcu_read_unlock();
349 if (rc == 0 || msg_type != ISCSI_KEVENT_PATH_REQ)
350 break;
351
352 msleep(100);
353 retry++;
354 }
Michael Chan558e4c72011-07-13 17:24:20 +0000355 return rc;
Michael Chana4636962009-06-08 18:14:43 -0700356}
357
Eddie Wai42ecbb82010-12-23 07:43:02 +0000358static void cnic_cm_upcall(struct cnic_local *, struct cnic_sock *, u8);
359
Michael Chana4636962009-06-08 18:14:43 -0700360static int cnic_iscsi_nl_msg_recv(struct cnic_dev *dev, u32 msg_type,
361 char *buf, u16 len)
362{
363 int rc = -EINVAL;
364
365 switch (msg_type) {
366 case ISCSI_UEVENT_PATH_UPDATE: {
367 struct cnic_local *cp;
368 u32 l5_cid;
369 struct cnic_sock *csk;
370 struct iscsi_path *path_resp;
371
372 if (len < sizeof(*path_resp))
373 break;
374
375 path_resp = (struct iscsi_path *) buf;
376 cp = dev->cnic_priv;
377 l5_cid = (u32) path_resp->handle;
378 if (l5_cid >= MAX_CM_SK_TBL_SZ)
379 break;
380
Michael Chand02a5e62010-02-24 14:42:06 +0000381 rcu_read_lock();
382 if (!rcu_dereference(cp->ulp_ops[CNIC_ULP_L4])) {
383 rc = -ENODEV;
384 rcu_read_unlock();
385 break;
386 }
Michael Chana4636962009-06-08 18:14:43 -0700387 csk = &cp->csk_tbl[l5_cid];
388 csk_hold(csk);
Eddie Wai42ecbb82010-12-23 07:43:02 +0000389 if (cnic_in_use(csk) &&
390 test_bit(SK_F_CONNECT_START, &csk->flags)) {
391
Eddie Wai4cbbb042012-02-08 17:33:57 +0000392 csk->vlan_id = path_resp->vlan_id;
393
Michael Chana4636962009-06-08 18:14:43 -0700394 memcpy(csk->ha, path_resp->mac_addr, 6);
395 if (test_bit(SK_F_IPV6, &csk->flags))
396 memcpy(&csk->src_ip[0], &path_resp->src.v6_addr,
397 sizeof(struct in6_addr));
398 else
399 memcpy(&csk->src_ip[0], &path_resp->src.v4_addr,
400 sizeof(struct in_addr));
Eddie Wai42ecbb82010-12-23 07:43:02 +0000401
402 if (is_valid_ether_addr(csk->ha)) {
Michael Chana4636962009-06-08 18:14:43 -0700403 cnic_cm_set_pg(csk);
Eddie Wai42ecbb82010-12-23 07:43:02 +0000404 } else if (!test_bit(SK_F_OFFLD_SCHED, &csk->flags) &&
405 !test_bit(SK_F_OFFLD_COMPLETE, &csk->flags)) {
406
407 cnic_cm_upcall(cp, csk,
408 L4_KCQE_OPCODE_VALUE_CONNECT_COMPLETE);
409 clear_bit(SK_F_CONNECT_START, &csk->flags);
410 }
Michael Chana4636962009-06-08 18:14:43 -0700411 }
412 csk_put(csk);
Michael Chand02a5e62010-02-24 14:42:06 +0000413 rcu_read_unlock();
Michael Chana4636962009-06-08 18:14:43 -0700414 rc = 0;
415 }
416 }
417
418 return rc;
419}
420
421static int cnic_offld_prep(struct cnic_sock *csk)
422{
423 if (test_and_set_bit(SK_F_OFFLD_SCHED, &csk->flags))
424 return 0;
425
426 if (!test_bit(SK_F_CONNECT_START, &csk->flags)) {
427 clear_bit(SK_F_OFFLD_SCHED, &csk->flags);
428 return 0;
429 }
430
431 return 1;
432}
433
434static int cnic_close_prep(struct cnic_sock *csk)
435{
436 clear_bit(SK_F_CONNECT_START, &csk->flags);
437 smp_mb__after_clear_bit();
438
439 if (test_and_clear_bit(SK_F_OFFLD_COMPLETE, &csk->flags)) {
440 while (test_and_set_bit(SK_F_OFFLD_SCHED, &csk->flags))
441 msleep(1);
442
443 return 1;
444 }
445 return 0;
446}
447
448static int cnic_abort_prep(struct cnic_sock *csk)
449{
450 clear_bit(SK_F_CONNECT_START, &csk->flags);
451 smp_mb__after_clear_bit();
452
453 while (test_and_set_bit(SK_F_OFFLD_SCHED, &csk->flags))
454 msleep(1);
455
456 if (test_and_clear_bit(SK_F_OFFLD_COMPLETE, &csk->flags)) {
457 csk->state = L4_KCQE_OPCODE_VALUE_RESET_COMP;
458 return 1;
459 }
460
461 return 0;
462}
463
464int cnic_register_driver(int ulp_type, struct cnic_ulp_ops *ulp_ops)
465{
466 struct cnic_dev *dev;
467
roel kluin0d37f362009-11-02 06:53:44 +0000468 if (ulp_type < 0 || ulp_type >= MAX_CNIC_ULP_TYPE) {
Joe Perchesddf79b22010-02-17 15:01:54 +0000469 pr_err("%s: Bad type %d\n", __func__, ulp_type);
Michael Chana4636962009-06-08 18:14:43 -0700470 return -EINVAL;
471 }
472 mutex_lock(&cnic_lock);
Eric Dumazet13707f92011-01-26 19:28:23 +0000473 if (cnic_ulp_tbl_prot(ulp_type)) {
Joe Perchesddf79b22010-02-17 15:01:54 +0000474 pr_err("%s: Type %d has already been registered\n",
475 __func__, ulp_type);
Michael Chana4636962009-06-08 18:14:43 -0700476 mutex_unlock(&cnic_lock);
477 return -EBUSY;
478 }
479
480 read_lock(&cnic_dev_lock);
481 list_for_each_entry(dev, &cnic_dev_list, list) {
482 struct cnic_local *cp = dev->cnic_priv;
483
484 clear_bit(ULP_F_INIT, &cp->ulp_flags[ulp_type]);
485 }
486 read_unlock(&cnic_dev_lock);
487
Michael Chan7fc1ece2009-08-14 15:49:47 +0000488 atomic_set(&ulp_ops->ref_count, 0);
Michael Chana4636962009-06-08 18:14:43 -0700489 rcu_assign_pointer(cnic_ulp_tbl[ulp_type], ulp_ops);
490 mutex_unlock(&cnic_lock);
491
492 /* Prevent race conditions with netdev_event */
493 rtnl_lock();
Michael Chana4636962009-06-08 18:14:43 -0700494 list_for_each_entry(dev, &cnic_dev_list, list) {
495 struct cnic_local *cp = dev->cnic_priv;
496
497 if (!test_and_set_bit(ULP_F_INIT, &cp->ulp_flags[ulp_type]))
498 ulp_ops->cnic_init(dev);
499 }
Michael Chana4636962009-06-08 18:14:43 -0700500 rtnl_unlock();
501
502 return 0;
503}
504
505int cnic_unregister_driver(int ulp_type)
506{
507 struct cnic_dev *dev;
Michael Chan7fc1ece2009-08-14 15:49:47 +0000508 struct cnic_ulp_ops *ulp_ops;
509 int i = 0;
Michael Chana4636962009-06-08 18:14:43 -0700510
roel kluin0d37f362009-11-02 06:53:44 +0000511 if (ulp_type < 0 || ulp_type >= MAX_CNIC_ULP_TYPE) {
Joe Perchesddf79b22010-02-17 15:01:54 +0000512 pr_err("%s: Bad type %d\n", __func__, ulp_type);
Michael Chana4636962009-06-08 18:14:43 -0700513 return -EINVAL;
514 }
515 mutex_lock(&cnic_lock);
Eric Dumazet13707f92011-01-26 19:28:23 +0000516 ulp_ops = cnic_ulp_tbl_prot(ulp_type);
Michael Chan7fc1ece2009-08-14 15:49:47 +0000517 if (!ulp_ops) {
Joe Perchesddf79b22010-02-17 15:01:54 +0000518 pr_err("%s: Type %d has not been registered\n",
519 __func__, ulp_type);
Michael Chana4636962009-06-08 18:14:43 -0700520 goto out_unlock;
521 }
522 read_lock(&cnic_dev_lock);
523 list_for_each_entry(dev, &cnic_dev_list, list) {
524 struct cnic_local *cp = dev->cnic_priv;
525
526 if (rcu_dereference(cp->ulp_ops[ulp_type])) {
Joe Perchesddf79b22010-02-17 15:01:54 +0000527 pr_err("%s: Type %d still has devices registered\n",
528 __func__, ulp_type);
Michael Chana4636962009-06-08 18:14:43 -0700529 read_unlock(&cnic_dev_lock);
530 goto out_unlock;
531 }
532 }
533 read_unlock(&cnic_dev_lock);
534
Eric Dumazet2cfa5a02011-11-23 07:09:32 +0000535 RCU_INIT_POINTER(cnic_ulp_tbl[ulp_type], NULL);
Michael Chana4636962009-06-08 18:14:43 -0700536
537 mutex_unlock(&cnic_lock);
538 synchronize_rcu();
Michael Chan7fc1ece2009-08-14 15:49:47 +0000539 while ((atomic_read(&ulp_ops->ref_count) != 0) && (i < 20)) {
540 msleep(100);
541 i++;
542 }
543
544 if (atomic_read(&ulp_ops->ref_count) != 0)
Joe Perchesddf79b22010-02-17 15:01:54 +0000545 netdev_warn(dev->netdev, "Failed waiting for ref count to go to zero\n");
Michael Chana4636962009-06-08 18:14:43 -0700546 return 0;
547
548out_unlock:
549 mutex_unlock(&cnic_lock);
550 return -EINVAL;
551}
552
553static int cnic_start_hw(struct cnic_dev *);
554static void cnic_stop_hw(struct cnic_dev *);
555
556static int cnic_register_device(struct cnic_dev *dev, int ulp_type,
557 void *ulp_ctx)
558{
559 struct cnic_local *cp = dev->cnic_priv;
560 struct cnic_ulp_ops *ulp_ops;
561
roel kluin0d37f362009-11-02 06:53:44 +0000562 if (ulp_type < 0 || ulp_type >= MAX_CNIC_ULP_TYPE) {
Joe Perchesddf79b22010-02-17 15:01:54 +0000563 pr_err("%s: Bad type %d\n", __func__, ulp_type);
Michael Chana4636962009-06-08 18:14:43 -0700564 return -EINVAL;
565 }
566 mutex_lock(&cnic_lock);
Eric Dumazet13707f92011-01-26 19:28:23 +0000567 if (cnic_ulp_tbl_prot(ulp_type) == NULL) {
Joe Perchesddf79b22010-02-17 15:01:54 +0000568 pr_err("%s: Driver with type %d has not been registered\n",
569 __func__, ulp_type);
Michael Chana4636962009-06-08 18:14:43 -0700570 mutex_unlock(&cnic_lock);
571 return -EAGAIN;
572 }
573 if (rcu_dereference(cp->ulp_ops[ulp_type])) {
Joe Perchesddf79b22010-02-17 15:01:54 +0000574 pr_err("%s: Type %d has already been registered to this device\n",
575 __func__, ulp_type);
Michael Chana4636962009-06-08 18:14:43 -0700576 mutex_unlock(&cnic_lock);
577 return -EBUSY;
578 }
579
580 clear_bit(ULP_F_START, &cp->ulp_flags[ulp_type]);
581 cp->ulp_handle[ulp_type] = ulp_ctx;
Eric Dumazet13707f92011-01-26 19:28:23 +0000582 ulp_ops = cnic_ulp_tbl_prot(ulp_type);
Michael Chana4636962009-06-08 18:14:43 -0700583 rcu_assign_pointer(cp->ulp_ops[ulp_type], ulp_ops);
584 cnic_hold(dev);
585
586 if (test_bit(CNIC_F_CNIC_UP, &dev->flags))
587 if (!test_and_set_bit(ULP_F_START, &cp->ulp_flags[ulp_type]))
588 ulp_ops->cnic_start(cp->ulp_handle[ulp_type]);
589
590 mutex_unlock(&cnic_lock);
591
Barak Witkowski1d187b32011-12-05 22:41:50 +0000592 cnic_ulp_ctl(dev, ulp_type, true);
593
Michael Chana4636962009-06-08 18:14:43 -0700594 return 0;
595
596}
597EXPORT_SYMBOL(cnic_register_driver);
598
599static int cnic_unregister_device(struct cnic_dev *dev, int ulp_type)
600{
601 struct cnic_local *cp = dev->cnic_priv;
Michael Chan681dbd72009-08-14 15:49:46 +0000602 int i = 0;
Michael Chana4636962009-06-08 18:14:43 -0700603
roel kluin0d37f362009-11-02 06:53:44 +0000604 if (ulp_type < 0 || ulp_type >= MAX_CNIC_ULP_TYPE) {
Joe Perchesddf79b22010-02-17 15:01:54 +0000605 pr_err("%s: Bad type %d\n", __func__, ulp_type);
Michael Chana4636962009-06-08 18:14:43 -0700606 return -EINVAL;
607 }
608 mutex_lock(&cnic_lock);
609 if (rcu_dereference(cp->ulp_ops[ulp_type])) {
Eric Dumazet2cfa5a02011-11-23 07:09:32 +0000610 RCU_INIT_POINTER(cp->ulp_ops[ulp_type], NULL);
Michael Chana4636962009-06-08 18:14:43 -0700611 cnic_put(dev);
612 } else {
Joe Perchesddf79b22010-02-17 15:01:54 +0000613 pr_err("%s: device not registered to this ulp type %d\n",
614 __func__, ulp_type);
Michael Chana4636962009-06-08 18:14:43 -0700615 mutex_unlock(&cnic_lock);
616 return -EINVAL;
617 }
618 mutex_unlock(&cnic_lock);
619
Michael Chan42bb8d52011-01-03 15:21:46 +0000620 if (ulp_type == CNIC_ULP_ISCSI)
621 cnic_send_nlmsg(cp, ISCSI_KEVENT_IF_DOWN, NULL);
Barak Witkowski2e499d32012-06-26 01:31:19 +0000622 else if (ulp_type == CNIC_ULP_FCOE)
623 dev->fcoe_cap = NULL;
Michael Chan42bb8d52011-01-03 15:21:46 +0000624
Michael Chana4636962009-06-08 18:14:43 -0700625 synchronize_rcu();
626
Michael Chan681dbd72009-08-14 15:49:46 +0000627 while (test_bit(ULP_F_CALL_PENDING, &cp->ulp_flags[ulp_type]) &&
628 i < 20) {
629 msleep(100);
630 i++;
631 }
632 if (test_bit(ULP_F_CALL_PENDING, &cp->ulp_flags[ulp_type]))
Joe Perchesddf79b22010-02-17 15:01:54 +0000633 netdev_warn(dev->netdev, "Failed waiting for ULP up call to complete\n");
Michael Chan681dbd72009-08-14 15:49:46 +0000634
Barak Witkowski1d187b32011-12-05 22:41:50 +0000635 cnic_ulp_ctl(dev, ulp_type, false);
636
Michael Chana4636962009-06-08 18:14:43 -0700637 return 0;
638}
639EXPORT_SYMBOL(cnic_unregister_driver);
640
Eddie Wai11f23aa2011-06-08 19:29:34 +0000641static int cnic_init_id_tbl(struct cnic_id_tbl *id_tbl, u32 size, u32 start_id,
642 u32 next)
Michael Chana4636962009-06-08 18:14:43 -0700643{
644 id_tbl->start = start_id;
645 id_tbl->max = size;
Eddie Wai11f23aa2011-06-08 19:29:34 +0000646 id_tbl->next = next;
Michael Chana4636962009-06-08 18:14:43 -0700647 spin_lock_init(&id_tbl->lock);
648 id_tbl->table = kzalloc(DIV_ROUND_UP(size, 32) * 4, GFP_KERNEL);
649 if (!id_tbl->table)
650 return -ENOMEM;
651
652 return 0;
653}
654
655static void cnic_free_id_tbl(struct cnic_id_tbl *id_tbl)
656{
657 kfree(id_tbl->table);
658 id_tbl->table = NULL;
659}
660
661static int cnic_alloc_id(struct cnic_id_tbl *id_tbl, u32 id)
662{
663 int ret = -1;
664
665 id -= id_tbl->start;
666 if (id >= id_tbl->max)
667 return ret;
668
669 spin_lock(&id_tbl->lock);
670 if (!test_bit(id, id_tbl->table)) {
671 set_bit(id, id_tbl->table);
672 ret = 0;
673 }
674 spin_unlock(&id_tbl->lock);
675 return ret;
676}
677
678/* Returns -1 if not successful */
679static u32 cnic_alloc_new_id(struct cnic_id_tbl *id_tbl)
680{
681 u32 id;
682
683 spin_lock(&id_tbl->lock);
684 id = find_next_zero_bit(id_tbl->table, id_tbl->max, id_tbl->next);
685 if (id >= id_tbl->max) {
686 id = -1;
687 if (id_tbl->next != 0) {
688 id = find_first_zero_bit(id_tbl->table, id_tbl->next);
689 if (id >= id_tbl->next)
690 id = -1;
691 }
692 }
693
694 if (id < id_tbl->max) {
695 set_bit(id, id_tbl->table);
696 id_tbl->next = (id + 1) & (id_tbl->max - 1);
697 id += id_tbl->start;
698 }
699
700 spin_unlock(&id_tbl->lock);
701
702 return id;
703}
704
705static void cnic_free_id(struct cnic_id_tbl *id_tbl, u32 id)
706{
707 if (id == -1)
708 return;
709
710 id -= id_tbl->start;
711 if (id >= id_tbl->max)
712 return;
713
714 clear_bit(id, id_tbl->table);
715}
716
717static void cnic_free_dma(struct cnic_dev *dev, struct cnic_dma *dma)
718{
719 int i;
720
721 if (!dma->pg_arr)
722 return;
723
724 for (i = 0; i < dma->num_pages; i++) {
725 if (dma->pg_arr[i]) {
Michael Chan3248e162009-12-02 15:15:39 +0000726 dma_free_coherent(&dev->pcidev->dev, BCM_PAGE_SIZE,
727 dma->pg_arr[i], dma->pg_map_arr[i]);
Michael Chana4636962009-06-08 18:14:43 -0700728 dma->pg_arr[i] = NULL;
729 }
730 }
731 if (dma->pgtbl) {
Michael Chan3248e162009-12-02 15:15:39 +0000732 dma_free_coherent(&dev->pcidev->dev, dma->pgtbl_size,
733 dma->pgtbl, dma->pgtbl_map);
Michael Chana4636962009-06-08 18:14:43 -0700734 dma->pgtbl = NULL;
735 }
736 kfree(dma->pg_arr);
737 dma->pg_arr = NULL;
738 dma->num_pages = 0;
739}
740
741static void cnic_setup_page_tbl(struct cnic_dev *dev, struct cnic_dma *dma)
742{
743 int i;
Michael Chan51388262011-01-25 22:14:50 +0000744 __le32 *page_table = (__le32 *) dma->pgtbl;
Michael Chana4636962009-06-08 18:14:43 -0700745
746 for (i = 0; i < dma->num_pages; i++) {
747 /* Each entry needs to be in big endian format. */
Michael Chan51388262011-01-25 22:14:50 +0000748 *page_table = cpu_to_le32((u64) dma->pg_map_arr[i] >> 32);
Michael Chana4636962009-06-08 18:14:43 -0700749 page_table++;
Michael Chan51388262011-01-25 22:14:50 +0000750 *page_table = cpu_to_le32(dma->pg_map_arr[i] & 0xffffffff);
Michael Chana4636962009-06-08 18:14:43 -0700751 page_table++;
752 }
753}
754
Michael Chan71034ba2009-10-10 13:46:59 +0000755static void cnic_setup_page_tbl_le(struct cnic_dev *dev, struct cnic_dma *dma)
756{
757 int i;
Michael Chan51388262011-01-25 22:14:50 +0000758 __le32 *page_table = (__le32 *) dma->pgtbl;
Michael Chan71034ba2009-10-10 13:46:59 +0000759
760 for (i = 0; i < dma->num_pages; i++) {
761 /* Each entry needs to be in little endian format. */
Michael Chan51388262011-01-25 22:14:50 +0000762 *page_table = cpu_to_le32(dma->pg_map_arr[i] & 0xffffffff);
Michael Chan71034ba2009-10-10 13:46:59 +0000763 page_table++;
Michael Chan51388262011-01-25 22:14:50 +0000764 *page_table = cpu_to_le32((u64) dma->pg_map_arr[i] >> 32);
Michael Chan71034ba2009-10-10 13:46:59 +0000765 page_table++;
766 }
767}
768
Michael Chana4636962009-06-08 18:14:43 -0700769static int cnic_alloc_dma(struct cnic_dev *dev, struct cnic_dma *dma,
770 int pages, int use_pg_tbl)
771{
772 int i, size;
773 struct cnic_local *cp = dev->cnic_priv;
774
775 size = pages * (sizeof(void *) + sizeof(dma_addr_t));
776 dma->pg_arr = kzalloc(size, GFP_ATOMIC);
777 if (dma->pg_arr == NULL)
778 return -ENOMEM;
779
780 dma->pg_map_arr = (dma_addr_t *) (dma->pg_arr + pages);
781 dma->num_pages = pages;
782
783 for (i = 0; i < pages; i++) {
Michael Chan3248e162009-12-02 15:15:39 +0000784 dma->pg_arr[i] = dma_alloc_coherent(&dev->pcidev->dev,
785 BCM_PAGE_SIZE,
786 &dma->pg_map_arr[i],
787 GFP_ATOMIC);
Michael Chana4636962009-06-08 18:14:43 -0700788 if (dma->pg_arr[i] == NULL)
789 goto error;
790 }
791 if (!use_pg_tbl)
792 return 0;
793
794 dma->pgtbl_size = ((pages * 8) + BCM_PAGE_SIZE - 1) &
795 ~(BCM_PAGE_SIZE - 1);
Michael Chan3248e162009-12-02 15:15:39 +0000796 dma->pgtbl = dma_alloc_coherent(&dev->pcidev->dev, dma->pgtbl_size,
797 &dma->pgtbl_map, GFP_ATOMIC);
Michael Chana4636962009-06-08 18:14:43 -0700798 if (dma->pgtbl == NULL)
799 goto error;
800
801 cp->setup_pgtbl(dev, dma);
802
803 return 0;
804
805error:
806 cnic_free_dma(dev, dma);
807 return -ENOMEM;
808}
809
Michael Chan86b53602009-10-10 13:46:57 +0000810static void cnic_free_context(struct cnic_dev *dev)
811{
812 struct cnic_local *cp = dev->cnic_priv;
813 int i;
814
815 for (i = 0; i < cp->ctx_blks; i++) {
816 if (cp->ctx_arr[i].ctx) {
Michael Chan3248e162009-12-02 15:15:39 +0000817 dma_free_coherent(&dev->pcidev->dev, cp->ctx_blk_size,
818 cp->ctx_arr[i].ctx,
819 cp->ctx_arr[i].mapping);
Michael Chan86b53602009-10-10 13:46:57 +0000820 cp->ctx_arr[i].ctx = NULL;
821 }
822 }
823}
824
Michael Chancd801532010-10-13 14:06:49 +0000825static void __cnic_free_uio(struct cnic_uio_dev *udev)
Michael Chana4636962009-06-08 18:14:43 -0700826{
Michael Chancd801532010-10-13 14:06:49 +0000827 uio_unregister_device(&udev->cnic_uinfo);
Michael Chana4636962009-06-08 18:14:43 -0700828
Michael Chancd801532010-10-13 14:06:49 +0000829 if (udev->l2_buf) {
830 dma_free_coherent(&udev->pdev->dev, udev->l2_buf_size,
831 udev->l2_buf, udev->l2_buf_map);
832 udev->l2_buf = NULL;
Michael Chana4636962009-06-08 18:14:43 -0700833 }
834
Michael Chancd801532010-10-13 14:06:49 +0000835 if (udev->l2_ring) {
836 dma_free_coherent(&udev->pdev->dev, udev->l2_ring_size,
837 udev->l2_ring, udev->l2_ring_map);
838 udev->l2_ring = NULL;
Michael Chana4636962009-06-08 18:14:43 -0700839 }
Michael Chana3ceeeb2010-10-13 14:06:50 +0000840
841 pci_dev_put(udev->pdev);
842 kfree(udev);
Michael Chanc06c0462010-10-13 14:06:48 +0000843}
844
Michael Chancd801532010-10-13 14:06:49 +0000845static void cnic_free_uio(struct cnic_uio_dev *udev)
Michael Chanc06c0462010-10-13 14:06:48 +0000846{
Michael Chancd801532010-10-13 14:06:49 +0000847 if (!udev)
Michael Chanc06c0462010-10-13 14:06:48 +0000848 return;
849
Michael Chana3ceeeb2010-10-13 14:06:50 +0000850 write_lock(&cnic_dev_lock);
851 list_del_init(&udev->list);
852 write_unlock(&cnic_dev_lock);
Michael Chancd801532010-10-13 14:06:49 +0000853 __cnic_free_uio(udev);
Michael Chanc06c0462010-10-13 14:06:48 +0000854}
855
856static void cnic_free_resc(struct cnic_dev *dev)
857{
858 struct cnic_local *cp = dev->cnic_priv;
Michael Chancd801532010-10-13 14:06:49 +0000859 struct cnic_uio_dev *udev = cp->udev;
Michael Chanc06c0462010-10-13 14:06:48 +0000860
Michael Chancd801532010-10-13 14:06:49 +0000861 if (udev) {
Michael Chana3ceeeb2010-10-13 14:06:50 +0000862 udev->dev = NULL;
Michael Chancd801532010-10-13 14:06:49 +0000863 cp->udev = NULL;
Michael Chanc06c0462010-10-13 14:06:48 +0000864 }
Michael Chana4636962009-06-08 18:14:43 -0700865
Michael Chan86b53602009-10-10 13:46:57 +0000866 cnic_free_context(dev);
Michael Chana4636962009-06-08 18:14:43 -0700867 kfree(cp->ctx_arr);
868 cp->ctx_arr = NULL;
869 cp->ctx_blks = 0;
870
871 cnic_free_dma(dev, &cp->gbl_buf_info);
Michael Chana4636962009-06-08 18:14:43 -0700872 cnic_free_dma(dev, &cp->kwq_info);
Michael Chan71034ba2009-10-10 13:46:59 +0000873 cnic_free_dma(dev, &cp->kwq_16_data_info);
Michael Chane21ba412010-12-23 07:43:03 +0000874 cnic_free_dma(dev, &cp->kcq2.dma);
Michael Chane6c28892010-06-24 14:58:39 +0000875 cnic_free_dma(dev, &cp->kcq1.dma);
Michael Chana4636962009-06-08 18:14:43 -0700876 kfree(cp->iscsi_tbl);
877 cp->iscsi_tbl = NULL;
878 kfree(cp->ctx_tbl);
879 cp->ctx_tbl = NULL;
880
Michael Chane1928c82010-12-23 07:43:04 +0000881 cnic_free_id_tbl(&cp->fcoe_cid_tbl);
Michael Chana4636962009-06-08 18:14:43 -0700882 cnic_free_id_tbl(&cp->cid_tbl);
883}
884
885static int cnic_alloc_context(struct cnic_dev *dev)
886{
887 struct cnic_local *cp = dev->cnic_priv;
888
889 if (CHIP_NUM(cp) == CHIP_NUM_5709) {
890 int i, k, arr_size;
891
892 cp->ctx_blk_size = BCM_PAGE_SIZE;
893 cp->cids_per_blk = BCM_PAGE_SIZE / 128;
894 arr_size = BNX2_MAX_CID / cp->cids_per_blk *
895 sizeof(struct cnic_ctx);
896 cp->ctx_arr = kzalloc(arr_size, GFP_KERNEL);
897 if (cp->ctx_arr == NULL)
898 return -ENOMEM;
899
900 k = 0;
901 for (i = 0; i < 2; i++) {
902 u32 j, reg, off, lo, hi;
903
904 if (i == 0)
905 off = BNX2_PG_CTX_MAP;
906 else
907 off = BNX2_ISCSI_CTX_MAP;
908
909 reg = cnic_reg_rd_ind(dev, off);
910 lo = reg >> 16;
911 hi = reg & 0xffff;
912 for (j = lo; j < hi; j += cp->cids_per_blk, k++)
913 cp->ctx_arr[k].cid = j;
914 }
915
916 cp->ctx_blks = k;
917 if (cp->ctx_blks >= (BNX2_MAX_CID / cp->cids_per_blk)) {
918 cp->ctx_blks = 0;
919 return -ENOMEM;
920 }
921
922 for (i = 0; i < cp->ctx_blks; i++) {
923 cp->ctx_arr[i].ctx =
Michael Chan3248e162009-12-02 15:15:39 +0000924 dma_alloc_coherent(&dev->pcidev->dev,
925 BCM_PAGE_SIZE,
926 &cp->ctx_arr[i].mapping,
927 GFP_KERNEL);
Michael Chana4636962009-06-08 18:14:43 -0700928 if (cp->ctx_arr[i].ctx == NULL)
929 return -ENOMEM;
930 }
931 }
932 return 0;
933}
934
Michael Chan59e51372011-06-14 01:32:38 +0000935static u16 cnic_bnx2_next_idx(u16 idx)
Michael Chane6c28892010-06-24 14:58:39 +0000936{
Michael Chan59e51372011-06-14 01:32:38 +0000937 return idx + 1;
938}
939
940static u16 cnic_bnx2_hw_idx(u16 idx)
941{
942 return idx;
943}
944
945static u16 cnic_bnx2x_next_idx(u16 idx)
946{
947 idx++;
948 if ((idx & MAX_KCQE_CNT) == MAX_KCQE_CNT)
949 idx++;
950
951 return idx;
952}
953
954static u16 cnic_bnx2x_hw_idx(u16 idx)
955{
956 if ((idx & MAX_KCQE_CNT) == MAX_KCQE_CNT)
957 idx++;
958 return idx;
959}
960
961static int cnic_alloc_kcq(struct cnic_dev *dev, struct kcq_info *info,
962 bool use_pg_tbl)
963{
964 int err, i, use_page_tbl = 0;
Michael Chane6c28892010-06-24 14:58:39 +0000965 struct kcqe **kcq;
966
Michael Chan59e51372011-06-14 01:32:38 +0000967 if (use_pg_tbl)
968 use_page_tbl = 1;
Michael Chane6c28892010-06-24 14:58:39 +0000969
Michael Chan59e51372011-06-14 01:32:38 +0000970 err = cnic_alloc_dma(dev, &info->dma, KCQ_PAGE_CNT, use_page_tbl);
Michael Chane6c28892010-06-24 14:58:39 +0000971 if (err)
972 return err;
973
974 kcq = (struct kcqe **) info->dma.pg_arr;
975 info->kcq = kcq;
976
Michael Chan59e51372011-06-14 01:32:38 +0000977 info->next_idx = cnic_bnx2_next_idx;
978 info->hw_idx = cnic_bnx2_hw_idx;
979 if (use_pg_tbl)
Michael Chane6c28892010-06-24 14:58:39 +0000980 return 0;
981
Michael Chan59e51372011-06-14 01:32:38 +0000982 info->next_idx = cnic_bnx2x_next_idx;
983 info->hw_idx = cnic_bnx2x_hw_idx;
984
Michael Chane6c28892010-06-24 14:58:39 +0000985 for (i = 0; i < KCQ_PAGE_CNT; i++) {
986 struct bnx2x_bd_chain_next *next =
987 (struct bnx2x_bd_chain_next *) &kcq[i][MAX_KCQE_CNT];
988 int j = i + 1;
989
990 if (j >= KCQ_PAGE_CNT)
991 j = 0;
992 next->addr_hi = (u64) info->dma.pg_map_arr[j] >> 32;
993 next->addr_lo = info->dma.pg_map_arr[j] & 0xffffffff;
994 }
995 return 0;
996}
997
Michael Chancd801532010-10-13 14:06:49 +0000998static int cnic_alloc_uio_rings(struct cnic_dev *dev, int pages)
Michael Chanec0248e2009-08-26 09:49:22 +0000999{
1000 struct cnic_local *cp = dev->cnic_priv;
Michael Chancd801532010-10-13 14:06:49 +00001001 struct cnic_uio_dev *udev;
Michael Chanec0248e2009-08-26 09:49:22 +00001002
Michael Chana3ceeeb2010-10-13 14:06:50 +00001003 read_lock(&cnic_dev_lock);
1004 list_for_each_entry(udev, &cnic_udev_list, list) {
1005 if (udev->pdev == dev->pcidev) {
1006 udev->dev = dev;
1007 cp->udev = udev;
1008 read_unlock(&cnic_dev_lock);
1009 return 0;
1010 }
1011 }
1012 read_unlock(&cnic_dev_lock);
1013
Michael Chancd801532010-10-13 14:06:49 +00001014 udev = kzalloc(sizeof(struct cnic_uio_dev), GFP_ATOMIC);
1015 if (!udev)
Michael Chanec0248e2009-08-26 09:49:22 +00001016 return -ENOMEM;
1017
Michael Chancd801532010-10-13 14:06:49 +00001018 udev->uio_dev = -1;
1019
1020 udev->dev = dev;
1021 udev->pdev = dev->pcidev;
1022 udev->l2_ring_size = pages * BCM_PAGE_SIZE;
1023 udev->l2_ring = dma_alloc_coherent(&udev->pdev->dev, udev->l2_ring_size,
1024 &udev->l2_ring_map,
1025 GFP_KERNEL | __GFP_COMP);
1026 if (!udev->l2_ring)
Jesper Juhlf7e4c972010-12-31 11:18:48 -08001027 goto err_udev;
Michael Chanec0248e2009-08-26 09:49:22 +00001028
Michael Chancd801532010-10-13 14:06:49 +00001029 udev->l2_buf_size = (cp->l2_rx_ring_size + 1) * cp->l2_single_buf_size;
1030 udev->l2_buf_size = PAGE_ALIGN(udev->l2_buf_size);
1031 udev->l2_buf = dma_alloc_coherent(&udev->pdev->dev, udev->l2_buf_size,
1032 &udev->l2_buf_map,
1033 GFP_KERNEL | __GFP_COMP);
1034 if (!udev->l2_buf)
Jesper Juhlf7e4c972010-12-31 11:18:48 -08001035 goto err_dma;
Michael Chancd801532010-10-13 14:06:49 +00001036
Michael Chana3ceeeb2010-10-13 14:06:50 +00001037 write_lock(&cnic_dev_lock);
1038 list_add(&udev->list, &cnic_udev_list);
1039 write_unlock(&cnic_dev_lock);
1040
1041 pci_dev_get(udev->pdev);
1042
Michael Chancd801532010-10-13 14:06:49 +00001043 cp->udev = udev;
1044
Michael Chanec0248e2009-08-26 09:49:22 +00001045 return 0;
Jesper Juhlf7e4c972010-12-31 11:18:48 -08001046 err_dma:
1047 dma_free_coherent(&udev->pdev->dev, udev->l2_ring_size,
1048 udev->l2_ring, udev->l2_ring_map);
1049 err_udev:
1050 kfree(udev);
1051 return -ENOMEM;
Michael Chanec0248e2009-08-26 09:49:22 +00001052}
1053
Michael Chancd801532010-10-13 14:06:49 +00001054static int cnic_init_uio(struct cnic_dev *dev)
1055{
Michael Chan5e9b2db2009-08-26 09:49:23 +00001056 struct cnic_local *cp = dev->cnic_priv;
Michael Chancd801532010-10-13 14:06:49 +00001057 struct cnic_uio_dev *udev = cp->udev;
Michael Chan5e9b2db2009-08-26 09:49:23 +00001058 struct uio_info *uinfo;
Michael Chancd801532010-10-13 14:06:49 +00001059 int ret = 0;
Michael Chan5e9b2db2009-08-26 09:49:23 +00001060
Michael Chancd801532010-10-13 14:06:49 +00001061 if (!udev)
Michael Chan5e9b2db2009-08-26 09:49:23 +00001062 return -ENOMEM;
1063
Michael Chancd801532010-10-13 14:06:49 +00001064 uinfo = &udev->cnic_uinfo;
1065
Michael Chan5e9b2db2009-08-26 09:49:23 +00001066 uinfo->mem[0].addr = dev->netdev->base_addr;
1067 uinfo->mem[0].internal_addr = dev->regview;
1068 uinfo->mem[0].size = dev->netdev->mem_end - dev->netdev->mem_start;
1069 uinfo->mem[0].memtype = UIO_MEM_PHYS;
1070
Michael Chan5e9b2db2009-08-26 09:49:23 +00001071 if (test_bit(CNIC_F_BNX2_CLASS, &dev->flags)) {
Michael Chana4dde3a2010-02-24 14:42:08 +00001072 uinfo->mem[1].addr = (unsigned long) cp->status_blk.gen &
Michael Chancd801532010-10-13 14:06:49 +00001073 PAGE_MASK;
Michael Chan5e9b2db2009-08-26 09:49:23 +00001074 if (cp->ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX)
1075 uinfo->mem[1].size = BNX2_SBLK_MSIX_ALIGN_SIZE * 9;
1076 else
1077 uinfo->mem[1].size = BNX2_SBLK_MSIX_ALIGN_SIZE;
1078
1079 uinfo->name = "bnx2_cnic";
Michael Chan71034ba2009-10-10 13:46:59 +00001080 } else if (test_bit(CNIC_F_BNX2X_CLASS, &dev->flags)) {
1081 uinfo->mem[1].addr = (unsigned long) cp->bnx2x_def_status_blk &
1082 PAGE_MASK;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001083 uinfo->mem[1].size = sizeof(*cp->bnx2x_def_status_blk);
Michael Chan71034ba2009-10-10 13:46:59 +00001084
1085 uinfo->name = "bnx2x_cnic";
Michael Chan5e9b2db2009-08-26 09:49:23 +00001086 }
1087
1088 uinfo->mem[1].memtype = UIO_MEM_LOGICAL;
1089
Michael Chancd801532010-10-13 14:06:49 +00001090 uinfo->mem[2].addr = (unsigned long) udev->l2_ring;
1091 uinfo->mem[2].size = udev->l2_ring_size;
Michael Chan5e9b2db2009-08-26 09:49:23 +00001092 uinfo->mem[2].memtype = UIO_MEM_LOGICAL;
1093
Michael Chancd801532010-10-13 14:06:49 +00001094 uinfo->mem[3].addr = (unsigned long) udev->l2_buf;
1095 uinfo->mem[3].size = udev->l2_buf_size;
Michael Chan5e9b2db2009-08-26 09:49:23 +00001096 uinfo->mem[3].memtype = UIO_MEM_LOGICAL;
1097
1098 uinfo->version = CNIC_MODULE_VERSION;
1099 uinfo->irq = UIO_IRQ_CUSTOM;
1100
1101 uinfo->open = cnic_uio_open;
1102 uinfo->release = cnic_uio_close;
1103
Michael Chana3ceeeb2010-10-13 14:06:50 +00001104 if (udev->uio_dev == -1) {
1105 if (!uinfo->priv) {
1106 uinfo->priv = udev;
Michael Chan5e9b2db2009-08-26 09:49:23 +00001107
Michael Chana3ceeeb2010-10-13 14:06:50 +00001108 ret = uio_register_device(&udev->pdev->dev, uinfo);
1109 }
1110 } else {
1111 cnic_init_rings(dev);
1112 }
Michael Chan5e9b2db2009-08-26 09:49:23 +00001113
Michael Chancd801532010-10-13 14:06:49 +00001114 return ret;
Michael Chan5e9b2db2009-08-26 09:49:23 +00001115}
1116
Michael Chana4636962009-06-08 18:14:43 -07001117static int cnic_alloc_bnx2_resc(struct cnic_dev *dev)
1118{
1119 struct cnic_local *cp = dev->cnic_priv;
Michael Chana4636962009-06-08 18:14:43 -07001120 int ret;
1121
1122 ret = cnic_alloc_dma(dev, &cp->kwq_info, KWQ_PAGE_CNT, 1);
1123 if (ret)
1124 goto error;
1125 cp->kwq = (struct kwqe **) cp->kwq_info.pg_arr;
1126
Michael Chan59e51372011-06-14 01:32:38 +00001127 ret = cnic_alloc_kcq(dev, &cp->kcq1, true);
Michael Chana4636962009-06-08 18:14:43 -07001128 if (ret)
1129 goto error;
Michael Chana4636962009-06-08 18:14:43 -07001130
1131 ret = cnic_alloc_context(dev);
1132 if (ret)
1133 goto error;
1134
Michael Chancd801532010-10-13 14:06:49 +00001135 ret = cnic_alloc_uio_rings(dev, 2);
Michael Chanec0248e2009-08-26 09:49:22 +00001136 if (ret)
Michael Chana4636962009-06-08 18:14:43 -07001137 goto error;
1138
Michael Chancd801532010-10-13 14:06:49 +00001139 ret = cnic_init_uio(dev);
Michael Chan5e9b2db2009-08-26 09:49:23 +00001140 if (ret)
Michael Chana4636962009-06-08 18:14:43 -07001141 goto error;
1142
Michael Chana4636962009-06-08 18:14:43 -07001143 return 0;
1144
1145error:
1146 cnic_free_resc(dev);
1147 return ret;
1148}
1149
Michael Chan71034ba2009-10-10 13:46:59 +00001150static int cnic_alloc_bnx2x_context(struct cnic_dev *dev)
1151{
1152 struct cnic_local *cp = dev->cnic_priv;
Michael Chan71034ba2009-10-10 13:46:59 +00001153 int ctx_blk_size = cp->ethdev->ctx_blk_size;
Michael Chan520efdf2010-06-24 14:58:37 +00001154 int total_mem, blks, i;
Michael Chan71034ba2009-10-10 13:46:59 +00001155
Michael Chan520efdf2010-06-24 14:58:37 +00001156 total_mem = BNX2X_CONTEXT_MEM_SIZE * cp->max_cid_space;
Michael Chan71034ba2009-10-10 13:46:59 +00001157 blks = total_mem / ctx_blk_size;
1158 if (total_mem % ctx_blk_size)
1159 blks++;
1160
1161 if (blks > cp->ethdev->ctx_tbl_len)
1162 return -ENOMEM;
1163
Joe Perchesbaeb2ff2010-08-11 07:02:48 +00001164 cp->ctx_arr = kcalloc(blks, sizeof(struct cnic_ctx), GFP_KERNEL);
Michael Chan71034ba2009-10-10 13:46:59 +00001165 if (cp->ctx_arr == NULL)
1166 return -ENOMEM;
1167
1168 cp->ctx_blks = blks;
1169 cp->ctx_blk_size = ctx_blk_size;
Michael Chanee87a822010-10-13 14:06:51 +00001170 if (!BNX2X_CHIP_IS_57710(cp->chip_id))
Michael Chan71034ba2009-10-10 13:46:59 +00001171 cp->ctx_align = 0;
1172 else
1173 cp->ctx_align = ctx_blk_size;
1174
1175 cp->cids_per_blk = ctx_blk_size / BNX2X_CONTEXT_MEM_SIZE;
1176
1177 for (i = 0; i < blks; i++) {
1178 cp->ctx_arr[i].ctx =
Michael Chan3248e162009-12-02 15:15:39 +00001179 dma_alloc_coherent(&dev->pcidev->dev, cp->ctx_blk_size,
1180 &cp->ctx_arr[i].mapping,
1181 GFP_KERNEL);
Michael Chan71034ba2009-10-10 13:46:59 +00001182 if (cp->ctx_arr[i].ctx == NULL)
1183 return -ENOMEM;
1184
1185 if (cp->ctx_align && cp->ctx_blk_size == ctx_blk_size) {
1186 if (cp->ctx_arr[i].mapping & (cp->ctx_align - 1)) {
1187 cnic_free_context(dev);
1188 cp->ctx_blk_size += cp->ctx_align;
1189 i = -1;
1190 continue;
1191 }
1192 }
1193 }
1194 return 0;
1195}
1196
1197static int cnic_alloc_bnx2x_resc(struct cnic_dev *dev)
1198{
1199 struct cnic_local *cp = dev->cnic_priv;
Michael Chan520efdf2010-06-24 14:58:37 +00001200 struct cnic_eth_dev *ethdev = cp->ethdev;
1201 u32 start_cid = ethdev->starting_cid;
Michael Chan71034ba2009-10-10 13:46:59 +00001202 int i, j, n, ret, pages;
1203 struct cnic_dma *kwq_16_dma = &cp->kwq_16_data_info;
1204
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001205 cp->iro_arr = ethdev->iro_arr;
1206
Michael Chanb37a41e2011-07-20 14:55:22 +00001207 cp->max_cid_space = MAX_ISCSI_TBL_SZ;
Michael Chan520efdf2010-06-24 14:58:37 +00001208 cp->iscsi_start_cid = start_cid;
Michael Chane1928c82010-12-23 07:43:04 +00001209 cp->fcoe_start_cid = start_cid + MAX_ISCSI_TBL_SZ;
1210
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001211 if (BNX2X_CHIP_IS_E2_PLUS(cp->chip_id)) {
Michael Chandc219a22011-08-26 09:45:39 +00001212 cp->max_cid_space += dev->max_fcoe_conn;
Michael Chane1928c82010-12-23 07:43:04 +00001213 cp->fcoe_init_cid = ethdev->fcoe_init_cid;
1214 if (!cp->fcoe_init_cid)
1215 cp->fcoe_init_cid = 0x10;
1216 }
1217
Michael Chan71034ba2009-10-10 13:46:59 +00001218 cp->iscsi_tbl = kzalloc(sizeof(struct cnic_iscsi) * MAX_ISCSI_TBL_SZ,
1219 GFP_KERNEL);
1220 if (!cp->iscsi_tbl)
1221 goto error;
1222
1223 cp->ctx_tbl = kzalloc(sizeof(struct cnic_context) *
Michael Chan520efdf2010-06-24 14:58:37 +00001224 cp->max_cid_space, GFP_KERNEL);
Michael Chan71034ba2009-10-10 13:46:59 +00001225 if (!cp->ctx_tbl)
1226 goto error;
1227
1228 for (i = 0; i < MAX_ISCSI_TBL_SZ; i++) {
1229 cp->ctx_tbl[i].proto.iscsi = &cp->iscsi_tbl[i];
1230 cp->ctx_tbl[i].ulp_proto_id = CNIC_ULP_ISCSI;
1231 }
1232
Michael Chane1928c82010-12-23 07:43:04 +00001233 for (i = MAX_ISCSI_TBL_SZ; i < cp->max_cid_space; i++)
1234 cp->ctx_tbl[i].ulp_proto_id = CNIC_ULP_FCOE;
1235
Michael Chan520efdf2010-06-24 14:58:37 +00001236 pages = PAGE_ALIGN(cp->max_cid_space * CNIC_KWQ16_DATA_SIZE) /
Michael Chan71034ba2009-10-10 13:46:59 +00001237 PAGE_SIZE;
1238
1239 ret = cnic_alloc_dma(dev, kwq_16_dma, pages, 0);
1240 if (ret)
1241 return -ENOMEM;
1242
1243 n = PAGE_SIZE / CNIC_KWQ16_DATA_SIZE;
Michael Chan520efdf2010-06-24 14:58:37 +00001244 for (i = 0, j = 0; i < cp->max_cid_space; i++) {
Michael Chan71034ba2009-10-10 13:46:59 +00001245 long off = CNIC_KWQ16_DATA_SIZE * (i % n);
1246
1247 cp->ctx_tbl[i].kwqe_data = kwq_16_dma->pg_arr[j] + off;
1248 cp->ctx_tbl[i].kwqe_data_mapping = kwq_16_dma->pg_map_arr[j] +
1249 off;
1250
1251 if ((i % n) == (n - 1))
1252 j++;
1253 }
1254
Michael Chan59e51372011-06-14 01:32:38 +00001255 ret = cnic_alloc_kcq(dev, &cp->kcq1, false);
Michael Chan71034ba2009-10-10 13:46:59 +00001256 if (ret)
1257 goto error;
Michael Chan71034ba2009-10-10 13:46:59 +00001258
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001259 if (BNX2X_CHIP_IS_E2_PLUS(cp->chip_id)) {
1260 ret = cnic_alloc_kcq(dev, &cp->kcq2, true);
Michael Chane21ba412010-12-23 07:43:03 +00001261 if (ret)
1262 goto error;
1263 }
1264
Michael Chan71034ba2009-10-10 13:46:59 +00001265 pages = PAGE_ALIGN(BNX2X_ISCSI_GLB_BUF_SIZE) / PAGE_SIZE;
1266 ret = cnic_alloc_dma(dev, &cp->gbl_buf_info, pages, 0);
1267 if (ret)
1268 goto error;
1269
1270 ret = cnic_alloc_bnx2x_context(dev);
1271 if (ret)
1272 goto error;
1273
Michael Chan71034ba2009-10-10 13:46:59 +00001274 cp->bnx2x_def_status_blk = cp->ethdev->irq_arr[1].status_blk;
1275
1276 cp->l2_rx_ring_size = 15;
1277
Michael Chancd801532010-10-13 14:06:49 +00001278 ret = cnic_alloc_uio_rings(dev, 4);
Michael Chan71034ba2009-10-10 13:46:59 +00001279 if (ret)
1280 goto error;
1281
Michael Chancd801532010-10-13 14:06:49 +00001282 ret = cnic_init_uio(dev);
Michael Chan71034ba2009-10-10 13:46:59 +00001283 if (ret)
1284 goto error;
1285
1286 return 0;
1287
1288error:
1289 cnic_free_resc(dev);
1290 return -ENOMEM;
1291}
1292
Michael Chana4636962009-06-08 18:14:43 -07001293static inline u32 cnic_kwq_avail(struct cnic_local *cp)
1294{
1295 return cp->max_kwq_idx -
1296 ((cp->kwq_prod_idx - cp->kwq_con_idx) & cp->max_kwq_idx);
1297}
1298
1299static int cnic_submit_bnx2_kwqes(struct cnic_dev *dev, struct kwqe *wqes[],
1300 u32 num_wqes)
1301{
1302 struct cnic_local *cp = dev->cnic_priv;
1303 struct kwqe *prod_qe;
1304 u16 prod, sw_prod, i;
1305
1306 if (!test_bit(CNIC_F_CNIC_UP, &dev->flags))
1307 return -EAGAIN; /* bnx2 is down */
1308
1309 spin_lock_bh(&cp->cnic_ulp_lock);
1310 if (num_wqes > cnic_kwq_avail(cp) &&
Michael Chan1f1332a2010-05-18 11:32:52 +00001311 !test_bit(CNIC_LCL_FL_KWQ_INIT, &cp->cnic_local_flags)) {
Michael Chana4636962009-06-08 18:14:43 -07001312 spin_unlock_bh(&cp->cnic_ulp_lock);
1313 return -EAGAIN;
1314 }
1315
Michael Chan1f1332a2010-05-18 11:32:52 +00001316 clear_bit(CNIC_LCL_FL_KWQ_INIT, &cp->cnic_local_flags);
Michael Chana4636962009-06-08 18:14:43 -07001317
1318 prod = cp->kwq_prod_idx;
1319 sw_prod = prod & MAX_KWQ_IDX;
1320 for (i = 0; i < num_wqes; i++) {
1321 prod_qe = &cp->kwq[KWQ_PG(sw_prod)][KWQ_IDX(sw_prod)];
1322 memcpy(prod_qe, wqes[i], sizeof(struct kwqe));
1323 prod++;
1324 sw_prod = prod & MAX_KWQ_IDX;
1325 }
1326 cp->kwq_prod_idx = prod;
1327
1328 CNIC_WR16(dev, cp->kwq_io_addr, cp->kwq_prod_idx);
1329
1330 spin_unlock_bh(&cp->cnic_ulp_lock);
1331 return 0;
1332}
1333
Michael Chan71034ba2009-10-10 13:46:59 +00001334static void *cnic_get_kwqe_16_data(struct cnic_local *cp, u32 l5_cid,
1335 union l5cm_specific_data *l5_data)
1336{
1337 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
1338 dma_addr_t map;
1339
1340 map = ctx->kwqe_data_mapping;
1341 l5_data->phy_address.lo = (u64) map & 0xffffffff;
1342 l5_data->phy_address.hi = (u64) map >> 32;
1343 return ctx->kwqe_data;
1344}
1345
1346static int cnic_submit_kwqe_16(struct cnic_dev *dev, u32 cmd, u32 cid,
1347 u32 type, union l5cm_specific_data *l5_data)
1348{
1349 struct cnic_local *cp = dev->cnic_priv;
1350 struct l5cm_spe kwqe;
1351 struct kwqe_16 *kwq[1];
Michael Chan68d7c1a2011-01-05 15:14:13 +00001352 u16 type_16;
Michael Chan71034ba2009-10-10 13:46:59 +00001353 int ret;
1354
1355 kwqe.hdr.conn_and_cmd_data =
1356 cpu_to_le32(((cmd << SPE_HDR_CMD_ID_SHIFT) |
Michael Chanceb7e1c2010-10-06 03:14:54 +00001357 BNX2X_HW_CID(cp, cid)));
Michael Chan68d7c1a2011-01-05 15:14:13 +00001358
1359 type_16 = (type << SPE_HDR_CONN_TYPE_SHIFT) & SPE_HDR_CONN_TYPE;
1360 type_16 |= (cp->pfid << SPE_HDR_FUNCTION_ID_SHIFT) &
1361 SPE_HDR_FUNCTION_ID;
1362
1363 kwqe.hdr.type = cpu_to_le16(type_16);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001364 kwqe.hdr.reserved1 = 0;
Michael Chan71034ba2009-10-10 13:46:59 +00001365 kwqe.data.phy_address.lo = cpu_to_le32(l5_data->phy_address.lo);
1366 kwqe.data.phy_address.hi = cpu_to_le32(l5_data->phy_address.hi);
1367
1368 kwq[0] = (struct kwqe_16 *) &kwqe;
1369
1370 spin_lock_bh(&cp->cnic_ulp_lock);
1371 ret = cp->ethdev->drv_submit_kwqes_16(dev->netdev, kwq, 1);
1372 spin_unlock_bh(&cp->cnic_ulp_lock);
1373
1374 if (ret == 1)
1375 return 0;
1376
Michael Chan23021c22012-01-04 12:12:28 +00001377 return ret;
Michael Chan71034ba2009-10-10 13:46:59 +00001378}
1379
1380static void cnic_reply_bnx2x_kcqes(struct cnic_dev *dev, int ulp_type,
1381 struct kcqe *cqes[], u32 num_cqes)
1382{
1383 struct cnic_local *cp = dev->cnic_priv;
1384 struct cnic_ulp_ops *ulp_ops;
1385
1386 rcu_read_lock();
1387 ulp_ops = rcu_dereference(cp->ulp_ops[ulp_type]);
1388 if (likely(ulp_ops)) {
1389 ulp_ops->indicate_kcqes(cp->ulp_handle[ulp_type],
1390 cqes, num_cqes);
1391 }
1392 rcu_read_unlock();
1393}
1394
1395static int cnic_bnx2x_iscsi_init1(struct cnic_dev *dev, struct kwqe *kwqe)
1396{
1397 struct cnic_local *cp = dev->cnic_priv;
1398 struct iscsi_kwqe_init1 *req1 = (struct iscsi_kwqe_init1 *) kwqe;
Michael Chan14203982010-10-06 03:16:06 +00001399 int hq_bds, pages;
1400 u32 pfid = cp->pfid;
Michael Chan71034ba2009-10-10 13:46:59 +00001401
1402 cp->num_iscsi_tasks = req1->num_tasks_per_conn;
1403 cp->num_ccells = req1->num_ccells_per_conn;
1404 cp->task_array_size = BNX2X_ISCSI_TASK_CONTEXT_SIZE *
1405 cp->num_iscsi_tasks;
1406 cp->r2tq_size = cp->num_iscsi_tasks * BNX2X_ISCSI_MAX_PENDING_R2TS *
1407 BNX2X_ISCSI_R2TQE_SIZE;
1408 cp->hq_size = cp->num_ccells * BNX2X_ISCSI_HQ_BD_SIZE;
1409 pages = PAGE_ALIGN(cp->hq_size) / PAGE_SIZE;
1410 hq_bds = pages * (PAGE_SIZE / BNX2X_ISCSI_HQ_BD_SIZE);
1411 cp->num_cqs = req1->num_cqs;
1412
1413 if (!dev->max_iscsi_conn)
1414 return 0;
1415
1416 /* init Tstorm RAM */
Michael Chan14203982010-10-06 03:16:06 +00001417 CNIC_WR16(dev, BAR_TSTRORM_INTMEM + TSTORM_ISCSI_RQ_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001418 req1->rq_num_wqes);
Michael Chan14203982010-10-06 03:16:06 +00001419 CNIC_WR16(dev, BAR_TSTRORM_INTMEM + TSTORM_ISCSI_PAGE_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001420 PAGE_SIZE);
1421 CNIC_WR8(dev, BAR_TSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001422 TSTORM_ISCSI_PAGE_SIZE_LOG_OFFSET(pfid), PAGE_SHIFT);
Michael Chan71034ba2009-10-10 13:46:59 +00001423 CNIC_WR16(dev, BAR_TSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001424 TSTORM_ISCSI_NUM_OF_TASKS_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001425 req1->num_tasks_per_conn);
1426
1427 /* init Ustorm RAM */
1428 CNIC_WR16(dev, BAR_USTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001429 USTORM_ISCSI_RQ_BUFFER_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001430 req1->rq_buffer_size);
Michael Chan14203982010-10-06 03:16:06 +00001431 CNIC_WR16(dev, BAR_USTRORM_INTMEM + USTORM_ISCSI_PAGE_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001432 PAGE_SIZE);
1433 CNIC_WR8(dev, BAR_USTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001434 USTORM_ISCSI_PAGE_SIZE_LOG_OFFSET(pfid), PAGE_SHIFT);
Michael Chan71034ba2009-10-10 13:46:59 +00001435 CNIC_WR16(dev, BAR_USTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001436 USTORM_ISCSI_NUM_OF_TASKS_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001437 req1->num_tasks_per_conn);
Michael Chan14203982010-10-06 03:16:06 +00001438 CNIC_WR16(dev, BAR_USTRORM_INTMEM + USTORM_ISCSI_RQ_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001439 req1->rq_num_wqes);
Michael Chan14203982010-10-06 03:16:06 +00001440 CNIC_WR16(dev, BAR_USTRORM_INTMEM + USTORM_ISCSI_CQ_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001441 req1->cq_num_wqes);
Michael Chan14203982010-10-06 03:16:06 +00001442 CNIC_WR16(dev, BAR_USTRORM_INTMEM + USTORM_ISCSI_R2TQ_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001443 cp->num_iscsi_tasks * BNX2X_ISCSI_MAX_PENDING_R2TS);
1444
1445 /* init Xstorm RAM */
Michael Chan14203982010-10-06 03:16:06 +00001446 CNIC_WR16(dev, BAR_XSTRORM_INTMEM + XSTORM_ISCSI_PAGE_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001447 PAGE_SIZE);
1448 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001449 XSTORM_ISCSI_PAGE_SIZE_LOG_OFFSET(pfid), PAGE_SHIFT);
Michael Chan71034ba2009-10-10 13:46:59 +00001450 CNIC_WR16(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001451 XSTORM_ISCSI_NUM_OF_TASKS_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001452 req1->num_tasks_per_conn);
Michael Chan14203982010-10-06 03:16:06 +00001453 CNIC_WR16(dev, BAR_XSTRORM_INTMEM + XSTORM_ISCSI_HQ_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001454 hq_bds);
Michael Chan14203982010-10-06 03:16:06 +00001455 CNIC_WR16(dev, BAR_XSTRORM_INTMEM + XSTORM_ISCSI_SQ_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001456 req1->num_tasks_per_conn);
Michael Chan14203982010-10-06 03:16:06 +00001457 CNIC_WR16(dev, BAR_XSTRORM_INTMEM + XSTORM_ISCSI_R2TQ_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001458 cp->num_iscsi_tasks * BNX2X_ISCSI_MAX_PENDING_R2TS);
1459
1460 /* init Cstorm RAM */
Michael Chan14203982010-10-06 03:16:06 +00001461 CNIC_WR16(dev, BAR_CSTRORM_INTMEM + CSTORM_ISCSI_PAGE_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001462 PAGE_SIZE);
1463 CNIC_WR8(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001464 CSTORM_ISCSI_PAGE_SIZE_LOG_OFFSET(pfid), PAGE_SHIFT);
Michael Chan71034ba2009-10-10 13:46:59 +00001465 CNIC_WR16(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001466 CSTORM_ISCSI_NUM_OF_TASKS_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001467 req1->num_tasks_per_conn);
Michael Chan14203982010-10-06 03:16:06 +00001468 CNIC_WR16(dev, BAR_CSTRORM_INTMEM + CSTORM_ISCSI_CQ_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001469 req1->cq_num_wqes);
Michael Chan14203982010-10-06 03:16:06 +00001470 CNIC_WR16(dev, BAR_CSTRORM_INTMEM + CSTORM_ISCSI_HQ_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001471 hq_bds);
1472
1473 return 0;
1474}
1475
1476static int cnic_bnx2x_iscsi_init2(struct cnic_dev *dev, struct kwqe *kwqe)
1477{
1478 struct iscsi_kwqe_init2 *req2 = (struct iscsi_kwqe_init2 *) kwqe;
1479 struct cnic_local *cp = dev->cnic_priv;
Michael Chan14203982010-10-06 03:16:06 +00001480 u32 pfid = cp->pfid;
Michael Chan71034ba2009-10-10 13:46:59 +00001481 struct iscsi_kcqe kcqe;
1482 struct kcqe *cqes[1];
1483
1484 memset(&kcqe, 0, sizeof(kcqe));
1485 if (!dev->max_iscsi_conn) {
1486 kcqe.completion_status =
1487 ISCSI_KCQE_COMPLETION_STATUS_ISCSI_NOT_SUPPORTED;
1488 goto done;
1489 }
1490
1491 CNIC_WR(dev, BAR_TSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001492 TSTORM_ISCSI_ERROR_BITMAP_OFFSET(pfid), req2->error_bit_map[0]);
Michael Chan71034ba2009-10-10 13:46:59 +00001493 CNIC_WR(dev, BAR_TSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001494 TSTORM_ISCSI_ERROR_BITMAP_OFFSET(pfid) + 4,
Michael Chan71034ba2009-10-10 13:46:59 +00001495 req2->error_bit_map[1]);
1496
1497 CNIC_WR16(dev, BAR_USTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001498 USTORM_ISCSI_CQ_SQN_SIZE_OFFSET(pfid), req2->max_cq_sqn);
Michael Chan71034ba2009-10-10 13:46:59 +00001499 CNIC_WR(dev, BAR_USTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001500 USTORM_ISCSI_ERROR_BITMAP_OFFSET(pfid), req2->error_bit_map[0]);
Michael Chan71034ba2009-10-10 13:46:59 +00001501 CNIC_WR(dev, BAR_USTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001502 USTORM_ISCSI_ERROR_BITMAP_OFFSET(pfid) + 4,
Michael Chan71034ba2009-10-10 13:46:59 +00001503 req2->error_bit_map[1]);
1504
1505 CNIC_WR16(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001506 CSTORM_ISCSI_CQ_SQN_SIZE_OFFSET(pfid), req2->max_cq_sqn);
Michael Chan71034ba2009-10-10 13:46:59 +00001507
1508 kcqe.completion_status = ISCSI_KCQE_COMPLETION_STATUS_SUCCESS;
1509
1510done:
1511 kcqe.op_code = ISCSI_KCQE_OPCODE_INIT;
1512 cqes[0] = (struct kcqe *) &kcqe;
1513 cnic_reply_bnx2x_kcqes(dev, CNIC_ULP_ISCSI, cqes, 1);
1514
1515 return 0;
1516}
1517
1518static void cnic_free_bnx2x_conn_resc(struct cnic_dev *dev, u32 l5_cid)
1519{
1520 struct cnic_local *cp = dev->cnic_priv;
1521 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
1522
1523 if (ctx->ulp_proto_id == CNIC_ULP_ISCSI) {
1524 struct cnic_iscsi *iscsi = ctx->proto.iscsi;
1525
1526 cnic_free_dma(dev, &iscsi->hq_info);
1527 cnic_free_dma(dev, &iscsi->r2tq_info);
1528 cnic_free_dma(dev, &iscsi->task_array_info);
Michael Chane1928c82010-12-23 07:43:04 +00001529 cnic_free_id(&cp->cid_tbl, ctx->cid);
1530 } else {
1531 cnic_free_id(&cp->fcoe_cid_tbl, ctx->cid);
Michael Chan71034ba2009-10-10 13:46:59 +00001532 }
Michael Chane1928c82010-12-23 07:43:04 +00001533
Michael Chan71034ba2009-10-10 13:46:59 +00001534 ctx->cid = 0;
1535}
1536
1537static int cnic_alloc_bnx2x_conn_resc(struct cnic_dev *dev, u32 l5_cid)
1538{
1539 u32 cid;
1540 int ret, pages;
1541 struct cnic_local *cp = dev->cnic_priv;
1542 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
1543 struct cnic_iscsi *iscsi = ctx->proto.iscsi;
1544
Michael Chane1928c82010-12-23 07:43:04 +00001545 if (ctx->ulp_proto_id == CNIC_ULP_FCOE) {
1546 cid = cnic_alloc_new_id(&cp->fcoe_cid_tbl);
1547 if (cid == -1) {
1548 ret = -ENOMEM;
1549 goto error;
1550 }
1551 ctx->cid = cid;
1552 return 0;
1553 }
1554
Michael Chan71034ba2009-10-10 13:46:59 +00001555 cid = cnic_alloc_new_id(&cp->cid_tbl);
1556 if (cid == -1) {
1557 ret = -ENOMEM;
1558 goto error;
1559 }
1560
1561 ctx->cid = cid;
1562 pages = PAGE_ALIGN(cp->task_array_size) / PAGE_SIZE;
1563
1564 ret = cnic_alloc_dma(dev, &iscsi->task_array_info, pages, 1);
1565 if (ret)
1566 goto error;
1567
1568 pages = PAGE_ALIGN(cp->r2tq_size) / PAGE_SIZE;
1569 ret = cnic_alloc_dma(dev, &iscsi->r2tq_info, pages, 1);
1570 if (ret)
1571 goto error;
1572
1573 pages = PAGE_ALIGN(cp->hq_size) / PAGE_SIZE;
1574 ret = cnic_alloc_dma(dev, &iscsi->hq_info, pages, 1);
1575 if (ret)
1576 goto error;
1577
1578 return 0;
1579
1580error:
1581 cnic_free_bnx2x_conn_resc(dev, l5_cid);
1582 return ret;
1583}
1584
1585static void *cnic_get_bnx2x_ctx(struct cnic_dev *dev, u32 cid, int init,
1586 struct regpair *ctx_addr)
1587{
1588 struct cnic_local *cp = dev->cnic_priv;
1589 struct cnic_eth_dev *ethdev = cp->ethdev;
1590 int blk = (cid - ethdev->starting_cid) / cp->cids_per_blk;
1591 int off = (cid - ethdev->starting_cid) % cp->cids_per_blk;
1592 unsigned long align_off = 0;
1593 dma_addr_t ctx_map;
1594 void *ctx;
1595
1596 if (cp->ctx_align) {
1597 unsigned long mask = cp->ctx_align - 1;
1598
1599 if (cp->ctx_arr[blk].mapping & mask)
1600 align_off = cp->ctx_align -
1601 (cp->ctx_arr[blk].mapping & mask);
1602 }
1603 ctx_map = cp->ctx_arr[blk].mapping + align_off +
1604 (off * BNX2X_CONTEXT_MEM_SIZE);
1605 ctx = cp->ctx_arr[blk].ctx + align_off +
1606 (off * BNX2X_CONTEXT_MEM_SIZE);
1607 if (init)
1608 memset(ctx, 0, BNX2X_CONTEXT_MEM_SIZE);
1609
1610 ctx_addr->lo = ctx_map & 0xffffffff;
1611 ctx_addr->hi = (u64) ctx_map >> 32;
1612 return ctx;
1613}
1614
1615static int cnic_setup_bnx2x_ctx(struct cnic_dev *dev, struct kwqe *wqes[],
1616 u32 num)
1617{
1618 struct cnic_local *cp = dev->cnic_priv;
1619 struct iscsi_kwqe_conn_offload1 *req1 =
1620 (struct iscsi_kwqe_conn_offload1 *) wqes[0];
1621 struct iscsi_kwqe_conn_offload2 *req2 =
1622 (struct iscsi_kwqe_conn_offload2 *) wqes[1];
1623 struct iscsi_kwqe_conn_offload3 *req3;
1624 struct cnic_context *ctx = &cp->ctx_tbl[req1->iscsi_conn_id];
1625 struct cnic_iscsi *iscsi = ctx->proto.iscsi;
1626 u32 cid = ctx->cid;
Michael Chanceb7e1c2010-10-06 03:14:54 +00001627 u32 hw_cid = BNX2X_HW_CID(cp, cid);
Michael Chan71034ba2009-10-10 13:46:59 +00001628 struct iscsi_context *ictx;
1629 struct regpair context_addr;
1630 int i, j, n = 2, n_max;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001631 u8 port = CNIC_PORT(cp);
Michael Chan71034ba2009-10-10 13:46:59 +00001632
1633 ctx->ctx_flags = 0;
1634 if (!req2->num_additional_wqes)
1635 return -EINVAL;
1636
1637 n_max = req2->num_additional_wqes + 2;
1638
1639 ictx = cnic_get_bnx2x_ctx(dev, cid, 1, &context_addr);
1640 if (ictx == NULL)
1641 return -ENOMEM;
1642
1643 req3 = (struct iscsi_kwqe_conn_offload3 *) wqes[n++];
1644
1645 ictx->xstorm_ag_context.hq_prod = 1;
1646
1647 ictx->xstorm_st_context.iscsi.first_burst_length =
1648 ISCSI_DEF_FIRST_BURST_LEN;
1649 ictx->xstorm_st_context.iscsi.max_send_pdu_length =
1650 ISCSI_DEF_MAX_RECV_SEG_LEN;
1651 ictx->xstorm_st_context.iscsi.sq_pbl_base.lo =
1652 req1->sq_page_table_addr_lo;
1653 ictx->xstorm_st_context.iscsi.sq_pbl_base.hi =
1654 req1->sq_page_table_addr_hi;
1655 ictx->xstorm_st_context.iscsi.sq_curr_pbe.lo = req2->sq_first_pte.hi;
1656 ictx->xstorm_st_context.iscsi.sq_curr_pbe.hi = req2->sq_first_pte.lo;
1657 ictx->xstorm_st_context.iscsi.hq_pbl_base.lo =
1658 iscsi->hq_info.pgtbl_map & 0xffffffff;
1659 ictx->xstorm_st_context.iscsi.hq_pbl_base.hi =
1660 (u64) iscsi->hq_info.pgtbl_map >> 32;
1661 ictx->xstorm_st_context.iscsi.hq_curr_pbe_base.lo =
1662 iscsi->hq_info.pgtbl[0];
1663 ictx->xstorm_st_context.iscsi.hq_curr_pbe_base.hi =
1664 iscsi->hq_info.pgtbl[1];
1665 ictx->xstorm_st_context.iscsi.r2tq_pbl_base.lo =
1666 iscsi->r2tq_info.pgtbl_map & 0xffffffff;
1667 ictx->xstorm_st_context.iscsi.r2tq_pbl_base.hi =
1668 (u64) iscsi->r2tq_info.pgtbl_map >> 32;
1669 ictx->xstorm_st_context.iscsi.r2tq_curr_pbe_base.lo =
1670 iscsi->r2tq_info.pgtbl[0];
1671 ictx->xstorm_st_context.iscsi.r2tq_curr_pbe_base.hi =
1672 iscsi->r2tq_info.pgtbl[1];
1673 ictx->xstorm_st_context.iscsi.task_pbl_base.lo =
1674 iscsi->task_array_info.pgtbl_map & 0xffffffff;
1675 ictx->xstorm_st_context.iscsi.task_pbl_base.hi =
1676 (u64) iscsi->task_array_info.pgtbl_map >> 32;
1677 ictx->xstorm_st_context.iscsi.task_pbl_cache_idx =
1678 BNX2X_ISCSI_PBL_NOT_CACHED;
1679 ictx->xstorm_st_context.iscsi.flags.flags |=
1680 XSTORM_ISCSI_CONTEXT_FLAGS_B_IMMEDIATE_DATA;
1681 ictx->xstorm_st_context.iscsi.flags.flags |=
1682 XSTORM_ISCSI_CONTEXT_FLAGS_B_INITIAL_R2T;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001683 ictx->xstorm_st_context.common.ethernet.reserved_vlan_type =
1684 ETH_P_8021Q;
1685 if (BNX2X_CHIP_IS_E2_PLUS(cp->chip_id) &&
1686 cp->port_mode == CHIP_2_PORT_MODE) {
1687
1688 port = 0;
1689 }
1690 ictx->xstorm_st_context.common.flags =
1691 1 << XSTORM_COMMON_CONTEXT_SECTION_PHYSQ_INITIALIZED_SHIFT;
1692 ictx->xstorm_st_context.common.flags =
1693 port << XSTORM_COMMON_CONTEXT_SECTION_PBF_PORT_SHIFT;
Michael Chan71034ba2009-10-10 13:46:59 +00001694
1695 ictx->tstorm_st_context.iscsi.hdr_bytes_2_fetch = ISCSI_HEADER_SIZE;
1696 /* TSTORM requires the base address of RQ DB & not PTE */
1697 ictx->tstorm_st_context.iscsi.rq_db_phy_addr.lo =
1698 req2->rq_page_table_addr_lo & PAGE_MASK;
1699 ictx->tstorm_st_context.iscsi.rq_db_phy_addr.hi =
1700 req2->rq_page_table_addr_hi;
1701 ictx->tstorm_st_context.iscsi.iscsi_conn_id = req1->iscsi_conn_id;
1702 ictx->tstorm_st_context.tcp.cwnd = 0x5A8;
1703 ictx->tstorm_st_context.tcp.flags2 |=
1704 TSTORM_TCP_ST_CONTEXT_SECTION_DA_EN;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001705 ictx->tstorm_st_context.tcp.ooo_support_mode =
1706 TCP_TSTORM_OOO_DROP_AND_PROC_ACK;
Michael Chan71034ba2009-10-10 13:46:59 +00001707
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001708 ictx->timers_context.flags |= TIMERS_BLOCK_CONTEXT_CONN_VALID_FLG;
Michael Chan71034ba2009-10-10 13:46:59 +00001709
1710 ictx->ustorm_st_context.ring.rq.pbl_base.lo =
Michael Chan15971c32009-12-02 15:15:38 +00001711 req2->rq_page_table_addr_lo;
Michael Chan71034ba2009-10-10 13:46:59 +00001712 ictx->ustorm_st_context.ring.rq.pbl_base.hi =
Michael Chan15971c32009-12-02 15:15:38 +00001713 req2->rq_page_table_addr_hi;
Michael Chan71034ba2009-10-10 13:46:59 +00001714 ictx->ustorm_st_context.ring.rq.curr_pbe.lo = req3->qp_first_pte[0].hi;
1715 ictx->ustorm_st_context.ring.rq.curr_pbe.hi = req3->qp_first_pte[0].lo;
1716 ictx->ustorm_st_context.ring.r2tq.pbl_base.lo =
1717 iscsi->r2tq_info.pgtbl_map & 0xffffffff;
1718 ictx->ustorm_st_context.ring.r2tq.pbl_base.hi =
1719 (u64) iscsi->r2tq_info.pgtbl_map >> 32;
1720 ictx->ustorm_st_context.ring.r2tq.curr_pbe.lo =
1721 iscsi->r2tq_info.pgtbl[0];
1722 ictx->ustorm_st_context.ring.r2tq.curr_pbe.hi =
1723 iscsi->r2tq_info.pgtbl[1];
1724 ictx->ustorm_st_context.ring.cq_pbl_base.lo =
1725 req1->cq_page_table_addr_lo;
1726 ictx->ustorm_st_context.ring.cq_pbl_base.hi =
1727 req1->cq_page_table_addr_hi;
1728 ictx->ustorm_st_context.ring.cq[0].cq_sn = ISCSI_INITIAL_SN;
1729 ictx->ustorm_st_context.ring.cq[0].curr_pbe.lo = req2->cq_first_pte.hi;
1730 ictx->ustorm_st_context.ring.cq[0].curr_pbe.hi = req2->cq_first_pte.lo;
1731 ictx->ustorm_st_context.task_pbe_cache_index =
1732 BNX2X_ISCSI_PBL_NOT_CACHED;
1733 ictx->ustorm_st_context.task_pdu_cache_index =
1734 BNX2X_ISCSI_PDU_HEADER_NOT_CACHED;
1735
1736 for (i = 1, j = 1; i < cp->num_cqs; i++, j++) {
1737 if (j == 3) {
1738 if (n >= n_max)
1739 break;
1740 req3 = (struct iscsi_kwqe_conn_offload3 *) wqes[n++];
1741 j = 0;
1742 }
1743 ictx->ustorm_st_context.ring.cq[i].cq_sn = ISCSI_INITIAL_SN;
1744 ictx->ustorm_st_context.ring.cq[i].curr_pbe.lo =
1745 req3->qp_first_pte[j].hi;
1746 ictx->ustorm_st_context.ring.cq[i].curr_pbe.hi =
1747 req3->qp_first_pte[j].lo;
1748 }
1749
1750 ictx->ustorm_st_context.task_pbl_base.lo =
1751 iscsi->task_array_info.pgtbl_map & 0xffffffff;
1752 ictx->ustorm_st_context.task_pbl_base.hi =
1753 (u64) iscsi->task_array_info.pgtbl_map >> 32;
1754 ictx->ustorm_st_context.tce_phy_addr.lo =
1755 iscsi->task_array_info.pgtbl[0];
1756 ictx->ustorm_st_context.tce_phy_addr.hi =
1757 iscsi->task_array_info.pgtbl[1];
1758 ictx->ustorm_st_context.iscsi_conn_id = req1->iscsi_conn_id;
1759 ictx->ustorm_st_context.num_cqs = cp->num_cqs;
1760 ictx->ustorm_st_context.negotiated_rx |= ISCSI_DEF_MAX_RECV_SEG_LEN;
1761 ictx->ustorm_st_context.negotiated_rx_and_flags |=
1762 ISCSI_DEF_MAX_BURST_LEN;
1763 ictx->ustorm_st_context.negotiated_rx |=
1764 ISCSI_DEFAULT_MAX_OUTSTANDING_R2T <<
1765 USTORM_ISCSI_ST_CONTEXT_MAX_OUTSTANDING_R2TS_SHIFT;
1766
1767 ictx->cstorm_st_context.hq_pbl_base.lo =
1768 iscsi->hq_info.pgtbl_map & 0xffffffff;
1769 ictx->cstorm_st_context.hq_pbl_base.hi =
1770 (u64) iscsi->hq_info.pgtbl_map >> 32;
1771 ictx->cstorm_st_context.hq_curr_pbe.lo = iscsi->hq_info.pgtbl[0];
1772 ictx->cstorm_st_context.hq_curr_pbe.hi = iscsi->hq_info.pgtbl[1];
1773 ictx->cstorm_st_context.task_pbl_base.lo =
1774 iscsi->task_array_info.pgtbl_map & 0xffffffff;
1775 ictx->cstorm_st_context.task_pbl_base.hi =
1776 (u64) iscsi->task_array_info.pgtbl_map >> 32;
1777 /* CSTORM and USTORM initialization is different, CSTORM requires
1778 * CQ DB base & not PTE addr */
1779 ictx->cstorm_st_context.cq_db_base.lo =
1780 req1->cq_page_table_addr_lo & PAGE_MASK;
1781 ictx->cstorm_st_context.cq_db_base.hi = req1->cq_page_table_addr_hi;
1782 ictx->cstorm_st_context.iscsi_conn_id = req1->iscsi_conn_id;
1783 ictx->cstorm_st_context.cq_proc_en_bit_map = (1 << cp->num_cqs) - 1;
1784 for (i = 0; i < cp->num_cqs; i++) {
1785 ictx->cstorm_st_context.cq_c_prod_sqn_arr.sqn[i] =
1786 ISCSI_INITIAL_SN;
1787 ictx->cstorm_st_context.cq_c_sqn_2_notify_arr.sqn[i] =
1788 ISCSI_INITIAL_SN;
1789 }
1790
1791 ictx->xstorm_ag_context.cdu_reserved =
1792 CDU_RSRVD_VALUE_TYPE_A(hw_cid, CDU_REGION_NUMBER_XCM_AG,
1793 ISCSI_CONNECTION_TYPE);
1794 ictx->ustorm_ag_context.cdu_usage =
1795 CDU_RSRVD_VALUE_TYPE_A(hw_cid, CDU_REGION_NUMBER_UCM_AG,
1796 ISCSI_CONNECTION_TYPE);
1797 return 0;
1798
1799}
1800
1801static int cnic_bnx2x_iscsi_ofld1(struct cnic_dev *dev, struct kwqe *wqes[],
1802 u32 num, int *work)
1803{
1804 struct iscsi_kwqe_conn_offload1 *req1;
1805 struct iscsi_kwqe_conn_offload2 *req2;
1806 struct cnic_local *cp = dev->cnic_priv;
Michael Chanfdf24082010-10-13 14:06:47 +00001807 struct cnic_context *ctx;
Michael Chan71034ba2009-10-10 13:46:59 +00001808 struct iscsi_kcqe kcqe;
1809 struct kcqe *cqes[1];
1810 u32 l5_cid;
Michael Chanfdf24082010-10-13 14:06:47 +00001811 int ret = 0;
Michael Chan71034ba2009-10-10 13:46:59 +00001812
1813 if (num < 2) {
1814 *work = num;
1815 return -EINVAL;
1816 }
1817
1818 req1 = (struct iscsi_kwqe_conn_offload1 *) wqes[0];
1819 req2 = (struct iscsi_kwqe_conn_offload2 *) wqes[1];
1820 if ((num - 2) < req2->num_additional_wqes) {
1821 *work = num;
1822 return -EINVAL;
1823 }
Joe Perches779bb412010-11-14 17:04:37 +00001824 *work = 2 + req2->num_additional_wqes;
Michael Chan71034ba2009-10-10 13:46:59 +00001825
1826 l5_cid = req1->iscsi_conn_id;
1827 if (l5_cid >= MAX_ISCSI_TBL_SZ)
1828 return -EINVAL;
1829
1830 memset(&kcqe, 0, sizeof(kcqe));
1831 kcqe.op_code = ISCSI_KCQE_OPCODE_OFFLOAD_CONN;
1832 kcqe.iscsi_conn_id = l5_cid;
1833 kcqe.completion_status = ISCSI_KCQE_COMPLETION_STATUS_CTX_ALLOC_FAILURE;
1834
Michael Chanfdf24082010-10-13 14:06:47 +00001835 ctx = &cp->ctx_tbl[l5_cid];
1836 if (test_bit(CTX_FL_OFFLD_START, &ctx->ctx_flags)) {
1837 kcqe.completion_status =
1838 ISCSI_KCQE_COMPLETION_STATUS_CID_BUSY;
1839 goto done;
1840 }
1841
Michael Chan71034ba2009-10-10 13:46:59 +00001842 if (atomic_inc_return(&cp->iscsi_conn) > dev->max_iscsi_conn) {
1843 atomic_dec(&cp->iscsi_conn);
Michael Chan71034ba2009-10-10 13:46:59 +00001844 goto done;
1845 }
1846 ret = cnic_alloc_bnx2x_conn_resc(dev, l5_cid);
1847 if (ret) {
1848 atomic_dec(&cp->iscsi_conn);
1849 ret = 0;
1850 goto done;
1851 }
1852 ret = cnic_setup_bnx2x_ctx(dev, wqes, num);
1853 if (ret < 0) {
1854 cnic_free_bnx2x_conn_resc(dev, l5_cid);
1855 atomic_dec(&cp->iscsi_conn);
1856 goto done;
1857 }
1858
1859 kcqe.completion_status = ISCSI_KCQE_COMPLETION_STATUS_SUCCESS;
Michael Chanceb7e1c2010-10-06 03:14:54 +00001860 kcqe.iscsi_conn_context_id = BNX2X_HW_CID(cp, cp->ctx_tbl[l5_cid].cid);
Michael Chan71034ba2009-10-10 13:46:59 +00001861
1862done:
1863 cqes[0] = (struct kcqe *) &kcqe;
1864 cnic_reply_bnx2x_kcqes(dev, CNIC_ULP_ISCSI, cqes, 1);
Michael Chan23021c22012-01-04 12:12:28 +00001865 return 0;
Michael Chan71034ba2009-10-10 13:46:59 +00001866}
1867
1868
1869static int cnic_bnx2x_iscsi_update(struct cnic_dev *dev, struct kwqe *kwqe)
1870{
1871 struct cnic_local *cp = dev->cnic_priv;
1872 struct iscsi_kwqe_conn_update *req =
1873 (struct iscsi_kwqe_conn_update *) kwqe;
1874 void *data;
1875 union l5cm_specific_data l5_data;
1876 u32 l5_cid, cid = BNX2X_SW_CID(req->context_id);
1877 int ret;
1878
1879 if (cnic_get_l5_cid(cp, cid, &l5_cid) != 0)
1880 return -EINVAL;
1881
1882 data = cnic_get_kwqe_16_data(cp, l5_cid, &l5_data);
1883 if (!data)
1884 return -ENOMEM;
1885
1886 memcpy(data, kwqe, sizeof(struct kwqe));
1887
1888 ret = cnic_submit_kwqe_16(dev, ISCSI_RAMROD_CMD_ID_UPDATE_CONN,
1889 req->context_id, ISCSI_CONNECTION_TYPE, &l5_data);
1890 return ret;
1891}
1892
Michael Chana2c9e762010-10-13 14:06:46 +00001893static int cnic_bnx2x_destroy_ramrod(struct cnic_dev *dev, u32 l5_cid)
Michael Chan71034ba2009-10-10 13:46:59 +00001894{
1895 struct cnic_local *cp = dev->cnic_priv;
Michael Chan71034ba2009-10-10 13:46:59 +00001896 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
Michael Chana2c9e762010-10-13 14:06:46 +00001897 union l5cm_specific_data l5_data;
1898 int ret;
Michael Chan68d7c1a2011-01-05 15:14:13 +00001899 u32 hw_cid;
Michael Chan71034ba2009-10-10 13:46:59 +00001900
Michael Chan71034ba2009-10-10 13:46:59 +00001901 init_waitqueue_head(&ctx->waitq);
1902 ctx->wait_cond = 0;
1903 memset(&l5_data, 0, sizeof(l5_data));
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001904 hw_cid = BNX2X_HW_CID(cp, ctx->cid);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001905
1906 ret = cnic_submit_kwqe_16(dev, RAMROD_CMD_ID_COMMON_CFC_DEL,
Michael Chan68d7c1a2011-01-05 15:14:13 +00001907 hw_cid, NONE_CONNECTION_TYPE, &l5_data);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001908
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001909 if (ret == 0) {
Michael Chandcc7e3a2011-08-26 09:45:40 +00001910 wait_event_timeout(ctx->waitq, ctx->wait_cond, CNIC_RAMROD_TMO);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001911 if (unlikely(test_bit(CTX_FL_CID_ERROR, &ctx->ctx_flags)))
1912 return -EBUSY;
1913 }
Michael Chan71034ba2009-10-10 13:46:59 +00001914
Michael Chandcc7e3a2011-08-26 09:45:40 +00001915 return 0;
Michael Chana2c9e762010-10-13 14:06:46 +00001916}
1917
1918static int cnic_bnx2x_iscsi_destroy(struct cnic_dev *dev, struct kwqe *kwqe)
1919{
1920 struct cnic_local *cp = dev->cnic_priv;
1921 struct iscsi_kwqe_conn_destroy *req =
1922 (struct iscsi_kwqe_conn_destroy *) kwqe;
1923 u32 l5_cid = req->reserved0;
1924 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
1925 int ret = 0;
1926 struct iscsi_kcqe kcqe;
1927 struct kcqe *cqes[1];
1928
1929 if (!test_bit(CTX_FL_OFFLD_START, &ctx->ctx_flags))
1930 goto skip_cfc_delete;
1931
Michael Chanfdf24082010-10-13 14:06:47 +00001932 if (!time_after(jiffies, ctx->timestamp + (2 * HZ))) {
1933 unsigned long delta = ctx->timestamp + (2 * HZ) - jiffies;
1934
1935 if (delta > (2 * HZ))
1936 delta = 0;
1937
1938 set_bit(CTX_FL_DELETE_WAIT, &ctx->ctx_flags);
1939 queue_delayed_work(cnic_wq, &cp->delete_task, delta);
1940 goto destroy_reply;
1941 }
Michael Chana2c9e762010-10-13 14:06:46 +00001942
1943 ret = cnic_bnx2x_destroy_ramrod(dev, l5_cid);
1944
Michael Chan71034ba2009-10-10 13:46:59 +00001945skip_cfc_delete:
1946 cnic_free_bnx2x_conn_resc(dev, l5_cid);
1947
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001948 if (!ret) {
1949 atomic_dec(&cp->iscsi_conn);
1950 clear_bit(CTX_FL_OFFLD_START, &ctx->ctx_flags);
1951 }
Michael Chan71034ba2009-10-10 13:46:59 +00001952
Michael Chanfdf24082010-10-13 14:06:47 +00001953destroy_reply:
Michael Chan71034ba2009-10-10 13:46:59 +00001954 memset(&kcqe, 0, sizeof(kcqe));
1955 kcqe.op_code = ISCSI_KCQE_OPCODE_DESTROY_CONN;
1956 kcqe.iscsi_conn_id = l5_cid;
1957 kcqe.completion_status = ISCSI_KCQE_COMPLETION_STATUS_SUCCESS;
1958 kcqe.iscsi_conn_context_id = req->context_id;
1959
1960 cqes[0] = (struct kcqe *) &kcqe;
1961 cnic_reply_bnx2x_kcqes(dev, CNIC_ULP_ISCSI, cqes, 1);
1962
Michael Chan23021c22012-01-04 12:12:28 +00001963 return 0;
Michael Chan71034ba2009-10-10 13:46:59 +00001964}
1965
1966static void cnic_init_storm_conn_bufs(struct cnic_dev *dev,
1967 struct l4_kwq_connect_req1 *kwqe1,
1968 struct l4_kwq_connect_req3 *kwqe3,
1969 struct l5cm_active_conn_buffer *conn_buf)
1970{
1971 struct l5cm_conn_addr_params *conn_addr = &conn_buf->conn_addr_buf;
1972 struct l5cm_xstorm_conn_buffer *xstorm_buf =
1973 &conn_buf->xstorm_conn_buffer;
1974 struct l5cm_tstorm_conn_buffer *tstorm_buf =
1975 &conn_buf->tstorm_conn_buffer;
1976 struct regpair context_addr;
1977 u32 cid = BNX2X_SW_CID(kwqe1->cid);
1978 struct in6_addr src_ip, dst_ip;
1979 int i;
1980 u32 *addrp;
1981
1982 addrp = (u32 *) &conn_addr->local_ip_addr;
1983 for (i = 0; i < 4; i++, addrp++)
1984 src_ip.in6_u.u6_addr32[i] = cpu_to_be32(*addrp);
1985
1986 addrp = (u32 *) &conn_addr->remote_ip_addr;
1987 for (i = 0; i < 4; i++, addrp++)
1988 dst_ip.in6_u.u6_addr32[i] = cpu_to_be32(*addrp);
1989
1990 cnic_get_bnx2x_ctx(dev, cid, 0, &context_addr);
1991
1992 xstorm_buf->context_addr.hi = context_addr.hi;
1993 xstorm_buf->context_addr.lo = context_addr.lo;
1994 xstorm_buf->mss = 0xffff;
1995 xstorm_buf->rcv_buf = kwqe3->rcv_buf;
1996 if (kwqe1->tcp_flags & L4_KWQ_CONNECT_REQ1_NAGLE_ENABLE)
1997 xstorm_buf->params |= L5CM_XSTORM_CONN_BUFFER_NAGLE_ENABLE;
1998 xstorm_buf->pseudo_header_checksum =
1999 swab16(~csum_ipv6_magic(&src_ip, &dst_ip, 0, IPPROTO_TCP, 0));
2000
2001 if (!(kwqe1->tcp_flags & L4_KWQ_CONNECT_REQ1_NO_DELAY_ACK))
2002 tstorm_buf->params |=
2003 L5CM_TSTORM_CONN_BUFFER_DELAYED_ACK_ENABLE;
2004 if (kwqe3->ka_timeout) {
2005 tstorm_buf->ka_enable = 1;
2006 tstorm_buf->ka_timeout = kwqe3->ka_timeout;
2007 tstorm_buf->ka_interval = kwqe3->ka_interval;
2008 tstorm_buf->ka_max_probe_count = kwqe3->ka_max_probe_count;
2009 }
Michael Chan71034ba2009-10-10 13:46:59 +00002010 tstorm_buf->max_rt_time = 0xffffffff;
2011}
2012
2013static void cnic_init_bnx2x_mac(struct cnic_dev *dev)
2014{
2015 struct cnic_local *cp = dev->cnic_priv;
Michael Chan14203982010-10-06 03:16:06 +00002016 u32 pfid = cp->pfid;
Michael Chan71034ba2009-10-10 13:46:59 +00002017 u8 *mac = dev->mac_addr;
2018
2019 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00002020 XSTORM_ISCSI_LOCAL_MAC_ADDR0_OFFSET(pfid), mac[0]);
Michael Chan71034ba2009-10-10 13:46:59 +00002021 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00002022 XSTORM_ISCSI_LOCAL_MAC_ADDR1_OFFSET(pfid), mac[1]);
Michael Chan71034ba2009-10-10 13:46:59 +00002023 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00002024 XSTORM_ISCSI_LOCAL_MAC_ADDR2_OFFSET(pfid), mac[2]);
Michael Chan71034ba2009-10-10 13:46:59 +00002025 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00002026 XSTORM_ISCSI_LOCAL_MAC_ADDR3_OFFSET(pfid), mac[3]);
Michael Chan71034ba2009-10-10 13:46:59 +00002027 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00002028 XSTORM_ISCSI_LOCAL_MAC_ADDR4_OFFSET(pfid), mac[4]);
Michael Chan71034ba2009-10-10 13:46:59 +00002029 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00002030 XSTORM_ISCSI_LOCAL_MAC_ADDR5_OFFSET(pfid), mac[5]);
Michael Chan71034ba2009-10-10 13:46:59 +00002031
2032 CNIC_WR8(dev, BAR_TSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00002033 TSTORM_ISCSI_TCP_VARS_LSB_LOCAL_MAC_ADDR_OFFSET(pfid), mac[5]);
Michael Chan71034ba2009-10-10 13:46:59 +00002034 CNIC_WR8(dev, BAR_TSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00002035 TSTORM_ISCSI_TCP_VARS_LSB_LOCAL_MAC_ADDR_OFFSET(pfid) + 1,
Michael Chan71034ba2009-10-10 13:46:59 +00002036 mac[4]);
2037 CNIC_WR8(dev, BAR_TSTRORM_INTMEM +
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03002038 TSTORM_ISCSI_TCP_VARS_MID_LOCAL_MAC_ADDR_OFFSET(pfid), mac[3]);
Michael Chan71034ba2009-10-10 13:46:59 +00002039 CNIC_WR8(dev, BAR_TSTRORM_INTMEM +
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03002040 TSTORM_ISCSI_TCP_VARS_MID_LOCAL_MAC_ADDR_OFFSET(pfid) + 1,
Michael Chan71034ba2009-10-10 13:46:59 +00002041 mac[2]);
2042 CNIC_WR8(dev, BAR_TSTRORM_INTMEM +
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03002043 TSTORM_ISCSI_TCP_VARS_MSB_LOCAL_MAC_ADDR_OFFSET(pfid), mac[1]);
Michael Chan71034ba2009-10-10 13:46:59 +00002044 CNIC_WR8(dev, BAR_TSTRORM_INTMEM +
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03002045 TSTORM_ISCSI_TCP_VARS_MSB_LOCAL_MAC_ADDR_OFFSET(pfid) + 1,
Michael Chan71034ba2009-10-10 13:46:59 +00002046 mac[0]);
2047}
2048
2049static void cnic_bnx2x_set_tcp_timestamp(struct cnic_dev *dev, int tcp_ts)
2050{
2051 struct cnic_local *cp = dev->cnic_priv;
2052 u8 xstorm_flags = XSTORM_L5CM_TCP_FLAGS_WND_SCL_EN;
2053 u16 tstorm_flags = 0;
2054
2055 if (tcp_ts) {
2056 xstorm_flags |= XSTORM_L5CM_TCP_FLAGS_TS_ENABLED;
2057 tstorm_flags |= TSTORM_L5CM_TCP_FLAGS_TS_ENABLED;
2058 }
2059
2060 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00002061 XSTORM_ISCSI_TCP_VARS_FLAGS_OFFSET(cp->pfid), xstorm_flags);
Michael Chan71034ba2009-10-10 13:46:59 +00002062
2063 CNIC_WR16(dev, BAR_TSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00002064 TSTORM_ISCSI_TCP_VARS_FLAGS_OFFSET(cp->pfid), tstorm_flags);
Michael Chan71034ba2009-10-10 13:46:59 +00002065}
2066
2067static int cnic_bnx2x_connect(struct cnic_dev *dev, struct kwqe *wqes[],
2068 u32 num, int *work)
2069{
2070 struct cnic_local *cp = dev->cnic_priv;
2071 struct l4_kwq_connect_req1 *kwqe1 =
2072 (struct l4_kwq_connect_req1 *) wqes[0];
2073 struct l4_kwq_connect_req3 *kwqe3;
2074 struct l5cm_active_conn_buffer *conn_buf;
2075 struct l5cm_conn_addr_params *conn_addr;
2076 union l5cm_specific_data l5_data;
2077 u32 l5_cid = kwqe1->pg_cid;
2078 struct cnic_sock *csk = &cp->csk_tbl[l5_cid];
2079 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
2080 int ret;
2081
2082 if (num < 2) {
2083 *work = num;
2084 return -EINVAL;
2085 }
2086
2087 if (kwqe1->conn_flags & L4_KWQ_CONNECT_REQ1_IP_V6)
2088 *work = 3;
2089 else
2090 *work = 2;
2091
2092 if (num < *work) {
2093 *work = num;
2094 return -EINVAL;
2095 }
2096
2097 if (sizeof(*conn_buf) > CNIC_KWQ16_DATA_SIZE) {
Joe Perchesddf79b22010-02-17 15:01:54 +00002098 netdev_err(dev->netdev, "conn_buf size too big\n");
Michael Chan71034ba2009-10-10 13:46:59 +00002099 return -ENOMEM;
2100 }
2101 conn_buf = cnic_get_kwqe_16_data(cp, l5_cid, &l5_data);
2102 if (!conn_buf)
2103 return -ENOMEM;
2104
2105 memset(conn_buf, 0, sizeof(*conn_buf));
2106
2107 conn_addr = &conn_buf->conn_addr_buf;
2108 conn_addr->remote_addr_0 = csk->ha[0];
2109 conn_addr->remote_addr_1 = csk->ha[1];
2110 conn_addr->remote_addr_2 = csk->ha[2];
2111 conn_addr->remote_addr_3 = csk->ha[3];
2112 conn_addr->remote_addr_4 = csk->ha[4];
2113 conn_addr->remote_addr_5 = csk->ha[5];
2114
2115 if (kwqe1->conn_flags & L4_KWQ_CONNECT_REQ1_IP_V6) {
2116 struct l4_kwq_connect_req2 *kwqe2 =
2117 (struct l4_kwq_connect_req2 *) wqes[1];
2118
2119 conn_addr->local_ip_addr.ip_addr_hi_hi = kwqe2->src_ip_v6_4;
2120 conn_addr->local_ip_addr.ip_addr_hi_lo = kwqe2->src_ip_v6_3;
2121 conn_addr->local_ip_addr.ip_addr_lo_hi = kwqe2->src_ip_v6_2;
2122
2123 conn_addr->remote_ip_addr.ip_addr_hi_hi = kwqe2->dst_ip_v6_4;
2124 conn_addr->remote_ip_addr.ip_addr_hi_lo = kwqe2->dst_ip_v6_3;
2125 conn_addr->remote_ip_addr.ip_addr_lo_hi = kwqe2->dst_ip_v6_2;
2126 conn_addr->params |= L5CM_CONN_ADDR_PARAMS_IP_VERSION;
2127 }
2128 kwqe3 = (struct l4_kwq_connect_req3 *) wqes[*work - 1];
2129
2130 conn_addr->local_ip_addr.ip_addr_lo_lo = kwqe1->src_ip;
2131 conn_addr->remote_ip_addr.ip_addr_lo_lo = kwqe1->dst_ip;
2132 conn_addr->local_tcp_port = kwqe1->src_port;
2133 conn_addr->remote_tcp_port = kwqe1->dst_port;
2134
2135 conn_addr->pmtu = kwqe3->pmtu;
2136 cnic_init_storm_conn_bufs(dev, kwqe1, kwqe3, conn_buf);
2137
2138 CNIC_WR16(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00002139 XSTORM_ISCSI_LOCAL_VLAN_OFFSET(cp->pfid), csk->vlan_id);
Michael Chan71034ba2009-10-10 13:46:59 +00002140
2141 cnic_bnx2x_set_tcp_timestamp(dev,
2142 kwqe1->tcp_flags & L4_KWQ_CONNECT_REQ1_TIME_STAMP);
2143
2144 ret = cnic_submit_kwqe_16(dev, L5CM_RAMROD_CMD_ID_TCP_CONNECT,
2145 kwqe1->cid, ISCSI_CONNECTION_TYPE, &l5_data);
2146 if (!ret)
Michael Chan6e0dda02010-10-13 14:06:45 +00002147 set_bit(CTX_FL_OFFLD_START, &ctx->ctx_flags);
Michael Chan71034ba2009-10-10 13:46:59 +00002148
2149 return ret;
2150}
2151
2152static int cnic_bnx2x_close(struct cnic_dev *dev, struct kwqe *kwqe)
2153{
2154 struct l4_kwq_close_req *req = (struct l4_kwq_close_req *) kwqe;
2155 union l5cm_specific_data l5_data;
2156 int ret;
2157
2158 memset(&l5_data, 0, sizeof(l5_data));
2159 ret = cnic_submit_kwqe_16(dev, L5CM_RAMROD_CMD_ID_CLOSE,
2160 req->cid, ISCSI_CONNECTION_TYPE, &l5_data);
2161 return ret;
2162}
2163
2164static int cnic_bnx2x_reset(struct cnic_dev *dev, struct kwqe *kwqe)
2165{
2166 struct l4_kwq_reset_req *req = (struct l4_kwq_reset_req *) kwqe;
2167 union l5cm_specific_data l5_data;
2168 int ret;
2169
2170 memset(&l5_data, 0, sizeof(l5_data));
2171 ret = cnic_submit_kwqe_16(dev, L5CM_RAMROD_CMD_ID_ABORT,
2172 req->cid, ISCSI_CONNECTION_TYPE, &l5_data);
2173 return ret;
2174}
2175static int cnic_bnx2x_offload_pg(struct cnic_dev *dev, struct kwqe *kwqe)
2176{
2177 struct l4_kwq_offload_pg *req = (struct l4_kwq_offload_pg *) kwqe;
2178 struct l4_kcq kcqe;
2179 struct kcqe *cqes[1];
2180
2181 memset(&kcqe, 0, sizeof(kcqe));
2182 kcqe.pg_host_opaque = req->host_opaque;
2183 kcqe.pg_cid = req->host_opaque;
2184 kcqe.op_code = L4_KCQE_OPCODE_VALUE_OFFLOAD_PG;
2185 cqes[0] = (struct kcqe *) &kcqe;
2186 cnic_reply_bnx2x_kcqes(dev, CNIC_ULP_L4, cqes, 1);
2187 return 0;
2188}
2189
2190static int cnic_bnx2x_update_pg(struct cnic_dev *dev, struct kwqe *kwqe)
2191{
2192 struct l4_kwq_update_pg *req = (struct l4_kwq_update_pg *) kwqe;
2193 struct l4_kcq kcqe;
2194 struct kcqe *cqes[1];
2195
2196 memset(&kcqe, 0, sizeof(kcqe));
2197 kcqe.pg_host_opaque = req->pg_host_opaque;
2198 kcqe.pg_cid = req->pg_cid;
2199 kcqe.op_code = L4_KCQE_OPCODE_VALUE_UPDATE_PG;
2200 cqes[0] = (struct kcqe *) &kcqe;
2201 cnic_reply_bnx2x_kcqes(dev, CNIC_ULP_L4, cqes, 1);
2202 return 0;
2203}
2204
Michael Chane1928c82010-12-23 07:43:04 +00002205static int cnic_bnx2x_fcoe_stat(struct cnic_dev *dev, struct kwqe *kwqe)
2206{
2207 struct fcoe_kwqe_stat *req;
2208 struct fcoe_stat_ramrod_params *fcoe_stat;
2209 union l5cm_specific_data l5_data;
2210 struct cnic_local *cp = dev->cnic_priv;
2211 int ret;
2212 u32 cid;
2213
2214 req = (struct fcoe_kwqe_stat *) kwqe;
2215 cid = BNX2X_HW_CID(cp, cp->fcoe_init_cid);
2216
2217 fcoe_stat = cnic_get_kwqe_16_data(cp, BNX2X_FCOE_L5_CID_BASE, &l5_data);
2218 if (!fcoe_stat)
2219 return -ENOMEM;
2220
2221 memset(fcoe_stat, 0, sizeof(*fcoe_stat));
2222 memcpy(&fcoe_stat->stat_kwqe, req, sizeof(*req));
2223
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03002224 ret = cnic_submit_kwqe_16(dev, FCOE_RAMROD_CMD_ID_STAT_FUNC, cid,
Michael Chane1928c82010-12-23 07:43:04 +00002225 FCOE_CONNECTION_TYPE, &l5_data);
2226 return ret;
2227}
2228
2229static int cnic_bnx2x_fcoe_init1(struct cnic_dev *dev, struct kwqe *wqes[],
2230 u32 num, int *work)
2231{
2232 int ret;
2233 struct cnic_local *cp = dev->cnic_priv;
2234 u32 cid;
2235 struct fcoe_init_ramrod_params *fcoe_init;
2236 struct fcoe_kwqe_init1 *req1;
2237 struct fcoe_kwqe_init2 *req2;
2238 struct fcoe_kwqe_init3 *req3;
2239 union l5cm_specific_data l5_data;
2240
2241 if (num < 3) {
2242 *work = num;
2243 return -EINVAL;
2244 }
2245 req1 = (struct fcoe_kwqe_init1 *) wqes[0];
2246 req2 = (struct fcoe_kwqe_init2 *) wqes[1];
2247 req3 = (struct fcoe_kwqe_init3 *) wqes[2];
2248 if (req2->hdr.op_code != FCOE_KWQE_OPCODE_INIT2) {
2249 *work = 1;
2250 return -EINVAL;
2251 }
2252 if (req3->hdr.op_code != FCOE_KWQE_OPCODE_INIT3) {
2253 *work = 2;
2254 return -EINVAL;
2255 }
2256
2257 if (sizeof(*fcoe_init) > CNIC_KWQ16_DATA_SIZE) {
2258 netdev_err(dev->netdev, "fcoe_init size too big\n");
2259 return -ENOMEM;
2260 }
2261 fcoe_init = cnic_get_kwqe_16_data(cp, BNX2X_FCOE_L5_CID_BASE, &l5_data);
2262 if (!fcoe_init)
2263 return -ENOMEM;
2264
2265 memset(fcoe_init, 0, sizeof(*fcoe_init));
2266 memcpy(&fcoe_init->init_kwqe1, req1, sizeof(*req1));
2267 memcpy(&fcoe_init->init_kwqe2, req2, sizeof(*req2));
2268 memcpy(&fcoe_init->init_kwqe3, req3, sizeof(*req3));
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03002269 fcoe_init->eq_pbl_base.lo = cp->kcq2.dma.pgtbl_map & 0xffffffff;
2270 fcoe_init->eq_pbl_base.hi = (u64) cp->kcq2.dma.pgtbl_map >> 32;
2271 fcoe_init->eq_pbl_size = cp->kcq2.dma.num_pages;
Michael Chane1928c82010-12-23 07:43:04 +00002272
2273 fcoe_init->sb_num = cp->status_blk_num;
2274 fcoe_init->eq_prod = MAX_KCQ_IDX;
2275 fcoe_init->sb_id = HC_INDEX_FCOE_EQ_CONS;
2276 cp->kcq2.sw_prod_idx = 0;
2277
2278 cid = BNX2X_HW_CID(cp, cp->fcoe_init_cid);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03002279 ret = cnic_submit_kwqe_16(dev, FCOE_RAMROD_CMD_ID_INIT_FUNC, cid,
Michael Chane1928c82010-12-23 07:43:04 +00002280 FCOE_CONNECTION_TYPE, &l5_data);
2281 *work = 3;
2282 return ret;
2283}
2284
2285static int cnic_bnx2x_fcoe_ofld1(struct cnic_dev *dev, struct kwqe *wqes[],
2286 u32 num, int *work)
2287{
2288 int ret = 0;
2289 u32 cid = -1, l5_cid;
2290 struct cnic_local *cp = dev->cnic_priv;
2291 struct fcoe_kwqe_conn_offload1 *req1;
2292 struct fcoe_kwqe_conn_offload2 *req2;
2293 struct fcoe_kwqe_conn_offload3 *req3;
2294 struct fcoe_kwqe_conn_offload4 *req4;
2295 struct fcoe_conn_offload_ramrod_params *fcoe_offload;
2296 struct cnic_context *ctx;
2297 struct fcoe_context *fctx;
2298 struct regpair ctx_addr;
2299 union l5cm_specific_data l5_data;
2300 struct fcoe_kcqe kcqe;
2301 struct kcqe *cqes[1];
2302
2303 if (num < 4) {
2304 *work = num;
2305 return -EINVAL;
2306 }
2307 req1 = (struct fcoe_kwqe_conn_offload1 *) wqes[0];
2308 req2 = (struct fcoe_kwqe_conn_offload2 *) wqes[1];
2309 req3 = (struct fcoe_kwqe_conn_offload3 *) wqes[2];
2310 req4 = (struct fcoe_kwqe_conn_offload4 *) wqes[3];
2311
2312 *work = 4;
2313
2314 l5_cid = req1->fcoe_conn_id;
Michael Chandc219a22011-08-26 09:45:39 +00002315 if (l5_cid >= dev->max_fcoe_conn)
Michael Chane1928c82010-12-23 07:43:04 +00002316 goto err_reply;
2317
2318 l5_cid += BNX2X_FCOE_L5_CID_BASE;
2319
2320 ctx = &cp->ctx_tbl[l5_cid];
2321 if (test_bit(CTX_FL_OFFLD_START, &ctx->ctx_flags))
2322 goto err_reply;
2323
2324 ret = cnic_alloc_bnx2x_conn_resc(dev, l5_cid);
2325 if (ret) {
2326 ret = 0;
2327 goto err_reply;
2328 }
2329 cid = ctx->cid;
2330
2331 fctx = cnic_get_bnx2x_ctx(dev, cid, 1, &ctx_addr);
2332 if (fctx) {
2333 u32 hw_cid = BNX2X_HW_CID(cp, cid);
2334 u32 val;
2335
2336 val = CDU_RSRVD_VALUE_TYPE_A(hw_cid, CDU_REGION_NUMBER_XCM_AG,
2337 FCOE_CONNECTION_TYPE);
2338 fctx->xstorm_ag_context.cdu_reserved = val;
2339 val = CDU_RSRVD_VALUE_TYPE_A(hw_cid, CDU_REGION_NUMBER_UCM_AG,
2340 FCOE_CONNECTION_TYPE);
2341 fctx->ustorm_ag_context.cdu_usage = val;
2342 }
2343 if (sizeof(*fcoe_offload) > CNIC_KWQ16_DATA_SIZE) {
2344 netdev_err(dev->netdev, "fcoe_offload size too big\n");
2345 goto err_reply;
2346 }
2347 fcoe_offload = cnic_get_kwqe_16_data(cp, l5_cid, &l5_data);
2348 if (!fcoe_offload)
2349 goto err_reply;
2350
2351 memset(fcoe_offload, 0, sizeof(*fcoe_offload));
2352 memcpy(&fcoe_offload->offload_kwqe1, req1, sizeof(*req1));
2353 memcpy(&fcoe_offload->offload_kwqe2, req2, sizeof(*req2));
2354 memcpy(&fcoe_offload->offload_kwqe3, req3, sizeof(*req3));
2355 memcpy(&fcoe_offload->offload_kwqe4, req4, sizeof(*req4));
2356
2357 cid = BNX2X_HW_CID(cp, cid);
2358 ret = cnic_submit_kwqe_16(dev, FCOE_RAMROD_CMD_ID_OFFLOAD_CONN, cid,
2359 FCOE_CONNECTION_TYPE, &l5_data);
2360 if (!ret)
2361 set_bit(CTX_FL_OFFLD_START, &ctx->ctx_flags);
2362
2363 return ret;
2364
2365err_reply:
2366 if (cid != -1)
2367 cnic_free_bnx2x_conn_resc(dev, l5_cid);
2368
2369 memset(&kcqe, 0, sizeof(kcqe));
2370 kcqe.op_code = FCOE_KCQE_OPCODE_OFFLOAD_CONN;
2371 kcqe.fcoe_conn_id = req1->fcoe_conn_id;
2372 kcqe.completion_status = FCOE_KCQE_COMPLETION_STATUS_CTX_ALLOC_FAILURE;
2373
2374 cqes[0] = (struct kcqe *) &kcqe;
2375 cnic_reply_bnx2x_kcqes(dev, CNIC_ULP_FCOE, cqes, 1);
2376 return ret;
2377}
2378
2379static int cnic_bnx2x_fcoe_enable(struct cnic_dev *dev, struct kwqe *kwqe)
2380{
2381 struct fcoe_kwqe_conn_enable_disable *req;
2382 struct fcoe_conn_enable_disable_ramrod_params *fcoe_enable;
2383 union l5cm_specific_data l5_data;
2384 int ret;
2385 u32 cid, l5_cid;
2386 struct cnic_local *cp = dev->cnic_priv;
2387
2388 req = (struct fcoe_kwqe_conn_enable_disable *) kwqe;
2389 cid = req->context_id;
2390 l5_cid = req->conn_id + BNX2X_FCOE_L5_CID_BASE;
2391
2392 if (sizeof(*fcoe_enable) > CNIC_KWQ16_DATA_SIZE) {
2393 netdev_err(dev->netdev, "fcoe_enable size too big\n");
2394 return -ENOMEM;
2395 }
2396 fcoe_enable = cnic_get_kwqe_16_data(cp, l5_cid, &l5_data);
2397 if (!fcoe_enable)
2398 return -ENOMEM;
2399
2400 memset(fcoe_enable, 0, sizeof(*fcoe_enable));
2401 memcpy(&fcoe_enable->enable_disable_kwqe, req, sizeof(*req));
2402 ret = cnic_submit_kwqe_16(dev, FCOE_RAMROD_CMD_ID_ENABLE_CONN, cid,
2403 FCOE_CONNECTION_TYPE, &l5_data);
2404 return ret;
2405}
2406
2407static int cnic_bnx2x_fcoe_disable(struct cnic_dev *dev, struct kwqe *kwqe)
2408{
2409 struct fcoe_kwqe_conn_enable_disable *req;
2410 struct fcoe_conn_enable_disable_ramrod_params *fcoe_disable;
2411 union l5cm_specific_data l5_data;
2412 int ret;
2413 u32 cid, l5_cid;
2414 struct cnic_local *cp = dev->cnic_priv;
2415
2416 req = (struct fcoe_kwqe_conn_enable_disable *) kwqe;
2417 cid = req->context_id;
2418 l5_cid = req->conn_id;
Michael Chandc219a22011-08-26 09:45:39 +00002419 if (l5_cid >= dev->max_fcoe_conn)
Michael Chane1928c82010-12-23 07:43:04 +00002420 return -EINVAL;
2421
2422 l5_cid += BNX2X_FCOE_L5_CID_BASE;
2423
2424 if (sizeof(*fcoe_disable) > CNIC_KWQ16_DATA_SIZE) {
2425 netdev_err(dev->netdev, "fcoe_disable size too big\n");
2426 return -ENOMEM;
2427 }
2428 fcoe_disable = cnic_get_kwqe_16_data(cp, l5_cid, &l5_data);
2429 if (!fcoe_disable)
2430 return -ENOMEM;
2431
2432 memset(fcoe_disable, 0, sizeof(*fcoe_disable));
2433 memcpy(&fcoe_disable->enable_disable_kwqe, req, sizeof(*req));
2434 ret = cnic_submit_kwqe_16(dev, FCOE_RAMROD_CMD_ID_DISABLE_CONN, cid,
2435 FCOE_CONNECTION_TYPE, &l5_data);
2436 return ret;
2437}
2438
2439static int cnic_bnx2x_fcoe_destroy(struct cnic_dev *dev, struct kwqe *kwqe)
2440{
2441 struct fcoe_kwqe_conn_destroy *req;
2442 union l5cm_specific_data l5_data;
2443 int ret;
2444 u32 cid, l5_cid;
2445 struct cnic_local *cp = dev->cnic_priv;
2446 struct cnic_context *ctx;
2447 struct fcoe_kcqe kcqe;
2448 struct kcqe *cqes[1];
2449
2450 req = (struct fcoe_kwqe_conn_destroy *) kwqe;
2451 cid = req->context_id;
2452 l5_cid = req->conn_id;
Michael Chandc219a22011-08-26 09:45:39 +00002453 if (l5_cid >= dev->max_fcoe_conn)
Michael Chane1928c82010-12-23 07:43:04 +00002454 return -EINVAL;
2455
2456 l5_cid += BNX2X_FCOE_L5_CID_BASE;
2457
2458 ctx = &cp->ctx_tbl[l5_cid];
2459
2460 init_waitqueue_head(&ctx->waitq);
2461 ctx->wait_cond = 0;
2462
Michael Chandcc7e3a2011-08-26 09:45:40 +00002463 memset(&kcqe, 0, sizeof(kcqe));
2464 kcqe.completion_status = FCOE_KCQE_COMPLETION_STATUS_ERROR;
Michael Chane1928c82010-12-23 07:43:04 +00002465 memset(&l5_data, 0, sizeof(l5_data));
2466 ret = cnic_submit_kwqe_16(dev, FCOE_RAMROD_CMD_ID_TERMINATE_CONN, cid,
2467 FCOE_CONNECTION_TYPE, &l5_data);
2468 if (ret == 0) {
Michael Chandcc7e3a2011-08-26 09:45:40 +00002469 wait_event_timeout(ctx->waitq, ctx->wait_cond, CNIC_RAMROD_TMO);
2470 if (ctx->wait_cond)
2471 kcqe.completion_status = 0;
Michael Chane1928c82010-12-23 07:43:04 +00002472 }
2473
Michael Chandcc7e3a2011-08-26 09:45:40 +00002474 set_bit(CTX_FL_DELETE_WAIT, &ctx->ctx_flags);
2475 queue_delayed_work(cnic_wq, &cp->delete_task, msecs_to_jiffies(2000));
2476
Michael Chane1928c82010-12-23 07:43:04 +00002477 kcqe.op_code = FCOE_KCQE_OPCODE_DESTROY_CONN;
2478 kcqe.fcoe_conn_id = req->conn_id;
2479 kcqe.fcoe_conn_context_id = cid;
2480
2481 cqes[0] = (struct kcqe *) &kcqe;
2482 cnic_reply_bnx2x_kcqes(dev, CNIC_ULP_FCOE, cqes, 1);
2483 return ret;
2484}
2485
Michael Chan74e49bb2011-07-20 14:55:23 +00002486static void cnic_bnx2x_delete_wait(struct cnic_dev *dev, u32 start_cid)
2487{
2488 struct cnic_local *cp = dev->cnic_priv;
2489 u32 i;
2490
2491 for (i = start_cid; i < cp->max_cid_space; i++) {
2492 struct cnic_context *ctx = &cp->ctx_tbl[i];
2493 int j;
2494
2495 while (test_bit(CTX_FL_DELETE_WAIT, &ctx->ctx_flags))
2496 msleep(10);
2497
2498 for (j = 0; j < 5; j++) {
2499 if (!test_bit(CTX_FL_OFFLD_START, &ctx->ctx_flags))
2500 break;
2501 msleep(20);
2502 }
2503
2504 if (test_bit(CTX_FL_OFFLD_START, &ctx->ctx_flags))
2505 netdev_warn(dev->netdev, "CID %x not deleted\n",
2506 ctx->cid);
2507 }
2508}
2509
Michael Chane1928c82010-12-23 07:43:04 +00002510static int cnic_bnx2x_fcoe_fw_destroy(struct cnic_dev *dev, struct kwqe *kwqe)
2511{
2512 struct fcoe_kwqe_destroy *req;
2513 union l5cm_specific_data l5_data;
2514 struct cnic_local *cp = dev->cnic_priv;
2515 int ret;
2516 u32 cid;
2517
Michael Chan74e49bb2011-07-20 14:55:23 +00002518 cnic_bnx2x_delete_wait(dev, MAX_ISCSI_TBL_SZ);
2519
Michael Chane1928c82010-12-23 07:43:04 +00002520 req = (struct fcoe_kwqe_destroy *) kwqe;
2521 cid = BNX2X_HW_CID(cp, cp->fcoe_init_cid);
2522
2523 memset(&l5_data, 0, sizeof(l5_data));
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03002524 ret = cnic_submit_kwqe_16(dev, FCOE_RAMROD_CMD_ID_DESTROY_FUNC, cid,
Michael Chane1928c82010-12-23 07:43:04 +00002525 FCOE_CONNECTION_TYPE, &l5_data);
2526 return ret;
2527}
2528
Michael Chan23021c22012-01-04 12:12:28 +00002529static void cnic_bnx2x_kwqe_err(struct cnic_dev *dev, struct kwqe *kwqe)
2530{
2531 struct cnic_local *cp = dev->cnic_priv;
2532 struct kcqe kcqe;
2533 struct kcqe *cqes[1];
2534 u32 cid;
2535 u32 opcode = KWQE_OPCODE(kwqe->kwqe_op_flag);
2536 u32 layer_code = kwqe->kwqe_op_flag & KWQE_LAYER_MASK;
Michael Chan3238a9b2012-02-05 15:24:40 +00002537 u32 kcqe_op;
Michael Chan23021c22012-01-04 12:12:28 +00002538 int ulp_type;
2539
2540 cid = kwqe->kwqe_info0;
2541 memset(&kcqe, 0, sizeof(kcqe));
2542
Michael Chan3238a9b2012-02-05 15:24:40 +00002543 if (layer_code == KWQE_FLAGS_LAYER_MASK_L5_FCOE) {
2544 u32 l5_cid = 0;
2545
2546 ulp_type = CNIC_ULP_FCOE;
2547 if (opcode == FCOE_KWQE_OPCODE_DISABLE_CONN) {
2548 struct fcoe_kwqe_conn_enable_disable *req;
2549
2550 req = (struct fcoe_kwqe_conn_enable_disable *) kwqe;
2551 kcqe_op = FCOE_KCQE_OPCODE_DISABLE_CONN;
2552 cid = req->context_id;
2553 l5_cid = req->conn_id;
2554 } else if (opcode == FCOE_KWQE_OPCODE_DESTROY) {
2555 kcqe_op = FCOE_KCQE_OPCODE_DESTROY_FUNC;
2556 } else {
2557 return;
2558 }
2559 kcqe.kcqe_op_flag = kcqe_op << KCQE_FLAGS_OPCODE_SHIFT;
2560 kcqe.kcqe_op_flag |= KCQE_FLAGS_LAYER_MASK_L5_FCOE;
Michael Chan8ec3e702012-03-21 15:38:34 +00002561 kcqe.kcqe_info1 = FCOE_KCQE_COMPLETION_STATUS_PARITY_ERROR;
Michael Chan3238a9b2012-02-05 15:24:40 +00002562 kcqe.kcqe_info2 = cid;
2563 kcqe.kcqe_info0 = l5_cid;
2564
2565 } else if (layer_code == KWQE_FLAGS_LAYER_MASK_L5_ISCSI) {
Michael Chan23021c22012-01-04 12:12:28 +00002566 ulp_type = CNIC_ULP_ISCSI;
2567 if (opcode == ISCSI_KWQE_OPCODE_UPDATE_CONN)
2568 cid = kwqe->kwqe_info1;
2569
2570 kcqe.kcqe_op_flag = (opcode + 0x10) << KCQE_FLAGS_OPCODE_SHIFT;
2571 kcqe.kcqe_op_flag |= KCQE_FLAGS_LAYER_MASK_L5_ISCSI;
Michael Chan8ec3e702012-03-21 15:38:34 +00002572 kcqe.kcqe_info1 = ISCSI_KCQE_COMPLETION_STATUS_PARITY_ERR;
Michael Chan23021c22012-01-04 12:12:28 +00002573 kcqe.kcqe_info2 = cid;
2574 cnic_get_l5_cid(cp, BNX2X_SW_CID(cid), &kcqe.kcqe_info0);
2575
2576 } else if (layer_code == KWQE_FLAGS_LAYER_MASK_L4) {
2577 struct l4_kcq *l4kcqe = (struct l4_kcq *) &kcqe;
Michael Chan23021c22012-01-04 12:12:28 +00002578
2579 ulp_type = CNIC_ULP_L4;
2580 if (opcode == L4_KWQE_OPCODE_VALUE_CONNECT1)
2581 kcqe_op = L4_KCQE_OPCODE_VALUE_CONNECT_COMPLETE;
2582 else if (opcode == L4_KWQE_OPCODE_VALUE_RESET)
2583 kcqe_op = L4_KCQE_OPCODE_VALUE_RESET_COMP;
2584 else if (opcode == L4_KWQE_OPCODE_VALUE_CLOSE)
2585 kcqe_op = L4_KCQE_OPCODE_VALUE_CLOSE_COMP;
2586 else
2587 return;
2588
2589 kcqe.kcqe_op_flag = (kcqe_op << KCQE_FLAGS_OPCODE_SHIFT) |
2590 KCQE_FLAGS_LAYER_MASK_L4;
Michael Chan8ec3e702012-03-21 15:38:34 +00002591 l4kcqe->status = L4_KCQE_COMPLETION_STATUS_PARITY_ERROR;
Michael Chan23021c22012-01-04 12:12:28 +00002592 l4kcqe->cid = cid;
2593 cnic_get_l5_cid(cp, BNX2X_SW_CID(cid), &l4kcqe->conn_id);
2594 } else {
2595 return;
2596 }
2597
Joe Perches64699332012-06-04 12:44:16 +00002598 cqes[0] = &kcqe;
Michael Chan23021c22012-01-04 12:12:28 +00002599 cnic_reply_bnx2x_kcqes(dev, ulp_type, cqes, 1);
2600}
2601
Michael Chane1928c82010-12-23 07:43:04 +00002602static int cnic_submit_bnx2x_iscsi_kwqes(struct cnic_dev *dev,
2603 struct kwqe *wqes[], u32 num_wqes)
Michael Chan71034ba2009-10-10 13:46:59 +00002604{
2605 int i, work, ret;
2606 u32 opcode;
2607 struct kwqe *kwqe;
2608
2609 if (!test_bit(CNIC_F_CNIC_UP, &dev->flags))
2610 return -EAGAIN; /* bnx2 is down */
2611
2612 for (i = 0; i < num_wqes; ) {
2613 kwqe = wqes[i];
2614 opcode = KWQE_OPCODE(kwqe->kwqe_op_flag);
2615 work = 1;
2616
2617 switch (opcode) {
2618 case ISCSI_KWQE_OPCODE_INIT1:
2619 ret = cnic_bnx2x_iscsi_init1(dev, kwqe);
2620 break;
2621 case ISCSI_KWQE_OPCODE_INIT2:
2622 ret = cnic_bnx2x_iscsi_init2(dev, kwqe);
2623 break;
2624 case ISCSI_KWQE_OPCODE_OFFLOAD_CONN1:
2625 ret = cnic_bnx2x_iscsi_ofld1(dev, &wqes[i],
2626 num_wqes - i, &work);
2627 break;
2628 case ISCSI_KWQE_OPCODE_UPDATE_CONN:
2629 ret = cnic_bnx2x_iscsi_update(dev, kwqe);
2630 break;
2631 case ISCSI_KWQE_OPCODE_DESTROY_CONN:
2632 ret = cnic_bnx2x_iscsi_destroy(dev, kwqe);
2633 break;
2634 case L4_KWQE_OPCODE_VALUE_CONNECT1:
2635 ret = cnic_bnx2x_connect(dev, &wqes[i], num_wqes - i,
2636 &work);
2637 break;
2638 case L4_KWQE_OPCODE_VALUE_CLOSE:
2639 ret = cnic_bnx2x_close(dev, kwqe);
2640 break;
2641 case L4_KWQE_OPCODE_VALUE_RESET:
2642 ret = cnic_bnx2x_reset(dev, kwqe);
2643 break;
2644 case L4_KWQE_OPCODE_VALUE_OFFLOAD_PG:
2645 ret = cnic_bnx2x_offload_pg(dev, kwqe);
2646 break;
2647 case L4_KWQE_OPCODE_VALUE_UPDATE_PG:
2648 ret = cnic_bnx2x_update_pg(dev, kwqe);
2649 break;
2650 case L4_KWQE_OPCODE_VALUE_UPLOAD_PG:
2651 ret = 0;
2652 break;
2653 default:
2654 ret = 0;
Joe Perchesddf79b22010-02-17 15:01:54 +00002655 netdev_err(dev->netdev, "Unknown type of KWQE(0x%x)\n",
2656 opcode);
Michael Chan71034ba2009-10-10 13:46:59 +00002657 break;
2658 }
Michael Chan23021c22012-01-04 12:12:28 +00002659 if (ret < 0) {
Joe Perchesddf79b22010-02-17 15:01:54 +00002660 netdev_err(dev->netdev, "KWQE(0x%x) failed\n",
2661 opcode);
Michael Chan23021c22012-01-04 12:12:28 +00002662
2663 /* Possibly bnx2x parity error, send completion
2664 * to ulp drivers with error code to speed up
2665 * cleanup and reset recovery.
2666 */
2667 if (ret == -EIO || ret == -EAGAIN)
2668 cnic_bnx2x_kwqe_err(dev, kwqe);
2669 }
Michael Chan71034ba2009-10-10 13:46:59 +00002670 i += work;
2671 }
2672 return 0;
2673}
2674
Michael Chane1928c82010-12-23 07:43:04 +00002675static int cnic_submit_bnx2x_fcoe_kwqes(struct cnic_dev *dev,
2676 struct kwqe *wqes[], u32 num_wqes)
2677{
2678 struct cnic_local *cp = dev->cnic_priv;
2679 int i, work, ret;
2680 u32 opcode;
2681 struct kwqe *kwqe;
2682
2683 if (!test_bit(CNIC_F_CNIC_UP, &dev->flags))
2684 return -EAGAIN; /* bnx2 is down */
2685
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03002686 if (!BNX2X_CHIP_IS_E2_PLUS(cp->chip_id))
Michael Chane1928c82010-12-23 07:43:04 +00002687 return -EINVAL;
2688
2689 for (i = 0; i < num_wqes; ) {
2690 kwqe = wqes[i];
2691 opcode = KWQE_OPCODE(kwqe->kwqe_op_flag);
2692 work = 1;
2693
2694 switch (opcode) {
2695 case FCOE_KWQE_OPCODE_INIT1:
2696 ret = cnic_bnx2x_fcoe_init1(dev, &wqes[i],
2697 num_wqes - i, &work);
2698 break;
2699 case FCOE_KWQE_OPCODE_OFFLOAD_CONN1:
2700 ret = cnic_bnx2x_fcoe_ofld1(dev, &wqes[i],
2701 num_wqes - i, &work);
2702 break;
2703 case FCOE_KWQE_OPCODE_ENABLE_CONN:
2704 ret = cnic_bnx2x_fcoe_enable(dev, kwqe);
2705 break;
2706 case FCOE_KWQE_OPCODE_DISABLE_CONN:
2707 ret = cnic_bnx2x_fcoe_disable(dev, kwqe);
2708 break;
2709 case FCOE_KWQE_OPCODE_DESTROY_CONN:
2710 ret = cnic_bnx2x_fcoe_destroy(dev, kwqe);
2711 break;
2712 case FCOE_KWQE_OPCODE_DESTROY:
2713 ret = cnic_bnx2x_fcoe_fw_destroy(dev, kwqe);
2714 break;
2715 case FCOE_KWQE_OPCODE_STAT:
2716 ret = cnic_bnx2x_fcoe_stat(dev, kwqe);
2717 break;
2718 default:
2719 ret = 0;
2720 netdev_err(dev->netdev, "Unknown type of KWQE(0x%x)\n",
2721 opcode);
2722 break;
2723 }
Michael Chan3238a9b2012-02-05 15:24:40 +00002724 if (ret < 0) {
Michael Chane1928c82010-12-23 07:43:04 +00002725 netdev_err(dev->netdev, "KWQE(0x%x) failed\n",
2726 opcode);
Michael Chan3238a9b2012-02-05 15:24:40 +00002727
2728 /* Possibly bnx2x parity error, send completion
2729 * to ulp drivers with error code to speed up
2730 * cleanup and reset recovery.
2731 */
2732 if (ret == -EIO || ret == -EAGAIN)
2733 cnic_bnx2x_kwqe_err(dev, kwqe);
2734 }
Michael Chane1928c82010-12-23 07:43:04 +00002735 i += work;
2736 }
2737 return 0;
2738}
2739
2740static int cnic_submit_bnx2x_kwqes(struct cnic_dev *dev, struct kwqe *wqes[],
2741 u32 num_wqes)
2742{
2743 int ret = -EINVAL;
2744 u32 layer_code;
2745
2746 if (!test_bit(CNIC_F_CNIC_UP, &dev->flags))
2747 return -EAGAIN; /* bnx2x is down */
2748
2749 if (!num_wqes)
2750 return 0;
2751
2752 layer_code = wqes[0]->kwqe_op_flag & KWQE_LAYER_MASK;
2753 switch (layer_code) {
2754 case KWQE_FLAGS_LAYER_MASK_L5_ISCSI:
2755 case KWQE_FLAGS_LAYER_MASK_L4:
2756 case KWQE_FLAGS_LAYER_MASK_L2:
2757 ret = cnic_submit_bnx2x_iscsi_kwqes(dev, wqes, num_wqes);
2758 break;
2759
2760 case KWQE_FLAGS_LAYER_MASK_L5_FCOE:
2761 ret = cnic_submit_bnx2x_fcoe_kwqes(dev, wqes, num_wqes);
2762 break;
2763 }
2764 return ret;
2765}
2766
2767static inline u32 cnic_get_kcqe_layer_mask(u32 opflag)
2768{
2769 if (unlikely(KCQE_OPCODE(opflag) == FCOE_RAMROD_CMD_ID_TERMINATE_CONN))
2770 return KCQE_FLAGS_LAYER_MASK_L4;
2771
2772 return opflag & KCQE_FLAGS_LAYER_MASK;
2773}
2774
Michael Chana4636962009-06-08 18:14:43 -07002775static void service_kcqes(struct cnic_dev *dev, int num_cqes)
2776{
2777 struct cnic_local *cp = dev->cnic_priv;
Dmitry Kravkovc2bff632010-10-06 03:33:18 +00002778 int i, j, comp = 0;
Michael Chana4636962009-06-08 18:14:43 -07002779
2780 i = 0;
2781 j = 1;
2782 while (num_cqes) {
2783 struct cnic_ulp_ops *ulp_ops;
2784 int ulp_type;
2785 u32 kcqe_op_flag = cp->completed_kcq[i]->kcqe_op_flag;
Michael Chane1928c82010-12-23 07:43:04 +00002786 u32 kcqe_layer = cnic_get_kcqe_layer_mask(kcqe_op_flag);
Michael Chana4636962009-06-08 18:14:43 -07002787
2788 if (unlikely(kcqe_op_flag & KCQE_RAMROD_COMPLETION))
Dmitry Kravkovc2bff632010-10-06 03:33:18 +00002789 comp++;
Michael Chana4636962009-06-08 18:14:43 -07002790
2791 while (j < num_cqes) {
2792 u32 next_op = cp->completed_kcq[i + j]->kcqe_op_flag;
2793
Michael Chane1928c82010-12-23 07:43:04 +00002794 if (cnic_get_kcqe_layer_mask(next_op) != kcqe_layer)
Michael Chana4636962009-06-08 18:14:43 -07002795 break;
2796
2797 if (unlikely(next_op & KCQE_RAMROD_COMPLETION))
Dmitry Kravkovc2bff632010-10-06 03:33:18 +00002798 comp++;
Michael Chana4636962009-06-08 18:14:43 -07002799 j++;
2800 }
2801
2802 if (kcqe_layer == KCQE_FLAGS_LAYER_MASK_L5_RDMA)
2803 ulp_type = CNIC_ULP_RDMA;
2804 else if (kcqe_layer == KCQE_FLAGS_LAYER_MASK_L5_ISCSI)
2805 ulp_type = CNIC_ULP_ISCSI;
Michael Chane1928c82010-12-23 07:43:04 +00002806 else if (kcqe_layer == KCQE_FLAGS_LAYER_MASK_L5_FCOE)
2807 ulp_type = CNIC_ULP_FCOE;
Michael Chana4636962009-06-08 18:14:43 -07002808 else if (kcqe_layer == KCQE_FLAGS_LAYER_MASK_L4)
2809 ulp_type = CNIC_ULP_L4;
2810 else if (kcqe_layer == KCQE_FLAGS_LAYER_MASK_L2)
2811 goto end;
2812 else {
Joe Perchesddf79b22010-02-17 15:01:54 +00002813 netdev_err(dev->netdev, "Unknown type of KCQE(0x%x)\n",
2814 kcqe_op_flag);
Michael Chana4636962009-06-08 18:14:43 -07002815 goto end;
2816 }
2817
2818 rcu_read_lock();
2819 ulp_ops = rcu_dereference(cp->ulp_ops[ulp_type]);
2820 if (likely(ulp_ops)) {
2821 ulp_ops->indicate_kcqes(cp->ulp_handle[ulp_type],
2822 cp->completed_kcq + i, j);
2823 }
2824 rcu_read_unlock();
2825end:
2826 num_cqes -= j;
2827 i += j;
2828 j = 1;
2829 }
Dmitry Kravkovc2bff632010-10-06 03:33:18 +00002830 if (unlikely(comp))
2831 cnic_spq_completion(dev, DRV_CTL_RET_L5_SPQ_CREDIT_CMD, comp);
Michael Chana4636962009-06-08 18:14:43 -07002832}
2833
Michael Chan644b9d42010-06-24 14:58:40 +00002834static int cnic_get_kcqes(struct cnic_dev *dev, struct kcq_info *info)
Michael Chana4636962009-06-08 18:14:43 -07002835{
2836 struct cnic_local *cp = dev->cnic_priv;
Michael Chan644b9d42010-06-24 14:58:40 +00002837 u16 i, ri, hw_prod, last;
Michael Chana4636962009-06-08 18:14:43 -07002838 struct kcqe *kcqe;
2839 int kcqe_cnt = 0, last_cnt = 0;
2840
Michael Chan644b9d42010-06-24 14:58:40 +00002841 i = ri = last = info->sw_prod_idx;
Michael Chana4636962009-06-08 18:14:43 -07002842 ri &= MAX_KCQ_IDX;
Michael Chan644b9d42010-06-24 14:58:40 +00002843 hw_prod = *info->hw_prod_idx_ptr;
Michael Chan59e51372011-06-14 01:32:38 +00002844 hw_prod = info->hw_idx(hw_prod);
Michael Chana4636962009-06-08 18:14:43 -07002845
2846 while ((i != hw_prod) && (kcqe_cnt < MAX_COMPLETED_KCQE)) {
Michael Chan644b9d42010-06-24 14:58:40 +00002847 kcqe = &info->kcq[KCQ_PG(ri)][KCQ_IDX(ri)];
Michael Chana4636962009-06-08 18:14:43 -07002848 cp->completed_kcq[kcqe_cnt++] = kcqe;
Michael Chan59e51372011-06-14 01:32:38 +00002849 i = info->next_idx(i);
Michael Chana4636962009-06-08 18:14:43 -07002850 ri = i & MAX_KCQ_IDX;
2851 if (likely(!(kcqe->kcqe_op_flag & KCQE_FLAGS_NEXT))) {
2852 last_cnt = kcqe_cnt;
2853 last = i;
2854 }
2855 }
2856
Michael Chan644b9d42010-06-24 14:58:40 +00002857 info->sw_prod_idx = last;
Michael Chana4636962009-06-08 18:14:43 -07002858 return last_cnt;
2859}
2860
Michael Chan48f753d2010-05-18 11:32:53 +00002861static int cnic_l2_completion(struct cnic_local *cp)
2862{
2863 u16 hw_cons, sw_cons;
Michael Chancd801532010-10-13 14:06:49 +00002864 struct cnic_uio_dev *udev = cp->udev;
Michael Chan48f753d2010-05-18 11:32:53 +00002865 union eth_rx_cqe *cqe, *cqe_ring = (union eth_rx_cqe *)
Michael Chancd801532010-10-13 14:06:49 +00002866 (udev->l2_ring + (2 * BCM_PAGE_SIZE));
Michael Chan48f753d2010-05-18 11:32:53 +00002867 u32 cmd;
2868 int comp = 0;
2869
2870 if (!test_bit(CNIC_F_BNX2X_CLASS, &cp->dev->flags))
2871 return 0;
2872
2873 hw_cons = *cp->rx_cons_ptr;
2874 if ((hw_cons & BNX2X_MAX_RCQ_DESC_CNT) == BNX2X_MAX_RCQ_DESC_CNT)
2875 hw_cons++;
2876
2877 sw_cons = cp->rx_cons;
2878 while (sw_cons != hw_cons) {
2879 u8 cqe_fp_flags;
2880
2881 cqe = &cqe_ring[sw_cons & BNX2X_MAX_RCQ_DESC_CNT];
2882 cqe_fp_flags = cqe->fast_path_cqe.type_error_flags;
2883 if (cqe_fp_flags & ETH_FAST_PATH_RX_CQE_TYPE) {
2884 cmd = le32_to_cpu(cqe->ramrod_cqe.conn_and_cmd_data);
2885 cmd >>= COMMON_RAMROD_ETH_RX_CQE_CMD_ID_SHIFT;
2886 if (cmd == RAMROD_CMD_ID_ETH_CLIENT_SETUP ||
2887 cmd == RAMROD_CMD_ID_ETH_HALT)
2888 comp++;
2889 }
2890 sw_cons = BNX2X_NEXT_RCQE(sw_cons);
2891 }
2892 return comp;
2893}
2894
Michael Chan86b53602009-10-10 13:46:57 +00002895static void cnic_chk_pkt_rings(struct cnic_local *cp)
Michael Chana4636962009-06-08 18:14:43 -07002896{
Michael Chan541a7812010-10-06 03:17:22 +00002897 u16 rx_cons, tx_cons;
Michael Chan48f753d2010-05-18 11:32:53 +00002898 int comp = 0;
Michael Chana4636962009-06-08 18:14:43 -07002899
Michael Chan541a7812010-10-06 03:17:22 +00002900 if (!test_bit(CNIC_LCL_FL_RINGS_INITED, &cp->cnic_local_flags))
Michael Chan66fee9e2010-06-24 14:58:38 +00002901 return;
2902
Michael Chan541a7812010-10-06 03:17:22 +00002903 rx_cons = *cp->rx_cons_ptr;
2904 tx_cons = *cp->tx_cons_ptr;
Michael Chana4636962009-06-08 18:14:43 -07002905 if (cp->tx_cons != tx_cons || cp->rx_cons != rx_cons) {
Michael Chan48f753d2010-05-18 11:32:53 +00002906 if (test_bit(CNIC_LCL_FL_L2_WAIT, &cp->cnic_local_flags))
2907 comp = cnic_l2_completion(cp);
2908
Michael Chana4636962009-06-08 18:14:43 -07002909 cp->tx_cons = tx_cons;
2910 cp->rx_cons = rx_cons;
Michael Chan71034ba2009-10-10 13:46:59 +00002911
Michael Chancd801532010-10-13 14:06:49 +00002912 if (cp->udev)
2913 uio_event_notify(&cp->udev->cnic_uinfo);
Michael Chana4636962009-06-08 18:14:43 -07002914 }
Michael Chan48f753d2010-05-18 11:32:53 +00002915 if (comp)
2916 clear_bit(CNIC_LCL_FL_L2_WAIT, &cp->cnic_local_flags);
Michael Chana4636962009-06-08 18:14:43 -07002917}
2918
Michael Chanb177a5d52010-06-24 14:58:41 +00002919static u32 cnic_service_bnx2_queues(struct cnic_dev *dev)
Michael Chana4636962009-06-08 18:14:43 -07002920{
Michael Chana4636962009-06-08 18:14:43 -07002921 struct cnic_local *cp = dev->cnic_priv;
Michael Chanb177a5d52010-06-24 14:58:41 +00002922 u32 status_idx = (u16) *cp->kcq1.status_idx_ptr;
Michael Chana4636962009-06-08 18:14:43 -07002923 int kcqe_cnt;
2924
Michael Chan107c3f42011-03-02 13:00:49 +00002925 /* status block index must be read before reading other fields */
2926 rmb();
Michael Chana4636962009-06-08 18:14:43 -07002927 cp->kwq_con_idx = *cp->kwq_con_idx_ptr;
2928
Michael Chan644b9d42010-06-24 14:58:40 +00002929 while ((kcqe_cnt = cnic_get_kcqes(dev, &cp->kcq1))) {
Michael Chana4636962009-06-08 18:14:43 -07002930
2931 service_kcqes(dev, kcqe_cnt);
2932
2933 /* Tell compiler that status_blk fields can change. */
2934 barrier();
Michael Chan93736652011-06-08 19:29:32 +00002935 status_idx = (u16) *cp->kcq1.status_idx_ptr;
2936 /* status block index must be read first */
2937 rmb();
2938 cp->kwq_con_idx = *cp->kwq_con_idx_ptr;
Michael Chana4636962009-06-08 18:14:43 -07002939 }
2940
Michael Chan644b9d42010-06-24 14:58:40 +00002941 CNIC_WR16(dev, cp->kcq1.io_addr, cp->kcq1.sw_prod_idx);
Michael Chana4636962009-06-08 18:14:43 -07002942
Michael Chan86b53602009-10-10 13:46:57 +00002943 cnic_chk_pkt_rings(cp);
Michael Chanb177a5d52010-06-24 14:58:41 +00002944
Michael Chana4636962009-06-08 18:14:43 -07002945 return status_idx;
2946}
2947
Michael Chanb177a5d52010-06-24 14:58:41 +00002948static int cnic_service_bnx2(void *data, void *status_blk)
2949{
2950 struct cnic_dev *dev = data;
Michael Chanb177a5d52010-06-24 14:58:41 +00002951
Michael Chaneaaa6e92010-12-23 08:38:30 +00002952 if (unlikely(!test_bit(CNIC_F_CNIC_UP, &dev->flags))) {
2953 struct status_block *sblk = status_blk;
2954
2955 return sblk->status_idx;
2956 }
Michael Chanb177a5d52010-06-24 14:58:41 +00002957
2958 return cnic_service_bnx2_queues(dev);
2959}
2960
Michael Chana4636962009-06-08 18:14:43 -07002961static void cnic_service_bnx2_msix(unsigned long data)
2962{
2963 struct cnic_dev *dev = (struct cnic_dev *) data;
2964 struct cnic_local *cp = dev->cnic_priv;
Michael Chana4636962009-06-08 18:14:43 -07002965
Michael Chanb177a5d52010-06-24 14:58:41 +00002966 cp->last_status_idx = cnic_service_bnx2_queues(dev);
Michael Chana4636962009-06-08 18:14:43 -07002967
Michael Chana4636962009-06-08 18:14:43 -07002968 CNIC_WR(dev, BNX2_PCICFG_INT_ACK_CMD, cp->int_num |
2969 BNX2_PCICFG_INT_ACK_CMD_INDEX_VALID | cp->last_status_idx);
2970}
2971
Michael Chan66fee9e2010-06-24 14:58:38 +00002972static void cnic_doirq(struct cnic_dev *dev)
2973{
2974 struct cnic_local *cp = dev->cnic_priv;
Michael Chan66fee9e2010-06-24 14:58:38 +00002975
2976 if (likely(test_bit(CNIC_F_CNIC_UP, &dev->flags))) {
Michael Chaneaaa6e92010-12-23 08:38:30 +00002977 u16 prod = cp->kcq1.sw_prod_idx & MAX_KCQ_IDX;
2978
Michael Chan66fee9e2010-06-24 14:58:38 +00002979 prefetch(cp->status_blk.gen);
Michael Chane6c28892010-06-24 14:58:39 +00002980 prefetch(&cp->kcq1.kcq[KCQ_PG(prod)][KCQ_IDX(prod)]);
Michael Chan66fee9e2010-06-24 14:58:38 +00002981
2982 tasklet_schedule(&cp->cnic_irq_task);
2983 }
2984}
2985
Michael Chana4636962009-06-08 18:14:43 -07002986static irqreturn_t cnic_irq(int irq, void *dev_instance)
2987{
2988 struct cnic_dev *dev = dev_instance;
2989 struct cnic_local *cp = dev->cnic_priv;
Michael Chana4636962009-06-08 18:14:43 -07002990
2991 if (cp->ack_int)
2992 cp->ack_int(dev);
2993
Michael Chan66fee9e2010-06-24 14:58:38 +00002994 cnic_doirq(dev);
Michael Chana4636962009-06-08 18:14:43 -07002995
2996 return IRQ_HANDLED;
2997}
2998
Michael Chan71034ba2009-10-10 13:46:59 +00002999static inline void cnic_ack_bnx2x_int(struct cnic_dev *dev, u8 id, u8 storm,
3000 u16 index, u8 op, u8 update)
3001{
3002 struct cnic_local *cp = dev->cnic_priv;
3003 u32 hc_addr = (HC_REG_COMMAND_REG + CNIC_PORT(cp) * 32 +
3004 COMMAND_REG_INT_ACK);
3005 struct igu_ack_register igu_ack;
3006
3007 igu_ack.status_block_index = index;
3008 igu_ack.sb_id_and_flags =
3009 ((id << IGU_ACK_REGISTER_STATUS_BLOCK_ID_SHIFT) |
3010 (storm << IGU_ACK_REGISTER_STORM_ID_SHIFT) |
3011 (update << IGU_ACK_REGISTER_UPDATE_INDEX_SHIFT) |
3012 (op << IGU_ACK_REGISTER_INTERRUPT_MODE_SHIFT));
3013
3014 CNIC_WR(dev, hc_addr, (*(u32 *)&igu_ack));
3015}
3016
Michael Chanee87a822010-10-13 14:06:51 +00003017static void cnic_ack_igu_sb(struct cnic_dev *dev, u8 igu_sb_id, u8 segment,
3018 u16 index, u8 op, u8 update)
3019{
3020 struct igu_regular cmd_data;
3021 u32 igu_addr = BAR_IGU_INTMEM + (IGU_CMD_INT_ACK_BASE + igu_sb_id) * 8;
3022
3023 cmd_data.sb_id_and_flags =
3024 (index << IGU_REGULAR_SB_INDEX_SHIFT) |
3025 (segment << IGU_REGULAR_SEGMENT_ACCESS_SHIFT) |
3026 (update << IGU_REGULAR_BUPDATE_SHIFT) |
3027 (op << IGU_REGULAR_ENABLE_INT_SHIFT);
3028
3029
3030 CNIC_WR(dev, igu_addr, cmd_data.sb_id_and_flags);
3031}
3032
Michael Chan71034ba2009-10-10 13:46:59 +00003033static void cnic_ack_bnx2x_msix(struct cnic_dev *dev)
3034{
3035 struct cnic_local *cp = dev->cnic_priv;
3036
Dmitry Kravkov523224a2010-10-06 03:23:26 +00003037 cnic_ack_bnx2x_int(dev, cp->bnx2x_igu_sb_id, CSTORM_ID, 0,
Michael Chan71034ba2009-10-10 13:46:59 +00003038 IGU_INT_DISABLE, 0);
3039}
3040
Michael Chanee87a822010-10-13 14:06:51 +00003041static void cnic_ack_bnx2x_e2_msix(struct cnic_dev *dev)
3042{
3043 struct cnic_local *cp = dev->cnic_priv;
3044
3045 cnic_ack_igu_sb(dev, cp->bnx2x_igu_sb_id, IGU_SEG_ACCESS_DEF, 0,
3046 IGU_INT_DISABLE, 0);
3047}
3048
Michael Chanb177a5d52010-06-24 14:58:41 +00003049static u32 cnic_service_bnx2x_kcq(struct cnic_dev *dev, struct kcq_info *info)
Michael Chan71034ba2009-10-10 13:46:59 +00003050{
Michael Chanb177a5d52010-06-24 14:58:41 +00003051 u32 last_status = *info->status_idx_ptr;
Michael Chan71034ba2009-10-10 13:46:59 +00003052 int kcqe_cnt;
3053
Michael Chan107c3f42011-03-02 13:00:49 +00003054 /* status block index must be read before reading the KCQ */
3055 rmb();
Michael Chanb177a5d52010-06-24 14:58:41 +00003056 while ((kcqe_cnt = cnic_get_kcqes(dev, info))) {
Michael Chan71034ba2009-10-10 13:46:59 +00003057
3058 service_kcqes(dev, kcqe_cnt);
3059
3060 /* Tell compiler that sblk fields can change. */
3061 barrier();
Michael Chan71034ba2009-10-10 13:46:59 +00003062
Michael Chanb177a5d52010-06-24 14:58:41 +00003063 last_status = *info->status_idx_ptr;
Michael Chan107c3f42011-03-02 13:00:49 +00003064 /* status block index must be read before reading the KCQ */
3065 rmb();
Michael Chan71034ba2009-10-10 13:46:59 +00003066 }
Michael Chanb177a5d52010-06-24 14:58:41 +00003067 return last_status;
3068}
3069
3070static void cnic_service_bnx2x_bh(unsigned long data)
3071{
3072 struct cnic_dev *dev = (struct cnic_dev *) data;
3073 struct cnic_local *cp = dev->cnic_priv;
Michael Chan0197b082011-03-02 13:00:50 +00003074 u32 status_idx, new_status_idx;
Michael Chanb177a5d52010-06-24 14:58:41 +00003075
3076 if (unlikely(!test_bit(CNIC_F_CNIC_UP, &dev->flags)))
3077 return;
3078
Michael Chan0197b082011-03-02 13:00:50 +00003079 while (1) {
3080 status_idx = cnic_service_bnx2x_kcq(dev, &cp->kcq1);
Michael Chan71034ba2009-10-10 13:46:59 +00003081
Michael Chan0197b082011-03-02 13:00:50 +00003082 CNIC_WR16(dev, cp->kcq1.io_addr,
3083 cp->kcq1.sw_prod_idx + MAX_KCQ_IDX);
Michael Chane21ba412010-12-23 07:43:03 +00003084
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03003085 if (!BNX2X_CHIP_IS_E2_PLUS(cp->chip_id)) {
Michael Chan0197b082011-03-02 13:00:50 +00003086 cnic_ack_bnx2x_int(dev, cp->bnx2x_igu_sb_id, USTORM_ID,
3087 status_idx, IGU_INT_ENABLE, 1);
3088 break;
3089 }
3090
3091 new_status_idx = cnic_service_bnx2x_kcq(dev, &cp->kcq2);
3092
3093 if (new_status_idx != status_idx)
3094 continue;
Michael Chane21ba412010-12-23 07:43:03 +00003095
3096 CNIC_WR16(dev, cp->kcq2.io_addr, cp->kcq2.sw_prod_idx +
3097 MAX_KCQ_IDX);
3098
Michael Chanee87a822010-10-13 14:06:51 +00003099 cnic_ack_igu_sb(dev, cp->bnx2x_igu_sb_id, IGU_SEG_ACCESS_DEF,
3100 status_idx, IGU_INT_ENABLE, 1);
Michael Chan0197b082011-03-02 13:00:50 +00003101
3102 break;
Michael Chane21ba412010-12-23 07:43:03 +00003103 }
Michael Chan71034ba2009-10-10 13:46:59 +00003104}
3105
3106static int cnic_service_bnx2x(void *data, void *status_blk)
3107{
3108 struct cnic_dev *dev = data;
3109 struct cnic_local *cp = dev->cnic_priv;
Michael Chan71034ba2009-10-10 13:46:59 +00003110
Michael Chan66fee9e2010-06-24 14:58:38 +00003111 if (!(cp->ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX))
3112 cnic_doirq(dev);
Michael Chan71034ba2009-10-10 13:46:59 +00003113
Michael Chan66fee9e2010-06-24 14:58:38 +00003114 cnic_chk_pkt_rings(cp);
Michael Chan71034ba2009-10-10 13:46:59 +00003115
3116 return 0;
3117}
3118
Dmitry Kravkovfab0dc82011-03-31 17:04:22 -07003119static void cnic_ulp_stop_one(struct cnic_local *cp, int if_type)
3120{
3121 struct cnic_ulp_ops *ulp_ops;
3122
3123 if (if_type == CNIC_ULP_ISCSI)
3124 cnic_send_nlmsg(cp, ISCSI_KEVENT_IF_DOWN, NULL);
3125
3126 mutex_lock(&cnic_lock);
3127 ulp_ops = rcu_dereference_protected(cp->ulp_ops[if_type],
3128 lockdep_is_held(&cnic_lock));
3129 if (!ulp_ops) {
3130 mutex_unlock(&cnic_lock);
3131 return;
3132 }
3133 set_bit(ULP_F_CALL_PENDING, &cp->ulp_flags[if_type]);
3134 mutex_unlock(&cnic_lock);
3135
3136 if (test_and_clear_bit(ULP_F_START, &cp->ulp_flags[if_type]))
3137 ulp_ops->cnic_stop(cp->ulp_handle[if_type]);
3138
3139 clear_bit(ULP_F_CALL_PENDING, &cp->ulp_flags[if_type]);
3140}
3141
Michael Chana4636962009-06-08 18:14:43 -07003142static void cnic_ulp_stop(struct cnic_dev *dev)
3143{
3144 struct cnic_local *cp = dev->cnic_priv;
3145 int if_type;
3146
Dmitry Kravkovfab0dc82011-03-31 17:04:22 -07003147 for (if_type = 0; if_type < MAX_CNIC_ULP_TYPE; if_type++)
3148 cnic_ulp_stop_one(cp, if_type);
Michael Chana4636962009-06-08 18:14:43 -07003149}
3150
3151static void cnic_ulp_start(struct cnic_dev *dev)
3152{
3153 struct cnic_local *cp = dev->cnic_priv;
3154 int if_type;
3155
Michael Chana4636962009-06-08 18:14:43 -07003156 for (if_type = 0; if_type < MAX_CNIC_ULP_TYPE; if_type++) {
3157 struct cnic_ulp_ops *ulp_ops;
3158
Michael Chan681dbd72009-08-14 15:49:46 +00003159 mutex_lock(&cnic_lock);
Eric Dumazet13707f92011-01-26 19:28:23 +00003160 ulp_ops = rcu_dereference_protected(cp->ulp_ops[if_type],
3161 lockdep_is_held(&cnic_lock));
Michael Chan681dbd72009-08-14 15:49:46 +00003162 if (!ulp_ops || !ulp_ops->cnic_start) {
3163 mutex_unlock(&cnic_lock);
Michael Chana4636962009-06-08 18:14:43 -07003164 continue;
Michael Chan681dbd72009-08-14 15:49:46 +00003165 }
3166 set_bit(ULP_F_CALL_PENDING, &cp->ulp_flags[if_type]);
3167 mutex_unlock(&cnic_lock);
Michael Chana4636962009-06-08 18:14:43 -07003168
3169 if (!test_and_set_bit(ULP_F_START, &cp->ulp_flags[if_type]))
3170 ulp_ops->cnic_start(cp->ulp_handle[if_type]);
Michael Chan681dbd72009-08-14 15:49:46 +00003171
3172 clear_bit(ULP_F_CALL_PENDING, &cp->ulp_flags[if_type]);
Michael Chana4636962009-06-08 18:14:43 -07003173 }
Michael Chana4636962009-06-08 18:14:43 -07003174}
3175
Barak Witkowski1d187b32011-12-05 22:41:50 +00003176static int cnic_copy_ulp_stats(struct cnic_dev *dev, int ulp_type)
3177{
3178 struct cnic_local *cp = dev->cnic_priv;
3179 struct cnic_ulp_ops *ulp_ops;
3180 int rc;
3181
3182 mutex_lock(&cnic_lock);
3183 ulp_ops = cnic_ulp_tbl_prot(ulp_type);
3184 if (ulp_ops && ulp_ops->cnic_get_stats)
3185 rc = ulp_ops->cnic_get_stats(cp->ulp_handle[ulp_type]);
3186 else
3187 rc = -ENODEV;
3188 mutex_unlock(&cnic_lock);
3189 return rc;
3190}
3191
Michael Chana4636962009-06-08 18:14:43 -07003192static int cnic_ctl(void *data, struct cnic_ctl_info *info)
3193{
3194 struct cnic_dev *dev = data;
Barak Witkowski1d187b32011-12-05 22:41:50 +00003195 int ulp_type = CNIC_ULP_ISCSI;
Michael Chana4636962009-06-08 18:14:43 -07003196
3197 switch (info->cmd) {
3198 case CNIC_CTL_STOP_CMD:
3199 cnic_hold(dev);
Michael Chana4636962009-06-08 18:14:43 -07003200
3201 cnic_ulp_stop(dev);
3202 cnic_stop_hw(dev);
3203
Michael Chana4636962009-06-08 18:14:43 -07003204 cnic_put(dev);
3205 break;
3206 case CNIC_CTL_START_CMD:
3207 cnic_hold(dev);
Michael Chana4636962009-06-08 18:14:43 -07003208
3209 if (!cnic_start_hw(dev))
3210 cnic_ulp_start(dev);
3211
Michael Chana4636962009-06-08 18:14:43 -07003212 cnic_put(dev);
3213 break;
Dmitry Kravkovfab0dc82011-03-31 17:04:22 -07003214 case CNIC_CTL_STOP_ISCSI_CMD: {
3215 struct cnic_local *cp = dev->cnic_priv;
3216 set_bit(CNIC_LCL_FL_STOP_ISCSI, &cp->cnic_local_flags);
3217 queue_delayed_work(cnic_wq, &cp->delete_task, 0);
3218 break;
3219 }
Michael Chan71034ba2009-10-10 13:46:59 +00003220 case CNIC_CTL_COMPLETION_CMD: {
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03003221 struct cnic_ctl_completion *comp = &info->data.comp;
3222 u32 cid = BNX2X_SW_CID(comp->cid);
Michael Chan71034ba2009-10-10 13:46:59 +00003223 u32 l5_cid;
3224 struct cnic_local *cp = dev->cnic_priv;
3225
Michael Chana2028b232012-06-27 15:08:19 +00003226 if (!test_bit(CNIC_F_CNIC_UP, &dev->flags))
3227 break;
3228
Michael Chan71034ba2009-10-10 13:46:59 +00003229 if (cnic_get_l5_cid(cp, cid, &l5_cid) == 0) {
3230 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
3231
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03003232 if (unlikely(comp->error)) {
3233 set_bit(CTX_FL_CID_ERROR, &ctx->ctx_flags);
3234 netdev_err(dev->netdev,
3235 "CID %x CFC delete comp error %x\n",
3236 cid, comp->error);
3237 }
3238
Michael Chan71034ba2009-10-10 13:46:59 +00003239 ctx->wait_cond = 1;
3240 wake_up(&ctx->waitq);
3241 }
3242 break;
3243 }
Barak Witkowski1d187b32011-12-05 22:41:50 +00003244 case CNIC_CTL_FCOE_STATS_GET_CMD:
3245 ulp_type = CNIC_ULP_FCOE;
3246 /* fall through */
3247 case CNIC_CTL_ISCSI_STATS_GET_CMD:
3248 cnic_hold(dev);
3249 cnic_copy_ulp_stats(dev, ulp_type);
3250 cnic_put(dev);
3251 break;
3252
Michael Chana4636962009-06-08 18:14:43 -07003253 default:
3254 return -EINVAL;
3255 }
3256 return 0;
3257}
3258
3259static void cnic_ulp_init(struct cnic_dev *dev)
3260{
3261 int i;
3262 struct cnic_local *cp = dev->cnic_priv;
3263
Michael Chana4636962009-06-08 18:14:43 -07003264 for (i = 0; i < MAX_CNIC_ULP_TYPE_EXT; i++) {
3265 struct cnic_ulp_ops *ulp_ops;
3266
Michael Chan7fc1ece2009-08-14 15:49:47 +00003267 mutex_lock(&cnic_lock);
Eric Dumazet13707f92011-01-26 19:28:23 +00003268 ulp_ops = cnic_ulp_tbl_prot(i);
Michael Chan7fc1ece2009-08-14 15:49:47 +00003269 if (!ulp_ops || !ulp_ops->cnic_init) {
3270 mutex_unlock(&cnic_lock);
Michael Chana4636962009-06-08 18:14:43 -07003271 continue;
Michael Chan7fc1ece2009-08-14 15:49:47 +00003272 }
3273 ulp_get(ulp_ops);
3274 mutex_unlock(&cnic_lock);
Michael Chana4636962009-06-08 18:14:43 -07003275
3276 if (!test_and_set_bit(ULP_F_INIT, &cp->ulp_flags[i]))
3277 ulp_ops->cnic_init(dev);
3278
Michael Chan7fc1ece2009-08-14 15:49:47 +00003279 ulp_put(ulp_ops);
Michael Chana4636962009-06-08 18:14:43 -07003280 }
Michael Chana4636962009-06-08 18:14:43 -07003281}
3282
3283static void cnic_ulp_exit(struct cnic_dev *dev)
3284{
3285 int i;
3286 struct cnic_local *cp = dev->cnic_priv;
3287
Michael Chana4636962009-06-08 18:14:43 -07003288 for (i = 0; i < MAX_CNIC_ULP_TYPE_EXT; i++) {
3289 struct cnic_ulp_ops *ulp_ops;
3290
Michael Chan7fc1ece2009-08-14 15:49:47 +00003291 mutex_lock(&cnic_lock);
Eric Dumazet13707f92011-01-26 19:28:23 +00003292 ulp_ops = cnic_ulp_tbl_prot(i);
Michael Chan7fc1ece2009-08-14 15:49:47 +00003293 if (!ulp_ops || !ulp_ops->cnic_exit) {
3294 mutex_unlock(&cnic_lock);
Michael Chana4636962009-06-08 18:14:43 -07003295 continue;
Michael Chan7fc1ece2009-08-14 15:49:47 +00003296 }
3297 ulp_get(ulp_ops);
3298 mutex_unlock(&cnic_lock);
Michael Chana4636962009-06-08 18:14:43 -07003299
3300 if (test_and_clear_bit(ULP_F_INIT, &cp->ulp_flags[i]))
3301 ulp_ops->cnic_exit(dev);
3302
Michael Chan7fc1ece2009-08-14 15:49:47 +00003303 ulp_put(ulp_ops);
Michael Chana4636962009-06-08 18:14:43 -07003304 }
Michael Chana4636962009-06-08 18:14:43 -07003305}
3306
3307static int cnic_cm_offload_pg(struct cnic_sock *csk)
3308{
3309 struct cnic_dev *dev = csk->dev;
3310 struct l4_kwq_offload_pg *l4kwqe;
3311 struct kwqe *wqes[1];
3312
3313 l4kwqe = (struct l4_kwq_offload_pg *) &csk->kwqe1;
3314 memset(l4kwqe, 0, sizeof(*l4kwqe));
3315 wqes[0] = (struct kwqe *) l4kwqe;
3316
3317 l4kwqe->op_code = L4_KWQE_OPCODE_VALUE_OFFLOAD_PG;
3318 l4kwqe->flags =
3319 L4_LAYER_CODE << L4_KWQ_OFFLOAD_PG_LAYER_CODE_SHIFT;
3320 l4kwqe->l2hdr_nbytes = ETH_HLEN;
3321
3322 l4kwqe->da0 = csk->ha[0];
3323 l4kwqe->da1 = csk->ha[1];
3324 l4kwqe->da2 = csk->ha[2];
3325 l4kwqe->da3 = csk->ha[3];
3326 l4kwqe->da4 = csk->ha[4];
3327 l4kwqe->da5 = csk->ha[5];
3328
3329 l4kwqe->sa0 = dev->mac_addr[0];
3330 l4kwqe->sa1 = dev->mac_addr[1];
3331 l4kwqe->sa2 = dev->mac_addr[2];
3332 l4kwqe->sa3 = dev->mac_addr[3];
3333 l4kwqe->sa4 = dev->mac_addr[4];
3334 l4kwqe->sa5 = dev->mac_addr[5];
3335
3336 l4kwqe->etype = ETH_P_IP;
Eddie Waia9736c02010-02-24 14:42:04 +00003337 l4kwqe->ipid_start = DEF_IPID_START;
Michael Chana4636962009-06-08 18:14:43 -07003338 l4kwqe->host_opaque = csk->l5_cid;
3339
3340 if (csk->vlan_id) {
3341 l4kwqe->pg_flags |= L4_KWQ_OFFLOAD_PG_VLAN_TAGGING;
3342 l4kwqe->vlan_tag = csk->vlan_id;
3343 l4kwqe->l2hdr_nbytes += 4;
3344 }
3345
3346 return dev->submit_kwqes(dev, wqes, 1);
3347}
3348
3349static int cnic_cm_update_pg(struct cnic_sock *csk)
3350{
3351 struct cnic_dev *dev = csk->dev;
3352 struct l4_kwq_update_pg *l4kwqe;
3353 struct kwqe *wqes[1];
3354
3355 l4kwqe = (struct l4_kwq_update_pg *) &csk->kwqe1;
3356 memset(l4kwqe, 0, sizeof(*l4kwqe));
3357 wqes[0] = (struct kwqe *) l4kwqe;
3358
3359 l4kwqe->opcode = L4_KWQE_OPCODE_VALUE_UPDATE_PG;
3360 l4kwqe->flags =
3361 L4_LAYER_CODE << L4_KWQ_UPDATE_PG_LAYER_CODE_SHIFT;
3362 l4kwqe->pg_cid = csk->pg_cid;
3363
3364 l4kwqe->da0 = csk->ha[0];
3365 l4kwqe->da1 = csk->ha[1];
3366 l4kwqe->da2 = csk->ha[2];
3367 l4kwqe->da3 = csk->ha[3];
3368 l4kwqe->da4 = csk->ha[4];
3369 l4kwqe->da5 = csk->ha[5];
3370
3371 l4kwqe->pg_host_opaque = csk->l5_cid;
3372 l4kwqe->pg_valids = L4_KWQ_UPDATE_PG_VALIDS_DA;
3373
3374 return dev->submit_kwqes(dev, wqes, 1);
3375}
3376
3377static int cnic_cm_upload_pg(struct cnic_sock *csk)
3378{
3379 struct cnic_dev *dev = csk->dev;
3380 struct l4_kwq_upload *l4kwqe;
3381 struct kwqe *wqes[1];
3382
3383 l4kwqe = (struct l4_kwq_upload *) &csk->kwqe1;
3384 memset(l4kwqe, 0, sizeof(*l4kwqe));
3385 wqes[0] = (struct kwqe *) l4kwqe;
3386
3387 l4kwqe->opcode = L4_KWQE_OPCODE_VALUE_UPLOAD_PG;
3388 l4kwqe->flags =
3389 L4_LAYER_CODE << L4_KWQ_UPLOAD_LAYER_CODE_SHIFT;
3390 l4kwqe->cid = csk->pg_cid;
3391
3392 return dev->submit_kwqes(dev, wqes, 1);
3393}
3394
3395static int cnic_cm_conn_req(struct cnic_sock *csk)
3396{
3397 struct cnic_dev *dev = csk->dev;
3398 struct l4_kwq_connect_req1 *l4kwqe1;
3399 struct l4_kwq_connect_req2 *l4kwqe2;
3400 struct l4_kwq_connect_req3 *l4kwqe3;
3401 struct kwqe *wqes[3];
3402 u8 tcp_flags = 0;
3403 int num_wqes = 2;
3404
3405 l4kwqe1 = (struct l4_kwq_connect_req1 *) &csk->kwqe1;
3406 l4kwqe2 = (struct l4_kwq_connect_req2 *) &csk->kwqe2;
3407 l4kwqe3 = (struct l4_kwq_connect_req3 *) &csk->kwqe3;
3408 memset(l4kwqe1, 0, sizeof(*l4kwqe1));
3409 memset(l4kwqe2, 0, sizeof(*l4kwqe2));
3410 memset(l4kwqe3, 0, sizeof(*l4kwqe3));
3411
3412 l4kwqe3->op_code = L4_KWQE_OPCODE_VALUE_CONNECT3;
3413 l4kwqe3->flags =
3414 L4_LAYER_CODE << L4_KWQ_CONNECT_REQ3_LAYER_CODE_SHIFT;
3415 l4kwqe3->ka_timeout = csk->ka_timeout;
3416 l4kwqe3->ka_interval = csk->ka_interval;
3417 l4kwqe3->ka_max_probe_count = csk->ka_max_probe_count;
3418 l4kwqe3->tos = csk->tos;
3419 l4kwqe3->ttl = csk->ttl;
3420 l4kwqe3->snd_seq_scale = csk->snd_seq_scale;
3421 l4kwqe3->pmtu = csk->mtu;
3422 l4kwqe3->rcv_buf = csk->rcv_buf;
3423 l4kwqe3->snd_buf = csk->snd_buf;
3424 l4kwqe3->seed = csk->seed;
3425
3426 wqes[0] = (struct kwqe *) l4kwqe1;
3427 if (test_bit(SK_F_IPV6, &csk->flags)) {
3428 wqes[1] = (struct kwqe *) l4kwqe2;
3429 wqes[2] = (struct kwqe *) l4kwqe3;
3430 num_wqes = 3;
3431
3432 l4kwqe1->conn_flags = L4_KWQ_CONNECT_REQ1_IP_V6;
3433 l4kwqe2->op_code = L4_KWQE_OPCODE_VALUE_CONNECT2;
3434 l4kwqe2->flags =
3435 L4_KWQ_CONNECT_REQ2_LINKED_WITH_NEXT |
3436 L4_LAYER_CODE << L4_KWQ_CONNECT_REQ2_LAYER_CODE_SHIFT;
3437 l4kwqe2->src_ip_v6_2 = be32_to_cpu(csk->src_ip[1]);
3438 l4kwqe2->src_ip_v6_3 = be32_to_cpu(csk->src_ip[2]);
3439 l4kwqe2->src_ip_v6_4 = be32_to_cpu(csk->src_ip[3]);
3440 l4kwqe2->dst_ip_v6_2 = be32_to_cpu(csk->dst_ip[1]);
3441 l4kwqe2->dst_ip_v6_3 = be32_to_cpu(csk->dst_ip[2]);
3442 l4kwqe2->dst_ip_v6_4 = be32_to_cpu(csk->dst_ip[3]);
3443 l4kwqe3->mss = l4kwqe3->pmtu - sizeof(struct ipv6hdr) -
3444 sizeof(struct tcphdr);
3445 } else {
3446 wqes[1] = (struct kwqe *) l4kwqe3;
3447 l4kwqe3->mss = l4kwqe3->pmtu - sizeof(struct iphdr) -
3448 sizeof(struct tcphdr);
3449 }
3450
3451 l4kwqe1->op_code = L4_KWQE_OPCODE_VALUE_CONNECT1;
3452 l4kwqe1->flags =
3453 (L4_LAYER_CODE << L4_KWQ_CONNECT_REQ1_LAYER_CODE_SHIFT) |
3454 L4_KWQ_CONNECT_REQ3_LINKED_WITH_NEXT;
3455 l4kwqe1->cid = csk->cid;
3456 l4kwqe1->pg_cid = csk->pg_cid;
3457 l4kwqe1->src_ip = be32_to_cpu(csk->src_ip[0]);
3458 l4kwqe1->dst_ip = be32_to_cpu(csk->dst_ip[0]);
3459 l4kwqe1->src_port = be16_to_cpu(csk->src_port);
3460 l4kwqe1->dst_port = be16_to_cpu(csk->dst_port);
3461 if (csk->tcp_flags & SK_TCP_NO_DELAY_ACK)
3462 tcp_flags |= L4_KWQ_CONNECT_REQ1_NO_DELAY_ACK;
3463 if (csk->tcp_flags & SK_TCP_KEEP_ALIVE)
3464 tcp_flags |= L4_KWQ_CONNECT_REQ1_KEEP_ALIVE;
3465 if (csk->tcp_flags & SK_TCP_NAGLE)
3466 tcp_flags |= L4_KWQ_CONNECT_REQ1_NAGLE_ENABLE;
3467 if (csk->tcp_flags & SK_TCP_TIMESTAMP)
3468 tcp_flags |= L4_KWQ_CONNECT_REQ1_TIME_STAMP;
3469 if (csk->tcp_flags & SK_TCP_SACK)
3470 tcp_flags |= L4_KWQ_CONNECT_REQ1_SACK;
3471 if (csk->tcp_flags & SK_TCP_SEG_SCALING)
3472 tcp_flags |= L4_KWQ_CONNECT_REQ1_SEG_SCALING;
3473
3474 l4kwqe1->tcp_flags = tcp_flags;
3475
3476 return dev->submit_kwqes(dev, wqes, num_wqes);
3477}
3478
3479static int cnic_cm_close_req(struct cnic_sock *csk)
3480{
3481 struct cnic_dev *dev = csk->dev;
3482 struct l4_kwq_close_req *l4kwqe;
3483 struct kwqe *wqes[1];
3484
3485 l4kwqe = (struct l4_kwq_close_req *) &csk->kwqe2;
3486 memset(l4kwqe, 0, sizeof(*l4kwqe));
3487 wqes[0] = (struct kwqe *) l4kwqe;
3488
3489 l4kwqe->op_code = L4_KWQE_OPCODE_VALUE_CLOSE;
3490 l4kwqe->flags = L4_LAYER_CODE << L4_KWQ_CLOSE_REQ_LAYER_CODE_SHIFT;
3491 l4kwqe->cid = csk->cid;
3492
3493 return dev->submit_kwqes(dev, wqes, 1);
3494}
3495
3496static int cnic_cm_abort_req(struct cnic_sock *csk)
3497{
3498 struct cnic_dev *dev = csk->dev;
3499 struct l4_kwq_reset_req *l4kwqe;
3500 struct kwqe *wqes[1];
3501
3502 l4kwqe = (struct l4_kwq_reset_req *) &csk->kwqe2;
3503 memset(l4kwqe, 0, sizeof(*l4kwqe));
3504 wqes[0] = (struct kwqe *) l4kwqe;
3505
3506 l4kwqe->op_code = L4_KWQE_OPCODE_VALUE_RESET;
3507 l4kwqe->flags = L4_LAYER_CODE << L4_KWQ_RESET_REQ_LAYER_CODE_SHIFT;
3508 l4kwqe->cid = csk->cid;
3509
3510 return dev->submit_kwqes(dev, wqes, 1);
3511}
3512
3513static int cnic_cm_create(struct cnic_dev *dev, int ulp_type, u32 cid,
3514 u32 l5_cid, struct cnic_sock **csk, void *context)
3515{
3516 struct cnic_local *cp = dev->cnic_priv;
3517 struct cnic_sock *csk1;
3518
3519 if (l5_cid >= MAX_CM_SK_TBL_SZ)
3520 return -EINVAL;
3521
Michael Chanfdf24082010-10-13 14:06:47 +00003522 if (cp->ctx_tbl) {
3523 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
3524
3525 if (test_bit(CTX_FL_OFFLD_START, &ctx->ctx_flags))
3526 return -EAGAIN;
3527 }
3528
Michael Chana4636962009-06-08 18:14:43 -07003529 csk1 = &cp->csk_tbl[l5_cid];
3530 if (atomic_read(&csk1->ref_count))
3531 return -EAGAIN;
3532
3533 if (test_and_set_bit(SK_F_INUSE, &csk1->flags))
3534 return -EBUSY;
3535
3536 csk1->dev = dev;
3537 csk1->cid = cid;
3538 csk1->l5_cid = l5_cid;
3539 csk1->ulp_type = ulp_type;
3540 csk1->context = context;
3541
3542 csk1->ka_timeout = DEF_KA_TIMEOUT;
3543 csk1->ka_interval = DEF_KA_INTERVAL;
3544 csk1->ka_max_probe_count = DEF_KA_MAX_PROBE_COUNT;
3545 csk1->tos = DEF_TOS;
3546 csk1->ttl = DEF_TTL;
3547 csk1->snd_seq_scale = DEF_SND_SEQ_SCALE;
3548 csk1->rcv_buf = DEF_RCV_BUF;
3549 csk1->snd_buf = DEF_SND_BUF;
3550 csk1->seed = DEF_SEED;
3551
3552 *csk = csk1;
3553 return 0;
3554}
3555
3556static void cnic_cm_cleanup(struct cnic_sock *csk)
3557{
3558 if (csk->src_port) {
3559 struct cnic_dev *dev = csk->dev;
3560 struct cnic_local *cp = dev->cnic_priv;
3561
Michael Chan9b093362010-12-23 07:42:56 +00003562 cnic_free_id(&cp->csk_port_tbl, be16_to_cpu(csk->src_port));
Michael Chana4636962009-06-08 18:14:43 -07003563 csk->src_port = 0;
3564 }
3565}
3566
3567static void cnic_close_conn(struct cnic_sock *csk)
3568{
3569 if (test_bit(SK_F_PG_OFFLD_COMPLETE, &csk->flags)) {
3570 cnic_cm_upload_pg(csk);
3571 clear_bit(SK_F_PG_OFFLD_COMPLETE, &csk->flags);
3572 }
3573 cnic_cm_cleanup(csk);
3574}
3575
3576static int cnic_cm_destroy(struct cnic_sock *csk)
3577{
3578 if (!cnic_in_use(csk))
3579 return -EINVAL;
3580
3581 csk_hold(csk);
3582 clear_bit(SK_F_INUSE, &csk->flags);
3583 smp_mb__after_clear_bit();
3584 while (atomic_read(&csk->ref_count) != 1)
3585 msleep(1);
3586 cnic_cm_cleanup(csk);
3587
3588 csk->flags = 0;
3589 csk_put(csk);
3590 return 0;
3591}
3592
3593static inline u16 cnic_get_vlan(struct net_device *dev,
3594 struct net_device **vlan_dev)
3595{
3596 if (dev->priv_flags & IFF_802_1Q_VLAN) {
3597 *vlan_dev = vlan_dev_real_dev(dev);
3598 return vlan_dev_vlan_id(dev);
3599 }
3600 *vlan_dev = dev;
3601 return 0;
3602}
3603
3604static int cnic_get_v4_route(struct sockaddr_in *dst_addr,
3605 struct dst_entry **dst)
3606{
Randy Dunlapfaea56c2009-06-12 11:43:48 -07003607#if defined(CONFIG_INET)
Michael Chana4636962009-06-08 18:14:43 -07003608 struct rtable *rt;
3609
David S. Miller78fbfd82011-03-12 00:00:52 -05003610 rt = ip_route_output(&init_net, dst_addr->sin_addr.s_addr, 0, 0, 0);
3611 if (!IS_ERR(rt)) {
Changli Gaod8d1f302010-06-10 23:31:35 -07003612 *dst = &rt->dst;
David S. Miller78fbfd82011-03-12 00:00:52 -05003613 return 0;
3614 }
3615 return PTR_ERR(rt);
Randy Dunlapfaea56c2009-06-12 11:43:48 -07003616#else
3617 return -ENETUNREACH;
3618#endif
Michael Chana4636962009-06-08 18:14:43 -07003619}
3620
3621static int cnic_get_v6_route(struct sockaddr_in6 *dst_addr,
3622 struct dst_entry **dst)
3623{
Randy Dunlapfaea56c2009-06-12 11:43:48 -07003624#if defined(CONFIG_IPV6) || (defined(CONFIG_IPV6_MODULE) && defined(MODULE))
David S. Miller4c9483b2011-03-12 16:22:43 -05003625 struct flowi6 fl6;
Michael Chana4636962009-06-08 18:14:43 -07003626
David S. Miller4c9483b2011-03-12 16:22:43 -05003627 memset(&fl6, 0, sizeof(fl6));
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00003628 fl6.daddr = dst_addr->sin6_addr;
David S. Miller4c9483b2011-03-12 16:22:43 -05003629 if (ipv6_addr_type(&fl6.daddr) & IPV6_ADDR_LINKLOCAL)
3630 fl6.flowi6_oif = dst_addr->sin6_scope_id;
Michael Chana4636962009-06-08 18:14:43 -07003631
David S. Miller4c9483b2011-03-12 16:22:43 -05003632 *dst = ip6_route_output(&init_net, NULL, &fl6);
RongQing.Li05417432012-02-21 22:10:50 +00003633 if ((*dst)->error) {
3634 dst_release(*dst);
3635 *dst = NULL;
3636 return -ENETUNREACH;
3637 } else
Michael Chana4636962009-06-08 18:14:43 -07003638 return 0;
3639#endif
3640
3641 return -ENETUNREACH;
3642}
3643
3644static struct cnic_dev *cnic_cm_select_dev(struct sockaddr_in *dst_addr,
3645 int ulp_type)
3646{
3647 struct cnic_dev *dev = NULL;
3648 struct dst_entry *dst;
3649 struct net_device *netdev = NULL;
3650 int err = -ENETUNREACH;
3651
3652 if (dst_addr->sin_family == AF_INET)
3653 err = cnic_get_v4_route(dst_addr, &dst);
3654 else if (dst_addr->sin_family == AF_INET6) {
3655 struct sockaddr_in6 *dst_addr6 =
3656 (struct sockaddr_in6 *) dst_addr;
3657
3658 err = cnic_get_v6_route(dst_addr6, &dst);
3659 } else
3660 return NULL;
3661
3662 if (err)
3663 return NULL;
3664
3665 if (!dst->dev)
3666 goto done;
3667
3668 cnic_get_vlan(dst->dev, &netdev);
3669
3670 dev = cnic_from_netdev(netdev);
3671
3672done:
3673 dst_release(dst);
3674 if (dev)
3675 cnic_put(dev);
3676 return dev;
3677}
3678
3679static int cnic_resolve_addr(struct cnic_sock *csk, struct cnic_sockaddr *saddr)
3680{
3681 struct cnic_dev *dev = csk->dev;
3682 struct cnic_local *cp = dev->cnic_priv;
3683
3684 return cnic_send_nlmsg(cp, ISCSI_KEVENT_PATH_REQ, csk);
3685}
3686
3687static int cnic_get_route(struct cnic_sock *csk, struct cnic_sockaddr *saddr)
3688{
3689 struct cnic_dev *dev = csk->dev;
3690 struct cnic_local *cp = dev->cnic_priv;
Michael Chanc76284a2010-02-24 14:42:07 +00003691 int is_v6, rc = 0;
3692 struct dst_entry *dst = NULL;
Michael Chana4636962009-06-08 18:14:43 -07003693 struct net_device *realdev;
Michael Chan9b093362010-12-23 07:42:56 +00003694 __be16 local_port;
3695 u32 port_id;
Michael Chana4636962009-06-08 18:14:43 -07003696
3697 if (saddr->local.v6.sin6_family == AF_INET6 &&
3698 saddr->remote.v6.sin6_family == AF_INET6)
3699 is_v6 = 1;
3700 else if (saddr->local.v4.sin_family == AF_INET &&
3701 saddr->remote.v4.sin_family == AF_INET)
3702 is_v6 = 0;
3703 else
3704 return -EINVAL;
3705
3706 clear_bit(SK_F_IPV6, &csk->flags);
3707
3708 if (is_v6) {
Michael Chana4636962009-06-08 18:14:43 -07003709 set_bit(SK_F_IPV6, &csk->flags);
Michael Chanc76284a2010-02-24 14:42:07 +00003710 cnic_get_v6_route(&saddr->remote.v6, &dst);
Michael Chana4636962009-06-08 18:14:43 -07003711
3712 memcpy(&csk->dst_ip[0], &saddr->remote.v6.sin6_addr,
3713 sizeof(struct in6_addr));
3714 csk->dst_port = saddr->remote.v6.sin6_port;
3715 local_port = saddr->local.v6.sin6_port;
Michael Chana4636962009-06-08 18:14:43 -07003716
3717 } else {
Michael Chanc76284a2010-02-24 14:42:07 +00003718 cnic_get_v4_route(&saddr->remote.v4, &dst);
Michael Chana4636962009-06-08 18:14:43 -07003719
3720 csk->dst_ip[0] = saddr->remote.v4.sin_addr.s_addr;
3721 csk->dst_port = saddr->remote.v4.sin_port;
3722 local_port = saddr->local.v4.sin_port;
3723 }
3724
Michael Chanc76284a2010-02-24 14:42:07 +00003725 csk->vlan_id = 0;
3726 csk->mtu = dev->netdev->mtu;
3727 if (dst && dst->dev) {
3728 u16 vlan = cnic_get_vlan(dst->dev, &realdev);
3729 if (realdev == dev->netdev) {
3730 csk->vlan_id = vlan;
3731 csk->mtu = dst_mtu(dst);
3732 }
3733 }
Michael Chana4636962009-06-08 18:14:43 -07003734
Michael Chan9b093362010-12-23 07:42:56 +00003735 port_id = be16_to_cpu(local_port);
3736 if (port_id >= CNIC_LOCAL_PORT_MIN &&
3737 port_id < CNIC_LOCAL_PORT_MAX) {
3738 if (cnic_alloc_id(&cp->csk_port_tbl, port_id))
3739 port_id = 0;
Michael Chana4636962009-06-08 18:14:43 -07003740 } else
Michael Chan9b093362010-12-23 07:42:56 +00003741 port_id = 0;
Michael Chana4636962009-06-08 18:14:43 -07003742
Michael Chan9b093362010-12-23 07:42:56 +00003743 if (!port_id) {
3744 port_id = cnic_alloc_new_id(&cp->csk_port_tbl);
3745 if (port_id == -1) {
Michael Chana4636962009-06-08 18:14:43 -07003746 rc = -ENOMEM;
3747 goto err_out;
3748 }
Michael Chan9b093362010-12-23 07:42:56 +00003749 local_port = cpu_to_be16(port_id);
Michael Chana4636962009-06-08 18:14:43 -07003750 }
3751 csk->src_port = local_port;
3752
Michael Chana4636962009-06-08 18:14:43 -07003753err_out:
3754 dst_release(dst);
3755 return rc;
3756}
3757
3758static void cnic_init_csk_state(struct cnic_sock *csk)
3759{
3760 csk->state = 0;
3761 clear_bit(SK_F_OFFLD_SCHED, &csk->flags);
3762 clear_bit(SK_F_CLOSING, &csk->flags);
3763}
3764
3765static int cnic_cm_connect(struct cnic_sock *csk, struct cnic_sockaddr *saddr)
3766{
Dmitry Kravkovfab0dc82011-03-31 17:04:22 -07003767 struct cnic_local *cp = csk->dev->cnic_priv;
Michael Chana4636962009-06-08 18:14:43 -07003768 int err = 0;
3769
Dmitry Kravkovfab0dc82011-03-31 17:04:22 -07003770 if (cp->ethdev->drv_state & CNIC_DRV_STATE_NO_ISCSI)
3771 return -EOPNOTSUPP;
3772
Michael Chana4636962009-06-08 18:14:43 -07003773 if (!cnic_in_use(csk))
3774 return -EINVAL;
3775
3776 if (test_and_set_bit(SK_F_CONNECT_START, &csk->flags))
3777 return -EINVAL;
3778
3779 cnic_init_csk_state(csk);
3780
3781 err = cnic_get_route(csk, saddr);
3782 if (err)
3783 goto err_out;
3784
3785 err = cnic_resolve_addr(csk, saddr);
3786 if (!err)
3787 return 0;
3788
3789err_out:
3790 clear_bit(SK_F_CONNECT_START, &csk->flags);
3791 return err;
3792}
3793
3794static int cnic_cm_abort(struct cnic_sock *csk)
3795{
3796 struct cnic_local *cp = csk->dev->cnic_priv;
Michael Chan7b34a462010-06-15 08:57:03 +00003797 u32 opcode = L4_KCQE_OPCODE_VALUE_RESET_COMP;
Michael Chana4636962009-06-08 18:14:43 -07003798
3799 if (!cnic_in_use(csk))
3800 return -EINVAL;
3801
3802 if (cnic_abort_prep(csk))
3803 return cnic_cm_abort_req(csk);
3804
3805 /* Getting here means that we haven't started connect, or
3806 * connect was not successful.
3807 */
3808
Michael Chana4636962009-06-08 18:14:43 -07003809 cp->close_conn(csk, opcode);
Michael Chan7b34a462010-06-15 08:57:03 +00003810 if (csk->state != opcode)
3811 return -EALREADY;
Michael Chana4636962009-06-08 18:14:43 -07003812
3813 return 0;
3814}
3815
3816static int cnic_cm_close(struct cnic_sock *csk)
3817{
3818 if (!cnic_in_use(csk))
3819 return -EINVAL;
3820
3821 if (cnic_close_prep(csk)) {
3822 csk->state = L4_KCQE_OPCODE_VALUE_CLOSE_COMP;
3823 return cnic_cm_close_req(csk);
Michael Chaned99daa52010-06-15 08:57:00 +00003824 } else {
3825 return -EALREADY;
Michael Chana4636962009-06-08 18:14:43 -07003826 }
3827 return 0;
3828}
3829
3830static void cnic_cm_upcall(struct cnic_local *cp, struct cnic_sock *csk,
3831 u8 opcode)
3832{
3833 struct cnic_ulp_ops *ulp_ops;
3834 int ulp_type = csk->ulp_type;
3835
3836 rcu_read_lock();
3837 ulp_ops = rcu_dereference(cp->ulp_ops[ulp_type]);
3838 if (ulp_ops) {
3839 if (opcode == L4_KCQE_OPCODE_VALUE_CONNECT_COMPLETE)
3840 ulp_ops->cm_connect_complete(csk);
3841 else if (opcode == L4_KCQE_OPCODE_VALUE_CLOSE_COMP)
3842 ulp_ops->cm_close_complete(csk);
3843 else if (opcode == L4_KCQE_OPCODE_VALUE_RESET_RECEIVED)
3844 ulp_ops->cm_remote_abort(csk);
3845 else if (opcode == L4_KCQE_OPCODE_VALUE_RESET_COMP)
3846 ulp_ops->cm_abort_complete(csk);
3847 else if (opcode == L4_KCQE_OPCODE_VALUE_CLOSE_RECEIVED)
3848 ulp_ops->cm_remote_close(csk);
3849 }
3850 rcu_read_unlock();
3851}
3852
3853static int cnic_cm_set_pg(struct cnic_sock *csk)
3854{
3855 if (cnic_offld_prep(csk)) {
3856 if (test_bit(SK_F_PG_OFFLD_COMPLETE, &csk->flags))
3857 cnic_cm_update_pg(csk);
3858 else
3859 cnic_cm_offload_pg(csk);
3860 }
3861 return 0;
3862}
3863
3864static void cnic_cm_process_offld_pg(struct cnic_dev *dev, struct l4_kcq *kcqe)
3865{
3866 struct cnic_local *cp = dev->cnic_priv;
3867 u32 l5_cid = kcqe->pg_host_opaque;
3868 u8 opcode = kcqe->op_code;
3869 struct cnic_sock *csk = &cp->csk_tbl[l5_cid];
3870
3871 csk_hold(csk);
3872 if (!cnic_in_use(csk))
3873 goto done;
3874
3875 if (opcode == L4_KCQE_OPCODE_VALUE_UPDATE_PG) {
3876 clear_bit(SK_F_OFFLD_SCHED, &csk->flags);
3877 goto done;
3878 }
Eddie Waia9736c02010-02-24 14:42:04 +00003879 /* Possible PG kcqe status: SUCCESS, OFFLOADED_PG, or CTX_ALLOC_FAIL */
3880 if (kcqe->status == L4_KCQE_COMPLETION_STATUS_CTX_ALLOC_FAIL) {
3881 clear_bit(SK_F_OFFLD_SCHED, &csk->flags);
3882 cnic_cm_upcall(cp, csk,
3883 L4_KCQE_OPCODE_VALUE_CONNECT_COMPLETE);
3884 goto done;
3885 }
3886
Michael Chana4636962009-06-08 18:14:43 -07003887 csk->pg_cid = kcqe->pg_cid;
3888 set_bit(SK_F_PG_OFFLD_COMPLETE, &csk->flags);
3889 cnic_cm_conn_req(csk);
3890
3891done:
3892 csk_put(csk);
3893}
3894
Michael Chane1928c82010-12-23 07:43:04 +00003895static void cnic_process_fcoe_term_conn(struct cnic_dev *dev, struct kcqe *kcqe)
3896{
3897 struct cnic_local *cp = dev->cnic_priv;
3898 struct fcoe_kcqe *fc_kcqe = (struct fcoe_kcqe *) kcqe;
3899 u32 l5_cid = fc_kcqe->fcoe_conn_id + BNX2X_FCOE_L5_CID_BASE;
3900 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
3901
3902 ctx->timestamp = jiffies;
3903 ctx->wait_cond = 1;
3904 wake_up(&ctx->waitq);
3905}
3906
Michael Chana4636962009-06-08 18:14:43 -07003907static void cnic_cm_process_kcqe(struct cnic_dev *dev, struct kcqe *kcqe)
3908{
3909 struct cnic_local *cp = dev->cnic_priv;
3910 struct l4_kcq *l4kcqe = (struct l4_kcq *) kcqe;
3911 u8 opcode = l4kcqe->op_code;
3912 u32 l5_cid;
3913 struct cnic_sock *csk;
3914
Michael Chane1928c82010-12-23 07:43:04 +00003915 if (opcode == FCOE_RAMROD_CMD_ID_TERMINATE_CONN) {
3916 cnic_process_fcoe_term_conn(dev, kcqe);
3917 return;
3918 }
Michael Chana4636962009-06-08 18:14:43 -07003919 if (opcode == L4_KCQE_OPCODE_VALUE_OFFLOAD_PG ||
3920 opcode == L4_KCQE_OPCODE_VALUE_UPDATE_PG) {
3921 cnic_cm_process_offld_pg(dev, l4kcqe);
3922 return;
3923 }
3924
3925 l5_cid = l4kcqe->conn_id;
3926 if (opcode & 0x80)
3927 l5_cid = l4kcqe->cid;
3928 if (l5_cid >= MAX_CM_SK_TBL_SZ)
3929 return;
3930
3931 csk = &cp->csk_tbl[l5_cid];
3932 csk_hold(csk);
3933
3934 if (!cnic_in_use(csk)) {
3935 csk_put(csk);
3936 return;
3937 }
3938
3939 switch (opcode) {
Eddie Waia9736c02010-02-24 14:42:04 +00003940 case L5CM_RAMROD_CMD_ID_TCP_CONNECT:
3941 if (l4kcqe->status != 0) {
3942 clear_bit(SK_F_OFFLD_SCHED, &csk->flags);
3943 cnic_cm_upcall(cp, csk,
3944 L4_KCQE_OPCODE_VALUE_CONNECT_COMPLETE);
3945 }
3946 break;
Michael Chana4636962009-06-08 18:14:43 -07003947 case L4_KCQE_OPCODE_VALUE_CONNECT_COMPLETE:
3948 if (l4kcqe->status == 0)
3949 set_bit(SK_F_OFFLD_COMPLETE, &csk->flags);
Michael Chan8ec3e702012-03-21 15:38:34 +00003950 else if (l4kcqe->status ==
3951 L4_KCQE_COMPLETION_STATUS_PARITY_ERROR)
Jeffrey Huang0cb1f4b2012-02-08 17:33:56 +00003952 set_bit(SK_F_HW_ERR, &csk->flags);
Michael Chana4636962009-06-08 18:14:43 -07003953
3954 smp_mb__before_clear_bit();
3955 clear_bit(SK_F_OFFLD_SCHED, &csk->flags);
3956 cnic_cm_upcall(cp, csk, opcode);
3957 break;
3958
3959 case L4_KCQE_OPCODE_VALUE_RESET_RECEIVED:
Michael Chana4636962009-06-08 18:14:43 -07003960 case L4_KCQE_OPCODE_VALUE_CLOSE_COMP:
3961 case L4_KCQE_OPCODE_VALUE_RESET_COMP:
Michael Chan71034ba2009-10-10 13:46:59 +00003962 case L5CM_RAMROD_CMD_ID_SEARCHER_DELETE:
3963 case L5CM_RAMROD_CMD_ID_TERMINATE_OFFLOAD:
Michael Chan8ec3e702012-03-21 15:38:34 +00003964 if (l4kcqe->status == L4_KCQE_COMPLETION_STATUS_PARITY_ERROR)
Michael Chan23021c22012-01-04 12:12:28 +00003965 set_bit(SK_F_HW_ERR, &csk->flags);
3966
Michael Chana4636962009-06-08 18:14:43 -07003967 cp->close_conn(csk, opcode);
3968 break;
3969
3970 case L4_KCQE_OPCODE_VALUE_CLOSE_RECEIVED:
Michael Chan101c40c2011-06-08 19:29:33 +00003971 /* after we already sent CLOSE_REQ */
3972 if (test_bit(CNIC_F_BNX2X_CLASS, &dev->flags) &&
3973 !test_bit(SK_F_OFFLD_COMPLETE, &csk->flags) &&
3974 csk->state == L4_KCQE_OPCODE_VALUE_CLOSE_COMP)
3975 cp->close_conn(csk, L4_KCQE_OPCODE_VALUE_RESET_COMP);
3976 else
3977 cnic_cm_upcall(cp, csk, opcode);
Michael Chana4636962009-06-08 18:14:43 -07003978 break;
3979 }
3980 csk_put(csk);
3981}
3982
3983static void cnic_cm_indicate_kcqe(void *data, struct kcqe *kcqe[], u32 num)
3984{
3985 struct cnic_dev *dev = data;
3986 int i;
3987
3988 for (i = 0; i < num; i++)
3989 cnic_cm_process_kcqe(dev, kcqe[i]);
3990}
3991
3992static struct cnic_ulp_ops cm_ulp_ops = {
3993 .indicate_kcqes = cnic_cm_indicate_kcqe,
3994};
3995
3996static void cnic_cm_free_mem(struct cnic_dev *dev)
3997{
3998 struct cnic_local *cp = dev->cnic_priv;
3999
4000 kfree(cp->csk_tbl);
4001 cp->csk_tbl = NULL;
4002 cnic_free_id_tbl(&cp->csk_port_tbl);
4003}
4004
4005static int cnic_cm_alloc_mem(struct cnic_dev *dev)
4006{
4007 struct cnic_local *cp = dev->cnic_priv;
Eddie Wai11f23aa2011-06-08 19:29:34 +00004008 u32 port_id;
Michael Chana4636962009-06-08 18:14:43 -07004009
4010 cp->csk_tbl = kzalloc(sizeof(struct cnic_sock) * MAX_CM_SK_TBL_SZ,
4011 GFP_KERNEL);
4012 if (!cp->csk_tbl)
4013 return -ENOMEM;
4014
Michael Chan973e5742011-07-13 17:24:17 +00004015 port_id = random32();
Eddie Wai11f23aa2011-06-08 19:29:34 +00004016 port_id %= CNIC_LOCAL_PORT_RANGE;
Michael Chana4636962009-06-08 18:14:43 -07004017 if (cnic_init_id_tbl(&cp->csk_port_tbl, CNIC_LOCAL_PORT_RANGE,
Eddie Wai11f23aa2011-06-08 19:29:34 +00004018 CNIC_LOCAL_PORT_MIN, port_id)) {
Michael Chana4636962009-06-08 18:14:43 -07004019 cnic_cm_free_mem(dev);
4020 return -ENOMEM;
4021 }
4022 return 0;
4023}
4024
4025static int cnic_ready_to_close(struct cnic_sock *csk, u32 opcode)
4026{
Michael Chan943189f2010-06-15 08:57:02 +00004027 if (test_and_clear_bit(SK_F_OFFLD_COMPLETE, &csk->flags)) {
4028 /* Unsolicited RESET_COMP or RESET_RECEIVED */
4029 opcode = L4_KCQE_OPCODE_VALUE_RESET_RECEIVED;
4030 csk->state = opcode;
Michael Chana1e621b2010-06-15 08:57:01 +00004031 }
Michael Chan943189f2010-06-15 08:57:02 +00004032
4033 /* 1. If event opcode matches the expected event in csk->state
Michael Chan101c40c2011-06-08 19:29:33 +00004034 * 2. If the expected event is CLOSE_COMP or RESET_COMP, we accept any
4035 * event
Michael Chan7b34a462010-06-15 08:57:03 +00004036 * 3. If the expected event is 0, meaning the connection was never
4037 * never established, we accept the opcode from cm_abort.
Michael Chan943189f2010-06-15 08:57:02 +00004038 */
Michael Chan7b34a462010-06-15 08:57:03 +00004039 if (opcode == csk->state || csk->state == 0 ||
Michael Chan101c40c2011-06-08 19:29:33 +00004040 csk->state == L4_KCQE_OPCODE_VALUE_CLOSE_COMP ||
4041 csk->state == L4_KCQE_OPCODE_VALUE_RESET_COMP) {
Michael Chan7b34a462010-06-15 08:57:03 +00004042 if (!test_and_set_bit(SK_F_CLOSING, &csk->flags)) {
4043 if (csk->state == 0)
4044 csk->state = opcode;
Michael Chana4636962009-06-08 18:14:43 -07004045 return 1;
Michael Chan7b34a462010-06-15 08:57:03 +00004046 }
Michael Chana4636962009-06-08 18:14:43 -07004047 }
4048 return 0;
4049}
4050
4051static void cnic_close_bnx2_conn(struct cnic_sock *csk, u32 opcode)
4052{
4053 struct cnic_dev *dev = csk->dev;
4054 struct cnic_local *cp = dev->cnic_priv;
4055
Michael Chana1e621b2010-06-15 08:57:01 +00004056 if (opcode == L4_KCQE_OPCODE_VALUE_RESET_RECEIVED) {
4057 cnic_cm_upcall(cp, csk, opcode);
4058 return;
4059 }
4060
Michael Chana4636962009-06-08 18:14:43 -07004061 clear_bit(SK_F_CONNECT_START, &csk->flags);
Eddie Wai66883e92010-02-24 14:42:05 +00004062 cnic_close_conn(csk);
Michael Chan7b34a462010-06-15 08:57:03 +00004063 csk->state = opcode;
Eddie Wai66883e92010-02-24 14:42:05 +00004064 cnic_cm_upcall(cp, csk, opcode);
Michael Chana4636962009-06-08 18:14:43 -07004065}
4066
4067static void cnic_cm_stop_bnx2_hw(struct cnic_dev *dev)
4068{
4069}
4070
4071static int cnic_cm_init_bnx2_hw(struct cnic_dev *dev)
4072{
4073 u32 seed;
4074
Michael Chan973e5742011-07-13 17:24:17 +00004075 seed = random32();
Michael Chana4636962009-06-08 18:14:43 -07004076 cnic_ctx_wr(dev, 45, 0, seed);
4077 return 0;
4078}
4079
Michael Chan71034ba2009-10-10 13:46:59 +00004080static void cnic_close_bnx2x_conn(struct cnic_sock *csk, u32 opcode)
4081{
4082 struct cnic_dev *dev = csk->dev;
4083 struct cnic_local *cp = dev->cnic_priv;
4084 struct cnic_context *ctx = &cp->ctx_tbl[csk->l5_cid];
4085 union l5cm_specific_data l5_data;
4086 u32 cmd = 0;
4087 int close_complete = 0;
4088
4089 switch (opcode) {
4090 case L4_KCQE_OPCODE_VALUE_RESET_RECEIVED:
4091 case L4_KCQE_OPCODE_VALUE_CLOSE_COMP:
4092 case L4_KCQE_OPCODE_VALUE_RESET_COMP:
Michael Chan7b34a462010-06-15 08:57:03 +00004093 if (cnic_ready_to_close(csk, opcode)) {
Michael Chan23021c22012-01-04 12:12:28 +00004094 if (test_bit(SK_F_HW_ERR, &csk->flags))
4095 close_complete = 1;
4096 else if (test_bit(SK_F_PG_OFFLD_COMPLETE, &csk->flags))
Michael Chan7b34a462010-06-15 08:57:03 +00004097 cmd = L5CM_RAMROD_CMD_ID_SEARCHER_DELETE;
4098 else
4099 close_complete = 1;
4100 }
Michael Chan71034ba2009-10-10 13:46:59 +00004101 break;
4102 case L5CM_RAMROD_CMD_ID_SEARCHER_DELETE:
4103 cmd = L5CM_RAMROD_CMD_ID_TERMINATE_OFFLOAD;
4104 break;
4105 case L5CM_RAMROD_CMD_ID_TERMINATE_OFFLOAD:
4106 close_complete = 1;
4107 break;
4108 }
4109 if (cmd) {
4110 memset(&l5_data, 0, sizeof(l5_data));
4111
4112 cnic_submit_kwqe_16(dev, cmd, csk->cid, ISCSI_CONNECTION_TYPE,
4113 &l5_data);
4114 } else if (close_complete) {
4115 ctx->timestamp = jiffies;
4116 cnic_close_conn(csk);
4117 cnic_cm_upcall(cp, csk, csk->state);
4118 }
4119}
4120
4121static void cnic_cm_stop_bnx2x_hw(struct cnic_dev *dev)
4122{
Michael Chanfdf24082010-10-13 14:06:47 +00004123 struct cnic_local *cp = dev->cnic_priv;
Michael Chanfdf24082010-10-13 14:06:47 +00004124
4125 if (!cp->ctx_tbl)
4126 return;
4127
4128 if (!netif_running(dev->netdev))
4129 return;
4130
Michael Chan74e49bb2011-07-20 14:55:23 +00004131 cnic_bnx2x_delete_wait(dev, 0);
Michael Chanfdf24082010-10-13 14:06:47 +00004132
4133 cancel_delayed_work(&cp->delete_task);
4134 flush_workqueue(cnic_wq);
4135
4136 if (atomic_read(&cp->iscsi_conn) != 0)
4137 netdev_warn(dev->netdev, "%d iSCSI connections not destroyed\n",
4138 atomic_read(&cp->iscsi_conn));
Michael Chan71034ba2009-10-10 13:46:59 +00004139}
4140
4141static int cnic_cm_init_bnx2x_hw(struct cnic_dev *dev)
4142{
4143 struct cnic_local *cp = dev->cnic_priv;
Michael Chan14203982010-10-06 03:16:06 +00004144 u32 pfid = cp->pfid;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004145 u32 port = CNIC_PORT(cp);
Michael Chan71034ba2009-10-10 13:46:59 +00004146
4147 cnic_init_bnx2x_mac(dev);
4148 cnic_bnx2x_set_tcp_timestamp(dev, 1);
4149
4150 CNIC_WR16(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00004151 XSTORM_ISCSI_LOCAL_VLAN_OFFSET(pfid), 0);
Michael Chan71034ba2009-10-10 13:46:59 +00004152
4153 CNIC_WR(dev, BAR_XSTRORM_INTMEM +
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004154 XSTORM_TCP_GLOBAL_DEL_ACK_COUNTER_ENABLED_OFFSET(port), 1);
Michael Chan71034ba2009-10-10 13:46:59 +00004155 CNIC_WR(dev, BAR_XSTRORM_INTMEM +
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004156 XSTORM_TCP_GLOBAL_DEL_ACK_COUNTER_MAX_COUNT_OFFSET(port),
Michael Chan71034ba2009-10-10 13:46:59 +00004157 DEF_MAX_DA_COUNT);
4158
4159 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00004160 XSTORM_ISCSI_TCP_VARS_TTL_OFFSET(pfid), DEF_TTL);
Michael Chan71034ba2009-10-10 13:46:59 +00004161 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00004162 XSTORM_ISCSI_TCP_VARS_TOS_OFFSET(pfid), DEF_TOS);
Michael Chan71034ba2009-10-10 13:46:59 +00004163 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00004164 XSTORM_ISCSI_TCP_VARS_ADV_WND_SCL_OFFSET(pfid), 2);
Michael Chan71034ba2009-10-10 13:46:59 +00004165 CNIC_WR(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00004166 XSTORM_TCP_TX_SWS_TIMER_VAL_OFFSET(pfid), DEF_SWS_TIMER);
Michael Chan71034ba2009-10-10 13:46:59 +00004167
Michael Chan14203982010-10-06 03:16:06 +00004168 CNIC_WR(dev, BAR_TSTRORM_INTMEM + TSTORM_TCP_MAX_CWND_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00004169 DEF_MAX_CWND);
4170 return 0;
4171}
4172
Michael Chanfdf24082010-10-13 14:06:47 +00004173static void cnic_delete_task(struct work_struct *work)
4174{
4175 struct cnic_local *cp;
4176 struct cnic_dev *dev;
4177 u32 i;
4178 int need_resched = 0;
4179
4180 cp = container_of(work, struct cnic_local, delete_task.work);
4181 dev = cp->dev;
4182
Dmitry Kravkovfab0dc82011-03-31 17:04:22 -07004183 if (test_and_clear_bit(CNIC_LCL_FL_STOP_ISCSI, &cp->cnic_local_flags)) {
4184 struct drv_ctl_info info;
4185
Dmitry Kravkovfab0dc82011-03-31 17:04:22 -07004186 cnic_ulp_stop_one(cp, CNIC_ULP_ISCSI);
Dmitry Kravkovfab0dc82011-03-31 17:04:22 -07004187
4188 info.cmd = DRV_CTL_ISCSI_STOPPED_CMD;
4189 cp->ethdev->drv_ctl(dev->netdev, &info);
4190 }
4191
Michael Chanfdf24082010-10-13 14:06:47 +00004192 for (i = 0; i < cp->max_cid_space; i++) {
4193 struct cnic_context *ctx = &cp->ctx_tbl[i];
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03004194 int err;
Michael Chanfdf24082010-10-13 14:06:47 +00004195
4196 if (!test_bit(CTX_FL_OFFLD_START, &ctx->ctx_flags) ||
4197 !test_bit(CTX_FL_DELETE_WAIT, &ctx->ctx_flags))
4198 continue;
4199
4200 if (!time_after(jiffies, ctx->timestamp + (2 * HZ))) {
4201 need_resched = 1;
4202 continue;
4203 }
4204
4205 if (!test_and_clear_bit(CTX_FL_DELETE_WAIT, &ctx->ctx_flags))
4206 continue;
4207
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03004208 err = cnic_bnx2x_destroy_ramrod(dev, i);
Michael Chanfdf24082010-10-13 14:06:47 +00004209
4210 cnic_free_bnx2x_conn_resc(dev, i);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03004211 if (!err) {
4212 if (ctx->ulp_proto_id == CNIC_ULP_ISCSI)
4213 atomic_dec(&cp->iscsi_conn);
Michael Chanfdf24082010-10-13 14:06:47 +00004214
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03004215 clear_bit(CTX_FL_OFFLD_START, &ctx->ctx_flags);
4216 }
Michael Chanfdf24082010-10-13 14:06:47 +00004217 }
4218
4219 if (need_resched)
4220 queue_delayed_work(cnic_wq, &cp->delete_task,
4221 msecs_to_jiffies(10));
4222
4223}
4224
Michael Chana4636962009-06-08 18:14:43 -07004225static int cnic_cm_open(struct cnic_dev *dev)
4226{
4227 struct cnic_local *cp = dev->cnic_priv;
4228 int err;
4229
4230 err = cnic_cm_alloc_mem(dev);
4231 if (err)
4232 return err;
4233
4234 err = cp->start_cm(dev);
4235
4236 if (err)
4237 goto err_out;
4238
Michael Chanfdf24082010-10-13 14:06:47 +00004239 INIT_DELAYED_WORK(&cp->delete_task, cnic_delete_task);
4240
Michael Chana4636962009-06-08 18:14:43 -07004241 dev->cm_create = cnic_cm_create;
4242 dev->cm_destroy = cnic_cm_destroy;
4243 dev->cm_connect = cnic_cm_connect;
4244 dev->cm_abort = cnic_cm_abort;
4245 dev->cm_close = cnic_cm_close;
4246 dev->cm_select_dev = cnic_cm_select_dev;
4247
4248 cp->ulp_handle[CNIC_ULP_L4] = dev;
4249 rcu_assign_pointer(cp->ulp_ops[CNIC_ULP_L4], &cm_ulp_ops);
4250 return 0;
4251
4252err_out:
4253 cnic_cm_free_mem(dev);
4254 return err;
4255}
4256
4257static int cnic_cm_shutdown(struct cnic_dev *dev)
4258{
4259 struct cnic_local *cp = dev->cnic_priv;
4260 int i;
4261
Michael Chana4636962009-06-08 18:14:43 -07004262 if (!cp->csk_tbl)
4263 return 0;
4264
4265 for (i = 0; i < MAX_CM_SK_TBL_SZ; i++) {
4266 struct cnic_sock *csk = &cp->csk_tbl[i];
4267
4268 clear_bit(SK_F_INUSE, &csk->flags);
4269 cnic_cm_cleanup(csk);
4270 }
4271 cnic_cm_free_mem(dev);
4272
4273 return 0;
4274}
4275
4276static void cnic_init_context(struct cnic_dev *dev, u32 cid)
4277{
Michael Chana4636962009-06-08 18:14:43 -07004278 u32 cid_addr;
4279 int i;
4280
Michael Chana4636962009-06-08 18:14:43 -07004281 cid_addr = GET_CID_ADDR(cid);
4282
4283 for (i = 0; i < CTX_SIZE; i += 4)
4284 cnic_ctx_wr(dev, cid_addr, i, 0);
4285}
4286
4287static int cnic_setup_5709_context(struct cnic_dev *dev, int valid)
4288{
4289 struct cnic_local *cp = dev->cnic_priv;
4290 int ret = 0, i;
4291 u32 valid_bit = valid ? BNX2_CTX_HOST_PAGE_TBL_DATA0_VALID : 0;
4292
4293 if (CHIP_NUM(cp) != CHIP_NUM_5709)
4294 return 0;
4295
4296 for (i = 0; i < cp->ctx_blks; i++) {
4297 int j;
4298 u32 idx = cp->ctx_arr[i].cid / cp->cids_per_blk;
4299 u32 val;
4300
4301 memset(cp->ctx_arr[i].ctx, 0, BCM_PAGE_SIZE);
4302
4303 CNIC_WR(dev, BNX2_CTX_HOST_PAGE_TBL_DATA0,
4304 (cp->ctx_arr[i].mapping & 0xffffffff) | valid_bit);
4305 CNIC_WR(dev, BNX2_CTX_HOST_PAGE_TBL_DATA1,
4306 (u64) cp->ctx_arr[i].mapping >> 32);
4307 CNIC_WR(dev, BNX2_CTX_HOST_PAGE_TBL_CTRL, idx |
4308 BNX2_CTX_HOST_PAGE_TBL_CTRL_WRITE_REQ);
4309 for (j = 0; j < 10; j++) {
4310
4311 val = CNIC_RD(dev, BNX2_CTX_HOST_PAGE_TBL_CTRL);
4312 if (!(val & BNX2_CTX_HOST_PAGE_TBL_CTRL_WRITE_REQ))
4313 break;
4314 udelay(5);
4315 }
4316 if (val & BNX2_CTX_HOST_PAGE_TBL_CTRL_WRITE_REQ) {
4317 ret = -EBUSY;
4318 break;
4319 }
4320 }
4321 return ret;
4322}
4323
4324static void cnic_free_irq(struct cnic_dev *dev)
4325{
4326 struct cnic_local *cp = dev->cnic_priv;
4327 struct cnic_eth_dev *ethdev = cp->ethdev;
4328
4329 if (ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX) {
4330 cp->disable_int_sync(dev);
Michael Chan6e0dc642010-10-13 14:06:44 +00004331 tasklet_kill(&cp->cnic_irq_task);
Michael Chana4636962009-06-08 18:14:43 -07004332 free_irq(ethdev->irq_arr[0].vector, dev);
4333 }
4334}
4335
Michael Chan6e0dc642010-10-13 14:06:44 +00004336static int cnic_request_irq(struct cnic_dev *dev)
4337{
4338 struct cnic_local *cp = dev->cnic_priv;
4339 struct cnic_eth_dev *ethdev = cp->ethdev;
4340 int err;
4341
4342 err = request_irq(ethdev->irq_arr[0].vector, cnic_irq, 0, "cnic", dev);
4343 if (err)
4344 tasklet_disable(&cp->cnic_irq_task);
4345
4346 return err;
4347}
4348
Michael Chana4636962009-06-08 18:14:43 -07004349static int cnic_init_bnx2_irq(struct cnic_dev *dev)
4350{
4351 struct cnic_local *cp = dev->cnic_priv;
4352 struct cnic_eth_dev *ethdev = cp->ethdev;
4353
4354 if (ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX) {
4355 int err, i = 0;
4356 int sblk_num = cp->status_blk_num;
4357 u32 base = ((sblk_num - 1) * BNX2_HC_SB_CONFIG_SIZE) +
4358 BNX2_HC_SB_CONFIG_1;
4359
4360 CNIC_WR(dev, base, BNX2_HC_SB_CONFIG_1_ONE_SHOT);
4361
4362 CNIC_WR(dev, base + BNX2_HC_COMP_PROD_TRIP_OFF, (2 << 16) | 8);
4363 CNIC_WR(dev, base + BNX2_HC_COM_TICKS_OFF, (64 << 16) | 220);
4364 CNIC_WR(dev, base + BNX2_HC_CMD_TICKS_OFF, (64 << 16) | 220);
4365
Michael Chana4dde3a2010-02-24 14:42:08 +00004366 cp->last_status_idx = cp->status_blk.bnx2->status_idx;
Joe Perches164165d2009-11-19 09:30:10 +00004367 tasklet_init(&cp->cnic_irq_task, cnic_service_bnx2_msix,
Michael Chana4636962009-06-08 18:14:43 -07004368 (unsigned long) dev);
Michael Chan6e0dc642010-10-13 14:06:44 +00004369 err = cnic_request_irq(dev);
4370 if (err)
Michael Chana4636962009-06-08 18:14:43 -07004371 return err;
Michael Chan6e0dc642010-10-13 14:06:44 +00004372
Michael Chana4dde3a2010-02-24 14:42:08 +00004373 while (cp->status_blk.bnx2->status_completion_producer_index &&
Michael Chana4636962009-06-08 18:14:43 -07004374 i < 10) {
4375 CNIC_WR(dev, BNX2_HC_COALESCE_NOW,
4376 1 << (11 + sblk_num));
4377 udelay(10);
4378 i++;
4379 barrier();
4380 }
Michael Chana4dde3a2010-02-24 14:42:08 +00004381 if (cp->status_blk.bnx2->status_completion_producer_index) {
Michael Chana4636962009-06-08 18:14:43 -07004382 cnic_free_irq(dev);
4383 goto failed;
4384 }
4385
4386 } else {
Michael Chana4dde3a2010-02-24 14:42:08 +00004387 struct status_block *sblk = cp->status_blk.gen;
Michael Chana4636962009-06-08 18:14:43 -07004388 u32 hc_cmd = CNIC_RD(dev, BNX2_HC_COMMAND);
4389 int i = 0;
4390
4391 while (sblk->status_completion_producer_index && i < 10) {
4392 CNIC_WR(dev, BNX2_HC_COMMAND,
4393 hc_cmd | BNX2_HC_COMMAND_COAL_NOW_WO_INT);
4394 udelay(10);
4395 i++;
4396 barrier();
4397 }
4398 if (sblk->status_completion_producer_index)
4399 goto failed;
4400
4401 }
4402 return 0;
4403
4404failed:
Joe Perchesddf79b22010-02-17 15:01:54 +00004405 netdev_err(dev->netdev, "KCQ index not resetting to 0\n");
Michael Chana4636962009-06-08 18:14:43 -07004406 return -EBUSY;
4407}
4408
4409static void cnic_enable_bnx2_int(struct cnic_dev *dev)
4410{
4411 struct cnic_local *cp = dev->cnic_priv;
4412 struct cnic_eth_dev *ethdev = cp->ethdev;
4413
4414 if (!(ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX))
4415 return;
4416
4417 CNIC_WR(dev, BNX2_PCICFG_INT_ACK_CMD, cp->int_num |
4418 BNX2_PCICFG_INT_ACK_CMD_INDEX_VALID | cp->last_status_idx);
4419}
4420
4421static void cnic_disable_bnx2_int_sync(struct cnic_dev *dev)
4422{
4423 struct cnic_local *cp = dev->cnic_priv;
4424 struct cnic_eth_dev *ethdev = cp->ethdev;
4425
4426 if (!(ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX))
4427 return;
4428
4429 CNIC_WR(dev, BNX2_PCICFG_INT_ACK_CMD, cp->int_num |
4430 BNX2_PCICFG_INT_ACK_CMD_MASK_INT);
4431 CNIC_RD(dev, BNX2_PCICFG_INT_ACK_CMD);
4432 synchronize_irq(ethdev->irq_arr[0].vector);
4433}
4434
4435static void cnic_init_bnx2_tx_ring(struct cnic_dev *dev)
4436{
4437 struct cnic_local *cp = dev->cnic_priv;
4438 struct cnic_eth_dev *ethdev = cp->ethdev;
Michael Chancd801532010-10-13 14:06:49 +00004439 struct cnic_uio_dev *udev = cp->udev;
Michael Chana4636962009-06-08 18:14:43 -07004440 u32 cid_addr, tx_cid, sb_id;
4441 u32 val, offset0, offset1, offset2, offset3;
4442 int i;
4443 struct tx_bd *txbd;
Michael Chancd801532010-10-13 14:06:49 +00004444 dma_addr_t buf_map, ring_map = udev->l2_ring_map;
Michael Chana4dde3a2010-02-24 14:42:08 +00004445 struct status_block *s_blk = cp->status_blk.gen;
Michael Chana4636962009-06-08 18:14:43 -07004446
4447 sb_id = cp->status_blk_num;
4448 tx_cid = 20;
Michael Chana4636962009-06-08 18:14:43 -07004449 cp->tx_cons_ptr = &s_blk->status_tx_quick_consumer_index2;
4450 if (ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX) {
Michael Chana4dde3a2010-02-24 14:42:08 +00004451 struct status_block_msix *sblk = cp->status_blk.bnx2;
Michael Chana4636962009-06-08 18:14:43 -07004452
4453 tx_cid = TX_TSS_CID + sb_id - 1;
Michael Chana4636962009-06-08 18:14:43 -07004454 CNIC_WR(dev, BNX2_TSCH_TSS_CFG, (sb_id << 24) |
4455 (TX_TSS_CID << 7));
4456 cp->tx_cons_ptr = &sblk->status_tx_quick_consumer_index;
4457 }
4458 cp->tx_cons = *cp->tx_cons_ptr;
4459
4460 cid_addr = GET_CID_ADDR(tx_cid);
4461 if (CHIP_NUM(cp) == CHIP_NUM_5709) {
4462 u32 cid_addr2 = GET_CID_ADDR(tx_cid + 4) + 0x40;
4463
4464 for (i = 0; i < PHY_CTX_SIZE; i += 4)
4465 cnic_ctx_wr(dev, cid_addr2, i, 0);
4466
4467 offset0 = BNX2_L2CTX_TYPE_XI;
4468 offset1 = BNX2_L2CTX_CMD_TYPE_XI;
4469 offset2 = BNX2_L2CTX_TBDR_BHADDR_HI_XI;
4470 offset3 = BNX2_L2CTX_TBDR_BHADDR_LO_XI;
4471 } else {
Michael Chanb58ffb42010-05-27 16:31:41 -07004472 cnic_init_context(dev, tx_cid);
4473 cnic_init_context(dev, tx_cid + 1);
4474
Michael Chana4636962009-06-08 18:14:43 -07004475 offset0 = BNX2_L2CTX_TYPE;
4476 offset1 = BNX2_L2CTX_CMD_TYPE;
4477 offset2 = BNX2_L2CTX_TBDR_BHADDR_HI;
4478 offset3 = BNX2_L2CTX_TBDR_BHADDR_LO;
4479 }
4480 val = BNX2_L2CTX_TYPE_TYPE_L2 | BNX2_L2CTX_TYPE_SIZE_L2;
4481 cnic_ctx_wr(dev, cid_addr, offset0, val);
4482
4483 val = BNX2_L2CTX_CMD_TYPE_TYPE_L2 | (8 << 16);
4484 cnic_ctx_wr(dev, cid_addr, offset1, val);
4485
Joe Perches43d620c2011-06-16 19:08:06 +00004486 txbd = udev->l2_ring;
Michael Chana4636962009-06-08 18:14:43 -07004487
Michael Chancd801532010-10-13 14:06:49 +00004488 buf_map = udev->l2_buf_map;
Michael Chana4636962009-06-08 18:14:43 -07004489 for (i = 0; i < MAX_TX_DESC_CNT; i++, txbd++) {
4490 txbd->tx_bd_haddr_hi = (u64) buf_map >> 32;
4491 txbd->tx_bd_haddr_lo = (u64) buf_map & 0xffffffff;
4492 }
Michael Chancd801532010-10-13 14:06:49 +00004493 val = (u64) ring_map >> 32;
Michael Chana4636962009-06-08 18:14:43 -07004494 cnic_ctx_wr(dev, cid_addr, offset2, val);
4495 txbd->tx_bd_haddr_hi = val;
4496
Michael Chancd801532010-10-13 14:06:49 +00004497 val = (u64) ring_map & 0xffffffff;
Michael Chana4636962009-06-08 18:14:43 -07004498 cnic_ctx_wr(dev, cid_addr, offset3, val);
4499 txbd->tx_bd_haddr_lo = val;
4500}
4501
4502static void cnic_init_bnx2_rx_ring(struct cnic_dev *dev)
4503{
4504 struct cnic_local *cp = dev->cnic_priv;
4505 struct cnic_eth_dev *ethdev = cp->ethdev;
Michael Chancd801532010-10-13 14:06:49 +00004506 struct cnic_uio_dev *udev = cp->udev;
Michael Chana4636962009-06-08 18:14:43 -07004507 u32 cid_addr, sb_id, val, coal_reg, coal_val;
4508 int i;
4509 struct rx_bd *rxbd;
Michael Chana4dde3a2010-02-24 14:42:08 +00004510 struct status_block *s_blk = cp->status_blk.gen;
Michael Chancd801532010-10-13 14:06:49 +00004511 dma_addr_t ring_map = udev->l2_ring_map;
Michael Chana4636962009-06-08 18:14:43 -07004512
4513 sb_id = cp->status_blk_num;
4514 cnic_init_context(dev, 2);
4515 cp->rx_cons_ptr = &s_blk->status_rx_quick_consumer_index2;
4516 coal_reg = BNX2_HC_COMMAND;
4517 coal_val = CNIC_RD(dev, coal_reg);
4518 if (ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX) {
Michael Chana4dde3a2010-02-24 14:42:08 +00004519 struct status_block_msix *sblk = cp->status_blk.bnx2;
Michael Chana4636962009-06-08 18:14:43 -07004520
4521 cp->rx_cons_ptr = &sblk->status_rx_quick_consumer_index;
4522 coal_reg = BNX2_HC_COALESCE_NOW;
4523 coal_val = 1 << (11 + sb_id);
4524 }
4525 i = 0;
4526 while (!(*cp->rx_cons_ptr != 0) && i < 10) {
4527 CNIC_WR(dev, coal_reg, coal_val);
4528 udelay(10);
4529 i++;
4530 barrier();
4531 }
4532 cp->rx_cons = *cp->rx_cons_ptr;
4533
4534 cid_addr = GET_CID_ADDR(2);
4535 val = BNX2_L2CTX_CTX_TYPE_CTX_BD_CHN_TYPE_VALUE |
4536 BNX2_L2CTX_CTX_TYPE_SIZE_L2 | (0x02 << 8);
4537 cnic_ctx_wr(dev, cid_addr, BNX2_L2CTX_CTX_TYPE, val);
4538
4539 if (sb_id == 0)
Michael Chand0549382009-10-28 03:41:59 -07004540 val = 2 << BNX2_L2CTX_L2_STATUSB_NUM_SHIFT;
Michael Chana4636962009-06-08 18:14:43 -07004541 else
Michael Chand0549382009-10-28 03:41:59 -07004542 val = BNX2_L2CTX_L2_STATUSB_NUM(sb_id);
Michael Chana4636962009-06-08 18:14:43 -07004543 cnic_ctx_wr(dev, cid_addr, BNX2_L2CTX_HOST_BDIDX, val);
4544
Joe Perches43d620c2011-06-16 19:08:06 +00004545 rxbd = udev->l2_ring + BCM_PAGE_SIZE;
Michael Chana4636962009-06-08 18:14:43 -07004546 for (i = 0; i < MAX_RX_DESC_CNT; i++, rxbd++) {
4547 dma_addr_t buf_map;
4548 int n = (i % cp->l2_rx_ring_size) + 1;
4549
Michael Chancd801532010-10-13 14:06:49 +00004550 buf_map = udev->l2_buf_map + (n * cp->l2_single_buf_size);
Michael Chana4636962009-06-08 18:14:43 -07004551 rxbd->rx_bd_len = cp->l2_single_buf_size;
4552 rxbd->rx_bd_flags = RX_BD_FLAGS_START | RX_BD_FLAGS_END;
4553 rxbd->rx_bd_haddr_hi = (u64) buf_map >> 32;
4554 rxbd->rx_bd_haddr_lo = (u64) buf_map & 0xffffffff;
4555 }
Michael Chancd801532010-10-13 14:06:49 +00004556 val = (u64) (ring_map + BCM_PAGE_SIZE) >> 32;
Michael Chana4636962009-06-08 18:14:43 -07004557 cnic_ctx_wr(dev, cid_addr, BNX2_L2CTX_NX_BDHADDR_HI, val);
4558 rxbd->rx_bd_haddr_hi = val;
4559
Michael Chancd801532010-10-13 14:06:49 +00004560 val = (u64) (ring_map + BCM_PAGE_SIZE) & 0xffffffff;
Michael Chana4636962009-06-08 18:14:43 -07004561 cnic_ctx_wr(dev, cid_addr, BNX2_L2CTX_NX_BDHADDR_LO, val);
4562 rxbd->rx_bd_haddr_lo = val;
4563
4564 val = cnic_reg_rd_ind(dev, BNX2_RXP_SCRATCH_RXP_FLOOD);
4565 cnic_reg_wr_ind(dev, BNX2_RXP_SCRATCH_RXP_FLOOD, val | (1 << 2));
4566}
4567
4568static void cnic_shutdown_bnx2_rx_ring(struct cnic_dev *dev)
4569{
4570 struct kwqe *wqes[1], l2kwqe;
4571
4572 memset(&l2kwqe, 0, sizeof(l2kwqe));
4573 wqes[0] = &l2kwqe;
Michael Chane1928c82010-12-23 07:43:04 +00004574 l2kwqe.kwqe_op_flag = (L2_LAYER_CODE << KWQE_LAYER_SHIFT) |
Michael Chana4636962009-06-08 18:14:43 -07004575 (L2_KWQE_OPCODE_VALUE_FLUSH <<
4576 KWQE_OPCODE_SHIFT) | 2;
4577 dev->submit_kwqes(dev, wqes, 1);
4578}
4579
4580static void cnic_set_bnx2_mac(struct cnic_dev *dev)
4581{
4582 struct cnic_local *cp = dev->cnic_priv;
4583 u32 val;
4584
4585 val = cp->func << 2;
4586
4587 cp->shmem_base = cnic_reg_rd_ind(dev, BNX2_SHM_HDR_ADDR_0 + val);
4588
4589 val = cnic_reg_rd_ind(dev, cp->shmem_base +
4590 BNX2_PORT_HW_CFG_ISCSI_MAC_UPPER);
4591 dev->mac_addr[0] = (u8) (val >> 8);
4592 dev->mac_addr[1] = (u8) val;
4593
4594 CNIC_WR(dev, BNX2_EMAC_MAC_MATCH4, val);
4595
4596 val = cnic_reg_rd_ind(dev, cp->shmem_base +
4597 BNX2_PORT_HW_CFG_ISCSI_MAC_LOWER);
4598 dev->mac_addr[2] = (u8) (val >> 24);
4599 dev->mac_addr[3] = (u8) (val >> 16);
4600 dev->mac_addr[4] = (u8) (val >> 8);
4601 dev->mac_addr[5] = (u8) val;
4602
4603 CNIC_WR(dev, BNX2_EMAC_MAC_MATCH5, val);
4604
4605 val = 4 | BNX2_RPM_SORT_USER2_BC_EN;
4606 if (CHIP_NUM(cp) != CHIP_NUM_5709)
4607 val |= BNX2_RPM_SORT_USER2_PROM_VLAN;
4608
4609 CNIC_WR(dev, BNX2_RPM_SORT_USER2, 0x0);
4610 CNIC_WR(dev, BNX2_RPM_SORT_USER2, val);
4611 CNIC_WR(dev, BNX2_RPM_SORT_USER2, val | BNX2_RPM_SORT_USER2_ENA);
4612}
4613
4614static int cnic_start_bnx2_hw(struct cnic_dev *dev)
4615{
4616 struct cnic_local *cp = dev->cnic_priv;
4617 struct cnic_eth_dev *ethdev = cp->ethdev;
Michael Chana4dde3a2010-02-24 14:42:08 +00004618 struct status_block *sblk = cp->status_blk.gen;
Michael Chane6c28892010-06-24 14:58:39 +00004619 u32 val, kcq_cid_addr, kwq_cid_addr;
Michael Chana4636962009-06-08 18:14:43 -07004620 int err;
4621
4622 cnic_set_bnx2_mac(dev);
4623
4624 val = CNIC_RD(dev, BNX2_MQ_CONFIG);
4625 val &= ~BNX2_MQ_CONFIG_KNL_BYP_BLK_SIZE;
4626 if (BCM_PAGE_BITS > 12)
4627 val |= (12 - 8) << 4;
4628 else
4629 val |= (BCM_PAGE_BITS - 8) << 4;
4630
4631 CNIC_WR(dev, BNX2_MQ_CONFIG, val);
4632
4633 CNIC_WR(dev, BNX2_HC_COMP_PROD_TRIP, (2 << 16) | 8);
4634 CNIC_WR(dev, BNX2_HC_COM_TICKS, (64 << 16) | 220);
4635 CNIC_WR(dev, BNX2_HC_CMD_TICKS, (64 << 16) | 220);
4636
4637 err = cnic_setup_5709_context(dev, 1);
4638 if (err)
4639 return err;
4640
4641 cnic_init_context(dev, KWQ_CID);
4642 cnic_init_context(dev, KCQ_CID);
4643
Michael Chane6c28892010-06-24 14:58:39 +00004644 kwq_cid_addr = GET_CID_ADDR(KWQ_CID);
Michael Chana4636962009-06-08 18:14:43 -07004645 cp->kwq_io_addr = MB_GET_CID_ADDR(KWQ_CID) + L5_KRNLQ_HOST_QIDX;
4646
4647 cp->max_kwq_idx = MAX_KWQ_IDX;
4648 cp->kwq_prod_idx = 0;
4649 cp->kwq_con_idx = 0;
Michael Chan1f1332a2010-05-18 11:32:52 +00004650 set_bit(CNIC_LCL_FL_KWQ_INIT, &cp->cnic_local_flags);
Michael Chana4636962009-06-08 18:14:43 -07004651
4652 if (CHIP_NUM(cp) == CHIP_NUM_5706 || CHIP_NUM(cp) == CHIP_NUM_5708)
4653 cp->kwq_con_idx_ptr = &sblk->status_rx_quick_consumer_index15;
4654 else
4655 cp->kwq_con_idx_ptr = &sblk->status_cmd_consumer_index;
4656
4657 /* Initialize the kernel work queue context. */
4658 val = KRNLQ_TYPE_TYPE_KRNLQ | KRNLQ_SIZE_TYPE_SIZE |
4659 (BCM_PAGE_BITS - 8) | KRNLQ_FLAGS_QE_SELF_SEQ;
Michael Chane6c28892010-06-24 14:58:39 +00004660 cnic_ctx_wr(dev, kwq_cid_addr, L5_KRNLQ_TYPE, val);
Michael Chana4636962009-06-08 18:14:43 -07004661
4662 val = (BCM_PAGE_SIZE / sizeof(struct kwqe) - 1) << 16;
Michael Chane6c28892010-06-24 14:58:39 +00004663 cnic_ctx_wr(dev, kwq_cid_addr, L5_KRNLQ_QE_SELF_SEQ_MAX, val);
Michael Chana4636962009-06-08 18:14:43 -07004664
4665 val = ((BCM_PAGE_SIZE / sizeof(struct kwqe)) << 16) | KWQ_PAGE_CNT;
Michael Chane6c28892010-06-24 14:58:39 +00004666 cnic_ctx_wr(dev, kwq_cid_addr, L5_KRNLQ_PGTBL_NPAGES, val);
Michael Chana4636962009-06-08 18:14:43 -07004667
4668 val = (u32) ((u64) cp->kwq_info.pgtbl_map >> 32);
Michael Chane6c28892010-06-24 14:58:39 +00004669 cnic_ctx_wr(dev, kwq_cid_addr, L5_KRNLQ_PGTBL_HADDR_HI, val);
Michael Chana4636962009-06-08 18:14:43 -07004670
4671 val = (u32) cp->kwq_info.pgtbl_map;
Michael Chane6c28892010-06-24 14:58:39 +00004672 cnic_ctx_wr(dev, kwq_cid_addr, L5_KRNLQ_PGTBL_HADDR_LO, val);
Michael Chana4636962009-06-08 18:14:43 -07004673
Michael Chane6c28892010-06-24 14:58:39 +00004674 kcq_cid_addr = GET_CID_ADDR(KCQ_CID);
4675 cp->kcq1.io_addr = MB_GET_CID_ADDR(KCQ_CID) + L5_KRNLQ_HOST_QIDX;
Michael Chana4636962009-06-08 18:14:43 -07004676
Michael Chane6c28892010-06-24 14:58:39 +00004677 cp->kcq1.sw_prod_idx = 0;
4678 cp->kcq1.hw_prod_idx_ptr =
Joe Perches64699332012-06-04 12:44:16 +00004679 &sblk->status_completion_producer_index;
Michael Chane6c28892010-06-24 14:58:39 +00004680
Joe Perches64699332012-06-04 12:44:16 +00004681 cp->kcq1.status_idx_ptr = &sblk->status_idx;
Michael Chana4636962009-06-08 18:14:43 -07004682
4683 /* Initialize the kernel complete queue context. */
4684 val = KRNLQ_TYPE_TYPE_KRNLQ | KRNLQ_SIZE_TYPE_SIZE |
4685 (BCM_PAGE_BITS - 8) | KRNLQ_FLAGS_QE_SELF_SEQ;
Michael Chane6c28892010-06-24 14:58:39 +00004686 cnic_ctx_wr(dev, kcq_cid_addr, L5_KRNLQ_TYPE, val);
Michael Chana4636962009-06-08 18:14:43 -07004687
4688 val = (BCM_PAGE_SIZE / sizeof(struct kcqe) - 1) << 16;
Michael Chane6c28892010-06-24 14:58:39 +00004689 cnic_ctx_wr(dev, kcq_cid_addr, L5_KRNLQ_QE_SELF_SEQ_MAX, val);
Michael Chana4636962009-06-08 18:14:43 -07004690
4691 val = ((BCM_PAGE_SIZE / sizeof(struct kcqe)) << 16) | KCQ_PAGE_CNT;
Michael Chane6c28892010-06-24 14:58:39 +00004692 cnic_ctx_wr(dev, kcq_cid_addr, L5_KRNLQ_PGTBL_NPAGES, val);
Michael Chana4636962009-06-08 18:14:43 -07004693
Michael Chane6c28892010-06-24 14:58:39 +00004694 val = (u32) ((u64) cp->kcq1.dma.pgtbl_map >> 32);
4695 cnic_ctx_wr(dev, kcq_cid_addr, L5_KRNLQ_PGTBL_HADDR_HI, val);
Michael Chana4636962009-06-08 18:14:43 -07004696
Michael Chane6c28892010-06-24 14:58:39 +00004697 val = (u32) cp->kcq1.dma.pgtbl_map;
4698 cnic_ctx_wr(dev, kcq_cid_addr, L5_KRNLQ_PGTBL_HADDR_LO, val);
Michael Chana4636962009-06-08 18:14:43 -07004699
4700 cp->int_num = 0;
4701 if (ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX) {
Michael Chane6c28892010-06-24 14:58:39 +00004702 struct status_block_msix *msblk = cp->status_blk.bnx2;
Michael Chana4636962009-06-08 18:14:43 -07004703 u32 sb_id = cp->status_blk_num;
Michael Chand0549382009-10-28 03:41:59 -07004704 u32 sb = BNX2_L2CTX_L5_STATUSB_NUM(sb_id);
Michael Chana4636962009-06-08 18:14:43 -07004705
Michael Chane6c28892010-06-24 14:58:39 +00004706 cp->kcq1.hw_prod_idx_ptr =
Joe Perches64699332012-06-04 12:44:16 +00004707 &msblk->status_completion_producer_index;
4708 cp->kcq1.status_idx_ptr = &msblk->status_idx;
4709 cp->kwq_con_idx_ptr = &msblk->status_cmd_consumer_index;
Michael Chana4636962009-06-08 18:14:43 -07004710 cp->int_num = sb_id << BNX2_PCICFG_INT_ACK_CMD_INT_NUM_SHIFT;
Michael Chane6c28892010-06-24 14:58:39 +00004711 cnic_ctx_wr(dev, kwq_cid_addr, L5_KRNLQ_HOST_QIDX, sb);
4712 cnic_ctx_wr(dev, kcq_cid_addr, L5_KRNLQ_HOST_QIDX, sb);
Michael Chana4636962009-06-08 18:14:43 -07004713 }
4714
4715 /* Enable Commnad Scheduler notification when we write to the
4716 * host producer index of the kernel contexts. */
4717 CNIC_WR(dev, BNX2_MQ_KNL_CMD_MASK1, 2);
4718
4719 /* Enable Command Scheduler notification when we write to either
4720 * the Send Queue or Receive Queue producer indexes of the kernel
4721 * bypass contexts. */
4722 CNIC_WR(dev, BNX2_MQ_KNL_BYP_CMD_MASK1, 7);
4723 CNIC_WR(dev, BNX2_MQ_KNL_BYP_WRITE_MASK1, 7);
4724
4725 /* Notify COM when the driver post an application buffer. */
4726 CNIC_WR(dev, BNX2_MQ_KNL_RX_V2P_MASK2, 0x2000);
4727
4728 /* Set the CP and COM doorbells. These two processors polls the
4729 * doorbell for a non zero value before running. This must be done
4730 * after setting up the kernel queue contexts. */
4731 cnic_reg_wr_ind(dev, BNX2_CP_SCRATCH + 0x20, 1);
4732 cnic_reg_wr_ind(dev, BNX2_COM_SCRATCH + 0x20, 1);
4733
4734 cnic_init_bnx2_tx_ring(dev);
4735 cnic_init_bnx2_rx_ring(dev);
4736
4737 err = cnic_init_bnx2_irq(dev);
4738 if (err) {
Joe Perchesddf79b22010-02-17 15:01:54 +00004739 netdev_err(dev->netdev, "cnic_init_irq failed\n");
Michael Chana4636962009-06-08 18:14:43 -07004740 cnic_reg_wr_ind(dev, BNX2_CP_SCRATCH + 0x20, 0);
4741 cnic_reg_wr_ind(dev, BNX2_COM_SCRATCH + 0x20, 0);
4742 return err;
4743 }
4744
4745 return 0;
4746}
4747
Michael Chan71034ba2009-10-10 13:46:59 +00004748static void cnic_setup_bnx2x_context(struct cnic_dev *dev)
4749{
4750 struct cnic_local *cp = dev->cnic_priv;
4751 struct cnic_eth_dev *ethdev = cp->ethdev;
4752 u32 start_offset = ethdev->ctx_tbl_offset;
4753 int i;
4754
4755 for (i = 0; i < cp->ctx_blks; i++) {
4756 struct cnic_ctx *ctx = &cp->ctx_arr[i];
4757 dma_addr_t map = ctx->mapping;
4758
4759 if (cp->ctx_align) {
4760 unsigned long mask = cp->ctx_align - 1;
4761
4762 map = (map + mask) & ~mask;
4763 }
4764
4765 cnic_ctx_tbl_wr(dev, start_offset + i, map);
4766 }
4767}
4768
4769static int cnic_init_bnx2x_irq(struct cnic_dev *dev)
4770{
4771 struct cnic_local *cp = dev->cnic_priv;
4772 struct cnic_eth_dev *ethdev = cp->ethdev;
4773 int err = 0;
4774
Joe Perches164165d2009-11-19 09:30:10 +00004775 tasklet_init(&cp->cnic_irq_task, cnic_service_bnx2x_bh,
Michael Chan71034ba2009-10-10 13:46:59 +00004776 (unsigned long) dev);
Michael Chan6e0dc642010-10-13 14:06:44 +00004777 if (ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX)
4778 err = cnic_request_irq(dev);
4779
Michael Chan71034ba2009-10-10 13:46:59 +00004780 return err;
4781}
4782
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004783static inline void cnic_storm_memset_hc_disable(struct cnic_dev *dev,
4784 u16 sb_id, u8 sb_index,
4785 u8 disable)
4786{
4787
4788 u32 addr = BAR_CSTRORM_INTMEM +
4789 CSTORM_STATUS_BLOCK_DATA_OFFSET(sb_id) +
4790 offsetof(struct hc_status_block_data_e1x, index_data) +
4791 sizeof(struct hc_index_data)*sb_index +
4792 offsetof(struct hc_index_data, flags);
4793 u16 flags = CNIC_RD16(dev, addr);
4794 /* clear and set */
4795 flags &= ~HC_INDEX_DATA_HC_ENABLED;
4796 flags |= (((~disable) << HC_INDEX_DATA_HC_ENABLED_SHIFT) &
4797 HC_INDEX_DATA_HC_ENABLED);
4798 CNIC_WR16(dev, addr, flags);
4799}
4800
Michael Chan71034ba2009-10-10 13:46:59 +00004801static void cnic_enable_bnx2x_int(struct cnic_dev *dev)
4802{
4803 struct cnic_local *cp = dev->cnic_priv;
4804 u8 sb_id = cp->status_blk_num;
Michael Chan71034ba2009-10-10 13:46:59 +00004805
4806 CNIC_WR8(dev, BAR_CSTRORM_INTMEM +
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004807 CSTORM_STATUS_BLOCK_DATA_OFFSET(sb_id) +
4808 offsetof(struct hc_status_block_data_e1x, index_data) +
4809 sizeof(struct hc_index_data)*HC_INDEX_ISCSI_EQ_CONS +
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03004810 offsetof(struct hc_index_data, timeout), 64 / 4);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004811 cnic_storm_memset_hc_disable(dev, sb_id, HC_INDEX_ISCSI_EQ_CONS, 0);
Michael Chan71034ba2009-10-10 13:46:59 +00004812}
4813
4814static void cnic_disable_bnx2x_int_sync(struct cnic_dev *dev)
4815{
4816}
4817
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004818static void cnic_init_bnx2x_tx_ring(struct cnic_dev *dev,
4819 struct client_init_ramrod_data *data)
Michael Chan71034ba2009-10-10 13:46:59 +00004820{
4821 struct cnic_local *cp = dev->cnic_priv;
Michael Chancd801532010-10-13 14:06:49 +00004822 struct cnic_uio_dev *udev = cp->udev;
4823 union eth_tx_bd_types *txbd = (union eth_tx_bd_types *) udev->l2_ring;
4824 dma_addr_t buf_map, ring_map = udev->l2_ring_map;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004825 struct host_sp_status_block *sb = cp->bnx2x_def_status_blk;
Michael Chan71034ba2009-10-10 13:46:59 +00004826 int i;
Michael Chan5159fdc2010-12-23 07:42:59 +00004827 u32 cli = cp->ethdev->iscsi_l2_client_id;
Michael Chan71034ba2009-10-10 13:46:59 +00004828 u32 val;
4829
4830 memset(txbd, 0, BCM_PAGE_SIZE);
4831
Michael Chancd801532010-10-13 14:06:49 +00004832 buf_map = udev->l2_buf_map;
Michael Chan71034ba2009-10-10 13:46:59 +00004833 for (i = 0; i < MAX_TX_DESC_CNT; i += 3, txbd += 3) {
4834 struct eth_tx_start_bd *start_bd = &txbd->start_bd;
4835 struct eth_tx_bd *reg_bd = &((txbd + 2)->reg_bd);
4836
4837 start_bd->addr_hi = cpu_to_le32((u64) buf_map >> 32);
4838 start_bd->addr_lo = cpu_to_le32(buf_map & 0xffffffff);
4839 reg_bd->addr_hi = start_bd->addr_hi;
4840 reg_bd->addr_lo = start_bd->addr_lo + 0x10;
4841 start_bd->nbytes = cpu_to_le16(0x10);
4842 start_bd->nbd = cpu_to_le16(3);
4843 start_bd->bd_flags.as_bitfield = ETH_TX_BD_FLAGS_START_BD;
4844 start_bd->general_data = (UNICAST_ADDRESS <<
4845 ETH_TX_START_BD_ETH_ADDR_TYPE_SHIFT);
4846 start_bd->general_data |= (1 << ETH_TX_START_BD_HDR_NBDS_SHIFT);
4847
4848 }
Michael Chan71034ba2009-10-10 13:46:59 +00004849
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004850 val = (u64) ring_map >> 32;
Michael Chan71034ba2009-10-10 13:46:59 +00004851 txbd->next_bd.addr_hi = cpu_to_le32(val);
4852
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004853 data->tx.tx_bd_page_base.hi = cpu_to_le32(val);
Michael Chan71034ba2009-10-10 13:46:59 +00004854
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004855 val = (u64) ring_map & 0xffffffff;
Michael Chan71034ba2009-10-10 13:46:59 +00004856 txbd->next_bd.addr_lo = cpu_to_le32(val);
4857
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004858 data->tx.tx_bd_page_base.lo = cpu_to_le32(val);
Michael Chan71034ba2009-10-10 13:46:59 +00004859
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004860 /* Other ramrod params */
4861 data->tx.tx_sb_index_number = HC_SP_INDEX_ETH_ISCSI_CQ_CONS;
4862 data->tx.tx_status_block_id = BNX2X_DEF_SB_ID;
Michael Chan71034ba2009-10-10 13:46:59 +00004863
4864 /* reset xstorm per client statistics */
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004865 if (cli < MAX_STAT_COUNTER_ID) {
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03004866 data->general.statistics_zero_flg = 1;
4867 data->general.statistics_en_flg = 1;
4868 data->general.statistics_counter_id = cli;
Dmitry Kravkov6b2a5412010-06-23 11:57:09 -07004869 }
Michael Chan71034ba2009-10-10 13:46:59 +00004870
4871 cp->tx_cons_ptr =
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004872 &sb->sp_sb.index_values[HC_SP_INDEX_ETH_ISCSI_CQ_CONS];
Michael Chan71034ba2009-10-10 13:46:59 +00004873}
4874
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004875static void cnic_init_bnx2x_rx_ring(struct cnic_dev *dev,
4876 struct client_init_ramrod_data *data)
Michael Chan71034ba2009-10-10 13:46:59 +00004877{
4878 struct cnic_local *cp = dev->cnic_priv;
Michael Chancd801532010-10-13 14:06:49 +00004879 struct cnic_uio_dev *udev = cp->udev;
4880 struct eth_rx_bd *rxbd = (struct eth_rx_bd *) (udev->l2_ring +
Michael Chan71034ba2009-10-10 13:46:59 +00004881 BCM_PAGE_SIZE);
4882 struct eth_rx_cqe_next_page *rxcqe = (struct eth_rx_cqe_next_page *)
Michael Chancd801532010-10-13 14:06:49 +00004883 (udev->l2_ring + (2 * BCM_PAGE_SIZE));
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004884 struct host_sp_status_block *sb = cp->bnx2x_def_status_blk;
Michael Chan71034ba2009-10-10 13:46:59 +00004885 int i;
Michael Chan5159fdc2010-12-23 07:42:59 +00004886 u32 cli = cp->ethdev->iscsi_l2_client_id;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004887 int cl_qzone_id = BNX2X_CL_QZONE_ID(cp, cli);
Michael Chan71034ba2009-10-10 13:46:59 +00004888 u32 val;
Michael Chancd801532010-10-13 14:06:49 +00004889 dma_addr_t ring_map = udev->l2_ring_map;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004890
4891 /* General data */
4892 data->general.client_id = cli;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004893 data->general.activate_flg = 1;
4894 data->general.sp_client_id = cli;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03004895 data->general.mtu = cpu_to_le16(cp->l2_single_buf_size - 14);
4896 data->general.func_id = cp->pfid;
Michael Chan71034ba2009-10-10 13:46:59 +00004897
4898 for (i = 0; i < BNX2X_MAX_RX_DESC_CNT; i++, rxbd++) {
4899 dma_addr_t buf_map;
4900 int n = (i % cp->l2_rx_ring_size) + 1;
4901
Michael Chancd801532010-10-13 14:06:49 +00004902 buf_map = udev->l2_buf_map + (n * cp->l2_single_buf_size);
Michael Chan71034ba2009-10-10 13:46:59 +00004903 rxbd->addr_hi = cpu_to_le32((u64) buf_map >> 32);
4904 rxbd->addr_lo = cpu_to_le32(buf_map & 0xffffffff);
4905 }
Michael Chan71034ba2009-10-10 13:46:59 +00004906
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004907 val = (u64) (ring_map + BCM_PAGE_SIZE) >> 32;
Michael Chan71034ba2009-10-10 13:46:59 +00004908 rxbd->addr_hi = cpu_to_le32(val);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004909 data->rx.bd_page_base.hi = cpu_to_le32(val);
Michael Chan71034ba2009-10-10 13:46:59 +00004910
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004911 val = (u64) (ring_map + BCM_PAGE_SIZE) & 0xffffffff;
Michael Chan71034ba2009-10-10 13:46:59 +00004912 rxbd->addr_lo = cpu_to_le32(val);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004913 data->rx.bd_page_base.lo = cpu_to_le32(val);
Michael Chan71034ba2009-10-10 13:46:59 +00004914
4915 rxcqe += BNX2X_MAX_RCQ_DESC_CNT;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004916 val = (u64) (ring_map + (2 * BCM_PAGE_SIZE)) >> 32;
Michael Chan71034ba2009-10-10 13:46:59 +00004917 rxcqe->addr_hi = cpu_to_le32(val);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004918 data->rx.cqe_page_base.hi = cpu_to_le32(val);
Michael Chan71034ba2009-10-10 13:46:59 +00004919
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004920 val = (u64) (ring_map + (2 * BCM_PAGE_SIZE)) & 0xffffffff;
Michael Chan71034ba2009-10-10 13:46:59 +00004921 rxcqe->addr_lo = cpu_to_le32(val);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004922 data->rx.cqe_page_base.lo = cpu_to_le32(val);
Michael Chan71034ba2009-10-10 13:46:59 +00004923
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004924 /* Other ramrod params */
4925 data->rx.client_qzone_id = cl_qzone_id;
4926 data->rx.rx_sb_index_number = HC_SP_INDEX_ETH_ISCSI_RX_CQ_CONS;
4927 data->rx.status_block_id = BNX2X_DEF_SB_ID;
Michael Chan71034ba2009-10-10 13:46:59 +00004928
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004929 data->rx.cache_line_alignment_log_size = L1_CACHE_SHIFT;
Michael Chan71034ba2009-10-10 13:46:59 +00004930
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03004931 data->rx.max_bytes_on_bd = cpu_to_le16(cp->l2_single_buf_size);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004932 data->rx.outer_vlan_removal_enable_flg = 1;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03004933 data->rx.silent_vlan_removal_flg = 1;
4934 data->rx.silent_vlan_value = 0;
4935 data->rx.silent_vlan_mask = 0xffff;
Michael Chan71034ba2009-10-10 13:46:59 +00004936
4937 cp->rx_cons_ptr =
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004938 &sb->sp_sb.index_values[HC_SP_INDEX_ETH_ISCSI_RX_CQ_CONS];
Michael Chan5159fdc2010-12-23 07:42:59 +00004939 cp->rx_cons = *cp->rx_cons_ptr;
Michael Chan71034ba2009-10-10 13:46:59 +00004940}
4941
Michael Chane21ba412010-12-23 07:43:03 +00004942static void cnic_init_bnx2x_kcq(struct cnic_dev *dev)
4943{
4944 struct cnic_local *cp = dev->cnic_priv;
4945 u32 pfid = cp->pfid;
4946
4947 cp->kcq1.io_addr = BAR_CSTRORM_INTMEM +
4948 CSTORM_ISCSI_EQ_PROD_OFFSET(pfid, 0);
4949 cp->kcq1.sw_prod_idx = 0;
4950
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03004951 if (BNX2X_CHIP_IS_E2_PLUS(cp->chip_id)) {
Michael Chane21ba412010-12-23 07:43:03 +00004952 struct host_hc_status_block_e2 *sb = cp->status_blk.gen;
4953
4954 cp->kcq1.hw_prod_idx_ptr =
4955 &sb->sb.index_values[HC_INDEX_ISCSI_EQ_CONS];
4956 cp->kcq1.status_idx_ptr =
4957 &sb->sb.running_index[SM_RX_ID];
4958 } else {
4959 struct host_hc_status_block_e1x *sb = cp->status_blk.gen;
4960
4961 cp->kcq1.hw_prod_idx_ptr =
4962 &sb->sb.index_values[HC_INDEX_ISCSI_EQ_CONS];
4963 cp->kcq1.status_idx_ptr =
4964 &sb->sb.running_index[SM_RX_ID];
4965 }
4966
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03004967 if (BNX2X_CHIP_IS_E2_PLUS(cp->chip_id)) {
Michael Chane21ba412010-12-23 07:43:03 +00004968 struct host_hc_status_block_e2 *sb = cp->status_blk.gen;
4969
4970 cp->kcq2.io_addr = BAR_USTRORM_INTMEM +
4971 USTORM_FCOE_EQ_PROD_OFFSET(pfid);
4972 cp->kcq2.sw_prod_idx = 0;
4973 cp->kcq2.hw_prod_idx_ptr =
4974 &sb->sb.index_values[HC_INDEX_FCOE_EQ_CONS];
4975 cp->kcq2.status_idx_ptr =
4976 &sb->sb.running_index[SM_RX_ID];
4977 }
4978}
4979
Michael Chan71034ba2009-10-10 13:46:59 +00004980static int cnic_start_bnx2x_hw(struct cnic_dev *dev)
4981{
4982 struct cnic_local *cp = dev->cnic_priv;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004983 struct cnic_eth_dev *ethdev = cp->ethdev;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03004984 int func = CNIC_FUNC(cp), ret;
Michael Chan14203982010-10-06 03:16:06 +00004985 u32 pfid;
Michael Chan71034ba2009-10-10 13:46:59 +00004986
Michael Chana9e0a4f2012-01-04 12:12:27 +00004987 dev->stats_addr = ethdev->addr_drv_info_to_mcp;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03004988 cp->port_mode = CHIP_PORT_MODE_NONE;
4989
4990 if (BNX2X_CHIP_IS_E2_PLUS(cp->chip_id)) {
Eddie Wai78ea22e2012-06-27 15:08:20 +00004991 u32 val;
Michael Chanee87a822010-10-13 14:06:51 +00004992
Eddie Wai78ea22e2012-06-27 15:08:20 +00004993 pci_read_config_dword(dev->pcidev, PCICFG_ME_REGISTER, &val);
4994 cp->func = (u8) ((val & ME_REG_ABS_PF_NUM) >>
4995 ME_REG_ABS_PF_NUM_SHIFT);
4996 func = CNIC_FUNC(cp);
4997
4998 val = CNIC_RD(dev, MISC_REG_PORT4MODE_EN_OVWR);
Michael Chanee87a822010-10-13 14:06:51 +00004999 if (!(val & 1))
5000 val = CNIC_RD(dev, MISC_REG_PORT4MODE_EN);
5001 else
5002 val = (val >> 1) & 1;
5003
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03005004 if (val) {
5005 cp->port_mode = CHIP_4_PORT_MODE;
Michael Chanee87a822010-10-13 14:06:51 +00005006 cp->pfid = func >> 1;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03005007 } else {
Michael Chanb7d40312011-07-13 17:24:18 +00005008 cp->port_mode = CHIP_2_PORT_MODE;
Michael Chanee87a822010-10-13 14:06:51 +00005009 cp->pfid = func & 0x6;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03005010 }
Michael Chanee87a822010-10-13 14:06:51 +00005011 } else {
5012 cp->pfid = func;
5013 }
Michael Chan14203982010-10-06 03:16:06 +00005014 pfid = cp->pfid;
5015
Michael Chan71034ba2009-10-10 13:46:59 +00005016 ret = cnic_init_id_tbl(&cp->cid_tbl, MAX_ISCSI_TBL_SZ,
Eddie Wai11f23aa2011-06-08 19:29:34 +00005017 cp->iscsi_start_cid, 0);
Michael Chan71034ba2009-10-10 13:46:59 +00005018
5019 if (ret)
5020 return -ENOMEM;
5021
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03005022 if (BNX2X_CHIP_IS_E2_PLUS(cp->chip_id)) {
Michael Chandc219a22011-08-26 09:45:39 +00005023 ret = cnic_init_id_tbl(&cp->fcoe_cid_tbl, dev->max_fcoe_conn,
Eddie Wai11f23aa2011-06-08 19:29:34 +00005024 cp->fcoe_start_cid, 0);
Michael Chane1928c82010-12-23 07:43:04 +00005025
5026 if (ret)
5027 return -ENOMEM;
5028 }
5029
Dmitry Kravkov523224a2010-10-06 03:23:26 +00005030 cp->bnx2x_igu_sb_id = ethdev->irq_arr[0].status_blk_num2;
5031
Michael Chane21ba412010-12-23 07:43:03 +00005032 cnic_init_bnx2x_kcq(dev);
Michael Chan71034ba2009-10-10 13:46:59 +00005033
Michael Chan71034ba2009-10-10 13:46:59 +00005034 /* Only 1 EQ */
Michael Chane6c28892010-06-24 14:58:39 +00005035 CNIC_WR16(dev, cp->kcq1.io_addr, MAX_KCQ_IDX);
Michael Chan71034ba2009-10-10 13:46:59 +00005036 CNIC_WR(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00005037 CSTORM_ISCSI_EQ_CONS_OFFSET(pfid, 0), 0);
Michael Chan71034ba2009-10-10 13:46:59 +00005038 CNIC_WR(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00005039 CSTORM_ISCSI_EQ_NEXT_PAGE_ADDR_OFFSET(pfid, 0),
Michael Chane6c28892010-06-24 14:58:39 +00005040 cp->kcq1.dma.pg_map_arr[1] & 0xffffffff);
Michael Chan71034ba2009-10-10 13:46:59 +00005041 CNIC_WR(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00005042 CSTORM_ISCSI_EQ_NEXT_PAGE_ADDR_OFFSET(pfid, 0) + 4,
Michael Chane6c28892010-06-24 14:58:39 +00005043 (u64) cp->kcq1.dma.pg_map_arr[1] >> 32);
Michael Chan71034ba2009-10-10 13:46:59 +00005044 CNIC_WR(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00005045 CSTORM_ISCSI_EQ_NEXT_EQE_ADDR_OFFSET(pfid, 0),
Michael Chane6c28892010-06-24 14:58:39 +00005046 cp->kcq1.dma.pg_map_arr[0] & 0xffffffff);
Michael Chan71034ba2009-10-10 13:46:59 +00005047 CNIC_WR(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00005048 CSTORM_ISCSI_EQ_NEXT_EQE_ADDR_OFFSET(pfid, 0) + 4,
Michael Chane6c28892010-06-24 14:58:39 +00005049 (u64) cp->kcq1.dma.pg_map_arr[0] >> 32);
Michael Chan71034ba2009-10-10 13:46:59 +00005050 CNIC_WR8(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00005051 CSTORM_ISCSI_EQ_NEXT_PAGE_ADDR_VALID_OFFSET(pfid, 0), 1);
Michael Chan71034ba2009-10-10 13:46:59 +00005052 CNIC_WR16(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00005053 CSTORM_ISCSI_EQ_SB_NUM_OFFSET(pfid, 0), cp->status_blk_num);
Michael Chan71034ba2009-10-10 13:46:59 +00005054 CNIC_WR8(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00005055 CSTORM_ISCSI_EQ_SB_INDEX_OFFSET(pfid, 0),
Dmitry Kravkov523224a2010-10-06 03:23:26 +00005056 HC_INDEX_ISCSI_EQ_CONS);
Michael Chan71034ba2009-10-10 13:46:59 +00005057
Michael Chan71034ba2009-10-10 13:46:59 +00005058 CNIC_WR(dev, BAR_USTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00005059 USTORM_ISCSI_GLOBAL_BUF_PHYS_ADDR_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00005060 cp->gbl_buf_info.pg_map_arr[0] & 0xffffffff);
5061 CNIC_WR(dev, BAR_USTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00005062 USTORM_ISCSI_GLOBAL_BUF_PHYS_ADDR_OFFSET(pfid) + 4,
Michael Chan71034ba2009-10-10 13:46:59 +00005063 (u64) cp->gbl_buf_info.pg_map_arr[0] >> 32);
5064
Dmitry Kravkov523224a2010-10-06 03:23:26 +00005065 CNIC_WR(dev, BAR_TSTRORM_INTMEM +
5066 TSTORM_ISCSI_TCP_LOCAL_ADV_WND_OFFSET(pfid), DEF_RCV_BUF);
5067
Michael Chan71034ba2009-10-10 13:46:59 +00005068 cnic_setup_bnx2x_context(dev);
5069
Michael Chan71034ba2009-10-10 13:46:59 +00005070 ret = cnic_init_bnx2x_irq(dev);
5071 if (ret)
5072 return ret;
5073
Michael Chan71034ba2009-10-10 13:46:59 +00005074 return 0;
5075}
5076
Michael Chan86b53602009-10-10 13:46:57 +00005077static void cnic_init_rings(struct cnic_dev *dev)
5078{
Michael Chan541a7812010-10-06 03:17:22 +00005079 struct cnic_local *cp = dev->cnic_priv;
Michael Chancd801532010-10-13 14:06:49 +00005080 struct cnic_uio_dev *udev = cp->udev;
Michael Chan541a7812010-10-06 03:17:22 +00005081
5082 if (test_bit(CNIC_LCL_FL_RINGS_INITED, &cp->cnic_local_flags))
5083 return;
5084
Michael Chan86b53602009-10-10 13:46:57 +00005085 if (test_bit(CNIC_F_BNX2_CLASS, &dev->flags)) {
5086 cnic_init_bnx2_tx_ring(dev);
5087 cnic_init_bnx2_rx_ring(dev);
Michael Chan541a7812010-10-06 03:17:22 +00005088 set_bit(CNIC_LCL_FL_RINGS_INITED, &cp->cnic_local_flags);
Michael Chan71034ba2009-10-10 13:46:59 +00005089 } else if (test_bit(CNIC_F_BNX2X_CLASS, &dev->flags)) {
Michael Chan5159fdc2010-12-23 07:42:59 +00005090 u32 cli = cp->ethdev->iscsi_l2_client_id;
5091 u32 cid = cp->ethdev->iscsi_l2_cid;
Michael Chan68d7c1a2011-01-05 15:14:13 +00005092 u32 cl_qzone_id;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00005093 struct client_init_ramrod_data *data;
Michael Chan71034ba2009-10-10 13:46:59 +00005094 union l5cm_specific_data l5_data;
5095 struct ustorm_eth_rx_producers rx_prods = {0};
Michael Chane1dd8832011-07-13 17:24:19 +00005096 u32 off, i, *cid_ptr;
Michael Chan71034ba2009-10-10 13:46:59 +00005097
5098 rx_prods.bd_prod = 0;
5099 rx_prods.cqe_prod = BNX2X_MAX_RCQ_DESC_CNT;
5100 barrier();
5101
Dmitry Kravkov523224a2010-10-06 03:23:26 +00005102 cl_qzone_id = BNX2X_CL_QZONE_ID(cp, cli);
5103
Michael Chanc7596b72009-12-02 15:15:35 +00005104 off = BAR_USTRORM_INTMEM +
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03005105 (BNX2X_CHIP_IS_E2_PLUS(cp->chip_id) ?
Michael Chanee87a822010-10-13 14:06:51 +00005106 USTORM_RX_PRODS_E2_OFFSET(cl_qzone_id) :
5107 USTORM_RX_PRODS_E1X_OFFSET(CNIC_PORT(cp), cli));
Michael Chan71034ba2009-10-10 13:46:59 +00005108
5109 for (i = 0; i < sizeof(struct ustorm_eth_rx_producers) / 4; i++)
Michael Chanc7596b72009-12-02 15:15:35 +00005110 CNIC_WR(dev, off + i * 4, ((u32 *) &rx_prods)[i]);
Michael Chan71034ba2009-10-10 13:46:59 +00005111
Michael Chan48f753d2010-05-18 11:32:53 +00005112 set_bit(CNIC_LCL_FL_L2_WAIT, &cp->cnic_local_flags);
5113
Michael Chancd801532010-10-13 14:06:49 +00005114 data = udev->l2_buf;
Michael Chane1dd8832011-07-13 17:24:19 +00005115 cid_ptr = udev->l2_buf + 12;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00005116
5117 memset(data, 0, sizeof(*data));
5118
5119 cnic_init_bnx2x_tx_ring(dev, data);
5120 cnic_init_bnx2x_rx_ring(dev, data);
5121
Michael Chancd801532010-10-13 14:06:49 +00005122 l5_data.phy_address.lo = udev->l2_buf_map & 0xffffffff;
5123 l5_data.phy_address.hi = (u64) udev->l2_buf_map >> 32;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00005124
Michael Chan541a7812010-10-06 03:17:22 +00005125 set_bit(CNIC_LCL_FL_RINGS_INITED, &cp->cnic_local_flags);
5126
Michael Chan71034ba2009-10-10 13:46:59 +00005127 cnic_submit_kwqe_16(dev, RAMROD_CMD_ID_ETH_CLIENT_SETUP,
Michael Chan68d7c1a2011-01-05 15:14:13 +00005128 cid, ETH_CONNECTION_TYPE, &l5_data);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00005129
Michael Chan48f753d2010-05-18 11:32:53 +00005130 i = 0;
5131 while (test_bit(CNIC_LCL_FL_L2_WAIT, &cp->cnic_local_flags) &&
5132 ++i < 10)
5133 msleep(1);
5134
5135 if (test_bit(CNIC_LCL_FL_L2_WAIT, &cp->cnic_local_flags))
5136 netdev_err(dev->netdev,
5137 "iSCSI CLIENT_SETUP did not complete\n");
Dmitry Kravkovc2bff632010-10-06 03:33:18 +00005138 cnic_spq_completion(dev, DRV_CTL_RET_L2_SPQ_CREDIT_CMD, 1);
Michael Chan5159fdc2010-12-23 07:42:59 +00005139 cnic_ring_ctl(dev, cid, cli, 1);
Michael Chane1dd8832011-07-13 17:24:19 +00005140 *cid_ptr = cid;
Michael Chan86b53602009-10-10 13:46:57 +00005141 }
5142}
5143
5144static void cnic_shutdown_rings(struct cnic_dev *dev)
5145{
Michael Chan541a7812010-10-06 03:17:22 +00005146 struct cnic_local *cp = dev->cnic_priv;
Michael Chane1dd8832011-07-13 17:24:19 +00005147 struct cnic_uio_dev *udev = cp->udev;
5148 void *rx_ring;
Michael Chan541a7812010-10-06 03:17:22 +00005149
5150 if (!test_bit(CNIC_LCL_FL_RINGS_INITED, &cp->cnic_local_flags))
5151 return;
5152
Michael Chan86b53602009-10-10 13:46:57 +00005153 if (test_bit(CNIC_F_BNX2_CLASS, &dev->flags)) {
5154 cnic_shutdown_bnx2_rx_ring(dev);
Michael Chan71034ba2009-10-10 13:46:59 +00005155 } else if (test_bit(CNIC_F_BNX2X_CLASS, &dev->flags)) {
Michael Chan5159fdc2010-12-23 07:42:59 +00005156 u32 cli = cp->ethdev->iscsi_l2_client_id;
5157 u32 cid = cp->ethdev->iscsi_l2_cid;
Michael Chan8b065b62009-12-02 15:15:36 +00005158 union l5cm_specific_data l5_data;
Michael Chan48f753d2010-05-18 11:32:53 +00005159 int i;
Michael Chan71034ba2009-10-10 13:46:59 +00005160
Michael Chan5159fdc2010-12-23 07:42:59 +00005161 cnic_ring_ctl(dev, cid, cli, 0);
Michael Chan8b065b62009-12-02 15:15:36 +00005162
Michael Chan48f753d2010-05-18 11:32:53 +00005163 set_bit(CNIC_LCL_FL_L2_WAIT, &cp->cnic_local_flags);
5164
Michael Chan8b065b62009-12-02 15:15:36 +00005165 l5_data.phy_address.lo = cli;
5166 l5_data.phy_address.hi = 0;
5167 cnic_submit_kwqe_16(dev, RAMROD_CMD_ID_ETH_HALT,
Michael Chan5159fdc2010-12-23 07:42:59 +00005168 cid, ETH_CONNECTION_TYPE, &l5_data);
Michael Chan48f753d2010-05-18 11:32:53 +00005169 i = 0;
5170 while (test_bit(CNIC_LCL_FL_L2_WAIT, &cp->cnic_local_flags) &&
5171 ++i < 10)
5172 msleep(1);
5173
5174 if (test_bit(CNIC_LCL_FL_L2_WAIT, &cp->cnic_local_flags))
5175 netdev_err(dev->netdev,
5176 "iSCSI CLIENT_HALT did not complete\n");
Dmitry Kravkovc2bff632010-10-06 03:33:18 +00005177 cnic_spq_completion(dev, DRV_CTL_RET_L2_SPQ_CREDIT_CMD, 1);
Michael Chan1bcdc322009-12-10 15:40:57 +00005178
5179 memset(&l5_data, 0, sizeof(l5_data));
Dmitry Kravkov523224a2010-10-06 03:23:26 +00005180 cnic_submit_kwqe_16(dev, RAMROD_CMD_ID_COMMON_CFC_DEL,
Michael Chan68d7c1a2011-01-05 15:14:13 +00005181 cid, NONE_CONNECTION_TYPE, &l5_data);
Michael Chan1bcdc322009-12-10 15:40:57 +00005182 msleep(10);
Michael Chan86b53602009-10-10 13:46:57 +00005183 }
Michael Chan541a7812010-10-06 03:17:22 +00005184 clear_bit(CNIC_LCL_FL_RINGS_INITED, &cp->cnic_local_flags);
Michael Chane1dd8832011-07-13 17:24:19 +00005185 rx_ring = udev->l2_ring + BCM_PAGE_SIZE;
5186 memset(rx_ring, 0, BCM_PAGE_SIZE);
Michael Chan86b53602009-10-10 13:46:57 +00005187}
5188
Michael Chana3059b12009-08-14 15:49:44 +00005189static int cnic_register_netdev(struct cnic_dev *dev)
5190{
5191 struct cnic_local *cp = dev->cnic_priv;
5192 struct cnic_eth_dev *ethdev = cp->ethdev;
5193 int err;
5194
5195 if (!ethdev)
5196 return -ENODEV;
5197
5198 if (ethdev->drv_state & CNIC_DRV_STATE_REGD)
5199 return 0;
5200
5201 err = ethdev->drv_register_cnic(dev->netdev, cp->cnic_ops, dev);
5202 if (err)
Joe Perchesddf79b22010-02-17 15:01:54 +00005203 netdev_err(dev->netdev, "register_cnic failed\n");
Michael Chana3059b12009-08-14 15:49:44 +00005204
5205 return err;
5206}
5207
5208static void cnic_unregister_netdev(struct cnic_dev *dev)
5209{
5210 struct cnic_local *cp = dev->cnic_priv;
5211 struct cnic_eth_dev *ethdev = cp->ethdev;
5212
5213 if (!ethdev)
5214 return;
5215
5216 ethdev->drv_unregister_cnic(dev->netdev);
5217}
5218
Michael Chana4636962009-06-08 18:14:43 -07005219static int cnic_start_hw(struct cnic_dev *dev)
5220{
5221 struct cnic_local *cp = dev->cnic_priv;
5222 struct cnic_eth_dev *ethdev = cp->ethdev;
5223 int err;
5224
5225 if (test_bit(CNIC_F_CNIC_UP, &dev->flags))
5226 return -EALREADY;
5227
Michael Chana4636962009-06-08 18:14:43 -07005228 dev->regview = ethdev->io_base;
Michael Chana4636962009-06-08 18:14:43 -07005229 pci_dev_get(dev->pcidev);
5230 cp->func = PCI_FUNC(dev->pcidev->devfn);
Michael Chana4dde3a2010-02-24 14:42:08 +00005231 cp->status_blk.gen = ethdev->irq_arr[0].status_blk;
Michael Chana4636962009-06-08 18:14:43 -07005232 cp->status_blk_num = ethdev->irq_arr[0].status_blk_num;
5233
5234 err = cp->alloc_resc(dev);
5235 if (err) {
Joe Perchesddf79b22010-02-17 15:01:54 +00005236 netdev_err(dev->netdev, "allocate resource failure\n");
Michael Chana4636962009-06-08 18:14:43 -07005237 goto err1;
5238 }
5239
5240 err = cp->start_hw(dev);
5241 if (err)
5242 goto err1;
5243
5244 err = cnic_cm_open(dev);
5245 if (err)
5246 goto err1;
5247
5248 set_bit(CNIC_F_CNIC_UP, &dev->flags);
5249
5250 cp->enable_int(dev);
5251
5252 return 0;
5253
5254err1:
Michael Chana4636962009-06-08 18:14:43 -07005255 cp->free_resc(dev);
5256 pci_dev_put(dev->pcidev);
Michael Chana4636962009-06-08 18:14:43 -07005257 return err;
5258}
5259
5260static void cnic_stop_bnx2_hw(struct cnic_dev *dev)
5261{
Michael Chana4636962009-06-08 18:14:43 -07005262 cnic_disable_bnx2_int_sync(dev);
5263
5264 cnic_reg_wr_ind(dev, BNX2_CP_SCRATCH + 0x20, 0);
5265 cnic_reg_wr_ind(dev, BNX2_COM_SCRATCH + 0x20, 0);
5266
5267 cnic_init_context(dev, KWQ_CID);
5268 cnic_init_context(dev, KCQ_CID);
5269
5270 cnic_setup_5709_context(dev, 0);
5271 cnic_free_irq(dev);
5272
Michael Chana4636962009-06-08 18:14:43 -07005273 cnic_free_resc(dev);
5274}
5275
Michael Chan71034ba2009-10-10 13:46:59 +00005276
5277static void cnic_stop_bnx2x_hw(struct cnic_dev *dev)
5278{
5279 struct cnic_local *cp = dev->cnic_priv;
Michael Chan71034ba2009-10-10 13:46:59 +00005280
5281 cnic_free_irq(dev);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00005282 *cp->kcq1.hw_prod_idx_ptr = 0;
Michael Chan4e9c4fd2009-12-10 15:40:58 +00005283 CNIC_WR(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00005284 CSTORM_ISCSI_EQ_CONS_OFFSET(cp->pfid, 0), 0);
Michael Chane6c28892010-06-24 14:58:39 +00005285 CNIC_WR16(dev, cp->kcq1.io_addr, 0);
Michael Chan71034ba2009-10-10 13:46:59 +00005286 cnic_free_resc(dev);
5287}
5288
Michael Chana4636962009-06-08 18:14:43 -07005289static void cnic_stop_hw(struct cnic_dev *dev)
5290{
5291 if (test_bit(CNIC_F_CNIC_UP, &dev->flags)) {
5292 struct cnic_local *cp = dev->cnic_priv;
Michael Chan48f753d2010-05-18 11:32:53 +00005293 int i = 0;
Michael Chana4636962009-06-08 18:14:43 -07005294
Michael Chan48f753d2010-05-18 11:32:53 +00005295 /* Need to wait for the ring shutdown event to complete
5296 * before clearing the CNIC_UP flag.
5297 */
Michael Chancd801532010-10-13 14:06:49 +00005298 while (cp->udev->uio_dev != -1 && i < 15) {
Michael Chan48f753d2010-05-18 11:32:53 +00005299 msleep(100);
5300 i++;
5301 }
Michael Chana3ceeeb2010-10-13 14:06:50 +00005302 cnic_shutdown_rings(dev);
Michael Chana2028b232012-06-27 15:08:19 +00005303 cp->stop_cm(dev);
Michael Chana4636962009-06-08 18:14:43 -07005304 clear_bit(CNIC_F_CNIC_UP, &dev->flags);
Eric Dumazet2cfa5a02011-11-23 07:09:32 +00005305 RCU_INIT_POINTER(cp->ulp_ops[CNIC_ULP_L4], NULL);
Michael Chana4636962009-06-08 18:14:43 -07005306 synchronize_rcu();
5307 cnic_cm_shutdown(dev);
5308 cp->stop_hw(dev);
5309 pci_dev_put(dev->pcidev);
5310 }
5311}
5312
5313static void cnic_free_dev(struct cnic_dev *dev)
5314{
5315 int i = 0;
5316
5317 while ((atomic_read(&dev->ref_count) != 0) && i < 10) {
5318 msleep(100);
5319 i++;
5320 }
5321 if (atomic_read(&dev->ref_count) != 0)
Joe Perchesddf79b22010-02-17 15:01:54 +00005322 netdev_err(dev->netdev, "Failed waiting for ref count to go to zero\n");
Michael Chana4636962009-06-08 18:14:43 -07005323
Joe Perchesddf79b22010-02-17 15:01:54 +00005324 netdev_info(dev->netdev, "Removed CNIC device\n");
Michael Chana4636962009-06-08 18:14:43 -07005325 dev_put(dev->netdev);
5326 kfree(dev);
5327}
5328
5329static struct cnic_dev *cnic_alloc_dev(struct net_device *dev,
5330 struct pci_dev *pdev)
5331{
5332 struct cnic_dev *cdev;
5333 struct cnic_local *cp;
5334 int alloc_size;
5335
5336 alloc_size = sizeof(struct cnic_dev) + sizeof(struct cnic_local);
5337
5338 cdev = kzalloc(alloc_size , GFP_KERNEL);
5339 if (cdev == NULL) {
Joe Perchesddf79b22010-02-17 15:01:54 +00005340 netdev_err(dev, "allocate dev struct failure\n");
Michael Chana4636962009-06-08 18:14:43 -07005341 return NULL;
5342 }
5343
5344 cdev->netdev = dev;
5345 cdev->cnic_priv = (char *)cdev + sizeof(struct cnic_dev);
5346 cdev->register_device = cnic_register_device;
5347 cdev->unregister_device = cnic_unregister_device;
5348 cdev->iscsi_nl_msg_recv = cnic_iscsi_nl_msg_recv;
5349
5350 cp = cdev->cnic_priv;
5351 cp->dev = cdev;
Michael Chana4636962009-06-08 18:14:43 -07005352 cp->l2_single_buf_size = 0x400;
5353 cp->l2_rx_ring_size = 3;
5354
5355 spin_lock_init(&cp->cnic_ulp_lock);
5356
Joe Perchesddf79b22010-02-17 15:01:54 +00005357 netdev_info(dev, "Added CNIC device\n");
Michael Chana4636962009-06-08 18:14:43 -07005358
5359 return cdev;
5360}
5361
5362static struct cnic_dev *init_bnx2_cnic(struct net_device *dev)
5363{
5364 struct pci_dev *pdev;
5365 struct cnic_dev *cdev;
5366 struct cnic_local *cp;
5367 struct cnic_eth_dev *ethdev = NULL;
Michael Chane2ee3612009-06-13 17:43:02 -07005368 struct cnic_eth_dev *(*probe)(struct net_device *) = NULL;
Michael Chana4636962009-06-08 18:14:43 -07005369
Michael Chane2ee3612009-06-13 17:43:02 -07005370 probe = symbol_get(bnx2_cnic_probe);
Michael Chana4636962009-06-08 18:14:43 -07005371 if (probe) {
5372 ethdev = (*probe)(dev);
Michael Chan64c64602009-08-14 15:49:43 +00005373 symbol_put(bnx2_cnic_probe);
Michael Chana4636962009-06-08 18:14:43 -07005374 }
5375 if (!ethdev)
5376 return NULL;
5377
5378 pdev = ethdev->pdev;
5379 if (!pdev)
5380 return NULL;
5381
5382 dev_hold(dev);
5383 pci_dev_get(pdev);
Sergei Shtylyovff938e42011-02-28 11:57:33 -08005384 if ((pdev->device == PCI_DEVICE_ID_NX2_5709 ||
5385 pdev->device == PCI_DEVICE_ID_NX2_5709S) &&
5386 (pdev->revision < 0x10)) {
5387 pci_dev_put(pdev);
5388 goto cnic_err;
Michael Chana4636962009-06-08 18:14:43 -07005389 }
5390 pci_dev_put(pdev);
5391
5392 cdev = cnic_alloc_dev(dev, pdev);
5393 if (cdev == NULL)
5394 goto cnic_err;
5395
5396 set_bit(CNIC_F_BNX2_CLASS, &cdev->flags);
5397 cdev->submit_kwqes = cnic_submit_bnx2_kwqes;
5398
5399 cp = cdev->cnic_priv;
5400 cp->ethdev = ethdev;
5401 cdev->pcidev = pdev;
Michael Chanee87a822010-10-13 14:06:51 +00005402 cp->chip_id = ethdev->chip_id;
Michael Chana4636962009-06-08 18:14:43 -07005403
Michael Chan7625eb22011-06-08 19:29:36 +00005404 cdev->max_iscsi_conn = ethdev->max_iscsi_conn;
5405
Michael Chana4636962009-06-08 18:14:43 -07005406 cp->cnic_ops = &cnic_bnx2_ops;
5407 cp->start_hw = cnic_start_bnx2_hw;
5408 cp->stop_hw = cnic_stop_bnx2_hw;
5409 cp->setup_pgtbl = cnic_setup_page_tbl;
5410 cp->alloc_resc = cnic_alloc_bnx2_resc;
5411 cp->free_resc = cnic_free_resc;
5412 cp->start_cm = cnic_cm_init_bnx2_hw;
5413 cp->stop_cm = cnic_cm_stop_bnx2_hw;
5414 cp->enable_int = cnic_enable_bnx2_int;
5415 cp->disable_int_sync = cnic_disable_bnx2_int_sync;
5416 cp->close_conn = cnic_close_bnx2_conn;
Michael Chana4636962009-06-08 18:14:43 -07005417 return cdev;
5418
5419cnic_err:
5420 dev_put(dev);
5421 return NULL;
5422}
5423
Michael Chan71034ba2009-10-10 13:46:59 +00005424static struct cnic_dev *init_bnx2x_cnic(struct net_device *dev)
5425{
5426 struct pci_dev *pdev;
5427 struct cnic_dev *cdev;
5428 struct cnic_local *cp;
5429 struct cnic_eth_dev *ethdev = NULL;
5430 struct cnic_eth_dev *(*probe)(struct net_device *) = NULL;
5431
5432 probe = symbol_get(bnx2x_cnic_probe);
5433 if (probe) {
5434 ethdev = (*probe)(dev);
5435 symbol_put(bnx2x_cnic_probe);
5436 }
5437 if (!ethdev)
5438 return NULL;
5439
5440 pdev = ethdev->pdev;
5441 if (!pdev)
5442 return NULL;
5443
5444 dev_hold(dev);
5445 cdev = cnic_alloc_dev(dev, pdev);
5446 if (cdev == NULL) {
5447 dev_put(dev);
5448 return NULL;
5449 }
5450
5451 set_bit(CNIC_F_BNX2X_CLASS, &cdev->flags);
5452 cdev->submit_kwqes = cnic_submit_bnx2x_kwqes;
5453
5454 cp = cdev->cnic_priv;
5455 cp->ethdev = ethdev;
5456 cdev->pcidev = pdev;
Michael Chanee87a822010-10-13 14:06:51 +00005457 cp->chip_id = ethdev->chip_id;
Michael Chan71034ba2009-10-10 13:46:59 +00005458
Barak Witkowski1d187b32011-12-05 22:41:50 +00005459 cdev->stats_addr = ethdev->addr_drv_info_to_mcp;
5460
Vladislav Zolotarov2ba45142011-01-31 14:39:17 +00005461 if (!(ethdev->drv_state & CNIC_DRV_STATE_NO_ISCSI))
5462 cdev->max_iscsi_conn = ethdev->max_iscsi_conn;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03005463 if (BNX2X_CHIP_IS_E2_PLUS(cp->chip_id) &&
Vladislav Zolotarov2ba45142011-01-31 14:39:17 +00005464 !(ethdev->drv_state & CNIC_DRV_STATE_NO_FCOE))
5465 cdev->max_fcoe_conn = ethdev->max_fcoe_conn;
5466
Michael Chandc219a22011-08-26 09:45:39 +00005467 if (cdev->max_fcoe_conn > BNX2X_FCOE_NUM_CONNECTIONS)
5468 cdev->max_fcoe_conn = BNX2X_FCOE_NUM_CONNECTIONS;
5469
Vladislav Zolotarov2ba45142011-01-31 14:39:17 +00005470 memcpy(cdev->mac_addr, ethdev->iscsi_mac, 6);
5471
Michael Chan71034ba2009-10-10 13:46:59 +00005472 cp->cnic_ops = &cnic_bnx2x_ops;
5473 cp->start_hw = cnic_start_bnx2x_hw;
5474 cp->stop_hw = cnic_stop_bnx2x_hw;
5475 cp->setup_pgtbl = cnic_setup_page_tbl_le;
5476 cp->alloc_resc = cnic_alloc_bnx2x_resc;
5477 cp->free_resc = cnic_free_resc;
5478 cp->start_cm = cnic_cm_init_bnx2x_hw;
5479 cp->stop_cm = cnic_cm_stop_bnx2x_hw;
5480 cp->enable_int = cnic_enable_bnx2x_int;
5481 cp->disable_int_sync = cnic_disable_bnx2x_int_sync;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03005482 if (BNX2X_CHIP_IS_E2_PLUS(cp->chip_id))
Michael Chanee87a822010-10-13 14:06:51 +00005483 cp->ack_int = cnic_ack_bnx2x_e2_msix;
5484 else
5485 cp->ack_int = cnic_ack_bnx2x_msix;
Michael Chan71034ba2009-10-10 13:46:59 +00005486 cp->close_conn = cnic_close_bnx2x_conn;
Michael Chan71034ba2009-10-10 13:46:59 +00005487 return cdev;
5488}
5489
Michael Chana4636962009-06-08 18:14:43 -07005490static struct cnic_dev *is_cnic_dev(struct net_device *dev)
5491{
5492 struct ethtool_drvinfo drvinfo;
5493 struct cnic_dev *cdev = NULL;
5494
5495 if (dev->ethtool_ops && dev->ethtool_ops->get_drvinfo) {
5496 memset(&drvinfo, 0, sizeof(drvinfo));
5497 dev->ethtool_ops->get_drvinfo(dev, &drvinfo);
5498
5499 if (!strcmp(drvinfo.driver, "bnx2"))
5500 cdev = init_bnx2_cnic(dev);
Michael Chan71034ba2009-10-10 13:46:59 +00005501 if (!strcmp(drvinfo.driver, "bnx2x"))
5502 cdev = init_bnx2x_cnic(dev);
Michael Chana4636962009-06-08 18:14:43 -07005503 if (cdev) {
5504 write_lock(&cnic_dev_lock);
5505 list_add(&cdev->list, &cnic_dev_list);
5506 write_unlock(&cnic_dev_lock);
5507 }
5508 }
5509 return cdev;
5510}
5511
Michael Chan415199f2011-07-20 14:55:24 +00005512static void cnic_rcv_netevent(struct cnic_local *cp, unsigned long event,
5513 u16 vlan_id)
5514{
5515 int if_type;
5516
5517 rcu_read_lock();
5518 for (if_type = 0; if_type < MAX_CNIC_ULP_TYPE; if_type++) {
5519 struct cnic_ulp_ops *ulp_ops;
5520 void *ctx;
5521
5522 ulp_ops = rcu_dereference(cp->ulp_ops[if_type]);
5523 if (!ulp_ops || !ulp_ops->indicate_netevent)
5524 continue;
5525
5526 ctx = cp->ulp_handle[if_type];
5527
5528 ulp_ops->indicate_netevent(ctx, event, vlan_id);
5529 }
5530 rcu_read_unlock();
5531}
5532
Michael Chana4636962009-06-08 18:14:43 -07005533/**
5534 * netdev event handler
5535 */
5536static int cnic_netdev_event(struct notifier_block *this, unsigned long event,
5537 void *ptr)
5538{
5539 struct net_device *netdev = ptr;
5540 struct cnic_dev *dev;
Michael Chana4636962009-06-08 18:14:43 -07005541 int new_dev = 0;
5542
5543 dev = cnic_from_netdev(netdev);
5544
Michael Chandb1d3502011-06-08 19:29:35 +00005545 if (!dev && (event == NETDEV_REGISTER || netif_running(netdev))) {
Michael Chana4636962009-06-08 18:14:43 -07005546 /* Check for the hot-plug device */
5547 dev = is_cnic_dev(netdev);
5548 if (dev) {
5549 new_dev = 1;
5550 cnic_hold(dev);
5551 }
5552 }
5553 if (dev) {
5554 struct cnic_local *cp = dev->cnic_priv;
5555
5556 if (new_dev)
5557 cnic_ulp_init(dev);
5558 else if (event == NETDEV_UNREGISTER)
5559 cnic_ulp_exit(dev);
Michael Chan6053bbf2009-10-02 11:03:28 -07005560
Michael Chandb1d3502011-06-08 19:29:35 +00005561 if (event == NETDEV_UP || (new_dev && netif_running(netdev))) {
Michael Chana3059b12009-08-14 15:49:44 +00005562 if (cnic_register_netdev(dev) != 0) {
5563 cnic_put(dev);
5564 goto done;
5565 }
Michael Chana4636962009-06-08 18:14:43 -07005566 if (!cnic_start_hw(dev))
5567 cnic_ulp_start(dev);
Michael Chana4636962009-06-08 18:14:43 -07005568 }
5569
Michael Chan415199f2011-07-20 14:55:24 +00005570 cnic_rcv_netevent(cp, event, 0);
Michael Chana4636962009-06-08 18:14:43 -07005571
5572 if (event == NETDEV_GOING_DOWN) {
Michael Chana4636962009-06-08 18:14:43 -07005573 cnic_ulp_stop(dev);
5574 cnic_stop_hw(dev);
Michael Chana3059b12009-08-14 15:49:44 +00005575 cnic_unregister_netdev(dev);
Michael Chana4636962009-06-08 18:14:43 -07005576 } else if (event == NETDEV_UNREGISTER) {
5577 write_lock(&cnic_dev_lock);
5578 list_del_init(&dev->list);
5579 write_unlock(&cnic_dev_lock);
5580
5581 cnic_put(dev);
5582 cnic_free_dev(dev);
5583 goto done;
5584 }
5585 cnic_put(dev);
Michael Chan415199f2011-07-20 14:55:24 +00005586 } else {
5587 struct net_device *realdev;
5588 u16 vid;
5589
5590 vid = cnic_get_vlan(netdev, &realdev);
5591 if (realdev) {
5592 dev = cnic_from_netdev(realdev);
5593 if (dev) {
5594 vid |= VLAN_TAG_PRESENT;
5595 cnic_rcv_netevent(dev->cnic_priv, event, vid);
5596 cnic_put(dev);
5597 }
5598 }
Michael Chana4636962009-06-08 18:14:43 -07005599 }
5600done:
5601 return NOTIFY_DONE;
5602}
5603
5604static struct notifier_block cnic_netdev_notifier = {
5605 .notifier_call = cnic_netdev_event
5606};
5607
5608static void cnic_release(void)
5609{
5610 struct cnic_dev *dev;
Michael Chana3ceeeb2010-10-13 14:06:50 +00005611 struct cnic_uio_dev *udev;
Michael Chana4636962009-06-08 18:14:43 -07005612
5613 while (!list_empty(&cnic_dev_list)) {
5614 dev = list_entry(cnic_dev_list.next, struct cnic_dev, list);
5615 if (test_bit(CNIC_F_CNIC_UP, &dev->flags)) {
5616 cnic_ulp_stop(dev);
5617 cnic_stop_hw(dev);
5618 }
5619
5620 cnic_ulp_exit(dev);
Michael Chana3059b12009-08-14 15:49:44 +00005621 cnic_unregister_netdev(dev);
Michael Chana4636962009-06-08 18:14:43 -07005622 list_del_init(&dev->list);
5623 cnic_free_dev(dev);
5624 }
Michael Chana3ceeeb2010-10-13 14:06:50 +00005625 while (!list_empty(&cnic_udev_list)) {
5626 udev = list_entry(cnic_udev_list.next, struct cnic_uio_dev,
5627 list);
5628 cnic_free_uio(udev);
5629 }
Michael Chana4636962009-06-08 18:14:43 -07005630}
5631
5632static int __init cnic_init(void)
5633{
5634 int rc = 0;
5635
Joe Perchesddf79b22010-02-17 15:01:54 +00005636 pr_info("%s", version);
Michael Chana4636962009-06-08 18:14:43 -07005637
5638 rc = register_netdevice_notifier(&cnic_netdev_notifier);
5639 if (rc) {
5640 cnic_release();
5641 return rc;
5642 }
5643
Michael Chanfdf24082010-10-13 14:06:47 +00005644 cnic_wq = create_singlethread_workqueue("cnic_wq");
5645 if (!cnic_wq) {
5646 cnic_release();
5647 unregister_netdevice_notifier(&cnic_netdev_notifier);
5648 return -ENOMEM;
5649 }
5650
Michael Chana4636962009-06-08 18:14:43 -07005651 return 0;
5652}
5653
5654static void __exit cnic_exit(void)
5655{
5656 unregister_netdevice_notifier(&cnic_netdev_notifier);
5657 cnic_release();
Michael Chanfdf24082010-10-13 14:06:47 +00005658 destroy_workqueue(cnic_wq);
Michael Chana4636962009-06-08 18:14:43 -07005659}
5660
5661module_init(cnic_init);
5662module_exit(cnic_exit);