blob: 11a92afdf982ef62be6a6097a88f768e9b3d599e [file] [log] [blame]
Michael Chana4636962009-06-08 18:14:43 -07001/* cnic.c: Broadcom CNIC core network driver.
2 *
Michael Chan1d9cfc42010-02-24 14:42:09 +00003 * Copyright (c) 2006-2010 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 Chana4636962009-06-08 18:14:43 -070031#if defined(CONFIG_VLAN_8021Q) || defined(CONFIG_VLAN_8021Q_MODULE)
32#define BCM_VLAN 1
33#endif
34#include <net/ip.h>
35#include <net/tcp.h>
36#include <net/route.h>
37#include <net/ipv6.h>
38#include <net/ip6_route.h>
David S. Millerc05e85a2009-10-12 23:18:35 -070039#include <net/ip6_checksum.h>
Michael Chana4636962009-06-08 18:14:43 -070040#include <scsi/iscsi_if.h>
41
42#include "cnic_if.h"
43#include "bnx2.h"
Dmitry Kravkov5d1e8592010-07-27 12:31:10 +000044#include "bnx2x/bnx2x_reg.h"
45#include "bnx2x/bnx2x_fw_defs.h"
46#include "bnx2x/bnx2x_hsi.h"
Michael Chane2513062009-10-10 13:46:58 +000047#include "../scsi/bnx2i/57xx_iscsi_constants.h"
48#include "../scsi/bnx2i/57xx_iscsi_hsi.h"
Michael Chana4636962009-06-08 18:14:43 -070049#include "cnic.h"
50#include "cnic_defs.h"
51
52#define DRV_MODULE_NAME "cnic"
Michael Chana4636962009-06-08 18:14:43 -070053
54static char version[] __devinitdata =
55 "Broadcom NetXtreme II CNIC Driver " DRV_MODULE_NAME " v" CNIC_MODULE_VERSION " (" CNIC_MODULE_RELDATE ")\n";
56
57MODULE_AUTHOR("Michael Chan <mchan@broadcom.com> and John(Zongxi) "
58 "Chen (zongxi@broadcom.com");
59MODULE_DESCRIPTION("Broadcom NetXtreme II CNIC Driver");
60MODULE_LICENSE("GPL");
61MODULE_VERSION(CNIC_MODULE_VERSION);
62
Michael Chan8adc92402010-12-23 07:42:57 +000063/* cnic_dev_list modifications are protected by both rtnl and cnic_dev_lock */
Michael Chana4636962009-06-08 18:14:43 -070064static LIST_HEAD(cnic_dev_list);
Michael Chana3ceeeb2010-10-13 14:06:50 +000065static LIST_HEAD(cnic_udev_list);
Michael Chana4636962009-06-08 18:14:43 -070066static DEFINE_RWLOCK(cnic_dev_lock);
67static DEFINE_MUTEX(cnic_lock);
68
Eric Dumazet13707f92011-01-26 19:28:23 +000069static struct cnic_ulp_ops __rcu *cnic_ulp_tbl[MAX_CNIC_ULP_TYPE];
70
71/* helper function, assuming cnic_lock is held */
72static inline struct cnic_ulp_ops *cnic_ulp_tbl_prot(int type)
73{
74 return rcu_dereference_protected(cnic_ulp_tbl[type],
75 lockdep_is_held(&cnic_lock));
76}
Michael Chana4636962009-06-08 18:14:43 -070077
78static int cnic_service_bnx2(void *, void *);
Michael Chan71034ba2009-10-10 13:46:59 +000079static int cnic_service_bnx2x(void *, void *);
Michael Chana4636962009-06-08 18:14:43 -070080static int cnic_ctl(void *, struct cnic_ctl_info *);
81
82static struct cnic_ops cnic_bnx2_ops = {
83 .cnic_owner = THIS_MODULE,
84 .cnic_handler = cnic_service_bnx2,
85 .cnic_ctl = cnic_ctl,
86};
87
Michael Chan71034ba2009-10-10 13:46:59 +000088static struct cnic_ops cnic_bnx2x_ops = {
89 .cnic_owner = THIS_MODULE,
90 .cnic_handler = cnic_service_bnx2x,
91 .cnic_ctl = cnic_ctl,
92};
93
Michael Chanfdf24082010-10-13 14:06:47 +000094static struct workqueue_struct *cnic_wq;
95
Michael Chan86b53602009-10-10 13:46:57 +000096static void cnic_shutdown_rings(struct cnic_dev *);
97static void cnic_init_rings(struct cnic_dev *);
Michael Chana4636962009-06-08 18:14:43 -070098static int cnic_cm_set_pg(struct cnic_sock *);
99
100static int cnic_uio_open(struct uio_info *uinfo, struct inode *inode)
101{
Michael Chancd801532010-10-13 14:06:49 +0000102 struct cnic_uio_dev *udev = uinfo->priv;
103 struct cnic_dev *dev;
Michael Chana4636962009-06-08 18:14:43 -0700104
105 if (!capable(CAP_NET_ADMIN))
106 return -EPERM;
107
Michael Chancd801532010-10-13 14:06:49 +0000108 if (udev->uio_dev != -1)
Michael Chana4636962009-06-08 18:14:43 -0700109 return -EBUSY;
110
Michael Chan86b53602009-10-10 13:46:57 +0000111 rtnl_lock();
Michael Chancd801532010-10-13 14:06:49 +0000112 dev = udev->dev;
113
Michael Chana3ceeeb2010-10-13 14:06:50 +0000114 if (!dev || !test_bit(CNIC_F_CNIC_UP, &dev->flags)) {
Michael Chan86b53602009-10-10 13:46:57 +0000115 rtnl_unlock();
116 return -ENODEV;
117 }
118
Michael Chancd801532010-10-13 14:06:49 +0000119 udev->uio_dev = iminor(inode);
Michael Chana4636962009-06-08 18:14:43 -0700120
Michael Chana3ceeeb2010-10-13 14:06:50 +0000121 cnic_shutdown_rings(dev);
Michael Chan86b53602009-10-10 13:46:57 +0000122 cnic_init_rings(dev);
123 rtnl_unlock();
Michael Chana4636962009-06-08 18:14:43 -0700124
125 return 0;
126}
127
128static int cnic_uio_close(struct uio_info *uinfo, struct inode *inode)
129{
Michael Chancd801532010-10-13 14:06:49 +0000130 struct cnic_uio_dev *udev = uinfo->priv;
Michael Chan6ef57a02009-09-21 15:39:37 +0000131
Michael Chancd801532010-10-13 14:06:49 +0000132 udev->uio_dev = -1;
Michael Chana4636962009-06-08 18:14:43 -0700133 return 0;
134}
135
136static inline void cnic_hold(struct cnic_dev *dev)
137{
138 atomic_inc(&dev->ref_count);
139}
140
141static inline void cnic_put(struct cnic_dev *dev)
142{
143 atomic_dec(&dev->ref_count);
144}
145
146static inline void csk_hold(struct cnic_sock *csk)
147{
148 atomic_inc(&csk->ref_count);
149}
150
151static inline void csk_put(struct cnic_sock *csk)
152{
153 atomic_dec(&csk->ref_count);
154}
155
156static struct cnic_dev *cnic_from_netdev(struct net_device *netdev)
157{
158 struct cnic_dev *cdev;
159
160 read_lock(&cnic_dev_lock);
161 list_for_each_entry(cdev, &cnic_dev_list, list) {
162 if (netdev == cdev->netdev) {
163 cnic_hold(cdev);
164 read_unlock(&cnic_dev_lock);
165 return cdev;
166 }
167 }
168 read_unlock(&cnic_dev_lock);
169 return NULL;
170}
171
Michael Chan7fc1ece2009-08-14 15:49:47 +0000172static inline void ulp_get(struct cnic_ulp_ops *ulp_ops)
173{
174 atomic_inc(&ulp_ops->ref_count);
175}
176
177static inline void ulp_put(struct cnic_ulp_ops *ulp_ops)
178{
179 atomic_dec(&ulp_ops->ref_count);
180}
181
Michael Chana4636962009-06-08 18:14:43 -0700182static void cnic_ctx_wr(struct cnic_dev *dev, u32 cid_addr, u32 off, u32 val)
183{
184 struct cnic_local *cp = dev->cnic_priv;
185 struct cnic_eth_dev *ethdev = cp->ethdev;
186 struct drv_ctl_info info;
187 struct drv_ctl_io *io = &info.data.io;
188
189 info.cmd = DRV_CTL_CTX_WR_CMD;
190 io->cid_addr = cid_addr;
191 io->offset = off;
192 io->data = val;
193 ethdev->drv_ctl(dev->netdev, &info);
194}
195
Michael Chan71034ba2009-10-10 13:46:59 +0000196static void cnic_ctx_tbl_wr(struct cnic_dev *dev, u32 off, dma_addr_t addr)
197{
198 struct cnic_local *cp = dev->cnic_priv;
199 struct cnic_eth_dev *ethdev = cp->ethdev;
200 struct drv_ctl_info info;
201 struct drv_ctl_io *io = &info.data.io;
202
203 info.cmd = DRV_CTL_CTXTBL_WR_CMD;
204 io->offset = off;
205 io->dma_addr = addr;
206 ethdev->drv_ctl(dev->netdev, &info);
207}
208
209static void cnic_ring_ctl(struct cnic_dev *dev, u32 cid, u32 cl_id, int start)
210{
211 struct cnic_local *cp = dev->cnic_priv;
212 struct cnic_eth_dev *ethdev = cp->ethdev;
213 struct drv_ctl_info info;
214 struct drv_ctl_l2_ring *ring = &info.data.ring;
215
216 if (start)
217 info.cmd = DRV_CTL_START_L2_CMD;
218 else
219 info.cmd = DRV_CTL_STOP_L2_CMD;
220
221 ring->cid = cid;
222 ring->client_id = cl_id;
223 ethdev->drv_ctl(dev->netdev, &info);
224}
225
Michael Chana4636962009-06-08 18:14:43 -0700226static void cnic_reg_wr_ind(struct cnic_dev *dev, u32 off, u32 val)
227{
228 struct cnic_local *cp = dev->cnic_priv;
229 struct cnic_eth_dev *ethdev = cp->ethdev;
230 struct drv_ctl_info info;
231 struct drv_ctl_io *io = &info.data.io;
232
233 info.cmd = DRV_CTL_IO_WR_CMD;
234 io->offset = off;
235 io->data = val;
236 ethdev->drv_ctl(dev->netdev, &info);
237}
238
239static u32 cnic_reg_rd_ind(struct cnic_dev *dev, u32 off)
240{
241 struct cnic_local *cp = dev->cnic_priv;
242 struct cnic_eth_dev *ethdev = cp->ethdev;
243 struct drv_ctl_info info;
244 struct drv_ctl_io *io = &info.data.io;
245
246 info.cmd = DRV_CTL_IO_RD_CMD;
247 io->offset = off;
248 ethdev->drv_ctl(dev->netdev, &info);
249 return io->data;
250}
251
252static int cnic_in_use(struct cnic_sock *csk)
253{
254 return test_bit(SK_F_INUSE, &csk->flags);
255}
256
Dmitry Kravkovc2bff632010-10-06 03:33:18 +0000257static void cnic_spq_completion(struct cnic_dev *dev, int cmd, u32 count)
Michael Chana4636962009-06-08 18:14:43 -0700258{
259 struct cnic_local *cp = dev->cnic_priv;
260 struct cnic_eth_dev *ethdev = cp->ethdev;
261 struct drv_ctl_info info;
262
Dmitry Kravkovc2bff632010-10-06 03:33:18 +0000263 info.cmd = cmd;
264 info.data.credit.credit_count = count;
Michael Chana4636962009-06-08 18:14:43 -0700265 ethdev->drv_ctl(dev->netdev, &info);
266}
267
Michael Chan71034ba2009-10-10 13:46:59 +0000268static int cnic_get_l5_cid(struct cnic_local *cp, u32 cid, u32 *l5_cid)
269{
270 u32 i;
271
Michael Chan520efdf2010-06-24 14:58:37 +0000272 for (i = 0; i < cp->max_cid_space; i++) {
Michael Chan71034ba2009-10-10 13:46:59 +0000273 if (cp->ctx_tbl[i].cid == cid) {
274 *l5_cid = i;
275 return 0;
276 }
277 }
278 return -EINVAL;
279}
280
Michael Chana4636962009-06-08 18:14:43 -0700281static int cnic_send_nlmsg(struct cnic_local *cp, u32 type,
282 struct cnic_sock *csk)
283{
284 struct iscsi_path path_req;
285 char *buf = NULL;
286 u16 len = 0;
287 u32 msg_type = ISCSI_KEVENT_IF_DOWN;
288 struct cnic_ulp_ops *ulp_ops;
Michael Chancd801532010-10-13 14:06:49 +0000289 struct cnic_uio_dev *udev = cp->udev;
Michael Chan939b82e2010-12-23 07:42:58 +0000290 int rc = 0, retry = 0;
Michael Chana4636962009-06-08 18:14:43 -0700291
Michael Chancd801532010-10-13 14:06:49 +0000292 if (!udev || udev->uio_dev == -1)
Michael Chana4636962009-06-08 18:14:43 -0700293 return -ENODEV;
294
295 if (csk) {
296 len = sizeof(path_req);
297 buf = (char *) &path_req;
298 memset(&path_req, 0, len);
299
300 msg_type = ISCSI_KEVENT_PATH_REQ;
301 path_req.handle = (u64) csk->l5_cid;
302 if (test_bit(SK_F_IPV6, &csk->flags)) {
303 memcpy(&path_req.dst.v6_addr, &csk->dst_ip[0],
304 sizeof(struct in6_addr));
305 path_req.ip_addr_len = 16;
306 } else {
307 memcpy(&path_req.dst.v4_addr, &csk->dst_ip[0],
308 sizeof(struct in_addr));
309 path_req.ip_addr_len = 4;
310 }
311 path_req.vlan_id = csk->vlan_id;
312 path_req.pmtu = csk->mtu;
313 }
314
Michael Chan939b82e2010-12-23 07:42:58 +0000315 while (retry < 3) {
316 rc = 0;
317 rcu_read_lock();
318 ulp_ops = rcu_dereference(cnic_ulp_tbl[CNIC_ULP_ISCSI]);
319 if (ulp_ops)
320 rc = ulp_ops->iscsi_nl_send_msg(
321 cp->ulp_handle[CNIC_ULP_ISCSI],
322 msg_type, buf, len);
323 rcu_read_unlock();
324 if (rc == 0 || msg_type != ISCSI_KEVENT_PATH_REQ)
325 break;
326
327 msleep(100);
328 retry++;
329 }
Michael Chana4636962009-06-08 18:14:43 -0700330 return 0;
331}
332
Eddie Wai42ecbb82010-12-23 07:43:02 +0000333static void cnic_cm_upcall(struct cnic_local *, struct cnic_sock *, u8);
334
Michael Chana4636962009-06-08 18:14:43 -0700335static int cnic_iscsi_nl_msg_recv(struct cnic_dev *dev, u32 msg_type,
336 char *buf, u16 len)
337{
338 int rc = -EINVAL;
339
340 switch (msg_type) {
341 case ISCSI_UEVENT_PATH_UPDATE: {
342 struct cnic_local *cp;
343 u32 l5_cid;
344 struct cnic_sock *csk;
345 struct iscsi_path *path_resp;
346
347 if (len < sizeof(*path_resp))
348 break;
349
350 path_resp = (struct iscsi_path *) buf;
351 cp = dev->cnic_priv;
352 l5_cid = (u32) path_resp->handle;
353 if (l5_cid >= MAX_CM_SK_TBL_SZ)
354 break;
355
Michael Chand02a5e62010-02-24 14:42:06 +0000356 rcu_read_lock();
357 if (!rcu_dereference(cp->ulp_ops[CNIC_ULP_L4])) {
358 rc = -ENODEV;
359 rcu_read_unlock();
360 break;
361 }
Michael Chana4636962009-06-08 18:14:43 -0700362 csk = &cp->csk_tbl[l5_cid];
363 csk_hold(csk);
Eddie Wai42ecbb82010-12-23 07:43:02 +0000364 if (cnic_in_use(csk) &&
365 test_bit(SK_F_CONNECT_START, &csk->flags)) {
366
Michael Chana4636962009-06-08 18:14:43 -0700367 memcpy(csk->ha, path_resp->mac_addr, 6);
368 if (test_bit(SK_F_IPV6, &csk->flags))
369 memcpy(&csk->src_ip[0], &path_resp->src.v6_addr,
370 sizeof(struct in6_addr));
371 else
372 memcpy(&csk->src_ip[0], &path_resp->src.v4_addr,
373 sizeof(struct in_addr));
Eddie Wai42ecbb82010-12-23 07:43:02 +0000374
375 if (is_valid_ether_addr(csk->ha)) {
Michael Chana4636962009-06-08 18:14:43 -0700376 cnic_cm_set_pg(csk);
Eddie Wai42ecbb82010-12-23 07:43:02 +0000377 } else if (!test_bit(SK_F_OFFLD_SCHED, &csk->flags) &&
378 !test_bit(SK_F_OFFLD_COMPLETE, &csk->flags)) {
379
380 cnic_cm_upcall(cp, csk,
381 L4_KCQE_OPCODE_VALUE_CONNECT_COMPLETE);
382 clear_bit(SK_F_CONNECT_START, &csk->flags);
383 }
Michael Chana4636962009-06-08 18:14:43 -0700384 }
385 csk_put(csk);
Michael Chand02a5e62010-02-24 14:42:06 +0000386 rcu_read_unlock();
Michael Chana4636962009-06-08 18:14:43 -0700387 rc = 0;
388 }
389 }
390
391 return rc;
392}
393
394static int cnic_offld_prep(struct cnic_sock *csk)
395{
396 if (test_and_set_bit(SK_F_OFFLD_SCHED, &csk->flags))
397 return 0;
398
399 if (!test_bit(SK_F_CONNECT_START, &csk->flags)) {
400 clear_bit(SK_F_OFFLD_SCHED, &csk->flags);
401 return 0;
402 }
403
404 return 1;
405}
406
407static int cnic_close_prep(struct cnic_sock *csk)
408{
409 clear_bit(SK_F_CONNECT_START, &csk->flags);
410 smp_mb__after_clear_bit();
411
412 if (test_and_clear_bit(SK_F_OFFLD_COMPLETE, &csk->flags)) {
413 while (test_and_set_bit(SK_F_OFFLD_SCHED, &csk->flags))
414 msleep(1);
415
416 return 1;
417 }
418 return 0;
419}
420
421static int cnic_abort_prep(struct cnic_sock *csk)
422{
423 clear_bit(SK_F_CONNECT_START, &csk->flags);
424 smp_mb__after_clear_bit();
425
426 while (test_and_set_bit(SK_F_OFFLD_SCHED, &csk->flags))
427 msleep(1);
428
429 if (test_and_clear_bit(SK_F_OFFLD_COMPLETE, &csk->flags)) {
430 csk->state = L4_KCQE_OPCODE_VALUE_RESET_COMP;
431 return 1;
432 }
433
434 return 0;
435}
436
437int cnic_register_driver(int ulp_type, struct cnic_ulp_ops *ulp_ops)
438{
439 struct cnic_dev *dev;
440
roel kluin0d37f362009-11-02 06:53:44 +0000441 if (ulp_type < 0 || ulp_type >= MAX_CNIC_ULP_TYPE) {
Joe Perchesddf79b22010-02-17 15:01:54 +0000442 pr_err("%s: Bad type %d\n", __func__, ulp_type);
Michael Chana4636962009-06-08 18:14:43 -0700443 return -EINVAL;
444 }
445 mutex_lock(&cnic_lock);
Eric Dumazet13707f92011-01-26 19:28:23 +0000446 if (cnic_ulp_tbl_prot(ulp_type)) {
Joe Perchesddf79b22010-02-17 15:01:54 +0000447 pr_err("%s: Type %d has already been registered\n",
448 __func__, ulp_type);
Michael Chana4636962009-06-08 18:14:43 -0700449 mutex_unlock(&cnic_lock);
450 return -EBUSY;
451 }
452
453 read_lock(&cnic_dev_lock);
454 list_for_each_entry(dev, &cnic_dev_list, list) {
455 struct cnic_local *cp = dev->cnic_priv;
456
457 clear_bit(ULP_F_INIT, &cp->ulp_flags[ulp_type]);
458 }
459 read_unlock(&cnic_dev_lock);
460
Michael Chan7fc1ece2009-08-14 15:49:47 +0000461 atomic_set(&ulp_ops->ref_count, 0);
Michael Chana4636962009-06-08 18:14:43 -0700462 rcu_assign_pointer(cnic_ulp_tbl[ulp_type], ulp_ops);
463 mutex_unlock(&cnic_lock);
464
465 /* Prevent race conditions with netdev_event */
466 rtnl_lock();
Michael Chana4636962009-06-08 18:14:43 -0700467 list_for_each_entry(dev, &cnic_dev_list, list) {
468 struct cnic_local *cp = dev->cnic_priv;
469
470 if (!test_and_set_bit(ULP_F_INIT, &cp->ulp_flags[ulp_type]))
471 ulp_ops->cnic_init(dev);
472 }
Michael Chana4636962009-06-08 18:14:43 -0700473 rtnl_unlock();
474
475 return 0;
476}
477
478int cnic_unregister_driver(int ulp_type)
479{
480 struct cnic_dev *dev;
Michael Chan7fc1ece2009-08-14 15:49:47 +0000481 struct cnic_ulp_ops *ulp_ops;
482 int i = 0;
Michael Chana4636962009-06-08 18:14:43 -0700483
roel kluin0d37f362009-11-02 06:53:44 +0000484 if (ulp_type < 0 || ulp_type >= MAX_CNIC_ULP_TYPE) {
Joe Perchesddf79b22010-02-17 15:01:54 +0000485 pr_err("%s: Bad type %d\n", __func__, ulp_type);
Michael Chana4636962009-06-08 18:14:43 -0700486 return -EINVAL;
487 }
488 mutex_lock(&cnic_lock);
Eric Dumazet13707f92011-01-26 19:28:23 +0000489 ulp_ops = cnic_ulp_tbl_prot(ulp_type);
Michael Chan7fc1ece2009-08-14 15:49:47 +0000490 if (!ulp_ops) {
Joe Perchesddf79b22010-02-17 15:01:54 +0000491 pr_err("%s: Type %d has not been registered\n",
492 __func__, ulp_type);
Michael Chana4636962009-06-08 18:14:43 -0700493 goto out_unlock;
494 }
495 read_lock(&cnic_dev_lock);
496 list_for_each_entry(dev, &cnic_dev_list, list) {
497 struct cnic_local *cp = dev->cnic_priv;
498
499 if (rcu_dereference(cp->ulp_ops[ulp_type])) {
Joe Perchesddf79b22010-02-17 15:01:54 +0000500 pr_err("%s: Type %d still has devices registered\n",
501 __func__, ulp_type);
Michael Chana4636962009-06-08 18:14:43 -0700502 read_unlock(&cnic_dev_lock);
503 goto out_unlock;
504 }
505 }
506 read_unlock(&cnic_dev_lock);
507
508 rcu_assign_pointer(cnic_ulp_tbl[ulp_type], NULL);
509
510 mutex_unlock(&cnic_lock);
511 synchronize_rcu();
Michael Chan7fc1ece2009-08-14 15:49:47 +0000512 while ((atomic_read(&ulp_ops->ref_count) != 0) && (i < 20)) {
513 msleep(100);
514 i++;
515 }
516
517 if (atomic_read(&ulp_ops->ref_count) != 0)
Joe Perchesddf79b22010-02-17 15:01:54 +0000518 netdev_warn(dev->netdev, "Failed waiting for ref count to go to zero\n");
Michael Chana4636962009-06-08 18:14:43 -0700519 return 0;
520
521out_unlock:
522 mutex_unlock(&cnic_lock);
523 return -EINVAL;
524}
525
526static int cnic_start_hw(struct cnic_dev *);
527static void cnic_stop_hw(struct cnic_dev *);
528
529static int cnic_register_device(struct cnic_dev *dev, int ulp_type,
530 void *ulp_ctx)
531{
532 struct cnic_local *cp = dev->cnic_priv;
533 struct cnic_ulp_ops *ulp_ops;
534
roel kluin0d37f362009-11-02 06:53:44 +0000535 if (ulp_type < 0 || ulp_type >= MAX_CNIC_ULP_TYPE) {
Joe Perchesddf79b22010-02-17 15:01:54 +0000536 pr_err("%s: Bad type %d\n", __func__, ulp_type);
Michael Chana4636962009-06-08 18:14:43 -0700537 return -EINVAL;
538 }
539 mutex_lock(&cnic_lock);
Eric Dumazet13707f92011-01-26 19:28:23 +0000540 if (cnic_ulp_tbl_prot(ulp_type) == NULL) {
Joe Perchesddf79b22010-02-17 15:01:54 +0000541 pr_err("%s: Driver with type %d has not been registered\n",
542 __func__, ulp_type);
Michael Chana4636962009-06-08 18:14:43 -0700543 mutex_unlock(&cnic_lock);
544 return -EAGAIN;
545 }
546 if (rcu_dereference(cp->ulp_ops[ulp_type])) {
Joe Perchesddf79b22010-02-17 15:01:54 +0000547 pr_err("%s: Type %d has already been registered to this device\n",
548 __func__, ulp_type);
Michael Chana4636962009-06-08 18:14:43 -0700549 mutex_unlock(&cnic_lock);
550 return -EBUSY;
551 }
552
553 clear_bit(ULP_F_START, &cp->ulp_flags[ulp_type]);
554 cp->ulp_handle[ulp_type] = ulp_ctx;
Eric Dumazet13707f92011-01-26 19:28:23 +0000555 ulp_ops = cnic_ulp_tbl_prot(ulp_type);
Michael Chana4636962009-06-08 18:14:43 -0700556 rcu_assign_pointer(cp->ulp_ops[ulp_type], ulp_ops);
557 cnic_hold(dev);
558
559 if (test_bit(CNIC_F_CNIC_UP, &dev->flags))
560 if (!test_and_set_bit(ULP_F_START, &cp->ulp_flags[ulp_type]))
561 ulp_ops->cnic_start(cp->ulp_handle[ulp_type]);
562
563 mutex_unlock(&cnic_lock);
564
565 return 0;
566
567}
568EXPORT_SYMBOL(cnic_register_driver);
569
570static int cnic_unregister_device(struct cnic_dev *dev, int ulp_type)
571{
572 struct cnic_local *cp = dev->cnic_priv;
Michael Chan681dbd72009-08-14 15:49:46 +0000573 int i = 0;
Michael Chana4636962009-06-08 18:14:43 -0700574
roel kluin0d37f362009-11-02 06:53:44 +0000575 if (ulp_type < 0 || ulp_type >= MAX_CNIC_ULP_TYPE) {
Joe Perchesddf79b22010-02-17 15:01:54 +0000576 pr_err("%s: Bad type %d\n", __func__, ulp_type);
Michael Chana4636962009-06-08 18:14:43 -0700577 return -EINVAL;
578 }
579 mutex_lock(&cnic_lock);
580 if (rcu_dereference(cp->ulp_ops[ulp_type])) {
581 rcu_assign_pointer(cp->ulp_ops[ulp_type], NULL);
582 cnic_put(dev);
583 } else {
Joe Perchesddf79b22010-02-17 15:01:54 +0000584 pr_err("%s: device not registered to this ulp type %d\n",
585 __func__, ulp_type);
Michael Chana4636962009-06-08 18:14:43 -0700586 mutex_unlock(&cnic_lock);
587 return -EINVAL;
588 }
589 mutex_unlock(&cnic_lock);
590
Michael Chan42bb8d52011-01-03 15:21:46 +0000591 if (ulp_type == CNIC_ULP_ISCSI)
592 cnic_send_nlmsg(cp, ISCSI_KEVENT_IF_DOWN, NULL);
593
Michael Chana4636962009-06-08 18:14:43 -0700594 synchronize_rcu();
595
Michael Chan681dbd72009-08-14 15:49:46 +0000596 while (test_bit(ULP_F_CALL_PENDING, &cp->ulp_flags[ulp_type]) &&
597 i < 20) {
598 msleep(100);
599 i++;
600 }
601 if (test_bit(ULP_F_CALL_PENDING, &cp->ulp_flags[ulp_type]))
Joe Perchesddf79b22010-02-17 15:01:54 +0000602 netdev_warn(dev->netdev, "Failed waiting for ULP up call to complete\n");
Michael Chan681dbd72009-08-14 15:49:46 +0000603
Michael Chana4636962009-06-08 18:14:43 -0700604 return 0;
605}
606EXPORT_SYMBOL(cnic_unregister_driver);
607
608static int cnic_init_id_tbl(struct cnic_id_tbl *id_tbl, u32 size, u32 start_id)
609{
610 id_tbl->start = start_id;
611 id_tbl->max = size;
612 id_tbl->next = 0;
613 spin_lock_init(&id_tbl->lock);
614 id_tbl->table = kzalloc(DIV_ROUND_UP(size, 32) * 4, GFP_KERNEL);
615 if (!id_tbl->table)
616 return -ENOMEM;
617
618 return 0;
619}
620
621static void cnic_free_id_tbl(struct cnic_id_tbl *id_tbl)
622{
623 kfree(id_tbl->table);
624 id_tbl->table = NULL;
625}
626
627static int cnic_alloc_id(struct cnic_id_tbl *id_tbl, u32 id)
628{
629 int ret = -1;
630
631 id -= id_tbl->start;
632 if (id >= id_tbl->max)
633 return ret;
634
635 spin_lock(&id_tbl->lock);
636 if (!test_bit(id, id_tbl->table)) {
637 set_bit(id, id_tbl->table);
638 ret = 0;
639 }
640 spin_unlock(&id_tbl->lock);
641 return ret;
642}
643
644/* Returns -1 if not successful */
645static u32 cnic_alloc_new_id(struct cnic_id_tbl *id_tbl)
646{
647 u32 id;
648
649 spin_lock(&id_tbl->lock);
650 id = find_next_zero_bit(id_tbl->table, id_tbl->max, id_tbl->next);
651 if (id >= id_tbl->max) {
652 id = -1;
653 if (id_tbl->next != 0) {
654 id = find_first_zero_bit(id_tbl->table, id_tbl->next);
655 if (id >= id_tbl->next)
656 id = -1;
657 }
658 }
659
660 if (id < id_tbl->max) {
661 set_bit(id, id_tbl->table);
662 id_tbl->next = (id + 1) & (id_tbl->max - 1);
663 id += id_tbl->start;
664 }
665
666 spin_unlock(&id_tbl->lock);
667
668 return id;
669}
670
671static void cnic_free_id(struct cnic_id_tbl *id_tbl, u32 id)
672{
673 if (id == -1)
674 return;
675
676 id -= id_tbl->start;
677 if (id >= id_tbl->max)
678 return;
679
680 clear_bit(id, id_tbl->table);
681}
682
683static void cnic_free_dma(struct cnic_dev *dev, struct cnic_dma *dma)
684{
685 int i;
686
687 if (!dma->pg_arr)
688 return;
689
690 for (i = 0; i < dma->num_pages; i++) {
691 if (dma->pg_arr[i]) {
Michael Chan3248e162009-12-02 15:15:39 +0000692 dma_free_coherent(&dev->pcidev->dev, BCM_PAGE_SIZE,
693 dma->pg_arr[i], dma->pg_map_arr[i]);
Michael Chana4636962009-06-08 18:14:43 -0700694 dma->pg_arr[i] = NULL;
695 }
696 }
697 if (dma->pgtbl) {
Michael Chan3248e162009-12-02 15:15:39 +0000698 dma_free_coherent(&dev->pcidev->dev, dma->pgtbl_size,
699 dma->pgtbl, dma->pgtbl_map);
Michael Chana4636962009-06-08 18:14:43 -0700700 dma->pgtbl = NULL;
701 }
702 kfree(dma->pg_arr);
703 dma->pg_arr = NULL;
704 dma->num_pages = 0;
705}
706
707static void cnic_setup_page_tbl(struct cnic_dev *dev, struct cnic_dma *dma)
708{
709 int i;
Michael Chan51388262011-01-25 22:14:50 +0000710 __le32 *page_table = (__le32 *) dma->pgtbl;
Michael Chana4636962009-06-08 18:14:43 -0700711
712 for (i = 0; i < dma->num_pages; i++) {
713 /* Each entry needs to be in big endian format. */
Michael Chan51388262011-01-25 22:14:50 +0000714 *page_table = cpu_to_le32((u64) dma->pg_map_arr[i] >> 32);
Michael Chana4636962009-06-08 18:14:43 -0700715 page_table++;
Michael Chan51388262011-01-25 22:14:50 +0000716 *page_table = cpu_to_le32(dma->pg_map_arr[i] & 0xffffffff);
Michael Chana4636962009-06-08 18:14:43 -0700717 page_table++;
718 }
719}
720
Michael Chan71034ba2009-10-10 13:46:59 +0000721static void cnic_setup_page_tbl_le(struct cnic_dev *dev, struct cnic_dma *dma)
722{
723 int i;
Michael Chan51388262011-01-25 22:14:50 +0000724 __le32 *page_table = (__le32 *) dma->pgtbl;
Michael Chan71034ba2009-10-10 13:46:59 +0000725
726 for (i = 0; i < dma->num_pages; i++) {
727 /* Each entry needs to be in little endian format. */
Michael Chan51388262011-01-25 22:14:50 +0000728 *page_table = cpu_to_le32(dma->pg_map_arr[i] & 0xffffffff);
Michael Chan71034ba2009-10-10 13:46:59 +0000729 page_table++;
Michael Chan51388262011-01-25 22:14:50 +0000730 *page_table = cpu_to_le32((u64) dma->pg_map_arr[i] >> 32);
Michael Chan71034ba2009-10-10 13:46:59 +0000731 page_table++;
732 }
733}
734
Michael Chana4636962009-06-08 18:14:43 -0700735static int cnic_alloc_dma(struct cnic_dev *dev, struct cnic_dma *dma,
736 int pages, int use_pg_tbl)
737{
738 int i, size;
739 struct cnic_local *cp = dev->cnic_priv;
740
741 size = pages * (sizeof(void *) + sizeof(dma_addr_t));
742 dma->pg_arr = kzalloc(size, GFP_ATOMIC);
743 if (dma->pg_arr == NULL)
744 return -ENOMEM;
745
746 dma->pg_map_arr = (dma_addr_t *) (dma->pg_arr + pages);
747 dma->num_pages = pages;
748
749 for (i = 0; i < pages; i++) {
Michael Chan3248e162009-12-02 15:15:39 +0000750 dma->pg_arr[i] = dma_alloc_coherent(&dev->pcidev->dev,
751 BCM_PAGE_SIZE,
752 &dma->pg_map_arr[i],
753 GFP_ATOMIC);
Michael Chana4636962009-06-08 18:14:43 -0700754 if (dma->pg_arr[i] == NULL)
755 goto error;
756 }
757 if (!use_pg_tbl)
758 return 0;
759
760 dma->pgtbl_size = ((pages * 8) + BCM_PAGE_SIZE - 1) &
761 ~(BCM_PAGE_SIZE - 1);
Michael Chan3248e162009-12-02 15:15:39 +0000762 dma->pgtbl = dma_alloc_coherent(&dev->pcidev->dev, dma->pgtbl_size,
763 &dma->pgtbl_map, GFP_ATOMIC);
Michael Chana4636962009-06-08 18:14:43 -0700764 if (dma->pgtbl == NULL)
765 goto error;
766
767 cp->setup_pgtbl(dev, dma);
768
769 return 0;
770
771error:
772 cnic_free_dma(dev, dma);
773 return -ENOMEM;
774}
775
Michael Chan86b53602009-10-10 13:46:57 +0000776static void cnic_free_context(struct cnic_dev *dev)
777{
778 struct cnic_local *cp = dev->cnic_priv;
779 int i;
780
781 for (i = 0; i < cp->ctx_blks; i++) {
782 if (cp->ctx_arr[i].ctx) {
Michael Chan3248e162009-12-02 15:15:39 +0000783 dma_free_coherent(&dev->pcidev->dev, cp->ctx_blk_size,
784 cp->ctx_arr[i].ctx,
785 cp->ctx_arr[i].mapping);
Michael Chan86b53602009-10-10 13:46:57 +0000786 cp->ctx_arr[i].ctx = NULL;
787 }
788 }
789}
790
Michael Chancd801532010-10-13 14:06:49 +0000791static void __cnic_free_uio(struct cnic_uio_dev *udev)
Michael Chana4636962009-06-08 18:14:43 -0700792{
Michael Chancd801532010-10-13 14:06:49 +0000793 uio_unregister_device(&udev->cnic_uinfo);
Michael Chana4636962009-06-08 18:14:43 -0700794
Michael Chancd801532010-10-13 14:06:49 +0000795 if (udev->l2_buf) {
796 dma_free_coherent(&udev->pdev->dev, udev->l2_buf_size,
797 udev->l2_buf, udev->l2_buf_map);
798 udev->l2_buf = NULL;
Michael Chana4636962009-06-08 18:14:43 -0700799 }
800
Michael Chancd801532010-10-13 14:06:49 +0000801 if (udev->l2_ring) {
802 dma_free_coherent(&udev->pdev->dev, udev->l2_ring_size,
803 udev->l2_ring, udev->l2_ring_map);
804 udev->l2_ring = NULL;
Michael Chana4636962009-06-08 18:14:43 -0700805 }
Michael Chana3ceeeb2010-10-13 14:06:50 +0000806
807 pci_dev_put(udev->pdev);
808 kfree(udev);
Michael Chanc06c0462010-10-13 14:06:48 +0000809}
810
Michael Chancd801532010-10-13 14:06:49 +0000811static void cnic_free_uio(struct cnic_uio_dev *udev)
Michael Chanc06c0462010-10-13 14:06:48 +0000812{
Michael Chancd801532010-10-13 14:06:49 +0000813 if (!udev)
Michael Chanc06c0462010-10-13 14:06:48 +0000814 return;
815
Michael Chana3ceeeb2010-10-13 14:06:50 +0000816 write_lock(&cnic_dev_lock);
817 list_del_init(&udev->list);
818 write_unlock(&cnic_dev_lock);
Michael Chancd801532010-10-13 14:06:49 +0000819 __cnic_free_uio(udev);
Michael Chanc06c0462010-10-13 14:06:48 +0000820}
821
822static void cnic_free_resc(struct cnic_dev *dev)
823{
824 struct cnic_local *cp = dev->cnic_priv;
Michael Chancd801532010-10-13 14:06:49 +0000825 struct cnic_uio_dev *udev = cp->udev;
Michael Chanc06c0462010-10-13 14:06:48 +0000826
Michael Chancd801532010-10-13 14:06:49 +0000827 if (udev) {
Michael Chana3ceeeb2010-10-13 14:06:50 +0000828 udev->dev = NULL;
Michael Chancd801532010-10-13 14:06:49 +0000829 cp->udev = NULL;
Michael Chanc06c0462010-10-13 14:06:48 +0000830 }
Michael Chana4636962009-06-08 18:14:43 -0700831
Michael Chan86b53602009-10-10 13:46:57 +0000832 cnic_free_context(dev);
Michael Chana4636962009-06-08 18:14:43 -0700833 kfree(cp->ctx_arr);
834 cp->ctx_arr = NULL;
835 cp->ctx_blks = 0;
836
837 cnic_free_dma(dev, &cp->gbl_buf_info);
838 cnic_free_dma(dev, &cp->conn_buf_info);
839 cnic_free_dma(dev, &cp->kwq_info);
Michael Chan71034ba2009-10-10 13:46:59 +0000840 cnic_free_dma(dev, &cp->kwq_16_data_info);
Michael Chane21ba412010-12-23 07:43:03 +0000841 cnic_free_dma(dev, &cp->kcq2.dma);
Michael Chane6c28892010-06-24 14:58:39 +0000842 cnic_free_dma(dev, &cp->kcq1.dma);
Michael Chana4636962009-06-08 18:14:43 -0700843 kfree(cp->iscsi_tbl);
844 cp->iscsi_tbl = NULL;
845 kfree(cp->ctx_tbl);
846 cp->ctx_tbl = NULL;
847
Michael Chane1928c82010-12-23 07:43:04 +0000848 cnic_free_id_tbl(&cp->fcoe_cid_tbl);
Michael Chana4636962009-06-08 18:14:43 -0700849 cnic_free_id_tbl(&cp->cid_tbl);
850}
851
852static int cnic_alloc_context(struct cnic_dev *dev)
853{
854 struct cnic_local *cp = dev->cnic_priv;
855
856 if (CHIP_NUM(cp) == CHIP_NUM_5709) {
857 int i, k, arr_size;
858
859 cp->ctx_blk_size = BCM_PAGE_SIZE;
860 cp->cids_per_blk = BCM_PAGE_SIZE / 128;
861 arr_size = BNX2_MAX_CID / cp->cids_per_blk *
862 sizeof(struct cnic_ctx);
863 cp->ctx_arr = kzalloc(arr_size, GFP_KERNEL);
864 if (cp->ctx_arr == NULL)
865 return -ENOMEM;
866
867 k = 0;
868 for (i = 0; i < 2; i++) {
869 u32 j, reg, off, lo, hi;
870
871 if (i == 0)
872 off = BNX2_PG_CTX_MAP;
873 else
874 off = BNX2_ISCSI_CTX_MAP;
875
876 reg = cnic_reg_rd_ind(dev, off);
877 lo = reg >> 16;
878 hi = reg & 0xffff;
879 for (j = lo; j < hi; j += cp->cids_per_blk, k++)
880 cp->ctx_arr[k].cid = j;
881 }
882
883 cp->ctx_blks = k;
884 if (cp->ctx_blks >= (BNX2_MAX_CID / cp->cids_per_blk)) {
885 cp->ctx_blks = 0;
886 return -ENOMEM;
887 }
888
889 for (i = 0; i < cp->ctx_blks; i++) {
890 cp->ctx_arr[i].ctx =
Michael Chan3248e162009-12-02 15:15:39 +0000891 dma_alloc_coherent(&dev->pcidev->dev,
892 BCM_PAGE_SIZE,
893 &cp->ctx_arr[i].mapping,
894 GFP_KERNEL);
Michael Chana4636962009-06-08 18:14:43 -0700895 if (cp->ctx_arr[i].ctx == NULL)
896 return -ENOMEM;
897 }
898 }
899 return 0;
900}
901
Michael Chane6c28892010-06-24 14:58:39 +0000902static int cnic_alloc_kcq(struct cnic_dev *dev, struct kcq_info *info)
903{
904 int err, i, is_bnx2 = 0;
905 struct kcqe **kcq;
906
907 if (test_bit(CNIC_F_BNX2_CLASS, &dev->flags))
908 is_bnx2 = 1;
909
910 err = cnic_alloc_dma(dev, &info->dma, KCQ_PAGE_CNT, is_bnx2);
911 if (err)
912 return err;
913
914 kcq = (struct kcqe **) info->dma.pg_arr;
915 info->kcq = kcq;
916
917 if (is_bnx2)
918 return 0;
919
920 for (i = 0; i < KCQ_PAGE_CNT; i++) {
921 struct bnx2x_bd_chain_next *next =
922 (struct bnx2x_bd_chain_next *) &kcq[i][MAX_KCQE_CNT];
923 int j = i + 1;
924
925 if (j >= KCQ_PAGE_CNT)
926 j = 0;
927 next->addr_hi = (u64) info->dma.pg_map_arr[j] >> 32;
928 next->addr_lo = info->dma.pg_map_arr[j] & 0xffffffff;
929 }
930 return 0;
931}
932
Michael Chancd801532010-10-13 14:06:49 +0000933static int cnic_alloc_uio_rings(struct cnic_dev *dev, int pages)
Michael Chanec0248e2009-08-26 09:49:22 +0000934{
935 struct cnic_local *cp = dev->cnic_priv;
Michael Chancd801532010-10-13 14:06:49 +0000936 struct cnic_uio_dev *udev;
Michael Chanec0248e2009-08-26 09:49:22 +0000937
Michael Chana3ceeeb2010-10-13 14:06:50 +0000938 read_lock(&cnic_dev_lock);
939 list_for_each_entry(udev, &cnic_udev_list, list) {
940 if (udev->pdev == dev->pcidev) {
941 udev->dev = dev;
942 cp->udev = udev;
943 read_unlock(&cnic_dev_lock);
944 return 0;
945 }
946 }
947 read_unlock(&cnic_dev_lock);
948
Michael Chancd801532010-10-13 14:06:49 +0000949 udev = kzalloc(sizeof(struct cnic_uio_dev), GFP_ATOMIC);
950 if (!udev)
Michael Chanec0248e2009-08-26 09:49:22 +0000951 return -ENOMEM;
952
Michael Chancd801532010-10-13 14:06:49 +0000953 udev->uio_dev = -1;
954
955 udev->dev = dev;
956 udev->pdev = dev->pcidev;
957 udev->l2_ring_size = pages * BCM_PAGE_SIZE;
958 udev->l2_ring = dma_alloc_coherent(&udev->pdev->dev, udev->l2_ring_size,
959 &udev->l2_ring_map,
960 GFP_KERNEL | __GFP_COMP);
961 if (!udev->l2_ring)
Jesper Juhlf7e4c972010-12-31 11:18:48 -0800962 goto err_udev;
Michael Chanec0248e2009-08-26 09:49:22 +0000963
Michael Chancd801532010-10-13 14:06:49 +0000964 udev->l2_buf_size = (cp->l2_rx_ring_size + 1) * cp->l2_single_buf_size;
965 udev->l2_buf_size = PAGE_ALIGN(udev->l2_buf_size);
966 udev->l2_buf = dma_alloc_coherent(&udev->pdev->dev, udev->l2_buf_size,
967 &udev->l2_buf_map,
968 GFP_KERNEL | __GFP_COMP);
969 if (!udev->l2_buf)
Jesper Juhlf7e4c972010-12-31 11:18:48 -0800970 goto err_dma;
Michael Chancd801532010-10-13 14:06:49 +0000971
Michael Chana3ceeeb2010-10-13 14:06:50 +0000972 write_lock(&cnic_dev_lock);
973 list_add(&udev->list, &cnic_udev_list);
974 write_unlock(&cnic_dev_lock);
975
976 pci_dev_get(udev->pdev);
977
Michael Chancd801532010-10-13 14:06:49 +0000978 cp->udev = udev;
979
Michael Chanec0248e2009-08-26 09:49:22 +0000980 return 0;
Jesper Juhlf7e4c972010-12-31 11:18:48 -0800981 err_dma:
982 dma_free_coherent(&udev->pdev->dev, udev->l2_ring_size,
983 udev->l2_ring, udev->l2_ring_map);
984 err_udev:
985 kfree(udev);
986 return -ENOMEM;
Michael Chanec0248e2009-08-26 09:49:22 +0000987}
988
Michael Chancd801532010-10-13 14:06:49 +0000989static int cnic_init_uio(struct cnic_dev *dev)
990{
Michael Chan5e9b2db2009-08-26 09:49:23 +0000991 struct cnic_local *cp = dev->cnic_priv;
Michael Chancd801532010-10-13 14:06:49 +0000992 struct cnic_uio_dev *udev = cp->udev;
Michael Chan5e9b2db2009-08-26 09:49:23 +0000993 struct uio_info *uinfo;
Michael Chancd801532010-10-13 14:06:49 +0000994 int ret = 0;
Michael Chan5e9b2db2009-08-26 09:49:23 +0000995
Michael Chancd801532010-10-13 14:06:49 +0000996 if (!udev)
Michael Chan5e9b2db2009-08-26 09:49:23 +0000997 return -ENOMEM;
998
Michael Chancd801532010-10-13 14:06:49 +0000999 uinfo = &udev->cnic_uinfo;
1000
Michael Chan5e9b2db2009-08-26 09:49:23 +00001001 uinfo->mem[0].addr = dev->netdev->base_addr;
1002 uinfo->mem[0].internal_addr = dev->regview;
1003 uinfo->mem[0].size = dev->netdev->mem_end - dev->netdev->mem_start;
1004 uinfo->mem[0].memtype = UIO_MEM_PHYS;
1005
Michael Chan5e9b2db2009-08-26 09:49:23 +00001006 if (test_bit(CNIC_F_BNX2_CLASS, &dev->flags)) {
Michael Chana4dde3a2010-02-24 14:42:08 +00001007 uinfo->mem[1].addr = (unsigned long) cp->status_blk.gen &
Michael Chancd801532010-10-13 14:06:49 +00001008 PAGE_MASK;
Michael Chan5e9b2db2009-08-26 09:49:23 +00001009 if (cp->ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX)
1010 uinfo->mem[1].size = BNX2_SBLK_MSIX_ALIGN_SIZE * 9;
1011 else
1012 uinfo->mem[1].size = BNX2_SBLK_MSIX_ALIGN_SIZE;
1013
1014 uinfo->name = "bnx2_cnic";
Michael Chan71034ba2009-10-10 13:46:59 +00001015 } else if (test_bit(CNIC_F_BNX2X_CLASS, &dev->flags)) {
1016 uinfo->mem[1].addr = (unsigned long) cp->bnx2x_def_status_blk &
1017 PAGE_MASK;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001018 uinfo->mem[1].size = sizeof(*cp->bnx2x_def_status_blk);
Michael Chan71034ba2009-10-10 13:46:59 +00001019
1020 uinfo->name = "bnx2x_cnic";
Michael Chan5e9b2db2009-08-26 09:49:23 +00001021 }
1022
1023 uinfo->mem[1].memtype = UIO_MEM_LOGICAL;
1024
Michael Chancd801532010-10-13 14:06:49 +00001025 uinfo->mem[2].addr = (unsigned long) udev->l2_ring;
1026 uinfo->mem[2].size = udev->l2_ring_size;
Michael Chan5e9b2db2009-08-26 09:49:23 +00001027 uinfo->mem[2].memtype = UIO_MEM_LOGICAL;
1028
Michael Chancd801532010-10-13 14:06:49 +00001029 uinfo->mem[3].addr = (unsigned long) udev->l2_buf;
1030 uinfo->mem[3].size = udev->l2_buf_size;
Michael Chan5e9b2db2009-08-26 09:49:23 +00001031 uinfo->mem[3].memtype = UIO_MEM_LOGICAL;
1032
1033 uinfo->version = CNIC_MODULE_VERSION;
1034 uinfo->irq = UIO_IRQ_CUSTOM;
1035
1036 uinfo->open = cnic_uio_open;
1037 uinfo->release = cnic_uio_close;
1038
Michael Chana3ceeeb2010-10-13 14:06:50 +00001039 if (udev->uio_dev == -1) {
1040 if (!uinfo->priv) {
1041 uinfo->priv = udev;
Michael Chan5e9b2db2009-08-26 09:49:23 +00001042
Michael Chana3ceeeb2010-10-13 14:06:50 +00001043 ret = uio_register_device(&udev->pdev->dev, uinfo);
1044 }
1045 } else {
1046 cnic_init_rings(dev);
1047 }
Michael Chan5e9b2db2009-08-26 09:49:23 +00001048
Michael Chancd801532010-10-13 14:06:49 +00001049 return ret;
Michael Chan5e9b2db2009-08-26 09:49:23 +00001050}
1051
Michael Chana4636962009-06-08 18:14:43 -07001052static int cnic_alloc_bnx2_resc(struct cnic_dev *dev)
1053{
1054 struct cnic_local *cp = dev->cnic_priv;
Michael Chana4636962009-06-08 18:14:43 -07001055 int ret;
1056
1057 ret = cnic_alloc_dma(dev, &cp->kwq_info, KWQ_PAGE_CNT, 1);
1058 if (ret)
1059 goto error;
1060 cp->kwq = (struct kwqe **) cp->kwq_info.pg_arr;
1061
Michael Chane6c28892010-06-24 14:58:39 +00001062 ret = cnic_alloc_kcq(dev, &cp->kcq1);
Michael Chana4636962009-06-08 18:14:43 -07001063 if (ret)
1064 goto error;
Michael Chana4636962009-06-08 18:14:43 -07001065
1066 ret = cnic_alloc_context(dev);
1067 if (ret)
1068 goto error;
1069
Michael Chancd801532010-10-13 14:06:49 +00001070 ret = cnic_alloc_uio_rings(dev, 2);
Michael Chanec0248e2009-08-26 09:49:22 +00001071 if (ret)
Michael Chana4636962009-06-08 18:14:43 -07001072 goto error;
1073
Michael Chancd801532010-10-13 14:06:49 +00001074 ret = cnic_init_uio(dev);
Michael Chan5e9b2db2009-08-26 09:49:23 +00001075 if (ret)
Michael Chana4636962009-06-08 18:14:43 -07001076 goto error;
1077
Michael Chana4636962009-06-08 18:14:43 -07001078 return 0;
1079
1080error:
1081 cnic_free_resc(dev);
1082 return ret;
1083}
1084
Michael Chan71034ba2009-10-10 13:46:59 +00001085static int cnic_alloc_bnx2x_context(struct cnic_dev *dev)
1086{
1087 struct cnic_local *cp = dev->cnic_priv;
Michael Chan71034ba2009-10-10 13:46:59 +00001088 int ctx_blk_size = cp->ethdev->ctx_blk_size;
Michael Chan520efdf2010-06-24 14:58:37 +00001089 int total_mem, blks, i;
Michael Chan71034ba2009-10-10 13:46:59 +00001090
Michael Chan520efdf2010-06-24 14:58:37 +00001091 total_mem = BNX2X_CONTEXT_MEM_SIZE * cp->max_cid_space;
Michael Chan71034ba2009-10-10 13:46:59 +00001092 blks = total_mem / ctx_blk_size;
1093 if (total_mem % ctx_blk_size)
1094 blks++;
1095
1096 if (blks > cp->ethdev->ctx_tbl_len)
1097 return -ENOMEM;
1098
Joe Perchesbaeb2ff2010-08-11 07:02:48 +00001099 cp->ctx_arr = kcalloc(blks, sizeof(struct cnic_ctx), GFP_KERNEL);
Michael Chan71034ba2009-10-10 13:46:59 +00001100 if (cp->ctx_arr == NULL)
1101 return -ENOMEM;
1102
1103 cp->ctx_blks = blks;
1104 cp->ctx_blk_size = ctx_blk_size;
Michael Chanee87a822010-10-13 14:06:51 +00001105 if (!BNX2X_CHIP_IS_57710(cp->chip_id))
Michael Chan71034ba2009-10-10 13:46:59 +00001106 cp->ctx_align = 0;
1107 else
1108 cp->ctx_align = ctx_blk_size;
1109
1110 cp->cids_per_blk = ctx_blk_size / BNX2X_CONTEXT_MEM_SIZE;
1111
1112 for (i = 0; i < blks; i++) {
1113 cp->ctx_arr[i].ctx =
Michael Chan3248e162009-12-02 15:15:39 +00001114 dma_alloc_coherent(&dev->pcidev->dev, cp->ctx_blk_size,
1115 &cp->ctx_arr[i].mapping,
1116 GFP_KERNEL);
Michael Chan71034ba2009-10-10 13:46:59 +00001117 if (cp->ctx_arr[i].ctx == NULL)
1118 return -ENOMEM;
1119
1120 if (cp->ctx_align && cp->ctx_blk_size == ctx_blk_size) {
1121 if (cp->ctx_arr[i].mapping & (cp->ctx_align - 1)) {
1122 cnic_free_context(dev);
1123 cp->ctx_blk_size += cp->ctx_align;
1124 i = -1;
1125 continue;
1126 }
1127 }
1128 }
1129 return 0;
1130}
1131
1132static int cnic_alloc_bnx2x_resc(struct cnic_dev *dev)
1133{
1134 struct cnic_local *cp = dev->cnic_priv;
Michael Chan520efdf2010-06-24 14:58:37 +00001135 struct cnic_eth_dev *ethdev = cp->ethdev;
1136 u32 start_cid = ethdev->starting_cid;
Michael Chan71034ba2009-10-10 13:46:59 +00001137 int i, j, n, ret, pages;
1138 struct cnic_dma *kwq_16_dma = &cp->kwq_16_data_info;
1139
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001140 cp->iro_arr = ethdev->iro_arr;
1141
Michael Chane1928c82010-12-23 07:43:04 +00001142 cp->max_cid_space = MAX_ISCSI_TBL_SZ + BNX2X_FCOE_NUM_CONNECTIONS;
Michael Chan520efdf2010-06-24 14:58:37 +00001143 cp->iscsi_start_cid = start_cid;
Michael Chane1928c82010-12-23 07:43:04 +00001144 cp->fcoe_start_cid = start_cid + MAX_ISCSI_TBL_SZ;
1145
1146 if (BNX2X_CHIP_IS_E2(cp->chip_id)) {
1147 cp->max_cid_space += BNX2X_FCOE_NUM_CONNECTIONS;
1148 cp->fcoe_init_cid = ethdev->fcoe_init_cid;
1149 if (!cp->fcoe_init_cid)
1150 cp->fcoe_init_cid = 0x10;
1151 }
1152
Michael Chan520efdf2010-06-24 14:58:37 +00001153 if (start_cid < BNX2X_ISCSI_START_CID) {
1154 u32 delta = BNX2X_ISCSI_START_CID - start_cid;
1155
1156 cp->iscsi_start_cid = BNX2X_ISCSI_START_CID;
Michael Chane1928c82010-12-23 07:43:04 +00001157 cp->fcoe_start_cid += delta;
Michael Chan520efdf2010-06-24 14:58:37 +00001158 cp->max_cid_space += delta;
1159 }
1160
Michael Chan71034ba2009-10-10 13:46:59 +00001161 cp->iscsi_tbl = kzalloc(sizeof(struct cnic_iscsi) * MAX_ISCSI_TBL_SZ,
1162 GFP_KERNEL);
1163 if (!cp->iscsi_tbl)
1164 goto error;
1165
1166 cp->ctx_tbl = kzalloc(sizeof(struct cnic_context) *
Michael Chan520efdf2010-06-24 14:58:37 +00001167 cp->max_cid_space, GFP_KERNEL);
Michael Chan71034ba2009-10-10 13:46:59 +00001168 if (!cp->ctx_tbl)
1169 goto error;
1170
1171 for (i = 0; i < MAX_ISCSI_TBL_SZ; i++) {
1172 cp->ctx_tbl[i].proto.iscsi = &cp->iscsi_tbl[i];
1173 cp->ctx_tbl[i].ulp_proto_id = CNIC_ULP_ISCSI;
1174 }
1175
Michael Chane1928c82010-12-23 07:43:04 +00001176 for (i = MAX_ISCSI_TBL_SZ; i < cp->max_cid_space; i++)
1177 cp->ctx_tbl[i].ulp_proto_id = CNIC_ULP_FCOE;
1178
Michael Chan520efdf2010-06-24 14:58:37 +00001179 pages = PAGE_ALIGN(cp->max_cid_space * CNIC_KWQ16_DATA_SIZE) /
Michael Chan71034ba2009-10-10 13:46:59 +00001180 PAGE_SIZE;
1181
1182 ret = cnic_alloc_dma(dev, kwq_16_dma, pages, 0);
1183 if (ret)
1184 return -ENOMEM;
1185
1186 n = PAGE_SIZE / CNIC_KWQ16_DATA_SIZE;
Michael Chan520efdf2010-06-24 14:58:37 +00001187 for (i = 0, j = 0; i < cp->max_cid_space; i++) {
Michael Chan71034ba2009-10-10 13:46:59 +00001188 long off = CNIC_KWQ16_DATA_SIZE * (i % n);
1189
1190 cp->ctx_tbl[i].kwqe_data = kwq_16_dma->pg_arr[j] + off;
1191 cp->ctx_tbl[i].kwqe_data_mapping = kwq_16_dma->pg_map_arr[j] +
1192 off;
1193
1194 if ((i % n) == (n - 1))
1195 j++;
1196 }
1197
Michael Chane6c28892010-06-24 14:58:39 +00001198 ret = cnic_alloc_kcq(dev, &cp->kcq1);
Michael Chan71034ba2009-10-10 13:46:59 +00001199 if (ret)
1200 goto error;
Michael Chan71034ba2009-10-10 13:46:59 +00001201
Michael Chane21ba412010-12-23 07:43:03 +00001202 if (BNX2X_CHIP_IS_E2(cp->chip_id)) {
1203 ret = cnic_alloc_kcq(dev, &cp->kcq2);
1204 if (ret)
1205 goto error;
1206 }
1207
Michael Chan71034ba2009-10-10 13:46:59 +00001208 pages = PAGE_ALIGN(BNX2X_ISCSI_NUM_CONNECTIONS *
1209 BNX2X_ISCSI_CONN_BUF_SIZE) / PAGE_SIZE;
1210 ret = cnic_alloc_dma(dev, &cp->conn_buf_info, pages, 1);
1211 if (ret)
1212 goto error;
1213
1214 pages = PAGE_ALIGN(BNX2X_ISCSI_GLB_BUF_SIZE) / PAGE_SIZE;
1215 ret = cnic_alloc_dma(dev, &cp->gbl_buf_info, pages, 0);
1216 if (ret)
1217 goto error;
1218
1219 ret = cnic_alloc_bnx2x_context(dev);
1220 if (ret)
1221 goto error;
1222
Michael Chan71034ba2009-10-10 13:46:59 +00001223 cp->bnx2x_def_status_blk = cp->ethdev->irq_arr[1].status_blk;
1224
1225 cp->l2_rx_ring_size = 15;
1226
Michael Chancd801532010-10-13 14:06:49 +00001227 ret = cnic_alloc_uio_rings(dev, 4);
Michael Chan71034ba2009-10-10 13:46:59 +00001228 if (ret)
1229 goto error;
1230
Michael Chancd801532010-10-13 14:06:49 +00001231 ret = cnic_init_uio(dev);
Michael Chan71034ba2009-10-10 13:46:59 +00001232 if (ret)
1233 goto error;
1234
1235 return 0;
1236
1237error:
1238 cnic_free_resc(dev);
1239 return -ENOMEM;
1240}
1241
Michael Chana4636962009-06-08 18:14:43 -07001242static inline u32 cnic_kwq_avail(struct cnic_local *cp)
1243{
1244 return cp->max_kwq_idx -
1245 ((cp->kwq_prod_idx - cp->kwq_con_idx) & cp->max_kwq_idx);
1246}
1247
1248static int cnic_submit_bnx2_kwqes(struct cnic_dev *dev, struct kwqe *wqes[],
1249 u32 num_wqes)
1250{
1251 struct cnic_local *cp = dev->cnic_priv;
1252 struct kwqe *prod_qe;
1253 u16 prod, sw_prod, i;
1254
1255 if (!test_bit(CNIC_F_CNIC_UP, &dev->flags))
1256 return -EAGAIN; /* bnx2 is down */
1257
1258 spin_lock_bh(&cp->cnic_ulp_lock);
1259 if (num_wqes > cnic_kwq_avail(cp) &&
Michael Chan1f1332a2010-05-18 11:32:52 +00001260 !test_bit(CNIC_LCL_FL_KWQ_INIT, &cp->cnic_local_flags)) {
Michael Chana4636962009-06-08 18:14:43 -07001261 spin_unlock_bh(&cp->cnic_ulp_lock);
1262 return -EAGAIN;
1263 }
1264
Michael Chan1f1332a2010-05-18 11:32:52 +00001265 clear_bit(CNIC_LCL_FL_KWQ_INIT, &cp->cnic_local_flags);
Michael Chana4636962009-06-08 18:14:43 -07001266
1267 prod = cp->kwq_prod_idx;
1268 sw_prod = prod & MAX_KWQ_IDX;
1269 for (i = 0; i < num_wqes; i++) {
1270 prod_qe = &cp->kwq[KWQ_PG(sw_prod)][KWQ_IDX(sw_prod)];
1271 memcpy(prod_qe, wqes[i], sizeof(struct kwqe));
1272 prod++;
1273 sw_prod = prod & MAX_KWQ_IDX;
1274 }
1275 cp->kwq_prod_idx = prod;
1276
1277 CNIC_WR16(dev, cp->kwq_io_addr, cp->kwq_prod_idx);
1278
1279 spin_unlock_bh(&cp->cnic_ulp_lock);
1280 return 0;
1281}
1282
Michael Chan71034ba2009-10-10 13:46:59 +00001283static void *cnic_get_kwqe_16_data(struct cnic_local *cp, u32 l5_cid,
1284 union l5cm_specific_data *l5_data)
1285{
1286 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
1287 dma_addr_t map;
1288
1289 map = ctx->kwqe_data_mapping;
1290 l5_data->phy_address.lo = (u64) map & 0xffffffff;
1291 l5_data->phy_address.hi = (u64) map >> 32;
1292 return ctx->kwqe_data;
1293}
1294
1295static int cnic_submit_kwqe_16(struct cnic_dev *dev, u32 cmd, u32 cid,
1296 u32 type, union l5cm_specific_data *l5_data)
1297{
1298 struct cnic_local *cp = dev->cnic_priv;
1299 struct l5cm_spe kwqe;
1300 struct kwqe_16 *kwq[1];
Michael Chan68d7c1a2011-01-05 15:14:13 +00001301 u16 type_16;
Michael Chan71034ba2009-10-10 13:46:59 +00001302 int ret;
1303
1304 kwqe.hdr.conn_and_cmd_data =
1305 cpu_to_le32(((cmd << SPE_HDR_CMD_ID_SHIFT) |
Michael Chanceb7e1c2010-10-06 03:14:54 +00001306 BNX2X_HW_CID(cp, cid)));
Michael Chan68d7c1a2011-01-05 15:14:13 +00001307
1308 type_16 = (type << SPE_HDR_CONN_TYPE_SHIFT) & SPE_HDR_CONN_TYPE;
1309 type_16 |= (cp->pfid << SPE_HDR_FUNCTION_ID_SHIFT) &
1310 SPE_HDR_FUNCTION_ID;
1311
1312 kwqe.hdr.type = cpu_to_le16(type_16);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001313 kwqe.hdr.reserved1 = 0;
Michael Chan71034ba2009-10-10 13:46:59 +00001314 kwqe.data.phy_address.lo = cpu_to_le32(l5_data->phy_address.lo);
1315 kwqe.data.phy_address.hi = cpu_to_le32(l5_data->phy_address.hi);
1316
1317 kwq[0] = (struct kwqe_16 *) &kwqe;
1318
1319 spin_lock_bh(&cp->cnic_ulp_lock);
1320 ret = cp->ethdev->drv_submit_kwqes_16(dev->netdev, kwq, 1);
1321 spin_unlock_bh(&cp->cnic_ulp_lock);
1322
1323 if (ret == 1)
1324 return 0;
1325
1326 return -EBUSY;
1327}
1328
1329static void cnic_reply_bnx2x_kcqes(struct cnic_dev *dev, int ulp_type,
1330 struct kcqe *cqes[], u32 num_cqes)
1331{
1332 struct cnic_local *cp = dev->cnic_priv;
1333 struct cnic_ulp_ops *ulp_ops;
1334
1335 rcu_read_lock();
1336 ulp_ops = rcu_dereference(cp->ulp_ops[ulp_type]);
1337 if (likely(ulp_ops)) {
1338 ulp_ops->indicate_kcqes(cp->ulp_handle[ulp_type],
1339 cqes, num_cqes);
1340 }
1341 rcu_read_unlock();
1342}
1343
1344static int cnic_bnx2x_iscsi_init1(struct cnic_dev *dev, struct kwqe *kwqe)
1345{
1346 struct cnic_local *cp = dev->cnic_priv;
1347 struct iscsi_kwqe_init1 *req1 = (struct iscsi_kwqe_init1 *) kwqe;
Michael Chan14203982010-10-06 03:16:06 +00001348 int hq_bds, pages;
1349 u32 pfid = cp->pfid;
Michael Chan71034ba2009-10-10 13:46:59 +00001350
1351 cp->num_iscsi_tasks = req1->num_tasks_per_conn;
1352 cp->num_ccells = req1->num_ccells_per_conn;
1353 cp->task_array_size = BNX2X_ISCSI_TASK_CONTEXT_SIZE *
1354 cp->num_iscsi_tasks;
1355 cp->r2tq_size = cp->num_iscsi_tasks * BNX2X_ISCSI_MAX_PENDING_R2TS *
1356 BNX2X_ISCSI_R2TQE_SIZE;
1357 cp->hq_size = cp->num_ccells * BNX2X_ISCSI_HQ_BD_SIZE;
1358 pages = PAGE_ALIGN(cp->hq_size) / PAGE_SIZE;
1359 hq_bds = pages * (PAGE_SIZE / BNX2X_ISCSI_HQ_BD_SIZE);
1360 cp->num_cqs = req1->num_cqs;
1361
1362 if (!dev->max_iscsi_conn)
1363 return 0;
1364
1365 /* init Tstorm RAM */
Michael Chan14203982010-10-06 03:16:06 +00001366 CNIC_WR16(dev, BAR_TSTRORM_INTMEM + TSTORM_ISCSI_RQ_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001367 req1->rq_num_wqes);
Michael Chan14203982010-10-06 03:16:06 +00001368 CNIC_WR16(dev, BAR_TSTRORM_INTMEM + TSTORM_ISCSI_PAGE_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001369 PAGE_SIZE);
1370 CNIC_WR8(dev, BAR_TSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001371 TSTORM_ISCSI_PAGE_SIZE_LOG_OFFSET(pfid), PAGE_SHIFT);
Michael Chan71034ba2009-10-10 13:46:59 +00001372 CNIC_WR16(dev, BAR_TSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001373 TSTORM_ISCSI_NUM_OF_TASKS_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001374 req1->num_tasks_per_conn);
1375
1376 /* init Ustorm RAM */
1377 CNIC_WR16(dev, BAR_USTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001378 USTORM_ISCSI_RQ_BUFFER_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001379 req1->rq_buffer_size);
Michael Chan14203982010-10-06 03:16:06 +00001380 CNIC_WR16(dev, BAR_USTRORM_INTMEM + USTORM_ISCSI_PAGE_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001381 PAGE_SIZE);
1382 CNIC_WR8(dev, BAR_USTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001383 USTORM_ISCSI_PAGE_SIZE_LOG_OFFSET(pfid), PAGE_SHIFT);
Michael Chan71034ba2009-10-10 13:46:59 +00001384 CNIC_WR16(dev, BAR_USTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001385 USTORM_ISCSI_NUM_OF_TASKS_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001386 req1->num_tasks_per_conn);
Michael Chan14203982010-10-06 03:16:06 +00001387 CNIC_WR16(dev, BAR_USTRORM_INTMEM + USTORM_ISCSI_RQ_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001388 req1->rq_num_wqes);
Michael Chan14203982010-10-06 03:16:06 +00001389 CNIC_WR16(dev, BAR_USTRORM_INTMEM + USTORM_ISCSI_CQ_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001390 req1->cq_num_wqes);
Michael Chan14203982010-10-06 03:16:06 +00001391 CNIC_WR16(dev, BAR_USTRORM_INTMEM + USTORM_ISCSI_R2TQ_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001392 cp->num_iscsi_tasks * BNX2X_ISCSI_MAX_PENDING_R2TS);
1393
1394 /* init Xstorm RAM */
Michael Chan14203982010-10-06 03:16:06 +00001395 CNIC_WR16(dev, BAR_XSTRORM_INTMEM + XSTORM_ISCSI_PAGE_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001396 PAGE_SIZE);
1397 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001398 XSTORM_ISCSI_PAGE_SIZE_LOG_OFFSET(pfid), PAGE_SHIFT);
Michael Chan71034ba2009-10-10 13:46:59 +00001399 CNIC_WR16(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001400 XSTORM_ISCSI_NUM_OF_TASKS_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001401 req1->num_tasks_per_conn);
Michael Chan14203982010-10-06 03:16:06 +00001402 CNIC_WR16(dev, BAR_XSTRORM_INTMEM + XSTORM_ISCSI_HQ_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001403 hq_bds);
Michael Chan14203982010-10-06 03:16:06 +00001404 CNIC_WR16(dev, BAR_XSTRORM_INTMEM + XSTORM_ISCSI_SQ_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001405 req1->num_tasks_per_conn);
Michael Chan14203982010-10-06 03:16:06 +00001406 CNIC_WR16(dev, BAR_XSTRORM_INTMEM + XSTORM_ISCSI_R2TQ_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001407 cp->num_iscsi_tasks * BNX2X_ISCSI_MAX_PENDING_R2TS);
1408
1409 /* init Cstorm RAM */
Michael Chan14203982010-10-06 03:16:06 +00001410 CNIC_WR16(dev, BAR_CSTRORM_INTMEM + CSTORM_ISCSI_PAGE_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001411 PAGE_SIZE);
1412 CNIC_WR8(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001413 CSTORM_ISCSI_PAGE_SIZE_LOG_OFFSET(pfid), PAGE_SHIFT);
Michael Chan71034ba2009-10-10 13:46:59 +00001414 CNIC_WR16(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001415 CSTORM_ISCSI_NUM_OF_TASKS_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001416 req1->num_tasks_per_conn);
Michael Chan14203982010-10-06 03:16:06 +00001417 CNIC_WR16(dev, BAR_CSTRORM_INTMEM + CSTORM_ISCSI_CQ_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001418 req1->cq_num_wqes);
Michael Chan14203982010-10-06 03:16:06 +00001419 CNIC_WR16(dev, BAR_CSTRORM_INTMEM + CSTORM_ISCSI_HQ_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001420 hq_bds);
1421
1422 return 0;
1423}
1424
1425static int cnic_bnx2x_iscsi_init2(struct cnic_dev *dev, struct kwqe *kwqe)
1426{
1427 struct iscsi_kwqe_init2 *req2 = (struct iscsi_kwqe_init2 *) kwqe;
1428 struct cnic_local *cp = dev->cnic_priv;
Michael Chan14203982010-10-06 03:16:06 +00001429 u32 pfid = cp->pfid;
Michael Chan71034ba2009-10-10 13:46:59 +00001430 struct iscsi_kcqe kcqe;
1431 struct kcqe *cqes[1];
1432
1433 memset(&kcqe, 0, sizeof(kcqe));
1434 if (!dev->max_iscsi_conn) {
1435 kcqe.completion_status =
1436 ISCSI_KCQE_COMPLETION_STATUS_ISCSI_NOT_SUPPORTED;
1437 goto done;
1438 }
1439
1440 CNIC_WR(dev, BAR_TSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001441 TSTORM_ISCSI_ERROR_BITMAP_OFFSET(pfid), req2->error_bit_map[0]);
Michael Chan71034ba2009-10-10 13:46:59 +00001442 CNIC_WR(dev, BAR_TSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001443 TSTORM_ISCSI_ERROR_BITMAP_OFFSET(pfid) + 4,
Michael Chan71034ba2009-10-10 13:46:59 +00001444 req2->error_bit_map[1]);
1445
1446 CNIC_WR16(dev, BAR_USTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001447 USTORM_ISCSI_CQ_SQN_SIZE_OFFSET(pfid), req2->max_cq_sqn);
Michael Chan71034ba2009-10-10 13:46:59 +00001448 CNIC_WR(dev, BAR_USTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001449 USTORM_ISCSI_ERROR_BITMAP_OFFSET(pfid), req2->error_bit_map[0]);
Michael Chan71034ba2009-10-10 13:46:59 +00001450 CNIC_WR(dev, BAR_USTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001451 USTORM_ISCSI_ERROR_BITMAP_OFFSET(pfid) + 4,
Michael Chan71034ba2009-10-10 13:46:59 +00001452 req2->error_bit_map[1]);
1453
1454 CNIC_WR16(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001455 CSTORM_ISCSI_CQ_SQN_SIZE_OFFSET(pfid), req2->max_cq_sqn);
Michael Chan71034ba2009-10-10 13:46:59 +00001456
1457 kcqe.completion_status = ISCSI_KCQE_COMPLETION_STATUS_SUCCESS;
1458
1459done:
1460 kcqe.op_code = ISCSI_KCQE_OPCODE_INIT;
1461 cqes[0] = (struct kcqe *) &kcqe;
1462 cnic_reply_bnx2x_kcqes(dev, CNIC_ULP_ISCSI, cqes, 1);
1463
1464 return 0;
1465}
1466
1467static void cnic_free_bnx2x_conn_resc(struct cnic_dev *dev, u32 l5_cid)
1468{
1469 struct cnic_local *cp = dev->cnic_priv;
1470 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
1471
1472 if (ctx->ulp_proto_id == CNIC_ULP_ISCSI) {
1473 struct cnic_iscsi *iscsi = ctx->proto.iscsi;
1474
1475 cnic_free_dma(dev, &iscsi->hq_info);
1476 cnic_free_dma(dev, &iscsi->r2tq_info);
1477 cnic_free_dma(dev, &iscsi->task_array_info);
Michael Chane1928c82010-12-23 07:43:04 +00001478 cnic_free_id(&cp->cid_tbl, ctx->cid);
1479 } else {
1480 cnic_free_id(&cp->fcoe_cid_tbl, ctx->cid);
Michael Chan71034ba2009-10-10 13:46:59 +00001481 }
Michael Chane1928c82010-12-23 07:43:04 +00001482
Michael Chan71034ba2009-10-10 13:46:59 +00001483 ctx->cid = 0;
1484}
1485
1486static int cnic_alloc_bnx2x_conn_resc(struct cnic_dev *dev, u32 l5_cid)
1487{
1488 u32 cid;
1489 int ret, pages;
1490 struct cnic_local *cp = dev->cnic_priv;
1491 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
1492 struct cnic_iscsi *iscsi = ctx->proto.iscsi;
1493
Michael Chane1928c82010-12-23 07:43:04 +00001494 if (ctx->ulp_proto_id == CNIC_ULP_FCOE) {
1495 cid = cnic_alloc_new_id(&cp->fcoe_cid_tbl);
1496 if (cid == -1) {
1497 ret = -ENOMEM;
1498 goto error;
1499 }
1500 ctx->cid = cid;
1501 return 0;
1502 }
1503
Michael Chan71034ba2009-10-10 13:46:59 +00001504 cid = cnic_alloc_new_id(&cp->cid_tbl);
1505 if (cid == -1) {
1506 ret = -ENOMEM;
1507 goto error;
1508 }
1509
1510 ctx->cid = cid;
1511 pages = PAGE_ALIGN(cp->task_array_size) / PAGE_SIZE;
1512
1513 ret = cnic_alloc_dma(dev, &iscsi->task_array_info, pages, 1);
1514 if (ret)
1515 goto error;
1516
1517 pages = PAGE_ALIGN(cp->r2tq_size) / PAGE_SIZE;
1518 ret = cnic_alloc_dma(dev, &iscsi->r2tq_info, pages, 1);
1519 if (ret)
1520 goto error;
1521
1522 pages = PAGE_ALIGN(cp->hq_size) / PAGE_SIZE;
1523 ret = cnic_alloc_dma(dev, &iscsi->hq_info, pages, 1);
1524 if (ret)
1525 goto error;
1526
1527 return 0;
1528
1529error:
1530 cnic_free_bnx2x_conn_resc(dev, l5_cid);
1531 return ret;
1532}
1533
1534static void *cnic_get_bnx2x_ctx(struct cnic_dev *dev, u32 cid, int init,
1535 struct regpair *ctx_addr)
1536{
1537 struct cnic_local *cp = dev->cnic_priv;
1538 struct cnic_eth_dev *ethdev = cp->ethdev;
1539 int blk = (cid - ethdev->starting_cid) / cp->cids_per_blk;
1540 int off = (cid - ethdev->starting_cid) % cp->cids_per_blk;
1541 unsigned long align_off = 0;
1542 dma_addr_t ctx_map;
1543 void *ctx;
1544
1545 if (cp->ctx_align) {
1546 unsigned long mask = cp->ctx_align - 1;
1547
1548 if (cp->ctx_arr[blk].mapping & mask)
1549 align_off = cp->ctx_align -
1550 (cp->ctx_arr[blk].mapping & mask);
1551 }
1552 ctx_map = cp->ctx_arr[blk].mapping + align_off +
1553 (off * BNX2X_CONTEXT_MEM_SIZE);
1554 ctx = cp->ctx_arr[blk].ctx + align_off +
1555 (off * BNX2X_CONTEXT_MEM_SIZE);
1556 if (init)
1557 memset(ctx, 0, BNX2X_CONTEXT_MEM_SIZE);
1558
1559 ctx_addr->lo = ctx_map & 0xffffffff;
1560 ctx_addr->hi = (u64) ctx_map >> 32;
1561 return ctx;
1562}
1563
1564static int cnic_setup_bnx2x_ctx(struct cnic_dev *dev, struct kwqe *wqes[],
1565 u32 num)
1566{
1567 struct cnic_local *cp = dev->cnic_priv;
1568 struct iscsi_kwqe_conn_offload1 *req1 =
1569 (struct iscsi_kwqe_conn_offload1 *) wqes[0];
1570 struct iscsi_kwqe_conn_offload2 *req2 =
1571 (struct iscsi_kwqe_conn_offload2 *) wqes[1];
1572 struct iscsi_kwqe_conn_offload3 *req3;
1573 struct cnic_context *ctx = &cp->ctx_tbl[req1->iscsi_conn_id];
1574 struct cnic_iscsi *iscsi = ctx->proto.iscsi;
1575 u32 cid = ctx->cid;
Michael Chanceb7e1c2010-10-06 03:14:54 +00001576 u32 hw_cid = BNX2X_HW_CID(cp, cid);
Michael Chan71034ba2009-10-10 13:46:59 +00001577 struct iscsi_context *ictx;
1578 struct regpair context_addr;
1579 int i, j, n = 2, n_max;
1580
1581 ctx->ctx_flags = 0;
1582 if (!req2->num_additional_wqes)
1583 return -EINVAL;
1584
1585 n_max = req2->num_additional_wqes + 2;
1586
1587 ictx = cnic_get_bnx2x_ctx(dev, cid, 1, &context_addr);
1588 if (ictx == NULL)
1589 return -ENOMEM;
1590
1591 req3 = (struct iscsi_kwqe_conn_offload3 *) wqes[n++];
1592
1593 ictx->xstorm_ag_context.hq_prod = 1;
1594
1595 ictx->xstorm_st_context.iscsi.first_burst_length =
1596 ISCSI_DEF_FIRST_BURST_LEN;
1597 ictx->xstorm_st_context.iscsi.max_send_pdu_length =
1598 ISCSI_DEF_MAX_RECV_SEG_LEN;
1599 ictx->xstorm_st_context.iscsi.sq_pbl_base.lo =
1600 req1->sq_page_table_addr_lo;
1601 ictx->xstorm_st_context.iscsi.sq_pbl_base.hi =
1602 req1->sq_page_table_addr_hi;
1603 ictx->xstorm_st_context.iscsi.sq_curr_pbe.lo = req2->sq_first_pte.hi;
1604 ictx->xstorm_st_context.iscsi.sq_curr_pbe.hi = req2->sq_first_pte.lo;
1605 ictx->xstorm_st_context.iscsi.hq_pbl_base.lo =
1606 iscsi->hq_info.pgtbl_map & 0xffffffff;
1607 ictx->xstorm_st_context.iscsi.hq_pbl_base.hi =
1608 (u64) iscsi->hq_info.pgtbl_map >> 32;
1609 ictx->xstorm_st_context.iscsi.hq_curr_pbe_base.lo =
1610 iscsi->hq_info.pgtbl[0];
1611 ictx->xstorm_st_context.iscsi.hq_curr_pbe_base.hi =
1612 iscsi->hq_info.pgtbl[1];
1613 ictx->xstorm_st_context.iscsi.r2tq_pbl_base.lo =
1614 iscsi->r2tq_info.pgtbl_map & 0xffffffff;
1615 ictx->xstorm_st_context.iscsi.r2tq_pbl_base.hi =
1616 (u64) iscsi->r2tq_info.pgtbl_map >> 32;
1617 ictx->xstorm_st_context.iscsi.r2tq_curr_pbe_base.lo =
1618 iscsi->r2tq_info.pgtbl[0];
1619 ictx->xstorm_st_context.iscsi.r2tq_curr_pbe_base.hi =
1620 iscsi->r2tq_info.pgtbl[1];
1621 ictx->xstorm_st_context.iscsi.task_pbl_base.lo =
1622 iscsi->task_array_info.pgtbl_map & 0xffffffff;
1623 ictx->xstorm_st_context.iscsi.task_pbl_base.hi =
1624 (u64) iscsi->task_array_info.pgtbl_map >> 32;
1625 ictx->xstorm_st_context.iscsi.task_pbl_cache_idx =
1626 BNX2X_ISCSI_PBL_NOT_CACHED;
1627 ictx->xstorm_st_context.iscsi.flags.flags |=
1628 XSTORM_ISCSI_CONTEXT_FLAGS_B_IMMEDIATE_DATA;
1629 ictx->xstorm_st_context.iscsi.flags.flags |=
1630 XSTORM_ISCSI_CONTEXT_FLAGS_B_INITIAL_R2T;
1631
1632 ictx->tstorm_st_context.iscsi.hdr_bytes_2_fetch = ISCSI_HEADER_SIZE;
1633 /* TSTORM requires the base address of RQ DB & not PTE */
1634 ictx->tstorm_st_context.iscsi.rq_db_phy_addr.lo =
1635 req2->rq_page_table_addr_lo & PAGE_MASK;
1636 ictx->tstorm_st_context.iscsi.rq_db_phy_addr.hi =
1637 req2->rq_page_table_addr_hi;
1638 ictx->tstorm_st_context.iscsi.iscsi_conn_id = req1->iscsi_conn_id;
1639 ictx->tstorm_st_context.tcp.cwnd = 0x5A8;
1640 ictx->tstorm_st_context.tcp.flags2 |=
1641 TSTORM_TCP_ST_CONTEXT_SECTION_DA_EN;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001642 ictx->tstorm_st_context.tcp.ooo_support_mode =
1643 TCP_TSTORM_OOO_DROP_AND_PROC_ACK;
Michael Chan71034ba2009-10-10 13:46:59 +00001644
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001645 ictx->timers_context.flags |= TIMERS_BLOCK_CONTEXT_CONN_VALID_FLG;
Michael Chan71034ba2009-10-10 13:46:59 +00001646
1647 ictx->ustorm_st_context.ring.rq.pbl_base.lo =
Michael Chan15971c32009-12-02 15:15:38 +00001648 req2->rq_page_table_addr_lo;
Michael Chan71034ba2009-10-10 13:46:59 +00001649 ictx->ustorm_st_context.ring.rq.pbl_base.hi =
Michael Chan15971c32009-12-02 15:15:38 +00001650 req2->rq_page_table_addr_hi;
Michael Chan71034ba2009-10-10 13:46:59 +00001651 ictx->ustorm_st_context.ring.rq.curr_pbe.lo = req3->qp_first_pte[0].hi;
1652 ictx->ustorm_st_context.ring.rq.curr_pbe.hi = req3->qp_first_pte[0].lo;
1653 ictx->ustorm_st_context.ring.r2tq.pbl_base.lo =
1654 iscsi->r2tq_info.pgtbl_map & 0xffffffff;
1655 ictx->ustorm_st_context.ring.r2tq.pbl_base.hi =
1656 (u64) iscsi->r2tq_info.pgtbl_map >> 32;
1657 ictx->ustorm_st_context.ring.r2tq.curr_pbe.lo =
1658 iscsi->r2tq_info.pgtbl[0];
1659 ictx->ustorm_st_context.ring.r2tq.curr_pbe.hi =
1660 iscsi->r2tq_info.pgtbl[1];
1661 ictx->ustorm_st_context.ring.cq_pbl_base.lo =
1662 req1->cq_page_table_addr_lo;
1663 ictx->ustorm_st_context.ring.cq_pbl_base.hi =
1664 req1->cq_page_table_addr_hi;
1665 ictx->ustorm_st_context.ring.cq[0].cq_sn = ISCSI_INITIAL_SN;
1666 ictx->ustorm_st_context.ring.cq[0].curr_pbe.lo = req2->cq_first_pte.hi;
1667 ictx->ustorm_st_context.ring.cq[0].curr_pbe.hi = req2->cq_first_pte.lo;
1668 ictx->ustorm_st_context.task_pbe_cache_index =
1669 BNX2X_ISCSI_PBL_NOT_CACHED;
1670 ictx->ustorm_st_context.task_pdu_cache_index =
1671 BNX2X_ISCSI_PDU_HEADER_NOT_CACHED;
1672
1673 for (i = 1, j = 1; i < cp->num_cqs; i++, j++) {
1674 if (j == 3) {
1675 if (n >= n_max)
1676 break;
1677 req3 = (struct iscsi_kwqe_conn_offload3 *) wqes[n++];
1678 j = 0;
1679 }
1680 ictx->ustorm_st_context.ring.cq[i].cq_sn = ISCSI_INITIAL_SN;
1681 ictx->ustorm_st_context.ring.cq[i].curr_pbe.lo =
1682 req3->qp_first_pte[j].hi;
1683 ictx->ustorm_st_context.ring.cq[i].curr_pbe.hi =
1684 req3->qp_first_pte[j].lo;
1685 }
1686
1687 ictx->ustorm_st_context.task_pbl_base.lo =
1688 iscsi->task_array_info.pgtbl_map & 0xffffffff;
1689 ictx->ustorm_st_context.task_pbl_base.hi =
1690 (u64) iscsi->task_array_info.pgtbl_map >> 32;
1691 ictx->ustorm_st_context.tce_phy_addr.lo =
1692 iscsi->task_array_info.pgtbl[0];
1693 ictx->ustorm_st_context.tce_phy_addr.hi =
1694 iscsi->task_array_info.pgtbl[1];
1695 ictx->ustorm_st_context.iscsi_conn_id = req1->iscsi_conn_id;
1696 ictx->ustorm_st_context.num_cqs = cp->num_cqs;
1697 ictx->ustorm_st_context.negotiated_rx |= ISCSI_DEF_MAX_RECV_SEG_LEN;
1698 ictx->ustorm_st_context.negotiated_rx_and_flags |=
1699 ISCSI_DEF_MAX_BURST_LEN;
1700 ictx->ustorm_st_context.negotiated_rx |=
1701 ISCSI_DEFAULT_MAX_OUTSTANDING_R2T <<
1702 USTORM_ISCSI_ST_CONTEXT_MAX_OUTSTANDING_R2TS_SHIFT;
1703
1704 ictx->cstorm_st_context.hq_pbl_base.lo =
1705 iscsi->hq_info.pgtbl_map & 0xffffffff;
1706 ictx->cstorm_st_context.hq_pbl_base.hi =
1707 (u64) iscsi->hq_info.pgtbl_map >> 32;
1708 ictx->cstorm_st_context.hq_curr_pbe.lo = iscsi->hq_info.pgtbl[0];
1709 ictx->cstorm_st_context.hq_curr_pbe.hi = iscsi->hq_info.pgtbl[1];
1710 ictx->cstorm_st_context.task_pbl_base.lo =
1711 iscsi->task_array_info.pgtbl_map & 0xffffffff;
1712 ictx->cstorm_st_context.task_pbl_base.hi =
1713 (u64) iscsi->task_array_info.pgtbl_map >> 32;
1714 /* CSTORM and USTORM initialization is different, CSTORM requires
1715 * CQ DB base & not PTE addr */
1716 ictx->cstorm_st_context.cq_db_base.lo =
1717 req1->cq_page_table_addr_lo & PAGE_MASK;
1718 ictx->cstorm_st_context.cq_db_base.hi = req1->cq_page_table_addr_hi;
1719 ictx->cstorm_st_context.iscsi_conn_id = req1->iscsi_conn_id;
1720 ictx->cstorm_st_context.cq_proc_en_bit_map = (1 << cp->num_cqs) - 1;
1721 for (i = 0; i < cp->num_cqs; i++) {
1722 ictx->cstorm_st_context.cq_c_prod_sqn_arr.sqn[i] =
1723 ISCSI_INITIAL_SN;
1724 ictx->cstorm_st_context.cq_c_sqn_2_notify_arr.sqn[i] =
1725 ISCSI_INITIAL_SN;
1726 }
1727
1728 ictx->xstorm_ag_context.cdu_reserved =
1729 CDU_RSRVD_VALUE_TYPE_A(hw_cid, CDU_REGION_NUMBER_XCM_AG,
1730 ISCSI_CONNECTION_TYPE);
1731 ictx->ustorm_ag_context.cdu_usage =
1732 CDU_RSRVD_VALUE_TYPE_A(hw_cid, CDU_REGION_NUMBER_UCM_AG,
1733 ISCSI_CONNECTION_TYPE);
1734 return 0;
1735
1736}
1737
1738static int cnic_bnx2x_iscsi_ofld1(struct cnic_dev *dev, struct kwqe *wqes[],
1739 u32 num, int *work)
1740{
1741 struct iscsi_kwqe_conn_offload1 *req1;
1742 struct iscsi_kwqe_conn_offload2 *req2;
1743 struct cnic_local *cp = dev->cnic_priv;
Michael Chanfdf24082010-10-13 14:06:47 +00001744 struct cnic_context *ctx;
Michael Chan71034ba2009-10-10 13:46:59 +00001745 struct iscsi_kcqe kcqe;
1746 struct kcqe *cqes[1];
1747 u32 l5_cid;
Michael Chanfdf24082010-10-13 14:06:47 +00001748 int ret = 0;
Michael Chan71034ba2009-10-10 13:46:59 +00001749
1750 if (num < 2) {
1751 *work = num;
1752 return -EINVAL;
1753 }
1754
1755 req1 = (struct iscsi_kwqe_conn_offload1 *) wqes[0];
1756 req2 = (struct iscsi_kwqe_conn_offload2 *) wqes[1];
1757 if ((num - 2) < req2->num_additional_wqes) {
1758 *work = num;
1759 return -EINVAL;
1760 }
Joe Perches779bb412010-11-14 17:04:37 +00001761 *work = 2 + req2->num_additional_wqes;
Michael Chan71034ba2009-10-10 13:46:59 +00001762
1763 l5_cid = req1->iscsi_conn_id;
1764 if (l5_cid >= MAX_ISCSI_TBL_SZ)
1765 return -EINVAL;
1766
1767 memset(&kcqe, 0, sizeof(kcqe));
1768 kcqe.op_code = ISCSI_KCQE_OPCODE_OFFLOAD_CONN;
1769 kcqe.iscsi_conn_id = l5_cid;
1770 kcqe.completion_status = ISCSI_KCQE_COMPLETION_STATUS_CTX_ALLOC_FAILURE;
1771
Michael Chanfdf24082010-10-13 14:06:47 +00001772 ctx = &cp->ctx_tbl[l5_cid];
1773 if (test_bit(CTX_FL_OFFLD_START, &ctx->ctx_flags)) {
1774 kcqe.completion_status =
1775 ISCSI_KCQE_COMPLETION_STATUS_CID_BUSY;
1776 goto done;
1777 }
1778
Michael Chan71034ba2009-10-10 13:46:59 +00001779 if (atomic_inc_return(&cp->iscsi_conn) > dev->max_iscsi_conn) {
1780 atomic_dec(&cp->iscsi_conn);
Michael Chan71034ba2009-10-10 13:46:59 +00001781 goto done;
1782 }
1783 ret = cnic_alloc_bnx2x_conn_resc(dev, l5_cid);
1784 if (ret) {
1785 atomic_dec(&cp->iscsi_conn);
1786 ret = 0;
1787 goto done;
1788 }
1789 ret = cnic_setup_bnx2x_ctx(dev, wqes, num);
1790 if (ret < 0) {
1791 cnic_free_bnx2x_conn_resc(dev, l5_cid);
1792 atomic_dec(&cp->iscsi_conn);
1793 goto done;
1794 }
1795
1796 kcqe.completion_status = ISCSI_KCQE_COMPLETION_STATUS_SUCCESS;
Michael Chanceb7e1c2010-10-06 03:14:54 +00001797 kcqe.iscsi_conn_context_id = BNX2X_HW_CID(cp, cp->ctx_tbl[l5_cid].cid);
Michael Chan71034ba2009-10-10 13:46:59 +00001798
1799done:
1800 cqes[0] = (struct kcqe *) &kcqe;
1801 cnic_reply_bnx2x_kcqes(dev, CNIC_ULP_ISCSI, cqes, 1);
1802 return ret;
1803}
1804
1805
1806static int cnic_bnx2x_iscsi_update(struct cnic_dev *dev, struct kwqe *kwqe)
1807{
1808 struct cnic_local *cp = dev->cnic_priv;
1809 struct iscsi_kwqe_conn_update *req =
1810 (struct iscsi_kwqe_conn_update *) kwqe;
1811 void *data;
1812 union l5cm_specific_data l5_data;
1813 u32 l5_cid, cid = BNX2X_SW_CID(req->context_id);
1814 int ret;
1815
1816 if (cnic_get_l5_cid(cp, cid, &l5_cid) != 0)
1817 return -EINVAL;
1818
1819 data = cnic_get_kwqe_16_data(cp, l5_cid, &l5_data);
1820 if (!data)
1821 return -ENOMEM;
1822
1823 memcpy(data, kwqe, sizeof(struct kwqe));
1824
1825 ret = cnic_submit_kwqe_16(dev, ISCSI_RAMROD_CMD_ID_UPDATE_CONN,
1826 req->context_id, ISCSI_CONNECTION_TYPE, &l5_data);
1827 return ret;
1828}
1829
Michael Chana2c9e762010-10-13 14:06:46 +00001830static int cnic_bnx2x_destroy_ramrod(struct cnic_dev *dev, u32 l5_cid)
Michael Chan71034ba2009-10-10 13:46:59 +00001831{
1832 struct cnic_local *cp = dev->cnic_priv;
Michael Chan71034ba2009-10-10 13:46:59 +00001833 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
Michael Chana2c9e762010-10-13 14:06:46 +00001834 union l5cm_specific_data l5_data;
1835 int ret;
Michael Chan68d7c1a2011-01-05 15:14:13 +00001836 u32 hw_cid;
Michael Chan71034ba2009-10-10 13:46:59 +00001837
Michael Chan71034ba2009-10-10 13:46:59 +00001838 init_waitqueue_head(&ctx->waitq);
1839 ctx->wait_cond = 0;
1840 memset(&l5_data, 0, sizeof(l5_data));
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001841 hw_cid = BNX2X_HW_CID(cp, ctx->cid);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001842
1843 ret = cnic_submit_kwqe_16(dev, RAMROD_CMD_ID_COMMON_CFC_DEL,
Michael Chan68d7c1a2011-01-05 15:14:13 +00001844 hw_cid, NONE_CONNECTION_TYPE, &l5_data);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001845
Michael Chan71034ba2009-10-10 13:46:59 +00001846 if (ret == 0)
1847 wait_event(ctx->waitq, ctx->wait_cond);
1848
Michael Chana2c9e762010-10-13 14:06:46 +00001849 return ret;
1850}
1851
1852static int cnic_bnx2x_iscsi_destroy(struct cnic_dev *dev, struct kwqe *kwqe)
1853{
1854 struct cnic_local *cp = dev->cnic_priv;
1855 struct iscsi_kwqe_conn_destroy *req =
1856 (struct iscsi_kwqe_conn_destroy *) kwqe;
1857 u32 l5_cid = req->reserved0;
1858 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
1859 int ret = 0;
1860 struct iscsi_kcqe kcqe;
1861 struct kcqe *cqes[1];
1862
1863 if (!test_bit(CTX_FL_OFFLD_START, &ctx->ctx_flags))
1864 goto skip_cfc_delete;
1865
Michael Chanfdf24082010-10-13 14:06:47 +00001866 if (!time_after(jiffies, ctx->timestamp + (2 * HZ))) {
1867 unsigned long delta = ctx->timestamp + (2 * HZ) - jiffies;
1868
1869 if (delta > (2 * HZ))
1870 delta = 0;
1871
1872 set_bit(CTX_FL_DELETE_WAIT, &ctx->ctx_flags);
1873 queue_delayed_work(cnic_wq, &cp->delete_task, delta);
1874 goto destroy_reply;
1875 }
Michael Chana2c9e762010-10-13 14:06:46 +00001876
1877 ret = cnic_bnx2x_destroy_ramrod(dev, l5_cid);
1878
Michael Chan71034ba2009-10-10 13:46:59 +00001879skip_cfc_delete:
1880 cnic_free_bnx2x_conn_resc(dev, l5_cid);
1881
1882 atomic_dec(&cp->iscsi_conn);
Michael Chanfdf24082010-10-13 14:06:47 +00001883 clear_bit(CTX_FL_OFFLD_START, &ctx->ctx_flags);
Michael Chan71034ba2009-10-10 13:46:59 +00001884
Michael Chanfdf24082010-10-13 14:06:47 +00001885destroy_reply:
Michael Chan71034ba2009-10-10 13:46:59 +00001886 memset(&kcqe, 0, sizeof(kcqe));
1887 kcqe.op_code = ISCSI_KCQE_OPCODE_DESTROY_CONN;
1888 kcqe.iscsi_conn_id = l5_cid;
1889 kcqe.completion_status = ISCSI_KCQE_COMPLETION_STATUS_SUCCESS;
1890 kcqe.iscsi_conn_context_id = req->context_id;
1891
1892 cqes[0] = (struct kcqe *) &kcqe;
1893 cnic_reply_bnx2x_kcqes(dev, CNIC_ULP_ISCSI, cqes, 1);
1894
1895 return ret;
1896}
1897
1898static void cnic_init_storm_conn_bufs(struct cnic_dev *dev,
1899 struct l4_kwq_connect_req1 *kwqe1,
1900 struct l4_kwq_connect_req3 *kwqe3,
1901 struct l5cm_active_conn_buffer *conn_buf)
1902{
1903 struct l5cm_conn_addr_params *conn_addr = &conn_buf->conn_addr_buf;
1904 struct l5cm_xstorm_conn_buffer *xstorm_buf =
1905 &conn_buf->xstorm_conn_buffer;
1906 struct l5cm_tstorm_conn_buffer *tstorm_buf =
1907 &conn_buf->tstorm_conn_buffer;
1908 struct regpair context_addr;
1909 u32 cid = BNX2X_SW_CID(kwqe1->cid);
1910 struct in6_addr src_ip, dst_ip;
1911 int i;
1912 u32 *addrp;
1913
1914 addrp = (u32 *) &conn_addr->local_ip_addr;
1915 for (i = 0; i < 4; i++, addrp++)
1916 src_ip.in6_u.u6_addr32[i] = cpu_to_be32(*addrp);
1917
1918 addrp = (u32 *) &conn_addr->remote_ip_addr;
1919 for (i = 0; i < 4; i++, addrp++)
1920 dst_ip.in6_u.u6_addr32[i] = cpu_to_be32(*addrp);
1921
1922 cnic_get_bnx2x_ctx(dev, cid, 0, &context_addr);
1923
1924 xstorm_buf->context_addr.hi = context_addr.hi;
1925 xstorm_buf->context_addr.lo = context_addr.lo;
1926 xstorm_buf->mss = 0xffff;
1927 xstorm_buf->rcv_buf = kwqe3->rcv_buf;
1928 if (kwqe1->tcp_flags & L4_KWQ_CONNECT_REQ1_NAGLE_ENABLE)
1929 xstorm_buf->params |= L5CM_XSTORM_CONN_BUFFER_NAGLE_ENABLE;
1930 xstorm_buf->pseudo_header_checksum =
1931 swab16(~csum_ipv6_magic(&src_ip, &dst_ip, 0, IPPROTO_TCP, 0));
1932
1933 if (!(kwqe1->tcp_flags & L4_KWQ_CONNECT_REQ1_NO_DELAY_ACK))
1934 tstorm_buf->params |=
1935 L5CM_TSTORM_CONN_BUFFER_DELAYED_ACK_ENABLE;
1936 if (kwqe3->ka_timeout) {
1937 tstorm_buf->ka_enable = 1;
1938 tstorm_buf->ka_timeout = kwqe3->ka_timeout;
1939 tstorm_buf->ka_interval = kwqe3->ka_interval;
1940 tstorm_buf->ka_max_probe_count = kwqe3->ka_max_probe_count;
1941 }
1942 tstorm_buf->rcv_buf = kwqe3->rcv_buf;
1943 tstorm_buf->snd_buf = kwqe3->snd_buf;
1944 tstorm_buf->max_rt_time = 0xffffffff;
1945}
1946
1947static void cnic_init_bnx2x_mac(struct cnic_dev *dev)
1948{
1949 struct cnic_local *cp = dev->cnic_priv;
Michael Chan14203982010-10-06 03:16:06 +00001950 u32 pfid = cp->pfid;
Michael Chan71034ba2009-10-10 13:46:59 +00001951 u8 *mac = dev->mac_addr;
1952
1953 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001954 XSTORM_ISCSI_LOCAL_MAC_ADDR0_OFFSET(pfid), mac[0]);
Michael Chan71034ba2009-10-10 13:46:59 +00001955 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001956 XSTORM_ISCSI_LOCAL_MAC_ADDR1_OFFSET(pfid), mac[1]);
Michael Chan71034ba2009-10-10 13:46:59 +00001957 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001958 XSTORM_ISCSI_LOCAL_MAC_ADDR2_OFFSET(pfid), mac[2]);
Michael Chan71034ba2009-10-10 13:46:59 +00001959 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001960 XSTORM_ISCSI_LOCAL_MAC_ADDR3_OFFSET(pfid), mac[3]);
Michael Chan71034ba2009-10-10 13:46:59 +00001961 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001962 XSTORM_ISCSI_LOCAL_MAC_ADDR4_OFFSET(pfid), mac[4]);
Michael Chan71034ba2009-10-10 13:46:59 +00001963 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001964 XSTORM_ISCSI_LOCAL_MAC_ADDR5_OFFSET(pfid), mac[5]);
Michael Chan71034ba2009-10-10 13:46:59 +00001965
1966 CNIC_WR8(dev, BAR_TSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001967 TSTORM_ISCSI_TCP_VARS_LSB_LOCAL_MAC_ADDR_OFFSET(pfid), mac[5]);
Michael Chan71034ba2009-10-10 13:46:59 +00001968 CNIC_WR8(dev, BAR_TSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001969 TSTORM_ISCSI_TCP_VARS_LSB_LOCAL_MAC_ADDR_OFFSET(pfid) + 1,
Michael Chan71034ba2009-10-10 13:46:59 +00001970 mac[4]);
1971 CNIC_WR8(dev, BAR_TSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001972 TSTORM_ISCSI_TCP_VARS_MSB_LOCAL_MAC_ADDR_OFFSET(pfid), mac[3]);
Michael Chan71034ba2009-10-10 13:46:59 +00001973 CNIC_WR8(dev, BAR_TSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001974 TSTORM_ISCSI_TCP_VARS_MSB_LOCAL_MAC_ADDR_OFFSET(pfid) + 1,
Michael Chan71034ba2009-10-10 13:46:59 +00001975 mac[2]);
1976 CNIC_WR8(dev, BAR_TSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001977 TSTORM_ISCSI_TCP_VARS_MSB_LOCAL_MAC_ADDR_OFFSET(pfid) + 2,
Michael Chan71034ba2009-10-10 13:46:59 +00001978 mac[1]);
1979 CNIC_WR8(dev, BAR_TSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001980 TSTORM_ISCSI_TCP_VARS_MSB_LOCAL_MAC_ADDR_OFFSET(pfid) + 3,
Michael Chan71034ba2009-10-10 13:46:59 +00001981 mac[0]);
1982}
1983
1984static void cnic_bnx2x_set_tcp_timestamp(struct cnic_dev *dev, int tcp_ts)
1985{
1986 struct cnic_local *cp = dev->cnic_priv;
1987 u8 xstorm_flags = XSTORM_L5CM_TCP_FLAGS_WND_SCL_EN;
1988 u16 tstorm_flags = 0;
1989
1990 if (tcp_ts) {
1991 xstorm_flags |= XSTORM_L5CM_TCP_FLAGS_TS_ENABLED;
1992 tstorm_flags |= TSTORM_L5CM_TCP_FLAGS_TS_ENABLED;
1993 }
1994
1995 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001996 XSTORM_ISCSI_TCP_VARS_FLAGS_OFFSET(cp->pfid), xstorm_flags);
Michael Chan71034ba2009-10-10 13:46:59 +00001997
1998 CNIC_WR16(dev, BAR_TSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001999 TSTORM_ISCSI_TCP_VARS_FLAGS_OFFSET(cp->pfid), tstorm_flags);
Michael Chan71034ba2009-10-10 13:46:59 +00002000}
2001
2002static int cnic_bnx2x_connect(struct cnic_dev *dev, struct kwqe *wqes[],
2003 u32 num, int *work)
2004{
2005 struct cnic_local *cp = dev->cnic_priv;
2006 struct l4_kwq_connect_req1 *kwqe1 =
2007 (struct l4_kwq_connect_req1 *) wqes[0];
2008 struct l4_kwq_connect_req3 *kwqe3;
2009 struct l5cm_active_conn_buffer *conn_buf;
2010 struct l5cm_conn_addr_params *conn_addr;
2011 union l5cm_specific_data l5_data;
2012 u32 l5_cid = kwqe1->pg_cid;
2013 struct cnic_sock *csk = &cp->csk_tbl[l5_cid];
2014 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
2015 int ret;
2016
2017 if (num < 2) {
2018 *work = num;
2019 return -EINVAL;
2020 }
2021
2022 if (kwqe1->conn_flags & L4_KWQ_CONNECT_REQ1_IP_V6)
2023 *work = 3;
2024 else
2025 *work = 2;
2026
2027 if (num < *work) {
2028 *work = num;
2029 return -EINVAL;
2030 }
2031
2032 if (sizeof(*conn_buf) > CNIC_KWQ16_DATA_SIZE) {
Joe Perchesddf79b22010-02-17 15:01:54 +00002033 netdev_err(dev->netdev, "conn_buf size too big\n");
Michael Chan71034ba2009-10-10 13:46:59 +00002034 return -ENOMEM;
2035 }
2036 conn_buf = cnic_get_kwqe_16_data(cp, l5_cid, &l5_data);
2037 if (!conn_buf)
2038 return -ENOMEM;
2039
2040 memset(conn_buf, 0, sizeof(*conn_buf));
2041
2042 conn_addr = &conn_buf->conn_addr_buf;
2043 conn_addr->remote_addr_0 = csk->ha[0];
2044 conn_addr->remote_addr_1 = csk->ha[1];
2045 conn_addr->remote_addr_2 = csk->ha[2];
2046 conn_addr->remote_addr_3 = csk->ha[3];
2047 conn_addr->remote_addr_4 = csk->ha[4];
2048 conn_addr->remote_addr_5 = csk->ha[5];
2049
2050 if (kwqe1->conn_flags & L4_KWQ_CONNECT_REQ1_IP_V6) {
2051 struct l4_kwq_connect_req2 *kwqe2 =
2052 (struct l4_kwq_connect_req2 *) wqes[1];
2053
2054 conn_addr->local_ip_addr.ip_addr_hi_hi = kwqe2->src_ip_v6_4;
2055 conn_addr->local_ip_addr.ip_addr_hi_lo = kwqe2->src_ip_v6_3;
2056 conn_addr->local_ip_addr.ip_addr_lo_hi = kwqe2->src_ip_v6_2;
2057
2058 conn_addr->remote_ip_addr.ip_addr_hi_hi = kwqe2->dst_ip_v6_4;
2059 conn_addr->remote_ip_addr.ip_addr_hi_lo = kwqe2->dst_ip_v6_3;
2060 conn_addr->remote_ip_addr.ip_addr_lo_hi = kwqe2->dst_ip_v6_2;
2061 conn_addr->params |= L5CM_CONN_ADDR_PARAMS_IP_VERSION;
2062 }
2063 kwqe3 = (struct l4_kwq_connect_req3 *) wqes[*work - 1];
2064
2065 conn_addr->local_ip_addr.ip_addr_lo_lo = kwqe1->src_ip;
2066 conn_addr->remote_ip_addr.ip_addr_lo_lo = kwqe1->dst_ip;
2067 conn_addr->local_tcp_port = kwqe1->src_port;
2068 conn_addr->remote_tcp_port = kwqe1->dst_port;
2069
2070 conn_addr->pmtu = kwqe3->pmtu;
2071 cnic_init_storm_conn_bufs(dev, kwqe1, kwqe3, conn_buf);
2072
2073 CNIC_WR16(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00002074 XSTORM_ISCSI_LOCAL_VLAN_OFFSET(cp->pfid), csk->vlan_id);
Michael Chan71034ba2009-10-10 13:46:59 +00002075
2076 cnic_bnx2x_set_tcp_timestamp(dev,
2077 kwqe1->tcp_flags & L4_KWQ_CONNECT_REQ1_TIME_STAMP);
2078
2079 ret = cnic_submit_kwqe_16(dev, L5CM_RAMROD_CMD_ID_TCP_CONNECT,
2080 kwqe1->cid, ISCSI_CONNECTION_TYPE, &l5_data);
2081 if (!ret)
Michael Chan6e0dda02010-10-13 14:06:45 +00002082 set_bit(CTX_FL_OFFLD_START, &ctx->ctx_flags);
Michael Chan71034ba2009-10-10 13:46:59 +00002083
2084 return ret;
2085}
2086
2087static int cnic_bnx2x_close(struct cnic_dev *dev, struct kwqe *kwqe)
2088{
2089 struct l4_kwq_close_req *req = (struct l4_kwq_close_req *) kwqe;
2090 union l5cm_specific_data l5_data;
2091 int ret;
2092
2093 memset(&l5_data, 0, sizeof(l5_data));
2094 ret = cnic_submit_kwqe_16(dev, L5CM_RAMROD_CMD_ID_CLOSE,
2095 req->cid, ISCSI_CONNECTION_TYPE, &l5_data);
2096 return ret;
2097}
2098
2099static int cnic_bnx2x_reset(struct cnic_dev *dev, struct kwqe *kwqe)
2100{
2101 struct l4_kwq_reset_req *req = (struct l4_kwq_reset_req *) kwqe;
2102 union l5cm_specific_data l5_data;
2103 int ret;
2104
2105 memset(&l5_data, 0, sizeof(l5_data));
2106 ret = cnic_submit_kwqe_16(dev, L5CM_RAMROD_CMD_ID_ABORT,
2107 req->cid, ISCSI_CONNECTION_TYPE, &l5_data);
2108 return ret;
2109}
2110static int cnic_bnx2x_offload_pg(struct cnic_dev *dev, struct kwqe *kwqe)
2111{
2112 struct l4_kwq_offload_pg *req = (struct l4_kwq_offload_pg *) kwqe;
2113 struct l4_kcq kcqe;
2114 struct kcqe *cqes[1];
2115
2116 memset(&kcqe, 0, sizeof(kcqe));
2117 kcqe.pg_host_opaque = req->host_opaque;
2118 kcqe.pg_cid = req->host_opaque;
2119 kcqe.op_code = L4_KCQE_OPCODE_VALUE_OFFLOAD_PG;
2120 cqes[0] = (struct kcqe *) &kcqe;
2121 cnic_reply_bnx2x_kcqes(dev, CNIC_ULP_L4, cqes, 1);
2122 return 0;
2123}
2124
2125static int cnic_bnx2x_update_pg(struct cnic_dev *dev, struct kwqe *kwqe)
2126{
2127 struct l4_kwq_update_pg *req = (struct l4_kwq_update_pg *) kwqe;
2128 struct l4_kcq kcqe;
2129 struct kcqe *cqes[1];
2130
2131 memset(&kcqe, 0, sizeof(kcqe));
2132 kcqe.pg_host_opaque = req->pg_host_opaque;
2133 kcqe.pg_cid = req->pg_cid;
2134 kcqe.op_code = L4_KCQE_OPCODE_VALUE_UPDATE_PG;
2135 cqes[0] = (struct kcqe *) &kcqe;
2136 cnic_reply_bnx2x_kcqes(dev, CNIC_ULP_L4, cqes, 1);
2137 return 0;
2138}
2139
Michael Chane1928c82010-12-23 07:43:04 +00002140static int cnic_bnx2x_fcoe_stat(struct cnic_dev *dev, struct kwqe *kwqe)
2141{
2142 struct fcoe_kwqe_stat *req;
2143 struct fcoe_stat_ramrod_params *fcoe_stat;
2144 union l5cm_specific_data l5_data;
2145 struct cnic_local *cp = dev->cnic_priv;
2146 int ret;
2147 u32 cid;
2148
2149 req = (struct fcoe_kwqe_stat *) kwqe;
2150 cid = BNX2X_HW_CID(cp, cp->fcoe_init_cid);
2151
2152 fcoe_stat = cnic_get_kwqe_16_data(cp, BNX2X_FCOE_L5_CID_BASE, &l5_data);
2153 if (!fcoe_stat)
2154 return -ENOMEM;
2155
2156 memset(fcoe_stat, 0, sizeof(*fcoe_stat));
2157 memcpy(&fcoe_stat->stat_kwqe, req, sizeof(*req));
2158
2159 ret = cnic_submit_kwqe_16(dev, FCOE_RAMROD_CMD_ID_STAT, cid,
2160 FCOE_CONNECTION_TYPE, &l5_data);
2161 return ret;
2162}
2163
2164static int cnic_bnx2x_fcoe_init1(struct cnic_dev *dev, struct kwqe *wqes[],
2165 u32 num, int *work)
2166{
2167 int ret;
2168 struct cnic_local *cp = dev->cnic_priv;
2169 u32 cid;
2170 struct fcoe_init_ramrod_params *fcoe_init;
2171 struct fcoe_kwqe_init1 *req1;
2172 struct fcoe_kwqe_init2 *req2;
2173 struct fcoe_kwqe_init3 *req3;
2174 union l5cm_specific_data l5_data;
2175
2176 if (num < 3) {
2177 *work = num;
2178 return -EINVAL;
2179 }
2180 req1 = (struct fcoe_kwqe_init1 *) wqes[0];
2181 req2 = (struct fcoe_kwqe_init2 *) wqes[1];
2182 req3 = (struct fcoe_kwqe_init3 *) wqes[2];
2183 if (req2->hdr.op_code != FCOE_KWQE_OPCODE_INIT2) {
2184 *work = 1;
2185 return -EINVAL;
2186 }
2187 if (req3->hdr.op_code != FCOE_KWQE_OPCODE_INIT3) {
2188 *work = 2;
2189 return -EINVAL;
2190 }
2191
2192 if (sizeof(*fcoe_init) > CNIC_KWQ16_DATA_SIZE) {
2193 netdev_err(dev->netdev, "fcoe_init size too big\n");
2194 return -ENOMEM;
2195 }
2196 fcoe_init = cnic_get_kwqe_16_data(cp, BNX2X_FCOE_L5_CID_BASE, &l5_data);
2197 if (!fcoe_init)
2198 return -ENOMEM;
2199
2200 memset(fcoe_init, 0, sizeof(*fcoe_init));
2201 memcpy(&fcoe_init->init_kwqe1, req1, sizeof(*req1));
2202 memcpy(&fcoe_init->init_kwqe2, req2, sizeof(*req2));
2203 memcpy(&fcoe_init->init_kwqe3, req3, sizeof(*req3));
2204 fcoe_init->eq_addr.lo = cp->kcq2.dma.pg_map_arr[0] & 0xffffffff;
2205 fcoe_init->eq_addr.hi = (u64) cp->kcq2.dma.pg_map_arr[0] >> 32;
2206 fcoe_init->eq_next_page_addr.lo =
2207 cp->kcq2.dma.pg_map_arr[1] & 0xffffffff;
2208 fcoe_init->eq_next_page_addr.hi =
2209 (u64) cp->kcq2.dma.pg_map_arr[1] >> 32;
2210
2211 fcoe_init->sb_num = cp->status_blk_num;
2212 fcoe_init->eq_prod = MAX_KCQ_IDX;
2213 fcoe_init->sb_id = HC_INDEX_FCOE_EQ_CONS;
2214 cp->kcq2.sw_prod_idx = 0;
2215
2216 cid = BNX2X_HW_CID(cp, cp->fcoe_init_cid);
Michael Chane1928c82010-12-23 07:43:04 +00002217 ret = cnic_submit_kwqe_16(dev, FCOE_RAMROD_CMD_ID_INIT, cid,
2218 FCOE_CONNECTION_TYPE, &l5_data);
2219 *work = 3;
2220 return ret;
2221}
2222
2223static int cnic_bnx2x_fcoe_ofld1(struct cnic_dev *dev, struct kwqe *wqes[],
2224 u32 num, int *work)
2225{
2226 int ret = 0;
2227 u32 cid = -1, l5_cid;
2228 struct cnic_local *cp = dev->cnic_priv;
2229 struct fcoe_kwqe_conn_offload1 *req1;
2230 struct fcoe_kwqe_conn_offload2 *req2;
2231 struct fcoe_kwqe_conn_offload3 *req3;
2232 struct fcoe_kwqe_conn_offload4 *req4;
2233 struct fcoe_conn_offload_ramrod_params *fcoe_offload;
2234 struct cnic_context *ctx;
2235 struct fcoe_context *fctx;
2236 struct regpair ctx_addr;
2237 union l5cm_specific_data l5_data;
2238 struct fcoe_kcqe kcqe;
2239 struct kcqe *cqes[1];
2240
2241 if (num < 4) {
2242 *work = num;
2243 return -EINVAL;
2244 }
2245 req1 = (struct fcoe_kwqe_conn_offload1 *) wqes[0];
2246 req2 = (struct fcoe_kwqe_conn_offload2 *) wqes[1];
2247 req3 = (struct fcoe_kwqe_conn_offload3 *) wqes[2];
2248 req4 = (struct fcoe_kwqe_conn_offload4 *) wqes[3];
2249
2250 *work = 4;
2251
2252 l5_cid = req1->fcoe_conn_id;
2253 if (l5_cid >= BNX2X_FCOE_NUM_CONNECTIONS)
2254 goto err_reply;
2255
2256 l5_cid += BNX2X_FCOE_L5_CID_BASE;
2257
2258 ctx = &cp->ctx_tbl[l5_cid];
2259 if (test_bit(CTX_FL_OFFLD_START, &ctx->ctx_flags))
2260 goto err_reply;
2261
2262 ret = cnic_alloc_bnx2x_conn_resc(dev, l5_cid);
2263 if (ret) {
2264 ret = 0;
2265 goto err_reply;
2266 }
2267 cid = ctx->cid;
2268
2269 fctx = cnic_get_bnx2x_ctx(dev, cid, 1, &ctx_addr);
2270 if (fctx) {
2271 u32 hw_cid = BNX2X_HW_CID(cp, cid);
2272 u32 val;
2273
2274 val = CDU_RSRVD_VALUE_TYPE_A(hw_cid, CDU_REGION_NUMBER_XCM_AG,
2275 FCOE_CONNECTION_TYPE);
2276 fctx->xstorm_ag_context.cdu_reserved = val;
2277 val = CDU_RSRVD_VALUE_TYPE_A(hw_cid, CDU_REGION_NUMBER_UCM_AG,
2278 FCOE_CONNECTION_TYPE);
2279 fctx->ustorm_ag_context.cdu_usage = val;
2280 }
2281 if (sizeof(*fcoe_offload) > CNIC_KWQ16_DATA_SIZE) {
2282 netdev_err(dev->netdev, "fcoe_offload size too big\n");
2283 goto err_reply;
2284 }
2285 fcoe_offload = cnic_get_kwqe_16_data(cp, l5_cid, &l5_data);
2286 if (!fcoe_offload)
2287 goto err_reply;
2288
2289 memset(fcoe_offload, 0, sizeof(*fcoe_offload));
2290 memcpy(&fcoe_offload->offload_kwqe1, req1, sizeof(*req1));
2291 memcpy(&fcoe_offload->offload_kwqe2, req2, sizeof(*req2));
2292 memcpy(&fcoe_offload->offload_kwqe3, req3, sizeof(*req3));
2293 memcpy(&fcoe_offload->offload_kwqe4, req4, sizeof(*req4));
2294
2295 cid = BNX2X_HW_CID(cp, cid);
2296 ret = cnic_submit_kwqe_16(dev, FCOE_RAMROD_CMD_ID_OFFLOAD_CONN, cid,
2297 FCOE_CONNECTION_TYPE, &l5_data);
2298 if (!ret)
2299 set_bit(CTX_FL_OFFLD_START, &ctx->ctx_flags);
2300
2301 return ret;
2302
2303err_reply:
2304 if (cid != -1)
2305 cnic_free_bnx2x_conn_resc(dev, l5_cid);
2306
2307 memset(&kcqe, 0, sizeof(kcqe));
2308 kcqe.op_code = FCOE_KCQE_OPCODE_OFFLOAD_CONN;
2309 kcqe.fcoe_conn_id = req1->fcoe_conn_id;
2310 kcqe.completion_status = FCOE_KCQE_COMPLETION_STATUS_CTX_ALLOC_FAILURE;
2311
2312 cqes[0] = (struct kcqe *) &kcqe;
2313 cnic_reply_bnx2x_kcqes(dev, CNIC_ULP_FCOE, cqes, 1);
2314 return ret;
2315}
2316
2317static int cnic_bnx2x_fcoe_enable(struct cnic_dev *dev, struct kwqe *kwqe)
2318{
2319 struct fcoe_kwqe_conn_enable_disable *req;
2320 struct fcoe_conn_enable_disable_ramrod_params *fcoe_enable;
2321 union l5cm_specific_data l5_data;
2322 int ret;
2323 u32 cid, l5_cid;
2324 struct cnic_local *cp = dev->cnic_priv;
2325
2326 req = (struct fcoe_kwqe_conn_enable_disable *) kwqe;
2327 cid = req->context_id;
2328 l5_cid = req->conn_id + BNX2X_FCOE_L5_CID_BASE;
2329
2330 if (sizeof(*fcoe_enable) > CNIC_KWQ16_DATA_SIZE) {
2331 netdev_err(dev->netdev, "fcoe_enable size too big\n");
2332 return -ENOMEM;
2333 }
2334 fcoe_enable = cnic_get_kwqe_16_data(cp, l5_cid, &l5_data);
2335 if (!fcoe_enable)
2336 return -ENOMEM;
2337
2338 memset(fcoe_enable, 0, sizeof(*fcoe_enable));
2339 memcpy(&fcoe_enable->enable_disable_kwqe, req, sizeof(*req));
2340 ret = cnic_submit_kwqe_16(dev, FCOE_RAMROD_CMD_ID_ENABLE_CONN, cid,
2341 FCOE_CONNECTION_TYPE, &l5_data);
2342 return ret;
2343}
2344
2345static int cnic_bnx2x_fcoe_disable(struct cnic_dev *dev, struct kwqe *kwqe)
2346{
2347 struct fcoe_kwqe_conn_enable_disable *req;
2348 struct fcoe_conn_enable_disable_ramrod_params *fcoe_disable;
2349 union l5cm_specific_data l5_data;
2350 int ret;
2351 u32 cid, l5_cid;
2352 struct cnic_local *cp = dev->cnic_priv;
2353
2354 req = (struct fcoe_kwqe_conn_enable_disable *) kwqe;
2355 cid = req->context_id;
2356 l5_cid = req->conn_id;
2357 if (l5_cid >= BNX2X_FCOE_NUM_CONNECTIONS)
2358 return -EINVAL;
2359
2360 l5_cid += BNX2X_FCOE_L5_CID_BASE;
2361
2362 if (sizeof(*fcoe_disable) > CNIC_KWQ16_DATA_SIZE) {
2363 netdev_err(dev->netdev, "fcoe_disable size too big\n");
2364 return -ENOMEM;
2365 }
2366 fcoe_disable = cnic_get_kwqe_16_data(cp, l5_cid, &l5_data);
2367 if (!fcoe_disable)
2368 return -ENOMEM;
2369
2370 memset(fcoe_disable, 0, sizeof(*fcoe_disable));
2371 memcpy(&fcoe_disable->enable_disable_kwqe, req, sizeof(*req));
2372 ret = cnic_submit_kwqe_16(dev, FCOE_RAMROD_CMD_ID_DISABLE_CONN, cid,
2373 FCOE_CONNECTION_TYPE, &l5_data);
2374 return ret;
2375}
2376
2377static int cnic_bnx2x_fcoe_destroy(struct cnic_dev *dev, struct kwqe *kwqe)
2378{
2379 struct fcoe_kwqe_conn_destroy *req;
2380 union l5cm_specific_data l5_data;
2381 int ret;
2382 u32 cid, l5_cid;
2383 struct cnic_local *cp = dev->cnic_priv;
2384 struct cnic_context *ctx;
2385 struct fcoe_kcqe kcqe;
2386 struct kcqe *cqes[1];
2387
2388 req = (struct fcoe_kwqe_conn_destroy *) kwqe;
2389 cid = req->context_id;
2390 l5_cid = req->conn_id;
2391 if (l5_cid >= BNX2X_FCOE_NUM_CONNECTIONS)
2392 return -EINVAL;
2393
2394 l5_cid += BNX2X_FCOE_L5_CID_BASE;
2395
2396 ctx = &cp->ctx_tbl[l5_cid];
2397
2398 init_waitqueue_head(&ctx->waitq);
2399 ctx->wait_cond = 0;
2400
2401 memset(&l5_data, 0, sizeof(l5_data));
2402 ret = cnic_submit_kwqe_16(dev, FCOE_RAMROD_CMD_ID_TERMINATE_CONN, cid,
2403 FCOE_CONNECTION_TYPE, &l5_data);
2404 if (ret == 0) {
2405 wait_event(ctx->waitq, ctx->wait_cond);
2406 set_bit(CTX_FL_DELETE_WAIT, &ctx->ctx_flags);
2407 queue_delayed_work(cnic_wq, &cp->delete_task,
2408 msecs_to_jiffies(2000));
2409 }
2410
2411 memset(&kcqe, 0, sizeof(kcqe));
2412 kcqe.op_code = FCOE_KCQE_OPCODE_DESTROY_CONN;
2413 kcqe.fcoe_conn_id = req->conn_id;
2414 kcqe.fcoe_conn_context_id = cid;
2415
2416 cqes[0] = (struct kcqe *) &kcqe;
2417 cnic_reply_bnx2x_kcqes(dev, CNIC_ULP_FCOE, cqes, 1);
2418 return ret;
2419}
2420
2421static int cnic_bnx2x_fcoe_fw_destroy(struct cnic_dev *dev, struct kwqe *kwqe)
2422{
2423 struct fcoe_kwqe_destroy *req;
2424 union l5cm_specific_data l5_data;
2425 struct cnic_local *cp = dev->cnic_priv;
2426 int ret;
2427 u32 cid;
2428
2429 req = (struct fcoe_kwqe_destroy *) kwqe;
2430 cid = BNX2X_HW_CID(cp, cp->fcoe_init_cid);
2431
2432 memset(&l5_data, 0, sizeof(l5_data));
2433 ret = cnic_submit_kwqe_16(dev, FCOE_RAMROD_CMD_ID_DESTROY, cid,
2434 FCOE_CONNECTION_TYPE, &l5_data);
2435 return ret;
2436}
2437
2438static int cnic_submit_bnx2x_iscsi_kwqes(struct cnic_dev *dev,
2439 struct kwqe *wqes[], u32 num_wqes)
Michael Chan71034ba2009-10-10 13:46:59 +00002440{
2441 int i, work, ret;
2442 u32 opcode;
2443 struct kwqe *kwqe;
2444
2445 if (!test_bit(CNIC_F_CNIC_UP, &dev->flags))
2446 return -EAGAIN; /* bnx2 is down */
2447
2448 for (i = 0; i < num_wqes; ) {
2449 kwqe = wqes[i];
2450 opcode = KWQE_OPCODE(kwqe->kwqe_op_flag);
2451 work = 1;
2452
2453 switch (opcode) {
2454 case ISCSI_KWQE_OPCODE_INIT1:
2455 ret = cnic_bnx2x_iscsi_init1(dev, kwqe);
2456 break;
2457 case ISCSI_KWQE_OPCODE_INIT2:
2458 ret = cnic_bnx2x_iscsi_init2(dev, kwqe);
2459 break;
2460 case ISCSI_KWQE_OPCODE_OFFLOAD_CONN1:
2461 ret = cnic_bnx2x_iscsi_ofld1(dev, &wqes[i],
2462 num_wqes - i, &work);
2463 break;
2464 case ISCSI_KWQE_OPCODE_UPDATE_CONN:
2465 ret = cnic_bnx2x_iscsi_update(dev, kwqe);
2466 break;
2467 case ISCSI_KWQE_OPCODE_DESTROY_CONN:
2468 ret = cnic_bnx2x_iscsi_destroy(dev, kwqe);
2469 break;
2470 case L4_KWQE_OPCODE_VALUE_CONNECT1:
2471 ret = cnic_bnx2x_connect(dev, &wqes[i], num_wqes - i,
2472 &work);
2473 break;
2474 case L4_KWQE_OPCODE_VALUE_CLOSE:
2475 ret = cnic_bnx2x_close(dev, kwqe);
2476 break;
2477 case L4_KWQE_OPCODE_VALUE_RESET:
2478 ret = cnic_bnx2x_reset(dev, kwqe);
2479 break;
2480 case L4_KWQE_OPCODE_VALUE_OFFLOAD_PG:
2481 ret = cnic_bnx2x_offload_pg(dev, kwqe);
2482 break;
2483 case L4_KWQE_OPCODE_VALUE_UPDATE_PG:
2484 ret = cnic_bnx2x_update_pg(dev, kwqe);
2485 break;
2486 case L4_KWQE_OPCODE_VALUE_UPLOAD_PG:
2487 ret = 0;
2488 break;
2489 default:
2490 ret = 0;
Joe Perchesddf79b22010-02-17 15:01:54 +00002491 netdev_err(dev->netdev, "Unknown type of KWQE(0x%x)\n",
2492 opcode);
Michael Chan71034ba2009-10-10 13:46:59 +00002493 break;
2494 }
2495 if (ret < 0)
Joe Perchesddf79b22010-02-17 15:01:54 +00002496 netdev_err(dev->netdev, "KWQE(0x%x) failed\n",
2497 opcode);
Michael Chan71034ba2009-10-10 13:46:59 +00002498 i += work;
2499 }
2500 return 0;
2501}
2502
Michael Chane1928c82010-12-23 07:43:04 +00002503static int cnic_submit_bnx2x_fcoe_kwqes(struct cnic_dev *dev,
2504 struct kwqe *wqes[], u32 num_wqes)
2505{
2506 struct cnic_local *cp = dev->cnic_priv;
2507 int i, work, ret;
2508 u32 opcode;
2509 struct kwqe *kwqe;
2510
2511 if (!test_bit(CNIC_F_CNIC_UP, &dev->flags))
2512 return -EAGAIN; /* bnx2 is down */
2513
2514 if (BNX2X_CHIP_NUM(cp->chip_id) == BNX2X_CHIP_NUM_57710)
2515 return -EINVAL;
2516
2517 for (i = 0; i < num_wqes; ) {
2518 kwqe = wqes[i];
2519 opcode = KWQE_OPCODE(kwqe->kwqe_op_flag);
2520 work = 1;
2521
2522 switch (opcode) {
2523 case FCOE_KWQE_OPCODE_INIT1:
2524 ret = cnic_bnx2x_fcoe_init1(dev, &wqes[i],
2525 num_wqes - i, &work);
2526 break;
2527 case FCOE_KWQE_OPCODE_OFFLOAD_CONN1:
2528 ret = cnic_bnx2x_fcoe_ofld1(dev, &wqes[i],
2529 num_wqes - i, &work);
2530 break;
2531 case FCOE_KWQE_OPCODE_ENABLE_CONN:
2532 ret = cnic_bnx2x_fcoe_enable(dev, kwqe);
2533 break;
2534 case FCOE_KWQE_OPCODE_DISABLE_CONN:
2535 ret = cnic_bnx2x_fcoe_disable(dev, kwqe);
2536 break;
2537 case FCOE_KWQE_OPCODE_DESTROY_CONN:
2538 ret = cnic_bnx2x_fcoe_destroy(dev, kwqe);
2539 break;
2540 case FCOE_KWQE_OPCODE_DESTROY:
2541 ret = cnic_bnx2x_fcoe_fw_destroy(dev, kwqe);
2542 break;
2543 case FCOE_KWQE_OPCODE_STAT:
2544 ret = cnic_bnx2x_fcoe_stat(dev, kwqe);
2545 break;
2546 default:
2547 ret = 0;
2548 netdev_err(dev->netdev, "Unknown type of KWQE(0x%x)\n",
2549 opcode);
2550 break;
2551 }
2552 if (ret < 0)
2553 netdev_err(dev->netdev, "KWQE(0x%x) failed\n",
2554 opcode);
2555 i += work;
2556 }
2557 return 0;
2558}
2559
2560static int cnic_submit_bnx2x_kwqes(struct cnic_dev *dev, struct kwqe *wqes[],
2561 u32 num_wqes)
2562{
2563 int ret = -EINVAL;
2564 u32 layer_code;
2565
2566 if (!test_bit(CNIC_F_CNIC_UP, &dev->flags))
2567 return -EAGAIN; /* bnx2x is down */
2568
2569 if (!num_wqes)
2570 return 0;
2571
2572 layer_code = wqes[0]->kwqe_op_flag & KWQE_LAYER_MASK;
2573 switch (layer_code) {
2574 case KWQE_FLAGS_LAYER_MASK_L5_ISCSI:
2575 case KWQE_FLAGS_LAYER_MASK_L4:
2576 case KWQE_FLAGS_LAYER_MASK_L2:
2577 ret = cnic_submit_bnx2x_iscsi_kwqes(dev, wqes, num_wqes);
2578 break;
2579
2580 case KWQE_FLAGS_LAYER_MASK_L5_FCOE:
2581 ret = cnic_submit_bnx2x_fcoe_kwqes(dev, wqes, num_wqes);
2582 break;
2583 }
2584 return ret;
2585}
2586
2587static inline u32 cnic_get_kcqe_layer_mask(u32 opflag)
2588{
2589 if (unlikely(KCQE_OPCODE(opflag) == FCOE_RAMROD_CMD_ID_TERMINATE_CONN))
2590 return KCQE_FLAGS_LAYER_MASK_L4;
2591
2592 return opflag & KCQE_FLAGS_LAYER_MASK;
2593}
2594
Michael Chana4636962009-06-08 18:14:43 -07002595static void service_kcqes(struct cnic_dev *dev, int num_cqes)
2596{
2597 struct cnic_local *cp = dev->cnic_priv;
Dmitry Kravkovc2bff632010-10-06 03:33:18 +00002598 int i, j, comp = 0;
Michael Chana4636962009-06-08 18:14:43 -07002599
2600 i = 0;
2601 j = 1;
2602 while (num_cqes) {
2603 struct cnic_ulp_ops *ulp_ops;
2604 int ulp_type;
2605 u32 kcqe_op_flag = cp->completed_kcq[i]->kcqe_op_flag;
Michael Chane1928c82010-12-23 07:43:04 +00002606 u32 kcqe_layer = cnic_get_kcqe_layer_mask(kcqe_op_flag);
Michael Chana4636962009-06-08 18:14:43 -07002607
2608 if (unlikely(kcqe_op_flag & KCQE_RAMROD_COMPLETION))
Dmitry Kravkovc2bff632010-10-06 03:33:18 +00002609 comp++;
Michael Chana4636962009-06-08 18:14:43 -07002610
2611 while (j < num_cqes) {
2612 u32 next_op = cp->completed_kcq[i + j]->kcqe_op_flag;
2613
Michael Chane1928c82010-12-23 07:43:04 +00002614 if (cnic_get_kcqe_layer_mask(next_op) != kcqe_layer)
Michael Chana4636962009-06-08 18:14:43 -07002615 break;
2616
2617 if (unlikely(next_op & KCQE_RAMROD_COMPLETION))
Dmitry Kravkovc2bff632010-10-06 03:33:18 +00002618 comp++;
Michael Chana4636962009-06-08 18:14:43 -07002619 j++;
2620 }
2621
2622 if (kcqe_layer == KCQE_FLAGS_LAYER_MASK_L5_RDMA)
2623 ulp_type = CNIC_ULP_RDMA;
2624 else if (kcqe_layer == KCQE_FLAGS_LAYER_MASK_L5_ISCSI)
2625 ulp_type = CNIC_ULP_ISCSI;
Michael Chane1928c82010-12-23 07:43:04 +00002626 else if (kcqe_layer == KCQE_FLAGS_LAYER_MASK_L5_FCOE)
2627 ulp_type = CNIC_ULP_FCOE;
Michael Chana4636962009-06-08 18:14:43 -07002628 else if (kcqe_layer == KCQE_FLAGS_LAYER_MASK_L4)
2629 ulp_type = CNIC_ULP_L4;
2630 else if (kcqe_layer == KCQE_FLAGS_LAYER_MASK_L2)
2631 goto end;
2632 else {
Joe Perchesddf79b22010-02-17 15:01:54 +00002633 netdev_err(dev->netdev, "Unknown type of KCQE(0x%x)\n",
2634 kcqe_op_flag);
Michael Chana4636962009-06-08 18:14:43 -07002635 goto end;
2636 }
2637
2638 rcu_read_lock();
2639 ulp_ops = rcu_dereference(cp->ulp_ops[ulp_type]);
2640 if (likely(ulp_ops)) {
2641 ulp_ops->indicate_kcqes(cp->ulp_handle[ulp_type],
2642 cp->completed_kcq + i, j);
2643 }
2644 rcu_read_unlock();
2645end:
2646 num_cqes -= j;
2647 i += j;
2648 j = 1;
2649 }
Dmitry Kravkovc2bff632010-10-06 03:33:18 +00002650 if (unlikely(comp))
2651 cnic_spq_completion(dev, DRV_CTL_RET_L5_SPQ_CREDIT_CMD, comp);
Michael Chana4636962009-06-08 18:14:43 -07002652}
2653
2654static u16 cnic_bnx2_next_idx(u16 idx)
2655{
2656 return idx + 1;
2657}
2658
2659static u16 cnic_bnx2_hw_idx(u16 idx)
2660{
2661 return idx;
2662}
2663
Michael Chan71034ba2009-10-10 13:46:59 +00002664static u16 cnic_bnx2x_next_idx(u16 idx)
2665{
2666 idx++;
2667 if ((idx & MAX_KCQE_CNT) == MAX_KCQE_CNT)
2668 idx++;
2669
2670 return idx;
2671}
2672
2673static u16 cnic_bnx2x_hw_idx(u16 idx)
2674{
2675 if ((idx & MAX_KCQE_CNT) == MAX_KCQE_CNT)
2676 idx++;
2677 return idx;
2678}
2679
Michael Chan644b9d42010-06-24 14:58:40 +00002680static int cnic_get_kcqes(struct cnic_dev *dev, struct kcq_info *info)
Michael Chana4636962009-06-08 18:14:43 -07002681{
2682 struct cnic_local *cp = dev->cnic_priv;
Michael Chan644b9d42010-06-24 14:58:40 +00002683 u16 i, ri, hw_prod, last;
Michael Chana4636962009-06-08 18:14:43 -07002684 struct kcqe *kcqe;
2685 int kcqe_cnt = 0, last_cnt = 0;
2686
Michael Chan644b9d42010-06-24 14:58:40 +00002687 i = ri = last = info->sw_prod_idx;
Michael Chana4636962009-06-08 18:14:43 -07002688 ri &= MAX_KCQ_IDX;
Michael Chan644b9d42010-06-24 14:58:40 +00002689 hw_prod = *info->hw_prod_idx_ptr;
2690 hw_prod = cp->hw_idx(hw_prod);
Michael Chana4636962009-06-08 18:14:43 -07002691
2692 while ((i != hw_prod) && (kcqe_cnt < MAX_COMPLETED_KCQE)) {
Michael Chan644b9d42010-06-24 14:58:40 +00002693 kcqe = &info->kcq[KCQ_PG(ri)][KCQ_IDX(ri)];
Michael Chana4636962009-06-08 18:14:43 -07002694 cp->completed_kcq[kcqe_cnt++] = kcqe;
2695 i = cp->next_idx(i);
2696 ri = i & MAX_KCQ_IDX;
2697 if (likely(!(kcqe->kcqe_op_flag & KCQE_FLAGS_NEXT))) {
2698 last_cnt = kcqe_cnt;
2699 last = i;
2700 }
2701 }
2702
Michael Chan644b9d42010-06-24 14:58:40 +00002703 info->sw_prod_idx = last;
Michael Chana4636962009-06-08 18:14:43 -07002704 return last_cnt;
2705}
2706
Michael Chan48f753d2010-05-18 11:32:53 +00002707static int cnic_l2_completion(struct cnic_local *cp)
2708{
2709 u16 hw_cons, sw_cons;
Michael Chancd801532010-10-13 14:06:49 +00002710 struct cnic_uio_dev *udev = cp->udev;
Michael Chan48f753d2010-05-18 11:32:53 +00002711 union eth_rx_cqe *cqe, *cqe_ring = (union eth_rx_cqe *)
Michael Chancd801532010-10-13 14:06:49 +00002712 (udev->l2_ring + (2 * BCM_PAGE_SIZE));
Michael Chan48f753d2010-05-18 11:32:53 +00002713 u32 cmd;
2714 int comp = 0;
2715
2716 if (!test_bit(CNIC_F_BNX2X_CLASS, &cp->dev->flags))
2717 return 0;
2718
2719 hw_cons = *cp->rx_cons_ptr;
2720 if ((hw_cons & BNX2X_MAX_RCQ_DESC_CNT) == BNX2X_MAX_RCQ_DESC_CNT)
2721 hw_cons++;
2722
2723 sw_cons = cp->rx_cons;
2724 while (sw_cons != hw_cons) {
2725 u8 cqe_fp_flags;
2726
2727 cqe = &cqe_ring[sw_cons & BNX2X_MAX_RCQ_DESC_CNT];
2728 cqe_fp_flags = cqe->fast_path_cqe.type_error_flags;
2729 if (cqe_fp_flags & ETH_FAST_PATH_RX_CQE_TYPE) {
2730 cmd = le32_to_cpu(cqe->ramrod_cqe.conn_and_cmd_data);
2731 cmd >>= COMMON_RAMROD_ETH_RX_CQE_CMD_ID_SHIFT;
2732 if (cmd == RAMROD_CMD_ID_ETH_CLIENT_SETUP ||
2733 cmd == RAMROD_CMD_ID_ETH_HALT)
2734 comp++;
2735 }
2736 sw_cons = BNX2X_NEXT_RCQE(sw_cons);
2737 }
2738 return comp;
2739}
2740
Michael Chan86b53602009-10-10 13:46:57 +00002741static void cnic_chk_pkt_rings(struct cnic_local *cp)
Michael Chana4636962009-06-08 18:14:43 -07002742{
Michael Chan541a7812010-10-06 03:17:22 +00002743 u16 rx_cons, tx_cons;
Michael Chan48f753d2010-05-18 11:32:53 +00002744 int comp = 0;
Michael Chana4636962009-06-08 18:14:43 -07002745
Michael Chan541a7812010-10-06 03:17:22 +00002746 if (!test_bit(CNIC_LCL_FL_RINGS_INITED, &cp->cnic_local_flags))
Michael Chan66fee9e2010-06-24 14:58:38 +00002747 return;
2748
Michael Chan541a7812010-10-06 03:17:22 +00002749 rx_cons = *cp->rx_cons_ptr;
2750 tx_cons = *cp->tx_cons_ptr;
Michael Chana4636962009-06-08 18:14:43 -07002751 if (cp->tx_cons != tx_cons || cp->rx_cons != rx_cons) {
Michael Chan48f753d2010-05-18 11:32:53 +00002752 if (test_bit(CNIC_LCL_FL_L2_WAIT, &cp->cnic_local_flags))
2753 comp = cnic_l2_completion(cp);
2754
Michael Chana4636962009-06-08 18:14:43 -07002755 cp->tx_cons = tx_cons;
2756 cp->rx_cons = rx_cons;
Michael Chan71034ba2009-10-10 13:46:59 +00002757
Michael Chancd801532010-10-13 14:06:49 +00002758 if (cp->udev)
2759 uio_event_notify(&cp->udev->cnic_uinfo);
Michael Chana4636962009-06-08 18:14:43 -07002760 }
Michael Chan48f753d2010-05-18 11:32:53 +00002761 if (comp)
2762 clear_bit(CNIC_LCL_FL_L2_WAIT, &cp->cnic_local_flags);
Michael Chana4636962009-06-08 18:14:43 -07002763}
2764
Michael Chanb177a5d52010-06-24 14:58:41 +00002765static u32 cnic_service_bnx2_queues(struct cnic_dev *dev)
Michael Chana4636962009-06-08 18:14:43 -07002766{
Michael Chana4636962009-06-08 18:14:43 -07002767 struct cnic_local *cp = dev->cnic_priv;
Michael Chanb177a5d52010-06-24 14:58:41 +00002768 u32 status_idx = (u16) *cp->kcq1.status_idx_ptr;
Michael Chana4636962009-06-08 18:14:43 -07002769 int kcqe_cnt;
2770
Michael Chan107c3f42011-03-02 13:00:49 +00002771 /* status block index must be read before reading other fields */
2772 rmb();
Michael Chana4636962009-06-08 18:14:43 -07002773 cp->kwq_con_idx = *cp->kwq_con_idx_ptr;
2774
Michael Chan644b9d42010-06-24 14:58:40 +00002775 while ((kcqe_cnt = cnic_get_kcqes(dev, &cp->kcq1))) {
Michael Chana4636962009-06-08 18:14:43 -07002776
2777 service_kcqes(dev, kcqe_cnt);
2778
2779 /* Tell compiler that status_blk fields can change. */
2780 barrier();
Michael Chan644b9d42010-06-24 14:58:40 +00002781 if (status_idx != *cp->kcq1.status_idx_ptr) {
Michael Chanb177a5d52010-06-24 14:58:41 +00002782 status_idx = (u16) *cp->kcq1.status_idx_ptr;
Michael Chan107c3f42011-03-02 13:00:49 +00002783 /* status block index must be read first */
2784 rmb();
Michael Chana4636962009-06-08 18:14:43 -07002785 cp->kwq_con_idx = *cp->kwq_con_idx_ptr;
Michael Chana4636962009-06-08 18:14:43 -07002786 } else
2787 break;
2788 }
2789
Michael Chan644b9d42010-06-24 14:58:40 +00002790 CNIC_WR16(dev, cp->kcq1.io_addr, cp->kcq1.sw_prod_idx);
Michael Chana4636962009-06-08 18:14:43 -07002791
Michael Chan86b53602009-10-10 13:46:57 +00002792 cnic_chk_pkt_rings(cp);
Michael Chanb177a5d52010-06-24 14:58:41 +00002793
Michael Chana4636962009-06-08 18:14:43 -07002794 return status_idx;
2795}
2796
Michael Chanb177a5d52010-06-24 14:58:41 +00002797static int cnic_service_bnx2(void *data, void *status_blk)
2798{
2799 struct cnic_dev *dev = data;
Michael Chanb177a5d52010-06-24 14:58:41 +00002800
Michael Chaneaaa6e92010-12-23 08:38:30 +00002801 if (unlikely(!test_bit(CNIC_F_CNIC_UP, &dev->flags))) {
2802 struct status_block *sblk = status_blk;
2803
2804 return sblk->status_idx;
2805 }
Michael Chanb177a5d52010-06-24 14:58:41 +00002806
2807 return cnic_service_bnx2_queues(dev);
2808}
2809
Michael Chana4636962009-06-08 18:14:43 -07002810static void cnic_service_bnx2_msix(unsigned long data)
2811{
2812 struct cnic_dev *dev = (struct cnic_dev *) data;
2813 struct cnic_local *cp = dev->cnic_priv;
Michael Chana4636962009-06-08 18:14:43 -07002814
Michael Chanb177a5d52010-06-24 14:58:41 +00002815 cp->last_status_idx = cnic_service_bnx2_queues(dev);
Michael Chana4636962009-06-08 18:14:43 -07002816
Michael Chana4636962009-06-08 18:14:43 -07002817 CNIC_WR(dev, BNX2_PCICFG_INT_ACK_CMD, cp->int_num |
2818 BNX2_PCICFG_INT_ACK_CMD_INDEX_VALID | cp->last_status_idx);
2819}
2820
Michael Chan66fee9e2010-06-24 14:58:38 +00002821static void cnic_doirq(struct cnic_dev *dev)
2822{
2823 struct cnic_local *cp = dev->cnic_priv;
Michael Chan66fee9e2010-06-24 14:58:38 +00002824
2825 if (likely(test_bit(CNIC_F_CNIC_UP, &dev->flags))) {
Michael Chaneaaa6e92010-12-23 08:38:30 +00002826 u16 prod = cp->kcq1.sw_prod_idx & MAX_KCQ_IDX;
2827
Michael Chan66fee9e2010-06-24 14:58:38 +00002828 prefetch(cp->status_blk.gen);
Michael Chane6c28892010-06-24 14:58:39 +00002829 prefetch(&cp->kcq1.kcq[KCQ_PG(prod)][KCQ_IDX(prod)]);
Michael Chan66fee9e2010-06-24 14:58:38 +00002830
2831 tasklet_schedule(&cp->cnic_irq_task);
2832 }
2833}
2834
Michael Chana4636962009-06-08 18:14:43 -07002835static irqreturn_t cnic_irq(int irq, void *dev_instance)
2836{
2837 struct cnic_dev *dev = dev_instance;
2838 struct cnic_local *cp = dev->cnic_priv;
Michael Chana4636962009-06-08 18:14:43 -07002839
2840 if (cp->ack_int)
2841 cp->ack_int(dev);
2842
Michael Chan66fee9e2010-06-24 14:58:38 +00002843 cnic_doirq(dev);
Michael Chana4636962009-06-08 18:14:43 -07002844
2845 return IRQ_HANDLED;
2846}
2847
Michael Chan71034ba2009-10-10 13:46:59 +00002848static inline void cnic_ack_bnx2x_int(struct cnic_dev *dev, u8 id, u8 storm,
2849 u16 index, u8 op, u8 update)
2850{
2851 struct cnic_local *cp = dev->cnic_priv;
2852 u32 hc_addr = (HC_REG_COMMAND_REG + CNIC_PORT(cp) * 32 +
2853 COMMAND_REG_INT_ACK);
2854 struct igu_ack_register igu_ack;
2855
2856 igu_ack.status_block_index = index;
2857 igu_ack.sb_id_and_flags =
2858 ((id << IGU_ACK_REGISTER_STATUS_BLOCK_ID_SHIFT) |
2859 (storm << IGU_ACK_REGISTER_STORM_ID_SHIFT) |
2860 (update << IGU_ACK_REGISTER_UPDATE_INDEX_SHIFT) |
2861 (op << IGU_ACK_REGISTER_INTERRUPT_MODE_SHIFT));
2862
2863 CNIC_WR(dev, hc_addr, (*(u32 *)&igu_ack));
2864}
2865
Michael Chanee87a822010-10-13 14:06:51 +00002866static void cnic_ack_igu_sb(struct cnic_dev *dev, u8 igu_sb_id, u8 segment,
2867 u16 index, u8 op, u8 update)
2868{
2869 struct igu_regular cmd_data;
2870 u32 igu_addr = BAR_IGU_INTMEM + (IGU_CMD_INT_ACK_BASE + igu_sb_id) * 8;
2871
2872 cmd_data.sb_id_and_flags =
2873 (index << IGU_REGULAR_SB_INDEX_SHIFT) |
2874 (segment << IGU_REGULAR_SEGMENT_ACCESS_SHIFT) |
2875 (update << IGU_REGULAR_BUPDATE_SHIFT) |
2876 (op << IGU_REGULAR_ENABLE_INT_SHIFT);
2877
2878
2879 CNIC_WR(dev, igu_addr, cmd_data.sb_id_and_flags);
2880}
2881
Michael Chan71034ba2009-10-10 13:46:59 +00002882static void cnic_ack_bnx2x_msix(struct cnic_dev *dev)
2883{
2884 struct cnic_local *cp = dev->cnic_priv;
2885
Dmitry Kravkov523224a2010-10-06 03:23:26 +00002886 cnic_ack_bnx2x_int(dev, cp->bnx2x_igu_sb_id, CSTORM_ID, 0,
Michael Chan71034ba2009-10-10 13:46:59 +00002887 IGU_INT_DISABLE, 0);
2888}
2889
Michael Chanee87a822010-10-13 14:06:51 +00002890static void cnic_ack_bnx2x_e2_msix(struct cnic_dev *dev)
2891{
2892 struct cnic_local *cp = dev->cnic_priv;
2893
2894 cnic_ack_igu_sb(dev, cp->bnx2x_igu_sb_id, IGU_SEG_ACCESS_DEF, 0,
2895 IGU_INT_DISABLE, 0);
2896}
2897
Michael Chanb177a5d52010-06-24 14:58:41 +00002898static u32 cnic_service_bnx2x_kcq(struct cnic_dev *dev, struct kcq_info *info)
Michael Chan71034ba2009-10-10 13:46:59 +00002899{
Michael Chanb177a5d52010-06-24 14:58:41 +00002900 u32 last_status = *info->status_idx_ptr;
Michael Chan71034ba2009-10-10 13:46:59 +00002901 int kcqe_cnt;
2902
Michael Chan107c3f42011-03-02 13:00:49 +00002903 /* status block index must be read before reading the KCQ */
2904 rmb();
Michael Chanb177a5d52010-06-24 14:58:41 +00002905 while ((kcqe_cnt = cnic_get_kcqes(dev, info))) {
Michael Chan71034ba2009-10-10 13:46:59 +00002906
2907 service_kcqes(dev, kcqe_cnt);
2908
2909 /* Tell compiler that sblk fields can change. */
2910 barrier();
Michael Chanb177a5d52010-06-24 14:58:41 +00002911 if (last_status == *info->status_idx_ptr)
Michael Chan71034ba2009-10-10 13:46:59 +00002912 break;
2913
Michael Chanb177a5d52010-06-24 14:58:41 +00002914 last_status = *info->status_idx_ptr;
Michael Chan107c3f42011-03-02 13:00:49 +00002915 /* status block index must be read before reading the KCQ */
2916 rmb();
Michael Chan71034ba2009-10-10 13:46:59 +00002917 }
Michael Chanb177a5d52010-06-24 14:58:41 +00002918 return last_status;
2919}
2920
2921static void cnic_service_bnx2x_bh(unsigned long data)
2922{
2923 struct cnic_dev *dev = (struct cnic_dev *) data;
2924 struct cnic_local *cp = dev->cnic_priv;
Michael Chan0197b082011-03-02 13:00:50 +00002925 u32 status_idx, new_status_idx;
Michael Chanb177a5d52010-06-24 14:58:41 +00002926
2927 if (unlikely(!test_bit(CNIC_F_CNIC_UP, &dev->flags)))
2928 return;
2929
Michael Chan0197b082011-03-02 13:00:50 +00002930 while (1) {
2931 status_idx = cnic_service_bnx2x_kcq(dev, &cp->kcq1);
Michael Chan71034ba2009-10-10 13:46:59 +00002932
Michael Chan0197b082011-03-02 13:00:50 +00002933 CNIC_WR16(dev, cp->kcq1.io_addr,
2934 cp->kcq1.sw_prod_idx + MAX_KCQ_IDX);
Michael Chane21ba412010-12-23 07:43:03 +00002935
Michael Chan0197b082011-03-02 13:00:50 +00002936 if (!BNX2X_CHIP_IS_E2(cp->chip_id)) {
2937 cnic_ack_bnx2x_int(dev, cp->bnx2x_igu_sb_id, USTORM_ID,
2938 status_idx, IGU_INT_ENABLE, 1);
2939 break;
2940 }
2941
2942 new_status_idx = cnic_service_bnx2x_kcq(dev, &cp->kcq2);
2943
2944 if (new_status_idx != status_idx)
2945 continue;
Michael Chane21ba412010-12-23 07:43:03 +00002946
2947 CNIC_WR16(dev, cp->kcq2.io_addr, cp->kcq2.sw_prod_idx +
2948 MAX_KCQ_IDX);
2949
Michael Chanee87a822010-10-13 14:06:51 +00002950 cnic_ack_igu_sb(dev, cp->bnx2x_igu_sb_id, IGU_SEG_ACCESS_DEF,
2951 status_idx, IGU_INT_ENABLE, 1);
Michael Chan0197b082011-03-02 13:00:50 +00002952
2953 break;
Michael Chane21ba412010-12-23 07:43:03 +00002954 }
Michael Chan71034ba2009-10-10 13:46:59 +00002955}
2956
2957static int cnic_service_bnx2x(void *data, void *status_blk)
2958{
2959 struct cnic_dev *dev = data;
2960 struct cnic_local *cp = dev->cnic_priv;
Michael Chan71034ba2009-10-10 13:46:59 +00002961
Michael Chan66fee9e2010-06-24 14:58:38 +00002962 if (!(cp->ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX))
2963 cnic_doirq(dev);
Michael Chan71034ba2009-10-10 13:46:59 +00002964
Michael Chan66fee9e2010-06-24 14:58:38 +00002965 cnic_chk_pkt_rings(cp);
Michael Chan71034ba2009-10-10 13:46:59 +00002966
2967 return 0;
2968}
2969
Dmitry Kravkovfab0dc82011-03-31 17:04:22 -07002970static void cnic_ulp_stop_one(struct cnic_local *cp, int if_type)
2971{
2972 struct cnic_ulp_ops *ulp_ops;
2973
2974 if (if_type == CNIC_ULP_ISCSI)
2975 cnic_send_nlmsg(cp, ISCSI_KEVENT_IF_DOWN, NULL);
2976
2977 mutex_lock(&cnic_lock);
2978 ulp_ops = rcu_dereference_protected(cp->ulp_ops[if_type],
2979 lockdep_is_held(&cnic_lock));
2980 if (!ulp_ops) {
2981 mutex_unlock(&cnic_lock);
2982 return;
2983 }
2984 set_bit(ULP_F_CALL_PENDING, &cp->ulp_flags[if_type]);
2985 mutex_unlock(&cnic_lock);
2986
2987 if (test_and_clear_bit(ULP_F_START, &cp->ulp_flags[if_type]))
2988 ulp_ops->cnic_stop(cp->ulp_handle[if_type]);
2989
2990 clear_bit(ULP_F_CALL_PENDING, &cp->ulp_flags[if_type]);
2991}
2992
Michael Chana4636962009-06-08 18:14:43 -07002993static void cnic_ulp_stop(struct cnic_dev *dev)
2994{
2995 struct cnic_local *cp = dev->cnic_priv;
2996 int if_type;
2997
Dmitry Kravkovfab0dc82011-03-31 17:04:22 -07002998 for (if_type = 0; if_type < MAX_CNIC_ULP_TYPE; if_type++)
2999 cnic_ulp_stop_one(cp, if_type);
Michael Chana4636962009-06-08 18:14:43 -07003000}
3001
3002static void cnic_ulp_start(struct cnic_dev *dev)
3003{
3004 struct cnic_local *cp = dev->cnic_priv;
3005 int if_type;
3006
Michael Chana4636962009-06-08 18:14:43 -07003007 for (if_type = 0; if_type < MAX_CNIC_ULP_TYPE; if_type++) {
3008 struct cnic_ulp_ops *ulp_ops;
3009
Michael Chan681dbd72009-08-14 15:49:46 +00003010 mutex_lock(&cnic_lock);
Eric Dumazet13707f92011-01-26 19:28:23 +00003011 ulp_ops = rcu_dereference_protected(cp->ulp_ops[if_type],
3012 lockdep_is_held(&cnic_lock));
Michael Chan681dbd72009-08-14 15:49:46 +00003013 if (!ulp_ops || !ulp_ops->cnic_start) {
3014 mutex_unlock(&cnic_lock);
Michael Chana4636962009-06-08 18:14:43 -07003015 continue;
Michael Chan681dbd72009-08-14 15:49:46 +00003016 }
3017 set_bit(ULP_F_CALL_PENDING, &cp->ulp_flags[if_type]);
3018 mutex_unlock(&cnic_lock);
Michael Chana4636962009-06-08 18:14:43 -07003019
3020 if (!test_and_set_bit(ULP_F_START, &cp->ulp_flags[if_type]))
3021 ulp_ops->cnic_start(cp->ulp_handle[if_type]);
Michael Chan681dbd72009-08-14 15:49:46 +00003022
3023 clear_bit(ULP_F_CALL_PENDING, &cp->ulp_flags[if_type]);
Michael Chana4636962009-06-08 18:14:43 -07003024 }
Michael Chana4636962009-06-08 18:14:43 -07003025}
3026
3027static int cnic_ctl(void *data, struct cnic_ctl_info *info)
3028{
3029 struct cnic_dev *dev = data;
3030
3031 switch (info->cmd) {
3032 case CNIC_CTL_STOP_CMD:
3033 cnic_hold(dev);
Michael Chana4636962009-06-08 18:14:43 -07003034
3035 cnic_ulp_stop(dev);
3036 cnic_stop_hw(dev);
3037
Michael Chana4636962009-06-08 18:14:43 -07003038 cnic_put(dev);
3039 break;
3040 case CNIC_CTL_START_CMD:
3041 cnic_hold(dev);
Michael Chana4636962009-06-08 18:14:43 -07003042
3043 if (!cnic_start_hw(dev))
3044 cnic_ulp_start(dev);
3045
Michael Chana4636962009-06-08 18:14:43 -07003046 cnic_put(dev);
3047 break;
Dmitry Kravkovfab0dc82011-03-31 17:04:22 -07003048 case CNIC_CTL_STOP_ISCSI_CMD: {
3049 struct cnic_local *cp = dev->cnic_priv;
3050 set_bit(CNIC_LCL_FL_STOP_ISCSI, &cp->cnic_local_flags);
3051 queue_delayed_work(cnic_wq, &cp->delete_task, 0);
3052 break;
3053 }
Michael Chan71034ba2009-10-10 13:46:59 +00003054 case CNIC_CTL_COMPLETION_CMD: {
3055 u32 cid = BNX2X_SW_CID(info->data.comp.cid);
3056 u32 l5_cid;
3057 struct cnic_local *cp = dev->cnic_priv;
3058
3059 if (cnic_get_l5_cid(cp, cid, &l5_cid) == 0) {
3060 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
3061
3062 ctx->wait_cond = 1;
3063 wake_up(&ctx->waitq);
3064 }
3065 break;
3066 }
Michael Chana4636962009-06-08 18:14:43 -07003067 default:
3068 return -EINVAL;
3069 }
3070 return 0;
3071}
3072
3073static void cnic_ulp_init(struct cnic_dev *dev)
3074{
3075 int i;
3076 struct cnic_local *cp = dev->cnic_priv;
3077
Michael Chana4636962009-06-08 18:14:43 -07003078 for (i = 0; i < MAX_CNIC_ULP_TYPE_EXT; i++) {
3079 struct cnic_ulp_ops *ulp_ops;
3080
Michael Chan7fc1ece2009-08-14 15:49:47 +00003081 mutex_lock(&cnic_lock);
Eric Dumazet13707f92011-01-26 19:28:23 +00003082 ulp_ops = cnic_ulp_tbl_prot(i);
Michael Chan7fc1ece2009-08-14 15:49:47 +00003083 if (!ulp_ops || !ulp_ops->cnic_init) {
3084 mutex_unlock(&cnic_lock);
Michael Chana4636962009-06-08 18:14:43 -07003085 continue;
Michael Chan7fc1ece2009-08-14 15:49:47 +00003086 }
3087 ulp_get(ulp_ops);
3088 mutex_unlock(&cnic_lock);
Michael Chana4636962009-06-08 18:14:43 -07003089
3090 if (!test_and_set_bit(ULP_F_INIT, &cp->ulp_flags[i]))
3091 ulp_ops->cnic_init(dev);
3092
Michael Chan7fc1ece2009-08-14 15:49:47 +00003093 ulp_put(ulp_ops);
Michael Chana4636962009-06-08 18:14:43 -07003094 }
Michael Chana4636962009-06-08 18:14:43 -07003095}
3096
3097static void cnic_ulp_exit(struct cnic_dev *dev)
3098{
3099 int i;
3100 struct cnic_local *cp = dev->cnic_priv;
3101
Michael Chana4636962009-06-08 18:14:43 -07003102 for (i = 0; i < MAX_CNIC_ULP_TYPE_EXT; i++) {
3103 struct cnic_ulp_ops *ulp_ops;
3104
Michael Chan7fc1ece2009-08-14 15:49:47 +00003105 mutex_lock(&cnic_lock);
Eric Dumazet13707f92011-01-26 19:28:23 +00003106 ulp_ops = cnic_ulp_tbl_prot(i);
Michael Chan7fc1ece2009-08-14 15:49:47 +00003107 if (!ulp_ops || !ulp_ops->cnic_exit) {
3108 mutex_unlock(&cnic_lock);
Michael Chana4636962009-06-08 18:14:43 -07003109 continue;
Michael Chan7fc1ece2009-08-14 15:49:47 +00003110 }
3111 ulp_get(ulp_ops);
3112 mutex_unlock(&cnic_lock);
Michael Chana4636962009-06-08 18:14:43 -07003113
3114 if (test_and_clear_bit(ULP_F_INIT, &cp->ulp_flags[i]))
3115 ulp_ops->cnic_exit(dev);
3116
Michael Chan7fc1ece2009-08-14 15:49:47 +00003117 ulp_put(ulp_ops);
Michael Chana4636962009-06-08 18:14:43 -07003118 }
Michael Chana4636962009-06-08 18:14:43 -07003119}
3120
3121static int cnic_cm_offload_pg(struct cnic_sock *csk)
3122{
3123 struct cnic_dev *dev = csk->dev;
3124 struct l4_kwq_offload_pg *l4kwqe;
3125 struct kwqe *wqes[1];
3126
3127 l4kwqe = (struct l4_kwq_offload_pg *) &csk->kwqe1;
3128 memset(l4kwqe, 0, sizeof(*l4kwqe));
3129 wqes[0] = (struct kwqe *) l4kwqe;
3130
3131 l4kwqe->op_code = L4_KWQE_OPCODE_VALUE_OFFLOAD_PG;
3132 l4kwqe->flags =
3133 L4_LAYER_CODE << L4_KWQ_OFFLOAD_PG_LAYER_CODE_SHIFT;
3134 l4kwqe->l2hdr_nbytes = ETH_HLEN;
3135
3136 l4kwqe->da0 = csk->ha[0];
3137 l4kwqe->da1 = csk->ha[1];
3138 l4kwqe->da2 = csk->ha[2];
3139 l4kwqe->da3 = csk->ha[3];
3140 l4kwqe->da4 = csk->ha[4];
3141 l4kwqe->da5 = csk->ha[5];
3142
3143 l4kwqe->sa0 = dev->mac_addr[0];
3144 l4kwqe->sa1 = dev->mac_addr[1];
3145 l4kwqe->sa2 = dev->mac_addr[2];
3146 l4kwqe->sa3 = dev->mac_addr[3];
3147 l4kwqe->sa4 = dev->mac_addr[4];
3148 l4kwqe->sa5 = dev->mac_addr[5];
3149
3150 l4kwqe->etype = ETH_P_IP;
Eddie Waia9736c02010-02-24 14:42:04 +00003151 l4kwqe->ipid_start = DEF_IPID_START;
Michael Chana4636962009-06-08 18:14:43 -07003152 l4kwqe->host_opaque = csk->l5_cid;
3153
3154 if (csk->vlan_id) {
3155 l4kwqe->pg_flags |= L4_KWQ_OFFLOAD_PG_VLAN_TAGGING;
3156 l4kwqe->vlan_tag = csk->vlan_id;
3157 l4kwqe->l2hdr_nbytes += 4;
3158 }
3159
3160 return dev->submit_kwqes(dev, wqes, 1);
3161}
3162
3163static int cnic_cm_update_pg(struct cnic_sock *csk)
3164{
3165 struct cnic_dev *dev = csk->dev;
3166 struct l4_kwq_update_pg *l4kwqe;
3167 struct kwqe *wqes[1];
3168
3169 l4kwqe = (struct l4_kwq_update_pg *) &csk->kwqe1;
3170 memset(l4kwqe, 0, sizeof(*l4kwqe));
3171 wqes[0] = (struct kwqe *) l4kwqe;
3172
3173 l4kwqe->opcode = L4_KWQE_OPCODE_VALUE_UPDATE_PG;
3174 l4kwqe->flags =
3175 L4_LAYER_CODE << L4_KWQ_UPDATE_PG_LAYER_CODE_SHIFT;
3176 l4kwqe->pg_cid = csk->pg_cid;
3177
3178 l4kwqe->da0 = csk->ha[0];
3179 l4kwqe->da1 = csk->ha[1];
3180 l4kwqe->da2 = csk->ha[2];
3181 l4kwqe->da3 = csk->ha[3];
3182 l4kwqe->da4 = csk->ha[4];
3183 l4kwqe->da5 = csk->ha[5];
3184
3185 l4kwqe->pg_host_opaque = csk->l5_cid;
3186 l4kwqe->pg_valids = L4_KWQ_UPDATE_PG_VALIDS_DA;
3187
3188 return dev->submit_kwqes(dev, wqes, 1);
3189}
3190
3191static int cnic_cm_upload_pg(struct cnic_sock *csk)
3192{
3193 struct cnic_dev *dev = csk->dev;
3194 struct l4_kwq_upload *l4kwqe;
3195 struct kwqe *wqes[1];
3196
3197 l4kwqe = (struct l4_kwq_upload *) &csk->kwqe1;
3198 memset(l4kwqe, 0, sizeof(*l4kwqe));
3199 wqes[0] = (struct kwqe *) l4kwqe;
3200
3201 l4kwqe->opcode = L4_KWQE_OPCODE_VALUE_UPLOAD_PG;
3202 l4kwqe->flags =
3203 L4_LAYER_CODE << L4_KWQ_UPLOAD_LAYER_CODE_SHIFT;
3204 l4kwqe->cid = csk->pg_cid;
3205
3206 return dev->submit_kwqes(dev, wqes, 1);
3207}
3208
3209static int cnic_cm_conn_req(struct cnic_sock *csk)
3210{
3211 struct cnic_dev *dev = csk->dev;
3212 struct l4_kwq_connect_req1 *l4kwqe1;
3213 struct l4_kwq_connect_req2 *l4kwqe2;
3214 struct l4_kwq_connect_req3 *l4kwqe3;
3215 struct kwqe *wqes[3];
3216 u8 tcp_flags = 0;
3217 int num_wqes = 2;
3218
3219 l4kwqe1 = (struct l4_kwq_connect_req1 *) &csk->kwqe1;
3220 l4kwqe2 = (struct l4_kwq_connect_req2 *) &csk->kwqe2;
3221 l4kwqe3 = (struct l4_kwq_connect_req3 *) &csk->kwqe3;
3222 memset(l4kwqe1, 0, sizeof(*l4kwqe1));
3223 memset(l4kwqe2, 0, sizeof(*l4kwqe2));
3224 memset(l4kwqe3, 0, sizeof(*l4kwqe3));
3225
3226 l4kwqe3->op_code = L4_KWQE_OPCODE_VALUE_CONNECT3;
3227 l4kwqe3->flags =
3228 L4_LAYER_CODE << L4_KWQ_CONNECT_REQ3_LAYER_CODE_SHIFT;
3229 l4kwqe3->ka_timeout = csk->ka_timeout;
3230 l4kwqe3->ka_interval = csk->ka_interval;
3231 l4kwqe3->ka_max_probe_count = csk->ka_max_probe_count;
3232 l4kwqe3->tos = csk->tos;
3233 l4kwqe3->ttl = csk->ttl;
3234 l4kwqe3->snd_seq_scale = csk->snd_seq_scale;
3235 l4kwqe3->pmtu = csk->mtu;
3236 l4kwqe3->rcv_buf = csk->rcv_buf;
3237 l4kwqe3->snd_buf = csk->snd_buf;
3238 l4kwqe3->seed = csk->seed;
3239
3240 wqes[0] = (struct kwqe *) l4kwqe1;
3241 if (test_bit(SK_F_IPV6, &csk->flags)) {
3242 wqes[1] = (struct kwqe *) l4kwqe2;
3243 wqes[2] = (struct kwqe *) l4kwqe3;
3244 num_wqes = 3;
3245
3246 l4kwqe1->conn_flags = L4_KWQ_CONNECT_REQ1_IP_V6;
3247 l4kwqe2->op_code = L4_KWQE_OPCODE_VALUE_CONNECT2;
3248 l4kwqe2->flags =
3249 L4_KWQ_CONNECT_REQ2_LINKED_WITH_NEXT |
3250 L4_LAYER_CODE << L4_KWQ_CONNECT_REQ2_LAYER_CODE_SHIFT;
3251 l4kwqe2->src_ip_v6_2 = be32_to_cpu(csk->src_ip[1]);
3252 l4kwqe2->src_ip_v6_3 = be32_to_cpu(csk->src_ip[2]);
3253 l4kwqe2->src_ip_v6_4 = be32_to_cpu(csk->src_ip[3]);
3254 l4kwqe2->dst_ip_v6_2 = be32_to_cpu(csk->dst_ip[1]);
3255 l4kwqe2->dst_ip_v6_3 = be32_to_cpu(csk->dst_ip[2]);
3256 l4kwqe2->dst_ip_v6_4 = be32_to_cpu(csk->dst_ip[3]);
3257 l4kwqe3->mss = l4kwqe3->pmtu - sizeof(struct ipv6hdr) -
3258 sizeof(struct tcphdr);
3259 } else {
3260 wqes[1] = (struct kwqe *) l4kwqe3;
3261 l4kwqe3->mss = l4kwqe3->pmtu - sizeof(struct iphdr) -
3262 sizeof(struct tcphdr);
3263 }
3264
3265 l4kwqe1->op_code = L4_KWQE_OPCODE_VALUE_CONNECT1;
3266 l4kwqe1->flags =
3267 (L4_LAYER_CODE << L4_KWQ_CONNECT_REQ1_LAYER_CODE_SHIFT) |
3268 L4_KWQ_CONNECT_REQ3_LINKED_WITH_NEXT;
3269 l4kwqe1->cid = csk->cid;
3270 l4kwqe1->pg_cid = csk->pg_cid;
3271 l4kwqe1->src_ip = be32_to_cpu(csk->src_ip[0]);
3272 l4kwqe1->dst_ip = be32_to_cpu(csk->dst_ip[0]);
3273 l4kwqe1->src_port = be16_to_cpu(csk->src_port);
3274 l4kwqe1->dst_port = be16_to_cpu(csk->dst_port);
3275 if (csk->tcp_flags & SK_TCP_NO_DELAY_ACK)
3276 tcp_flags |= L4_KWQ_CONNECT_REQ1_NO_DELAY_ACK;
3277 if (csk->tcp_flags & SK_TCP_KEEP_ALIVE)
3278 tcp_flags |= L4_KWQ_CONNECT_REQ1_KEEP_ALIVE;
3279 if (csk->tcp_flags & SK_TCP_NAGLE)
3280 tcp_flags |= L4_KWQ_CONNECT_REQ1_NAGLE_ENABLE;
3281 if (csk->tcp_flags & SK_TCP_TIMESTAMP)
3282 tcp_flags |= L4_KWQ_CONNECT_REQ1_TIME_STAMP;
3283 if (csk->tcp_flags & SK_TCP_SACK)
3284 tcp_flags |= L4_KWQ_CONNECT_REQ1_SACK;
3285 if (csk->tcp_flags & SK_TCP_SEG_SCALING)
3286 tcp_flags |= L4_KWQ_CONNECT_REQ1_SEG_SCALING;
3287
3288 l4kwqe1->tcp_flags = tcp_flags;
3289
3290 return dev->submit_kwqes(dev, wqes, num_wqes);
3291}
3292
3293static int cnic_cm_close_req(struct cnic_sock *csk)
3294{
3295 struct cnic_dev *dev = csk->dev;
3296 struct l4_kwq_close_req *l4kwqe;
3297 struct kwqe *wqes[1];
3298
3299 l4kwqe = (struct l4_kwq_close_req *) &csk->kwqe2;
3300 memset(l4kwqe, 0, sizeof(*l4kwqe));
3301 wqes[0] = (struct kwqe *) l4kwqe;
3302
3303 l4kwqe->op_code = L4_KWQE_OPCODE_VALUE_CLOSE;
3304 l4kwqe->flags = L4_LAYER_CODE << L4_KWQ_CLOSE_REQ_LAYER_CODE_SHIFT;
3305 l4kwqe->cid = csk->cid;
3306
3307 return dev->submit_kwqes(dev, wqes, 1);
3308}
3309
3310static int cnic_cm_abort_req(struct cnic_sock *csk)
3311{
3312 struct cnic_dev *dev = csk->dev;
3313 struct l4_kwq_reset_req *l4kwqe;
3314 struct kwqe *wqes[1];
3315
3316 l4kwqe = (struct l4_kwq_reset_req *) &csk->kwqe2;
3317 memset(l4kwqe, 0, sizeof(*l4kwqe));
3318 wqes[0] = (struct kwqe *) l4kwqe;
3319
3320 l4kwqe->op_code = L4_KWQE_OPCODE_VALUE_RESET;
3321 l4kwqe->flags = L4_LAYER_CODE << L4_KWQ_RESET_REQ_LAYER_CODE_SHIFT;
3322 l4kwqe->cid = csk->cid;
3323
3324 return dev->submit_kwqes(dev, wqes, 1);
3325}
3326
3327static int cnic_cm_create(struct cnic_dev *dev, int ulp_type, u32 cid,
3328 u32 l5_cid, struct cnic_sock **csk, void *context)
3329{
3330 struct cnic_local *cp = dev->cnic_priv;
3331 struct cnic_sock *csk1;
3332
3333 if (l5_cid >= MAX_CM_SK_TBL_SZ)
3334 return -EINVAL;
3335
Michael Chanfdf24082010-10-13 14:06:47 +00003336 if (cp->ctx_tbl) {
3337 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
3338
3339 if (test_bit(CTX_FL_OFFLD_START, &ctx->ctx_flags))
3340 return -EAGAIN;
3341 }
3342
Michael Chana4636962009-06-08 18:14:43 -07003343 csk1 = &cp->csk_tbl[l5_cid];
3344 if (atomic_read(&csk1->ref_count))
3345 return -EAGAIN;
3346
3347 if (test_and_set_bit(SK_F_INUSE, &csk1->flags))
3348 return -EBUSY;
3349
3350 csk1->dev = dev;
3351 csk1->cid = cid;
3352 csk1->l5_cid = l5_cid;
3353 csk1->ulp_type = ulp_type;
3354 csk1->context = context;
3355
3356 csk1->ka_timeout = DEF_KA_TIMEOUT;
3357 csk1->ka_interval = DEF_KA_INTERVAL;
3358 csk1->ka_max_probe_count = DEF_KA_MAX_PROBE_COUNT;
3359 csk1->tos = DEF_TOS;
3360 csk1->ttl = DEF_TTL;
3361 csk1->snd_seq_scale = DEF_SND_SEQ_SCALE;
3362 csk1->rcv_buf = DEF_RCV_BUF;
3363 csk1->snd_buf = DEF_SND_BUF;
3364 csk1->seed = DEF_SEED;
3365
3366 *csk = csk1;
3367 return 0;
3368}
3369
3370static void cnic_cm_cleanup(struct cnic_sock *csk)
3371{
3372 if (csk->src_port) {
3373 struct cnic_dev *dev = csk->dev;
3374 struct cnic_local *cp = dev->cnic_priv;
3375
Michael Chan9b093362010-12-23 07:42:56 +00003376 cnic_free_id(&cp->csk_port_tbl, be16_to_cpu(csk->src_port));
Michael Chana4636962009-06-08 18:14:43 -07003377 csk->src_port = 0;
3378 }
3379}
3380
3381static void cnic_close_conn(struct cnic_sock *csk)
3382{
3383 if (test_bit(SK_F_PG_OFFLD_COMPLETE, &csk->flags)) {
3384 cnic_cm_upload_pg(csk);
3385 clear_bit(SK_F_PG_OFFLD_COMPLETE, &csk->flags);
3386 }
3387 cnic_cm_cleanup(csk);
3388}
3389
3390static int cnic_cm_destroy(struct cnic_sock *csk)
3391{
3392 if (!cnic_in_use(csk))
3393 return -EINVAL;
3394
3395 csk_hold(csk);
3396 clear_bit(SK_F_INUSE, &csk->flags);
3397 smp_mb__after_clear_bit();
3398 while (atomic_read(&csk->ref_count) != 1)
3399 msleep(1);
3400 cnic_cm_cleanup(csk);
3401
3402 csk->flags = 0;
3403 csk_put(csk);
3404 return 0;
3405}
3406
3407static inline u16 cnic_get_vlan(struct net_device *dev,
3408 struct net_device **vlan_dev)
3409{
3410 if (dev->priv_flags & IFF_802_1Q_VLAN) {
3411 *vlan_dev = vlan_dev_real_dev(dev);
3412 return vlan_dev_vlan_id(dev);
3413 }
3414 *vlan_dev = dev;
3415 return 0;
3416}
3417
3418static int cnic_get_v4_route(struct sockaddr_in *dst_addr,
3419 struct dst_entry **dst)
3420{
Randy Dunlapfaea56c2009-06-12 11:43:48 -07003421#if defined(CONFIG_INET)
Michael Chana4636962009-06-08 18:14:43 -07003422 struct rtable *rt;
3423
David S. Miller78fbfd82011-03-12 00:00:52 -05003424 rt = ip_route_output(&init_net, dst_addr->sin_addr.s_addr, 0, 0, 0);
3425 if (!IS_ERR(rt)) {
Changli Gaod8d1f302010-06-10 23:31:35 -07003426 *dst = &rt->dst;
David S. Miller78fbfd82011-03-12 00:00:52 -05003427 return 0;
3428 }
3429 return PTR_ERR(rt);
Randy Dunlapfaea56c2009-06-12 11:43:48 -07003430#else
3431 return -ENETUNREACH;
3432#endif
Michael Chana4636962009-06-08 18:14:43 -07003433}
3434
3435static int cnic_get_v6_route(struct sockaddr_in6 *dst_addr,
3436 struct dst_entry **dst)
3437{
Randy Dunlapfaea56c2009-06-12 11:43:48 -07003438#if defined(CONFIG_IPV6) || (defined(CONFIG_IPV6_MODULE) && defined(MODULE))
David S. Miller4c9483b2011-03-12 16:22:43 -05003439 struct flowi6 fl6;
Michael Chana4636962009-06-08 18:14:43 -07003440
David S. Miller4c9483b2011-03-12 16:22:43 -05003441 memset(&fl6, 0, sizeof(fl6));
3442 ipv6_addr_copy(&fl6.daddr, &dst_addr->sin6_addr);
3443 if (ipv6_addr_type(&fl6.daddr) & IPV6_ADDR_LINKLOCAL)
3444 fl6.flowi6_oif = dst_addr->sin6_scope_id;
Michael Chana4636962009-06-08 18:14:43 -07003445
David S. Miller4c9483b2011-03-12 16:22:43 -05003446 *dst = ip6_route_output(&init_net, NULL, &fl6);
Michael Chana4636962009-06-08 18:14:43 -07003447 if (*dst)
3448 return 0;
3449#endif
3450
3451 return -ENETUNREACH;
3452}
3453
3454static struct cnic_dev *cnic_cm_select_dev(struct sockaddr_in *dst_addr,
3455 int ulp_type)
3456{
3457 struct cnic_dev *dev = NULL;
3458 struct dst_entry *dst;
3459 struct net_device *netdev = NULL;
3460 int err = -ENETUNREACH;
3461
3462 if (dst_addr->sin_family == AF_INET)
3463 err = cnic_get_v4_route(dst_addr, &dst);
3464 else if (dst_addr->sin_family == AF_INET6) {
3465 struct sockaddr_in6 *dst_addr6 =
3466 (struct sockaddr_in6 *) dst_addr;
3467
3468 err = cnic_get_v6_route(dst_addr6, &dst);
3469 } else
3470 return NULL;
3471
3472 if (err)
3473 return NULL;
3474
3475 if (!dst->dev)
3476 goto done;
3477
3478 cnic_get_vlan(dst->dev, &netdev);
3479
3480 dev = cnic_from_netdev(netdev);
3481
3482done:
3483 dst_release(dst);
3484 if (dev)
3485 cnic_put(dev);
3486 return dev;
3487}
3488
3489static int cnic_resolve_addr(struct cnic_sock *csk, struct cnic_sockaddr *saddr)
3490{
3491 struct cnic_dev *dev = csk->dev;
3492 struct cnic_local *cp = dev->cnic_priv;
3493
3494 return cnic_send_nlmsg(cp, ISCSI_KEVENT_PATH_REQ, csk);
3495}
3496
3497static int cnic_get_route(struct cnic_sock *csk, struct cnic_sockaddr *saddr)
3498{
3499 struct cnic_dev *dev = csk->dev;
3500 struct cnic_local *cp = dev->cnic_priv;
Michael Chanc76284a2010-02-24 14:42:07 +00003501 int is_v6, rc = 0;
3502 struct dst_entry *dst = NULL;
Michael Chana4636962009-06-08 18:14:43 -07003503 struct net_device *realdev;
Michael Chan9b093362010-12-23 07:42:56 +00003504 __be16 local_port;
3505 u32 port_id;
Michael Chana4636962009-06-08 18:14:43 -07003506
3507 if (saddr->local.v6.sin6_family == AF_INET6 &&
3508 saddr->remote.v6.sin6_family == AF_INET6)
3509 is_v6 = 1;
3510 else if (saddr->local.v4.sin_family == AF_INET &&
3511 saddr->remote.v4.sin_family == AF_INET)
3512 is_v6 = 0;
3513 else
3514 return -EINVAL;
3515
3516 clear_bit(SK_F_IPV6, &csk->flags);
3517
3518 if (is_v6) {
Michael Chana4636962009-06-08 18:14:43 -07003519 set_bit(SK_F_IPV6, &csk->flags);
Michael Chanc76284a2010-02-24 14:42:07 +00003520 cnic_get_v6_route(&saddr->remote.v6, &dst);
Michael Chana4636962009-06-08 18:14:43 -07003521
3522 memcpy(&csk->dst_ip[0], &saddr->remote.v6.sin6_addr,
3523 sizeof(struct in6_addr));
3524 csk->dst_port = saddr->remote.v6.sin6_port;
3525 local_port = saddr->local.v6.sin6_port;
Michael Chana4636962009-06-08 18:14:43 -07003526
3527 } else {
Michael Chanc76284a2010-02-24 14:42:07 +00003528 cnic_get_v4_route(&saddr->remote.v4, &dst);
Michael Chana4636962009-06-08 18:14:43 -07003529
3530 csk->dst_ip[0] = saddr->remote.v4.sin_addr.s_addr;
3531 csk->dst_port = saddr->remote.v4.sin_port;
3532 local_port = saddr->local.v4.sin_port;
3533 }
3534
Michael Chanc76284a2010-02-24 14:42:07 +00003535 csk->vlan_id = 0;
3536 csk->mtu = dev->netdev->mtu;
3537 if (dst && dst->dev) {
3538 u16 vlan = cnic_get_vlan(dst->dev, &realdev);
3539 if (realdev == dev->netdev) {
3540 csk->vlan_id = vlan;
3541 csk->mtu = dst_mtu(dst);
3542 }
3543 }
Michael Chana4636962009-06-08 18:14:43 -07003544
Michael Chan9b093362010-12-23 07:42:56 +00003545 port_id = be16_to_cpu(local_port);
3546 if (port_id >= CNIC_LOCAL_PORT_MIN &&
3547 port_id < CNIC_LOCAL_PORT_MAX) {
3548 if (cnic_alloc_id(&cp->csk_port_tbl, port_id))
3549 port_id = 0;
Michael Chana4636962009-06-08 18:14:43 -07003550 } else
Michael Chan9b093362010-12-23 07:42:56 +00003551 port_id = 0;
Michael Chana4636962009-06-08 18:14:43 -07003552
Michael Chan9b093362010-12-23 07:42:56 +00003553 if (!port_id) {
3554 port_id = cnic_alloc_new_id(&cp->csk_port_tbl);
3555 if (port_id == -1) {
Michael Chana4636962009-06-08 18:14:43 -07003556 rc = -ENOMEM;
3557 goto err_out;
3558 }
Michael Chan9b093362010-12-23 07:42:56 +00003559 local_port = cpu_to_be16(port_id);
Michael Chana4636962009-06-08 18:14:43 -07003560 }
3561 csk->src_port = local_port;
3562
Michael Chana4636962009-06-08 18:14:43 -07003563err_out:
3564 dst_release(dst);
3565 return rc;
3566}
3567
3568static void cnic_init_csk_state(struct cnic_sock *csk)
3569{
3570 csk->state = 0;
3571 clear_bit(SK_F_OFFLD_SCHED, &csk->flags);
3572 clear_bit(SK_F_CLOSING, &csk->flags);
3573}
3574
3575static int cnic_cm_connect(struct cnic_sock *csk, struct cnic_sockaddr *saddr)
3576{
Dmitry Kravkovfab0dc82011-03-31 17:04:22 -07003577 struct cnic_local *cp = csk->dev->cnic_priv;
Michael Chana4636962009-06-08 18:14:43 -07003578 int err = 0;
3579
Dmitry Kravkovfab0dc82011-03-31 17:04:22 -07003580 if (cp->ethdev->drv_state & CNIC_DRV_STATE_NO_ISCSI)
3581 return -EOPNOTSUPP;
3582
Michael Chana4636962009-06-08 18:14:43 -07003583 if (!cnic_in_use(csk))
3584 return -EINVAL;
3585
3586 if (test_and_set_bit(SK_F_CONNECT_START, &csk->flags))
3587 return -EINVAL;
3588
3589 cnic_init_csk_state(csk);
3590
3591 err = cnic_get_route(csk, saddr);
3592 if (err)
3593 goto err_out;
3594
3595 err = cnic_resolve_addr(csk, saddr);
3596 if (!err)
3597 return 0;
3598
3599err_out:
3600 clear_bit(SK_F_CONNECT_START, &csk->flags);
3601 return err;
3602}
3603
3604static int cnic_cm_abort(struct cnic_sock *csk)
3605{
3606 struct cnic_local *cp = csk->dev->cnic_priv;
Michael Chan7b34a462010-06-15 08:57:03 +00003607 u32 opcode = L4_KCQE_OPCODE_VALUE_RESET_COMP;
Michael Chana4636962009-06-08 18:14:43 -07003608
3609 if (!cnic_in_use(csk))
3610 return -EINVAL;
3611
3612 if (cnic_abort_prep(csk))
3613 return cnic_cm_abort_req(csk);
3614
3615 /* Getting here means that we haven't started connect, or
3616 * connect was not successful.
3617 */
3618
Michael Chana4636962009-06-08 18:14:43 -07003619 cp->close_conn(csk, opcode);
Michael Chan7b34a462010-06-15 08:57:03 +00003620 if (csk->state != opcode)
3621 return -EALREADY;
Michael Chana4636962009-06-08 18:14:43 -07003622
3623 return 0;
3624}
3625
3626static int cnic_cm_close(struct cnic_sock *csk)
3627{
3628 if (!cnic_in_use(csk))
3629 return -EINVAL;
3630
3631 if (cnic_close_prep(csk)) {
3632 csk->state = L4_KCQE_OPCODE_VALUE_CLOSE_COMP;
3633 return cnic_cm_close_req(csk);
Michael Chaned99daa52010-06-15 08:57:00 +00003634 } else {
3635 return -EALREADY;
Michael Chana4636962009-06-08 18:14:43 -07003636 }
3637 return 0;
3638}
3639
3640static void cnic_cm_upcall(struct cnic_local *cp, struct cnic_sock *csk,
3641 u8 opcode)
3642{
3643 struct cnic_ulp_ops *ulp_ops;
3644 int ulp_type = csk->ulp_type;
3645
3646 rcu_read_lock();
3647 ulp_ops = rcu_dereference(cp->ulp_ops[ulp_type]);
3648 if (ulp_ops) {
3649 if (opcode == L4_KCQE_OPCODE_VALUE_CONNECT_COMPLETE)
3650 ulp_ops->cm_connect_complete(csk);
3651 else if (opcode == L4_KCQE_OPCODE_VALUE_CLOSE_COMP)
3652 ulp_ops->cm_close_complete(csk);
3653 else if (opcode == L4_KCQE_OPCODE_VALUE_RESET_RECEIVED)
3654 ulp_ops->cm_remote_abort(csk);
3655 else if (opcode == L4_KCQE_OPCODE_VALUE_RESET_COMP)
3656 ulp_ops->cm_abort_complete(csk);
3657 else if (opcode == L4_KCQE_OPCODE_VALUE_CLOSE_RECEIVED)
3658 ulp_ops->cm_remote_close(csk);
3659 }
3660 rcu_read_unlock();
3661}
3662
3663static int cnic_cm_set_pg(struct cnic_sock *csk)
3664{
3665 if (cnic_offld_prep(csk)) {
3666 if (test_bit(SK_F_PG_OFFLD_COMPLETE, &csk->flags))
3667 cnic_cm_update_pg(csk);
3668 else
3669 cnic_cm_offload_pg(csk);
3670 }
3671 return 0;
3672}
3673
3674static void cnic_cm_process_offld_pg(struct cnic_dev *dev, struct l4_kcq *kcqe)
3675{
3676 struct cnic_local *cp = dev->cnic_priv;
3677 u32 l5_cid = kcqe->pg_host_opaque;
3678 u8 opcode = kcqe->op_code;
3679 struct cnic_sock *csk = &cp->csk_tbl[l5_cid];
3680
3681 csk_hold(csk);
3682 if (!cnic_in_use(csk))
3683 goto done;
3684
3685 if (opcode == L4_KCQE_OPCODE_VALUE_UPDATE_PG) {
3686 clear_bit(SK_F_OFFLD_SCHED, &csk->flags);
3687 goto done;
3688 }
Eddie Waia9736c02010-02-24 14:42:04 +00003689 /* Possible PG kcqe status: SUCCESS, OFFLOADED_PG, or CTX_ALLOC_FAIL */
3690 if (kcqe->status == L4_KCQE_COMPLETION_STATUS_CTX_ALLOC_FAIL) {
3691 clear_bit(SK_F_OFFLD_SCHED, &csk->flags);
3692 cnic_cm_upcall(cp, csk,
3693 L4_KCQE_OPCODE_VALUE_CONNECT_COMPLETE);
3694 goto done;
3695 }
3696
Michael Chana4636962009-06-08 18:14:43 -07003697 csk->pg_cid = kcqe->pg_cid;
3698 set_bit(SK_F_PG_OFFLD_COMPLETE, &csk->flags);
3699 cnic_cm_conn_req(csk);
3700
3701done:
3702 csk_put(csk);
3703}
3704
Michael Chane1928c82010-12-23 07:43:04 +00003705static void cnic_process_fcoe_term_conn(struct cnic_dev *dev, struct kcqe *kcqe)
3706{
3707 struct cnic_local *cp = dev->cnic_priv;
3708 struct fcoe_kcqe *fc_kcqe = (struct fcoe_kcqe *) kcqe;
3709 u32 l5_cid = fc_kcqe->fcoe_conn_id + BNX2X_FCOE_L5_CID_BASE;
3710 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
3711
3712 ctx->timestamp = jiffies;
3713 ctx->wait_cond = 1;
3714 wake_up(&ctx->waitq);
3715}
3716
Michael Chana4636962009-06-08 18:14:43 -07003717static void cnic_cm_process_kcqe(struct cnic_dev *dev, struct kcqe *kcqe)
3718{
3719 struct cnic_local *cp = dev->cnic_priv;
3720 struct l4_kcq *l4kcqe = (struct l4_kcq *) kcqe;
3721 u8 opcode = l4kcqe->op_code;
3722 u32 l5_cid;
3723 struct cnic_sock *csk;
3724
Michael Chane1928c82010-12-23 07:43:04 +00003725 if (opcode == FCOE_RAMROD_CMD_ID_TERMINATE_CONN) {
3726 cnic_process_fcoe_term_conn(dev, kcqe);
3727 return;
3728 }
Michael Chana4636962009-06-08 18:14:43 -07003729 if (opcode == L4_KCQE_OPCODE_VALUE_OFFLOAD_PG ||
3730 opcode == L4_KCQE_OPCODE_VALUE_UPDATE_PG) {
3731 cnic_cm_process_offld_pg(dev, l4kcqe);
3732 return;
3733 }
3734
3735 l5_cid = l4kcqe->conn_id;
3736 if (opcode & 0x80)
3737 l5_cid = l4kcqe->cid;
3738 if (l5_cid >= MAX_CM_SK_TBL_SZ)
3739 return;
3740
3741 csk = &cp->csk_tbl[l5_cid];
3742 csk_hold(csk);
3743
3744 if (!cnic_in_use(csk)) {
3745 csk_put(csk);
3746 return;
3747 }
3748
3749 switch (opcode) {
Eddie Waia9736c02010-02-24 14:42:04 +00003750 case L5CM_RAMROD_CMD_ID_TCP_CONNECT:
3751 if (l4kcqe->status != 0) {
3752 clear_bit(SK_F_OFFLD_SCHED, &csk->flags);
3753 cnic_cm_upcall(cp, csk,
3754 L4_KCQE_OPCODE_VALUE_CONNECT_COMPLETE);
3755 }
3756 break;
Michael Chana4636962009-06-08 18:14:43 -07003757 case L4_KCQE_OPCODE_VALUE_CONNECT_COMPLETE:
3758 if (l4kcqe->status == 0)
3759 set_bit(SK_F_OFFLD_COMPLETE, &csk->flags);
3760
3761 smp_mb__before_clear_bit();
3762 clear_bit(SK_F_OFFLD_SCHED, &csk->flags);
3763 cnic_cm_upcall(cp, csk, opcode);
3764 break;
3765
3766 case L4_KCQE_OPCODE_VALUE_RESET_RECEIVED:
Michael Chana4636962009-06-08 18:14:43 -07003767 case L4_KCQE_OPCODE_VALUE_CLOSE_COMP:
3768 case L4_KCQE_OPCODE_VALUE_RESET_COMP:
Michael Chan71034ba2009-10-10 13:46:59 +00003769 case L5CM_RAMROD_CMD_ID_SEARCHER_DELETE:
3770 case L5CM_RAMROD_CMD_ID_TERMINATE_OFFLOAD:
Michael Chana4636962009-06-08 18:14:43 -07003771 cp->close_conn(csk, opcode);
3772 break;
3773
3774 case L4_KCQE_OPCODE_VALUE_CLOSE_RECEIVED:
3775 cnic_cm_upcall(cp, csk, opcode);
3776 break;
3777 }
3778 csk_put(csk);
3779}
3780
3781static void cnic_cm_indicate_kcqe(void *data, struct kcqe *kcqe[], u32 num)
3782{
3783 struct cnic_dev *dev = data;
3784 int i;
3785
3786 for (i = 0; i < num; i++)
3787 cnic_cm_process_kcqe(dev, kcqe[i]);
3788}
3789
3790static struct cnic_ulp_ops cm_ulp_ops = {
3791 .indicate_kcqes = cnic_cm_indicate_kcqe,
3792};
3793
3794static void cnic_cm_free_mem(struct cnic_dev *dev)
3795{
3796 struct cnic_local *cp = dev->cnic_priv;
3797
3798 kfree(cp->csk_tbl);
3799 cp->csk_tbl = NULL;
3800 cnic_free_id_tbl(&cp->csk_port_tbl);
3801}
3802
3803static int cnic_cm_alloc_mem(struct cnic_dev *dev)
3804{
3805 struct cnic_local *cp = dev->cnic_priv;
3806
3807 cp->csk_tbl = kzalloc(sizeof(struct cnic_sock) * MAX_CM_SK_TBL_SZ,
3808 GFP_KERNEL);
3809 if (!cp->csk_tbl)
3810 return -ENOMEM;
3811
3812 if (cnic_init_id_tbl(&cp->csk_port_tbl, CNIC_LOCAL_PORT_RANGE,
3813 CNIC_LOCAL_PORT_MIN)) {
3814 cnic_cm_free_mem(dev);
3815 return -ENOMEM;
3816 }
3817 return 0;
3818}
3819
3820static int cnic_ready_to_close(struct cnic_sock *csk, u32 opcode)
3821{
Michael Chan943189f2010-06-15 08:57:02 +00003822 if (test_and_clear_bit(SK_F_OFFLD_COMPLETE, &csk->flags)) {
3823 /* Unsolicited RESET_COMP or RESET_RECEIVED */
3824 opcode = L4_KCQE_OPCODE_VALUE_RESET_RECEIVED;
3825 csk->state = opcode;
Michael Chana1e621b2010-06-15 08:57:01 +00003826 }
Michael Chan943189f2010-06-15 08:57:02 +00003827
3828 /* 1. If event opcode matches the expected event in csk->state
3829 * 2. If the expected event is CLOSE_COMP, we accept any event
Michael Chan7b34a462010-06-15 08:57:03 +00003830 * 3. If the expected event is 0, meaning the connection was never
3831 * never established, we accept the opcode from cm_abort.
Michael Chan943189f2010-06-15 08:57:02 +00003832 */
Michael Chan7b34a462010-06-15 08:57:03 +00003833 if (opcode == csk->state || csk->state == 0 ||
3834 csk->state == L4_KCQE_OPCODE_VALUE_CLOSE_COMP) {
3835 if (!test_and_set_bit(SK_F_CLOSING, &csk->flags)) {
3836 if (csk->state == 0)
3837 csk->state = opcode;
Michael Chana4636962009-06-08 18:14:43 -07003838 return 1;
Michael Chan7b34a462010-06-15 08:57:03 +00003839 }
Michael Chana4636962009-06-08 18:14:43 -07003840 }
3841 return 0;
3842}
3843
3844static void cnic_close_bnx2_conn(struct cnic_sock *csk, u32 opcode)
3845{
3846 struct cnic_dev *dev = csk->dev;
3847 struct cnic_local *cp = dev->cnic_priv;
3848
Michael Chana1e621b2010-06-15 08:57:01 +00003849 if (opcode == L4_KCQE_OPCODE_VALUE_RESET_RECEIVED) {
3850 cnic_cm_upcall(cp, csk, opcode);
3851 return;
3852 }
3853
Michael Chana4636962009-06-08 18:14:43 -07003854 clear_bit(SK_F_CONNECT_START, &csk->flags);
Eddie Wai66883e92010-02-24 14:42:05 +00003855 cnic_close_conn(csk);
Michael Chan7b34a462010-06-15 08:57:03 +00003856 csk->state = opcode;
Eddie Wai66883e92010-02-24 14:42:05 +00003857 cnic_cm_upcall(cp, csk, opcode);
Michael Chana4636962009-06-08 18:14:43 -07003858}
3859
3860static void cnic_cm_stop_bnx2_hw(struct cnic_dev *dev)
3861{
3862}
3863
3864static int cnic_cm_init_bnx2_hw(struct cnic_dev *dev)
3865{
3866 u32 seed;
3867
3868 get_random_bytes(&seed, 4);
3869 cnic_ctx_wr(dev, 45, 0, seed);
3870 return 0;
3871}
3872
Michael Chan71034ba2009-10-10 13:46:59 +00003873static void cnic_close_bnx2x_conn(struct cnic_sock *csk, u32 opcode)
3874{
3875 struct cnic_dev *dev = csk->dev;
3876 struct cnic_local *cp = dev->cnic_priv;
3877 struct cnic_context *ctx = &cp->ctx_tbl[csk->l5_cid];
3878 union l5cm_specific_data l5_data;
3879 u32 cmd = 0;
3880 int close_complete = 0;
3881
3882 switch (opcode) {
3883 case L4_KCQE_OPCODE_VALUE_RESET_RECEIVED:
3884 case L4_KCQE_OPCODE_VALUE_CLOSE_COMP:
3885 case L4_KCQE_OPCODE_VALUE_RESET_COMP:
Michael Chan7b34a462010-06-15 08:57:03 +00003886 if (cnic_ready_to_close(csk, opcode)) {
3887 if (test_bit(SK_F_PG_OFFLD_COMPLETE, &csk->flags))
3888 cmd = L5CM_RAMROD_CMD_ID_SEARCHER_DELETE;
3889 else
3890 close_complete = 1;
3891 }
Michael Chan71034ba2009-10-10 13:46:59 +00003892 break;
3893 case L5CM_RAMROD_CMD_ID_SEARCHER_DELETE:
3894 cmd = L5CM_RAMROD_CMD_ID_TERMINATE_OFFLOAD;
3895 break;
3896 case L5CM_RAMROD_CMD_ID_TERMINATE_OFFLOAD:
3897 close_complete = 1;
3898 break;
3899 }
3900 if (cmd) {
3901 memset(&l5_data, 0, sizeof(l5_data));
3902
3903 cnic_submit_kwqe_16(dev, cmd, csk->cid, ISCSI_CONNECTION_TYPE,
3904 &l5_data);
3905 } else if (close_complete) {
3906 ctx->timestamp = jiffies;
3907 cnic_close_conn(csk);
3908 cnic_cm_upcall(cp, csk, csk->state);
3909 }
3910}
3911
3912static void cnic_cm_stop_bnx2x_hw(struct cnic_dev *dev)
3913{
Michael Chanfdf24082010-10-13 14:06:47 +00003914 struct cnic_local *cp = dev->cnic_priv;
3915 int i;
3916
3917 if (!cp->ctx_tbl)
3918 return;
3919
3920 if (!netif_running(dev->netdev))
3921 return;
3922
3923 for (i = 0; i < cp->max_cid_space; i++) {
3924 struct cnic_context *ctx = &cp->ctx_tbl[i];
3925
3926 while (test_bit(CTX_FL_DELETE_WAIT, &ctx->ctx_flags))
3927 msleep(10);
3928
3929 if (test_bit(CTX_FL_OFFLD_START, &ctx->ctx_flags))
3930 netdev_warn(dev->netdev, "CID %x not deleted\n",
3931 ctx->cid);
3932 }
3933
3934 cancel_delayed_work(&cp->delete_task);
3935 flush_workqueue(cnic_wq);
3936
3937 if (atomic_read(&cp->iscsi_conn) != 0)
3938 netdev_warn(dev->netdev, "%d iSCSI connections not destroyed\n",
3939 atomic_read(&cp->iscsi_conn));
Michael Chan71034ba2009-10-10 13:46:59 +00003940}
3941
3942static int cnic_cm_init_bnx2x_hw(struct cnic_dev *dev)
3943{
3944 struct cnic_local *cp = dev->cnic_priv;
Michael Chan14203982010-10-06 03:16:06 +00003945 u32 pfid = cp->pfid;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00003946 u32 port = CNIC_PORT(cp);
Michael Chan71034ba2009-10-10 13:46:59 +00003947
3948 cnic_init_bnx2x_mac(dev);
3949 cnic_bnx2x_set_tcp_timestamp(dev, 1);
3950
3951 CNIC_WR16(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00003952 XSTORM_ISCSI_LOCAL_VLAN_OFFSET(pfid), 0);
Michael Chan71034ba2009-10-10 13:46:59 +00003953
3954 CNIC_WR(dev, BAR_XSTRORM_INTMEM +
Dmitry Kravkov523224a2010-10-06 03:23:26 +00003955 XSTORM_TCP_GLOBAL_DEL_ACK_COUNTER_ENABLED_OFFSET(port), 1);
Michael Chan71034ba2009-10-10 13:46:59 +00003956 CNIC_WR(dev, BAR_XSTRORM_INTMEM +
Dmitry Kravkov523224a2010-10-06 03:23:26 +00003957 XSTORM_TCP_GLOBAL_DEL_ACK_COUNTER_MAX_COUNT_OFFSET(port),
Michael Chan71034ba2009-10-10 13:46:59 +00003958 DEF_MAX_DA_COUNT);
3959
3960 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00003961 XSTORM_ISCSI_TCP_VARS_TTL_OFFSET(pfid), DEF_TTL);
Michael Chan71034ba2009-10-10 13:46:59 +00003962 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00003963 XSTORM_ISCSI_TCP_VARS_TOS_OFFSET(pfid), DEF_TOS);
Michael Chan71034ba2009-10-10 13:46:59 +00003964 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00003965 XSTORM_ISCSI_TCP_VARS_ADV_WND_SCL_OFFSET(pfid), 2);
Michael Chan71034ba2009-10-10 13:46:59 +00003966 CNIC_WR(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00003967 XSTORM_TCP_TX_SWS_TIMER_VAL_OFFSET(pfid), DEF_SWS_TIMER);
Michael Chan71034ba2009-10-10 13:46:59 +00003968
Michael Chan14203982010-10-06 03:16:06 +00003969 CNIC_WR(dev, BAR_TSTRORM_INTMEM + TSTORM_TCP_MAX_CWND_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00003970 DEF_MAX_CWND);
3971 return 0;
3972}
3973
Michael Chanfdf24082010-10-13 14:06:47 +00003974static void cnic_delete_task(struct work_struct *work)
3975{
3976 struct cnic_local *cp;
3977 struct cnic_dev *dev;
3978 u32 i;
3979 int need_resched = 0;
3980
3981 cp = container_of(work, struct cnic_local, delete_task.work);
3982 dev = cp->dev;
3983
Dmitry Kravkovfab0dc82011-03-31 17:04:22 -07003984 if (test_and_clear_bit(CNIC_LCL_FL_STOP_ISCSI, &cp->cnic_local_flags)) {
3985 struct drv_ctl_info info;
3986
Dmitry Kravkovfab0dc82011-03-31 17:04:22 -07003987 cnic_ulp_stop_one(cp, CNIC_ULP_ISCSI);
Dmitry Kravkovfab0dc82011-03-31 17:04:22 -07003988
3989 info.cmd = DRV_CTL_ISCSI_STOPPED_CMD;
3990 cp->ethdev->drv_ctl(dev->netdev, &info);
3991 }
3992
Michael Chanfdf24082010-10-13 14:06:47 +00003993 for (i = 0; i < cp->max_cid_space; i++) {
3994 struct cnic_context *ctx = &cp->ctx_tbl[i];
3995
3996 if (!test_bit(CTX_FL_OFFLD_START, &ctx->ctx_flags) ||
3997 !test_bit(CTX_FL_DELETE_WAIT, &ctx->ctx_flags))
3998 continue;
3999
4000 if (!time_after(jiffies, ctx->timestamp + (2 * HZ))) {
4001 need_resched = 1;
4002 continue;
4003 }
4004
4005 if (!test_and_clear_bit(CTX_FL_DELETE_WAIT, &ctx->ctx_flags))
4006 continue;
4007
4008 cnic_bnx2x_destroy_ramrod(dev, i);
4009
4010 cnic_free_bnx2x_conn_resc(dev, i);
4011 if (ctx->ulp_proto_id == CNIC_ULP_ISCSI)
4012 atomic_dec(&cp->iscsi_conn);
4013
4014 clear_bit(CTX_FL_OFFLD_START, &ctx->ctx_flags);
4015 }
4016
4017 if (need_resched)
4018 queue_delayed_work(cnic_wq, &cp->delete_task,
4019 msecs_to_jiffies(10));
4020
4021}
4022
Michael Chana4636962009-06-08 18:14:43 -07004023static int cnic_cm_open(struct cnic_dev *dev)
4024{
4025 struct cnic_local *cp = dev->cnic_priv;
4026 int err;
4027
4028 err = cnic_cm_alloc_mem(dev);
4029 if (err)
4030 return err;
4031
4032 err = cp->start_cm(dev);
4033
4034 if (err)
4035 goto err_out;
4036
Michael Chanfdf24082010-10-13 14:06:47 +00004037 INIT_DELAYED_WORK(&cp->delete_task, cnic_delete_task);
4038
Michael Chana4636962009-06-08 18:14:43 -07004039 dev->cm_create = cnic_cm_create;
4040 dev->cm_destroy = cnic_cm_destroy;
4041 dev->cm_connect = cnic_cm_connect;
4042 dev->cm_abort = cnic_cm_abort;
4043 dev->cm_close = cnic_cm_close;
4044 dev->cm_select_dev = cnic_cm_select_dev;
4045
4046 cp->ulp_handle[CNIC_ULP_L4] = dev;
4047 rcu_assign_pointer(cp->ulp_ops[CNIC_ULP_L4], &cm_ulp_ops);
4048 return 0;
4049
4050err_out:
4051 cnic_cm_free_mem(dev);
4052 return err;
4053}
4054
4055static int cnic_cm_shutdown(struct cnic_dev *dev)
4056{
4057 struct cnic_local *cp = dev->cnic_priv;
4058 int i;
4059
4060 cp->stop_cm(dev);
4061
4062 if (!cp->csk_tbl)
4063 return 0;
4064
4065 for (i = 0; i < MAX_CM_SK_TBL_SZ; i++) {
4066 struct cnic_sock *csk = &cp->csk_tbl[i];
4067
4068 clear_bit(SK_F_INUSE, &csk->flags);
4069 cnic_cm_cleanup(csk);
4070 }
4071 cnic_cm_free_mem(dev);
4072
4073 return 0;
4074}
4075
4076static void cnic_init_context(struct cnic_dev *dev, u32 cid)
4077{
Michael Chana4636962009-06-08 18:14:43 -07004078 u32 cid_addr;
4079 int i;
4080
Michael Chana4636962009-06-08 18:14:43 -07004081 cid_addr = GET_CID_ADDR(cid);
4082
4083 for (i = 0; i < CTX_SIZE; i += 4)
4084 cnic_ctx_wr(dev, cid_addr, i, 0);
4085}
4086
4087static int cnic_setup_5709_context(struct cnic_dev *dev, int valid)
4088{
4089 struct cnic_local *cp = dev->cnic_priv;
4090 int ret = 0, i;
4091 u32 valid_bit = valid ? BNX2_CTX_HOST_PAGE_TBL_DATA0_VALID : 0;
4092
4093 if (CHIP_NUM(cp) != CHIP_NUM_5709)
4094 return 0;
4095
4096 for (i = 0; i < cp->ctx_blks; i++) {
4097 int j;
4098 u32 idx = cp->ctx_arr[i].cid / cp->cids_per_blk;
4099 u32 val;
4100
4101 memset(cp->ctx_arr[i].ctx, 0, BCM_PAGE_SIZE);
4102
4103 CNIC_WR(dev, BNX2_CTX_HOST_PAGE_TBL_DATA0,
4104 (cp->ctx_arr[i].mapping & 0xffffffff) | valid_bit);
4105 CNIC_WR(dev, BNX2_CTX_HOST_PAGE_TBL_DATA1,
4106 (u64) cp->ctx_arr[i].mapping >> 32);
4107 CNIC_WR(dev, BNX2_CTX_HOST_PAGE_TBL_CTRL, idx |
4108 BNX2_CTX_HOST_PAGE_TBL_CTRL_WRITE_REQ);
4109 for (j = 0; j < 10; j++) {
4110
4111 val = CNIC_RD(dev, BNX2_CTX_HOST_PAGE_TBL_CTRL);
4112 if (!(val & BNX2_CTX_HOST_PAGE_TBL_CTRL_WRITE_REQ))
4113 break;
4114 udelay(5);
4115 }
4116 if (val & BNX2_CTX_HOST_PAGE_TBL_CTRL_WRITE_REQ) {
4117 ret = -EBUSY;
4118 break;
4119 }
4120 }
4121 return ret;
4122}
4123
4124static void cnic_free_irq(struct cnic_dev *dev)
4125{
4126 struct cnic_local *cp = dev->cnic_priv;
4127 struct cnic_eth_dev *ethdev = cp->ethdev;
4128
4129 if (ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX) {
4130 cp->disable_int_sync(dev);
Michael Chan6e0dc642010-10-13 14:06:44 +00004131 tasklet_kill(&cp->cnic_irq_task);
Michael Chana4636962009-06-08 18:14:43 -07004132 free_irq(ethdev->irq_arr[0].vector, dev);
4133 }
4134}
4135
Michael Chan6e0dc642010-10-13 14:06:44 +00004136static int cnic_request_irq(struct cnic_dev *dev)
4137{
4138 struct cnic_local *cp = dev->cnic_priv;
4139 struct cnic_eth_dev *ethdev = cp->ethdev;
4140 int err;
4141
4142 err = request_irq(ethdev->irq_arr[0].vector, cnic_irq, 0, "cnic", dev);
4143 if (err)
4144 tasklet_disable(&cp->cnic_irq_task);
4145
4146 return err;
4147}
4148
Michael Chana4636962009-06-08 18:14:43 -07004149static int cnic_init_bnx2_irq(struct cnic_dev *dev)
4150{
4151 struct cnic_local *cp = dev->cnic_priv;
4152 struct cnic_eth_dev *ethdev = cp->ethdev;
4153
4154 if (ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX) {
4155 int err, i = 0;
4156 int sblk_num = cp->status_blk_num;
4157 u32 base = ((sblk_num - 1) * BNX2_HC_SB_CONFIG_SIZE) +
4158 BNX2_HC_SB_CONFIG_1;
4159
4160 CNIC_WR(dev, base, BNX2_HC_SB_CONFIG_1_ONE_SHOT);
4161
4162 CNIC_WR(dev, base + BNX2_HC_COMP_PROD_TRIP_OFF, (2 << 16) | 8);
4163 CNIC_WR(dev, base + BNX2_HC_COM_TICKS_OFF, (64 << 16) | 220);
4164 CNIC_WR(dev, base + BNX2_HC_CMD_TICKS_OFF, (64 << 16) | 220);
4165
Michael Chana4dde3a2010-02-24 14:42:08 +00004166 cp->last_status_idx = cp->status_blk.bnx2->status_idx;
Joe Perches164165d2009-11-19 09:30:10 +00004167 tasklet_init(&cp->cnic_irq_task, cnic_service_bnx2_msix,
Michael Chana4636962009-06-08 18:14:43 -07004168 (unsigned long) dev);
Michael Chan6e0dc642010-10-13 14:06:44 +00004169 err = cnic_request_irq(dev);
4170 if (err)
Michael Chana4636962009-06-08 18:14:43 -07004171 return err;
Michael Chan6e0dc642010-10-13 14:06:44 +00004172
Michael Chana4dde3a2010-02-24 14:42:08 +00004173 while (cp->status_blk.bnx2->status_completion_producer_index &&
Michael Chana4636962009-06-08 18:14:43 -07004174 i < 10) {
4175 CNIC_WR(dev, BNX2_HC_COALESCE_NOW,
4176 1 << (11 + sblk_num));
4177 udelay(10);
4178 i++;
4179 barrier();
4180 }
Michael Chana4dde3a2010-02-24 14:42:08 +00004181 if (cp->status_blk.bnx2->status_completion_producer_index) {
Michael Chana4636962009-06-08 18:14:43 -07004182 cnic_free_irq(dev);
4183 goto failed;
4184 }
4185
4186 } else {
Michael Chana4dde3a2010-02-24 14:42:08 +00004187 struct status_block *sblk = cp->status_blk.gen;
Michael Chana4636962009-06-08 18:14:43 -07004188 u32 hc_cmd = CNIC_RD(dev, BNX2_HC_COMMAND);
4189 int i = 0;
4190
4191 while (sblk->status_completion_producer_index && i < 10) {
4192 CNIC_WR(dev, BNX2_HC_COMMAND,
4193 hc_cmd | BNX2_HC_COMMAND_COAL_NOW_WO_INT);
4194 udelay(10);
4195 i++;
4196 barrier();
4197 }
4198 if (sblk->status_completion_producer_index)
4199 goto failed;
4200
4201 }
4202 return 0;
4203
4204failed:
Joe Perchesddf79b22010-02-17 15:01:54 +00004205 netdev_err(dev->netdev, "KCQ index not resetting to 0\n");
Michael Chana4636962009-06-08 18:14:43 -07004206 return -EBUSY;
4207}
4208
4209static void cnic_enable_bnx2_int(struct cnic_dev *dev)
4210{
4211 struct cnic_local *cp = dev->cnic_priv;
4212 struct cnic_eth_dev *ethdev = cp->ethdev;
4213
4214 if (!(ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX))
4215 return;
4216
4217 CNIC_WR(dev, BNX2_PCICFG_INT_ACK_CMD, cp->int_num |
4218 BNX2_PCICFG_INT_ACK_CMD_INDEX_VALID | cp->last_status_idx);
4219}
4220
Vladislav Zolotarov2ba45142011-01-31 14:39:17 +00004221static void cnic_get_bnx2_iscsi_info(struct cnic_dev *dev)
4222{
4223 u32 max_conn;
4224
4225 max_conn = cnic_reg_rd_ind(dev, BNX2_FW_MAX_ISCSI_CONN);
4226 dev->max_iscsi_conn = max_conn;
4227}
4228
Michael Chana4636962009-06-08 18:14:43 -07004229static void cnic_disable_bnx2_int_sync(struct cnic_dev *dev)
4230{
4231 struct cnic_local *cp = dev->cnic_priv;
4232 struct cnic_eth_dev *ethdev = cp->ethdev;
4233
4234 if (!(ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX))
4235 return;
4236
4237 CNIC_WR(dev, BNX2_PCICFG_INT_ACK_CMD, cp->int_num |
4238 BNX2_PCICFG_INT_ACK_CMD_MASK_INT);
4239 CNIC_RD(dev, BNX2_PCICFG_INT_ACK_CMD);
4240 synchronize_irq(ethdev->irq_arr[0].vector);
4241}
4242
4243static void cnic_init_bnx2_tx_ring(struct cnic_dev *dev)
4244{
4245 struct cnic_local *cp = dev->cnic_priv;
4246 struct cnic_eth_dev *ethdev = cp->ethdev;
Michael Chancd801532010-10-13 14:06:49 +00004247 struct cnic_uio_dev *udev = cp->udev;
Michael Chana4636962009-06-08 18:14:43 -07004248 u32 cid_addr, tx_cid, sb_id;
4249 u32 val, offset0, offset1, offset2, offset3;
4250 int i;
4251 struct tx_bd *txbd;
Michael Chancd801532010-10-13 14:06:49 +00004252 dma_addr_t buf_map, ring_map = udev->l2_ring_map;
Michael Chana4dde3a2010-02-24 14:42:08 +00004253 struct status_block *s_blk = cp->status_blk.gen;
Michael Chana4636962009-06-08 18:14:43 -07004254
4255 sb_id = cp->status_blk_num;
4256 tx_cid = 20;
Michael Chana4636962009-06-08 18:14:43 -07004257 cp->tx_cons_ptr = &s_blk->status_tx_quick_consumer_index2;
4258 if (ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX) {
Michael Chana4dde3a2010-02-24 14:42:08 +00004259 struct status_block_msix *sblk = cp->status_blk.bnx2;
Michael Chana4636962009-06-08 18:14:43 -07004260
4261 tx_cid = TX_TSS_CID + sb_id - 1;
Michael Chana4636962009-06-08 18:14:43 -07004262 CNIC_WR(dev, BNX2_TSCH_TSS_CFG, (sb_id << 24) |
4263 (TX_TSS_CID << 7));
4264 cp->tx_cons_ptr = &sblk->status_tx_quick_consumer_index;
4265 }
4266 cp->tx_cons = *cp->tx_cons_ptr;
4267
4268 cid_addr = GET_CID_ADDR(tx_cid);
4269 if (CHIP_NUM(cp) == CHIP_NUM_5709) {
4270 u32 cid_addr2 = GET_CID_ADDR(tx_cid + 4) + 0x40;
4271
4272 for (i = 0; i < PHY_CTX_SIZE; i += 4)
4273 cnic_ctx_wr(dev, cid_addr2, i, 0);
4274
4275 offset0 = BNX2_L2CTX_TYPE_XI;
4276 offset1 = BNX2_L2CTX_CMD_TYPE_XI;
4277 offset2 = BNX2_L2CTX_TBDR_BHADDR_HI_XI;
4278 offset3 = BNX2_L2CTX_TBDR_BHADDR_LO_XI;
4279 } else {
Michael Chanb58ffb42010-05-27 16:31:41 -07004280 cnic_init_context(dev, tx_cid);
4281 cnic_init_context(dev, tx_cid + 1);
4282
Michael Chana4636962009-06-08 18:14:43 -07004283 offset0 = BNX2_L2CTX_TYPE;
4284 offset1 = BNX2_L2CTX_CMD_TYPE;
4285 offset2 = BNX2_L2CTX_TBDR_BHADDR_HI;
4286 offset3 = BNX2_L2CTX_TBDR_BHADDR_LO;
4287 }
4288 val = BNX2_L2CTX_TYPE_TYPE_L2 | BNX2_L2CTX_TYPE_SIZE_L2;
4289 cnic_ctx_wr(dev, cid_addr, offset0, val);
4290
4291 val = BNX2_L2CTX_CMD_TYPE_TYPE_L2 | (8 << 16);
4292 cnic_ctx_wr(dev, cid_addr, offset1, val);
4293
Michael Chancd801532010-10-13 14:06:49 +00004294 txbd = (struct tx_bd *) udev->l2_ring;
Michael Chana4636962009-06-08 18:14:43 -07004295
Michael Chancd801532010-10-13 14:06:49 +00004296 buf_map = udev->l2_buf_map;
Michael Chana4636962009-06-08 18:14:43 -07004297 for (i = 0; i < MAX_TX_DESC_CNT; i++, txbd++) {
4298 txbd->tx_bd_haddr_hi = (u64) buf_map >> 32;
4299 txbd->tx_bd_haddr_lo = (u64) buf_map & 0xffffffff;
4300 }
Michael Chancd801532010-10-13 14:06:49 +00004301 val = (u64) ring_map >> 32;
Michael Chana4636962009-06-08 18:14:43 -07004302 cnic_ctx_wr(dev, cid_addr, offset2, val);
4303 txbd->tx_bd_haddr_hi = val;
4304
Michael Chancd801532010-10-13 14:06:49 +00004305 val = (u64) ring_map & 0xffffffff;
Michael Chana4636962009-06-08 18:14:43 -07004306 cnic_ctx_wr(dev, cid_addr, offset3, val);
4307 txbd->tx_bd_haddr_lo = val;
4308}
4309
4310static void cnic_init_bnx2_rx_ring(struct cnic_dev *dev)
4311{
4312 struct cnic_local *cp = dev->cnic_priv;
4313 struct cnic_eth_dev *ethdev = cp->ethdev;
Michael Chancd801532010-10-13 14:06:49 +00004314 struct cnic_uio_dev *udev = cp->udev;
Michael Chana4636962009-06-08 18:14:43 -07004315 u32 cid_addr, sb_id, val, coal_reg, coal_val;
4316 int i;
4317 struct rx_bd *rxbd;
Michael Chana4dde3a2010-02-24 14:42:08 +00004318 struct status_block *s_blk = cp->status_blk.gen;
Michael Chancd801532010-10-13 14:06:49 +00004319 dma_addr_t ring_map = udev->l2_ring_map;
Michael Chana4636962009-06-08 18:14:43 -07004320
4321 sb_id = cp->status_blk_num;
4322 cnic_init_context(dev, 2);
4323 cp->rx_cons_ptr = &s_blk->status_rx_quick_consumer_index2;
4324 coal_reg = BNX2_HC_COMMAND;
4325 coal_val = CNIC_RD(dev, coal_reg);
4326 if (ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX) {
Michael Chana4dde3a2010-02-24 14:42:08 +00004327 struct status_block_msix *sblk = cp->status_blk.bnx2;
Michael Chana4636962009-06-08 18:14:43 -07004328
4329 cp->rx_cons_ptr = &sblk->status_rx_quick_consumer_index;
4330 coal_reg = BNX2_HC_COALESCE_NOW;
4331 coal_val = 1 << (11 + sb_id);
4332 }
4333 i = 0;
4334 while (!(*cp->rx_cons_ptr != 0) && i < 10) {
4335 CNIC_WR(dev, coal_reg, coal_val);
4336 udelay(10);
4337 i++;
4338 barrier();
4339 }
4340 cp->rx_cons = *cp->rx_cons_ptr;
4341
4342 cid_addr = GET_CID_ADDR(2);
4343 val = BNX2_L2CTX_CTX_TYPE_CTX_BD_CHN_TYPE_VALUE |
4344 BNX2_L2CTX_CTX_TYPE_SIZE_L2 | (0x02 << 8);
4345 cnic_ctx_wr(dev, cid_addr, BNX2_L2CTX_CTX_TYPE, val);
4346
4347 if (sb_id == 0)
Michael Chand0549382009-10-28 03:41:59 -07004348 val = 2 << BNX2_L2CTX_L2_STATUSB_NUM_SHIFT;
Michael Chana4636962009-06-08 18:14:43 -07004349 else
Michael Chand0549382009-10-28 03:41:59 -07004350 val = BNX2_L2CTX_L2_STATUSB_NUM(sb_id);
Michael Chana4636962009-06-08 18:14:43 -07004351 cnic_ctx_wr(dev, cid_addr, BNX2_L2CTX_HOST_BDIDX, val);
4352
Michael Chancd801532010-10-13 14:06:49 +00004353 rxbd = (struct rx_bd *) (udev->l2_ring + BCM_PAGE_SIZE);
Michael Chana4636962009-06-08 18:14:43 -07004354 for (i = 0; i < MAX_RX_DESC_CNT; i++, rxbd++) {
4355 dma_addr_t buf_map;
4356 int n = (i % cp->l2_rx_ring_size) + 1;
4357
Michael Chancd801532010-10-13 14:06:49 +00004358 buf_map = udev->l2_buf_map + (n * cp->l2_single_buf_size);
Michael Chana4636962009-06-08 18:14:43 -07004359 rxbd->rx_bd_len = cp->l2_single_buf_size;
4360 rxbd->rx_bd_flags = RX_BD_FLAGS_START | RX_BD_FLAGS_END;
4361 rxbd->rx_bd_haddr_hi = (u64) buf_map >> 32;
4362 rxbd->rx_bd_haddr_lo = (u64) buf_map & 0xffffffff;
4363 }
Michael Chancd801532010-10-13 14:06:49 +00004364 val = (u64) (ring_map + BCM_PAGE_SIZE) >> 32;
Michael Chana4636962009-06-08 18:14:43 -07004365 cnic_ctx_wr(dev, cid_addr, BNX2_L2CTX_NX_BDHADDR_HI, val);
4366 rxbd->rx_bd_haddr_hi = val;
4367
Michael Chancd801532010-10-13 14:06:49 +00004368 val = (u64) (ring_map + BCM_PAGE_SIZE) & 0xffffffff;
Michael Chana4636962009-06-08 18:14:43 -07004369 cnic_ctx_wr(dev, cid_addr, BNX2_L2CTX_NX_BDHADDR_LO, val);
4370 rxbd->rx_bd_haddr_lo = val;
4371
4372 val = cnic_reg_rd_ind(dev, BNX2_RXP_SCRATCH_RXP_FLOOD);
4373 cnic_reg_wr_ind(dev, BNX2_RXP_SCRATCH_RXP_FLOOD, val | (1 << 2));
4374}
4375
4376static void cnic_shutdown_bnx2_rx_ring(struct cnic_dev *dev)
4377{
4378 struct kwqe *wqes[1], l2kwqe;
4379
4380 memset(&l2kwqe, 0, sizeof(l2kwqe));
4381 wqes[0] = &l2kwqe;
Michael Chane1928c82010-12-23 07:43:04 +00004382 l2kwqe.kwqe_op_flag = (L2_LAYER_CODE << KWQE_LAYER_SHIFT) |
Michael Chana4636962009-06-08 18:14:43 -07004383 (L2_KWQE_OPCODE_VALUE_FLUSH <<
4384 KWQE_OPCODE_SHIFT) | 2;
4385 dev->submit_kwqes(dev, wqes, 1);
4386}
4387
4388static void cnic_set_bnx2_mac(struct cnic_dev *dev)
4389{
4390 struct cnic_local *cp = dev->cnic_priv;
4391 u32 val;
4392
4393 val = cp->func << 2;
4394
4395 cp->shmem_base = cnic_reg_rd_ind(dev, BNX2_SHM_HDR_ADDR_0 + val);
4396
4397 val = cnic_reg_rd_ind(dev, cp->shmem_base +
4398 BNX2_PORT_HW_CFG_ISCSI_MAC_UPPER);
4399 dev->mac_addr[0] = (u8) (val >> 8);
4400 dev->mac_addr[1] = (u8) val;
4401
4402 CNIC_WR(dev, BNX2_EMAC_MAC_MATCH4, val);
4403
4404 val = cnic_reg_rd_ind(dev, cp->shmem_base +
4405 BNX2_PORT_HW_CFG_ISCSI_MAC_LOWER);
4406 dev->mac_addr[2] = (u8) (val >> 24);
4407 dev->mac_addr[3] = (u8) (val >> 16);
4408 dev->mac_addr[4] = (u8) (val >> 8);
4409 dev->mac_addr[5] = (u8) val;
4410
4411 CNIC_WR(dev, BNX2_EMAC_MAC_MATCH5, val);
4412
4413 val = 4 | BNX2_RPM_SORT_USER2_BC_EN;
4414 if (CHIP_NUM(cp) != CHIP_NUM_5709)
4415 val |= BNX2_RPM_SORT_USER2_PROM_VLAN;
4416
4417 CNIC_WR(dev, BNX2_RPM_SORT_USER2, 0x0);
4418 CNIC_WR(dev, BNX2_RPM_SORT_USER2, val);
4419 CNIC_WR(dev, BNX2_RPM_SORT_USER2, val | BNX2_RPM_SORT_USER2_ENA);
4420}
4421
4422static int cnic_start_bnx2_hw(struct cnic_dev *dev)
4423{
4424 struct cnic_local *cp = dev->cnic_priv;
4425 struct cnic_eth_dev *ethdev = cp->ethdev;
Michael Chana4dde3a2010-02-24 14:42:08 +00004426 struct status_block *sblk = cp->status_blk.gen;
Michael Chane6c28892010-06-24 14:58:39 +00004427 u32 val, kcq_cid_addr, kwq_cid_addr;
Michael Chana4636962009-06-08 18:14:43 -07004428 int err;
4429
4430 cnic_set_bnx2_mac(dev);
4431
4432 val = CNIC_RD(dev, BNX2_MQ_CONFIG);
4433 val &= ~BNX2_MQ_CONFIG_KNL_BYP_BLK_SIZE;
4434 if (BCM_PAGE_BITS > 12)
4435 val |= (12 - 8) << 4;
4436 else
4437 val |= (BCM_PAGE_BITS - 8) << 4;
4438
4439 CNIC_WR(dev, BNX2_MQ_CONFIG, val);
4440
4441 CNIC_WR(dev, BNX2_HC_COMP_PROD_TRIP, (2 << 16) | 8);
4442 CNIC_WR(dev, BNX2_HC_COM_TICKS, (64 << 16) | 220);
4443 CNIC_WR(dev, BNX2_HC_CMD_TICKS, (64 << 16) | 220);
4444
4445 err = cnic_setup_5709_context(dev, 1);
4446 if (err)
4447 return err;
4448
4449 cnic_init_context(dev, KWQ_CID);
4450 cnic_init_context(dev, KCQ_CID);
4451
Michael Chane6c28892010-06-24 14:58:39 +00004452 kwq_cid_addr = GET_CID_ADDR(KWQ_CID);
Michael Chana4636962009-06-08 18:14:43 -07004453 cp->kwq_io_addr = MB_GET_CID_ADDR(KWQ_CID) + L5_KRNLQ_HOST_QIDX;
4454
4455 cp->max_kwq_idx = MAX_KWQ_IDX;
4456 cp->kwq_prod_idx = 0;
4457 cp->kwq_con_idx = 0;
Michael Chan1f1332a2010-05-18 11:32:52 +00004458 set_bit(CNIC_LCL_FL_KWQ_INIT, &cp->cnic_local_flags);
Michael Chana4636962009-06-08 18:14:43 -07004459
4460 if (CHIP_NUM(cp) == CHIP_NUM_5706 || CHIP_NUM(cp) == CHIP_NUM_5708)
4461 cp->kwq_con_idx_ptr = &sblk->status_rx_quick_consumer_index15;
4462 else
4463 cp->kwq_con_idx_ptr = &sblk->status_cmd_consumer_index;
4464
4465 /* Initialize the kernel work queue context. */
4466 val = KRNLQ_TYPE_TYPE_KRNLQ | KRNLQ_SIZE_TYPE_SIZE |
4467 (BCM_PAGE_BITS - 8) | KRNLQ_FLAGS_QE_SELF_SEQ;
Michael Chane6c28892010-06-24 14:58:39 +00004468 cnic_ctx_wr(dev, kwq_cid_addr, L5_KRNLQ_TYPE, val);
Michael Chana4636962009-06-08 18:14:43 -07004469
4470 val = (BCM_PAGE_SIZE / sizeof(struct kwqe) - 1) << 16;
Michael Chane6c28892010-06-24 14:58:39 +00004471 cnic_ctx_wr(dev, kwq_cid_addr, L5_KRNLQ_QE_SELF_SEQ_MAX, val);
Michael Chana4636962009-06-08 18:14:43 -07004472
4473 val = ((BCM_PAGE_SIZE / sizeof(struct kwqe)) << 16) | KWQ_PAGE_CNT;
Michael Chane6c28892010-06-24 14:58:39 +00004474 cnic_ctx_wr(dev, kwq_cid_addr, L5_KRNLQ_PGTBL_NPAGES, val);
Michael Chana4636962009-06-08 18:14:43 -07004475
4476 val = (u32) ((u64) cp->kwq_info.pgtbl_map >> 32);
Michael Chane6c28892010-06-24 14:58:39 +00004477 cnic_ctx_wr(dev, kwq_cid_addr, L5_KRNLQ_PGTBL_HADDR_HI, val);
Michael Chana4636962009-06-08 18:14:43 -07004478
4479 val = (u32) cp->kwq_info.pgtbl_map;
Michael Chane6c28892010-06-24 14:58:39 +00004480 cnic_ctx_wr(dev, kwq_cid_addr, L5_KRNLQ_PGTBL_HADDR_LO, val);
Michael Chana4636962009-06-08 18:14:43 -07004481
Michael Chane6c28892010-06-24 14:58:39 +00004482 kcq_cid_addr = GET_CID_ADDR(KCQ_CID);
4483 cp->kcq1.io_addr = MB_GET_CID_ADDR(KCQ_CID) + L5_KRNLQ_HOST_QIDX;
Michael Chana4636962009-06-08 18:14:43 -07004484
Michael Chane6c28892010-06-24 14:58:39 +00004485 cp->kcq1.sw_prod_idx = 0;
4486 cp->kcq1.hw_prod_idx_ptr =
4487 (u16 *) &sblk->status_completion_producer_index;
4488
4489 cp->kcq1.status_idx_ptr = (u16 *) &sblk->status_idx;
Michael Chana4636962009-06-08 18:14:43 -07004490
4491 /* Initialize the kernel complete queue context. */
4492 val = KRNLQ_TYPE_TYPE_KRNLQ | KRNLQ_SIZE_TYPE_SIZE |
4493 (BCM_PAGE_BITS - 8) | KRNLQ_FLAGS_QE_SELF_SEQ;
Michael Chane6c28892010-06-24 14:58:39 +00004494 cnic_ctx_wr(dev, kcq_cid_addr, L5_KRNLQ_TYPE, val);
Michael Chana4636962009-06-08 18:14:43 -07004495
4496 val = (BCM_PAGE_SIZE / sizeof(struct kcqe) - 1) << 16;
Michael Chane6c28892010-06-24 14:58:39 +00004497 cnic_ctx_wr(dev, kcq_cid_addr, L5_KRNLQ_QE_SELF_SEQ_MAX, val);
Michael Chana4636962009-06-08 18:14:43 -07004498
4499 val = ((BCM_PAGE_SIZE / sizeof(struct kcqe)) << 16) | KCQ_PAGE_CNT;
Michael Chane6c28892010-06-24 14:58:39 +00004500 cnic_ctx_wr(dev, kcq_cid_addr, L5_KRNLQ_PGTBL_NPAGES, val);
Michael Chana4636962009-06-08 18:14:43 -07004501
Michael Chane6c28892010-06-24 14:58:39 +00004502 val = (u32) ((u64) cp->kcq1.dma.pgtbl_map >> 32);
4503 cnic_ctx_wr(dev, kcq_cid_addr, L5_KRNLQ_PGTBL_HADDR_HI, val);
Michael Chana4636962009-06-08 18:14:43 -07004504
Michael Chane6c28892010-06-24 14:58:39 +00004505 val = (u32) cp->kcq1.dma.pgtbl_map;
4506 cnic_ctx_wr(dev, kcq_cid_addr, L5_KRNLQ_PGTBL_HADDR_LO, val);
Michael Chana4636962009-06-08 18:14:43 -07004507
4508 cp->int_num = 0;
4509 if (ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX) {
Michael Chane6c28892010-06-24 14:58:39 +00004510 struct status_block_msix *msblk = cp->status_blk.bnx2;
Michael Chana4636962009-06-08 18:14:43 -07004511 u32 sb_id = cp->status_blk_num;
Michael Chand0549382009-10-28 03:41:59 -07004512 u32 sb = BNX2_L2CTX_L5_STATUSB_NUM(sb_id);
Michael Chana4636962009-06-08 18:14:43 -07004513
Michael Chane6c28892010-06-24 14:58:39 +00004514 cp->kcq1.hw_prod_idx_ptr =
4515 (u16 *) &msblk->status_completion_producer_index;
4516 cp->kcq1.status_idx_ptr = (u16 *) &msblk->status_idx;
Michael Chanb177a5d52010-06-24 14:58:41 +00004517 cp->kwq_con_idx_ptr = (u16 *) &msblk->status_cmd_consumer_index;
Michael Chana4636962009-06-08 18:14:43 -07004518 cp->int_num = sb_id << BNX2_PCICFG_INT_ACK_CMD_INT_NUM_SHIFT;
Michael Chane6c28892010-06-24 14:58:39 +00004519 cnic_ctx_wr(dev, kwq_cid_addr, L5_KRNLQ_HOST_QIDX, sb);
4520 cnic_ctx_wr(dev, kcq_cid_addr, L5_KRNLQ_HOST_QIDX, sb);
Michael Chana4636962009-06-08 18:14:43 -07004521 }
4522
4523 /* Enable Commnad Scheduler notification when we write to the
4524 * host producer index of the kernel contexts. */
4525 CNIC_WR(dev, BNX2_MQ_KNL_CMD_MASK1, 2);
4526
4527 /* Enable Command Scheduler notification when we write to either
4528 * the Send Queue or Receive Queue producer indexes of the kernel
4529 * bypass contexts. */
4530 CNIC_WR(dev, BNX2_MQ_KNL_BYP_CMD_MASK1, 7);
4531 CNIC_WR(dev, BNX2_MQ_KNL_BYP_WRITE_MASK1, 7);
4532
4533 /* Notify COM when the driver post an application buffer. */
4534 CNIC_WR(dev, BNX2_MQ_KNL_RX_V2P_MASK2, 0x2000);
4535
4536 /* Set the CP and COM doorbells. These two processors polls the
4537 * doorbell for a non zero value before running. This must be done
4538 * after setting up the kernel queue contexts. */
4539 cnic_reg_wr_ind(dev, BNX2_CP_SCRATCH + 0x20, 1);
4540 cnic_reg_wr_ind(dev, BNX2_COM_SCRATCH + 0x20, 1);
4541
4542 cnic_init_bnx2_tx_ring(dev);
4543 cnic_init_bnx2_rx_ring(dev);
4544
4545 err = cnic_init_bnx2_irq(dev);
4546 if (err) {
Joe Perchesddf79b22010-02-17 15:01:54 +00004547 netdev_err(dev->netdev, "cnic_init_irq failed\n");
Michael Chana4636962009-06-08 18:14:43 -07004548 cnic_reg_wr_ind(dev, BNX2_CP_SCRATCH + 0x20, 0);
4549 cnic_reg_wr_ind(dev, BNX2_COM_SCRATCH + 0x20, 0);
4550 return err;
4551 }
4552
Vladislav Zolotarov2ba45142011-01-31 14:39:17 +00004553 cnic_get_bnx2_iscsi_info(dev);
4554
Michael Chana4636962009-06-08 18:14:43 -07004555 return 0;
4556}
4557
Michael Chan71034ba2009-10-10 13:46:59 +00004558static void cnic_setup_bnx2x_context(struct cnic_dev *dev)
4559{
4560 struct cnic_local *cp = dev->cnic_priv;
4561 struct cnic_eth_dev *ethdev = cp->ethdev;
4562 u32 start_offset = ethdev->ctx_tbl_offset;
4563 int i;
4564
4565 for (i = 0; i < cp->ctx_blks; i++) {
4566 struct cnic_ctx *ctx = &cp->ctx_arr[i];
4567 dma_addr_t map = ctx->mapping;
4568
4569 if (cp->ctx_align) {
4570 unsigned long mask = cp->ctx_align - 1;
4571
4572 map = (map + mask) & ~mask;
4573 }
4574
4575 cnic_ctx_tbl_wr(dev, start_offset + i, map);
4576 }
4577}
4578
4579static int cnic_init_bnx2x_irq(struct cnic_dev *dev)
4580{
4581 struct cnic_local *cp = dev->cnic_priv;
4582 struct cnic_eth_dev *ethdev = cp->ethdev;
4583 int err = 0;
4584
Joe Perches164165d2009-11-19 09:30:10 +00004585 tasklet_init(&cp->cnic_irq_task, cnic_service_bnx2x_bh,
Michael Chan71034ba2009-10-10 13:46:59 +00004586 (unsigned long) dev);
Michael Chan6e0dc642010-10-13 14:06:44 +00004587 if (ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX)
4588 err = cnic_request_irq(dev);
4589
Michael Chan71034ba2009-10-10 13:46:59 +00004590 return err;
4591}
4592
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004593static inline void cnic_storm_memset_hc_disable(struct cnic_dev *dev,
4594 u16 sb_id, u8 sb_index,
4595 u8 disable)
4596{
4597
4598 u32 addr = BAR_CSTRORM_INTMEM +
4599 CSTORM_STATUS_BLOCK_DATA_OFFSET(sb_id) +
4600 offsetof(struct hc_status_block_data_e1x, index_data) +
4601 sizeof(struct hc_index_data)*sb_index +
4602 offsetof(struct hc_index_data, flags);
4603 u16 flags = CNIC_RD16(dev, addr);
4604 /* clear and set */
4605 flags &= ~HC_INDEX_DATA_HC_ENABLED;
4606 flags |= (((~disable) << HC_INDEX_DATA_HC_ENABLED_SHIFT) &
4607 HC_INDEX_DATA_HC_ENABLED);
4608 CNIC_WR16(dev, addr, flags);
4609}
4610
Michael Chan71034ba2009-10-10 13:46:59 +00004611static void cnic_enable_bnx2x_int(struct cnic_dev *dev)
4612{
4613 struct cnic_local *cp = dev->cnic_priv;
4614 u8 sb_id = cp->status_blk_num;
Michael Chan71034ba2009-10-10 13:46:59 +00004615
4616 CNIC_WR8(dev, BAR_CSTRORM_INTMEM +
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004617 CSTORM_STATUS_BLOCK_DATA_OFFSET(sb_id) +
4618 offsetof(struct hc_status_block_data_e1x, index_data) +
4619 sizeof(struct hc_index_data)*HC_INDEX_ISCSI_EQ_CONS +
4620 offsetof(struct hc_index_data, timeout), 64 / 12);
4621 cnic_storm_memset_hc_disable(dev, sb_id, HC_INDEX_ISCSI_EQ_CONS, 0);
Michael Chan71034ba2009-10-10 13:46:59 +00004622}
4623
4624static void cnic_disable_bnx2x_int_sync(struct cnic_dev *dev)
4625{
4626}
4627
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004628static void cnic_init_bnx2x_tx_ring(struct cnic_dev *dev,
4629 struct client_init_ramrod_data *data)
Michael Chan71034ba2009-10-10 13:46:59 +00004630{
4631 struct cnic_local *cp = dev->cnic_priv;
Michael Chancd801532010-10-13 14:06:49 +00004632 struct cnic_uio_dev *udev = cp->udev;
4633 union eth_tx_bd_types *txbd = (union eth_tx_bd_types *) udev->l2_ring;
4634 dma_addr_t buf_map, ring_map = udev->l2_ring_map;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004635 struct host_sp_status_block *sb = cp->bnx2x_def_status_blk;
Michael Chan71034ba2009-10-10 13:46:59 +00004636 int port = CNIC_PORT(cp);
4637 int i;
Michael Chan5159fdc2010-12-23 07:42:59 +00004638 u32 cli = cp->ethdev->iscsi_l2_client_id;
Michael Chan71034ba2009-10-10 13:46:59 +00004639 u32 val;
4640
4641 memset(txbd, 0, BCM_PAGE_SIZE);
4642
Michael Chancd801532010-10-13 14:06:49 +00004643 buf_map = udev->l2_buf_map;
Michael Chan71034ba2009-10-10 13:46:59 +00004644 for (i = 0; i < MAX_TX_DESC_CNT; i += 3, txbd += 3) {
4645 struct eth_tx_start_bd *start_bd = &txbd->start_bd;
4646 struct eth_tx_bd *reg_bd = &((txbd + 2)->reg_bd);
4647
4648 start_bd->addr_hi = cpu_to_le32((u64) buf_map >> 32);
4649 start_bd->addr_lo = cpu_to_le32(buf_map & 0xffffffff);
4650 reg_bd->addr_hi = start_bd->addr_hi;
4651 reg_bd->addr_lo = start_bd->addr_lo + 0x10;
4652 start_bd->nbytes = cpu_to_le16(0x10);
4653 start_bd->nbd = cpu_to_le16(3);
4654 start_bd->bd_flags.as_bitfield = ETH_TX_BD_FLAGS_START_BD;
4655 start_bd->general_data = (UNICAST_ADDRESS <<
4656 ETH_TX_START_BD_ETH_ADDR_TYPE_SHIFT);
4657 start_bd->general_data |= (1 << ETH_TX_START_BD_HDR_NBDS_SHIFT);
4658
4659 }
Michael Chan71034ba2009-10-10 13:46:59 +00004660
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004661 val = (u64) ring_map >> 32;
Michael Chan71034ba2009-10-10 13:46:59 +00004662 txbd->next_bd.addr_hi = cpu_to_le32(val);
4663
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004664 data->tx.tx_bd_page_base.hi = cpu_to_le32(val);
Michael Chan71034ba2009-10-10 13:46:59 +00004665
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004666 val = (u64) ring_map & 0xffffffff;
Michael Chan71034ba2009-10-10 13:46:59 +00004667 txbd->next_bd.addr_lo = cpu_to_le32(val);
4668
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004669 data->tx.tx_bd_page_base.lo = cpu_to_le32(val);
Michael Chan71034ba2009-10-10 13:46:59 +00004670
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004671 /* Other ramrod params */
4672 data->tx.tx_sb_index_number = HC_SP_INDEX_ETH_ISCSI_CQ_CONS;
4673 data->tx.tx_status_block_id = BNX2X_DEF_SB_ID;
Michael Chan71034ba2009-10-10 13:46:59 +00004674
4675 /* reset xstorm per client statistics */
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004676 if (cli < MAX_STAT_COUNTER_ID) {
Dmitry Kravkov6b2a5412010-06-23 11:57:09 -07004677 val = BAR_XSTRORM_INTMEM +
4678 XSTORM_PER_COUNTER_ID_STATS_OFFSET(port, cli);
4679 for (i = 0; i < sizeof(struct xstorm_per_client_stats) / 4; i++)
4680 CNIC_WR(dev, val + i * 4, 0);
4681 }
Michael Chan71034ba2009-10-10 13:46:59 +00004682
4683 cp->tx_cons_ptr =
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004684 &sb->sp_sb.index_values[HC_SP_INDEX_ETH_ISCSI_CQ_CONS];
Michael Chan71034ba2009-10-10 13:46:59 +00004685}
4686
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004687static void cnic_init_bnx2x_rx_ring(struct cnic_dev *dev,
4688 struct client_init_ramrod_data *data)
Michael Chan71034ba2009-10-10 13:46:59 +00004689{
4690 struct cnic_local *cp = dev->cnic_priv;
Michael Chancd801532010-10-13 14:06:49 +00004691 struct cnic_uio_dev *udev = cp->udev;
4692 struct eth_rx_bd *rxbd = (struct eth_rx_bd *) (udev->l2_ring +
Michael Chan71034ba2009-10-10 13:46:59 +00004693 BCM_PAGE_SIZE);
4694 struct eth_rx_cqe_next_page *rxcqe = (struct eth_rx_cqe_next_page *)
Michael Chancd801532010-10-13 14:06:49 +00004695 (udev->l2_ring + (2 * BCM_PAGE_SIZE));
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004696 struct host_sp_status_block *sb = cp->bnx2x_def_status_blk;
Michael Chan71034ba2009-10-10 13:46:59 +00004697 int i;
4698 int port = CNIC_PORT(cp);
Michael Chan5159fdc2010-12-23 07:42:59 +00004699 u32 cli = cp->ethdev->iscsi_l2_client_id;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004700 int cl_qzone_id = BNX2X_CL_QZONE_ID(cp, cli);
Michael Chan71034ba2009-10-10 13:46:59 +00004701 u32 val;
Michael Chancd801532010-10-13 14:06:49 +00004702 dma_addr_t ring_map = udev->l2_ring_map;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004703
4704 /* General data */
4705 data->general.client_id = cli;
4706 data->general.statistics_en_flg = 1;
4707 data->general.statistics_counter_id = cli;
4708 data->general.activate_flg = 1;
4709 data->general.sp_client_id = cli;
Michael Chan71034ba2009-10-10 13:46:59 +00004710
4711 for (i = 0; i < BNX2X_MAX_RX_DESC_CNT; i++, rxbd++) {
4712 dma_addr_t buf_map;
4713 int n = (i % cp->l2_rx_ring_size) + 1;
4714
Michael Chancd801532010-10-13 14:06:49 +00004715 buf_map = udev->l2_buf_map + (n * cp->l2_single_buf_size);
Michael Chan71034ba2009-10-10 13:46:59 +00004716 rxbd->addr_hi = cpu_to_le32((u64) buf_map >> 32);
4717 rxbd->addr_lo = cpu_to_le32(buf_map & 0xffffffff);
4718 }
Michael Chan71034ba2009-10-10 13:46:59 +00004719
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004720 val = (u64) (ring_map + BCM_PAGE_SIZE) >> 32;
Michael Chan71034ba2009-10-10 13:46:59 +00004721 rxbd->addr_hi = cpu_to_le32(val);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004722 data->rx.bd_page_base.hi = cpu_to_le32(val);
Michael Chan71034ba2009-10-10 13:46:59 +00004723
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004724 val = (u64) (ring_map + BCM_PAGE_SIZE) & 0xffffffff;
Michael Chan71034ba2009-10-10 13:46:59 +00004725 rxbd->addr_lo = cpu_to_le32(val);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004726 data->rx.bd_page_base.lo = cpu_to_le32(val);
Michael Chan71034ba2009-10-10 13:46:59 +00004727
4728 rxcqe += BNX2X_MAX_RCQ_DESC_CNT;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004729 val = (u64) (ring_map + (2 * BCM_PAGE_SIZE)) >> 32;
Michael Chan71034ba2009-10-10 13:46:59 +00004730 rxcqe->addr_hi = cpu_to_le32(val);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004731 data->rx.cqe_page_base.hi = cpu_to_le32(val);
Michael Chan71034ba2009-10-10 13:46:59 +00004732
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004733 val = (u64) (ring_map + (2 * BCM_PAGE_SIZE)) & 0xffffffff;
Michael Chan71034ba2009-10-10 13:46:59 +00004734 rxcqe->addr_lo = cpu_to_le32(val);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004735 data->rx.cqe_page_base.lo = cpu_to_le32(val);
Michael Chan71034ba2009-10-10 13:46:59 +00004736
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004737 /* Other ramrod params */
4738 data->rx.client_qzone_id = cl_qzone_id;
4739 data->rx.rx_sb_index_number = HC_SP_INDEX_ETH_ISCSI_RX_CQ_CONS;
4740 data->rx.status_block_id = BNX2X_DEF_SB_ID;
Michael Chan71034ba2009-10-10 13:46:59 +00004741
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004742 data->rx.cache_line_alignment_log_size = L1_CACHE_SHIFT;
4743 data->rx.bd_buff_size = cpu_to_le16(cp->l2_single_buf_size);
Michael Chan71034ba2009-10-10 13:46:59 +00004744
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004745 data->rx.mtu = cpu_to_le16(cp->l2_single_buf_size - 14);
4746 data->rx.outer_vlan_removal_enable_flg = 1;
Dmitry Kravkov6b2a5412010-06-23 11:57:09 -07004747
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004748 /* reset tstorm and ustorm per client statistics */
4749 if (cli < MAX_STAT_COUNTER_ID) {
Dmitry Kravkov6b2a5412010-06-23 11:57:09 -07004750 val = BAR_TSTRORM_INTMEM +
4751 TSTORM_PER_COUNTER_ID_STATS_OFFSET(port, cli);
4752 for (i = 0; i < sizeof(struct tstorm_per_client_stats) / 4; i++)
4753 CNIC_WR(dev, val + i * 4, 0);
Michael Chan71034ba2009-10-10 13:46:59 +00004754
Dmitry Kravkov6b2a5412010-06-23 11:57:09 -07004755 val = BAR_USTRORM_INTMEM +
4756 USTORM_PER_COUNTER_ID_STATS_OFFSET(port, cli);
4757 for (i = 0; i < sizeof(struct ustorm_per_client_stats) / 4; i++)
4758 CNIC_WR(dev, val + i * 4, 0);
4759 }
Michael Chan71034ba2009-10-10 13:46:59 +00004760
4761 cp->rx_cons_ptr =
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004762 &sb->sp_sb.index_values[HC_SP_INDEX_ETH_ISCSI_RX_CQ_CONS];
Michael Chan5159fdc2010-12-23 07:42:59 +00004763 cp->rx_cons = *cp->rx_cons_ptr;
Michael Chan71034ba2009-10-10 13:46:59 +00004764}
4765
Michael Chane21ba412010-12-23 07:43:03 +00004766static void cnic_init_bnx2x_kcq(struct cnic_dev *dev)
4767{
4768 struct cnic_local *cp = dev->cnic_priv;
4769 u32 pfid = cp->pfid;
4770
4771 cp->kcq1.io_addr = BAR_CSTRORM_INTMEM +
4772 CSTORM_ISCSI_EQ_PROD_OFFSET(pfid, 0);
4773 cp->kcq1.sw_prod_idx = 0;
4774
4775 if (BNX2X_CHIP_IS_E2(cp->chip_id)) {
4776 struct host_hc_status_block_e2 *sb = cp->status_blk.gen;
4777
4778 cp->kcq1.hw_prod_idx_ptr =
4779 &sb->sb.index_values[HC_INDEX_ISCSI_EQ_CONS];
4780 cp->kcq1.status_idx_ptr =
4781 &sb->sb.running_index[SM_RX_ID];
4782 } else {
4783 struct host_hc_status_block_e1x *sb = cp->status_blk.gen;
4784
4785 cp->kcq1.hw_prod_idx_ptr =
4786 &sb->sb.index_values[HC_INDEX_ISCSI_EQ_CONS];
4787 cp->kcq1.status_idx_ptr =
4788 &sb->sb.running_index[SM_RX_ID];
4789 }
4790
4791 if (BNX2X_CHIP_IS_E2(cp->chip_id)) {
4792 struct host_hc_status_block_e2 *sb = cp->status_blk.gen;
4793
4794 cp->kcq2.io_addr = BAR_USTRORM_INTMEM +
4795 USTORM_FCOE_EQ_PROD_OFFSET(pfid);
4796 cp->kcq2.sw_prod_idx = 0;
4797 cp->kcq2.hw_prod_idx_ptr =
4798 &sb->sb.index_values[HC_INDEX_FCOE_EQ_CONS];
4799 cp->kcq2.status_idx_ptr =
4800 &sb->sb.running_index[SM_RX_ID];
4801 }
4802}
4803
Michael Chan71034ba2009-10-10 13:46:59 +00004804static int cnic_start_bnx2x_hw(struct cnic_dev *dev)
4805{
4806 struct cnic_local *cp = dev->cnic_priv;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004807 struct cnic_eth_dev *ethdev = cp->ethdev;
Michael Chan71034ba2009-10-10 13:46:59 +00004808 int func = CNIC_FUNC(cp), ret, i;
Michael Chan14203982010-10-06 03:16:06 +00004809 u32 pfid;
Michael Chan71034ba2009-10-10 13:46:59 +00004810
Michael Chanee87a822010-10-13 14:06:51 +00004811 if (BNX2X_CHIP_IS_E2(cp->chip_id)) {
4812 u32 val = CNIC_RD(dev, MISC_REG_PORT4MODE_EN_OVWR);
4813
4814 if (!(val & 1))
4815 val = CNIC_RD(dev, MISC_REG_PORT4MODE_EN);
4816 else
4817 val = (val >> 1) & 1;
4818
4819 if (val)
4820 cp->pfid = func >> 1;
4821 else
4822 cp->pfid = func & 0x6;
4823 } else {
4824 cp->pfid = func;
4825 }
Michael Chan14203982010-10-06 03:16:06 +00004826 pfid = cp->pfid;
4827
Michael Chan71034ba2009-10-10 13:46:59 +00004828 ret = cnic_init_id_tbl(&cp->cid_tbl, MAX_ISCSI_TBL_SZ,
Michael Chan520efdf2010-06-24 14:58:37 +00004829 cp->iscsi_start_cid);
Michael Chan71034ba2009-10-10 13:46:59 +00004830
4831 if (ret)
4832 return -ENOMEM;
4833
Michael Chane1928c82010-12-23 07:43:04 +00004834 if (BNX2X_CHIP_IS_E2(cp->chip_id)) {
4835 ret = cnic_init_id_tbl(&cp->fcoe_cid_tbl,
4836 BNX2X_FCOE_NUM_CONNECTIONS,
4837 cp->fcoe_start_cid);
4838
4839 if (ret)
4840 return -ENOMEM;
4841 }
4842
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004843 cp->bnx2x_igu_sb_id = ethdev->irq_arr[0].status_blk_num2;
4844
Michael Chane21ba412010-12-23 07:43:03 +00004845 cnic_init_bnx2x_kcq(dev);
Michael Chan71034ba2009-10-10 13:46:59 +00004846
Michael Chan71034ba2009-10-10 13:46:59 +00004847 /* Only 1 EQ */
Michael Chane6c28892010-06-24 14:58:39 +00004848 CNIC_WR16(dev, cp->kcq1.io_addr, MAX_KCQ_IDX);
Michael Chan71034ba2009-10-10 13:46:59 +00004849 CNIC_WR(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00004850 CSTORM_ISCSI_EQ_CONS_OFFSET(pfid, 0), 0);
Michael Chan71034ba2009-10-10 13:46:59 +00004851 CNIC_WR(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00004852 CSTORM_ISCSI_EQ_NEXT_PAGE_ADDR_OFFSET(pfid, 0),
Michael Chane6c28892010-06-24 14:58:39 +00004853 cp->kcq1.dma.pg_map_arr[1] & 0xffffffff);
Michael Chan71034ba2009-10-10 13:46:59 +00004854 CNIC_WR(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00004855 CSTORM_ISCSI_EQ_NEXT_PAGE_ADDR_OFFSET(pfid, 0) + 4,
Michael Chane6c28892010-06-24 14:58:39 +00004856 (u64) cp->kcq1.dma.pg_map_arr[1] >> 32);
Michael Chan71034ba2009-10-10 13:46:59 +00004857 CNIC_WR(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00004858 CSTORM_ISCSI_EQ_NEXT_EQE_ADDR_OFFSET(pfid, 0),
Michael Chane6c28892010-06-24 14:58:39 +00004859 cp->kcq1.dma.pg_map_arr[0] & 0xffffffff);
Michael Chan71034ba2009-10-10 13:46:59 +00004860 CNIC_WR(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00004861 CSTORM_ISCSI_EQ_NEXT_EQE_ADDR_OFFSET(pfid, 0) + 4,
Michael Chane6c28892010-06-24 14:58:39 +00004862 (u64) cp->kcq1.dma.pg_map_arr[0] >> 32);
Michael Chan71034ba2009-10-10 13:46:59 +00004863 CNIC_WR8(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00004864 CSTORM_ISCSI_EQ_NEXT_PAGE_ADDR_VALID_OFFSET(pfid, 0), 1);
Michael Chan71034ba2009-10-10 13:46:59 +00004865 CNIC_WR16(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00004866 CSTORM_ISCSI_EQ_SB_NUM_OFFSET(pfid, 0), cp->status_blk_num);
Michael Chan71034ba2009-10-10 13:46:59 +00004867 CNIC_WR8(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00004868 CSTORM_ISCSI_EQ_SB_INDEX_OFFSET(pfid, 0),
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004869 HC_INDEX_ISCSI_EQ_CONS);
Michael Chan71034ba2009-10-10 13:46:59 +00004870
4871 for (i = 0; i < cp->conn_buf_info.num_pages; i++) {
4872 CNIC_WR(dev, BAR_TSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00004873 TSTORM_ISCSI_CONN_BUF_PBL_OFFSET(pfid, i),
Michael Chan71034ba2009-10-10 13:46:59 +00004874 cp->conn_buf_info.pgtbl[2 * i]);
4875 CNIC_WR(dev, BAR_TSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00004876 TSTORM_ISCSI_CONN_BUF_PBL_OFFSET(pfid, i) + 4,
Michael Chan71034ba2009-10-10 13:46:59 +00004877 cp->conn_buf_info.pgtbl[(2 * i) + 1]);
4878 }
4879
4880 CNIC_WR(dev, BAR_USTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00004881 USTORM_ISCSI_GLOBAL_BUF_PHYS_ADDR_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00004882 cp->gbl_buf_info.pg_map_arr[0] & 0xffffffff);
4883 CNIC_WR(dev, BAR_USTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00004884 USTORM_ISCSI_GLOBAL_BUF_PHYS_ADDR_OFFSET(pfid) + 4,
Michael Chan71034ba2009-10-10 13:46:59 +00004885 (u64) cp->gbl_buf_info.pg_map_arr[0] >> 32);
4886
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004887 CNIC_WR(dev, BAR_TSTRORM_INTMEM +
4888 TSTORM_ISCSI_TCP_LOCAL_ADV_WND_OFFSET(pfid), DEF_RCV_BUF);
4889
Michael Chan71034ba2009-10-10 13:46:59 +00004890 cnic_setup_bnx2x_context(dev);
4891
Michael Chan71034ba2009-10-10 13:46:59 +00004892 ret = cnic_init_bnx2x_irq(dev);
4893 if (ret)
4894 return ret;
4895
Michael Chan71034ba2009-10-10 13:46:59 +00004896 return 0;
4897}
4898
Michael Chan86b53602009-10-10 13:46:57 +00004899static void cnic_init_rings(struct cnic_dev *dev)
4900{
Michael Chan541a7812010-10-06 03:17:22 +00004901 struct cnic_local *cp = dev->cnic_priv;
Michael Chancd801532010-10-13 14:06:49 +00004902 struct cnic_uio_dev *udev = cp->udev;
Michael Chan541a7812010-10-06 03:17:22 +00004903
4904 if (test_bit(CNIC_LCL_FL_RINGS_INITED, &cp->cnic_local_flags))
4905 return;
4906
Michael Chan86b53602009-10-10 13:46:57 +00004907 if (test_bit(CNIC_F_BNX2_CLASS, &dev->flags)) {
4908 cnic_init_bnx2_tx_ring(dev);
4909 cnic_init_bnx2_rx_ring(dev);
Michael Chan541a7812010-10-06 03:17:22 +00004910 set_bit(CNIC_LCL_FL_RINGS_INITED, &cp->cnic_local_flags);
Michael Chan71034ba2009-10-10 13:46:59 +00004911 } else if (test_bit(CNIC_F_BNX2X_CLASS, &dev->flags)) {
Michael Chan5159fdc2010-12-23 07:42:59 +00004912 u32 cli = cp->ethdev->iscsi_l2_client_id;
4913 u32 cid = cp->ethdev->iscsi_l2_cid;
Michael Chan68d7c1a2011-01-05 15:14:13 +00004914 u32 cl_qzone_id;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004915 struct client_init_ramrod_data *data;
Michael Chan71034ba2009-10-10 13:46:59 +00004916 union l5cm_specific_data l5_data;
4917 struct ustorm_eth_rx_producers rx_prods = {0};
Michael Chanc7596b72009-12-02 15:15:35 +00004918 u32 off, i;
Michael Chan71034ba2009-10-10 13:46:59 +00004919
4920 rx_prods.bd_prod = 0;
4921 rx_prods.cqe_prod = BNX2X_MAX_RCQ_DESC_CNT;
4922 barrier();
4923
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004924 cl_qzone_id = BNX2X_CL_QZONE_ID(cp, cli);
4925
Michael Chanc7596b72009-12-02 15:15:35 +00004926 off = BAR_USTRORM_INTMEM +
Michael Chanee87a822010-10-13 14:06:51 +00004927 (BNX2X_CHIP_IS_E2(cp->chip_id) ?
4928 USTORM_RX_PRODS_E2_OFFSET(cl_qzone_id) :
4929 USTORM_RX_PRODS_E1X_OFFSET(CNIC_PORT(cp), cli));
Michael Chan71034ba2009-10-10 13:46:59 +00004930
4931 for (i = 0; i < sizeof(struct ustorm_eth_rx_producers) / 4; i++)
Michael Chanc7596b72009-12-02 15:15:35 +00004932 CNIC_WR(dev, off + i * 4, ((u32 *) &rx_prods)[i]);
Michael Chan71034ba2009-10-10 13:46:59 +00004933
Michael Chan48f753d2010-05-18 11:32:53 +00004934 set_bit(CNIC_LCL_FL_L2_WAIT, &cp->cnic_local_flags);
4935
Michael Chancd801532010-10-13 14:06:49 +00004936 data = udev->l2_buf;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004937
4938 memset(data, 0, sizeof(*data));
4939
4940 cnic_init_bnx2x_tx_ring(dev, data);
4941 cnic_init_bnx2x_rx_ring(dev, data);
4942
Michael Chancd801532010-10-13 14:06:49 +00004943 l5_data.phy_address.lo = udev->l2_buf_map & 0xffffffff;
4944 l5_data.phy_address.hi = (u64) udev->l2_buf_map >> 32;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004945
Michael Chan541a7812010-10-06 03:17:22 +00004946 set_bit(CNIC_LCL_FL_RINGS_INITED, &cp->cnic_local_flags);
4947
Michael Chan71034ba2009-10-10 13:46:59 +00004948 cnic_submit_kwqe_16(dev, RAMROD_CMD_ID_ETH_CLIENT_SETUP,
Michael Chan68d7c1a2011-01-05 15:14:13 +00004949 cid, ETH_CONNECTION_TYPE, &l5_data);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004950
Michael Chan48f753d2010-05-18 11:32:53 +00004951 i = 0;
4952 while (test_bit(CNIC_LCL_FL_L2_WAIT, &cp->cnic_local_flags) &&
4953 ++i < 10)
4954 msleep(1);
4955
4956 if (test_bit(CNIC_LCL_FL_L2_WAIT, &cp->cnic_local_flags))
4957 netdev_err(dev->netdev,
4958 "iSCSI CLIENT_SETUP did not complete\n");
Dmitry Kravkovc2bff632010-10-06 03:33:18 +00004959 cnic_spq_completion(dev, DRV_CTL_RET_L2_SPQ_CREDIT_CMD, 1);
Michael Chan5159fdc2010-12-23 07:42:59 +00004960 cnic_ring_ctl(dev, cid, cli, 1);
Michael Chan86b53602009-10-10 13:46:57 +00004961 }
4962}
4963
4964static void cnic_shutdown_rings(struct cnic_dev *dev)
4965{
Michael Chan541a7812010-10-06 03:17:22 +00004966 struct cnic_local *cp = dev->cnic_priv;
4967
4968 if (!test_bit(CNIC_LCL_FL_RINGS_INITED, &cp->cnic_local_flags))
4969 return;
4970
Michael Chan86b53602009-10-10 13:46:57 +00004971 if (test_bit(CNIC_F_BNX2_CLASS, &dev->flags)) {
4972 cnic_shutdown_bnx2_rx_ring(dev);
Michael Chan71034ba2009-10-10 13:46:59 +00004973 } else if (test_bit(CNIC_F_BNX2X_CLASS, &dev->flags)) {
4974 struct cnic_local *cp = dev->cnic_priv;
Michael Chan5159fdc2010-12-23 07:42:59 +00004975 u32 cli = cp->ethdev->iscsi_l2_client_id;
4976 u32 cid = cp->ethdev->iscsi_l2_cid;
Michael Chan8b065b62009-12-02 15:15:36 +00004977 union l5cm_specific_data l5_data;
Michael Chan48f753d2010-05-18 11:32:53 +00004978 int i;
Michael Chan71034ba2009-10-10 13:46:59 +00004979
Michael Chan5159fdc2010-12-23 07:42:59 +00004980 cnic_ring_ctl(dev, cid, cli, 0);
Michael Chan8b065b62009-12-02 15:15:36 +00004981
Michael Chan48f753d2010-05-18 11:32:53 +00004982 set_bit(CNIC_LCL_FL_L2_WAIT, &cp->cnic_local_flags);
4983
Michael Chan8b065b62009-12-02 15:15:36 +00004984 l5_data.phy_address.lo = cli;
4985 l5_data.phy_address.hi = 0;
4986 cnic_submit_kwqe_16(dev, RAMROD_CMD_ID_ETH_HALT,
Michael Chan5159fdc2010-12-23 07:42:59 +00004987 cid, ETH_CONNECTION_TYPE, &l5_data);
Michael Chan48f753d2010-05-18 11:32:53 +00004988 i = 0;
4989 while (test_bit(CNIC_LCL_FL_L2_WAIT, &cp->cnic_local_flags) &&
4990 ++i < 10)
4991 msleep(1);
4992
4993 if (test_bit(CNIC_LCL_FL_L2_WAIT, &cp->cnic_local_flags))
4994 netdev_err(dev->netdev,
4995 "iSCSI CLIENT_HALT did not complete\n");
Dmitry Kravkovc2bff632010-10-06 03:33:18 +00004996 cnic_spq_completion(dev, DRV_CTL_RET_L2_SPQ_CREDIT_CMD, 1);
Michael Chan1bcdc322009-12-10 15:40:57 +00004997
4998 memset(&l5_data, 0, sizeof(l5_data));
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004999 cnic_submit_kwqe_16(dev, RAMROD_CMD_ID_COMMON_CFC_DEL,
Michael Chan68d7c1a2011-01-05 15:14:13 +00005000 cid, NONE_CONNECTION_TYPE, &l5_data);
Michael Chan1bcdc322009-12-10 15:40:57 +00005001 msleep(10);
Michael Chan86b53602009-10-10 13:46:57 +00005002 }
Michael Chan541a7812010-10-06 03:17:22 +00005003 clear_bit(CNIC_LCL_FL_RINGS_INITED, &cp->cnic_local_flags);
Michael Chan86b53602009-10-10 13:46:57 +00005004}
5005
Michael Chana3059b12009-08-14 15:49:44 +00005006static int cnic_register_netdev(struct cnic_dev *dev)
5007{
5008 struct cnic_local *cp = dev->cnic_priv;
5009 struct cnic_eth_dev *ethdev = cp->ethdev;
5010 int err;
5011
5012 if (!ethdev)
5013 return -ENODEV;
5014
5015 if (ethdev->drv_state & CNIC_DRV_STATE_REGD)
5016 return 0;
5017
5018 err = ethdev->drv_register_cnic(dev->netdev, cp->cnic_ops, dev);
5019 if (err)
Joe Perchesddf79b22010-02-17 15:01:54 +00005020 netdev_err(dev->netdev, "register_cnic failed\n");
Michael Chana3059b12009-08-14 15:49:44 +00005021
5022 return err;
5023}
5024
5025static void cnic_unregister_netdev(struct cnic_dev *dev)
5026{
5027 struct cnic_local *cp = dev->cnic_priv;
5028 struct cnic_eth_dev *ethdev = cp->ethdev;
5029
5030 if (!ethdev)
5031 return;
5032
5033 ethdev->drv_unregister_cnic(dev->netdev);
5034}
5035
Michael Chana4636962009-06-08 18:14:43 -07005036static int cnic_start_hw(struct cnic_dev *dev)
5037{
5038 struct cnic_local *cp = dev->cnic_priv;
5039 struct cnic_eth_dev *ethdev = cp->ethdev;
5040 int err;
5041
5042 if (test_bit(CNIC_F_CNIC_UP, &dev->flags))
5043 return -EALREADY;
5044
Michael Chana4636962009-06-08 18:14:43 -07005045 dev->regview = ethdev->io_base;
Michael Chana4636962009-06-08 18:14:43 -07005046 pci_dev_get(dev->pcidev);
5047 cp->func = PCI_FUNC(dev->pcidev->devfn);
Michael Chana4dde3a2010-02-24 14:42:08 +00005048 cp->status_blk.gen = ethdev->irq_arr[0].status_blk;
Michael Chana4636962009-06-08 18:14:43 -07005049 cp->status_blk_num = ethdev->irq_arr[0].status_blk_num;
5050
5051 err = cp->alloc_resc(dev);
5052 if (err) {
Joe Perchesddf79b22010-02-17 15:01:54 +00005053 netdev_err(dev->netdev, "allocate resource failure\n");
Michael Chana4636962009-06-08 18:14:43 -07005054 goto err1;
5055 }
5056
5057 err = cp->start_hw(dev);
5058 if (err)
5059 goto err1;
5060
5061 err = cnic_cm_open(dev);
5062 if (err)
5063 goto err1;
5064
5065 set_bit(CNIC_F_CNIC_UP, &dev->flags);
5066
5067 cp->enable_int(dev);
5068
5069 return 0;
5070
5071err1:
Michael Chana4636962009-06-08 18:14:43 -07005072 cp->free_resc(dev);
5073 pci_dev_put(dev->pcidev);
Michael Chana4636962009-06-08 18:14:43 -07005074 return err;
5075}
5076
5077static void cnic_stop_bnx2_hw(struct cnic_dev *dev)
5078{
Michael Chana4636962009-06-08 18:14:43 -07005079 cnic_disable_bnx2_int_sync(dev);
5080
5081 cnic_reg_wr_ind(dev, BNX2_CP_SCRATCH + 0x20, 0);
5082 cnic_reg_wr_ind(dev, BNX2_COM_SCRATCH + 0x20, 0);
5083
5084 cnic_init_context(dev, KWQ_CID);
5085 cnic_init_context(dev, KCQ_CID);
5086
5087 cnic_setup_5709_context(dev, 0);
5088 cnic_free_irq(dev);
5089
Michael Chana4636962009-06-08 18:14:43 -07005090 cnic_free_resc(dev);
5091}
5092
Michael Chan71034ba2009-10-10 13:46:59 +00005093
5094static void cnic_stop_bnx2x_hw(struct cnic_dev *dev)
5095{
5096 struct cnic_local *cp = dev->cnic_priv;
Michael Chan71034ba2009-10-10 13:46:59 +00005097
5098 cnic_free_irq(dev);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00005099 *cp->kcq1.hw_prod_idx_ptr = 0;
Michael Chan4e9c4fd2009-12-10 15:40:58 +00005100 CNIC_WR(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00005101 CSTORM_ISCSI_EQ_CONS_OFFSET(cp->pfid, 0), 0);
Michael Chane6c28892010-06-24 14:58:39 +00005102 CNIC_WR16(dev, cp->kcq1.io_addr, 0);
Michael Chan71034ba2009-10-10 13:46:59 +00005103 cnic_free_resc(dev);
5104}
5105
Michael Chana4636962009-06-08 18:14:43 -07005106static void cnic_stop_hw(struct cnic_dev *dev)
5107{
5108 if (test_bit(CNIC_F_CNIC_UP, &dev->flags)) {
5109 struct cnic_local *cp = dev->cnic_priv;
Michael Chan48f753d2010-05-18 11:32:53 +00005110 int i = 0;
Michael Chana4636962009-06-08 18:14:43 -07005111
Michael Chan48f753d2010-05-18 11:32:53 +00005112 /* Need to wait for the ring shutdown event to complete
5113 * before clearing the CNIC_UP flag.
5114 */
Michael Chancd801532010-10-13 14:06:49 +00005115 while (cp->udev->uio_dev != -1 && i < 15) {
Michael Chan48f753d2010-05-18 11:32:53 +00005116 msleep(100);
5117 i++;
5118 }
Michael Chana3ceeeb2010-10-13 14:06:50 +00005119 cnic_shutdown_rings(dev);
Michael Chana4636962009-06-08 18:14:43 -07005120 clear_bit(CNIC_F_CNIC_UP, &dev->flags);
5121 rcu_assign_pointer(cp->ulp_ops[CNIC_ULP_L4], NULL);
5122 synchronize_rcu();
5123 cnic_cm_shutdown(dev);
5124 cp->stop_hw(dev);
5125 pci_dev_put(dev->pcidev);
5126 }
5127}
5128
5129static void cnic_free_dev(struct cnic_dev *dev)
5130{
5131 int i = 0;
5132
5133 while ((atomic_read(&dev->ref_count) != 0) && i < 10) {
5134 msleep(100);
5135 i++;
5136 }
5137 if (atomic_read(&dev->ref_count) != 0)
Joe Perchesddf79b22010-02-17 15:01:54 +00005138 netdev_err(dev->netdev, "Failed waiting for ref count to go to zero\n");
Michael Chana4636962009-06-08 18:14:43 -07005139
Joe Perchesddf79b22010-02-17 15:01:54 +00005140 netdev_info(dev->netdev, "Removed CNIC device\n");
Michael Chana4636962009-06-08 18:14:43 -07005141 dev_put(dev->netdev);
5142 kfree(dev);
5143}
5144
5145static struct cnic_dev *cnic_alloc_dev(struct net_device *dev,
5146 struct pci_dev *pdev)
5147{
5148 struct cnic_dev *cdev;
5149 struct cnic_local *cp;
5150 int alloc_size;
5151
5152 alloc_size = sizeof(struct cnic_dev) + sizeof(struct cnic_local);
5153
5154 cdev = kzalloc(alloc_size , GFP_KERNEL);
5155 if (cdev == NULL) {
Joe Perchesddf79b22010-02-17 15:01:54 +00005156 netdev_err(dev, "allocate dev struct failure\n");
Michael Chana4636962009-06-08 18:14:43 -07005157 return NULL;
5158 }
5159
5160 cdev->netdev = dev;
5161 cdev->cnic_priv = (char *)cdev + sizeof(struct cnic_dev);
5162 cdev->register_device = cnic_register_device;
5163 cdev->unregister_device = cnic_unregister_device;
5164 cdev->iscsi_nl_msg_recv = cnic_iscsi_nl_msg_recv;
5165
5166 cp = cdev->cnic_priv;
5167 cp->dev = cdev;
Michael Chana4636962009-06-08 18:14:43 -07005168 cp->l2_single_buf_size = 0x400;
5169 cp->l2_rx_ring_size = 3;
5170
5171 spin_lock_init(&cp->cnic_ulp_lock);
5172
Joe Perchesddf79b22010-02-17 15:01:54 +00005173 netdev_info(dev, "Added CNIC device\n");
Michael Chana4636962009-06-08 18:14:43 -07005174
5175 return cdev;
5176}
5177
5178static struct cnic_dev *init_bnx2_cnic(struct net_device *dev)
5179{
5180 struct pci_dev *pdev;
5181 struct cnic_dev *cdev;
5182 struct cnic_local *cp;
5183 struct cnic_eth_dev *ethdev = NULL;
Michael Chane2ee3612009-06-13 17:43:02 -07005184 struct cnic_eth_dev *(*probe)(struct net_device *) = NULL;
Michael Chana4636962009-06-08 18:14:43 -07005185
Michael Chane2ee3612009-06-13 17:43:02 -07005186 probe = symbol_get(bnx2_cnic_probe);
Michael Chana4636962009-06-08 18:14:43 -07005187 if (probe) {
5188 ethdev = (*probe)(dev);
Michael Chan64c64602009-08-14 15:49:43 +00005189 symbol_put(bnx2_cnic_probe);
Michael Chana4636962009-06-08 18:14:43 -07005190 }
5191 if (!ethdev)
5192 return NULL;
5193
5194 pdev = ethdev->pdev;
5195 if (!pdev)
5196 return NULL;
5197
5198 dev_hold(dev);
5199 pci_dev_get(pdev);
Sergei Shtylyovff938e42011-02-28 11:57:33 -08005200 if ((pdev->device == PCI_DEVICE_ID_NX2_5709 ||
5201 pdev->device == PCI_DEVICE_ID_NX2_5709S) &&
5202 (pdev->revision < 0x10)) {
5203 pci_dev_put(pdev);
5204 goto cnic_err;
Michael Chana4636962009-06-08 18:14:43 -07005205 }
5206 pci_dev_put(pdev);
5207
5208 cdev = cnic_alloc_dev(dev, pdev);
5209 if (cdev == NULL)
5210 goto cnic_err;
5211
5212 set_bit(CNIC_F_BNX2_CLASS, &cdev->flags);
5213 cdev->submit_kwqes = cnic_submit_bnx2_kwqes;
5214
5215 cp = cdev->cnic_priv;
5216 cp->ethdev = ethdev;
5217 cdev->pcidev = pdev;
Michael Chanee87a822010-10-13 14:06:51 +00005218 cp->chip_id = ethdev->chip_id;
Michael Chana4636962009-06-08 18:14:43 -07005219
5220 cp->cnic_ops = &cnic_bnx2_ops;
5221 cp->start_hw = cnic_start_bnx2_hw;
5222 cp->stop_hw = cnic_stop_bnx2_hw;
5223 cp->setup_pgtbl = cnic_setup_page_tbl;
5224 cp->alloc_resc = cnic_alloc_bnx2_resc;
5225 cp->free_resc = cnic_free_resc;
5226 cp->start_cm = cnic_cm_init_bnx2_hw;
5227 cp->stop_cm = cnic_cm_stop_bnx2_hw;
5228 cp->enable_int = cnic_enable_bnx2_int;
5229 cp->disable_int_sync = cnic_disable_bnx2_int_sync;
5230 cp->close_conn = cnic_close_bnx2_conn;
5231 cp->next_idx = cnic_bnx2_next_idx;
5232 cp->hw_idx = cnic_bnx2_hw_idx;
5233 return cdev;
5234
5235cnic_err:
5236 dev_put(dev);
5237 return NULL;
5238}
5239
Michael Chan71034ba2009-10-10 13:46:59 +00005240static struct cnic_dev *init_bnx2x_cnic(struct net_device *dev)
5241{
5242 struct pci_dev *pdev;
5243 struct cnic_dev *cdev;
5244 struct cnic_local *cp;
5245 struct cnic_eth_dev *ethdev = NULL;
5246 struct cnic_eth_dev *(*probe)(struct net_device *) = NULL;
5247
5248 probe = symbol_get(bnx2x_cnic_probe);
5249 if (probe) {
5250 ethdev = (*probe)(dev);
5251 symbol_put(bnx2x_cnic_probe);
5252 }
5253 if (!ethdev)
5254 return NULL;
5255
5256 pdev = ethdev->pdev;
5257 if (!pdev)
5258 return NULL;
5259
5260 dev_hold(dev);
5261 cdev = cnic_alloc_dev(dev, pdev);
5262 if (cdev == NULL) {
5263 dev_put(dev);
5264 return NULL;
5265 }
5266
5267 set_bit(CNIC_F_BNX2X_CLASS, &cdev->flags);
5268 cdev->submit_kwqes = cnic_submit_bnx2x_kwqes;
5269
5270 cp = cdev->cnic_priv;
5271 cp->ethdev = ethdev;
5272 cdev->pcidev = pdev;
Michael Chanee87a822010-10-13 14:06:51 +00005273 cp->chip_id = ethdev->chip_id;
Michael Chan71034ba2009-10-10 13:46:59 +00005274
Vladislav Zolotarov2ba45142011-01-31 14:39:17 +00005275 if (!(ethdev->drv_state & CNIC_DRV_STATE_NO_ISCSI))
5276 cdev->max_iscsi_conn = ethdev->max_iscsi_conn;
5277 if (BNX2X_CHIP_IS_E2(cp->chip_id) &&
5278 !(ethdev->drv_state & CNIC_DRV_STATE_NO_FCOE))
5279 cdev->max_fcoe_conn = ethdev->max_fcoe_conn;
5280
5281 memcpy(cdev->mac_addr, ethdev->iscsi_mac, 6);
5282
Michael Chan71034ba2009-10-10 13:46:59 +00005283 cp->cnic_ops = &cnic_bnx2x_ops;
5284 cp->start_hw = cnic_start_bnx2x_hw;
5285 cp->stop_hw = cnic_stop_bnx2x_hw;
5286 cp->setup_pgtbl = cnic_setup_page_tbl_le;
5287 cp->alloc_resc = cnic_alloc_bnx2x_resc;
5288 cp->free_resc = cnic_free_resc;
5289 cp->start_cm = cnic_cm_init_bnx2x_hw;
5290 cp->stop_cm = cnic_cm_stop_bnx2x_hw;
5291 cp->enable_int = cnic_enable_bnx2x_int;
5292 cp->disable_int_sync = cnic_disable_bnx2x_int_sync;
Michael Chanee87a822010-10-13 14:06:51 +00005293 if (BNX2X_CHIP_IS_E2(cp->chip_id))
5294 cp->ack_int = cnic_ack_bnx2x_e2_msix;
5295 else
5296 cp->ack_int = cnic_ack_bnx2x_msix;
Michael Chan71034ba2009-10-10 13:46:59 +00005297 cp->close_conn = cnic_close_bnx2x_conn;
5298 cp->next_idx = cnic_bnx2x_next_idx;
5299 cp->hw_idx = cnic_bnx2x_hw_idx;
5300 return cdev;
5301}
5302
Michael Chana4636962009-06-08 18:14:43 -07005303static struct cnic_dev *is_cnic_dev(struct net_device *dev)
5304{
5305 struct ethtool_drvinfo drvinfo;
5306 struct cnic_dev *cdev = NULL;
5307
5308 if (dev->ethtool_ops && dev->ethtool_ops->get_drvinfo) {
5309 memset(&drvinfo, 0, sizeof(drvinfo));
5310 dev->ethtool_ops->get_drvinfo(dev, &drvinfo);
5311
5312 if (!strcmp(drvinfo.driver, "bnx2"))
5313 cdev = init_bnx2_cnic(dev);
Michael Chan71034ba2009-10-10 13:46:59 +00005314 if (!strcmp(drvinfo.driver, "bnx2x"))
5315 cdev = init_bnx2x_cnic(dev);
Michael Chana4636962009-06-08 18:14:43 -07005316 if (cdev) {
5317 write_lock(&cnic_dev_lock);
5318 list_add(&cdev->list, &cnic_dev_list);
5319 write_unlock(&cnic_dev_lock);
5320 }
5321 }
5322 return cdev;
5323}
5324
5325/**
5326 * netdev event handler
5327 */
5328static int cnic_netdev_event(struct notifier_block *this, unsigned long event,
5329 void *ptr)
5330{
5331 struct net_device *netdev = ptr;
5332 struct cnic_dev *dev;
5333 int if_type;
5334 int new_dev = 0;
5335
5336 dev = cnic_from_netdev(netdev);
5337
5338 if (!dev && (event == NETDEV_REGISTER || event == NETDEV_UP)) {
5339 /* Check for the hot-plug device */
5340 dev = is_cnic_dev(netdev);
5341 if (dev) {
5342 new_dev = 1;
5343 cnic_hold(dev);
5344 }
5345 }
5346 if (dev) {
5347 struct cnic_local *cp = dev->cnic_priv;
5348
5349 if (new_dev)
5350 cnic_ulp_init(dev);
5351 else if (event == NETDEV_UNREGISTER)
5352 cnic_ulp_exit(dev);
Michael Chan6053bbf2009-10-02 11:03:28 -07005353
5354 if (event == NETDEV_UP) {
Michael Chana3059b12009-08-14 15:49:44 +00005355 if (cnic_register_netdev(dev) != 0) {
5356 cnic_put(dev);
5357 goto done;
5358 }
Michael Chana4636962009-06-08 18:14:43 -07005359 if (!cnic_start_hw(dev))
5360 cnic_ulp_start(dev);
Michael Chana4636962009-06-08 18:14:43 -07005361 }
5362
5363 rcu_read_lock();
5364 for (if_type = 0; if_type < MAX_CNIC_ULP_TYPE; if_type++) {
5365 struct cnic_ulp_ops *ulp_ops;
5366 void *ctx;
5367
5368 ulp_ops = rcu_dereference(cp->ulp_ops[if_type]);
5369 if (!ulp_ops || !ulp_ops->indicate_netevent)
5370 continue;
5371
5372 ctx = cp->ulp_handle[if_type];
5373
5374 ulp_ops->indicate_netevent(ctx, event);
5375 }
5376 rcu_read_unlock();
5377
5378 if (event == NETDEV_GOING_DOWN) {
Michael Chana4636962009-06-08 18:14:43 -07005379 cnic_ulp_stop(dev);
5380 cnic_stop_hw(dev);
Michael Chana3059b12009-08-14 15:49:44 +00005381 cnic_unregister_netdev(dev);
Michael Chana4636962009-06-08 18:14:43 -07005382 } else if (event == NETDEV_UNREGISTER) {
5383 write_lock(&cnic_dev_lock);
5384 list_del_init(&dev->list);
5385 write_unlock(&cnic_dev_lock);
5386
5387 cnic_put(dev);
5388 cnic_free_dev(dev);
5389 goto done;
5390 }
5391 cnic_put(dev);
5392 }
5393done:
5394 return NOTIFY_DONE;
5395}
5396
5397static struct notifier_block cnic_netdev_notifier = {
5398 .notifier_call = cnic_netdev_event
5399};
5400
5401static void cnic_release(void)
5402{
5403 struct cnic_dev *dev;
Michael Chana3ceeeb2010-10-13 14:06:50 +00005404 struct cnic_uio_dev *udev;
Michael Chana4636962009-06-08 18:14:43 -07005405
5406 while (!list_empty(&cnic_dev_list)) {
5407 dev = list_entry(cnic_dev_list.next, struct cnic_dev, list);
5408 if (test_bit(CNIC_F_CNIC_UP, &dev->flags)) {
5409 cnic_ulp_stop(dev);
5410 cnic_stop_hw(dev);
5411 }
5412
5413 cnic_ulp_exit(dev);
Michael Chana3059b12009-08-14 15:49:44 +00005414 cnic_unregister_netdev(dev);
Michael Chana4636962009-06-08 18:14:43 -07005415 list_del_init(&dev->list);
5416 cnic_free_dev(dev);
5417 }
Michael Chana3ceeeb2010-10-13 14:06:50 +00005418 while (!list_empty(&cnic_udev_list)) {
5419 udev = list_entry(cnic_udev_list.next, struct cnic_uio_dev,
5420 list);
5421 cnic_free_uio(udev);
5422 }
Michael Chana4636962009-06-08 18:14:43 -07005423}
5424
5425static int __init cnic_init(void)
5426{
5427 int rc = 0;
5428
Joe Perchesddf79b22010-02-17 15:01:54 +00005429 pr_info("%s", version);
Michael Chana4636962009-06-08 18:14:43 -07005430
5431 rc = register_netdevice_notifier(&cnic_netdev_notifier);
5432 if (rc) {
5433 cnic_release();
5434 return rc;
5435 }
5436
Michael Chanfdf24082010-10-13 14:06:47 +00005437 cnic_wq = create_singlethread_workqueue("cnic_wq");
5438 if (!cnic_wq) {
5439 cnic_release();
5440 unregister_netdevice_notifier(&cnic_netdev_notifier);
5441 return -ENOMEM;
5442 }
5443
Michael Chana4636962009-06-08 18:14:43 -07005444 return 0;
5445}
5446
5447static void __exit cnic_exit(void)
5448{
5449 unregister_netdevice_notifier(&cnic_netdev_notifier);
5450 cnic_release();
Michael Chanfdf24082010-10-13 14:06:47 +00005451 destroy_workqueue(cnic_wq);
Michael Chana4636962009-06-08 18:14:43 -07005452}
5453
5454module_init(cnic_init);
5455module_exit(cnic_exit);