blob: 38be4d91783b35bc7932363a32b95132a732b96b [file] [log] [blame]
Michael Chana4636962009-06-08 18:14:43 -07001/* cnic.c: Broadcom CNIC core network driver.
2 *
Michael Chan3238a9b2012-02-05 15:24:40 +00003 * Copyright (c) 2006-2012 Broadcom Corporation
Michael Chana4636962009-06-08 18:14:43 -07004 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation.
8 *
9 * Original skeleton written by: John(Zongxi) Chen (zongxi@broadcom.com)
10 * Modified and maintained by: Michael Chan <mchan@broadcom.com>
11 */
12
Joe Perchesddf79b22010-02-17 15:01:54 +000013#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
14
Michael Chana4636962009-06-08 18:14:43 -070015#include <linux/module.h>
16
17#include <linux/kernel.h>
18#include <linux/errno.h>
19#include <linux/list.h>
20#include <linux/slab.h>
21#include <linux/pci.h>
22#include <linux/init.h>
23#include <linux/netdevice.h>
24#include <linux/uio_driver.h>
25#include <linux/in.h>
26#include <linux/dma-mapping.h>
27#include <linux/delay.h>
28#include <linux/ethtool.h>
29#include <linux/if_vlan.h>
Paul Gortmaker70c71602011-05-22 16:47:17 -040030#include <linux/prefetch.h>
Michael Chan973e5742011-07-13 17:24:17 +000031#include <linux/random.h>
Michael Chana4636962009-06-08 18:14:43 -070032#if defined(CONFIG_VLAN_8021Q) || defined(CONFIG_VLAN_8021Q_MODULE)
33#define BCM_VLAN 1
34#endif
35#include <net/ip.h>
36#include <net/tcp.h>
37#include <net/route.h>
38#include <net/ipv6.h>
39#include <net/ip6_route.h>
David S. Millerc05e85a2009-10-12 23:18:35 -070040#include <net/ip6_checksum.h>
Michael Chana4636962009-06-08 18:14:43 -070041#include <scsi/iscsi_if.h>
42
43#include "cnic_if.h"
44#include "bnx2.h"
Dmitry Kravkov5d1e8592010-07-27 12:31:10 +000045#include "bnx2x/bnx2x_reg.h"
46#include "bnx2x/bnx2x_fw_defs.h"
47#include "bnx2x/bnx2x_hsi.h"
Jeff Kirsheradfc5212011-04-07 06:03:04 -070048#include "../../../scsi/bnx2i/57xx_iscsi_constants.h"
49#include "../../../scsi/bnx2i/57xx_iscsi_hsi.h"
Michael Chan8ec3e702012-03-21 15:38:34 +000050#include "../../../scsi/bnx2fc/bnx2fc_constants.h"
Michael Chana4636962009-06-08 18:14:43 -070051#include "cnic.h"
52#include "cnic_defs.h"
53
54#define DRV_MODULE_NAME "cnic"
Michael Chana4636962009-06-08 18:14:43 -070055
56static char version[] __devinitdata =
57 "Broadcom NetXtreme II CNIC Driver " DRV_MODULE_NAME " v" CNIC_MODULE_VERSION " (" CNIC_MODULE_RELDATE ")\n";
58
59MODULE_AUTHOR("Michael Chan <mchan@broadcom.com> and John(Zongxi) "
60 "Chen (zongxi@broadcom.com");
61MODULE_DESCRIPTION("Broadcom NetXtreme II CNIC Driver");
62MODULE_LICENSE("GPL");
63MODULE_VERSION(CNIC_MODULE_VERSION);
64
Michael Chan8adc92402010-12-23 07:42:57 +000065/* cnic_dev_list modifications are protected by both rtnl and cnic_dev_lock */
Michael Chana4636962009-06-08 18:14:43 -070066static LIST_HEAD(cnic_dev_list);
Michael Chana3ceeeb2010-10-13 14:06:50 +000067static LIST_HEAD(cnic_udev_list);
Michael Chana4636962009-06-08 18:14:43 -070068static DEFINE_RWLOCK(cnic_dev_lock);
69static DEFINE_MUTEX(cnic_lock);
70
Eric Dumazet13707f92011-01-26 19:28:23 +000071static struct cnic_ulp_ops __rcu *cnic_ulp_tbl[MAX_CNIC_ULP_TYPE];
72
73/* helper function, assuming cnic_lock is held */
74static inline struct cnic_ulp_ops *cnic_ulp_tbl_prot(int type)
75{
76 return rcu_dereference_protected(cnic_ulp_tbl[type],
77 lockdep_is_held(&cnic_lock));
78}
Michael Chana4636962009-06-08 18:14:43 -070079
80static int cnic_service_bnx2(void *, void *);
Michael Chan71034ba2009-10-10 13:46:59 +000081static int cnic_service_bnx2x(void *, void *);
Michael Chana4636962009-06-08 18:14:43 -070082static int cnic_ctl(void *, struct cnic_ctl_info *);
83
84static struct cnic_ops cnic_bnx2_ops = {
85 .cnic_owner = THIS_MODULE,
86 .cnic_handler = cnic_service_bnx2,
87 .cnic_ctl = cnic_ctl,
88};
89
Michael Chan71034ba2009-10-10 13:46:59 +000090static struct cnic_ops cnic_bnx2x_ops = {
91 .cnic_owner = THIS_MODULE,
92 .cnic_handler = cnic_service_bnx2x,
93 .cnic_ctl = cnic_ctl,
94};
95
Michael Chanfdf24082010-10-13 14:06:47 +000096static struct workqueue_struct *cnic_wq;
97
Michael Chan86b53602009-10-10 13:46:57 +000098static void cnic_shutdown_rings(struct cnic_dev *);
99static void cnic_init_rings(struct cnic_dev *);
Michael Chana4636962009-06-08 18:14:43 -0700100static int cnic_cm_set_pg(struct cnic_sock *);
101
102static int cnic_uio_open(struct uio_info *uinfo, struct inode *inode)
103{
Michael Chancd801532010-10-13 14:06:49 +0000104 struct cnic_uio_dev *udev = uinfo->priv;
105 struct cnic_dev *dev;
Michael Chana4636962009-06-08 18:14:43 -0700106
107 if (!capable(CAP_NET_ADMIN))
108 return -EPERM;
109
Michael Chancd801532010-10-13 14:06:49 +0000110 if (udev->uio_dev != -1)
Michael Chana4636962009-06-08 18:14:43 -0700111 return -EBUSY;
112
Michael Chan86b53602009-10-10 13:46:57 +0000113 rtnl_lock();
Michael Chancd801532010-10-13 14:06:49 +0000114 dev = udev->dev;
115
Michael Chana3ceeeb2010-10-13 14:06:50 +0000116 if (!dev || !test_bit(CNIC_F_CNIC_UP, &dev->flags)) {
Michael Chan86b53602009-10-10 13:46:57 +0000117 rtnl_unlock();
118 return -ENODEV;
119 }
120
Michael Chancd801532010-10-13 14:06:49 +0000121 udev->uio_dev = iminor(inode);
Michael Chana4636962009-06-08 18:14:43 -0700122
Michael Chana3ceeeb2010-10-13 14:06:50 +0000123 cnic_shutdown_rings(dev);
Michael Chan86b53602009-10-10 13:46:57 +0000124 cnic_init_rings(dev);
125 rtnl_unlock();
Michael Chana4636962009-06-08 18:14:43 -0700126
127 return 0;
128}
129
130static int cnic_uio_close(struct uio_info *uinfo, struct inode *inode)
131{
Michael Chancd801532010-10-13 14:06:49 +0000132 struct cnic_uio_dev *udev = uinfo->priv;
Michael Chan6ef57a02009-09-21 15:39:37 +0000133
Michael Chancd801532010-10-13 14:06:49 +0000134 udev->uio_dev = -1;
Michael Chana4636962009-06-08 18:14:43 -0700135 return 0;
136}
137
138static inline void cnic_hold(struct cnic_dev *dev)
139{
140 atomic_inc(&dev->ref_count);
141}
142
143static inline void cnic_put(struct cnic_dev *dev)
144{
145 atomic_dec(&dev->ref_count);
146}
147
148static inline void csk_hold(struct cnic_sock *csk)
149{
150 atomic_inc(&csk->ref_count);
151}
152
153static inline void csk_put(struct cnic_sock *csk)
154{
155 atomic_dec(&csk->ref_count);
156}
157
158static struct cnic_dev *cnic_from_netdev(struct net_device *netdev)
159{
160 struct cnic_dev *cdev;
161
162 read_lock(&cnic_dev_lock);
163 list_for_each_entry(cdev, &cnic_dev_list, list) {
164 if (netdev == cdev->netdev) {
165 cnic_hold(cdev);
166 read_unlock(&cnic_dev_lock);
167 return cdev;
168 }
169 }
170 read_unlock(&cnic_dev_lock);
171 return NULL;
172}
173
Michael Chan7fc1ece2009-08-14 15:49:47 +0000174static inline void ulp_get(struct cnic_ulp_ops *ulp_ops)
175{
176 atomic_inc(&ulp_ops->ref_count);
177}
178
179static inline void ulp_put(struct cnic_ulp_ops *ulp_ops)
180{
181 atomic_dec(&ulp_ops->ref_count);
182}
183
Michael Chana4636962009-06-08 18:14:43 -0700184static void cnic_ctx_wr(struct cnic_dev *dev, u32 cid_addr, u32 off, u32 val)
185{
186 struct cnic_local *cp = dev->cnic_priv;
187 struct cnic_eth_dev *ethdev = cp->ethdev;
188 struct drv_ctl_info info;
189 struct drv_ctl_io *io = &info.data.io;
190
191 info.cmd = DRV_CTL_CTX_WR_CMD;
192 io->cid_addr = cid_addr;
193 io->offset = off;
194 io->data = val;
195 ethdev->drv_ctl(dev->netdev, &info);
196}
197
Michael Chan71034ba2009-10-10 13:46:59 +0000198static void cnic_ctx_tbl_wr(struct cnic_dev *dev, u32 off, dma_addr_t addr)
199{
200 struct cnic_local *cp = dev->cnic_priv;
201 struct cnic_eth_dev *ethdev = cp->ethdev;
202 struct drv_ctl_info info;
203 struct drv_ctl_io *io = &info.data.io;
204
205 info.cmd = DRV_CTL_CTXTBL_WR_CMD;
206 io->offset = off;
207 io->dma_addr = addr;
208 ethdev->drv_ctl(dev->netdev, &info);
209}
210
211static void cnic_ring_ctl(struct cnic_dev *dev, u32 cid, u32 cl_id, int start)
212{
213 struct cnic_local *cp = dev->cnic_priv;
214 struct cnic_eth_dev *ethdev = cp->ethdev;
215 struct drv_ctl_info info;
216 struct drv_ctl_l2_ring *ring = &info.data.ring;
217
218 if (start)
219 info.cmd = DRV_CTL_START_L2_CMD;
220 else
221 info.cmd = DRV_CTL_STOP_L2_CMD;
222
223 ring->cid = cid;
224 ring->client_id = cl_id;
225 ethdev->drv_ctl(dev->netdev, &info);
226}
227
Michael Chana4636962009-06-08 18:14:43 -0700228static void cnic_reg_wr_ind(struct cnic_dev *dev, u32 off, u32 val)
229{
230 struct cnic_local *cp = dev->cnic_priv;
231 struct cnic_eth_dev *ethdev = cp->ethdev;
232 struct drv_ctl_info info;
233 struct drv_ctl_io *io = &info.data.io;
234
235 info.cmd = DRV_CTL_IO_WR_CMD;
236 io->offset = off;
237 io->data = val;
238 ethdev->drv_ctl(dev->netdev, &info);
239}
240
241static u32 cnic_reg_rd_ind(struct cnic_dev *dev, u32 off)
242{
243 struct cnic_local *cp = dev->cnic_priv;
244 struct cnic_eth_dev *ethdev = cp->ethdev;
245 struct drv_ctl_info info;
246 struct drv_ctl_io *io = &info.data.io;
247
248 info.cmd = DRV_CTL_IO_RD_CMD;
249 io->offset = off;
250 ethdev->drv_ctl(dev->netdev, &info);
251 return io->data;
252}
253
Barak Witkowski1d187b32011-12-05 22:41:50 +0000254static void cnic_ulp_ctl(struct cnic_dev *dev, int ulp_type, bool reg)
255{
256 struct cnic_local *cp = dev->cnic_priv;
257 struct cnic_eth_dev *ethdev = cp->ethdev;
258 struct drv_ctl_info info;
Barak Witkowski2e499d32012-06-26 01:31:19 +0000259 struct fcoe_capabilities *fcoe_cap =
260 &info.data.register_data.fcoe_features;
Barak Witkowski1d187b32011-12-05 22:41:50 +0000261
Barak Witkowski2e499d32012-06-26 01:31:19 +0000262 if (reg) {
Barak Witkowski1d187b32011-12-05 22:41:50 +0000263 info.cmd = DRV_CTL_ULP_REGISTER_CMD;
Barak Witkowski2e499d32012-06-26 01:31:19 +0000264 if (ulp_type == CNIC_ULP_FCOE && dev->fcoe_cap)
265 memcpy(fcoe_cap, dev->fcoe_cap, sizeof(*fcoe_cap));
266 } else {
Barak Witkowski1d187b32011-12-05 22:41:50 +0000267 info.cmd = DRV_CTL_ULP_UNREGISTER_CMD;
Barak Witkowski2e499d32012-06-26 01:31:19 +0000268 }
Barak Witkowski1d187b32011-12-05 22:41:50 +0000269
270 info.data.ulp_type = ulp_type;
271 ethdev->drv_ctl(dev->netdev, &info);
272}
273
Michael Chana4636962009-06-08 18:14:43 -0700274static int cnic_in_use(struct cnic_sock *csk)
275{
276 return test_bit(SK_F_INUSE, &csk->flags);
277}
278
Dmitry Kravkovc2bff632010-10-06 03:33:18 +0000279static void cnic_spq_completion(struct cnic_dev *dev, int cmd, u32 count)
Michael Chana4636962009-06-08 18:14:43 -0700280{
281 struct cnic_local *cp = dev->cnic_priv;
282 struct cnic_eth_dev *ethdev = cp->ethdev;
283 struct drv_ctl_info info;
284
Dmitry Kravkovc2bff632010-10-06 03:33:18 +0000285 info.cmd = cmd;
286 info.data.credit.credit_count = count;
Michael Chana4636962009-06-08 18:14:43 -0700287 ethdev->drv_ctl(dev->netdev, &info);
288}
289
Michael Chan71034ba2009-10-10 13:46:59 +0000290static int cnic_get_l5_cid(struct cnic_local *cp, u32 cid, u32 *l5_cid)
291{
292 u32 i;
293
Michael Chana2028b232012-06-27 15:08:19 +0000294 if (!cp->ctx_tbl)
295 return -EINVAL;
296
Michael Chan520efdf2010-06-24 14:58:37 +0000297 for (i = 0; i < cp->max_cid_space; i++) {
Michael Chan71034ba2009-10-10 13:46:59 +0000298 if (cp->ctx_tbl[i].cid == cid) {
299 *l5_cid = i;
300 return 0;
301 }
302 }
303 return -EINVAL;
304}
305
Michael Chana4636962009-06-08 18:14:43 -0700306static int cnic_send_nlmsg(struct cnic_local *cp, u32 type,
307 struct cnic_sock *csk)
308{
309 struct iscsi_path path_req;
310 char *buf = NULL;
311 u16 len = 0;
312 u32 msg_type = ISCSI_KEVENT_IF_DOWN;
313 struct cnic_ulp_ops *ulp_ops;
Michael Chancd801532010-10-13 14:06:49 +0000314 struct cnic_uio_dev *udev = cp->udev;
Michael Chan939b82e2010-12-23 07:42:58 +0000315 int rc = 0, retry = 0;
Michael Chana4636962009-06-08 18:14:43 -0700316
Michael Chancd801532010-10-13 14:06:49 +0000317 if (!udev || udev->uio_dev == -1)
Michael Chana4636962009-06-08 18:14:43 -0700318 return -ENODEV;
319
320 if (csk) {
321 len = sizeof(path_req);
322 buf = (char *) &path_req;
323 memset(&path_req, 0, len);
324
325 msg_type = ISCSI_KEVENT_PATH_REQ;
326 path_req.handle = (u64) csk->l5_cid;
327 if (test_bit(SK_F_IPV6, &csk->flags)) {
328 memcpy(&path_req.dst.v6_addr, &csk->dst_ip[0],
329 sizeof(struct in6_addr));
330 path_req.ip_addr_len = 16;
331 } else {
332 memcpy(&path_req.dst.v4_addr, &csk->dst_ip[0],
333 sizeof(struct in_addr));
334 path_req.ip_addr_len = 4;
335 }
336 path_req.vlan_id = csk->vlan_id;
337 path_req.pmtu = csk->mtu;
338 }
339
Michael Chan939b82e2010-12-23 07:42:58 +0000340 while (retry < 3) {
341 rc = 0;
342 rcu_read_lock();
343 ulp_ops = rcu_dereference(cnic_ulp_tbl[CNIC_ULP_ISCSI]);
344 if (ulp_ops)
345 rc = ulp_ops->iscsi_nl_send_msg(
346 cp->ulp_handle[CNIC_ULP_ISCSI],
347 msg_type, buf, len);
348 rcu_read_unlock();
349 if (rc == 0 || msg_type != ISCSI_KEVENT_PATH_REQ)
350 break;
351
352 msleep(100);
353 retry++;
354 }
Michael Chan558e4c72011-07-13 17:24:20 +0000355 return rc;
Michael Chana4636962009-06-08 18:14:43 -0700356}
357
Eddie Wai42ecbb82010-12-23 07:43:02 +0000358static void cnic_cm_upcall(struct cnic_local *, struct cnic_sock *, u8);
359
Michael Chana4636962009-06-08 18:14:43 -0700360static int cnic_iscsi_nl_msg_recv(struct cnic_dev *dev, u32 msg_type,
361 char *buf, u16 len)
362{
363 int rc = -EINVAL;
364
365 switch (msg_type) {
366 case ISCSI_UEVENT_PATH_UPDATE: {
367 struct cnic_local *cp;
368 u32 l5_cid;
369 struct cnic_sock *csk;
370 struct iscsi_path *path_resp;
371
372 if (len < sizeof(*path_resp))
373 break;
374
375 path_resp = (struct iscsi_path *) buf;
376 cp = dev->cnic_priv;
377 l5_cid = (u32) path_resp->handle;
378 if (l5_cid >= MAX_CM_SK_TBL_SZ)
379 break;
380
Michael Chand02a5e62010-02-24 14:42:06 +0000381 rcu_read_lock();
382 if (!rcu_dereference(cp->ulp_ops[CNIC_ULP_L4])) {
383 rc = -ENODEV;
384 rcu_read_unlock();
385 break;
386 }
Michael Chana4636962009-06-08 18:14:43 -0700387 csk = &cp->csk_tbl[l5_cid];
388 csk_hold(csk);
Eddie Wai42ecbb82010-12-23 07:43:02 +0000389 if (cnic_in_use(csk) &&
390 test_bit(SK_F_CONNECT_START, &csk->flags)) {
391
Eddie Wai4cbbb042012-02-08 17:33:57 +0000392 csk->vlan_id = path_resp->vlan_id;
393
Michael Chana4636962009-06-08 18:14:43 -0700394 memcpy(csk->ha, path_resp->mac_addr, 6);
395 if (test_bit(SK_F_IPV6, &csk->flags))
396 memcpy(&csk->src_ip[0], &path_resp->src.v6_addr,
397 sizeof(struct in6_addr));
398 else
399 memcpy(&csk->src_ip[0], &path_resp->src.v4_addr,
400 sizeof(struct in_addr));
Eddie Wai42ecbb82010-12-23 07:43:02 +0000401
402 if (is_valid_ether_addr(csk->ha)) {
Michael Chana4636962009-06-08 18:14:43 -0700403 cnic_cm_set_pg(csk);
Eddie Wai42ecbb82010-12-23 07:43:02 +0000404 } else if (!test_bit(SK_F_OFFLD_SCHED, &csk->flags) &&
405 !test_bit(SK_F_OFFLD_COMPLETE, &csk->flags)) {
406
407 cnic_cm_upcall(cp, csk,
408 L4_KCQE_OPCODE_VALUE_CONNECT_COMPLETE);
409 clear_bit(SK_F_CONNECT_START, &csk->flags);
410 }
Michael Chana4636962009-06-08 18:14:43 -0700411 }
412 csk_put(csk);
Michael Chand02a5e62010-02-24 14:42:06 +0000413 rcu_read_unlock();
Michael Chana4636962009-06-08 18:14:43 -0700414 rc = 0;
415 }
416 }
417
418 return rc;
419}
420
421static int cnic_offld_prep(struct cnic_sock *csk)
422{
423 if (test_and_set_bit(SK_F_OFFLD_SCHED, &csk->flags))
424 return 0;
425
426 if (!test_bit(SK_F_CONNECT_START, &csk->flags)) {
427 clear_bit(SK_F_OFFLD_SCHED, &csk->flags);
428 return 0;
429 }
430
431 return 1;
432}
433
434static int cnic_close_prep(struct cnic_sock *csk)
435{
436 clear_bit(SK_F_CONNECT_START, &csk->flags);
437 smp_mb__after_clear_bit();
438
439 if (test_and_clear_bit(SK_F_OFFLD_COMPLETE, &csk->flags)) {
440 while (test_and_set_bit(SK_F_OFFLD_SCHED, &csk->flags))
441 msleep(1);
442
443 return 1;
444 }
445 return 0;
446}
447
448static int cnic_abort_prep(struct cnic_sock *csk)
449{
450 clear_bit(SK_F_CONNECT_START, &csk->flags);
451 smp_mb__after_clear_bit();
452
453 while (test_and_set_bit(SK_F_OFFLD_SCHED, &csk->flags))
454 msleep(1);
455
456 if (test_and_clear_bit(SK_F_OFFLD_COMPLETE, &csk->flags)) {
457 csk->state = L4_KCQE_OPCODE_VALUE_RESET_COMP;
458 return 1;
459 }
460
461 return 0;
462}
463
464int cnic_register_driver(int ulp_type, struct cnic_ulp_ops *ulp_ops)
465{
466 struct cnic_dev *dev;
467
roel kluin0d37f362009-11-02 06:53:44 +0000468 if (ulp_type < 0 || ulp_type >= MAX_CNIC_ULP_TYPE) {
Joe Perchesddf79b22010-02-17 15:01:54 +0000469 pr_err("%s: Bad type %d\n", __func__, ulp_type);
Michael Chana4636962009-06-08 18:14:43 -0700470 return -EINVAL;
471 }
472 mutex_lock(&cnic_lock);
Eric Dumazet13707f92011-01-26 19:28:23 +0000473 if (cnic_ulp_tbl_prot(ulp_type)) {
Joe Perchesddf79b22010-02-17 15:01:54 +0000474 pr_err("%s: Type %d has already been registered\n",
475 __func__, ulp_type);
Michael Chana4636962009-06-08 18:14:43 -0700476 mutex_unlock(&cnic_lock);
477 return -EBUSY;
478 }
479
480 read_lock(&cnic_dev_lock);
481 list_for_each_entry(dev, &cnic_dev_list, list) {
482 struct cnic_local *cp = dev->cnic_priv;
483
484 clear_bit(ULP_F_INIT, &cp->ulp_flags[ulp_type]);
485 }
486 read_unlock(&cnic_dev_lock);
487
Michael Chan7fc1ece2009-08-14 15:49:47 +0000488 atomic_set(&ulp_ops->ref_count, 0);
Michael Chana4636962009-06-08 18:14:43 -0700489 rcu_assign_pointer(cnic_ulp_tbl[ulp_type], ulp_ops);
490 mutex_unlock(&cnic_lock);
491
492 /* Prevent race conditions with netdev_event */
493 rtnl_lock();
Michael Chana4636962009-06-08 18:14:43 -0700494 list_for_each_entry(dev, &cnic_dev_list, list) {
495 struct cnic_local *cp = dev->cnic_priv;
496
497 if (!test_and_set_bit(ULP_F_INIT, &cp->ulp_flags[ulp_type]))
498 ulp_ops->cnic_init(dev);
499 }
Michael Chana4636962009-06-08 18:14:43 -0700500 rtnl_unlock();
501
502 return 0;
503}
504
505int cnic_unregister_driver(int ulp_type)
506{
507 struct cnic_dev *dev;
Michael Chan7fc1ece2009-08-14 15:49:47 +0000508 struct cnic_ulp_ops *ulp_ops;
509 int i = 0;
Michael Chana4636962009-06-08 18:14:43 -0700510
roel kluin0d37f362009-11-02 06:53:44 +0000511 if (ulp_type < 0 || ulp_type >= MAX_CNIC_ULP_TYPE) {
Joe Perchesddf79b22010-02-17 15:01:54 +0000512 pr_err("%s: Bad type %d\n", __func__, ulp_type);
Michael Chana4636962009-06-08 18:14:43 -0700513 return -EINVAL;
514 }
515 mutex_lock(&cnic_lock);
Eric Dumazet13707f92011-01-26 19:28:23 +0000516 ulp_ops = cnic_ulp_tbl_prot(ulp_type);
Michael Chan7fc1ece2009-08-14 15:49:47 +0000517 if (!ulp_ops) {
Joe Perchesddf79b22010-02-17 15:01:54 +0000518 pr_err("%s: Type %d has not been registered\n",
519 __func__, ulp_type);
Michael Chana4636962009-06-08 18:14:43 -0700520 goto out_unlock;
521 }
522 read_lock(&cnic_dev_lock);
523 list_for_each_entry(dev, &cnic_dev_list, list) {
524 struct cnic_local *cp = dev->cnic_priv;
525
526 if (rcu_dereference(cp->ulp_ops[ulp_type])) {
Joe Perchesddf79b22010-02-17 15:01:54 +0000527 pr_err("%s: Type %d still has devices registered\n",
528 __func__, ulp_type);
Michael Chana4636962009-06-08 18:14:43 -0700529 read_unlock(&cnic_dev_lock);
530 goto out_unlock;
531 }
532 }
533 read_unlock(&cnic_dev_lock);
534
Eric Dumazet2cfa5a02011-11-23 07:09:32 +0000535 RCU_INIT_POINTER(cnic_ulp_tbl[ulp_type], NULL);
Michael Chana4636962009-06-08 18:14:43 -0700536
537 mutex_unlock(&cnic_lock);
538 synchronize_rcu();
Michael Chan7fc1ece2009-08-14 15:49:47 +0000539 while ((atomic_read(&ulp_ops->ref_count) != 0) && (i < 20)) {
540 msleep(100);
541 i++;
542 }
543
544 if (atomic_read(&ulp_ops->ref_count) != 0)
Julia Lawall022f0972012-07-08 01:37:43 +0000545 pr_warn("%s: Failed waiting for ref count to go to zero\n",
546 __func__);
Michael Chana4636962009-06-08 18:14:43 -0700547 return 0;
548
549out_unlock:
550 mutex_unlock(&cnic_lock);
551 return -EINVAL;
552}
553
554static int cnic_start_hw(struct cnic_dev *);
555static void cnic_stop_hw(struct cnic_dev *);
556
557static int cnic_register_device(struct cnic_dev *dev, int ulp_type,
558 void *ulp_ctx)
559{
560 struct cnic_local *cp = dev->cnic_priv;
561 struct cnic_ulp_ops *ulp_ops;
562
roel kluin0d37f362009-11-02 06:53:44 +0000563 if (ulp_type < 0 || ulp_type >= MAX_CNIC_ULP_TYPE) {
Joe Perchesddf79b22010-02-17 15:01:54 +0000564 pr_err("%s: Bad type %d\n", __func__, ulp_type);
Michael Chana4636962009-06-08 18:14:43 -0700565 return -EINVAL;
566 }
567 mutex_lock(&cnic_lock);
Eric Dumazet13707f92011-01-26 19:28:23 +0000568 if (cnic_ulp_tbl_prot(ulp_type) == NULL) {
Joe Perchesddf79b22010-02-17 15:01:54 +0000569 pr_err("%s: Driver with type %d has not been registered\n",
570 __func__, ulp_type);
Michael Chana4636962009-06-08 18:14:43 -0700571 mutex_unlock(&cnic_lock);
572 return -EAGAIN;
573 }
574 if (rcu_dereference(cp->ulp_ops[ulp_type])) {
Joe Perchesddf79b22010-02-17 15:01:54 +0000575 pr_err("%s: Type %d has already been registered to this device\n",
576 __func__, ulp_type);
Michael Chana4636962009-06-08 18:14:43 -0700577 mutex_unlock(&cnic_lock);
578 return -EBUSY;
579 }
580
581 clear_bit(ULP_F_START, &cp->ulp_flags[ulp_type]);
582 cp->ulp_handle[ulp_type] = ulp_ctx;
Eric Dumazet13707f92011-01-26 19:28:23 +0000583 ulp_ops = cnic_ulp_tbl_prot(ulp_type);
Michael Chana4636962009-06-08 18:14:43 -0700584 rcu_assign_pointer(cp->ulp_ops[ulp_type], ulp_ops);
585 cnic_hold(dev);
586
587 if (test_bit(CNIC_F_CNIC_UP, &dev->flags))
588 if (!test_and_set_bit(ULP_F_START, &cp->ulp_flags[ulp_type]))
589 ulp_ops->cnic_start(cp->ulp_handle[ulp_type]);
590
591 mutex_unlock(&cnic_lock);
592
Barak Witkowski1d187b32011-12-05 22:41:50 +0000593 cnic_ulp_ctl(dev, ulp_type, true);
594
Michael Chana4636962009-06-08 18:14:43 -0700595 return 0;
596
597}
598EXPORT_SYMBOL(cnic_register_driver);
599
600static int cnic_unregister_device(struct cnic_dev *dev, int ulp_type)
601{
602 struct cnic_local *cp = dev->cnic_priv;
Michael Chan681dbd72009-08-14 15:49:46 +0000603 int i = 0;
Michael Chana4636962009-06-08 18:14:43 -0700604
roel kluin0d37f362009-11-02 06:53:44 +0000605 if (ulp_type < 0 || ulp_type >= MAX_CNIC_ULP_TYPE) {
Joe Perchesddf79b22010-02-17 15:01:54 +0000606 pr_err("%s: Bad type %d\n", __func__, ulp_type);
Michael Chana4636962009-06-08 18:14:43 -0700607 return -EINVAL;
608 }
609 mutex_lock(&cnic_lock);
610 if (rcu_dereference(cp->ulp_ops[ulp_type])) {
Eric Dumazet2cfa5a02011-11-23 07:09:32 +0000611 RCU_INIT_POINTER(cp->ulp_ops[ulp_type], NULL);
Michael Chana4636962009-06-08 18:14:43 -0700612 cnic_put(dev);
613 } else {
Joe Perchesddf79b22010-02-17 15:01:54 +0000614 pr_err("%s: device not registered to this ulp type %d\n",
615 __func__, ulp_type);
Michael Chana4636962009-06-08 18:14:43 -0700616 mutex_unlock(&cnic_lock);
617 return -EINVAL;
618 }
619 mutex_unlock(&cnic_lock);
620
Michael Chan42bb8d52011-01-03 15:21:46 +0000621 if (ulp_type == CNIC_ULP_ISCSI)
622 cnic_send_nlmsg(cp, ISCSI_KEVENT_IF_DOWN, NULL);
Barak Witkowski2e499d32012-06-26 01:31:19 +0000623 else if (ulp_type == CNIC_ULP_FCOE)
624 dev->fcoe_cap = NULL;
Michael Chan42bb8d52011-01-03 15:21:46 +0000625
Michael Chana4636962009-06-08 18:14:43 -0700626 synchronize_rcu();
627
Michael Chan681dbd72009-08-14 15:49:46 +0000628 while (test_bit(ULP_F_CALL_PENDING, &cp->ulp_flags[ulp_type]) &&
629 i < 20) {
630 msleep(100);
631 i++;
632 }
633 if (test_bit(ULP_F_CALL_PENDING, &cp->ulp_flags[ulp_type]))
Joe Perchesddf79b22010-02-17 15:01:54 +0000634 netdev_warn(dev->netdev, "Failed waiting for ULP up call to complete\n");
Michael Chan681dbd72009-08-14 15:49:46 +0000635
Barak Witkowski1d187b32011-12-05 22:41:50 +0000636 cnic_ulp_ctl(dev, ulp_type, false);
637
Michael Chana4636962009-06-08 18:14:43 -0700638 return 0;
639}
640EXPORT_SYMBOL(cnic_unregister_driver);
641
Eddie Wai11f23aa2011-06-08 19:29:34 +0000642static int cnic_init_id_tbl(struct cnic_id_tbl *id_tbl, u32 size, u32 start_id,
643 u32 next)
Michael Chana4636962009-06-08 18:14:43 -0700644{
645 id_tbl->start = start_id;
646 id_tbl->max = size;
Eddie Wai11f23aa2011-06-08 19:29:34 +0000647 id_tbl->next = next;
Michael Chana4636962009-06-08 18:14:43 -0700648 spin_lock_init(&id_tbl->lock);
649 id_tbl->table = kzalloc(DIV_ROUND_UP(size, 32) * 4, GFP_KERNEL);
650 if (!id_tbl->table)
651 return -ENOMEM;
652
653 return 0;
654}
655
656static void cnic_free_id_tbl(struct cnic_id_tbl *id_tbl)
657{
658 kfree(id_tbl->table);
659 id_tbl->table = NULL;
660}
661
662static int cnic_alloc_id(struct cnic_id_tbl *id_tbl, u32 id)
663{
664 int ret = -1;
665
666 id -= id_tbl->start;
667 if (id >= id_tbl->max)
668 return ret;
669
670 spin_lock(&id_tbl->lock);
671 if (!test_bit(id, id_tbl->table)) {
672 set_bit(id, id_tbl->table);
673 ret = 0;
674 }
675 spin_unlock(&id_tbl->lock);
676 return ret;
677}
678
679/* Returns -1 if not successful */
680static u32 cnic_alloc_new_id(struct cnic_id_tbl *id_tbl)
681{
682 u32 id;
683
684 spin_lock(&id_tbl->lock);
685 id = find_next_zero_bit(id_tbl->table, id_tbl->max, id_tbl->next);
686 if (id >= id_tbl->max) {
687 id = -1;
688 if (id_tbl->next != 0) {
689 id = find_first_zero_bit(id_tbl->table, id_tbl->next);
690 if (id >= id_tbl->next)
691 id = -1;
692 }
693 }
694
695 if (id < id_tbl->max) {
696 set_bit(id, id_tbl->table);
697 id_tbl->next = (id + 1) & (id_tbl->max - 1);
698 id += id_tbl->start;
699 }
700
701 spin_unlock(&id_tbl->lock);
702
703 return id;
704}
705
706static void cnic_free_id(struct cnic_id_tbl *id_tbl, u32 id)
707{
708 if (id == -1)
709 return;
710
711 id -= id_tbl->start;
712 if (id >= id_tbl->max)
713 return;
714
715 clear_bit(id, id_tbl->table);
716}
717
718static void cnic_free_dma(struct cnic_dev *dev, struct cnic_dma *dma)
719{
720 int i;
721
722 if (!dma->pg_arr)
723 return;
724
725 for (i = 0; i < dma->num_pages; i++) {
726 if (dma->pg_arr[i]) {
Michael Chan3248e162009-12-02 15:15:39 +0000727 dma_free_coherent(&dev->pcidev->dev, BCM_PAGE_SIZE,
728 dma->pg_arr[i], dma->pg_map_arr[i]);
Michael Chana4636962009-06-08 18:14:43 -0700729 dma->pg_arr[i] = NULL;
730 }
731 }
732 if (dma->pgtbl) {
Michael Chan3248e162009-12-02 15:15:39 +0000733 dma_free_coherent(&dev->pcidev->dev, dma->pgtbl_size,
734 dma->pgtbl, dma->pgtbl_map);
Michael Chana4636962009-06-08 18:14:43 -0700735 dma->pgtbl = NULL;
736 }
737 kfree(dma->pg_arr);
738 dma->pg_arr = NULL;
739 dma->num_pages = 0;
740}
741
742static void cnic_setup_page_tbl(struct cnic_dev *dev, struct cnic_dma *dma)
743{
744 int i;
Michael Chan51388262011-01-25 22:14:50 +0000745 __le32 *page_table = (__le32 *) dma->pgtbl;
Michael Chana4636962009-06-08 18:14:43 -0700746
747 for (i = 0; i < dma->num_pages; i++) {
748 /* Each entry needs to be in big endian format. */
Michael Chan51388262011-01-25 22:14:50 +0000749 *page_table = cpu_to_le32((u64) dma->pg_map_arr[i] >> 32);
Michael Chana4636962009-06-08 18:14:43 -0700750 page_table++;
Michael Chan51388262011-01-25 22:14:50 +0000751 *page_table = cpu_to_le32(dma->pg_map_arr[i] & 0xffffffff);
Michael Chana4636962009-06-08 18:14:43 -0700752 page_table++;
753 }
754}
755
Michael Chan71034ba2009-10-10 13:46:59 +0000756static void cnic_setup_page_tbl_le(struct cnic_dev *dev, struct cnic_dma *dma)
757{
758 int i;
Michael Chan51388262011-01-25 22:14:50 +0000759 __le32 *page_table = (__le32 *) dma->pgtbl;
Michael Chan71034ba2009-10-10 13:46:59 +0000760
761 for (i = 0; i < dma->num_pages; i++) {
762 /* Each entry needs to be in little endian format. */
Michael Chan51388262011-01-25 22:14:50 +0000763 *page_table = cpu_to_le32(dma->pg_map_arr[i] & 0xffffffff);
Michael Chan71034ba2009-10-10 13:46:59 +0000764 page_table++;
Michael Chan51388262011-01-25 22:14:50 +0000765 *page_table = cpu_to_le32((u64) dma->pg_map_arr[i] >> 32);
Michael Chan71034ba2009-10-10 13:46:59 +0000766 page_table++;
767 }
768}
769
Michael Chana4636962009-06-08 18:14:43 -0700770static int cnic_alloc_dma(struct cnic_dev *dev, struct cnic_dma *dma,
771 int pages, int use_pg_tbl)
772{
773 int i, size;
774 struct cnic_local *cp = dev->cnic_priv;
775
776 size = pages * (sizeof(void *) + sizeof(dma_addr_t));
777 dma->pg_arr = kzalloc(size, GFP_ATOMIC);
778 if (dma->pg_arr == NULL)
779 return -ENOMEM;
780
781 dma->pg_map_arr = (dma_addr_t *) (dma->pg_arr + pages);
782 dma->num_pages = pages;
783
784 for (i = 0; i < pages; i++) {
Michael Chan3248e162009-12-02 15:15:39 +0000785 dma->pg_arr[i] = dma_alloc_coherent(&dev->pcidev->dev,
786 BCM_PAGE_SIZE,
787 &dma->pg_map_arr[i],
788 GFP_ATOMIC);
Michael Chana4636962009-06-08 18:14:43 -0700789 if (dma->pg_arr[i] == NULL)
790 goto error;
791 }
792 if (!use_pg_tbl)
793 return 0;
794
795 dma->pgtbl_size = ((pages * 8) + BCM_PAGE_SIZE - 1) &
796 ~(BCM_PAGE_SIZE - 1);
Michael Chan3248e162009-12-02 15:15:39 +0000797 dma->pgtbl = dma_alloc_coherent(&dev->pcidev->dev, dma->pgtbl_size,
798 &dma->pgtbl_map, GFP_ATOMIC);
Michael Chana4636962009-06-08 18:14:43 -0700799 if (dma->pgtbl == NULL)
800 goto error;
801
802 cp->setup_pgtbl(dev, dma);
803
804 return 0;
805
806error:
807 cnic_free_dma(dev, dma);
808 return -ENOMEM;
809}
810
Michael Chan86b53602009-10-10 13:46:57 +0000811static void cnic_free_context(struct cnic_dev *dev)
812{
813 struct cnic_local *cp = dev->cnic_priv;
814 int i;
815
816 for (i = 0; i < cp->ctx_blks; i++) {
817 if (cp->ctx_arr[i].ctx) {
Michael Chan3248e162009-12-02 15:15:39 +0000818 dma_free_coherent(&dev->pcidev->dev, cp->ctx_blk_size,
819 cp->ctx_arr[i].ctx,
820 cp->ctx_arr[i].mapping);
Michael Chan86b53602009-10-10 13:46:57 +0000821 cp->ctx_arr[i].ctx = NULL;
822 }
823 }
824}
825
Michael Chan74dd0c42012-09-08 06:01:01 +0000826static void __cnic_free_uio_rings(struct cnic_uio_dev *udev)
Michael Chana4636962009-06-08 18:14:43 -0700827{
Michael Chancd801532010-10-13 14:06:49 +0000828 if (udev->l2_buf) {
829 dma_free_coherent(&udev->pdev->dev, udev->l2_buf_size,
830 udev->l2_buf, udev->l2_buf_map);
831 udev->l2_buf = NULL;
Michael Chana4636962009-06-08 18:14:43 -0700832 }
833
Michael Chancd801532010-10-13 14:06:49 +0000834 if (udev->l2_ring) {
835 dma_free_coherent(&udev->pdev->dev, udev->l2_ring_size,
836 udev->l2_ring, udev->l2_ring_map);
837 udev->l2_ring = NULL;
Michael Chana4636962009-06-08 18:14:43 -0700838 }
Michael Chana3ceeeb2010-10-13 14:06:50 +0000839
Michael Chan74dd0c42012-09-08 06:01:01 +0000840}
841
842static void __cnic_free_uio(struct cnic_uio_dev *udev)
843{
844 uio_unregister_device(&udev->cnic_uinfo);
845
846 __cnic_free_uio_rings(udev);
847
Michael Chana3ceeeb2010-10-13 14:06:50 +0000848 pci_dev_put(udev->pdev);
849 kfree(udev);
Michael Chanc06c0462010-10-13 14:06:48 +0000850}
851
Michael Chancd801532010-10-13 14:06:49 +0000852static void cnic_free_uio(struct cnic_uio_dev *udev)
Michael Chanc06c0462010-10-13 14:06:48 +0000853{
Michael Chancd801532010-10-13 14:06:49 +0000854 if (!udev)
Michael Chanc06c0462010-10-13 14:06:48 +0000855 return;
856
Michael Chana3ceeeb2010-10-13 14:06:50 +0000857 write_lock(&cnic_dev_lock);
858 list_del_init(&udev->list);
859 write_unlock(&cnic_dev_lock);
Michael Chancd801532010-10-13 14:06:49 +0000860 __cnic_free_uio(udev);
Michael Chanc06c0462010-10-13 14:06:48 +0000861}
862
863static void cnic_free_resc(struct cnic_dev *dev)
864{
865 struct cnic_local *cp = dev->cnic_priv;
Michael Chancd801532010-10-13 14:06:49 +0000866 struct cnic_uio_dev *udev = cp->udev;
Michael Chanc06c0462010-10-13 14:06:48 +0000867
Michael Chancd801532010-10-13 14:06:49 +0000868 if (udev) {
Michael Chana3ceeeb2010-10-13 14:06:50 +0000869 udev->dev = NULL;
Michael Chancd801532010-10-13 14:06:49 +0000870 cp->udev = NULL;
Michael Chanf81b0ac2012-09-08 06:01:02 +0000871 if (udev->uio_dev == -1)
872 __cnic_free_uio_rings(udev);
Michael Chanc06c0462010-10-13 14:06:48 +0000873 }
Michael Chana4636962009-06-08 18:14:43 -0700874
Michael Chan86b53602009-10-10 13:46:57 +0000875 cnic_free_context(dev);
Michael Chana4636962009-06-08 18:14:43 -0700876 kfree(cp->ctx_arr);
877 cp->ctx_arr = NULL;
878 cp->ctx_blks = 0;
879
880 cnic_free_dma(dev, &cp->gbl_buf_info);
Michael Chana4636962009-06-08 18:14:43 -0700881 cnic_free_dma(dev, &cp->kwq_info);
Michael Chan71034ba2009-10-10 13:46:59 +0000882 cnic_free_dma(dev, &cp->kwq_16_data_info);
Michael Chane21ba412010-12-23 07:43:03 +0000883 cnic_free_dma(dev, &cp->kcq2.dma);
Michael Chane6c28892010-06-24 14:58:39 +0000884 cnic_free_dma(dev, &cp->kcq1.dma);
Michael Chana4636962009-06-08 18:14:43 -0700885 kfree(cp->iscsi_tbl);
886 cp->iscsi_tbl = NULL;
887 kfree(cp->ctx_tbl);
888 cp->ctx_tbl = NULL;
889
Michael Chane1928c82010-12-23 07:43:04 +0000890 cnic_free_id_tbl(&cp->fcoe_cid_tbl);
Michael Chana4636962009-06-08 18:14:43 -0700891 cnic_free_id_tbl(&cp->cid_tbl);
892}
893
894static int cnic_alloc_context(struct cnic_dev *dev)
895{
896 struct cnic_local *cp = dev->cnic_priv;
897
898 if (CHIP_NUM(cp) == CHIP_NUM_5709) {
899 int i, k, arr_size;
900
901 cp->ctx_blk_size = BCM_PAGE_SIZE;
902 cp->cids_per_blk = BCM_PAGE_SIZE / 128;
903 arr_size = BNX2_MAX_CID / cp->cids_per_blk *
904 sizeof(struct cnic_ctx);
905 cp->ctx_arr = kzalloc(arr_size, GFP_KERNEL);
906 if (cp->ctx_arr == NULL)
907 return -ENOMEM;
908
909 k = 0;
910 for (i = 0; i < 2; i++) {
911 u32 j, reg, off, lo, hi;
912
913 if (i == 0)
914 off = BNX2_PG_CTX_MAP;
915 else
916 off = BNX2_ISCSI_CTX_MAP;
917
918 reg = cnic_reg_rd_ind(dev, off);
919 lo = reg >> 16;
920 hi = reg & 0xffff;
921 for (j = lo; j < hi; j += cp->cids_per_blk, k++)
922 cp->ctx_arr[k].cid = j;
923 }
924
925 cp->ctx_blks = k;
926 if (cp->ctx_blks >= (BNX2_MAX_CID / cp->cids_per_blk)) {
927 cp->ctx_blks = 0;
928 return -ENOMEM;
929 }
930
931 for (i = 0; i < cp->ctx_blks; i++) {
932 cp->ctx_arr[i].ctx =
Michael Chan3248e162009-12-02 15:15:39 +0000933 dma_alloc_coherent(&dev->pcidev->dev,
934 BCM_PAGE_SIZE,
935 &cp->ctx_arr[i].mapping,
936 GFP_KERNEL);
Michael Chana4636962009-06-08 18:14:43 -0700937 if (cp->ctx_arr[i].ctx == NULL)
938 return -ENOMEM;
939 }
940 }
941 return 0;
942}
943
Michael Chan59e51372011-06-14 01:32:38 +0000944static u16 cnic_bnx2_next_idx(u16 idx)
Michael Chane6c28892010-06-24 14:58:39 +0000945{
Michael Chan59e51372011-06-14 01:32:38 +0000946 return idx + 1;
947}
948
949static u16 cnic_bnx2_hw_idx(u16 idx)
950{
951 return idx;
952}
953
954static u16 cnic_bnx2x_next_idx(u16 idx)
955{
956 idx++;
957 if ((idx & MAX_KCQE_CNT) == MAX_KCQE_CNT)
958 idx++;
959
960 return idx;
961}
962
963static u16 cnic_bnx2x_hw_idx(u16 idx)
964{
965 if ((idx & MAX_KCQE_CNT) == MAX_KCQE_CNT)
966 idx++;
967 return idx;
968}
969
970static int cnic_alloc_kcq(struct cnic_dev *dev, struct kcq_info *info,
971 bool use_pg_tbl)
972{
973 int err, i, use_page_tbl = 0;
Michael Chane6c28892010-06-24 14:58:39 +0000974 struct kcqe **kcq;
975
Michael Chan59e51372011-06-14 01:32:38 +0000976 if (use_pg_tbl)
977 use_page_tbl = 1;
Michael Chane6c28892010-06-24 14:58:39 +0000978
Michael Chan59e51372011-06-14 01:32:38 +0000979 err = cnic_alloc_dma(dev, &info->dma, KCQ_PAGE_CNT, use_page_tbl);
Michael Chane6c28892010-06-24 14:58:39 +0000980 if (err)
981 return err;
982
983 kcq = (struct kcqe **) info->dma.pg_arr;
984 info->kcq = kcq;
985
Michael Chan59e51372011-06-14 01:32:38 +0000986 info->next_idx = cnic_bnx2_next_idx;
987 info->hw_idx = cnic_bnx2_hw_idx;
988 if (use_pg_tbl)
Michael Chane6c28892010-06-24 14:58:39 +0000989 return 0;
990
Michael Chan59e51372011-06-14 01:32:38 +0000991 info->next_idx = cnic_bnx2x_next_idx;
992 info->hw_idx = cnic_bnx2x_hw_idx;
993
Michael Chane6c28892010-06-24 14:58:39 +0000994 for (i = 0; i < KCQ_PAGE_CNT; i++) {
995 struct bnx2x_bd_chain_next *next =
996 (struct bnx2x_bd_chain_next *) &kcq[i][MAX_KCQE_CNT];
997 int j = i + 1;
998
999 if (j >= KCQ_PAGE_CNT)
1000 j = 0;
1001 next->addr_hi = (u64) info->dma.pg_map_arr[j] >> 32;
1002 next->addr_lo = info->dma.pg_map_arr[j] & 0xffffffff;
1003 }
1004 return 0;
1005}
1006
Michael Chan74dd0c42012-09-08 06:01:01 +00001007static int __cnic_alloc_uio_rings(struct cnic_uio_dev *udev, int pages)
1008{
1009 struct cnic_local *cp = udev->dev->cnic_priv;
1010
1011 if (udev->l2_ring)
1012 return 0;
1013
1014 udev->l2_ring_size = pages * BCM_PAGE_SIZE;
1015 udev->l2_ring = dma_alloc_coherent(&udev->pdev->dev, udev->l2_ring_size,
1016 &udev->l2_ring_map,
1017 GFP_KERNEL | __GFP_COMP);
1018 if (!udev->l2_ring)
1019 return -ENOMEM;
1020
1021 udev->l2_buf_size = (cp->l2_rx_ring_size + 1) * cp->l2_single_buf_size;
1022 udev->l2_buf_size = PAGE_ALIGN(udev->l2_buf_size);
1023 udev->l2_buf = dma_alloc_coherent(&udev->pdev->dev, udev->l2_buf_size,
1024 &udev->l2_buf_map,
1025 GFP_KERNEL | __GFP_COMP);
1026 if (!udev->l2_buf) {
1027 __cnic_free_uio_rings(udev);
1028 return -ENOMEM;
1029 }
1030
1031 return 0;
1032
1033}
1034
Michael Chancd801532010-10-13 14:06:49 +00001035static int cnic_alloc_uio_rings(struct cnic_dev *dev, int pages)
Michael Chanec0248e2009-08-26 09:49:22 +00001036{
1037 struct cnic_local *cp = dev->cnic_priv;
Michael Chancd801532010-10-13 14:06:49 +00001038 struct cnic_uio_dev *udev;
Michael Chanec0248e2009-08-26 09:49:22 +00001039
Michael Chana3ceeeb2010-10-13 14:06:50 +00001040 read_lock(&cnic_dev_lock);
1041 list_for_each_entry(udev, &cnic_udev_list, list) {
1042 if (udev->pdev == dev->pcidev) {
1043 udev->dev = dev;
Michael Chanf81b0ac2012-09-08 06:01:02 +00001044 if (__cnic_alloc_uio_rings(udev, pages)) {
1045 udev->dev = NULL;
1046 read_unlock(&cnic_dev_lock);
1047 return -ENOMEM;
1048 }
Michael Chana3ceeeb2010-10-13 14:06:50 +00001049 cp->udev = udev;
1050 read_unlock(&cnic_dev_lock);
1051 return 0;
1052 }
1053 }
1054 read_unlock(&cnic_dev_lock);
1055
Michael Chancd801532010-10-13 14:06:49 +00001056 udev = kzalloc(sizeof(struct cnic_uio_dev), GFP_ATOMIC);
1057 if (!udev)
Michael Chanec0248e2009-08-26 09:49:22 +00001058 return -ENOMEM;
1059
Michael Chancd801532010-10-13 14:06:49 +00001060 udev->uio_dev = -1;
1061
1062 udev->dev = dev;
1063 udev->pdev = dev->pcidev;
Michael Chanec0248e2009-08-26 09:49:22 +00001064
Michael Chan74dd0c42012-09-08 06:01:01 +00001065 if (__cnic_alloc_uio_rings(udev, pages))
1066 goto err_udev;
Michael Chancd801532010-10-13 14:06:49 +00001067
Michael Chana3ceeeb2010-10-13 14:06:50 +00001068 write_lock(&cnic_dev_lock);
1069 list_add(&udev->list, &cnic_udev_list);
1070 write_unlock(&cnic_dev_lock);
1071
1072 pci_dev_get(udev->pdev);
1073
Michael Chancd801532010-10-13 14:06:49 +00001074 cp->udev = udev;
1075
Michael Chanec0248e2009-08-26 09:49:22 +00001076 return 0;
Michael Chan74dd0c42012-09-08 06:01:01 +00001077
Jesper Juhlf7e4c972010-12-31 11:18:48 -08001078 err_udev:
1079 kfree(udev);
1080 return -ENOMEM;
Michael Chanec0248e2009-08-26 09:49:22 +00001081}
1082
Michael Chancd801532010-10-13 14:06:49 +00001083static int cnic_init_uio(struct cnic_dev *dev)
1084{
Michael Chan5e9b2db2009-08-26 09:49:23 +00001085 struct cnic_local *cp = dev->cnic_priv;
Michael Chancd801532010-10-13 14:06:49 +00001086 struct cnic_uio_dev *udev = cp->udev;
Michael Chan5e9b2db2009-08-26 09:49:23 +00001087 struct uio_info *uinfo;
Michael Chancd801532010-10-13 14:06:49 +00001088 int ret = 0;
Michael Chan5e9b2db2009-08-26 09:49:23 +00001089
Michael Chancd801532010-10-13 14:06:49 +00001090 if (!udev)
Michael Chan5e9b2db2009-08-26 09:49:23 +00001091 return -ENOMEM;
1092
Michael Chancd801532010-10-13 14:06:49 +00001093 uinfo = &udev->cnic_uinfo;
1094
Michael Chanae0eef62012-06-29 09:32:45 +00001095 uinfo->mem[0].addr = pci_resource_start(dev->pcidev, 0);
1096 uinfo->mem[0].internal_addr = dev->regview;
1097 uinfo->mem[0].memtype = UIO_MEM_PHYS;
Michael Chan5e9b2db2009-08-26 09:49:23 +00001098
Michael Chan5e9b2db2009-08-26 09:49:23 +00001099 if (test_bit(CNIC_F_BNX2_CLASS, &dev->flags)) {
Michael Chanae0eef62012-06-29 09:32:45 +00001100 uinfo->mem[0].size = MB_GET_CID_ADDR(TX_TSS_CID +
1101 TX_MAX_TSS_RINGS + 1);
Michael Chana4dde3a2010-02-24 14:42:08 +00001102 uinfo->mem[1].addr = (unsigned long) cp->status_blk.gen &
Michael Chancd801532010-10-13 14:06:49 +00001103 PAGE_MASK;
Michael Chan5e9b2db2009-08-26 09:49:23 +00001104 if (cp->ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX)
1105 uinfo->mem[1].size = BNX2_SBLK_MSIX_ALIGN_SIZE * 9;
1106 else
1107 uinfo->mem[1].size = BNX2_SBLK_MSIX_ALIGN_SIZE;
1108
1109 uinfo->name = "bnx2_cnic";
Michael Chan71034ba2009-10-10 13:46:59 +00001110 } else if (test_bit(CNIC_F_BNX2X_CLASS, &dev->flags)) {
Michael Chanae0eef62012-06-29 09:32:45 +00001111 uinfo->mem[0].size = pci_resource_len(dev->pcidev, 0);
1112
Michael Chan71034ba2009-10-10 13:46:59 +00001113 uinfo->mem[1].addr = (unsigned long) cp->bnx2x_def_status_blk &
1114 PAGE_MASK;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001115 uinfo->mem[1].size = sizeof(*cp->bnx2x_def_status_blk);
Michael Chan71034ba2009-10-10 13:46:59 +00001116
1117 uinfo->name = "bnx2x_cnic";
Michael Chan5e9b2db2009-08-26 09:49:23 +00001118 }
1119
1120 uinfo->mem[1].memtype = UIO_MEM_LOGICAL;
1121
Michael Chancd801532010-10-13 14:06:49 +00001122 uinfo->mem[2].addr = (unsigned long) udev->l2_ring;
1123 uinfo->mem[2].size = udev->l2_ring_size;
Michael Chan5e9b2db2009-08-26 09:49:23 +00001124 uinfo->mem[2].memtype = UIO_MEM_LOGICAL;
1125
Michael Chancd801532010-10-13 14:06:49 +00001126 uinfo->mem[3].addr = (unsigned long) udev->l2_buf;
1127 uinfo->mem[3].size = udev->l2_buf_size;
Michael Chan5e9b2db2009-08-26 09:49:23 +00001128 uinfo->mem[3].memtype = UIO_MEM_LOGICAL;
1129
1130 uinfo->version = CNIC_MODULE_VERSION;
1131 uinfo->irq = UIO_IRQ_CUSTOM;
1132
1133 uinfo->open = cnic_uio_open;
1134 uinfo->release = cnic_uio_close;
1135
Michael Chana3ceeeb2010-10-13 14:06:50 +00001136 if (udev->uio_dev == -1) {
1137 if (!uinfo->priv) {
1138 uinfo->priv = udev;
Michael Chan5e9b2db2009-08-26 09:49:23 +00001139
Michael Chana3ceeeb2010-10-13 14:06:50 +00001140 ret = uio_register_device(&udev->pdev->dev, uinfo);
1141 }
1142 } else {
1143 cnic_init_rings(dev);
1144 }
Michael Chan5e9b2db2009-08-26 09:49:23 +00001145
Michael Chancd801532010-10-13 14:06:49 +00001146 return ret;
Michael Chan5e9b2db2009-08-26 09:49:23 +00001147}
1148
Michael Chana4636962009-06-08 18:14:43 -07001149static int cnic_alloc_bnx2_resc(struct cnic_dev *dev)
1150{
1151 struct cnic_local *cp = dev->cnic_priv;
Michael Chana4636962009-06-08 18:14:43 -07001152 int ret;
1153
1154 ret = cnic_alloc_dma(dev, &cp->kwq_info, KWQ_PAGE_CNT, 1);
1155 if (ret)
1156 goto error;
1157 cp->kwq = (struct kwqe **) cp->kwq_info.pg_arr;
1158
Michael Chan59e51372011-06-14 01:32:38 +00001159 ret = cnic_alloc_kcq(dev, &cp->kcq1, true);
Michael Chana4636962009-06-08 18:14:43 -07001160 if (ret)
1161 goto error;
Michael Chana4636962009-06-08 18:14:43 -07001162
1163 ret = cnic_alloc_context(dev);
1164 if (ret)
1165 goto error;
1166
Michael Chancd801532010-10-13 14:06:49 +00001167 ret = cnic_alloc_uio_rings(dev, 2);
Michael Chanec0248e2009-08-26 09:49:22 +00001168 if (ret)
Michael Chana4636962009-06-08 18:14:43 -07001169 goto error;
1170
Michael Chancd801532010-10-13 14:06:49 +00001171 ret = cnic_init_uio(dev);
Michael Chan5e9b2db2009-08-26 09:49:23 +00001172 if (ret)
Michael Chana4636962009-06-08 18:14:43 -07001173 goto error;
1174
Michael Chana4636962009-06-08 18:14:43 -07001175 return 0;
1176
1177error:
1178 cnic_free_resc(dev);
1179 return ret;
1180}
1181
Michael Chan71034ba2009-10-10 13:46:59 +00001182static int cnic_alloc_bnx2x_context(struct cnic_dev *dev)
1183{
1184 struct cnic_local *cp = dev->cnic_priv;
Michael Chan71034ba2009-10-10 13:46:59 +00001185 int ctx_blk_size = cp->ethdev->ctx_blk_size;
Michael Chan520efdf2010-06-24 14:58:37 +00001186 int total_mem, blks, i;
Michael Chan71034ba2009-10-10 13:46:59 +00001187
Michael Chan520efdf2010-06-24 14:58:37 +00001188 total_mem = BNX2X_CONTEXT_MEM_SIZE * cp->max_cid_space;
Michael Chan71034ba2009-10-10 13:46:59 +00001189 blks = total_mem / ctx_blk_size;
1190 if (total_mem % ctx_blk_size)
1191 blks++;
1192
1193 if (blks > cp->ethdev->ctx_tbl_len)
1194 return -ENOMEM;
1195
Joe Perchesbaeb2ff2010-08-11 07:02:48 +00001196 cp->ctx_arr = kcalloc(blks, sizeof(struct cnic_ctx), GFP_KERNEL);
Michael Chan71034ba2009-10-10 13:46:59 +00001197 if (cp->ctx_arr == NULL)
1198 return -ENOMEM;
1199
1200 cp->ctx_blks = blks;
1201 cp->ctx_blk_size = ctx_blk_size;
Michael Chanee87a822010-10-13 14:06:51 +00001202 if (!BNX2X_CHIP_IS_57710(cp->chip_id))
Michael Chan71034ba2009-10-10 13:46:59 +00001203 cp->ctx_align = 0;
1204 else
1205 cp->ctx_align = ctx_blk_size;
1206
1207 cp->cids_per_blk = ctx_blk_size / BNX2X_CONTEXT_MEM_SIZE;
1208
1209 for (i = 0; i < blks; i++) {
1210 cp->ctx_arr[i].ctx =
Michael Chan3248e162009-12-02 15:15:39 +00001211 dma_alloc_coherent(&dev->pcidev->dev, cp->ctx_blk_size,
1212 &cp->ctx_arr[i].mapping,
1213 GFP_KERNEL);
Michael Chan71034ba2009-10-10 13:46:59 +00001214 if (cp->ctx_arr[i].ctx == NULL)
1215 return -ENOMEM;
1216
1217 if (cp->ctx_align && cp->ctx_blk_size == ctx_blk_size) {
1218 if (cp->ctx_arr[i].mapping & (cp->ctx_align - 1)) {
1219 cnic_free_context(dev);
1220 cp->ctx_blk_size += cp->ctx_align;
1221 i = -1;
1222 continue;
1223 }
1224 }
1225 }
1226 return 0;
1227}
1228
1229static int cnic_alloc_bnx2x_resc(struct cnic_dev *dev)
1230{
1231 struct cnic_local *cp = dev->cnic_priv;
Michael Chan520efdf2010-06-24 14:58:37 +00001232 struct cnic_eth_dev *ethdev = cp->ethdev;
1233 u32 start_cid = ethdev->starting_cid;
Michael Chan71034ba2009-10-10 13:46:59 +00001234 int i, j, n, ret, pages;
1235 struct cnic_dma *kwq_16_dma = &cp->kwq_16_data_info;
1236
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001237 cp->iro_arr = ethdev->iro_arr;
1238
Michael Chanb37a41e2011-07-20 14:55:22 +00001239 cp->max_cid_space = MAX_ISCSI_TBL_SZ;
Michael Chan520efdf2010-06-24 14:58:37 +00001240 cp->iscsi_start_cid = start_cid;
Michael Chane1928c82010-12-23 07:43:04 +00001241 cp->fcoe_start_cid = start_cid + MAX_ISCSI_TBL_SZ;
1242
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001243 if (BNX2X_CHIP_IS_E2_PLUS(cp->chip_id)) {
Michael Chandc219a22011-08-26 09:45:39 +00001244 cp->max_cid_space += dev->max_fcoe_conn;
Michael Chane1928c82010-12-23 07:43:04 +00001245 cp->fcoe_init_cid = ethdev->fcoe_init_cid;
1246 if (!cp->fcoe_init_cid)
1247 cp->fcoe_init_cid = 0x10;
1248 }
1249
Michael Chan71034ba2009-10-10 13:46:59 +00001250 cp->iscsi_tbl = kzalloc(sizeof(struct cnic_iscsi) * MAX_ISCSI_TBL_SZ,
1251 GFP_KERNEL);
1252 if (!cp->iscsi_tbl)
1253 goto error;
1254
1255 cp->ctx_tbl = kzalloc(sizeof(struct cnic_context) *
Michael Chan520efdf2010-06-24 14:58:37 +00001256 cp->max_cid_space, GFP_KERNEL);
Michael Chan71034ba2009-10-10 13:46:59 +00001257 if (!cp->ctx_tbl)
1258 goto error;
1259
1260 for (i = 0; i < MAX_ISCSI_TBL_SZ; i++) {
1261 cp->ctx_tbl[i].proto.iscsi = &cp->iscsi_tbl[i];
1262 cp->ctx_tbl[i].ulp_proto_id = CNIC_ULP_ISCSI;
1263 }
1264
Michael Chane1928c82010-12-23 07:43:04 +00001265 for (i = MAX_ISCSI_TBL_SZ; i < cp->max_cid_space; i++)
1266 cp->ctx_tbl[i].ulp_proto_id = CNIC_ULP_FCOE;
1267
Michael Chan520efdf2010-06-24 14:58:37 +00001268 pages = PAGE_ALIGN(cp->max_cid_space * CNIC_KWQ16_DATA_SIZE) /
Michael Chan71034ba2009-10-10 13:46:59 +00001269 PAGE_SIZE;
1270
1271 ret = cnic_alloc_dma(dev, kwq_16_dma, pages, 0);
1272 if (ret)
1273 return -ENOMEM;
1274
1275 n = PAGE_SIZE / CNIC_KWQ16_DATA_SIZE;
Michael Chan520efdf2010-06-24 14:58:37 +00001276 for (i = 0, j = 0; i < cp->max_cid_space; i++) {
Michael Chan71034ba2009-10-10 13:46:59 +00001277 long off = CNIC_KWQ16_DATA_SIZE * (i % n);
1278
1279 cp->ctx_tbl[i].kwqe_data = kwq_16_dma->pg_arr[j] + off;
1280 cp->ctx_tbl[i].kwqe_data_mapping = kwq_16_dma->pg_map_arr[j] +
1281 off;
1282
1283 if ((i % n) == (n - 1))
1284 j++;
1285 }
1286
Michael Chan59e51372011-06-14 01:32:38 +00001287 ret = cnic_alloc_kcq(dev, &cp->kcq1, false);
Michael Chan71034ba2009-10-10 13:46:59 +00001288 if (ret)
1289 goto error;
Michael Chan71034ba2009-10-10 13:46:59 +00001290
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001291 if (BNX2X_CHIP_IS_E2_PLUS(cp->chip_id)) {
1292 ret = cnic_alloc_kcq(dev, &cp->kcq2, true);
Michael Chane21ba412010-12-23 07:43:03 +00001293 if (ret)
1294 goto error;
1295 }
1296
Michael Chan71034ba2009-10-10 13:46:59 +00001297 pages = PAGE_ALIGN(BNX2X_ISCSI_GLB_BUF_SIZE) / PAGE_SIZE;
1298 ret = cnic_alloc_dma(dev, &cp->gbl_buf_info, pages, 0);
1299 if (ret)
1300 goto error;
1301
1302 ret = cnic_alloc_bnx2x_context(dev);
1303 if (ret)
1304 goto error;
1305
Michael Chan71034ba2009-10-10 13:46:59 +00001306 cp->bnx2x_def_status_blk = cp->ethdev->irq_arr[1].status_blk;
1307
1308 cp->l2_rx_ring_size = 15;
1309
Michael Chancd801532010-10-13 14:06:49 +00001310 ret = cnic_alloc_uio_rings(dev, 4);
Michael Chan71034ba2009-10-10 13:46:59 +00001311 if (ret)
1312 goto error;
1313
Michael Chancd801532010-10-13 14:06:49 +00001314 ret = cnic_init_uio(dev);
Michael Chan71034ba2009-10-10 13:46:59 +00001315 if (ret)
1316 goto error;
1317
1318 return 0;
1319
1320error:
1321 cnic_free_resc(dev);
1322 return -ENOMEM;
1323}
1324
Michael Chana4636962009-06-08 18:14:43 -07001325static inline u32 cnic_kwq_avail(struct cnic_local *cp)
1326{
1327 return cp->max_kwq_idx -
1328 ((cp->kwq_prod_idx - cp->kwq_con_idx) & cp->max_kwq_idx);
1329}
1330
1331static int cnic_submit_bnx2_kwqes(struct cnic_dev *dev, struct kwqe *wqes[],
1332 u32 num_wqes)
1333{
1334 struct cnic_local *cp = dev->cnic_priv;
1335 struct kwqe *prod_qe;
1336 u16 prod, sw_prod, i;
1337
1338 if (!test_bit(CNIC_F_CNIC_UP, &dev->flags))
1339 return -EAGAIN; /* bnx2 is down */
1340
1341 spin_lock_bh(&cp->cnic_ulp_lock);
1342 if (num_wqes > cnic_kwq_avail(cp) &&
Michael Chan1f1332a2010-05-18 11:32:52 +00001343 !test_bit(CNIC_LCL_FL_KWQ_INIT, &cp->cnic_local_flags)) {
Michael Chana4636962009-06-08 18:14:43 -07001344 spin_unlock_bh(&cp->cnic_ulp_lock);
1345 return -EAGAIN;
1346 }
1347
Michael Chan1f1332a2010-05-18 11:32:52 +00001348 clear_bit(CNIC_LCL_FL_KWQ_INIT, &cp->cnic_local_flags);
Michael Chana4636962009-06-08 18:14:43 -07001349
1350 prod = cp->kwq_prod_idx;
1351 sw_prod = prod & MAX_KWQ_IDX;
1352 for (i = 0; i < num_wqes; i++) {
1353 prod_qe = &cp->kwq[KWQ_PG(sw_prod)][KWQ_IDX(sw_prod)];
1354 memcpy(prod_qe, wqes[i], sizeof(struct kwqe));
1355 prod++;
1356 sw_prod = prod & MAX_KWQ_IDX;
1357 }
1358 cp->kwq_prod_idx = prod;
1359
1360 CNIC_WR16(dev, cp->kwq_io_addr, cp->kwq_prod_idx);
1361
1362 spin_unlock_bh(&cp->cnic_ulp_lock);
1363 return 0;
1364}
1365
Michael Chan71034ba2009-10-10 13:46:59 +00001366static void *cnic_get_kwqe_16_data(struct cnic_local *cp, u32 l5_cid,
1367 union l5cm_specific_data *l5_data)
1368{
1369 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
1370 dma_addr_t map;
1371
1372 map = ctx->kwqe_data_mapping;
1373 l5_data->phy_address.lo = (u64) map & 0xffffffff;
1374 l5_data->phy_address.hi = (u64) map >> 32;
1375 return ctx->kwqe_data;
1376}
1377
1378static int cnic_submit_kwqe_16(struct cnic_dev *dev, u32 cmd, u32 cid,
1379 u32 type, union l5cm_specific_data *l5_data)
1380{
1381 struct cnic_local *cp = dev->cnic_priv;
1382 struct l5cm_spe kwqe;
1383 struct kwqe_16 *kwq[1];
Michael Chan68d7c1a2011-01-05 15:14:13 +00001384 u16 type_16;
Michael Chan71034ba2009-10-10 13:46:59 +00001385 int ret;
1386
1387 kwqe.hdr.conn_and_cmd_data =
1388 cpu_to_le32(((cmd << SPE_HDR_CMD_ID_SHIFT) |
Michael Chanceb7e1c2010-10-06 03:14:54 +00001389 BNX2X_HW_CID(cp, cid)));
Michael Chan68d7c1a2011-01-05 15:14:13 +00001390
1391 type_16 = (type << SPE_HDR_CONN_TYPE_SHIFT) & SPE_HDR_CONN_TYPE;
1392 type_16 |= (cp->pfid << SPE_HDR_FUNCTION_ID_SHIFT) &
1393 SPE_HDR_FUNCTION_ID;
1394
1395 kwqe.hdr.type = cpu_to_le16(type_16);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001396 kwqe.hdr.reserved1 = 0;
Michael Chan71034ba2009-10-10 13:46:59 +00001397 kwqe.data.phy_address.lo = cpu_to_le32(l5_data->phy_address.lo);
1398 kwqe.data.phy_address.hi = cpu_to_le32(l5_data->phy_address.hi);
1399
1400 kwq[0] = (struct kwqe_16 *) &kwqe;
1401
1402 spin_lock_bh(&cp->cnic_ulp_lock);
1403 ret = cp->ethdev->drv_submit_kwqes_16(dev->netdev, kwq, 1);
1404 spin_unlock_bh(&cp->cnic_ulp_lock);
1405
1406 if (ret == 1)
1407 return 0;
1408
Michael Chan23021c22012-01-04 12:12:28 +00001409 return ret;
Michael Chan71034ba2009-10-10 13:46:59 +00001410}
1411
1412static void cnic_reply_bnx2x_kcqes(struct cnic_dev *dev, int ulp_type,
1413 struct kcqe *cqes[], u32 num_cqes)
1414{
1415 struct cnic_local *cp = dev->cnic_priv;
1416 struct cnic_ulp_ops *ulp_ops;
1417
1418 rcu_read_lock();
1419 ulp_ops = rcu_dereference(cp->ulp_ops[ulp_type]);
1420 if (likely(ulp_ops)) {
1421 ulp_ops->indicate_kcqes(cp->ulp_handle[ulp_type],
1422 cqes, num_cqes);
1423 }
1424 rcu_read_unlock();
1425}
1426
1427static int cnic_bnx2x_iscsi_init1(struct cnic_dev *dev, struct kwqe *kwqe)
1428{
1429 struct cnic_local *cp = dev->cnic_priv;
1430 struct iscsi_kwqe_init1 *req1 = (struct iscsi_kwqe_init1 *) kwqe;
Michael Chan14203982010-10-06 03:16:06 +00001431 int hq_bds, pages;
1432 u32 pfid = cp->pfid;
Michael Chan71034ba2009-10-10 13:46:59 +00001433
1434 cp->num_iscsi_tasks = req1->num_tasks_per_conn;
1435 cp->num_ccells = req1->num_ccells_per_conn;
1436 cp->task_array_size = BNX2X_ISCSI_TASK_CONTEXT_SIZE *
1437 cp->num_iscsi_tasks;
1438 cp->r2tq_size = cp->num_iscsi_tasks * BNX2X_ISCSI_MAX_PENDING_R2TS *
1439 BNX2X_ISCSI_R2TQE_SIZE;
1440 cp->hq_size = cp->num_ccells * BNX2X_ISCSI_HQ_BD_SIZE;
1441 pages = PAGE_ALIGN(cp->hq_size) / PAGE_SIZE;
1442 hq_bds = pages * (PAGE_SIZE / BNX2X_ISCSI_HQ_BD_SIZE);
1443 cp->num_cqs = req1->num_cqs;
1444
1445 if (!dev->max_iscsi_conn)
1446 return 0;
1447
1448 /* init Tstorm RAM */
Michael Chan14203982010-10-06 03:16:06 +00001449 CNIC_WR16(dev, BAR_TSTRORM_INTMEM + TSTORM_ISCSI_RQ_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001450 req1->rq_num_wqes);
Michael Chan14203982010-10-06 03:16:06 +00001451 CNIC_WR16(dev, BAR_TSTRORM_INTMEM + TSTORM_ISCSI_PAGE_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001452 PAGE_SIZE);
1453 CNIC_WR8(dev, BAR_TSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001454 TSTORM_ISCSI_PAGE_SIZE_LOG_OFFSET(pfid), PAGE_SHIFT);
Michael Chan71034ba2009-10-10 13:46:59 +00001455 CNIC_WR16(dev, BAR_TSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001456 TSTORM_ISCSI_NUM_OF_TASKS_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001457 req1->num_tasks_per_conn);
1458
1459 /* init Ustorm RAM */
1460 CNIC_WR16(dev, BAR_USTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001461 USTORM_ISCSI_RQ_BUFFER_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001462 req1->rq_buffer_size);
Michael Chan14203982010-10-06 03:16:06 +00001463 CNIC_WR16(dev, BAR_USTRORM_INTMEM + USTORM_ISCSI_PAGE_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001464 PAGE_SIZE);
1465 CNIC_WR8(dev, BAR_USTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001466 USTORM_ISCSI_PAGE_SIZE_LOG_OFFSET(pfid), PAGE_SHIFT);
Michael Chan71034ba2009-10-10 13:46:59 +00001467 CNIC_WR16(dev, BAR_USTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001468 USTORM_ISCSI_NUM_OF_TASKS_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001469 req1->num_tasks_per_conn);
Michael Chan14203982010-10-06 03:16:06 +00001470 CNIC_WR16(dev, BAR_USTRORM_INTMEM + USTORM_ISCSI_RQ_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001471 req1->rq_num_wqes);
Michael Chan14203982010-10-06 03:16:06 +00001472 CNIC_WR16(dev, BAR_USTRORM_INTMEM + USTORM_ISCSI_CQ_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001473 req1->cq_num_wqes);
Michael Chan14203982010-10-06 03:16:06 +00001474 CNIC_WR16(dev, BAR_USTRORM_INTMEM + USTORM_ISCSI_R2TQ_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001475 cp->num_iscsi_tasks * BNX2X_ISCSI_MAX_PENDING_R2TS);
1476
1477 /* init Xstorm RAM */
Michael Chan14203982010-10-06 03:16:06 +00001478 CNIC_WR16(dev, BAR_XSTRORM_INTMEM + XSTORM_ISCSI_PAGE_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001479 PAGE_SIZE);
1480 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001481 XSTORM_ISCSI_PAGE_SIZE_LOG_OFFSET(pfid), PAGE_SHIFT);
Michael Chan71034ba2009-10-10 13:46:59 +00001482 CNIC_WR16(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001483 XSTORM_ISCSI_NUM_OF_TASKS_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001484 req1->num_tasks_per_conn);
Michael Chan14203982010-10-06 03:16:06 +00001485 CNIC_WR16(dev, BAR_XSTRORM_INTMEM + XSTORM_ISCSI_HQ_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001486 hq_bds);
Michael Chan14203982010-10-06 03:16:06 +00001487 CNIC_WR16(dev, BAR_XSTRORM_INTMEM + XSTORM_ISCSI_SQ_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001488 req1->num_tasks_per_conn);
Michael Chan14203982010-10-06 03:16:06 +00001489 CNIC_WR16(dev, BAR_XSTRORM_INTMEM + XSTORM_ISCSI_R2TQ_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001490 cp->num_iscsi_tasks * BNX2X_ISCSI_MAX_PENDING_R2TS);
1491
1492 /* init Cstorm RAM */
Michael Chan14203982010-10-06 03:16:06 +00001493 CNIC_WR16(dev, BAR_CSTRORM_INTMEM + CSTORM_ISCSI_PAGE_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001494 PAGE_SIZE);
1495 CNIC_WR8(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001496 CSTORM_ISCSI_PAGE_SIZE_LOG_OFFSET(pfid), PAGE_SHIFT);
Michael Chan71034ba2009-10-10 13:46:59 +00001497 CNIC_WR16(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001498 CSTORM_ISCSI_NUM_OF_TASKS_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001499 req1->num_tasks_per_conn);
Michael Chan14203982010-10-06 03:16:06 +00001500 CNIC_WR16(dev, BAR_CSTRORM_INTMEM + CSTORM_ISCSI_CQ_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001501 req1->cq_num_wqes);
Michael Chan14203982010-10-06 03:16:06 +00001502 CNIC_WR16(dev, BAR_CSTRORM_INTMEM + CSTORM_ISCSI_HQ_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001503 hq_bds);
1504
1505 return 0;
1506}
1507
1508static int cnic_bnx2x_iscsi_init2(struct cnic_dev *dev, struct kwqe *kwqe)
1509{
1510 struct iscsi_kwqe_init2 *req2 = (struct iscsi_kwqe_init2 *) kwqe;
1511 struct cnic_local *cp = dev->cnic_priv;
Michael Chan14203982010-10-06 03:16:06 +00001512 u32 pfid = cp->pfid;
Michael Chan71034ba2009-10-10 13:46:59 +00001513 struct iscsi_kcqe kcqe;
1514 struct kcqe *cqes[1];
1515
1516 memset(&kcqe, 0, sizeof(kcqe));
1517 if (!dev->max_iscsi_conn) {
1518 kcqe.completion_status =
1519 ISCSI_KCQE_COMPLETION_STATUS_ISCSI_NOT_SUPPORTED;
1520 goto done;
1521 }
1522
1523 CNIC_WR(dev, BAR_TSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001524 TSTORM_ISCSI_ERROR_BITMAP_OFFSET(pfid), req2->error_bit_map[0]);
Michael Chan71034ba2009-10-10 13:46:59 +00001525 CNIC_WR(dev, BAR_TSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001526 TSTORM_ISCSI_ERROR_BITMAP_OFFSET(pfid) + 4,
Michael Chan71034ba2009-10-10 13:46:59 +00001527 req2->error_bit_map[1]);
1528
1529 CNIC_WR16(dev, BAR_USTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001530 USTORM_ISCSI_CQ_SQN_SIZE_OFFSET(pfid), req2->max_cq_sqn);
Michael Chan71034ba2009-10-10 13:46:59 +00001531 CNIC_WR(dev, BAR_USTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001532 USTORM_ISCSI_ERROR_BITMAP_OFFSET(pfid), req2->error_bit_map[0]);
Michael Chan71034ba2009-10-10 13:46:59 +00001533 CNIC_WR(dev, BAR_USTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001534 USTORM_ISCSI_ERROR_BITMAP_OFFSET(pfid) + 4,
Michael Chan71034ba2009-10-10 13:46:59 +00001535 req2->error_bit_map[1]);
1536
1537 CNIC_WR16(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001538 CSTORM_ISCSI_CQ_SQN_SIZE_OFFSET(pfid), req2->max_cq_sqn);
Michael Chan71034ba2009-10-10 13:46:59 +00001539
1540 kcqe.completion_status = ISCSI_KCQE_COMPLETION_STATUS_SUCCESS;
1541
1542done:
1543 kcqe.op_code = ISCSI_KCQE_OPCODE_INIT;
1544 cqes[0] = (struct kcqe *) &kcqe;
1545 cnic_reply_bnx2x_kcqes(dev, CNIC_ULP_ISCSI, cqes, 1);
1546
1547 return 0;
1548}
1549
1550static void cnic_free_bnx2x_conn_resc(struct cnic_dev *dev, u32 l5_cid)
1551{
1552 struct cnic_local *cp = dev->cnic_priv;
1553 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
1554
1555 if (ctx->ulp_proto_id == CNIC_ULP_ISCSI) {
1556 struct cnic_iscsi *iscsi = ctx->proto.iscsi;
1557
1558 cnic_free_dma(dev, &iscsi->hq_info);
1559 cnic_free_dma(dev, &iscsi->r2tq_info);
1560 cnic_free_dma(dev, &iscsi->task_array_info);
Michael Chane1928c82010-12-23 07:43:04 +00001561 cnic_free_id(&cp->cid_tbl, ctx->cid);
1562 } else {
1563 cnic_free_id(&cp->fcoe_cid_tbl, ctx->cid);
Michael Chan71034ba2009-10-10 13:46:59 +00001564 }
Michael Chane1928c82010-12-23 07:43:04 +00001565
Michael Chan71034ba2009-10-10 13:46:59 +00001566 ctx->cid = 0;
1567}
1568
1569static int cnic_alloc_bnx2x_conn_resc(struct cnic_dev *dev, u32 l5_cid)
1570{
1571 u32 cid;
1572 int ret, pages;
1573 struct cnic_local *cp = dev->cnic_priv;
1574 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
1575 struct cnic_iscsi *iscsi = ctx->proto.iscsi;
1576
Michael Chane1928c82010-12-23 07:43:04 +00001577 if (ctx->ulp_proto_id == CNIC_ULP_FCOE) {
1578 cid = cnic_alloc_new_id(&cp->fcoe_cid_tbl);
1579 if (cid == -1) {
1580 ret = -ENOMEM;
1581 goto error;
1582 }
1583 ctx->cid = cid;
1584 return 0;
1585 }
1586
Michael Chan71034ba2009-10-10 13:46:59 +00001587 cid = cnic_alloc_new_id(&cp->cid_tbl);
1588 if (cid == -1) {
1589 ret = -ENOMEM;
1590 goto error;
1591 }
1592
1593 ctx->cid = cid;
1594 pages = PAGE_ALIGN(cp->task_array_size) / PAGE_SIZE;
1595
1596 ret = cnic_alloc_dma(dev, &iscsi->task_array_info, pages, 1);
1597 if (ret)
1598 goto error;
1599
1600 pages = PAGE_ALIGN(cp->r2tq_size) / PAGE_SIZE;
1601 ret = cnic_alloc_dma(dev, &iscsi->r2tq_info, pages, 1);
1602 if (ret)
1603 goto error;
1604
1605 pages = PAGE_ALIGN(cp->hq_size) / PAGE_SIZE;
1606 ret = cnic_alloc_dma(dev, &iscsi->hq_info, pages, 1);
1607 if (ret)
1608 goto error;
1609
1610 return 0;
1611
1612error:
1613 cnic_free_bnx2x_conn_resc(dev, l5_cid);
1614 return ret;
1615}
1616
1617static void *cnic_get_bnx2x_ctx(struct cnic_dev *dev, u32 cid, int init,
1618 struct regpair *ctx_addr)
1619{
1620 struct cnic_local *cp = dev->cnic_priv;
1621 struct cnic_eth_dev *ethdev = cp->ethdev;
1622 int blk = (cid - ethdev->starting_cid) / cp->cids_per_blk;
1623 int off = (cid - ethdev->starting_cid) % cp->cids_per_blk;
1624 unsigned long align_off = 0;
1625 dma_addr_t ctx_map;
1626 void *ctx;
1627
1628 if (cp->ctx_align) {
1629 unsigned long mask = cp->ctx_align - 1;
1630
1631 if (cp->ctx_arr[blk].mapping & mask)
1632 align_off = cp->ctx_align -
1633 (cp->ctx_arr[blk].mapping & mask);
1634 }
1635 ctx_map = cp->ctx_arr[blk].mapping + align_off +
1636 (off * BNX2X_CONTEXT_MEM_SIZE);
1637 ctx = cp->ctx_arr[blk].ctx + align_off +
1638 (off * BNX2X_CONTEXT_MEM_SIZE);
1639 if (init)
1640 memset(ctx, 0, BNX2X_CONTEXT_MEM_SIZE);
1641
1642 ctx_addr->lo = ctx_map & 0xffffffff;
1643 ctx_addr->hi = (u64) ctx_map >> 32;
1644 return ctx;
1645}
1646
1647static int cnic_setup_bnx2x_ctx(struct cnic_dev *dev, struct kwqe *wqes[],
1648 u32 num)
1649{
1650 struct cnic_local *cp = dev->cnic_priv;
1651 struct iscsi_kwqe_conn_offload1 *req1 =
1652 (struct iscsi_kwqe_conn_offload1 *) wqes[0];
1653 struct iscsi_kwqe_conn_offload2 *req2 =
1654 (struct iscsi_kwqe_conn_offload2 *) wqes[1];
1655 struct iscsi_kwqe_conn_offload3 *req3;
1656 struct cnic_context *ctx = &cp->ctx_tbl[req1->iscsi_conn_id];
1657 struct cnic_iscsi *iscsi = ctx->proto.iscsi;
1658 u32 cid = ctx->cid;
Michael Chanceb7e1c2010-10-06 03:14:54 +00001659 u32 hw_cid = BNX2X_HW_CID(cp, cid);
Michael Chan71034ba2009-10-10 13:46:59 +00001660 struct iscsi_context *ictx;
1661 struct regpair context_addr;
1662 int i, j, n = 2, n_max;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001663 u8 port = CNIC_PORT(cp);
Michael Chan71034ba2009-10-10 13:46:59 +00001664
1665 ctx->ctx_flags = 0;
1666 if (!req2->num_additional_wqes)
1667 return -EINVAL;
1668
1669 n_max = req2->num_additional_wqes + 2;
1670
1671 ictx = cnic_get_bnx2x_ctx(dev, cid, 1, &context_addr);
1672 if (ictx == NULL)
1673 return -ENOMEM;
1674
1675 req3 = (struct iscsi_kwqe_conn_offload3 *) wqes[n++];
1676
1677 ictx->xstorm_ag_context.hq_prod = 1;
1678
1679 ictx->xstorm_st_context.iscsi.first_burst_length =
1680 ISCSI_DEF_FIRST_BURST_LEN;
1681 ictx->xstorm_st_context.iscsi.max_send_pdu_length =
1682 ISCSI_DEF_MAX_RECV_SEG_LEN;
1683 ictx->xstorm_st_context.iscsi.sq_pbl_base.lo =
1684 req1->sq_page_table_addr_lo;
1685 ictx->xstorm_st_context.iscsi.sq_pbl_base.hi =
1686 req1->sq_page_table_addr_hi;
1687 ictx->xstorm_st_context.iscsi.sq_curr_pbe.lo = req2->sq_first_pte.hi;
1688 ictx->xstorm_st_context.iscsi.sq_curr_pbe.hi = req2->sq_first_pte.lo;
1689 ictx->xstorm_st_context.iscsi.hq_pbl_base.lo =
1690 iscsi->hq_info.pgtbl_map & 0xffffffff;
1691 ictx->xstorm_st_context.iscsi.hq_pbl_base.hi =
1692 (u64) iscsi->hq_info.pgtbl_map >> 32;
1693 ictx->xstorm_st_context.iscsi.hq_curr_pbe_base.lo =
1694 iscsi->hq_info.pgtbl[0];
1695 ictx->xstorm_st_context.iscsi.hq_curr_pbe_base.hi =
1696 iscsi->hq_info.pgtbl[1];
1697 ictx->xstorm_st_context.iscsi.r2tq_pbl_base.lo =
1698 iscsi->r2tq_info.pgtbl_map & 0xffffffff;
1699 ictx->xstorm_st_context.iscsi.r2tq_pbl_base.hi =
1700 (u64) iscsi->r2tq_info.pgtbl_map >> 32;
1701 ictx->xstorm_st_context.iscsi.r2tq_curr_pbe_base.lo =
1702 iscsi->r2tq_info.pgtbl[0];
1703 ictx->xstorm_st_context.iscsi.r2tq_curr_pbe_base.hi =
1704 iscsi->r2tq_info.pgtbl[1];
1705 ictx->xstorm_st_context.iscsi.task_pbl_base.lo =
1706 iscsi->task_array_info.pgtbl_map & 0xffffffff;
1707 ictx->xstorm_st_context.iscsi.task_pbl_base.hi =
1708 (u64) iscsi->task_array_info.pgtbl_map >> 32;
1709 ictx->xstorm_st_context.iscsi.task_pbl_cache_idx =
1710 BNX2X_ISCSI_PBL_NOT_CACHED;
1711 ictx->xstorm_st_context.iscsi.flags.flags |=
1712 XSTORM_ISCSI_CONTEXT_FLAGS_B_IMMEDIATE_DATA;
1713 ictx->xstorm_st_context.iscsi.flags.flags |=
1714 XSTORM_ISCSI_CONTEXT_FLAGS_B_INITIAL_R2T;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001715 ictx->xstorm_st_context.common.ethernet.reserved_vlan_type =
1716 ETH_P_8021Q;
1717 if (BNX2X_CHIP_IS_E2_PLUS(cp->chip_id) &&
1718 cp->port_mode == CHIP_2_PORT_MODE) {
1719
1720 port = 0;
1721 }
1722 ictx->xstorm_st_context.common.flags =
1723 1 << XSTORM_COMMON_CONTEXT_SECTION_PHYSQ_INITIALIZED_SHIFT;
1724 ictx->xstorm_st_context.common.flags =
1725 port << XSTORM_COMMON_CONTEXT_SECTION_PBF_PORT_SHIFT;
Michael Chan71034ba2009-10-10 13:46:59 +00001726
1727 ictx->tstorm_st_context.iscsi.hdr_bytes_2_fetch = ISCSI_HEADER_SIZE;
1728 /* TSTORM requires the base address of RQ DB & not PTE */
1729 ictx->tstorm_st_context.iscsi.rq_db_phy_addr.lo =
1730 req2->rq_page_table_addr_lo & PAGE_MASK;
1731 ictx->tstorm_st_context.iscsi.rq_db_phy_addr.hi =
1732 req2->rq_page_table_addr_hi;
1733 ictx->tstorm_st_context.iscsi.iscsi_conn_id = req1->iscsi_conn_id;
1734 ictx->tstorm_st_context.tcp.cwnd = 0x5A8;
1735 ictx->tstorm_st_context.tcp.flags2 |=
1736 TSTORM_TCP_ST_CONTEXT_SECTION_DA_EN;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001737 ictx->tstorm_st_context.tcp.ooo_support_mode =
1738 TCP_TSTORM_OOO_DROP_AND_PROC_ACK;
Michael Chan71034ba2009-10-10 13:46:59 +00001739
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001740 ictx->timers_context.flags |= TIMERS_BLOCK_CONTEXT_CONN_VALID_FLG;
Michael Chan71034ba2009-10-10 13:46:59 +00001741
1742 ictx->ustorm_st_context.ring.rq.pbl_base.lo =
Michael Chan15971c32009-12-02 15:15:38 +00001743 req2->rq_page_table_addr_lo;
Michael Chan71034ba2009-10-10 13:46:59 +00001744 ictx->ustorm_st_context.ring.rq.pbl_base.hi =
Michael Chan15971c32009-12-02 15:15:38 +00001745 req2->rq_page_table_addr_hi;
Michael Chan71034ba2009-10-10 13:46:59 +00001746 ictx->ustorm_st_context.ring.rq.curr_pbe.lo = req3->qp_first_pte[0].hi;
1747 ictx->ustorm_st_context.ring.rq.curr_pbe.hi = req3->qp_first_pte[0].lo;
1748 ictx->ustorm_st_context.ring.r2tq.pbl_base.lo =
1749 iscsi->r2tq_info.pgtbl_map & 0xffffffff;
1750 ictx->ustorm_st_context.ring.r2tq.pbl_base.hi =
1751 (u64) iscsi->r2tq_info.pgtbl_map >> 32;
1752 ictx->ustorm_st_context.ring.r2tq.curr_pbe.lo =
1753 iscsi->r2tq_info.pgtbl[0];
1754 ictx->ustorm_st_context.ring.r2tq.curr_pbe.hi =
1755 iscsi->r2tq_info.pgtbl[1];
1756 ictx->ustorm_st_context.ring.cq_pbl_base.lo =
1757 req1->cq_page_table_addr_lo;
1758 ictx->ustorm_st_context.ring.cq_pbl_base.hi =
1759 req1->cq_page_table_addr_hi;
1760 ictx->ustorm_st_context.ring.cq[0].cq_sn = ISCSI_INITIAL_SN;
1761 ictx->ustorm_st_context.ring.cq[0].curr_pbe.lo = req2->cq_first_pte.hi;
1762 ictx->ustorm_st_context.ring.cq[0].curr_pbe.hi = req2->cq_first_pte.lo;
1763 ictx->ustorm_st_context.task_pbe_cache_index =
1764 BNX2X_ISCSI_PBL_NOT_CACHED;
1765 ictx->ustorm_st_context.task_pdu_cache_index =
1766 BNX2X_ISCSI_PDU_HEADER_NOT_CACHED;
1767
1768 for (i = 1, j = 1; i < cp->num_cqs; i++, j++) {
1769 if (j == 3) {
1770 if (n >= n_max)
1771 break;
1772 req3 = (struct iscsi_kwqe_conn_offload3 *) wqes[n++];
1773 j = 0;
1774 }
1775 ictx->ustorm_st_context.ring.cq[i].cq_sn = ISCSI_INITIAL_SN;
1776 ictx->ustorm_st_context.ring.cq[i].curr_pbe.lo =
1777 req3->qp_first_pte[j].hi;
1778 ictx->ustorm_st_context.ring.cq[i].curr_pbe.hi =
1779 req3->qp_first_pte[j].lo;
1780 }
1781
1782 ictx->ustorm_st_context.task_pbl_base.lo =
1783 iscsi->task_array_info.pgtbl_map & 0xffffffff;
1784 ictx->ustorm_st_context.task_pbl_base.hi =
1785 (u64) iscsi->task_array_info.pgtbl_map >> 32;
1786 ictx->ustorm_st_context.tce_phy_addr.lo =
1787 iscsi->task_array_info.pgtbl[0];
1788 ictx->ustorm_st_context.tce_phy_addr.hi =
1789 iscsi->task_array_info.pgtbl[1];
1790 ictx->ustorm_st_context.iscsi_conn_id = req1->iscsi_conn_id;
1791 ictx->ustorm_st_context.num_cqs = cp->num_cqs;
1792 ictx->ustorm_st_context.negotiated_rx |= ISCSI_DEF_MAX_RECV_SEG_LEN;
1793 ictx->ustorm_st_context.negotiated_rx_and_flags |=
1794 ISCSI_DEF_MAX_BURST_LEN;
1795 ictx->ustorm_st_context.negotiated_rx |=
1796 ISCSI_DEFAULT_MAX_OUTSTANDING_R2T <<
1797 USTORM_ISCSI_ST_CONTEXT_MAX_OUTSTANDING_R2TS_SHIFT;
1798
1799 ictx->cstorm_st_context.hq_pbl_base.lo =
1800 iscsi->hq_info.pgtbl_map & 0xffffffff;
1801 ictx->cstorm_st_context.hq_pbl_base.hi =
1802 (u64) iscsi->hq_info.pgtbl_map >> 32;
1803 ictx->cstorm_st_context.hq_curr_pbe.lo = iscsi->hq_info.pgtbl[0];
1804 ictx->cstorm_st_context.hq_curr_pbe.hi = iscsi->hq_info.pgtbl[1];
1805 ictx->cstorm_st_context.task_pbl_base.lo =
1806 iscsi->task_array_info.pgtbl_map & 0xffffffff;
1807 ictx->cstorm_st_context.task_pbl_base.hi =
1808 (u64) iscsi->task_array_info.pgtbl_map >> 32;
1809 /* CSTORM and USTORM initialization is different, CSTORM requires
1810 * CQ DB base & not PTE addr */
1811 ictx->cstorm_st_context.cq_db_base.lo =
1812 req1->cq_page_table_addr_lo & PAGE_MASK;
1813 ictx->cstorm_st_context.cq_db_base.hi = req1->cq_page_table_addr_hi;
1814 ictx->cstorm_st_context.iscsi_conn_id = req1->iscsi_conn_id;
1815 ictx->cstorm_st_context.cq_proc_en_bit_map = (1 << cp->num_cqs) - 1;
1816 for (i = 0; i < cp->num_cqs; i++) {
1817 ictx->cstorm_st_context.cq_c_prod_sqn_arr.sqn[i] =
1818 ISCSI_INITIAL_SN;
1819 ictx->cstorm_st_context.cq_c_sqn_2_notify_arr.sqn[i] =
1820 ISCSI_INITIAL_SN;
1821 }
1822
1823 ictx->xstorm_ag_context.cdu_reserved =
1824 CDU_RSRVD_VALUE_TYPE_A(hw_cid, CDU_REGION_NUMBER_XCM_AG,
1825 ISCSI_CONNECTION_TYPE);
1826 ictx->ustorm_ag_context.cdu_usage =
1827 CDU_RSRVD_VALUE_TYPE_A(hw_cid, CDU_REGION_NUMBER_UCM_AG,
1828 ISCSI_CONNECTION_TYPE);
1829 return 0;
1830
1831}
1832
1833static int cnic_bnx2x_iscsi_ofld1(struct cnic_dev *dev, struct kwqe *wqes[],
1834 u32 num, int *work)
1835{
1836 struct iscsi_kwqe_conn_offload1 *req1;
1837 struct iscsi_kwqe_conn_offload2 *req2;
1838 struct cnic_local *cp = dev->cnic_priv;
Michael Chanfdf24082010-10-13 14:06:47 +00001839 struct cnic_context *ctx;
Michael Chan71034ba2009-10-10 13:46:59 +00001840 struct iscsi_kcqe kcqe;
1841 struct kcqe *cqes[1];
1842 u32 l5_cid;
Michael Chanfdf24082010-10-13 14:06:47 +00001843 int ret = 0;
Michael Chan71034ba2009-10-10 13:46:59 +00001844
1845 if (num < 2) {
1846 *work = num;
1847 return -EINVAL;
1848 }
1849
1850 req1 = (struct iscsi_kwqe_conn_offload1 *) wqes[0];
1851 req2 = (struct iscsi_kwqe_conn_offload2 *) wqes[1];
1852 if ((num - 2) < req2->num_additional_wqes) {
1853 *work = num;
1854 return -EINVAL;
1855 }
Joe Perches779bb412010-11-14 17:04:37 +00001856 *work = 2 + req2->num_additional_wqes;
Michael Chan71034ba2009-10-10 13:46:59 +00001857
1858 l5_cid = req1->iscsi_conn_id;
1859 if (l5_cid >= MAX_ISCSI_TBL_SZ)
1860 return -EINVAL;
1861
1862 memset(&kcqe, 0, sizeof(kcqe));
1863 kcqe.op_code = ISCSI_KCQE_OPCODE_OFFLOAD_CONN;
1864 kcqe.iscsi_conn_id = l5_cid;
1865 kcqe.completion_status = ISCSI_KCQE_COMPLETION_STATUS_CTX_ALLOC_FAILURE;
1866
Michael Chanfdf24082010-10-13 14:06:47 +00001867 ctx = &cp->ctx_tbl[l5_cid];
1868 if (test_bit(CTX_FL_OFFLD_START, &ctx->ctx_flags)) {
1869 kcqe.completion_status =
1870 ISCSI_KCQE_COMPLETION_STATUS_CID_BUSY;
1871 goto done;
1872 }
1873
Michael Chan71034ba2009-10-10 13:46:59 +00001874 if (atomic_inc_return(&cp->iscsi_conn) > dev->max_iscsi_conn) {
1875 atomic_dec(&cp->iscsi_conn);
Michael Chan71034ba2009-10-10 13:46:59 +00001876 goto done;
1877 }
1878 ret = cnic_alloc_bnx2x_conn_resc(dev, l5_cid);
1879 if (ret) {
1880 atomic_dec(&cp->iscsi_conn);
1881 ret = 0;
1882 goto done;
1883 }
1884 ret = cnic_setup_bnx2x_ctx(dev, wqes, num);
1885 if (ret < 0) {
1886 cnic_free_bnx2x_conn_resc(dev, l5_cid);
1887 atomic_dec(&cp->iscsi_conn);
1888 goto done;
1889 }
1890
1891 kcqe.completion_status = ISCSI_KCQE_COMPLETION_STATUS_SUCCESS;
Michael Chanceb7e1c2010-10-06 03:14:54 +00001892 kcqe.iscsi_conn_context_id = BNX2X_HW_CID(cp, cp->ctx_tbl[l5_cid].cid);
Michael Chan71034ba2009-10-10 13:46:59 +00001893
1894done:
1895 cqes[0] = (struct kcqe *) &kcqe;
1896 cnic_reply_bnx2x_kcqes(dev, CNIC_ULP_ISCSI, cqes, 1);
Michael Chan23021c22012-01-04 12:12:28 +00001897 return 0;
Michael Chan71034ba2009-10-10 13:46:59 +00001898}
1899
1900
1901static int cnic_bnx2x_iscsi_update(struct cnic_dev *dev, struct kwqe *kwqe)
1902{
1903 struct cnic_local *cp = dev->cnic_priv;
1904 struct iscsi_kwqe_conn_update *req =
1905 (struct iscsi_kwqe_conn_update *) kwqe;
1906 void *data;
1907 union l5cm_specific_data l5_data;
1908 u32 l5_cid, cid = BNX2X_SW_CID(req->context_id);
1909 int ret;
1910
1911 if (cnic_get_l5_cid(cp, cid, &l5_cid) != 0)
1912 return -EINVAL;
1913
1914 data = cnic_get_kwqe_16_data(cp, l5_cid, &l5_data);
1915 if (!data)
1916 return -ENOMEM;
1917
1918 memcpy(data, kwqe, sizeof(struct kwqe));
1919
1920 ret = cnic_submit_kwqe_16(dev, ISCSI_RAMROD_CMD_ID_UPDATE_CONN,
1921 req->context_id, ISCSI_CONNECTION_TYPE, &l5_data);
1922 return ret;
1923}
1924
Michael Chana2c9e762010-10-13 14:06:46 +00001925static int cnic_bnx2x_destroy_ramrod(struct cnic_dev *dev, u32 l5_cid)
Michael Chan71034ba2009-10-10 13:46:59 +00001926{
1927 struct cnic_local *cp = dev->cnic_priv;
Michael Chan71034ba2009-10-10 13:46:59 +00001928 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
Michael Chana2c9e762010-10-13 14:06:46 +00001929 union l5cm_specific_data l5_data;
1930 int ret;
Michael Chan68d7c1a2011-01-05 15:14:13 +00001931 u32 hw_cid;
Michael Chan71034ba2009-10-10 13:46:59 +00001932
Michael Chan71034ba2009-10-10 13:46:59 +00001933 init_waitqueue_head(&ctx->waitq);
1934 ctx->wait_cond = 0;
1935 memset(&l5_data, 0, sizeof(l5_data));
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001936 hw_cid = BNX2X_HW_CID(cp, ctx->cid);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001937
1938 ret = cnic_submit_kwqe_16(dev, RAMROD_CMD_ID_COMMON_CFC_DEL,
Michael Chan68d7c1a2011-01-05 15:14:13 +00001939 hw_cid, NONE_CONNECTION_TYPE, &l5_data);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001940
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001941 if (ret == 0) {
Michael Chandcc7e3a2011-08-26 09:45:40 +00001942 wait_event_timeout(ctx->waitq, ctx->wait_cond, CNIC_RAMROD_TMO);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001943 if (unlikely(test_bit(CTX_FL_CID_ERROR, &ctx->ctx_flags)))
1944 return -EBUSY;
1945 }
Michael Chan71034ba2009-10-10 13:46:59 +00001946
Michael Chandcc7e3a2011-08-26 09:45:40 +00001947 return 0;
Michael Chana2c9e762010-10-13 14:06:46 +00001948}
1949
1950static int cnic_bnx2x_iscsi_destroy(struct cnic_dev *dev, struct kwqe *kwqe)
1951{
1952 struct cnic_local *cp = dev->cnic_priv;
1953 struct iscsi_kwqe_conn_destroy *req =
1954 (struct iscsi_kwqe_conn_destroy *) kwqe;
1955 u32 l5_cid = req->reserved0;
1956 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
1957 int ret = 0;
1958 struct iscsi_kcqe kcqe;
1959 struct kcqe *cqes[1];
1960
1961 if (!test_bit(CTX_FL_OFFLD_START, &ctx->ctx_flags))
1962 goto skip_cfc_delete;
1963
Michael Chanfdf24082010-10-13 14:06:47 +00001964 if (!time_after(jiffies, ctx->timestamp + (2 * HZ))) {
1965 unsigned long delta = ctx->timestamp + (2 * HZ) - jiffies;
1966
1967 if (delta > (2 * HZ))
1968 delta = 0;
1969
1970 set_bit(CTX_FL_DELETE_WAIT, &ctx->ctx_flags);
1971 queue_delayed_work(cnic_wq, &cp->delete_task, delta);
1972 goto destroy_reply;
1973 }
Michael Chana2c9e762010-10-13 14:06:46 +00001974
1975 ret = cnic_bnx2x_destroy_ramrod(dev, l5_cid);
1976
Michael Chan71034ba2009-10-10 13:46:59 +00001977skip_cfc_delete:
1978 cnic_free_bnx2x_conn_resc(dev, l5_cid);
1979
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001980 if (!ret) {
1981 atomic_dec(&cp->iscsi_conn);
1982 clear_bit(CTX_FL_OFFLD_START, &ctx->ctx_flags);
1983 }
Michael Chan71034ba2009-10-10 13:46:59 +00001984
Michael Chanfdf24082010-10-13 14:06:47 +00001985destroy_reply:
Michael Chan71034ba2009-10-10 13:46:59 +00001986 memset(&kcqe, 0, sizeof(kcqe));
1987 kcqe.op_code = ISCSI_KCQE_OPCODE_DESTROY_CONN;
1988 kcqe.iscsi_conn_id = l5_cid;
1989 kcqe.completion_status = ISCSI_KCQE_COMPLETION_STATUS_SUCCESS;
1990 kcqe.iscsi_conn_context_id = req->context_id;
1991
1992 cqes[0] = (struct kcqe *) &kcqe;
1993 cnic_reply_bnx2x_kcqes(dev, CNIC_ULP_ISCSI, cqes, 1);
1994
Michael Chan23021c22012-01-04 12:12:28 +00001995 return 0;
Michael Chan71034ba2009-10-10 13:46:59 +00001996}
1997
1998static void cnic_init_storm_conn_bufs(struct cnic_dev *dev,
1999 struct l4_kwq_connect_req1 *kwqe1,
2000 struct l4_kwq_connect_req3 *kwqe3,
2001 struct l5cm_active_conn_buffer *conn_buf)
2002{
2003 struct l5cm_conn_addr_params *conn_addr = &conn_buf->conn_addr_buf;
2004 struct l5cm_xstorm_conn_buffer *xstorm_buf =
2005 &conn_buf->xstorm_conn_buffer;
2006 struct l5cm_tstorm_conn_buffer *tstorm_buf =
2007 &conn_buf->tstorm_conn_buffer;
2008 struct regpair context_addr;
2009 u32 cid = BNX2X_SW_CID(kwqe1->cid);
2010 struct in6_addr src_ip, dst_ip;
2011 int i;
2012 u32 *addrp;
2013
2014 addrp = (u32 *) &conn_addr->local_ip_addr;
2015 for (i = 0; i < 4; i++, addrp++)
2016 src_ip.in6_u.u6_addr32[i] = cpu_to_be32(*addrp);
2017
2018 addrp = (u32 *) &conn_addr->remote_ip_addr;
2019 for (i = 0; i < 4; i++, addrp++)
2020 dst_ip.in6_u.u6_addr32[i] = cpu_to_be32(*addrp);
2021
2022 cnic_get_bnx2x_ctx(dev, cid, 0, &context_addr);
2023
2024 xstorm_buf->context_addr.hi = context_addr.hi;
2025 xstorm_buf->context_addr.lo = context_addr.lo;
2026 xstorm_buf->mss = 0xffff;
2027 xstorm_buf->rcv_buf = kwqe3->rcv_buf;
2028 if (kwqe1->tcp_flags & L4_KWQ_CONNECT_REQ1_NAGLE_ENABLE)
2029 xstorm_buf->params |= L5CM_XSTORM_CONN_BUFFER_NAGLE_ENABLE;
2030 xstorm_buf->pseudo_header_checksum =
2031 swab16(~csum_ipv6_magic(&src_ip, &dst_ip, 0, IPPROTO_TCP, 0));
2032
2033 if (!(kwqe1->tcp_flags & L4_KWQ_CONNECT_REQ1_NO_DELAY_ACK))
2034 tstorm_buf->params |=
2035 L5CM_TSTORM_CONN_BUFFER_DELAYED_ACK_ENABLE;
2036 if (kwqe3->ka_timeout) {
2037 tstorm_buf->ka_enable = 1;
2038 tstorm_buf->ka_timeout = kwqe3->ka_timeout;
2039 tstorm_buf->ka_interval = kwqe3->ka_interval;
2040 tstorm_buf->ka_max_probe_count = kwqe3->ka_max_probe_count;
2041 }
Michael Chan71034ba2009-10-10 13:46:59 +00002042 tstorm_buf->max_rt_time = 0xffffffff;
2043}
2044
2045static void cnic_init_bnx2x_mac(struct cnic_dev *dev)
2046{
2047 struct cnic_local *cp = dev->cnic_priv;
Michael Chan14203982010-10-06 03:16:06 +00002048 u32 pfid = cp->pfid;
Michael Chan71034ba2009-10-10 13:46:59 +00002049 u8 *mac = dev->mac_addr;
2050
2051 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00002052 XSTORM_ISCSI_LOCAL_MAC_ADDR0_OFFSET(pfid), mac[0]);
Michael Chan71034ba2009-10-10 13:46:59 +00002053 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00002054 XSTORM_ISCSI_LOCAL_MAC_ADDR1_OFFSET(pfid), mac[1]);
Michael Chan71034ba2009-10-10 13:46:59 +00002055 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00002056 XSTORM_ISCSI_LOCAL_MAC_ADDR2_OFFSET(pfid), mac[2]);
Michael Chan71034ba2009-10-10 13:46:59 +00002057 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00002058 XSTORM_ISCSI_LOCAL_MAC_ADDR3_OFFSET(pfid), mac[3]);
Michael Chan71034ba2009-10-10 13:46:59 +00002059 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00002060 XSTORM_ISCSI_LOCAL_MAC_ADDR4_OFFSET(pfid), mac[4]);
Michael Chan71034ba2009-10-10 13:46:59 +00002061 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00002062 XSTORM_ISCSI_LOCAL_MAC_ADDR5_OFFSET(pfid), mac[5]);
Michael Chan71034ba2009-10-10 13:46:59 +00002063
2064 CNIC_WR8(dev, BAR_TSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00002065 TSTORM_ISCSI_TCP_VARS_LSB_LOCAL_MAC_ADDR_OFFSET(pfid), mac[5]);
Michael Chan71034ba2009-10-10 13:46:59 +00002066 CNIC_WR8(dev, BAR_TSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00002067 TSTORM_ISCSI_TCP_VARS_LSB_LOCAL_MAC_ADDR_OFFSET(pfid) + 1,
Michael Chan71034ba2009-10-10 13:46:59 +00002068 mac[4]);
2069 CNIC_WR8(dev, BAR_TSTRORM_INTMEM +
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03002070 TSTORM_ISCSI_TCP_VARS_MID_LOCAL_MAC_ADDR_OFFSET(pfid), mac[3]);
Michael Chan71034ba2009-10-10 13:46:59 +00002071 CNIC_WR8(dev, BAR_TSTRORM_INTMEM +
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03002072 TSTORM_ISCSI_TCP_VARS_MID_LOCAL_MAC_ADDR_OFFSET(pfid) + 1,
Michael Chan71034ba2009-10-10 13:46:59 +00002073 mac[2]);
2074 CNIC_WR8(dev, BAR_TSTRORM_INTMEM +
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03002075 TSTORM_ISCSI_TCP_VARS_MSB_LOCAL_MAC_ADDR_OFFSET(pfid), mac[1]);
Michael Chan71034ba2009-10-10 13:46:59 +00002076 CNIC_WR8(dev, BAR_TSTRORM_INTMEM +
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03002077 TSTORM_ISCSI_TCP_VARS_MSB_LOCAL_MAC_ADDR_OFFSET(pfid) + 1,
Michael Chan71034ba2009-10-10 13:46:59 +00002078 mac[0]);
2079}
2080
2081static void cnic_bnx2x_set_tcp_timestamp(struct cnic_dev *dev, int tcp_ts)
2082{
2083 struct cnic_local *cp = dev->cnic_priv;
2084 u8 xstorm_flags = XSTORM_L5CM_TCP_FLAGS_WND_SCL_EN;
2085 u16 tstorm_flags = 0;
2086
2087 if (tcp_ts) {
2088 xstorm_flags |= XSTORM_L5CM_TCP_FLAGS_TS_ENABLED;
2089 tstorm_flags |= TSTORM_L5CM_TCP_FLAGS_TS_ENABLED;
2090 }
2091
2092 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00002093 XSTORM_ISCSI_TCP_VARS_FLAGS_OFFSET(cp->pfid), xstorm_flags);
Michael Chan71034ba2009-10-10 13:46:59 +00002094
2095 CNIC_WR16(dev, BAR_TSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00002096 TSTORM_ISCSI_TCP_VARS_FLAGS_OFFSET(cp->pfid), tstorm_flags);
Michael Chan71034ba2009-10-10 13:46:59 +00002097}
2098
2099static int cnic_bnx2x_connect(struct cnic_dev *dev, struct kwqe *wqes[],
2100 u32 num, int *work)
2101{
2102 struct cnic_local *cp = dev->cnic_priv;
2103 struct l4_kwq_connect_req1 *kwqe1 =
2104 (struct l4_kwq_connect_req1 *) wqes[0];
2105 struct l4_kwq_connect_req3 *kwqe3;
2106 struct l5cm_active_conn_buffer *conn_buf;
2107 struct l5cm_conn_addr_params *conn_addr;
2108 union l5cm_specific_data l5_data;
2109 u32 l5_cid = kwqe1->pg_cid;
2110 struct cnic_sock *csk = &cp->csk_tbl[l5_cid];
2111 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
2112 int ret;
2113
2114 if (num < 2) {
2115 *work = num;
2116 return -EINVAL;
2117 }
2118
2119 if (kwqe1->conn_flags & L4_KWQ_CONNECT_REQ1_IP_V6)
2120 *work = 3;
2121 else
2122 *work = 2;
2123
2124 if (num < *work) {
2125 *work = num;
2126 return -EINVAL;
2127 }
2128
2129 if (sizeof(*conn_buf) > CNIC_KWQ16_DATA_SIZE) {
Joe Perchesddf79b22010-02-17 15:01:54 +00002130 netdev_err(dev->netdev, "conn_buf size too big\n");
Michael Chan71034ba2009-10-10 13:46:59 +00002131 return -ENOMEM;
2132 }
2133 conn_buf = cnic_get_kwqe_16_data(cp, l5_cid, &l5_data);
2134 if (!conn_buf)
2135 return -ENOMEM;
2136
2137 memset(conn_buf, 0, sizeof(*conn_buf));
2138
2139 conn_addr = &conn_buf->conn_addr_buf;
2140 conn_addr->remote_addr_0 = csk->ha[0];
2141 conn_addr->remote_addr_1 = csk->ha[1];
2142 conn_addr->remote_addr_2 = csk->ha[2];
2143 conn_addr->remote_addr_3 = csk->ha[3];
2144 conn_addr->remote_addr_4 = csk->ha[4];
2145 conn_addr->remote_addr_5 = csk->ha[5];
2146
2147 if (kwqe1->conn_flags & L4_KWQ_CONNECT_REQ1_IP_V6) {
2148 struct l4_kwq_connect_req2 *kwqe2 =
2149 (struct l4_kwq_connect_req2 *) wqes[1];
2150
2151 conn_addr->local_ip_addr.ip_addr_hi_hi = kwqe2->src_ip_v6_4;
2152 conn_addr->local_ip_addr.ip_addr_hi_lo = kwqe2->src_ip_v6_3;
2153 conn_addr->local_ip_addr.ip_addr_lo_hi = kwqe2->src_ip_v6_2;
2154
2155 conn_addr->remote_ip_addr.ip_addr_hi_hi = kwqe2->dst_ip_v6_4;
2156 conn_addr->remote_ip_addr.ip_addr_hi_lo = kwqe2->dst_ip_v6_3;
2157 conn_addr->remote_ip_addr.ip_addr_lo_hi = kwqe2->dst_ip_v6_2;
2158 conn_addr->params |= L5CM_CONN_ADDR_PARAMS_IP_VERSION;
2159 }
2160 kwqe3 = (struct l4_kwq_connect_req3 *) wqes[*work - 1];
2161
2162 conn_addr->local_ip_addr.ip_addr_lo_lo = kwqe1->src_ip;
2163 conn_addr->remote_ip_addr.ip_addr_lo_lo = kwqe1->dst_ip;
2164 conn_addr->local_tcp_port = kwqe1->src_port;
2165 conn_addr->remote_tcp_port = kwqe1->dst_port;
2166
2167 conn_addr->pmtu = kwqe3->pmtu;
2168 cnic_init_storm_conn_bufs(dev, kwqe1, kwqe3, conn_buf);
2169
2170 CNIC_WR16(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00002171 XSTORM_ISCSI_LOCAL_VLAN_OFFSET(cp->pfid), csk->vlan_id);
Michael Chan71034ba2009-10-10 13:46:59 +00002172
2173 cnic_bnx2x_set_tcp_timestamp(dev,
2174 kwqe1->tcp_flags & L4_KWQ_CONNECT_REQ1_TIME_STAMP);
2175
2176 ret = cnic_submit_kwqe_16(dev, L5CM_RAMROD_CMD_ID_TCP_CONNECT,
2177 kwqe1->cid, ISCSI_CONNECTION_TYPE, &l5_data);
2178 if (!ret)
Michael Chan6e0dda02010-10-13 14:06:45 +00002179 set_bit(CTX_FL_OFFLD_START, &ctx->ctx_flags);
Michael Chan71034ba2009-10-10 13:46:59 +00002180
2181 return ret;
2182}
2183
2184static int cnic_bnx2x_close(struct cnic_dev *dev, struct kwqe *kwqe)
2185{
2186 struct l4_kwq_close_req *req = (struct l4_kwq_close_req *) kwqe;
2187 union l5cm_specific_data l5_data;
2188 int ret;
2189
2190 memset(&l5_data, 0, sizeof(l5_data));
2191 ret = cnic_submit_kwqe_16(dev, L5CM_RAMROD_CMD_ID_CLOSE,
2192 req->cid, ISCSI_CONNECTION_TYPE, &l5_data);
2193 return ret;
2194}
2195
2196static int cnic_bnx2x_reset(struct cnic_dev *dev, struct kwqe *kwqe)
2197{
2198 struct l4_kwq_reset_req *req = (struct l4_kwq_reset_req *) kwqe;
2199 union l5cm_specific_data l5_data;
2200 int ret;
2201
2202 memset(&l5_data, 0, sizeof(l5_data));
2203 ret = cnic_submit_kwqe_16(dev, L5CM_RAMROD_CMD_ID_ABORT,
2204 req->cid, ISCSI_CONNECTION_TYPE, &l5_data);
2205 return ret;
2206}
2207static int cnic_bnx2x_offload_pg(struct cnic_dev *dev, struct kwqe *kwqe)
2208{
2209 struct l4_kwq_offload_pg *req = (struct l4_kwq_offload_pg *) kwqe;
2210 struct l4_kcq kcqe;
2211 struct kcqe *cqes[1];
2212
2213 memset(&kcqe, 0, sizeof(kcqe));
2214 kcqe.pg_host_opaque = req->host_opaque;
2215 kcqe.pg_cid = req->host_opaque;
2216 kcqe.op_code = L4_KCQE_OPCODE_VALUE_OFFLOAD_PG;
2217 cqes[0] = (struct kcqe *) &kcqe;
2218 cnic_reply_bnx2x_kcqes(dev, CNIC_ULP_L4, cqes, 1);
2219 return 0;
2220}
2221
2222static int cnic_bnx2x_update_pg(struct cnic_dev *dev, struct kwqe *kwqe)
2223{
2224 struct l4_kwq_update_pg *req = (struct l4_kwq_update_pg *) kwqe;
2225 struct l4_kcq kcqe;
2226 struct kcqe *cqes[1];
2227
2228 memset(&kcqe, 0, sizeof(kcqe));
2229 kcqe.pg_host_opaque = req->pg_host_opaque;
2230 kcqe.pg_cid = req->pg_cid;
2231 kcqe.op_code = L4_KCQE_OPCODE_VALUE_UPDATE_PG;
2232 cqes[0] = (struct kcqe *) &kcqe;
2233 cnic_reply_bnx2x_kcqes(dev, CNIC_ULP_L4, cqes, 1);
2234 return 0;
2235}
2236
Michael Chane1928c82010-12-23 07:43:04 +00002237static int cnic_bnx2x_fcoe_stat(struct cnic_dev *dev, struct kwqe *kwqe)
2238{
2239 struct fcoe_kwqe_stat *req;
2240 struct fcoe_stat_ramrod_params *fcoe_stat;
2241 union l5cm_specific_data l5_data;
2242 struct cnic_local *cp = dev->cnic_priv;
2243 int ret;
2244 u32 cid;
2245
2246 req = (struct fcoe_kwqe_stat *) kwqe;
2247 cid = BNX2X_HW_CID(cp, cp->fcoe_init_cid);
2248
2249 fcoe_stat = cnic_get_kwqe_16_data(cp, BNX2X_FCOE_L5_CID_BASE, &l5_data);
2250 if (!fcoe_stat)
2251 return -ENOMEM;
2252
2253 memset(fcoe_stat, 0, sizeof(*fcoe_stat));
2254 memcpy(&fcoe_stat->stat_kwqe, req, sizeof(*req));
2255
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03002256 ret = cnic_submit_kwqe_16(dev, FCOE_RAMROD_CMD_ID_STAT_FUNC, cid,
Michael Chane1928c82010-12-23 07:43:04 +00002257 FCOE_CONNECTION_TYPE, &l5_data);
2258 return ret;
2259}
2260
2261static int cnic_bnx2x_fcoe_init1(struct cnic_dev *dev, struct kwqe *wqes[],
2262 u32 num, int *work)
2263{
2264 int ret;
2265 struct cnic_local *cp = dev->cnic_priv;
2266 u32 cid;
2267 struct fcoe_init_ramrod_params *fcoe_init;
2268 struct fcoe_kwqe_init1 *req1;
2269 struct fcoe_kwqe_init2 *req2;
2270 struct fcoe_kwqe_init3 *req3;
2271 union l5cm_specific_data l5_data;
2272
2273 if (num < 3) {
2274 *work = num;
2275 return -EINVAL;
2276 }
2277 req1 = (struct fcoe_kwqe_init1 *) wqes[0];
2278 req2 = (struct fcoe_kwqe_init2 *) wqes[1];
2279 req3 = (struct fcoe_kwqe_init3 *) wqes[2];
2280 if (req2->hdr.op_code != FCOE_KWQE_OPCODE_INIT2) {
2281 *work = 1;
2282 return -EINVAL;
2283 }
2284 if (req3->hdr.op_code != FCOE_KWQE_OPCODE_INIT3) {
2285 *work = 2;
2286 return -EINVAL;
2287 }
2288
2289 if (sizeof(*fcoe_init) > CNIC_KWQ16_DATA_SIZE) {
2290 netdev_err(dev->netdev, "fcoe_init size too big\n");
2291 return -ENOMEM;
2292 }
2293 fcoe_init = cnic_get_kwqe_16_data(cp, BNX2X_FCOE_L5_CID_BASE, &l5_data);
2294 if (!fcoe_init)
2295 return -ENOMEM;
2296
2297 memset(fcoe_init, 0, sizeof(*fcoe_init));
2298 memcpy(&fcoe_init->init_kwqe1, req1, sizeof(*req1));
2299 memcpy(&fcoe_init->init_kwqe2, req2, sizeof(*req2));
2300 memcpy(&fcoe_init->init_kwqe3, req3, sizeof(*req3));
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03002301 fcoe_init->eq_pbl_base.lo = cp->kcq2.dma.pgtbl_map & 0xffffffff;
2302 fcoe_init->eq_pbl_base.hi = (u64) cp->kcq2.dma.pgtbl_map >> 32;
2303 fcoe_init->eq_pbl_size = cp->kcq2.dma.num_pages;
Michael Chane1928c82010-12-23 07:43:04 +00002304
2305 fcoe_init->sb_num = cp->status_blk_num;
2306 fcoe_init->eq_prod = MAX_KCQ_IDX;
2307 fcoe_init->sb_id = HC_INDEX_FCOE_EQ_CONS;
2308 cp->kcq2.sw_prod_idx = 0;
2309
2310 cid = BNX2X_HW_CID(cp, cp->fcoe_init_cid);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03002311 ret = cnic_submit_kwqe_16(dev, FCOE_RAMROD_CMD_ID_INIT_FUNC, cid,
Michael Chane1928c82010-12-23 07:43:04 +00002312 FCOE_CONNECTION_TYPE, &l5_data);
2313 *work = 3;
2314 return ret;
2315}
2316
2317static int cnic_bnx2x_fcoe_ofld1(struct cnic_dev *dev, struct kwqe *wqes[],
2318 u32 num, int *work)
2319{
2320 int ret = 0;
2321 u32 cid = -1, l5_cid;
2322 struct cnic_local *cp = dev->cnic_priv;
2323 struct fcoe_kwqe_conn_offload1 *req1;
2324 struct fcoe_kwqe_conn_offload2 *req2;
2325 struct fcoe_kwqe_conn_offload3 *req3;
2326 struct fcoe_kwqe_conn_offload4 *req4;
2327 struct fcoe_conn_offload_ramrod_params *fcoe_offload;
2328 struct cnic_context *ctx;
2329 struct fcoe_context *fctx;
2330 struct regpair ctx_addr;
2331 union l5cm_specific_data l5_data;
2332 struct fcoe_kcqe kcqe;
2333 struct kcqe *cqes[1];
2334
2335 if (num < 4) {
2336 *work = num;
2337 return -EINVAL;
2338 }
2339 req1 = (struct fcoe_kwqe_conn_offload1 *) wqes[0];
2340 req2 = (struct fcoe_kwqe_conn_offload2 *) wqes[1];
2341 req3 = (struct fcoe_kwqe_conn_offload3 *) wqes[2];
2342 req4 = (struct fcoe_kwqe_conn_offload4 *) wqes[3];
2343
2344 *work = 4;
2345
2346 l5_cid = req1->fcoe_conn_id;
Michael Chandc219a22011-08-26 09:45:39 +00002347 if (l5_cid >= dev->max_fcoe_conn)
Michael Chane1928c82010-12-23 07:43:04 +00002348 goto err_reply;
2349
2350 l5_cid += BNX2X_FCOE_L5_CID_BASE;
2351
2352 ctx = &cp->ctx_tbl[l5_cid];
2353 if (test_bit(CTX_FL_OFFLD_START, &ctx->ctx_flags))
2354 goto err_reply;
2355
2356 ret = cnic_alloc_bnx2x_conn_resc(dev, l5_cid);
2357 if (ret) {
2358 ret = 0;
2359 goto err_reply;
2360 }
2361 cid = ctx->cid;
2362
2363 fctx = cnic_get_bnx2x_ctx(dev, cid, 1, &ctx_addr);
2364 if (fctx) {
2365 u32 hw_cid = BNX2X_HW_CID(cp, cid);
2366 u32 val;
2367
2368 val = CDU_RSRVD_VALUE_TYPE_A(hw_cid, CDU_REGION_NUMBER_XCM_AG,
2369 FCOE_CONNECTION_TYPE);
2370 fctx->xstorm_ag_context.cdu_reserved = val;
2371 val = CDU_RSRVD_VALUE_TYPE_A(hw_cid, CDU_REGION_NUMBER_UCM_AG,
2372 FCOE_CONNECTION_TYPE);
2373 fctx->ustorm_ag_context.cdu_usage = val;
2374 }
2375 if (sizeof(*fcoe_offload) > CNIC_KWQ16_DATA_SIZE) {
2376 netdev_err(dev->netdev, "fcoe_offload size too big\n");
2377 goto err_reply;
2378 }
2379 fcoe_offload = cnic_get_kwqe_16_data(cp, l5_cid, &l5_data);
2380 if (!fcoe_offload)
2381 goto err_reply;
2382
2383 memset(fcoe_offload, 0, sizeof(*fcoe_offload));
2384 memcpy(&fcoe_offload->offload_kwqe1, req1, sizeof(*req1));
2385 memcpy(&fcoe_offload->offload_kwqe2, req2, sizeof(*req2));
2386 memcpy(&fcoe_offload->offload_kwqe3, req3, sizeof(*req3));
2387 memcpy(&fcoe_offload->offload_kwqe4, req4, sizeof(*req4));
2388
2389 cid = BNX2X_HW_CID(cp, cid);
2390 ret = cnic_submit_kwqe_16(dev, FCOE_RAMROD_CMD_ID_OFFLOAD_CONN, cid,
2391 FCOE_CONNECTION_TYPE, &l5_data);
2392 if (!ret)
2393 set_bit(CTX_FL_OFFLD_START, &ctx->ctx_flags);
2394
2395 return ret;
2396
2397err_reply:
2398 if (cid != -1)
2399 cnic_free_bnx2x_conn_resc(dev, l5_cid);
2400
2401 memset(&kcqe, 0, sizeof(kcqe));
2402 kcqe.op_code = FCOE_KCQE_OPCODE_OFFLOAD_CONN;
2403 kcqe.fcoe_conn_id = req1->fcoe_conn_id;
2404 kcqe.completion_status = FCOE_KCQE_COMPLETION_STATUS_CTX_ALLOC_FAILURE;
2405
2406 cqes[0] = (struct kcqe *) &kcqe;
2407 cnic_reply_bnx2x_kcqes(dev, CNIC_ULP_FCOE, cqes, 1);
2408 return ret;
2409}
2410
2411static int cnic_bnx2x_fcoe_enable(struct cnic_dev *dev, struct kwqe *kwqe)
2412{
2413 struct fcoe_kwqe_conn_enable_disable *req;
2414 struct fcoe_conn_enable_disable_ramrod_params *fcoe_enable;
2415 union l5cm_specific_data l5_data;
2416 int ret;
2417 u32 cid, l5_cid;
2418 struct cnic_local *cp = dev->cnic_priv;
2419
2420 req = (struct fcoe_kwqe_conn_enable_disable *) kwqe;
2421 cid = req->context_id;
2422 l5_cid = req->conn_id + BNX2X_FCOE_L5_CID_BASE;
2423
2424 if (sizeof(*fcoe_enable) > CNIC_KWQ16_DATA_SIZE) {
2425 netdev_err(dev->netdev, "fcoe_enable size too big\n");
2426 return -ENOMEM;
2427 }
2428 fcoe_enable = cnic_get_kwqe_16_data(cp, l5_cid, &l5_data);
2429 if (!fcoe_enable)
2430 return -ENOMEM;
2431
2432 memset(fcoe_enable, 0, sizeof(*fcoe_enable));
2433 memcpy(&fcoe_enable->enable_disable_kwqe, req, sizeof(*req));
2434 ret = cnic_submit_kwqe_16(dev, FCOE_RAMROD_CMD_ID_ENABLE_CONN, cid,
2435 FCOE_CONNECTION_TYPE, &l5_data);
2436 return ret;
2437}
2438
2439static int cnic_bnx2x_fcoe_disable(struct cnic_dev *dev, struct kwqe *kwqe)
2440{
2441 struct fcoe_kwqe_conn_enable_disable *req;
2442 struct fcoe_conn_enable_disable_ramrod_params *fcoe_disable;
2443 union l5cm_specific_data l5_data;
2444 int ret;
2445 u32 cid, l5_cid;
2446 struct cnic_local *cp = dev->cnic_priv;
2447
2448 req = (struct fcoe_kwqe_conn_enable_disable *) kwqe;
2449 cid = req->context_id;
2450 l5_cid = req->conn_id;
Michael Chandc219a22011-08-26 09:45:39 +00002451 if (l5_cid >= dev->max_fcoe_conn)
Michael Chane1928c82010-12-23 07:43:04 +00002452 return -EINVAL;
2453
2454 l5_cid += BNX2X_FCOE_L5_CID_BASE;
2455
2456 if (sizeof(*fcoe_disable) > CNIC_KWQ16_DATA_SIZE) {
2457 netdev_err(dev->netdev, "fcoe_disable size too big\n");
2458 return -ENOMEM;
2459 }
2460 fcoe_disable = cnic_get_kwqe_16_data(cp, l5_cid, &l5_data);
2461 if (!fcoe_disable)
2462 return -ENOMEM;
2463
2464 memset(fcoe_disable, 0, sizeof(*fcoe_disable));
2465 memcpy(&fcoe_disable->enable_disable_kwqe, req, sizeof(*req));
2466 ret = cnic_submit_kwqe_16(dev, FCOE_RAMROD_CMD_ID_DISABLE_CONN, cid,
2467 FCOE_CONNECTION_TYPE, &l5_data);
2468 return ret;
2469}
2470
2471static int cnic_bnx2x_fcoe_destroy(struct cnic_dev *dev, struct kwqe *kwqe)
2472{
2473 struct fcoe_kwqe_conn_destroy *req;
2474 union l5cm_specific_data l5_data;
2475 int ret;
2476 u32 cid, l5_cid;
2477 struct cnic_local *cp = dev->cnic_priv;
2478 struct cnic_context *ctx;
2479 struct fcoe_kcqe kcqe;
2480 struct kcqe *cqes[1];
2481
2482 req = (struct fcoe_kwqe_conn_destroy *) kwqe;
2483 cid = req->context_id;
2484 l5_cid = req->conn_id;
Michael Chandc219a22011-08-26 09:45:39 +00002485 if (l5_cid >= dev->max_fcoe_conn)
Michael Chane1928c82010-12-23 07:43:04 +00002486 return -EINVAL;
2487
2488 l5_cid += BNX2X_FCOE_L5_CID_BASE;
2489
2490 ctx = &cp->ctx_tbl[l5_cid];
2491
2492 init_waitqueue_head(&ctx->waitq);
2493 ctx->wait_cond = 0;
2494
Michael Chandcc7e3a2011-08-26 09:45:40 +00002495 memset(&kcqe, 0, sizeof(kcqe));
2496 kcqe.completion_status = FCOE_KCQE_COMPLETION_STATUS_ERROR;
Michael Chane1928c82010-12-23 07:43:04 +00002497 memset(&l5_data, 0, sizeof(l5_data));
2498 ret = cnic_submit_kwqe_16(dev, FCOE_RAMROD_CMD_ID_TERMINATE_CONN, cid,
2499 FCOE_CONNECTION_TYPE, &l5_data);
2500 if (ret == 0) {
Michael Chandcc7e3a2011-08-26 09:45:40 +00002501 wait_event_timeout(ctx->waitq, ctx->wait_cond, CNIC_RAMROD_TMO);
2502 if (ctx->wait_cond)
2503 kcqe.completion_status = 0;
Michael Chane1928c82010-12-23 07:43:04 +00002504 }
2505
Michael Chandcc7e3a2011-08-26 09:45:40 +00002506 set_bit(CTX_FL_DELETE_WAIT, &ctx->ctx_flags);
2507 queue_delayed_work(cnic_wq, &cp->delete_task, msecs_to_jiffies(2000));
2508
Michael Chane1928c82010-12-23 07:43:04 +00002509 kcqe.op_code = FCOE_KCQE_OPCODE_DESTROY_CONN;
2510 kcqe.fcoe_conn_id = req->conn_id;
2511 kcqe.fcoe_conn_context_id = cid;
2512
2513 cqes[0] = (struct kcqe *) &kcqe;
2514 cnic_reply_bnx2x_kcqes(dev, CNIC_ULP_FCOE, cqes, 1);
2515 return ret;
2516}
2517
Michael Chan74e49bb2011-07-20 14:55:23 +00002518static void cnic_bnx2x_delete_wait(struct cnic_dev *dev, u32 start_cid)
2519{
2520 struct cnic_local *cp = dev->cnic_priv;
2521 u32 i;
2522
2523 for (i = start_cid; i < cp->max_cid_space; i++) {
2524 struct cnic_context *ctx = &cp->ctx_tbl[i];
2525 int j;
2526
2527 while (test_bit(CTX_FL_DELETE_WAIT, &ctx->ctx_flags))
2528 msleep(10);
2529
2530 for (j = 0; j < 5; j++) {
2531 if (!test_bit(CTX_FL_OFFLD_START, &ctx->ctx_flags))
2532 break;
2533 msleep(20);
2534 }
2535
2536 if (test_bit(CTX_FL_OFFLD_START, &ctx->ctx_flags))
2537 netdev_warn(dev->netdev, "CID %x not deleted\n",
2538 ctx->cid);
2539 }
2540}
2541
Michael Chane1928c82010-12-23 07:43:04 +00002542static int cnic_bnx2x_fcoe_fw_destroy(struct cnic_dev *dev, struct kwqe *kwqe)
2543{
2544 struct fcoe_kwqe_destroy *req;
2545 union l5cm_specific_data l5_data;
2546 struct cnic_local *cp = dev->cnic_priv;
2547 int ret;
2548 u32 cid;
2549
Michael Chan74e49bb2011-07-20 14:55:23 +00002550 cnic_bnx2x_delete_wait(dev, MAX_ISCSI_TBL_SZ);
2551
Michael Chane1928c82010-12-23 07:43:04 +00002552 req = (struct fcoe_kwqe_destroy *) kwqe;
2553 cid = BNX2X_HW_CID(cp, cp->fcoe_init_cid);
2554
2555 memset(&l5_data, 0, sizeof(l5_data));
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03002556 ret = cnic_submit_kwqe_16(dev, FCOE_RAMROD_CMD_ID_DESTROY_FUNC, cid,
Michael Chane1928c82010-12-23 07:43:04 +00002557 FCOE_CONNECTION_TYPE, &l5_data);
2558 return ret;
2559}
2560
Michael Chan23021c22012-01-04 12:12:28 +00002561static void cnic_bnx2x_kwqe_err(struct cnic_dev *dev, struct kwqe *kwqe)
2562{
2563 struct cnic_local *cp = dev->cnic_priv;
2564 struct kcqe kcqe;
2565 struct kcqe *cqes[1];
2566 u32 cid;
2567 u32 opcode = KWQE_OPCODE(kwqe->kwqe_op_flag);
2568 u32 layer_code = kwqe->kwqe_op_flag & KWQE_LAYER_MASK;
Michael Chan3238a9b2012-02-05 15:24:40 +00002569 u32 kcqe_op;
Michael Chan23021c22012-01-04 12:12:28 +00002570 int ulp_type;
2571
2572 cid = kwqe->kwqe_info0;
2573 memset(&kcqe, 0, sizeof(kcqe));
2574
Michael Chan3238a9b2012-02-05 15:24:40 +00002575 if (layer_code == KWQE_FLAGS_LAYER_MASK_L5_FCOE) {
2576 u32 l5_cid = 0;
2577
2578 ulp_type = CNIC_ULP_FCOE;
2579 if (opcode == FCOE_KWQE_OPCODE_DISABLE_CONN) {
2580 struct fcoe_kwqe_conn_enable_disable *req;
2581
2582 req = (struct fcoe_kwqe_conn_enable_disable *) kwqe;
2583 kcqe_op = FCOE_KCQE_OPCODE_DISABLE_CONN;
2584 cid = req->context_id;
2585 l5_cid = req->conn_id;
2586 } else if (opcode == FCOE_KWQE_OPCODE_DESTROY) {
2587 kcqe_op = FCOE_KCQE_OPCODE_DESTROY_FUNC;
2588 } else {
2589 return;
2590 }
2591 kcqe.kcqe_op_flag = kcqe_op << KCQE_FLAGS_OPCODE_SHIFT;
2592 kcqe.kcqe_op_flag |= KCQE_FLAGS_LAYER_MASK_L5_FCOE;
Michael Chan8ec3e702012-03-21 15:38:34 +00002593 kcqe.kcqe_info1 = FCOE_KCQE_COMPLETION_STATUS_PARITY_ERROR;
Michael Chan3238a9b2012-02-05 15:24:40 +00002594 kcqe.kcqe_info2 = cid;
2595 kcqe.kcqe_info0 = l5_cid;
2596
2597 } else if (layer_code == KWQE_FLAGS_LAYER_MASK_L5_ISCSI) {
Michael Chan23021c22012-01-04 12:12:28 +00002598 ulp_type = CNIC_ULP_ISCSI;
2599 if (opcode == ISCSI_KWQE_OPCODE_UPDATE_CONN)
2600 cid = kwqe->kwqe_info1;
2601
2602 kcqe.kcqe_op_flag = (opcode + 0x10) << KCQE_FLAGS_OPCODE_SHIFT;
2603 kcqe.kcqe_op_flag |= KCQE_FLAGS_LAYER_MASK_L5_ISCSI;
Michael Chan8ec3e702012-03-21 15:38:34 +00002604 kcqe.kcqe_info1 = ISCSI_KCQE_COMPLETION_STATUS_PARITY_ERR;
Michael Chan23021c22012-01-04 12:12:28 +00002605 kcqe.kcqe_info2 = cid;
2606 cnic_get_l5_cid(cp, BNX2X_SW_CID(cid), &kcqe.kcqe_info0);
2607
2608 } else if (layer_code == KWQE_FLAGS_LAYER_MASK_L4) {
2609 struct l4_kcq *l4kcqe = (struct l4_kcq *) &kcqe;
Michael Chan23021c22012-01-04 12:12:28 +00002610
2611 ulp_type = CNIC_ULP_L4;
2612 if (opcode == L4_KWQE_OPCODE_VALUE_CONNECT1)
2613 kcqe_op = L4_KCQE_OPCODE_VALUE_CONNECT_COMPLETE;
2614 else if (opcode == L4_KWQE_OPCODE_VALUE_RESET)
2615 kcqe_op = L4_KCQE_OPCODE_VALUE_RESET_COMP;
2616 else if (opcode == L4_KWQE_OPCODE_VALUE_CLOSE)
2617 kcqe_op = L4_KCQE_OPCODE_VALUE_CLOSE_COMP;
2618 else
2619 return;
2620
2621 kcqe.kcqe_op_flag = (kcqe_op << KCQE_FLAGS_OPCODE_SHIFT) |
2622 KCQE_FLAGS_LAYER_MASK_L4;
Michael Chan8ec3e702012-03-21 15:38:34 +00002623 l4kcqe->status = L4_KCQE_COMPLETION_STATUS_PARITY_ERROR;
Michael Chan23021c22012-01-04 12:12:28 +00002624 l4kcqe->cid = cid;
2625 cnic_get_l5_cid(cp, BNX2X_SW_CID(cid), &l4kcqe->conn_id);
2626 } else {
2627 return;
2628 }
2629
Joe Perches64699332012-06-04 12:44:16 +00002630 cqes[0] = &kcqe;
Michael Chan23021c22012-01-04 12:12:28 +00002631 cnic_reply_bnx2x_kcqes(dev, ulp_type, cqes, 1);
2632}
2633
Michael Chane1928c82010-12-23 07:43:04 +00002634static int cnic_submit_bnx2x_iscsi_kwqes(struct cnic_dev *dev,
2635 struct kwqe *wqes[], u32 num_wqes)
Michael Chan71034ba2009-10-10 13:46:59 +00002636{
2637 int i, work, ret;
2638 u32 opcode;
2639 struct kwqe *kwqe;
2640
2641 if (!test_bit(CNIC_F_CNIC_UP, &dev->flags))
2642 return -EAGAIN; /* bnx2 is down */
2643
2644 for (i = 0; i < num_wqes; ) {
2645 kwqe = wqes[i];
2646 opcode = KWQE_OPCODE(kwqe->kwqe_op_flag);
2647 work = 1;
2648
2649 switch (opcode) {
2650 case ISCSI_KWQE_OPCODE_INIT1:
2651 ret = cnic_bnx2x_iscsi_init1(dev, kwqe);
2652 break;
2653 case ISCSI_KWQE_OPCODE_INIT2:
2654 ret = cnic_bnx2x_iscsi_init2(dev, kwqe);
2655 break;
2656 case ISCSI_KWQE_OPCODE_OFFLOAD_CONN1:
2657 ret = cnic_bnx2x_iscsi_ofld1(dev, &wqes[i],
2658 num_wqes - i, &work);
2659 break;
2660 case ISCSI_KWQE_OPCODE_UPDATE_CONN:
2661 ret = cnic_bnx2x_iscsi_update(dev, kwqe);
2662 break;
2663 case ISCSI_KWQE_OPCODE_DESTROY_CONN:
2664 ret = cnic_bnx2x_iscsi_destroy(dev, kwqe);
2665 break;
2666 case L4_KWQE_OPCODE_VALUE_CONNECT1:
2667 ret = cnic_bnx2x_connect(dev, &wqes[i], num_wqes - i,
2668 &work);
2669 break;
2670 case L4_KWQE_OPCODE_VALUE_CLOSE:
2671 ret = cnic_bnx2x_close(dev, kwqe);
2672 break;
2673 case L4_KWQE_OPCODE_VALUE_RESET:
2674 ret = cnic_bnx2x_reset(dev, kwqe);
2675 break;
2676 case L4_KWQE_OPCODE_VALUE_OFFLOAD_PG:
2677 ret = cnic_bnx2x_offload_pg(dev, kwqe);
2678 break;
2679 case L4_KWQE_OPCODE_VALUE_UPDATE_PG:
2680 ret = cnic_bnx2x_update_pg(dev, kwqe);
2681 break;
2682 case L4_KWQE_OPCODE_VALUE_UPLOAD_PG:
2683 ret = 0;
2684 break;
2685 default:
2686 ret = 0;
Joe Perchesddf79b22010-02-17 15:01:54 +00002687 netdev_err(dev->netdev, "Unknown type of KWQE(0x%x)\n",
2688 opcode);
Michael Chan71034ba2009-10-10 13:46:59 +00002689 break;
2690 }
Michael Chan23021c22012-01-04 12:12:28 +00002691 if (ret < 0) {
Joe Perchesddf79b22010-02-17 15:01:54 +00002692 netdev_err(dev->netdev, "KWQE(0x%x) failed\n",
2693 opcode);
Michael Chan23021c22012-01-04 12:12:28 +00002694
2695 /* Possibly bnx2x parity error, send completion
2696 * to ulp drivers with error code to speed up
2697 * cleanup and reset recovery.
2698 */
2699 if (ret == -EIO || ret == -EAGAIN)
2700 cnic_bnx2x_kwqe_err(dev, kwqe);
2701 }
Michael Chan71034ba2009-10-10 13:46:59 +00002702 i += work;
2703 }
2704 return 0;
2705}
2706
Michael Chane1928c82010-12-23 07:43:04 +00002707static int cnic_submit_bnx2x_fcoe_kwqes(struct cnic_dev *dev,
2708 struct kwqe *wqes[], u32 num_wqes)
2709{
2710 struct cnic_local *cp = dev->cnic_priv;
2711 int i, work, ret;
2712 u32 opcode;
2713 struct kwqe *kwqe;
2714
2715 if (!test_bit(CNIC_F_CNIC_UP, &dev->flags))
2716 return -EAGAIN; /* bnx2 is down */
2717
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03002718 if (!BNX2X_CHIP_IS_E2_PLUS(cp->chip_id))
Michael Chane1928c82010-12-23 07:43:04 +00002719 return -EINVAL;
2720
2721 for (i = 0; i < num_wqes; ) {
2722 kwqe = wqes[i];
2723 opcode = KWQE_OPCODE(kwqe->kwqe_op_flag);
2724 work = 1;
2725
2726 switch (opcode) {
2727 case FCOE_KWQE_OPCODE_INIT1:
2728 ret = cnic_bnx2x_fcoe_init1(dev, &wqes[i],
2729 num_wqes - i, &work);
2730 break;
2731 case FCOE_KWQE_OPCODE_OFFLOAD_CONN1:
2732 ret = cnic_bnx2x_fcoe_ofld1(dev, &wqes[i],
2733 num_wqes - i, &work);
2734 break;
2735 case FCOE_KWQE_OPCODE_ENABLE_CONN:
2736 ret = cnic_bnx2x_fcoe_enable(dev, kwqe);
2737 break;
2738 case FCOE_KWQE_OPCODE_DISABLE_CONN:
2739 ret = cnic_bnx2x_fcoe_disable(dev, kwqe);
2740 break;
2741 case FCOE_KWQE_OPCODE_DESTROY_CONN:
2742 ret = cnic_bnx2x_fcoe_destroy(dev, kwqe);
2743 break;
2744 case FCOE_KWQE_OPCODE_DESTROY:
2745 ret = cnic_bnx2x_fcoe_fw_destroy(dev, kwqe);
2746 break;
2747 case FCOE_KWQE_OPCODE_STAT:
2748 ret = cnic_bnx2x_fcoe_stat(dev, kwqe);
2749 break;
2750 default:
2751 ret = 0;
2752 netdev_err(dev->netdev, "Unknown type of KWQE(0x%x)\n",
2753 opcode);
2754 break;
2755 }
Michael Chan3238a9b2012-02-05 15:24:40 +00002756 if (ret < 0) {
Michael Chane1928c82010-12-23 07:43:04 +00002757 netdev_err(dev->netdev, "KWQE(0x%x) failed\n",
2758 opcode);
Michael Chan3238a9b2012-02-05 15:24:40 +00002759
2760 /* Possibly bnx2x parity error, send completion
2761 * to ulp drivers with error code to speed up
2762 * cleanup and reset recovery.
2763 */
2764 if (ret == -EIO || ret == -EAGAIN)
2765 cnic_bnx2x_kwqe_err(dev, kwqe);
2766 }
Michael Chane1928c82010-12-23 07:43:04 +00002767 i += work;
2768 }
2769 return 0;
2770}
2771
2772static int cnic_submit_bnx2x_kwqes(struct cnic_dev *dev, struct kwqe *wqes[],
2773 u32 num_wqes)
2774{
2775 int ret = -EINVAL;
2776 u32 layer_code;
2777
2778 if (!test_bit(CNIC_F_CNIC_UP, &dev->flags))
2779 return -EAGAIN; /* bnx2x is down */
2780
2781 if (!num_wqes)
2782 return 0;
2783
2784 layer_code = wqes[0]->kwqe_op_flag & KWQE_LAYER_MASK;
2785 switch (layer_code) {
2786 case KWQE_FLAGS_LAYER_MASK_L5_ISCSI:
2787 case KWQE_FLAGS_LAYER_MASK_L4:
2788 case KWQE_FLAGS_LAYER_MASK_L2:
2789 ret = cnic_submit_bnx2x_iscsi_kwqes(dev, wqes, num_wqes);
2790 break;
2791
2792 case KWQE_FLAGS_LAYER_MASK_L5_FCOE:
2793 ret = cnic_submit_bnx2x_fcoe_kwqes(dev, wqes, num_wqes);
2794 break;
2795 }
2796 return ret;
2797}
2798
2799static inline u32 cnic_get_kcqe_layer_mask(u32 opflag)
2800{
2801 if (unlikely(KCQE_OPCODE(opflag) == FCOE_RAMROD_CMD_ID_TERMINATE_CONN))
2802 return KCQE_FLAGS_LAYER_MASK_L4;
2803
2804 return opflag & KCQE_FLAGS_LAYER_MASK;
2805}
2806
Michael Chana4636962009-06-08 18:14:43 -07002807static void service_kcqes(struct cnic_dev *dev, int num_cqes)
2808{
2809 struct cnic_local *cp = dev->cnic_priv;
Dmitry Kravkovc2bff632010-10-06 03:33:18 +00002810 int i, j, comp = 0;
Michael Chana4636962009-06-08 18:14:43 -07002811
2812 i = 0;
2813 j = 1;
2814 while (num_cqes) {
2815 struct cnic_ulp_ops *ulp_ops;
2816 int ulp_type;
2817 u32 kcqe_op_flag = cp->completed_kcq[i]->kcqe_op_flag;
Michael Chane1928c82010-12-23 07:43:04 +00002818 u32 kcqe_layer = cnic_get_kcqe_layer_mask(kcqe_op_flag);
Michael Chana4636962009-06-08 18:14:43 -07002819
2820 if (unlikely(kcqe_op_flag & KCQE_RAMROD_COMPLETION))
Dmitry Kravkovc2bff632010-10-06 03:33:18 +00002821 comp++;
Michael Chana4636962009-06-08 18:14:43 -07002822
2823 while (j < num_cqes) {
2824 u32 next_op = cp->completed_kcq[i + j]->kcqe_op_flag;
2825
Michael Chane1928c82010-12-23 07:43:04 +00002826 if (cnic_get_kcqe_layer_mask(next_op) != kcqe_layer)
Michael Chana4636962009-06-08 18:14:43 -07002827 break;
2828
2829 if (unlikely(next_op & KCQE_RAMROD_COMPLETION))
Dmitry Kravkovc2bff632010-10-06 03:33:18 +00002830 comp++;
Michael Chana4636962009-06-08 18:14:43 -07002831 j++;
2832 }
2833
2834 if (kcqe_layer == KCQE_FLAGS_LAYER_MASK_L5_RDMA)
2835 ulp_type = CNIC_ULP_RDMA;
2836 else if (kcqe_layer == KCQE_FLAGS_LAYER_MASK_L5_ISCSI)
2837 ulp_type = CNIC_ULP_ISCSI;
Michael Chane1928c82010-12-23 07:43:04 +00002838 else if (kcqe_layer == KCQE_FLAGS_LAYER_MASK_L5_FCOE)
2839 ulp_type = CNIC_ULP_FCOE;
Michael Chana4636962009-06-08 18:14:43 -07002840 else if (kcqe_layer == KCQE_FLAGS_LAYER_MASK_L4)
2841 ulp_type = CNIC_ULP_L4;
2842 else if (kcqe_layer == KCQE_FLAGS_LAYER_MASK_L2)
2843 goto end;
2844 else {
Joe Perchesddf79b22010-02-17 15:01:54 +00002845 netdev_err(dev->netdev, "Unknown type of KCQE(0x%x)\n",
2846 kcqe_op_flag);
Michael Chana4636962009-06-08 18:14:43 -07002847 goto end;
2848 }
2849
2850 rcu_read_lock();
2851 ulp_ops = rcu_dereference(cp->ulp_ops[ulp_type]);
2852 if (likely(ulp_ops)) {
2853 ulp_ops->indicate_kcqes(cp->ulp_handle[ulp_type],
2854 cp->completed_kcq + i, j);
2855 }
2856 rcu_read_unlock();
2857end:
2858 num_cqes -= j;
2859 i += j;
2860 j = 1;
2861 }
Dmitry Kravkovc2bff632010-10-06 03:33:18 +00002862 if (unlikely(comp))
2863 cnic_spq_completion(dev, DRV_CTL_RET_L5_SPQ_CREDIT_CMD, comp);
Michael Chana4636962009-06-08 18:14:43 -07002864}
2865
Michael Chan644b9d42010-06-24 14:58:40 +00002866static int cnic_get_kcqes(struct cnic_dev *dev, struct kcq_info *info)
Michael Chana4636962009-06-08 18:14:43 -07002867{
2868 struct cnic_local *cp = dev->cnic_priv;
Michael Chan644b9d42010-06-24 14:58:40 +00002869 u16 i, ri, hw_prod, last;
Michael Chana4636962009-06-08 18:14:43 -07002870 struct kcqe *kcqe;
2871 int kcqe_cnt = 0, last_cnt = 0;
2872
Michael Chan644b9d42010-06-24 14:58:40 +00002873 i = ri = last = info->sw_prod_idx;
Michael Chana4636962009-06-08 18:14:43 -07002874 ri &= MAX_KCQ_IDX;
Michael Chan644b9d42010-06-24 14:58:40 +00002875 hw_prod = *info->hw_prod_idx_ptr;
Michael Chan59e51372011-06-14 01:32:38 +00002876 hw_prod = info->hw_idx(hw_prod);
Michael Chana4636962009-06-08 18:14:43 -07002877
2878 while ((i != hw_prod) && (kcqe_cnt < MAX_COMPLETED_KCQE)) {
Michael Chan644b9d42010-06-24 14:58:40 +00002879 kcqe = &info->kcq[KCQ_PG(ri)][KCQ_IDX(ri)];
Michael Chana4636962009-06-08 18:14:43 -07002880 cp->completed_kcq[kcqe_cnt++] = kcqe;
Michael Chan59e51372011-06-14 01:32:38 +00002881 i = info->next_idx(i);
Michael Chana4636962009-06-08 18:14:43 -07002882 ri = i & MAX_KCQ_IDX;
2883 if (likely(!(kcqe->kcqe_op_flag & KCQE_FLAGS_NEXT))) {
2884 last_cnt = kcqe_cnt;
2885 last = i;
2886 }
2887 }
2888
Michael Chan644b9d42010-06-24 14:58:40 +00002889 info->sw_prod_idx = last;
Michael Chana4636962009-06-08 18:14:43 -07002890 return last_cnt;
2891}
2892
Michael Chan48f753d2010-05-18 11:32:53 +00002893static int cnic_l2_completion(struct cnic_local *cp)
2894{
2895 u16 hw_cons, sw_cons;
Michael Chancd801532010-10-13 14:06:49 +00002896 struct cnic_uio_dev *udev = cp->udev;
Michael Chan48f753d2010-05-18 11:32:53 +00002897 union eth_rx_cqe *cqe, *cqe_ring = (union eth_rx_cqe *)
Michael Chancd801532010-10-13 14:06:49 +00002898 (udev->l2_ring + (2 * BCM_PAGE_SIZE));
Michael Chan48f753d2010-05-18 11:32:53 +00002899 u32 cmd;
2900 int comp = 0;
2901
2902 if (!test_bit(CNIC_F_BNX2X_CLASS, &cp->dev->flags))
2903 return 0;
2904
2905 hw_cons = *cp->rx_cons_ptr;
2906 if ((hw_cons & BNX2X_MAX_RCQ_DESC_CNT) == BNX2X_MAX_RCQ_DESC_CNT)
2907 hw_cons++;
2908
2909 sw_cons = cp->rx_cons;
2910 while (sw_cons != hw_cons) {
2911 u8 cqe_fp_flags;
2912
2913 cqe = &cqe_ring[sw_cons & BNX2X_MAX_RCQ_DESC_CNT];
2914 cqe_fp_flags = cqe->fast_path_cqe.type_error_flags;
2915 if (cqe_fp_flags & ETH_FAST_PATH_RX_CQE_TYPE) {
2916 cmd = le32_to_cpu(cqe->ramrod_cqe.conn_and_cmd_data);
2917 cmd >>= COMMON_RAMROD_ETH_RX_CQE_CMD_ID_SHIFT;
2918 if (cmd == RAMROD_CMD_ID_ETH_CLIENT_SETUP ||
2919 cmd == RAMROD_CMD_ID_ETH_HALT)
2920 comp++;
2921 }
2922 sw_cons = BNX2X_NEXT_RCQE(sw_cons);
2923 }
2924 return comp;
2925}
2926
Michael Chan86b53602009-10-10 13:46:57 +00002927static void cnic_chk_pkt_rings(struct cnic_local *cp)
Michael Chana4636962009-06-08 18:14:43 -07002928{
Michael Chan541a7812010-10-06 03:17:22 +00002929 u16 rx_cons, tx_cons;
Michael Chan48f753d2010-05-18 11:32:53 +00002930 int comp = 0;
Michael Chana4636962009-06-08 18:14:43 -07002931
Michael Chan541a7812010-10-06 03:17:22 +00002932 if (!test_bit(CNIC_LCL_FL_RINGS_INITED, &cp->cnic_local_flags))
Michael Chan66fee9e2010-06-24 14:58:38 +00002933 return;
2934
Michael Chan541a7812010-10-06 03:17:22 +00002935 rx_cons = *cp->rx_cons_ptr;
2936 tx_cons = *cp->tx_cons_ptr;
Michael Chana4636962009-06-08 18:14:43 -07002937 if (cp->tx_cons != tx_cons || cp->rx_cons != rx_cons) {
Michael Chan48f753d2010-05-18 11:32:53 +00002938 if (test_bit(CNIC_LCL_FL_L2_WAIT, &cp->cnic_local_flags))
2939 comp = cnic_l2_completion(cp);
2940
Michael Chana4636962009-06-08 18:14:43 -07002941 cp->tx_cons = tx_cons;
2942 cp->rx_cons = rx_cons;
Michael Chan71034ba2009-10-10 13:46:59 +00002943
Michael Chancd801532010-10-13 14:06:49 +00002944 if (cp->udev)
2945 uio_event_notify(&cp->udev->cnic_uinfo);
Michael Chana4636962009-06-08 18:14:43 -07002946 }
Michael Chan48f753d2010-05-18 11:32:53 +00002947 if (comp)
2948 clear_bit(CNIC_LCL_FL_L2_WAIT, &cp->cnic_local_flags);
Michael Chana4636962009-06-08 18:14:43 -07002949}
2950
Michael Chanb177a5d52010-06-24 14:58:41 +00002951static u32 cnic_service_bnx2_queues(struct cnic_dev *dev)
Michael Chana4636962009-06-08 18:14:43 -07002952{
Michael Chana4636962009-06-08 18:14:43 -07002953 struct cnic_local *cp = dev->cnic_priv;
Michael Chanb177a5d52010-06-24 14:58:41 +00002954 u32 status_idx = (u16) *cp->kcq1.status_idx_ptr;
Michael Chana4636962009-06-08 18:14:43 -07002955 int kcqe_cnt;
2956
Michael Chan107c3f42011-03-02 13:00:49 +00002957 /* status block index must be read before reading other fields */
2958 rmb();
Michael Chana4636962009-06-08 18:14:43 -07002959 cp->kwq_con_idx = *cp->kwq_con_idx_ptr;
2960
Michael Chan644b9d42010-06-24 14:58:40 +00002961 while ((kcqe_cnt = cnic_get_kcqes(dev, &cp->kcq1))) {
Michael Chana4636962009-06-08 18:14:43 -07002962
2963 service_kcqes(dev, kcqe_cnt);
2964
2965 /* Tell compiler that status_blk fields can change. */
2966 barrier();
Michael Chan93736652011-06-08 19:29:32 +00002967 status_idx = (u16) *cp->kcq1.status_idx_ptr;
2968 /* status block index must be read first */
2969 rmb();
2970 cp->kwq_con_idx = *cp->kwq_con_idx_ptr;
Michael Chana4636962009-06-08 18:14:43 -07002971 }
2972
Michael Chan644b9d42010-06-24 14:58:40 +00002973 CNIC_WR16(dev, cp->kcq1.io_addr, cp->kcq1.sw_prod_idx);
Michael Chana4636962009-06-08 18:14:43 -07002974
Michael Chan86b53602009-10-10 13:46:57 +00002975 cnic_chk_pkt_rings(cp);
Michael Chanb177a5d52010-06-24 14:58:41 +00002976
Michael Chana4636962009-06-08 18:14:43 -07002977 return status_idx;
2978}
2979
Michael Chanb177a5d52010-06-24 14:58:41 +00002980static int cnic_service_bnx2(void *data, void *status_blk)
2981{
2982 struct cnic_dev *dev = data;
Michael Chanb177a5d52010-06-24 14:58:41 +00002983
Michael Chaneaaa6e92010-12-23 08:38:30 +00002984 if (unlikely(!test_bit(CNIC_F_CNIC_UP, &dev->flags))) {
2985 struct status_block *sblk = status_blk;
2986
2987 return sblk->status_idx;
2988 }
Michael Chanb177a5d52010-06-24 14:58:41 +00002989
2990 return cnic_service_bnx2_queues(dev);
2991}
2992
Michael Chana4636962009-06-08 18:14:43 -07002993static void cnic_service_bnx2_msix(unsigned long data)
2994{
2995 struct cnic_dev *dev = (struct cnic_dev *) data;
2996 struct cnic_local *cp = dev->cnic_priv;
Michael Chana4636962009-06-08 18:14:43 -07002997
Michael Chanb177a5d52010-06-24 14:58:41 +00002998 cp->last_status_idx = cnic_service_bnx2_queues(dev);
Michael Chana4636962009-06-08 18:14:43 -07002999
Michael Chana4636962009-06-08 18:14:43 -07003000 CNIC_WR(dev, BNX2_PCICFG_INT_ACK_CMD, cp->int_num |
3001 BNX2_PCICFG_INT_ACK_CMD_INDEX_VALID | cp->last_status_idx);
3002}
3003
Michael Chan66fee9e2010-06-24 14:58:38 +00003004static void cnic_doirq(struct cnic_dev *dev)
3005{
3006 struct cnic_local *cp = dev->cnic_priv;
Michael Chan66fee9e2010-06-24 14:58:38 +00003007
3008 if (likely(test_bit(CNIC_F_CNIC_UP, &dev->flags))) {
Michael Chaneaaa6e92010-12-23 08:38:30 +00003009 u16 prod = cp->kcq1.sw_prod_idx & MAX_KCQ_IDX;
3010
Michael Chan66fee9e2010-06-24 14:58:38 +00003011 prefetch(cp->status_blk.gen);
Michael Chane6c28892010-06-24 14:58:39 +00003012 prefetch(&cp->kcq1.kcq[KCQ_PG(prod)][KCQ_IDX(prod)]);
Michael Chan66fee9e2010-06-24 14:58:38 +00003013
3014 tasklet_schedule(&cp->cnic_irq_task);
3015 }
3016}
3017
Michael Chana4636962009-06-08 18:14:43 -07003018static irqreturn_t cnic_irq(int irq, void *dev_instance)
3019{
3020 struct cnic_dev *dev = dev_instance;
3021 struct cnic_local *cp = dev->cnic_priv;
Michael Chana4636962009-06-08 18:14:43 -07003022
3023 if (cp->ack_int)
3024 cp->ack_int(dev);
3025
Michael Chan66fee9e2010-06-24 14:58:38 +00003026 cnic_doirq(dev);
Michael Chana4636962009-06-08 18:14:43 -07003027
3028 return IRQ_HANDLED;
3029}
3030
Michael Chan71034ba2009-10-10 13:46:59 +00003031static inline void cnic_ack_bnx2x_int(struct cnic_dev *dev, u8 id, u8 storm,
3032 u16 index, u8 op, u8 update)
3033{
3034 struct cnic_local *cp = dev->cnic_priv;
3035 u32 hc_addr = (HC_REG_COMMAND_REG + CNIC_PORT(cp) * 32 +
3036 COMMAND_REG_INT_ACK);
3037 struct igu_ack_register igu_ack;
3038
3039 igu_ack.status_block_index = index;
3040 igu_ack.sb_id_and_flags =
3041 ((id << IGU_ACK_REGISTER_STATUS_BLOCK_ID_SHIFT) |
3042 (storm << IGU_ACK_REGISTER_STORM_ID_SHIFT) |
3043 (update << IGU_ACK_REGISTER_UPDATE_INDEX_SHIFT) |
3044 (op << IGU_ACK_REGISTER_INTERRUPT_MODE_SHIFT));
3045
3046 CNIC_WR(dev, hc_addr, (*(u32 *)&igu_ack));
3047}
3048
Michael Chanee87a822010-10-13 14:06:51 +00003049static void cnic_ack_igu_sb(struct cnic_dev *dev, u8 igu_sb_id, u8 segment,
3050 u16 index, u8 op, u8 update)
3051{
3052 struct igu_regular cmd_data;
3053 u32 igu_addr = BAR_IGU_INTMEM + (IGU_CMD_INT_ACK_BASE + igu_sb_id) * 8;
3054
3055 cmd_data.sb_id_and_flags =
3056 (index << IGU_REGULAR_SB_INDEX_SHIFT) |
3057 (segment << IGU_REGULAR_SEGMENT_ACCESS_SHIFT) |
3058 (update << IGU_REGULAR_BUPDATE_SHIFT) |
3059 (op << IGU_REGULAR_ENABLE_INT_SHIFT);
3060
3061
3062 CNIC_WR(dev, igu_addr, cmd_data.sb_id_and_flags);
3063}
3064
Michael Chan71034ba2009-10-10 13:46:59 +00003065static void cnic_ack_bnx2x_msix(struct cnic_dev *dev)
3066{
3067 struct cnic_local *cp = dev->cnic_priv;
3068
Dmitry Kravkov523224a2010-10-06 03:23:26 +00003069 cnic_ack_bnx2x_int(dev, cp->bnx2x_igu_sb_id, CSTORM_ID, 0,
Michael Chan71034ba2009-10-10 13:46:59 +00003070 IGU_INT_DISABLE, 0);
3071}
3072
Michael Chanee87a822010-10-13 14:06:51 +00003073static void cnic_ack_bnx2x_e2_msix(struct cnic_dev *dev)
3074{
3075 struct cnic_local *cp = dev->cnic_priv;
3076
3077 cnic_ack_igu_sb(dev, cp->bnx2x_igu_sb_id, IGU_SEG_ACCESS_DEF, 0,
3078 IGU_INT_DISABLE, 0);
3079}
3080
Michael Chanb177a5d52010-06-24 14:58:41 +00003081static u32 cnic_service_bnx2x_kcq(struct cnic_dev *dev, struct kcq_info *info)
Michael Chan71034ba2009-10-10 13:46:59 +00003082{
Michael Chanb177a5d52010-06-24 14:58:41 +00003083 u32 last_status = *info->status_idx_ptr;
Michael Chan71034ba2009-10-10 13:46:59 +00003084 int kcqe_cnt;
3085
Michael Chan107c3f42011-03-02 13:00:49 +00003086 /* status block index must be read before reading the KCQ */
3087 rmb();
Michael Chanb177a5d52010-06-24 14:58:41 +00003088 while ((kcqe_cnt = cnic_get_kcqes(dev, info))) {
Michael Chan71034ba2009-10-10 13:46:59 +00003089
3090 service_kcqes(dev, kcqe_cnt);
3091
3092 /* Tell compiler that sblk fields can change. */
3093 barrier();
Michael Chan71034ba2009-10-10 13:46:59 +00003094
Michael Chanb177a5d52010-06-24 14:58:41 +00003095 last_status = *info->status_idx_ptr;
Michael Chan107c3f42011-03-02 13:00:49 +00003096 /* status block index must be read before reading the KCQ */
3097 rmb();
Michael Chan71034ba2009-10-10 13:46:59 +00003098 }
Michael Chanb177a5d52010-06-24 14:58:41 +00003099 return last_status;
3100}
3101
3102static void cnic_service_bnx2x_bh(unsigned long data)
3103{
3104 struct cnic_dev *dev = (struct cnic_dev *) data;
3105 struct cnic_local *cp = dev->cnic_priv;
Michael Chan0197b082011-03-02 13:00:50 +00003106 u32 status_idx, new_status_idx;
Michael Chanb177a5d52010-06-24 14:58:41 +00003107
3108 if (unlikely(!test_bit(CNIC_F_CNIC_UP, &dev->flags)))
3109 return;
3110
Michael Chan0197b082011-03-02 13:00:50 +00003111 while (1) {
3112 status_idx = cnic_service_bnx2x_kcq(dev, &cp->kcq1);
Michael Chan71034ba2009-10-10 13:46:59 +00003113
Michael Chan0197b082011-03-02 13:00:50 +00003114 CNIC_WR16(dev, cp->kcq1.io_addr,
3115 cp->kcq1.sw_prod_idx + MAX_KCQ_IDX);
Michael Chane21ba412010-12-23 07:43:03 +00003116
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03003117 if (!BNX2X_CHIP_IS_E2_PLUS(cp->chip_id)) {
Michael Chan0197b082011-03-02 13:00:50 +00003118 cnic_ack_bnx2x_int(dev, cp->bnx2x_igu_sb_id, USTORM_ID,
3119 status_idx, IGU_INT_ENABLE, 1);
3120 break;
3121 }
3122
3123 new_status_idx = cnic_service_bnx2x_kcq(dev, &cp->kcq2);
3124
3125 if (new_status_idx != status_idx)
3126 continue;
Michael Chane21ba412010-12-23 07:43:03 +00003127
3128 CNIC_WR16(dev, cp->kcq2.io_addr, cp->kcq2.sw_prod_idx +
3129 MAX_KCQ_IDX);
3130
Michael Chanee87a822010-10-13 14:06:51 +00003131 cnic_ack_igu_sb(dev, cp->bnx2x_igu_sb_id, IGU_SEG_ACCESS_DEF,
3132 status_idx, IGU_INT_ENABLE, 1);
Michael Chan0197b082011-03-02 13:00:50 +00003133
3134 break;
Michael Chane21ba412010-12-23 07:43:03 +00003135 }
Michael Chan71034ba2009-10-10 13:46:59 +00003136}
3137
3138static int cnic_service_bnx2x(void *data, void *status_blk)
3139{
3140 struct cnic_dev *dev = data;
3141 struct cnic_local *cp = dev->cnic_priv;
Michael Chan71034ba2009-10-10 13:46:59 +00003142
Michael Chan66fee9e2010-06-24 14:58:38 +00003143 if (!(cp->ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX))
3144 cnic_doirq(dev);
Michael Chan71034ba2009-10-10 13:46:59 +00003145
Michael Chan66fee9e2010-06-24 14:58:38 +00003146 cnic_chk_pkt_rings(cp);
Michael Chan71034ba2009-10-10 13:46:59 +00003147
3148 return 0;
3149}
3150
Dmitry Kravkovfab0dc82011-03-31 17:04:22 -07003151static void cnic_ulp_stop_one(struct cnic_local *cp, int if_type)
3152{
3153 struct cnic_ulp_ops *ulp_ops;
3154
3155 if (if_type == CNIC_ULP_ISCSI)
3156 cnic_send_nlmsg(cp, ISCSI_KEVENT_IF_DOWN, NULL);
3157
3158 mutex_lock(&cnic_lock);
3159 ulp_ops = rcu_dereference_protected(cp->ulp_ops[if_type],
3160 lockdep_is_held(&cnic_lock));
3161 if (!ulp_ops) {
3162 mutex_unlock(&cnic_lock);
3163 return;
3164 }
3165 set_bit(ULP_F_CALL_PENDING, &cp->ulp_flags[if_type]);
3166 mutex_unlock(&cnic_lock);
3167
3168 if (test_and_clear_bit(ULP_F_START, &cp->ulp_flags[if_type]))
3169 ulp_ops->cnic_stop(cp->ulp_handle[if_type]);
3170
3171 clear_bit(ULP_F_CALL_PENDING, &cp->ulp_flags[if_type]);
3172}
3173
Michael Chana4636962009-06-08 18:14:43 -07003174static void cnic_ulp_stop(struct cnic_dev *dev)
3175{
3176 struct cnic_local *cp = dev->cnic_priv;
3177 int if_type;
3178
Dmitry Kravkovfab0dc82011-03-31 17:04:22 -07003179 for (if_type = 0; if_type < MAX_CNIC_ULP_TYPE; if_type++)
3180 cnic_ulp_stop_one(cp, if_type);
Michael Chana4636962009-06-08 18:14:43 -07003181}
3182
3183static void cnic_ulp_start(struct cnic_dev *dev)
3184{
3185 struct cnic_local *cp = dev->cnic_priv;
3186 int if_type;
3187
Michael Chana4636962009-06-08 18:14:43 -07003188 for (if_type = 0; if_type < MAX_CNIC_ULP_TYPE; if_type++) {
3189 struct cnic_ulp_ops *ulp_ops;
3190
Michael Chan681dbd72009-08-14 15:49:46 +00003191 mutex_lock(&cnic_lock);
Eric Dumazet13707f92011-01-26 19:28:23 +00003192 ulp_ops = rcu_dereference_protected(cp->ulp_ops[if_type],
3193 lockdep_is_held(&cnic_lock));
Michael Chan681dbd72009-08-14 15:49:46 +00003194 if (!ulp_ops || !ulp_ops->cnic_start) {
3195 mutex_unlock(&cnic_lock);
Michael Chana4636962009-06-08 18:14:43 -07003196 continue;
Michael Chan681dbd72009-08-14 15:49:46 +00003197 }
3198 set_bit(ULP_F_CALL_PENDING, &cp->ulp_flags[if_type]);
3199 mutex_unlock(&cnic_lock);
Michael Chana4636962009-06-08 18:14:43 -07003200
3201 if (!test_and_set_bit(ULP_F_START, &cp->ulp_flags[if_type]))
3202 ulp_ops->cnic_start(cp->ulp_handle[if_type]);
Michael Chan681dbd72009-08-14 15:49:46 +00003203
3204 clear_bit(ULP_F_CALL_PENDING, &cp->ulp_flags[if_type]);
Michael Chana4636962009-06-08 18:14:43 -07003205 }
Michael Chana4636962009-06-08 18:14:43 -07003206}
3207
Barak Witkowski1d187b32011-12-05 22:41:50 +00003208static int cnic_copy_ulp_stats(struct cnic_dev *dev, int ulp_type)
3209{
3210 struct cnic_local *cp = dev->cnic_priv;
3211 struct cnic_ulp_ops *ulp_ops;
3212 int rc;
3213
3214 mutex_lock(&cnic_lock);
3215 ulp_ops = cnic_ulp_tbl_prot(ulp_type);
3216 if (ulp_ops && ulp_ops->cnic_get_stats)
3217 rc = ulp_ops->cnic_get_stats(cp->ulp_handle[ulp_type]);
3218 else
3219 rc = -ENODEV;
3220 mutex_unlock(&cnic_lock);
3221 return rc;
3222}
3223
Michael Chana4636962009-06-08 18:14:43 -07003224static int cnic_ctl(void *data, struct cnic_ctl_info *info)
3225{
3226 struct cnic_dev *dev = data;
Barak Witkowski1d187b32011-12-05 22:41:50 +00003227 int ulp_type = CNIC_ULP_ISCSI;
Michael Chana4636962009-06-08 18:14:43 -07003228
3229 switch (info->cmd) {
3230 case CNIC_CTL_STOP_CMD:
3231 cnic_hold(dev);
Michael Chana4636962009-06-08 18:14:43 -07003232
3233 cnic_ulp_stop(dev);
3234 cnic_stop_hw(dev);
3235
Michael Chana4636962009-06-08 18:14:43 -07003236 cnic_put(dev);
3237 break;
3238 case CNIC_CTL_START_CMD:
3239 cnic_hold(dev);
Michael Chana4636962009-06-08 18:14:43 -07003240
3241 if (!cnic_start_hw(dev))
3242 cnic_ulp_start(dev);
3243
Michael Chana4636962009-06-08 18:14:43 -07003244 cnic_put(dev);
3245 break;
Dmitry Kravkovfab0dc82011-03-31 17:04:22 -07003246 case CNIC_CTL_STOP_ISCSI_CMD: {
3247 struct cnic_local *cp = dev->cnic_priv;
3248 set_bit(CNIC_LCL_FL_STOP_ISCSI, &cp->cnic_local_flags);
3249 queue_delayed_work(cnic_wq, &cp->delete_task, 0);
3250 break;
3251 }
Michael Chan71034ba2009-10-10 13:46:59 +00003252 case CNIC_CTL_COMPLETION_CMD: {
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03003253 struct cnic_ctl_completion *comp = &info->data.comp;
3254 u32 cid = BNX2X_SW_CID(comp->cid);
Michael Chan71034ba2009-10-10 13:46:59 +00003255 u32 l5_cid;
3256 struct cnic_local *cp = dev->cnic_priv;
3257
Michael Chana2028b232012-06-27 15:08:19 +00003258 if (!test_bit(CNIC_F_CNIC_UP, &dev->flags))
3259 break;
3260
Michael Chan71034ba2009-10-10 13:46:59 +00003261 if (cnic_get_l5_cid(cp, cid, &l5_cid) == 0) {
3262 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
3263
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03003264 if (unlikely(comp->error)) {
3265 set_bit(CTX_FL_CID_ERROR, &ctx->ctx_flags);
3266 netdev_err(dev->netdev,
3267 "CID %x CFC delete comp error %x\n",
3268 cid, comp->error);
3269 }
3270
Michael Chan71034ba2009-10-10 13:46:59 +00003271 ctx->wait_cond = 1;
3272 wake_up(&ctx->waitq);
3273 }
3274 break;
3275 }
Barak Witkowski1d187b32011-12-05 22:41:50 +00003276 case CNIC_CTL_FCOE_STATS_GET_CMD:
3277 ulp_type = CNIC_ULP_FCOE;
3278 /* fall through */
3279 case CNIC_CTL_ISCSI_STATS_GET_CMD:
3280 cnic_hold(dev);
3281 cnic_copy_ulp_stats(dev, ulp_type);
3282 cnic_put(dev);
3283 break;
3284
Michael Chana4636962009-06-08 18:14:43 -07003285 default:
3286 return -EINVAL;
3287 }
3288 return 0;
3289}
3290
3291static void cnic_ulp_init(struct cnic_dev *dev)
3292{
3293 int i;
3294 struct cnic_local *cp = dev->cnic_priv;
3295
Michael Chana4636962009-06-08 18:14:43 -07003296 for (i = 0; i < MAX_CNIC_ULP_TYPE_EXT; i++) {
3297 struct cnic_ulp_ops *ulp_ops;
3298
Michael Chan7fc1ece2009-08-14 15:49:47 +00003299 mutex_lock(&cnic_lock);
Eric Dumazet13707f92011-01-26 19:28:23 +00003300 ulp_ops = cnic_ulp_tbl_prot(i);
Michael Chan7fc1ece2009-08-14 15:49:47 +00003301 if (!ulp_ops || !ulp_ops->cnic_init) {
3302 mutex_unlock(&cnic_lock);
Michael Chana4636962009-06-08 18:14:43 -07003303 continue;
Michael Chan7fc1ece2009-08-14 15:49:47 +00003304 }
3305 ulp_get(ulp_ops);
3306 mutex_unlock(&cnic_lock);
Michael Chana4636962009-06-08 18:14:43 -07003307
3308 if (!test_and_set_bit(ULP_F_INIT, &cp->ulp_flags[i]))
3309 ulp_ops->cnic_init(dev);
3310
Michael Chan7fc1ece2009-08-14 15:49:47 +00003311 ulp_put(ulp_ops);
Michael Chana4636962009-06-08 18:14:43 -07003312 }
Michael Chana4636962009-06-08 18:14:43 -07003313}
3314
3315static void cnic_ulp_exit(struct cnic_dev *dev)
3316{
3317 int i;
3318 struct cnic_local *cp = dev->cnic_priv;
3319
Michael Chana4636962009-06-08 18:14:43 -07003320 for (i = 0; i < MAX_CNIC_ULP_TYPE_EXT; i++) {
3321 struct cnic_ulp_ops *ulp_ops;
3322
Michael Chan7fc1ece2009-08-14 15:49:47 +00003323 mutex_lock(&cnic_lock);
Eric Dumazet13707f92011-01-26 19:28:23 +00003324 ulp_ops = cnic_ulp_tbl_prot(i);
Michael Chan7fc1ece2009-08-14 15:49:47 +00003325 if (!ulp_ops || !ulp_ops->cnic_exit) {
3326 mutex_unlock(&cnic_lock);
Michael Chana4636962009-06-08 18:14:43 -07003327 continue;
Michael Chan7fc1ece2009-08-14 15:49:47 +00003328 }
3329 ulp_get(ulp_ops);
3330 mutex_unlock(&cnic_lock);
Michael Chana4636962009-06-08 18:14:43 -07003331
3332 if (test_and_clear_bit(ULP_F_INIT, &cp->ulp_flags[i]))
3333 ulp_ops->cnic_exit(dev);
3334
Michael Chan7fc1ece2009-08-14 15:49:47 +00003335 ulp_put(ulp_ops);
Michael Chana4636962009-06-08 18:14:43 -07003336 }
Michael Chana4636962009-06-08 18:14:43 -07003337}
3338
3339static int cnic_cm_offload_pg(struct cnic_sock *csk)
3340{
3341 struct cnic_dev *dev = csk->dev;
3342 struct l4_kwq_offload_pg *l4kwqe;
3343 struct kwqe *wqes[1];
3344
3345 l4kwqe = (struct l4_kwq_offload_pg *) &csk->kwqe1;
3346 memset(l4kwqe, 0, sizeof(*l4kwqe));
3347 wqes[0] = (struct kwqe *) l4kwqe;
3348
3349 l4kwqe->op_code = L4_KWQE_OPCODE_VALUE_OFFLOAD_PG;
3350 l4kwqe->flags =
3351 L4_LAYER_CODE << L4_KWQ_OFFLOAD_PG_LAYER_CODE_SHIFT;
3352 l4kwqe->l2hdr_nbytes = ETH_HLEN;
3353
3354 l4kwqe->da0 = csk->ha[0];
3355 l4kwqe->da1 = csk->ha[1];
3356 l4kwqe->da2 = csk->ha[2];
3357 l4kwqe->da3 = csk->ha[3];
3358 l4kwqe->da4 = csk->ha[4];
3359 l4kwqe->da5 = csk->ha[5];
3360
3361 l4kwqe->sa0 = dev->mac_addr[0];
3362 l4kwqe->sa1 = dev->mac_addr[1];
3363 l4kwqe->sa2 = dev->mac_addr[2];
3364 l4kwqe->sa3 = dev->mac_addr[3];
3365 l4kwqe->sa4 = dev->mac_addr[4];
3366 l4kwqe->sa5 = dev->mac_addr[5];
3367
3368 l4kwqe->etype = ETH_P_IP;
Eddie Waia9736c02010-02-24 14:42:04 +00003369 l4kwqe->ipid_start = DEF_IPID_START;
Michael Chana4636962009-06-08 18:14:43 -07003370 l4kwqe->host_opaque = csk->l5_cid;
3371
3372 if (csk->vlan_id) {
3373 l4kwqe->pg_flags |= L4_KWQ_OFFLOAD_PG_VLAN_TAGGING;
3374 l4kwqe->vlan_tag = csk->vlan_id;
3375 l4kwqe->l2hdr_nbytes += 4;
3376 }
3377
3378 return dev->submit_kwqes(dev, wqes, 1);
3379}
3380
3381static int cnic_cm_update_pg(struct cnic_sock *csk)
3382{
3383 struct cnic_dev *dev = csk->dev;
3384 struct l4_kwq_update_pg *l4kwqe;
3385 struct kwqe *wqes[1];
3386
3387 l4kwqe = (struct l4_kwq_update_pg *) &csk->kwqe1;
3388 memset(l4kwqe, 0, sizeof(*l4kwqe));
3389 wqes[0] = (struct kwqe *) l4kwqe;
3390
3391 l4kwqe->opcode = L4_KWQE_OPCODE_VALUE_UPDATE_PG;
3392 l4kwqe->flags =
3393 L4_LAYER_CODE << L4_KWQ_UPDATE_PG_LAYER_CODE_SHIFT;
3394 l4kwqe->pg_cid = csk->pg_cid;
3395
3396 l4kwqe->da0 = csk->ha[0];
3397 l4kwqe->da1 = csk->ha[1];
3398 l4kwqe->da2 = csk->ha[2];
3399 l4kwqe->da3 = csk->ha[3];
3400 l4kwqe->da4 = csk->ha[4];
3401 l4kwqe->da5 = csk->ha[5];
3402
3403 l4kwqe->pg_host_opaque = csk->l5_cid;
3404 l4kwqe->pg_valids = L4_KWQ_UPDATE_PG_VALIDS_DA;
3405
3406 return dev->submit_kwqes(dev, wqes, 1);
3407}
3408
3409static int cnic_cm_upload_pg(struct cnic_sock *csk)
3410{
3411 struct cnic_dev *dev = csk->dev;
3412 struct l4_kwq_upload *l4kwqe;
3413 struct kwqe *wqes[1];
3414
3415 l4kwqe = (struct l4_kwq_upload *) &csk->kwqe1;
3416 memset(l4kwqe, 0, sizeof(*l4kwqe));
3417 wqes[0] = (struct kwqe *) l4kwqe;
3418
3419 l4kwqe->opcode = L4_KWQE_OPCODE_VALUE_UPLOAD_PG;
3420 l4kwqe->flags =
3421 L4_LAYER_CODE << L4_KWQ_UPLOAD_LAYER_CODE_SHIFT;
3422 l4kwqe->cid = csk->pg_cid;
3423
3424 return dev->submit_kwqes(dev, wqes, 1);
3425}
3426
3427static int cnic_cm_conn_req(struct cnic_sock *csk)
3428{
3429 struct cnic_dev *dev = csk->dev;
3430 struct l4_kwq_connect_req1 *l4kwqe1;
3431 struct l4_kwq_connect_req2 *l4kwqe2;
3432 struct l4_kwq_connect_req3 *l4kwqe3;
3433 struct kwqe *wqes[3];
3434 u8 tcp_flags = 0;
3435 int num_wqes = 2;
3436
3437 l4kwqe1 = (struct l4_kwq_connect_req1 *) &csk->kwqe1;
3438 l4kwqe2 = (struct l4_kwq_connect_req2 *) &csk->kwqe2;
3439 l4kwqe3 = (struct l4_kwq_connect_req3 *) &csk->kwqe3;
3440 memset(l4kwqe1, 0, sizeof(*l4kwqe1));
3441 memset(l4kwqe2, 0, sizeof(*l4kwqe2));
3442 memset(l4kwqe3, 0, sizeof(*l4kwqe3));
3443
3444 l4kwqe3->op_code = L4_KWQE_OPCODE_VALUE_CONNECT3;
3445 l4kwqe3->flags =
3446 L4_LAYER_CODE << L4_KWQ_CONNECT_REQ3_LAYER_CODE_SHIFT;
3447 l4kwqe3->ka_timeout = csk->ka_timeout;
3448 l4kwqe3->ka_interval = csk->ka_interval;
3449 l4kwqe3->ka_max_probe_count = csk->ka_max_probe_count;
3450 l4kwqe3->tos = csk->tos;
3451 l4kwqe3->ttl = csk->ttl;
3452 l4kwqe3->snd_seq_scale = csk->snd_seq_scale;
3453 l4kwqe3->pmtu = csk->mtu;
3454 l4kwqe3->rcv_buf = csk->rcv_buf;
3455 l4kwqe3->snd_buf = csk->snd_buf;
3456 l4kwqe3->seed = csk->seed;
3457
3458 wqes[0] = (struct kwqe *) l4kwqe1;
3459 if (test_bit(SK_F_IPV6, &csk->flags)) {
3460 wqes[1] = (struct kwqe *) l4kwqe2;
3461 wqes[2] = (struct kwqe *) l4kwqe3;
3462 num_wqes = 3;
3463
3464 l4kwqe1->conn_flags = L4_KWQ_CONNECT_REQ1_IP_V6;
3465 l4kwqe2->op_code = L4_KWQE_OPCODE_VALUE_CONNECT2;
3466 l4kwqe2->flags =
3467 L4_KWQ_CONNECT_REQ2_LINKED_WITH_NEXT |
3468 L4_LAYER_CODE << L4_KWQ_CONNECT_REQ2_LAYER_CODE_SHIFT;
3469 l4kwqe2->src_ip_v6_2 = be32_to_cpu(csk->src_ip[1]);
3470 l4kwqe2->src_ip_v6_3 = be32_to_cpu(csk->src_ip[2]);
3471 l4kwqe2->src_ip_v6_4 = be32_to_cpu(csk->src_ip[3]);
3472 l4kwqe2->dst_ip_v6_2 = be32_to_cpu(csk->dst_ip[1]);
3473 l4kwqe2->dst_ip_v6_3 = be32_to_cpu(csk->dst_ip[2]);
3474 l4kwqe2->dst_ip_v6_4 = be32_to_cpu(csk->dst_ip[3]);
3475 l4kwqe3->mss = l4kwqe3->pmtu - sizeof(struct ipv6hdr) -
3476 sizeof(struct tcphdr);
3477 } else {
3478 wqes[1] = (struct kwqe *) l4kwqe3;
3479 l4kwqe3->mss = l4kwqe3->pmtu - sizeof(struct iphdr) -
3480 sizeof(struct tcphdr);
3481 }
3482
3483 l4kwqe1->op_code = L4_KWQE_OPCODE_VALUE_CONNECT1;
3484 l4kwqe1->flags =
3485 (L4_LAYER_CODE << L4_KWQ_CONNECT_REQ1_LAYER_CODE_SHIFT) |
3486 L4_KWQ_CONNECT_REQ3_LINKED_WITH_NEXT;
3487 l4kwqe1->cid = csk->cid;
3488 l4kwqe1->pg_cid = csk->pg_cid;
3489 l4kwqe1->src_ip = be32_to_cpu(csk->src_ip[0]);
3490 l4kwqe1->dst_ip = be32_to_cpu(csk->dst_ip[0]);
3491 l4kwqe1->src_port = be16_to_cpu(csk->src_port);
3492 l4kwqe1->dst_port = be16_to_cpu(csk->dst_port);
3493 if (csk->tcp_flags & SK_TCP_NO_DELAY_ACK)
3494 tcp_flags |= L4_KWQ_CONNECT_REQ1_NO_DELAY_ACK;
3495 if (csk->tcp_flags & SK_TCP_KEEP_ALIVE)
3496 tcp_flags |= L4_KWQ_CONNECT_REQ1_KEEP_ALIVE;
3497 if (csk->tcp_flags & SK_TCP_NAGLE)
3498 tcp_flags |= L4_KWQ_CONNECT_REQ1_NAGLE_ENABLE;
3499 if (csk->tcp_flags & SK_TCP_TIMESTAMP)
3500 tcp_flags |= L4_KWQ_CONNECT_REQ1_TIME_STAMP;
3501 if (csk->tcp_flags & SK_TCP_SACK)
3502 tcp_flags |= L4_KWQ_CONNECT_REQ1_SACK;
3503 if (csk->tcp_flags & SK_TCP_SEG_SCALING)
3504 tcp_flags |= L4_KWQ_CONNECT_REQ1_SEG_SCALING;
3505
3506 l4kwqe1->tcp_flags = tcp_flags;
3507
3508 return dev->submit_kwqes(dev, wqes, num_wqes);
3509}
3510
3511static int cnic_cm_close_req(struct cnic_sock *csk)
3512{
3513 struct cnic_dev *dev = csk->dev;
3514 struct l4_kwq_close_req *l4kwqe;
3515 struct kwqe *wqes[1];
3516
3517 l4kwqe = (struct l4_kwq_close_req *) &csk->kwqe2;
3518 memset(l4kwqe, 0, sizeof(*l4kwqe));
3519 wqes[0] = (struct kwqe *) l4kwqe;
3520
3521 l4kwqe->op_code = L4_KWQE_OPCODE_VALUE_CLOSE;
3522 l4kwqe->flags = L4_LAYER_CODE << L4_KWQ_CLOSE_REQ_LAYER_CODE_SHIFT;
3523 l4kwqe->cid = csk->cid;
3524
3525 return dev->submit_kwqes(dev, wqes, 1);
3526}
3527
3528static int cnic_cm_abort_req(struct cnic_sock *csk)
3529{
3530 struct cnic_dev *dev = csk->dev;
3531 struct l4_kwq_reset_req *l4kwqe;
3532 struct kwqe *wqes[1];
3533
3534 l4kwqe = (struct l4_kwq_reset_req *) &csk->kwqe2;
3535 memset(l4kwqe, 0, sizeof(*l4kwqe));
3536 wqes[0] = (struct kwqe *) l4kwqe;
3537
3538 l4kwqe->op_code = L4_KWQE_OPCODE_VALUE_RESET;
3539 l4kwqe->flags = L4_LAYER_CODE << L4_KWQ_RESET_REQ_LAYER_CODE_SHIFT;
3540 l4kwqe->cid = csk->cid;
3541
3542 return dev->submit_kwqes(dev, wqes, 1);
3543}
3544
3545static int cnic_cm_create(struct cnic_dev *dev, int ulp_type, u32 cid,
3546 u32 l5_cid, struct cnic_sock **csk, void *context)
3547{
3548 struct cnic_local *cp = dev->cnic_priv;
3549 struct cnic_sock *csk1;
3550
3551 if (l5_cid >= MAX_CM_SK_TBL_SZ)
3552 return -EINVAL;
3553
Michael Chanfdf24082010-10-13 14:06:47 +00003554 if (cp->ctx_tbl) {
3555 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
3556
3557 if (test_bit(CTX_FL_OFFLD_START, &ctx->ctx_flags))
3558 return -EAGAIN;
3559 }
3560
Michael Chana4636962009-06-08 18:14:43 -07003561 csk1 = &cp->csk_tbl[l5_cid];
3562 if (atomic_read(&csk1->ref_count))
3563 return -EAGAIN;
3564
3565 if (test_and_set_bit(SK_F_INUSE, &csk1->flags))
3566 return -EBUSY;
3567
3568 csk1->dev = dev;
3569 csk1->cid = cid;
3570 csk1->l5_cid = l5_cid;
3571 csk1->ulp_type = ulp_type;
3572 csk1->context = context;
3573
3574 csk1->ka_timeout = DEF_KA_TIMEOUT;
3575 csk1->ka_interval = DEF_KA_INTERVAL;
3576 csk1->ka_max_probe_count = DEF_KA_MAX_PROBE_COUNT;
3577 csk1->tos = DEF_TOS;
3578 csk1->ttl = DEF_TTL;
3579 csk1->snd_seq_scale = DEF_SND_SEQ_SCALE;
3580 csk1->rcv_buf = DEF_RCV_BUF;
3581 csk1->snd_buf = DEF_SND_BUF;
3582 csk1->seed = DEF_SEED;
3583
3584 *csk = csk1;
3585 return 0;
3586}
3587
3588static void cnic_cm_cleanup(struct cnic_sock *csk)
3589{
3590 if (csk->src_port) {
3591 struct cnic_dev *dev = csk->dev;
3592 struct cnic_local *cp = dev->cnic_priv;
3593
Michael Chan9b093362010-12-23 07:42:56 +00003594 cnic_free_id(&cp->csk_port_tbl, be16_to_cpu(csk->src_port));
Michael Chana4636962009-06-08 18:14:43 -07003595 csk->src_port = 0;
3596 }
3597}
3598
3599static void cnic_close_conn(struct cnic_sock *csk)
3600{
3601 if (test_bit(SK_F_PG_OFFLD_COMPLETE, &csk->flags)) {
3602 cnic_cm_upload_pg(csk);
3603 clear_bit(SK_F_PG_OFFLD_COMPLETE, &csk->flags);
3604 }
3605 cnic_cm_cleanup(csk);
3606}
3607
3608static int cnic_cm_destroy(struct cnic_sock *csk)
3609{
3610 if (!cnic_in_use(csk))
3611 return -EINVAL;
3612
3613 csk_hold(csk);
3614 clear_bit(SK_F_INUSE, &csk->flags);
3615 smp_mb__after_clear_bit();
3616 while (atomic_read(&csk->ref_count) != 1)
3617 msleep(1);
3618 cnic_cm_cleanup(csk);
3619
3620 csk->flags = 0;
3621 csk_put(csk);
3622 return 0;
3623}
3624
3625static inline u16 cnic_get_vlan(struct net_device *dev,
3626 struct net_device **vlan_dev)
3627{
3628 if (dev->priv_flags & IFF_802_1Q_VLAN) {
3629 *vlan_dev = vlan_dev_real_dev(dev);
3630 return vlan_dev_vlan_id(dev);
3631 }
3632 *vlan_dev = dev;
3633 return 0;
3634}
3635
3636static int cnic_get_v4_route(struct sockaddr_in *dst_addr,
3637 struct dst_entry **dst)
3638{
Randy Dunlapfaea56c2009-06-12 11:43:48 -07003639#if defined(CONFIG_INET)
Michael Chana4636962009-06-08 18:14:43 -07003640 struct rtable *rt;
3641
David S. Miller78fbfd82011-03-12 00:00:52 -05003642 rt = ip_route_output(&init_net, dst_addr->sin_addr.s_addr, 0, 0, 0);
3643 if (!IS_ERR(rt)) {
Changli Gaod8d1f302010-06-10 23:31:35 -07003644 *dst = &rt->dst;
David S. Miller78fbfd82011-03-12 00:00:52 -05003645 return 0;
3646 }
3647 return PTR_ERR(rt);
Randy Dunlapfaea56c2009-06-12 11:43:48 -07003648#else
3649 return -ENETUNREACH;
3650#endif
Michael Chana4636962009-06-08 18:14:43 -07003651}
3652
3653static int cnic_get_v6_route(struct sockaddr_in6 *dst_addr,
3654 struct dst_entry **dst)
3655{
Randy Dunlapfaea56c2009-06-12 11:43:48 -07003656#if defined(CONFIG_IPV6) || (defined(CONFIG_IPV6_MODULE) && defined(MODULE))
David S. Miller4c9483b2011-03-12 16:22:43 -05003657 struct flowi6 fl6;
Michael Chana4636962009-06-08 18:14:43 -07003658
David S. Miller4c9483b2011-03-12 16:22:43 -05003659 memset(&fl6, 0, sizeof(fl6));
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00003660 fl6.daddr = dst_addr->sin6_addr;
David S. Miller4c9483b2011-03-12 16:22:43 -05003661 if (ipv6_addr_type(&fl6.daddr) & IPV6_ADDR_LINKLOCAL)
3662 fl6.flowi6_oif = dst_addr->sin6_scope_id;
Michael Chana4636962009-06-08 18:14:43 -07003663
David S. Miller4c9483b2011-03-12 16:22:43 -05003664 *dst = ip6_route_output(&init_net, NULL, &fl6);
RongQing.Li05417432012-02-21 22:10:50 +00003665 if ((*dst)->error) {
3666 dst_release(*dst);
3667 *dst = NULL;
3668 return -ENETUNREACH;
3669 } else
Michael Chana4636962009-06-08 18:14:43 -07003670 return 0;
3671#endif
3672
3673 return -ENETUNREACH;
3674}
3675
3676static struct cnic_dev *cnic_cm_select_dev(struct sockaddr_in *dst_addr,
3677 int ulp_type)
3678{
3679 struct cnic_dev *dev = NULL;
3680 struct dst_entry *dst;
3681 struct net_device *netdev = NULL;
3682 int err = -ENETUNREACH;
3683
3684 if (dst_addr->sin_family == AF_INET)
3685 err = cnic_get_v4_route(dst_addr, &dst);
3686 else if (dst_addr->sin_family == AF_INET6) {
3687 struct sockaddr_in6 *dst_addr6 =
3688 (struct sockaddr_in6 *) dst_addr;
3689
3690 err = cnic_get_v6_route(dst_addr6, &dst);
3691 } else
3692 return NULL;
3693
3694 if (err)
3695 return NULL;
3696
3697 if (!dst->dev)
3698 goto done;
3699
3700 cnic_get_vlan(dst->dev, &netdev);
3701
3702 dev = cnic_from_netdev(netdev);
3703
3704done:
3705 dst_release(dst);
3706 if (dev)
3707 cnic_put(dev);
3708 return dev;
3709}
3710
3711static int cnic_resolve_addr(struct cnic_sock *csk, struct cnic_sockaddr *saddr)
3712{
3713 struct cnic_dev *dev = csk->dev;
3714 struct cnic_local *cp = dev->cnic_priv;
3715
3716 return cnic_send_nlmsg(cp, ISCSI_KEVENT_PATH_REQ, csk);
3717}
3718
3719static int cnic_get_route(struct cnic_sock *csk, struct cnic_sockaddr *saddr)
3720{
3721 struct cnic_dev *dev = csk->dev;
3722 struct cnic_local *cp = dev->cnic_priv;
Michael Chanc76284a2010-02-24 14:42:07 +00003723 int is_v6, rc = 0;
3724 struct dst_entry *dst = NULL;
Michael Chana4636962009-06-08 18:14:43 -07003725 struct net_device *realdev;
Michael Chan9b093362010-12-23 07:42:56 +00003726 __be16 local_port;
3727 u32 port_id;
Michael Chana4636962009-06-08 18:14:43 -07003728
3729 if (saddr->local.v6.sin6_family == AF_INET6 &&
3730 saddr->remote.v6.sin6_family == AF_INET6)
3731 is_v6 = 1;
3732 else if (saddr->local.v4.sin_family == AF_INET &&
3733 saddr->remote.v4.sin_family == AF_INET)
3734 is_v6 = 0;
3735 else
3736 return -EINVAL;
3737
3738 clear_bit(SK_F_IPV6, &csk->flags);
3739
3740 if (is_v6) {
Michael Chana4636962009-06-08 18:14:43 -07003741 set_bit(SK_F_IPV6, &csk->flags);
Michael Chanc76284a2010-02-24 14:42:07 +00003742 cnic_get_v6_route(&saddr->remote.v6, &dst);
Michael Chana4636962009-06-08 18:14:43 -07003743
3744 memcpy(&csk->dst_ip[0], &saddr->remote.v6.sin6_addr,
3745 sizeof(struct in6_addr));
3746 csk->dst_port = saddr->remote.v6.sin6_port;
3747 local_port = saddr->local.v6.sin6_port;
Michael Chana4636962009-06-08 18:14:43 -07003748
3749 } else {
Michael Chanc76284a2010-02-24 14:42:07 +00003750 cnic_get_v4_route(&saddr->remote.v4, &dst);
Michael Chana4636962009-06-08 18:14:43 -07003751
3752 csk->dst_ip[0] = saddr->remote.v4.sin_addr.s_addr;
3753 csk->dst_port = saddr->remote.v4.sin_port;
3754 local_port = saddr->local.v4.sin_port;
3755 }
3756
Michael Chanc76284a2010-02-24 14:42:07 +00003757 csk->vlan_id = 0;
3758 csk->mtu = dev->netdev->mtu;
3759 if (dst && dst->dev) {
3760 u16 vlan = cnic_get_vlan(dst->dev, &realdev);
3761 if (realdev == dev->netdev) {
3762 csk->vlan_id = vlan;
3763 csk->mtu = dst_mtu(dst);
3764 }
3765 }
Michael Chana4636962009-06-08 18:14:43 -07003766
Michael Chan9b093362010-12-23 07:42:56 +00003767 port_id = be16_to_cpu(local_port);
3768 if (port_id >= CNIC_LOCAL_PORT_MIN &&
3769 port_id < CNIC_LOCAL_PORT_MAX) {
3770 if (cnic_alloc_id(&cp->csk_port_tbl, port_id))
3771 port_id = 0;
Michael Chana4636962009-06-08 18:14:43 -07003772 } else
Michael Chan9b093362010-12-23 07:42:56 +00003773 port_id = 0;
Michael Chana4636962009-06-08 18:14:43 -07003774
Michael Chan9b093362010-12-23 07:42:56 +00003775 if (!port_id) {
3776 port_id = cnic_alloc_new_id(&cp->csk_port_tbl);
3777 if (port_id == -1) {
Michael Chana4636962009-06-08 18:14:43 -07003778 rc = -ENOMEM;
3779 goto err_out;
3780 }
Michael Chan9b093362010-12-23 07:42:56 +00003781 local_port = cpu_to_be16(port_id);
Michael Chana4636962009-06-08 18:14:43 -07003782 }
3783 csk->src_port = local_port;
3784
Michael Chana4636962009-06-08 18:14:43 -07003785err_out:
3786 dst_release(dst);
3787 return rc;
3788}
3789
3790static void cnic_init_csk_state(struct cnic_sock *csk)
3791{
3792 csk->state = 0;
3793 clear_bit(SK_F_OFFLD_SCHED, &csk->flags);
3794 clear_bit(SK_F_CLOSING, &csk->flags);
3795}
3796
3797static int cnic_cm_connect(struct cnic_sock *csk, struct cnic_sockaddr *saddr)
3798{
Dmitry Kravkovfab0dc82011-03-31 17:04:22 -07003799 struct cnic_local *cp = csk->dev->cnic_priv;
Michael Chana4636962009-06-08 18:14:43 -07003800 int err = 0;
3801
Dmitry Kravkovfab0dc82011-03-31 17:04:22 -07003802 if (cp->ethdev->drv_state & CNIC_DRV_STATE_NO_ISCSI)
3803 return -EOPNOTSUPP;
3804
Michael Chana4636962009-06-08 18:14:43 -07003805 if (!cnic_in_use(csk))
3806 return -EINVAL;
3807
3808 if (test_and_set_bit(SK_F_CONNECT_START, &csk->flags))
3809 return -EINVAL;
3810
3811 cnic_init_csk_state(csk);
3812
3813 err = cnic_get_route(csk, saddr);
3814 if (err)
3815 goto err_out;
3816
3817 err = cnic_resolve_addr(csk, saddr);
3818 if (!err)
3819 return 0;
3820
3821err_out:
3822 clear_bit(SK_F_CONNECT_START, &csk->flags);
3823 return err;
3824}
3825
3826static int cnic_cm_abort(struct cnic_sock *csk)
3827{
3828 struct cnic_local *cp = csk->dev->cnic_priv;
Michael Chan7b34a462010-06-15 08:57:03 +00003829 u32 opcode = L4_KCQE_OPCODE_VALUE_RESET_COMP;
Michael Chana4636962009-06-08 18:14:43 -07003830
3831 if (!cnic_in_use(csk))
3832 return -EINVAL;
3833
3834 if (cnic_abort_prep(csk))
3835 return cnic_cm_abort_req(csk);
3836
3837 /* Getting here means that we haven't started connect, or
3838 * connect was not successful.
3839 */
3840
Michael Chana4636962009-06-08 18:14:43 -07003841 cp->close_conn(csk, opcode);
Michael Chan7b34a462010-06-15 08:57:03 +00003842 if (csk->state != opcode)
3843 return -EALREADY;
Michael Chana4636962009-06-08 18:14:43 -07003844
3845 return 0;
3846}
3847
3848static int cnic_cm_close(struct cnic_sock *csk)
3849{
3850 if (!cnic_in_use(csk))
3851 return -EINVAL;
3852
3853 if (cnic_close_prep(csk)) {
3854 csk->state = L4_KCQE_OPCODE_VALUE_CLOSE_COMP;
3855 return cnic_cm_close_req(csk);
Michael Chaned99daa52010-06-15 08:57:00 +00003856 } else {
3857 return -EALREADY;
Michael Chana4636962009-06-08 18:14:43 -07003858 }
3859 return 0;
3860}
3861
3862static void cnic_cm_upcall(struct cnic_local *cp, struct cnic_sock *csk,
3863 u8 opcode)
3864{
3865 struct cnic_ulp_ops *ulp_ops;
3866 int ulp_type = csk->ulp_type;
3867
3868 rcu_read_lock();
3869 ulp_ops = rcu_dereference(cp->ulp_ops[ulp_type]);
3870 if (ulp_ops) {
3871 if (opcode == L4_KCQE_OPCODE_VALUE_CONNECT_COMPLETE)
3872 ulp_ops->cm_connect_complete(csk);
3873 else if (opcode == L4_KCQE_OPCODE_VALUE_CLOSE_COMP)
3874 ulp_ops->cm_close_complete(csk);
3875 else if (opcode == L4_KCQE_OPCODE_VALUE_RESET_RECEIVED)
3876 ulp_ops->cm_remote_abort(csk);
3877 else if (opcode == L4_KCQE_OPCODE_VALUE_RESET_COMP)
3878 ulp_ops->cm_abort_complete(csk);
3879 else if (opcode == L4_KCQE_OPCODE_VALUE_CLOSE_RECEIVED)
3880 ulp_ops->cm_remote_close(csk);
3881 }
3882 rcu_read_unlock();
3883}
3884
3885static int cnic_cm_set_pg(struct cnic_sock *csk)
3886{
3887 if (cnic_offld_prep(csk)) {
3888 if (test_bit(SK_F_PG_OFFLD_COMPLETE, &csk->flags))
3889 cnic_cm_update_pg(csk);
3890 else
3891 cnic_cm_offload_pg(csk);
3892 }
3893 return 0;
3894}
3895
3896static void cnic_cm_process_offld_pg(struct cnic_dev *dev, struct l4_kcq *kcqe)
3897{
3898 struct cnic_local *cp = dev->cnic_priv;
3899 u32 l5_cid = kcqe->pg_host_opaque;
3900 u8 opcode = kcqe->op_code;
3901 struct cnic_sock *csk = &cp->csk_tbl[l5_cid];
3902
3903 csk_hold(csk);
3904 if (!cnic_in_use(csk))
3905 goto done;
3906
3907 if (opcode == L4_KCQE_OPCODE_VALUE_UPDATE_PG) {
3908 clear_bit(SK_F_OFFLD_SCHED, &csk->flags);
3909 goto done;
3910 }
Eddie Waia9736c02010-02-24 14:42:04 +00003911 /* Possible PG kcqe status: SUCCESS, OFFLOADED_PG, or CTX_ALLOC_FAIL */
3912 if (kcqe->status == L4_KCQE_COMPLETION_STATUS_CTX_ALLOC_FAIL) {
3913 clear_bit(SK_F_OFFLD_SCHED, &csk->flags);
3914 cnic_cm_upcall(cp, csk,
3915 L4_KCQE_OPCODE_VALUE_CONNECT_COMPLETE);
3916 goto done;
3917 }
3918
Michael Chana4636962009-06-08 18:14:43 -07003919 csk->pg_cid = kcqe->pg_cid;
3920 set_bit(SK_F_PG_OFFLD_COMPLETE, &csk->flags);
3921 cnic_cm_conn_req(csk);
3922
3923done:
3924 csk_put(csk);
3925}
3926
Michael Chane1928c82010-12-23 07:43:04 +00003927static void cnic_process_fcoe_term_conn(struct cnic_dev *dev, struct kcqe *kcqe)
3928{
3929 struct cnic_local *cp = dev->cnic_priv;
3930 struct fcoe_kcqe *fc_kcqe = (struct fcoe_kcqe *) kcqe;
3931 u32 l5_cid = fc_kcqe->fcoe_conn_id + BNX2X_FCOE_L5_CID_BASE;
3932 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
3933
3934 ctx->timestamp = jiffies;
3935 ctx->wait_cond = 1;
3936 wake_up(&ctx->waitq);
3937}
3938
Michael Chana4636962009-06-08 18:14:43 -07003939static void cnic_cm_process_kcqe(struct cnic_dev *dev, struct kcqe *kcqe)
3940{
3941 struct cnic_local *cp = dev->cnic_priv;
3942 struct l4_kcq *l4kcqe = (struct l4_kcq *) kcqe;
3943 u8 opcode = l4kcqe->op_code;
3944 u32 l5_cid;
3945 struct cnic_sock *csk;
3946
Michael Chane1928c82010-12-23 07:43:04 +00003947 if (opcode == FCOE_RAMROD_CMD_ID_TERMINATE_CONN) {
3948 cnic_process_fcoe_term_conn(dev, kcqe);
3949 return;
3950 }
Michael Chana4636962009-06-08 18:14:43 -07003951 if (opcode == L4_KCQE_OPCODE_VALUE_OFFLOAD_PG ||
3952 opcode == L4_KCQE_OPCODE_VALUE_UPDATE_PG) {
3953 cnic_cm_process_offld_pg(dev, l4kcqe);
3954 return;
3955 }
3956
3957 l5_cid = l4kcqe->conn_id;
3958 if (opcode & 0x80)
3959 l5_cid = l4kcqe->cid;
3960 if (l5_cid >= MAX_CM_SK_TBL_SZ)
3961 return;
3962
3963 csk = &cp->csk_tbl[l5_cid];
3964 csk_hold(csk);
3965
3966 if (!cnic_in_use(csk)) {
3967 csk_put(csk);
3968 return;
3969 }
3970
3971 switch (opcode) {
Eddie Waia9736c02010-02-24 14:42:04 +00003972 case L5CM_RAMROD_CMD_ID_TCP_CONNECT:
3973 if (l4kcqe->status != 0) {
3974 clear_bit(SK_F_OFFLD_SCHED, &csk->flags);
3975 cnic_cm_upcall(cp, csk,
3976 L4_KCQE_OPCODE_VALUE_CONNECT_COMPLETE);
3977 }
3978 break;
Michael Chana4636962009-06-08 18:14:43 -07003979 case L4_KCQE_OPCODE_VALUE_CONNECT_COMPLETE:
3980 if (l4kcqe->status == 0)
3981 set_bit(SK_F_OFFLD_COMPLETE, &csk->flags);
Michael Chan8ec3e702012-03-21 15:38:34 +00003982 else if (l4kcqe->status ==
3983 L4_KCQE_COMPLETION_STATUS_PARITY_ERROR)
Jeffrey Huang0cb1f4b2012-02-08 17:33:56 +00003984 set_bit(SK_F_HW_ERR, &csk->flags);
Michael Chana4636962009-06-08 18:14:43 -07003985
3986 smp_mb__before_clear_bit();
3987 clear_bit(SK_F_OFFLD_SCHED, &csk->flags);
3988 cnic_cm_upcall(cp, csk, opcode);
3989 break;
3990
Eddie Wai7bc910f2012-06-27 15:08:22 +00003991 case L5CM_RAMROD_CMD_ID_CLOSE:
3992 if (l4kcqe->status != 0) {
3993 netdev_warn(dev->netdev, "RAMROD CLOSE compl with "
3994 "status 0x%x\n", l4kcqe->status);
3995 opcode = L4_KCQE_OPCODE_VALUE_CLOSE_COMP;
3996 /* Fall through */
3997 } else {
3998 break;
3999 }
Michael Chana4636962009-06-08 18:14:43 -07004000 case L4_KCQE_OPCODE_VALUE_RESET_RECEIVED:
Michael Chana4636962009-06-08 18:14:43 -07004001 case L4_KCQE_OPCODE_VALUE_CLOSE_COMP:
4002 case L4_KCQE_OPCODE_VALUE_RESET_COMP:
Michael Chan71034ba2009-10-10 13:46:59 +00004003 case L5CM_RAMROD_CMD_ID_SEARCHER_DELETE:
4004 case L5CM_RAMROD_CMD_ID_TERMINATE_OFFLOAD:
Michael Chan8ec3e702012-03-21 15:38:34 +00004005 if (l4kcqe->status == L4_KCQE_COMPLETION_STATUS_PARITY_ERROR)
Michael Chan23021c22012-01-04 12:12:28 +00004006 set_bit(SK_F_HW_ERR, &csk->flags);
4007
Michael Chana4636962009-06-08 18:14:43 -07004008 cp->close_conn(csk, opcode);
4009 break;
4010
4011 case L4_KCQE_OPCODE_VALUE_CLOSE_RECEIVED:
Michael Chan101c40c2011-06-08 19:29:33 +00004012 /* after we already sent CLOSE_REQ */
4013 if (test_bit(CNIC_F_BNX2X_CLASS, &dev->flags) &&
4014 !test_bit(SK_F_OFFLD_COMPLETE, &csk->flags) &&
4015 csk->state == L4_KCQE_OPCODE_VALUE_CLOSE_COMP)
4016 cp->close_conn(csk, L4_KCQE_OPCODE_VALUE_RESET_COMP);
4017 else
4018 cnic_cm_upcall(cp, csk, opcode);
Michael Chana4636962009-06-08 18:14:43 -07004019 break;
4020 }
4021 csk_put(csk);
4022}
4023
4024static void cnic_cm_indicate_kcqe(void *data, struct kcqe *kcqe[], u32 num)
4025{
4026 struct cnic_dev *dev = data;
4027 int i;
4028
4029 for (i = 0; i < num; i++)
4030 cnic_cm_process_kcqe(dev, kcqe[i]);
4031}
4032
4033static struct cnic_ulp_ops cm_ulp_ops = {
4034 .indicate_kcqes = cnic_cm_indicate_kcqe,
4035};
4036
4037static void cnic_cm_free_mem(struct cnic_dev *dev)
4038{
4039 struct cnic_local *cp = dev->cnic_priv;
4040
4041 kfree(cp->csk_tbl);
4042 cp->csk_tbl = NULL;
4043 cnic_free_id_tbl(&cp->csk_port_tbl);
4044}
4045
4046static int cnic_cm_alloc_mem(struct cnic_dev *dev)
4047{
4048 struct cnic_local *cp = dev->cnic_priv;
Eddie Wai11f23aa2011-06-08 19:29:34 +00004049 u32 port_id;
Michael Chana4636962009-06-08 18:14:43 -07004050
4051 cp->csk_tbl = kzalloc(sizeof(struct cnic_sock) * MAX_CM_SK_TBL_SZ,
4052 GFP_KERNEL);
4053 if (!cp->csk_tbl)
4054 return -ENOMEM;
4055
Michael Chan973e5742011-07-13 17:24:17 +00004056 port_id = random32();
Eddie Wai11f23aa2011-06-08 19:29:34 +00004057 port_id %= CNIC_LOCAL_PORT_RANGE;
Michael Chana4636962009-06-08 18:14:43 -07004058 if (cnic_init_id_tbl(&cp->csk_port_tbl, CNIC_LOCAL_PORT_RANGE,
Eddie Wai11f23aa2011-06-08 19:29:34 +00004059 CNIC_LOCAL_PORT_MIN, port_id)) {
Michael Chana4636962009-06-08 18:14:43 -07004060 cnic_cm_free_mem(dev);
4061 return -ENOMEM;
4062 }
4063 return 0;
4064}
4065
4066static int cnic_ready_to_close(struct cnic_sock *csk, u32 opcode)
4067{
Michael Chan943189f2010-06-15 08:57:02 +00004068 if (test_and_clear_bit(SK_F_OFFLD_COMPLETE, &csk->flags)) {
4069 /* Unsolicited RESET_COMP or RESET_RECEIVED */
4070 opcode = L4_KCQE_OPCODE_VALUE_RESET_RECEIVED;
4071 csk->state = opcode;
Michael Chana1e621b2010-06-15 08:57:01 +00004072 }
Michael Chan943189f2010-06-15 08:57:02 +00004073
4074 /* 1. If event opcode matches the expected event in csk->state
Michael Chan101c40c2011-06-08 19:29:33 +00004075 * 2. If the expected event is CLOSE_COMP or RESET_COMP, we accept any
4076 * event
Michael Chan7b34a462010-06-15 08:57:03 +00004077 * 3. If the expected event is 0, meaning the connection was never
4078 * never established, we accept the opcode from cm_abort.
Michael Chan943189f2010-06-15 08:57:02 +00004079 */
Michael Chan7b34a462010-06-15 08:57:03 +00004080 if (opcode == csk->state || csk->state == 0 ||
Michael Chan101c40c2011-06-08 19:29:33 +00004081 csk->state == L4_KCQE_OPCODE_VALUE_CLOSE_COMP ||
4082 csk->state == L4_KCQE_OPCODE_VALUE_RESET_COMP) {
Michael Chan7b34a462010-06-15 08:57:03 +00004083 if (!test_and_set_bit(SK_F_CLOSING, &csk->flags)) {
4084 if (csk->state == 0)
4085 csk->state = opcode;
Michael Chana4636962009-06-08 18:14:43 -07004086 return 1;
Michael Chan7b34a462010-06-15 08:57:03 +00004087 }
Michael Chana4636962009-06-08 18:14:43 -07004088 }
4089 return 0;
4090}
4091
4092static void cnic_close_bnx2_conn(struct cnic_sock *csk, u32 opcode)
4093{
4094 struct cnic_dev *dev = csk->dev;
4095 struct cnic_local *cp = dev->cnic_priv;
4096
Michael Chana1e621b2010-06-15 08:57:01 +00004097 if (opcode == L4_KCQE_OPCODE_VALUE_RESET_RECEIVED) {
4098 cnic_cm_upcall(cp, csk, opcode);
4099 return;
4100 }
4101
Michael Chana4636962009-06-08 18:14:43 -07004102 clear_bit(SK_F_CONNECT_START, &csk->flags);
Eddie Wai66883e92010-02-24 14:42:05 +00004103 cnic_close_conn(csk);
Michael Chan7b34a462010-06-15 08:57:03 +00004104 csk->state = opcode;
Eddie Wai66883e92010-02-24 14:42:05 +00004105 cnic_cm_upcall(cp, csk, opcode);
Michael Chana4636962009-06-08 18:14:43 -07004106}
4107
4108static void cnic_cm_stop_bnx2_hw(struct cnic_dev *dev)
4109{
4110}
4111
4112static int cnic_cm_init_bnx2_hw(struct cnic_dev *dev)
4113{
4114 u32 seed;
4115
Michael Chan973e5742011-07-13 17:24:17 +00004116 seed = random32();
Michael Chana4636962009-06-08 18:14:43 -07004117 cnic_ctx_wr(dev, 45, 0, seed);
4118 return 0;
4119}
4120
Michael Chan71034ba2009-10-10 13:46:59 +00004121static void cnic_close_bnx2x_conn(struct cnic_sock *csk, u32 opcode)
4122{
4123 struct cnic_dev *dev = csk->dev;
4124 struct cnic_local *cp = dev->cnic_priv;
4125 struct cnic_context *ctx = &cp->ctx_tbl[csk->l5_cid];
4126 union l5cm_specific_data l5_data;
4127 u32 cmd = 0;
4128 int close_complete = 0;
4129
4130 switch (opcode) {
4131 case L4_KCQE_OPCODE_VALUE_RESET_RECEIVED:
4132 case L4_KCQE_OPCODE_VALUE_CLOSE_COMP:
4133 case L4_KCQE_OPCODE_VALUE_RESET_COMP:
Michael Chan7b34a462010-06-15 08:57:03 +00004134 if (cnic_ready_to_close(csk, opcode)) {
Michael Chan23021c22012-01-04 12:12:28 +00004135 if (test_bit(SK_F_HW_ERR, &csk->flags))
4136 close_complete = 1;
4137 else if (test_bit(SK_F_PG_OFFLD_COMPLETE, &csk->flags))
Michael Chan7b34a462010-06-15 08:57:03 +00004138 cmd = L5CM_RAMROD_CMD_ID_SEARCHER_DELETE;
4139 else
4140 close_complete = 1;
4141 }
Michael Chan71034ba2009-10-10 13:46:59 +00004142 break;
4143 case L5CM_RAMROD_CMD_ID_SEARCHER_DELETE:
4144 cmd = L5CM_RAMROD_CMD_ID_TERMINATE_OFFLOAD;
4145 break;
4146 case L5CM_RAMROD_CMD_ID_TERMINATE_OFFLOAD:
4147 close_complete = 1;
4148 break;
4149 }
4150 if (cmd) {
4151 memset(&l5_data, 0, sizeof(l5_data));
4152
4153 cnic_submit_kwqe_16(dev, cmd, csk->cid, ISCSI_CONNECTION_TYPE,
4154 &l5_data);
4155 } else if (close_complete) {
4156 ctx->timestamp = jiffies;
4157 cnic_close_conn(csk);
4158 cnic_cm_upcall(cp, csk, csk->state);
4159 }
4160}
4161
4162static void cnic_cm_stop_bnx2x_hw(struct cnic_dev *dev)
4163{
Michael Chanfdf24082010-10-13 14:06:47 +00004164 struct cnic_local *cp = dev->cnic_priv;
Michael Chanfdf24082010-10-13 14:06:47 +00004165
4166 if (!cp->ctx_tbl)
4167 return;
4168
4169 if (!netif_running(dev->netdev))
4170 return;
4171
Michael Chan74e49bb2011-07-20 14:55:23 +00004172 cnic_bnx2x_delete_wait(dev, 0);
Michael Chanfdf24082010-10-13 14:06:47 +00004173
4174 cancel_delayed_work(&cp->delete_task);
4175 flush_workqueue(cnic_wq);
4176
4177 if (atomic_read(&cp->iscsi_conn) != 0)
4178 netdev_warn(dev->netdev, "%d iSCSI connections not destroyed\n",
4179 atomic_read(&cp->iscsi_conn));
Michael Chan71034ba2009-10-10 13:46:59 +00004180}
4181
4182static int cnic_cm_init_bnx2x_hw(struct cnic_dev *dev)
4183{
4184 struct cnic_local *cp = dev->cnic_priv;
Michael Chan14203982010-10-06 03:16:06 +00004185 u32 pfid = cp->pfid;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004186 u32 port = CNIC_PORT(cp);
Michael Chan71034ba2009-10-10 13:46:59 +00004187
4188 cnic_init_bnx2x_mac(dev);
4189 cnic_bnx2x_set_tcp_timestamp(dev, 1);
4190
4191 CNIC_WR16(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00004192 XSTORM_ISCSI_LOCAL_VLAN_OFFSET(pfid), 0);
Michael Chan71034ba2009-10-10 13:46:59 +00004193
4194 CNIC_WR(dev, BAR_XSTRORM_INTMEM +
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004195 XSTORM_TCP_GLOBAL_DEL_ACK_COUNTER_ENABLED_OFFSET(port), 1);
Michael Chan71034ba2009-10-10 13:46:59 +00004196 CNIC_WR(dev, BAR_XSTRORM_INTMEM +
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004197 XSTORM_TCP_GLOBAL_DEL_ACK_COUNTER_MAX_COUNT_OFFSET(port),
Michael Chan71034ba2009-10-10 13:46:59 +00004198 DEF_MAX_DA_COUNT);
4199
4200 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00004201 XSTORM_ISCSI_TCP_VARS_TTL_OFFSET(pfid), DEF_TTL);
Michael Chan71034ba2009-10-10 13:46:59 +00004202 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00004203 XSTORM_ISCSI_TCP_VARS_TOS_OFFSET(pfid), DEF_TOS);
Michael Chan71034ba2009-10-10 13:46:59 +00004204 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00004205 XSTORM_ISCSI_TCP_VARS_ADV_WND_SCL_OFFSET(pfid), 2);
Michael Chan71034ba2009-10-10 13:46:59 +00004206 CNIC_WR(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00004207 XSTORM_TCP_TX_SWS_TIMER_VAL_OFFSET(pfid), DEF_SWS_TIMER);
Michael Chan71034ba2009-10-10 13:46:59 +00004208
Michael Chan14203982010-10-06 03:16:06 +00004209 CNIC_WR(dev, BAR_TSTRORM_INTMEM + TSTORM_TCP_MAX_CWND_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00004210 DEF_MAX_CWND);
4211 return 0;
4212}
4213
Michael Chanfdf24082010-10-13 14:06:47 +00004214static void cnic_delete_task(struct work_struct *work)
4215{
4216 struct cnic_local *cp;
4217 struct cnic_dev *dev;
4218 u32 i;
4219 int need_resched = 0;
4220
4221 cp = container_of(work, struct cnic_local, delete_task.work);
4222 dev = cp->dev;
4223
Dmitry Kravkovfab0dc82011-03-31 17:04:22 -07004224 if (test_and_clear_bit(CNIC_LCL_FL_STOP_ISCSI, &cp->cnic_local_flags)) {
4225 struct drv_ctl_info info;
4226
Dmitry Kravkovfab0dc82011-03-31 17:04:22 -07004227 cnic_ulp_stop_one(cp, CNIC_ULP_ISCSI);
Dmitry Kravkovfab0dc82011-03-31 17:04:22 -07004228
4229 info.cmd = DRV_CTL_ISCSI_STOPPED_CMD;
4230 cp->ethdev->drv_ctl(dev->netdev, &info);
4231 }
4232
Michael Chanfdf24082010-10-13 14:06:47 +00004233 for (i = 0; i < cp->max_cid_space; i++) {
4234 struct cnic_context *ctx = &cp->ctx_tbl[i];
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03004235 int err;
Michael Chanfdf24082010-10-13 14:06:47 +00004236
4237 if (!test_bit(CTX_FL_OFFLD_START, &ctx->ctx_flags) ||
4238 !test_bit(CTX_FL_DELETE_WAIT, &ctx->ctx_flags))
4239 continue;
4240
4241 if (!time_after(jiffies, ctx->timestamp + (2 * HZ))) {
4242 need_resched = 1;
4243 continue;
4244 }
4245
4246 if (!test_and_clear_bit(CTX_FL_DELETE_WAIT, &ctx->ctx_flags))
4247 continue;
4248
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03004249 err = cnic_bnx2x_destroy_ramrod(dev, i);
Michael Chanfdf24082010-10-13 14:06:47 +00004250
4251 cnic_free_bnx2x_conn_resc(dev, i);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03004252 if (!err) {
4253 if (ctx->ulp_proto_id == CNIC_ULP_ISCSI)
4254 atomic_dec(&cp->iscsi_conn);
Michael Chanfdf24082010-10-13 14:06:47 +00004255
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03004256 clear_bit(CTX_FL_OFFLD_START, &ctx->ctx_flags);
4257 }
Michael Chanfdf24082010-10-13 14:06:47 +00004258 }
4259
4260 if (need_resched)
4261 queue_delayed_work(cnic_wq, &cp->delete_task,
4262 msecs_to_jiffies(10));
4263
4264}
4265
Michael Chana4636962009-06-08 18:14:43 -07004266static int cnic_cm_open(struct cnic_dev *dev)
4267{
4268 struct cnic_local *cp = dev->cnic_priv;
4269 int err;
4270
4271 err = cnic_cm_alloc_mem(dev);
4272 if (err)
4273 return err;
4274
4275 err = cp->start_cm(dev);
4276
4277 if (err)
4278 goto err_out;
4279
Michael Chanfdf24082010-10-13 14:06:47 +00004280 INIT_DELAYED_WORK(&cp->delete_task, cnic_delete_task);
4281
Michael Chana4636962009-06-08 18:14:43 -07004282 dev->cm_create = cnic_cm_create;
4283 dev->cm_destroy = cnic_cm_destroy;
4284 dev->cm_connect = cnic_cm_connect;
4285 dev->cm_abort = cnic_cm_abort;
4286 dev->cm_close = cnic_cm_close;
4287 dev->cm_select_dev = cnic_cm_select_dev;
4288
4289 cp->ulp_handle[CNIC_ULP_L4] = dev;
4290 rcu_assign_pointer(cp->ulp_ops[CNIC_ULP_L4], &cm_ulp_ops);
4291 return 0;
4292
4293err_out:
4294 cnic_cm_free_mem(dev);
4295 return err;
4296}
4297
4298static int cnic_cm_shutdown(struct cnic_dev *dev)
4299{
4300 struct cnic_local *cp = dev->cnic_priv;
4301 int i;
4302
Michael Chana4636962009-06-08 18:14:43 -07004303 if (!cp->csk_tbl)
4304 return 0;
4305
4306 for (i = 0; i < MAX_CM_SK_TBL_SZ; i++) {
4307 struct cnic_sock *csk = &cp->csk_tbl[i];
4308
4309 clear_bit(SK_F_INUSE, &csk->flags);
4310 cnic_cm_cleanup(csk);
4311 }
4312 cnic_cm_free_mem(dev);
4313
4314 return 0;
4315}
4316
4317static void cnic_init_context(struct cnic_dev *dev, u32 cid)
4318{
Michael Chana4636962009-06-08 18:14:43 -07004319 u32 cid_addr;
4320 int i;
4321
Michael Chana4636962009-06-08 18:14:43 -07004322 cid_addr = GET_CID_ADDR(cid);
4323
4324 for (i = 0; i < CTX_SIZE; i += 4)
4325 cnic_ctx_wr(dev, cid_addr, i, 0);
4326}
4327
4328static int cnic_setup_5709_context(struct cnic_dev *dev, int valid)
4329{
4330 struct cnic_local *cp = dev->cnic_priv;
4331 int ret = 0, i;
4332 u32 valid_bit = valid ? BNX2_CTX_HOST_PAGE_TBL_DATA0_VALID : 0;
4333
4334 if (CHIP_NUM(cp) != CHIP_NUM_5709)
4335 return 0;
4336
4337 for (i = 0; i < cp->ctx_blks; i++) {
4338 int j;
4339 u32 idx = cp->ctx_arr[i].cid / cp->cids_per_blk;
4340 u32 val;
4341
4342 memset(cp->ctx_arr[i].ctx, 0, BCM_PAGE_SIZE);
4343
4344 CNIC_WR(dev, BNX2_CTX_HOST_PAGE_TBL_DATA0,
4345 (cp->ctx_arr[i].mapping & 0xffffffff) | valid_bit);
4346 CNIC_WR(dev, BNX2_CTX_HOST_PAGE_TBL_DATA1,
4347 (u64) cp->ctx_arr[i].mapping >> 32);
4348 CNIC_WR(dev, BNX2_CTX_HOST_PAGE_TBL_CTRL, idx |
4349 BNX2_CTX_HOST_PAGE_TBL_CTRL_WRITE_REQ);
4350 for (j = 0; j < 10; j++) {
4351
4352 val = CNIC_RD(dev, BNX2_CTX_HOST_PAGE_TBL_CTRL);
4353 if (!(val & BNX2_CTX_HOST_PAGE_TBL_CTRL_WRITE_REQ))
4354 break;
4355 udelay(5);
4356 }
4357 if (val & BNX2_CTX_HOST_PAGE_TBL_CTRL_WRITE_REQ) {
4358 ret = -EBUSY;
4359 break;
4360 }
4361 }
4362 return ret;
4363}
4364
4365static void cnic_free_irq(struct cnic_dev *dev)
4366{
4367 struct cnic_local *cp = dev->cnic_priv;
4368 struct cnic_eth_dev *ethdev = cp->ethdev;
4369
4370 if (ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX) {
4371 cp->disable_int_sync(dev);
Michael Chan6e0dc642010-10-13 14:06:44 +00004372 tasklet_kill(&cp->cnic_irq_task);
Michael Chana4636962009-06-08 18:14:43 -07004373 free_irq(ethdev->irq_arr[0].vector, dev);
4374 }
4375}
4376
Michael Chan6e0dc642010-10-13 14:06:44 +00004377static int cnic_request_irq(struct cnic_dev *dev)
4378{
4379 struct cnic_local *cp = dev->cnic_priv;
4380 struct cnic_eth_dev *ethdev = cp->ethdev;
4381 int err;
4382
4383 err = request_irq(ethdev->irq_arr[0].vector, cnic_irq, 0, "cnic", dev);
4384 if (err)
4385 tasklet_disable(&cp->cnic_irq_task);
4386
4387 return err;
4388}
4389
Michael Chana4636962009-06-08 18:14:43 -07004390static int cnic_init_bnx2_irq(struct cnic_dev *dev)
4391{
4392 struct cnic_local *cp = dev->cnic_priv;
4393 struct cnic_eth_dev *ethdev = cp->ethdev;
4394
4395 if (ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX) {
4396 int err, i = 0;
4397 int sblk_num = cp->status_blk_num;
4398 u32 base = ((sblk_num - 1) * BNX2_HC_SB_CONFIG_SIZE) +
4399 BNX2_HC_SB_CONFIG_1;
4400
4401 CNIC_WR(dev, base, BNX2_HC_SB_CONFIG_1_ONE_SHOT);
4402
4403 CNIC_WR(dev, base + BNX2_HC_COMP_PROD_TRIP_OFF, (2 << 16) | 8);
4404 CNIC_WR(dev, base + BNX2_HC_COM_TICKS_OFF, (64 << 16) | 220);
4405 CNIC_WR(dev, base + BNX2_HC_CMD_TICKS_OFF, (64 << 16) | 220);
4406
Michael Chana4dde3a2010-02-24 14:42:08 +00004407 cp->last_status_idx = cp->status_blk.bnx2->status_idx;
Joe Perches164165d2009-11-19 09:30:10 +00004408 tasklet_init(&cp->cnic_irq_task, cnic_service_bnx2_msix,
Michael Chana4636962009-06-08 18:14:43 -07004409 (unsigned long) dev);
Michael Chan6e0dc642010-10-13 14:06:44 +00004410 err = cnic_request_irq(dev);
4411 if (err)
Michael Chana4636962009-06-08 18:14:43 -07004412 return err;
Michael Chan6e0dc642010-10-13 14:06:44 +00004413
Michael Chana4dde3a2010-02-24 14:42:08 +00004414 while (cp->status_blk.bnx2->status_completion_producer_index &&
Michael Chana4636962009-06-08 18:14:43 -07004415 i < 10) {
4416 CNIC_WR(dev, BNX2_HC_COALESCE_NOW,
4417 1 << (11 + sblk_num));
4418 udelay(10);
4419 i++;
4420 barrier();
4421 }
Michael Chana4dde3a2010-02-24 14:42:08 +00004422 if (cp->status_blk.bnx2->status_completion_producer_index) {
Michael Chana4636962009-06-08 18:14:43 -07004423 cnic_free_irq(dev);
4424 goto failed;
4425 }
4426
4427 } else {
Michael Chana4dde3a2010-02-24 14:42:08 +00004428 struct status_block *sblk = cp->status_blk.gen;
Michael Chana4636962009-06-08 18:14:43 -07004429 u32 hc_cmd = CNIC_RD(dev, BNX2_HC_COMMAND);
4430 int i = 0;
4431
4432 while (sblk->status_completion_producer_index && i < 10) {
4433 CNIC_WR(dev, BNX2_HC_COMMAND,
4434 hc_cmd | BNX2_HC_COMMAND_COAL_NOW_WO_INT);
4435 udelay(10);
4436 i++;
4437 barrier();
4438 }
4439 if (sblk->status_completion_producer_index)
4440 goto failed;
4441
4442 }
4443 return 0;
4444
4445failed:
Joe Perchesddf79b22010-02-17 15:01:54 +00004446 netdev_err(dev->netdev, "KCQ index not resetting to 0\n");
Michael Chana4636962009-06-08 18:14:43 -07004447 return -EBUSY;
4448}
4449
4450static void cnic_enable_bnx2_int(struct cnic_dev *dev)
4451{
4452 struct cnic_local *cp = dev->cnic_priv;
4453 struct cnic_eth_dev *ethdev = cp->ethdev;
4454
4455 if (!(ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX))
4456 return;
4457
4458 CNIC_WR(dev, BNX2_PCICFG_INT_ACK_CMD, cp->int_num |
4459 BNX2_PCICFG_INT_ACK_CMD_INDEX_VALID | cp->last_status_idx);
4460}
4461
4462static void cnic_disable_bnx2_int_sync(struct cnic_dev *dev)
4463{
4464 struct cnic_local *cp = dev->cnic_priv;
4465 struct cnic_eth_dev *ethdev = cp->ethdev;
4466
4467 if (!(ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX))
4468 return;
4469
4470 CNIC_WR(dev, BNX2_PCICFG_INT_ACK_CMD, cp->int_num |
4471 BNX2_PCICFG_INT_ACK_CMD_MASK_INT);
4472 CNIC_RD(dev, BNX2_PCICFG_INT_ACK_CMD);
4473 synchronize_irq(ethdev->irq_arr[0].vector);
4474}
4475
4476static void cnic_init_bnx2_tx_ring(struct cnic_dev *dev)
4477{
4478 struct cnic_local *cp = dev->cnic_priv;
4479 struct cnic_eth_dev *ethdev = cp->ethdev;
Michael Chancd801532010-10-13 14:06:49 +00004480 struct cnic_uio_dev *udev = cp->udev;
Michael Chana4636962009-06-08 18:14:43 -07004481 u32 cid_addr, tx_cid, sb_id;
4482 u32 val, offset0, offset1, offset2, offset3;
4483 int i;
4484 struct tx_bd *txbd;
Michael Chancd801532010-10-13 14:06:49 +00004485 dma_addr_t buf_map, ring_map = udev->l2_ring_map;
Michael Chana4dde3a2010-02-24 14:42:08 +00004486 struct status_block *s_blk = cp->status_blk.gen;
Michael Chana4636962009-06-08 18:14:43 -07004487
4488 sb_id = cp->status_blk_num;
4489 tx_cid = 20;
Michael Chana4636962009-06-08 18:14:43 -07004490 cp->tx_cons_ptr = &s_blk->status_tx_quick_consumer_index2;
4491 if (ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX) {
Michael Chana4dde3a2010-02-24 14:42:08 +00004492 struct status_block_msix *sblk = cp->status_blk.bnx2;
Michael Chana4636962009-06-08 18:14:43 -07004493
4494 tx_cid = TX_TSS_CID + sb_id - 1;
Michael Chana4636962009-06-08 18:14:43 -07004495 CNIC_WR(dev, BNX2_TSCH_TSS_CFG, (sb_id << 24) |
4496 (TX_TSS_CID << 7));
4497 cp->tx_cons_ptr = &sblk->status_tx_quick_consumer_index;
4498 }
4499 cp->tx_cons = *cp->tx_cons_ptr;
4500
4501 cid_addr = GET_CID_ADDR(tx_cid);
4502 if (CHIP_NUM(cp) == CHIP_NUM_5709) {
4503 u32 cid_addr2 = GET_CID_ADDR(tx_cid + 4) + 0x40;
4504
4505 for (i = 0; i < PHY_CTX_SIZE; i += 4)
4506 cnic_ctx_wr(dev, cid_addr2, i, 0);
4507
4508 offset0 = BNX2_L2CTX_TYPE_XI;
4509 offset1 = BNX2_L2CTX_CMD_TYPE_XI;
4510 offset2 = BNX2_L2CTX_TBDR_BHADDR_HI_XI;
4511 offset3 = BNX2_L2CTX_TBDR_BHADDR_LO_XI;
4512 } else {
Michael Chanb58ffb42010-05-27 16:31:41 -07004513 cnic_init_context(dev, tx_cid);
4514 cnic_init_context(dev, tx_cid + 1);
4515
Michael Chana4636962009-06-08 18:14:43 -07004516 offset0 = BNX2_L2CTX_TYPE;
4517 offset1 = BNX2_L2CTX_CMD_TYPE;
4518 offset2 = BNX2_L2CTX_TBDR_BHADDR_HI;
4519 offset3 = BNX2_L2CTX_TBDR_BHADDR_LO;
4520 }
4521 val = BNX2_L2CTX_TYPE_TYPE_L2 | BNX2_L2CTX_TYPE_SIZE_L2;
4522 cnic_ctx_wr(dev, cid_addr, offset0, val);
4523
4524 val = BNX2_L2CTX_CMD_TYPE_TYPE_L2 | (8 << 16);
4525 cnic_ctx_wr(dev, cid_addr, offset1, val);
4526
Joe Perches43d620c2011-06-16 19:08:06 +00004527 txbd = udev->l2_ring;
Michael Chana4636962009-06-08 18:14:43 -07004528
Michael Chancd801532010-10-13 14:06:49 +00004529 buf_map = udev->l2_buf_map;
Michael Chana4636962009-06-08 18:14:43 -07004530 for (i = 0; i < MAX_TX_DESC_CNT; i++, txbd++) {
4531 txbd->tx_bd_haddr_hi = (u64) buf_map >> 32;
4532 txbd->tx_bd_haddr_lo = (u64) buf_map & 0xffffffff;
4533 }
Michael Chancd801532010-10-13 14:06:49 +00004534 val = (u64) ring_map >> 32;
Michael Chana4636962009-06-08 18:14:43 -07004535 cnic_ctx_wr(dev, cid_addr, offset2, val);
4536 txbd->tx_bd_haddr_hi = val;
4537
Michael Chancd801532010-10-13 14:06:49 +00004538 val = (u64) ring_map & 0xffffffff;
Michael Chana4636962009-06-08 18:14:43 -07004539 cnic_ctx_wr(dev, cid_addr, offset3, val);
4540 txbd->tx_bd_haddr_lo = val;
4541}
4542
4543static void cnic_init_bnx2_rx_ring(struct cnic_dev *dev)
4544{
4545 struct cnic_local *cp = dev->cnic_priv;
4546 struct cnic_eth_dev *ethdev = cp->ethdev;
Michael Chancd801532010-10-13 14:06:49 +00004547 struct cnic_uio_dev *udev = cp->udev;
Michael Chana4636962009-06-08 18:14:43 -07004548 u32 cid_addr, sb_id, val, coal_reg, coal_val;
4549 int i;
4550 struct rx_bd *rxbd;
Michael Chana4dde3a2010-02-24 14:42:08 +00004551 struct status_block *s_blk = cp->status_blk.gen;
Michael Chancd801532010-10-13 14:06:49 +00004552 dma_addr_t ring_map = udev->l2_ring_map;
Michael Chana4636962009-06-08 18:14:43 -07004553
4554 sb_id = cp->status_blk_num;
4555 cnic_init_context(dev, 2);
4556 cp->rx_cons_ptr = &s_blk->status_rx_quick_consumer_index2;
4557 coal_reg = BNX2_HC_COMMAND;
4558 coal_val = CNIC_RD(dev, coal_reg);
4559 if (ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX) {
Michael Chana4dde3a2010-02-24 14:42:08 +00004560 struct status_block_msix *sblk = cp->status_blk.bnx2;
Michael Chana4636962009-06-08 18:14:43 -07004561
4562 cp->rx_cons_ptr = &sblk->status_rx_quick_consumer_index;
4563 coal_reg = BNX2_HC_COALESCE_NOW;
4564 coal_val = 1 << (11 + sb_id);
4565 }
4566 i = 0;
4567 while (!(*cp->rx_cons_ptr != 0) && i < 10) {
4568 CNIC_WR(dev, coal_reg, coal_val);
4569 udelay(10);
4570 i++;
4571 barrier();
4572 }
4573 cp->rx_cons = *cp->rx_cons_ptr;
4574
4575 cid_addr = GET_CID_ADDR(2);
4576 val = BNX2_L2CTX_CTX_TYPE_CTX_BD_CHN_TYPE_VALUE |
4577 BNX2_L2CTX_CTX_TYPE_SIZE_L2 | (0x02 << 8);
4578 cnic_ctx_wr(dev, cid_addr, BNX2_L2CTX_CTX_TYPE, val);
4579
4580 if (sb_id == 0)
Michael Chand0549382009-10-28 03:41:59 -07004581 val = 2 << BNX2_L2CTX_L2_STATUSB_NUM_SHIFT;
Michael Chana4636962009-06-08 18:14:43 -07004582 else
Michael Chand0549382009-10-28 03:41:59 -07004583 val = BNX2_L2CTX_L2_STATUSB_NUM(sb_id);
Michael Chana4636962009-06-08 18:14:43 -07004584 cnic_ctx_wr(dev, cid_addr, BNX2_L2CTX_HOST_BDIDX, val);
4585
Joe Perches43d620c2011-06-16 19:08:06 +00004586 rxbd = udev->l2_ring + BCM_PAGE_SIZE;
Michael Chana4636962009-06-08 18:14:43 -07004587 for (i = 0; i < MAX_RX_DESC_CNT; i++, rxbd++) {
4588 dma_addr_t buf_map;
4589 int n = (i % cp->l2_rx_ring_size) + 1;
4590
Michael Chancd801532010-10-13 14:06:49 +00004591 buf_map = udev->l2_buf_map + (n * cp->l2_single_buf_size);
Michael Chana4636962009-06-08 18:14:43 -07004592 rxbd->rx_bd_len = cp->l2_single_buf_size;
4593 rxbd->rx_bd_flags = RX_BD_FLAGS_START | RX_BD_FLAGS_END;
4594 rxbd->rx_bd_haddr_hi = (u64) buf_map >> 32;
4595 rxbd->rx_bd_haddr_lo = (u64) buf_map & 0xffffffff;
4596 }
Michael Chancd801532010-10-13 14:06:49 +00004597 val = (u64) (ring_map + BCM_PAGE_SIZE) >> 32;
Michael Chana4636962009-06-08 18:14:43 -07004598 cnic_ctx_wr(dev, cid_addr, BNX2_L2CTX_NX_BDHADDR_HI, val);
4599 rxbd->rx_bd_haddr_hi = val;
4600
Michael Chancd801532010-10-13 14:06:49 +00004601 val = (u64) (ring_map + BCM_PAGE_SIZE) & 0xffffffff;
Michael Chana4636962009-06-08 18:14:43 -07004602 cnic_ctx_wr(dev, cid_addr, BNX2_L2CTX_NX_BDHADDR_LO, val);
4603 rxbd->rx_bd_haddr_lo = val;
4604
4605 val = cnic_reg_rd_ind(dev, BNX2_RXP_SCRATCH_RXP_FLOOD);
4606 cnic_reg_wr_ind(dev, BNX2_RXP_SCRATCH_RXP_FLOOD, val | (1 << 2));
4607}
4608
4609static void cnic_shutdown_bnx2_rx_ring(struct cnic_dev *dev)
4610{
4611 struct kwqe *wqes[1], l2kwqe;
4612
4613 memset(&l2kwqe, 0, sizeof(l2kwqe));
4614 wqes[0] = &l2kwqe;
Michael Chane1928c82010-12-23 07:43:04 +00004615 l2kwqe.kwqe_op_flag = (L2_LAYER_CODE << KWQE_LAYER_SHIFT) |
Michael Chana4636962009-06-08 18:14:43 -07004616 (L2_KWQE_OPCODE_VALUE_FLUSH <<
4617 KWQE_OPCODE_SHIFT) | 2;
4618 dev->submit_kwqes(dev, wqes, 1);
4619}
4620
4621static void cnic_set_bnx2_mac(struct cnic_dev *dev)
4622{
4623 struct cnic_local *cp = dev->cnic_priv;
4624 u32 val;
4625
4626 val = cp->func << 2;
4627
4628 cp->shmem_base = cnic_reg_rd_ind(dev, BNX2_SHM_HDR_ADDR_0 + val);
4629
4630 val = cnic_reg_rd_ind(dev, cp->shmem_base +
4631 BNX2_PORT_HW_CFG_ISCSI_MAC_UPPER);
4632 dev->mac_addr[0] = (u8) (val >> 8);
4633 dev->mac_addr[1] = (u8) val;
4634
4635 CNIC_WR(dev, BNX2_EMAC_MAC_MATCH4, val);
4636
4637 val = cnic_reg_rd_ind(dev, cp->shmem_base +
4638 BNX2_PORT_HW_CFG_ISCSI_MAC_LOWER);
4639 dev->mac_addr[2] = (u8) (val >> 24);
4640 dev->mac_addr[3] = (u8) (val >> 16);
4641 dev->mac_addr[4] = (u8) (val >> 8);
4642 dev->mac_addr[5] = (u8) val;
4643
4644 CNIC_WR(dev, BNX2_EMAC_MAC_MATCH5, val);
4645
4646 val = 4 | BNX2_RPM_SORT_USER2_BC_EN;
4647 if (CHIP_NUM(cp) != CHIP_NUM_5709)
4648 val |= BNX2_RPM_SORT_USER2_PROM_VLAN;
4649
4650 CNIC_WR(dev, BNX2_RPM_SORT_USER2, 0x0);
4651 CNIC_WR(dev, BNX2_RPM_SORT_USER2, val);
4652 CNIC_WR(dev, BNX2_RPM_SORT_USER2, val | BNX2_RPM_SORT_USER2_ENA);
4653}
4654
4655static int cnic_start_bnx2_hw(struct cnic_dev *dev)
4656{
4657 struct cnic_local *cp = dev->cnic_priv;
4658 struct cnic_eth_dev *ethdev = cp->ethdev;
Michael Chana4dde3a2010-02-24 14:42:08 +00004659 struct status_block *sblk = cp->status_blk.gen;
Michael Chane6c28892010-06-24 14:58:39 +00004660 u32 val, kcq_cid_addr, kwq_cid_addr;
Michael Chana4636962009-06-08 18:14:43 -07004661 int err;
4662
4663 cnic_set_bnx2_mac(dev);
4664
4665 val = CNIC_RD(dev, BNX2_MQ_CONFIG);
4666 val &= ~BNX2_MQ_CONFIG_KNL_BYP_BLK_SIZE;
4667 if (BCM_PAGE_BITS > 12)
4668 val |= (12 - 8) << 4;
4669 else
4670 val |= (BCM_PAGE_BITS - 8) << 4;
4671
4672 CNIC_WR(dev, BNX2_MQ_CONFIG, val);
4673
4674 CNIC_WR(dev, BNX2_HC_COMP_PROD_TRIP, (2 << 16) | 8);
4675 CNIC_WR(dev, BNX2_HC_COM_TICKS, (64 << 16) | 220);
4676 CNIC_WR(dev, BNX2_HC_CMD_TICKS, (64 << 16) | 220);
4677
4678 err = cnic_setup_5709_context(dev, 1);
4679 if (err)
4680 return err;
4681
4682 cnic_init_context(dev, KWQ_CID);
4683 cnic_init_context(dev, KCQ_CID);
4684
Michael Chane6c28892010-06-24 14:58:39 +00004685 kwq_cid_addr = GET_CID_ADDR(KWQ_CID);
Michael Chana4636962009-06-08 18:14:43 -07004686 cp->kwq_io_addr = MB_GET_CID_ADDR(KWQ_CID) + L5_KRNLQ_HOST_QIDX;
4687
4688 cp->max_kwq_idx = MAX_KWQ_IDX;
4689 cp->kwq_prod_idx = 0;
4690 cp->kwq_con_idx = 0;
Michael Chan1f1332a2010-05-18 11:32:52 +00004691 set_bit(CNIC_LCL_FL_KWQ_INIT, &cp->cnic_local_flags);
Michael Chana4636962009-06-08 18:14:43 -07004692
4693 if (CHIP_NUM(cp) == CHIP_NUM_5706 || CHIP_NUM(cp) == CHIP_NUM_5708)
4694 cp->kwq_con_idx_ptr = &sblk->status_rx_quick_consumer_index15;
4695 else
4696 cp->kwq_con_idx_ptr = &sblk->status_cmd_consumer_index;
4697
4698 /* Initialize the kernel work queue context. */
4699 val = KRNLQ_TYPE_TYPE_KRNLQ | KRNLQ_SIZE_TYPE_SIZE |
4700 (BCM_PAGE_BITS - 8) | KRNLQ_FLAGS_QE_SELF_SEQ;
Michael Chane6c28892010-06-24 14:58:39 +00004701 cnic_ctx_wr(dev, kwq_cid_addr, L5_KRNLQ_TYPE, val);
Michael Chana4636962009-06-08 18:14:43 -07004702
4703 val = (BCM_PAGE_SIZE / sizeof(struct kwqe) - 1) << 16;
Michael Chane6c28892010-06-24 14:58:39 +00004704 cnic_ctx_wr(dev, kwq_cid_addr, L5_KRNLQ_QE_SELF_SEQ_MAX, val);
Michael Chana4636962009-06-08 18:14:43 -07004705
4706 val = ((BCM_PAGE_SIZE / sizeof(struct kwqe)) << 16) | KWQ_PAGE_CNT;
Michael Chane6c28892010-06-24 14:58:39 +00004707 cnic_ctx_wr(dev, kwq_cid_addr, L5_KRNLQ_PGTBL_NPAGES, val);
Michael Chana4636962009-06-08 18:14:43 -07004708
4709 val = (u32) ((u64) cp->kwq_info.pgtbl_map >> 32);
Michael Chane6c28892010-06-24 14:58:39 +00004710 cnic_ctx_wr(dev, kwq_cid_addr, L5_KRNLQ_PGTBL_HADDR_HI, val);
Michael Chana4636962009-06-08 18:14:43 -07004711
4712 val = (u32) cp->kwq_info.pgtbl_map;
Michael Chane6c28892010-06-24 14:58:39 +00004713 cnic_ctx_wr(dev, kwq_cid_addr, L5_KRNLQ_PGTBL_HADDR_LO, val);
Michael Chana4636962009-06-08 18:14:43 -07004714
Michael Chane6c28892010-06-24 14:58:39 +00004715 kcq_cid_addr = GET_CID_ADDR(KCQ_CID);
4716 cp->kcq1.io_addr = MB_GET_CID_ADDR(KCQ_CID) + L5_KRNLQ_HOST_QIDX;
Michael Chana4636962009-06-08 18:14:43 -07004717
Michael Chane6c28892010-06-24 14:58:39 +00004718 cp->kcq1.sw_prod_idx = 0;
4719 cp->kcq1.hw_prod_idx_ptr =
Joe Perches64699332012-06-04 12:44:16 +00004720 &sblk->status_completion_producer_index;
Michael Chane6c28892010-06-24 14:58:39 +00004721
Joe Perches64699332012-06-04 12:44:16 +00004722 cp->kcq1.status_idx_ptr = &sblk->status_idx;
Michael Chana4636962009-06-08 18:14:43 -07004723
4724 /* Initialize the kernel complete queue context. */
4725 val = KRNLQ_TYPE_TYPE_KRNLQ | KRNLQ_SIZE_TYPE_SIZE |
4726 (BCM_PAGE_BITS - 8) | KRNLQ_FLAGS_QE_SELF_SEQ;
Michael Chane6c28892010-06-24 14:58:39 +00004727 cnic_ctx_wr(dev, kcq_cid_addr, L5_KRNLQ_TYPE, val);
Michael Chana4636962009-06-08 18:14:43 -07004728
4729 val = (BCM_PAGE_SIZE / sizeof(struct kcqe) - 1) << 16;
Michael Chane6c28892010-06-24 14:58:39 +00004730 cnic_ctx_wr(dev, kcq_cid_addr, L5_KRNLQ_QE_SELF_SEQ_MAX, val);
Michael Chana4636962009-06-08 18:14:43 -07004731
4732 val = ((BCM_PAGE_SIZE / sizeof(struct kcqe)) << 16) | KCQ_PAGE_CNT;
Michael Chane6c28892010-06-24 14:58:39 +00004733 cnic_ctx_wr(dev, kcq_cid_addr, L5_KRNLQ_PGTBL_NPAGES, val);
Michael Chana4636962009-06-08 18:14:43 -07004734
Michael Chane6c28892010-06-24 14:58:39 +00004735 val = (u32) ((u64) cp->kcq1.dma.pgtbl_map >> 32);
4736 cnic_ctx_wr(dev, kcq_cid_addr, L5_KRNLQ_PGTBL_HADDR_HI, val);
Michael Chana4636962009-06-08 18:14:43 -07004737
Michael Chane6c28892010-06-24 14:58:39 +00004738 val = (u32) cp->kcq1.dma.pgtbl_map;
4739 cnic_ctx_wr(dev, kcq_cid_addr, L5_KRNLQ_PGTBL_HADDR_LO, val);
Michael Chana4636962009-06-08 18:14:43 -07004740
4741 cp->int_num = 0;
4742 if (ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX) {
Michael Chane6c28892010-06-24 14:58:39 +00004743 struct status_block_msix *msblk = cp->status_blk.bnx2;
Michael Chana4636962009-06-08 18:14:43 -07004744 u32 sb_id = cp->status_blk_num;
Michael Chand0549382009-10-28 03:41:59 -07004745 u32 sb = BNX2_L2CTX_L5_STATUSB_NUM(sb_id);
Michael Chana4636962009-06-08 18:14:43 -07004746
Michael Chane6c28892010-06-24 14:58:39 +00004747 cp->kcq1.hw_prod_idx_ptr =
Joe Perches64699332012-06-04 12:44:16 +00004748 &msblk->status_completion_producer_index;
4749 cp->kcq1.status_idx_ptr = &msblk->status_idx;
4750 cp->kwq_con_idx_ptr = &msblk->status_cmd_consumer_index;
Michael Chana4636962009-06-08 18:14:43 -07004751 cp->int_num = sb_id << BNX2_PCICFG_INT_ACK_CMD_INT_NUM_SHIFT;
Michael Chane6c28892010-06-24 14:58:39 +00004752 cnic_ctx_wr(dev, kwq_cid_addr, L5_KRNLQ_HOST_QIDX, sb);
4753 cnic_ctx_wr(dev, kcq_cid_addr, L5_KRNLQ_HOST_QIDX, sb);
Michael Chana4636962009-06-08 18:14:43 -07004754 }
4755
4756 /* Enable Commnad Scheduler notification when we write to the
4757 * host producer index of the kernel contexts. */
4758 CNIC_WR(dev, BNX2_MQ_KNL_CMD_MASK1, 2);
4759
4760 /* Enable Command Scheduler notification when we write to either
4761 * the Send Queue or Receive Queue producer indexes of the kernel
4762 * bypass contexts. */
4763 CNIC_WR(dev, BNX2_MQ_KNL_BYP_CMD_MASK1, 7);
4764 CNIC_WR(dev, BNX2_MQ_KNL_BYP_WRITE_MASK1, 7);
4765
4766 /* Notify COM when the driver post an application buffer. */
4767 CNIC_WR(dev, BNX2_MQ_KNL_RX_V2P_MASK2, 0x2000);
4768
4769 /* Set the CP and COM doorbells. These two processors polls the
4770 * doorbell for a non zero value before running. This must be done
4771 * after setting up the kernel queue contexts. */
4772 cnic_reg_wr_ind(dev, BNX2_CP_SCRATCH + 0x20, 1);
4773 cnic_reg_wr_ind(dev, BNX2_COM_SCRATCH + 0x20, 1);
4774
4775 cnic_init_bnx2_tx_ring(dev);
4776 cnic_init_bnx2_rx_ring(dev);
4777
4778 err = cnic_init_bnx2_irq(dev);
4779 if (err) {
Joe Perchesddf79b22010-02-17 15:01:54 +00004780 netdev_err(dev->netdev, "cnic_init_irq failed\n");
Michael Chana4636962009-06-08 18:14:43 -07004781 cnic_reg_wr_ind(dev, BNX2_CP_SCRATCH + 0x20, 0);
4782 cnic_reg_wr_ind(dev, BNX2_COM_SCRATCH + 0x20, 0);
4783 return err;
4784 }
4785
4786 return 0;
4787}
4788
Michael Chan71034ba2009-10-10 13:46:59 +00004789static void cnic_setup_bnx2x_context(struct cnic_dev *dev)
4790{
4791 struct cnic_local *cp = dev->cnic_priv;
4792 struct cnic_eth_dev *ethdev = cp->ethdev;
4793 u32 start_offset = ethdev->ctx_tbl_offset;
4794 int i;
4795
4796 for (i = 0; i < cp->ctx_blks; i++) {
4797 struct cnic_ctx *ctx = &cp->ctx_arr[i];
4798 dma_addr_t map = ctx->mapping;
4799
4800 if (cp->ctx_align) {
4801 unsigned long mask = cp->ctx_align - 1;
4802
4803 map = (map + mask) & ~mask;
4804 }
4805
4806 cnic_ctx_tbl_wr(dev, start_offset + i, map);
4807 }
4808}
4809
4810static int cnic_init_bnx2x_irq(struct cnic_dev *dev)
4811{
4812 struct cnic_local *cp = dev->cnic_priv;
4813 struct cnic_eth_dev *ethdev = cp->ethdev;
4814 int err = 0;
4815
Joe Perches164165d2009-11-19 09:30:10 +00004816 tasklet_init(&cp->cnic_irq_task, cnic_service_bnx2x_bh,
Michael Chan71034ba2009-10-10 13:46:59 +00004817 (unsigned long) dev);
Michael Chan6e0dc642010-10-13 14:06:44 +00004818 if (ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX)
4819 err = cnic_request_irq(dev);
4820
Michael Chan71034ba2009-10-10 13:46:59 +00004821 return err;
4822}
4823
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004824static inline void cnic_storm_memset_hc_disable(struct cnic_dev *dev,
4825 u16 sb_id, u8 sb_index,
4826 u8 disable)
4827{
4828
4829 u32 addr = BAR_CSTRORM_INTMEM +
4830 CSTORM_STATUS_BLOCK_DATA_OFFSET(sb_id) +
4831 offsetof(struct hc_status_block_data_e1x, index_data) +
4832 sizeof(struct hc_index_data)*sb_index +
4833 offsetof(struct hc_index_data, flags);
4834 u16 flags = CNIC_RD16(dev, addr);
4835 /* clear and set */
4836 flags &= ~HC_INDEX_DATA_HC_ENABLED;
4837 flags |= (((~disable) << HC_INDEX_DATA_HC_ENABLED_SHIFT) &
4838 HC_INDEX_DATA_HC_ENABLED);
4839 CNIC_WR16(dev, addr, flags);
4840}
4841
Michael Chan71034ba2009-10-10 13:46:59 +00004842static void cnic_enable_bnx2x_int(struct cnic_dev *dev)
4843{
4844 struct cnic_local *cp = dev->cnic_priv;
4845 u8 sb_id = cp->status_blk_num;
Michael Chan71034ba2009-10-10 13:46:59 +00004846
4847 CNIC_WR8(dev, BAR_CSTRORM_INTMEM +
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004848 CSTORM_STATUS_BLOCK_DATA_OFFSET(sb_id) +
4849 offsetof(struct hc_status_block_data_e1x, index_data) +
4850 sizeof(struct hc_index_data)*HC_INDEX_ISCSI_EQ_CONS +
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03004851 offsetof(struct hc_index_data, timeout), 64 / 4);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004852 cnic_storm_memset_hc_disable(dev, sb_id, HC_INDEX_ISCSI_EQ_CONS, 0);
Michael Chan71034ba2009-10-10 13:46:59 +00004853}
4854
4855static void cnic_disable_bnx2x_int_sync(struct cnic_dev *dev)
4856{
4857}
4858
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004859static void cnic_init_bnx2x_tx_ring(struct cnic_dev *dev,
4860 struct client_init_ramrod_data *data)
Michael Chan71034ba2009-10-10 13:46:59 +00004861{
4862 struct cnic_local *cp = dev->cnic_priv;
Michael Chancd801532010-10-13 14:06:49 +00004863 struct cnic_uio_dev *udev = cp->udev;
4864 union eth_tx_bd_types *txbd = (union eth_tx_bd_types *) udev->l2_ring;
4865 dma_addr_t buf_map, ring_map = udev->l2_ring_map;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004866 struct host_sp_status_block *sb = cp->bnx2x_def_status_blk;
Michael Chan71034ba2009-10-10 13:46:59 +00004867 int i;
Michael Chan5159fdc2010-12-23 07:42:59 +00004868 u32 cli = cp->ethdev->iscsi_l2_client_id;
Michael Chan71034ba2009-10-10 13:46:59 +00004869 u32 val;
4870
4871 memset(txbd, 0, BCM_PAGE_SIZE);
4872
Michael Chancd801532010-10-13 14:06:49 +00004873 buf_map = udev->l2_buf_map;
Michael Chan71034ba2009-10-10 13:46:59 +00004874 for (i = 0; i < MAX_TX_DESC_CNT; i += 3, txbd += 3) {
4875 struct eth_tx_start_bd *start_bd = &txbd->start_bd;
4876 struct eth_tx_bd *reg_bd = &((txbd + 2)->reg_bd);
4877
4878 start_bd->addr_hi = cpu_to_le32((u64) buf_map >> 32);
4879 start_bd->addr_lo = cpu_to_le32(buf_map & 0xffffffff);
4880 reg_bd->addr_hi = start_bd->addr_hi;
4881 reg_bd->addr_lo = start_bd->addr_lo + 0x10;
4882 start_bd->nbytes = cpu_to_le16(0x10);
4883 start_bd->nbd = cpu_to_le16(3);
4884 start_bd->bd_flags.as_bitfield = ETH_TX_BD_FLAGS_START_BD;
4885 start_bd->general_data = (UNICAST_ADDRESS <<
4886 ETH_TX_START_BD_ETH_ADDR_TYPE_SHIFT);
4887 start_bd->general_data |= (1 << ETH_TX_START_BD_HDR_NBDS_SHIFT);
4888
4889 }
Michael Chan71034ba2009-10-10 13:46:59 +00004890
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004891 val = (u64) ring_map >> 32;
Michael Chan71034ba2009-10-10 13:46:59 +00004892 txbd->next_bd.addr_hi = cpu_to_le32(val);
4893
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004894 data->tx.tx_bd_page_base.hi = cpu_to_le32(val);
Michael Chan71034ba2009-10-10 13:46:59 +00004895
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004896 val = (u64) ring_map & 0xffffffff;
Michael Chan71034ba2009-10-10 13:46:59 +00004897 txbd->next_bd.addr_lo = cpu_to_le32(val);
4898
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004899 data->tx.tx_bd_page_base.lo = cpu_to_le32(val);
Michael Chan71034ba2009-10-10 13:46:59 +00004900
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004901 /* Other ramrod params */
4902 data->tx.tx_sb_index_number = HC_SP_INDEX_ETH_ISCSI_CQ_CONS;
4903 data->tx.tx_status_block_id = BNX2X_DEF_SB_ID;
Michael Chan71034ba2009-10-10 13:46:59 +00004904
4905 /* reset xstorm per client statistics */
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004906 if (cli < MAX_STAT_COUNTER_ID) {
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03004907 data->general.statistics_zero_flg = 1;
4908 data->general.statistics_en_flg = 1;
4909 data->general.statistics_counter_id = cli;
Dmitry Kravkov6b2a5412010-06-23 11:57:09 -07004910 }
Michael Chan71034ba2009-10-10 13:46:59 +00004911
4912 cp->tx_cons_ptr =
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004913 &sb->sp_sb.index_values[HC_SP_INDEX_ETH_ISCSI_CQ_CONS];
Michael Chan71034ba2009-10-10 13:46:59 +00004914}
4915
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004916static void cnic_init_bnx2x_rx_ring(struct cnic_dev *dev,
4917 struct client_init_ramrod_data *data)
Michael Chan71034ba2009-10-10 13:46:59 +00004918{
4919 struct cnic_local *cp = dev->cnic_priv;
Michael Chancd801532010-10-13 14:06:49 +00004920 struct cnic_uio_dev *udev = cp->udev;
4921 struct eth_rx_bd *rxbd = (struct eth_rx_bd *) (udev->l2_ring +
Michael Chan71034ba2009-10-10 13:46:59 +00004922 BCM_PAGE_SIZE);
4923 struct eth_rx_cqe_next_page *rxcqe = (struct eth_rx_cqe_next_page *)
Michael Chancd801532010-10-13 14:06:49 +00004924 (udev->l2_ring + (2 * BCM_PAGE_SIZE));
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004925 struct host_sp_status_block *sb = cp->bnx2x_def_status_blk;
Michael Chan71034ba2009-10-10 13:46:59 +00004926 int i;
Michael Chan5159fdc2010-12-23 07:42:59 +00004927 u32 cli = cp->ethdev->iscsi_l2_client_id;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004928 int cl_qzone_id = BNX2X_CL_QZONE_ID(cp, cli);
Michael Chan71034ba2009-10-10 13:46:59 +00004929 u32 val;
Michael Chancd801532010-10-13 14:06:49 +00004930 dma_addr_t ring_map = udev->l2_ring_map;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004931
4932 /* General data */
4933 data->general.client_id = cli;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004934 data->general.activate_flg = 1;
4935 data->general.sp_client_id = cli;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03004936 data->general.mtu = cpu_to_le16(cp->l2_single_buf_size - 14);
4937 data->general.func_id = cp->pfid;
Michael Chan71034ba2009-10-10 13:46:59 +00004938
4939 for (i = 0; i < BNX2X_MAX_RX_DESC_CNT; i++, rxbd++) {
4940 dma_addr_t buf_map;
4941 int n = (i % cp->l2_rx_ring_size) + 1;
4942
Michael Chancd801532010-10-13 14:06:49 +00004943 buf_map = udev->l2_buf_map + (n * cp->l2_single_buf_size);
Michael Chan71034ba2009-10-10 13:46:59 +00004944 rxbd->addr_hi = cpu_to_le32((u64) buf_map >> 32);
4945 rxbd->addr_lo = cpu_to_le32(buf_map & 0xffffffff);
4946 }
Michael Chan71034ba2009-10-10 13:46:59 +00004947
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004948 val = (u64) (ring_map + BCM_PAGE_SIZE) >> 32;
Michael Chan71034ba2009-10-10 13:46:59 +00004949 rxbd->addr_hi = cpu_to_le32(val);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004950 data->rx.bd_page_base.hi = cpu_to_le32(val);
Michael Chan71034ba2009-10-10 13:46:59 +00004951
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004952 val = (u64) (ring_map + BCM_PAGE_SIZE) & 0xffffffff;
Michael Chan71034ba2009-10-10 13:46:59 +00004953 rxbd->addr_lo = cpu_to_le32(val);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004954 data->rx.bd_page_base.lo = cpu_to_le32(val);
Michael Chan71034ba2009-10-10 13:46:59 +00004955
4956 rxcqe += BNX2X_MAX_RCQ_DESC_CNT;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004957 val = (u64) (ring_map + (2 * BCM_PAGE_SIZE)) >> 32;
Michael Chan71034ba2009-10-10 13:46:59 +00004958 rxcqe->addr_hi = cpu_to_le32(val);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004959 data->rx.cqe_page_base.hi = cpu_to_le32(val);
Michael Chan71034ba2009-10-10 13:46:59 +00004960
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004961 val = (u64) (ring_map + (2 * BCM_PAGE_SIZE)) & 0xffffffff;
Michael Chan71034ba2009-10-10 13:46:59 +00004962 rxcqe->addr_lo = cpu_to_le32(val);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004963 data->rx.cqe_page_base.lo = cpu_to_le32(val);
Michael Chan71034ba2009-10-10 13:46:59 +00004964
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004965 /* Other ramrod params */
4966 data->rx.client_qzone_id = cl_qzone_id;
4967 data->rx.rx_sb_index_number = HC_SP_INDEX_ETH_ISCSI_RX_CQ_CONS;
4968 data->rx.status_block_id = BNX2X_DEF_SB_ID;
Michael Chan71034ba2009-10-10 13:46:59 +00004969
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004970 data->rx.cache_line_alignment_log_size = L1_CACHE_SHIFT;
Michael Chan71034ba2009-10-10 13:46:59 +00004971
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03004972 data->rx.max_bytes_on_bd = cpu_to_le16(cp->l2_single_buf_size);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004973 data->rx.outer_vlan_removal_enable_flg = 1;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03004974 data->rx.silent_vlan_removal_flg = 1;
4975 data->rx.silent_vlan_value = 0;
4976 data->rx.silent_vlan_mask = 0xffff;
Michael Chan71034ba2009-10-10 13:46:59 +00004977
4978 cp->rx_cons_ptr =
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004979 &sb->sp_sb.index_values[HC_SP_INDEX_ETH_ISCSI_RX_CQ_CONS];
Michael Chan5159fdc2010-12-23 07:42:59 +00004980 cp->rx_cons = *cp->rx_cons_ptr;
Michael Chan71034ba2009-10-10 13:46:59 +00004981}
4982
Michael Chane21ba412010-12-23 07:43:03 +00004983static void cnic_init_bnx2x_kcq(struct cnic_dev *dev)
4984{
4985 struct cnic_local *cp = dev->cnic_priv;
4986 u32 pfid = cp->pfid;
4987
4988 cp->kcq1.io_addr = BAR_CSTRORM_INTMEM +
4989 CSTORM_ISCSI_EQ_PROD_OFFSET(pfid, 0);
4990 cp->kcq1.sw_prod_idx = 0;
4991
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03004992 if (BNX2X_CHIP_IS_E2_PLUS(cp->chip_id)) {
Michael Chane21ba412010-12-23 07:43:03 +00004993 struct host_hc_status_block_e2 *sb = cp->status_blk.gen;
4994
4995 cp->kcq1.hw_prod_idx_ptr =
4996 &sb->sb.index_values[HC_INDEX_ISCSI_EQ_CONS];
4997 cp->kcq1.status_idx_ptr =
4998 &sb->sb.running_index[SM_RX_ID];
4999 } else {
5000 struct host_hc_status_block_e1x *sb = cp->status_blk.gen;
5001
5002 cp->kcq1.hw_prod_idx_ptr =
5003 &sb->sb.index_values[HC_INDEX_ISCSI_EQ_CONS];
5004 cp->kcq1.status_idx_ptr =
5005 &sb->sb.running_index[SM_RX_ID];
5006 }
5007
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03005008 if (BNX2X_CHIP_IS_E2_PLUS(cp->chip_id)) {
Michael Chane21ba412010-12-23 07:43:03 +00005009 struct host_hc_status_block_e2 *sb = cp->status_blk.gen;
5010
5011 cp->kcq2.io_addr = BAR_USTRORM_INTMEM +
5012 USTORM_FCOE_EQ_PROD_OFFSET(pfid);
5013 cp->kcq2.sw_prod_idx = 0;
5014 cp->kcq2.hw_prod_idx_ptr =
5015 &sb->sb.index_values[HC_INDEX_FCOE_EQ_CONS];
5016 cp->kcq2.status_idx_ptr =
5017 &sb->sb.running_index[SM_RX_ID];
5018 }
5019}
5020
Michael Chan71034ba2009-10-10 13:46:59 +00005021static int cnic_start_bnx2x_hw(struct cnic_dev *dev)
5022{
5023 struct cnic_local *cp = dev->cnic_priv;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00005024 struct cnic_eth_dev *ethdev = cp->ethdev;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03005025 int func = CNIC_FUNC(cp), ret;
Michael Chan14203982010-10-06 03:16:06 +00005026 u32 pfid;
Michael Chan71034ba2009-10-10 13:46:59 +00005027
Michael Chana9e0a4f2012-01-04 12:12:27 +00005028 dev->stats_addr = ethdev->addr_drv_info_to_mcp;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03005029 cp->port_mode = CHIP_PORT_MODE_NONE;
5030
5031 if (BNX2X_CHIP_IS_E2_PLUS(cp->chip_id)) {
Eddie Wai78ea22e2012-06-27 15:08:20 +00005032 u32 val;
Michael Chanee87a822010-10-13 14:06:51 +00005033
Eddie Wai78ea22e2012-06-27 15:08:20 +00005034 pci_read_config_dword(dev->pcidev, PCICFG_ME_REGISTER, &val);
5035 cp->func = (u8) ((val & ME_REG_ABS_PF_NUM) >>
5036 ME_REG_ABS_PF_NUM_SHIFT);
5037 func = CNIC_FUNC(cp);
5038
5039 val = CNIC_RD(dev, MISC_REG_PORT4MODE_EN_OVWR);
Michael Chanee87a822010-10-13 14:06:51 +00005040 if (!(val & 1))
5041 val = CNIC_RD(dev, MISC_REG_PORT4MODE_EN);
5042 else
5043 val = (val >> 1) & 1;
5044
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03005045 if (val) {
5046 cp->port_mode = CHIP_4_PORT_MODE;
Michael Chanee87a822010-10-13 14:06:51 +00005047 cp->pfid = func >> 1;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03005048 } else {
Michael Chanb7d40312011-07-13 17:24:18 +00005049 cp->port_mode = CHIP_2_PORT_MODE;
Michael Chanee87a822010-10-13 14:06:51 +00005050 cp->pfid = func & 0x6;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03005051 }
Michael Chanee87a822010-10-13 14:06:51 +00005052 } else {
5053 cp->pfid = func;
5054 }
Michael Chan14203982010-10-06 03:16:06 +00005055 pfid = cp->pfid;
5056
Michael Chan71034ba2009-10-10 13:46:59 +00005057 ret = cnic_init_id_tbl(&cp->cid_tbl, MAX_ISCSI_TBL_SZ,
Eddie Wai11f23aa2011-06-08 19:29:34 +00005058 cp->iscsi_start_cid, 0);
Michael Chan71034ba2009-10-10 13:46:59 +00005059
5060 if (ret)
5061 return -ENOMEM;
5062
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03005063 if (BNX2X_CHIP_IS_E2_PLUS(cp->chip_id)) {
Michael Chandc219a22011-08-26 09:45:39 +00005064 ret = cnic_init_id_tbl(&cp->fcoe_cid_tbl, dev->max_fcoe_conn,
Eddie Wai11f23aa2011-06-08 19:29:34 +00005065 cp->fcoe_start_cid, 0);
Michael Chane1928c82010-12-23 07:43:04 +00005066
5067 if (ret)
5068 return -ENOMEM;
5069 }
5070
Dmitry Kravkov523224a2010-10-06 03:23:26 +00005071 cp->bnx2x_igu_sb_id = ethdev->irq_arr[0].status_blk_num2;
5072
Michael Chane21ba412010-12-23 07:43:03 +00005073 cnic_init_bnx2x_kcq(dev);
Michael Chan71034ba2009-10-10 13:46:59 +00005074
Michael Chan71034ba2009-10-10 13:46:59 +00005075 /* Only 1 EQ */
Michael Chane6c28892010-06-24 14:58:39 +00005076 CNIC_WR16(dev, cp->kcq1.io_addr, MAX_KCQ_IDX);
Michael Chan71034ba2009-10-10 13:46:59 +00005077 CNIC_WR(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00005078 CSTORM_ISCSI_EQ_CONS_OFFSET(pfid, 0), 0);
Michael Chan71034ba2009-10-10 13:46:59 +00005079 CNIC_WR(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00005080 CSTORM_ISCSI_EQ_NEXT_PAGE_ADDR_OFFSET(pfid, 0),
Michael Chane6c28892010-06-24 14:58:39 +00005081 cp->kcq1.dma.pg_map_arr[1] & 0xffffffff);
Michael Chan71034ba2009-10-10 13:46:59 +00005082 CNIC_WR(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00005083 CSTORM_ISCSI_EQ_NEXT_PAGE_ADDR_OFFSET(pfid, 0) + 4,
Michael Chane6c28892010-06-24 14:58:39 +00005084 (u64) cp->kcq1.dma.pg_map_arr[1] >> 32);
Michael Chan71034ba2009-10-10 13:46:59 +00005085 CNIC_WR(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00005086 CSTORM_ISCSI_EQ_NEXT_EQE_ADDR_OFFSET(pfid, 0),
Michael Chane6c28892010-06-24 14:58:39 +00005087 cp->kcq1.dma.pg_map_arr[0] & 0xffffffff);
Michael Chan71034ba2009-10-10 13:46:59 +00005088 CNIC_WR(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00005089 CSTORM_ISCSI_EQ_NEXT_EQE_ADDR_OFFSET(pfid, 0) + 4,
Michael Chane6c28892010-06-24 14:58:39 +00005090 (u64) cp->kcq1.dma.pg_map_arr[0] >> 32);
Michael Chan71034ba2009-10-10 13:46:59 +00005091 CNIC_WR8(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00005092 CSTORM_ISCSI_EQ_NEXT_PAGE_ADDR_VALID_OFFSET(pfid, 0), 1);
Michael Chan71034ba2009-10-10 13:46:59 +00005093 CNIC_WR16(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00005094 CSTORM_ISCSI_EQ_SB_NUM_OFFSET(pfid, 0), cp->status_blk_num);
Michael Chan71034ba2009-10-10 13:46:59 +00005095 CNIC_WR8(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00005096 CSTORM_ISCSI_EQ_SB_INDEX_OFFSET(pfid, 0),
Dmitry Kravkov523224a2010-10-06 03:23:26 +00005097 HC_INDEX_ISCSI_EQ_CONS);
Michael Chan71034ba2009-10-10 13:46:59 +00005098
Michael Chan71034ba2009-10-10 13:46:59 +00005099 CNIC_WR(dev, BAR_USTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00005100 USTORM_ISCSI_GLOBAL_BUF_PHYS_ADDR_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00005101 cp->gbl_buf_info.pg_map_arr[0] & 0xffffffff);
5102 CNIC_WR(dev, BAR_USTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00005103 USTORM_ISCSI_GLOBAL_BUF_PHYS_ADDR_OFFSET(pfid) + 4,
Michael Chan71034ba2009-10-10 13:46:59 +00005104 (u64) cp->gbl_buf_info.pg_map_arr[0] >> 32);
5105
Dmitry Kravkov523224a2010-10-06 03:23:26 +00005106 CNIC_WR(dev, BAR_TSTRORM_INTMEM +
5107 TSTORM_ISCSI_TCP_LOCAL_ADV_WND_OFFSET(pfid), DEF_RCV_BUF);
5108
Michael Chan71034ba2009-10-10 13:46:59 +00005109 cnic_setup_bnx2x_context(dev);
5110
Michael Chan71034ba2009-10-10 13:46:59 +00005111 ret = cnic_init_bnx2x_irq(dev);
5112 if (ret)
5113 return ret;
5114
Michael Chan71034ba2009-10-10 13:46:59 +00005115 return 0;
5116}
5117
Michael Chan86b53602009-10-10 13:46:57 +00005118static void cnic_init_rings(struct cnic_dev *dev)
5119{
Michael Chan541a7812010-10-06 03:17:22 +00005120 struct cnic_local *cp = dev->cnic_priv;
Michael Chancd801532010-10-13 14:06:49 +00005121 struct cnic_uio_dev *udev = cp->udev;
Michael Chan541a7812010-10-06 03:17:22 +00005122
5123 if (test_bit(CNIC_LCL_FL_RINGS_INITED, &cp->cnic_local_flags))
5124 return;
5125
Michael Chan86b53602009-10-10 13:46:57 +00005126 if (test_bit(CNIC_F_BNX2_CLASS, &dev->flags)) {
5127 cnic_init_bnx2_tx_ring(dev);
5128 cnic_init_bnx2_rx_ring(dev);
Michael Chan541a7812010-10-06 03:17:22 +00005129 set_bit(CNIC_LCL_FL_RINGS_INITED, &cp->cnic_local_flags);
Michael Chan71034ba2009-10-10 13:46:59 +00005130 } else if (test_bit(CNIC_F_BNX2X_CLASS, &dev->flags)) {
Michael Chan5159fdc2010-12-23 07:42:59 +00005131 u32 cli = cp->ethdev->iscsi_l2_client_id;
5132 u32 cid = cp->ethdev->iscsi_l2_cid;
Michael Chan68d7c1a2011-01-05 15:14:13 +00005133 u32 cl_qzone_id;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00005134 struct client_init_ramrod_data *data;
Michael Chan71034ba2009-10-10 13:46:59 +00005135 union l5cm_specific_data l5_data;
5136 struct ustorm_eth_rx_producers rx_prods = {0};
Michael Chane1dd8832011-07-13 17:24:19 +00005137 u32 off, i, *cid_ptr;
Michael Chan71034ba2009-10-10 13:46:59 +00005138
5139 rx_prods.bd_prod = 0;
5140 rx_prods.cqe_prod = BNX2X_MAX_RCQ_DESC_CNT;
5141 barrier();
5142
Dmitry Kravkov523224a2010-10-06 03:23:26 +00005143 cl_qzone_id = BNX2X_CL_QZONE_ID(cp, cli);
5144
Michael Chanc7596b72009-12-02 15:15:35 +00005145 off = BAR_USTRORM_INTMEM +
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03005146 (BNX2X_CHIP_IS_E2_PLUS(cp->chip_id) ?
Michael Chanee87a822010-10-13 14:06:51 +00005147 USTORM_RX_PRODS_E2_OFFSET(cl_qzone_id) :
5148 USTORM_RX_PRODS_E1X_OFFSET(CNIC_PORT(cp), cli));
Michael Chan71034ba2009-10-10 13:46:59 +00005149
5150 for (i = 0; i < sizeof(struct ustorm_eth_rx_producers) / 4; i++)
Michael Chanc7596b72009-12-02 15:15:35 +00005151 CNIC_WR(dev, off + i * 4, ((u32 *) &rx_prods)[i]);
Michael Chan71034ba2009-10-10 13:46:59 +00005152
Michael Chan48f753d2010-05-18 11:32:53 +00005153 set_bit(CNIC_LCL_FL_L2_WAIT, &cp->cnic_local_flags);
5154
Michael Chancd801532010-10-13 14:06:49 +00005155 data = udev->l2_buf;
Michael Chane1dd8832011-07-13 17:24:19 +00005156 cid_ptr = udev->l2_buf + 12;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00005157
5158 memset(data, 0, sizeof(*data));
5159
5160 cnic_init_bnx2x_tx_ring(dev, data);
5161 cnic_init_bnx2x_rx_ring(dev, data);
5162
Michael Chancd801532010-10-13 14:06:49 +00005163 l5_data.phy_address.lo = udev->l2_buf_map & 0xffffffff;
5164 l5_data.phy_address.hi = (u64) udev->l2_buf_map >> 32;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00005165
Michael Chan541a7812010-10-06 03:17:22 +00005166 set_bit(CNIC_LCL_FL_RINGS_INITED, &cp->cnic_local_flags);
5167
Michael Chan71034ba2009-10-10 13:46:59 +00005168 cnic_submit_kwqe_16(dev, RAMROD_CMD_ID_ETH_CLIENT_SETUP,
Michael Chan68d7c1a2011-01-05 15:14:13 +00005169 cid, ETH_CONNECTION_TYPE, &l5_data);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00005170
Michael Chan48f753d2010-05-18 11:32:53 +00005171 i = 0;
5172 while (test_bit(CNIC_LCL_FL_L2_WAIT, &cp->cnic_local_flags) &&
5173 ++i < 10)
5174 msleep(1);
5175
5176 if (test_bit(CNIC_LCL_FL_L2_WAIT, &cp->cnic_local_flags))
5177 netdev_err(dev->netdev,
5178 "iSCSI CLIENT_SETUP did not complete\n");
Dmitry Kravkovc2bff632010-10-06 03:33:18 +00005179 cnic_spq_completion(dev, DRV_CTL_RET_L2_SPQ_CREDIT_CMD, 1);
Michael Chan5159fdc2010-12-23 07:42:59 +00005180 cnic_ring_ctl(dev, cid, cli, 1);
Michael Chane1dd8832011-07-13 17:24:19 +00005181 *cid_ptr = cid;
Michael Chan86b53602009-10-10 13:46:57 +00005182 }
5183}
5184
5185static void cnic_shutdown_rings(struct cnic_dev *dev)
5186{
Michael Chan541a7812010-10-06 03:17:22 +00005187 struct cnic_local *cp = dev->cnic_priv;
Michael Chane1dd8832011-07-13 17:24:19 +00005188 struct cnic_uio_dev *udev = cp->udev;
5189 void *rx_ring;
Michael Chan541a7812010-10-06 03:17:22 +00005190
5191 if (!test_bit(CNIC_LCL_FL_RINGS_INITED, &cp->cnic_local_flags))
5192 return;
5193
Michael Chan86b53602009-10-10 13:46:57 +00005194 if (test_bit(CNIC_F_BNX2_CLASS, &dev->flags)) {
5195 cnic_shutdown_bnx2_rx_ring(dev);
Michael Chan71034ba2009-10-10 13:46:59 +00005196 } else if (test_bit(CNIC_F_BNX2X_CLASS, &dev->flags)) {
Michael Chan5159fdc2010-12-23 07:42:59 +00005197 u32 cli = cp->ethdev->iscsi_l2_client_id;
5198 u32 cid = cp->ethdev->iscsi_l2_cid;
Michael Chan8b065b62009-12-02 15:15:36 +00005199 union l5cm_specific_data l5_data;
Michael Chan48f753d2010-05-18 11:32:53 +00005200 int i;
Michael Chan71034ba2009-10-10 13:46:59 +00005201
Michael Chan5159fdc2010-12-23 07:42:59 +00005202 cnic_ring_ctl(dev, cid, cli, 0);
Michael Chan8b065b62009-12-02 15:15:36 +00005203
Michael Chan48f753d2010-05-18 11:32:53 +00005204 set_bit(CNIC_LCL_FL_L2_WAIT, &cp->cnic_local_flags);
5205
Michael Chan8b065b62009-12-02 15:15:36 +00005206 l5_data.phy_address.lo = cli;
5207 l5_data.phy_address.hi = 0;
5208 cnic_submit_kwqe_16(dev, RAMROD_CMD_ID_ETH_HALT,
Michael Chan5159fdc2010-12-23 07:42:59 +00005209 cid, ETH_CONNECTION_TYPE, &l5_data);
Michael Chan48f753d2010-05-18 11:32:53 +00005210 i = 0;
5211 while (test_bit(CNIC_LCL_FL_L2_WAIT, &cp->cnic_local_flags) &&
5212 ++i < 10)
5213 msleep(1);
5214
5215 if (test_bit(CNIC_LCL_FL_L2_WAIT, &cp->cnic_local_flags))
5216 netdev_err(dev->netdev,
5217 "iSCSI CLIENT_HALT did not complete\n");
Dmitry Kravkovc2bff632010-10-06 03:33:18 +00005218 cnic_spq_completion(dev, DRV_CTL_RET_L2_SPQ_CREDIT_CMD, 1);
Michael Chan1bcdc322009-12-10 15:40:57 +00005219
5220 memset(&l5_data, 0, sizeof(l5_data));
Dmitry Kravkov523224a2010-10-06 03:23:26 +00005221 cnic_submit_kwqe_16(dev, RAMROD_CMD_ID_COMMON_CFC_DEL,
Michael Chan68d7c1a2011-01-05 15:14:13 +00005222 cid, NONE_CONNECTION_TYPE, &l5_data);
Michael Chan1bcdc322009-12-10 15:40:57 +00005223 msleep(10);
Michael Chan86b53602009-10-10 13:46:57 +00005224 }
Michael Chan541a7812010-10-06 03:17:22 +00005225 clear_bit(CNIC_LCL_FL_RINGS_INITED, &cp->cnic_local_flags);
Michael Chane1dd8832011-07-13 17:24:19 +00005226 rx_ring = udev->l2_ring + BCM_PAGE_SIZE;
5227 memset(rx_ring, 0, BCM_PAGE_SIZE);
Michael Chan86b53602009-10-10 13:46:57 +00005228}
5229
Michael Chana3059b12009-08-14 15:49:44 +00005230static int cnic_register_netdev(struct cnic_dev *dev)
5231{
5232 struct cnic_local *cp = dev->cnic_priv;
5233 struct cnic_eth_dev *ethdev = cp->ethdev;
5234 int err;
5235
5236 if (!ethdev)
5237 return -ENODEV;
5238
5239 if (ethdev->drv_state & CNIC_DRV_STATE_REGD)
5240 return 0;
5241
5242 err = ethdev->drv_register_cnic(dev->netdev, cp->cnic_ops, dev);
5243 if (err)
Joe Perchesddf79b22010-02-17 15:01:54 +00005244 netdev_err(dev->netdev, "register_cnic failed\n");
Michael Chana3059b12009-08-14 15:49:44 +00005245
5246 return err;
5247}
5248
5249static void cnic_unregister_netdev(struct cnic_dev *dev)
5250{
5251 struct cnic_local *cp = dev->cnic_priv;
5252 struct cnic_eth_dev *ethdev = cp->ethdev;
5253
5254 if (!ethdev)
5255 return;
5256
5257 ethdev->drv_unregister_cnic(dev->netdev);
5258}
5259
Michael Chana4636962009-06-08 18:14:43 -07005260static int cnic_start_hw(struct cnic_dev *dev)
5261{
5262 struct cnic_local *cp = dev->cnic_priv;
5263 struct cnic_eth_dev *ethdev = cp->ethdev;
5264 int err;
5265
5266 if (test_bit(CNIC_F_CNIC_UP, &dev->flags))
5267 return -EALREADY;
5268
Michael Chana4636962009-06-08 18:14:43 -07005269 dev->regview = ethdev->io_base;
Michael Chana4636962009-06-08 18:14:43 -07005270 pci_dev_get(dev->pcidev);
5271 cp->func = PCI_FUNC(dev->pcidev->devfn);
Michael Chana4dde3a2010-02-24 14:42:08 +00005272 cp->status_blk.gen = ethdev->irq_arr[0].status_blk;
Michael Chana4636962009-06-08 18:14:43 -07005273 cp->status_blk_num = ethdev->irq_arr[0].status_blk_num;
5274
5275 err = cp->alloc_resc(dev);
5276 if (err) {
Joe Perchesddf79b22010-02-17 15:01:54 +00005277 netdev_err(dev->netdev, "allocate resource failure\n");
Michael Chana4636962009-06-08 18:14:43 -07005278 goto err1;
5279 }
5280
5281 err = cp->start_hw(dev);
5282 if (err)
5283 goto err1;
5284
5285 err = cnic_cm_open(dev);
5286 if (err)
5287 goto err1;
5288
5289 set_bit(CNIC_F_CNIC_UP, &dev->flags);
5290
5291 cp->enable_int(dev);
5292
5293 return 0;
5294
5295err1:
Michael Chana4636962009-06-08 18:14:43 -07005296 cp->free_resc(dev);
5297 pci_dev_put(dev->pcidev);
Michael Chana4636962009-06-08 18:14:43 -07005298 return err;
5299}
5300
5301static void cnic_stop_bnx2_hw(struct cnic_dev *dev)
5302{
Michael Chana4636962009-06-08 18:14:43 -07005303 cnic_disable_bnx2_int_sync(dev);
5304
5305 cnic_reg_wr_ind(dev, BNX2_CP_SCRATCH + 0x20, 0);
5306 cnic_reg_wr_ind(dev, BNX2_COM_SCRATCH + 0x20, 0);
5307
5308 cnic_init_context(dev, KWQ_CID);
5309 cnic_init_context(dev, KCQ_CID);
5310
5311 cnic_setup_5709_context(dev, 0);
5312 cnic_free_irq(dev);
5313
Michael Chana4636962009-06-08 18:14:43 -07005314 cnic_free_resc(dev);
5315}
5316
Michael Chan71034ba2009-10-10 13:46:59 +00005317
5318static void cnic_stop_bnx2x_hw(struct cnic_dev *dev)
5319{
5320 struct cnic_local *cp = dev->cnic_priv;
Michael Chan71034ba2009-10-10 13:46:59 +00005321
5322 cnic_free_irq(dev);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00005323 *cp->kcq1.hw_prod_idx_ptr = 0;
Michael Chan4e9c4fd2009-12-10 15:40:58 +00005324 CNIC_WR(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00005325 CSTORM_ISCSI_EQ_CONS_OFFSET(cp->pfid, 0), 0);
Michael Chane6c28892010-06-24 14:58:39 +00005326 CNIC_WR16(dev, cp->kcq1.io_addr, 0);
Michael Chan71034ba2009-10-10 13:46:59 +00005327 cnic_free_resc(dev);
5328}
5329
Michael Chana4636962009-06-08 18:14:43 -07005330static void cnic_stop_hw(struct cnic_dev *dev)
5331{
5332 if (test_bit(CNIC_F_CNIC_UP, &dev->flags)) {
5333 struct cnic_local *cp = dev->cnic_priv;
Michael Chan48f753d2010-05-18 11:32:53 +00005334 int i = 0;
Michael Chana4636962009-06-08 18:14:43 -07005335
Michael Chan48f753d2010-05-18 11:32:53 +00005336 /* Need to wait for the ring shutdown event to complete
5337 * before clearing the CNIC_UP flag.
5338 */
Michael Chancd801532010-10-13 14:06:49 +00005339 while (cp->udev->uio_dev != -1 && i < 15) {
Michael Chan48f753d2010-05-18 11:32:53 +00005340 msleep(100);
5341 i++;
5342 }
Michael Chana3ceeeb2010-10-13 14:06:50 +00005343 cnic_shutdown_rings(dev);
Michael Chana2028b232012-06-27 15:08:19 +00005344 cp->stop_cm(dev);
Michael Chana4636962009-06-08 18:14:43 -07005345 clear_bit(CNIC_F_CNIC_UP, &dev->flags);
Eric Dumazet2cfa5a02011-11-23 07:09:32 +00005346 RCU_INIT_POINTER(cp->ulp_ops[CNIC_ULP_L4], NULL);
Michael Chana4636962009-06-08 18:14:43 -07005347 synchronize_rcu();
5348 cnic_cm_shutdown(dev);
5349 cp->stop_hw(dev);
5350 pci_dev_put(dev->pcidev);
5351 }
5352}
5353
5354static void cnic_free_dev(struct cnic_dev *dev)
5355{
5356 int i = 0;
5357
5358 while ((atomic_read(&dev->ref_count) != 0) && i < 10) {
5359 msleep(100);
5360 i++;
5361 }
5362 if (atomic_read(&dev->ref_count) != 0)
Joe Perchesddf79b22010-02-17 15:01:54 +00005363 netdev_err(dev->netdev, "Failed waiting for ref count to go to zero\n");
Michael Chana4636962009-06-08 18:14:43 -07005364
Joe Perchesddf79b22010-02-17 15:01:54 +00005365 netdev_info(dev->netdev, "Removed CNIC device\n");
Michael Chana4636962009-06-08 18:14:43 -07005366 dev_put(dev->netdev);
5367 kfree(dev);
5368}
5369
5370static struct cnic_dev *cnic_alloc_dev(struct net_device *dev,
5371 struct pci_dev *pdev)
5372{
5373 struct cnic_dev *cdev;
5374 struct cnic_local *cp;
5375 int alloc_size;
5376
5377 alloc_size = sizeof(struct cnic_dev) + sizeof(struct cnic_local);
5378
5379 cdev = kzalloc(alloc_size , GFP_KERNEL);
5380 if (cdev == NULL) {
Joe Perchesddf79b22010-02-17 15:01:54 +00005381 netdev_err(dev, "allocate dev struct failure\n");
Michael Chana4636962009-06-08 18:14:43 -07005382 return NULL;
5383 }
5384
5385 cdev->netdev = dev;
5386 cdev->cnic_priv = (char *)cdev + sizeof(struct cnic_dev);
5387 cdev->register_device = cnic_register_device;
5388 cdev->unregister_device = cnic_unregister_device;
5389 cdev->iscsi_nl_msg_recv = cnic_iscsi_nl_msg_recv;
5390
5391 cp = cdev->cnic_priv;
5392 cp->dev = cdev;
Michael Chana4636962009-06-08 18:14:43 -07005393 cp->l2_single_buf_size = 0x400;
5394 cp->l2_rx_ring_size = 3;
5395
5396 spin_lock_init(&cp->cnic_ulp_lock);
5397
Joe Perchesddf79b22010-02-17 15:01:54 +00005398 netdev_info(dev, "Added CNIC device\n");
Michael Chana4636962009-06-08 18:14:43 -07005399
5400 return cdev;
5401}
5402
5403static struct cnic_dev *init_bnx2_cnic(struct net_device *dev)
5404{
5405 struct pci_dev *pdev;
5406 struct cnic_dev *cdev;
5407 struct cnic_local *cp;
5408 struct cnic_eth_dev *ethdev = NULL;
Michael Chane2ee3612009-06-13 17:43:02 -07005409 struct cnic_eth_dev *(*probe)(struct net_device *) = NULL;
Michael Chana4636962009-06-08 18:14:43 -07005410
Michael Chane2ee3612009-06-13 17:43:02 -07005411 probe = symbol_get(bnx2_cnic_probe);
Michael Chana4636962009-06-08 18:14:43 -07005412 if (probe) {
5413 ethdev = (*probe)(dev);
Michael Chan64c64602009-08-14 15:49:43 +00005414 symbol_put(bnx2_cnic_probe);
Michael Chana4636962009-06-08 18:14:43 -07005415 }
5416 if (!ethdev)
5417 return NULL;
5418
5419 pdev = ethdev->pdev;
5420 if (!pdev)
5421 return NULL;
5422
5423 dev_hold(dev);
5424 pci_dev_get(pdev);
Sergei Shtylyovff938e42011-02-28 11:57:33 -08005425 if ((pdev->device == PCI_DEVICE_ID_NX2_5709 ||
5426 pdev->device == PCI_DEVICE_ID_NX2_5709S) &&
5427 (pdev->revision < 0x10)) {
5428 pci_dev_put(pdev);
5429 goto cnic_err;
Michael Chana4636962009-06-08 18:14:43 -07005430 }
5431 pci_dev_put(pdev);
5432
5433 cdev = cnic_alloc_dev(dev, pdev);
5434 if (cdev == NULL)
5435 goto cnic_err;
5436
5437 set_bit(CNIC_F_BNX2_CLASS, &cdev->flags);
5438 cdev->submit_kwqes = cnic_submit_bnx2_kwqes;
5439
5440 cp = cdev->cnic_priv;
5441 cp->ethdev = ethdev;
5442 cdev->pcidev = pdev;
Michael Chanee87a822010-10-13 14:06:51 +00005443 cp->chip_id = ethdev->chip_id;
Michael Chana4636962009-06-08 18:14:43 -07005444
Michael Chan7625eb22011-06-08 19:29:36 +00005445 cdev->max_iscsi_conn = ethdev->max_iscsi_conn;
5446
Michael Chana4636962009-06-08 18:14:43 -07005447 cp->cnic_ops = &cnic_bnx2_ops;
5448 cp->start_hw = cnic_start_bnx2_hw;
5449 cp->stop_hw = cnic_stop_bnx2_hw;
5450 cp->setup_pgtbl = cnic_setup_page_tbl;
5451 cp->alloc_resc = cnic_alloc_bnx2_resc;
5452 cp->free_resc = cnic_free_resc;
5453 cp->start_cm = cnic_cm_init_bnx2_hw;
5454 cp->stop_cm = cnic_cm_stop_bnx2_hw;
5455 cp->enable_int = cnic_enable_bnx2_int;
5456 cp->disable_int_sync = cnic_disable_bnx2_int_sync;
5457 cp->close_conn = cnic_close_bnx2_conn;
Michael Chana4636962009-06-08 18:14:43 -07005458 return cdev;
5459
5460cnic_err:
5461 dev_put(dev);
5462 return NULL;
5463}
5464
Michael Chan71034ba2009-10-10 13:46:59 +00005465static struct cnic_dev *init_bnx2x_cnic(struct net_device *dev)
5466{
5467 struct pci_dev *pdev;
5468 struct cnic_dev *cdev;
5469 struct cnic_local *cp;
5470 struct cnic_eth_dev *ethdev = NULL;
5471 struct cnic_eth_dev *(*probe)(struct net_device *) = NULL;
5472
5473 probe = symbol_get(bnx2x_cnic_probe);
5474 if (probe) {
5475 ethdev = (*probe)(dev);
5476 symbol_put(bnx2x_cnic_probe);
5477 }
5478 if (!ethdev)
5479 return NULL;
5480
5481 pdev = ethdev->pdev;
5482 if (!pdev)
5483 return NULL;
5484
5485 dev_hold(dev);
5486 cdev = cnic_alloc_dev(dev, pdev);
5487 if (cdev == NULL) {
5488 dev_put(dev);
5489 return NULL;
5490 }
5491
5492 set_bit(CNIC_F_BNX2X_CLASS, &cdev->flags);
5493 cdev->submit_kwqes = cnic_submit_bnx2x_kwqes;
5494
5495 cp = cdev->cnic_priv;
5496 cp->ethdev = ethdev;
5497 cdev->pcidev = pdev;
Michael Chanee87a822010-10-13 14:06:51 +00005498 cp->chip_id = ethdev->chip_id;
Michael Chan71034ba2009-10-10 13:46:59 +00005499
Barak Witkowski1d187b32011-12-05 22:41:50 +00005500 cdev->stats_addr = ethdev->addr_drv_info_to_mcp;
5501
Vladislav Zolotarov2ba45142011-01-31 14:39:17 +00005502 if (!(ethdev->drv_state & CNIC_DRV_STATE_NO_ISCSI))
5503 cdev->max_iscsi_conn = ethdev->max_iscsi_conn;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03005504 if (BNX2X_CHIP_IS_E2_PLUS(cp->chip_id) &&
Vladislav Zolotarov2ba45142011-01-31 14:39:17 +00005505 !(ethdev->drv_state & CNIC_DRV_STATE_NO_FCOE))
5506 cdev->max_fcoe_conn = ethdev->max_fcoe_conn;
5507
Michael Chandc219a22011-08-26 09:45:39 +00005508 if (cdev->max_fcoe_conn > BNX2X_FCOE_NUM_CONNECTIONS)
5509 cdev->max_fcoe_conn = BNX2X_FCOE_NUM_CONNECTIONS;
5510
Vladislav Zolotarov2ba45142011-01-31 14:39:17 +00005511 memcpy(cdev->mac_addr, ethdev->iscsi_mac, 6);
5512
Michael Chan71034ba2009-10-10 13:46:59 +00005513 cp->cnic_ops = &cnic_bnx2x_ops;
5514 cp->start_hw = cnic_start_bnx2x_hw;
5515 cp->stop_hw = cnic_stop_bnx2x_hw;
5516 cp->setup_pgtbl = cnic_setup_page_tbl_le;
5517 cp->alloc_resc = cnic_alloc_bnx2x_resc;
5518 cp->free_resc = cnic_free_resc;
5519 cp->start_cm = cnic_cm_init_bnx2x_hw;
5520 cp->stop_cm = cnic_cm_stop_bnx2x_hw;
5521 cp->enable_int = cnic_enable_bnx2x_int;
5522 cp->disable_int_sync = cnic_disable_bnx2x_int_sync;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03005523 if (BNX2X_CHIP_IS_E2_PLUS(cp->chip_id))
Michael Chanee87a822010-10-13 14:06:51 +00005524 cp->ack_int = cnic_ack_bnx2x_e2_msix;
5525 else
5526 cp->ack_int = cnic_ack_bnx2x_msix;
Michael Chan71034ba2009-10-10 13:46:59 +00005527 cp->close_conn = cnic_close_bnx2x_conn;
Michael Chan71034ba2009-10-10 13:46:59 +00005528 return cdev;
5529}
5530
Michael Chana4636962009-06-08 18:14:43 -07005531static struct cnic_dev *is_cnic_dev(struct net_device *dev)
5532{
5533 struct ethtool_drvinfo drvinfo;
5534 struct cnic_dev *cdev = NULL;
5535
5536 if (dev->ethtool_ops && dev->ethtool_ops->get_drvinfo) {
5537 memset(&drvinfo, 0, sizeof(drvinfo));
5538 dev->ethtool_ops->get_drvinfo(dev, &drvinfo);
5539
5540 if (!strcmp(drvinfo.driver, "bnx2"))
5541 cdev = init_bnx2_cnic(dev);
Michael Chan71034ba2009-10-10 13:46:59 +00005542 if (!strcmp(drvinfo.driver, "bnx2x"))
5543 cdev = init_bnx2x_cnic(dev);
Michael Chana4636962009-06-08 18:14:43 -07005544 if (cdev) {
5545 write_lock(&cnic_dev_lock);
5546 list_add(&cdev->list, &cnic_dev_list);
5547 write_unlock(&cnic_dev_lock);
5548 }
5549 }
5550 return cdev;
5551}
5552
Michael Chan415199f2011-07-20 14:55:24 +00005553static void cnic_rcv_netevent(struct cnic_local *cp, unsigned long event,
5554 u16 vlan_id)
5555{
5556 int if_type;
5557
5558 rcu_read_lock();
5559 for (if_type = 0; if_type < MAX_CNIC_ULP_TYPE; if_type++) {
5560 struct cnic_ulp_ops *ulp_ops;
5561 void *ctx;
5562
5563 ulp_ops = rcu_dereference(cp->ulp_ops[if_type]);
5564 if (!ulp_ops || !ulp_ops->indicate_netevent)
5565 continue;
5566
5567 ctx = cp->ulp_handle[if_type];
5568
5569 ulp_ops->indicate_netevent(ctx, event, vlan_id);
5570 }
5571 rcu_read_unlock();
5572}
5573
Ben Hutchings1aa8b472012-07-10 10:56:59 +00005574/* netdev event handler */
Michael Chana4636962009-06-08 18:14:43 -07005575static int cnic_netdev_event(struct notifier_block *this, unsigned long event,
5576 void *ptr)
5577{
5578 struct net_device *netdev = ptr;
5579 struct cnic_dev *dev;
Michael Chana4636962009-06-08 18:14:43 -07005580 int new_dev = 0;
5581
5582 dev = cnic_from_netdev(netdev);
5583
Michael Chandb1d3502011-06-08 19:29:35 +00005584 if (!dev && (event == NETDEV_REGISTER || netif_running(netdev))) {
Michael Chana4636962009-06-08 18:14:43 -07005585 /* Check for the hot-plug device */
5586 dev = is_cnic_dev(netdev);
5587 if (dev) {
5588 new_dev = 1;
5589 cnic_hold(dev);
5590 }
5591 }
5592 if (dev) {
5593 struct cnic_local *cp = dev->cnic_priv;
5594
5595 if (new_dev)
5596 cnic_ulp_init(dev);
5597 else if (event == NETDEV_UNREGISTER)
5598 cnic_ulp_exit(dev);
Michael Chan6053bbf2009-10-02 11:03:28 -07005599
Michael Chandb1d3502011-06-08 19:29:35 +00005600 if (event == NETDEV_UP || (new_dev && netif_running(netdev))) {
Michael Chana3059b12009-08-14 15:49:44 +00005601 if (cnic_register_netdev(dev) != 0) {
5602 cnic_put(dev);
5603 goto done;
5604 }
Michael Chana4636962009-06-08 18:14:43 -07005605 if (!cnic_start_hw(dev))
5606 cnic_ulp_start(dev);
Michael Chana4636962009-06-08 18:14:43 -07005607 }
5608
Michael Chan415199f2011-07-20 14:55:24 +00005609 cnic_rcv_netevent(cp, event, 0);
Michael Chana4636962009-06-08 18:14:43 -07005610
5611 if (event == NETDEV_GOING_DOWN) {
Michael Chana4636962009-06-08 18:14:43 -07005612 cnic_ulp_stop(dev);
5613 cnic_stop_hw(dev);
Michael Chana3059b12009-08-14 15:49:44 +00005614 cnic_unregister_netdev(dev);
Michael Chana4636962009-06-08 18:14:43 -07005615 } else if (event == NETDEV_UNREGISTER) {
5616 write_lock(&cnic_dev_lock);
5617 list_del_init(&dev->list);
5618 write_unlock(&cnic_dev_lock);
5619
5620 cnic_put(dev);
5621 cnic_free_dev(dev);
5622 goto done;
5623 }
5624 cnic_put(dev);
Michael Chan415199f2011-07-20 14:55:24 +00005625 } else {
5626 struct net_device *realdev;
5627 u16 vid;
5628
5629 vid = cnic_get_vlan(netdev, &realdev);
5630 if (realdev) {
5631 dev = cnic_from_netdev(realdev);
5632 if (dev) {
5633 vid |= VLAN_TAG_PRESENT;
5634 cnic_rcv_netevent(dev->cnic_priv, event, vid);
5635 cnic_put(dev);
5636 }
5637 }
Michael Chana4636962009-06-08 18:14:43 -07005638 }
5639done:
5640 return NOTIFY_DONE;
5641}
5642
5643static struct notifier_block cnic_netdev_notifier = {
5644 .notifier_call = cnic_netdev_event
5645};
5646
5647static void cnic_release(void)
5648{
5649 struct cnic_dev *dev;
Michael Chana3ceeeb2010-10-13 14:06:50 +00005650 struct cnic_uio_dev *udev;
Michael Chana4636962009-06-08 18:14:43 -07005651
5652 while (!list_empty(&cnic_dev_list)) {
5653 dev = list_entry(cnic_dev_list.next, struct cnic_dev, list);
5654 if (test_bit(CNIC_F_CNIC_UP, &dev->flags)) {
5655 cnic_ulp_stop(dev);
5656 cnic_stop_hw(dev);
5657 }
5658
5659 cnic_ulp_exit(dev);
Michael Chana3059b12009-08-14 15:49:44 +00005660 cnic_unregister_netdev(dev);
Michael Chana4636962009-06-08 18:14:43 -07005661 list_del_init(&dev->list);
5662 cnic_free_dev(dev);
5663 }
Michael Chana3ceeeb2010-10-13 14:06:50 +00005664 while (!list_empty(&cnic_udev_list)) {
5665 udev = list_entry(cnic_udev_list.next, struct cnic_uio_dev,
5666 list);
5667 cnic_free_uio(udev);
5668 }
Michael Chana4636962009-06-08 18:14:43 -07005669}
5670
5671static int __init cnic_init(void)
5672{
5673 int rc = 0;
5674
Joe Perchesddf79b22010-02-17 15:01:54 +00005675 pr_info("%s", version);
Michael Chana4636962009-06-08 18:14:43 -07005676
5677 rc = register_netdevice_notifier(&cnic_netdev_notifier);
5678 if (rc) {
5679 cnic_release();
5680 return rc;
5681 }
5682
Michael Chanfdf24082010-10-13 14:06:47 +00005683 cnic_wq = create_singlethread_workqueue("cnic_wq");
5684 if (!cnic_wq) {
5685 cnic_release();
5686 unregister_netdevice_notifier(&cnic_netdev_notifier);
5687 return -ENOMEM;
5688 }
5689
Michael Chana4636962009-06-08 18:14:43 -07005690 return 0;
5691}
5692
5693static void __exit cnic_exit(void)
5694{
5695 unregister_netdevice_notifier(&cnic_netdev_notifier);
5696 cnic_release();
Michael Chanfdf24082010-10-13 14:06:47 +00005697 destroy_workqueue(cnic_wq);
Michael Chana4636962009-06-08 18:14:43 -07005698}
5699
5700module_init(cnic_init);
5701module_exit(cnic_exit);