blob: ff3589405dcecb89b29bab54a7fccc9b7361c7d3 [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 Chanc06c0462010-10-13 14:06:48 +0000871 }
Michael Chana4636962009-06-08 18:14:43 -0700872
Michael Chan86b53602009-10-10 13:46:57 +0000873 cnic_free_context(dev);
Michael Chana4636962009-06-08 18:14:43 -0700874 kfree(cp->ctx_arr);
875 cp->ctx_arr = NULL;
876 cp->ctx_blks = 0;
877
878 cnic_free_dma(dev, &cp->gbl_buf_info);
Michael Chana4636962009-06-08 18:14:43 -0700879 cnic_free_dma(dev, &cp->kwq_info);
Michael Chan71034ba2009-10-10 13:46:59 +0000880 cnic_free_dma(dev, &cp->kwq_16_data_info);
Michael Chane21ba412010-12-23 07:43:03 +0000881 cnic_free_dma(dev, &cp->kcq2.dma);
Michael Chane6c28892010-06-24 14:58:39 +0000882 cnic_free_dma(dev, &cp->kcq1.dma);
Michael Chana4636962009-06-08 18:14:43 -0700883 kfree(cp->iscsi_tbl);
884 cp->iscsi_tbl = NULL;
885 kfree(cp->ctx_tbl);
886 cp->ctx_tbl = NULL;
887
Michael Chane1928c82010-12-23 07:43:04 +0000888 cnic_free_id_tbl(&cp->fcoe_cid_tbl);
Michael Chana4636962009-06-08 18:14:43 -0700889 cnic_free_id_tbl(&cp->cid_tbl);
890}
891
892static int cnic_alloc_context(struct cnic_dev *dev)
893{
894 struct cnic_local *cp = dev->cnic_priv;
895
896 if (CHIP_NUM(cp) == CHIP_NUM_5709) {
897 int i, k, arr_size;
898
899 cp->ctx_blk_size = BCM_PAGE_SIZE;
900 cp->cids_per_blk = BCM_PAGE_SIZE / 128;
901 arr_size = BNX2_MAX_CID / cp->cids_per_blk *
902 sizeof(struct cnic_ctx);
903 cp->ctx_arr = kzalloc(arr_size, GFP_KERNEL);
904 if (cp->ctx_arr == NULL)
905 return -ENOMEM;
906
907 k = 0;
908 for (i = 0; i < 2; i++) {
909 u32 j, reg, off, lo, hi;
910
911 if (i == 0)
912 off = BNX2_PG_CTX_MAP;
913 else
914 off = BNX2_ISCSI_CTX_MAP;
915
916 reg = cnic_reg_rd_ind(dev, off);
917 lo = reg >> 16;
918 hi = reg & 0xffff;
919 for (j = lo; j < hi; j += cp->cids_per_blk, k++)
920 cp->ctx_arr[k].cid = j;
921 }
922
923 cp->ctx_blks = k;
924 if (cp->ctx_blks >= (BNX2_MAX_CID / cp->cids_per_blk)) {
925 cp->ctx_blks = 0;
926 return -ENOMEM;
927 }
928
929 for (i = 0; i < cp->ctx_blks; i++) {
930 cp->ctx_arr[i].ctx =
Michael Chan3248e162009-12-02 15:15:39 +0000931 dma_alloc_coherent(&dev->pcidev->dev,
932 BCM_PAGE_SIZE,
933 &cp->ctx_arr[i].mapping,
934 GFP_KERNEL);
Michael Chana4636962009-06-08 18:14:43 -0700935 if (cp->ctx_arr[i].ctx == NULL)
936 return -ENOMEM;
937 }
938 }
939 return 0;
940}
941
Michael Chan59e51372011-06-14 01:32:38 +0000942static u16 cnic_bnx2_next_idx(u16 idx)
Michael Chane6c28892010-06-24 14:58:39 +0000943{
Michael Chan59e51372011-06-14 01:32:38 +0000944 return idx + 1;
945}
946
947static u16 cnic_bnx2_hw_idx(u16 idx)
948{
949 return idx;
950}
951
952static u16 cnic_bnx2x_next_idx(u16 idx)
953{
954 idx++;
955 if ((idx & MAX_KCQE_CNT) == MAX_KCQE_CNT)
956 idx++;
957
958 return idx;
959}
960
961static u16 cnic_bnx2x_hw_idx(u16 idx)
962{
963 if ((idx & MAX_KCQE_CNT) == MAX_KCQE_CNT)
964 idx++;
965 return idx;
966}
967
968static int cnic_alloc_kcq(struct cnic_dev *dev, struct kcq_info *info,
969 bool use_pg_tbl)
970{
971 int err, i, use_page_tbl = 0;
Michael Chane6c28892010-06-24 14:58:39 +0000972 struct kcqe **kcq;
973
Michael Chan59e51372011-06-14 01:32:38 +0000974 if (use_pg_tbl)
975 use_page_tbl = 1;
Michael Chane6c28892010-06-24 14:58:39 +0000976
Michael Chan59e51372011-06-14 01:32:38 +0000977 err = cnic_alloc_dma(dev, &info->dma, KCQ_PAGE_CNT, use_page_tbl);
Michael Chane6c28892010-06-24 14:58:39 +0000978 if (err)
979 return err;
980
981 kcq = (struct kcqe **) info->dma.pg_arr;
982 info->kcq = kcq;
983
Michael Chan59e51372011-06-14 01:32:38 +0000984 info->next_idx = cnic_bnx2_next_idx;
985 info->hw_idx = cnic_bnx2_hw_idx;
986 if (use_pg_tbl)
Michael Chane6c28892010-06-24 14:58:39 +0000987 return 0;
988
Michael Chan59e51372011-06-14 01:32:38 +0000989 info->next_idx = cnic_bnx2x_next_idx;
990 info->hw_idx = cnic_bnx2x_hw_idx;
991
Michael Chane6c28892010-06-24 14:58:39 +0000992 for (i = 0; i < KCQ_PAGE_CNT; i++) {
993 struct bnx2x_bd_chain_next *next =
994 (struct bnx2x_bd_chain_next *) &kcq[i][MAX_KCQE_CNT];
995 int j = i + 1;
996
997 if (j >= KCQ_PAGE_CNT)
998 j = 0;
999 next->addr_hi = (u64) info->dma.pg_map_arr[j] >> 32;
1000 next->addr_lo = info->dma.pg_map_arr[j] & 0xffffffff;
1001 }
1002 return 0;
1003}
1004
Michael Chan74dd0c42012-09-08 06:01:01 +00001005static int __cnic_alloc_uio_rings(struct cnic_uio_dev *udev, int pages)
1006{
1007 struct cnic_local *cp = udev->dev->cnic_priv;
1008
1009 if (udev->l2_ring)
1010 return 0;
1011
1012 udev->l2_ring_size = pages * BCM_PAGE_SIZE;
1013 udev->l2_ring = dma_alloc_coherent(&udev->pdev->dev, udev->l2_ring_size,
1014 &udev->l2_ring_map,
1015 GFP_KERNEL | __GFP_COMP);
1016 if (!udev->l2_ring)
1017 return -ENOMEM;
1018
1019 udev->l2_buf_size = (cp->l2_rx_ring_size + 1) * cp->l2_single_buf_size;
1020 udev->l2_buf_size = PAGE_ALIGN(udev->l2_buf_size);
1021 udev->l2_buf = dma_alloc_coherent(&udev->pdev->dev, udev->l2_buf_size,
1022 &udev->l2_buf_map,
1023 GFP_KERNEL | __GFP_COMP);
1024 if (!udev->l2_buf) {
1025 __cnic_free_uio_rings(udev);
1026 return -ENOMEM;
1027 }
1028
1029 return 0;
1030
1031}
1032
Michael Chancd801532010-10-13 14:06:49 +00001033static int cnic_alloc_uio_rings(struct cnic_dev *dev, int pages)
Michael Chanec0248e2009-08-26 09:49:22 +00001034{
1035 struct cnic_local *cp = dev->cnic_priv;
Michael Chancd801532010-10-13 14:06:49 +00001036 struct cnic_uio_dev *udev;
Michael Chanec0248e2009-08-26 09:49:22 +00001037
Michael Chana3ceeeb2010-10-13 14:06:50 +00001038 read_lock(&cnic_dev_lock);
1039 list_for_each_entry(udev, &cnic_udev_list, list) {
1040 if (udev->pdev == dev->pcidev) {
1041 udev->dev = dev;
1042 cp->udev = udev;
1043 read_unlock(&cnic_dev_lock);
1044 return 0;
1045 }
1046 }
1047 read_unlock(&cnic_dev_lock);
1048
Michael Chancd801532010-10-13 14:06:49 +00001049 udev = kzalloc(sizeof(struct cnic_uio_dev), GFP_ATOMIC);
1050 if (!udev)
Michael Chanec0248e2009-08-26 09:49:22 +00001051 return -ENOMEM;
1052
Michael Chancd801532010-10-13 14:06:49 +00001053 udev->uio_dev = -1;
1054
1055 udev->dev = dev;
1056 udev->pdev = dev->pcidev;
Michael Chanec0248e2009-08-26 09:49:22 +00001057
Michael Chan74dd0c42012-09-08 06:01:01 +00001058 if (__cnic_alloc_uio_rings(udev, pages))
1059 goto err_udev;
Michael Chancd801532010-10-13 14:06:49 +00001060
Michael Chana3ceeeb2010-10-13 14:06:50 +00001061 write_lock(&cnic_dev_lock);
1062 list_add(&udev->list, &cnic_udev_list);
1063 write_unlock(&cnic_dev_lock);
1064
1065 pci_dev_get(udev->pdev);
1066
Michael Chancd801532010-10-13 14:06:49 +00001067 cp->udev = udev;
1068
Michael Chanec0248e2009-08-26 09:49:22 +00001069 return 0;
Michael Chan74dd0c42012-09-08 06:01:01 +00001070
Jesper Juhlf7e4c972010-12-31 11:18:48 -08001071 err_udev:
1072 kfree(udev);
1073 return -ENOMEM;
Michael Chanec0248e2009-08-26 09:49:22 +00001074}
1075
Michael Chancd801532010-10-13 14:06:49 +00001076static int cnic_init_uio(struct cnic_dev *dev)
1077{
Michael Chan5e9b2db2009-08-26 09:49:23 +00001078 struct cnic_local *cp = dev->cnic_priv;
Michael Chancd801532010-10-13 14:06:49 +00001079 struct cnic_uio_dev *udev = cp->udev;
Michael Chan5e9b2db2009-08-26 09:49:23 +00001080 struct uio_info *uinfo;
Michael Chancd801532010-10-13 14:06:49 +00001081 int ret = 0;
Michael Chan5e9b2db2009-08-26 09:49:23 +00001082
Michael Chancd801532010-10-13 14:06:49 +00001083 if (!udev)
Michael Chan5e9b2db2009-08-26 09:49:23 +00001084 return -ENOMEM;
1085
Michael Chancd801532010-10-13 14:06:49 +00001086 uinfo = &udev->cnic_uinfo;
1087
Michael Chanae0eef62012-06-29 09:32:45 +00001088 uinfo->mem[0].addr = pci_resource_start(dev->pcidev, 0);
1089 uinfo->mem[0].internal_addr = dev->regview;
1090 uinfo->mem[0].memtype = UIO_MEM_PHYS;
Michael Chan5e9b2db2009-08-26 09:49:23 +00001091
Michael Chan5e9b2db2009-08-26 09:49:23 +00001092 if (test_bit(CNIC_F_BNX2_CLASS, &dev->flags)) {
Michael Chanae0eef62012-06-29 09:32:45 +00001093 uinfo->mem[0].size = MB_GET_CID_ADDR(TX_TSS_CID +
1094 TX_MAX_TSS_RINGS + 1);
Michael Chana4dde3a2010-02-24 14:42:08 +00001095 uinfo->mem[1].addr = (unsigned long) cp->status_blk.gen &
Michael Chancd801532010-10-13 14:06:49 +00001096 PAGE_MASK;
Michael Chan5e9b2db2009-08-26 09:49:23 +00001097 if (cp->ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX)
1098 uinfo->mem[1].size = BNX2_SBLK_MSIX_ALIGN_SIZE * 9;
1099 else
1100 uinfo->mem[1].size = BNX2_SBLK_MSIX_ALIGN_SIZE;
1101
1102 uinfo->name = "bnx2_cnic";
Michael Chan71034ba2009-10-10 13:46:59 +00001103 } else if (test_bit(CNIC_F_BNX2X_CLASS, &dev->flags)) {
Michael Chanae0eef62012-06-29 09:32:45 +00001104 uinfo->mem[0].size = pci_resource_len(dev->pcidev, 0);
1105
Michael Chan71034ba2009-10-10 13:46:59 +00001106 uinfo->mem[1].addr = (unsigned long) cp->bnx2x_def_status_blk &
1107 PAGE_MASK;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001108 uinfo->mem[1].size = sizeof(*cp->bnx2x_def_status_blk);
Michael Chan71034ba2009-10-10 13:46:59 +00001109
1110 uinfo->name = "bnx2x_cnic";
Michael Chan5e9b2db2009-08-26 09:49:23 +00001111 }
1112
1113 uinfo->mem[1].memtype = UIO_MEM_LOGICAL;
1114
Michael Chancd801532010-10-13 14:06:49 +00001115 uinfo->mem[2].addr = (unsigned long) udev->l2_ring;
1116 uinfo->mem[2].size = udev->l2_ring_size;
Michael Chan5e9b2db2009-08-26 09:49:23 +00001117 uinfo->mem[2].memtype = UIO_MEM_LOGICAL;
1118
Michael Chancd801532010-10-13 14:06:49 +00001119 uinfo->mem[3].addr = (unsigned long) udev->l2_buf;
1120 uinfo->mem[3].size = udev->l2_buf_size;
Michael Chan5e9b2db2009-08-26 09:49:23 +00001121 uinfo->mem[3].memtype = UIO_MEM_LOGICAL;
1122
1123 uinfo->version = CNIC_MODULE_VERSION;
1124 uinfo->irq = UIO_IRQ_CUSTOM;
1125
1126 uinfo->open = cnic_uio_open;
1127 uinfo->release = cnic_uio_close;
1128
Michael Chana3ceeeb2010-10-13 14:06:50 +00001129 if (udev->uio_dev == -1) {
1130 if (!uinfo->priv) {
1131 uinfo->priv = udev;
Michael Chan5e9b2db2009-08-26 09:49:23 +00001132
Michael Chana3ceeeb2010-10-13 14:06:50 +00001133 ret = uio_register_device(&udev->pdev->dev, uinfo);
1134 }
1135 } else {
1136 cnic_init_rings(dev);
1137 }
Michael Chan5e9b2db2009-08-26 09:49:23 +00001138
Michael Chancd801532010-10-13 14:06:49 +00001139 return ret;
Michael Chan5e9b2db2009-08-26 09:49:23 +00001140}
1141
Michael Chana4636962009-06-08 18:14:43 -07001142static int cnic_alloc_bnx2_resc(struct cnic_dev *dev)
1143{
1144 struct cnic_local *cp = dev->cnic_priv;
Michael Chana4636962009-06-08 18:14:43 -07001145 int ret;
1146
1147 ret = cnic_alloc_dma(dev, &cp->kwq_info, KWQ_PAGE_CNT, 1);
1148 if (ret)
1149 goto error;
1150 cp->kwq = (struct kwqe **) cp->kwq_info.pg_arr;
1151
Michael Chan59e51372011-06-14 01:32:38 +00001152 ret = cnic_alloc_kcq(dev, &cp->kcq1, true);
Michael Chana4636962009-06-08 18:14:43 -07001153 if (ret)
1154 goto error;
Michael Chana4636962009-06-08 18:14:43 -07001155
1156 ret = cnic_alloc_context(dev);
1157 if (ret)
1158 goto error;
1159
Michael Chancd801532010-10-13 14:06:49 +00001160 ret = cnic_alloc_uio_rings(dev, 2);
Michael Chanec0248e2009-08-26 09:49:22 +00001161 if (ret)
Michael Chana4636962009-06-08 18:14:43 -07001162 goto error;
1163
Michael Chancd801532010-10-13 14:06:49 +00001164 ret = cnic_init_uio(dev);
Michael Chan5e9b2db2009-08-26 09:49:23 +00001165 if (ret)
Michael Chana4636962009-06-08 18:14:43 -07001166 goto error;
1167
Michael Chana4636962009-06-08 18:14:43 -07001168 return 0;
1169
1170error:
1171 cnic_free_resc(dev);
1172 return ret;
1173}
1174
Michael Chan71034ba2009-10-10 13:46:59 +00001175static int cnic_alloc_bnx2x_context(struct cnic_dev *dev)
1176{
1177 struct cnic_local *cp = dev->cnic_priv;
Michael Chan71034ba2009-10-10 13:46:59 +00001178 int ctx_blk_size = cp->ethdev->ctx_blk_size;
Michael Chan520efdf2010-06-24 14:58:37 +00001179 int total_mem, blks, i;
Michael Chan71034ba2009-10-10 13:46:59 +00001180
Michael Chan520efdf2010-06-24 14:58:37 +00001181 total_mem = BNX2X_CONTEXT_MEM_SIZE * cp->max_cid_space;
Michael Chan71034ba2009-10-10 13:46:59 +00001182 blks = total_mem / ctx_blk_size;
1183 if (total_mem % ctx_blk_size)
1184 blks++;
1185
1186 if (blks > cp->ethdev->ctx_tbl_len)
1187 return -ENOMEM;
1188
Joe Perchesbaeb2ff2010-08-11 07:02:48 +00001189 cp->ctx_arr = kcalloc(blks, sizeof(struct cnic_ctx), GFP_KERNEL);
Michael Chan71034ba2009-10-10 13:46:59 +00001190 if (cp->ctx_arr == NULL)
1191 return -ENOMEM;
1192
1193 cp->ctx_blks = blks;
1194 cp->ctx_blk_size = ctx_blk_size;
Michael Chanee87a822010-10-13 14:06:51 +00001195 if (!BNX2X_CHIP_IS_57710(cp->chip_id))
Michael Chan71034ba2009-10-10 13:46:59 +00001196 cp->ctx_align = 0;
1197 else
1198 cp->ctx_align = ctx_blk_size;
1199
1200 cp->cids_per_blk = ctx_blk_size / BNX2X_CONTEXT_MEM_SIZE;
1201
1202 for (i = 0; i < blks; i++) {
1203 cp->ctx_arr[i].ctx =
Michael Chan3248e162009-12-02 15:15:39 +00001204 dma_alloc_coherent(&dev->pcidev->dev, cp->ctx_blk_size,
1205 &cp->ctx_arr[i].mapping,
1206 GFP_KERNEL);
Michael Chan71034ba2009-10-10 13:46:59 +00001207 if (cp->ctx_arr[i].ctx == NULL)
1208 return -ENOMEM;
1209
1210 if (cp->ctx_align && cp->ctx_blk_size == ctx_blk_size) {
1211 if (cp->ctx_arr[i].mapping & (cp->ctx_align - 1)) {
1212 cnic_free_context(dev);
1213 cp->ctx_blk_size += cp->ctx_align;
1214 i = -1;
1215 continue;
1216 }
1217 }
1218 }
1219 return 0;
1220}
1221
1222static int cnic_alloc_bnx2x_resc(struct cnic_dev *dev)
1223{
1224 struct cnic_local *cp = dev->cnic_priv;
Michael Chan520efdf2010-06-24 14:58:37 +00001225 struct cnic_eth_dev *ethdev = cp->ethdev;
1226 u32 start_cid = ethdev->starting_cid;
Michael Chan71034ba2009-10-10 13:46:59 +00001227 int i, j, n, ret, pages;
1228 struct cnic_dma *kwq_16_dma = &cp->kwq_16_data_info;
1229
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001230 cp->iro_arr = ethdev->iro_arr;
1231
Michael Chanb37a41e2011-07-20 14:55:22 +00001232 cp->max_cid_space = MAX_ISCSI_TBL_SZ;
Michael Chan520efdf2010-06-24 14:58:37 +00001233 cp->iscsi_start_cid = start_cid;
Michael Chane1928c82010-12-23 07:43:04 +00001234 cp->fcoe_start_cid = start_cid + MAX_ISCSI_TBL_SZ;
1235
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001236 if (BNX2X_CHIP_IS_E2_PLUS(cp->chip_id)) {
Michael Chandc219a22011-08-26 09:45:39 +00001237 cp->max_cid_space += dev->max_fcoe_conn;
Michael Chane1928c82010-12-23 07:43:04 +00001238 cp->fcoe_init_cid = ethdev->fcoe_init_cid;
1239 if (!cp->fcoe_init_cid)
1240 cp->fcoe_init_cid = 0x10;
1241 }
1242
Michael Chan71034ba2009-10-10 13:46:59 +00001243 cp->iscsi_tbl = kzalloc(sizeof(struct cnic_iscsi) * MAX_ISCSI_TBL_SZ,
1244 GFP_KERNEL);
1245 if (!cp->iscsi_tbl)
1246 goto error;
1247
1248 cp->ctx_tbl = kzalloc(sizeof(struct cnic_context) *
Michael Chan520efdf2010-06-24 14:58:37 +00001249 cp->max_cid_space, GFP_KERNEL);
Michael Chan71034ba2009-10-10 13:46:59 +00001250 if (!cp->ctx_tbl)
1251 goto error;
1252
1253 for (i = 0; i < MAX_ISCSI_TBL_SZ; i++) {
1254 cp->ctx_tbl[i].proto.iscsi = &cp->iscsi_tbl[i];
1255 cp->ctx_tbl[i].ulp_proto_id = CNIC_ULP_ISCSI;
1256 }
1257
Michael Chane1928c82010-12-23 07:43:04 +00001258 for (i = MAX_ISCSI_TBL_SZ; i < cp->max_cid_space; i++)
1259 cp->ctx_tbl[i].ulp_proto_id = CNIC_ULP_FCOE;
1260
Michael Chan520efdf2010-06-24 14:58:37 +00001261 pages = PAGE_ALIGN(cp->max_cid_space * CNIC_KWQ16_DATA_SIZE) /
Michael Chan71034ba2009-10-10 13:46:59 +00001262 PAGE_SIZE;
1263
1264 ret = cnic_alloc_dma(dev, kwq_16_dma, pages, 0);
1265 if (ret)
1266 return -ENOMEM;
1267
1268 n = PAGE_SIZE / CNIC_KWQ16_DATA_SIZE;
Michael Chan520efdf2010-06-24 14:58:37 +00001269 for (i = 0, j = 0; i < cp->max_cid_space; i++) {
Michael Chan71034ba2009-10-10 13:46:59 +00001270 long off = CNIC_KWQ16_DATA_SIZE * (i % n);
1271
1272 cp->ctx_tbl[i].kwqe_data = kwq_16_dma->pg_arr[j] + off;
1273 cp->ctx_tbl[i].kwqe_data_mapping = kwq_16_dma->pg_map_arr[j] +
1274 off;
1275
1276 if ((i % n) == (n - 1))
1277 j++;
1278 }
1279
Michael Chan59e51372011-06-14 01:32:38 +00001280 ret = cnic_alloc_kcq(dev, &cp->kcq1, false);
Michael Chan71034ba2009-10-10 13:46:59 +00001281 if (ret)
1282 goto error;
Michael Chan71034ba2009-10-10 13:46:59 +00001283
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001284 if (BNX2X_CHIP_IS_E2_PLUS(cp->chip_id)) {
1285 ret = cnic_alloc_kcq(dev, &cp->kcq2, true);
Michael Chane21ba412010-12-23 07:43:03 +00001286 if (ret)
1287 goto error;
1288 }
1289
Michael Chan71034ba2009-10-10 13:46:59 +00001290 pages = PAGE_ALIGN(BNX2X_ISCSI_GLB_BUF_SIZE) / PAGE_SIZE;
1291 ret = cnic_alloc_dma(dev, &cp->gbl_buf_info, pages, 0);
1292 if (ret)
1293 goto error;
1294
1295 ret = cnic_alloc_bnx2x_context(dev);
1296 if (ret)
1297 goto error;
1298
Michael Chan71034ba2009-10-10 13:46:59 +00001299 cp->bnx2x_def_status_blk = cp->ethdev->irq_arr[1].status_blk;
1300
1301 cp->l2_rx_ring_size = 15;
1302
Michael Chancd801532010-10-13 14:06:49 +00001303 ret = cnic_alloc_uio_rings(dev, 4);
Michael Chan71034ba2009-10-10 13:46:59 +00001304 if (ret)
1305 goto error;
1306
Michael Chancd801532010-10-13 14:06:49 +00001307 ret = cnic_init_uio(dev);
Michael Chan71034ba2009-10-10 13:46:59 +00001308 if (ret)
1309 goto error;
1310
1311 return 0;
1312
1313error:
1314 cnic_free_resc(dev);
1315 return -ENOMEM;
1316}
1317
Michael Chana4636962009-06-08 18:14:43 -07001318static inline u32 cnic_kwq_avail(struct cnic_local *cp)
1319{
1320 return cp->max_kwq_idx -
1321 ((cp->kwq_prod_idx - cp->kwq_con_idx) & cp->max_kwq_idx);
1322}
1323
1324static int cnic_submit_bnx2_kwqes(struct cnic_dev *dev, struct kwqe *wqes[],
1325 u32 num_wqes)
1326{
1327 struct cnic_local *cp = dev->cnic_priv;
1328 struct kwqe *prod_qe;
1329 u16 prod, sw_prod, i;
1330
1331 if (!test_bit(CNIC_F_CNIC_UP, &dev->flags))
1332 return -EAGAIN; /* bnx2 is down */
1333
1334 spin_lock_bh(&cp->cnic_ulp_lock);
1335 if (num_wqes > cnic_kwq_avail(cp) &&
Michael Chan1f1332a2010-05-18 11:32:52 +00001336 !test_bit(CNIC_LCL_FL_KWQ_INIT, &cp->cnic_local_flags)) {
Michael Chana4636962009-06-08 18:14:43 -07001337 spin_unlock_bh(&cp->cnic_ulp_lock);
1338 return -EAGAIN;
1339 }
1340
Michael Chan1f1332a2010-05-18 11:32:52 +00001341 clear_bit(CNIC_LCL_FL_KWQ_INIT, &cp->cnic_local_flags);
Michael Chana4636962009-06-08 18:14:43 -07001342
1343 prod = cp->kwq_prod_idx;
1344 sw_prod = prod & MAX_KWQ_IDX;
1345 for (i = 0; i < num_wqes; i++) {
1346 prod_qe = &cp->kwq[KWQ_PG(sw_prod)][KWQ_IDX(sw_prod)];
1347 memcpy(prod_qe, wqes[i], sizeof(struct kwqe));
1348 prod++;
1349 sw_prod = prod & MAX_KWQ_IDX;
1350 }
1351 cp->kwq_prod_idx = prod;
1352
1353 CNIC_WR16(dev, cp->kwq_io_addr, cp->kwq_prod_idx);
1354
1355 spin_unlock_bh(&cp->cnic_ulp_lock);
1356 return 0;
1357}
1358
Michael Chan71034ba2009-10-10 13:46:59 +00001359static void *cnic_get_kwqe_16_data(struct cnic_local *cp, u32 l5_cid,
1360 union l5cm_specific_data *l5_data)
1361{
1362 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
1363 dma_addr_t map;
1364
1365 map = ctx->kwqe_data_mapping;
1366 l5_data->phy_address.lo = (u64) map & 0xffffffff;
1367 l5_data->phy_address.hi = (u64) map >> 32;
1368 return ctx->kwqe_data;
1369}
1370
1371static int cnic_submit_kwqe_16(struct cnic_dev *dev, u32 cmd, u32 cid,
1372 u32 type, union l5cm_specific_data *l5_data)
1373{
1374 struct cnic_local *cp = dev->cnic_priv;
1375 struct l5cm_spe kwqe;
1376 struct kwqe_16 *kwq[1];
Michael Chan68d7c1a2011-01-05 15:14:13 +00001377 u16 type_16;
Michael Chan71034ba2009-10-10 13:46:59 +00001378 int ret;
1379
1380 kwqe.hdr.conn_and_cmd_data =
1381 cpu_to_le32(((cmd << SPE_HDR_CMD_ID_SHIFT) |
Michael Chanceb7e1c2010-10-06 03:14:54 +00001382 BNX2X_HW_CID(cp, cid)));
Michael Chan68d7c1a2011-01-05 15:14:13 +00001383
1384 type_16 = (type << SPE_HDR_CONN_TYPE_SHIFT) & SPE_HDR_CONN_TYPE;
1385 type_16 |= (cp->pfid << SPE_HDR_FUNCTION_ID_SHIFT) &
1386 SPE_HDR_FUNCTION_ID;
1387
1388 kwqe.hdr.type = cpu_to_le16(type_16);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001389 kwqe.hdr.reserved1 = 0;
Michael Chan71034ba2009-10-10 13:46:59 +00001390 kwqe.data.phy_address.lo = cpu_to_le32(l5_data->phy_address.lo);
1391 kwqe.data.phy_address.hi = cpu_to_le32(l5_data->phy_address.hi);
1392
1393 kwq[0] = (struct kwqe_16 *) &kwqe;
1394
1395 spin_lock_bh(&cp->cnic_ulp_lock);
1396 ret = cp->ethdev->drv_submit_kwqes_16(dev->netdev, kwq, 1);
1397 spin_unlock_bh(&cp->cnic_ulp_lock);
1398
1399 if (ret == 1)
1400 return 0;
1401
Michael Chan23021c22012-01-04 12:12:28 +00001402 return ret;
Michael Chan71034ba2009-10-10 13:46:59 +00001403}
1404
1405static void cnic_reply_bnx2x_kcqes(struct cnic_dev *dev, int ulp_type,
1406 struct kcqe *cqes[], u32 num_cqes)
1407{
1408 struct cnic_local *cp = dev->cnic_priv;
1409 struct cnic_ulp_ops *ulp_ops;
1410
1411 rcu_read_lock();
1412 ulp_ops = rcu_dereference(cp->ulp_ops[ulp_type]);
1413 if (likely(ulp_ops)) {
1414 ulp_ops->indicate_kcqes(cp->ulp_handle[ulp_type],
1415 cqes, num_cqes);
1416 }
1417 rcu_read_unlock();
1418}
1419
1420static int cnic_bnx2x_iscsi_init1(struct cnic_dev *dev, struct kwqe *kwqe)
1421{
1422 struct cnic_local *cp = dev->cnic_priv;
1423 struct iscsi_kwqe_init1 *req1 = (struct iscsi_kwqe_init1 *) kwqe;
Michael Chan14203982010-10-06 03:16:06 +00001424 int hq_bds, pages;
1425 u32 pfid = cp->pfid;
Michael Chan71034ba2009-10-10 13:46:59 +00001426
1427 cp->num_iscsi_tasks = req1->num_tasks_per_conn;
1428 cp->num_ccells = req1->num_ccells_per_conn;
1429 cp->task_array_size = BNX2X_ISCSI_TASK_CONTEXT_SIZE *
1430 cp->num_iscsi_tasks;
1431 cp->r2tq_size = cp->num_iscsi_tasks * BNX2X_ISCSI_MAX_PENDING_R2TS *
1432 BNX2X_ISCSI_R2TQE_SIZE;
1433 cp->hq_size = cp->num_ccells * BNX2X_ISCSI_HQ_BD_SIZE;
1434 pages = PAGE_ALIGN(cp->hq_size) / PAGE_SIZE;
1435 hq_bds = pages * (PAGE_SIZE / BNX2X_ISCSI_HQ_BD_SIZE);
1436 cp->num_cqs = req1->num_cqs;
1437
1438 if (!dev->max_iscsi_conn)
1439 return 0;
1440
1441 /* init Tstorm RAM */
Michael Chan14203982010-10-06 03:16:06 +00001442 CNIC_WR16(dev, BAR_TSTRORM_INTMEM + TSTORM_ISCSI_RQ_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001443 req1->rq_num_wqes);
Michael Chan14203982010-10-06 03:16:06 +00001444 CNIC_WR16(dev, BAR_TSTRORM_INTMEM + TSTORM_ISCSI_PAGE_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001445 PAGE_SIZE);
1446 CNIC_WR8(dev, BAR_TSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001447 TSTORM_ISCSI_PAGE_SIZE_LOG_OFFSET(pfid), PAGE_SHIFT);
Michael Chan71034ba2009-10-10 13:46:59 +00001448 CNIC_WR16(dev, BAR_TSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001449 TSTORM_ISCSI_NUM_OF_TASKS_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001450 req1->num_tasks_per_conn);
1451
1452 /* init Ustorm RAM */
1453 CNIC_WR16(dev, BAR_USTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001454 USTORM_ISCSI_RQ_BUFFER_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001455 req1->rq_buffer_size);
Michael Chan14203982010-10-06 03:16:06 +00001456 CNIC_WR16(dev, BAR_USTRORM_INTMEM + USTORM_ISCSI_PAGE_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001457 PAGE_SIZE);
1458 CNIC_WR8(dev, BAR_USTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001459 USTORM_ISCSI_PAGE_SIZE_LOG_OFFSET(pfid), PAGE_SHIFT);
Michael Chan71034ba2009-10-10 13:46:59 +00001460 CNIC_WR16(dev, BAR_USTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001461 USTORM_ISCSI_NUM_OF_TASKS_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001462 req1->num_tasks_per_conn);
Michael Chan14203982010-10-06 03:16:06 +00001463 CNIC_WR16(dev, BAR_USTRORM_INTMEM + USTORM_ISCSI_RQ_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001464 req1->rq_num_wqes);
Michael Chan14203982010-10-06 03:16:06 +00001465 CNIC_WR16(dev, BAR_USTRORM_INTMEM + USTORM_ISCSI_CQ_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001466 req1->cq_num_wqes);
Michael Chan14203982010-10-06 03:16:06 +00001467 CNIC_WR16(dev, BAR_USTRORM_INTMEM + USTORM_ISCSI_R2TQ_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001468 cp->num_iscsi_tasks * BNX2X_ISCSI_MAX_PENDING_R2TS);
1469
1470 /* init Xstorm RAM */
Michael Chan14203982010-10-06 03:16:06 +00001471 CNIC_WR16(dev, BAR_XSTRORM_INTMEM + XSTORM_ISCSI_PAGE_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001472 PAGE_SIZE);
1473 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001474 XSTORM_ISCSI_PAGE_SIZE_LOG_OFFSET(pfid), PAGE_SHIFT);
Michael Chan71034ba2009-10-10 13:46:59 +00001475 CNIC_WR16(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001476 XSTORM_ISCSI_NUM_OF_TASKS_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001477 req1->num_tasks_per_conn);
Michael Chan14203982010-10-06 03:16:06 +00001478 CNIC_WR16(dev, BAR_XSTRORM_INTMEM + XSTORM_ISCSI_HQ_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001479 hq_bds);
Michael Chan14203982010-10-06 03:16:06 +00001480 CNIC_WR16(dev, BAR_XSTRORM_INTMEM + XSTORM_ISCSI_SQ_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001481 req1->num_tasks_per_conn);
Michael Chan14203982010-10-06 03:16:06 +00001482 CNIC_WR16(dev, BAR_XSTRORM_INTMEM + XSTORM_ISCSI_R2TQ_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001483 cp->num_iscsi_tasks * BNX2X_ISCSI_MAX_PENDING_R2TS);
1484
1485 /* init Cstorm RAM */
Michael Chan14203982010-10-06 03:16:06 +00001486 CNIC_WR16(dev, BAR_CSTRORM_INTMEM + CSTORM_ISCSI_PAGE_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001487 PAGE_SIZE);
1488 CNIC_WR8(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001489 CSTORM_ISCSI_PAGE_SIZE_LOG_OFFSET(pfid), PAGE_SHIFT);
Michael Chan71034ba2009-10-10 13:46:59 +00001490 CNIC_WR16(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001491 CSTORM_ISCSI_NUM_OF_TASKS_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001492 req1->num_tasks_per_conn);
Michael Chan14203982010-10-06 03:16:06 +00001493 CNIC_WR16(dev, BAR_CSTRORM_INTMEM + CSTORM_ISCSI_CQ_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001494 req1->cq_num_wqes);
Michael Chan14203982010-10-06 03:16:06 +00001495 CNIC_WR16(dev, BAR_CSTRORM_INTMEM + CSTORM_ISCSI_HQ_SIZE_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00001496 hq_bds);
1497
1498 return 0;
1499}
1500
1501static int cnic_bnx2x_iscsi_init2(struct cnic_dev *dev, struct kwqe *kwqe)
1502{
1503 struct iscsi_kwqe_init2 *req2 = (struct iscsi_kwqe_init2 *) kwqe;
1504 struct cnic_local *cp = dev->cnic_priv;
Michael Chan14203982010-10-06 03:16:06 +00001505 u32 pfid = cp->pfid;
Michael Chan71034ba2009-10-10 13:46:59 +00001506 struct iscsi_kcqe kcqe;
1507 struct kcqe *cqes[1];
1508
1509 memset(&kcqe, 0, sizeof(kcqe));
1510 if (!dev->max_iscsi_conn) {
1511 kcqe.completion_status =
1512 ISCSI_KCQE_COMPLETION_STATUS_ISCSI_NOT_SUPPORTED;
1513 goto done;
1514 }
1515
1516 CNIC_WR(dev, BAR_TSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001517 TSTORM_ISCSI_ERROR_BITMAP_OFFSET(pfid), req2->error_bit_map[0]);
Michael Chan71034ba2009-10-10 13:46:59 +00001518 CNIC_WR(dev, BAR_TSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001519 TSTORM_ISCSI_ERROR_BITMAP_OFFSET(pfid) + 4,
Michael Chan71034ba2009-10-10 13:46:59 +00001520 req2->error_bit_map[1]);
1521
1522 CNIC_WR16(dev, BAR_USTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001523 USTORM_ISCSI_CQ_SQN_SIZE_OFFSET(pfid), req2->max_cq_sqn);
Michael Chan71034ba2009-10-10 13:46:59 +00001524 CNIC_WR(dev, BAR_USTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001525 USTORM_ISCSI_ERROR_BITMAP_OFFSET(pfid), req2->error_bit_map[0]);
Michael Chan71034ba2009-10-10 13:46:59 +00001526 CNIC_WR(dev, BAR_USTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001527 USTORM_ISCSI_ERROR_BITMAP_OFFSET(pfid) + 4,
Michael Chan71034ba2009-10-10 13:46:59 +00001528 req2->error_bit_map[1]);
1529
1530 CNIC_WR16(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00001531 CSTORM_ISCSI_CQ_SQN_SIZE_OFFSET(pfid), req2->max_cq_sqn);
Michael Chan71034ba2009-10-10 13:46:59 +00001532
1533 kcqe.completion_status = ISCSI_KCQE_COMPLETION_STATUS_SUCCESS;
1534
1535done:
1536 kcqe.op_code = ISCSI_KCQE_OPCODE_INIT;
1537 cqes[0] = (struct kcqe *) &kcqe;
1538 cnic_reply_bnx2x_kcqes(dev, CNIC_ULP_ISCSI, cqes, 1);
1539
1540 return 0;
1541}
1542
1543static void cnic_free_bnx2x_conn_resc(struct cnic_dev *dev, u32 l5_cid)
1544{
1545 struct cnic_local *cp = dev->cnic_priv;
1546 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
1547
1548 if (ctx->ulp_proto_id == CNIC_ULP_ISCSI) {
1549 struct cnic_iscsi *iscsi = ctx->proto.iscsi;
1550
1551 cnic_free_dma(dev, &iscsi->hq_info);
1552 cnic_free_dma(dev, &iscsi->r2tq_info);
1553 cnic_free_dma(dev, &iscsi->task_array_info);
Michael Chane1928c82010-12-23 07:43:04 +00001554 cnic_free_id(&cp->cid_tbl, ctx->cid);
1555 } else {
1556 cnic_free_id(&cp->fcoe_cid_tbl, ctx->cid);
Michael Chan71034ba2009-10-10 13:46:59 +00001557 }
Michael Chane1928c82010-12-23 07:43:04 +00001558
Michael Chan71034ba2009-10-10 13:46:59 +00001559 ctx->cid = 0;
1560}
1561
1562static int cnic_alloc_bnx2x_conn_resc(struct cnic_dev *dev, u32 l5_cid)
1563{
1564 u32 cid;
1565 int ret, pages;
1566 struct cnic_local *cp = dev->cnic_priv;
1567 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
1568 struct cnic_iscsi *iscsi = ctx->proto.iscsi;
1569
Michael Chane1928c82010-12-23 07:43:04 +00001570 if (ctx->ulp_proto_id == CNIC_ULP_FCOE) {
1571 cid = cnic_alloc_new_id(&cp->fcoe_cid_tbl);
1572 if (cid == -1) {
1573 ret = -ENOMEM;
1574 goto error;
1575 }
1576 ctx->cid = cid;
1577 return 0;
1578 }
1579
Michael Chan71034ba2009-10-10 13:46:59 +00001580 cid = cnic_alloc_new_id(&cp->cid_tbl);
1581 if (cid == -1) {
1582 ret = -ENOMEM;
1583 goto error;
1584 }
1585
1586 ctx->cid = cid;
1587 pages = PAGE_ALIGN(cp->task_array_size) / PAGE_SIZE;
1588
1589 ret = cnic_alloc_dma(dev, &iscsi->task_array_info, pages, 1);
1590 if (ret)
1591 goto error;
1592
1593 pages = PAGE_ALIGN(cp->r2tq_size) / PAGE_SIZE;
1594 ret = cnic_alloc_dma(dev, &iscsi->r2tq_info, pages, 1);
1595 if (ret)
1596 goto error;
1597
1598 pages = PAGE_ALIGN(cp->hq_size) / PAGE_SIZE;
1599 ret = cnic_alloc_dma(dev, &iscsi->hq_info, pages, 1);
1600 if (ret)
1601 goto error;
1602
1603 return 0;
1604
1605error:
1606 cnic_free_bnx2x_conn_resc(dev, l5_cid);
1607 return ret;
1608}
1609
1610static void *cnic_get_bnx2x_ctx(struct cnic_dev *dev, u32 cid, int init,
1611 struct regpair *ctx_addr)
1612{
1613 struct cnic_local *cp = dev->cnic_priv;
1614 struct cnic_eth_dev *ethdev = cp->ethdev;
1615 int blk = (cid - ethdev->starting_cid) / cp->cids_per_blk;
1616 int off = (cid - ethdev->starting_cid) % cp->cids_per_blk;
1617 unsigned long align_off = 0;
1618 dma_addr_t ctx_map;
1619 void *ctx;
1620
1621 if (cp->ctx_align) {
1622 unsigned long mask = cp->ctx_align - 1;
1623
1624 if (cp->ctx_arr[blk].mapping & mask)
1625 align_off = cp->ctx_align -
1626 (cp->ctx_arr[blk].mapping & mask);
1627 }
1628 ctx_map = cp->ctx_arr[blk].mapping + align_off +
1629 (off * BNX2X_CONTEXT_MEM_SIZE);
1630 ctx = cp->ctx_arr[blk].ctx + align_off +
1631 (off * BNX2X_CONTEXT_MEM_SIZE);
1632 if (init)
1633 memset(ctx, 0, BNX2X_CONTEXT_MEM_SIZE);
1634
1635 ctx_addr->lo = ctx_map & 0xffffffff;
1636 ctx_addr->hi = (u64) ctx_map >> 32;
1637 return ctx;
1638}
1639
1640static int cnic_setup_bnx2x_ctx(struct cnic_dev *dev, struct kwqe *wqes[],
1641 u32 num)
1642{
1643 struct cnic_local *cp = dev->cnic_priv;
1644 struct iscsi_kwqe_conn_offload1 *req1 =
1645 (struct iscsi_kwqe_conn_offload1 *) wqes[0];
1646 struct iscsi_kwqe_conn_offload2 *req2 =
1647 (struct iscsi_kwqe_conn_offload2 *) wqes[1];
1648 struct iscsi_kwqe_conn_offload3 *req3;
1649 struct cnic_context *ctx = &cp->ctx_tbl[req1->iscsi_conn_id];
1650 struct cnic_iscsi *iscsi = ctx->proto.iscsi;
1651 u32 cid = ctx->cid;
Michael Chanceb7e1c2010-10-06 03:14:54 +00001652 u32 hw_cid = BNX2X_HW_CID(cp, cid);
Michael Chan71034ba2009-10-10 13:46:59 +00001653 struct iscsi_context *ictx;
1654 struct regpair context_addr;
1655 int i, j, n = 2, n_max;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001656 u8 port = CNIC_PORT(cp);
Michael Chan71034ba2009-10-10 13:46:59 +00001657
1658 ctx->ctx_flags = 0;
1659 if (!req2->num_additional_wqes)
1660 return -EINVAL;
1661
1662 n_max = req2->num_additional_wqes + 2;
1663
1664 ictx = cnic_get_bnx2x_ctx(dev, cid, 1, &context_addr);
1665 if (ictx == NULL)
1666 return -ENOMEM;
1667
1668 req3 = (struct iscsi_kwqe_conn_offload3 *) wqes[n++];
1669
1670 ictx->xstorm_ag_context.hq_prod = 1;
1671
1672 ictx->xstorm_st_context.iscsi.first_burst_length =
1673 ISCSI_DEF_FIRST_BURST_LEN;
1674 ictx->xstorm_st_context.iscsi.max_send_pdu_length =
1675 ISCSI_DEF_MAX_RECV_SEG_LEN;
1676 ictx->xstorm_st_context.iscsi.sq_pbl_base.lo =
1677 req1->sq_page_table_addr_lo;
1678 ictx->xstorm_st_context.iscsi.sq_pbl_base.hi =
1679 req1->sq_page_table_addr_hi;
1680 ictx->xstorm_st_context.iscsi.sq_curr_pbe.lo = req2->sq_first_pte.hi;
1681 ictx->xstorm_st_context.iscsi.sq_curr_pbe.hi = req2->sq_first_pte.lo;
1682 ictx->xstorm_st_context.iscsi.hq_pbl_base.lo =
1683 iscsi->hq_info.pgtbl_map & 0xffffffff;
1684 ictx->xstorm_st_context.iscsi.hq_pbl_base.hi =
1685 (u64) iscsi->hq_info.pgtbl_map >> 32;
1686 ictx->xstorm_st_context.iscsi.hq_curr_pbe_base.lo =
1687 iscsi->hq_info.pgtbl[0];
1688 ictx->xstorm_st_context.iscsi.hq_curr_pbe_base.hi =
1689 iscsi->hq_info.pgtbl[1];
1690 ictx->xstorm_st_context.iscsi.r2tq_pbl_base.lo =
1691 iscsi->r2tq_info.pgtbl_map & 0xffffffff;
1692 ictx->xstorm_st_context.iscsi.r2tq_pbl_base.hi =
1693 (u64) iscsi->r2tq_info.pgtbl_map >> 32;
1694 ictx->xstorm_st_context.iscsi.r2tq_curr_pbe_base.lo =
1695 iscsi->r2tq_info.pgtbl[0];
1696 ictx->xstorm_st_context.iscsi.r2tq_curr_pbe_base.hi =
1697 iscsi->r2tq_info.pgtbl[1];
1698 ictx->xstorm_st_context.iscsi.task_pbl_base.lo =
1699 iscsi->task_array_info.pgtbl_map & 0xffffffff;
1700 ictx->xstorm_st_context.iscsi.task_pbl_base.hi =
1701 (u64) iscsi->task_array_info.pgtbl_map >> 32;
1702 ictx->xstorm_st_context.iscsi.task_pbl_cache_idx =
1703 BNX2X_ISCSI_PBL_NOT_CACHED;
1704 ictx->xstorm_st_context.iscsi.flags.flags |=
1705 XSTORM_ISCSI_CONTEXT_FLAGS_B_IMMEDIATE_DATA;
1706 ictx->xstorm_st_context.iscsi.flags.flags |=
1707 XSTORM_ISCSI_CONTEXT_FLAGS_B_INITIAL_R2T;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001708 ictx->xstorm_st_context.common.ethernet.reserved_vlan_type =
1709 ETH_P_8021Q;
1710 if (BNX2X_CHIP_IS_E2_PLUS(cp->chip_id) &&
1711 cp->port_mode == CHIP_2_PORT_MODE) {
1712
1713 port = 0;
1714 }
1715 ictx->xstorm_st_context.common.flags =
1716 1 << XSTORM_COMMON_CONTEXT_SECTION_PHYSQ_INITIALIZED_SHIFT;
1717 ictx->xstorm_st_context.common.flags =
1718 port << XSTORM_COMMON_CONTEXT_SECTION_PBF_PORT_SHIFT;
Michael Chan71034ba2009-10-10 13:46:59 +00001719
1720 ictx->tstorm_st_context.iscsi.hdr_bytes_2_fetch = ISCSI_HEADER_SIZE;
1721 /* TSTORM requires the base address of RQ DB & not PTE */
1722 ictx->tstorm_st_context.iscsi.rq_db_phy_addr.lo =
1723 req2->rq_page_table_addr_lo & PAGE_MASK;
1724 ictx->tstorm_st_context.iscsi.rq_db_phy_addr.hi =
1725 req2->rq_page_table_addr_hi;
1726 ictx->tstorm_st_context.iscsi.iscsi_conn_id = req1->iscsi_conn_id;
1727 ictx->tstorm_st_context.tcp.cwnd = 0x5A8;
1728 ictx->tstorm_st_context.tcp.flags2 |=
1729 TSTORM_TCP_ST_CONTEXT_SECTION_DA_EN;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001730 ictx->tstorm_st_context.tcp.ooo_support_mode =
1731 TCP_TSTORM_OOO_DROP_AND_PROC_ACK;
Michael Chan71034ba2009-10-10 13:46:59 +00001732
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001733 ictx->timers_context.flags |= TIMERS_BLOCK_CONTEXT_CONN_VALID_FLG;
Michael Chan71034ba2009-10-10 13:46:59 +00001734
1735 ictx->ustorm_st_context.ring.rq.pbl_base.lo =
Michael Chan15971c32009-12-02 15:15:38 +00001736 req2->rq_page_table_addr_lo;
Michael Chan71034ba2009-10-10 13:46:59 +00001737 ictx->ustorm_st_context.ring.rq.pbl_base.hi =
Michael Chan15971c32009-12-02 15:15:38 +00001738 req2->rq_page_table_addr_hi;
Michael Chan71034ba2009-10-10 13:46:59 +00001739 ictx->ustorm_st_context.ring.rq.curr_pbe.lo = req3->qp_first_pte[0].hi;
1740 ictx->ustorm_st_context.ring.rq.curr_pbe.hi = req3->qp_first_pte[0].lo;
1741 ictx->ustorm_st_context.ring.r2tq.pbl_base.lo =
1742 iscsi->r2tq_info.pgtbl_map & 0xffffffff;
1743 ictx->ustorm_st_context.ring.r2tq.pbl_base.hi =
1744 (u64) iscsi->r2tq_info.pgtbl_map >> 32;
1745 ictx->ustorm_st_context.ring.r2tq.curr_pbe.lo =
1746 iscsi->r2tq_info.pgtbl[0];
1747 ictx->ustorm_st_context.ring.r2tq.curr_pbe.hi =
1748 iscsi->r2tq_info.pgtbl[1];
1749 ictx->ustorm_st_context.ring.cq_pbl_base.lo =
1750 req1->cq_page_table_addr_lo;
1751 ictx->ustorm_st_context.ring.cq_pbl_base.hi =
1752 req1->cq_page_table_addr_hi;
1753 ictx->ustorm_st_context.ring.cq[0].cq_sn = ISCSI_INITIAL_SN;
1754 ictx->ustorm_st_context.ring.cq[0].curr_pbe.lo = req2->cq_first_pte.hi;
1755 ictx->ustorm_st_context.ring.cq[0].curr_pbe.hi = req2->cq_first_pte.lo;
1756 ictx->ustorm_st_context.task_pbe_cache_index =
1757 BNX2X_ISCSI_PBL_NOT_CACHED;
1758 ictx->ustorm_st_context.task_pdu_cache_index =
1759 BNX2X_ISCSI_PDU_HEADER_NOT_CACHED;
1760
1761 for (i = 1, j = 1; i < cp->num_cqs; i++, j++) {
1762 if (j == 3) {
1763 if (n >= n_max)
1764 break;
1765 req3 = (struct iscsi_kwqe_conn_offload3 *) wqes[n++];
1766 j = 0;
1767 }
1768 ictx->ustorm_st_context.ring.cq[i].cq_sn = ISCSI_INITIAL_SN;
1769 ictx->ustorm_st_context.ring.cq[i].curr_pbe.lo =
1770 req3->qp_first_pte[j].hi;
1771 ictx->ustorm_st_context.ring.cq[i].curr_pbe.hi =
1772 req3->qp_first_pte[j].lo;
1773 }
1774
1775 ictx->ustorm_st_context.task_pbl_base.lo =
1776 iscsi->task_array_info.pgtbl_map & 0xffffffff;
1777 ictx->ustorm_st_context.task_pbl_base.hi =
1778 (u64) iscsi->task_array_info.pgtbl_map >> 32;
1779 ictx->ustorm_st_context.tce_phy_addr.lo =
1780 iscsi->task_array_info.pgtbl[0];
1781 ictx->ustorm_st_context.tce_phy_addr.hi =
1782 iscsi->task_array_info.pgtbl[1];
1783 ictx->ustorm_st_context.iscsi_conn_id = req1->iscsi_conn_id;
1784 ictx->ustorm_st_context.num_cqs = cp->num_cqs;
1785 ictx->ustorm_st_context.negotiated_rx |= ISCSI_DEF_MAX_RECV_SEG_LEN;
1786 ictx->ustorm_st_context.negotiated_rx_and_flags |=
1787 ISCSI_DEF_MAX_BURST_LEN;
1788 ictx->ustorm_st_context.negotiated_rx |=
1789 ISCSI_DEFAULT_MAX_OUTSTANDING_R2T <<
1790 USTORM_ISCSI_ST_CONTEXT_MAX_OUTSTANDING_R2TS_SHIFT;
1791
1792 ictx->cstorm_st_context.hq_pbl_base.lo =
1793 iscsi->hq_info.pgtbl_map & 0xffffffff;
1794 ictx->cstorm_st_context.hq_pbl_base.hi =
1795 (u64) iscsi->hq_info.pgtbl_map >> 32;
1796 ictx->cstorm_st_context.hq_curr_pbe.lo = iscsi->hq_info.pgtbl[0];
1797 ictx->cstorm_st_context.hq_curr_pbe.hi = iscsi->hq_info.pgtbl[1];
1798 ictx->cstorm_st_context.task_pbl_base.lo =
1799 iscsi->task_array_info.pgtbl_map & 0xffffffff;
1800 ictx->cstorm_st_context.task_pbl_base.hi =
1801 (u64) iscsi->task_array_info.pgtbl_map >> 32;
1802 /* CSTORM and USTORM initialization is different, CSTORM requires
1803 * CQ DB base & not PTE addr */
1804 ictx->cstorm_st_context.cq_db_base.lo =
1805 req1->cq_page_table_addr_lo & PAGE_MASK;
1806 ictx->cstorm_st_context.cq_db_base.hi = req1->cq_page_table_addr_hi;
1807 ictx->cstorm_st_context.iscsi_conn_id = req1->iscsi_conn_id;
1808 ictx->cstorm_st_context.cq_proc_en_bit_map = (1 << cp->num_cqs) - 1;
1809 for (i = 0; i < cp->num_cqs; i++) {
1810 ictx->cstorm_st_context.cq_c_prod_sqn_arr.sqn[i] =
1811 ISCSI_INITIAL_SN;
1812 ictx->cstorm_st_context.cq_c_sqn_2_notify_arr.sqn[i] =
1813 ISCSI_INITIAL_SN;
1814 }
1815
1816 ictx->xstorm_ag_context.cdu_reserved =
1817 CDU_RSRVD_VALUE_TYPE_A(hw_cid, CDU_REGION_NUMBER_XCM_AG,
1818 ISCSI_CONNECTION_TYPE);
1819 ictx->ustorm_ag_context.cdu_usage =
1820 CDU_RSRVD_VALUE_TYPE_A(hw_cid, CDU_REGION_NUMBER_UCM_AG,
1821 ISCSI_CONNECTION_TYPE);
1822 return 0;
1823
1824}
1825
1826static int cnic_bnx2x_iscsi_ofld1(struct cnic_dev *dev, struct kwqe *wqes[],
1827 u32 num, int *work)
1828{
1829 struct iscsi_kwqe_conn_offload1 *req1;
1830 struct iscsi_kwqe_conn_offload2 *req2;
1831 struct cnic_local *cp = dev->cnic_priv;
Michael Chanfdf24082010-10-13 14:06:47 +00001832 struct cnic_context *ctx;
Michael Chan71034ba2009-10-10 13:46:59 +00001833 struct iscsi_kcqe kcqe;
1834 struct kcqe *cqes[1];
1835 u32 l5_cid;
Michael Chanfdf24082010-10-13 14:06:47 +00001836 int ret = 0;
Michael Chan71034ba2009-10-10 13:46:59 +00001837
1838 if (num < 2) {
1839 *work = num;
1840 return -EINVAL;
1841 }
1842
1843 req1 = (struct iscsi_kwqe_conn_offload1 *) wqes[0];
1844 req2 = (struct iscsi_kwqe_conn_offload2 *) wqes[1];
1845 if ((num - 2) < req2->num_additional_wqes) {
1846 *work = num;
1847 return -EINVAL;
1848 }
Joe Perches779bb412010-11-14 17:04:37 +00001849 *work = 2 + req2->num_additional_wqes;
Michael Chan71034ba2009-10-10 13:46:59 +00001850
1851 l5_cid = req1->iscsi_conn_id;
1852 if (l5_cid >= MAX_ISCSI_TBL_SZ)
1853 return -EINVAL;
1854
1855 memset(&kcqe, 0, sizeof(kcqe));
1856 kcqe.op_code = ISCSI_KCQE_OPCODE_OFFLOAD_CONN;
1857 kcqe.iscsi_conn_id = l5_cid;
1858 kcqe.completion_status = ISCSI_KCQE_COMPLETION_STATUS_CTX_ALLOC_FAILURE;
1859
Michael Chanfdf24082010-10-13 14:06:47 +00001860 ctx = &cp->ctx_tbl[l5_cid];
1861 if (test_bit(CTX_FL_OFFLD_START, &ctx->ctx_flags)) {
1862 kcqe.completion_status =
1863 ISCSI_KCQE_COMPLETION_STATUS_CID_BUSY;
1864 goto done;
1865 }
1866
Michael Chan71034ba2009-10-10 13:46:59 +00001867 if (atomic_inc_return(&cp->iscsi_conn) > dev->max_iscsi_conn) {
1868 atomic_dec(&cp->iscsi_conn);
Michael Chan71034ba2009-10-10 13:46:59 +00001869 goto done;
1870 }
1871 ret = cnic_alloc_bnx2x_conn_resc(dev, l5_cid);
1872 if (ret) {
1873 atomic_dec(&cp->iscsi_conn);
1874 ret = 0;
1875 goto done;
1876 }
1877 ret = cnic_setup_bnx2x_ctx(dev, wqes, num);
1878 if (ret < 0) {
1879 cnic_free_bnx2x_conn_resc(dev, l5_cid);
1880 atomic_dec(&cp->iscsi_conn);
1881 goto done;
1882 }
1883
1884 kcqe.completion_status = ISCSI_KCQE_COMPLETION_STATUS_SUCCESS;
Michael Chanceb7e1c2010-10-06 03:14:54 +00001885 kcqe.iscsi_conn_context_id = BNX2X_HW_CID(cp, cp->ctx_tbl[l5_cid].cid);
Michael Chan71034ba2009-10-10 13:46:59 +00001886
1887done:
1888 cqes[0] = (struct kcqe *) &kcqe;
1889 cnic_reply_bnx2x_kcqes(dev, CNIC_ULP_ISCSI, cqes, 1);
Michael Chan23021c22012-01-04 12:12:28 +00001890 return 0;
Michael Chan71034ba2009-10-10 13:46:59 +00001891}
1892
1893
1894static int cnic_bnx2x_iscsi_update(struct cnic_dev *dev, struct kwqe *kwqe)
1895{
1896 struct cnic_local *cp = dev->cnic_priv;
1897 struct iscsi_kwqe_conn_update *req =
1898 (struct iscsi_kwqe_conn_update *) kwqe;
1899 void *data;
1900 union l5cm_specific_data l5_data;
1901 u32 l5_cid, cid = BNX2X_SW_CID(req->context_id);
1902 int ret;
1903
1904 if (cnic_get_l5_cid(cp, cid, &l5_cid) != 0)
1905 return -EINVAL;
1906
1907 data = cnic_get_kwqe_16_data(cp, l5_cid, &l5_data);
1908 if (!data)
1909 return -ENOMEM;
1910
1911 memcpy(data, kwqe, sizeof(struct kwqe));
1912
1913 ret = cnic_submit_kwqe_16(dev, ISCSI_RAMROD_CMD_ID_UPDATE_CONN,
1914 req->context_id, ISCSI_CONNECTION_TYPE, &l5_data);
1915 return ret;
1916}
1917
Michael Chana2c9e762010-10-13 14:06:46 +00001918static int cnic_bnx2x_destroy_ramrod(struct cnic_dev *dev, u32 l5_cid)
Michael Chan71034ba2009-10-10 13:46:59 +00001919{
1920 struct cnic_local *cp = dev->cnic_priv;
Michael Chan71034ba2009-10-10 13:46:59 +00001921 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
Michael Chana2c9e762010-10-13 14:06:46 +00001922 union l5cm_specific_data l5_data;
1923 int ret;
Michael Chan68d7c1a2011-01-05 15:14:13 +00001924 u32 hw_cid;
Michael Chan71034ba2009-10-10 13:46:59 +00001925
Michael Chan71034ba2009-10-10 13:46:59 +00001926 init_waitqueue_head(&ctx->waitq);
1927 ctx->wait_cond = 0;
1928 memset(&l5_data, 0, sizeof(l5_data));
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001929 hw_cid = BNX2X_HW_CID(cp, ctx->cid);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001930
1931 ret = cnic_submit_kwqe_16(dev, RAMROD_CMD_ID_COMMON_CFC_DEL,
Michael Chan68d7c1a2011-01-05 15:14:13 +00001932 hw_cid, NONE_CONNECTION_TYPE, &l5_data);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001933
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001934 if (ret == 0) {
Michael Chandcc7e3a2011-08-26 09:45:40 +00001935 wait_event_timeout(ctx->waitq, ctx->wait_cond, CNIC_RAMROD_TMO);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001936 if (unlikely(test_bit(CTX_FL_CID_ERROR, &ctx->ctx_flags)))
1937 return -EBUSY;
1938 }
Michael Chan71034ba2009-10-10 13:46:59 +00001939
Michael Chandcc7e3a2011-08-26 09:45:40 +00001940 return 0;
Michael Chana2c9e762010-10-13 14:06:46 +00001941}
1942
1943static int cnic_bnx2x_iscsi_destroy(struct cnic_dev *dev, struct kwqe *kwqe)
1944{
1945 struct cnic_local *cp = dev->cnic_priv;
1946 struct iscsi_kwqe_conn_destroy *req =
1947 (struct iscsi_kwqe_conn_destroy *) kwqe;
1948 u32 l5_cid = req->reserved0;
1949 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
1950 int ret = 0;
1951 struct iscsi_kcqe kcqe;
1952 struct kcqe *cqes[1];
1953
1954 if (!test_bit(CTX_FL_OFFLD_START, &ctx->ctx_flags))
1955 goto skip_cfc_delete;
1956
Michael Chanfdf24082010-10-13 14:06:47 +00001957 if (!time_after(jiffies, ctx->timestamp + (2 * HZ))) {
1958 unsigned long delta = ctx->timestamp + (2 * HZ) - jiffies;
1959
1960 if (delta > (2 * HZ))
1961 delta = 0;
1962
1963 set_bit(CTX_FL_DELETE_WAIT, &ctx->ctx_flags);
1964 queue_delayed_work(cnic_wq, &cp->delete_task, delta);
1965 goto destroy_reply;
1966 }
Michael Chana2c9e762010-10-13 14:06:46 +00001967
1968 ret = cnic_bnx2x_destroy_ramrod(dev, l5_cid);
1969
Michael Chan71034ba2009-10-10 13:46:59 +00001970skip_cfc_delete:
1971 cnic_free_bnx2x_conn_resc(dev, l5_cid);
1972
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001973 if (!ret) {
1974 atomic_dec(&cp->iscsi_conn);
1975 clear_bit(CTX_FL_OFFLD_START, &ctx->ctx_flags);
1976 }
Michael Chan71034ba2009-10-10 13:46:59 +00001977
Michael Chanfdf24082010-10-13 14:06:47 +00001978destroy_reply:
Michael Chan71034ba2009-10-10 13:46:59 +00001979 memset(&kcqe, 0, sizeof(kcqe));
1980 kcqe.op_code = ISCSI_KCQE_OPCODE_DESTROY_CONN;
1981 kcqe.iscsi_conn_id = l5_cid;
1982 kcqe.completion_status = ISCSI_KCQE_COMPLETION_STATUS_SUCCESS;
1983 kcqe.iscsi_conn_context_id = req->context_id;
1984
1985 cqes[0] = (struct kcqe *) &kcqe;
1986 cnic_reply_bnx2x_kcqes(dev, CNIC_ULP_ISCSI, cqes, 1);
1987
Michael Chan23021c22012-01-04 12:12:28 +00001988 return 0;
Michael Chan71034ba2009-10-10 13:46:59 +00001989}
1990
1991static void cnic_init_storm_conn_bufs(struct cnic_dev *dev,
1992 struct l4_kwq_connect_req1 *kwqe1,
1993 struct l4_kwq_connect_req3 *kwqe3,
1994 struct l5cm_active_conn_buffer *conn_buf)
1995{
1996 struct l5cm_conn_addr_params *conn_addr = &conn_buf->conn_addr_buf;
1997 struct l5cm_xstorm_conn_buffer *xstorm_buf =
1998 &conn_buf->xstorm_conn_buffer;
1999 struct l5cm_tstorm_conn_buffer *tstorm_buf =
2000 &conn_buf->tstorm_conn_buffer;
2001 struct regpair context_addr;
2002 u32 cid = BNX2X_SW_CID(kwqe1->cid);
2003 struct in6_addr src_ip, dst_ip;
2004 int i;
2005 u32 *addrp;
2006
2007 addrp = (u32 *) &conn_addr->local_ip_addr;
2008 for (i = 0; i < 4; i++, addrp++)
2009 src_ip.in6_u.u6_addr32[i] = cpu_to_be32(*addrp);
2010
2011 addrp = (u32 *) &conn_addr->remote_ip_addr;
2012 for (i = 0; i < 4; i++, addrp++)
2013 dst_ip.in6_u.u6_addr32[i] = cpu_to_be32(*addrp);
2014
2015 cnic_get_bnx2x_ctx(dev, cid, 0, &context_addr);
2016
2017 xstorm_buf->context_addr.hi = context_addr.hi;
2018 xstorm_buf->context_addr.lo = context_addr.lo;
2019 xstorm_buf->mss = 0xffff;
2020 xstorm_buf->rcv_buf = kwqe3->rcv_buf;
2021 if (kwqe1->tcp_flags & L4_KWQ_CONNECT_REQ1_NAGLE_ENABLE)
2022 xstorm_buf->params |= L5CM_XSTORM_CONN_BUFFER_NAGLE_ENABLE;
2023 xstorm_buf->pseudo_header_checksum =
2024 swab16(~csum_ipv6_magic(&src_ip, &dst_ip, 0, IPPROTO_TCP, 0));
2025
2026 if (!(kwqe1->tcp_flags & L4_KWQ_CONNECT_REQ1_NO_DELAY_ACK))
2027 tstorm_buf->params |=
2028 L5CM_TSTORM_CONN_BUFFER_DELAYED_ACK_ENABLE;
2029 if (kwqe3->ka_timeout) {
2030 tstorm_buf->ka_enable = 1;
2031 tstorm_buf->ka_timeout = kwqe3->ka_timeout;
2032 tstorm_buf->ka_interval = kwqe3->ka_interval;
2033 tstorm_buf->ka_max_probe_count = kwqe3->ka_max_probe_count;
2034 }
Michael Chan71034ba2009-10-10 13:46:59 +00002035 tstorm_buf->max_rt_time = 0xffffffff;
2036}
2037
2038static void cnic_init_bnx2x_mac(struct cnic_dev *dev)
2039{
2040 struct cnic_local *cp = dev->cnic_priv;
Michael Chan14203982010-10-06 03:16:06 +00002041 u32 pfid = cp->pfid;
Michael Chan71034ba2009-10-10 13:46:59 +00002042 u8 *mac = dev->mac_addr;
2043
2044 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00002045 XSTORM_ISCSI_LOCAL_MAC_ADDR0_OFFSET(pfid), mac[0]);
Michael Chan71034ba2009-10-10 13:46:59 +00002046 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00002047 XSTORM_ISCSI_LOCAL_MAC_ADDR1_OFFSET(pfid), mac[1]);
Michael Chan71034ba2009-10-10 13:46:59 +00002048 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00002049 XSTORM_ISCSI_LOCAL_MAC_ADDR2_OFFSET(pfid), mac[2]);
Michael Chan71034ba2009-10-10 13:46:59 +00002050 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00002051 XSTORM_ISCSI_LOCAL_MAC_ADDR3_OFFSET(pfid), mac[3]);
Michael Chan71034ba2009-10-10 13:46:59 +00002052 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00002053 XSTORM_ISCSI_LOCAL_MAC_ADDR4_OFFSET(pfid), mac[4]);
Michael Chan71034ba2009-10-10 13:46:59 +00002054 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00002055 XSTORM_ISCSI_LOCAL_MAC_ADDR5_OFFSET(pfid), mac[5]);
Michael Chan71034ba2009-10-10 13:46:59 +00002056
2057 CNIC_WR8(dev, BAR_TSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00002058 TSTORM_ISCSI_TCP_VARS_LSB_LOCAL_MAC_ADDR_OFFSET(pfid), mac[5]);
Michael Chan71034ba2009-10-10 13:46:59 +00002059 CNIC_WR8(dev, BAR_TSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00002060 TSTORM_ISCSI_TCP_VARS_LSB_LOCAL_MAC_ADDR_OFFSET(pfid) + 1,
Michael Chan71034ba2009-10-10 13:46:59 +00002061 mac[4]);
2062 CNIC_WR8(dev, BAR_TSTRORM_INTMEM +
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03002063 TSTORM_ISCSI_TCP_VARS_MID_LOCAL_MAC_ADDR_OFFSET(pfid), mac[3]);
Michael Chan71034ba2009-10-10 13:46:59 +00002064 CNIC_WR8(dev, BAR_TSTRORM_INTMEM +
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03002065 TSTORM_ISCSI_TCP_VARS_MID_LOCAL_MAC_ADDR_OFFSET(pfid) + 1,
Michael Chan71034ba2009-10-10 13:46:59 +00002066 mac[2]);
2067 CNIC_WR8(dev, BAR_TSTRORM_INTMEM +
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03002068 TSTORM_ISCSI_TCP_VARS_MSB_LOCAL_MAC_ADDR_OFFSET(pfid), mac[1]);
Michael Chan71034ba2009-10-10 13:46:59 +00002069 CNIC_WR8(dev, BAR_TSTRORM_INTMEM +
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03002070 TSTORM_ISCSI_TCP_VARS_MSB_LOCAL_MAC_ADDR_OFFSET(pfid) + 1,
Michael Chan71034ba2009-10-10 13:46:59 +00002071 mac[0]);
2072}
2073
2074static void cnic_bnx2x_set_tcp_timestamp(struct cnic_dev *dev, int tcp_ts)
2075{
2076 struct cnic_local *cp = dev->cnic_priv;
2077 u8 xstorm_flags = XSTORM_L5CM_TCP_FLAGS_WND_SCL_EN;
2078 u16 tstorm_flags = 0;
2079
2080 if (tcp_ts) {
2081 xstorm_flags |= XSTORM_L5CM_TCP_FLAGS_TS_ENABLED;
2082 tstorm_flags |= TSTORM_L5CM_TCP_FLAGS_TS_ENABLED;
2083 }
2084
2085 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00002086 XSTORM_ISCSI_TCP_VARS_FLAGS_OFFSET(cp->pfid), xstorm_flags);
Michael Chan71034ba2009-10-10 13:46:59 +00002087
2088 CNIC_WR16(dev, BAR_TSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00002089 TSTORM_ISCSI_TCP_VARS_FLAGS_OFFSET(cp->pfid), tstorm_flags);
Michael Chan71034ba2009-10-10 13:46:59 +00002090}
2091
2092static int cnic_bnx2x_connect(struct cnic_dev *dev, struct kwqe *wqes[],
2093 u32 num, int *work)
2094{
2095 struct cnic_local *cp = dev->cnic_priv;
2096 struct l4_kwq_connect_req1 *kwqe1 =
2097 (struct l4_kwq_connect_req1 *) wqes[0];
2098 struct l4_kwq_connect_req3 *kwqe3;
2099 struct l5cm_active_conn_buffer *conn_buf;
2100 struct l5cm_conn_addr_params *conn_addr;
2101 union l5cm_specific_data l5_data;
2102 u32 l5_cid = kwqe1->pg_cid;
2103 struct cnic_sock *csk = &cp->csk_tbl[l5_cid];
2104 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
2105 int ret;
2106
2107 if (num < 2) {
2108 *work = num;
2109 return -EINVAL;
2110 }
2111
2112 if (kwqe1->conn_flags & L4_KWQ_CONNECT_REQ1_IP_V6)
2113 *work = 3;
2114 else
2115 *work = 2;
2116
2117 if (num < *work) {
2118 *work = num;
2119 return -EINVAL;
2120 }
2121
2122 if (sizeof(*conn_buf) > CNIC_KWQ16_DATA_SIZE) {
Joe Perchesddf79b22010-02-17 15:01:54 +00002123 netdev_err(dev->netdev, "conn_buf size too big\n");
Michael Chan71034ba2009-10-10 13:46:59 +00002124 return -ENOMEM;
2125 }
2126 conn_buf = cnic_get_kwqe_16_data(cp, l5_cid, &l5_data);
2127 if (!conn_buf)
2128 return -ENOMEM;
2129
2130 memset(conn_buf, 0, sizeof(*conn_buf));
2131
2132 conn_addr = &conn_buf->conn_addr_buf;
2133 conn_addr->remote_addr_0 = csk->ha[0];
2134 conn_addr->remote_addr_1 = csk->ha[1];
2135 conn_addr->remote_addr_2 = csk->ha[2];
2136 conn_addr->remote_addr_3 = csk->ha[3];
2137 conn_addr->remote_addr_4 = csk->ha[4];
2138 conn_addr->remote_addr_5 = csk->ha[5];
2139
2140 if (kwqe1->conn_flags & L4_KWQ_CONNECT_REQ1_IP_V6) {
2141 struct l4_kwq_connect_req2 *kwqe2 =
2142 (struct l4_kwq_connect_req2 *) wqes[1];
2143
2144 conn_addr->local_ip_addr.ip_addr_hi_hi = kwqe2->src_ip_v6_4;
2145 conn_addr->local_ip_addr.ip_addr_hi_lo = kwqe2->src_ip_v6_3;
2146 conn_addr->local_ip_addr.ip_addr_lo_hi = kwqe2->src_ip_v6_2;
2147
2148 conn_addr->remote_ip_addr.ip_addr_hi_hi = kwqe2->dst_ip_v6_4;
2149 conn_addr->remote_ip_addr.ip_addr_hi_lo = kwqe2->dst_ip_v6_3;
2150 conn_addr->remote_ip_addr.ip_addr_lo_hi = kwqe2->dst_ip_v6_2;
2151 conn_addr->params |= L5CM_CONN_ADDR_PARAMS_IP_VERSION;
2152 }
2153 kwqe3 = (struct l4_kwq_connect_req3 *) wqes[*work - 1];
2154
2155 conn_addr->local_ip_addr.ip_addr_lo_lo = kwqe1->src_ip;
2156 conn_addr->remote_ip_addr.ip_addr_lo_lo = kwqe1->dst_ip;
2157 conn_addr->local_tcp_port = kwqe1->src_port;
2158 conn_addr->remote_tcp_port = kwqe1->dst_port;
2159
2160 conn_addr->pmtu = kwqe3->pmtu;
2161 cnic_init_storm_conn_bufs(dev, kwqe1, kwqe3, conn_buf);
2162
2163 CNIC_WR16(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00002164 XSTORM_ISCSI_LOCAL_VLAN_OFFSET(cp->pfid), csk->vlan_id);
Michael Chan71034ba2009-10-10 13:46:59 +00002165
2166 cnic_bnx2x_set_tcp_timestamp(dev,
2167 kwqe1->tcp_flags & L4_KWQ_CONNECT_REQ1_TIME_STAMP);
2168
2169 ret = cnic_submit_kwqe_16(dev, L5CM_RAMROD_CMD_ID_TCP_CONNECT,
2170 kwqe1->cid, ISCSI_CONNECTION_TYPE, &l5_data);
2171 if (!ret)
Michael Chan6e0dda02010-10-13 14:06:45 +00002172 set_bit(CTX_FL_OFFLD_START, &ctx->ctx_flags);
Michael Chan71034ba2009-10-10 13:46:59 +00002173
2174 return ret;
2175}
2176
2177static int cnic_bnx2x_close(struct cnic_dev *dev, struct kwqe *kwqe)
2178{
2179 struct l4_kwq_close_req *req = (struct l4_kwq_close_req *) kwqe;
2180 union l5cm_specific_data l5_data;
2181 int ret;
2182
2183 memset(&l5_data, 0, sizeof(l5_data));
2184 ret = cnic_submit_kwqe_16(dev, L5CM_RAMROD_CMD_ID_CLOSE,
2185 req->cid, ISCSI_CONNECTION_TYPE, &l5_data);
2186 return ret;
2187}
2188
2189static int cnic_bnx2x_reset(struct cnic_dev *dev, struct kwqe *kwqe)
2190{
2191 struct l4_kwq_reset_req *req = (struct l4_kwq_reset_req *) kwqe;
2192 union l5cm_specific_data l5_data;
2193 int ret;
2194
2195 memset(&l5_data, 0, sizeof(l5_data));
2196 ret = cnic_submit_kwqe_16(dev, L5CM_RAMROD_CMD_ID_ABORT,
2197 req->cid, ISCSI_CONNECTION_TYPE, &l5_data);
2198 return ret;
2199}
2200static int cnic_bnx2x_offload_pg(struct cnic_dev *dev, struct kwqe *kwqe)
2201{
2202 struct l4_kwq_offload_pg *req = (struct l4_kwq_offload_pg *) kwqe;
2203 struct l4_kcq kcqe;
2204 struct kcqe *cqes[1];
2205
2206 memset(&kcqe, 0, sizeof(kcqe));
2207 kcqe.pg_host_opaque = req->host_opaque;
2208 kcqe.pg_cid = req->host_opaque;
2209 kcqe.op_code = L4_KCQE_OPCODE_VALUE_OFFLOAD_PG;
2210 cqes[0] = (struct kcqe *) &kcqe;
2211 cnic_reply_bnx2x_kcqes(dev, CNIC_ULP_L4, cqes, 1);
2212 return 0;
2213}
2214
2215static int cnic_bnx2x_update_pg(struct cnic_dev *dev, struct kwqe *kwqe)
2216{
2217 struct l4_kwq_update_pg *req = (struct l4_kwq_update_pg *) kwqe;
2218 struct l4_kcq kcqe;
2219 struct kcqe *cqes[1];
2220
2221 memset(&kcqe, 0, sizeof(kcqe));
2222 kcqe.pg_host_opaque = req->pg_host_opaque;
2223 kcqe.pg_cid = req->pg_cid;
2224 kcqe.op_code = L4_KCQE_OPCODE_VALUE_UPDATE_PG;
2225 cqes[0] = (struct kcqe *) &kcqe;
2226 cnic_reply_bnx2x_kcqes(dev, CNIC_ULP_L4, cqes, 1);
2227 return 0;
2228}
2229
Michael Chane1928c82010-12-23 07:43:04 +00002230static int cnic_bnx2x_fcoe_stat(struct cnic_dev *dev, struct kwqe *kwqe)
2231{
2232 struct fcoe_kwqe_stat *req;
2233 struct fcoe_stat_ramrod_params *fcoe_stat;
2234 union l5cm_specific_data l5_data;
2235 struct cnic_local *cp = dev->cnic_priv;
2236 int ret;
2237 u32 cid;
2238
2239 req = (struct fcoe_kwqe_stat *) kwqe;
2240 cid = BNX2X_HW_CID(cp, cp->fcoe_init_cid);
2241
2242 fcoe_stat = cnic_get_kwqe_16_data(cp, BNX2X_FCOE_L5_CID_BASE, &l5_data);
2243 if (!fcoe_stat)
2244 return -ENOMEM;
2245
2246 memset(fcoe_stat, 0, sizeof(*fcoe_stat));
2247 memcpy(&fcoe_stat->stat_kwqe, req, sizeof(*req));
2248
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03002249 ret = cnic_submit_kwqe_16(dev, FCOE_RAMROD_CMD_ID_STAT_FUNC, cid,
Michael Chane1928c82010-12-23 07:43:04 +00002250 FCOE_CONNECTION_TYPE, &l5_data);
2251 return ret;
2252}
2253
2254static int cnic_bnx2x_fcoe_init1(struct cnic_dev *dev, struct kwqe *wqes[],
2255 u32 num, int *work)
2256{
2257 int ret;
2258 struct cnic_local *cp = dev->cnic_priv;
2259 u32 cid;
2260 struct fcoe_init_ramrod_params *fcoe_init;
2261 struct fcoe_kwqe_init1 *req1;
2262 struct fcoe_kwqe_init2 *req2;
2263 struct fcoe_kwqe_init3 *req3;
2264 union l5cm_specific_data l5_data;
2265
2266 if (num < 3) {
2267 *work = num;
2268 return -EINVAL;
2269 }
2270 req1 = (struct fcoe_kwqe_init1 *) wqes[0];
2271 req2 = (struct fcoe_kwqe_init2 *) wqes[1];
2272 req3 = (struct fcoe_kwqe_init3 *) wqes[2];
2273 if (req2->hdr.op_code != FCOE_KWQE_OPCODE_INIT2) {
2274 *work = 1;
2275 return -EINVAL;
2276 }
2277 if (req3->hdr.op_code != FCOE_KWQE_OPCODE_INIT3) {
2278 *work = 2;
2279 return -EINVAL;
2280 }
2281
2282 if (sizeof(*fcoe_init) > CNIC_KWQ16_DATA_SIZE) {
2283 netdev_err(dev->netdev, "fcoe_init size too big\n");
2284 return -ENOMEM;
2285 }
2286 fcoe_init = cnic_get_kwqe_16_data(cp, BNX2X_FCOE_L5_CID_BASE, &l5_data);
2287 if (!fcoe_init)
2288 return -ENOMEM;
2289
2290 memset(fcoe_init, 0, sizeof(*fcoe_init));
2291 memcpy(&fcoe_init->init_kwqe1, req1, sizeof(*req1));
2292 memcpy(&fcoe_init->init_kwqe2, req2, sizeof(*req2));
2293 memcpy(&fcoe_init->init_kwqe3, req3, sizeof(*req3));
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03002294 fcoe_init->eq_pbl_base.lo = cp->kcq2.dma.pgtbl_map & 0xffffffff;
2295 fcoe_init->eq_pbl_base.hi = (u64) cp->kcq2.dma.pgtbl_map >> 32;
2296 fcoe_init->eq_pbl_size = cp->kcq2.dma.num_pages;
Michael Chane1928c82010-12-23 07:43:04 +00002297
2298 fcoe_init->sb_num = cp->status_blk_num;
2299 fcoe_init->eq_prod = MAX_KCQ_IDX;
2300 fcoe_init->sb_id = HC_INDEX_FCOE_EQ_CONS;
2301 cp->kcq2.sw_prod_idx = 0;
2302
2303 cid = BNX2X_HW_CID(cp, cp->fcoe_init_cid);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03002304 ret = cnic_submit_kwqe_16(dev, FCOE_RAMROD_CMD_ID_INIT_FUNC, cid,
Michael Chane1928c82010-12-23 07:43:04 +00002305 FCOE_CONNECTION_TYPE, &l5_data);
2306 *work = 3;
2307 return ret;
2308}
2309
2310static int cnic_bnx2x_fcoe_ofld1(struct cnic_dev *dev, struct kwqe *wqes[],
2311 u32 num, int *work)
2312{
2313 int ret = 0;
2314 u32 cid = -1, l5_cid;
2315 struct cnic_local *cp = dev->cnic_priv;
2316 struct fcoe_kwqe_conn_offload1 *req1;
2317 struct fcoe_kwqe_conn_offload2 *req2;
2318 struct fcoe_kwqe_conn_offload3 *req3;
2319 struct fcoe_kwqe_conn_offload4 *req4;
2320 struct fcoe_conn_offload_ramrod_params *fcoe_offload;
2321 struct cnic_context *ctx;
2322 struct fcoe_context *fctx;
2323 struct regpair ctx_addr;
2324 union l5cm_specific_data l5_data;
2325 struct fcoe_kcqe kcqe;
2326 struct kcqe *cqes[1];
2327
2328 if (num < 4) {
2329 *work = num;
2330 return -EINVAL;
2331 }
2332 req1 = (struct fcoe_kwqe_conn_offload1 *) wqes[0];
2333 req2 = (struct fcoe_kwqe_conn_offload2 *) wqes[1];
2334 req3 = (struct fcoe_kwqe_conn_offload3 *) wqes[2];
2335 req4 = (struct fcoe_kwqe_conn_offload4 *) wqes[3];
2336
2337 *work = 4;
2338
2339 l5_cid = req1->fcoe_conn_id;
Michael Chandc219a22011-08-26 09:45:39 +00002340 if (l5_cid >= dev->max_fcoe_conn)
Michael Chane1928c82010-12-23 07:43:04 +00002341 goto err_reply;
2342
2343 l5_cid += BNX2X_FCOE_L5_CID_BASE;
2344
2345 ctx = &cp->ctx_tbl[l5_cid];
2346 if (test_bit(CTX_FL_OFFLD_START, &ctx->ctx_flags))
2347 goto err_reply;
2348
2349 ret = cnic_alloc_bnx2x_conn_resc(dev, l5_cid);
2350 if (ret) {
2351 ret = 0;
2352 goto err_reply;
2353 }
2354 cid = ctx->cid;
2355
2356 fctx = cnic_get_bnx2x_ctx(dev, cid, 1, &ctx_addr);
2357 if (fctx) {
2358 u32 hw_cid = BNX2X_HW_CID(cp, cid);
2359 u32 val;
2360
2361 val = CDU_RSRVD_VALUE_TYPE_A(hw_cid, CDU_REGION_NUMBER_XCM_AG,
2362 FCOE_CONNECTION_TYPE);
2363 fctx->xstorm_ag_context.cdu_reserved = val;
2364 val = CDU_RSRVD_VALUE_TYPE_A(hw_cid, CDU_REGION_NUMBER_UCM_AG,
2365 FCOE_CONNECTION_TYPE);
2366 fctx->ustorm_ag_context.cdu_usage = val;
2367 }
2368 if (sizeof(*fcoe_offload) > CNIC_KWQ16_DATA_SIZE) {
2369 netdev_err(dev->netdev, "fcoe_offload size too big\n");
2370 goto err_reply;
2371 }
2372 fcoe_offload = cnic_get_kwqe_16_data(cp, l5_cid, &l5_data);
2373 if (!fcoe_offload)
2374 goto err_reply;
2375
2376 memset(fcoe_offload, 0, sizeof(*fcoe_offload));
2377 memcpy(&fcoe_offload->offload_kwqe1, req1, sizeof(*req1));
2378 memcpy(&fcoe_offload->offload_kwqe2, req2, sizeof(*req2));
2379 memcpy(&fcoe_offload->offload_kwqe3, req3, sizeof(*req3));
2380 memcpy(&fcoe_offload->offload_kwqe4, req4, sizeof(*req4));
2381
2382 cid = BNX2X_HW_CID(cp, cid);
2383 ret = cnic_submit_kwqe_16(dev, FCOE_RAMROD_CMD_ID_OFFLOAD_CONN, cid,
2384 FCOE_CONNECTION_TYPE, &l5_data);
2385 if (!ret)
2386 set_bit(CTX_FL_OFFLD_START, &ctx->ctx_flags);
2387
2388 return ret;
2389
2390err_reply:
2391 if (cid != -1)
2392 cnic_free_bnx2x_conn_resc(dev, l5_cid);
2393
2394 memset(&kcqe, 0, sizeof(kcqe));
2395 kcqe.op_code = FCOE_KCQE_OPCODE_OFFLOAD_CONN;
2396 kcqe.fcoe_conn_id = req1->fcoe_conn_id;
2397 kcqe.completion_status = FCOE_KCQE_COMPLETION_STATUS_CTX_ALLOC_FAILURE;
2398
2399 cqes[0] = (struct kcqe *) &kcqe;
2400 cnic_reply_bnx2x_kcqes(dev, CNIC_ULP_FCOE, cqes, 1);
2401 return ret;
2402}
2403
2404static int cnic_bnx2x_fcoe_enable(struct cnic_dev *dev, struct kwqe *kwqe)
2405{
2406 struct fcoe_kwqe_conn_enable_disable *req;
2407 struct fcoe_conn_enable_disable_ramrod_params *fcoe_enable;
2408 union l5cm_specific_data l5_data;
2409 int ret;
2410 u32 cid, l5_cid;
2411 struct cnic_local *cp = dev->cnic_priv;
2412
2413 req = (struct fcoe_kwqe_conn_enable_disable *) kwqe;
2414 cid = req->context_id;
2415 l5_cid = req->conn_id + BNX2X_FCOE_L5_CID_BASE;
2416
2417 if (sizeof(*fcoe_enable) > CNIC_KWQ16_DATA_SIZE) {
2418 netdev_err(dev->netdev, "fcoe_enable size too big\n");
2419 return -ENOMEM;
2420 }
2421 fcoe_enable = cnic_get_kwqe_16_data(cp, l5_cid, &l5_data);
2422 if (!fcoe_enable)
2423 return -ENOMEM;
2424
2425 memset(fcoe_enable, 0, sizeof(*fcoe_enable));
2426 memcpy(&fcoe_enable->enable_disable_kwqe, req, sizeof(*req));
2427 ret = cnic_submit_kwqe_16(dev, FCOE_RAMROD_CMD_ID_ENABLE_CONN, cid,
2428 FCOE_CONNECTION_TYPE, &l5_data);
2429 return ret;
2430}
2431
2432static int cnic_bnx2x_fcoe_disable(struct cnic_dev *dev, struct kwqe *kwqe)
2433{
2434 struct fcoe_kwqe_conn_enable_disable *req;
2435 struct fcoe_conn_enable_disable_ramrod_params *fcoe_disable;
2436 union l5cm_specific_data l5_data;
2437 int ret;
2438 u32 cid, l5_cid;
2439 struct cnic_local *cp = dev->cnic_priv;
2440
2441 req = (struct fcoe_kwqe_conn_enable_disable *) kwqe;
2442 cid = req->context_id;
2443 l5_cid = req->conn_id;
Michael Chandc219a22011-08-26 09:45:39 +00002444 if (l5_cid >= dev->max_fcoe_conn)
Michael Chane1928c82010-12-23 07:43:04 +00002445 return -EINVAL;
2446
2447 l5_cid += BNX2X_FCOE_L5_CID_BASE;
2448
2449 if (sizeof(*fcoe_disable) > CNIC_KWQ16_DATA_SIZE) {
2450 netdev_err(dev->netdev, "fcoe_disable size too big\n");
2451 return -ENOMEM;
2452 }
2453 fcoe_disable = cnic_get_kwqe_16_data(cp, l5_cid, &l5_data);
2454 if (!fcoe_disable)
2455 return -ENOMEM;
2456
2457 memset(fcoe_disable, 0, sizeof(*fcoe_disable));
2458 memcpy(&fcoe_disable->enable_disable_kwqe, req, sizeof(*req));
2459 ret = cnic_submit_kwqe_16(dev, FCOE_RAMROD_CMD_ID_DISABLE_CONN, cid,
2460 FCOE_CONNECTION_TYPE, &l5_data);
2461 return ret;
2462}
2463
2464static int cnic_bnx2x_fcoe_destroy(struct cnic_dev *dev, struct kwqe *kwqe)
2465{
2466 struct fcoe_kwqe_conn_destroy *req;
2467 union l5cm_specific_data l5_data;
2468 int ret;
2469 u32 cid, l5_cid;
2470 struct cnic_local *cp = dev->cnic_priv;
2471 struct cnic_context *ctx;
2472 struct fcoe_kcqe kcqe;
2473 struct kcqe *cqes[1];
2474
2475 req = (struct fcoe_kwqe_conn_destroy *) kwqe;
2476 cid = req->context_id;
2477 l5_cid = req->conn_id;
Michael Chandc219a22011-08-26 09:45:39 +00002478 if (l5_cid >= dev->max_fcoe_conn)
Michael Chane1928c82010-12-23 07:43:04 +00002479 return -EINVAL;
2480
2481 l5_cid += BNX2X_FCOE_L5_CID_BASE;
2482
2483 ctx = &cp->ctx_tbl[l5_cid];
2484
2485 init_waitqueue_head(&ctx->waitq);
2486 ctx->wait_cond = 0;
2487
Michael Chandcc7e3a2011-08-26 09:45:40 +00002488 memset(&kcqe, 0, sizeof(kcqe));
2489 kcqe.completion_status = FCOE_KCQE_COMPLETION_STATUS_ERROR;
Michael Chane1928c82010-12-23 07:43:04 +00002490 memset(&l5_data, 0, sizeof(l5_data));
2491 ret = cnic_submit_kwqe_16(dev, FCOE_RAMROD_CMD_ID_TERMINATE_CONN, cid,
2492 FCOE_CONNECTION_TYPE, &l5_data);
2493 if (ret == 0) {
Michael Chandcc7e3a2011-08-26 09:45:40 +00002494 wait_event_timeout(ctx->waitq, ctx->wait_cond, CNIC_RAMROD_TMO);
2495 if (ctx->wait_cond)
2496 kcqe.completion_status = 0;
Michael Chane1928c82010-12-23 07:43:04 +00002497 }
2498
Michael Chandcc7e3a2011-08-26 09:45:40 +00002499 set_bit(CTX_FL_DELETE_WAIT, &ctx->ctx_flags);
2500 queue_delayed_work(cnic_wq, &cp->delete_task, msecs_to_jiffies(2000));
2501
Michael Chane1928c82010-12-23 07:43:04 +00002502 kcqe.op_code = FCOE_KCQE_OPCODE_DESTROY_CONN;
2503 kcqe.fcoe_conn_id = req->conn_id;
2504 kcqe.fcoe_conn_context_id = cid;
2505
2506 cqes[0] = (struct kcqe *) &kcqe;
2507 cnic_reply_bnx2x_kcqes(dev, CNIC_ULP_FCOE, cqes, 1);
2508 return ret;
2509}
2510
Michael Chan74e49bb2011-07-20 14:55:23 +00002511static void cnic_bnx2x_delete_wait(struct cnic_dev *dev, u32 start_cid)
2512{
2513 struct cnic_local *cp = dev->cnic_priv;
2514 u32 i;
2515
2516 for (i = start_cid; i < cp->max_cid_space; i++) {
2517 struct cnic_context *ctx = &cp->ctx_tbl[i];
2518 int j;
2519
2520 while (test_bit(CTX_FL_DELETE_WAIT, &ctx->ctx_flags))
2521 msleep(10);
2522
2523 for (j = 0; j < 5; j++) {
2524 if (!test_bit(CTX_FL_OFFLD_START, &ctx->ctx_flags))
2525 break;
2526 msleep(20);
2527 }
2528
2529 if (test_bit(CTX_FL_OFFLD_START, &ctx->ctx_flags))
2530 netdev_warn(dev->netdev, "CID %x not deleted\n",
2531 ctx->cid);
2532 }
2533}
2534
Michael Chane1928c82010-12-23 07:43:04 +00002535static int cnic_bnx2x_fcoe_fw_destroy(struct cnic_dev *dev, struct kwqe *kwqe)
2536{
2537 struct fcoe_kwqe_destroy *req;
2538 union l5cm_specific_data l5_data;
2539 struct cnic_local *cp = dev->cnic_priv;
2540 int ret;
2541 u32 cid;
2542
Michael Chan74e49bb2011-07-20 14:55:23 +00002543 cnic_bnx2x_delete_wait(dev, MAX_ISCSI_TBL_SZ);
2544
Michael Chane1928c82010-12-23 07:43:04 +00002545 req = (struct fcoe_kwqe_destroy *) kwqe;
2546 cid = BNX2X_HW_CID(cp, cp->fcoe_init_cid);
2547
2548 memset(&l5_data, 0, sizeof(l5_data));
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03002549 ret = cnic_submit_kwqe_16(dev, FCOE_RAMROD_CMD_ID_DESTROY_FUNC, cid,
Michael Chane1928c82010-12-23 07:43:04 +00002550 FCOE_CONNECTION_TYPE, &l5_data);
2551 return ret;
2552}
2553
Michael Chan23021c22012-01-04 12:12:28 +00002554static void cnic_bnx2x_kwqe_err(struct cnic_dev *dev, struct kwqe *kwqe)
2555{
2556 struct cnic_local *cp = dev->cnic_priv;
2557 struct kcqe kcqe;
2558 struct kcqe *cqes[1];
2559 u32 cid;
2560 u32 opcode = KWQE_OPCODE(kwqe->kwqe_op_flag);
2561 u32 layer_code = kwqe->kwqe_op_flag & KWQE_LAYER_MASK;
Michael Chan3238a9b2012-02-05 15:24:40 +00002562 u32 kcqe_op;
Michael Chan23021c22012-01-04 12:12:28 +00002563 int ulp_type;
2564
2565 cid = kwqe->kwqe_info0;
2566 memset(&kcqe, 0, sizeof(kcqe));
2567
Michael Chan3238a9b2012-02-05 15:24:40 +00002568 if (layer_code == KWQE_FLAGS_LAYER_MASK_L5_FCOE) {
2569 u32 l5_cid = 0;
2570
2571 ulp_type = CNIC_ULP_FCOE;
2572 if (opcode == FCOE_KWQE_OPCODE_DISABLE_CONN) {
2573 struct fcoe_kwqe_conn_enable_disable *req;
2574
2575 req = (struct fcoe_kwqe_conn_enable_disable *) kwqe;
2576 kcqe_op = FCOE_KCQE_OPCODE_DISABLE_CONN;
2577 cid = req->context_id;
2578 l5_cid = req->conn_id;
2579 } else if (opcode == FCOE_KWQE_OPCODE_DESTROY) {
2580 kcqe_op = FCOE_KCQE_OPCODE_DESTROY_FUNC;
2581 } else {
2582 return;
2583 }
2584 kcqe.kcqe_op_flag = kcqe_op << KCQE_FLAGS_OPCODE_SHIFT;
2585 kcqe.kcqe_op_flag |= KCQE_FLAGS_LAYER_MASK_L5_FCOE;
Michael Chan8ec3e702012-03-21 15:38:34 +00002586 kcqe.kcqe_info1 = FCOE_KCQE_COMPLETION_STATUS_PARITY_ERROR;
Michael Chan3238a9b2012-02-05 15:24:40 +00002587 kcqe.kcqe_info2 = cid;
2588 kcqe.kcqe_info0 = l5_cid;
2589
2590 } else if (layer_code == KWQE_FLAGS_LAYER_MASK_L5_ISCSI) {
Michael Chan23021c22012-01-04 12:12:28 +00002591 ulp_type = CNIC_ULP_ISCSI;
2592 if (opcode == ISCSI_KWQE_OPCODE_UPDATE_CONN)
2593 cid = kwqe->kwqe_info1;
2594
2595 kcqe.kcqe_op_flag = (opcode + 0x10) << KCQE_FLAGS_OPCODE_SHIFT;
2596 kcqe.kcqe_op_flag |= KCQE_FLAGS_LAYER_MASK_L5_ISCSI;
Michael Chan8ec3e702012-03-21 15:38:34 +00002597 kcqe.kcqe_info1 = ISCSI_KCQE_COMPLETION_STATUS_PARITY_ERR;
Michael Chan23021c22012-01-04 12:12:28 +00002598 kcqe.kcqe_info2 = cid;
2599 cnic_get_l5_cid(cp, BNX2X_SW_CID(cid), &kcqe.kcqe_info0);
2600
2601 } else if (layer_code == KWQE_FLAGS_LAYER_MASK_L4) {
2602 struct l4_kcq *l4kcqe = (struct l4_kcq *) &kcqe;
Michael Chan23021c22012-01-04 12:12:28 +00002603
2604 ulp_type = CNIC_ULP_L4;
2605 if (opcode == L4_KWQE_OPCODE_VALUE_CONNECT1)
2606 kcqe_op = L4_KCQE_OPCODE_VALUE_CONNECT_COMPLETE;
2607 else if (opcode == L4_KWQE_OPCODE_VALUE_RESET)
2608 kcqe_op = L4_KCQE_OPCODE_VALUE_RESET_COMP;
2609 else if (opcode == L4_KWQE_OPCODE_VALUE_CLOSE)
2610 kcqe_op = L4_KCQE_OPCODE_VALUE_CLOSE_COMP;
2611 else
2612 return;
2613
2614 kcqe.kcqe_op_flag = (kcqe_op << KCQE_FLAGS_OPCODE_SHIFT) |
2615 KCQE_FLAGS_LAYER_MASK_L4;
Michael Chan8ec3e702012-03-21 15:38:34 +00002616 l4kcqe->status = L4_KCQE_COMPLETION_STATUS_PARITY_ERROR;
Michael Chan23021c22012-01-04 12:12:28 +00002617 l4kcqe->cid = cid;
2618 cnic_get_l5_cid(cp, BNX2X_SW_CID(cid), &l4kcqe->conn_id);
2619 } else {
2620 return;
2621 }
2622
Joe Perches64699332012-06-04 12:44:16 +00002623 cqes[0] = &kcqe;
Michael Chan23021c22012-01-04 12:12:28 +00002624 cnic_reply_bnx2x_kcqes(dev, ulp_type, cqes, 1);
2625}
2626
Michael Chane1928c82010-12-23 07:43:04 +00002627static int cnic_submit_bnx2x_iscsi_kwqes(struct cnic_dev *dev,
2628 struct kwqe *wqes[], u32 num_wqes)
Michael Chan71034ba2009-10-10 13:46:59 +00002629{
2630 int i, work, ret;
2631 u32 opcode;
2632 struct kwqe *kwqe;
2633
2634 if (!test_bit(CNIC_F_CNIC_UP, &dev->flags))
2635 return -EAGAIN; /* bnx2 is down */
2636
2637 for (i = 0; i < num_wqes; ) {
2638 kwqe = wqes[i];
2639 opcode = KWQE_OPCODE(kwqe->kwqe_op_flag);
2640 work = 1;
2641
2642 switch (opcode) {
2643 case ISCSI_KWQE_OPCODE_INIT1:
2644 ret = cnic_bnx2x_iscsi_init1(dev, kwqe);
2645 break;
2646 case ISCSI_KWQE_OPCODE_INIT2:
2647 ret = cnic_bnx2x_iscsi_init2(dev, kwqe);
2648 break;
2649 case ISCSI_KWQE_OPCODE_OFFLOAD_CONN1:
2650 ret = cnic_bnx2x_iscsi_ofld1(dev, &wqes[i],
2651 num_wqes - i, &work);
2652 break;
2653 case ISCSI_KWQE_OPCODE_UPDATE_CONN:
2654 ret = cnic_bnx2x_iscsi_update(dev, kwqe);
2655 break;
2656 case ISCSI_KWQE_OPCODE_DESTROY_CONN:
2657 ret = cnic_bnx2x_iscsi_destroy(dev, kwqe);
2658 break;
2659 case L4_KWQE_OPCODE_VALUE_CONNECT1:
2660 ret = cnic_bnx2x_connect(dev, &wqes[i], num_wqes - i,
2661 &work);
2662 break;
2663 case L4_KWQE_OPCODE_VALUE_CLOSE:
2664 ret = cnic_bnx2x_close(dev, kwqe);
2665 break;
2666 case L4_KWQE_OPCODE_VALUE_RESET:
2667 ret = cnic_bnx2x_reset(dev, kwqe);
2668 break;
2669 case L4_KWQE_OPCODE_VALUE_OFFLOAD_PG:
2670 ret = cnic_bnx2x_offload_pg(dev, kwqe);
2671 break;
2672 case L4_KWQE_OPCODE_VALUE_UPDATE_PG:
2673 ret = cnic_bnx2x_update_pg(dev, kwqe);
2674 break;
2675 case L4_KWQE_OPCODE_VALUE_UPLOAD_PG:
2676 ret = 0;
2677 break;
2678 default:
2679 ret = 0;
Joe Perchesddf79b22010-02-17 15:01:54 +00002680 netdev_err(dev->netdev, "Unknown type of KWQE(0x%x)\n",
2681 opcode);
Michael Chan71034ba2009-10-10 13:46:59 +00002682 break;
2683 }
Michael Chan23021c22012-01-04 12:12:28 +00002684 if (ret < 0) {
Joe Perchesddf79b22010-02-17 15:01:54 +00002685 netdev_err(dev->netdev, "KWQE(0x%x) failed\n",
2686 opcode);
Michael Chan23021c22012-01-04 12:12:28 +00002687
2688 /* Possibly bnx2x parity error, send completion
2689 * to ulp drivers with error code to speed up
2690 * cleanup and reset recovery.
2691 */
2692 if (ret == -EIO || ret == -EAGAIN)
2693 cnic_bnx2x_kwqe_err(dev, kwqe);
2694 }
Michael Chan71034ba2009-10-10 13:46:59 +00002695 i += work;
2696 }
2697 return 0;
2698}
2699
Michael Chane1928c82010-12-23 07:43:04 +00002700static int cnic_submit_bnx2x_fcoe_kwqes(struct cnic_dev *dev,
2701 struct kwqe *wqes[], u32 num_wqes)
2702{
2703 struct cnic_local *cp = dev->cnic_priv;
2704 int i, work, ret;
2705 u32 opcode;
2706 struct kwqe *kwqe;
2707
2708 if (!test_bit(CNIC_F_CNIC_UP, &dev->flags))
2709 return -EAGAIN; /* bnx2 is down */
2710
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03002711 if (!BNX2X_CHIP_IS_E2_PLUS(cp->chip_id))
Michael Chane1928c82010-12-23 07:43:04 +00002712 return -EINVAL;
2713
2714 for (i = 0; i < num_wqes; ) {
2715 kwqe = wqes[i];
2716 opcode = KWQE_OPCODE(kwqe->kwqe_op_flag);
2717 work = 1;
2718
2719 switch (opcode) {
2720 case FCOE_KWQE_OPCODE_INIT1:
2721 ret = cnic_bnx2x_fcoe_init1(dev, &wqes[i],
2722 num_wqes - i, &work);
2723 break;
2724 case FCOE_KWQE_OPCODE_OFFLOAD_CONN1:
2725 ret = cnic_bnx2x_fcoe_ofld1(dev, &wqes[i],
2726 num_wqes - i, &work);
2727 break;
2728 case FCOE_KWQE_OPCODE_ENABLE_CONN:
2729 ret = cnic_bnx2x_fcoe_enable(dev, kwqe);
2730 break;
2731 case FCOE_KWQE_OPCODE_DISABLE_CONN:
2732 ret = cnic_bnx2x_fcoe_disable(dev, kwqe);
2733 break;
2734 case FCOE_KWQE_OPCODE_DESTROY_CONN:
2735 ret = cnic_bnx2x_fcoe_destroy(dev, kwqe);
2736 break;
2737 case FCOE_KWQE_OPCODE_DESTROY:
2738 ret = cnic_bnx2x_fcoe_fw_destroy(dev, kwqe);
2739 break;
2740 case FCOE_KWQE_OPCODE_STAT:
2741 ret = cnic_bnx2x_fcoe_stat(dev, kwqe);
2742 break;
2743 default:
2744 ret = 0;
2745 netdev_err(dev->netdev, "Unknown type of KWQE(0x%x)\n",
2746 opcode);
2747 break;
2748 }
Michael Chan3238a9b2012-02-05 15:24:40 +00002749 if (ret < 0) {
Michael Chane1928c82010-12-23 07:43:04 +00002750 netdev_err(dev->netdev, "KWQE(0x%x) failed\n",
2751 opcode);
Michael Chan3238a9b2012-02-05 15:24:40 +00002752
2753 /* Possibly bnx2x parity error, send completion
2754 * to ulp drivers with error code to speed up
2755 * cleanup and reset recovery.
2756 */
2757 if (ret == -EIO || ret == -EAGAIN)
2758 cnic_bnx2x_kwqe_err(dev, kwqe);
2759 }
Michael Chane1928c82010-12-23 07:43:04 +00002760 i += work;
2761 }
2762 return 0;
2763}
2764
2765static int cnic_submit_bnx2x_kwqes(struct cnic_dev *dev, struct kwqe *wqes[],
2766 u32 num_wqes)
2767{
2768 int ret = -EINVAL;
2769 u32 layer_code;
2770
2771 if (!test_bit(CNIC_F_CNIC_UP, &dev->flags))
2772 return -EAGAIN; /* bnx2x is down */
2773
2774 if (!num_wqes)
2775 return 0;
2776
2777 layer_code = wqes[0]->kwqe_op_flag & KWQE_LAYER_MASK;
2778 switch (layer_code) {
2779 case KWQE_FLAGS_LAYER_MASK_L5_ISCSI:
2780 case KWQE_FLAGS_LAYER_MASK_L4:
2781 case KWQE_FLAGS_LAYER_MASK_L2:
2782 ret = cnic_submit_bnx2x_iscsi_kwqes(dev, wqes, num_wqes);
2783 break;
2784
2785 case KWQE_FLAGS_LAYER_MASK_L5_FCOE:
2786 ret = cnic_submit_bnx2x_fcoe_kwqes(dev, wqes, num_wqes);
2787 break;
2788 }
2789 return ret;
2790}
2791
2792static inline u32 cnic_get_kcqe_layer_mask(u32 opflag)
2793{
2794 if (unlikely(KCQE_OPCODE(opflag) == FCOE_RAMROD_CMD_ID_TERMINATE_CONN))
2795 return KCQE_FLAGS_LAYER_MASK_L4;
2796
2797 return opflag & KCQE_FLAGS_LAYER_MASK;
2798}
2799
Michael Chana4636962009-06-08 18:14:43 -07002800static void service_kcqes(struct cnic_dev *dev, int num_cqes)
2801{
2802 struct cnic_local *cp = dev->cnic_priv;
Dmitry Kravkovc2bff632010-10-06 03:33:18 +00002803 int i, j, comp = 0;
Michael Chana4636962009-06-08 18:14:43 -07002804
2805 i = 0;
2806 j = 1;
2807 while (num_cqes) {
2808 struct cnic_ulp_ops *ulp_ops;
2809 int ulp_type;
2810 u32 kcqe_op_flag = cp->completed_kcq[i]->kcqe_op_flag;
Michael Chane1928c82010-12-23 07:43:04 +00002811 u32 kcqe_layer = cnic_get_kcqe_layer_mask(kcqe_op_flag);
Michael Chana4636962009-06-08 18:14:43 -07002812
2813 if (unlikely(kcqe_op_flag & KCQE_RAMROD_COMPLETION))
Dmitry Kravkovc2bff632010-10-06 03:33:18 +00002814 comp++;
Michael Chana4636962009-06-08 18:14:43 -07002815
2816 while (j < num_cqes) {
2817 u32 next_op = cp->completed_kcq[i + j]->kcqe_op_flag;
2818
Michael Chane1928c82010-12-23 07:43:04 +00002819 if (cnic_get_kcqe_layer_mask(next_op) != kcqe_layer)
Michael Chana4636962009-06-08 18:14:43 -07002820 break;
2821
2822 if (unlikely(next_op & KCQE_RAMROD_COMPLETION))
Dmitry Kravkovc2bff632010-10-06 03:33:18 +00002823 comp++;
Michael Chana4636962009-06-08 18:14:43 -07002824 j++;
2825 }
2826
2827 if (kcqe_layer == KCQE_FLAGS_LAYER_MASK_L5_RDMA)
2828 ulp_type = CNIC_ULP_RDMA;
2829 else if (kcqe_layer == KCQE_FLAGS_LAYER_MASK_L5_ISCSI)
2830 ulp_type = CNIC_ULP_ISCSI;
Michael Chane1928c82010-12-23 07:43:04 +00002831 else if (kcqe_layer == KCQE_FLAGS_LAYER_MASK_L5_FCOE)
2832 ulp_type = CNIC_ULP_FCOE;
Michael Chana4636962009-06-08 18:14:43 -07002833 else if (kcqe_layer == KCQE_FLAGS_LAYER_MASK_L4)
2834 ulp_type = CNIC_ULP_L4;
2835 else if (kcqe_layer == KCQE_FLAGS_LAYER_MASK_L2)
2836 goto end;
2837 else {
Joe Perchesddf79b22010-02-17 15:01:54 +00002838 netdev_err(dev->netdev, "Unknown type of KCQE(0x%x)\n",
2839 kcqe_op_flag);
Michael Chana4636962009-06-08 18:14:43 -07002840 goto end;
2841 }
2842
2843 rcu_read_lock();
2844 ulp_ops = rcu_dereference(cp->ulp_ops[ulp_type]);
2845 if (likely(ulp_ops)) {
2846 ulp_ops->indicate_kcqes(cp->ulp_handle[ulp_type],
2847 cp->completed_kcq + i, j);
2848 }
2849 rcu_read_unlock();
2850end:
2851 num_cqes -= j;
2852 i += j;
2853 j = 1;
2854 }
Dmitry Kravkovc2bff632010-10-06 03:33:18 +00002855 if (unlikely(comp))
2856 cnic_spq_completion(dev, DRV_CTL_RET_L5_SPQ_CREDIT_CMD, comp);
Michael Chana4636962009-06-08 18:14:43 -07002857}
2858
Michael Chan644b9d42010-06-24 14:58:40 +00002859static int cnic_get_kcqes(struct cnic_dev *dev, struct kcq_info *info)
Michael Chana4636962009-06-08 18:14:43 -07002860{
2861 struct cnic_local *cp = dev->cnic_priv;
Michael Chan644b9d42010-06-24 14:58:40 +00002862 u16 i, ri, hw_prod, last;
Michael Chana4636962009-06-08 18:14:43 -07002863 struct kcqe *kcqe;
2864 int kcqe_cnt = 0, last_cnt = 0;
2865
Michael Chan644b9d42010-06-24 14:58:40 +00002866 i = ri = last = info->sw_prod_idx;
Michael Chana4636962009-06-08 18:14:43 -07002867 ri &= MAX_KCQ_IDX;
Michael Chan644b9d42010-06-24 14:58:40 +00002868 hw_prod = *info->hw_prod_idx_ptr;
Michael Chan59e51372011-06-14 01:32:38 +00002869 hw_prod = info->hw_idx(hw_prod);
Michael Chana4636962009-06-08 18:14:43 -07002870
2871 while ((i != hw_prod) && (kcqe_cnt < MAX_COMPLETED_KCQE)) {
Michael Chan644b9d42010-06-24 14:58:40 +00002872 kcqe = &info->kcq[KCQ_PG(ri)][KCQ_IDX(ri)];
Michael Chana4636962009-06-08 18:14:43 -07002873 cp->completed_kcq[kcqe_cnt++] = kcqe;
Michael Chan59e51372011-06-14 01:32:38 +00002874 i = info->next_idx(i);
Michael Chana4636962009-06-08 18:14:43 -07002875 ri = i & MAX_KCQ_IDX;
2876 if (likely(!(kcqe->kcqe_op_flag & KCQE_FLAGS_NEXT))) {
2877 last_cnt = kcqe_cnt;
2878 last = i;
2879 }
2880 }
2881
Michael Chan644b9d42010-06-24 14:58:40 +00002882 info->sw_prod_idx = last;
Michael Chana4636962009-06-08 18:14:43 -07002883 return last_cnt;
2884}
2885
Michael Chan48f753d2010-05-18 11:32:53 +00002886static int cnic_l2_completion(struct cnic_local *cp)
2887{
2888 u16 hw_cons, sw_cons;
Michael Chancd801532010-10-13 14:06:49 +00002889 struct cnic_uio_dev *udev = cp->udev;
Michael Chan48f753d2010-05-18 11:32:53 +00002890 union eth_rx_cqe *cqe, *cqe_ring = (union eth_rx_cqe *)
Michael Chancd801532010-10-13 14:06:49 +00002891 (udev->l2_ring + (2 * BCM_PAGE_SIZE));
Michael Chan48f753d2010-05-18 11:32:53 +00002892 u32 cmd;
2893 int comp = 0;
2894
2895 if (!test_bit(CNIC_F_BNX2X_CLASS, &cp->dev->flags))
2896 return 0;
2897
2898 hw_cons = *cp->rx_cons_ptr;
2899 if ((hw_cons & BNX2X_MAX_RCQ_DESC_CNT) == BNX2X_MAX_RCQ_DESC_CNT)
2900 hw_cons++;
2901
2902 sw_cons = cp->rx_cons;
2903 while (sw_cons != hw_cons) {
2904 u8 cqe_fp_flags;
2905
2906 cqe = &cqe_ring[sw_cons & BNX2X_MAX_RCQ_DESC_CNT];
2907 cqe_fp_flags = cqe->fast_path_cqe.type_error_flags;
2908 if (cqe_fp_flags & ETH_FAST_PATH_RX_CQE_TYPE) {
2909 cmd = le32_to_cpu(cqe->ramrod_cqe.conn_and_cmd_data);
2910 cmd >>= COMMON_RAMROD_ETH_RX_CQE_CMD_ID_SHIFT;
2911 if (cmd == RAMROD_CMD_ID_ETH_CLIENT_SETUP ||
2912 cmd == RAMROD_CMD_ID_ETH_HALT)
2913 comp++;
2914 }
2915 sw_cons = BNX2X_NEXT_RCQE(sw_cons);
2916 }
2917 return comp;
2918}
2919
Michael Chan86b53602009-10-10 13:46:57 +00002920static void cnic_chk_pkt_rings(struct cnic_local *cp)
Michael Chana4636962009-06-08 18:14:43 -07002921{
Michael Chan541a7812010-10-06 03:17:22 +00002922 u16 rx_cons, tx_cons;
Michael Chan48f753d2010-05-18 11:32:53 +00002923 int comp = 0;
Michael Chana4636962009-06-08 18:14:43 -07002924
Michael Chan541a7812010-10-06 03:17:22 +00002925 if (!test_bit(CNIC_LCL_FL_RINGS_INITED, &cp->cnic_local_flags))
Michael Chan66fee9e2010-06-24 14:58:38 +00002926 return;
2927
Michael Chan541a7812010-10-06 03:17:22 +00002928 rx_cons = *cp->rx_cons_ptr;
2929 tx_cons = *cp->tx_cons_ptr;
Michael Chana4636962009-06-08 18:14:43 -07002930 if (cp->tx_cons != tx_cons || cp->rx_cons != rx_cons) {
Michael Chan48f753d2010-05-18 11:32:53 +00002931 if (test_bit(CNIC_LCL_FL_L2_WAIT, &cp->cnic_local_flags))
2932 comp = cnic_l2_completion(cp);
2933
Michael Chana4636962009-06-08 18:14:43 -07002934 cp->tx_cons = tx_cons;
2935 cp->rx_cons = rx_cons;
Michael Chan71034ba2009-10-10 13:46:59 +00002936
Michael Chancd801532010-10-13 14:06:49 +00002937 if (cp->udev)
2938 uio_event_notify(&cp->udev->cnic_uinfo);
Michael Chana4636962009-06-08 18:14:43 -07002939 }
Michael Chan48f753d2010-05-18 11:32:53 +00002940 if (comp)
2941 clear_bit(CNIC_LCL_FL_L2_WAIT, &cp->cnic_local_flags);
Michael Chana4636962009-06-08 18:14:43 -07002942}
2943
Michael Chanb177a5d52010-06-24 14:58:41 +00002944static u32 cnic_service_bnx2_queues(struct cnic_dev *dev)
Michael Chana4636962009-06-08 18:14:43 -07002945{
Michael Chana4636962009-06-08 18:14:43 -07002946 struct cnic_local *cp = dev->cnic_priv;
Michael Chanb177a5d52010-06-24 14:58:41 +00002947 u32 status_idx = (u16) *cp->kcq1.status_idx_ptr;
Michael Chana4636962009-06-08 18:14:43 -07002948 int kcqe_cnt;
2949
Michael Chan107c3f42011-03-02 13:00:49 +00002950 /* status block index must be read before reading other fields */
2951 rmb();
Michael Chana4636962009-06-08 18:14:43 -07002952 cp->kwq_con_idx = *cp->kwq_con_idx_ptr;
2953
Michael Chan644b9d42010-06-24 14:58:40 +00002954 while ((kcqe_cnt = cnic_get_kcqes(dev, &cp->kcq1))) {
Michael Chana4636962009-06-08 18:14:43 -07002955
2956 service_kcqes(dev, kcqe_cnt);
2957
2958 /* Tell compiler that status_blk fields can change. */
2959 barrier();
Michael Chan93736652011-06-08 19:29:32 +00002960 status_idx = (u16) *cp->kcq1.status_idx_ptr;
2961 /* status block index must be read first */
2962 rmb();
2963 cp->kwq_con_idx = *cp->kwq_con_idx_ptr;
Michael Chana4636962009-06-08 18:14:43 -07002964 }
2965
Michael Chan644b9d42010-06-24 14:58:40 +00002966 CNIC_WR16(dev, cp->kcq1.io_addr, cp->kcq1.sw_prod_idx);
Michael Chana4636962009-06-08 18:14:43 -07002967
Michael Chan86b53602009-10-10 13:46:57 +00002968 cnic_chk_pkt_rings(cp);
Michael Chanb177a5d52010-06-24 14:58:41 +00002969
Michael Chana4636962009-06-08 18:14:43 -07002970 return status_idx;
2971}
2972
Michael Chanb177a5d52010-06-24 14:58:41 +00002973static int cnic_service_bnx2(void *data, void *status_blk)
2974{
2975 struct cnic_dev *dev = data;
Michael Chanb177a5d52010-06-24 14:58:41 +00002976
Michael Chaneaaa6e92010-12-23 08:38:30 +00002977 if (unlikely(!test_bit(CNIC_F_CNIC_UP, &dev->flags))) {
2978 struct status_block *sblk = status_blk;
2979
2980 return sblk->status_idx;
2981 }
Michael Chanb177a5d52010-06-24 14:58:41 +00002982
2983 return cnic_service_bnx2_queues(dev);
2984}
2985
Michael Chana4636962009-06-08 18:14:43 -07002986static void cnic_service_bnx2_msix(unsigned long data)
2987{
2988 struct cnic_dev *dev = (struct cnic_dev *) data;
2989 struct cnic_local *cp = dev->cnic_priv;
Michael Chana4636962009-06-08 18:14:43 -07002990
Michael Chanb177a5d52010-06-24 14:58:41 +00002991 cp->last_status_idx = cnic_service_bnx2_queues(dev);
Michael Chana4636962009-06-08 18:14:43 -07002992
Michael Chana4636962009-06-08 18:14:43 -07002993 CNIC_WR(dev, BNX2_PCICFG_INT_ACK_CMD, cp->int_num |
2994 BNX2_PCICFG_INT_ACK_CMD_INDEX_VALID | cp->last_status_idx);
2995}
2996
Michael Chan66fee9e2010-06-24 14:58:38 +00002997static void cnic_doirq(struct cnic_dev *dev)
2998{
2999 struct cnic_local *cp = dev->cnic_priv;
Michael Chan66fee9e2010-06-24 14:58:38 +00003000
3001 if (likely(test_bit(CNIC_F_CNIC_UP, &dev->flags))) {
Michael Chaneaaa6e92010-12-23 08:38:30 +00003002 u16 prod = cp->kcq1.sw_prod_idx & MAX_KCQ_IDX;
3003
Michael Chan66fee9e2010-06-24 14:58:38 +00003004 prefetch(cp->status_blk.gen);
Michael Chane6c28892010-06-24 14:58:39 +00003005 prefetch(&cp->kcq1.kcq[KCQ_PG(prod)][KCQ_IDX(prod)]);
Michael Chan66fee9e2010-06-24 14:58:38 +00003006
3007 tasklet_schedule(&cp->cnic_irq_task);
3008 }
3009}
3010
Michael Chana4636962009-06-08 18:14:43 -07003011static irqreturn_t cnic_irq(int irq, void *dev_instance)
3012{
3013 struct cnic_dev *dev = dev_instance;
3014 struct cnic_local *cp = dev->cnic_priv;
Michael Chana4636962009-06-08 18:14:43 -07003015
3016 if (cp->ack_int)
3017 cp->ack_int(dev);
3018
Michael Chan66fee9e2010-06-24 14:58:38 +00003019 cnic_doirq(dev);
Michael Chana4636962009-06-08 18:14:43 -07003020
3021 return IRQ_HANDLED;
3022}
3023
Michael Chan71034ba2009-10-10 13:46:59 +00003024static inline void cnic_ack_bnx2x_int(struct cnic_dev *dev, u8 id, u8 storm,
3025 u16 index, u8 op, u8 update)
3026{
3027 struct cnic_local *cp = dev->cnic_priv;
3028 u32 hc_addr = (HC_REG_COMMAND_REG + CNIC_PORT(cp) * 32 +
3029 COMMAND_REG_INT_ACK);
3030 struct igu_ack_register igu_ack;
3031
3032 igu_ack.status_block_index = index;
3033 igu_ack.sb_id_and_flags =
3034 ((id << IGU_ACK_REGISTER_STATUS_BLOCK_ID_SHIFT) |
3035 (storm << IGU_ACK_REGISTER_STORM_ID_SHIFT) |
3036 (update << IGU_ACK_REGISTER_UPDATE_INDEX_SHIFT) |
3037 (op << IGU_ACK_REGISTER_INTERRUPT_MODE_SHIFT));
3038
3039 CNIC_WR(dev, hc_addr, (*(u32 *)&igu_ack));
3040}
3041
Michael Chanee87a822010-10-13 14:06:51 +00003042static void cnic_ack_igu_sb(struct cnic_dev *dev, u8 igu_sb_id, u8 segment,
3043 u16 index, u8 op, u8 update)
3044{
3045 struct igu_regular cmd_data;
3046 u32 igu_addr = BAR_IGU_INTMEM + (IGU_CMD_INT_ACK_BASE + igu_sb_id) * 8;
3047
3048 cmd_data.sb_id_and_flags =
3049 (index << IGU_REGULAR_SB_INDEX_SHIFT) |
3050 (segment << IGU_REGULAR_SEGMENT_ACCESS_SHIFT) |
3051 (update << IGU_REGULAR_BUPDATE_SHIFT) |
3052 (op << IGU_REGULAR_ENABLE_INT_SHIFT);
3053
3054
3055 CNIC_WR(dev, igu_addr, cmd_data.sb_id_and_flags);
3056}
3057
Michael Chan71034ba2009-10-10 13:46:59 +00003058static void cnic_ack_bnx2x_msix(struct cnic_dev *dev)
3059{
3060 struct cnic_local *cp = dev->cnic_priv;
3061
Dmitry Kravkov523224a2010-10-06 03:23:26 +00003062 cnic_ack_bnx2x_int(dev, cp->bnx2x_igu_sb_id, CSTORM_ID, 0,
Michael Chan71034ba2009-10-10 13:46:59 +00003063 IGU_INT_DISABLE, 0);
3064}
3065
Michael Chanee87a822010-10-13 14:06:51 +00003066static void cnic_ack_bnx2x_e2_msix(struct cnic_dev *dev)
3067{
3068 struct cnic_local *cp = dev->cnic_priv;
3069
3070 cnic_ack_igu_sb(dev, cp->bnx2x_igu_sb_id, IGU_SEG_ACCESS_DEF, 0,
3071 IGU_INT_DISABLE, 0);
3072}
3073
Michael Chanb177a5d52010-06-24 14:58:41 +00003074static u32 cnic_service_bnx2x_kcq(struct cnic_dev *dev, struct kcq_info *info)
Michael Chan71034ba2009-10-10 13:46:59 +00003075{
Michael Chanb177a5d52010-06-24 14:58:41 +00003076 u32 last_status = *info->status_idx_ptr;
Michael Chan71034ba2009-10-10 13:46:59 +00003077 int kcqe_cnt;
3078
Michael Chan107c3f42011-03-02 13:00:49 +00003079 /* status block index must be read before reading the KCQ */
3080 rmb();
Michael Chanb177a5d52010-06-24 14:58:41 +00003081 while ((kcqe_cnt = cnic_get_kcqes(dev, info))) {
Michael Chan71034ba2009-10-10 13:46:59 +00003082
3083 service_kcqes(dev, kcqe_cnt);
3084
3085 /* Tell compiler that sblk fields can change. */
3086 barrier();
Michael Chan71034ba2009-10-10 13:46:59 +00003087
Michael Chanb177a5d52010-06-24 14:58:41 +00003088 last_status = *info->status_idx_ptr;
Michael Chan107c3f42011-03-02 13:00:49 +00003089 /* status block index must be read before reading the KCQ */
3090 rmb();
Michael Chan71034ba2009-10-10 13:46:59 +00003091 }
Michael Chanb177a5d52010-06-24 14:58:41 +00003092 return last_status;
3093}
3094
3095static void cnic_service_bnx2x_bh(unsigned long data)
3096{
3097 struct cnic_dev *dev = (struct cnic_dev *) data;
3098 struct cnic_local *cp = dev->cnic_priv;
Michael Chan0197b082011-03-02 13:00:50 +00003099 u32 status_idx, new_status_idx;
Michael Chanb177a5d52010-06-24 14:58:41 +00003100
3101 if (unlikely(!test_bit(CNIC_F_CNIC_UP, &dev->flags)))
3102 return;
3103
Michael Chan0197b082011-03-02 13:00:50 +00003104 while (1) {
3105 status_idx = cnic_service_bnx2x_kcq(dev, &cp->kcq1);
Michael Chan71034ba2009-10-10 13:46:59 +00003106
Michael Chan0197b082011-03-02 13:00:50 +00003107 CNIC_WR16(dev, cp->kcq1.io_addr,
3108 cp->kcq1.sw_prod_idx + MAX_KCQ_IDX);
Michael Chane21ba412010-12-23 07:43:03 +00003109
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03003110 if (!BNX2X_CHIP_IS_E2_PLUS(cp->chip_id)) {
Michael Chan0197b082011-03-02 13:00:50 +00003111 cnic_ack_bnx2x_int(dev, cp->bnx2x_igu_sb_id, USTORM_ID,
3112 status_idx, IGU_INT_ENABLE, 1);
3113 break;
3114 }
3115
3116 new_status_idx = cnic_service_bnx2x_kcq(dev, &cp->kcq2);
3117
3118 if (new_status_idx != status_idx)
3119 continue;
Michael Chane21ba412010-12-23 07:43:03 +00003120
3121 CNIC_WR16(dev, cp->kcq2.io_addr, cp->kcq2.sw_prod_idx +
3122 MAX_KCQ_IDX);
3123
Michael Chanee87a822010-10-13 14:06:51 +00003124 cnic_ack_igu_sb(dev, cp->bnx2x_igu_sb_id, IGU_SEG_ACCESS_DEF,
3125 status_idx, IGU_INT_ENABLE, 1);
Michael Chan0197b082011-03-02 13:00:50 +00003126
3127 break;
Michael Chane21ba412010-12-23 07:43:03 +00003128 }
Michael Chan71034ba2009-10-10 13:46:59 +00003129}
3130
3131static int cnic_service_bnx2x(void *data, void *status_blk)
3132{
3133 struct cnic_dev *dev = data;
3134 struct cnic_local *cp = dev->cnic_priv;
Michael Chan71034ba2009-10-10 13:46:59 +00003135
Michael Chan66fee9e2010-06-24 14:58:38 +00003136 if (!(cp->ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX))
3137 cnic_doirq(dev);
Michael Chan71034ba2009-10-10 13:46:59 +00003138
Michael Chan66fee9e2010-06-24 14:58:38 +00003139 cnic_chk_pkt_rings(cp);
Michael Chan71034ba2009-10-10 13:46:59 +00003140
3141 return 0;
3142}
3143
Dmitry Kravkovfab0dc82011-03-31 17:04:22 -07003144static void cnic_ulp_stop_one(struct cnic_local *cp, int if_type)
3145{
3146 struct cnic_ulp_ops *ulp_ops;
3147
3148 if (if_type == CNIC_ULP_ISCSI)
3149 cnic_send_nlmsg(cp, ISCSI_KEVENT_IF_DOWN, NULL);
3150
3151 mutex_lock(&cnic_lock);
3152 ulp_ops = rcu_dereference_protected(cp->ulp_ops[if_type],
3153 lockdep_is_held(&cnic_lock));
3154 if (!ulp_ops) {
3155 mutex_unlock(&cnic_lock);
3156 return;
3157 }
3158 set_bit(ULP_F_CALL_PENDING, &cp->ulp_flags[if_type]);
3159 mutex_unlock(&cnic_lock);
3160
3161 if (test_and_clear_bit(ULP_F_START, &cp->ulp_flags[if_type]))
3162 ulp_ops->cnic_stop(cp->ulp_handle[if_type]);
3163
3164 clear_bit(ULP_F_CALL_PENDING, &cp->ulp_flags[if_type]);
3165}
3166
Michael Chana4636962009-06-08 18:14:43 -07003167static void cnic_ulp_stop(struct cnic_dev *dev)
3168{
3169 struct cnic_local *cp = dev->cnic_priv;
3170 int if_type;
3171
Dmitry Kravkovfab0dc82011-03-31 17:04:22 -07003172 for (if_type = 0; if_type < MAX_CNIC_ULP_TYPE; if_type++)
3173 cnic_ulp_stop_one(cp, if_type);
Michael Chana4636962009-06-08 18:14:43 -07003174}
3175
3176static void cnic_ulp_start(struct cnic_dev *dev)
3177{
3178 struct cnic_local *cp = dev->cnic_priv;
3179 int if_type;
3180
Michael Chana4636962009-06-08 18:14:43 -07003181 for (if_type = 0; if_type < MAX_CNIC_ULP_TYPE; if_type++) {
3182 struct cnic_ulp_ops *ulp_ops;
3183
Michael Chan681dbd72009-08-14 15:49:46 +00003184 mutex_lock(&cnic_lock);
Eric Dumazet13707f92011-01-26 19:28:23 +00003185 ulp_ops = rcu_dereference_protected(cp->ulp_ops[if_type],
3186 lockdep_is_held(&cnic_lock));
Michael Chan681dbd72009-08-14 15:49:46 +00003187 if (!ulp_ops || !ulp_ops->cnic_start) {
3188 mutex_unlock(&cnic_lock);
Michael Chana4636962009-06-08 18:14:43 -07003189 continue;
Michael Chan681dbd72009-08-14 15:49:46 +00003190 }
3191 set_bit(ULP_F_CALL_PENDING, &cp->ulp_flags[if_type]);
3192 mutex_unlock(&cnic_lock);
Michael Chana4636962009-06-08 18:14:43 -07003193
3194 if (!test_and_set_bit(ULP_F_START, &cp->ulp_flags[if_type]))
3195 ulp_ops->cnic_start(cp->ulp_handle[if_type]);
Michael Chan681dbd72009-08-14 15:49:46 +00003196
3197 clear_bit(ULP_F_CALL_PENDING, &cp->ulp_flags[if_type]);
Michael Chana4636962009-06-08 18:14:43 -07003198 }
Michael Chana4636962009-06-08 18:14:43 -07003199}
3200
Barak Witkowski1d187b32011-12-05 22:41:50 +00003201static int cnic_copy_ulp_stats(struct cnic_dev *dev, int ulp_type)
3202{
3203 struct cnic_local *cp = dev->cnic_priv;
3204 struct cnic_ulp_ops *ulp_ops;
3205 int rc;
3206
3207 mutex_lock(&cnic_lock);
3208 ulp_ops = cnic_ulp_tbl_prot(ulp_type);
3209 if (ulp_ops && ulp_ops->cnic_get_stats)
3210 rc = ulp_ops->cnic_get_stats(cp->ulp_handle[ulp_type]);
3211 else
3212 rc = -ENODEV;
3213 mutex_unlock(&cnic_lock);
3214 return rc;
3215}
3216
Michael Chana4636962009-06-08 18:14:43 -07003217static int cnic_ctl(void *data, struct cnic_ctl_info *info)
3218{
3219 struct cnic_dev *dev = data;
Barak Witkowski1d187b32011-12-05 22:41:50 +00003220 int ulp_type = CNIC_ULP_ISCSI;
Michael Chana4636962009-06-08 18:14:43 -07003221
3222 switch (info->cmd) {
3223 case CNIC_CTL_STOP_CMD:
3224 cnic_hold(dev);
Michael Chana4636962009-06-08 18:14:43 -07003225
3226 cnic_ulp_stop(dev);
3227 cnic_stop_hw(dev);
3228
Michael Chana4636962009-06-08 18:14:43 -07003229 cnic_put(dev);
3230 break;
3231 case CNIC_CTL_START_CMD:
3232 cnic_hold(dev);
Michael Chana4636962009-06-08 18:14:43 -07003233
3234 if (!cnic_start_hw(dev))
3235 cnic_ulp_start(dev);
3236
Michael Chana4636962009-06-08 18:14:43 -07003237 cnic_put(dev);
3238 break;
Dmitry Kravkovfab0dc82011-03-31 17:04:22 -07003239 case CNIC_CTL_STOP_ISCSI_CMD: {
3240 struct cnic_local *cp = dev->cnic_priv;
3241 set_bit(CNIC_LCL_FL_STOP_ISCSI, &cp->cnic_local_flags);
3242 queue_delayed_work(cnic_wq, &cp->delete_task, 0);
3243 break;
3244 }
Michael Chan71034ba2009-10-10 13:46:59 +00003245 case CNIC_CTL_COMPLETION_CMD: {
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03003246 struct cnic_ctl_completion *comp = &info->data.comp;
3247 u32 cid = BNX2X_SW_CID(comp->cid);
Michael Chan71034ba2009-10-10 13:46:59 +00003248 u32 l5_cid;
3249 struct cnic_local *cp = dev->cnic_priv;
3250
Michael Chana2028b232012-06-27 15:08:19 +00003251 if (!test_bit(CNIC_F_CNIC_UP, &dev->flags))
3252 break;
3253
Michael Chan71034ba2009-10-10 13:46:59 +00003254 if (cnic_get_l5_cid(cp, cid, &l5_cid) == 0) {
3255 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
3256
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03003257 if (unlikely(comp->error)) {
3258 set_bit(CTX_FL_CID_ERROR, &ctx->ctx_flags);
3259 netdev_err(dev->netdev,
3260 "CID %x CFC delete comp error %x\n",
3261 cid, comp->error);
3262 }
3263
Michael Chan71034ba2009-10-10 13:46:59 +00003264 ctx->wait_cond = 1;
3265 wake_up(&ctx->waitq);
3266 }
3267 break;
3268 }
Barak Witkowski1d187b32011-12-05 22:41:50 +00003269 case CNIC_CTL_FCOE_STATS_GET_CMD:
3270 ulp_type = CNIC_ULP_FCOE;
3271 /* fall through */
3272 case CNIC_CTL_ISCSI_STATS_GET_CMD:
3273 cnic_hold(dev);
3274 cnic_copy_ulp_stats(dev, ulp_type);
3275 cnic_put(dev);
3276 break;
3277
Michael Chana4636962009-06-08 18:14:43 -07003278 default:
3279 return -EINVAL;
3280 }
3281 return 0;
3282}
3283
3284static void cnic_ulp_init(struct cnic_dev *dev)
3285{
3286 int i;
3287 struct cnic_local *cp = dev->cnic_priv;
3288
Michael Chana4636962009-06-08 18:14:43 -07003289 for (i = 0; i < MAX_CNIC_ULP_TYPE_EXT; i++) {
3290 struct cnic_ulp_ops *ulp_ops;
3291
Michael Chan7fc1ece2009-08-14 15:49:47 +00003292 mutex_lock(&cnic_lock);
Eric Dumazet13707f92011-01-26 19:28:23 +00003293 ulp_ops = cnic_ulp_tbl_prot(i);
Michael Chan7fc1ece2009-08-14 15:49:47 +00003294 if (!ulp_ops || !ulp_ops->cnic_init) {
3295 mutex_unlock(&cnic_lock);
Michael Chana4636962009-06-08 18:14:43 -07003296 continue;
Michael Chan7fc1ece2009-08-14 15:49:47 +00003297 }
3298 ulp_get(ulp_ops);
3299 mutex_unlock(&cnic_lock);
Michael Chana4636962009-06-08 18:14:43 -07003300
3301 if (!test_and_set_bit(ULP_F_INIT, &cp->ulp_flags[i]))
3302 ulp_ops->cnic_init(dev);
3303
Michael Chan7fc1ece2009-08-14 15:49:47 +00003304 ulp_put(ulp_ops);
Michael Chana4636962009-06-08 18:14:43 -07003305 }
Michael Chana4636962009-06-08 18:14:43 -07003306}
3307
3308static void cnic_ulp_exit(struct cnic_dev *dev)
3309{
3310 int i;
3311 struct cnic_local *cp = dev->cnic_priv;
3312
Michael Chana4636962009-06-08 18:14:43 -07003313 for (i = 0; i < MAX_CNIC_ULP_TYPE_EXT; i++) {
3314 struct cnic_ulp_ops *ulp_ops;
3315
Michael Chan7fc1ece2009-08-14 15:49:47 +00003316 mutex_lock(&cnic_lock);
Eric Dumazet13707f92011-01-26 19:28:23 +00003317 ulp_ops = cnic_ulp_tbl_prot(i);
Michael Chan7fc1ece2009-08-14 15:49:47 +00003318 if (!ulp_ops || !ulp_ops->cnic_exit) {
3319 mutex_unlock(&cnic_lock);
Michael Chana4636962009-06-08 18:14:43 -07003320 continue;
Michael Chan7fc1ece2009-08-14 15:49:47 +00003321 }
3322 ulp_get(ulp_ops);
3323 mutex_unlock(&cnic_lock);
Michael Chana4636962009-06-08 18:14:43 -07003324
3325 if (test_and_clear_bit(ULP_F_INIT, &cp->ulp_flags[i]))
3326 ulp_ops->cnic_exit(dev);
3327
Michael Chan7fc1ece2009-08-14 15:49:47 +00003328 ulp_put(ulp_ops);
Michael Chana4636962009-06-08 18:14:43 -07003329 }
Michael Chana4636962009-06-08 18:14:43 -07003330}
3331
3332static int cnic_cm_offload_pg(struct cnic_sock *csk)
3333{
3334 struct cnic_dev *dev = csk->dev;
3335 struct l4_kwq_offload_pg *l4kwqe;
3336 struct kwqe *wqes[1];
3337
3338 l4kwqe = (struct l4_kwq_offload_pg *) &csk->kwqe1;
3339 memset(l4kwqe, 0, sizeof(*l4kwqe));
3340 wqes[0] = (struct kwqe *) l4kwqe;
3341
3342 l4kwqe->op_code = L4_KWQE_OPCODE_VALUE_OFFLOAD_PG;
3343 l4kwqe->flags =
3344 L4_LAYER_CODE << L4_KWQ_OFFLOAD_PG_LAYER_CODE_SHIFT;
3345 l4kwqe->l2hdr_nbytes = ETH_HLEN;
3346
3347 l4kwqe->da0 = csk->ha[0];
3348 l4kwqe->da1 = csk->ha[1];
3349 l4kwqe->da2 = csk->ha[2];
3350 l4kwqe->da3 = csk->ha[3];
3351 l4kwqe->da4 = csk->ha[4];
3352 l4kwqe->da5 = csk->ha[5];
3353
3354 l4kwqe->sa0 = dev->mac_addr[0];
3355 l4kwqe->sa1 = dev->mac_addr[1];
3356 l4kwqe->sa2 = dev->mac_addr[2];
3357 l4kwqe->sa3 = dev->mac_addr[3];
3358 l4kwqe->sa4 = dev->mac_addr[4];
3359 l4kwqe->sa5 = dev->mac_addr[5];
3360
3361 l4kwqe->etype = ETH_P_IP;
Eddie Waia9736c02010-02-24 14:42:04 +00003362 l4kwqe->ipid_start = DEF_IPID_START;
Michael Chana4636962009-06-08 18:14:43 -07003363 l4kwqe->host_opaque = csk->l5_cid;
3364
3365 if (csk->vlan_id) {
3366 l4kwqe->pg_flags |= L4_KWQ_OFFLOAD_PG_VLAN_TAGGING;
3367 l4kwqe->vlan_tag = csk->vlan_id;
3368 l4kwqe->l2hdr_nbytes += 4;
3369 }
3370
3371 return dev->submit_kwqes(dev, wqes, 1);
3372}
3373
3374static int cnic_cm_update_pg(struct cnic_sock *csk)
3375{
3376 struct cnic_dev *dev = csk->dev;
3377 struct l4_kwq_update_pg *l4kwqe;
3378 struct kwqe *wqes[1];
3379
3380 l4kwqe = (struct l4_kwq_update_pg *) &csk->kwqe1;
3381 memset(l4kwqe, 0, sizeof(*l4kwqe));
3382 wqes[0] = (struct kwqe *) l4kwqe;
3383
3384 l4kwqe->opcode = L4_KWQE_OPCODE_VALUE_UPDATE_PG;
3385 l4kwqe->flags =
3386 L4_LAYER_CODE << L4_KWQ_UPDATE_PG_LAYER_CODE_SHIFT;
3387 l4kwqe->pg_cid = csk->pg_cid;
3388
3389 l4kwqe->da0 = csk->ha[0];
3390 l4kwqe->da1 = csk->ha[1];
3391 l4kwqe->da2 = csk->ha[2];
3392 l4kwqe->da3 = csk->ha[3];
3393 l4kwqe->da4 = csk->ha[4];
3394 l4kwqe->da5 = csk->ha[5];
3395
3396 l4kwqe->pg_host_opaque = csk->l5_cid;
3397 l4kwqe->pg_valids = L4_KWQ_UPDATE_PG_VALIDS_DA;
3398
3399 return dev->submit_kwqes(dev, wqes, 1);
3400}
3401
3402static int cnic_cm_upload_pg(struct cnic_sock *csk)
3403{
3404 struct cnic_dev *dev = csk->dev;
3405 struct l4_kwq_upload *l4kwqe;
3406 struct kwqe *wqes[1];
3407
3408 l4kwqe = (struct l4_kwq_upload *) &csk->kwqe1;
3409 memset(l4kwqe, 0, sizeof(*l4kwqe));
3410 wqes[0] = (struct kwqe *) l4kwqe;
3411
3412 l4kwqe->opcode = L4_KWQE_OPCODE_VALUE_UPLOAD_PG;
3413 l4kwqe->flags =
3414 L4_LAYER_CODE << L4_KWQ_UPLOAD_LAYER_CODE_SHIFT;
3415 l4kwqe->cid = csk->pg_cid;
3416
3417 return dev->submit_kwqes(dev, wqes, 1);
3418}
3419
3420static int cnic_cm_conn_req(struct cnic_sock *csk)
3421{
3422 struct cnic_dev *dev = csk->dev;
3423 struct l4_kwq_connect_req1 *l4kwqe1;
3424 struct l4_kwq_connect_req2 *l4kwqe2;
3425 struct l4_kwq_connect_req3 *l4kwqe3;
3426 struct kwqe *wqes[3];
3427 u8 tcp_flags = 0;
3428 int num_wqes = 2;
3429
3430 l4kwqe1 = (struct l4_kwq_connect_req1 *) &csk->kwqe1;
3431 l4kwqe2 = (struct l4_kwq_connect_req2 *) &csk->kwqe2;
3432 l4kwqe3 = (struct l4_kwq_connect_req3 *) &csk->kwqe3;
3433 memset(l4kwqe1, 0, sizeof(*l4kwqe1));
3434 memset(l4kwqe2, 0, sizeof(*l4kwqe2));
3435 memset(l4kwqe3, 0, sizeof(*l4kwqe3));
3436
3437 l4kwqe3->op_code = L4_KWQE_OPCODE_VALUE_CONNECT3;
3438 l4kwqe3->flags =
3439 L4_LAYER_CODE << L4_KWQ_CONNECT_REQ3_LAYER_CODE_SHIFT;
3440 l4kwqe3->ka_timeout = csk->ka_timeout;
3441 l4kwqe3->ka_interval = csk->ka_interval;
3442 l4kwqe3->ka_max_probe_count = csk->ka_max_probe_count;
3443 l4kwqe3->tos = csk->tos;
3444 l4kwqe3->ttl = csk->ttl;
3445 l4kwqe3->snd_seq_scale = csk->snd_seq_scale;
3446 l4kwqe3->pmtu = csk->mtu;
3447 l4kwqe3->rcv_buf = csk->rcv_buf;
3448 l4kwqe3->snd_buf = csk->snd_buf;
3449 l4kwqe3->seed = csk->seed;
3450
3451 wqes[0] = (struct kwqe *) l4kwqe1;
3452 if (test_bit(SK_F_IPV6, &csk->flags)) {
3453 wqes[1] = (struct kwqe *) l4kwqe2;
3454 wqes[2] = (struct kwqe *) l4kwqe3;
3455 num_wqes = 3;
3456
3457 l4kwqe1->conn_flags = L4_KWQ_CONNECT_REQ1_IP_V6;
3458 l4kwqe2->op_code = L4_KWQE_OPCODE_VALUE_CONNECT2;
3459 l4kwqe2->flags =
3460 L4_KWQ_CONNECT_REQ2_LINKED_WITH_NEXT |
3461 L4_LAYER_CODE << L4_KWQ_CONNECT_REQ2_LAYER_CODE_SHIFT;
3462 l4kwqe2->src_ip_v6_2 = be32_to_cpu(csk->src_ip[1]);
3463 l4kwqe2->src_ip_v6_3 = be32_to_cpu(csk->src_ip[2]);
3464 l4kwqe2->src_ip_v6_4 = be32_to_cpu(csk->src_ip[3]);
3465 l4kwqe2->dst_ip_v6_2 = be32_to_cpu(csk->dst_ip[1]);
3466 l4kwqe2->dst_ip_v6_3 = be32_to_cpu(csk->dst_ip[2]);
3467 l4kwqe2->dst_ip_v6_4 = be32_to_cpu(csk->dst_ip[3]);
3468 l4kwqe3->mss = l4kwqe3->pmtu - sizeof(struct ipv6hdr) -
3469 sizeof(struct tcphdr);
3470 } else {
3471 wqes[1] = (struct kwqe *) l4kwqe3;
3472 l4kwqe3->mss = l4kwqe3->pmtu - sizeof(struct iphdr) -
3473 sizeof(struct tcphdr);
3474 }
3475
3476 l4kwqe1->op_code = L4_KWQE_OPCODE_VALUE_CONNECT1;
3477 l4kwqe1->flags =
3478 (L4_LAYER_CODE << L4_KWQ_CONNECT_REQ1_LAYER_CODE_SHIFT) |
3479 L4_KWQ_CONNECT_REQ3_LINKED_WITH_NEXT;
3480 l4kwqe1->cid = csk->cid;
3481 l4kwqe1->pg_cid = csk->pg_cid;
3482 l4kwqe1->src_ip = be32_to_cpu(csk->src_ip[0]);
3483 l4kwqe1->dst_ip = be32_to_cpu(csk->dst_ip[0]);
3484 l4kwqe1->src_port = be16_to_cpu(csk->src_port);
3485 l4kwqe1->dst_port = be16_to_cpu(csk->dst_port);
3486 if (csk->tcp_flags & SK_TCP_NO_DELAY_ACK)
3487 tcp_flags |= L4_KWQ_CONNECT_REQ1_NO_DELAY_ACK;
3488 if (csk->tcp_flags & SK_TCP_KEEP_ALIVE)
3489 tcp_flags |= L4_KWQ_CONNECT_REQ1_KEEP_ALIVE;
3490 if (csk->tcp_flags & SK_TCP_NAGLE)
3491 tcp_flags |= L4_KWQ_CONNECT_REQ1_NAGLE_ENABLE;
3492 if (csk->tcp_flags & SK_TCP_TIMESTAMP)
3493 tcp_flags |= L4_KWQ_CONNECT_REQ1_TIME_STAMP;
3494 if (csk->tcp_flags & SK_TCP_SACK)
3495 tcp_flags |= L4_KWQ_CONNECT_REQ1_SACK;
3496 if (csk->tcp_flags & SK_TCP_SEG_SCALING)
3497 tcp_flags |= L4_KWQ_CONNECT_REQ1_SEG_SCALING;
3498
3499 l4kwqe1->tcp_flags = tcp_flags;
3500
3501 return dev->submit_kwqes(dev, wqes, num_wqes);
3502}
3503
3504static int cnic_cm_close_req(struct cnic_sock *csk)
3505{
3506 struct cnic_dev *dev = csk->dev;
3507 struct l4_kwq_close_req *l4kwqe;
3508 struct kwqe *wqes[1];
3509
3510 l4kwqe = (struct l4_kwq_close_req *) &csk->kwqe2;
3511 memset(l4kwqe, 0, sizeof(*l4kwqe));
3512 wqes[0] = (struct kwqe *) l4kwqe;
3513
3514 l4kwqe->op_code = L4_KWQE_OPCODE_VALUE_CLOSE;
3515 l4kwqe->flags = L4_LAYER_CODE << L4_KWQ_CLOSE_REQ_LAYER_CODE_SHIFT;
3516 l4kwqe->cid = csk->cid;
3517
3518 return dev->submit_kwqes(dev, wqes, 1);
3519}
3520
3521static int cnic_cm_abort_req(struct cnic_sock *csk)
3522{
3523 struct cnic_dev *dev = csk->dev;
3524 struct l4_kwq_reset_req *l4kwqe;
3525 struct kwqe *wqes[1];
3526
3527 l4kwqe = (struct l4_kwq_reset_req *) &csk->kwqe2;
3528 memset(l4kwqe, 0, sizeof(*l4kwqe));
3529 wqes[0] = (struct kwqe *) l4kwqe;
3530
3531 l4kwqe->op_code = L4_KWQE_OPCODE_VALUE_RESET;
3532 l4kwqe->flags = L4_LAYER_CODE << L4_KWQ_RESET_REQ_LAYER_CODE_SHIFT;
3533 l4kwqe->cid = csk->cid;
3534
3535 return dev->submit_kwqes(dev, wqes, 1);
3536}
3537
3538static int cnic_cm_create(struct cnic_dev *dev, int ulp_type, u32 cid,
3539 u32 l5_cid, struct cnic_sock **csk, void *context)
3540{
3541 struct cnic_local *cp = dev->cnic_priv;
3542 struct cnic_sock *csk1;
3543
3544 if (l5_cid >= MAX_CM_SK_TBL_SZ)
3545 return -EINVAL;
3546
Michael Chanfdf24082010-10-13 14:06:47 +00003547 if (cp->ctx_tbl) {
3548 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
3549
3550 if (test_bit(CTX_FL_OFFLD_START, &ctx->ctx_flags))
3551 return -EAGAIN;
3552 }
3553
Michael Chana4636962009-06-08 18:14:43 -07003554 csk1 = &cp->csk_tbl[l5_cid];
3555 if (atomic_read(&csk1->ref_count))
3556 return -EAGAIN;
3557
3558 if (test_and_set_bit(SK_F_INUSE, &csk1->flags))
3559 return -EBUSY;
3560
3561 csk1->dev = dev;
3562 csk1->cid = cid;
3563 csk1->l5_cid = l5_cid;
3564 csk1->ulp_type = ulp_type;
3565 csk1->context = context;
3566
3567 csk1->ka_timeout = DEF_KA_TIMEOUT;
3568 csk1->ka_interval = DEF_KA_INTERVAL;
3569 csk1->ka_max_probe_count = DEF_KA_MAX_PROBE_COUNT;
3570 csk1->tos = DEF_TOS;
3571 csk1->ttl = DEF_TTL;
3572 csk1->snd_seq_scale = DEF_SND_SEQ_SCALE;
3573 csk1->rcv_buf = DEF_RCV_BUF;
3574 csk1->snd_buf = DEF_SND_BUF;
3575 csk1->seed = DEF_SEED;
3576
3577 *csk = csk1;
3578 return 0;
3579}
3580
3581static void cnic_cm_cleanup(struct cnic_sock *csk)
3582{
3583 if (csk->src_port) {
3584 struct cnic_dev *dev = csk->dev;
3585 struct cnic_local *cp = dev->cnic_priv;
3586
Michael Chan9b093362010-12-23 07:42:56 +00003587 cnic_free_id(&cp->csk_port_tbl, be16_to_cpu(csk->src_port));
Michael Chana4636962009-06-08 18:14:43 -07003588 csk->src_port = 0;
3589 }
3590}
3591
3592static void cnic_close_conn(struct cnic_sock *csk)
3593{
3594 if (test_bit(SK_F_PG_OFFLD_COMPLETE, &csk->flags)) {
3595 cnic_cm_upload_pg(csk);
3596 clear_bit(SK_F_PG_OFFLD_COMPLETE, &csk->flags);
3597 }
3598 cnic_cm_cleanup(csk);
3599}
3600
3601static int cnic_cm_destroy(struct cnic_sock *csk)
3602{
3603 if (!cnic_in_use(csk))
3604 return -EINVAL;
3605
3606 csk_hold(csk);
3607 clear_bit(SK_F_INUSE, &csk->flags);
3608 smp_mb__after_clear_bit();
3609 while (atomic_read(&csk->ref_count) != 1)
3610 msleep(1);
3611 cnic_cm_cleanup(csk);
3612
3613 csk->flags = 0;
3614 csk_put(csk);
3615 return 0;
3616}
3617
3618static inline u16 cnic_get_vlan(struct net_device *dev,
3619 struct net_device **vlan_dev)
3620{
3621 if (dev->priv_flags & IFF_802_1Q_VLAN) {
3622 *vlan_dev = vlan_dev_real_dev(dev);
3623 return vlan_dev_vlan_id(dev);
3624 }
3625 *vlan_dev = dev;
3626 return 0;
3627}
3628
3629static int cnic_get_v4_route(struct sockaddr_in *dst_addr,
3630 struct dst_entry **dst)
3631{
Randy Dunlapfaea56c2009-06-12 11:43:48 -07003632#if defined(CONFIG_INET)
Michael Chana4636962009-06-08 18:14:43 -07003633 struct rtable *rt;
3634
David S. Miller78fbfd82011-03-12 00:00:52 -05003635 rt = ip_route_output(&init_net, dst_addr->sin_addr.s_addr, 0, 0, 0);
3636 if (!IS_ERR(rt)) {
Changli Gaod8d1f302010-06-10 23:31:35 -07003637 *dst = &rt->dst;
David S. Miller78fbfd82011-03-12 00:00:52 -05003638 return 0;
3639 }
3640 return PTR_ERR(rt);
Randy Dunlapfaea56c2009-06-12 11:43:48 -07003641#else
3642 return -ENETUNREACH;
3643#endif
Michael Chana4636962009-06-08 18:14:43 -07003644}
3645
3646static int cnic_get_v6_route(struct sockaddr_in6 *dst_addr,
3647 struct dst_entry **dst)
3648{
Randy Dunlapfaea56c2009-06-12 11:43:48 -07003649#if defined(CONFIG_IPV6) || (defined(CONFIG_IPV6_MODULE) && defined(MODULE))
David S. Miller4c9483b2011-03-12 16:22:43 -05003650 struct flowi6 fl6;
Michael Chana4636962009-06-08 18:14:43 -07003651
David S. Miller4c9483b2011-03-12 16:22:43 -05003652 memset(&fl6, 0, sizeof(fl6));
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00003653 fl6.daddr = dst_addr->sin6_addr;
David S. Miller4c9483b2011-03-12 16:22:43 -05003654 if (ipv6_addr_type(&fl6.daddr) & IPV6_ADDR_LINKLOCAL)
3655 fl6.flowi6_oif = dst_addr->sin6_scope_id;
Michael Chana4636962009-06-08 18:14:43 -07003656
David S. Miller4c9483b2011-03-12 16:22:43 -05003657 *dst = ip6_route_output(&init_net, NULL, &fl6);
RongQing.Li05417432012-02-21 22:10:50 +00003658 if ((*dst)->error) {
3659 dst_release(*dst);
3660 *dst = NULL;
3661 return -ENETUNREACH;
3662 } else
Michael Chana4636962009-06-08 18:14:43 -07003663 return 0;
3664#endif
3665
3666 return -ENETUNREACH;
3667}
3668
3669static struct cnic_dev *cnic_cm_select_dev(struct sockaddr_in *dst_addr,
3670 int ulp_type)
3671{
3672 struct cnic_dev *dev = NULL;
3673 struct dst_entry *dst;
3674 struct net_device *netdev = NULL;
3675 int err = -ENETUNREACH;
3676
3677 if (dst_addr->sin_family == AF_INET)
3678 err = cnic_get_v4_route(dst_addr, &dst);
3679 else if (dst_addr->sin_family == AF_INET6) {
3680 struct sockaddr_in6 *dst_addr6 =
3681 (struct sockaddr_in6 *) dst_addr;
3682
3683 err = cnic_get_v6_route(dst_addr6, &dst);
3684 } else
3685 return NULL;
3686
3687 if (err)
3688 return NULL;
3689
3690 if (!dst->dev)
3691 goto done;
3692
3693 cnic_get_vlan(dst->dev, &netdev);
3694
3695 dev = cnic_from_netdev(netdev);
3696
3697done:
3698 dst_release(dst);
3699 if (dev)
3700 cnic_put(dev);
3701 return dev;
3702}
3703
3704static int cnic_resolve_addr(struct cnic_sock *csk, struct cnic_sockaddr *saddr)
3705{
3706 struct cnic_dev *dev = csk->dev;
3707 struct cnic_local *cp = dev->cnic_priv;
3708
3709 return cnic_send_nlmsg(cp, ISCSI_KEVENT_PATH_REQ, csk);
3710}
3711
3712static int cnic_get_route(struct cnic_sock *csk, struct cnic_sockaddr *saddr)
3713{
3714 struct cnic_dev *dev = csk->dev;
3715 struct cnic_local *cp = dev->cnic_priv;
Michael Chanc76284a2010-02-24 14:42:07 +00003716 int is_v6, rc = 0;
3717 struct dst_entry *dst = NULL;
Michael Chana4636962009-06-08 18:14:43 -07003718 struct net_device *realdev;
Michael Chan9b093362010-12-23 07:42:56 +00003719 __be16 local_port;
3720 u32 port_id;
Michael Chana4636962009-06-08 18:14:43 -07003721
3722 if (saddr->local.v6.sin6_family == AF_INET6 &&
3723 saddr->remote.v6.sin6_family == AF_INET6)
3724 is_v6 = 1;
3725 else if (saddr->local.v4.sin_family == AF_INET &&
3726 saddr->remote.v4.sin_family == AF_INET)
3727 is_v6 = 0;
3728 else
3729 return -EINVAL;
3730
3731 clear_bit(SK_F_IPV6, &csk->flags);
3732
3733 if (is_v6) {
Michael Chana4636962009-06-08 18:14:43 -07003734 set_bit(SK_F_IPV6, &csk->flags);
Michael Chanc76284a2010-02-24 14:42:07 +00003735 cnic_get_v6_route(&saddr->remote.v6, &dst);
Michael Chana4636962009-06-08 18:14:43 -07003736
3737 memcpy(&csk->dst_ip[0], &saddr->remote.v6.sin6_addr,
3738 sizeof(struct in6_addr));
3739 csk->dst_port = saddr->remote.v6.sin6_port;
3740 local_port = saddr->local.v6.sin6_port;
Michael Chana4636962009-06-08 18:14:43 -07003741
3742 } else {
Michael Chanc76284a2010-02-24 14:42:07 +00003743 cnic_get_v4_route(&saddr->remote.v4, &dst);
Michael Chana4636962009-06-08 18:14:43 -07003744
3745 csk->dst_ip[0] = saddr->remote.v4.sin_addr.s_addr;
3746 csk->dst_port = saddr->remote.v4.sin_port;
3747 local_port = saddr->local.v4.sin_port;
3748 }
3749
Michael Chanc76284a2010-02-24 14:42:07 +00003750 csk->vlan_id = 0;
3751 csk->mtu = dev->netdev->mtu;
3752 if (dst && dst->dev) {
3753 u16 vlan = cnic_get_vlan(dst->dev, &realdev);
3754 if (realdev == dev->netdev) {
3755 csk->vlan_id = vlan;
3756 csk->mtu = dst_mtu(dst);
3757 }
3758 }
Michael Chana4636962009-06-08 18:14:43 -07003759
Michael Chan9b093362010-12-23 07:42:56 +00003760 port_id = be16_to_cpu(local_port);
3761 if (port_id >= CNIC_LOCAL_PORT_MIN &&
3762 port_id < CNIC_LOCAL_PORT_MAX) {
3763 if (cnic_alloc_id(&cp->csk_port_tbl, port_id))
3764 port_id = 0;
Michael Chana4636962009-06-08 18:14:43 -07003765 } else
Michael Chan9b093362010-12-23 07:42:56 +00003766 port_id = 0;
Michael Chana4636962009-06-08 18:14:43 -07003767
Michael Chan9b093362010-12-23 07:42:56 +00003768 if (!port_id) {
3769 port_id = cnic_alloc_new_id(&cp->csk_port_tbl);
3770 if (port_id == -1) {
Michael Chana4636962009-06-08 18:14:43 -07003771 rc = -ENOMEM;
3772 goto err_out;
3773 }
Michael Chan9b093362010-12-23 07:42:56 +00003774 local_port = cpu_to_be16(port_id);
Michael Chana4636962009-06-08 18:14:43 -07003775 }
3776 csk->src_port = local_port;
3777
Michael Chana4636962009-06-08 18:14:43 -07003778err_out:
3779 dst_release(dst);
3780 return rc;
3781}
3782
3783static void cnic_init_csk_state(struct cnic_sock *csk)
3784{
3785 csk->state = 0;
3786 clear_bit(SK_F_OFFLD_SCHED, &csk->flags);
3787 clear_bit(SK_F_CLOSING, &csk->flags);
3788}
3789
3790static int cnic_cm_connect(struct cnic_sock *csk, struct cnic_sockaddr *saddr)
3791{
Dmitry Kravkovfab0dc82011-03-31 17:04:22 -07003792 struct cnic_local *cp = csk->dev->cnic_priv;
Michael Chana4636962009-06-08 18:14:43 -07003793 int err = 0;
3794
Dmitry Kravkovfab0dc82011-03-31 17:04:22 -07003795 if (cp->ethdev->drv_state & CNIC_DRV_STATE_NO_ISCSI)
3796 return -EOPNOTSUPP;
3797
Michael Chana4636962009-06-08 18:14:43 -07003798 if (!cnic_in_use(csk))
3799 return -EINVAL;
3800
3801 if (test_and_set_bit(SK_F_CONNECT_START, &csk->flags))
3802 return -EINVAL;
3803
3804 cnic_init_csk_state(csk);
3805
3806 err = cnic_get_route(csk, saddr);
3807 if (err)
3808 goto err_out;
3809
3810 err = cnic_resolve_addr(csk, saddr);
3811 if (!err)
3812 return 0;
3813
3814err_out:
3815 clear_bit(SK_F_CONNECT_START, &csk->flags);
3816 return err;
3817}
3818
3819static int cnic_cm_abort(struct cnic_sock *csk)
3820{
3821 struct cnic_local *cp = csk->dev->cnic_priv;
Michael Chan7b34a462010-06-15 08:57:03 +00003822 u32 opcode = L4_KCQE_OPCODE_VALUE_RESET_COMP;
Michael Chana4636962009-06-08 18:14:43 -07003823
3824 if (!cnic_in_use(csk))
3825 return -EINVAL;
3826
3827 if (cnic_abort_prep(csk))
3828 return cnic_cm_abort_req(csk);
3829
3830 /* Getting here means that we haven't started connect, or
3831 * connect was not successful.
3832 */
3833
Michael Chana4636962009-06-08 18:14:43 -07003834 cp->close_conn(csk, opcode);
Michael Chan7b34a462010-06-15 08:57:03 +00003835 if (csk->state != opcode)
3836 return -EALREADY;
Michael Chana4636962009-06-08 18:14:43 -07003837
3838 return 0;
3839}
3840
3841static int cnic_cm_close(struct cnic_sock *csk)
3842{
3843 if (!cnic_in_use(csk))
3844 return -EINVAL;
3845
3846 if (cnic_close_prep(csk)) {
3847 csk->state = L4_KCQE_OPCODE_VALUE_CLOSE_COMP;
3848 return cnic_cm_close_req(csk);
Michael Chaned99daa52010-06-15 08:57:00 +00003849 } else {
3850 return -EALREADY;
Michael Chana4636962009-06-08 18:14:43 -07003851 }
3852 return 0;
3853}
3854
3855static void cnic_cm_upcall(struct cnic_local *cp, struct cnic_sock *csk,
3856 u8 opcode)
3857{
3858 struct cnic_ulp_ops *ulp_ops;
3859 int ulp_type = csk->ulp_type;
3860
3861 rcu_read_lock();
3862 ulp_ops = rcu_dereference(cp->ulp_ops[ulp_type]);
3863 if (ulp_ops) {
3864 if (opcode == L4_KCQE_OPCODE_VALUE_CONNECT_COMPLETE)
3865 ulp_ops->cm_connect_complete(csk);
3866 else if (opcode == L4_KCQE_OPCODE_VALUE_CLOSE_COMP)
3867 ulp_ops->cm_close_complete(csk);
3868 else if (opcode == L4_KCQE_OPCODE_VALUE_RESET_RECEIVED)
3869 ulp_ops->cm_remote_abort(csk);
3870 else if (opcode == L4_KCQE_OPCODE_VALUE_RESET_COMP)
3871 ulp_ops->cm_abort_complete(csk);
3872 else if (opcode == L4_KCQE_OPCODE_VALUE_CLOSE_RECEIVED)
3873 ulp_ops->cm_remote_close(csk);
3874 }
3875 rcu_read_unlock();
3876}
3877
3878static int cnic_cm_set_pg(struct cnic_sock *csk)
3879{
3880 if (cnic_offld_prep(csk)) {
3881 if (test_bit(SK_F_PG_OFFLD_COMPLETE, &csk->flags))
3882 cnic_cm_update_pg(csk);
3883 else
3884 cnic_cm_offload_pg(csk);
3885 }
3886 return 0;
3887}
3888
3889static void cnic_cm_process_offld_pg(struct cnic_dev *dev, struct l4_kcq *kcqe)
3890{
3891 struct cnic_local *cp = dev->cnic_priv;
3892 u32 l5_cid = kcqe->pg_host_opaque;
3893 u8 opcode = kcqe->op_code;
3894 struct cnic_sock *csk = &cp->csk_tbl[l5_cid];
3895
3896 csk_hold(csk);
3897 if (!cnic_in_use(csk))
3898 goto done;
3899
3900 if (opcode == L4_KCQE_OPCODE_VALUE_UPDATE_PG) {
3901 clear_bit(SK_F_OFFLD_SCHED, &csk->flags);
3902 goto done;
3903 }
Eddie Waia9736c02010-02-24 14:42:04 +00003904 /* Possible PG kcqe status: SUCCESS, OFFLOADED_PG, or CTX_ALLOC_FAIL */
3905 if (kcqe->status == L4_KCQE_COMPLETION_STATUS_CTX_ALLOC_FAIL) {
3906 clear_bit(SK_F_OFFLD_SCHED, &csk->flags);
3907 cnic_cm_upcall(cp, csk,
3908 L4_KCQE_OPCODE_VALUE_CONNECT_COMPLETE);
3909 goto done;
3910 }
3911
Michael Chana4636962009-06-08 18:14:43 -07003912 csk->pg_cid = kcqe->pg_cid;
3913 set_bit(SK_F_PG_OFFLD_COMPLETE, &csk->flags);
3914 cnic_cm_conn_req(csk);
3915
3916done:
3917 csk_put(csk);
3918}
3919
Michael Chane1928c82010-12-23 07:43:04 +00003920static void cnic_process_fcoe_term_conn(struct cnic_dev *dev, struct kcqe *kcqe)
3921{
3922 struct cnic_local *cp = dev->cnic_priv;
3923 struct fcoe_kcqe *fc_kcqe = (struct fcoe_kcqe *) kcqe;
3924 u32 l5_cid = fc_kcqe->fcoe_conn_id + BNX2X_FCOE_L5_CID_BASE;
3925 struct cnic_context *ctx = &cp->ctx_tbl[l5_cid];
3926
3927 ctx->timestamp = jiffies;
3928 ctx->wait_cond = 1;
3929 wake_up(&ctx->waitq);
3930}
3931
Michael Chana4636962009-06-08 18:14:43 -07003932static void cnic_cm_process_kcqe(struct cnic_dev *dev, struct kcqe *kcqe)
3933{
3934 struct cnic_local *cp = dev->cnic_priv;
3935 struct l4_kcq *l4kcqe = (struct l4_kcq *) kcqe;
3936 u8 opcode = l4kcqe->op_code;
3937 u32 l5_cid;
3938 struct cnic_sock *csk;
3939
Michael Chane1928c82010-12-23 07:43:04 +00003940 if (opcode == FCOE_RAMROD_CMD_ID_TERMINATE_CONN) {
3941 cnic_process_fcoe_term_conn(dev, kcqe);
3942 return;
3943 }
Michael Chana4636962009-06-08 18:14:43 -07003944 if (opcode == L4_KCQE_OPCODE_VALUE_OFFLOAD_PG ||
3945 opcode == L4_KCQE_OPCODE_VALUE_UPDATE_PG) {
3946 cnic_cm_process_offld_pg(dev, l4kcqe);
3947 return;
3948 }
3949
3950 l5_cid = l4kcqe->conn_id;
3951 if (opcode & 0x80)
3952 l5_cid = l4kcqe->cid;
3953 if (l5_cid >= MAX_CM_SK_TBL_SZ)
3954 return;
3955
3956 csk = &cp->csk_tbl[l5_cid];
3957 csk_hold(csk);
3958
3959 if (!cnic_in_use(csk)) {
3960 csk_put(csk);
3961 return;
3962 }
3963
3964 switch (opcode) {
Eddie Waia9736c02010-02-24 14:42:04 +00003965 case L5CM_RAMROD_CMD_ID_TCP_CONNECT:
3966 if (l4kcqe->status != 0) {
3967 clear_bit(SK_F_OFFLD_SCHED, &csk->flags);
3968 cnic_cm_upcall(cp, csk,
3969 L4_KCQE_OPCODE_VALUE_CONNECT_COMPLETE);
3970 }
3971 break;
Michael Chana4636962009-06-08 18:14:43 -07003972 case L4_KCQE_OPCODE_VALUE_CONNECT_COMPLETE:
3973 if (l4kcqe->status == 0)
3974 set_bit(SK_F_OFFLD_COMPLETE, &csk->flags);
Michael Chan8ec3e702012-03-21 15:38:34 +00003975 else if (l4kcqe->status ==
3976 L4_KCQE_COMPLETION_STATUS_PARITY_ERROR)
Jeffrey Huang0cb1f4b2012-02-08 17:33:56 +00003977 set_bit(SK_F_HW_ERR, &csk->flags);
Michael Chana4636962009-06-08 18:14:43 -07003978
3979 smp_mb__before_clear_bit();
3980 clear_bit(SK_F_OFFLD_SCHED, &csk->flags);
3981 cnic_cm_upcall(cp, csk, opcode);
3982 break;
3983
Eddie Wai7bc910f2012-06-27 15:08:22 +00003984 case L5CM_RAMROD_CMD_ID_CLOSE:
3985 if (l4kcqe->status != 0) {
3986 netdev_warn(dev->netdev, "RAMROD CLOSE compl with "
3987 "status 0x%x\n", l4kcqe->status);
3988 opcode = L4_KCQE_OPCODE_VALUE_CLOSE_COMP;
3989 /* Fall through */
3990 } else {
3991 break;
3992 }
Michael Chana4636962009-06-08 18:14:43 -07003993 case L4_KCQE_OPCODE_VALUE_RESET_RECEIVED:
Michael Chana4636962009-06-08 18:14:43 -07003994 case L4_KCQE_OPCODE_VALUE_CLOSE_COMP:
3995 case L4_KCQE_OPCODE_VALUE_RESET_COMP:
Michael Chan71034ba2009-10-10 13:46:59 +00003996 case L5CM_RAMROD_CMD_ID_SEARCHER_DELETE:
3997 case L5CM_RAMROD_CMD_ID_TERMINATE_OFFLOAD:
Michael Chan8ec3e702012-03-21 15:38:34 +00003998 if (l4kcqe->status == L4_KCQE_COMPLETION_STATUS_PARITY_ERROR)
Michael Chan23021c22012-01-04 12:12:28 +00003999 set_bit(SK_F_HW_ERR, &csk->flags);
4000
Michael Chana4636962009-06-08 18:14:43 -07004001 cp->close_conn(csk, opcode);
4002 break;
4003
4004 case L4_KCQE_OPCODE_VALUE_CLOSE_RECEIVED:
Michael Chan101c40c2011-06-08 19:29:33 +00004005 /* after we already sent CLOSE_REQ */
4006 if (test_bit(CNIC_F_BNX2X_CLASS, &dev->flags) &&
4007 !test_bit(SK_F_OFFLD_COMPLETE, &csk->flags) &&
4008 csk->state == L4_KCQE_OPCODE_VALUE_CLOSE_COMP)
4009 cp->close_conn(csk, L4_KCQE_OPCODE_VALUE_RESET_COMP);
4010 else
4011 cnic_cm_upcall(cp, csk, opcode);
Michael Chana4636962009-06-08 18:14:43 -07004012 break;
4013 }
4014 csk_put(csk);
4015}
4016
4017static void cnic_cm_indicate_kcqe(void *data, struct kcqe *kcqe[], u32 num)
4018{
4019 struct cnic_dev *dev = data;
4020 int i;
4021
4022 for (i = 0; i < num; i++)
4023 cnic_cm_process_kcqe(dev, kcqe[i]);
4024}
4025
4026static struct cnic_ulp_ops cm_ulp_ops = {
4027 .indicate_kcqes = cnic_cm_indicate_kcqe,
4028};
4029
4030static void cnic_cm_free_mem(struct cnic_dev *dev)
4031{
4032 struct cnic_local *cp = dev->cnic_priv;
4033
4034 kfree(cp->csk_tbl);
4035 cp->csk_tbl = NULL;
4036 cnic_free_id_tbl(&cp->csk_port_tbl);
4037}
4038
4039static int cnic_cm_alloc_mem(struct cnic_dev *dev)
4040{
4041 struct cnic_local *cp = dev->cnic_priv;
Eddie Wai11f23aa2011-06-08 19:29:34 +00004042 u32 port_id;
Michael Chana4636962009-06-08 18:14:43 -07004043
4044 cp->csk_tbl = kzalloc(sizeof(struct cnic_sock) * MAX_CM_SK_TBL_SZ,
4045 GFP_KERNEL);
4046 if (!cp->csk_tbl)
4047 return -ENOMEM;
4048
Michael Chan973e5742011-07-13 17:24:17 +00004049 port_id = random32();
Eddie Wai11f23aa2011-06-08 19:29:34 +00004050 port_id %= CNIC_LOCAL_PORT_RANGE;
Michael Chana4636962009-06-08 18:14:43 -07004051 if (cnic_init_id_tbl(&cp->csk_port_tbl, CNIC_LOCAL_PORT_RANGE,
Eddie Wai11f23aa2011-06-08 19:29:34 +00004052 CNIC_LOCAL_PORT_MIN, port_id)) {
Michael Chana4636962009-06-08 18:14:43 -07004053 cnic_cm_free_mem(dev);
4054 return -ENOMEM;
4055 }
4056 return 0;
4057}
4058
4059static int cnic_ready_to_close(struct cnic_sock *csk, u32 opcode)
4060{
Michael Chan943189f2010-06-15 08:57:02 +00004061 if (test_and_clear_bit(SK_F_OFFLD_COMPLETE, &csk->flags)) {
4062 /* Unsolicited RESET_COMP or RESET_RECEIVED */
4063 opcode = L4_KCQE_OPCODE_VALUE_RESET_RECEIVED;
4064 csk->state = opcode;
Michael Chana1e621b2010-06-15 08:57:01 +00004065 }
Michael Chan943189f2010-06-15 08:57:02 +00004066
4067 /* 1. If event opcode matches the expected event in csk->state
Michael Chan101c40c2011-06-08 19:29:33 +00004068 * 2. If the expected event is CLOSE_COMP or RESET_COMP, we accept any
4069 * event
Michael Chan7b34a462010-06-15 08:57:03 +00004070 * 3. If the expected event is 0, meaning the connection was never
4071 * never established, we accept the opcode from cm_abort.
Michael Chan943189f2010-06-15 08:57:02 +00004072 */
Michael Chan7b34a462010-06-15 08:57:03 +00004073 if (opcode == csk->state || csk->state == 0 ||
Michael Chan101c40c2011-06-08 19:29:33 +00004074 csk->state == L4_KCQE_OPCODE_VALUE_CLOSE_COMP ||
4075 csk->state == L4_KCQE_OPCODE_VALUE_RESET_COMP) {
Michael Chan7b34a462010-06-15 08:57:03 +00004076 if (!test_and_set_bit(SK_F_CLOSING, &csk->flags)) {
4077 if (csk->state == 0)
4078 csk->state = opcode;
Michael Chana4636962009-06-08 18:14:43 -07004079 return 1;
Michael Chan7b34a462010-06-15 08:57:03 +00004080 }
Michael Chana4636962009-06-08 18:14:43 -07004081 }
4082 return 0;
4083}
4084
4085static void cnic_close_bnx2_conn(struct cnic_sock *csk, u32 opcode)
4086{
4087 struct cnic_dev *dev = csk->dev;
4088 struct cnic_local *cp = dev->cnic_priv;
4089
Michael Chana1e621b2010-06-15 08:57:01 +00004090 if (opcode == L4_KCQE_OPCODE_VALUE_RESET_RECEIVED) {
4091 cnic_cm_upcall(cp, csk, opcode);
4092 return;
4093 }
4094
Michael Chana4636962009-06-08 18:14:43 -07004095 clear_bit(SK_F_CONNECT_START, &csk->flags);
Eddie Wai66883e92010-02-24 14:42:05 +00004096 cnic_close_conn(csk);
Michael Chan7b34a462010-06-15 08:57:03 +00004097 csk->state = opcode;
Eddie Wai66883e92010-02-24 14:42:05 +00004098 cnic_cm_upcall(cp, csk, opcode);
Michael Chana4636962009-06-08 18:14:43 -07004099}
4100
4101static void cnic_cm_stop_bnx2_hw(struct cnic_dev *dev)
4102{
4103}
4104
4105static int cnic_cm_init_bnx2_hw(struct cnic_dev *dev)
4106{
4107 u32 seed;
4108
Michael Chan973e5742011-07-13 17:24:17 +00004109 seed = random32();
Michael Chana4636962009-06-08 18:14:43 -07004110 cnic_ctx_wr(dev, 45, 0, seed);
4111 return 0;
4112}
4113
Michael Chan71034ba2009-10-10 13:46:59 +00004114static void cnic_close_bnx2x_conn(struct cnic_sock *csk, u32 opcode)
4115{
4116 struct cnic_dev *dev = csk->dev;
4117 struct cnic_local *cp = dev->cnic_priv;
4118 struct cnic_context *ctx = &cp->ctx_tbl[csk->l5_cid];
4119 union l5cm_specific_data l5_data;
4120 u32 cmd = 0;
4121 int close_complete = 0;
4122
4123 switch (opcode) {
4124 case L4_KCQE_OPCODE_VALUE_RESET_RECEIVED:
4125 case L4_KCQE_OPCODE_VALUE_CLOSE_COMP:
4126 case L4_KCQE_OPCODE_VALUE_RESET_COMP:
Michael Chan7b34a462010-06-15 08:57:03 +00004127 if (cnic_ready_to_close(csk, opcode)) {
Michael Chan23021c22012-01-04 12:12:28 +00004128 if (test_bit(SK_F_HW_ERR, &csk->flags))
4129 close_complete = 1;
4130 else if (test_bit(SK_F_PG_OFFLD_COMPLETE, &csk->flags))
Michael Chan7b34a462010-06-15 08:57:03 +00004131 cmd = L5CM_RAMROD_CMD_ID_SEARCHER_DELETE;
4132 else
4133 close_complete = 1;
4134 }
Michael Chan71034ba2009-10-10 13:46:59 +00004135 break;
4136 case L5CM_RAMROD_CMD_ID_SEARCHER_DELETE:
4137 cmd = L5CM_RAMROD_CMD_ID_TERMINATE_OFFLOAD;
4138 break;
4139 case L5CM_RAMROD_CMD_ID_TERMINATE_OFFLOAD:
4140 close_complete = 1;
4141 break;
4142 }
4143 if (cmd) {
4144 memset(&l5_data, 0, sizeof(l5_data));
4145
4146 cnic_submit_kwqe_16(dev, cmd, csk->cid, ISCSI_CONNECTION_TYPE,
4147 &l5_data);
4148 } else if (close_complete) {
4149 ctx->timestamp = jiffies;
4150 cnic_close_conn(csk);
4151 cnic_cm_upcall(cp, csk, csk->state);
4152 }
4153}
4154
4155static void cnic_cm_stop_bnx2x_hw(struct cnic_dev *dev)
4156{
Michael Chanfdf24082010-10-13 14:06:47 +00004157 struct cnic_local *cp = dev->cnic_priv;
Michael Chanfdf24082010-10-13 14:06:47 +00004158
4159 if (!cp->ctx_tbl)
4160 return;
4161
4162 if (!netif_running(dev->netdev))
4163 return;
4164
Michael Chan74e49bb2011-07-20 14:55:23 +00004165 cnic_bnx2x_delete_wait(dev, 0);
Michael Chanfdf24082010-10-13 14:06:47 +00004166
4167 cancel_delayed_work(&cp->delete_task);
4168 flush_workqueue(cnic_wq);
4169
4170 if (atomic_read(&cp->iscsi_conn) != 0)
4171 netdev_warn(dev->netdev, "%d iSCSI connections not destroyed\n",
4172 atomic_read(&cp->iscsi_conn));
Michael Chan71034ba2009-10-10 13:46:59 +00004173}
4174
4175static int cnic_cm_init_bnx2x_hw(struct cnic_dev *dev)
4176{
4177 struct cnic_local *cp = dev->cnic_priv;
Michael Chan14203982010-10-06 03:16:06 +00004178 u32 pfid = cp->pfid;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004179 u32 port = CNIC_PORT(cp);
Michael Chan71034ba2009-10-10 13:46:59 +00004180
4181 cnic_init_bnx2x_mac(dev);
4182 cnic_bnx2x_set_tcp_timestamp(dev, 1);
4183
4184 CNIC_WR16(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00004185 XSTORM_ISCSI_LOCAL_VLAN_OFFSET(pfid), 0);
Michael Chan71034ba2009-10-10 13:46:59 +00004186
4187 CNIC_WR(dev, BAR_XSTRORM_INTMEM +
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004188 XSTORM_TCP_GLOBAL_DEL_ACK_COUNTER_ENABLED_OFFSET(port), 1);
Michael Chan71034ba2009-10-10 13:46:59 +00004189 CNIC_WR(dev, BAR_XSTRORM_INTMEM +
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004190 XSTORM_TCP_GLOBAL_DEL_ACK_COUNTER_MAX_COUNT_OFFSET(port),
Michael Chan71034ba2009-10-10 13:46:59 +00004191 DEF_MAX_DA_COUNT);
4192
4193 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00004194 XSTORM_ISCSI_TCP_VARS_TTL_OFFSET(pfid), DEF_TTL);
Michael Chan71034ba2009-10-10 13:46:59 +00004195 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00004196 XSTORM_ISCSI_TCP_VARS_TOS_OFFSET(pfid), DEF_TOS);
Michael Chan71034ba2009-10-10 13:46:59 +00004197 CNIC_WR8(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00004198 XSTORM_ISCSI_TCP_VARS_ADV_WND_SCL_OFFSET(pfid), 2);
Michael Chan71034ba2009-10-10 13:46:59 +00004199 CNIC_WR(dev, BAR_XSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00004200 XSTORM_TCP_TX_SWS_TIMER_VAL_OFFSET(pfid), DEF_SWS_TIMER);
Michael Chan71034ba2009-10-10 13:46:59 +00004201
Michael Chan14203982010-10-06 03:16:06 +00004202 CNIC_WR(dev, BAR_TSTRORM_INTMEM + TSTORM_TCP_MAX_CWND_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00004203 DEF_MAX_CWND);
4204 return 0;
4205}
4206
Michael Chanfdf24082010-10-13 14:06:47 +00004207static void cnic_delete_task(struct work_struct *work)
4208{
4209 struct cnic_local *cp;
4210 struct cnic_dev *dev;
4211 u32 i;
4212 int need_resched = 0;
4213
4214 cp = container_of(work, struct cnic_local, delete_task.work);
4215 dev = cp->dev;
4216
Dmitry Kravkovfab0dc82011-03-31 17:04:22 -07004217 if (test_and_clear_bit(CNIC_LCL_FL_STOP_ISCSI, &cp->cnic_local_flags)) {
4218 struct drv_ctl_info info;
4219
Dmitry Kravkovfab0dc82011-03-31 17:04:22 -07004220 cnic_ulp_stop_one(cp, CNIC_ULP_ISCSI);
Dmitry Kravkovfab0dc82011-03-31 17:04:22 -07004221
4222 info.cmd = DRV_CTL_ISCSI_STOPPED_CMD;
4223 cp->ethdev->drv_ctl(dev->netdev, &info);
4224 }
4225
Michael Chanfdf24082010-10-13 14:06:47 +00004226 for (i = 0; i < cp->max_cid_space; i++) {
4227 struct cnic_context *ctx = &cp->ctx_tbl[i];
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03004228 int err;
Michael Chanfdf24082010-10-13 14:06:47 +00004229
4230 if (!test_bit(CTX_FL_OFFLD_START, &ctx->ctx_flags) ||
4231 !test_bit(CTX_FL_DELETE_WAIT, &ctx->ctx_flags))
4232 continue;
4233
4234 if (!time_after(jiffies, ctx->timestamp + (2 * HZ))) {
4235 need_resched = 1;
4236 continue;
4237 }
4238
4239 if (!test_and_clear_bit(CTX_FL_DELETE_WAIT, &ctx->ctx_flags))
4240 continue;
4241
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03004242 err = cnic_bnx2x_destroy_ramrod(dev, i);
Michael Chanfdf24082010-10-13 14:06:47 +00004243
4244 cnic_free_bnx2x_conn_resc(dev, i);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03004245 if (!err) {
4246 if (ctx->ulp_proto_id == CNIC_ULP_ISCSI)
4247 atomic_dec(&cp->iscsi_conn);
Michael Chanfdf24082010-10-13 14:06:47 +00004248
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03004249 clear_bit(CTX_FL_OFFLD_START, &ctx->ctx_flags);
4250 }
Michael Chanfdf24082010-10-13 14:06:47 +00004251 }
4252
4253 if (need_resched)
4254 queue_delayed_work(cnic_wq, &cp->delete_task,
4255 msecs_to_jiffies(10));
4256
4257}
4258
Michael Chana4636962009-06-08 18:14:43 -07004259static int cnic_cm_open(struct cnic_dev *dev)
4260{
4261 struct cnic_local *cp = dev->cnic_priv;
4262 int err;
4263
4264 err = cnic_cm_alloc_mem(dev);
4265 if (err)
4266 return err;
4267
4268 err = cp->start_cm(dev);
4269
4270 if (err)
4271 goto err_out;
4272
Michael Chanfdf24082010-10-13 14:06:47 +00004273 INIT_DELAYED_WORK(&cp->delete_task, cnic_delete_task);
4274
Michael Chana4636962009-06-08 18:14:43 -07004275 dev->cm_create = cnic_cm_create;
4276 dev->cm_destroy = cnic_cm_destroy;
4277 dev->cm_connect = cnic_cm_connect;
4278 dev->cm_abort = cnic_cm_abort;
4279 dev->cm_close = cnic_cm_close;
4280 dev->cm_select_dev = cnic_cm_select_dev;
4281
4282 cp->ulp_handle[CNIC_ULP_L4] = dev;
4283 rcu_assign_pointer(cp->ulp_ops[CNIC_ULP_L4], &cm_ulp_ops);
4284 return 0;
4285
4286err_out:
4287 cnic_cm_free_mem(dev);
4288 return err;
4289}
4290
4291static int cnic_cm_shutdown(struct cnic_dev *dev)
4292{
4293 struct cnic_local *cp = dev->cnic_priv;
4294 int i;
4295
Michael Chana4636962009-06-08 18:14:43 -07004296 if (!cp->csk_tbl)
4297 return 0;
4298
4299 for (i = 0; i < MAX_CM_SK_TBL_SZ; i++) {
4300 struct cnic_sock *csk = &cp->csk_tbl[i];
4301
4302 clear_bit(SK_F_INUSE, &csk->flags);
4303 cnic_cm_cleanup(csk);
4304 }
4305 cnic_cm_free_mem(dev);
4306
4307 return 0;
4308}
4309
4310static void cnic_init_context(struct cnic_dev *dev, u32 cid)
4311{
Michael Chana4636962009-06-08 18:14:43 -07004312 u32 cid_addr;
4313 int i;
4314
Michael Chana4636962009-06-08 18:14:43 -07004315 cid_addr = GET_CID_ADDR(cid);
4316
4317 for (i = 0; i < CTX_SIZE; i += 4)
4318 cnic_ctx_wr(dev, cid_addr, i, 0);
4319}
4320
4321static int cnic_setup_5709_context(struct cnic_dev *dev, int valid)
4322{
4323 struct cnic_local *cp = dev->cnic_priv;
4324 int ret = 0, i;
4325 u32 valid_bit = valid ? BNX2_CTX_HOST_PAGE_TBL_DATA0_VALID : 0;
4326
4327 if (CHIP_NUM(cp) != CHIP_NUM_5709)
4328 return 0;
4329
4330 for (i = 0; i < cp->ctx_blks; i++) {
4331 int j;
4332 u32 idx = cp->ctx_arr[i].cid / cp->cids_per_blk;
4333 u32 val;
4334
4335 memset(cp->ctx_arr[i].ctx, 0, BCM_PAGE_SIZE);
4336
4337 CNIC_WR(dev, BNX2_CTX_HOST_PAGE_TBL_DATA0,
4338 (cp->ctx_arr[i].mapping & 0xffffffff) | valid_bit);
4339 CNIC_WR(dev, BNX2_CTX_HOST_PAGE_TBL_DATA1,
4340 (u64) cp->ctx_arr[i].mapping >> 32);
4341 CNIC_WR(dev, BNX2_CTX_HOST_PAGE_TBL_CTRL, idx |
4342 BNX2_CTX_HOST_PAGE_TBL_CTRL_WRITE_REQ);
4343 for (j = 0; j < 10; j++) {
4344
4345 val = CNIC_RD(dev, BNX2_CTX_HOST_PAGE_TBL_CTRL);
4346 if (!(val & BNX2_CTX_HOST_PAGE_TBL_CTRL_WRITE_REQ))
4347 break;
4348 udelay(5);
4349 }
4350 if (val & BNX2_CTX_HOST_PAGE_TBL_CTRL_WRITE_REQ) {
4351 ret = -EBUSY;
4352 break;
4353 }
4354 }
4355 return ret;
4356}
4357
4358static void cnic_free_irq(struct cnic_dev *dev)
4359{
4360 struct cnic_local *cp = dev->cnic_priv;
4361 struct cnic_eth_dev *ethdev = cp->ethdev;
4362
4363 if (ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX) {
4364 cp->disable_int_sync(dev);
Michael Chan6e0dc642010-10-13 14:06:44 +00004365 tasklet_kill(&cp->cnic_irq_task);
Michael Chana4636962009-06-08 18:14:43 -07004366 free_irq(ethdev->irq_arr[0].vector, dev);
4367 }
4368}
4369
Michael Chan6e0dc642010-10-13 14:06:44 +00004370static int cnic_request_irq(struct cnic_dev *dev)
4371{
4372 struct cnic_local *cp = dev->cnic_priv;
4373 struct cnic_eth_dev *ethdev = cp->ethdev;
4374 int err;
4375
4376 err = request_irq(ethdev->irq_arr[0].vector, cnic_irq, 0, "cnic", dev);
4377 if (err)
4378 tasklet_disable(&cp->cnic_irq_task);
4379
4380 return err;
4381}
4382
Michael Chana4636962009-06-08 18:14:43 -07004383static int cnic_init_bnx2_irq(struct cnic_dev *dev)
4384{
4385 struct cnic_local *cp = dev->cnic_priv;
4386 struct cnic_eth_dev *ethdev = cp->ethdev;
4387
4388 if (ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX) {
4389 int err, i = 0;
4390 int sblk_num = cp->status_blk_num;
4391 u32 base = ((sblk_num - 1) * BNX2_HC_SB_CONFIG_SIZE) +
4392 BNX2_HC_SB_CONFIG_1;
4393
4394 CNIC_WR(dev, base, BNX2_HC_SB_CONFIG_1_ONE_SHOT);
4395
4396 CNIC_WR(dev, base + BNX2_HC_COMP_PROD_TRIP_OFF, (2 << 16) | 8);
4397 CNIC_WR(dev, base + BNX2_HC_COM_TICKS_OFF, (64 << 16) | 220);
4398 CNIC_WR(dev, base + BNX2_HC_CMD_TICKS_OFF, (64 << 16) | 220);
4399
Michael Chana4dde3a2010-02-24 14:42:08 +00004400 cp->last_status_idx = cp->status_blk.bnx2->status_idx;
Joe Perches164165d2009-11-19 09:30:10 +00004401 tasklet_init(&cp->cnic_irq_task, cnic_service_bnx2_msix,
Michael Chana4636962009-06-08 18:14:43 -07004402 (unsigned long) dev);
Michael Chan6e0dc642010-10-13 14:06:44 +00004403 err = cnic_request_irq(dev);
4404 if (err)
Michael Chana4636962009-06-08 18:14:43 -07004405 return err;
Michael Chan6e0dc642010-10-13 14:06:44 +00004406
Michael Chana4dde3a2010-02-24 14:42:08 +00004407 while (cp->status_blk.bnx2->status_completion_producer_index &&
Michael Chana4636962009-06-08 18:14:43 -07004408 i < 10) {
4409 CNIC_WR(dev, BNX2_HC_COALESCE_NOW,
4410 1 << (11 + sblk_num));
4411 udelay(10);
4412 i++;
4413 barrier();
4414 }
Michael Chana4dde3a2010-02-24 14:42:08 +00004415 if (cp->status_blk.bnx2->status_completion_producer_index) {
Michael Chana4636962009-06-08 18:14:43 -07004416 cnic_free_irq(dev);
4417 goto failed;
4418 }
4419
4420 } else {
Michael Chana4dde3a2010-02-24 14:42:08 +00004421 struct status_block *sblk = cp->status_blk.gen;
Michael Chana4636962009-06-08 18:14:43 -07004422 u32 hc_cmd = CNIC_RD(dev, BNX2_HC_COMMAND);
4423 int i = 0;
4424
4425 while (sblk->status_completion_producer_index && i < 10) {
4426 CNIC_WR(dev, BNX2_HC_COMMAND,
4427 hc_cmd | BNX2_HC_COMMAND_COAL_NOW_WO_INT);
4428 udelay(10);
4429 i++;
4430 barrier();
4431 }
4432 if (sblk->status_completion_producer_index)
4433 goto failed;
4434
4435 }
4436 return 0;
4437
4438failed:
Joe Perchesddf79b22010-02-17 15:01:54 +00004439 netdev_err(dev->netdev, "KCQ index not resetting to 0\n");
Michael Chana4636962009-06-08 18:14:43 -07004440 return -EBUSY;
4441}
4442
4443static void cnic_enable_bnx2_int(struct cnic_dev *dev)
4444{
4445 struct cnic_local *cp = dev->cnic_priv;
4446 struct cnic_eth_dev *ethdev = cp->ethdev;
4447
4448 if (!(ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX))
4449 return;
4450
4451 CNIC_WR(dev, BNX2_PCICFG_INT_ACK_CMD, cp->int_num |
4452 BNX2_PCICFG_INT_ACK_CMD_INDEX_VALID | cp->last_status_idx);
4453}
4454
4455static void cnic_disable_bnx2_int_sync(struct cnic_dev *dev)
4456{
4457 struct cnic_local *cp = dev->cnic_priv;
4458 struct cnic_eth_dev *ethdev = cp->ethdev;
4459
4460 if (!(ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX))
4461 return;
4462
4463 CNIC_WR(dev, BNX2_PCICFG_INT_ACK_CMD, cp->int_num |
4464 BNX2_PCICFG_INT_ACK_CMD_MASK_INT);
4465 CNIC_RD(dev, BNX2_PCICFG_INT_ACK_CMD);
4466 synchronize_irq(ethdev->irq_arr[0].vector);
4467}
4468
4469static void cnic_init_bnx2_tx_ring(struct cnic_dev *dev)
4470{
4471 struct cnic_local *cp = dev->cnic_priv;
4472 struct cnic_eth_dev *ethdev = cp->ethdev;
Michael Chancd801532010-10-13 14:06:49 +00004473 struct cnic_uio_dev *udev = cp->udev;
Michael Chana4636962009-06-08 18:14:43 -07004474 u32 cid_addr, tx_cid, sb_id;
4475 u32 val, offset0, offset1, offset2, offset3;
4476 int i;
4477 struct tx_bd *txbd;
Michael Chancd801532010-10-13 14:06:49 +00004478 dma_addr_t buf_map, ring_map = udev->l2_ring_map;
Michael Chana4dde3a2010-02-24 14:42:08 +00004479 struct status_block *s_blk = cp->status_blk.gen;
Michael Chana4636962009-06-08 18:14:43 -07004480
4481 sb_id = cp->status_blk_num;
4482 tx_cid = 20;
Michael Chana4636962009-06-08 18:14:43 -07004483 cp->tx_cons_ptr = &s_blk->status_tx_quick_consumer_index2;
4484 if (ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX) {
Michael Chana4dde3a2010-02-24 14:42:08 +00004485 struct status_block_msix *sblk = cp->status_blk.bnx2;
Michael Chana4636962009-06-08 18:14:43 -07004486
4487 tx_cid = TX_TSS_CID + sb_id - 1;
Michael Chana4636962009-06-08 18:14:43 -07004488 CNIC_WR(dev, BNX2_TSCH_TSS_CFG, (sb_id << 24) |
4489 (TX_TSS_CID << 7));
4490 cp->tx_cons_ptr = &sblk->status_tx_quick_consumer_index;
4491 }
4492 cp->tx_cons = *cp->tx_cons_ptr;
4493
4494 cid_addr = GET_CID_ADDR(tx_cid);
4495 if (CHIP_NUM(cp) == CHIP_NUM_5709) {
4496 u32 cid_addr2 = GET_CID_ADDR(tx_cid + 4) + 0x40;
4497
4498 for (i = 0; i < PHY_CTX_SIZE; i += 4)
4499 cnic_ctx_wr(dev, cid_addr2, i, 0);
4500
4501 offset0 = BNX2_L2CTX_TYPE_XI;
4502 offset1 = BNX2_L2CTX_CMD_TYPE_XI;
4503 offset2 = BNX2_L2CTX_TBDR_BHADDR_HI_XI;
4504 offset3 = BNX2_L2CTX_TBDR_BHADDR_LO_XI;
4505 } else {
Michael Chanb58ffb42010-05-27 16:31:41 -07004506 cnic_init_context(dev, tx_cid);
4507 cnic_init_context(dev, tx_cid + 1);
4508
Michael Chana4636962009-06-08 18:14:43 -07004509 offset0 = BNX2_L2CTX_TYPE;
4510 offset1 = BNX2_L2CTX_CMD_TYPE;
4511 offset2 = BNX2_L2CTX_TBDR_BHADDR_HI;
4512 offset3 = BNX2_L2CTX_TBDR_BHADDR_LO;
4513 }
4514 val = BNX2_L2CTX_TYPE_TYPE_L2 | BNX2_L2CTX_TYPE_SIZE_L2;
4515 cnic_ctx_wr(dev, cid_addr, offset0, val);
4516
4517 val = BNX2_L2CTX_CMD_TYPE_TYPE_L2 | (8 << 16);
4518 cnic_ctx_wr(dev, cid_addr, offset1, val);
4519
Joe Perches43d620c2011-06-16 19:08:06 +00004520 txbd = udev->l2_ring;
Michael Chana4636962009-06-08 18:14:43 -07004521
Michael Chancd801532010-10-13 14:06:49 +00004522 buf_map = udev->l2_buf_map;
Michael Chana4636962009-06-08 18:14:43 -07004523 for (i = 0; i < MAX_TX_DESC_CNT; i++, txbd++) {
4524 txbd->tx_bd_haddr_hi = (u64) buf_map >> 32;
4525 txbd->tx_bd_haddr_lo = (u64) buf_map & 0xffffffff;
4526 }
Michael Chancd801532010-10-13 14:06:49 +00004527 val = (u64) ring_map >> 32;
Michael Chana4636962009-06-08 18:14:43 -07004528 cnic_ctx_wr(dev, cid_addr, offset2, val);
4529 txbd->tx_bd_haddr_hi = val;
4530
Michael Chancd801532010-10-13 14:06:49 +00004531 val = (u64) ring_map & 0xffffffff;
Michael Chana4636962009-06-08 18:14:43 -07004532 cnic_ctx_wr(dev, cid_addr, offset3, val);
4533 txbd->tx_bd_haddr_lo = val;
4534}
4535
4536static void cnic_init_bnx2_rx_ring(struct cnic_dev *dev)
4537{
4538 struct cnic_local *cp = dev->cnic_priv;
4539 struct cnic_eth_dev *ethdev = cp->ethdev;
Michael Chancd801532010-10-13 14:06:49 +00004540 struct cnic_uio_dev *udev = cp->udev;
Michael Chana4636962009-06-08 18:14:43 -07004541 u32 cid_addr, sb_id, val, coal_reg, coal_val;
4542 int i;
4543 struct rx_bd *rxbd;
Michael Chana4dde3a2010-02-24 14:42:08 +00004544 struct status_block *s_blk = cp->status_blk.gen;
Michael Chancd801532010-10-13 14:06:49 +00004545 dma_addr_t ring_map = udev->l2_ring_map;
Michael Chana4636962009-06-08 18:14:43 -07004546
4547 sb_id = cp->status_blk_num;
4548 cnic_init_context(dev, 2);
4549 cp->rx_cons_ptr = &s_blk->status_rx_quick_consumer_index2;
4550 coal_reg = BNX2_HC_COMMAND;
4551 coal_val = CNIC_RD(dev, coal_reg);
4552 if (ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX) {
Michael Chana4dde3a2010-02-24 14:42:08 +00004553 struct status_block_msix *sblk = cp->status_blk.bnx2;
Michael Chana4636962009-06-08 18:14:43 -07004554
4555 cp->rx_cons_ptr = &sblk->status_rx_quick_consumer_index;
4556 coal_reg = BNX2_HC_COALESCE_NOW;
4557 coal_val = 1 << (11 + sb_id);
4558 }
4559 i = 0;
4560 while (!(*cp->rx_cons_ptr != 0) && i < 10) {
4561 CNIC_WR(dev, coal_reg, coal_val);
4562 udelay(10);
4563 i++;
4564 barrier();
4565 }
4566 cp->rx_cons = *cp->rx_cons_ptr;
4567
4568 cid_addr = GET_CID_ADDR(2);
4569 val = BNX2_L2CTX_CTX_TYPE_CTX_BD_CHN_TYPE_VALUE |
4570 BNX2_L2CTX_CTX_TYPE_SIZE_L2 | (0x02 << 8);
4571 cnic_ctx_wr(dev, cid_addr, BNX2_L2CTX_CTX_TYPE, val);
4572
4573 if (sb_id == 0)
Michael Chand0549382009-10-28 03:41:59 -07004574 val = 2 << BNX2_L2CTX_L2_STATUSB_NUM_SHIFT;
Michael Chana4636962009-06-08 18:14:43 -07004575 else
Michael Chand0549382009-10-28 03:41:59 -07004576 val = BNX2_L2CTX_L2_STATUSB_NUM(sb_id);
Michael Chana4636962009-06-08 18:14:43 -07004577 cnic_ctx_wr(dev, cid_addr, BNX2_L2CTX_HOST_BDIDX, val);
4578
Joe Perches43d620c2011-06-16 19:08:06 +00004579 rxbd = udev->l2_ring + BCM_PAGE_SIZE;
Michael Chana4636962009-06-08 18:14:43 -07004580 for (i = 0; i < MAX_RX_DESC_CNT; i++, rxbd++) {
4581 dma_addr_t buf_map;
4582 int n = (i % cp->l2_rx_ring_size) + 1;
4583
Michael Chancd801532010-10-13 14:06:49 +00004584 buf_map = udev->l2_buf_map + (n * cp->l2_single_buf_size);
Michael Chana4636962009-06-08 18:14:43 -07004585 rxbd->rx_bd_len = cp->l2_single_buf_size;
4586 rxbd->rx_bd_flags = RX_BD_FLAGS_START | RX_BD_FLAGS_END;
4587 rxbd->rx_bd_haddr_hi = (u64) buf_map >> 32;
4588 rxbd->rx_bd_haddr_lo = (u64) buf_map & 0xffffffff;
4589 }
Michael Chancd801532010-10-13 14:06:49 +00004590 val = (u64) (ring_map + BCM_PAGE_SIZE) >> 32;
Michael Chana4636962009-06-08 18:14:43 -07004591 cnic_ctx_wr(dev, cid_addr, BNX2_L2CTX_NX_BDHADDR_HI, val);
4592 rxbd->rx_bd_haddr_hi = val;
4593
Michael Chancd801532010-10-13 14:06:49 +00004594 val = (u64) (ring_map + BCM_PAGE_SIZE) & 0xffffffff;
Michael Chana4636962009-06-08 18:14:43 -07004595 cnic_ctx_wr(dev, cid_addr, BNX2_L2CTX_NX_BDHADDR_LO, val);
4596 rxbd->rx_bd_haddr_lo = val;
4597
4598 val = cnic_reg_rd_ind(dev, BNX2_RXP_SCRATCH_RXP_FLOOD);
4599 cnic_reg_wr_ind(dev, BNX2_RXP_SCRATCH_RXP_FLOOD, val | (1 << 2));
4600}
4601
4602static void cnic_shutdown_bnx2_rx_ring(struct cnic_dev *dev)
4603{
4604 struct kwqe *wqes[1], l2kwqe;
4605
4606 memset(&l2kwqe, 0, sizeof(l2kwqe));
4607 wqes[0] = &l2kwqe;
Michael Chane1928c82010-12-23 07:43:04 +00004608 l2kwqe.kwqe_op_flag = (L2_LAYER_CODE << KWQE_LAYER_SHIFT) |
Michael Chana4636962009-06-08 18:14:43 -07004609 (L2_KWQE_OPCODE_VALUE_FLUSH <<
4610 KWQE_OPCODE_SHIFT) | 2;
4611 dev->submit_kwqes(dev, wqes, 1);
4612}
4613
4614static void cnic_set_bnx2_mac(struct cnic_dev *dev)
4615{
4616 struct cnic_local *cp = dev->cnic_priv;
4617 u32 val;
4618
4619 val = cp->func << 2;
4620
4621 cp->shmem_base = cnic_reg_rd_ind(dev, BNX2_SHM_HDR_ADDR_0 + val);
4622
4623 val = cnic_reg_rd_ind(dev, cp->shmem_base +
4624 BNX2_PORT_HW_CFG_ISCSI_MAC_UPPER);
4625 dev->mac_addr[0] = (u8) (val >> 8);
4626 dev->mac_addr[1] = (u8) val;
4627
4628 CNIC_WR(dev, BNX2_EMAC_MAC_MATCH4, val);
4629
4630 val = cnic_reg_rd_ind(dev, cp->shmem_base +
4631 BNX2_PORT_HW_CFG_ISCSI_MAC_LOWER);
4632 dev->mac_addr[2] = (u8) (val >> 24);
4633 dev->mac_addr[3] = (u8) (val >> 16);
4634 dev->mac_addr[4] = (u8) (val >> 8);
4635 dev->mac_addr[5] = (u8) val;
4636
4637 CNIC_WR(dev, BNX2_EMAC_MAC_MATCH5, val);
4638
4639 val = 4 | BNX2_RPM_SORT_USER2_BC_EN;
4640 if (CHIP_NUM(cp) != CHIP_NUM_5709)
4641 val |= BNX2_RPM_SORT_USER2_PROM_VLAN;
4642
4643 CNIC_WR(dev, BNX2_RPM_SORT_USER2, 0x0);
4644 CNIC_WR(dev, BNX2_RPM_SORT_USER2, val);
4645 CNIC_WR(dev, BNX2_RPM_SORT_USER2, val | BNX2_RPM_SORT_USER2_ENA);
4646}
4647
4648static int cnic_start_bnx2_hw(struct cnic_dev *dev)
4649{
4650 struct cnic_local *cp = dev->cnic_priv;
4651 struct cnic_eth_dev *ethdev = cp->ethdev;
Michael Chana4dde3a2010-02-24 14:42:08 +00004652 struct status_block *sblk = cp->status_blk.gen;
Michael Chane6c28892010-06-24 14:58:39 +00004653 u32 val, kcq_cid_addr, kwq_cid_addr;
Michael Chana4636962009-06-08 18:14:43 -07004654 int err;
4655
4656 cnic_set_bnx2_mac(dev);
4657
4658 val = CNIC_RD(dev, BNX2_MQ_CONFIG);
4659 val &= ~BNX2_MQ_CONFIG_KNL_BYP_BLK_SIZE;
4660 if (BCM_PAGE_BITS > 12)
4661 val |= (12 - 8) << 4;
4662 else
4663 val |= (BCM_PAGE_BITS - 8) << 4;
4664
4665 CNIC_WR(dev, BNX2_MQ_CONFIG, val);
4666
4667 CNIC_WR(dev, BNX2_HC_COMP_PROD_TRIP, (2 << 16) | 8);
4668 CNIC_WR(dev, BNX2_HC_COM_TICKS, (64 << 16) | 220);
4669 CNIC_WR(dev, BNX2_HC_CMD_TICKS, (64 << 16) | 220);
4670
4671 err = cnic_setup_5709_context(dev, 1);
4672 if (err)
4673 return err;
4674
4675 cnic_init_context(dev, KWQ_CID);
4676 cnic_init_context(dev, KCQ_CID);
4677
Michael Chane6c28892010-06-24 14:58:39 +00004678 kwq_cid_addr = GET_CID_ADDR(KWQ_CID);
Michael Chana4636962009-06-08 18:14:43 -07004679 cp->kwq_io_addr = MB_GET_CID_ADDR(KWQ_CID) + L5_KRNLQ_HOST_QIDX;
4680
4681 cp->max_kwq_idx = MAX_KWQ_IDX;
4682 cp->kwq_prod_idx = 0;
4683 cp->kwq_con_idx = 0;
Michael Chan1f1332a2010-05-18 11:32:52 +00004684 set_bit(CNIC_LCL_FL_KWQ_INIT, &cp->cnic_local_flags);
Michael Chana4636962009-06-08 18:14:43 -07004685
4686 if (CHIP_NUM(cp) == CHIP_NUM_5706 || CHIP_NUM(cp) == CHIP_NUM_5708)
4687 cp->kwq_con_idx_ptr = &sblk->status_rx_quick_consumer_index15;
4688 else
4689 cp->kwq_con_idx_ptr = &sblk->status_cmd_consumer_index;
4690
4691 /* Initialize the kernel work queue context. */
4692 val = KRNLQ_TYPE_TYPE_KRNLQ | KRNLQ_SIZE_TYPE_SIZE |
4693 (BCM_PAGE_BITS - 8) | KRNLQ_FLAGS_QE_SELF_SEQ;
Michael Chane6c28892010-06-24 14:58:39 +00004694 cnic_ctx_wr(dev, kwq_cid_addr, L5_KRNLQ_TYPE, val);
Michael Chana4636962009-06-08 18:14:43 -07004695
4696 val = (BCM_PAGE_SIZE / sizeof(struct kwqe) - 1) << 16;
Michael Chane6c28892010-06-24 14:58:39 +00004697 cnic_ctx_wr(dev, kwq_cid_addr, L5_KRNLQ_QE_SELF_SEQ_MAX, val);
Michael Chana4636962009-06-08 18:14:43 -07004698
4699 val = ((BCM_PAGE_SIZE / sizeof(struct kwqe)) << 16) | KWQ_PAGE_CNT;
Michael Chane6c28892010-06-24 14:58:39 +00004700 cnic_ctx_wr(dev, kwq_cid_addr, L5_KRNLQ_PGTBL_NPAGES, val);
Michael Chana4636962009-06-08 18:14:43 -07004701
4702 val = (u32) ((u64) cp->kwq_info.pgtbl_map >> 32);
Michael Chane6c28892010-06-24 14:58:39 +00004703 cnic_ctx_wr(dev, kwq_cid_addr, L5_KRNLQ_PGTBL_HADDR_HI, val);
Michael Chana4636962009-06-08 18:14:43 -07004704
4705 val = (u32) cp->kwq_info.pgtbl_map;
Michael Chane6c28892010-06-24 14:58:39 +00004706 cnic_ctx_wr(dev, kwq_cid_addr, L5_KRNLQ_PGTBL_HADDR_LO, val);
Michael Chana4636962009-06-08 18:14:43 -07004707
Michael Chane6c28892010-06-24 14:58:39 +00004708 kcq_cid_addr = GET_CID_ADDR(KCQ_CID);
4709 cp->kcq1.io_addr = MB_GET_CID_ADDR(KCQ_CID) + L5_KRNLQ_HOST_QIDX;
Michael Chana4636962009-06-08 18:14:43 -07004710
Michael Chane6c28892010-06-24 14:58:39 +00004711 cp->kcq1.sw_prod_idx = 0;
4712 cp->kcq1.hw_prod_idx_ptr =
Joe Perches64699332012-06-04 12:44:16 +00004713 &sblk->status_completion_producer_index;
Michael Chane6c28892010-06-24 14:58:39 +00004714
Joe Perches64699332012-06-04 12:44:16 +00004715 cp->kcq1.status_idx_ptr = &sblk->status_idx;
Michael Chana4636962009-06-08 18:14:43 -07004716
4717 /* Initialize the kernel complete queue context. */
4718 val = KRNLQ_TYPE_TYPE_KRNLQ | KRNLQ_SIZE_TYPE_SIZE |
4719 (BCM_PAGE_BITS - 8) | KRNLQ_FLAGS_QE_SELF_SEQ;
Michael Chane6c28892010-06-24 14:58:39 +00004720 cnic_ctx_wr(dev, kcq_cid_addr, L5_KRNLQ_TYPE, val);
Michael Chana4636962009-06-08 18:14:43 -07004721
4722 val = (BCM_PAGE_SIZE / sizeof(struct kcqe) - 1) << 16;
Michael Chane6c28892010-06-24 14:58:39 +00004723 cnic_ctx_wr(dev, kcq_cid_addr, L5_KRNLQ_QE_SELF_SEQ_MAX, val);
Michael Chana4636962009-06-08 18:14:43 -07004724
4725 val = ((BCM_PAGE_SIZE / sizeof(struct kcqe)) << 16) | KCQ_PAGE_CNT;
Michael Chane6c28892010-06-24 14:58:39 +00004726 cnic_ctx_wr(dev, kcq_cid_addr, L5_KRNLQ_PGTBL_NPAGES, val);
Michael Chana4636962009-06-08 18:14:43 -07004727
Michael Chane6c28892010-06-24 14:58:39 +00004728 val = (u32) ((u64) cp->kcq1.dma.pgtbl_map >> 32);
4729 cnic_ctx_wr(dev, kcq_cid_addr, L5_KRNLQ_PGTBL_HADDR_HI, val);
Michael Chana4636962009-06-08 18:14:43 -07004730
Michael Chane6c28892010-06-24 14:58:39 +00004731 val = (u32) cp->kcq1.dma.pgtbl_map;
4732 cnic_ctx_wr(dev, kcq_cid_addr, L5_KRNLQ_PGTBL_HADDR_LO, val);
Michael Chana4636962009-06-08 18:14:43 -07004733
4734 cp->int_num = 0;
4735 if (ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX) {
Michael Chane6c28892010-06-24 14:58:39 +00004736 struct status_block_msix *msblk = cp->status_blk.bnx2;
Michael Chana4636962009-06-08 18:14:43 -07004737 u32 sb_id = cp->status_blk_num;
Michael Chand0549382009-10-28 03:41:59 -07004738 u32 sb = BNX2_L2CTX_L5_STATUSB_NUM(sb_id);
Michael Chana4636962009-06-08 18:14:43 -07004739
Michael Chane6c28892010-06-24 14:58:39 +00004740 cp->kcq1.hw_prod_idx_ptr =
Joe Perches64699332012-06-04 12:44:16 +00004741 &msblk->status_completion_producer_index;
4742 cp->kcq1.status_idx_ptr = &msblk->status_idx;
4743 cp->kwq_con_idx_ptr = &msblk->status_cmd_consumer_index;
Michael Chana4636962009-06-08 18:14:43 -07004744 cp->int_num = sb_id << BNX2_PCICFG_INT_ACK_CMD_INT_NUM_SHIFT;
Michael Chane6c28892010-06-24 14:58:39 +00004745 cnic_ctx_wr(dev, kwq_cid_addr, L5_KRNLQ_HOST_QIDX, sb);
4746 cnic_ctx_wr(dev, kcq_cid_addr, L5_KRNLQ_HOST_QIDX, sb);
Michael Chana4636962009-06-08 18:14:43 -07004747 }
4748
4749 /* Enable Commnad Scheduler notification when we write to the
4750 * host producer index of the kernel contexts. */
4751 CNIC_WR(dev, BNX2_MQ_KNL_CMD_MASK1, 2);
4752
4753 /* Enable Command Scheduler notification when we write to either
4754 * the Send Queue or Receive Queue producer indexes of the kernel
4755 * bypass contexts. */
4756 CNIC_WR(dev, BNX2_MQ_KNL_BYP_CMD_MASK1, 7);
4757 CNIC_WR(dev, BNX2_MQ_KNL_BYP_WRITE_MASK1, 7);
4758
4759 /* Notify COM when the driver post an application buffer. */
4760 CNIC_WR(dev, BNX2_MQ_KNL_RX_V2P_MASK2, 0x2000);
4761
4762 /* Set the CP and COM doorbells. These two processors polls the
4763 * doorbell for a non zero value before running. This must be done
4764 * after setting up the kernel queue contexts. */
4765 cnic_reg_wr_ind(dev, BNX2_CP_SCRATCH + 0x20, 1);
4766 cnic_reg_wr_ind(dev, BNX2_COM_SCRATCH + 0x20, 1);
4767
4768 cnic_init_bnx2_tx_ring(dev);
4769 cnic_init_bnx2_rx_ring(dev);
4770
4771 err = cnic_init_bnx2_irq(dev);
4772 if (err) {
Joe Perchesddf79b22010-02-17 15:01:54 +00004773 netdev_err(dev->netdev, "cnic_init_irq failed\n");
Michael Chana4636962009-06-08 18:14:43 -07004774 cnic_reg_wr_ind(dev, BNX2_CP_SCRATCH + 0x20, 0);
4775 cnic_reg_wr_ind(dev, BNX2_COM_SCRATCH + 0x20, 0);
4776 return err;
4777 }
4778
4779 return 0;
4780}
4781
Michael Chan71034ba2009-10-10 13:46:59 +00004782static void cnic_setup_bnx2x_context(struct cnic_dev *dev)
4783{
4784 struct cnic_local *cp = dev->cnic_priv;
4785 struct cnic_eth_dev *ethdev = cp->ethdev;
4786 u32 start_offset = ethdev->ctx_tbl_offset;
4787 int i;
4788
4789 for (i = 0; i < cp->ctx_blks; i++) {
4790 struct cnic_ctx *ctx = &cp->ctx_arr[i];
4791 dma_addr_t map = ctx->mapping;
4792
4793 if (cp->ctx_align) {
4794 unsigned long mask = cp->ctx_align - 1;
4795
4796 map = (map + mask) & ~mask;
4797 }
4798
4799 cnic_ctx_tbl_wr(dev, start_offset + i, map);
4800 }
4801}
4802
4803static int cnic_init_bnx2x_irq(struct cnic_dev *dev)
4804{
4805 struct cnic_local *cp = dev->cnic_priv;
4806 struct cnic_eth_dev *ethdev = cp->ethdev;
4807 int err = 0;
4808
Joe Perches164165d2009-11-19 09:30:10 +00004809 tasklet_init(&cp->cnic_irq_task, cnic_service_bnx2x_bh,
Michael Chan71034ba2009-10-10 13:46:59 +00004810 (unsigned long) dev);
Michael Chan6e0dc642010-10-13 14:06:44 +00004811 if (ethdev->drv_state & CNIC_DRV_STATE_USING_MSIX)
4812 err = cnic_request_irq(dev);
4813
Michael Chan71034ba2009-10-10 13:46:59 +00004814 return err;
4815}
4816
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004817static inline void cnic_storm_memset_hc_disable(struct cnic_dev *dev,
4818 u16 sb_id, u8 sb_index,
4819 u8 disable)
4820{
4821
4822 u32 addr = BAR_CSTRORM_INTMEM +
4823 CSTORM_STATUS_BLOCK_DATA_OFFSET(sb_id) +
4824 offsetof(struct hc_status_block_data_e1x, index_data) +
4825 sizeof(struct hc_index_data)*sb_index +
4826 offsetof(struct hc_index_data, flags);
4827 u16 flags = CNIC_RD16(dev, addr);
4828 /* clear and set */
4829 flags &= ~HC_INDEX_DATA_HC_ENABLED;
4830 flags |= (((~disable) << HC_INDEX_DATA_HC_ENABLED_SHIFT) &
4831 HC_INDEX_DATA_HC_ENABLED);
4832 CNIC_WR16(dev, addr, flags);
4833}
4834
Michael Chan71034ba2009-10-10 13:46:59 +00004835static void cnic_enable_bnx2x_int(struct cnic_dev *dev)
4836{
4837 struct cnic_local *cp = dev->cnic_priv;
4838 u8 sb_id = cp->status_blk_num;
Michael Chan71034ba2009-10-10 13:46:59 +00004839
4840 CNIC_WR8(dev, BAR_CSTRORM_INTMEM +
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004841 CSTORM_STATUS_BLOCK_DATA_OFFSET(sb_id) +
4842 offsetof(struct hc_status_block_data_e1x, index_data) +
4843 sizeof(struct hc_index_data)*HC_INDEX_ISCSI_EQ_CONS +
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03004844 offsetof(struct hc_index_data, timeout), 64 / 4);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004845 cnic_storm_memset_hc_disable(dev, sb_id, HC_INDEX_ISCSI_EQ_CONS, 0);
Michael Chan71034ba2009-10-10 13:46:59 +00004846}
4847
4848static void cnic_disable_bnx2x_int_sync(struct cnic_dev *dev)
4849{
4850}
4851
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004852static void cnic_init_bnx2x_tx_ring(struct cnic_dev *dev,
4853 struct client_init_ramrod_data *data)
Michael Chan71034ba2009-10-10 13:46:59 +00004854{
4855 struct cnic_local *cp = dev->cnic_priv;
Michael Chancd801532010-10-13 14:06:49 +00004856 struct cnic_uio_dev *udev = cp->udev;
4857 union eth_tx_bd_types *txbd = (union eth_tx_bd_types *) udev->l2_ring;
4858 dma_addr_t buf_map, ring_map = udev->l2_ring_map;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004859 struct host_sp_status_block *sb = cp->bnx2x_def_status_blk;
Michael Chan71034ba2009-10-10 13:46:59 +00004860 int i;
Michael Chan5159fdc2010-12-23 07:42:59 +00004861 u32 cli = cp->ethdev->iscsi_l2_client_id;
Michael Chan71034ba2009-10-10 13:46:59 +00004862 u32 val;
4863
4864 memset(txbd, 0, BCM_PAGE_SIZE);
4865
Michael Chancd801532010-10-13 14:06:49 +00004866 buf_map = udev->l2_buf_map;
Michael Chan71034ba2009-10-10 13:46:59 +00004867 for (i = 0; i < MAX_TX_DESC_CNT; i += 3, txbd += 3) {
4868 struct eth_tx_start_bd *start_bd = &txbd->start_bd;
4869 struct eth_tx_bd *reg_bd = &((txbd + 2)->reg_bd);
4870
4871 start_bd->addr_hi = cpu_to_le32((u64) buf_map >> 32);
4872 start_bd->addr_lo = cpu_to_le32(buf_map & 0xffffffff);
4873 reg_bd->addr_hi = start_bd->addr_hi;
4874 reg_bd->addr_lo = start_bd->addr_lo + 0x10;
4875 start_bd->nbytes = cpu_to_le16(0x10);
4876 start_bd->nbd = cpu_to_le16(3);
4877 start_bd->bd_flags.as_bitfield = ETH_TX_BD_FLAGS_START_BD;
4878 start_bd->general_data = (UNICAST_ADDRESS <<
4879 ETH_TX_START_BD_ETH_ADDR_TYPE_SHIFT);
4880 start_bd->general_data |= (1 << ETH_TX_START_BD_HDR_NBDS_SHIFT);
4881
4882 }
Michael Chan71034ba2009-10-10 13:46:59 +00004883
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004884 val = (u64) ring_map >> 32;
Michael Chan71034ba2009-10-10 13:46:59 +00004885 txbd->next_bd.addr_hi = cpu_to_le32(val);
4886
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004887 data->tx.tx_bd_page_base.hi = cpu_to_le32(val);
Michael Chan71034ba2009-10-10 13:46:59 +00004888
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004889 val = (u64) ring_map & 0xffffffff;
Michael Chan71034ba2009-10-10 13:46:59 +00004890 txbd->next_bd.addr_lo = cpu_to_le32(val);
4891
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004892 data->tx.tx_bd_page_base.lo = cpu_to_le32(val);
Michael Chan71034ba2009-10-10 13:46:59 +00004893
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004894 /* Other ramrod params */
4895 data->tx.tx_sb_index_number = HC_SP_INDEX_ETH_ISCSI_CQ_CONS;
4896 data->tx.tx_status_block_id = BNX2X_DEF_SB_ID;
Michael Chan71034ba2009-10-10 13:46:59 +00004897
4898 /* reset xstorm per client statistics */
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004899 if (cli < MAX_STAT_COUNTER_ID) {
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03004900 data->general.statistics_zero_flg = 1;
4901 data->general.statistics_en_flg = 1;
4902 data->general.statistics_counter_id = cli;
Dmitry Kravkov6b2a5412010-06-23 11:57:09 -07004903 }
Michael Chan71034ba2009-10-10 13:46:59 +00004904
4905 cp->tx_cons_ptr =
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004906 &sb->sp_sb.index_values[HC_SP_INDEX_ETH_ISCSI_CQ_CONS];
Michael Chan71034ba2009-10-10 13:46:59 +00004907}
4908
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004909static void cnic_init_bnx2x_rx_ring(struct cnic_dev *dev,
4910 struct client_init_ramrod_data *data)
Michael Chan71034ba2009-10-10 13:46:59 +00004911{
4912 struct cnic_local *cp = dev->cnic_priv;
Michael Chancd801532010-10-13 14:06:49 +00004913 struct cnic_uio_dev *udev = cp->udev;
4914 struct eth_rx_bd *rxbd = (struct eth_rx_bd *) (udev->l2_ring +
Michael Chan71034ba2009-10-10 13:46:59 +00004915 BCM_PAGE_SIZE);
4916 struct eth_rx_cqe_next_page *rxcqe = (struct eth_rx_cqe_next_page *)
Michael Chancd801532010-10-13 14:06:49 +00004917 (udev->l2_ring + (2 * BCM_PAGE_SIZE));
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004918 struct host_sp_status_block *sb = cp->bnx2x_def_status_blk;
Michael Chan71034ba2009-10-10 13:46:59 +00004919 int i;
Michael Chan5159fdc2010-12-23 07:42:59 +00004920 u32 cli = cp->ethdev->iscsi_l2_client_id;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004921 int cl_qzone_id = BNX2X_CL_QZONE_ID(cp, cli);
Michael Chan71034ba2009-10-10 13:46:59 +00004922 u32 val;
Michael Chancd801532010-10-13 14:06:49 +00004923 dma_addr_t ring_map = udev->l2_ring_map;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004924
4925 /* General data */
4926 data->general.client_id = cli;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004927 data->general.activate_flg = 1;
4928 data->general.sp_client_id = cli;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03004929 data->general.mtu = cpu_to_le16(cp->l2_single_buf_size - 14);
4930 data->general.func_id = cp->pfid;
Michael Chan71034ba2009-10-10 13:46:59 +00004931
4932 for (i = 0; i < BNX2X_MAX_RX_DESC_CNT; i++, rxbd++) {
4933 dma_addr_t buf_map;
4934 int n = (i % cp->l2_rx_ring_size) + 1;
4935
Michael Chancd801532010-10-13 14:06:49 +00004936 buf_map = udev->l2_buf_map + (n * cp->l2_single_buf_size);
Michael Chan71034ba2009-10-10 13:46:59 +00004937 rxbd->addr_hi = cpu_to_le32((u64) buf_map >> 32);
4938 rxbd->addr_lo = cpu_to_le32(buf_map & 0xffffffff);
4939 }
Michael Chan71034ba2009-10-10 13:46:59 +00004940
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004941 val = (u64) (ring_map + BCM_PAGE_SIZE) >> 32;
Michael Chan71034ba2009-10-10 13:46:59 +00004942 rxbd->addr_hi = cpu_to_le32(val);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004943 data->rx.bd_page_base.hi = cpu_to_le32(val);
Michael Chan71034ba2009-10-10 13:46:59 +00004944
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004945 val = (u64) (ring_map + BCM_PAGE_SIZE) & 0xffffffff;
Michael Chan71034ba2009-10-10 13:46:59 +00004946 rxbd->addr_lo = cpu_to_le32(val);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004947 data->rx.bd_page_base.lo = cpu_to_le32(val);
Michael Chan71034ba2009-10-10 13:46:59 +00004948
4949 rxcqe += BNX2X_MAX_RCQ_DESC_CNT;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004950 val = (u64) (ring_map + (2 * BCM_PAGE_SIZE)) >> 32;
Michael Chan71034ba2009-10-10 13:46:59 +00004951 rxcqe->addr_hi = cpu_to_le32(val);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004952 data->rx.cqe_page_base.hi = cpu_to_le32(val);
Michael Chan71034ba2009-10-10 13:46:59 +00004953
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004954 val = (u64) (ring_map + (2 * BCM_PAGE_SIZE)) & 0xffffffff;
Michael Chan71034ba2009-10-10 13:46:59 +00004955 rxcqe->addr_lo = cpu_to_le32(val);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004956 data->rx.cqe_page_base.lo = cpu_to_le32(val);
Michael Chan71034ba2009-10-10 13:46:59 +00004957
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004958 /* Other ramrod params */
4959 data->rx.client_qzone_id = cl_qzone_id;
4960 data->rx.rx_sb_index_number = HC_SP_INDEX_ETH_ISCSI_RX_CQ_CONS;
4961 data->rx.status_block_id = BNX2X_DEF_SB_ID;
Michael Chan71034ba2009-10-10 13:46:59 +00004962
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004963 data->rx.cache_line_alignment_log_size = L1_CACHE_SHIFT;
Michael Chan71034ba2009-10-10 13:46:59 +00004964
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03004965 data->rx.max_bytes_on_bd = cpu_to_le16(cp->l2_single_buf_size);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004966 data->rx.outer_vlan_removal_enable_flg = 1;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03004967 data->rx.silent_vlan_removal_flg = 1;
4968 data->rx.silent_vlan_value = 0;
4969 data->rx.silent_vlan_mask = 0xffff;
Michael Chan71034ba2009-10-10 13:46:59 +00004970
4971 cp->rx_cons_ptr =
Dmitry Kravkov523224a2010-10-06 03:23:26 +00004972 &sb->sp_sb.index_values[HC_SP_INDEX_ETH_ISCSI_RX_CQ_CONS];
Michael Chan5159fdc2010-12-23 07:42:59 +00004973 cp->rx_cons = *cp->rx_cons_ptr;
Michael Chan71034ba2009-10-10 13:46:59 +00004974}
4975
Michael Chane21ba412010-12-23 07:43:03 +00004976static void cnic_init_bnx2x_kcq(struct cnic_dev *dev)
4977{
4978 struct cnic_local *cp = dev->cnic_priv;
4979 u32 pfid = cp->pfid;
4980
4981 cp->kcq1.io_addr = BAR_CSTRORM_INTMEM +
4982 CSTORM_ISCSI_EQ_PROD_OFFSET(pfid, 0);
4983 cp->kcq1.sw_prod_idx = 0;
4984
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03004985 if (BNX2X_CHIP_IS_E2_PLUS(cp->chip_id)) {
Michael Chane21ba412010-12-23 07:43:03 +00004986 struct host_hc_status_block_e2 *sb = cp->status_blk.gen;
4987
4988 cp->kcq1.hw_prod_idx_ptr =
4989 &sb->sb.index_values[HC_INDEX_ISCSI_EQ_CONS];
4990 cp->kcq1.status_idx_ptr =
4991 &sb->sb.running_index[SM_RX_ID];
4992 } else {
4993 struct host_hc_status_block_e1x *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 }
5000
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03005001 if (BNX2X_CHIP_IS_E2_PLUS(cp->chip_id)) {
Michael Chane21ba412010-12-23 07:43:03 +00005002 struct host_hc_status_block_e2 *sb = cp->status_blk.gen;
5003
5004 cp->kcq2.io_addr = BAR_USTRORM_INTMEM +
5005 USTORM_FCOE_EQ_PROD_OFFSET(pfid);
5006 cp->kcq2.sw_prod_idx = 0;
5007 cp->kcq2.hw_prod_idx_ptr =
5008 &sb->sb.index_values[HC_INDEX_FCOE_EQ_CONS];
5009 cp->kcq2.status_idx_ptr =
5010 &sb->sb.running_index[SM_RX_ID];
5011 }
5012}
5013
Michael Chan71034ba2009-10-10 13:46:59 +00005014static int cnic_start_bnx2x_hw(struct cnic_dev *dev)
5015{
5016 struct cnic_local *cp = dev->cnic_priv;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00005017 struct cnic_eth_dev *ethdev = cp->ethdev;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03005018 int func = CNIC_FUNC(cp), ret;
Michael Chan14203982010-10-06 03:16:06 +00005019 u32 pfid;
Michael Chan71034ba2009-10-10 13:46:59 +00005020
Michael Chana9e0a4f2012-01-04 12:12:27 +00005021 dev->stats_addr = ethdev->addr_drv_info_to_mcp;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03005022 cp->port_mode = CHIP_PORT_MODE_NONE;
5023
5024 if (BNX2X_CHIP_IS_E2_PLUS(cp->chip_id)) {
Eddie Wai78ea22e2012-06-27 15:08:20 +00005025 u32 val;
Michael Chanee87a822010-10-13 14:06:51 +00005026
Eddie Wai78ea22e2012-06-27 15:08:20 +00005027 pci_read_config_dword(dev->pcidev, PCICFG_ME_REGISTER, &val);
5028 cp->func = (u8) ((val & ME_REG_ABS_PF_NUM) >>
5029 ME_REG_ABS_PF_NUM_SHIFT);
5030 func = CNIC_FUNC(cp);
5031
5032 val = CNIC_RD(dev, MISC_REG_PORT4MODE_EN_OVWR);
Michael Chanee87a822010-10-13 14:06:51 +00005033 if (!(val & 1))
5034 val = CNIC_RD(dev, MISC_REG_PORT4MODE_EN);
5035 else
5036 val = (val >> 1) & 1;
5037
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03005038 if (val) {
5039 cp->port_mode = CHIP_4_PORT_MODE;
Michael Chanee87a822010-10-13 14:06:51 +00005040 cp->pfid = func >> 1;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03005041 } else {
Michael Chanb7d40312011-07-13 17:24:18 +00005042 cp->port_mode = CHIP_2_PORT_MODE;
Michael Chanee87a822010-10-13 14:06:51 +00005043 cp->pfid = func & 0x6;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03005044 }
Michael Chanee87a822010-10-13 14:06:51 +00005045 } else {
5046 cp->pfid = func;
5047 }
Michael Chan14203982010-10-06 03:16:06 +00005048 pfid = cp->pfid;
5049
Michael Chan71034ba2009-10-10 13:46:59 +00005050 ret = cnic_init_id_tbl(&cp->cid_tbl, MAX_ISCSI_TBL_SZ,
Eddie Wai11f23aa2011-06-08 19:29:34 +00005051 cp->iscsi_start_cid, 0);
Michael Chan71034ba2009-10-10 13:46:59 +00005052
5053 if (ret)
5054 return -ENOMEM;
5055
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03005056 if (BNX2X_CHIP_IS_E2_PLUS(cp->chip_id)) {
Michael Chandc219a22011-08-26 09:45:39 +00005057 ret = cnic_init_id_tbl(&cp->fcoe_cid_tbl, dev->max_fcoe_conn,
Eddie Wai11f23aa2011-06-08 19:29:34 +00005058 cp->fcoe_start_cid, 0);
Michael Chane1928c82010-12-23 07:43:04 +00005059
5060 if (ret)
5061 return -ENOMEM;
5062 }
5063
Dmitry Kravkov523224a2010-10-06 03:23:26 +00005064 cp->bnx2x_igu_sb_id = ethdev->irq_arr[0].status_blk_num2;
5065
Michael Chane21ba412010-12-23 07:43:03 +00005066 cnic_init_bnx2x_kcq(dev);
Michael Chan71034ba2009-10-10 13:46:59 +00005067
Michael Chan71034ba2009-10-10 13:46:59 +00005068 /* Only 1 EQ */
Michael Chane6c28892010-06-24 14:58:39 +00005069 CNIC_WR16(dev, cp->kcq1.io_addr, MAX_KCQ_IDX);
Michael Chan71034ba2009-10-10 13:46:59 +00005070 CNIC_WR(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00005071 CSTORM_ISCSI_EQ_CONS_OFFSET(pfid, 0), 0);
Michael Chan71034ba2009-10-10 13:46:59 +00005072 CNIC_WR(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00005073 CSTORM_ISCSI_EQ_NEXT_PAGE_ADDR_OFFSET(pfid, 0),
Michael Chane6c28892010-06-24 14:58:39 +00005074 cp->kcq1.dma.pg_map_arr[1] & 0xffffffff);
Michael Chan71034ba2009-10-10 13:46:59 +00005075 CNIC_WR(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00005076 CSTORM_ISCSI_EQ_NEXT_PAGE_ADDR_OFFSET(pfid, 0) + 4,
Michael Chane6c28892010-06-24 14:58:39 +00005077 (u64) cp->kcq1.dma.pg_map_arr[1] >> 32);
Michael Chan71034ba2009-10-10 13:46:59 +00005078 CNIC_WR(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00005079 CSTORM_ISCSI_EQ_NEXT_EQE_ADDR_OFFSET(pfid, 0),
Michael Chane6c28892010-06-24 14:58:39 +00005080 cp->kcq1.dma.pg_map_arr[0] & 0xffffffff);
Michael Chan71034ba2009-10-10 13:46:59 +00005081 CNIC_WR(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00005082 CSTORM_ISCSI_EQ_NEXT_EQE_ADDR_OFFSET(pfid, 0) + 4,
Michael Chane6c28892010-06-24 14:58:39 +00005083 (u64) cp->kcq1.dma.pg_map_arr[0] >> 32);
Michael Chan71034ba2009-10-10 13:46:59 +00005084 CNIC_WR8(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00005085 CSTORM_ISCSI_EQ_NEXT_PAGE_ADDR_VALID_OFFSET(pfid, 0), 1);
Michael Chan71034ba2009-10-10 13:46:59 +00005086 CNIC_WR16(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00005087 CSTORM_ISCSI_EQ_SB_NUM_OFFSET(pfid, 0), cp->status_blk_num);
Michael Chan71034ba2009-10-10 13:46:59 +00005088 CNIC_WR8(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00005089 CSTORM_ISCSI_EQ_SB_INDEX_OFFSET(pfid, 0),
Dmitry Kravkov523224a2010-10-06 03:23:26 +00005090 HC_INDEX_ISCSI_EQ_CONS);
Michael Chan71034ba2009-10-10 13:46:59 +00005091
Michael Chan71034ba2009-10-10 13:46:59 +00005092 CNIC_WR(dev, BAR_USTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00005093 USTORM_ISCSI_GLOBAL_BUF_PHYS_ADDR_OFFSET(pfid),
Michael Chan71034ba2009-10-10 13:46:59 +00005094 cp->gbl_buf_info.pg_map_arr[0] & 0xffffffff);
5095 CNIC_WR(dev, BAR_USTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00005096 USTORM_ISCSI_GLOBAL_BUF_PHYS_ADDR_OFFSET(pfid) + 4,
Michael Chan71034ba2009-10-10 13:46:59 +00005097 (u64) cp->gbl_buf_info.pg_map_arr[0] >> 32);
5098
Dmitry Kravkov523224a2010-10-06 03:23:26 +00005099 CNIC_WR(dev, BAR_TSTRORM_INTMEM +
5100 TSTORM_ISCSI_TCP_LOCAL_ADV_WND_OFFSET(pfid), DEF_RCV_BUF);
5101
Michael Chan71034ba2009-10-10 13:46:59 +00005102 cnic_setup_bnx2x_context(dev);
5103
Michael Chan71034ba2009-10-10 13:46:59 +00005104 ret = cnic_init_bnx2x_irq(dev);
5105 if (ret)
5106 return ret;
5107
Michael Chan71034ba2009-10-10 13:46:59 +00005108 return 0;
5109}
5110
Michael Chan86b53602009-10-10 13:46:57 +00005111static void cnic_init_rings(struct cnic_dev *dev)
5112{
Michael Chan541a7812010-10-06 03:17:22 +00005113 struct cnic_local *cp = dev->cnic_priv;
Michael Chancd801532010-10-13 14:06:49 +00005114 struct cnic_uio_dev *udev = cp->udev;
Michael Chan541a7812010-10-06 03:17:22 +00005115
5116 if (test_bit(CNIC_LCL_FL_RINGS_INITED, &cp->cnic_local_flags))
5117 return;
5118
Michael Chan86b53602009-10-10 13:46:57 +00005119 if (test_bit(CNIC_F_BNX2_CLASS, &dev->flags)) {
5120 cnic_init_bnx2_tx_ring(dev);
5121 cnic_init_bnx2_rx_ring(dev);
Michael Chan541a7812010-10-06 03:17:22 +00005122 set_bit(CNIC_LCL_FL_RINGS_INITED, &cp->cnic_local_flags);
Michael Chan71034ba2009-10-10 13:46:59 +00005123 } else if (test_bit(CNIC_F_BNX2X_CLASS, &dev->flags)) {
Michael Chan5159fdc2010-12-23 07:42:59 +00005124 u32 cli = cp->ethdev->iscsi_l2_client_id;
5125 u32 cid = cp->ethdev->iscsi_l2_cid;
Michael Chan68d7c1a2011-01-05 15:14:13 +00005126 u32 cl_qzone_id;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00005127 struct client_init_ramrod_data *data;
Michael Chan71034ba2009-10-10 13:46:59 +00005128 union l5cm_specific_data l5_data;
5129 struct ustorm_eth_rx_producers rx_prods = {0};
Michael Chane1dd8832011-07-13 17:24:19 +00005130 u32 off, i, *cid_ptr;
Michael Chan71034ba2009-10-10 13:46:59 +00005131
5132 rx_prods.bd_prod = 0;
5133 rx_prods.cqe_prod = BNX2X_MAX_RCQ_DESC_CNT;
5134 barrier();
5135
Dmitry Kravkov523224a2010-10-06 03:23:26 +00005136 cl_qzone_id = BNX2X_CL_QZONE_ID(cp, cli);
5137
Michael Chanc7596b72009-12-02 15:15:35 +00005138 off = BAR_USTRORM_INTMEM +
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03005139 (BNX2X_CHIP_IS_E2_PLUS(cp->chip_id) ?
Michael Chanee87a822010-10-13 14:06:51 +00005140 USTORM_RX_PRODS_E2_OFFSET(cl_qzone_id) :
5141 USTORM_RX_PRODS_E1X_OFFSET(CNIC_PORT(cp), cli));
Michael Chan71034ba2009-10-10 13:46:59 +00005142
5143 for (i = 0; i < sizeof(struct ustorm_eth_rx_producers) / 4; i++)
Michael Chanc7596b72009-12-02 15:15:35 +00005144 CNIC_WR(dev, off + i * 4, ((u32 *) &rx_prods)[i]);
Michael Chan71034ba2009-10-10 13:46:59 +00005145
Michael Chan48f753d2010-05-18 11:32:53 +00005146 set_bit(CNIC_LCL_FL_L2_WAIT, &cp->cnic_local_flags);
5147
Michael Chancd801532010-10-13 14:06:49 +00005148 data = udev->l2_buf;
Michael Chane1dd8832011-07-13 17:24:19 +00005149 cid_ptr = udev->l2_buf + 12;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00005150
5151 memset(data, 0, sizeof(*data));
5152
5153 cnic_init_bnx2x_tx_ring(dev, data);
5154 cnic_init_bnx2x_rx_ring(dev, data);
5155
Michael Chancd801532010-10-13 14:06:49 +00005156 l5_data.phy_address.lo = udev->l2_buf_map & 0xffffffff;
5157 l5_data.phy_address.hi = (u64) udev->l2_buf_map >> 32;
Dmitry Kravkov523224a2010-10-06 03:23:26 +00005158
Michael Chan541a7812010-10-06 03:17:22 +00005159 set_bit(CNIC_LCL_FL_RINGS_INITED, &cp->cnic_local_flags);
5160
Michael Chan71034ba2009-10-10 13:46:59 +00005161 cnic_submit_kwqe_16(dev, RAMROD_CMD_ID_ETH_CLIENT_SETUP,
Michael Chan68d7c1a2011-01-05 15:14:13 +00005162 cid, ETH_CONNECTION_TYPE, &l5_data);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00005163
Michael Chan48f753d2010-05-18 11:32:53 +00005164 i = 0;
5165 while (test_bit(CNIC_LCL_FL_L2_WAIT, &cp->cnic_local_flags) &&
5166 ++i < 10)
5167 msleep(1);
5168
5169 if (test_bit(CNIC_LCL_FL_L2_WAIT, &cp->cnic_local_flags))
5170 netdev_err(dev->netdev,
5171 "iSCSI CLIENT_SETUP did not complete\n");
Dmitry Kravkovc2bff632010-10-06 03:33:18 +00005172 cnic_spq_completion(dev, DRV_CTL_RET_L2_SPQ_CREDIT_CMD, 1);
Michael Chan5159fdc2010-12-23 07:42:59 +00005173 cnic_ring_ctl(dev, cid, cli, 1);
Michael Chane1dd8832011-07-13 17:24:19 +00005174 *cid_ptr = cid;
Michael Chan86b53602009-10-10 13:46:57 +00005175 }
5176}
5177
5178static void cnic_shutdown_rings(struct cnic_dev *dev)
5179{
Michael Chan541a7812010-10-06 03:17:22 +00005180 struct cnic_local *cp = dev->cnic_priv;
Michael Chane1dd8832011-07-13 17:24:19 +00005181 struct cnic_uio_dev *udev = cp->udev;
5182 void *rx_ring;
Michael Chan541a7812010-10-06 03:17:22 +00005183
5184 if (!test_bit(CNIC_LCL_FL_RINGS_INITED, &cp->cnic_local_flags))
5185 return;
5186
Michael Chan86b53602009-10-10 13:46:57 +00005187 if (test_bit(CNIC_F_BNX2_CLASS, &dev->flags)) {
5188 cnic_shutdown_bnx2_rx_ring(dev);
Michael Chan71034ba2009-10-10 13:46:59 +00005189 } else if (test_bit(CNIC_F_BNX2X_CLASS, &dev->flags)) {
Michael Chan5159fdc2010-12-23 07:42:59 +00005190 u32 cli = cp->ethdev->iscsi_l2_client_id;
5191 u32 cid = cp->ethdev->iscsi_l2_cid;
Michael Chan8b065b62009-12-02 15:15:36 +00005192 union l5cm_specific_data l5_data;
Michael Chan48f753d2010-05-18 11:32:53 +00005193 int i;
Michael Chan71034ba2009-10-10 13:46:59 +00005194
Michael Chan5159fdc2010-12-23 07:42:59 +00005195 cnic_ring_ctl(dev, cid, cli, 0);
Michael Chan8b065b62009-12-02 15:15:36 +00005196
Michael Chan48f753d2010-05-18 11:32:53 +00005197 set_bit(CNIC_LCL_FL_L2_WAIT, &cp->cnic_local_flags);
5198
Michael Chan8b065b62009-12-02 15:15:36 +00005199 l5_data.phy_address.lo = cli;
5200 l5_data.phy_address.hi = 0;
5201 cnic_submit_kwqe_16(dev, RAMROD_CMD_ID_ETH_HALT,
Michael Chan5159fdc2010-12-23 07:42:59 +00005202 cid, ETH_CONNECTION_TYPE, &l5_data);
Michael Chan48f753d2010-05-18 11:32:53 +00005203 i = 0;
5204 while (test_bit(CNIC_LCL_FL_L2_WAIT, &cp->cnic_local_flags) &&
5205 ++i < 10)
5206 msleep(1);
5207
5208 if (test_bit(CNIC_LCL_FL_L2_WAIT, &cp->cnic_local_flags))
5209 netdev_err(dev->netdev,
5210 "iSCSI CLIENT_HALT did not complete\n");
Dmitry Kravkovc2bff632010-10-06 03:33:18 +00005211 cnic_spq_completion(dev, DRV_CTL_RET_L2_SPQ_CREDIT_CMD, 1);
Michael Chan1bcdc322009-12-10 15:40:57 +00005212
5213 memset(&l5_data, 0, sizeof(l5_data));
Dmitry Kravkov523224a2010-10-06 03:23:26 +00005214 cnic_submit_kwqe_16(dev, RAMROD_CMD_ID_COMMON_CFC_DEL,
Michael Chan68d7c1a2011-01-05 15:14:13 +00005215 cid, NONE_CONNECTION_TYPE, &l5_data);
Michael Chan1bcdc322009-12-10 15:40:57 +00005216 msleep(10);
Michael Chan86b53602009-10-10 13:46:57 +00005217 }
Michael Chan541a7812010-10-06 03:17:22 +00005218 clear_bit(CNIC_LCL_FL_RINGS_INITED, &cp->cnic_local_flags);
Michael Chane1dd8832011-07-13 17:24:19 +00005219 rx_ring = udev->l2_ring + BCM_PAGE_SIZE;
5220 memset(rx_ring, 0, BCM_PAGE_SIZE);
Michael Chan86b53602009-10-10 13:46:57 +00005221}
5222
Michael Chana3059b12009-08-14 15:49:44 +00005223static int cnic_register_netdev(struct cnic_dev *dev)
5224{
5225 struct cnic_local *cp = dev->cnic_priv;
5226 struct cnic_eth_dev *ethdev = cp->ethdev;
5227 int err;
5228
5229 if (!ethdev)
5230 return -ENODEV;
5231
5232 if (ethdev->drv_state & CNIC_DRV_STATE_REGD)
5233 return 0;
5234
5235 err = ethdev->drv_register_cnic(dev->netdev, cp->cnic_ops, dev);
5236 if (err)
Joe Perchesddf79b22010-02-17 15:01:54 +00005237 netdev_err(dev->netdev, "register_cnic failed\n");
Michael Chana3059b12009-08-14 15:49:44 +00005238
5239 return err;
5240}
5241
5242static void cnic_unregister_netdev(struct cnic_dev *dev)
5243{
5244 struct cnic_local *cp = dev->cnic_priv;
5245 struct cnic_eth_dev *ethdev = cp->ethdev;
5246
5247 if (!ethdev)
5248 return;
5249
5250 ethdev->drv_unregister_cnic(dev->netdev);
5251}
5252
Michael Chana4636962009-06-08 18:14:43 -07005253static int cnic_start_hw(struct cnic_dev *dev)
5254{
5255 struct cnic_local *cp = dev->cnic_priv;
5256 struct cnic_eth_dev *ethdev = cp->ethdev;
5257 int err;
5258
5259 if (test_bit(CNIC_F_CNIC_UP, &dev->flags))
5260 return -EALREADY;
5261
Michael Chana4636962009-06-08 18:14:43 -07005262 dev->regview = ethdev->io_base;
Michael Chana4636962009-06-08 18:14:43 -07005263 pci_dev_get(dev->pcidev);
5264 cp->func = PCI_FUNC(dev->pcidev->devfn);
Michael Chana4dde3a2010-02-24 14:42:08 +00005265 cp->status_blk.gen = ethdev->irq_arr[0].status_blk;
Michael Chana4636962009-06-08 18:14:43 -07005266 cp->status_blk_num = ethdev->irq_arr[0].status_blk_num;
5267
5268 err = cp->alloc_resc(dev);
5269 if (err) {
Joe Perchesddf79b22010-02-17 15:01:54 +00005270 netdev_err(dev->netdev, "allocate resource failure\n");
Michael Chana4636962009-06-08 18:14:43 -07005271 goto err1;
5272 }
5273
5274 err = cp->start_hw(dev);
5275 if (err)
5276 goto err1;
5277
5278 err = cnic_cm_open(dev);
5279 if (err)
5280 goto err1;
5281
5282 set_bit(CNIC_F_CNIC_UP, &dev->flags);
5283
5284 cp->enable_int(dev);
5285
5286 return 0;
5287
5288err1:
Michael Chana4636962009-06-08 18:14:43 -07005289 cp->free_resc(dev);
5290 pci_dev_put(dev->pcidev);
Michael Chana4636962009-06-08 18:14:43 -07005291 return err;
5292}
5293
5294static void cnic_stop_bnx2_hw(struct cnic_dev *dev)
5295{
Michael Chana4636962009-06-08 18:14:43 -07005296 cnic_disable_bnx2_int_sync(dev);
5297
5298 cnic_reg_wr_ind(dev, BNX2_CP_SCRATCH + 0x20, 0);
5299 cnic_reg_wr_ind(dev, BNX2_COM_SCRATCH + 0x20, 0);
5300
5301 cnic_init_context(dev, KWQ_CID);
5302 cnic_init_context(dev, KCQ_CID);
5303
5304 cnic_setup_5709_context(dev, 0);
5305 cnic_free_irq(dev);
5306
Michael Chana4636962009-06-08 18:14:43 -07005307 cnic_free_resc(dev);
5308}
5309
Michael Chan71034ba2009-10-10 13:46:59 +00005310
5311static void cnic_stop_bnx2x_hw(struct cnic_dev *dev)
5312{
5313 struct cnic_local *cp = dev->cnic_priv;
Michael Chan71034ba2009-10-10 13:46:59 +00005314
5315 cnic_free_irq(dev);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00005316 *cp->kcq1.hw_prod_idx_ptr = 0;
Michael Chan4e9c4fd2009-12-10 15:40:58 +00005317 CNIC_WR(dev, BAR_CSTRORM_INTMEM +
Michael Chan14203982010-10-06 03:16:06 +00005318 CSTORM_ISCSI_EQ_CONS_OFFSET(cp->pfid, 0), 0);
Michael Chane6c28892010-06-24 14:58:39 +00005319 CNIC_WR16(dev, cp->kcq1.io_addr, 0);
Michael Chan71034ba2009-10-10 13:46:59 +00005320 cnic_free_resc(dev);
5321}
5322
Michael Chana4636962009-06-08 18:14:43 -07005323static void cnic_stop_hw(struct cnic_dev *dev)
5324{
5325 if (test_bit(CNIC_F_CNIC_UP, &dev->flags)) {
5326 struct cnic_local *cp = dev->cnic_priv;
Michael Chan48f753d2010-05-18 11:32:53 +00005327 int i = 0;
Michael Chana4636962009-06-08 18:14:43 -07005328
Michael Chan48f753d2010-05-18 11:32:53 +00005329 /* Need to wait for the ring shutdown event to complete
5330 * before clearing the CNIC_UP flag.
5331 */
Michael Chancd801532010-10-13 14:06:49 +00005332 while (cp->udev->uio_dev != -1 && i < 15) {
Michael Chan48f753d2010-05-18 11:32:53 +00005333 msleep(100);
5334 i++;
5335 }
Michael Chana3ceeeb2010-10-13 14:06:50 +00005336 cnic_shutdown_rings(dev);
Michael Chana2028b232012-06-27 15:08:19 +00005337 cp->stop_cm(dev);
Michael Chana4636962009-06-08 18:14:43 -07005338 clear_bit(CNIC_F_CNIC_UP, &dev->flags);
Eric Dumazet2cfa5a02011-11-23 07:09:32 +00005339 RCU_INIT_POINTER(cp->ulp_ops[CNIC_ULP_L4], NULL);
Michael Chana4636962009-06-08 18:14:43 -07005340 synchronize_rcu();
5341 cnic_cm_shutdown(dev);
5342 cp->stop_hw(dev);
5343 pci_dev_put(dev->pcidev);
5344 }
5345}
5346
5347static void cnic_free_dev(struct cnic_dev *dev)
5348{
5349 int i = 0;
5350
5351 while ((atomic_read(&dev->ref_count) != 0) && i < 10) {
5352 msleep(100);
5353 i++;
5354 }
5355 if (atomic_read(&dev->ref_count) != 0)
Joe Perchesddf79b22010-02-17 15:01:54 +00005356 netdev_err(dev->netdev, "Failed waiting for ref count to go to zero\n");
Michael Chana4636962009-06-08 18:14:43 -07005357
Joe Perchesddf79b22010-02-17 15:01:54 +00005358 netdev_info(dev->netdev, "Removed CNIC device\n");
Michael Chana4636962009-06-08 18:14:43 -07005359 dev_put(dev->netdev);
5360 kfree(dev);
5361}
5362
5363static struct cnic_dev *cnic_alloc_dev(struct net_device *dev,
5364 struct pci_dev *pdev)
5365{
5366 struct cnic_dev *cdev;
5367 struct cnic_local *cp;
5368 int alloc_size;
5369
5370 alloc_size = sizeof(struct cnic_dev) + sizeof(struct cnic_local);
5371
5372 cdev = kzalloc(alloc_size , GFP_KERNEL);
5373 if (cdev == NULL) {
Joe Perchesddf79b22010-02-17 15:01:54 +00005374 netdev_err(dev, "allocate dev struct failure\n");
Michael Chana4636962009-06-08 18:14:43 -07005375 return NULL;
5376 }
5377
5378 cdev->netdev = dev;
5379 cdev->cnic_priv = (char *)cdev + sizeof(struct cnic_dev);
5380 cdev->register_device = cnic_register_device;
5381 cdev->unregister_device = cnic_unregister_device;
5382 cdev->iscsi_nl_msg_recv = cnic_iscsi_nl_msg_recv;
5383
5384 cp = cdev->cnic_priv;
5385 cp->dev = cdev;
Michael Chana4636962009-06-08 18:14:43 -07005386 cp->l2_single_buf_size = 0x400;
5387 cp->l2_rx_ring_size = 3;
5388
5389 spin_lock_init(&cp->cnic_ulp_lock);
5390
Joe Perchesddf79b22010-02-17 15:01:54 +00005391 netdev_info(dev, "Added CNIC device\n");
Michael Chana4636962009-06-08 18:14:43 -07005392
5393 return cdev;
5394}
5395
5396static struct cnic_dev *init_bnx2_cnic(struct net_device *dev)
5397{
5398 struct pci_dev *pdev;
5399 struct cnic_dev *cdev;
5400 struct cnic_local *cp;
5401 struct cnic_eth_dev *ethdev = NULL;
Michael Chane2ee3612009-06-13 17:43:02 -07005402 struct cnic_eth_dev *(*probe)(struct net_device *) = NULL;
Michael Chana4636962009-06-08 18:14:43 -07005403
Michael Chane2ee3612009-06-13 17:43:02 -07005404 probe = symbol_get(bnx2_cnic_probe);
Michael Chana4636962009-06-08 18:14:43 -07005405 if (probe) {
5406 ethdev = (*probe)(dev);
Michael Chan64c64602009-08-14 15:49:43 +00005407 symbol_put(bnx2_cnic_probe);
Michael Chana4636962009-06-08 18:14:43 -07005408 }
5409 if (!ethdev)
5410 return NULL;
5411
5412 pdev = ethdev->pdev;
5413 if (!pdev)
5414 return NULL;
5415
5416 dev_hold(dev);
5417 pci_dev_get(pdev);
Sergei Shtylyovff938e42011-02-28 11:57:33 -08005418 if ((pdev->device == PCI_DEVICE_ID_NX2_5709 ||
5419 pdev->device == PCI_DEVICE_ID_NX2_5709S) &&
5420 (pdev->revision < 0x10)) {
5421 pci_dev_put(pdev);
5422 goto cnic_err;
Michael Chana4636962009-06-08 18:14:43 -07005423 }
5424 pci_dev_put(pdev);
5425
5426 cdev = cnic_alloc_dev(dev, pdev);
5427 if (cdev == NULL)
5428 goto cnic_err;
5429
5430 set_bit(CNIC_F_BNX2_CLASS, &cdev->flags);
5431 cdev->submit_kwqes = cnic_submit_bnx2_kwqes;
5432
5433 cp = cdev->cnic_priv;
5434 cp->ethdev = ethdev;
5435 cdev->pcidev = pdev;
Michael Chanee87a822010-10-13 14:06:51 +00005436 cp->chip_id = ethdev->chip_id;
Michael Chana4636962009-06-08 18:14:43 -07005437
Michael Chan7625eb22011-06-08 19:29:36 +00005438 cdev->max_iscsi_conn = ethdev->max_iscsi_conn;
5439
Michael Chana4636962009-06-08 18:14:43 -07005440 cp->cnic_ops = &cnic_bnx2_ops;
5441 cp->start_hw = cnic_start_bnx2_hw;
5442 cp->stop_hw = cnic_stop_bnx2_hw;
5443 cp->setup_pgtbl = cnic_setup_page_tbl;
5444 cp->alloc_resc = cnic_alloc_bnx2_resc;
5445 cp->free_resc = cnic_free_resc;
5446 cp->start_cm = cnic_cm_init_bnx2_hw;
5447 cp->stop_cm = cnic_cm_stop_bnx2_hw;
5448 cp->enable_int = cnic_enable_bnx2_int;
5449 cp->disable_int_sync = cnic_disable_bnx2_int_sync;
5450 cp->close_conn = cnic_close_bnx2_conn;
Michael Chana4636962009-06-08 18:14:43 -07005451 return cdev;
5452
5453cnic_err:
5454 dev_put(dev);
5455 return NULL;
5456}
5457
Michael Chan71034ba2009-10-10 13:46:59 +00005458static struct cnic_dev *init_bnx2x_cnic(struct net_device *dev)
5459{
5460 struct pci_dev *pdev;
5461 struct cnic_dev *cdev;
5462 struct cnic_local *cp;
5463 struct cnic_eth_dev *ethdev = NULL;
5464 struct cnic_eth_dev *(*probe)(struct net_device *) = NULL;
5465
5466 probe = symbol_get(bnx2x_cnic_probe);
5467 if (probe) {
5468 ethdev = (*probe)(dev);
5469 symbol_put(bnx2x_cnic_probe);
5470 }
5471 if (!ethdev)
5472 return NULL;
5473
5474 pdev = ethdev->pdev;
5475 if (!pdev)
5476 return NULL;
5477
5478 dev_hold(dev);
5479 cdev = cnic_alloc_dev(dev, pdev);
5480 if (cdev == NULL) {
5481 dev_put(dev);
5482 return NULL;
5483 }
5484
5485 set_bit(CNIC_F_BNX2X_CLASS, &cdev->flags);
5486 cdev->submit_kwqes = cnic_submit_bnx2x_kwqes;
5487
5488 cp = cdev->cnic_priv;
5489 cp->ethdev = ethdev;
5490 cdev->pcidev = pdev;
Michael Chanee87a822010-10-13 14:06:51 +00005491 cp->chip_id = ethdev->chip_id;
Michael Chan71034ba2009-10-10 13:46:59 +00005492
Barak Witkowski1d187b32011-12-05 22:41:50 +00005493 cdev->stats_addr = ethdev->addr_drv_info_to_mcp;
5494
Vladislav Zolotarov2ba45142011-01-31 14:39:17 +00005495 if (!(ethdev->drv_state & CNIC_DRV_STATE_NO_ISCSI))
5496 cdev->max_iscsi_conn = ethdev->max_iscsi_conn;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03005497 if (BNX2X_CHIP_IS_E2_PLUS(cp->chip_id) &&
Vladislav Zolotarov2ba45142011-01-31 14:39:17 +00005498 !(ethdev->drv_state & CNIC_DRV_STATE_NO_FCOE))
5499 cdev->max_fcoe_conn = ethdev->max_fcoe_conn;
5500
Michael Chandc219a22011-08-26 09:45:39 +00005501 if (cdev->max_fcoe_conn > BNX2X_FCOE_NUM_CONNECTIONS)
5502 cdev->max_fcoe_conn = BNX2X_FCOE_NUM_CONNECTIONS;
5503
Vladislav Zolotarov2ba45142011-01-31 14:39:17 +00005504 memcpy(cdev->mac_addr, ethdev->iscsi_mac, 6);
5505
Michael Chan71034ba2009-10-10 13:46:59 +00005506 cp->cnic_ops = &cnic_bnx2x_ops;
5507 cp->start_hw = cnic_start_bnx2x_hw;
5508 cp->stop_hw = cnic_stop_bnx2x_hw;
5509 cp->setup_pgtbl = cnic_setup_page_tbl_le;
5510 cp->alloc_resc = cnic_alloc_bnx2x_resc;
5511 cp->free_resc = cnic_free_resc;
5512 cp->start_cm = cnic_cm_init_bnx2x_hw;
5513 cp->stop_cm = cnic_cm_stop_bnx2x_hw;
5514 cp->enable_int = cnic_enable_bnx2x_int;
5515 cp->disable_int_sync = cnic_disable_bnx2x_int_sync;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03005516 if (BNX2X_CHIP_IS_E2_PLUS(cp->chip_id))
Michael Chanee87a822010-10-13 14:06:51 +00005517 cp->ack_int = cnic_ack_bnx2x_e2_msix;
5518 else
5519 cp->ack_int = cnic_ack_bnx2x_msix;
Michael Chan71034ba2009-10-10 13:46:59 +00005520 cp->close_conn = cnic_close_bnx2x_conn;
Michael Chan71034ba2009-10-10 13:46:59 +00005521 return cdev;
5522}
5523
Michael Chana4636962009-06-08 18:14:43 -07005524static struct cnic_dev *is_cnic_dev(struct net_device *dev)
5525{
5526 struct ethtool_drvinfo drvinfo;
5527 struct cnic_dev *cdev = NULL;
5528
5529 if (dev->ethtool_ops && dev->ethtool_ops->get_drvinfo) {
5530 memset(&drvinfo, 0, sizeof(drvinfo));
5531 dev->ethtool_ops->get_drvinfo(dev, &drvinfo);
5532
5533 if (!strcmp(drvinfo.driver, "bnx2"))
5534 cdev = init_bnx2_cnic(dev);
Michael Chan71034ba2009-10-10 13:46:59 +00005535 if (!strcmp(drvinfo.driver, "bnx2x"))
5536 cdev = init_bnx2x_cnic(dev);
Michael Chana4636962009-06-08 18:14:43 -07005537 if (cdev) {
5538 write_lock(&cnic_dev_lock);
5539 list_add(&cdev->list, &cnic_dev_list);
5540 write_unlock(&cnic_dev_lock);
5541 }
5542 }
5543 return cdev;
5544}
5545
Michael Chan415199f2011-07-20 14:55:24 +00005546static void cnic_rcv_netevent(struct cnic_local *cp, unsigned long event,
5547 u16 vlan_id)
5548{
5549 int if_type;
5550
5551 rcu_read_lock();
5552 for (if_type = 0; if_type < MAX_CNIC_ULP_TYPE; if_type++) {
5553 struct cnic_ulp_ops *ulp_ops;
5554 void *ctx;
5555
5556 ulp_ops = rcu_dereference(cp->ulp_ops[if_type]);
5557 if (!ulp_ops || !ulp_ops->indicate_netevent)
5558 continue;
5559
5560 ctx = cp->ulp_handle[if_type];
5561
5562 ulp_ops->indicate_netevent(ctx, event, vlan_id);
5563 }
5564 rcu_read_unlock();
5565}
5566
Ben Hutchings1aa8b472012-07-10 10:56:59 +00005567/* netdev event handler */
Michael Chana4636962009-06-08 18:14:43 -07005568static int cnic_netdev_event(struct notifier_block *this, unsigned long event,
5569 void *ptr)
5570{
5571 struct net_device *netdev = ptr;
5572 struct cnic_dev *dev;
Michael Chana4636962009-06-08 18:14:43 -07005573 int new_dev = 0;
5574
5575 dev = cnic_from_netdev(netdev);
5576
Michael Chandb1d3502011-06-08 19:29:35 +00005577 if (!dev && (event == NETDEV_REGISTER || netif_running(netdev))) {
Michael Chana4636962009-06-08 18:14:43 -07005578 /* Check for the hot-plug device */
5579 dev = is_cnic_dev(netdev);
5580 if (dev) {
5581 new_dev = 1;
5582 cnic_hold(dev);
5583 }
5584 }
5585 if (dev) {
5586 struct cnic_local *cp = dev->cnic_priv;
5587
5588 if (new_dev)
5589 cnic_ulp_init(dev);
5590 else if (event == NETDEV_UNREGISTER)
5591 cnic_ulp_exit(dev);
Michael Chan6053bbf2009-10-02 11:03:28 -07005592
Michael Chandb1d3502011-06-08 19:29:35 +00005593 if (event == NETDEV_UP || (new_dev && netif_running(netdev))) {
Michael Chana3059b12009-08-14 15:49:44 +00005594 if (cnic_register_netdev(dev) != 0) {
5595 cnic_put(dev);
5596 goto done;
5597 }
Michael Chana4636962009-06-08 18:14:43 -07005598 if (!cnic_start_hw(dev))
5599 cnic_ulp_start(dev);
Michael Chana4636962009-06-08 18:14:43 -07005600 }
5601
Michael Chan415199f2011-07-20 14:55:24 +00005602 cnic_rcv_netevent(cp, event, 0);
Michael Chana4636962009-06-08 18:14:43 -07005603
5604 if (event == NETDEV_GOING_DOWN) {
Michael Chana4636962009-06-08 18:14:43 -07005605 cnic_ulp_stop(dev);
5606 cnic_stop_hw(dev);
Michael Chana3059b12009-08-14 15:49:44 +00005607 cnic_unregister_netdev(dev);
Michael Chana4636962009-06-08 18:14:43 -07005608 } else if (event == NETDEV_UNREGISTER) {
5609 write_lock(&cnic_dev_lock);
5610 list_del_init(&dev->list);
5611 write_unlock(&cnic_dev_lock);
5612
5613 cnic_put(dev);
5614 cnic_free_dev(dev);
5615 goto done;
5616 }
5617 cnic_put(dev);
Michael Chan415199f2011-07-20 14:55:24 +00005618 } else {
5619 struct net_device *realdev;
5620 u16 vid;
5621
5622 vid = cnic_get_vlan(netdev, &realdev);
5623 if (realdev) {
5624 dev = cnic_from_netdev(realdev);
5625 if (dev) {
5626 vid |= VLAN_TAG_PRESENT;
5627 cnic_rcv_netevent(dev->cnic_priv, event, vid);
5628 cnic_put(dev);
5629 }
5630 }
Michael Chana4636962009-06-08 18:14:43 -07005631 }
5632done:
5633 return NOTIFY_DONE;
5634}
5635
5636static struct notifier_block cnic_netdev_notifier = {
5637 .notifier_call = cnic_netdev_event
5638};
5639
5640static void cnic_release(void)
5641{
5642 struct cnic_dev *dev;
Michael Chana3ceeeb2010-10-13 14:06:50 +00005643 struct cnic_uio_dev *udev;
Michael Chana4636962009-06-08 18:14:43 -07005644
5645 while (!list_empty(&cnic_dev_list)) {
5646 dev = list_entry(cnic_dev_list.next, struct cnic_dev, list);
5647 if (test_bit(CNIC_F_CNIC_UP, &dev->flags)) {
5648 cnic_ulp_stop(dev);
5649 cnic_stop_hw(dev);
5650 }
5651
5652 cnic_ulp_exit(dev);
Michael Chana3059b12009-08-14 15:49:44 +00005653 cnic_unregister_netdev(dev);
Michael Chana4636962009-06-08 18:14:43 -07005654 list_del_init(&dev->list);
5655 cnic_free_dev(dev);
5656 }
Michael Chana3ceeeb2010-10-13 14:06:50 +00005657 while (!list_empty(&cnic_udev_list)) {
5658 udev = list_entry(cnic_udev_list.next, struct cnic_uio_dev,
5659 list);
5660 cnic_free_uio(udev);
5661 }
Michael Chana4636962009-06-08 18:14:43 -07005662}
5663
5664static int __init cnic_init(void)
5665{
5666 int rc = 0;
5667
Joe Perchesddf79b22010-02-17 15:01:54 +00005668 pr_info("%s", version);
Michael Chana4636962009-06-08 18:14:43 -07005669
5670 rc = register_netdevice_notifier(&cnic_netdev_notifier);
5671 if (rc) {
5672 cnic_release();
5673 return rc;
5674 }
5675
Michael Chanfdf24082010-10-13 14:06:47 +00005676 cnic_wq = create_singlethread_workqueue("cnic_wq");
5677 if (!cnic_wq) {
5678 cnic_release();
5679 unregister_netdevice_notifier(&cnic_netdev_notifier);
5680 return -ENOMEM;
5681 }
5682
Michael Chana4636962009-06-08 18:14:43 -07005683 return 0;
5684}
5685
5686static void __exit cnic_exit(void)
5687{
5688 unregister_netdevice_notifier(&cnic_netdev_notifier);
5689 cnic_release();
Michael Chanfdf24082010-10-13 14:06:47 +00005690 destroy_workqueue(cnic_wq);
Michael Chana4636962009-06-08 18:14:43 -07005691}
5692
5693module_init(cnic_init);
5694module_exit(cnic_exit);